From a10569b5ab0ac7b2b57362e5afd466148e416f76 Mon Sep 17 00:00:00 2001 From: Samuel Sloniker Date: Wed, 23 Nov 2022 17:01:04 -0800 Subject: [PATCH] New model format Use Model objects and binary serialization format --- README.md | 79 ++++++++++++++++---------------------- gptc/__init__.py | 4 +- gptc/__main__.py | 6 ++- gptc/classifier.py | 18 +++------ gptc/compiler.py | 22 ++++------- gptc/exceptions.py | 2 +- gptc/model.py | 89 +++++++++++++++++++++++++++++++++++++++++++ gptc/model_info.py | 8 ---- gptc/tokenizer.py | 8 ++-- models/compiled.gptc | Bin 0 -> 2741853 bytes models/compiled.json | 1 - 11 files changed, 146 insertions(+), 91 deletions(-) create mode 100644 gptc/model.py delete mode 100755 gptc/model_info.py create mode 100644 models/compiled.gptc delete mode 100644 models/compiled.json diff --git a/README.md b/README.md index c69d2a2..00a10d7 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,7 @@ GPTC provides both a CLI tool and a Python library. ## Installation - pip install gptc[emoji] # handles emojis! (see section "Emoji") - # Or, if you don't need emoji support, - pip install gptc # no dependencies! + pip install gptc ## CLI Tool @@ -31,7 +29,7 @@ stdout (or "None" if it cannot determine anything). gptc compile [-n ] [-c ] -This will print the compiled model in JSON to stdout. +This will print the compiled model encoded in binary format to stdout. If `-c` is specified, words and ngrams used less than `min_count` times will be excluded from the compiled model. @@ -47,8 +45,8 @@ example of the format. Any exceptions will be printed to stderr. ### `gptc.Classifier(model, max_ngram_length=1)` -Create a `Classifier` object using the given *compiled* model (as a dict, not -JSON). +Create a `Classifier` object using the given compiled model (as a `gptc.Model` +object, not as a serialized byte string). For information about `max_ngram_length`, see section "Ngrams." @@ -57,6 +55,11 @@ For information about `max_ngram_length`, see section "Ngrams." Classify `text`. Returns a dict of the format `{category: probability, category:probability, ...}` +Note that this may not include values for all categories. If there are no +common words between the input and the training data (likely, for example, with +input in a different language from the training data), an empty dict will be +returned. + #### `Classifier.classify(text)` Classify `text`. Returns the category into which the text is placed (as a @@ -66,21 +69,24 @@ string), or `None` when it cannot classify the text. The classifier's model. -#### `Classifier.has_emoji` - -Check whether emojis are supported by the `Classifier`. (See section "Emoji.") -Equivalent to `gptc.has_emoji and gptc.model_has_emoji(model)`. - ### `gptc.compile(raw_model, max_ngram_length=1, min_count=1)` Compile a raw model (as a list, not JSON) and return the compiled model (as a -dict). +`gptc.Model` object). For information about `max_ngram_length`, see section "Ngrams." Words or ngrams used less than `min_count` times throughout the input text are excluded from the model. +### `gptc.Model.serialize()` + +Returns a `bytes` representing the model. + +### `gptc.deserialize(encoded_model)` + +Deserialize a `Model` from a `bytes` returned by `Model.serialize()`. + ### `gptc.pack(directory, print_exceptions=False) Pack the model in `directory` and return a tuple of the format: @@ -93,50 +99,26 @@ GPTC. See `models/unpacked/` for an example of the format. -### `gptc.has_emoji` - -`True` if the `emoji` package is installed (see section "Emoji"), `False` -otherwise. - -### `gptc.model_has_emoji(compiled_model)` - -Returns `True` if `compiled_model` was compiled with emoji support, `False` -otherwise. - ## Ngrams GPTC optionally supports using ngrams to improve classification accuracy. They -are disabled by default (maximum length set to 1) for performance and -compatibility reasons. Enabling them significantly increases the time required -both for compilation and classification. The effect seems more significant for -compilation than for classification. Compiled models are also much larger when -ngrams are enabled. Larger maximum ngram lengths will result in slower -performance and larger files. It is a good idea to experiment with different -values and use the highest one at which GPTC is fast enough and models are -small enough for your needs. +are disabled by default (maximum length set to 1) for performance reasons. +Enabling them significantly increases the time required both for compilation +and classification. The effect seems more significant for compilation than for +classification. Compiled models are also much larger when ngrams are enabled. +Larger maximum ngram lengths will result in slower performance and larger +files. It is a good idea to experiment with different values and use the +highest one at which GPTC is fast enough and models are small enough for your +needs. Once a model is compiled at a certain maximum ngram length, it cannot be used for classification with a higher value. If you instantiate a `Classifier` with a model compiled with a lower `max_ngram_length`, the value will be silently reduced to the one used when compiling the model. -Models compiled with older versions of GPTC which did not support ngrams are -handled the same way as models compiled with `max_ngram_length=1`. - -## Emoji - -If the [`emoji`](https://pypi.org/project/emoji/) package is installed, GPTC -will automatically handle emojis the same way as words. If it is not installed, -GPTC will still work but will ignore emojis. - -`emoji` must be installed on both the system used to compile the model and the -system used to classify text. Emojis are ignored if it is missing on either -system. - ## Model format -This section explains the raw model format, which is how you should create and -edit models. +This section explains the raw model format, which is how models are created and edited. Raw models are formatted as a list of dicts. See below for the format: @@ -147,11 +129,14 @@ Raw models are formatted as a list of dicts. See below for the format: } ] -GPTC handles models as Python `list`s of `dict`s of `str`s (for raw models) or -`dict`s of `str`s and `float`s (for compiled models), and they can be stored +GPTC handles raw models as `list`s of `dict`s of `str`s (`List[Dict[str, str]]`), and they can be stored in any way these Python objects can be. However, it is recommended to store them in JSON format for compatibility with the command-line tool. +## Emoji + +GPTC treats individual emoji as words. + ## Example model An example model, which is designed to distinguish between texts written by diff --git a/gptc/__init__.py b/gptc/__init__.py index 9e0051f..feb7b85 100644 --- a/gptc/__init__.py +++ b/gptc/__init__.py @@ -6,9 +6,9 @@ from gptc.compiler import compile as compile from gptc.classifier import Classifier as Classifier from gptc.pack import pack as pack from gptc.tokenizer import has_emoji as has_emoji -from gptc.model_info import model_has_emoji as model_has_emoji +from gptc.model import Model as Model, deserialize as deserialize from gptc.exceptions import ( GPTCError as GPTCError, ModelError as ModelError, - UnsupportedModelError as UnsupportedModelError, + InvalidModelError as InvalidModelError, ) diff --git a/gptc/__main__.py b/gptc/__main__.py index d6dab3c..26769cb 100644 --- a/gptc/__main__.py +++ b/gptc/__main__.py @@ -66,7 +66,11 @@ def main() -> None: with open(args.model, "r") as f: model = json.load(f) - print(json.dumps(gptc.compile(model, args.max_ngram_length, args.min_count))) + sys.stdout.buffer.write( + gptc.compile( + model, args.max_ngram_length, args.min_count + ).serialize() + ) elif args.subparser_name == "classify": with open(args.model, "r") as f: model = json.load(f) diff --git a/gptc/classifier.py b/gptc/classifier.py index 2f380a0..e18bad5 100755 --- a/gptc/classifier.py +++ b/gptc/classifier.py @@ -1,6 +1,6 @@ # SPDX-License-Identifier: GPL-3.0-or-later -import gptc.tokenizer, gptc.compiler, gptc.exceptions, gptc.weighting, gptc.model_info +import gptc.tokenizer, gptc.compiler, gptc.exceptions, gptc.weighting import warnings from typing import Dict, Union, cast, List @@ -25,17 +25,11 @@ class Classifier: """ - def __init__(self, model: gptc.compiler.MODEL, max_ngram_length: int = 1): - if model.get("__version__", 0) != 3: - raise gptc.exceptions.UnsupportedModelError( - f"unsupported model version" - ) + def __init__(self, model: gptc.model.Model, max_ngram_length: int = 1): self.model = model - model_ngrams = cast(int, model.get("__ngrams__", 1)) + model_ngrams = model.max_ngram_length self.max_ngram_length = min(max_ngram_length, model_ngrams) - self.has_emoji = ( - gptc.tokenizer.has_emoji and gptc.model_info.model_has_emoji(model) - ) + self.has_emoji = gptc.tokenizer.has_emoji and model.has_emoji def confidence(self, text: str) -> Dict[str, float]: """Classify text with confidence. @@ -53,7 +47,7 @@ class Classifier: """ - model = self.model + model = self.model.weights tokens = gptc.tokenizer.tokenize( text, self.max_ngram_length, self.has_emoji @@ -73,7 +67,7 @@ class Classifier: pass total = sum(numbered_probs.values()) probs: Dict[str, float] = { - cast(List[str], model["__names__"])[category]: value / total + self.model.names[category]: value / total for category, value in numbered_probs.items() } return probs diff --git a/gptc/compiler.py b/gptc/compiler.py index 7b3fb73..1415e4c 100755 --- a/gptc/compiler.py +++ b/gptc/compiler.py @@ -1,18 +1,15 @@ # SPDX-License-Identifier: GPL-3.0-or-later import gptc.tokenizer +import gptc.model from typing import Iterable, Mapping, List, Dict, Union -WEIGHTS_T = List[int] -CONFIG_T = Union[List[str], int, str] -MODEL = Dict[str, Union[WEIGHTS_T, CONFIG_T]] - def compile( raw_model: Iterable[Mapping[str, str]], max_ngram_length: int = 1, min_count: int = 1, -) -> MODEL: +) -> gptc.model.Model: """Compile a raw model. Parameters @@ -30,7 +27,7 @@ def compile( """ - categories: Dict[str, List[str]] = {} + categories: Dict[str, List[int]] = {} for portion in raw_model: text = gptc.tokenizer.tokenize(portion["text"], max_ngram_length) @@ -40,7 +37,7 @@ def compile( except KeyError: categories[category] = text - word_counts: Dict[str, Dict[str, float]] = {} + word_counts: Dict[int, Dict[str, int]] = {} names = [] @@ -66,7 +63,7 @@ def compile( if sum(counts.values()) >= min_count } - word_weights: Dict[str, Dict[str, float]] = {} + word_weights: Dict[int, Dict[str, float]] = {} for word, values in word_counts.items(): for category, value in values.items(): try: @@ -76,7 +73,7 @@ def compile( category: value / len(categories[category]) } - model: MODEL = {} + model: Dict[int, List[int]] = {} for word, weights in word_weights.items(): total = sum(weights.values()) new_weights: List[int] = [] @@ -86,9 +83,4 @@ def compile( ) model[word] = new_weights - model["__names__"] = names - model["__ngrams__"] = max_ngram_length - model["__version__"] = 3 - model["__emoji__"] = int(gptc.tokenizer.has_emoji) - - return model + return gptc.model.Model(model, names, max_ngram_length) diff --git a/gptc/exceptions.py b/gptc/exceptions.py index adbd791..4e1ba9c 100644 --- a/gptc/exceptions.py +++ b/gptc/exceptions.py @@ -9,5 +9,5 @@ class ModelError(GPTCError): pass -class UnsupportedModelError(ModelError): +class InvalidModelError(ModelError): pass diff --git a/gptc/model.py b/gptc/model.py new file mode 100644 index 0000000..a55ec32 --- /dev/null +++ b/gptc/model.py @@ -0,0 +1,89 @@ +# SPDX-License-Identifier: GPL-3.0-or-later + +import gptc.tokenizer +from gptc.exceptions import InvalidModelError +from typing import Iterable, Mapping, List, Dict, Union +import json + + +class Model: + def __init__( + self, + weights: Dict[int, List[int]], + names: List[str], + max_ngram_length: int, + has_emoji: Union[None, bool] = None, + ): + self.weights = weights + self.names = names + self.max_ngram_length = max_ngram_length + self.has_emoji = ( + gptc.tokenizer.has_emoji if has_emoji is None else has_emoji + ) + + def serialize(self) -> bytes: + out = b"GPTC model v4\n" + out += ( + json.dumps( + { + "names": self.names, + "max_ngram_length": self.max_ngram_length, + "has_emoji": self.has_emoji, + } + ).encode("utf-8") + + b"\n" + ) + for word, weights in self.weights.items(): + out += word.to_bytes(6, "big") + b"".join( + [weight.to_bytes(2, "big") for weight in weights] + ) + return out + + +def deserialize(encoded_model: bytes) -> Model: + try: + prefix, config_json, encoded_weights = encoded_model.split(b"\n", 2) + except ValueError: + raise InvalidModelError() + + if prefix != b"GPTC model v4": + raise InvalidModelError() + + try: + config = json.loads(config_json.decode("utf-8")) + except (UnicodeDecodeError, json.JSONDecodeError): + raise InvalidModelError() + + try: + names = config["names"] + max_ngram_length = config["max_ngram_length"] + has_emoji = config["has_emoji"] + except KeyError: + raise InvalidModelError() + + if not ( + isinstance(names, list) + and isinstance(max_ngram_length, int) + and isinstance(has_emoji, bool) + ) or not all([isinstance(name, str) for name in names]): + raise InvalidModelError() + + weight_code_length = 6 + 2 * len(names) + + if len(encoded_weights) % weight_code_length != 0: + raise InvalidModelError() + + weight_codes = [ + encoded_weights[x : x + weight_code_length] + for x in range(0, len(encoded_weights), weight_code_length) + ] + + weights = { + int.from_bytes(code[:6], "big"): [ + int.from_bytes(value, "big") + for value in [code[x : x + 2] for x in range(6, len(code), 2)] + ] + for code in weight_codes + } + + return Model(weights, names, max_ngram_length, has_emoji) diff --git a/gptc/model_info.py b/gptc/model_info.py deleted file mode 100755 index bcbecbf..0000000 --- a/gptc/model_info.py +++ /dev/null @@ -1,8 +0,0 @@ -# SPDX-License-Identifier: GPL-3.0-or-later - -import gptc.compiler -from typing import Dict, Union, cast, List - - -def model_has_emoji(model: gptc.compiler.MODEL) -> bool: - return cast(int, model.get("__emoji__", 0)) == 1 diff --git a/gptc/tokenizer.py b/gptc/tokenizer.py index c2725f6..a9405da 100644 --- a/gptc/tokenizer.py +++ b/gptc/tokenizer.py @@ -14,7 +14,7 @@ except ImportError: def tokenize( text: str, max_ngram_length: int = 1, use_emoji: bool = True -) -> List[str]: +) -> List[int]: """Convert a string to a list of lemmas.""" converted_text: Union[str, List[str]] = text.lower() @@ -51,8 +51,8 @@ def tokenize( ngrams.append(" ".join(tokens[index : index + ngram_length])) return [ - base64.b64encode( - hashlib.sha256(token.encode("utf-8")).digest()[:6] - ).decode("ascii") + int.from_bytes( + hashlib.sha256(token.encode("utf-8")).digest()[:6], "big" + ) for token in ngrams ] diff --git a/models/compiled.gptc b/models/compiled.gptc new file mode 100644 index 0000000000000000000000000000000000000000..7c41b41fba70de7d5798827281a095a142158cba GIT binary patch literal 2741853 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

Uv?FBGB=Xtk|L>%75w&w^@WND%0jo?pfr?1UEn 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%0Ay#cnZLtdzVr?C;{bL5r>bnlXq^AR+rcjD{Gr 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%0D*QFOKoj^`O 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%0DNBCD6|&BeMgOEn!^AI$wH!3eZ5Q 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�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 z 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

r@=m-34^1sQg|S_8hvx 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ℜP*Yl(-j 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
    }R4_wf+WuoG!H{S6?k_O~H6xZi}F+)KNE@3sjs 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 ~aclk; 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

    TKdMHjfZFXHgJi9NoNXj2 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�brRlQ)B5t>p^r?U(eQON)Zz7po2^^I4uH0{uQaI~ zbGM&g*p>`e(ERPm+z{q?sC7tf1J-%Pp}lIw`7pyRp|x`!&n=$4!#l69fW}T6ZX=4P z5a-19Pb)gmHs5d@LJd zYRz9Ew61Mae#83MW%M=oDQ0`rr^{80mS8neBPsof`7G3Y-Lx$TwDtLa_a^W>KbOL* z_@WcECqpA+J{UKp#>4B^c|g0nJh!BI5NPbFv^mjNAkwQxGv~B`UN{V%9zp+^&b(s! zgx=`TnrCD|054ctHr zt!zrvDg)ASyO3iV3siC>I^pIT(9GbSn%(?BVwRT-siJ_4+(MPPRe{*{ZnM1oukrr( z*{J!?ugb9+>Hfvm5xyzq>!aC4lm^y2L7MZr7~hJuW2EbtSAKIre~taY>KyWXvT+cv za#0}PrxA#(C+ph;c3Xu=zw8FA{R}#-)g!o;->+t$?T&+S@iH_A8*%maoVuQ(n8mMT zIR7=`N|Q8aA0=OcaU1iU_8-%Mc-q%80CP&{q?>RH|AzVC|-I56t@m)K<5* zK<_-zq_gph+hjnVQG=pCu=_Y{1f}Sr?@dMR%?amL+Mu?W4dy*(vqO&tuH_cD?4PUs zF!ywl)S?b%te^U&!RLLT?HKUUeftZ1B|)z+UaRctRp)z4fj*Hw@V^Ju@0DjC9Ix%|7gQpViV7&G;e_# zSLououwMmt2NC7dgBGzfMos(>sHC5#CXfN>Oe@ip{xZdWt?|b5hXGPUGSfA_Nq){;fq7>#)Uc@zT5}#)i!Yfa4{VL1A+Va`iUEGWj z)S#VIbjBz&oQ`DF_JO(7!V#K$0YF0>mL=KJK>p8oL>4E2a_niG*-U_fa*9=^x`FC6 z4kUfVod<{8zSmR$&7ICg(J&CmHl%Hc3_FtHvVTm6Eog;-0W=m^$wYYvPR5}(I?vlr zrJe<=re(!%@iri>Xkm(ke4wf5utgHQUcBS(!o@qFxsuCAUa1rp~u{q`F>kimB01s{x7 zPi!3bLu1gEWBPMvuqx)i`hF_MTG+jR;7Sg$BfRw?WQs>pp@O8CEyVuk=V`bN-v zayp3Df`Q7qOU<(lfV_?fb$sLmdO|<`l@z;esaPE`1^VT>;fu2z*j1#*avxMw!MGF^ zpWTNZ0+E{sI#ay|`uwrJi@O5ozGaa!+h?H5j3fL7)<93Ln0|@Et1M87JeR2jZFF{J z!dVu_soXiEk5}HH_)I;4+3r-@#1SJ8){sL_77yIfWfqh4R{mB+Q(sI$d7EFHFCg8Xvre{ja-Qv+5Hs zT;*p**v3{T(8b#!@qA1`dh64saSjeaY`e$B5Rnt zCOxfOo&P`^RG;Lz8wd1i?srr-p4~!4@iwQ*K;xJTn^8m$ZQY8CoAUzggez@z8CJ!o zG72$s)_j0FS)7b%SJdG*u9dh}Kz`c)tXUzM!qgTn$Egs-CII z1uHqmg?O<5Yr*IitwcLk3d_BchqE1Uy`uT)S5+H84iYp~_eX(Znf{q`hyw{H-0)aD z1H^UwM;6m*peJKPnQnOHxhl=bK=eVjDw)=%Ay~=#j#0LthyK~!$Ry_iO^c$Rxoa5b z?vMKOmJO&@%%vv&8c<;f^Nhn$pe@7F+iZ(Kg8Dpm2K_*juG6l+ahLPQTv)H*T4rjw zs&zHN%0Ka@vJQLBzXo;J-s_3aj~~W!HFKd<-4oaRh9vl0=Y5#rp;E7TMIT6^Wa1S^ z43KN;Zq@3KK!O~$MP^Tcj8_dfu3|?&=VP63j}?Ebk@)%1F|fK3i_T2pl}W$G-DcVZ zjlP&6D`g9)$EmVm5;g6}Q(pwIYKP1V{XXM)RNQdV+Mfo-g|qtRnqYh%Pao13!oKVM z$j$LQ=0SZ@+d$PX7&mUn8vN!K5YYgINMSe7M&-}KSIR)~9M3*k=>mP)*mzO%2dFBj z&$r_wkiFa|PB%P{zWtfeS;QIbT)yvIFfxbqW|qXUx9{GxsB}avAv@kAObq63>+**D zWCl8Uwn@s&1ISOqmbU*Y&Yc|?Kx!qgBGvM7A;v#j2%-n;Jq@#Ik47T@)acfjpB6Pr@XS=pz&+}yC8`t zC*vurg_cX8os8$^vP568-D#?DT?K9MXu)Up0U#Qw=v|rUd*KYR2h)#1Tgeut8N*KK z{!Ll?O%G`MSBX*&tN`UVto5y+H|``nOgA(J?T?Uho9I8F;P`)JBdI_S>%I-W#hTvk zTq?|y0_~HtjliS|5EIqK=m*$`IN#sky+H+}-# zsQ)1#qP`aQ5bSIG$NB=;vD;E>A2ff_3|8)hqI0_IKr+fX-@YCP(rvjhMY0UUbadwD zTP2`_RjQkW-?*-8!rm(|R-bu9$%aZzc#XSe*YJpXE4rdVTyDE z$7K!6yxzv$pYin~-R`P*HS1scf` zeWmL~pmP;JXh*Sw%;Xf79MAzx(XBaTKRM8j2=fsa^zPX*qiy1%xaUAzkL{LpvGRo8=Pk_1gBIRRvy@)|)c-YR-FQDxOXnAwqRT*P22NVF zxB@mJ^KkAc(Ciep@6+IO$&8`X;aoficPB+1V+;i=>x9kbJ*?1m{-r1r>@OV*-;Unt z1M3TM@7J>aKw(uwTo&jd;v}1Zfj6MJrpTlTPXVp7^>@Xl1D&kwe?5n_<(uYNrH9=o zaiIIyLtNhj9zdR)%=c>JGnrsPA5dzoPkdN zFfQ-90wmQqC-`az$k=~DsEQJZUGl6j3$DPHelFMq^Il(tnmZnQER*f#z2$ZoXFo*a zwPps??3!P29#4|<|Kxuhm;){M^L;ZxCZK&c0}m?Q0tz;EGb5V-vIt;WrI!S%CB z`w5g?c$A1i2S_DP)s^tx-)r)3gZTD=_E_W6;_nMUb1jQ6$~J*?v;B9!N2@O1Tk@}X zzQtvqjJCzzWTrb-?D!YP8J!b1{erpiAbI&(Trp^x@5bK0zKhnaJ;oGAfa2c|2HwSJ zJ-ifq{Obm24F_bLS4e<*Yvi4OH33BjsGO+9uFQ8|jH$gGv{;%~htw|taY%9I2;oUm zD)mW<@X3(40)6E-x4}Ajg6l~6S)k!5Q<=T5fCLtpgMZ-D<{Q2bI}b5WSAw!wr>;>mHk8MU6FZ zso%!yWk|I@c~=G2T<>;XhEqVhNM3R$rvT-s+0X@JRQJ|$Yt&-q>|yEa5bXi$59gAr zRp^7hb(T#HT&cFo7oMpOwC>~Giev_o3W+o3!#q7Z-owg^-6F)8WWTi>ST{xM=n20G z>?OS|T+#qq70Jn-2mC-rANFrlnF19$o<8yzyHx5aZKZ}B(BkuI4I`$3rsnAN?gRpf zACVYqL*GljjtB`+0WCATFPp0csJiQ0PJtoNg}@&H&#<;QY5x9Fq5-X3W8&Z(EzsQS z0k#u(Y7o;ViVEXdCM`geZg~f+CJwCOvzWX4wr;K)VrNaaKmSPMBUlqw_{n1MnRP_! z?(5yopgrq4JwkW~>^tk#a!%|PX%B_Yj$j9_xq9Tt=}Z`RpTs4F5q)qzbV#cR`@zX! zl?(rW|KxY3Kl*qQ>rrzN-z|k18N?0zT33Na8@&1i(||06BlJY^Bsq5T;Tib>(7eds z@sgJTl}tMAPG$va`}3RJ;sDT*-7~){6oAYk66Do!E>Ve2OeEH7OhJVt7uM1C@R>m; zyq@>V1$7=m&nb;QRf+ynIJ9;o2>my4qD43nPo}q4tqrgJ;L17{x%Inh@E&*B+hl$L zjY{8$JGc#G#i(<)1MkbU%Hcah23k$DFqwlcP;=i$7s8uS-rS%krCS7T{c@7w0Uw|g zx6iYld_W#V`NFk%K%~0+#;CEcsaUy@N-}_^FZ#5$6aA;Y=wx&XYsNP5Vw5;$>?!7u z##7iQ$4Z9c`mh=~m$&(M)?lu~u{jQt1R!_UG5RM*fw-PX-e9B#N-P_$JBt;N$oMBU z9J|2jm{g|_Rj|J36)OtJ}`p1FFcDaSvn% z>gM~gxl015uD{5zVGc;k!eKjv4v0MaAiM4@pv&x~zJzx$?e4ms{74tH7aR#!NpWsb zqp5*d1!z)TWk*!-%KCC|mcn-js~A@Jcy#R|iZJmSC>!{(H%#0}41h%;o)KrX7{!vn%Vx273<^16U}682Ra^a8ao z>%2Z=2jn$me_%IOk9XWp#b9F4-V<4wy}(+aQqZqmxB*&hBtJDPu3jvXX<+dhVFhGz^hWAnJ?=t8f1e!4xT}aUj}&P9$gQiw zLO^l{_gt&s0J^`$F|~9L=pN7S#SN^tH}loCgkMM*Dpl|PiTT$gr`B3r3geREdY+{` z06JDm75x&ccJh1|Z6NmhTL%pObSQ##I^#e#rZHS$AJ!OcuMSc1saM_8}*b0 zy0;#ryMz_*aeg(NnFh42SWQhM^kfcaschjl(0U|VM!JfCWXSaTG_X6i(0d#!!@W^j zk+*1KR5c`iNe%yoaZ%rn69;($X%5f4F~=M_Q*f8a9-r$5UmayDM5~q5_tF*YdJ}a$ zCVA5^qxz$IVPYeYsCJrQT{Y0knebdO~JUd>*KZZ4M08-OT?D!KqR`qRrZ_(I)7Cm z`HmY9)A)cC;X7y76+J9DZhk-cXx_0>cefq^x!m6Imz@JDbh%sp zI|XRH`aR7_0U&LrNa1~0TfshIe`4`8HE7DWDt!mmU>Dw(L6ksmlj}LDF(XWQcmMll z2U>Jwyxc@0D2dxOX-dgd?ZW1!8rn2?Cx_anFc`BKb3b8)dGzQu<5Pfl`9So z{;?7Q%{ja4FMmFe`oOox`!OQfoARYJg_tYvhdwftKR`C;xoECgIN;CIo-OBorbR8miin% z9|R2V1X_E*IF=ieQQwDvzU=o-ApB2_S;-M!n|{zP$vjqC+6{EhZ}aOd9-zNw2eO!K zfn+Im46+M=Hcgz5K8gU!c^3A29LGJEkjc?z0nK>CRjX~Vp6MI5TdILzC(OLMfJ&>0Bqp)AUfcD0vg_faDRa2?z zwXs`7)vHjupb^N_!?>x*yPgs8K#Wn@?1Y@OB@v+dJqp^F`F}Oj7;~B(SH29K zt8Qbm&j9_Gmp~*}$qwT(zhs4HVV1mTNC}AR1FbOrUnX}jkRkQO`(hV?lD=(R(ZSxd zwrM`m^9nRSeoKRqQ$WhYAE{@tH_?3;=@`TvU4D1y`n685YA|@tUcqs#;ck_cv7lug ze{-Mk?sw5ZCIuC3&;qL?Y_#yocV(p`!;?tf$n-w z^b>yBaDDsYu}AonA!|a^lwA#0F`hu33N0XK_ZW?NFQ8PeM#InO1L=hxzN0@u3mkV^ zeu^Fn`kWFiPzllD$5A;NH2g@=h=L0!(AYU-->x5E##p1N~06Y%gd5vd~p`xcdd@LH@}=GGh&!55-tG}h*LO~j9!b%6;9r40&UxWpPaoDkR{`E zvIbVDtM#>GpCmz(klK@H`4uRbCrRAu4A8Bh$Em-&fmGflo_~$;2z_YH_!ToJUy#Ju z3~S3b-2OH#-q&7ojK6OTuP2u?QiA?_Rn+sC@Na_(IgO9+u%o-rFXV9ShjF?;D}vf^ z^)$Py@1`t+mO<3_R6rg`w218e)-2GqE%O#fKA_VsC(|_DfGqQ@7um4Cyse|8y4enz zytEd5=Vu`2%au+0uohxhStF%2Kx0xGObZwSlF;1a(1DrlFlA3|f-~5@FpOOg1?%$b z2X-gIfXGLMPRe7ao;hV(?typfX?{3;=L%Tkg1xPa%?QWM1bFmgwNR!wJZ{OqENEXsx z11oE-1-C4A2D3}LXDhNnYfxO_O6&yMC*wxVdlHDh(Jnlj4Jgf{^?xj#cRZJ08^_He zR1!s2vNO^kvNE!gJu_0s&L*QMWM)elS(({eW->|=nMq|7vP)LV^Sdt3fA81lI_JL6 zeXVowb$>-B@HxtZo}4>E0$T8@!HsJ4!2z!a>#6aeIqVU;H#h^7Ve4;omJXX^HzoAke5(QE# z_?egL4|KUS(`G9Zh^fz|lLEE%;>X(_dY~DKa=0Fn1iBTMaoZ2i&(48^fAuh*L)*Co zcJOY0i!F1du^MBA^alm8emN}O2{B<*2|3~^*csp|%ZXyvyx)Q9n!b$N+yOH9+^b`P z`En^!?87WRdBpoe&PLc(@+X@5buo*1Q(wIo#rRq8c=yM;eML#8ZbnqOZMq(xS3!kX+NB1~?HdvQ#$h=yz10oy!relv$ zC|uFc?3FCxE1nMW1&2y~;?Nw^bQf!)paHq(1`P|MuyY);^&1+l}=7=-rLX z>WmO;&}L7@ig4im;dDpAh5;*{Th`Y16y}-+t=fsXaTrH;J)kG{9guVMXYZB_Aez=+ z67pC_E!-a8jIdH3hLQZ;{a-C}2~CMudKlNV9kP}%07N}9;?#t(v=kF4rS1jo3C$ZV zUp$XDtu88jhyX2dTiA2=9kne>Pl?Gf+q)P=^4?-?t^K2nE0>0Gl4<47f}(+Jcn&B2 z<^$3*))3wOCdVTmC~33ELF1(v`zYB3#Lj-0NeVl4q?(33p*M1I%{k8PYMzatJ!75@XX*ipnV=8f#NOGfJFW4b3;xr%-(KaI!I~*6=&4qn z0 z(o2~-GmCY^bRh3|*dNepZwIZCBOQEy^-jqV&}^mZA8Dg@fQfu^_doF7e(LLDPzCGx z=_ema&4HGDjTEg)fC5ixntU<=x@2loGKUdNKP?cw`^^cNnr|M9W6bFcT-t|lzZCG- z1YA zCOV)X^Lxyr*h`Yne^X$@RV^Ra)d^>5k9`?-iKw#{CE-KSrjC*5v&s zA<*_oHQe8c0vh^xO>Fls4V#zfne;M2TOhctuqX$l%RF(S1|xWrTzkYDd!6osx#gsD zU^S-_BrB@~O1w@|tvOoy(L&{RFlnG?gQ}(&%PhSRT0Y15{F}qRA262 zFv5yT&s9?Wi@j6jnnKQ3Twl0i>Ti(+n0r6!I_(PX1|7nJXAffcNwgYtpbiD=b;kZQ z?kXVXM3xMeS)h@7pIy{m0NFk}eEnGqkeTrPS0klBWjBPs`kexblsKp(5dy^Bz*puV z0Hj$HS$5nRh*t3v#Ue)arS0E^fj6M_o)%%de`jEFYPJx8qLy~8=u?3 zN))s#m)Qq2nm}L`HwC0{kUz{-4X8>fVw|%EsK|2WlQBL=QNfU09p*v%`8N|nl3)$D zw29$+0F-hqM@sZB(5b1-d1XN$vty$+#@B#q25$2YVf0y>wX^DcLF>qU_xd$<5L*VT z6c%>SYS~Ol-46gwUl@5MhdujWE$1o^_K4~~s@z-gVEthpM?}C2RF)UwakvnuYgt}G z2;=r4xXX_jPX!0{^%~>QS56tXJt{xLxLhvp+e+Gam6vV>&3GC)@LR+?&Kk72`nX>& z@X6z%^c!U!f%d^om~01YRgSx&Ovnhd&iYmTB8=dovmMRTNzmTPbniX<9q1a>mHMhp zpwr%qvuaqE-hmW5UvGkzshPR|&LB{O@UiVzkAeIv*}88X16sW!KF=5o)cNh==eGes z>mrGF4SaxTjmWbfPyzk?K(KuUGlyfW?p*X0&{SpRJ$T4~cn|KGR<6Stjdil3Sn>5= zFTc_21}$~v;>B(iAp5q!*7rYws?MAJ9{&jR`o^+xKUU*g&g=F5(V*=My%xy2iIPPh zjzS+)B^fc^RRv8%S2wE+eg89^j&w*Dw0!~1LD{B2)@=6Nit<41ZM~U7*fCjOC7)0@ z3EELNza}2Ey5tt5?jZ(E?XFMp48}YyHifi?8nnG`9n=b3Kt%f}9F_fmLKC=)Z{UnO zdtF5IQbE($9<89x0a{X8{_K4Z=z4d~P)``pvVg{16F%(vUUZ0I3^V)Q9$WpXX0QsJNfp}tA5Vja zzT$!yRfBUy>{s!m>S0vjV~f3sz)^R|S_5XJcl=B#$BeKQ4>K=S04;nW)@NH1=o3YB z&=<_-G=&!PfhN$JrzAU8(SM?Q2RL3dg7%KY&FdEC#x|++BR#zGXSw;`yMF^>ekPHi z)&}EPl1q$9G=cVrQ{9od1r$=*>1lyEq?ERCefT+Ob0UhX#^~`;pNlOMmq6>j9M0N= z-EqYrdEyf0%PIB+8?J+3-7i4U+=aeB<0pPn9eY^7@3!!yZ(wzdv3Wf85a=0~k!2d@ zeUnOZj32H(x8=#)Ci?H>!%IDL*v%y5zObDzh8a{PhUx;-Kwh#lQyXW2Xb!8Dn{xnp z=g|9>7XW3t3FPnoeQ>=0N^IgbXv;e)Ee}(G3}u%JMDf0df`40E2!U3mF)p-J+)kY$2$iUAMLJkvJS{WTle*6yzi|j|07!XL?3DgJzrx~H+|HD z@4T+91M&dht)!P@xUTiotGP;J;Ko3A_2J*FUz;W>5i@qnOiS7M z3t0Cna-a0q0}770v{rK(=(K;@F(Z85ju5@I^Oy&>dd=8v_`!NOt)>3KFi^>J`+Hmu zfN}<3FY}WE@qV68V#5rhT{wTZ6IcJ+Wit``-hfm(1S}T7C@4=kf+4Qj(tbu<- zZLQD;6vRdfX7Zrb)P)plaRcQ$P+R4{2KrugDQF&RCi2o3w!au{g4%- z36k%+O)o~~ooO%Sy(Q4B2A$tBV@~qkkO)>a11-P5<%BFoe?e!Z_8&&|;=?E1TjVW4h@c z0ew`6>X_;V(usFoFM9(tUd|$;C~`HH%`pQ52GQH$UU2Tgt`bU=p?NQc>D?^`V(<#Sh`27LrFinFoM5Cr;O z`#JQ04^ZB%)W~Y|2Gt3%50;o=2euiXkV}Dex_w=#9b>-l^sSyJfKEZ?yqgwF=O?y;Q@C-+&6tR-Zn{_*Rzm@ekwrQf$^u^W4D75YGKZ z`ZSQFyxa9$tlwx2iBy{?(6kja;!Lqy#EWw=>SGk1mUg(hCWH01{@>bXv_KYV518d9 z@hVqF6z1ZA?Em|w-`)S8b{n8(`EU<38`YSaJ`W(z1CN*<$N+7wmv%EH0!1w-N*}0R>kEG|W?1?7-zrP2p7G!Vht|!(IzcvL7=vq05FcKu^#)D1?t}w1t~592 zQc@6J*LHyxs*T^JptBXc>1@RIJW*7V`R6N_s(BMu!g;^lvovA9`yn!{M!>B zuaiLI3#0VMvGVp_E`QUJ1Dd7lX~#P?K$T2}e@&Bs9=b+pH?jbg56W37;oj}29-FZH z*$U%-y>xRUV3jCz6}n6e6#r2{<`~Aevwub1!vwT5tj|eD(c>yJN0n$hK})8-ef5e9 z&_t`n~axV?&XhQo05k}!( z*yT`;IMAqPf5s<99s zAEP*iU5_GL@sAN^Z1C++0-Fx7YQN8P3c*;ivJz;;B!G6XaOAnDE0FH36U=A+0hMU> zSyW>tzGW`V7q|o(rF^%t1>QHvl)#)Gd*?}`uyj2Ou(n$fXLpAHt>uj7(Ut%`-q$Cq zJ_&R{=4*}39MIm55T9OMpu?05JG*ZcSUCOmXz2~m6rMZVI_LrMk}7e}ZUFrX%KES) z4kTFW7(|G@nCBm_p>8f{rrkLKG(1}7rHRkB z@2ep%FZ$Wi{x3(^HL#xCyVIQe3FzI0hPVv8uf4qh%{|=N2UTx|o^=E3aVPGzJ+(lj zCOdso<3Ma`k)KJIfX3wZ_8iB2(V#K)P&foyLBro%<5?iFpMyHzQ-F@IkX96Y1u9Q^ zt@RM=Ql6Ps>Vq6;V^v^VU8Dan5VJ-1?&3W17CLkV$3-AqBe%GH!lrpf_&K%_Mm zX$B-Ew6JkU639}d=Wta8&{$F*sSpiN*o#V%ic+BW=Xifl*XgUEvGPpH8`_S>)7&F1p8hp?8UOooMbPRJ`>nO8f%Y8N8v1}0N})FG%XkO0Y?52@?@fV(EZRAKVs7Ml zN!b3t=ricBFEqG=RjSQ5T?qSu$XG^^yAEjDjL9qaun#TGmIu;d=g+gfv)X3|)?({Z z^}D}O;_*uRMTuQ%M11qWFK@7(3~ile#+q4BE~tKqdF8>`pqP^i*3JKZRBOZfZLelz zawi9EznS-_KM~M9i?V8KJioBrVn6a5f5wT`FDg5)0@fcN4T|*3fvypB9_5<=N)dTP zH;TUZ3e;EIeP{6GndN9L7qHgP+}j8k0TRvTejii-^i6$sE07b&xv=dx51tSD58PPj z#`uc#v)|~%2rh>{b$^2Ap%~hOE6y@F;{~JN2rtk&EsJhxBG3}Sv{pkl5Wnl}A|?7X zp`V^S4)fWg?W=?!6IkETPMjM??^g9qUwF9^?g5 z^XAb87HZ7SDWPk+w#6_b>CKCtZ!tjr3L#0=m?bf0zmBS_fkxUtJ6MD<@68tE42lI! zonts+EDUJoOv9_;cR;3%JZBVyfVg-W=&xXvJw8b2WBUg*4`!urKT3eg*!Lf`#VgnM zxusnE2->{lH<@HBpsnHS?V?dYkp!_nQqYqD=QI?pFk?S$MNKqe<#~Rfyn6sCzom_x z0awqlUdI(^4s!_vPpkae3*={#;&@~~(4TirS|*A>cfRy7m45&_<;a(L$_MD6e2|D)ZXT$5IXNz6`x^~oOP;)p^Z2g{9zBNP0(!J z(+##YfV73=%@)!3;nz;)F!q7QhE0){WWrT!bTpT;8 zF)yBi>ZEKQoD=~qraMx3W(?>VgGB#XjGHXqmj}C_YtDbX9$ksiU#9m;ox}T@IR6>p z^MVAl{{mjY_C zDAW`|ACxD&c{}|Bv_-bN0`8Z9v{Dq}&76QdMi0p=;okGKS1jBPcTPjA?Ew=`u)53r zyK)n2y5`D_2bTVz**HiD?!)TlbY3o_dJbBb!MFZO7odBIM=T;;fe4btxns@&(R8a& z$qfJ{?-kCtHw5HvYRoA73aI&NzR6F_9D2bgdwS9Lx~JWrs-FgHf5>~;-SaT$Ic7eP76Z%CuRoMH2 zF=z+qCwLV~fh5T;$C=@bV8$?8W)sjPKEz&L;z8?^b~=PZhsz*T?V3^6dS1&1G+*I*_SN{G%BOcM0_7e;H2dd|K0rC zINO$mbty)%J@X6qD59m}E9}^%{)T;Ml$wPZYq}LTcK?n;Be5RctqWTBRocko)j+9z z_2*38fc&*|6tI< zg!m%RPTP6>JBLp>t!PXC4xf!YLpEZ*39MDuC6;P2H(UjNK0b(7$+~@Rp@R*qCn?m{ z)D8o=dRITq%K=gw;3{~y0_4c!=P8~HWY}v&W_$=}@9K_G+8mHUVrg}d9gs+S`{Os* zl}#OM_oQJg_r6cMNbCXD>4-jWD!lK5o z3%@O5Z$ATTrfbRpMa-tVH6Fc*_Mo{~tj5P;ADaD4#wn!?8f{PSub*^4`O7!yS{Q*| zZ1>ac!?Vg>kG7_U1kkq5yv#T}55%WGa>$biXnTrrnb-m-gQneyq#fvS@xH{D{Xn0( z$WCWk0v%%$iRr~PSDI0cukC=A#KSRTLIV^@{_XLq3Q#X=W=?w@kZh%+2<1B<=jP6} zWz3w|l+_&0J)r4$uqavMTu!n(WZD>+6uq1vp&+pCmlWJFj|H-6em->G8z^rqaf1)N zdyuRnzwIn&r^maU_E!N}=zjeqi8(ZHeC|~q#%*#R9jPS~SRd!lA0Ni&2wHk0*xm!0 zYG!~iA6C5NAVHQW?p9aK)FixdoTL@$$oF*^r)f{a8GR8bP3lBY5w2cFG0sy0eahCL zaQp`LPRF`4j^UWQ>!Ai?@+2^$_-zFT8&=OnDMNEr$a+(L;5iv&t)PKqE3wo_v56 zrKNn#a0w$AASd4>hJC|AmL%kh1B@egqN3aVOyCfqVrk7U&@32+MbBas`d+)TYGr_S z-l-@%0Iys}b$Ctp7HDHuzMal^-`A!gr>C*UhV^!rmal@f(bB9+4X-lbC&Km%S0DO< zU49`Stg`eR-}|zFG~P`O-)8|5`g+SZaVoyfVpleg-K0 z=%1?HxAVGEDMVQnfp(-|TJ17MLEX5uzZ-pTH{3R|ZxpPV8>u(c(c?@afh{9=-@=8D z$?-B^)sGP05uyWP^V452A-E6B16iMS`X@)0TG; zD^yPMJ>$ev(3lNkJV@+-hWZKR^lX71QHI-c@c~I3vAoXx8pw6AcwqW5&{;ui?}lqY z*E=m)FW}u`rLLY9HUUkrv!_)Py?fyXYjzO!I-(;}bq1JgcE7F^)vLm|z>fm`6|F!9 z(ccpbu@=tPJCn}DfX4eru(1~RL5Gt|^AFH#my2Id^8Nv<{}tP}7jFU$zI2iv#Eu^6 z-~Yh^pEu^58*M)WSPw^^I8Jg3=vRu~`BgHY1{GtAstlmTe*~op#XyGZ)gAdIKtH;U zarBG>JtQ#7U(E)p{qIGoQkc6P9X9R*nAskir>07uf%OHS=)_grS5H1z+}b4^ z-8YO(`n8DP>gX%x8cLNP)G&iVDT47#JkXKx%adyWwHp&2OMlth$EWz@0=-wqR@wb5fbJ_{5DQupUd|HsF;6 zdik|gVZs$iMdZM#ugySxi9Y=GJ3t1i-Q(%eKzl{%)vE6SslPj9#)4OV%a@liBLSK` z-<;@HC=fx;HP!(1X$LJisqrXi!o+!=6rX_-2+S$Iya3v%%S(xi1)}h}#Il5%t%ZQF z26|k1h&jr+9;{LO{cqWE0@VoTKa$eM85s;4V{5d`P z?{afUU!Eh(kQvVTk&L-<_YU>;=@HPD!aa1z;($c;-LIY)25PT8EU%~wwE6DBoSzcV z_nM#+>#RV&Y#*ZLF;8h5G;jN2Ei|_Ud(#nv)v$hrPj?&W**jIHTe(2NqwHkg{eT#* zEgEWIW;XSB5Qwp6&!twp#~Xs}o(ilFPqPN`0?bpTI*GyVKryhIw7F!?4@KH3ZN=o>z*-bAfprHeV@aC>>q5d=N|;R z^}ViZtR1MZxT~}qt7n0%gsKkv-?7`VVJ^yGwO-e2&Bc?4jt5PNHg;h3s7HQZ_JB1n z`qSsrSOJ$d)s?-RKpWAh{U(ZQ&ZGKwsSvNXY{NF0h}qN`&r%*C2IHQGq?Rqx0(BDy zu^iX{%Fg&B%#TsEIPzmGAHDWFL^_iOyPixK^%_Vvmim~&7!c#wG^-~1 zbbmvukT;$-wQrHU@WLuvpEvSc`v>Fh4AX`_!Iiq*9hH6K4_c%1JfAS0!XJ~Ld7m~4 zT9kIeEs15Iz;7#r73jYgu0fttRG^U-Jvb_}TcKqmw+?53_I}-TjSrtU^6$0s72Ip9 zC2i8m(SKJ9raZFnd1bYVP5XUd#w`E67dKG*c+t1W`4wox%D+hRR)B0I__r(zfk;Rq z_QYeB%n+X?)@fOc!eFAIKvx$X+_(a4W-1?cBptWADR1j+gT5(FG``Qmw>?J)ZcNgen*G7o= z0U+thQ1i1DKt6JEwRx66+=B&ioOrj&OYaqJ(Yy6u1aHzm1*^!HXJ_}~9@WNJbFxt! zv@~xUK87|R+E&$)vqyo}2oegd%z-S<<*>JN0u?;@^)KN)j`o3svbh65)5=|*dkT`A&}(OesW(t z6-YJ-TwXHIJZo5F4K`0#)%ji1iZ#5R2=nV`hd?nbZK$=H+olAUy839J^nkA ze9XulX53TFYWkxI)KDgMff2K0?15{syx!A9g2I(kY_Thu@-0(PiKqYrU4yYl}@nW01BisHIl~;?B;kfK+6KOrH2@SP#_~LLPJ6-(L#Y;%pLjQ7<;3UJm=SLBlMjt( zz{=TjRLlP?P?@Wa;RWpN`6g-?OfgzE$q&tz4}p~-?5vd!W=WYb)mSg~x~f|7Khnp* zx)O3=deI)JN9JdF(gqNHw6>TfdMJSTMDxW3(8gzC*-WuNOS=gleu1kRy_&B06ir~139cHMAsBn>E2a)PFj>*S-ajMoibWj7V^}~Wz1Q_WDSHt-$l0iG4 zbN9S5_JfMNI72<`aGW!8YipRfH-(`d7;y^H-X zJon25x+Tyas|d-B-2l4EI68F=SO4a=!CzaDzKHez57n`@j8?PV&uz1xpm`~u3v|U!_@eTO zYYJvg7omG^Ix|>PPsqKxr3O@_5t@-s4#ZBn$yyC!nUWx2grnp*tt^==q9(aq+D{(zgFX#CeuigRWEDK!d^Z>dp^Z2D~1kmb>$IBD_K*ppO#61Uq&hdUD62W{) zyeEEP{3&RqdCy$A4g=+VnD$e{jQBN5*RlKN$lIhQ7P(Krn*FV>P7V7;d=y)mSRQCh z(FeF2dVm(=|9jizG|)KH1y*nL_#XMTt$i4`zsFbWG_mqDv*pq>6kwd;N^S{ zXo2tb=XT5p?^AQ>Y(E`o5nHc+513j9jLa~eYgZY#IwM-NrHJg zl|g7sg6j*Cva99Z3*!O^MfHp@3f6hO6|~s(^5S1IJ;O8CP`Z(k8p1&#p}uJr2RRLXFW;*LB|(dV3k!Xs%Dx}!`c|Wn_s2LU3p!(@O{GYJ)DL0F`l25~o1v6enQOr|6vvWJwaHUM*rZg|{ zdPnDiI{6e~+|Kz-QI>)lzStPHFa z;R_#wcYhmtT>Vp~a6ecldAG)W$biPQV=tfa0;*77tg}Os>HknhfgYk8H?X_i4AyJ^ zMtla20mVNtuy^1AqI6GQ?ivCz^$g4&z%2RE-j+iphE`V{j%+2Mz&f{pvP2-Y8+t7o zm^mE5BopD3pe3a5H_SKz^o6|ZsO(iB^C}vlo_Qd_bLsOp@gCl-YU8FwpfP3H@RwrT zy5?i_RQ7{L8eO8ie-F@Eor60ABy6XLHiTGe%D z&et}AHp|mQHG=t9An{)I7b9r*l(g;Ai-82Iei&@s2D;w5n7{iuWU(vj74I29<1p6y z8>tQ?Ms2fo+Zm|w+I9C)%rGwc@maScpxtbGACuw&^hc3*or(o0fQ(uFCPu$EHGnPC z2sEpkJbc>NZTI>mcC86Vr=ZXh?s6|Izg zK&@T;wW;{z-Ws-q;@?11dKgj`b028g_-tr?3Q$^bFslgGOp?jI7YAlRGcDuRP2vMO ze^^E%#}LS|^sNmK=D`ymwo6`%pf$>-zmYcv63?A4&$$k?x^gl4cQnuo-4jY24nX%J z>VNaD0CDpX-L%DwopZWlERQi7apQTjjya?_z*Tq{S5RZ5m&{89GYdT}wSI7nWbCIjryA4R2&E#=HFVOxBi7$5O-LQ)~l)`8|I=R{| z%L&$(1P-=MSTh#JBzJb-!G7x8K&wCtTCMk--~BC4du;OiER6K~>d+=PC$PH75u|>` z>qTZ$#qNGK^yqzS<_G)1+D!Moq{bVlM^bop8grws^4Zf#Q_v*+ZH_<81ajJ{|GxW4 ztiReWp?W-^Rc#T-h*<+gmM$CGV^u_D#BIFF22C}0Q}wYGP<>5zj>1tO7I&MtBN%;` zbDaU}IiMx&Bm8_0`(H54X^C!(%-oGJHAAet?i52Bs%J3H=`7jzi+VtvZZf3;Z-A`E zUz#Ui)%J{wr=3{@O{UmtNhTC1(vB*~2kY|lkq6}>Tc8>KJe0Iu2Nc{PcTPRF8Z3Y93) z(+2Dt2R*u+WjaA?=y!PQ)&OLDLvhSw9Y`W@oP76l`k?}L6r>ofM5)^pF-c(c{C)MX z@&-_QgNdvNuHe5HM+RQQC{(v!8N1#DR=M~2_dX~9m2OV6tYdCuowy_?jHiqPjYby- zUV~N5TdwXA_7@e}WG#DT(Dr}O7Fv%13W|E~-;EU?CmOW=7=0Qw??)G(2UfD`fu3a4 z?pex5x?_EOqUFol{~WA*eHHIpa0Qb2H!bgBRV<5U@h4y{++ADl|HXsjW;p8hQvzko zH8r_f03BJP44XR))Dhew|62n{+&1q@o& z{26mi{9cIgG!0mbr^M8v&@VoHmg|AShM+C{y_cPSP%P+Bd9RGP6xnq^Zg+Eq!)eCd|3;kbw!Ms`s!^%mUjgx zYxS6&4MtFP$g1Yi1JJl*8eR>#0Uau8`Ev#R*A+6*apWdw1Y+g%Oj$s4FT_X5j{#jW zG&2-31A0@DDe+ke=#l;{rVsi+GU~)s{%JtIocr@g`FP0bg1d4DFmwj0PROG@_KB5h@v{0PV#1HhC<=24B1W=M%1+61y zdzk{2DfKJR_@rZPJ;n|T) zJ5_fU&qFa4#({!A7yu;-;{_y}+5bUqj zo(3}hct7!-5m0%gz&ueHP|@hG5zv7Uq8*bgjEA8eny0NT%h;-?dM zUuwneCp+b!z0=+d|Au#~d1CC^ft?}m?Rd+plVC0XAs54lxl4CiGe>|KGy}f)^D9`> zC%u*kcE6LlH_3BgA1zqvNiu#VqYqeoBa@^TK->TN%JFRUU-S2PCdnMomR}J&oE!ks z8tghXy$uvK7;uEF1SqHTVnFv-ps5s^P-d(TLH6~8opI1uSwD$b;yLm2(5>cESku{) zH&h!QgY~0rt%15X(7#@D3vul7Z>7FX97q6dlHG}R_w(cHiP=Q*=Rjk=S$~)T>-<5} z$8vTi(7gFW+X^Is7NVrG)53vrZyqZTVh3WOCJ5X8tG*kZ!;my~F4=kxO@%G6UcDRq z+P)8H>b2FhI#yIMU%%L?70|?!llM}50s191ubF%n$l!eSQOhx)YhjKi|8{^bPi?1a zssU{&lK0VK*4cc1_=+bOwBG_xjl;0^S3)}-)-l%t27gm~bAweq`Iv$v=0WgU%^eE# z{fckE((Y$9T!_~PKcVl}iAI0#z87&@;j604uSYaX<~Rli~fClf7<3k5jOss@G39#G~&|-ybl#Tmj>Z znOXh~V*S2z^`qGR3%;W^n^6~9-?hid`d~(g7~Jb534s|hGKtEzra**}%#4o5fkcLT zJIJwm2q`7w2(Tkb_qj*b=z`Vs{NoqZM}V3alCL!5`jiN_lrIW{w!f%%c+(vy*0F)2 z6JyS!ED_!B3>s727dlJa%UHIV&g{Mm?(z5gS>)|t<$TWfo&irI9YO@l-_b+!<6ra* z@p(-N7VQK^VBDWVyR^v@KwZL5OdtIN`dsi@i}W6lhbpt)<_{o|-;Hdvsz44JL7~mV zKrYk%-P+%QxYx#K548b#-WnR({U%_ExvG?C^pIIvT&;^1SoftwmJjX&qDj`KRK_Ql zbhHT$Z3JyH>W@;A1`xlY{cP#xWrcoeAQJ5%dByvKnBEmpD=(0JliWL&ToR2qp+XubgLzdt#} zP0a(Xe>#x%51)7GRos%ybI``*TDnuYfZRDH6u+ebMO;Z8WyM~sMa9YUDiAcsiFOkc z)Vc^9gj6x+UZk}ujTo7OEm0Poy)bUOA$H-9B@nT`uG)$e(96r;{tb}=u@ZQ;j<^9O zyp`Wr#e5#iJI45Z6f|3{&C7=-f$p2csFULkQKUFfNr~M|_0hH{J6?rMwy!8U0LBsP zKPl@x4-~LqwJkvc^yQlV{8J|&HTvo!Ik$nPZ?yLA*#QcxJL>8E2`KeF8-YKrv?E)j zN(Y}KML3Hv41KU9P7tZ73FC(7*=uaDul*u#bf3`!?UK#NVVioOxsdgK7VJ`a>)O6q z_d!dqEZ@rY1v(*HXZR93R}f?PnH~ku&eE-Xv-bz;-q&zb7w^$q{_vg#8)&gUi`^F! zfUGaPHY`974Lykz*ThwYcUso)tblbR&n#j0+jmzk6KPh7f%g1Zhb|MY<;07|Ksj7r zD9aw^K=c~LifR97D~#(F$?+1m2V$%LT{+?h^f1dzCJj4guF z(ymN_m5YHVKxG|BR5eFz_gn3g3ZG_D8-r$-ueRNcD?O(m^>iJdXlhM;>l@b51&xnd z$s91wzN7W_9rV?&KUU1dtf0w7^+XdY0$G1jBX7oiH8+0lP#bo~6NCvjzfgj;-G-k_ zi3sT9xR@D%2hdjf%Bn3HP{zTkPYQd1N~dnNvvdJbO3pW(q5>k$RUOjBr)<|a`b!M^ zhSkgF=-uyy*ShQ`dJD7ImEZTZt1Zl!%GMb6z%^ge5;$0kyJ_Tl_KR<&VC^K?yz&{N z%E5ez@?{Wc9sQ~Q+O7g!^I*{p76qy~rJ=Dg4;1rxd%MaJ=tH`m@9{rCuNQh(uI2(| zv~Iomi%~66aee8=4BA?8M4d7xP+TNQo-1~NwLOZ*(=qE@9TQkz;yn(1TxTFLfN`<^ ze13*q0@_shwIzr9bjp?e#|N?UDjVX1cK-{uMJzg!6#ciLPY~iO12eS$``yeHoIx8h zU0s6xrT;*NYb18Agj{D;E_E1}dzj-5;-@shybm9djJ?X06mhZL)wEmPcDPx!~XBL%-s4-9Pu*fi) zV%%0~_LCT4pR5Yk@oRbuGbkeztm(f2Ei>!0lsyA7I_B~7Y$ecSaMbIoPkiQ z)wNZHz9K|Tm{OoD0%-binZX&%wVr_2#mbm3Hy{3zJJ|zP!I{e%Y6C#Zq@`xw+dxBy zT}(p+fPzBeG=y&gX-|hT#Qy+#O8$jS;vUcyJ;mks_`C!3(l2{3=Ct=)|7N@Z>*coR zv?*90iBq!%sb@g@+h~8k40m0zuyymx8=(E1`IL2ZAJCKoPwnofqpvnR=QvCQ8pYGS zOq@(Waf8)*0_gEe*Hj-5Vzj)%t&aIV0P9vnJ|lf1(Cb|C=yL2~!NQJLg>ijWOM=d7 z!C-A^Jm7ve9ms!2{E5JApcCGsEo9e$xc83iu(a-U| z2Op9Tc_ zclBM@*e`;1&$IT&tS``WJ}r(1mZIS&^X`@6hN;t^mqiQQ$ss4_bX8Bxe3$Vcf2jHyrr86 z1MP@1!HZ?2GdymKGnlbvrxQX5u^$iy^^)KC0^=^fem0gs4Ww%rckv&3*X5AY_eMMk zzV>V%-2LDGxf+5v8XQL?^UlcOJj`IByni9GGMJTxkf*PYq{1ebyo_zK=1QPVGfMyeLq5`bPgEzWwKbe8dplC zXm*f695nF_fkzBHKm}oI#LM@9*qwB4%H;tSh0*7ZVPt$|$Cs4ufR@T1BsftEG(OtT zL`etqLLh~u=@*cwv{7~95YW#$?(jJZpgGAFpF-@}uSKr;#2*0dVpuj+-ZapR!Lf~h zCxE89COQVXfbz#E`vvjY_6Tz{%1D8Bo0OCIaU&45q8yvKBGAu@BYLjbOa9UI?{l#Q zZN&Vp^6vY59W>{eUC_#D{>S280a(+sbE7zMcQMPhpZdH2not_WwcMvb<^3fU(e^+_ zVHKw@?+21;^7P$su5A7c9hlMg?4k1!Qy@(X zQt2}e`xPjowWn&Pv?;3*&TXcG^ziO1%oLYRR$dbw_N6 z88Hs@G_b9bAlN|wNkva zNCh1>J7;cyCU8r`rnz}l!c6_SQswEnI`f&*6V^hqPHVXW?I z?bF;(aop)Y%v{Xqp%1cA{r|8+J(N%G-H$YUKtP>{4X!6W>BahA8~Tq8LK7rD7ISQ<(Y?lYut#$%`Wj{Zh}i)hhTLw5j`-Yw4PRntqe( z@4hEcp5{|?2A*SezY7ak=Yut*<{%^64$xNTQh@q@o8Etajcl%D`im!un^fAi*{-0e z6o^PA6apy<_%(S60~w19y#4qSh`mA4=@{-aQv0UH=v=*E$`vbI@VX@5I z4xo#hM5nUwzDbVVzx{hb3peNJPQe~l#w+8jffW#x&3Tbi0j!DEhMDFV-+xCJtm5#> z0UEsp*66>UKugbC=!5h1208trFyr5Kww{$kKwSqfFf;lC<(BXdrl6nQB8y$EG3!>+ z#+o#bgLUw&P@@V)=H^6bs5H)S7LAgQ#C^e)uI4R$3ygbEEcV8*80bo2&m)m^pmvwo zmh2fI&kM341{ibd(2`-dVbD%`yDLzw0r`KpJu`&fo$KI?J5&zZfUb2%H+E5~Cv`Sk zSksaP7vJ2+F7<#XmF*$M-1jFNO%is2==E{33m6YR)o0F+KEqYM4Yb^q&;oLyr;;hc zT_|JN_VID-<01B;!GD6X(vn3h~6+mlCVD^n3@JleOD7YiS@3 zrS6Mf7}Z~|7WTGc^hwJbuj&Yb)rKuc-w?e<+Z8V!aUHa?y|gNoi9j9#1S#RT(#4S| zeOBDdHoObwJZ-^RK4_x$>JboGjro=~3((EEe?`|Zsx`J|w{>zsqk0`}xBGcu&%^H3 ziP&EPjo9?Wn!)PnCquKj0c5uBLw>gi=w}v_2^ChJ!&AOf)EL40;gNhVGr)TCtQCbk2ESX&~bxC|ofD}*vkz{^WnypoRI%Lm{xxWnoIEG_uy>AFeI0)k4Vtii z{*8pUK$p+)(T48>x{+QOpojiDdj5O46DMd_Jw2!XFaZ6KW>3A3HAu|4uvY?m=XN?v z%c~x+S~l87WljQ_c)u@F$Gx^jn<(Y>7to&ku3}unwP-zXcd*1Lv~M(D*!3FsZ2OG` ztXi5nmN9>Am~qA>BW;kX4HgtKVa6Gh|Ux9yuiNb-Cn1RBw4_mL?BiVVvt+fD?1ixtBnyMX?t*Fq>?Q_~+lzfL6Xkn&w9Y^m3r< z!ZEB05jQ$^aqT_--KhHhMsb{xqw||K3qL{pB;>g(t2!p9-mVB*~`k5 z5zssmer$AI2I`$lCl|m-?>WpFY|0PXl8edkVT^+GcW!gJV9;2P(HtV*2J*dSa^M(7 zwb_X3**re4z{@35t}U>BqF}z{fqCDp^JYV488k9EjT>afK=*G<$YeeNGN^NP(J}@4 zDnTBRE(@d`d^EEdeP!+)e7r^sv~@h3a^01mzZQKfnDHSjn}hBwxEfTb%;x2w^a(OG_Udlt)<2+k`=Ql{NOdd zl2f3u|D~sC{RC9sX*l-J9>{%}k=(rs=;6Q`*%!=RC$)m;=mpTIJ$_G4U>z}ObziAK zA8dA1$el;+nZ?t;MVLb~QdJ+R(SJ|(HfBe3z+C4q5-Q~wnSO$&%%&L2ht#Auj4^^` zY5Ei@=mQr^5;FusH>)3gz(FIWd|>I!n?3n8r!{1E`e22n?!L1 z_lHZ?A-wJp0sG@_z6V$ODL!K z6HtfrwpdImkXic+`c2G~5BrzzrFep-#H3+7&I6>JbX9N+M>eF29_6M0?a4OdbyqSV zvgJLw?3llnoctTs7%!Hxl|P1YMW%V1huJZ5EDiI-ve0WP#PQNUa0ZvCX2+&gVH5@T z6q7wTm+D MM>deZxtvlwlPW`LM|{fOKHPgxLta#?>}jK!uRp;-c$%)8YS*9Y zDj4sacmARBYd{9V27`o8fi>GU5w>_YOk^&9+8DE&x5i`hlQ6W4=zVGa5G#mVUPT3PgkTG;&uBE-ayzaqwEpxY^zo4@)2QCE^>D&y{t zYO0*Fd<$Cajh5)UB0w{)C&t&afrx7do_OF~#s#|1e!%!oKm( zmcRbdfgUFE3KeFwK=)$JUFHu1eYyPSW;FWw>krY1K8&GlM=C$U-z^U8ZG6CpcK~Ex zg1<1*Lk|s)Pn3129m}>oq=UJdG;^c+6z0r&?n3+O1!%`d(|+$GMv22l*=R8KP&;?z zh$4F9i2S*EJ6?4C*+^wp9B3`sLhQ{1d`Hw$4kZnbk0!6H$(#{g~{ZX z^id%H*_=tjvu%oFs1qyqf%edGt@!9VkRd5|b<|y;Xvx=_gzqLRKQvPfAOVf&F?UD_ zF_2VqR=zhz331`rI3Z%2COTv9O@LK{_}~9;#(*@%hM0tVfWDpH+EBR%e=mAjJ5a~iFmn_4OoRO zh~JMq04lXtx^l$?XgDdo!U{8mZR%wFW+rG$6500iSTRq$Cb=7z4w`?2qYULmwDRyS z_Th?{G_EeZY6b0?d^Bfk4N#u1{O5Me^H}QYM{yOPwHy{xY{V#*sA}K-hOu^}R+5YI zU-|hLe|eF23C}f9nZ8_g&kVGFIyTxUw06q8=We_Y+Jmph?l7MP>g&F}uMNFsGHo<@ z82xgl(UXom8mzg0x?^f~kh-ty6W-6ha9u@8b`>gg?ZxoArAjjPq7R|n-{O>#AK^e|i?Jyi2|zQmzDrWLawjj- zl;=nxq6eO(-2ki1q_&4Me zS|nq5MQQ_3L8lxu;a)WAo@#Ud8fcw#8V}R4TCo0iV*Ctx{D+u?NXHYft~PxgXUDwU ztKPS-*8w!~PVM>=%|I7tn3W%3-vJ&0$pDPliEt*numG?QHNUE+<)ArD z6!JJ=H8Uu2+?3$}Ez9=s$A^D`YLnbVcLsqB^yf^~*@1*}s)gR;u11LJzc`IO_PCy; zKZGMo^D)$`EI>O8`d~(lQlKR|t0Y4!AnnQ#qK6p8bonn%kYYqoR0aS z8PXlIhI?e_-0wy|0DZ@2+fR)#0ri+A1(RXBv9K&sk=vm4@i3mbCV^U1$*RL zsyMv{I=o}qa~3y`d_2RpwUs-%Q6`Oam)REer6Al?t}6ZXBvSl&KTG~!Dt$4s&BbE4;rs}k$qGi zP=#8M)>(|O30<)=eXK)6u7mA&u)zx7Z zyHh$7?Khy{byo9;3qT~}#_J`xN4>FclxY<~bLTiuD;^8PGI5dh>not}v;R@;=LCAy z8T`B!<4@}LtSwV8XxwQ9a+0Dz`jKQxGweWzMOS|(-U1RU>2>A8eOoE|At8WdU4M1Y zbG#3WOcCxKRD*U`0!8(9P5?za$evBz0=o6nX_N@FN8u)`{=ZHAr;WQ$I{n04rGKD( zvk~v`o~r5YDk}ghb$YuR9cGj?b9J;Uo=0=z?f?Gl09Fefm50k%_4cLg@ile?O^=M! z_H-)HH^;ztgcB^;Q0%iVMoH}3)+Zh4wUfUq#O&~Dj~`ssP{*or{-#`QF&*^%A*(Mz zc;YtaxsrIv3eZZv9eZ&cN50|C5=Ke}8d)wk`ANKPR!~J?F?y)#iHnmh?%TDuMg<2i zL%aKyF=33xKxta!j>h6ZBPoY6KWqc778BdXlLCd>bGZ?IC7GZ}gRo{aD}8RM$E^2abkr|a(rhsA?cm202DA#I@B*UMd~EP(oD z8nYU3WZyg*bHW?cVt4|j7I1A-IXnZ&>d?;l><_NzDL~8LZVSJ*2Rg-4ye}C&UU`(( zh1L$V!|4?}A2HVc`xNumSPHa}=CH~i9YB$m0+Bg}K%E|oX*Huj^}HsB8F7^R=Fiun zs6jhCe!d&h*c8;wo#(u4Ve|2JO?EZtK}% zps4=!`n)P2-DkOzrd~ki!bhr(V%-=Be0(ShYtvor!gAgBU{$VOVz@X5G$PPCZ-aiW zkY|qy+yE_oqub&lMy!8Zq0Oyj&~Ew1EZZCa;&!lT6?_78OfvV{8H@;Vt#@U+-hvjf zc&_p@p3Ztbhu(yyf%YxOVK?DP9Hs24jma1hdY0d^r7_08_eps%KZ158k>?rrR03^k z@Lp-d6-8|CY)d@_t+F7K)eT49HIin36K7xWF0sQu6s(UH1sWW&?w%;2EU=>o?HbpM zI9fbiv|nXQE?)#~GV3>MH6KtcWpRHqMnsvx+xym7eJplSb@6qAwQFtn88bH^xBF%L zk_v!|>mPg1c^t$wYu*$G#4>9-WItuAOEQuFVe3IpO%aVns~I{vnrQ79EFu!u3e&<4&RQk>YJ z1+$_y_T*1x?9nE0M{5+l>k>rEcM|7Zc*ZYs<_C=D+UoWFH?C4*qPpQ7#?WHeStA-* zu=X*FaWo&t>oT4^@p&&$H0=fTVw~SimR1V0m!LHkww5;t0`00bq$YfF4Z1*|t9lZ& zRIN$53IU*%+IPi;ra)KTt_$U2*(t`K#T#u>}2rNFtES)Rv9BKW5k@|nG;x> zzHL_T!W^`fYWwq-1GKvm%W9SOK+A#CUJ}QEY7*Ftf<=H-=w=UzO9Dv~ofQbcxs>*% z=I5Y?cq>TtXRvS1duHdc4QTh8!|R%k2@o6I$N`c&KnXkUVH3FCxw=cD*Ra0$nitKy0C~AEv$x}V=RK<{Wm!NgjW$e``w66BLGkPET_D@S8lr2M zTWmV~!OzctHcXu0v{?vraW!85_;aA;n`A%tF9U5aaTI^XIA~QY^>vH{Eh+B+37aQS zC$+eSz#!0fU7k~CX@OE+^AQmh0r4NI&(3-U#HVy`QZ*f|nKjY!MnDUDC|AQVn)=zj z?OQBRBd>KzoCKQX3#73}Z*ZRZ_hlDt&>~2}8x_%OXIiK+}z!F%H@XB>tPXP7%jz8b0_}`4?yx z@;7*Y#{nsroT~mE0pzA+7}&x9UL$^t^cz9gZe&$wOCER%M?d`Iz4jW9_HIh(s2XxBVgS{zZSqD z0W{anzGim{h;*;$rMu`MTLmZTE11baE%a>3TwoQP&Nu301Y#7VC=$m^aj}}7)<$2c z9^%N!DFf@eyy+t{oIyMDvR0%T^yQ8R#RdnnOgapV?gxi_xsJSGSFU7$MlEDA`7<(~36BcL*Q#$<^~pf&9; zg$BJq>>?gCgl7?s6UPtU$4qV-W1rW51lHFTG15siKuML}qoo&syspb@zsA@#^!DWS z!`;8kP*@Wc1J*r7H-};xfl?yIKgZyH43HjZ(7Fy9<87Ni6pKI$SG0p&^nv69n>uX% z0R6t2)NF^b@n8P~(W_5EE7z*YF~+#(P}(Q@ZWJ_;$pIPz^loZm?@Rz6Xs3eK^BT~n z|9;0UL3pQBU8Uu|iBPcGL`|y-;vI6fmru}*OQ7w2cavyO8xUJUhRhy}@yZ;g$ek~s ziL;*45?BYi9Q8gy2=9!#e_6k1r~plk{J!yfX`tR0I+_lc`!0c>DNMhDR^UG-bMp<* z=N}OgOgO)W1sQe?FVK=(qgf&`iYJU%S9WfI_JAj(NV^<}*3jcEZwgSxvDK9ZBsH&n z6!+3Wo3^AQN;?bmf#Y22+<73^^#eJpB|t9~wZ`KP0GXdOG~B?uw8(%085c^>f-l)| zj9_k6jqVju!D<`Z?p%?L=U`vcsZ_#$zD-YN7`fx!wWNI99v{3TQ+$8-URpJbGCh=L zV5kUGCzsNtM-3!s{oAJ>ch#peFVRvQv}41)HYai9TP@vFH+VrSJwI1)VF^f??>WWY zqd*DILnBPFQlA_;_Ho}fXf!X=njX;t1syUyM|hIwO)8Vr|4?(v8lzGA0oKtw=jaYI z1BFY*#+cOu6;0W`+z9|us6CpqYY$L_gy7Z}tmDn9QoIK{LDQM#n$zq6T6`-^F3SX@ zmue|l8V#gh5qI&HBv874(d@2oNZm?vs^dUsme_|~u>yaSW?jC<51LAGhKqy&kaz!M zV%b@swufh4Y-2W#EMA#4zXsZ)*zZldRe^MFEz4Z62YO$lFGqN9_@j<$aeB-Y?w*86 zVg|5&xGYThpAXQ#FMI18$4t>=c|K$04%)Qm>fjrUT}nq>G)ntF~d|e@ZbnjMons*cF4d?pw^r6`m5MmU}Y?<`x=7d zrJhswvk3=H?S5S9iZT#|s>PYTm>-No-Xkw@2E~^XqysI%>Zir2_Zn+h_MlTX;puy7 zJBPJ>Fb;-WhIq-kq1~%}V(&6rfE0O|o)F&BalO=0l@Wa!%Ku2~j4fF0Wa2`HUIO{N z5GC5i{g9DR|MNo>w4^1S-*o5=+b3Eya(L!VZd(182?i^}QJ#|uYe0(iUX5oGfh?ZO zRzJ-KI`KApRd51G%YdRt8|#KZmjm}84`_kq@w+K7)}Hf92le2+Bc*6CvDJ65(qHc0 z>w6XG-*5Nxt8p$K$CXUC(c^mRieW5x4>$NAlOdA~+MOzrjcp_a;J)2Tl$o0ANbIHnq8QV!pL#%Pzup|2wENoW$baRQoJ3XwI+N)`~1CV@Q47= z^MibIZ!zl16K$$aVMW?aJNNx0*2F{?9(|j6Xvd?Z^Q9vOD8oL7C(0S<)rxA*wRRvs z?sxy*$^hh|K_5F902JNOvU0NlsFYQgk_Dranj}-k5BFRm)j&xVy^+4o?VI2N?dU28 z#JTahr#Cd{34aN+TGG&2J_*(--^$Q`VepTlVn;@K@EUs$EeqX`2Tfb4;d=fm5YL-% zyMtOl)Z3O~F5^I~YR7a{vDRJM_2s21_FXioS2~8iA1B>%wy}VA&5FJD25LZq3R61^ zEI^5SvUh*R%zNJZ{J*GEpvAoNshnH{dQ=-Nr04{+Vam_m^8x5*X8#usj1tR%FV|1w z)p|Y<**NBbb?Yb{O{Xr9Rv6dElNjSHF`3+iI}gnohY8NVVAakY{O;`m^!-`c`y1Op z@lV%FD~|z5-cT&F=LLG0u}GVg1hjiO@Kfq65J%fAGX?I}cL&9I>KV|k9D01^Ljh2^ zv%vW8-9Xkfd_OpmMnX^c(P2ElXoxLIxD3|D39&+QjG>R_PFam{pm|Ku1!Q84c(q$` zgYdki7p@WAeNVwUV7@2m#cd!dLw18;tOvFA)ierthW@;inRez8SVxD%8?>x}jveyt z@*V|R=H@p)><5%av`EzD3N*|k()8*Hkibw(5w|_i$RElfQ3;@-s9rlqW}p@pbwP8i z0KqtcDo}Hk1RJ>uYUMQxq$TY@Eq9_^rV$F1^*vx$C^K1 znZ5w+c3y86G~5Lmo*@5q6i+LG@NwQItaa)G<4uI$8HT6cG+BQR?P{)H&J1n_+IC|I z*Fth-o;WOo-Vlk75BWI^R>!)RL4;55F|oci?znGls$1Jp55Risq2EJuCLk5Lp1R}2 zKoZZzH~)GA`E|-01Y)!+Eq_=w=>d%-&)TvJGb)mIsP^DHeP=w=)e?m330b4o{|K z+tciXU(0HL+muhPhyFm4m;OEJ1XuKX zcKpNg2he(BA8}qX0+LxWoee^7>}h?dOL)%b)N8@`;Hj-T2HZDGlOlQ(oYgzs^YL1a-dzzZw{2m0STTvUttmmB>dwCQy&o!3x(3!Nz8@y zv0Ji_b3s!Rt@IJYc!~M`-s^G&Xgl5Jzql|urF)ndzhb*x-gB*Vcu%9qlttbe1nuW@dDPXShGi*FV#Vl&$@F~3D*()!pI<0 z7_^5$HD$GUg8fh|>Edw$EssTIUlLXoTl)cZQ`AJB>=-v#gEhvd`n5|N(Dl%Q#?xs? zSqf8%=&Ot_*+NOo-vo9KrW+k#RUoxu{3-`TuF`yAum*^4EWvkF2xyJ@ZAl_0&;&`+ zIl&wtkteNN<$HnNyIW2y?FYI<{Y>WQ3ef4nU80|sf&L31@f3{*%E&g<3BkTx=bzEU zW`f2w9x8POJ-(3Qx?)@fnxE10TNZfk+ib-ZoWoVVq(0U94I`WEWQ0*KJG8sr@9LH9 z0hDsO>yR7nQMrfDzEw}qqK`aKJ$C@eGTZP+J;u0jOl;HbFV;7h|dfkGp99KCS7X4Zn~<#f;t9q1mYV&+{6JfWb95%yGLm84?_tWEqg z`%bO`St^eHCB~C(oki@~Kq_b-2Ly`JjDQ>taIO!F196hg9BC>Aa?GW^PWbM^ux6#y zYn)3azgPbx`d}va(G9N)&@Q-j$fj!yC@^(?{xkOF%+!m?oreD(Z3V#K~v7yCzyzl6Jge~#u*LTPXV@i zd4Hgf_sy(NUjaI1x_Gfo63F0mYoA&K(7RryGD?5jscNnEX9pV1+;>j*4iFI?g~c`8!Mj%q4AT-o zOa4T)!tn>_+^^{S?ZiOl3V?oBjkSl-0Evl-T-N*vR&k7 zd*vF?aeBStJ1Iat`_=tj=78KJ!e~i#f$~LadI+D-zcWYO&o=-~^8tM);a7RmJmWtq zVnD0@`_YUK@AXzKxOQL40&VuQzJx0!P}cdaxeup+E`NLH;`In9mgM-INm3w=LuJ~b zB|yK<4qpnxlVq${Mm`RA-(ArsZrBa1UsJQYOffoN9L*W=bwO=&AzmCa@7jpNCv#jS zgHKS9OgmW5oATJiQ3ILWG4zyDnV_9jZfim5sOdkmVRq?&!AI17NEO@-`qc3Pzjy%ii$J$wcC+&}*189Gf z$kJIZ%$y;9sMJ7 zW;f=CyGM!24(?HI-|SXb6trVa{1rF!2}pWYzLMbzPy@p=f1Z6np)TeeoOT8F9rsyfl?^Dc4TuA?*KmKx7LjByLQDsuoB@lzL{TS0PQUCcOdT#5Ue@hJ4G>VKdyI(7S=2nMS8P{B`+Rb`Otrg4)JXsL|nA2e71 zsd@|deZLB1Lr0aRh*4aY_4*s5DQH2)*R|Q?fq0HEYQD$a^2qqza+EXiE=;tZaINod?W4A#qCvyKx_fVTd8J0yg0#b}oQkO(V7L+otc zk}_E7j9u>vz5$vvKRg$Mcg>_HPnzU$foAkTQqMUVXh??6LJ@0@%BS{t`E}6FZ%Wv# zVeE<&@?{X7750wm$>latu-d$jRDFZvHFj0&4Gn@uKIq)Dirz5cJU-RV3fi+-#rKMM zwbs!>k0%(NPxQmQOfjDCQ`ZM~-+*@RJ=fUTH-RMnzSUjDxQ}=^zsn?`|>oeQ4*ECLz{Qr}3s1oZ4Fz1Ar9JuGAq(HR8VWqT{-YV`BG>?v^;PSBzh z_1%BB0gV+W=Fg(9XFw`HPhD2WOi4`Lb+!_tT}b;w zt_0@!??%&5UR+1fgawr@#=UjD@uxnVfreaY4u=ekVpIAc<`p&2tDE7Z*XV%i-Kz3A z9f9O*PhV=n+EkR+Ctr*?v*VXUQZEixiJJ^JswIJj{t&4Vp2Tq@b8T^)0kp;K`ePpM zKtf)k8_Adp)GoIvtg%wFc__XSO%xNjXko1>c?par@moH2I-GNw;@x=jT1L~l_)W(bI7>ga73+=b%{efRB+L3^XV z=92dqi2A^vpasm({JmAWq!gh2T7UFWa|I}d)o1w~R-dhVA3qyvgLb<3xWOhn&}3oL zSHklY_(it*Z(v->Fu3~)ya(&n%L8$H9f0;fPcS2o2P(FssQ-wygrRV|;%Uk&IpJc4 zCmqXQst@{jjU$WaLI@<#+q}7jR=-YKbyCbInd4VBSiZw3hiv)o-N1;D{E%AzW$3RY0|#h8+CuKo?JZ@gn@@hd#Zi&g>g#-uH}Rxv|Op!rR`CJXrqG^iQN zrI`d&)!NXOfz^zrnk|ze9JHvJiqrucppK{^ovI^1m4j`s$1vJAbPcF(xPjKoI)8ll z70}|Ei-sUp`F+$++qW=N>UB(}T4cd$U)_>lh&jm1o4~|u2->erbH1KTpmb9~HNsmf zBHJr&wVVQ01U%Rd7EL?G}f}e>k$K zMb?Mw=t;#o!}(4Hu%75H=E%S~&n@-S%9Mfjqb4D646h;Ax_;!97ic2kp@K8mSD2h~ zjsYWLHc%t-C|2M*$2BDS$DrM4kVkcSFAyIQCC4aMZ?y(yP4fq!sp)vi8?gd;hF_(8 zvma>SGS!e0)?)pMhqqtmf@Y&f#~guIJ0eW>ngg$Px$P0z?|WeFfA-jg4_7{}Mfq_G zJvr8rUUeIzSfSJ~W-c4rUEFWqrHmC*>!uuy$6nCP_uFc{z&w}8TxUJ82Q-T$w$vCZ zpcKgn>NL#DFgoriJIrJ?>c5xsFm}oElu2mopq(6<;Djeec6ZoG^QV77(+hmrJAkn^ zr$_odx&<_0;VV`-vq1ha7B5xjf%aE_vwc2Df<+=KLgEY3m5sF2C_bOE81%ch)q48afb}ZtbpydjUG@(@W2Q2b)bS( zdb#_UW#td=H$A}<;!=(hhZ@GcP#E=XC(K%-Gh0Gk=w~{jRGSI(l{b@o9pU*FYNM2? z@38t9ixSH!qj&v%?~M~^SQ*|wxVvVLWO#(FX5Q6D4F#HgBpIcmF&KQXvrwcV|07i*8z=kp&X-VVH) zXp``8dI(f8%@)!}{!pJ+ejOb%Mt z$Fs7Vnm`v)4y^Vs1C7Y?RZd_OQ{Vacmh2*ERuTM$Qh3&8UXs4MfhVHK_k|N*Rl#Z+ zv!0sY0krP7i*_p!=nN};9Nh%aRi{qH?|47dV%uObh%;r>=+sKYDo;k{eLP15+C@B@ zAnkqvw6yfp&jhPHKST9WG+twCo=3`89juO;TbDCSfjsjqO*$U}O=%5yu_^<3-SP9% zFUNMras#TFfV%DJ)-v`3d8?A0pGF@%NC@)C#g$Kwk*mJO-Ll_$yZhhd|Fv5>8*cdp zn*t;04CHxd?tvb%O=y z;53Qop=_YNXZBy;Pz2KEj#pKw1=19ta5*#t2S`_@rJ{RlM88r^eB@<6FH;?ED`dX?|3uhU@$@E%$W zR+9m1){DFYUn7Ca7sCxHv8v=HT8MZtgEr*iVZZ7PI9MdkO$WLBIlKT$Dctv zcH;0Cw1q%J)%5+Lw}Fm`A8KX7c7N%5D@T(+tN8u)OUgH(TQrZk%T54|owZM)$GM#5 zi7yYttBK3+cpH|3^=?NflMz-kdt3JtvN~y1k10WGakKPU#uX`?vdc-y2Q7h1gOu>rb1%;>(^0${ z53yS(;a6n}5;w!{V^wA#%aTaK+RpKe*k=~6p?t;jrV!@p+D<~f>IRJG^<8`Zy&#Yq z^XTkzFQ6;`eg0~12qe?Q6Euy{q%WYBMvswG)!VpF3UmMYda>)O6|@`Ti|%H@Q&LRE z*dysGX!noQ3S5o`5~3%0`aBfqv4Slb3sxFOx)ICA?4UX8-#Eo~4XDdws?`N|wQcY) zaV`3Q#eDjj`XX4X$R3#)>;)p}-Nlq!0mP6MlTUcc`Wl`8x^F9J-nu_tE1~u1^Wu8K zJD~K$x?3*do_qQ+pH0B4(SCBGNPP}H&X9#C%47p^ZrhYKJ^;Fv)RB362FUCVGe;}l z39i`joe;!2WT?oHVp{;#sjbpweOe&xtvlRTCV|?oMn|N?0`=~^yhV7fy+d>OXIJze zWj$+Fl_glOzH6*@LGLo(iaJmt1DZ40#@kK`Aej{L4~Z5)T?ad9I_!Yncu|KnVMKg0 z%J5)e18qR}aNaUT`v=h|@ji^T0ixc(FY=N?c8~pj%MQi^ov&sMeu@qC!yBN#H4Hh0FOT18^@_%DmfpuE!KGn!@~d z{}jWlc$`ytl=moD*QvFLMsTOcYRa0E=0N*0A>!l93{-zKz0L=#Z9ux&z%5+So@rif zGK_m3J`&qgJJ7D{()2HVJ|O-%V&4JuX>PjnPgbl_ug70z+{%7J?Qb_s5wUr0j)pU@A1Rz5QBM%4(k z?s>7FHWY}XFIQR92}q-3__gIXAT_hx=QTz^hi5A}MYn)t#`d0^!F!|yli6|x0ni!} ze^4J714<8iL^*+L8!`W^QGc**k^B{OBVnHkNXd1~gAZKeZ-GK%GUxdD}te{{COD531~%vs|A z?W@{Kb)7SiidV1bNA!VITT9>ptmAun?d}JzfOT*8e$6Htpgjg(W_U(`K1JMPZIu9G z|L=nUYYWit?BgG6x`7@uQMq5J1G>n}`Mb0SD6cB>llNhueM-kFUwZ<*VL9`W6zk;s zlNW1Gpf?hqhNe7v0M?1y9>JF|D;zDxzYLjzrdN03VKO+ziwV(RUR-n4QR76vl-STbW zDTe-X$mQCy5y9cb;t&dD2hfCL%3(+JPE2yvn~U4wh6e_dTI z&kn2}VXxMsaFyoO3-70}a#19NioHZSm|1)J?p0`aURzv}O$_Mnh^sE8G?1s`m+Jz1 zfENDJRI6c?8t!=d(G~Z1?(y5vSs}2-8=8)<<4!9XuZITU?2pOy__pBbw~yUNYnKDG z%d5OOxIPQSFn#=F#te`dWAP1#RG{m2-@QYx1D!lKoU_6UlwqWv{0k#{&fbkF5u?sV z#Y|7B5Uk|;CZ#7$fSP{Jq+G=r(3F{W_Tl~H$CHIutZ-+t8?>*fH$b~0vnv<+(9edh zcRpx7#J(r4J(j_l#+M4&f58}U&3a%>kKXlXu(Eu34%#K=(miCszUzMJR8en0tH~;v zBHROC)qK|MI}chy++p4?xYOZf8J%Pp;}0%zh$Z5^Pn?=ljMW6RQ(rUr7>MyAA9LH4 zEC#fk@W~PxTsccdyW*HPXqQSSy$eqPb)*C_^eh9>W?ap*<^#IDtErgqEGc<*jpa|c z-ca-GRK`uPitk+ze_jQ&JEF;HFC9>Y7d!JGZXn9s(ME;=AV0>(cN4;awkP(=dxro$ z+`T8uFcL^L#xLYA?yCLzcbwQ{IQ2C84hfBjiX(<+qw+;e*9%qRp z`~u2ilGOI3D`-{R_R0I)ft+6bc#*#YM9gTW{?Z8O(iN++tiM20m0AAF>Oe)lo^ph5 z5k54rmcM%pv={vmFR1SU#c%%hv3~~S{9h-#<{_YSb7$K~Sb-YownCN;1F^&}ifLeO zZ612bc104j`I)ZtmyduvvPCYEwE!J3n5bRf1nPhCo;T|ckXRtqdKJdKPsu}7RT|K! z&Q?9M$I41=m0m@%0os?Z4-&|D*jhzG}$|K=fjk39bqCdW-0E69l z`%DAKw}j^YM2(8E#XXP_u2kaec4*CSJ)`lqRXhvb0v-`Vc@g?+EHZ|}C51nn{LKB?dg zAjSq_#{KI+MDI>BUo-&HFdcsS1hYpyr@Z$R)&t#+IF+v$r|nxdf`PxG-CD@v&}oe9 z3Mr zG38}_54V0V!jqL4CN*J#4^XL(2CwtI(f32NT!I^%$ z%G92S)$GX6uZ2tGU=1z%9&Ca6HbgHnb(RY>34u%dh%W$5Sxu6?L(L*;B|6<5wCdL! zm+tuk(T&GGV!|^j_D}GwXBY>?O6WHj_advjWdPRs_#abBE6AFB^%Na5#U ztb|&cA#YgP}36rBVlf1rmB7rv=Q#RX)73$ckadq=Gf}M|EjhFp&9g1?zmgGkW=SkKa2o(2ltu-W%KvR2=q$Z}}n6ju<(g*gTM> z(#x$}Z1>KAmdhXal3C`U@P$sWUVk)QV(=VjxGUF9p%m!ejNi{gxYG}^OL){U8;e-T z8WSSHnr-mIYBUtcP3P9_65J2=Yd7hN(J#b0Z=yAw!K!kAlP3>-FSW|%O!!8{rTV-~ zYOI*uu?jVxaDH1i%NSkox`V^P#Zeg9kyw=XGpfEQ~Dokbh+Z z&zX!_qpmL8g^7a?xUXRb(8U@E)?!`r(zV>hCkQ=iFNiU_PXoo)CcKRi0n$nJ+(+2+ z0r|on15eN{3~AKlu>m!&MZ0{)>JxpwwecBN2AACv7rgg@wWF)gitP+gDc$xTe>`;^ z_ARsbR)R*h7B?k~5$4CttS@yLv~GFvCxpMg(Hjnbi&6!RXy?(M8r)weh98mTxJtG$ z_PCE2LtihHvZ>vLb|L45lFAu@?zTtUsp8tE0ycH`Vtw8>@>C(-0Ic7pJ6wFQj^EH# zOgexWMPB82bZ$3Tw}X}ym=b_~y?L!cqyiLmbNOI5#{IZip}~?GXtch{!mB+%Or$g7 zd?rA9+K%xEECA(Achosc0X2!Z$=r?tdKRGf{>utb4AHgbRIHeJ9(_Th*u$4eFEtWR z#3I3^X-bSlpB(>dc{s8IqmKA=5%hIXKFI5hu_1q2H(AROwAiY*W%8JzGwN!T=Q}{N ziuYlArvX%&o>U(e0>q!o$RlV3MDr(cMF98LeeWp;!!ghT#G)B(F)Pe1AFe#b8Sq~? zm!^e%NwRWumdc==y|k<**Eo>++7my2H=v-8rf)U!fta##L^EiCOw&kC?QRA7eQ@Z# zlpk7aEOQpnJ@kl?Y8LKMg}mq z+*W-J?64haytMYrDX``&?`SDY04=jUdd95ssfLzV*UHF z&u(Fv2s97l>U*9@KRvTme__Oqu)cp$hG*kRrtht^AE6zoT3v-E_VpETB0Gxp#dCv? zuMhqAJK|EeJNn=O@y+`;{GrF>o^G!Q^g%%+{oa5C&?u*lWV;Ii`4;S>Ccg?aX4+6n8r@eMNpc)$$;DHYE*^+GPy3XEI#7keptCTJm-R&}+Zg*k zl{onD4c;?2U!QL*qJ(ymR&PdooPd;WZXBF#08%l3B3t@cp47 zor8VUSQAIq$~Yy_SMP;IJfg62?XK-qdRGfQ=9kG*jzs}As21eb1j|x2SFn}___2)D^T!J??Xp#0iAH1nxm-zI@^$*Z4U;mba_CTbUPU|@S2gG`4YGI=UNFzy|v8E2lI`96w6If%%Lu&`6 zWI#LClI{Jz2`H8FTuC#=U$w;}Yc~VX)(-OO@!SMD&^-G13SN!0{O`Au#h^)lKD?_I z<340bM(RihX#8RChQeL|MVed>TEnVr%6o&`1V=vX%wk2$3RbT)wQmn_rX*3LL(+Ic zSg(}ca>tnDh#tIFa{=0IWGy!y&cvH}LZ60O!V|D!Z!b-!>nV=oC4IZcy1}ZmI+7pAdgyahUfpzrNb~BlP=>}Mp zysw-+I|j7OZ7nNm3-oR(O5IKcDB=9xxMj>T=Y_Aq`*cD3w#1V0^Bz#7oJ_-gj5=z0 ziS5g`LAxqCZfS*8KxW&XUbYOhz2;kS7jdSc|K$aFVbn=kQ$|YQtU|=plpkUbm9rMb zb=HG`ZfS;0?mV6bmw&E}C4U2}mc4&?#yF7XvxY1s3ZOKl*RO0b z%SJ_h&+7+(cHh7%HRUxB)zphT={catUE)!n&{tB@qUB1s3s$=)*)}ncOr_)4hDo5^ z(yN%XlZ-%jHq~$W?f^07%S*)j0G+TEYkJuYwC{zIlgtgE5mnJpADro}JF4X2dqLAA z3hVlH5lAR;m*oq3+S%l^N^~^KLtvpmg{vuk1x|W9Ta&2n#lK$op;b1WjpiS6xTr`Ckv>y z&IS7SJBNgETnEK74n3x7(Av0lVxMBZOo8K~vh zL*IZXZ;54$`{L6P163Gn|B;w&wgiH8xmm$0WD98KScNL#>9?<299xQTXWWy|4~{(p z>kZl6JGb8g8CcOzC23+0=GV+Li9j6WUK)RJE@Zc^st~@hTJecCc>*)}TkK`;#Yt#a zKir_%fOW0&oTH{Y?z!)+DsKf2uq-~#@ckq zBcR`G4Ya45B(&_MKwP&Sy@ptU1g%u2UoHVXneFl9Gz5}-(Vz8073fNY{mN^MAt|?c zGEek9XB*l0AbRNL;1G5431}zspN;aY01!zm(e=XjKO5`Yx8A9diSsy%^r5RsghnR_fOIb)YvE6{8y% ziK`sB{Hd4$pOszDZKHMadrzsC~Zd6y}0! z6xE;d=g^M+xzI4N22cdY>PB%ekhbZs<+w9IbzSOrozT05w?F=F=mu?2XYAkS4xrQ0 zRn0tj4MDcEy(j5G%b}HIcf{=eQWIDkfg?W^`pVabadndV{jLKp&`y4&L}G;v=!_Pt zKH+<0mt$Km)oX!v_(+G@7#&ckDBFPryyuF@_`JS60owg$?p<98K;f}@W|O#=4(ig{ z=EI;p9^DhNh_&u1GyT^}9Iun3mL(iV$zF0ka0W+ySk`rme+zmLOIrL{DFO1NJCWA% z87SUl#9|5i%885CUBRl%U%E!lsE6&oe;>BRhlc7i6oSAH#}4JaeC z?)b_ZplQE)ZWV1H#@El?j$-8sJo)P)#U;?z?vdXpj{~Y%Q!Veqwe|dTn<&AN|Jy2# z?_>h&ojV6>Mf-tnMz%0GWB`T!$te}bS~5}3yE1^aIGk(8Oc}G{ox2-%d=0dV7Q7Z8 zn+wFM(eY>}6==t<@RAWm;$4~xzngKq0OrY|Vk z1s$qhMEG=%)rc^(kh9@GSuzmGnD=|IYb_CdZz}6T7!`HBbz9 znoF;2{RZxg#dR&q7<%Y?am8zV40rVkQIRbd)?I;T4>V?7g$7O9k}& z2~mnT*02m`QX0bhKYU$d=&cyQs9(qnzhr-EkmNBKrqhi$El^f2ZQGdOy;Zl$YNFTC*}y!`xG#@gK7*$M*uIEIA7k z{%XJHb;+K)WT2UU5p+!Q1d4c3>TA{lwER;?I@kt??|b2m=1HLLaw)llQ$YO<{P&D- z7aI3=B}kyhdtJ;O*D%6dcq6TA4WQjE@+@actoL*pG_F$3pt*mquAIT^W@)@wcE@;D z+|9Jgod{Nv3jd>tCO}(uDOb~OVUKA2kGs$>kps$?Bm+Pj*e}3SvL7h%nzA1iuDnEt z{xmTKXey_1=3+uB0l#UsITVwtl7U1`}gTMY&WS{Ef50> zN8wvBpfh{wPnF98rQP2&ug2`2)nV!oL$CR$WY6hMftAiSM6g;1$cv-#m<87MmQRW9 zg!ktDp0CpGp9U+x%VV}d8K75|D`!Wr$AG+K^Yk2Oo4*`L&K?BnPJ67d$_}(~cp_XF zE9(xkR^1Cu&^nBS#f9Gh-BOA1e_RIi?A9LRJv2ZwWSVTV7$pTo0fC~Jp>OU?-si;n zvLpIL=Tk4VYklq1(%=C^`|wM7Jx0z6q5c@-dC*3zzqv7C#%F!?5V`RHGy##?;D^_N zSbGJw2@%0sa5#FGCTItLP04m+#QJ^R|MUyqTgVc(2(*WR_1+cR*NLq_r;Z$c`@{*z z=?oF^F^rA!H=8giu5oA=z6Lk@vkW|9wBd>zw;O=UV5+<9@(O zVsbZV6(e}B)oY1x0<=y-<5Ld@fs%#Of(CF#>%@t>+m@htRVno{j{p@GO}Q%Km2GOW zoWik}Ot{{oHHMet={ zw~!`UJAN1ET64vj&R~Ty>fnUW=$AS4p6i18U<@&wvhp zjTRlo&h_F{luw--XetNFrHHX-SI}QEn#3w&?aIz_JO$QQH3?RMX!UdY89ay{m*FYD zt~m_WlN3gRH(P*wEE5O=tAN@qb%@`i?>+8~=j?u01-X3G1{)DrA04=q-aZPns8T_w zTn<#h#5Xj9*?!%=@5KMh`(Gnd-}5~mSKt)VESi=B+QEQ_&Lwd`XXpQ%zRM4^G8t`1 zftj-{81*BX4YXrb2^wFptH@0-k$WIT5j2K6pig@%TLtv^V4TheR-Siwm58vRnW!Yt zd|%MXbF2bg_rKEHgHHvGVY4&F??IzsEbK@|-#7c@IuZ|nX7;Fa$2|i`n$)4(hX=^Q zg>usO2#`cF4`28vpq|j*owJy0hlBNgGhwuZ*UV27mw}ZnLpt4V9q9I2ROoT+G&CYJ zgDt(F{o>@4d*}${H>AjEO$oFy7k)$@b4W)y_L){AXvBi&MAMjn%B8ENZk+{M5FoFb zj|WQ6G~e*h1PY%%?5T{tx)!L%rY`n&h+GzP>#N+VJ>AF=Z8?fuVuy#whaa}P5DtY#lHPr%WJWAZD7N5wN>%Ek3qMzS7 zQEV*#1MBs3F-eQqsncp5>kj3CCibdCzQ746r`~GsGd!8Hr_!wSaa`Dq?gp24VC8FV zkt81k3M_bX=FxW`=JXy)v9CbX5no@}KL*-#$qA3X1f=45=_3Wk$b3xVR>T{$u1F}C z+5pk&@dhm>0yQb5{Je&dnM!;7ZUiI9>>uG-dQ_{o|$F#f%Z)Lr5a5z z&`pyX#l=b>UFp4|yYD7Ql-f@%ZV6hjLrXS|63{9`UsWm+59tBgkJuR=)G;on-Ue%x zOMT_;o3yQrnB`0Hv|syq=Dzzcu>QIoP+5a_8&2Np-o!5Or9#?BZ3e9AytL;pF9Q8h zv?%n#JPqYakS?GA&FO+n!`L~X^MvVoiI`!`TAYc#2S5v|^f`Sp2B_7XX~W+e=$eR{ z&kB0zo8HR9I(E?bE5scsunX{qKhI9abAkMw{i9b_V7>CjQSUPPZ+?~a7#a46&AaW5 z4bos$@KzG%bq1R2$gHR{0ZQ9rFq$h0G{9mTnnwj>O6x}Zg%Ieq;yZgPb0E=qy22g- zAlb}Y8A16#Y03_1S=bN!Q#Bm)FiR{`<4!JN_t|*=e)47zjQir*k!_3j_?LU&C8sWE zH96J_vaUdxQ|VvI&}*IDZPH9+ppAO`DpA24?{V#X^=T9|heCgI&|g@ zt}piscfJkMS<(0Jzn=hWn!xJ`KaA0lkN#J_><8^=nCmrXdZ6^Fx1?GaBZ(s?1!i7? zww~2}BQXqVFa1~oEs(yb$xy}*pv;GUd!4WkwM6`SXMGQ}J6U-r{MUhEO`p#0!Bf2R zD)AgW?vlLt{1rc(F~}G|c!LwhsS^GB5L^c&pY7SMh5bsf(uz0(YsTIA?=0&vu)a^K z+vAF!6j#g7Psssof8UlXD{3~cUwhxf%qHNoxmJLuOK*nH6WUf7R}khd>i-moP<88u z3&yB=)^|ecCTK~Xv%(*@fFk!~H8`a=Qt$so6uDb{MX!9$B_Ub#Jbjk#dX!Q8o zqk4T0eLzcc_8OzZ)eHG+DlNK|2K&7TZ8StZ0v9djkdRs75AI0}0Zc=(=(ci1}b1Zzgs#(~$rt z$1c#ey(Gy`;z|#+{)1=fC=#Exk^2dDHldGj#(33?GXUYmhcN6(2VAr8p2&*yeb4^Tuet*h-{ zAi;;R=YJUi1y^3O;6kt2IDayk=m4#d#H`;=6NpJDPDpDB=;^6ucIqae$L3e6mC(Dh zucp*}L_lNh<-16OXMmeE$(##2XtcxQD%}G>+}h==?ielOiOz6Z^w5@z;epygur{cP zCn~oAeU1)X|Az7Hvax!1yaKeHrl&RYct#~Gu?@=Mes$9FxRbD(-F92#2zmnJl50lw zc2A*CYz zYF_Q%kFt@VF+WRc&u{`-_a)uD(f}mL@#tSQo++BNdFFSHgXUnXTu~JQ#E^ILhKwoD z>Ok~jUNaE2>)B|oav=NF{&rQYZhftx1iE(6y52h4OyiFF2skWjv3K5J?=!U*0&7zc z!Ih3JAPH)gy;7J%j1HD+VYq@l*DWbECc#QRX?bfHqgBnL(9nyW@bK*hop7vVnQIUA zc7DM)HM=&qH-SJ^)c*`6s(`+x4d2R-0_qNg`dS=O3WtC@E(Pa2Vh3>x0JDFtRu$PBsl}v zRZ?%98kn00D>3b-hg-*hj9TuKoO}x8+7|c05bqIgc|3;{ue{A}m7a5BYc#c{K z$tA^EeVE~G8%xQA{pIOsank(_(8`nsbXqWO9EV(`dwX!43K`q(d$Fk&NbelRd)W6X z2zKd$HQ?OoRSAqB;gT2k>P^s2%vpJ!&;WW~6{mbm45)pfeQfd%(4(jELr>Fyu18Td zpLGNJS~R+)jQ+cIGpzHeCuj#-MF?xJ0x?CoRO~)cG|}2O$sPiYKGLn)`4*7uba5rE zEzn&WPoh5Twyq93ByLz+>^bYz?HJX(m;0%yaHTnK%GE8g=X`ysU^M;{=CZ$xeBC$# z)KWjEP4E?H+2CXCmlz-)MLwJ1aG-&sCo@a1w}+mYzQU~qn$uY_8cTnmg}QBXTg+2G z4Lj54grI3ujM_a%kMCI)uXI`fjX+oIc!nL2v8!_8$QPi(b|;BH7_Fn%C$*ijK+AS$ z+>XYY);hCMb44DswqSPeqsc&%%{<%*SSis>Teb8-pz*PVctvdiJt>u8G`Rwlu@l+n zTME=Ap+zxH3sh%Rn&YhoG`LCs|4SBt5^4I62)qM2R;Zd+Nd#26S@x1m4=CYm<7^mq z+mlL!nnidnRH?k{-iy5{U+iXxC;t5QXwv@RSh>);18tQ=9(|16JH21fgA^m4J_S&1o;o%f5riHSw><1 z)qOy`&n!Krihy$WbAIy0+_?RHi194;&YeMd_60hyQj5mCNWTFzS3LQu+a1U$s{WXDruV}BrN0JiJZ&CfHu_ZG;@Qurqo9@ldZP3l z_hzND1Co+$2VgFp5&r`ptaF7_+otE(@43#<`YC1k#>!2v6DQK0vs6;{;8 zywIb&pRXfnxpwg^W*BEdw|O2V%%!4|nheB9AJmf3dE5xvNo5}8%ab~kJ{Mbg0^<3SyDhNA^wr9gmrFkx~MR>7_@*A`)gcAK$_2=%DxyDIp-+Fp>@o@n1kFAAj=dsAMxf6;Ah8@Y z&YFal>P{ez^+%hBaBqp7MP{6Xpea(WR_;9r#Jbo!VVeMCqowv|dmM;9!|1Ilo-_9} z)gzg)WAbb8)&Il_*ze|>*q{yLrie8)yG4LBI;m)6v2(3%ZDj34f_8yI&V3KAKq^{h zdr2L%Xp(x*r+5|rzZ+d)7}ZpsTlY+|!5VNu^#)T7(Bqwi9|0JnVxqOiedvSC2PQ3j z&S0H?x`*`LF(3wV+Lkdq4W_26{QHSO`&?IWmIEv0<#Qu?xpvShUZ!Xq9|bb*3FghS z2l}4$P+ns%P>Xrg(A0Uk0r7Kj)$^jR4j6uo~#%O3!mI?CpL8niBJiMCvl2TV9zh76L#W zH@(EgjDhq$0!0#1fmBLQi(i-r8rAhKtH!!~etWy)ggj^jHwCN1xq-sUKIo8L2U6W8 z^6#ety54j-*-{FqrAYBs5caiKsg6tmt)NYmaP%f)S7EgH|AitBpp}lYiM-keBzB`J ztrug|HofI`=mcoeC%-;%#(l6mEy(j?g?7>?&GCzawNSYELKsF+jy+Lb;~Qvncdt{e z;N9Zx*t%|GN0OpSq20v3%c`f^$o>V!`R_4#qH7MsY@zP1*bj7x{qHlUmq3+!?;l;m z)pH!WaB9mJwBK8fRVA!A&hV-}8P=d^s8hf&FK8AecjA>JfC7tH4-e%7t?EZ5T=xL7 zTJZ|6zsGHQ}nR#Pyv&iC58DTi(B$&v~YA4eKo6D(M2BEq33}@RoYga}_)5VoHnT zj|Q+#(RZdiz|LQp)%j^Z=Ch)fhgHloupVP)$?wO^u_QV1Z9@;V*;H0iqd1@(`X9vO zJwQ4JtnX*h&myE_`Zuu}$F(L#-7y|pRJ5Ng-orS)eTI*!e*(R4_5E0D1XQcM@G-Xw ztqUEi_ZEN#scWa3v5UHRv0rP!v$mD=h1&ObndV5S*=>2k4|lgw0LE28xH5sOQ0=|9!vR-{^QM#{~C|gGZsa|q8I~Ka)!0X z{C9z9l82hCm4Hr{?p@!@0Yqo^_<|Pt+0ZJJOC5KaRJZ*2I_}bHLbTH16^t`Wp>01j z0~Gq>kjOREn!}$~R6hqzpMiOgA|=qfAJunau?Cq5UC(em0PT6n)sNzs*=4yrR}bTi zyCs5L1uS44qzq6f*aVt*)k@NZdrSTG>iRx^&`ev2u9RH@8n3AoHJ=9hX2?JA{xcAJ zWcz?3?t_F<{=}nSpj}~?8aZJDWY}BDAZiG7@Spph=je^a(~(z9%0WByD(Iki5l~)H ziJ&%~5OSgA9M;32wF{No{Keex+uJ1;H3eE|T`T8rtO_6d^Cm;TL9?09_^X7uCgUyJ zN^%=Cm6G6$zgXvyKUfJ?>_FpsYnYmdT0(Fy74JA`@|oP^|9{fsf2uV9d~oCfkon}g zu*pTBeeYaWuHr6fONS0n=79E*v!vmX9MHF1JHBM>ot~jI{dq2+H8XHsR1F8ZG%~KA z@)jr}Vo^Er7Em|Y>US-Sf{SOAf0PwyIayQhADaMCu6X2>;?CWz_jizBMLiI>U-xVs zuad3i9*i~fcC3T)3j=6nr{+$Opzp0iY^Z5gK?~PAIJa~i$o4{rL8&89tEq_E%XlE& zONC_Ic)AeA9o_#j6g0;E7Lp!Upo^MTSEex@wz>Px$;*Ov_+XwnHwDnzk(v92xbua# z7x>>}Jo>&mo7H-N^^nb(-=>v7zXczSbYpG32vzclTac#BnEE2*z-wqm=5-*;hfcXH-pJ!@hCfF`8g5 zA2bUp!J;+vX;O1`L1zhQzf_Vx2B-nKUG#cdVht2H!G8PH5ulj0#A__*m&;FCy`_mj z<5*xO+$K#^K)Ymb&u=RPbmVd3sd3C*r~3xptXrT3KZ`oZgZCY& z5ao$D1KMY$U&Lg3K*nRQ{6lU5wF*?3k*oo22}tMX;O}nsitB4t>VxJ-+q^$w50FUV zOv`&}hvtT4eIaq)q;C+&H#(s$2~664Q)--zY4h|qdP=%|td_OON+T6HeW#M~5n z^(_&Y;oL_2@!THm z!yt?kB>i<*D*|ZD`15F#A<*kvVtwb(R}V)vWrP($>msw(NX8rw6O2oX90#qc@<7aE z9Cst0NcVLwXyWp%tX^2PMDp$NXRxMqb2@C@3Ba1|5;LKO)niEX`u4OJXj7XD1cIDE zi3i3v9$=+-x}0eFjQzAkkh5A=1Lxiu3gN5(V*Q@-&=50hdGN8W5&G}aA<-%RG_b~K zlZO4pRrwK07Z$LCCdlrszx&qRmE%+rJb035-8$r-i;*_qw^%NI0OQ`&ljbU6od^7L z_?DLknv2_|@dvn;`uzP4-SeO+k;q5LPXL`6e{@Cp9}vyB)RS_o-@X}3qT84e)d6Y= zQA1!&rs>uA;G2P&vJq2`%Bwz`~a$6AD-WX z(K2)LwSD!!EB~*uxU+fXCxBQDOd8G+16luROpYA|Ix`oby^4NeV~tJU!Dr>swD>9q z%rMrF6*}Ss7^hW0MYV%DE*e55vIkdngwl)thz?kPxm@ZlNC$GMNYXsi0W>JhqM7y! z=vsJM?vFh{>H$(eSdEz+4)1<`Xva@%hmIDs;2Xm>ewZ69HmiLMpYeJvO5RbmK#vyO zS+X%tKVFki7HS5qqUx%i6P{(QDI7O4vHQF(owz=V>su~6^?_>x#>GzjF?n$c=pLQ^ zonix^5xd*ryPunTcU$KzeC5jjKMyj<@{VGp1q5mAJTR7YS;r((-+`6-tLh91?o!cs zocFaTXu+l1FDbFFWlzg)#XSK{h)Vfp4w~gc^S2)Cj@owB zBhGjR&~|RHe8Ba!Zu~YNG=g!X(eD|gh=A_(UL+>`21I3b!8ZN@PTB)Ft$+etsEf#ac>h6C-o+&hd^rIO8RQ&Ey``mM;(yoI4NW z9)ER;JYWgb|M|_E_+FqKS^e>r4?xkK^ux}lfy(df_lxQR(p9};aN!t`1k3lybC{=t zu{Byb*l9fHIICXb&gX(0IJ^2_9IsoaRF*E#`6NSWx)dPp4DYxiJPjDsX_@>n3V9iQ zoZeVR6u#0z6Ra?9T_m@^nGdLG^J2OMJy5_s3$Zq=qe12*B591TSYvN(2F6I4d5f4% z7RH@y92Q=S0CJPs)|0}Whm$0{;5PnG+=ukSN%5a|z`Cg| z(|ZVe=iIa2_dVZ1JIh~W{R%6djTkXLq_E_#^aY%uI?rDm7Cv!r#GHGwUeAV)!s1fR5%}J86nVCL8qF~ z4v^~88-{&9fOId2)9t<)rOYCptVJKR7;&!dWMQD|p+kpPv4h;mvY>Ve1xUfZ9u6Af`>~tvG)q zKRFJHRUl$dovVb{9V7WkVh>;~WH~OTt7wB&g3&5y_cOR>ulJU*^m|2dnIN z_6sqXb$t8YCqFp|+P63N1(15zsc(jFfP`=Q zXFs3=8uTJzQ)L2Lrk;#u$6X!@JngA744Sv)Qty4NqsroI0`hjC9lYxwTx|lxG{1j) z{Unf7tVx0?7tkOzt=LuzQ2DKDJk`tMACsKy zdPfWUTK7wZ<$MOvDq`&zl@0;<4UAuWCJDr)edWHh4Nk1}C z{Gb%He%ojTD~wTX+#NGlFVKo~1g(e^fVh(R{yNkFJy8*Uxcq#gH55y>j5y6JkKzJCC1tVHDQlj)>LKfL4BWQeGLOe@a?euLiZ{ z{4-HL*u(s5n@$>#!#LjGzJDv}fy`xsq;A*(rPs~tCwBlP275^IJ_6Dwj&;b!>vi?4 zrvzkxHgBF;Nk0knIOj1-w*XLX9!;AvK2g}8skj-0b-7vPOO%LOQFWn7+XRfua96tM zcoV4NNm5LlF3>Zjty7V%K-1JyS9Y-S^6v(GyN!F(r1X+wp#`hSTt#@oPR?nSZ6g+HxU>&V?-wo)k;npJ^@-X>7m2%x=F| zroX-kGpe%hlBKHvjZTR+s)Yi1oze6*$Gmd&x!U#@^Y1nHYJ<8SSUJ{3Uu_8i=@GDa zb>N93uF_DGi=Gs^(U2?W308V_u~88hpmBc9m?1VGKXHbz)P(|dkbhg!Ad&*CP26XNYkyUHt7t|XsC6G zTrp7ZN((JZ5YX#iKSF7->jj@~&FvurE$oSK$LbD{*ZCI@-ecbg>AR>>;t1NQG4+A4 zb3m3{Wf8XffDCjAX%lV$jT#$&(~kk-6l-u1H~>^sbewRI8>sVj$1ADtK*#9*NPaj0 zloU7GUy6N_tSsDjA_=t58`s)ebAjZ?GiV%ofd(qhp3i>|WE69tm*yA{tySPhXBsU!9hUh!}GQt>bT!D%EYEnj>T;a=7NfX!1RDnD-S+rZ&Qu?R`Pv zmiD4BF7BYIffDw~H!mnRUKD`l?JAajWh^xAZ z+4;8SPi~q%Xu;)N@gF6D$~Q6`_}p=vPoCplMxft}5v$T}K%v2X+)U?z_^1EqJw6U( zT4Pgm9jlRf*(dCdFlgL6te1`+0g7fKeyY$8L`z5L@$WUzLOrG3?)Mg~mx(?4s05nR z`JX!TzPw(oBQXcc-+znF9=lY@;;)~T=nV=!mT?9=FZ*8D1S>1UII42e zEtf!`{mD&+E+2uU+Slh>Fuo~EhvIgha?c31(@x?p&q-f5eT?-n{V$8D6HmI6&qYHC zaLt6VeEUSK;VJ=sA=avyKyRXDuZ7`C3H_*_?EV&U^s2^1>1SY-74Whw%?BbgF7!KE z2lURhZ;!Ga5X;S?sNKJj9@-xI7mLw4ZK6y*{1B`;4wWBP%z)0e-_N6E2co`_t@MAh z_@APXK5Fx@|f6IJY;N^HTU4X!=LZll0LW zA}sZyiukmiqTc7_)&th45A(mJ@%%^*@R*dm4x03V&)3$BfRfnLOH|r`@{DupqR|`K zMoqHbS3&zOec+lHcACU4$(FPIICoh&_Q6e{w276*2Bhq02H&6+(3Hs@>u+FuMU>Nr z90WjH%dVQ*gE?90>&|dn3$%w{;}S~n34m5SNY3sKXhNwEu8m^Wg=;O5T*TTMBp+b2 z;0J3vqgw2i0#HG5?$-JbASsc%`O(BNLEu(pYn3)eI`2m0SjGZq6Rzv~*l<->y`LKL zoCeK`Az|$aM*lhGM!|mc+UI|B)b62R?Mkg!;#LGYIh>qrCkqt6H{(qd6;MWl!Q+cq zgX2zp+*x?mPKQQ~=U^8NuR5oYm4{c6sw}-84rH=MB1Mh+C1vzf-tqwLW_sR4)-;e- zj+9)}JW!&3gM0s8AbQg()#ZIa8`=z8CfKhoWaONBj5B`ZYP-u}{XRTg5O6dW#>IEl zlzxr|8tnSbaiRoBDWbd0SQqH`MA_gMJn1shPqVh+6NO331v2A$uzvliP8XR9q|JQw z*&}73gZcmeR(Tj`*=(L?up7vfKHP$`5Gat4|Jwts;lH9_Jk)11=e74#EdVheY}Ko`)a3&!LQyZ{nxE4UetUC+3B`^fG$ zF^C=Qy?-3%PWPNpZpHoH_*5yaPY*MW>oXZ1#{0&#Hw!`$$hCidZz@1~qE zE~eoHu~9M5PNb;$K_8%I*|WD=G25kQUZj+mfR<$1D{43d^h5vM?*v>+-P_3jU#<_D zb5r)~-T!rKo6U0EIt3b0?_nR|PM~kC{zekPK$Dijh4gp|StR%LEik&wZxyOR^Bw(tO~(bk?l=i82@`VqHk&ya1$0lUlj^9ln{} zdgzNv>1L z97&^~@gxwHKH~$rwtZQU*&B#i|FE(02GF_E%gaTWe`7*a9T(4o)_uclT9pk*U1FK| zKHhCM`e8qt5@x$f{QSJ9gz&2KuZk3}CH3SMPZj zS0(Lo`;oIfXlv9?PnDeJN)Iv?n*B;nf?_XN|IkP@rL6-|+dkpl zed{U5i6C>rgPuzn4s`I}zi zv$FrgFu|}?7-!Va#a5gRL{+7I*PB7c6vE6bSg48LFnO`CyMVr2^Gv26u$>}8-_ zqA!j3?dnCBhZH*SF~ra7bjmnTK5e*za1Ty#qOK>*QW~W6~kd%TL$AjV)VhZP?M7Y zc52q@n3q2!z&dhLVxtu*~OV|W2b zac1__L@iJv`S*{KcnXP{a*z^#0WE^`(8VL@wFiHEsQBqwpt$L8yWipVEU%uV%R+RmeJe=AOnziQB z!;x4snPETAP%wa&sM0}NjjQq(*;q-y9%lIKNp|KOSoI8!9WTW*)JcjXkt+wZsGBPL z@~{JMWO&&vV&1Pb9%d7a18W!YHAzaGAufIJLOITePERLpJqgy@%_IRi@YJD=$|Rtl7HowZd_V$UZzjBB2I9CLp($Vq)bp>Il7t$_Hm8o< z18ZiuT`8r<1vJy+4|*qX_40L3L}IRhc22*YA?_N`{!q!!1L(=(U)rvB{(?57)APyd z5YX04saiC4kQ3G0n|>cb^Pf6;f#WGq$>F}%0~|m{@2s`*;?5UIxhZXbfo8n_s3Iv1 zkmp?$Ic2Pr4KmI{BzPi94+%KbV@BM5$k?D`0OQVQs`0ZN0Qy{A(6fovBOVap=!Wa- zCP^M*^8o9!Ps4eKt$-?f!}c!YK7_0D1GunrWp`bt+x-+A>FF3JYhD<){`QJ1&rhI` zBX15;VBfHR>@<1W2(*HlO_JCGAe&0wh+|k4r9C=gj*OrkyukBG8Ljlo4AbWSKudnv z!cP+b#Kf(idKL3o#_eC`sa(*09W#&3`wCQXq_#4%3y6g>h>PVDP>^i&ua`wYwqF0P ze;NR?9uBVzkaqK-+9^@L3>hvd0~fM}SyM2^&?>_X1=* zib)u)qVpT)HPPdH_aEh?K~Q;FJe^5$)*)Uus+7+p84EEpDwWO$xKp*>#>ou5F8={ zvY1_Ns}KTuHM$dBj}f%`_rT&&I%q|{%vK%fm)X31RTSvcPYL~zf8xRV`ELH&CiXh< zQ%1R&*g?d!i4szNfK}EuH}D}VP`I`Te;IaV{Z676S(rl}J*rlt*pXzqhzfUqFWOao z?^7B+(_HyoUPM3-bJI>Y$$qp23eN1E&({O8^vRW+y$W={)1FHa??LMtDSiU|68B}( zVC)@ORTf`d+~B|jF~;cWi7sn zexWu0oo0zO^C*8U%LGaAMVzal7hFZ-T6W^@dkj-*yr;SMfR<0q)MoYqNa1#%q#5=) z;`;`%)e@j3MsUr}`QcpErNwD^=S&AAJA3g_|_%O80=TYZ1yF4a8+5x^vq$ZFvCEp+({X`qqJ3=vN0`am*39J z%bo%HInzHL83bgP!NZe&8pv;+vi>%%fby7iV)zJXv4>lQmN|ihgy+dWL<5oio$R{r z3G|KoEpdwq(6e$HMWI(f)

    Lox?y0625`!7;`npKvHU4^H1`t)f2d*WdehfL|6+} zdQv*OpUOE-;QZ|WApAd9mGDFQ?)TAek1=g=V%+AF7G6L#rZ}c zBU{h-3e2_Qz4ppS(SPkm@$9K;V9g5s((PLdr1dt+E>sL?BI&;44tBl#RPz{8tn;j6 zO=1i4U~SMF$lmRGMTwIV6Q^ky~`-==%fKyI0k{ zJ3E2qO!9k6u&W%J`#|v!`-VtH0n0SjVDF+GhuIE{ySZ;Bi#!BqRM+4S!zZAP?)b3h z3qXU<_V)*1CZ6z1lRDQ9n%)PKbfz&NslsnPk3Ivnru?lxtN_H(=r4FS3h1_kM7W+Y zkUg=CbQJc^Ql>LsI`IjQRg_Sa2jeTqOJ&Y@0mfYtQkB^KZ&Z28Ap6JqpfzsTC&Whr zeYi(7D^CsduWPx{P7>&PkCEsJtk5YXktkZc?{a2p5n#Ya#Nr&XHkW5%thMSWy(N~^M^~qFdnO<8|21ML2JGl7@>`|y6Ug4 z$%-da`fUH3v+`gSc;q${gPFJ%oF_OP3YuH!y;H5YkJ7}$@gwNJ`HbUha^JuzmT`(V zXCKhF*aY*@J|JiDN4XJ0K#DU9y|+&Q)kSC6Mc|As>-+b7u(me&0(?hsu31#%B;j`$ zS0J>LeC0P#w~A5s3`Uia(#F+a9kk&%dGL^^x{j5QcG|qf7T%qc@D($O}gBtk9D^ z{45|Dted>~!MPa0wlU%BpU}ID8ZGb2FgFUxIHG9%J&**7tUVLIF3Gb*~214=K-40!~Mp`F`M$we^TnZ z3|hx932$*7kT_fJ9`kUZzaO(GVl9CBt{KgDNCSnf%S2=n1LaJfGrW!c&%*KNp`Xs6 z)s79%%;O4z8`C~Prv;#Dr4P`V9T!}5$K zJFY+~DrcaK8??PL1N$uFfK(S=r1)TtPu(J|nO6nv?0{A3sZpRl)9_%9^YmJ& zfhP6Yu_6?6NM`2!_nl7A$T`GH+c1_X4;}BH##m+?kD4aOj_Fc+t)Hz6#u+NsYW_z5 znJ$=#bSQ#GSzPBGj*+IgL+4_37PNu6t<6Hba`rdlL<00x?HiLvei+||!AVnH%;yC$ zk9#vNFvCI5O*`=i&!I7{cb>f@n425t^kQx{W6Kf7=6u@YmJ$Wr0@pA--@9PYB&*r_!HBpgnJCJI;=Ki|2nXrIY}g z9oxgzAH6{IZyUBL@_~lt-ZuBm1DOU`cI^H)(amH_PkEeCTyQWioEEH%-#_zZ;N5PC z=^YjF1Z|=2 zEyw`YcO7;0);h z5cOum>*OY&rLtT9s&OB)Z|yYtFvqtX2Vw%Zzj?Z

    L|5Q_c*Erf@9=0P9O#3|uVoah(FPQ$w0 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 z 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

    5stPPZ)xzp8tL#7}7jBe-N|ogBLfR=3*^>vz=y z=_ZAI*s=v;3%bC-EDsdjyB(g5G1_n{>|E&pO>$C+i}3v~E)JV_-%Nm}eRm-2Anvg1 z&Yo2BaiFzN+a_GV=P1f~lvi2{+NmF-8}w^HDHn)8(}n|`yes0PJ_E$RY?V#;e#d$m zimP2kpoRa6tqaADZc_AtObMUzQBs^`5w7J=?!?E8c^KE};}}$X9>`@+c*`VK?Q#`~ z(JQRMq+!*OCM&Qu^+^rt#{g}|aOir50EJg9M!RE2qVI6(wt5BH8NCc%^Jbvp?+${5 zUsq0>ub$tBCzRvbV>Xr3U_CMw`goWg=w}np!>cqnV{zI}1hb^Zm}~eJ?iCqJV-Ad# zV7=))6UB{Q+wUy#@(o5|GJ1QjZUI=|<@F0b!tO2cbgEn)_muR9QV;7fn`FpTA26oF zxHh9VJz~N@qCQyV>p)U*8QtYhKyuz&$4e)H4%}PZAKe0E)2^lax)De? zk?{;sDo}2thWnA{K)NJ`XDje}xi;5*-+O|V_~Cx$+si;#;@yA6S^%v~^-B6+ZhTd8 zzHfs*{pI{@knnx9D$~2oc`@d%soY53X2XnMhj$kferF|(;oP~bbD+sa#>Mq*0OdE) zwP#@5sx)uk=?Vnx<+k$R?-3x4<(W6XutKku$)#@KZgB9ecK1ijApw@FcRiM2+`aJ* za_;~jseq26^eLb)-}GIq_~aLsCmn~-YX#pWCCdnz)5#G%j1};rJH?C#y*py`!RwtJ z%+>L8CGvg`#5Of{rxK&!y_+ob73N>=abcU*Ah3GZbO##Yny>!sn2VD_O)Aga?gS83 z@x@)SWI!2qmyZ0_0V4nUV$UPoL&-|q&Jg}vqHy)P@ACn$-kOSubg=Ar^0`2o08--OK(75|A$8)%o?Ed(;Ez%V<@fj0^HC`Z_KbkUp7(x5$>*J-kSHv~7 zc$MHz@=(-iUmezYk2Twe%ZxDN_goCSlrfNMHlG6FubpSrkN*E{p=*vEy#MejmH*P} zxu3!~%U&N2((6FXOF4gkU_8i1pZxav3|ho2_3RJaO-;BzX0e)q=8=7M+Tbrxr>)zn z;{s65bOWOaMy5=DJpQv1XiEY`hY0^=aG|Z3V|5TTDVehu)98V!ilxie^?+X9ZhiU_ z?@JzLo>#i5i*KsBG&#n89^X_JqtmAn(;y9y08hzb;5ERBwUCsBP}oa~EiEHfS-a z0B9>zm^7UQ=!h%lU#0}0TX!-w-MoOJtasVSy#QJ@xb=+tHqd+7{vAD>QTJBQj@cZv zwgvvYhi8E9M zNGhq*L!KCDl!_`Q5i5Rxjc#+}K4_xH>LN)6fL3+1%;Yd*i^e6bY zuesQ34zwsQ*JeR{a^=VAtIL6)G3cywY_kHTIhwXMkpl@FBG)p=2g=-JO21JGB)9O! zvS~LELwRtm02$DY2%Y!{tigLXZN3nGY0^T|fJqYTL+0_73ED3(ZjgWI6yf`Kbq;R+ zo5b@*-R7)}2JWUIy1PdP)nS}y`kO++d-TuL=#j-z)vG+XCg%Y3>96{!=Sx7s-4h2-CIN*dl zKCs@eKlGRWERaaf$3_XfNAq57C$k*To`~BqXQE$34j)Pkv;d7nciZ_fR@6XN*a_c4A3y}3bi>YArf%-i2q5mBD zpH_G;yZzQYkWpx};UbP}<2L8h!+6jzJ##d{GtE2xn)6zC;@Kytdt%ZPX5131&dOc{ zQeplPyhI1o@Bceodj-gubBEDJ4amn+@|@}kpht4@>8cn(cOLF~Sw+xV43`+R@I*$N zJ7R7{1)BHTu_!G(9VRA?c?e>yCNE}c#T^DKS4zY3Am)aj?q%s8_`KhBQ!>mkW0&=w zZ#oXcxFC-vo3duS$KKT(Lsy_<9GjGqO+eQl3D_5M00~VWFt)!9BsN0!>l%7U-z%*$ zR~WQIZzUIErhvTWpVb5f0J&`WyF5ZVxa~p~V+Y#lU(TgFcxw4|Ca|3Fn?3_AaJ=GBAlA*Z%Q!{-og5AdM7d#JK+wU_ZJo$7gmby4z4lRTky9Z+$rLlUf)82@k#9ntaF@M&J60FBZ zbRS$90@4U-KbOY}^qw?J;PEe@6F-Plqmh z?ZK-&ZG1ZN4fB-fsLIPb+%S$evR>dj_AsVhGgoA>$8Kb2(F>zr{9I_->~Mx%puF1q zt1x4k(w>y?S%_U;KXSuvfOa(FoL}7uAl0bSPc#pK*u4$7RZ4(#^f=u6>VTAY2_9|3 zGp5hEv<-W)rn9n+|sBMHW!;UJ=$Q2=ts3&n>3m(VBfM{~;Sd+mh!M09qa|)_1?%fG zujmf)0e!j^Td<0A2PzZC6fko{@)_t<#lRZZxBQ|-1?Z3LE};WFK+cLsMyN3g|0X9Z zC@@Qg_k@yIjezyLj~5H!UEh{-+28h6fM)BT{(I^e(An|&oG|QWH(MqiJI z|MiDSv=Wi_)>i{{h({}#l>@!|L#<7;17!a3ijJiZklS!uyPh$S+!;~7;R2w&;hm2? z*npHn^HQo}fb!Sa9GFRgNJmaa?N|Zv1zvtSiFb?6@fy!40&UP;Dtqr-zbcUg|TZ7#2Ir@q$v*Ms3b{aDE0|Gx3V4NU> zmXH9}Oq3*dn+~2|6e-$YnYMy;ciHk+*D9dlOT%u%XkDxN6?cIiv^KLjjca&TnbaKC zTgw0~y_wx;dj=@q%80%f*W741f92&UTEnY$fBOgY>%@^1Y1~t&OkAUP;~tuy;$ksz z2dpWfBtuH%K#4wQUJ`ym?Gi~?bFUz13G)4UDQiGU?xPoFagYD)K_q<%?@N8amtz_G z!H)C{<&kX|C+&Pt*rpNa_q#LX(oR4Yn+dNkqvm`hj>p0hw4NkKlL`(X21Y0HY>d|L zU*%S0SkuP`cL z{|EOn`iBbKD!30SJy!NB!U!(UNGb%|!nhvpp=uATU%`Dc0i52T+3Wcq8*u?DNU_`d z7bBQEZl*+d7g;wiPa$s}td<50?@Kj-)D`B~&7#kc_M-*@{ADcz)OA`S1PuT<6^PIoCQjzV2_v ztO!00XYyMxC&YpE!;P-MTppl#f@Fdg?8+;Z!LAipA4FO#6^F6Pn#C=R%=f{#$8C3( z9=DMEwZ4|s!rQq$LO#29u7Km z2sCP&ILF=p%;pagk0!w`#Stpp*&qzop3|R6_(#06NGW(|a4ww;tKCcsi`SR}51Z6vx4OPRhiRAqQxW zBip`5*bi9GT(IxNoJ>&RUQ)wqyg1)hc|;$^F^2EIxrH^ol}048{2sL4ske65xoOeAKv<3544E%iZ>{8^wc3V#n|)&R-5h8+4^1=Ra# zf=&bDwsy%=JEj-3pO*hrTatjvo*$Z0^#&?h38Fli2{ha1JJJ~i#Qcz&?WPw{u&SpW zEd|gZIkE8DG@y886A@KCAR|qpd#R6smZV7MGqCbfUfIS>SA(YJBtEeF=Ey@&hoX^%5)qw8F~w|B`F}j z`wkB8Fn0;PhQ!MYKnvnNm=TQ68}tvl9IR&h@T#~Ska>=gsDHtf4$;u0hk+MsQ%CU+@ft(yLxG;j9>t)O~{#0#T3 zmzmAz@ftMsMvia0D|ltLzv$OX(Ad*ey=1XV#mMD2b)#dO4%gQs`syyDIA{WV znMLh5V|MbeSTR;!nE!&;xH?#M+o*|&u{V))J^c|m23oo!M|Cx>DqGmU?J4#!HBJW2 zQtVO(DH%eaVvMdQW<*A+!VEv#wvX-PKum*0R;M|E!bqx`T?T=UNSSfz2LmNDwex(J z1Ts3TrcZ1O^rm)iUTOqTqVCq4m$+s}Rqw@rsh|nRX-*zV1X5M6Z#W(TBov)|!vkwN zt?5g^S3b~`*IseAVyEtkboAQ&i_XA#<>jtrunM%dSM*_L{aZfsN;4F+@areOi(;in zct)I0$8MIW-X4DK23UFT(lkw10;zS}wim#&Cug`(f)Z;XMo+{j6f>-x;IZ&W^nu`N zu4xo%;UnH!mquXjiTCv7JrT{)=#&37s8K&iaH7V+PRE#F!?h8K5hM!HKymK>K%e+}_;*s#Ko>(F3cokj6CzPawr? zD$=WTKt{ILq;}u&YnFaqp>qqgQde%8-rGQS%zfVy4g#$%jSnR<13A2qZ)n0k^rv-n z{ca&>7sw>2cQBUYYQ*c4_Mox*&6tXs0p(haCHP}LbJ@6_=2ZfX=UlOR8O9^}to!2P zBhco*P}Uw}1EMth@3{caOP-QY`h`-^E);)L2|@45q;&m~!?R4EOlyOC5v)htYa*hs z7LEw2s0%*^EtzwB&P59-u(WpRp*)b(nKMR?=mT4meS=gO-&20BZuTfqs>Xs;#z%s>oA+NSIRcu;_69nNt{w|1S@0o zVcJF$pi;Y;vy#|V`Z$xPKK=$xYr{yu9wRNWR^}j34_ZgxO!N$9&R9xeJ;O=R2GYMf z*5fJe-|}Zs;|XYg>OJdSpe>`ck70E;U~k>umyUl19{I_niX@{I`aC zNkN-ZmR)*}{a|A@d++XBzMP8KZm46-t=oGpD`RGh&cA!wf}K!w!RmG5MVR|8`bx-i z^pMz1K2k&6@1vu}{*sYk-KQ$kCXodsE_P&O_kFa9dYxl@4?sJ4s7xu`2FS^F^{FY= zYD?_U_{11!0))wWo7ju(OW98e#ex>I;qhk;v*~p2aPRJk$onKg;`=&Sx9smRiet7% z3RT?L{ce-D(wk3q-xg3_^inqxdr3{t_jq3lm{FU*9h6&x^w-EKqYvo5MFLwg2@q8s zt0cQEkYTH5y3i)j)AMH)*?NJ7dNL|0(9dS3YXpy@LHnxvi9ZZG!?0v~450`1G@8umf;CaGfSNA_==tx}&l#Azf14Oy@LT}RuRyLMeH%#JU+h#s zGLTO6{aUV2p(s9L4Lic}fMeW59kiU-JcD4+N$6Hv2vz_va5g}kwg!#e}C%|Tad z2RsdC26dWt-=`XrdY}B63Rqt{zTLlb9!R6;MU@>sn`QF{u%-M2O()2$q?Z(1)HBFVS5};z+y@^Zlu*%{lTix7^D<-#h6dl`^{Qn2VrF(WuC?^ z#kEQFGzjBCGyKht9b^7H{Fu?BFt|!#)y1c-cwc_QrT&AsDx<{$0~hQ_|3>WQnK07c zWPUH3F`EeDid%fK;%AOj4JBi~JXEmSa}rO3PNC!vI^1yOrcYb>pRrp!RWJ?;ehM1r z=?ojgn?P0?C9V1eKv5%~il*y;zA^`Xq&ElBO7&ad5CX$@#Q0&=^Xp zRrnZz1f`ehGcX=Mhb1E-he7i_&`zp~nbS1z!-E2Sz|)rAmpBAgoo0I8>wZ9eL27l; z-+0+RMd`S8FJ8y~d}W|&IzSk#LNiQ0-sr!7J~3Taa7UdVO8w}M;M~ULkS~}A z1}8I3jj+1SQ{}%g6M?mhj_8deW_Epn86)o;XeC4^vvM)79_jv?H^$s8WWPhU?+;if z6RDmS1*L?;0QU4;BFab#PQo784uLSsyD1`?eZzls~294E~y2FYM#jB?buG@pQ@cCcB!8 zq@1CXmFaT}c?@P^Q{I;P@r$6% z*EgHYbpVC&eQqRW0m}Wl7Slcf^w*Jzp9lNFy5-pmjhmp+%($lAPzTcg!bq@$r!HUL ziLFhnBbx_YS`!$pi)8jK_pvwi**Nq2Zo!QDmDDq$CP2ilO-C1|fYQmh1eMr;F53I{ zu^0lKzg5+_iM4g}g~hPx0B9vPS&N>XK;(Z2W!e4#(bb(u?a2k|Dv&xM)&yk4Phl1p z1oYLaLpcyLTj7Di`)M)I`l%kb9zw5)&$IO=Vqe?8WNguw57uq!Cm+W!6Q7OWlrYB` z-%5H`*|1ifiiot7q$nRnU`r9EIXq9)jk5 z|MHCs-ax`_fAuU!fShgLy=J5ZBBqn(iD&?-9xRyQNdtOZysVt!3M8X&s?Wd;h>iJ$ z+!+<1P^W1XY3yM?C`IV?@$_?D>Fn)l18er^4kb?e|c7Nu)O4CH-{{=MLQU`f= zKA_LOGCQOPfd&s3?D?k)^v9g#sS-6%hHTZFVJ)C@XLW}NKL8yYoS7$S0s5Y%bcFK_ zj+64YtLFlGUw55N46`YxMeZ-R5ol*ND%h${1Ers@ z6R10=0a|wDJr{TEFO5FW^>&{b+Eq!f|Y_Sd+>*O}6P%+ShLk&NR z&46Cnw{khr04*}Kn`9XPC9RD2oJ|Fa&>Bcl7X;eo*!ZYk1{7R6efZ^hAcY6}Q<%>I z{aQVy>wrEzIT*M%6t8^XY4-Qs_jK^R{J!SJ4&#(8%q5oSfcBlUxgvt++fHKV>HOQE z{T}GKoAnFmq#BLvW!&3)iqPTD81vdI;}_`g^ce5W2)8o<&)M1p-o>S_tE);E~@ ztG@2iRs@j#C+~SbjEtacRvs0`^4T1FY&_Q1fp?eVgt5cj&dSxJoP!y?`2vBt9zcZ- z*VxUBfgX0B7a-RMn(-DLV#a{{;lJWI~q-uA&A1RXRz&-?->Brv&uZvVtavPG*Sqn(QAbteo0850_}xJ_IKjr zK;z$IPu;?dbx+eKE!G5$%_QOwA9m_kd69!;`#@{D7}Qhx6lnkF@GVx%65c?PpfL2k z)yK5Ke9TTUYQmmBSY;;O-*eXP!3;_A<9X#-Kytz}eot^l@NECrF;CFE8rn137=Yd! z>b$n;1;k4?mQaxiR6y?Bs5lCA^)BzNw>&^9iecHi?-n*W>M7#&9JI0{IniY&fL0VO zi6^Fjcu!q!*!|XN=?_7gdJ>@JMX6Y-kpuCtOmFW#W0pJ;*{j_Q+Ghnjs?-9Y$5lta zD*OeiP%308?F1?ss4YA%1a#TA>8M~B5Mxvp(0m|-im_K+PtYJz*a%i!$w8|QX! zz1&mp0M_^ND{ZIV0o~qrim?bY;`2Tt4J!`NCVKNC7crLh(@*m9F-vSBzR>LcrQz@O z(uZWPV4QC*#ak6BpyNU3l0z{b|9uG5M+Bp=P3dS!jn%zRN2u>dHjFz(r|qsJ1w_!W zEPWHZH$g;w+XO!UUF_w|npOsDfRUUdivm!2ME;J>4WO{F>f!LAyv`53kVu zk8%`_s4rlQhCEF~b};5D=~t{2aK^}}&8V0zjN|)#`NelU^QKa0U9>4d^Wb=&xqKGL zjPrzcF&9wu10xy-+~pni8>{T|pcVZwdNsQR6mipq&=_+=V4d*YqcPCuZ8e?}6==izIJ4D4m+1=sSBJe5~=W74uVDuYayGo@l;#D&EE88){W}dy; zn>zy9$l^2ixt0&})Z#qD^eDc+BfV@#Sz&J&H$BaLWBLpbiBz?I z9QFgv4GrzD^`P}U88Z3u04RcyPAdWXOEy2l=pBr{qm2*?8CJ?2|ADwZ%s(@|ymlT! zn9;>NsKJf?GdiwUI5-Si#*pLsCG_|sDr?oNL7+WS6E%2)J!0NdFoqVNxkgWRUgyEp z-ytmED@Ct0hlj6T#?Ele+QIV3EX;l8Zv1WI91xQqg|R-Kh{Qdd-=^F_6FLAc_)-cA$GeFisVI_n^K>J8+M3#O4J^OLm+3h+|WcrGlB(5}-&OW6U>(XmR zCBGhh#q&YFDH#2n@iryL2Rra7Vr%!7?=aUe?g#f*^sd2-5Z8n`Xd3-SqOa}&wW|80 zdlUiri~I^Kzz$Lx+N4U|1=@|2{%>O#-vexZ8--YTkKO5%3^T#{dcP1uYvd46CxO-ML2e-LOch>Q^p$qq<)&ZQpB;W38t8R(g5W0glCLplr<^xo`pUrsl1JK><(-*_BW8SBm z8{KysG_SmelSFuS6Q=WOD`70jg<{FRegW&5j{|3$uwSvnng5Nx1X{4Sm4M7$pbx%R zCrV|2?3QQ_erN--XqGh@ISe#jbbBdC5-9Z0(NLXqAi0swuNFV8v^cv}FOoJ;oE{g0bX zy3h6xF>XPMNenW)U_JAGjlKFEkOqZWSCB6d{r%Q}-A{;r-5KgI!qu1jeKk*23RaKK zFT(jtK$k>M4$Y+iHQKv%1Yi`_T4%^E34ZPPnX1KH1%#MfXvrt9if|6o^nvh>Ec@)}rYRwdp%!CEamTdH7+ z85WkO&i@SWYnopupe_O9PEq(<@4la=KYn?r#~(D7ugUh`TY_0ITRQy&V{|*Yl;RFXQ2tB(!)fdwJ_iktkKpsh&%7j#BFsM) zpJ$rHSVv;KHQ_%n3Ke{=&F?TzYje!HFH^w^uBwNf+kMAn(VU;bCER5$F*D7MAXsJo zu=j}_19~SwaolYLsLRyEq7M6?K&blFO9w&o>6yN|g-PUxXa)5@t?wfg0|3pYQ%37DA#%Y(-n+r9I2zT zBi4-f@@yPg2Utx%$Va81*A|LQuARi(P-8x!5<-Ai$vv(}m=6@^bi`6M2xzL(*E)R&j#7+T5Vs zJIE{*j-FHqCcZ|I3R?Gw>(kX3YpR&X;#SQd|b2*FU^)v>WJM zT|>}LCD3Qv=Y77$KzT#^_HUxEejDGi6*vXjqOpmBu^5nk`y&n}Tp!i#=k~R+psjA% zHaMe)=+F4{M`7Ri$eW$K`y95BFDX;i1>-_a#7h&;09Ewy@U~I{U3Wb2>CF&OLu<$6 z7G|gLKbvPWrl7^@(B85y1Tu2j_MyPMx-MzT5bq3HNWk(*Uz~BhJw@iBH)zjwqHo-@ z2D-4#FH^RTbM5#S*mQv$z8u{*g6E*(&mDsoc!tg|8flZ^2_{YA{7f6;(ekbF7u9{3 zQL4=-OBevOO5dZEyb9zKNLJ zeCCtGd>Km}HIqP}$__VZK57E%pu*GP^g5uSvZR|un7czkYxG^1iBBT<(noKBl{WJR zr+Fuk;#;xjD%c$-3^q0DH9>2lnfI%D2~_!WX4w?G!8A2sPU0FxO5p z1U-s z|77=hGGbo2!Cw|MA)DF=Ic*?)yY%<%@jx%mj9l9NzZm^o$HiD$-FH} z*}?ifG;XxxiYMpT@Pq|7X6&s?p}bSiU`BjUkK;AWY_32b=La`HJFbxRHR&U5v1yEMRtuuW) zK<~vZZfgqwwUJCj3cmq5^!9ytCibR1=I$6@qAqAqDg8_rP7KYQyO z(i7Sqz5!7f=SXnd>%ag|m$~cPm)k(C8&~d@_yPsC^}9Oa>O&-X9olU{v+{J5B|iSL!(CJ$75vzyJ=C7XlI2-K81|NMXtP^H|B{$X6fx@OKLDfHi$x5F)hSQPp`Hc4|ne5VQv_C$M;v`J(R!BNGO&g2pl9Xc2-DJg}_muZ@05w7k4-P6F0xx;;dpFMviPx}{?#foiu69rAdV71*6*+Q74-g!f{hm^4@e2ouPL4=R@>xs&u1$tXk#VU?5dP}`^GKmGWNL!DgG>nWKL39&-Df;=8N&TU6+~w(nWR7px#uO6NzIE1+LVT8ve8b?OP%OFVlr zy3ReKM4!q8bo)7C=6sB+ioJ3MW;iFe%bEoPnZ)f+U<(B5mUj9nhv&zJS;HbdIcV~~ z?Wnka1HFtZzVe(8NUe&{#zIkXcAGC{8LYHY8f$Uv8 zjvT>^YS%&I?y5MrAr6#&CgBA6 z2cW&juKd+X02&e(9=sC?q!%B|x`w&o%6B!D2Xpt#Q2m0gGg#ww1}_=804e1h+BfY5 z^y2vu`51kmJrnkSJDN?HJA#AYo2g z$CK`z?#jbi>_eAJ%4GK7NvHi_O#I#_m{HL|dsMg!=+l7FTNUg>dl(4}&tg8GRehy! z#{{gljYJ7&(SNdCN|QvHpgHs!*R)Ck4`dNX zTTO;h$nsq!iVy+K=tVY1k~Wai&pQ3-(?BjANtcT-6aRZH|A;kKih%)*T~8BOclg8y z8L-OMp7l95U|s&cyZ3v|3RoErN!<8%9O$i@Adu|kHSzk`*X}$)^eLZsA zIswT4&1CMnF%U6lCR+*4pyL;O!I=YEPo<7su>_FJDG9&qH$df96WZF?C$oOcmL%DM z_U`x%LMF_Jb7d#9r7nSXb7gRZH3?`u{urt1ZJ?_RJG~0HW^opS3;CE=Vw-BZXQIJ6 zDB5dz%@Sx@y!Nj237{X%1w_&4=biB%%Bs4c&2A4hUflpXWxXBxJQe7b=gfkQD^MDT z<&bw(JkgPb-7Q>vFhz_uay^j$aZdxk0-S;`FR@5vZr?(+>yC(>clM z6(4+R8U45|{-GMIw+_1tiIM}we(1J5CjjJaO&`f61@z|N-y{5Z_HdXUC@UiXjWfR8 zxBzQwaNWJ;x+!QfzE(j#Sn+Nt9(4b3r6VWCG>WiCynVO#Il)U9ciu&%IT|afMk`x^ zGU6wWKmAI%CY_}&K9i87e0K7Z!jbD^phIfpM$lQ z)yLo(`abGe=Sd&Tq3v~hxnq@J6;QwRfCle7ck@yNOEYL9er1|bm_xeii!Ir>%cDyl zC9GS)+9PnmsRH}o7=zTrNpsNldYWg+7y*4I7vMTS52Pz$U`|fYkY2rx zE6r5=*%N*StlA5C?%epi!83HeivTHIPucS}QdI!Cj^8L?1qq4cE@C&beE!*`>2Iem7@d}2Acv^Y?OI=B{g>lCo7OI}V4zz6P zcI!7ry0wmoqlFSQE!Q1;epw*)p2n6MtfM6J-p>AV(1hbBgTQW{v%_EK)+-Uamh*9gGN1VbE%dJC@wilwZaD|g(YW-oe-#sLY=N~5Gc)? zDf=+yU#AT7hl|+P=FgSgleGY=$n&N8$8JEC-PKj6{efOct4aUEDjR#MdUQ+~G^fw6 z2nYj#cs89TglvFL-HrUcmmRG%oyT~%fQ$!)WaTjv3rf%3R-^-MT24yL{2&ksja$@S zF`$4fefHhoqcceoF&&ZzjioLDocPo39FY92@qb(a zKt&&ne&ty0c5hLOYCfP`E+b`YydFh0dz8B&XfpL%AyX?r)}ybP^3iMU zZ~ZAKIYGP2r#d;c7f4T%@Ty@k5aGVDzt7BpDnFjyYk?~*t5r=9!x%lC*i=Yp1ZxlT zeZxp6AllZN*?m<&q#6Qo_p$2@1vq^uL%(F_jv5$Zu3hk|b^eCc7{Bm9NhAhlL^H?a zsyzUj@Smu3aRmB4J{=n=2lVa!n^ikpAM+zK4an8q#FP~4vS{BSfpOgL z*H40+yZ@19*;O87O9SK1@X%6A;gbw$Wx2~51!&j4)A?OD1KRrUtEgY`09BKi%O1me zyTW)wz!>wH?|1|gH5*v-8}9ziehhST-Nf!1UZs&PIXlM`v_hR1#UT?w3Sxw%pWA?L zWk&`+{0t-_cRo}49+2>Ja`*aPpdH1Z(Q8Um7lMwgj4~jm%KL2&Ceo@0qL$lp+>Q)&T}s(>ko}fuC_7E8DG(f7&C?R0YILA&NzwA^+QNUUw+ zgB0E^KPKDzHF~#G*mC(8)-TWS`L1&8dX@vD)1x5iRw zm>pMIp+per8Qx}1z#v~?RjHi(7s!OFA5oqTo%Y5jJ zfxNpXtg3M>UY5@nQl5eq=_EJmunKh7r^rZs6iCcUQk4V!JR)Qnqp$@Ufo#=IUp){J z&EU6N?}0+wvkt5a0ttleHP^sASpTs#8Il27o2l#IHSEfSJZ^I)MxdGJ4e>h#0wpS3 zPj$wXe)yps8H{s#dPs82@xJ$*FI;VOfN}BJap%e~f_WL9Ir_YyT`s8_K28awo_uHA zR~(3zk+Eur4~X=}X%4QJK)eI_nWdM2vP^iQ4r6s2sozWYU<2*9&X(FwtQmc=Tdqau zahYfQwdI{)?KdiwdVt+5_<`|b2|VelGmI(pM8J9>_)mQG4v^B0^}q^RgP-f06<|hW zlC&L;!j3d%LS93SQBCHxxW4cZX3&dBG3H=)#uk41w)>xOhs4T0{iy(}i|^aJl<3nB z&VHBOZi6OL!00v17wzsE#zi3F&&=KvM2J5V#t!=mr|fcOUtwRYc{V|3^* zjSBwWVug0$%n@0z9;zBJ+5K;c&NR=Xw|hV%7fAkhaT=(-DKAv_4-ns-HqKb|OTlY4 z)?1jxCS$K`@B9TTbxpeFWu)qnwCX+R$#I%gtA>AIJ{_dWRmwXA3PZ70L(bwN-+WaQQBnvAUnD{s}9P1I4D@8v0-*U-8Ni)*x$raM7SP zSO-P&|Nk9Yk#Yq!`sAQd88F#h!z%}t4F>QW1?`Pen#j-?(2o^T+nU!vasHyE=VyV$ z$Tc=XKLWM18*>;Q26B1$kf+!UXeIjx#nZh&K8YcvYX^WRyHhx(@NSx=o(}iWyW%hQ z9N&Ha&{rS9;GGs2XGWk}Jde>o^Sx;FxeaL5KW(Kh+y~m0YoR8Y0TLKpbZ5gAJXEc) zD#r*KsY={u&jzc(>=){AyxWAj^G*d?O@95DJ?;ut%@ot*BiMm$NScPC@FzZ1S>in} zb-XjkSIehxMR z$>zUw44(taz1es(>Az$AzcXq~Xj|kBP|>@i950!Hlz%Ap?!Hx7Gn-tDF%C4*b5|Ou z8G$qdBZl_jjQrROYPopj(ydRA!qEr67!TTTW4;A``ls8pL0chF zQp`L7M0JWLO(Pm8VAbo&?&k?l*%)sSQsUfVH=noZIO9l&%_R>Y|92FkH*z}0h#-yJpGmg^uY6mV{9l; z&aH#vyZ_PL?jyQvM;)VYV1$Ns#e@}he{oVqDNM|#pM_~OtJ1I z?bKi-P>qq1=gKjlR<2iR4NO3m9lFZF{Xo$ZN*1J-fP@+i8>+D0xODT4il#x^A`HEz zj@fxv;?tcwnArhy{?4JoU>!*b4l_aj<^5(=(ndNEsP*(L0ay*3*jQL_+#V^$7=}vF zn6;TDE1ZCQ8u%nxv9~J-8)%)v&M;a@;r%m8*I@pJ?sb8wjl{w zVk)54ke;w-T|n&z8)bIik{j7tRW{lNn&&Z@t=q4G-jxk$zO4p&A0!v$(gJk-Q-@hF zc8i@F(r617(5yDb<}Wk@olLcVO@YV$u8@b8Y<6O;-&am{FDYvwlw>5N~;c1Nk4I`D8ER?@2%p zjg(K-u>m!l6yUqC7igjCd(xTPK+J2-J4v%ZZRK?GFZTn9ufH{@JPQ;!p3+E#r|Gru z%XQY_pv}oh(4D3LGRb4h3eE=Nc{>+kg&CV6-=Ne~2%5D4Sx7Zj{MBid!xscWTgdpZ zat%FRqvp(SifeglI?zmoKIIG8`4WXSxV%^uIHnIXKF!X5-2L0#wA+vV{yNZ}T@@=< z#9VU}yc?yDE0sArZ+08Kc6X4%@(||a1p6P>cFY&b*ZTbjieN6aq|GN!H=r=0J-VL3 zK=$tz`+?U=C*jCDAA#CD9t78KCg5FKP^r%75dRgAJ1mZqUpFjGV2(vEe z{LO_UwqWI|6z|;q-f)Z8*25ewpt<9y;na9e!$Ih@f zw74`Ie@eJNDN{3*1J)A{ZckESPP&~qamM8)XnIkt_S2Vv3X|_Qg+~Kv^Eha_;F;2s z)RZT`4VqPf*Pc%`Koi6}pQG;pxeA?fWtRjh?>IJcYz`=za8P^!pH)1J7O75QEZ=q) z4rpVH7SG9Dt3&T{8i}6UGKLxMYDc+cK)p4MU?>)2R zFem+gnnjG_6XW>#vIj5ez{-6+A)o}W;+Xin>CtD<&b~Y(GJw|Mr(*Uyc$QUD84f&- z0P71|HI3*8Kt82v|BihFqOF(G-`D|S>);$L#*Y5-QCRy`BGB|Ddw=Dh17a*CDDe{o za*3KIr=iT zL8Lkf<7P%>nMASnH!N5`R0M+7e($DV2S!FV`zrlO70`}kH4UD73#4||j3m1qDBwg- zmqk5LNDGrjNghzPyj?dbFVHpDK%QpI?E8g>zlhF&HWH=!>^yohkft(O0rUBFhf7~6 z?rlKZ|InjTFpk%7vpj7PNcsoM=oa4NcXgED*+mzSNZ&g6p)$osV)LppjWRhQyO5MdwwKmzl$}k>btk76*KYo-q_B+t1zzN zfm_M=V;}?RXRINZO>|55f?O+6yOP)xNDGvBJln}1`{b~nm((+L&=wp;#_rky@q{gu zzQI+M-<<8?!D#I#>uA!#`qdV2_gzQ7q*q`2{D2u|csdxz|H3TkYNUU!hSzfr8+z9G z2dr1@8Xh#GcdM?8NBnyZTC-<|vvwrVh@$K0>@}c^Z22NY)<8+(BtBVq-->a)(K`vC zi5)Q`^TfL~5FN;&BmnJ!X7Q|j5Ky%4AHG)1gUtjr=7>$u&P?-|w_?qRIk_!GVwEX# zCq9(N=szil?peaT+PO=cckeRHFp4=du7-7V(&jcV+aPG4lQ@gr&H(uZe))F<*Q}J| zWm-%L+DM=)4f#Ew;DKM{FK+;q@)r=tr2?%l`=vL90@=@{iliI_68mZ+zx&Cg#{-gY zn6Y1p8*?;>qhDz3o?rj<1I7hWW=##X0!>S(sGP-m%m2yq$)gvvW6w<{cmE!$N}qP0 zhXJ&)5yvy4b3hU+#C!aI0jV(@GG@Z44nJ}cOGO_D`0}~X<5eW5{&_TGk0^L9*mVzA z5Rm!7D%c6;zB~AF=ICu8vX=MD`Pea?v}-uU6+xS;7fe^diuxAok*S3%pz8TDb{8uu zPuE(>&>zNe5gvRVi)-O=cN*M%(`b(2(%+|}U?tSmda0oSB)v2~H{$^m$EN;39nW7% zts0NoDb%j?^JQZW>7<>~aK{-MjYr+%UVzn@J~G{Z0O;bGb2@5_K(?lel+yTQ$@ceK z$1AJ=OL6@dvB_X99vk2sTLa+KqVgEjWwq(fmo&=+Cg!=8o zHtzDP)O*3J*hNnce6y{32jd3VbaX`wfRyql3h8mpO^nkzg!7;+oSz-vF9Xzb{2Q}5 zK1Eg~e!PEN2(%D>x_~fTeTj2b@9yU||J~a8sCyKw4>WJqap658{y3&o(t>7o;>1I~ zC?NK;g?Z29fV{*F6dN$U_SD_)wlQDq_^kzxEr6AWo^V~U0BAtETP^e=(0RkX4J(pB zO>AaVA($mH|9wTSR6c0rfe~K!R)89pT~->g>peC%x_7x4G#|Zo?Ez|__+Mogd!7Ih z)fYFV9|KAyJY;ty2Pm)Y)lK2uj_3-pMi27x%K?L0JQSk;;k;O+48B_k4Buk`TN&)B|g6lWHG1x zm4Ir*RUcLABk2~n=S1_~+2W!|&`nih@UH~Jpv%vz0%I`%N(6BpDrut(HV&|Nuk z9jwQ!H=-wS1=s0>=y%^ZTSl9$=!qSP&OF$c={t-IQ`5iNo(S|MT&Ha8DG*ut(&2(Y zpiaH{rCSt0P5tSQ3^;(E&oMcw!cte{byO2uky3pl)GRRUJ`8!fIMaF?`vKNBi5Kx^r* zj6Hb`=*<4mPy(#l*pd59C75CC(?aKd{sb$tws>sFOQ3BBKe?ai7kw7O#>00(vtVK> z4&ehDvyjYkJ02#4xaZtPg>Uvh$c!&jP(8^bys|bj<(q@1j`xkXgI0f z_NNT{a1!WV!<~Xf%nhyX{%d>idf}x3OEh|5<+Q4%lfMKs==o+`AM=1Q{V>f(>=EN8 z?j$WCV2yD z75h+jtlG9J8EDtm4YIgcfr#Y}5R|F{Wp`iv_U{IeKBKwLn{Pm&$J;y`wSgkUgZhZm zfQ)?;-@eC{8gIL;`7eT&kghBA8NK_{J^H9Ldc*yLyk{Bq*krw8pS&a(N9x^fZEzUq z`&gx`6ketKsOhNZ2xuRo%c+^30d1MFyly1|%5l{tO8g8Y=rSi=_5i52;NxE{tRron z@KLorpc&9U;}*r5Dc?R@mN^fa=a<Su3Z@fX>^-+P=Zw6t{d^ zNf#+#qVhpG=JQhZR~yI2Fz(_L;;#~SfaV3geYo*#oZmxLAc8(UQNFyvlLc1qOBFtw zLqG}KKX^l1fUJ+2$sAz@Qfm@)2%82vG<=PE6=&pyyUmdw0IhFU?{_txzdFh@-2(2Q zog^m9mg@l;^r!TFiRV#ekfaAO`eo_gx>DO4uu>NF7@xffG#jU<%ZwTEU{mz(AMAg2 z(bnQ$euK4Wg!VudYTmags6#OCJr~K#5>3JSvhHwE|+L2?wj%geN640HU(jf;r`Tj%&=^Rkiv>d|&SD^7+vy&w%K*vX^`*Y%fvgBJ` zh%q~jGdyoh_k%`UDNsa*`Rv7f`|U-{oLKt0OYT^;5v&H28U-*;(~(EH8uL_{Sp2+w zGibL{Z~Lxv0>x6-=9EMN8O*&Z-u=xJQMm6NdW>NEfL8mht6;q{E6r(%-KYJt#=<^x z(3;HL2magzdi~*O$~BC~bKNrADa;&EzVA^=m{;6|RwPd7HNqLkn_Q=1#+euiLuJej zE7CQI*Ox)lQ8A^W!8#g=6Aihe1{zN;^$sic65oIful;!6iK_HF?{M`CH@q%0;Vxx} zAJ5q@!;C7O`(c6T1C`Yy{PKdJWv-}5Wy zJDnH>l_HYUp1AWE&R4U|-7sz~QOYK%8tAW2FNcu;&;nP_kKIpFeoz>v+Wia$lSsMR zd+aJQ-CPWg=nct@+``8lFoTeWt)Uq^A+=xs`{!Rk+m0+xb<=J`9akydabAL&b zc1?hBy`tr=egQxV2jiX=SOHlCNp$SRaWmsaM|g4dd>>7y6?MQWd`F^c_rI)2$zKud zes9ZX!ZR{MSRa?~WnFa5g>hyVNA;Y31H};4c}^S$I(vCPx5!tZWvQU*@*E(md7USr z*hQcC{r(x^1R6)AovAW<{PVk0OQ%kNw*S$eAOBc^WUsH6W}{zTn5HrWJA&pq`BXH7 z5NMvoxnaN-sI&LU@7+=_;*ewcj^mKRMan57;R5Kgb zcmFf}ArD+1`_Lxy4EpcZ(fIK{HgIL-X}#p#Hz>R39Q2Cg^HBsz; zF+NNkd(e|(@{J#i=fN6uDxrG}DeoO`Od#%8-(#k7;67M)ZaQ<_ZUkx@dAyc}RePtw z$2~Ih|Nz&%@iv|x=>?o_Z=xh$vcfY>R?R} zwNhk_01~IT8O6H=RGgzKSy>At`oi7M5;IKKRef(i)|UO6>90c63M=k6Fx$hphLOkx zKPe!C0zWxtV3X3j)R^@3$;8g>(!rM)}g_WH4$ofZfA84bDFX|$( zhuu4~r)%O7Xq!E@D<89fE-vXkeT1FWL{WXo_$FvgbmE;)aa^USSU(5mm9tTgi9tJ9 z56AMPbcFy#mU3zB!49`CAJj8di{YGn+PIE&j68-x7_cs2I?!ed-$>vNcGy} zav*m8#~({1JEuU)BfVi_FV-~rA`rRJ0=3|zO-n2eV zigg+A{=8}#)?f^Vy}9FFVOGr$LGFbPkb=dk~xMk>g*4^vitYEgO6B6&9O7Q z479(bYymS&$InsN8vuEqoi*Eor;G6HK5}n4wC-nFjfex{I&^UUkOmM+SPqcf77GpLYW_%ZL6wigEMK5O?3K&Pa{w~M{*PMMat|`V1w0PB$ znHYTXxYu*#X=)Z|!u0V$!Dqs8v06M^N#GeH_LzrD~4JB63_l6T$ANPWlK#nTR7^&j8P*M?E z|0a`L{KEB#@A>dQmd-n#tN)ARMn)QBWi$|ysBC416e>h1GqWOF*^{$BkT7)=kx2Y=i_zGz4!e-?{m)k>ht;B8@RI!eo@OdPk&(+b6G|tKEjIP zxnRW8!VK1l?K|4ZxYA}GhjKYMK|2v|W2%G^x;-;kV`U9mj6*^6ag6=dyk```E1ST2IPd;i3;fvzBhOH~#@;mddX5Vl}o1cWmvY28~sr zHJJ`;W>KpkG!^sj}#ekZ#NIZFQjY?@;?$_*qrY&Pd;)>b6@ge04;rk%sNd{zuzmJHVUJ?Do zO5PKEz}LzRjwnk{pO(Z}Z7bbVU?~GFjW?UVLK-NR#n9ggvyLqKA1@nT!!uY^@gK%7 zBQTIeA`|=+)Kp()gaJ|Uh}WoKb~X-up)iznbwI7FRo4R>fOb68lH;<0=Gh}gRz3l}ej@*eX%OfD z1I^Sd=Ei-OH(KncKzrKu&czY zoCB&P9~W&j11gfQ_%u%o^kAR2L!Ug*qrY}0p$R}ER`!FgxYAeh@0PHA1kIAJ=TGlC z&_U09adzx9t_J0&V~&CL+xW-fpO|$+O9AJ7ML`?=WIoQ;50vs|qrMQ&k~Ti`GY!{h zL$@-Y=D%h5uV=rU={CX4@juGVbr192%Z+Nm#v80$ME#MbIQn|c^x>s%pxNA4lVQII zWSh{`cKJ8Z7P;~hRb160yDeH+{6PCR%S2Q?jv_rKYrYWj-21`)aeM; z7jGojOmt$=oSp(O9EFVJB+1~EnKAWZxHzl2wUwtA`QRuqnYNk{$tsUM)d z{d<>-T@mQNw5uvf1{xTs9wK}XU{bkLLY1)NkpIfe#Y|K;=-^oY1%A=RS9YWtfg;&B z_SuF2B^xFAHscPK|H4wk6uYwHhhD8`XTa)6H5Ofe0Vwr4PaxsV(d=0{3&(0flc(XH zzKgNCe7Z#c9(KoKOWEMlm_y$tZ`e1fgI`!;)ldieNy#~>FD!!AV{0mWClH9@M4Trz z9XlvVsT6-`zl#)qSSg}^)PIWw6ZU!sq#_;tOcOV^Jli!z}fV%BOB%iVX z{kPOSv#){3N7>>Or-9mdv(gv`fU11t&t=L1X;W0o)%ydfGb>I0y$hu9ok*446zHRX z1Dh!3i@KcO{1c45M!dV?00mez52O-LZ39v0DP+5n0XR}Z8v(mPFf9@K2GgKP@!k_pAJ^dva*;KEzaMTo`fVQbVCg=ENaRcKi;V5>_>6tX>(x2G7;DgM*&O8baW~N1#i1jD{e_3CvDTXn ztno+JJqW+Q6p!Oy$_xc9>+yn$&l4cB-qyvu7NGCeFFRLo1=T4-4_*`o?YHKx8383A z-E_Z}a;y)BYX|I{eL%B{i@%tN{p#tN^u-1R&{8Aorw-uxLNzWwuCZf4_PC7O1TzZ@CtGI}799F~YkCdfESFd*BF~ih5G$fHiih4;W}qBSS2kMWyUK5aaM zIdsabpspnmte3J>O0_Nk8F&7Bz8mjaJTqcz!Y~H15oQcLY zKXkcoBbOMgJG4qPXn#?Q3 zHb8r_u|7E84n%*xopHGUNI@LUh)b|~n{v>@(?56qcrw{Qe0^@l^B8p077 z$3%)Z2Y?Kx_yv+~0G0TvjCW$x1V#p5Q~d+Y=+cc=g;XHDKFd$Wn8jj|DnV4ZcT;^o z@rV`sRs0|QWWn#?cQAmAg7D5$A4?k%!Z#Ivkr&6@egIbW7>lka*+5|~ab823Kw5Xx zE9fvcBq$1F*0I;Mc>S8H$69q{+8ZHo0{jX%<|26K(=Su$v43deV(A*`BHvOtQcsP$-5*3d*{&o+~H~L0t^R-<@IvGYX6`$f*o^` zbLc^hBIfx0J&z0s-zrI2nXwk%1i!bga&gX6K-Ydr#F1gW#mnyXevB3MkJe~XViK%G zri!wET7fn?{PcY>v*&mog^t#NrWgI@!ifbS%bd73nz&a;`McRzAszlIq{E7{jLr>} z?|21%u0j_|4e+{>{N#6dE`p{*<}te+26Ul<)s+Y}dj}rBT{wD&^a86_xW4Xo>#w|K z!Ec2hezazHbCBJrsS?+@ajKO2SCxdjm@6#Q1UfB2v7269}#H*S&wWN_n}h>kAMmm!LUA)Jxy%tG@W9I5WHUjs*pZ|M*@c`NK;tT))n_3CdPH+4Z@CC) zt;BF30DGAAtAu|S@Q92(ZU(iu&+OmZ*kgh<({yZKb2aXlU)zuE`i{8~qMaqzfaBw& z)lnAO1?LNp32-I)0~APdqlgH1lKT(&9L+J}o^kr$Tydm=_6IBPI)Wc_YlINlexO~G zd7eM9j+Cm@iz667n`ZY`@TLLk^VAtxivrTyow`d3D|DG&w~+}~aKTgP&h<608rw{{ zTXX;sUF@!Mi3ifA&=sS>YmgOdplmHj|MG-lSEs) z4QO0Yx9uDo&|U$7CVz4uQemG8>6bu^OZW7S;7Y&s*`ZIK1FiS3q1SG_r>Pu&MqZDZ zD02Bq$(3=izErw&vkoI}P}+8Z80XRZ< z?n6L(B)1D*)&fnXUvPE7`vYn7+J^Q*(3p48&dFf)5Z(89)QuD%u=&KC6s&iy4=7Mz z9Z{c;$(FVt{8;$2lz+zo z9bX)~CNu-oS+BWOi}}Ln`dc9zyZ7lzOD|HK<<7AtjV!#HtB#G8Mm`*2u;Dy5MyU9l zYrHPMK=a?99c7DtNs|j45TRt}A0NRMGZptVJ+IJ@5I2UGT(4t32>i z9q3VmDtB5XP@bWSTlXx`PwxYbqgc~&+A2+)@}NnH4?5hd20Hy*Wai;rpw$i`W5Vxy z>W7KB6N^D>|1ebk6X#}8GPc9n2b$B^m%sL_Kt+8!cW8Bh_Pl;H?xYN4{`{>e!#SX7 zlj9OM$AI1kklqhF2Go1-d*oU_&@35wh$TPJ@N@N*hh0E9ooU~E6@c{Jxz0Uv2GWeM zCFTAB}z%fpH%?MUS&{6c?kIOo5adtiN>cKfQK08po@>1Ze~P+hqt4dGip!Au1` ze;GlmF&}mx$1`&XsGnm*Emer>IAb1Iy9e)SP2nuV6)Xn(AA*)y%^@WJ0ch-MDfM*| zpk(!dz*bJ6%A8V7b?jFIm(Jy0`2yN8>jdZ0T%ee*Yy6i#0*#uE%QxdnPdr)a76kb!xG_b-0#$P&Huq1_hz839K?(WU+9dL5(7Vr z6On;6*pb4Uk1?*|SQwRiIs>kQ)&GqAs0cfdGe7%IeF@NJ(vmbC_N%E2TE=a-!J-4#yfzEd5%SB;_)34U5cEnxMWe?4?2*$Z@-t0^O z8Tb{&^gSp1zw*&VJAJ~pPNi=CR+Yu*ZY=-1EG7wlo?o9$5=jBQ-ZWg{Y68-677*Ek z^{dYQr?C|~;fmp!JQ*oir957cFyWdTaV-6?KMGp$_R`#WZJ=EG(Zg%OKnH)XbQ`?| zS{aHgq)-Gp{JdY>UKhwdw3v0k1;|!cls_DM*gkb(jYjMd65o$KV8&Y57yS52&S~%) z*X4^0a|iPE9lP9o638RMWcFAykkls=lgh(D5&h@2_T#8xrCYW7F-xdle&Ec+y6g=w zF8i_oe(meZN&C!!?w>VLPV@vidnQ!)mIjc4$O*5TTtHvvjx<$-0ZkqJQ&lj{@4z}#x;OJU#`H0xML8cgXldGY4CR=Aj}2EI zf5bYsHS}G)ha+uuidDWo2!7{0OuNZ&RHv_ncNay0CV#s0mmhY*f{*oCQ4^r$8_U0X zkNs-n?~Jv;7HCWKnkCX!K*v|gvP>L-LM!TNf-HdQ*Y_$tN(V}0JAcz2{XSSHt7deA zro=q5k>C%+82IU3DE5tJ&DUnTalR#2*N@!8e)Zc=uH+DQix+l5N`crrRa=tyXr|y; zS`i}6_&}iY7gQz5SAppEZvFrNk>ZU?glO=({Yp2hny^BT6ZQl2feApm^Ia`3=zxU7WOlEr03E&Mm|Z^&q&l7XWaT~3;Lz9ln9o4QM0_$F zWo z&>@W@ygDpgEl|K-GVvVn=T?U!DF2pwUdQOp6B{ht69ny>J>?xf%vdj*HVoEpuIO?}JM~(|rfk zo*xH_R?pR=w*;C<6i#r!XoOLUKXm>Gnt5ZIhg<`YgYJiMc{QLRRo~oI-1B70mcBf* z0d1d|TWUuR(39xi*k@QDlXaUJad?eA;nM?I&%xUGvTIbY3aB-%NZJ1^P{|EFNmq=J zui=)D>N;qL6(4^Uhyh~s+H>|Qb~8;AQ}4rgY`0mwQg|I$|CWkg*2ZXL(Cm4A3Hyej zzDwBi{a_^x4KrWD`=+F^Cj~>;Cu6DOvp8_Rx{FVej-CX+-=%YNf5?HNY5RZZk^#-% zd+PlU&v$7`IZxUZG{Kqg^rI3$R|aB;pF9MrNR{MQivSWHyB#r?52Ui|NYRhiK&}2S#qVvhhZ-n1 zK8o!%E6_>|6QwIL&?Ns8SFsYHxv#t81Mp6ealk2`(+#v;#@tuc5`j+4Hr@_64^*l( zWTd$Q)Uf0~^0gP}=IS@Oe|X(Gb|>yz*dy$eX}Xwj4{hg~Efd zpWX-U#_(;b3T7aq)xKwgJ3#e^$gZ3z19I8d^J^5l_bH=UeR`blrNk#|-D6ph*t#s0iX-F+5C{xO)>c+At0O&P5;z*5GS0H-O5D^wbHT zwCbF!)xU298U=^UjYFM4xk2Z&H*0`4oinC&PT>*T4QCSrfpXrx52V-tnj2=4AUuhP z{N-TIr%BNIbkg1LcmqvpeK^#b3iQ4If^_XapsJ_!I&(N9ky?wB*3Ut!{Vpfz%K;S0 z@@AtMS6?P$tXWGKv}$j|qYr3+O6RNloiUO>i5x^E_JStY&d(@;6;RMqYGA?+T26!7 z673LB{#mc5rFa*VsM>hGw+*z@^*rii^*~BSWeJz?j$(`b#L3^DpmC5VtZ`w4S|`>O z_3+rYj;H(xpCo?Ik#i|DESydvUMj-bvOT z!7laaL9BzIFIc@f)wMa^1ML`ntXR4IbD|n7uYg_~{JH!16VRyd1Kti?U&oP8M+WwT z)|C3u))zCDM)`BpckGG#-4^GIarNz1gih;)gWn zXA!CJ!BsWzVlwc(4c5JBr54*b7K%!D!BKh8dhO2q92Ejm=UccRJ_z)~=YY150ML4I zTXm)?&}sR14-+2%-46S~_3sPNcFO7{o=6}Phr;ZAc-LYp5Sx7wGZa-}tx1?bAZ*mPDgphSJz`Cy#+1HWrBgm){B7iE2EaRIABz>%f%&6H52AUt7wZ}8xm_f4R=*k@2OV#PoFM^%u0 z0W_5!*Pa{BK;2%Ib9T52a<4v&UdAl;@wV~fA_eQl&pkn%Qb0DrzRWAQvj=@w8{@tO zn%S!M*NV45#nIQa7U+T0kFQM2VMp@L8NOC=6SNdl#3~t;Vh$9%py6B?1SH5S8+jK;m40rE z!2(DBg3rX4V+X9f#!OG*ai4B_;3EAU^NNl^{-rOjs^^Lu^AzqMs{BFaEpc$fp(yE& zaqK>nD_ssVn013?M|}EmE%!w-m{DEC5q!7raAF0btYH{^hPfv4`>s`fEodT>8iAac z_YvI8BQq7CJ!hqy3DE?~q76_T901Z?C~%)W0#w_yRe8A@s4dUuO*TJJ^Nq8nXTpG7 z?EP*J&j20%(Irx`1axXJfPVQCkk;x|zeq|TH)FwiQ_O?h{EWCB>`ft}QGZC7!Afiq<*?n~<_ofIJEk0kdVVkGB=yjYsC^0o~;>QaUA%+7zP z%bx9jK$Gezm^gA6sNXY!N^Jy4vv1?#8+#zJ%v{!zdqB_WGM_zA0vfV7RP03s zM56cQdDAl>3x89l0AHZEl1jk~n z`Cet;7-&bn{{7aw2k2O|AzjxRPzGVO(^4OhqN$Hy zzcdihZR>{y*i|I%o;<~k`4>0;{lFIPBqY7Pf%TT)=aXPS(=!ER+7d_m3}bLjSys>a z9B4GI`Ktr7K)qgRD-PFz(%d*j$<6@z=GD&KkOL~U(vWU<0~!wV38BHbWVPn7(NKW) zGWUz$utezdqxy$-Dyq0FCas^EeLD1&m{gO=~d81poKjw4xB_WjzPSDnN%9Xc203ALw7&QF|=*gDq+y(4} z1(r1GFFu0CQq(0=69`1FS5u^w2Q=NaIKI0bsBrYXli)g#lQ>UN6z({uC>Nex#BOVn z*z{x79jvwC=ZF7Gu>a_S$a?uV%ndia&6Y=)oqgKfdMWx~-TkNTefWEzDG|NhZ8(-; zt(mQphM-0N_lJ+XHV`?n-IMEVKp*(cixMP(KHk|Ccne3+vWH#O9@pG;V5{&63s_Ik zeSDCBS)9y2OHJs{avkh`-xI*vtslH@7DJNuxgca>Lv#+f+naU%D;_O zW*p7kUE>d0UxF#gU(Bl&4oS;}bkOL`+@4;;E@kcJsXXHinu-~YPlsTJ}2e_8y_G}I#*pYy8bEUY9%o ze#1j|Mp8+Dh64XKD#Zhl6i1vKGXSz$qLnI}1WK}bs(l7$RJ8r=WbO~p;$NQ-r$8;- zzv)vL=0V2Fb#E0Puv+^(?R&-nl=e|r)fKx6iPM##`(mIy78lr4j5RZ?R&mD`{pMri zcSB~<*>fW}!x*m&NMZBo*MPUY5 z*H&x&dxL>=C(F2bBY~vpUicL51*-jXL+1ppWy?v!3ZZ|XT~8QiBD{yl$H7^t7uWZA zv*8=UH`#1FrJn9T2Y$ilz1OysftnbCLY~M0z1~G3H_`?qIXpqsgLyha8mwRMS|D;@!$U!hG2A0yTm^8lmI_>rKkVAG3#o(IBI#YK1>c) z##*F-l_tyHHryU)ooHS7)DF;zK>gZ7g+RV-iQX2?K=u#sdq-oAPgfuMExil0*xZui zml%N_?{yK%!!8hbd~$$T@M+x;Hy)KbjdKm%IKWdS($HoS@iV`W?`uy|J*G~tRmA(`7i z3(x&IC2A1U83kBd8;jXK1WB-vDJs7oFY09jEyf?Qvp1^izmpDmMdizD%WcUB zRQKa$AS$u94?fQVP090+&6@(r`Q3Z>31=P@xMZA$tDr$E+D!2rtSTfQ&t>7x>5>1~ z^e=X<2IAwZrbodVb;Cj>Kp5!dO)0P4*lEt*dRh~M_kRvY>3u47z#24BFg+0plpoMm zB8_)TwY7Wxa$_IQf9>UH_7T|;6^ zkAa>rRU}g2n7Oil8h<$t+R2Q&lDW9%6)kb3gilOtDLx5lW5wSvznDMq2mGwH1Nx)O zfrO*8Qj1D}E_7XS4IKokOBk@`dJZp#7ErN5<2_*JsO zcjob#x1bHAa2pAn1iF=>6Z<|Is9u=1(G)A5=)FpDHb&_FcBHwuELhh+bnJQa56IxK zy|UjspzFsXbR~ZPEvDQ(4_hjy462U+&8&|2&>0-*d{R4yDeho`Gg@VK zUSQq-TL0$>>@Taj`WMLAL7Sf2_%|;Cv|A+O;Uq86$rmrQ-k1Po<&ryz;OdVuzWSib z16s&xuID12xr>cYLmz8jB&9$i3%fEO9n;@)J>YjsjCNHm7ASNfZ%@cDkeYhqJ!!1a zeCI%4|$1gFInt$6HITKB|5;*f0c|%4{M?9<$H_H1w5Z$ ztw#%1S+QDseKc0Lie>n1Ph1a^8L`2~7U1`H^-a3&UZ4b>s_<`VKn9OOe#v_SRV%+( z+=cfl-W6m1o}{Rynl_I91S*al5f!xo;^VuyZG)>StRQ~!VIpYCBTff~7nZq2q=w8aihxZ4ENpGG@!RuPTJN3%|d!2i}b3NgW z2p5_ac;m_jxmglSl$QP9nwB?3wJ+xGlzp`NI)y3d+QmFc^{*{+vLy* z(6ax0xmfy#|`*9Lngz4)W*VD@K#cpqU7~s64U_ zWL)Z(yM{Z7TY13aLUGV4hfk7LVf<*0u72CJ0K?uXiXGe6^iLhgWwoI`2Xm<1>h2BVaL|k@uN&mG0-dH19AUsN`g&?V z)80Rz?G(_l_G2VhPt39&tq1MEV-M@L5g^YnkJuK>zn!cB3-KAy!uf)TMOTm{d6&9S zOa1OhucZfCyi5*#6n2n}ATfpjteH-YfiVWG!8qdmVa~U}PnfySJ)H~aBc-bboheX0 zhZRxqW1xQ*vUsv=1mP)Q|6;*O&$Ts>{@g4&jR{gy{{t$JHv-v z4^zoTLEC1jNxIGnBxrZ#CgGQGJN&gf4{Sj*q)Q=6!ts&qeEU{)1T-?w9N9zsK&CCH zYZqgHv_-unz#Rk8b>i>`y9yQZR3LIHg%_`` z1DOYBxR&9%<(`p#(uDaE!0)_Lpaxckd&4inF)nGz?-)uif@WzGQ`Z>}q_3ZNDTrn()ME=CAn= zPGAMxyjJnVJrArVW$$V?s(=D$U;OfD2NDqEI6#X#*i+6E??TEzs~(#namN+36=Ns! z5CZLRE1w86#^uTfkwzKJDK#DK+O@QYl^&??b@=8B?2{9_>7tI}%;om}Iz7M*R&M{? zjkzMAnz1H@L%8}oAJlo@W`O4O&P3f7{hHV6B((KG8x8qETVVi{Np{>$7Oy7p(17kM zGiaAr^8dMFe=#^%B7Z^@wDVn7Eh@OPx68Q`RrG>Z*g5$Mn{r(7uWlpXy?yc(@Dv;%Uz;XJbB7y58t+ z!0NsoA#^thD^#Lfi)HH)_*rGC@;*oH&^hu$#+W&zq0TP{+Q9nh#lfeskAQB@6=X~W z0ud?SI~0g9xHMMDD03b(BPp+&ZXH044+3oM(t-Tum4~&>f#@@3n^P=-9_1)~;>AeD zj{3i>bqDQQdPTbno>?ZvinG-aw7rE%nTK)AhgqAe?_h3ZFF$W#$11yjg^YzL0Q^p| z{1f)YOeCwyUt2}1Y2N;&94@d%%m>EI;Qhg5yQKL6+_!{sK7^bu1?$L+QvE)RZknfG zLYEY1T<=L;+Z2G@pAf%rqy=g-X85Oo{iRSKY=rQ1)QcR%R5`c@h!|}(k>d&yH#GLK zVkJw@YQ&wv{gV4};FUfWI7>ZOywock!R*|=a})!hEv0gHv}2c2>k!P0a0JajG@pa; zWJXWQ@4FPSU!6VBpdjc0Ry#WfzET|Dy@QuNcRmL#C?fVw@nfK&BKI%-Q$V|SzOL%6 z0huR^r|>lZO;bKSfOjg)mf@9Kzo%%`96W%`gj#+|{@XYz48pe@X^fRR{cc1?ZM`+udsb0iBPX4C!nB_Up(h}0g z<+XtLNjIP9i?QX-lR=2ZoUF7M4m(P)ez8Jn%xjv9FPgK*ZR!>Aen~m z6D%izEDA30uKodXHL(f3jD0p$eu{X{dUfQ>LUQk{ZEU$TOn)$CemZlFAR-*M|mgGC6>*n8cH7`T-Sdh7b{cl{}Yu@LChz^?iMp z*!e39toIhj)3Ta@KJ@qQ*H8sI|F)Tpfey$wzPn)zYb*7PSmqNm&?aB(A=@|wl-yB% z=PX7;knVj{st;((C&$V~3xK93V(J*~1MS?e+Dq8QeR<#fTz?N*1Lw0xkFfIo)*dLe z!MtylH`kmM0qc#QVKUFufdtg@%9mDv0=2fqY#su+y>WXyhY|0#Q}dbB0F7)Uq_`b( zBUgPpwEZ$@&C=^8DHTBM%9K4a`@w%zGvJ7ZLMxib02}q`9-Ga41Y78&Ey^Mk0hMX95cL0i3p?)Ep45USQc{T}m z*s@UK=HVjHXgW>3llB8y{0!tdHVL#e^_D*PDbRlnQ#CCVsL)%oGb9LT>t@^h%VMBv zS+}HYPN3fgufH632l8*f`|CXJx}T(}y{mDDaE+WjP=eO()5S-w6M^5SxEsd3R6yDl z&%&j!Px@7zci+K0C=5NR@-Y&ux60plbm80tZk{qR&jGFfO5aQSLqHFbteOllul%#C z8I`g@`;#a5UK%^$;fV8Ge=!r?Bfo5gS%WpDDs3Iikv4`WG=Z+Y&ZfK5 z3?zE|M`2wnkhk&G&TcXwmG-ksL6{rTgQeGLzkxRQDWW)j3}{c7AZOw(py(jV7x{8P z2Lsd&`W*vm+OwEwiZ$*1@xK=bVGYVf)sbw!1Z(TzGq03PfT*%QRq^lv`AyW2M)w0L z23h$Y`~-AB-?YmC=Vs{;>hk0}XdOfIzt*;Zj3fBhl!Sl+^kxq8!~vB{pU?V=-Mf9a z+zCn8`Z=NFpUmjl&42cklXA zEJo;jHOH$xd7ybM-MGJ80@NDhH|dSn^)Xi8nL7d6`O2dWni4?211rPLapuY4t&4=u zYxDctK3u@_y)o;{Oe6unL28R+Nu0UEm;YXPjoI{Yb-MZC6|mk6Rd8j00c0Hgh3<_n z(9av@oe$pujfh1vouUB>=h$Kh!1aAsyCn1)bJuqF-R+lCU}d;?+x-W|l=JriFT!W} z4-|8`WbcCY>^CFkJdB12RgkYD&XWA~cnD_)SnVn_r%JImk)(!>ek=oRLhR%s;r;CV z`i*|OJV0Af@87wIok2P|IEVzR@k4UjF*<&*I;k77QQ!_XZA!Fx`2lE+f0H%Hk-Dj< zgiTCAn|x|T6p{(FDLL_$@D|9ma^kLcSgWT-Ws0kDC%GMy#ysZ=eko;}-TVImMTD45 zyI_TW3}#9iz^F?Z`2dsx)M`fh$0s6_aA~cL0GyleTBjNLkREK{Fp$EX)c~I+v z>29FVxqUr$ML-3{1zS>YfmkQfJ$aOY9##sv-Te$CP_F;G?g>y1XZEp8T(`x&WX!}^ z$)YbS_zeuex|tuyAAK2!c`dGhj}>T5gduLT9Y`sxHc_e`=;Hl>A9=h`+*j?PMu9Z3$!Goz55g1n|Hh+4$*->l97exX#=%E} zK>lMT4CB{A=0*&s!x62;G zV@pR9@3Q07%DzXHF=H3Vp!##97T2vOQuU~OC>*hCL8Cw)&$3+Q@jVMiknvRPfo2$3 z|NN6p=z0xQR7uJA!Ujk`e(lu;R+JRi=eYkr(~fn&=2^@{Vm~21h8*zI5$YAWj{Ef3 z^gIduGHBw39ARQO-$CChiEtXwE;0G;@xm%2SMt*>-~{bXl(yx8k3cDJ9=Fxu{;Od( z&tRtoTK>Y@7PCztyFz|9W$b^GvqLt7Z&Zx^o=DP}2CLM^<2sX=lg8uJ=a(>_hv+U< zB!2+wRW9vj*JvQ(;h#AIiU7J`o}(<(wz>hj^^`Uk75>Q z(zq^`CxCWWfj8PO1ZYjHv3p${sI|UEPZ_T^_E*EI^9N}Dk2&tCDgue59B(~|^F6it zKy$1HkCkDx-G{jm+gL){iThTuahWtHMyO%(i_&Ra>7xU-neT4F5ws6t?s#(HnRh-* zxCa9rSS4w+$LjtYS4Gr^S^Vdrh}AjF2;KK?>&f`{%!g&tX=5ii!tn8l(sb;45?z(_ zKTm`9e6i;~;qLzxN2s5UDQG?aW_F&50;w8J);_~AhbI4+iFpB9RY^sURS{6=rh{rU zFOY51GLP&pAijRf*&Sz~x0c6=)3ByJtShqXaW8u-t2ot&eW=>9@W&1h_+?*Hugbx* z?1){ZdEErsXWD+6b<8kBI$~SGFW?=usvd}Sfi-bWZ@Cg@6Gx!mB}X@cer2WK|G8nUUVo)n zuj2xKdj)?VIx-4$k?g{gYTR)&Trb&Vp9gK+@*c~{KR|urdv0%Q03D+Zz!jce7O zvcrfMdzX2M>4Np-r)ZV!V?YKJ5@SEbfed4`+lf1YR9}P%y>S4#Wpnq$ZuHZMVG``z z0Ii$lZhPlZpn92G)@oWnp2rtQ_%K$=-WD|l(V$saS*UMe4ETzF)okK=d?G5aq)-8? z$((}1q#96i!=n^&?Abm3e_!gef%fm3!_f-tFU1$4>#g5|CdB12qVO4LWo6t$8CRdu ziK%s^+SPkLxg0bQ)35lqG%wrMTQQ(GIfI2KkB zUMe6ieG4rYyeqiwQsLd!3R=kM(LdX%KsSmky(Gqgew@E@T?glJ&0m&F8_&$>yn1no z2&{(9s|n(`s*h>!Yfxe~jc4v{Gy4bDk=70#W&xn-#@c5(!$ALfc%z;c0F{a|Ht^a4 zwKJGs`CbY%bNwI-;Tfjo654haSSeXV#^h1BT5p>J9CTv9FZ`#t_1}9y$zDYU6-fWy ztlv3a4VtKrrp0?9ATfKgCsVk;(SBU~KDQS%v$L1&ZeqXUVgGZvUmvtP&!?*n90Q7V zBh@>IndnfLe}60ov__%zJI8QU(@(Td*Wat^tyy6G+$#5@ssTuSrR`Q(8W6E~ z+cB{+Aj)u!hoTxlqmJ5XUYS7kY*i8cQ9#K%p22(Y*cU$G4oO%&7K5~Vf;PdLqvvtp z9E~zKH$c-mpK|0fl4Ufr^DSb~xMfd>4n_j;oo3eV`3*F#9lUSF2gtR0qI_Z< zNR7Pi)~_Q#N^DBLw-kUzXp~h{q=Bd-Z&Z;WsjdHZG)JpX@JOUO8(6n1M$1OA0zO_9 zl_1n*xxE=xOBGlt1kwjtGJwqQ#Lkwv0tryw-eBIs%ab6QCui5jVWe{ z!2y~l^UdIQ%GOOQQx7P;SJyihJ6Gn@!sc(-b8fnX(h|N)%%r1kq>PpPuV<;%!wQZd zr5QiDiKF^RbLgkpIna{pgijGZaeuvQZ=??Ht9j|Z9fYS#jP+2cI-7%EwfJH~+9Hs7 z#}zwGobMg;(B(!_&>U~ti)X(FqA-qANyU4(TzZcBEzIXBg*_yuC%~#&lI>=X9ZoTF zEhAwSw4a?SyYwFdrFd~?gscID2?$iw(E^=F*B5xB4wP^rXYk7q5ZC@p2W~qc8Y{A# zTP8r1bh}d9*?|I^$;czm19eF8e1+o~gIuHr{t3WNb^c;6Ugz?E5ANbRzJ z4cg-$%d7?1ZTB{J)5_uqf@Ny1g_nTUa8$@8E*6Ns?90zLIzVw;`~04^0-dGa>$Z&X z6Zsg=HHu^2ym8R)gaKHqFC5>|ZUMS^g6e<`6A;Ts=7%*nbIn_M_2+hj=4tqusTi*j z8#*Fsfb}*OWb8;q4A$rEEo179K;z0o|2-QX$WiySY^wy&--+v+F?i-nJ&aLQ!JsLS z)Ov2I0Cf#pO)Dz1|lhxy#A64=#bH)<1DN| zmz-j-WpsXkSO~#n_?bI*G3I9`B zpL#+m8S9Po=ly+Iir^=qGsCZnnV8kBuga?mTFyt+jqBJ2#A&uA)p3@Kbai|?xC$DT z;eS*yy4>-7`U}o*#2qC!`OZr~{nOm%qH*VOsUCE zUMrXpPyg|#8>fSHtTgbaG45ppEj2$T_knhsQB+J4ue+&}@j=5DH16klYyua71obZH za$;Ow4d$qrZiCjR5S?ri0+i%MbgowtDDRV){h?1lU-Lt@wS9p^Gah?QVwDXgXA;p) zf>tQhuES0Q6yx`qhYrWb&7>f)K?&M_kLJ0vjrS2#t8yuXUqF3Iof+>K2J2WFt7hE* z(1(JPn=IFWNVY}$`2~SgxUa?S##}S}%J^91D`*aJw_NkAfg+Q7h_BG224hqodo*y6kj$K6~MBL0i1~f&n zZ0b8JKwJzts!l9GUo7l%f(L=F8BusEWBtk|_FleJ2AZ&(&^=4cwWdd8?S2@IR-UWT zQ&^34M#>Ux72qdj$SI~m2XyNDv+9~BKpWZ{kETxpHAwBI_>=|2mnQh%XF5Pz)y_X$ za)F*tubHu7wLM;u?drsp2fbA(m{5lO&qj-*IQJMIY25VZGV%|T2<5@ z(uF%tOO4aD39O2gHaEG44dB<9vy$fd2*~h&ZQNWb5Tm{{bG8i7H=3qZKdeSa(nn8Y zuu_z4C?3Y(N}sXW@A|SC{3eaF#!r#~1=etK-oxB@_J(u(H(rh6kigf+IKJ09`saV< zgWqeb+mFavfy}zjytLd86=?l<42)KXSw+l$O_nb{2c3aCdhQQ?C zpzY%JIW$`XBvR-6^epB^HLs!GBK8B*Ci#m!{a~GJ=cr%K1A4IZ>sv<^&>ZE6={?Mn zvF?QP{b8WJq%M^7NdwyKn0xGkc|W9ZbN10RXe|m6L*?Ir#G2EJN8< z>@*KUYeO|C@#&j3rI8S z?1}vwKd+kSOdCs0pUVZoYHxMn&OBya$phbqr(!|-sk?vZ ztSZo@-A?MmzkoOjz1a!hzMI~7s6dLbU&&aq;>XxWR2lf!RDxgNBmTfP%m}e)zn!%+ zpsn1zA9F4lDBpQD)D0_7Ft3%3@Ge~%b^n3=rC<$VXqlqIY|q&J_I8m!9y@#SDx)6I zRHBRLZFV4?KKD;e#6X8U1o0Yp9t34{jvdFSRawP@4sBE1?`M! z#BeQI!@t=$im!tQ!0+&9rCU4eS@5Qpi!|rOPzZLwET0WG$aY=>qx2ua}^M+Trcr; z%xvmBo-AJMVTY@&NC@x!y6PhlA*2L;f4^=sT|qzFSG_ILoS=P3P?|CN3M5=KMp;D# z^gou)JD$t0jpJlD5K&5qL_+<~fetoWU?)#i;o!b}pH&ov?#}9kmY(mV1Mo!S0Ny4w?Jq7w&Cx0Rw#}PiheV7^h z_$m8Wq>MyhfC3)uKm6b0&wq3|k;8NV^I5*b-TSE&Xn)TZs~+-K$-go!-=_pIQEU)b~^$j8nn{>3~S~#bNu~?JD@SU7c5a@uDuhV zwW`I;RtY*vpNCqI{Kq~f?0>@aCq$>)U`AC(&}cSxhP^{_vtKdSyuMJeI{pCb8)fh3 z73YEYPd2;@-vJVfQ@8v=3KYPUD^Y}z`IM%9Bd-NChx_B)U+^in_WLH~?#}@pDpi+Q z*}&>Ml)Q7F1n6|gZQojqmLRR(CrRA-#)BA12h5z<>-WtaFq@7nX$mtv>xkmq*_)PA53!4K+0t~IVP4tsbPWm7!Z`1lXV<9S0MV>y2(gF&H3llt&q5uZw>)6pVl-XD+(34tRe5r1pV2vOb@C(G#%3qoOxi?07 zq}5#QF9BE$eku`Ip|3m*&mNS;Zu?-XS=RR}Sch7lj!2+~_J3*}KEMuI=}K1lBG#(6 zcVkViE@&o^W}C~*KrCrCRg-^!XdEOB8qjOn<67?|L_w3b)C+k22ls#uaHG#cbBb zo;aYWCn`;J*#C^1CVTHGYvfh^wn1~CsaFczT33NIzF*Ye^BqWc=g4cr zDj@2~QPqB2!P;B(;@_BIgTDHUBZt8{DlUI=O$X@mQCVc?d{xTsvA%5@>E&|NCePkZO^h)6~dP$QK^_;nwky3-f)a>;=dt1ng;*a6YXc&gK2ZB18ei*1O5Ca}CbNB6#12&45ZuskF5p07=mqrK{sl1k#3`98EVsV^w(fIc*eZu{$|N_9l?As51}q zb)a4ry)y#nE5R|pN=CTz z+@BIh3eb}yM=nOkU~X)kw3j@66vmZNX-!DY0WCKyt$7{)#Ka03c-x7phLe2qhDwz3URzYmW>37o>fI_5T3 zAc&_L!Rl%KPwznEwZ3Q>cLK$p`c}Pe$(CkmKfHVXrdSq(4J}d ze_2D{J8*P`nPR`Hi>&3+4+bmYhj7VX4nV%kg==@P7HmS}Z*pS|a-6MHF2EgSKU7sO z_yFU+EyxYzNC1f}uE!E=0+G+jQ*X}!EqhA}+LQv>#vLTDISI7p)Jf@&QGFM7^Ef4* zp-hSX;yl@4&1=ZZ>bnQTq`&mL7QI#)JohWO8nly7h4LDDfDVXMSPCoy)hsQrEVBZY zQ0|?n-2>FTK7Bio_T9gI2b= zFJS@W(R%f?xY#ggRd-vy++6u#2Xb`l>EP!Z>+?<+Jg#Kr}O+j;Sw!obN^dEW)Qg z+TgjVb1|S}7~_}yjX+Z0HXp5G^(eoa zD+tjAt^T>zs|1XtxnauuufL$BKher;=mfe}6Se2?0ib(1hZAV9YNKzRD>gI-?Y|FN z)Ze1@)1!=m-QNeaTd24(kAU^2PH$!*p;$jUU?n=cID;(Sf?#ai+|(wj3qaI z@}jT2q-MuiaaHN}q-obUU|jlgY+BeQp!uoyN7%8SZU?uQyx{_^go^t`bpg=Sw~Hp{ zv2&Fv2Hbzx51PhC8)ch6(CgKz$G)yW+jX9cF_?ef@3=)8p-*X?XJRR$!Fqqh%$fu1 z*W!mJ*M96=clDCwMKCvRF@#2>p@*1~Em~5SV8*{ZH;;}ApqYEbRswhrsf+uHJTgEt z4Xhj0YyzU;yj5(DcOwjVG&%AF=Q?w*reeqBd_QDM{QcA>&^WbJL zR_M+zmBT?Rpt0z-O%d7w5k|E+5HA<)co3ExFB0>v-3-;>+~5`SCa!uJ`-YrWDlp9sjJ z>9v5lJ&s&6E<6*trf19y}+*WAhj;U zsuna(M#*w3+;1y=f19c-XffkqLE#HPM@WqhKOzHCSa?W~aR=z-Kn}?^UgfRUjO8JW z;IG=)nrB8}jd*fQU#tLV&dG~sHwsQ4{O*+-fEKyJkk5@fUo38Z<53S}8 zqY6}S-9QsM_s94PcABwb&F~#2(4_vA4ZOohKggu;x`P?EDEfM+ejTiolyq4eLqIne zE-I{IJUT3*wz@BXc0F~nH5_NG6UJKi5r9^27ilo73bZoNQWEJ4q{w$^h8Q#F&h0qP znIE8a>rIYkV)TfZm)iE*qZ`YZX(&I zowh(lF;Y_1YdGT+y_Drwpm+MbpJFf*4er~tIA?-(<hwqoV44`R=&~-xrBnXB4Z|ASOe%Y#VvKg zCqRBYscNWC;o@CNPIKT9yyBJAr1h%@Cl1nUikOaQ-=F-TABOeX%lN z4cKsT;#LOIV7SLUf_;*MOQ`n0q5$h_CZo}#*;Wei}eVU{89%b(_&%2A^?;x zSGK6z3Dm1NEnycA^v|c*U@{eGkKD^g9sWQDRc=CIw}6C2D@)WccOPcD1~+5AY!vJm zn!EyQv~Rv`#vo7gh1)HcpcO5Zm(o4rCZUH zb6QI0tZ=2b)<`)RVqjclVCIh|-0!hFb$+TiH^X?`$=?I4!X(5;^hJSe@|k$91pp0A zdXZ5u08#p^e%N0GWK_t^kuNh|MwMiU3x%C1sz#Al0Z9MW63t?jdy)|p`S2g-2>l}?tbq>&=r-^ z?Ftx|lNk2xCDu`T&)?i8TuWd}5uzxGcbw(;{0Q*S$Y%5i{=HTWg*baX^tyNw}EJvtgWtw05PqUx4Iky z8sz*%%7*cfa857}!U$e4*iLlDO1U5s%eVV&1#5qe&z4{XBx_x}oqY=C>Z!dAjK>NM z-_ANlMF-k>0y*c;=$F)r30kEb&@MW9l6T@h6inYM_F}iVU4G(W5oQT3nF^afYA>nm z>rUN=8I7T)F~b=^0ZiGMv6vAPGd7w@j-cfX3EmC11M1zHd6^XkfZA}X)A80y%m9!+USL1`+>IeON-6- z18qf_d`ZH}ODjCeKYRx?>mO5Z)-g9!Yg6U|ahKHz(vnr>V2zJ`t{T$-HOp&_8zUand-%(}kH?`~hRKqI3f=`_j&>aVeiIF^Rv4EPsz-&RJ|pIo{h*Vq2n zcS8FuSY=yuzgJI>X=S z|6>wJp(uUfaS4!sy_;D-uAZ)I(cMh~w14-uTf#bkxHm=B=5WRaU)ag?_n^6bX7>v< z19EbRm$qmHQlW6>jK}Ip?e`UnZUU`%)8?R2GZ2Y|()i;lAjf(-k6x@J56R{b7kmcM zuk)DWvj^+U3Spu#=HDyvSHIrieHs2<-4MX~by%@T=(zynY^pylG7|x@PA23jF#_E^ z=JiMRE0D3CRNU@+dz7+L%lY?!w&6%RKV}TnGm#^^jVt(;)Rt$9G53DtwjG2S(b)aA zhzEV3p!D{B6=rsGC*R6_r0Auih0HJDDzEG0wrYrh_U&!wc2fu1qZ^m8`&%RVhfao? z4?v^T9^|Gc2bwx_(TeRHl0$AZy*1GG@~wM9nAvluKhyR_f>t*@eQh1RTNRhCWs3RC zzRdB+3VTEnYx|jx=w0tW4_B73w#ZedzOVgvfc%&3Wgey)7>_y^8hQO1&>m8Y6-09a zotN`+p+c_}Hq56=p9U=>BC2l^_ZFCOO)MLG*cAIX9a$Gxe-KA|tdRoIDrjz0WXGEDtJ>31D>fdP=3cH^RIIqebJc}JT?yT*qj6*@tC@#dzPA<`d-pZ;n_pvf_t24>r*}$ssoJT@p z3yA6Jr8rJQpmoW@5Q!C_&!TI`u4BGj(<>x6$`0E2O1PU{HIRq#x3Ut0<4J? zJ!{G_KnER2Z}DvdeH@T@wfhDsW!(p@PqDU2h)8`(RlrJ@Cy^9|&tY~Kp9peeFZuH6 z;~clI3LSh0^!C%6cl_y^#J$B(R?u9B5YK(7obDxU8L;*7ld)p{IgwfyE&na@BJ%+oo$Z~6|AS~udvYLv** zrX21CYl6%2JG+NKUzppEw&Q+18lAMt#6W9wC6c6^2C`~ZUdYBL?qi!8E@?Q@0_C@cF%qr7h_&Wpw@ z5h{yapUej9vZUBTX%Enb9v|yKI#6-*a=jhS;17K>NoNGwlho_{A~=ryqrJSQBxt6g zkAJLVhN=2Ve$>RyK$J#I`E3HMCx^eU*?a;r%Fl0j&;qoyU&P=#M(~86Gp&yzXm3vX z?b~Yww6D6=pt}y}@V1#sHP%8IahLo@OVIQUJ{VKj0Z}gO3yH?4<{2*)H}HeTzVCN* z1!i5)XbmNq9%yHU>*`PV06i{PDVfSyd6h5@YA&)WBI)Bw%u+jqUds&&7Ht9>I-he(jw6U+^I z<9)rmKf7>|9Qm@1bN7b7IhTyqJpOs|-FMha9-b3vG4Z9st$t%acvM4Rmbw z<=)+=`q}>0vb*M>@x2#{@9Y9vo*s5iF9TY?5b<&yi;7I&W7)vVBtS|(?5;RtpCox`PjWH4GO&J?6$SeLQF-=$13Myk_ip0VJn zd@rQ?mhZv)KAK8wqymZ-|IMWR8c4c%u@sNubI^?1 z&imZM=&QHXmI%6l*3U~b(2OVcnd2??IX^&St``5AQV+EEm&>}SG!TinuaGnP;LM`K zi7yyw33Bnw1gyqD(e=_?>`0Y=R)onHU`F(BmR21$yh`HIo^kZXG@+MxC7zOhk0)_l z#}1d|b#3xjf?;l~DHQa6CkI6U3n#|c!z5u2t>0W`49T;b~lq`2>nZ9Yan zu6%BLNgK3Hj%Ph#13=+qP1l?76eLIbV(o&KHy8lXvEdzvmt4rh&JB%4Urg-O&m3^j5ClEeNOd@V4&b=KjrQ~py%%r!|m~O zIeL`k&_E<;@j9n(tB3;`_nKdP?hdr$P8@J03doAH(v=G59tj`gX}Aj7%1(ant&>2X zL}DWo(5J*VL%LqYfu_oo9C-B`kW!asHnSDb&T-<8SMj_&5w5G8{T;Ldj+L^WyFh$b zeI2&Y_czY?9MTm8EhR(z65k7;D-%|?`a*%I%*zH2;J8b&FGiz1K)ZcwsG2MQD9X*i z??e@l?-TLq|NQhHHL@9tis9Zmt}~vW#JgSo*71z82&}H}6+3OwYn_oA*JWfuD?Y?q z9OVsEvh9$@%?$L}+T^1qu0_|AZ8InpG-1V2aVe~_g~!)9cRyonp6ocY`!}x1=0hhE zKEOD!tglp@*gGE)cOT%-2QB3Fm&{6xD(#=DUn@bNIc&1ke8YUvmZGATI|tey$DLEf zm{*~-`%9S)g0^)w;ZfNd(0ZlrVldugUZvk_3Nzw7tELwz#z=^7@&-Syel7Dh%`aA% zVZU=Xm6I4qW!=X$Dhw$6&4ICl7(qg3*@54;Ks(mR-ekB9)J^vL_{b;__pp>9DLK&V znUWSB5f00W!rgo$SjqR1Hq&W>xD=&ZKcVVE0bk3gl=qo3kwzPMApp{p? z&#l2|jc4hmHj9Hc!63U~aRTVk=R;O)xGL{G`zaSOMmGs4X|j+U-PJX_vFD_m&>Fms z`{@KsGrMPqov4tRChY?>hy=ebbRAb{`PIuWgstKY{dD3vX-O0eV}|Bl8t&KWb@V z${n+g-lLgv_g#b=GV)VPn9spHek4seBT1bulBN>o=10=o+4lpLpVrt6MDLcmygysz z2ikzR+QyeJKz*mAS~hL~9g!X52&4u&wRP2a_p|i`-FG`N*x}+&RxS*l0qe!6AbKg> z(b%L;=C~J~=mJv7 z{3Fqx0Msy+viSHK(8~Es?<`z_u9n3&4m|=Ye5sW}#REjNrIyhB4Cv_vCj$yRd!$ZE zjk;r0oDRK7=j5C|1{~(dNlF0a|~6bF~UaCZD05&(8<6kgP>6abuvaknq{T-#~u) zMji}ktyCtn>BA=!jp9}3+Oz0lD+*!u(C5=|0#l5eDkzY zmdr2E-ca2j-fRF0X1uTFiB;>>R8U073)+Zi!i7w%%Ve%3V@_YtE(bar88!lGYqm)Y zG9XY zKq@lKkDOb9lBMLPE?5H{4S0D`c^zo5&0Vd#4d`GH>tCCXK&&|vni^(6+HZ!}=_-I$ zcVzE1VBXIW#5Autfi_*Su<2h2DDE3jBiFp!TvQH&@Qp+ zoiImV#f{(4+;_}Z~VFvp-9ZLl~AyQ&alWwASjR+&Y z#rJ^Ka3R~$4%agK+2KV8*6#sFn%>A}u*OXveQ%8ws{C&1>P@_IanIGaLVv+3ZRbkv zhO1wCQMdE`E@*FfSXhi71I0eh3ENr$GC#J*v{(r!=FT(KMXcnhMw`Me{ ziZO~@5CYOG{1q3K3l!nP8`g|Z+(++=nGF8~O~y5G#U>0$KxS+4ZU@l4Apib1Za@c@ zFO0tp0AdN_B&@-z*ni1L`tU2zp4t+-m!ij)j|kD$GJ{6al35{oA1KM=v8(S3pv8Ea zWokR1I@S-j`!OSS`h1v(?t!-c*3;8j4oIQ$Tx{ktP^{ZvWUn_+anl}w@8^LINQ4o+ z%KZj?K5;qQk);;R96pQ)1ZfQ$Aj3+F=Z(G7%tSD9Q>mw2oFpje@zveK; zeBk2SO*b;oGFP>Gc`|^iE6D3|KLNdxZ7?SPuL%G9+w-?7u9r!G{zOncuEi@$U*xsk z!4+J3r0&;E57u+54@bm9fhy)xrk>ma%Df#O_E8?lJCH$yQXgnoWKP!wqu4 zMj=l#YaQNAi2VM?08<#}CYIOx0V{rQ`6q@wI-uFtG2h?)2I8y1+QKWxL8E=CkaVpa z=1xxv^w-^f4@DXZEO z_5B9x-Fu_=ww?g-l5*Xm=LF(rn$urh1DbUV7EyW!6zpB1<@FD!{9wr?V%&%CosCQP1BVv;{KqT`$`10vZukjcG0c8g1h!ur37(*1l=z)CqL%#3we6W*`yg zw*9ME3s*t}iC$j=%_MrdaQE+@hiMB&j;4aPeD2KHIzBxNpCin8&<@(t{>sXOw}Iq~ zmR!uNfjk^@RaP(~bk*F`x%5C2KI?fj81GAK*nG~w9yD3@J12ALfws4r`B@u)q)c=Y zlwSk=^H8OC!Wd=ei&Iyg1nn(BT=8xpTdwd|jJG&eX+K=F8WSRUx)Jzl$KQXge zLz;!{sX<#w+e*s04Afkc8a<0oU;0l(Nbfs=mUk)l(1&#(4LUatmpY)&Hw@fVFxO;S zH`TkaXZQUQ^|_7yOFFCmvdb67Ew5h*vd108F>uKI!?h3v(cB}50INgBAD!kbpgkRw zJ{1f=*LBX8|4Rb$x98K$!B}$m2l0F1jy_#f6_&y?CHYH+06kjkeNVXzTEGnT1c$B{ zVLlXW9!yV|3t;5LUov>lYu!FozUgH>keBiuWELx+kCr;}Z0*5~^danMkUw6I})E zW4C=lohHyswVI6i3XpCQ(FF;#8i=>te=`UgqyFU2-FIkIj*1`A$IOmRxkOBK46ODO zhN-*X0vY6*Q*bQ@wCk4>nvVwqEx)85GgJf0npYt4z~_?oaZA5L9-v(_@uDTc82P0? zN?CgkTHtq<@LOkr(gf&yhOna4X+L}_V+2k5Doc+z1<;kaNru;GO&3=7x{h}f`&$zK zxCX3F{KfG%hJf4zB#x0{x8UH`v*JYSB*`M3Ci-t;J4aMv6UNO*{b;JdzB^8^$zXE= zG_uzJ{sP7sNPYT1h%>J0W01SgP8nzg)m%D6-+-i*Q=aw_0+FaM3D>Uy-PHWq{G`CeyN`>jy@3cS7D^bEaBOx zKGn?xR*8maw{@(P&XXTM8e--!9nMdnkpb)7lVoNy*hQuH6&YILDQ?*I{1E>^u&yO? z8Is`jW{D!zOs|9XtSD#1suYNA^Uum4)Xs^%M>>Mos`YpE6+x!NIOI-IZ zmj=)oZ`tEy!$39O!F&@>fsU8Ckc##I8K^vY>ZA@-(exyd?j8^Yx#fpa%!pcww!Yo> zX+?w_dgt2+*4PA-^$5J1+@Yb)`xyO8g9mS^@PM_?ruN8LJD}^KY+S$aoDn*A&ww3$ z@cAW;p9m#bFOCiWh{9~op=AB6g5I5=?qK&(0jqk}DIce0An&)Sy#%;=mB$CR8d^ci zc98cvF9^iLe^%CF0w_;9N~ANtm3Ekc zj+~lHu6qg8V>2K52d|tQzd@TN588;GiJkrkPzk@=MS6_Kn;+Xn8JOc)uP7Q@9l*Mn zE}Dah_|(*%I!%Q@#*>X2OSlh1<76sd z?AfLQFKu|SpH|%#3OKC~<8H?-S?_);d)SSIE;hW%?=>rtSX!_q$PKK2L|+l4J0`rB z1g*GlhLj9@Q@;ALV}TE7Ig+C*NqInuOw}D+Z-My#CAE3%0kXK~$hrF&?LVfZ3DpeH zC`IaR3T=SW_+=3ejRwPr@$1^RP+%F=m9!`y|!81Q?gpK+g3L zYbI%iaWD68(866iKN(=wIUd`4Iv4j_MLzW5H+m?dPp9G<-k0vQ!|N)H?~~Q0#tpp6 zqy5&oM}NRoL!oLJ_1L80#x?Ko?ix{VJZ5siC6iWXj1nXM&*?Lee_k8?3dReSb21JMD@8a$C+gJu5Dv?%rnS8+KsWa_1QX6jL$xQ ziAyz2rQj-wJ?gh6F-9^>@7uJAKr2uyU^@8~D8;>{OBFM$!8q^cY24f5^e@hz4q!cT zp}g|MX`s{xO2=brfE;<^-)o@n$)~cEJ#XQ->w={kSX<3bqLdjwLDPw8{52^K6eINb z_(vw7;jfKa8N@)1Zgy$g_{_!igT&Qt4742eqTY6#(JW?oXxa<3QbI~WA@tv+L9Mm` ztha%ta~5LwQ^%xkN4dlw80WLc#ZE67XfpKI8BHS~3c54G3Y0)Xw`K%RU>4748_*eH z1-zPk=~u4-R=w~oweze%6LwWO55<7AlXX>h-$tUoo)E^5S(hra*J<}tae_Z>Br7Li z+`k0}8rMdkpR8RR1o=SuwA1(c*@1$5s}`5jfuj7#2cqnO>hqi8w{SzF9+Y%;2BVw*Kot#88q`1C2v#o%L_jh zS;1b=SoeqeGpGTL*L5idKL*G>g2l+@)f zoC8uI_crR)0ivLP6-=H1L_EX%@q;9gdSPzx9$Z1=RIE#5C1{_!oVwkSSop*CRb#H5 z^lz9HDgbMh74K98=Be)nou>Bz(C)Xg3iF%-DiPLvYlU5)pycK`QXbGYFV+1{3jw-v zNY1AY$w7x5+1-^r3rW{Pd^B1UKewe)fE>OjyKh+9=`FdpKJxt`r7IXJ67Xlm-m^T7SM880x5RC zCta<4mSsH)G?SIy=Cn1SI0}|eIk;bD>302u2cY?Vnw8YYvn-sJKrjNcj;w82Js9u% zv%ljl6BUfJ5gQw5!<7zsZKfIUftGY*Y-k>{PP%b)jvM3gUj5{=79p@cJ7dqJ+6MH9 z?gnEg2M{L_%LLm&p!ci#(_O4UloR8&4Oo|bEzZ-Z(;=~tMGHPF5>m{6zkXb0qIti4K3aV za^Ro1t7`;gSDrl*foH(+SgXoH%KLr*}a65(5nEu}h8W%^vZT z0Bu7-FR=eI5bZIVG=p0})k4MJeqwe~?#Vipj@cO`LEh+e7OWNr+Jwuob5*VsZ+2iT zjgyHzCU75BhIu_CAuw+Gea5X4JTLcFk8F0vfyOyDF7p7dV!)_QqKBSjoc`0a``*T* zvcpuXSo?<$dq-bEuUUBnk@zRVT!p?F8P-xD_1}4<3`c=xCN`;`N&&reNYN3$0z{M6 zDs~|cNb7?EKPSd$ZtAf$j~-}0B8c5IFuqqG^$y2kmUM;xR{4!jMicA-rxviL*<4L^ z%&=RiSaj9fO!p&L^O7g_+YGhk%@mbqQFp z8l!dPn0v!PvmDmtYt{#%D|~8kGzBOmTf2gn0_gR|HGL*0pt_4c+dHx1<4$Q>R(F7Q z-@0N(2giAu8@}Xt37VZ!n+WxBLu*^@J%op>3zHB%1sg@x5f6TOkGXaCKW2Q-4) zmrm}_0eZ|Oag70claTGZDpnHEzR!p<&eZ`)wq^CSTB4T1b~vjOX!h}ss`r@fYfHt> zzIQ;YJG}V54e!BHFYzs96*MXf4wXq)AjYzzQT=w3&ENh^DKVQWu z2mp~gnLja$1~Mq&Z_B`J5{mzFdH1vH+r3{d&yRt%^O@&`rxHN79q9~qzjMt`++=Br z2DJP?jCmI^sx?|n+2y&Q(R=y^r?~+A@cK1NgptlljhS#oAMB&@^a;Tjb#IQph`|#g zWQA34xEN+Uv>$7$dI;oe@l~iBXUP3<_hP{PYWdIqZNaWgEA%tZ2+sxQN+C*4j7;;t z*qBQ@Ft=9K;F(u4kiPZbL`Fj(!YC!FQ}~1;Hc9Y|Bn>pWt1(G4TR_FXnKE|2ZIk$} zok#gRXuX9T=3LlI#D{YZEuycu$i5KAn1EH)CAaCA2++*eY?&+rAmi$;q6PGLD}Oc< zts7`XY{C{|c0ezG1@6Sj1NoR)1nABJ{iP`<Wk9uk-{9h9N_gP4^1pOtX&GcsT`l6=n2 zwh1(+;w8q zH(I`P0f-^JZ^!EekT;doGMp%3EZ&Wcq(0ISRR`9xPdA%vUG z9@N7On_Osp`wS!fi(3BCs1J+_sXfcfi$rzgWbs%kXvdXSw>px6J`k5r5Mjlit9eYS z{24UcJFkz}9s*L`lv9jk1?svt-PG9%ba$Y7Ch0ZM;jPv0yKlY;AF{ou;|!X~d%eqo zmO%Zys@J2lff|DgGrki56(|@~DB1&^ncMg=gWl+#UoZH=588~Vw(~jcS5Jy8Q+}9& z);l0IU4W6^F@9pPgZnssBjlA6o>6t4PR-{rTH20-)Fv3|4->YLDVi|Xv&>(Xe+fwU zk(O06#!~Zq$h*l5(6WgfZtVVV_|e-6iv5`FA>Wy;kFkTb!h&w{?+6grn7{V}9w3ny ziLMv0b7}A=(+pyDZ|RQdKd1uhexj7Ls69Z-_6xq5VL-9f=N^%xuPS8kEc|y&|EHaK zyX4t34CGd3eU$4k5Q$fq$L>3mC{<{6GMPcsORaGc!pe&joYhDv0qwL^UgPd}gqKC^ zh*&)WO*u1MIEWU=GuQL_AxWUk1*1?89U$gRm73eJK)riO=IgL`)_!AC|5gc_=BuK) zt_h%upS>9$aP`NRBYOGTLA&tgh2t^wUmB5H(dZCpK7IbPyIFEGnElLy3eecL-p3PQ z|KmIB#JbNAG;jHL2cngL1a|f{GGX6X`YJt1h&|%{&xbQBn7f@MLyPISzUvp~Pdqk< z8H@tV1AOSKA+B+k)dtXx2X|Gw_W`*z7vJYl0b;U#Ha?OM^kG2hMBz42YhM)azeJz| zkK+%qV7BjcG)xR~fHqvKmHr2N(?p(lq$p;m`H(Oh`&qD7b3JRGxe26hZIb(U4rrg_ zo6_>rKx_)$2VC|3(wX9(qJ_A{U>^TZun7_CmCt$;*~#{**dw@n|xN|C%i zH`xP}CLjO$um(`OX?rurF`)If@gp_OKrVVrbFtXHzmA4`O6!4^n9Oxl<312k)_~1S zBaqYZRKc@bK-N>{KbYu%Shpj;{_F&55q}V2(gNhXupZ^chT44#uWY<;UjLHN?r#cT zQaLE+p9Jd>dfp(i8K6}WE;>g?Ai76Vmk;9J#Gc%~dYc$DTcLAz8b*QgroBg{?*O$6 z(#T)J`>JG!CkmjSUFP!!Bsajyq;=(c84J*!OIN0hEP#@JkOi>(0@^f|44IK!e{IuD!+Fy&HS|H!+^raY>;XQZXs?+8-&gLN#+*uxxazbRozau}=P__Q!}7*_Iu`6RC4bQnizla%)ZPxg&L zo#jzH%W_OhJD2eZsy9@gKSdG7nGHL|#$%=YJyxBchqa(`Uhq&O=1_xS*hCj2j8na# z%9}$C)MHK1*6Z$!5HFNyYcSA7x|kzI~6*OoiBkRaF1en=X1Ff3>tUSA5>s$NhNg-*wQA zr;$3l900nxC-=ZLKOlw!`~pn6Ko>8^%HGAw^RDJR?T@=8l&Ot~M~@$F$X^u1HP4Vn zH#X3~j4DO_kIt?@seiTBwpf7NY<-7h?*duJQwZ*UbEScwpgBBn2Scd}ddq6LsaQ7|J+{6J%OFzImesiDKUsa$S=~$yC z>~I<+Cmyk3CZ4O`EPbL5)DNt@FF5%Ji_eZ}XnM&j;&1T~<&IT8GQ^cv7JPUD2TML>Qu@=lvr=M4Vl*8Et5 zIU&<;a>K#uF5ewCmI&nNy5zh2zaByKR0}70K{I`}{NGUxBsCo*dj1bk-{n`;HM={K z<1*OG1KO*Vp1}`tK;joBXpf^`{`+%6);Y{mvPkZ;&Dd=(t&1+rufw?Z_6ee||F(4#>jEt$hWm5rmJj+lvpHP)q20BE+&dry--P!OMs zAu-17F`~jMd}GL=rwE z3fkzO>zuq3KxTx6UllNJVaEb_?6W{4_yr zOS&_L@zCC98}&pCtWSE|rM0ocrPLcJlVcPP*T3}pjUFO*y>;cVHH@1+7FnW12Gqfk zKy&8^5dRg808#Y8&ziU*W}M4kJ2d(Yqws|+(speF#%)fA6DA-9#pV>J9|Ns?P-xcK z8K}^>BHm*!(97oZDk;pSH#t?x4|hOgV;-jea2iOTpnc8{yP1>qt*diNply!}vwNb) zl^=NyYO8>@pzj@*iZilUH)O|dgO;6;w%UCKNOiAT<|i8Pd$-Tye8>-unY3hQX* zZ_JZt%V51lW*%Z-4D{f}`xss$AcvWOYxhq88J)h|dzwIM|9(>%%K$yIB+n(420CC*MQV(B zK)fNIdeR!SH)8vuTJY)XO@i>zXNN%xcOn$#t^AMDRZlG_AkB0($gVQW0KAE<+7%JkgB)HNzWd~#b z6tEgc7akG7E3c9!sfDzGmP8Xkr-gYMA@M?E=pbliT9Y&~0YHB@i8ul)fK-hG@~Lod zsfWVZ3G+Z(b(Vfwh&7n?k%u_wD`?Tub)8XoEo-L@Xy@ifqW5nC1zt1spd|yUh;Y-Z4H zsiWB8Xd4?{gRnlhLvvoznZdX(Cr*4X#T^BIU!)eoXN%PA14#qfV7)<2xTx6;G{#wP zt$_QuqRcsW{1RwubW-CfnByF0&Du3@fu@$HbEviwsCTQOh6iW3b!PV(V*Q#Gk(Ige zgY}(6&yOM+ApV7Sm)O4nInUB$zr_=$rkBRcBM>yHOApd^|4XBwr`3i9z43$Dxv$C` ztY1%<9V{yY8Xq>x+QDb#zr#zmj&Y!EFdgBd$NUow`&YC!1X|j$KVxsDfXpdO{}x>U zinu4EzY_)&FWPvZ7;ENW5Yz9ogP?`q>-=T+0Emn8+VxuOgr!Y~NXV){t7sqX+`z~b zeiGdOM;SEZ)fvac=RmG~{|5W9dS2zP)5YR_!&v%XCHjN)M>R=I1YRZ9qQ{OEwG<`& zqzpU_7=sVi8k~V~6t7>0j!6QYotgb*i`6ZEkVE5v9%yw`#cb#6fd<^v_JmRbU9yVItYl^uA!KJn zNSPIpBvJ@jm65$k%FIkw$;d3TjI7L5Mu@D8_q{IveLuhJocliKTIVj$b3Zb-X{`w` z()2QK`xyp6E2I#}OLGPaJjUyhG!GR2SV#FK0}$c%?{9~?fHK|7H1?VTc^5t_yM}RN zVcN`zF#_%M-c~O$T*2g}6Xn|^pe-s@1j~g04ZZAOO!EU;VJ4B@{r>sI{xfbgI8Hc8 z)p;@%tYoWZ^GYv(9vX!Iw#P~_rG2&&xe1!%!zT7ftm$7|ysG*5ym6y??3NqGlFVh# zlgmjkj!0!E<VBL6O!rO%>Sjtaf zj)2pkiC2ATrbz=5>DCrBnFRW-G}uI~2h>*9IjG+OB<-#8=oxyPC+|ygaRz7$ya$u_ zU|v;|IdM6wgGTl)Kbj>S=r~I|DeWxKe#4_)s>(pdOj)r%@npKERVPn?9{;QpoWOw| zViQw8Cd~)q4Eh`oL?!^W-)YOej3=U3T63}xCuqyb$@ecj0IHcFp(FU)0zg& zrh2&jB0j%xRN49@@PHArWO0*1ZY1Lx*oS*21;!=B*^>&^x&VP z{B$r-UCyH;9oSWtLQfQ&vI1?j_`2m~W+01<+3%^+K+>|r`j&fuejOZ4-dqI=Z;o(J z*9UUr?6-Z2+I5f5%~nyM<*@wnBfblyYPj4UausNw6i4OsOQ5UkTgo=EKu)T@92q%4 zI&szd-z$MWC}$qSPB{GXboC|l-}7sDcP6y!h!?K11r7|X)rQsn97pw-+T z@Bf0}2jM;C&BBa++P) z0WIZ6{9nhXKq673?~Adv+NTe64%>nDd}8lo1x=tS=9*HyHlUA&VlTz_0{Q>auZ_UU zyRG~|IQA51b!RJxc7OfFGbG`mAogsf4<0pFF*nF8j@Hs*Jl+_N?E7niGf221da-v} zy}nZY4{O!IE&gu~_IBgCLwdKr!MLtI@)Av~g`}~vBzx>;a)+#~k7J)CJ>Eln0?*5g zG`b2o-1*_#ikYeGFjt}Cv5&x6px6Liw~1;X@zQ&KWq6OOd(MJ{pFx|oY*s&~0mK+P zYZT1_lqzCE%7ir&b>m*Go*HOv!>=wp-U8xJ(9IdZJhc)X{XJ|A8qsihqU#7yl`;RM zC`L6ruGL)D=#x-A`;dw$44Vu-=o(TmdAc;p#n`YSMFUAM_IMEK;`w+|h z^^bs>wLXyh;?rSI7cX5XuC$?%-ggyubVoNiK`kA|?X3S{B9j2x_?1uW-2@bxax(XM z0?@uML^lpv0$o_K>zl*1_`3}Vy;K10TXlmHkuXq?^??Hw`9M)JQ~SlR1{=<~CA)tI ztwXBcEXf|I-T1?mC%HiGmae76Pk;_qFpP^#0U5RNn$=PQ-RRip@WA|g;Uy=afjun$ zkt*xRMX+YQ_+HO`8%Sf)Gk}2ri0Np#OC&SUcaAHG9{Bus$n@<|Zmdh%`Se#k@@Va3 zDRU(P5*!@%4JQRkt_f7yQ3ndG^3k>O1>%_4WPXoc)0Hw#bXfHR+-X>Q{`Q&FtlQ_exfp75zof_7uuB;}tO z&@ijZJ{`>6eFHLc$yjey8~s%Zcfd-?73#bDCcxN>xs_ zv>q()Q(uLJ({7HpIK;N6 ziGlUjLG7<e`+MkdTN#&{5Sl+m2Wl7$tj%l<`L1}pxT%XNz+tgRrU>3nq(nA@Xj;Q9M6(0pls z{aqg*zm6j3M^}JkQ?yx^Reac@tF!Wm{+JoWM1 zFiyrjkWr)`NSJe9ooW@(tcf|9{W~CrBBD86JV{RVZBpDG0nOo^gVcpzKuWqX)?02s zugf`}U$+2y+-+aDQwy|q-?Q5x4~W6#XCMLkA(15Qx2NZ7w1bX#dQ!4*^K--&Y>c?C<1H?qD9BB29-` z|Kq?OFpgG5*_b&A=<3-MZ#!QDQTX;R?05nZu(x}?#ab|&-uM01CD3{#yv0th0SRd& z)hRv!`bm8&t4{<-Fh}9OA!h7v&*=bh%xrDT1Hb>GuUP+t*NZ2^IFjK)v#vc6cm zC9WWKoIiZ`{|aJh8@^pxhH(PlMg`Wfdert>F)x1stuW8NHWIs;u1p7k24?3}!EMC= zJT+W1V~+0r^^4eLbWtV~W_)O>KehS+=yrmrO)X}zg#NMY>zFxaQm2ld$17irrfyJK zfN?@@{H?{RKz0MhQPf!bdW!Qw&cdLbsU=ff+ zS1gScMo>v{@Zb3*WB{2LQ3X zD%zBM3bat(@>T0Ikg!)i@1ci4l11X~EEzz|zPhvyEZ<(6P`aoEuP{<2(uPS144_58w(|aBL zScAt5e%CeIH6z2c9{|A%M5P5Thb%plOVKNMZwk6r4NMU-JSC1{Tf zdG%%RnajmQIFJFzHQjXaMFX0d^B%&V4*ycdC*vuR>9uo@#=BDp7NK(ppP z|0Zv+A-BDJ9 zz$#fCnlNny#AwRIJdYWBuSntwDRzb#%eT31xR!M)t=>93)tX0tipYn-j18N`t=)Hy z`cof06N1sQkJ5QIfF}f9eIvK@ei&zQ>AZs(`_Yg(E*-}y-_w~UN``R`pMIy;qOY!`oPE?w0h+aI?eOktz+W6Q znu#5l?KHzp{#CGEG1$qUFb7g3i`*-OUfb8M;qHlbc_lmVwk~S!%q|ueZos(U ztUv@y&KocBUtam&s#mD6Bc12DYB`JX2p2iFe=`EcUH^4L&Ls_qlWf^gb{I$@h-mTZ zL7*bNgsZGCfetSU4Z31odgWZ{@W$9Vz*l(Co7j79-r3#eD&2&kc45)T? zz@3l}=w78YC-)^FA-~zL`uRYc^X(@Np-(A;+q4qygZ3#|K`6!rXy|~?x!2!;=wIiY zRoMbMXqN87>I}pv)?D(_4`@5v+cc~S=+T@J;@n;ZQikjKti(%%7~ ztWUx5kA4Eh*SPX?kpPi=U|beM>u_ri^?p3#Ya5E!YNEhO8P@6VWddXrWnRaI*}g;) zD{fo?8sYS_SN%Ca@za6Sr{{ngL(FEH9{|jqGc zU+@GI*7>$nv(1?gpv@?2Zt@QS%{@Dkw($x`#aHwE6SUe2-O4$MRPUIyuM?xHK}n!a zrw!wb-17SD3xGb>=h!m70ID0Cro1PM^x`AO4rYY6{MW~Si9qYn4GnuL1EgBerXRxq zD(k}TVF{QcHex{wdAm5bQ!d9#`Tfw7^APR zxmxMnKr2pE`@4wGAZHIat@`$Ymdg5px33(?QTO_r*Z+V#>qT^5<5`=j_3ovF18941 zjIzd~Usw<2xQFA;n}_mTmcqd5@}*n!Cq7FNI{1xnTY?s?{UN0O1W=2sL$<*wpfQ(< zaXm#K2LIR-T4{pP$2N?N=SBKq8&A;8iTmO!9sxQ3@(4P@1@tyK;vP*3(D89Mkr(LQ zyK5?qk9R%Jv-)BkJ+$KJ&Am@%28f>*cKJpZ3&!kPI^$bv~pQnrfuD-6D zTb(rkv=?m2(0-w=UY1V#apx6(7tB z0ZrY%$CIc9Xtp;nr1}Vult!j_&jL`}OBZ{^BB1HhhI@m=I z=>1kLLm-t4#3ikfKoX`oraS0KS=qR;Y&@-|?#vfjJp-%y-}B!UW`SsebbQZX<+VgD z)&=0IuAdc1e2Y2c*?#IsU;&I9V-Oc!ya2R0u-OzL50v1ZOX_eAX!5CZ%qX4)XDyRl z{!fzswXVFG$9K_d7P793eA}RPv)=`5|1X@itX+ z-2<@p9C8^Q3AdTD^g#cb4)#0?T-Cyyl=`elui5WD4$Cv%A zO@O=#-u(GcjpO=$>CK4%&89jp&tX3}RTU|E7ISE$lw-3=39NZuuadpkfu2yXnJO;= z8P30E@531R|MOGIe-9el1lP8cKG1?OZSf z*bNg@fH)lz+T^i%_Ny!XK8{tf{ljTO6xU4J(qubI0^`b<`LB^W0_|0P^K|#q{!IsY z4m`X8nx$IB)+Q@ZeYl>pIWf>E-60>F5g@v1X?p`adp>EgO%viu|4uyJ)Ig0#!spy9 zBaEvWR$f}f9cgrQew9NX9Ggs_W;6h6*S{cwmqb9bnbj23*i}x^CpB8Nf#x3(Dnx_+ za~+MN%zXq}^6B71$A^KUE{Fem^A^arn0Dlm9#HU`^NazQ&wJ~eKiA_uh^q#VETgYx zzg*`Xh=XyCMk|%2A93!l(2H*{BdP|^bGYD)Tn(+7Ld+&LmOA}Qhhf}Ib~TJ z?!&H9U!?ONSXmUb&g_2vCG(-v=T;5S6klHJYGVZ2qO7p0z)HzxbXU_*2JOvAc!y&z z(A?)+X*IYH#jx(id5r3ByUmO5@X8Nn{vJ~K1mgm%1P}X`18F`Y`|Df;RJ1;*?4Aeo z^FG<5A#EU?=@yx{Qa~>WPEEF~0i{js{o{8JD6*R=+EX6rK~`dF!)2iTVL~~6_)Ozh zf7I!QAZTiZC1Dbn8`k7Bc2wwb(bgTuYK$sb2h|ug*46?Whft;;Ub(U6kxV6!i?Y9? zAxIf#zijrtzqs8iv@)WVLo3|EqtgR16E7-w=!m&K>acq6yvz6z}a-3HdD~z zxyHRRp92|Zz8BbiWAul}%NpEGpyj%7d=J|Min*RLL23!)$mbd8?GE%>di$jX?tD6& z%c3tDw4LI0$IDm?Uq4n6cu0fR(p$|lg!f(T@$L4)=NCS`M#rF7u*#9zhLvDW*4HVg zRLp|bxAcu-iWbN=)y{c0>+G98eibh#DE$$8Mm#7}ZGF9Jyn&n{JA-Zz!l5YaycE%uB3`tHAL zHSPTztkXdoaN4Ib6bO`km5PD44TzPL_IMD^6+Pbl{3@PwGxQ|plCEIw@VP8EnFw_8 zKyti4UPWVr=^XD-(A3Ss=1=ScQaLB3nlcDf6~p=aFJ@Sk9=-fcLeMw_kJiS=1Cd@m zcdmvU==C-El!th7IyXIhWE2dV<86{u>RUiR7lKu{vEtn~DxXo~&KXYe+%!K4){~pB zB|Oc6C|-&tniT<=_c@#G{R6aemifJvERbBhuz@b-)v1nRC*cjWl5rEP;x1>sQl=ts zRs7od6<3SFnlM4aO7;)P<)B}&?F}G>kA|YwwLoT?ts-njctN*WExPF7q^?B?97* zw0+#~2*jtl)LdBsv4o??;C(ZZcA3$pyRAObo%+8YNkXpffHgY>P zH;E^#5Y_%*XE7MZu@GnSZ5rsggUF%xX+Zt6d%QAJfV2|^T$OGDRsOTRkb)~HVPUB9 zoCNJ=`kc=I#+O}I|M%@J(4si9vXh?yo!npET~h=4gZ)6ul|3Q@ z^Lb?b(T6h3*gb&`2VM!mjCNKA-!=iDy1|F9cR#N}obW$!*bID%1iN^zE8NCa)6gZR;Ig*GIoPVByW;`2Jsh3lhW z4PjTFIKd5c`H$p*V|dQoIhHS|;93-9}5^p@a{v6nD~S`a=&k1r74 z=1jx6dxrmt>tBFzgei=tMQ4Ck|MqoWwg7s6d5qy5da_0TmDMl>Xe--P50=M);V$SQSO$xHf|Ih1k=e8E9+N?_T+> ziN{J3R^DDWz2j>nU_C>9&zp=LNObsQOA%JB_Z2OIQ~N<9zyE4!DH|y2l){@rcc2Sd z*&_W0K(t+766JM(?zfc4sq+E3U)CHE$EtnH#Z~eEE3`UggC%httVSC?RO*>PV`1=t*CcafK{IS7tUXKzBxHQy=&4|!W7((U4LgAV`zZE#0g=a`{r@q*@ZHY|-d~kVcE&Xq z#9zAe6Ql50`k#;hRw%dd->A?on9)VTx^yZRsAsIh?hIN*)TMmeSV8NT(z7zgZlNV7 zAG9hAnuf-cy!r_sf01dWpV)J*pE*9g5ei!P#Dz?1%*6ZGZvWbkG4Eb+rvHmQG3wnO zmDzVNt}3!QmP8fkV}e(>LXmpN3Fl4pcq)P>*{{3V zif1x|Z@TGUUeLVb#>vUB22DN4~UojA0vNogdT_Bp+Fe_1v zN9*drQ%u;eVlvhuSpI^wR@XAs&mO2nl7-I~&p{J6a>m0$psi}ZKbeLe@6A<-;}ZvM z;)eAGsWZ^U!cO8Y>_hX8VnpNUwSEaQ#gI<0(oGvocH!!~2p!4;H9`Ah{Gz`T$I)Kg zIn#&FO+81nhi_nv*6U>5>^NXt>pf|@D?LCeiHudd??RtAekpDD+oM6;f&s&rvCog# zZVh8?8MJcDNnocLkxn^Z`Wxm>x>O$MN8kS&ihL?H3|frNTyzaaMk9CoZC?avABo*e z+c2LePnty&h=N8cvys31rk^oM&&eVs(87-d{@i;5sK8)oGZD*DQT_tWaV zSfnpD9 z7NGYO*Dn6D1$xI8X7AepWF0s~NQiq|340jQjVDQl{D||N6JX8jvB;;wUS}<}P#J(7 z)4^-XK&2O~jbdgwR{wy6A8ut8zXe(&-H!c(G5TamxIg44XnR+UD{^tAuk!*z7<57F zQgA8o#Iu$u^~kMe>|EjRt?UT#IY;`lSUoT9`~gA4ze4nGd5Djfc{|KK(3&+qLI)H| z(D3r$L!eJRwO+2}Kpc{WP78%Vk0_t7ZA$=YHVl*zd;wzPE%7pZ1LSKzq4@9+P|kSM z+n@y?vw)SV!vjE;muT|{_W-r;H9oz9GoIx5$mS4&cJfUyvpMGOP`rXIC7xD6S2rFs zoCoVp?GP6MEzmDr;iYNxy~<#eaK=^8PSLHD<%a^r*eSIAr~;y1X21OvE5*7n((ZGP5(C4FRSa)@?fr*`;fPbT3D+Gt_#t0$P*1inWCn6Qq_c)MGZOu;%6 zK;z1W9rL%`LeBguXj&D#dLvi?S2vR!lVU-O8@Qo&+8yZjqe`wk%;)DGQyj&ZC3Ifx z4@9x^t8E9^@54^`OULGD8{T(1u=xs4EzDi8E4j1#jzRWDCUH>`&?xW5oUF#$y1PHa z=guq80!B>4=rEt%UZv_7VJ9qNX7an|16Cn!%y-o2FcW3v?{!t-N-5vFg~u6y zwe}~??^16d#SdHzYa>7e?Zh9b%77@7Cyicp1HJXgC}_F{v@b#Y;!#VWbrapSXzctM ze(U>wq9<>xKdStOv78H<72Ex6)Vb)wu}aMGtL}4874Wq8|L*0rEC^Rwl`+nqZ~!`8 z;64|q0u(PGWsr+AemXta?8Tf+>b4(yoCVf*Wc%MqU~dW|+PD8r8fXDsYDHp{K<7q- z%L#uW$)CtO_!Q`bs-Tk97?6kNz}ZMKpj?6yg$k?`-FDh289ZlH6(0=!!ks&3(x@=) zz&J^3>a)}seXrvuGzqbTJSW%f^gRRC<7S3azes_^zswNCWdm(#Y0{|@0#z%ss_uSP zqgH(&|FSb^vv2HdU&}sWr2xvj zX&-w#3~1qLs%kX{&<*<(@hR-`w;%7X&Qb#H+N!RwJw9h&(y?>l!&CA>-L?90>_cnw zZ{8Z=X%&0poQW{*tw11(_HaGS%_cH_CRGZw+NQsU!VZYb%$WDhJkXa^dJE_4Kt}CX zW^QA?oVY%w(}mA`#>~Ig$bDOi@!;GP_+s#6_dI7JjUavIJioT~! zxmp1kUw=6Nvl!@sl)L$}A3)!mPHA8106JV&cT)iUT>d`Qr~p?Vx-%q_MFiF_+AJyh z-+<2gHu#K5a4_BK8!={6mF=H9^;lc;ex@HaaE4jx z*)m%rxJv$)E0-uLf$s6AReE8MaI2+0=sW=$VNI#2O(c-1q{)jH;(ByW>V4xQ%S8m^p0@7^rNi4zqqvIplmOlcT#^Q`a z0OqOxXZflDT%SByRJ8^6?6s($3f|H%j<$5G$~y*#bUdi;9q#hIZt7V z1LEEn6Z{0T_$1wul(+(DIfikD6?{NM&$7Zl;9M@#`q?*FdFOvqezmUx>$`RT=+l_v zIj7t5)G?~ox`(SjP=nRemEtVvVIW1)+g_Kk@y&rP5| zHQWWk$AGf_zFKESzx?Ue;Ii%l?S#H+eLL>A`nFRw4|cP$FxUBsePA6vW7BXCyB@<$ z{d;AEpt(oidd7)QOClEG$q6@b+@!4O3q0v8&Ixf%j)5jss+9is5Ri9+@ch0epgA>y zsrj!!9X+20Y%ot{)K4xiU~RcwyWoFr7_5WM$-K|&fTVhxHc5(rbUnnv^caAS#<Q;pNBw;%b{TxTYywOavf&HfD{fJ@>iJx zO-WZi*Af8Ad#bH1=K*A{5j}I31n8`E=$0tfuX*kH-$y@yM%75lNRClmPKmoM#1Gnu z>G~K(T(cF!xUm90-K^eCV4J@JR@Qd{O4qO>eG}xG{X_xUjiNl)aE$ahTZOUTgP`#( z+VZsW0M*B9sDJSXI<2qTn6U?lSnEjfAl z2gE{`b952&z?6IEq9giLGGA@U4EIrS_T7m_br|={rA6uT7EoYc*q62%pm&{8j|cwX zRmjX-C-DjI1x;n;@^R1<93m@xJ_6mFoULBPn8)kzj=8-AtzMA)&e}JPk(LbOD3WP zjpw);*;!ejn0*F6#W{h_oTIYHy9AU~QT;@p1L*si|3ABc_t?nW=Jp5&ZL6ZhKn{Bo zzjQ~`?(d1{q{b1GJqIg!Lu$T#FA$sH_~1D9HLmbdBfq_%S?rCPp}z=pO`v$VuNCMS zp~aDRkAQ~RlI;gKfylp{u#myp-(s_(a>e>M?#WDW!4RyS5tn4bFq;~Z?U$FZGmr(; zC9zw8wPJ-OZFg?8@C)|qqM)@3eeoNR0P=`0(8xFibdWwm>bEe^lyz>rQ6o^3qU>bS zRiFhMqs2i7AodtOjn)*P>!-&D_Y4C~Fi1)4zQct``$ft9^Pr`$*Os$M1Eq^UGxx;x zDNx0{jrsxFT{R0bVnv{xAHt8>G5W?r!gG(X|8;W6ELP+50f~In*(uEI4KJIZNO;6Z&9sFVD1ZK4|g(tcb`_V;L=QeTF{ZdX=*2hyB3(Sj6XscoBp=h8jZK0i7w!SK5-(pr?cJ={LuoXAyV!mt$7vGY&1zHD{d)Xe|54cfSd=G_bFKwC)(hDXpZv8Lbo zXfb!4dFJGHzsItoY-uon``A9ikaZ5PCp=4VewG2|k{+fu_e0;ibytT;VQ#SOYz9wZ z&-woy03H{0V4N=1tbQa`)bb&1jl$QUX)jjm?{*N2OLx44F_va!!Bi)(cW$pWJ|V*l zOL)msuAmGvjKB5`M`Di4aGCFOtOc#=nu+5A?(O_2n}g#RXlrjy2AE){yBT|D=C~h5e~BZ?Uf~^Bzin10{N@9C_A@Q<5%x~4gALom_#AP7uUY=|eX#Zs z-sTp?{nAwGCG39s*gAmp^X|7>Cl|l%=-^5x^qArw;|fw5&BDzUV6LUf^SAxz1J$W= z>MhK6wI?OvmzcqtdF}|;h8a+##!F_!hd^IVPh4}sanT#vOJ6>Mmghv2&NC0hko`s{ z2diva_K&0y?#-D*>Fenruv#%YdrP_i@sP>AI1&hCnnpKJJqQ&0^4NW~gFuIz9L*kt z0cB{fNxEY^`k8KqsbKV3kF)w_UIgnC8oT{_a)8RTM!RX7fDSYHOiki>lx|(>>VY0g zejd#D0qOxUD=IB^pJ>c$b|v)(Bxd8yDF~5>Uf%k>0_A78PFg=gZ1HWEn7-j2%2u~ zm&!)Wc9*MnPVT`zv~b>}?FXK)ci1>>2fxF(eQAWip(3 zZGT^YwU{r9wyPP4E^Y7SpXleu0|qs((QB$UJ$~`)V7(k@Os`M|^%AfA-%TA^+Zbakdo(w!qw;jf4tF}P%b6g4LZUJf(lG_b-p=ci*EK-OZagst?xtj6_{r_>|F1D&%%r8ngup8@(cDpzHO4RQquC zykiEGQ<&MedfPaB#lcE<@z2jGPoNm)@70emf+Y8+f)(&?W|Xp>)RSP{F1UF1wjfZ+ zOdF-eAs{gw&9@(=fP%c_ee2HwC3rh0h+s~t4l0Q@7lRhgd8lLedsI@ahv`FXL3_~2 zbvT0qs3^3feFt+~*WltUR?Mpf?qaUIKCr%u+IUQidC(B4r^km?@sRxeUn7jn2^k6| zL42Yp*Qjcjj)EEMRjxU*H-K!6(sKhbpC6~E4x4g{MM=aZP2HbJ@+K_hCwsYEh6|s2b8M*WJ*mN zD1^@GA20eK%v7&<2mKdQE`2_jehg{=$|9h1xt#~JeU^h! z2cxfRAAMcuH)u*e8F%$CZqMRh+mMlfMmgo6PL2^|R#sGyexOf2_gpIf0hPB3$fkb-;(Rr~Xn;>6 zCMDbZRgyqEOmHCeCC(U4^hn=*Q-5`~PvY+1+3$sy-8_2`#<`bT{*^{gjyc6YQtJfG zn_58nc_5Hv&whp7Urx>arrt7(YyL%5`ab$RSOb!|xVV*o2%VSrxYYtZHPt$khqbRy zf9cA~CD7iFiH`49?e z-tRz?-V?)rUIFbbQ0^iY13JWz;m%wSBKPi6GqUKWuin#lus|MHSW|OEeTmf2Eo2Jk-W{G}D!hI{O zg)Ke?8up ze7!hM=nC}G|nX!my&+;%1vZyg0KeU04D5%cBwf+^tw4`|Vv zU2MC*=ouA8nI$d(+Qg-OWV_$|Ygw+`$f^S^NLupe>|da7vUMbX&H#BOXO}Euq@!wu znf~yB_IU77suR{*mXPA(w--P=H@2-^s0gGlYHiDju}u2XS$z_-?&xQqJLmCSNK4`j zZs~(@aYtu8_f!RK@vq^7;J>r9k=C<`Tj5Cpa%IhTvM7|Mm{8>7X;Ijn* zd9*Uu=aa97gLco}daD#qL_yP`X0c_^Y)10Fm0=gHQ*`jwN(4>jWRqU;ujOL9Dm>2}ngmyu@P;NTE8v=9MK-yGzbI%^FZ_ zwQ7+p=8)TTQQg=f(9UR2w;Q6z{YsuzOs#{K9>uk4KnYZ6u|iLbewhggeR3oWw7Em% zj>706=2g0*6u7?R^c~A~tSEuKb&*b(FO*T@E9Ws2z5K7N3~0gJ;qM0f9>)TiwHJ@P z>jfe;iJ#t)2AY2#%idlCG*T@dLD>Xj-kb1)!>#XY}Q`^XuwggiNJC zbKs1~m(B&6zH8U=3Zr^5SGi7-1+-4%TWU$THxuuWTs`y^SrgB(dS|d68)Q2z`3$IQ zu+usC4r+^a>3)nry{jiKT)PRBDLG#lXAWdY{!z3SpBc_uvtd{3;frnz9u)kOK}nLog|O5N?yE7(gqF3A2i zMQf*mVEgW0rG*pR3XX}wIGv0%>V2y~LqTz5XKjH*Zb|9$Gy#o_ywm@J)g7*w7@1-R zTIuJDbKK~IkvSvZ?`fbl##|~Mz%{GhXQ1z<1+Dzl%|#c&o!S=rD4yZ z3H0Z9!VT6FX&fxhmw_Hi-*5h=4RkQl@#$0}5YOb|!d|ShN7s@~N;*JeNw3S8AOX_W z;Lp{y`}%P;{7^YgZ1?hp@(g63plH<2R~^IYCSPe$Cg>A4tyifJFT`kn0|4v)#W2{q5wQ zGQ$(6q-OrH5q8WGEwP|eMlg=`AZs`|dd<=F^L-V}FfQgM_ExOHc(Zsld8~k*vX8V& z?l2>O(XinFT9YS?gmkh%vnKy1L_q-bF`8VnMGq)US43n8$C(UWuV2O()y%zPH^h3| z{zxx)^9qcsCw;NUdkJXbV8dQZwARr?^D5JWHf*|wQWl@37?qR-c*j6{=B-XEM+lS@ zP|d8p8-2w^Z?hE8@(-Q9u-5?ScUi>HXd#ebZ=8f%JhbGE_&Rnw&I1vq0&Z+X@q$*INT7XOHERgY&4=3y~ zo3h{CWgx@OfAntdzz}*P(NIri(+|c8Xk7dK@+{E1xr1d(*z00y2(r0rKqFmqy2YRa z)G;Rc;{9P&7E?G}@8aDm?Dwm~Zv z6QKRw7z%H#=^i8TpBTZ^=OWf2=lt!mb?AJ*O@_37X&9XvWcapwC6|Tzgi4 zlEV`H9I%7fpMBriy8+t4HQ}F!*nx`LFCQtyt1u5w%@twysoD@cA7=?xxjp{~Utm{R z{X6$mO%ya;^N9L5yvoqNf{hkk&`j0e8mv_VEe&f1ZDV|Iwa{ri#~#6#Q`l$H2iDIY zMnv85iQ@0`9>WC8;#`7>B8i(|&FAPzQxE_uzp0T)i`l7rb=^^QfPVN$ zQ^qL+T_*V&v-cFxVB*~w*Ly(wF5B6N3j%T4`kfGY2lV`;(2Y%P@5MBfNM4N9;hkdB<)xMkGAAvS1lK11(6QHY=_M7e4;UrvCXd>D` zqaWVW#*LcUyHo%FaT&C{?*$q4LqHJ~Zy)pj09q+EJZSd|=mt%xNm4J6M`DKxJ7#;? znI*3_)J(N+p6$Wt2fK<~YVn0}Y9x%p1|NZ>nG?7FH3E%p>j|C1Y*%W(&*(M^8sTV| z2Oo~pO=;R2lMEV#ZL3bscXq!uuXt2i8qKVWsYeSCj%ejkkU z{Z{RIANxl5U+-*dX3#3SU*C?iL&1Xv4=e>=|q0SYX-?^19I$c(r+ zxdQzcQg}u-7OSi~gu-Zn7pxCI33H#V0rIRxPV}jj26(7tBen> z$^h*t*y-?F0itGS;jqGUpD}M1Ww}+sDI?eu}!S zV6BNHNgQPZDm>Lf^AvsGFL<0!L>#nviG7L%zktjmZ>8@T14aLtPgBBp#QI$Heq#t) zL85Er`O`q6mg|%^m^P#(mG;zcKye4|*DmAUZj>8L=wVc!kfmO8 z#=bV?aJQVW8pbtW^c#<#26B}ad(>JCw9vNkoSYQMpFX)o&K~Hta})6=^u4XX=8Ih1 z8*!MnJ^dCN{ZhZp^5PB9chMFJC0ihauU?w}a)6vU z+nO8jTrEB*ZP|oAAlfi@>K+5DlB$r)BK8~(AL=v@tdtg7OX)jCV9h^lniG#ZBIwNx zF~|e0h?1;H_ZC|Dg>rj!fz%shQz+1r*~erxwl+Xp{m1jp*b1m`x`W}I0g%?~rRZ5x zpvH&CL&@&|joyp8An_2#@emVV#Px}g@oLNA&b7I9S|98Mt6JmLV)Gy%?>)!*+RTC4 zJ|`Pp#hkRY%-DMbYg*9dbx;8 z?i}9Z?b;$2rzmKCX0i{~0)YPi8F#uyC!k3-qRV{lK+$C1Q#jD$5=KwdBQZA)I;Z6L z=YsVYIcL=Zo$D}F?sbFGj{lkx(&}K&;+%#iyQGOjHEw6l3RzNj5Yp!1Vh4ff6$y0Xwu*iWyvD7#n zenTG#;||Js#~w-m3iI{x3d0Ce=-sGQ$CX~!`cy0b8?1S@ygzSX#(KKss`H0}w&D1q zXZM@W0pFrS({aE5QtoDH6o7S%{JFgmo|2qH!!l>EK4uPCie<@zRa`sMBMndDeNVH$ zZ83qSS@5t_80+%w$rsP17eM>xlDxEnGrWd>s+F^V79BJ?&yIf4(|s`ICkvX{XC;%F ze?YT(lJ_mrf%d5Fqu|EtDX!HnE?x)i(6}HIaV3zLb*hvbp3|d$f>?^MOFjD?cOwp; z0G8|pOLsph%NBp9bpUmhL(0pESW)AM{ z*nuaiUACYJhO(1f9S5RV9iJ8;0TOCv;H1$8qLXP=J@gl7QmOII)%!q^mx4c?CjhFD z;L(mnpK1wq$1;2eO>N@mWT85ckyOU4yD(5=jG^Z^1CWf~86jeTA zbHduv7&cLU-U6DO+W~_M7#TLjQUMwz(C+u&qalk1GLow~=0OE?^YijGeavx^({i6f z+R-}qK!qNk$Wj@sxv~dAYZcO8OUAsS*CFg(JqDWE?;SG9qd>wHiwv{kK-&S*cl2=9;RLGRrdyUW1?nRfB!JV#>2#5?e}Ml(PHTk=~Zg5lDIVod0|hiVr=^P9c z{!qj8+BQ(%#&yqg*spXhbMwt%)>Q`w#clortF5W<*+e{h#EciD%`Sp=qmo7?7VCUw z{Jb_t9B2tQ`JH0WLql!f*6Id8`>Nzx5{~&2_@1}KP7^fRX|^#k?59f|h7?m6ts6(x zB|;j&dhM4h#oOyZ9-e=j9ufgL^_Li$V{RzT?x&)D1e$^YCB%l*~^2~bxbufz!Ye{!S%jb z4A7v}-*-pmff9`v_o?^+8Mel3*WL&E!Jsb8y#gc~{7IJZ?l{Z->(!LLpt(lKj`ZIK zy4vm5>Vh*jZm>zHmH=&7v-zs+D3GnixdTN1{rz_pnL1kTq6u_?Xe<54b0FFAxDTnA zAN&k069S5$9mtFquIC1_ajNw9+y`W)zsUXoef27Gx58D7&e)L0&rGlmsXw3LxrKTD zT6>*G)CGD_-P}Byw*f?ZU0U`49wl%!@eC7cw=J$eIG_(!zc0mRgXou)$ZN;VE`UZ^ z9}?Ws17!2J`J3^7-fW~B~HA~q9^uWtOE9f84_}O2RtH*)* zLdg%E!gB~TsrURo1DcIW|5#Kdko?Da!@eXS;=xCKvI0O~7+MY}R)$SJ0;=-@6v3@k+}eu!QFMTWF^vv#YbK1c+LvPjfJ9suNfe!!%b$(-9W}H?gC$MR2KdpZ!J55_95;_X_+ff>L25gBnP1E zWL7fsc%XU_EO&!@lXMKv^*kZ>VtHt}zHuJjQtD)n5`h z^c}1`@eT_PkAbFT!_}KG>L_^gpMAIvT11s;$$Q*GKLoTzJjATHN|HHdZ4cHY_u?4Y z_t^K&wSqG@ffPeq&V->S@9~Zmz7GM7jxx{ePYzJyS)r+-6rlayy)VpMfY^nJ6F0Je zIG>YIdSF~dK4m{Mg3UsMBo|l9+!-J(B+8rv%vSbhi>J{H^C;Vpbe8Q-On>%PP zsN5MR27tWZ(zk_SbPnYRi~8RJts;-AfDvQd!zg36iwQLAW3T7N&{r$l(M5#24q}qn z0_5;)Vt)I*`PHD^oW~npqGh0Ihvkb)N|Y%-@f)51yXK zT|=4qQ|ZhOSR)RXk&ZV5Sxt#tvBr^Zi+oBtbrrNH8jYpar9gFuJ_{3`{KfL*gzSD1 z(255#$LQVy9dG~9uuu(jFYdTeG**T~6v2P`euEbMIy}a26DURee)ZHjAesMeUC-VF zv?=C4m5ej`U1cmz^98i9V<)_{?0~$!^)lwh10~Xk-y*|(mFmVPFX}g-kttrKP{bW# z%{shn#|^ZqQ?zb^zCiDtndPry{Jjm9rrf~{5FfH-VEJ#&wYce}G84yM($P0_m7@D?7ac`ua~u zMgr%nTe&4i-wN6{s{SS=3Lxf(7KL57(iQLMISa9``IY}}VfF#5)S1h*MWaBe;rvf* zQKOpp(2#@?QJlq0>SGR8O@2C!HS}|YS#e6Oek z{PgIhedv4hBaHJtI-t$ID5`5&1tPh7OaDD)ZS%ywIA`1gY?zEm+CPJ}=6?PY;~^kh z*;^k99sxZ`ac+672{hKM^;aD8V}|;4SHC}K`>DJuw{Y|=dWU<;^g;7ftH~E?zcErhJDZMIRq6!D-Mj~K96-*^TynF{s7P#f0S|)o^k%Ql*geK zN0mtLXkgO})(?+WudSnZ-;g0j~Z7?F3PBH!JwgQd$(^aMysz4h-9Hx@uK$)LOBqMNce$LUGM(9)X z;=bM5j$nPS`Ow*r1E{}^Ltcg$Xs?Jb|Dkt4`$KCAOT{`?A1lMgJ zwc3f5J)nL0VCcH%2M|l1+;dgTk6)BK+_J`?DX1FxT)?wcM5b#I-agJ;Ecl%8)|tqP zf@8|)@rv!PR}X$d51Rm)5p!ptPtWR}pTK&MzbZn`jWvw7Ht7XB*1u*ecfLzi&~BJW zlCCNZD2dIUSMxd0!(`|Ay|`--6ZfS$&Vlx`sXcuC7?A8m!S0_ayRx4wM7A5c(IFLZQL-r=2n?^u=*&f>W@f@$;g}x`;RmVKjsm(tG)(dKL9_wd- zEKGEFMV|$#zIF%iZzV*2Xoy|JO^VyBzp>GiX6ZGf&s=s)?+V*r4Hzu#h}k!CI=L< zi?ptk4T$Towqy4_AcaX49>Oz{3(hQjf3X|1$Kf|eTlN9@%Pe*zO8}K|z2EYq0IKpH zY$V(dr$A&+%!-xEq*`e8zCKtd=zq18tN|I@xvbT5VUn^PxHrCwOV zj|L#`hRHm(MWAyJW8PBZUSaG1qgbmPv;?8gz3SmWG*kCFW^o?=dBsuw8=(DWmydLf z2kJ@lbM?a>)uPMncB!CM$%NmZ#<-7s9TQpa1={Mv$zzWW0MXt{%{z<{vDhh=+vfxt z*$vUUOEy5a+Rn}Q)BxRXH`pNj-oQKM)~AhO&<@^ZD`uSpsyk*}y^eLm*e5C786*2L zWuA8!<{)W~QHzi$w4=aTwX#<|SLF zvG4uYe_tHL>jTUG?z(>&3Vj9RYj|9+!p$@;Nqbs?_UQ5Ne+8yMHkFOG-;;qd?PvR` zaeQ()_v^fOK)c&T(=fRoNWS73>4pVR3iru^K0=HuJhY5|44RdgXT>>;M26obugP%D z^Lb=FiZJ(Cevze!;n{w)tFsqIK@X3WFV2sC06lA$)jO#Gq(=NChrJjmhFm*FO8{u= z#Zh*-r$EiyK9n|kK-?sz61^NipG8#!A7KsC2=|J8!wQ-@TDj2Di@9O;k!pj98r z7?8nw@Xh7wrE$!`n;VPwE3bof*To&h?OY)3XOTaDVGMD`QM8!!LkhMu@V#E(5I}VlkT93qYqR!6GJCU)qzF=M`s4F0XaG6Mr6+dl`!?jOyco2ZaaNYM{h9yJSu00^*N}A;q>=> zX!rb1V1R%xP@TN{{JT3qpHm&pYp_zETHhse8Lh$E7aT)*!Rl~U=$D8y(8sPmn*CTy zzU2$5WeZw%TKurmch4V&%#19`^ zC;W;j^IG0F4ldCAb#pW&aHW-Ewg=l1K${d)@4F=qbh`C48;dTGl)$;ED$Je$iTI;= zR-jRmQi&?h1JyT#UiL%(y{W$cD(3=d`7%u6gx}Z|A9eQb!dUCS$Efl0J6O4H`4sIE z0W$hpkRR0wG$^8?rIG~Habc?HB37h8U3H+PYMp40|LH4aM3Dn;DQ=(FIEqFQBBmyGa$U z05Pl@P9_)tQT9yem1qG)_#``f;PJj?sD@sQ18q)xqlO9VZjr5_+xrpF7I(BB5I)@{ zHZdhgS%W6~z{2Gf9T0I?M8Q1`ApN?z=`vgo=1ddK%+sJ4I=Gp7$x;-0y6D(5&mSDW(75@rqcZnplD8eh6t2ejU72w~t>U3p790-BDZr zo#wy)$NmsJbX*ij{%`*~7OdF}3e58|M?vGxJp7d!_Zfxoyp|oTgewnjynj9j)>~>d z8Z$UP#;NWDs^37PuKmIFAQR|UiDOPMMxBrKg&i5p>6SZQ)3+DEdZ1%ZY8GDK7yP+P zCzJx3Y&`4WF+U*6OKk>(ce%83_t*Z!9c(&bZtLZ1u%=kLXe(mf(BC{&CQ}Vs>M8q_ zbsnIJXp8QrVn9)9$8rzK1BDsSn$o8NJ-EGjB(@I7OvO-d4T;#fC7$s6-$lhejXhyt z_1p+Ia{UeTZoA8<0N10@h;23V6KIVBx<)T<0j*lx)QhtP+8t9waefx4PNlp;-wsIn znYUd`F3|T2_EG-lfqroQeZPY-)Wf5AE9xF-pKYj()iF-f?(Dr1gZ2J?p!C7tUSPFk zOU~}cnOml(PcKV>cJ8%Xf0(HTVb|MhxwRglyHb5p+e#@ErfL_}~(f-4u{N%ntl8C#3qIt~@ z4HH;}_jF#R!R#6Qpk9B~6*R-Od-oYJN@Okf2FtR5R&kzmVjU~j&(|@zY1^QYyItNz zScR#lxAz*3g2vmuqNk79o!Z6OaBBm!n8XOn2wVlL>(eH^37|dUY7LU-1^R2{ZEys= z@mlG-8t*~SvZAz<)4l+``t4{b$9;yUvk7KS-!4z?;Xx^ z_q9{(G3RW8SfHE=Eh^1?L3yMI?;LP>y#*A7h zrbwQ}@i|}JuC>6pr%2;(W5mp3Yc3r3!m+dwonwhmguW?r2mF6L01^-U@8aV#P&8-u z%kC1OY;Fq22+X6BIkJ0cEUk@9n)96tTu?uF==^ z&VY4xxVhuaVIYzW_tiP9&sI`&ij-ZT89csRzlOV-NQuzCTJ$9CXOqq)yhif*^V!In z3ffI|ujmjy5sWyTt7OFaM(&$@;g7jLva~V9gPF|cde?U}1bQ6Y`OB%a!1Gs zv`XfN#GhEhLW`M8_f zRB>NeF97TA;|ioxSpP<~LuRseKx0VRcus-w_qFAZQZcTFRcwfNDURTJtc=B;X=pb` zzHl(t5a7OZRi%~`RGKrXv^lbEgp%{#^R zU#tOA7M0Ew!MSgA zc-!7iGn|LcvY<_;EcE50j?%kv4d^mm`JcEIpu;Yz`>xjlyr*miGH~2FGXK z7LXT-KA5`vIq)SdSciseBu-W$@#|;_<6e>cduZ=6`j0xY(7$RoSeJGLi2vb?p5)vc zx}E{r&PtJ%E#}cheTCf36QC*4Q+g17mv0}$RUnLhZeSH}d1?$+<(VUVWIaHAqIDdO zy+F^F*om%SZQ_{IS6es&TC-B*<0=Ut@$qK6CcHLFEBn$zxSQ&-!kx91Jg{!=nzod^ z0_1;;!oTDXP*?-y`3O93X9eT==w{GZ|9gPX5FXE>_KtBZQp|}1Iur(AJ>)|&IOPd6 zHPRVI(+#vs^RS2(G0=;$bIx=ZfbNbbUr+uGlz#t|R~%kF2(?I9)j5LZ+c5r-hlO*5Y~ycaz2FWP+87go~R`4k+~K zM)oc)pq1O@QW9!F%>nf+Pnv)j`ahLvVB8b`F$xLy2d(Uq{pYth7Pmwz7Q(w~i%;6H zN8ypv(-MmHF~W{|A7!e;xLT2I$)(x@eT9c5d&qEA_i8*8V_X0&M)*cd@kyW#UOC?0 zJ3wrgXQjQ-YiU=N28}S^>;yH1UgG**|L<<?oH|4veX08=03eVhp{UbrFKy`3$zC$&-?4f zfDTbkaWB3Cl46nfBV@`6ktDfyMR?EDLPh65EA|a5s&QH+0jp6-$QhEWKkL|1+-;+6tny<2e&oZ7$5W{*|of!4`;dw1+f7&H6LA!S1ok!+aBXW0T?!B1^(4B(}Ty?>OV>i=h2zkP=-d19Cq! zFXyZaG;f%=H>Mh>?~|W$2WDR9mnUaDsX;Tob;0%kJz92>sYgo+pVQD8E)$Z6MZ+*(anv)iG&NKq3-HEZXgW$g-0e|kH*VLMHM|hOM zN`3nIzbK6RPbuC0qIkV4nz&WUrT|vS3_ngEoX5`#<8EhgciBo-mak#}tB)6@IeQV1 z@X?d(A(KEoK^KODFKz2lj#T=u zEoSYPVIGC5V$d#I_^=LQCA`@s7P||*@z<5BXC)G>n@p31Pi_JISSOVv+-v`BgycEl z+021w^K1qdz^W-pTQQ7TcChq{JK@gOmc*NHq8Y*ZbTid2%pFMUiJ?phE0CIshSzuW zM!H01^L@-H-(u>Xz`J0zdr_gc8)Nt3B7cjHB4`X5@AU}xqu1pmDz?di=6|TZDi+6V zAbq5vs}!`0-KuuA7-4fQ*W)E{Wpor~H(i3jn&?sCJNE;KNO{Ih9kWbGOieat2(%B= zQqr3kFWeG38b=F3^H0nieTMB`+zMjcZ46rVt|!CV7_s8+-n0{Op!rI~E9F@MrFTo` zHa`a9D;Xf)$^hyyXLW6S0%X>Z+tq>VF=G?GD-`oBv%D^740B(9`(!d5X7Zt&+r}?3 z#-o+$W+?VT-!jvIE7>^ToQfNBV(6jLrjQoG_vd0dex+X@A-MF?M1b&rizVWRJ{KNAkAizcWn?NqG0tPD(7 zg*9?9+B065^4-B~q`tfUejRI$y7BDcr+Lt0_aDtl!W*WYhe&rm5`o6^_Id>2PJE+o z{2OTJI2TDZ&{y#+>7E%MKwI~BN(cx8`q0SrqSCx6}$A881zt2Kno=5690a*upWAw-Tu+k3uT7uTt7lkf8FTi^LW?JKSj2F5( zFZp@gf5+7mB*pQ{sNLv$XWwmTC#_kSHzow+d(X7YIR;2?U1~yN9!PcOrAr(e5UEu0 zGr})lME~8e{hbJ!Fi-LLbDZUqzQ}i<(YsOIJp$KK!TKiN0SDuSrl(1eWieEo}b)%?mTM8Wx@|n z0okyB9`V8$x@07$PxlbCO~J45TGju^bmioPb`#J^mIpLT@jwIb$J&Ly0tGUaR@QC; zy*qr^T?c*8Fr^a}xCL6*^zfkq93S)i2Fp6;szG$_@0aKo$z%Z$a%deQiFG2k}Z!MEp^`2}b9E zUxV=;s$jLBCT}{AqdGou(Z>ysJaL^p_A};|@A4fdGgD|se}&RLZwKhD@}uIzn2p(W zlQ(`H0X+X2c`o!$`3`lYF&fi~HeO{lx zUdW3pvs&};oD{BkqxY$2ey^dOG;@ON3!Fz+`8WGy3ee7+H4P0S2dd_m-SUhCQg>ey z4WI(bsg^VL>I0HaoTxg7u}e-HpV(Rn8vo;l(udkW#S0ymaxwScGpNj}qYp;niG|#7 z^@%*Jod(sRoz&bCKjAY@?|IHs@6c;ub=TOh;0_VTLFQWb5!#W_k$lm{>f=_MCq#!a z{?PXf%Q1|w##pN86BuD`KW1E3p< zwnamPBR}a(t3^Mjd;W3yfiud<@LiH5X8m@`OW)@}YY6I_RBZ$Lct2No{s55S(S^@%aPQgLJzrss zwZye`soM%yAw5x*yr>7-4gD2TD#-;(`ap9teF>0+O z9wi*TZu{rXfcK!;oA6ovI0Mv6A5DD*NAF!(u47vd+V5pd$t;|C5B)P6!vB!lS^2hwFm%>hN8jZ)Z=gs*UfUCN{bs+3yIJB$Y;K)&B1&VW2JU!q7bTLZ5Tf7}; z#rs;axf+l?%VWOphCq3>)p2p$K;=IVFYKuR8f`dlJcd4%ot{s4mkL@@aY1(}=5NHW zhG+e2pdJ3V6nzF)tLO|(jSB8+SC1D}&tc|SByX<0bA)ykY`*DS4nU8x^cN&IfSUKP z4UpLY74M4iC{+fsU7V8-#%dvFZaqKe51LNX-coWLUle7;SXMV^9{VlEG+lu<$v&G^ z;7Tj(=gZW=HPYrx4LEfTtZPf|Y~^-9ZQp%zA7c(4`_kRGkOrDdzW+0I^ueQ0C&t@n zL3{N$>qB_~(D4<@o*rQ!I%${DL z_3ley=fyl1Js19n&l9v6Hq)CuFM(9pPOGe<4^9t;kyB)Wc0m3Sxv?maHB0GzO`PSY zFL_JMv!I>rCz9xuMQc*r@UR5XzbDz+Z?Nw$^|gEljAH9GrEVp5uzr^vCO+{RsP;gq z&>Tj)z@sn`qT8UEU5qmx^aYZ+_uY2+I*_PTh$bicR4DDX><-p7(P3#K!gr)pGCpUX zK7e+mF@DQW?*h5MSqa+c0@^Hn6;1e#KvAB#`3HJP>gY)F^B}O&Dr}qgsQ{V1RP4#c zOgTuW$M%f}Gz-5Qo--Je&7Wrr&tSwpAGv(L=NDKdDfx63bASxE9hJ3)fO^mT$U2ET zQ}Ed`;x()SX=+^F2XOQU7cWz!C_+08zV*73q(GNx15_UH12yd(w2YtwDs=hV_3S)Q zt>?`P1~aJfjz-?Y+|T3qz5Cfk(2k0pJr`FEBsi%q!;RL{w!uET8bPxyqiT7K-=9xu1$D5X4lX<3#J%p>^@hM_q2FH@B;BNa6tJzc2=EeJY&_gX`Ol=ESIxc-8#{D2@D<(Vz z4d@rE##dLSGeK*~Hq(pc24Wfbt4uBcq(wiZy@uH%b>D)<2=k-em)NL+8LUgLsh`HL z0_7-QunG?a3f=8m)pi1CL9w+w)(WVvTbp}C2T1A|H4T*-P}_y9I5F%o^|$%!J{r)9 zPgO)MjsR(rYG@O_8$0~V^mzhCj^Zz?hCCmzdhCQ-(j%!b+)j`_4qEB8jdN)#jK zYQXxJfntE-1yHF=;1j|fGiodEjm;K8Q}^BdCQcqm=azqUC!RN`h^#R08E6I6{EQ3E zK$04nyvNglGK0E*3S%U;kKCVflL4(xr89s_8;Jg72vhz&pwkI2oC(itD6462*v|mk zlH0_7)nXty&wW+D@F)Xr|LP?;K{H-z(Cx#$RV{xi(;`XTvW z*0@F;j-Mnazrs-jRk>4s<8_HkVTd0G&hq;sCXsSeuxif}hc-0B-jJ(E>M%a;loO8EvKb<4v!pDWI9%_1y-}%#N%IaMtuI(3>R5J)A2c2 z)5!r;Y(QSaT?)iPP1(nw2*fB!N|Z4S^w_6fqO<~N(C36}t_0AJ^A`8!aUSm#_* zBbV-`k7D)+QRRQuErNCj+CmC0;5?p5zW12N{Y|s>&{bxv_oq22?FV$XYJA3ThX8$-q73AA_+v|Ve0f2$0Glz@c@+zXtmx|lO#`o3QBdWByg{2 zB09SNOCo6Mq0S|30YIkyZztdRg|+6JEV#K`e; z-Z!@T9<+$9;7~D)FzeCdS4wfDD_xSx&8uJ~-%v2m#+>&3{+RA19@#bIu;^h`us)7a zEfB;RUGLqZOSJ>7S-pnLQy*wgQpiF89_8b5!SjD_K#Th}l;dLq#QWRmTR01lr72SZ z7v^Q%cJkyp#yx*QhT9%5usXWmU?asiy~6PB#ko1q-fHK)fAA2fzThQ`Jm&BDFsiK- z+=&e$o3}*Yfwg#Bk~fMJsE{PlZ3H9djrD<*0V>c0oboIbo&jx1)AlSs1sXW7IcJXE zIK7AM4mrk)-75qB#6_?YdnnAUNduKtDVF^%0J^29#s1$?{zufhybS}wK=)EPmdE0N z{+#Ge(Io@=eagG~B930#BvV2R{URLM`I%}6tf3blI~g!6iLm!*4re(Vdw_PMD|O{=Ef9_B-Fl)cK+AmnHk?>bISu)v zH+n%+z9JkfVS(*B`+UzR0hyMX8o6VpNUQQXsI`GMcB_?FeFsSVE;q$E&N7iJ%|Z!t zu*xV|Oh*l@)=Bdx-EiHevobbFF%EdlJc-*dvPbosb9Q6(nU)pbY~Bw&{xz}@&)`+i zgp$A1C?jahp3UQupMf-YH#};*4-{f=CD0`X)c3@}Ql1>>fXEBYRE)`vQoS>}4WKcR zF>^X$c0YaGmK0|M+7-(z+8dZNn-O+*dJcouDJi}-i`u)3p}DsCpgGiL$%&r;TCnpw zKzRQk1%ndDC9EZ$?L5al0$Z3o8Jq1{qj6NzBWCLwd z4NV_H-|q>^PB(oG8c`CtAb$!_+*V$25XNreS6ZUWXF+3WtDMrS0%G`L^yoI8*RiE2 zID`(g5B{pB1u@^q=7kFTa8LQ7ES5iuJH)434>S*B?c|+j;Ah0+eKpq|-(3lPpRRvo z6TS!(P#E9a-wEWZrH9`ON^_px5?TR@u_OCDVheQJ;mvxi zA5iEeNBOOTKxg7IZY-jAmvh>G7vT;@%$3z{=?vBbVq6_nuYjs&V|tmgfZPpQ$WCSe z?RK*GDBTWJc`HYf@IP~*R+k(aRnXEbUL}%X#Fnr*swT34R+Ri}DqtTFD+`mM?oXge zM{XI%aiC$Lw`46?1$-5MiRGUHt%avo6dHrZ}56kp`^*PO6T5TM&>3Nkk z6*tfV6@2FiZ==1R)Ai>V<_zCnuRDZiv#jSt-)Y73_7s)nGGTNI%9xkk4~4$eYvjzb z*MREfmv>vECv)OB4&O$PpE}56(|QuDl#YkU&tpYrE7XwJ76*-+sM=t+4^YVaQZ!0vpi{5uwdiqAq1V{2_G1vV z(3=?q!)DvMY23K;z}=&uAzF67e-QAN~Wh-$JQa zHv&kae1dC{8R+(hixZT%T2H%f2Z(rsc8JmWZ}2T3K|LbJH7}rt#Im!~aX`Fb4`!vO zfed?o_YKiE_dE{rIuBhDdn>L_-pIWESaPkvcVCb*S&XM4|&^Ry>{kdI;!)$MyO? z^y!^>3DeFU&<+l|q9lHJ;7m(?cN%oVoXl@XF`6p+~;;Rj%6?fS9)9($I)LvBLncLNEJ$7pWl0PVg>8?yZn=%~zk z|HX75H_^2leOf?F6Ujf{Mgs|-R3yzk3#8$6hwl+qdCL5|^`e-oxy=$+3qOFh_Tx=1 z(g`5l0of04LV@a+Kk3Nq1M)DTkYf!1y5&dRM@<8?(3==fjMeemmKb9yUPpYHQoFK7 z3)V~KB4Ms_Kz)bEgc_uPf|NJ!6MmO9#?g3c>k??n$4jzw>wwk=?ITq%b~z|^`SoIt zz7esCE{v-<+Ov5d&}#`_uF5wULJzZsya=`gAYEVP9|?DXmUq7jltv#s6{L)A4p@`cNemP*+9xe&_1|M|HEpt5 z_~5>}Q$ODG45Os!P*Gqdde=l#==&mi?P(8ba@I>Y%7dAA-DfZ+*L7}QVN3?il(^C~ z+6l;2!U@&C2`kQb|Dw{^fiqxbil`W*!M zn#>_wyxR_Fmtg9m7zxnUM0RWORUnhPR@WUNpa$VH!h5l9%v*%-#9M%7bzR)xmO4;Z zwz7yiu6fFfaDyYkmvIA_7`8>gB`kTb0 zkogYUd2c>X7cc=jrmlS3P7R2n>$>@V%nG|Z8>_>eptV|$6~AHe&70Rw{pW486qe?cSmcx8A zw(DTX#nF?gN^-|8K#wo};tQM@yFG_$UX5cszwc`4iN*05l#y^n7DBs?Yt-+EG=Rt? zvwzo90kuD!tTs#nBC+a{3i$=pS(hb{iWMnUeq2yA0<^_q^MEg-K-HwY)S4AQceg`> zvW9?qT5R`xcnQQs7V9N~Rpq}|9H|T>gXYyC!Kv{Yh%V{&MZz-{o?S4!M56%OyY|FC zj!Zy*r+<=KEdg!ynake(3>3m}yZ@vY5ZCFe>=hWNJ(t=-Lvh#Wvq>#~iRZXjdgtn6 z%)EP){sVKV(Bt-!``pQ|Ks37~D&@w2sEcJzE8_7Sxj*SyVSZ%LdQS#k0;|5tN(T`h z#md!%UK_`9?A5I+T_?c${7`W4-WNc+6TLP{b3ik-)lX!%fLc~AtQFv>roMb`$-$gH z@{^vd0b|3g;cIrhJhXdNwHZiG1N8gP49g;BkEPE}9}8OLDfj-o{v511Wxub)1OP4c zj(o7&4-~k3E$*#2&^gOxW&;nPSTVuJn}I<44oYS(SOZz+@7o%&0OE+@thsCtG%M3H z;z$BSt=*#1`3Go&{Ce3nj6^dJHA)ez2On!aTnTR#^4>euV7mbALXGAqE4G2swu{EY z%Yo{iJe}L=2jVm`x1<>davN>yk3?@AyRTqvR0LYH`Vi&%C!oV8OH+_QOi<7qUBFzemD%8<{^*a+~Yuf zA36W3Q3E+M%(W4I)8!=hE>%=e>K99B!k)ci&pQ2ogLUw?*Y^~CAX2U>5eJ;d>0fgN zi&#OFM53kS8o;XHzSn>1FHny&v2!_A{{6W&GjltjK!cmrp5nG})_@ZIeI%a5KymZ%1ZRqRT zqh~Z>1GFc`dz=Wpv9+*v^Vqv{ z1?}AVV;I?5fNVaDcNU`W`PbhvCcg#kubJm?3fA5Awg*2XaE+d^u2}@*HImq=mYuYH z&`v4i@{%0R!%BhCUUvkvBl3Ke`{RLJ;}h=;J_5RRy;erT6^OXPGRy>HO?@gMd#w<( z!g1EOwaY+nMkx)2ut(>WP7_o7yt>4gHmi+ZV>zoYR1*X3_&bG5rm;3v3jClA7Xxim zEZ`{@B@nO1*Wpj~KoLUh3HR;+wb7FuGsCmFvldM+If6!8*C25%2WWCM`Qjt=fnz!y zQKAHBg2DTu4q}zh;+T&g#PO9k%}eEA}s8?4DpzB*DeUfzS)H@j^A>^-dfVI)bahq$5LMB7jM%x^%ZtGg7NG1@aP zN0EQU-C0H4^vNV1k2`A5l1~A&qfQCx_@e)#2U_RwS6ygNa4 z35eunmlmxpkgdF_^)9?ph!20oJGdV-sk82B-%WuopH;ukmjP7nblmi~63_*PAB)?2 zfC>Xo-MB9a^plLeAX*fN^2N#p9!sFeAY=7~GeG-!*y~9#)|d)1Jip+2*eG6`zrzpK zqNmz_*(QMuIf(^~Cx8mxj1OMLBbPt0VVN%m?bB*DeF=^#>4*Da+C|XpwQ?0BZUTj> z?)6)U1>)FW-k6W)_?|aZMTs#)o#DSic&6C(k)`~jSR+<86LliPs89}4BNx07z4n#{@AhaS5)NP!zw6g;AE}hpc z^uG=GKTrPj8aKres4yMelZ8hqZ?;`;L=Qb45|q_rfOaF>9e=vCfLMb6S$|XknzeN? zXG{gEHE0uM!mP*&%yBz%3p70ijSFvZ5BS;fC1NT9G`qk?oi?m`!p|qS9U?*dd>||P zG>&vhz%k{Q6KG%0Cr!U{1G2ce!cIyDME58AiCY^`;eVSS^%WqpieK^BxWiT|Wrdfh zfi_ye?lpj!XIVjNCT9hj(et-vqqzD@eL@~{SV4AX4pXQ$fVGi-ex8*G#F7Cqh zJ!R{7soWo|x0@}^gvfy$?ypYS*8?47y~A9H{Zy3I(muYu9_tBA@_~!{-Xn2bbeC1SZky6DprHs}5F4(H;t72O#?| zai>+#yD4IcPab1Ta%vOzMBy5}rqR^UIt}eI23S5tN&%5=&u$UES2OK8I2d>bv?HtI zF7D__r#D7Cgl|jNoZ}7MFyDCf=$?%7=rxi!vb*d;X7psbMUzHBa z3$W&fO54*P2I_Zw@Nr@f&_%C9)c;6;!c#74+)W0eVhU3DS_u?w7cIA70i+~;Gc^^* zETF@v*&_+sXlzlSLOakk>${)2M}azm?PfeXfP%`tyvxP<$4xJuOt^ctmai|f7*{pe zw)qv!2Wa=gv5Zv_fv+Ik>{`@)S{4SE?n&?@S7#pqJ40Lts^;Xj?O21G-~f zVp4&9iIbFfdEWzVdf%g#)^|Wm8&;%^*MXjN&Zp-J1Ch-aGsR;JT`CM5D~lA5PzomdohP|!N@bw^@5DJ5F<#i@>1AxqKuey8bR9yU zs<6(t3xpGnvgG}Q+rV0*$<3$K48#&i zIkkZ~802YEUxmJ>8u~l4>XixZG)wfAKQbnBQ-`kOQcVV<^1yyCKG(z9kicX1PoInwu4vSk$0Byf&_|iWG z)ZKk%ZL1TANa%fpH3?9M=$mtH!$9IQVtW(Hf!=*SxwQERsGXO`u(lM4iZ+Kg-4v*H z*+}U#G0+SCg%^=KKz(C8_eFAmRf2WCBF*^B7hqK&N!Akn?A*~wL@tJ?E z!NaVe36Y*%mBHPQ?ab9jv`U}}KK56%carDmG2dg*&M!q! zHxj+UXr$-y3u_Y%n<`t!HL$jD7`ss6_~wlry2heFd)r0I{_qP>WOk$1qqjf>o%{)e zClb`kwddZ(vz_G8-(!H)%**SCsyxQ-ZB20s4UB`DkCItzc+I-3U*+M0>t>>++$N2+ zecO_}ekBWz%*BvtH;fTBd}M5g6YE;!>6MD9QLwV@mcB`WIWt{l#&{RcW_%>mzSS74 zucbIfOL2`zCl%x(aRsBo`G~{Pz#4eGZ$IIEStqt5&J*5qwh%c=p^deeL!sz=8AjN6 znb0k@2I%o)U~y1q5U7djK!qAw8H>{k6+VDg=`dAE_%-wp zimR^x8cgU@I`A53CV!*c^*d05E~kC$Mnq}zQT2C|6v>^TUAPWS9LoiuxGDWBe)t*t0H-N+vOH+_d4qF5-v;_9v6S|} z0VtEE+vP_(P?jufr?4E*h*M4;-m1=3oF-DHB)|ex0>v69@7W{YDY_6v$Ke&i*Mepw+&Ka7L^G z+DpnVUKqs>b|tMv;aVmJlz&U`fOhYn^FR1X0kn3k{Q=?op3%_5--$45E$y#H7?*%m zC-23DSj?WYS61$h;*rT~rZzk4zf$leku@kL0Y zlCot*QT9l(iOQChl93sinMsidk<604v&&Y<%vQ#)>+<{W{rX(z-1j-xI(K=V`@t>{ z!WemG4p*?WP(P}22CP9&t|D@+Kv}AN?ef(?s$NfR_J6>+cc{|nv0vGH4oW8c1ubuH z_3HozAX(@81zA`D^dng_M@m3zsks^0gSGn9u(WReAZWzP^hbhl^}3ArS`MO5gQMJj zW?}wmJ0~VxcZYF;B~ik6r|`;bifyqjK&l#bd{VfA`=(m{PcRQ?33YR-u?w6u(p_CZ zuWim}QM~;IGrsH%k~xC;Y@C@FxcL+`;R`uYe3;L*+rP3T$3ZhlKI!q`D3Iikmq+U| zPA5+u4?Kce?;k7-=ZnHoa zcN&gaegz_kA7wf@1SDSEd2<`{lv_ryZ}lK)ZQMMlIG1Gp%TWAm-Z4B9EI~4UF5XRczOTeY{j>`FIf4w3=qu zF-g3K!37JVuU0UQHtemAFj^TOX`RgX0c~iM{u-+pkWcTco|hQk-$^f8!!aXfqHgRz zi{5>0x^}+lIE)K6b?5xy59Bi3|M~(aQ1^!cl39!g=`i~_b@ah~y%=U;^z&M0tLq#) zj1%_V%HYR%7(ZxVuf-f!5!&(HcOI-tp=PWrxZi-H>4z`OLHm%EuvVu4G&_4vgD(Tf z^u*T;#dx6bS9Vj6aRni~T})LEKx4EJd?xe|Xy@bAxC5R*iegvt4w?WRj`1$NI0nQO z++VD>4`@83-_auoh(%aLqd5S`r+B%t2dgYio73%47HCYp=eu9b0L5J@5wl4II!G=s zHjJH6myP=S0j!k#8TwU6>=tR0L0uFZFfQb7$8wH3(8`_Td4v5x<=iD8mxEMRjw(L05y9iw~peeG3y*hTCNP5&f@x+RqPDW8IQSHa4pB5SG@nC z2G**@ul*&DfW#Fu>d3IB&)5x!>0neJX*E%cG=TM?eDjTO`apT7ng%phfxMTG$sfRY z=o1re?#JBteK0LjWD~3>gr0qpvje(kLSM9i8T-X9HS&Z3Xnh}bLN+^qh-G{(B~k&A zC+$tzeYQ$+q4Mu9kEcU|d}@Fs^RJr*g#z)tvnxG?{XpWP8{h8V z7id$gUblsSwbO_BW$+asKLfFBRg5ZWga7YNInaz^Q@hz}fpP}VH=S1klI#z(*T!*j zWK?_iU@S))JqMQ2FOnxk)5{!ST)em_VfS624zutULK`66=E@v%5g-lv+3s{9AZxl7 zj?`a3O&>EAjkkb)>tE(k!Y#?0Aoct+L|^PV(F zc<4AYScRugUesg(GP+aG5{F%YF60PD{XNiDR;hAg!jRYnGB`00o~$eXsyYN(HQhvc zt~`+KR$cQ5R@uuSH+A1Tpp7U=7P)!=JxQh)7D)k8i#}l$%e&n+#;RKiu9K&xMk_ zM4mED&{DpOr_t;Hjma35w9^6Egsc4ga|9^-*lhl$3Xr9$$q8j#!70g0U(LBdV@ddA zt0WEdD=ftP5cc+$ZKv*BO$SZBQ$EfI?;BR+b1oU{LtNc?%MZ^A;tub&-Ou04=aY>O zC&7%J_dMI-2Y`Im8j6pi4?Yl`WZ(S_GD?0em)%b=iFEu?rob3&{gCz7V}Kb%<4y1D zj{=!-7Rh&91d21ZIHolM6#Uhbcj!7$h8Xcy?s1^nkEy9@t3baa+K5t1fs(ybh?}r# z1zlvMHZa>Ovglvw{{^db{CR~{Cm>oCqw(r)Afnz-?@a7wrrr&|1TjxP9f0hHiMN#vFEt6&uZ@e&UXO&)1$Ys(|llzJ7akY#t}Jc z#HLaJHCgg=b^8EKGIu}X=m+|v^*dB5ALxpi`}Yn-Accw5r3lQIjE2LKr;)B2EsuEO zntik{hNPgMwVZG5qr$bsiEq3KItFve1mYOe3xJ+hX^1%Cla^D1BfHXJ&=^0_&i}>= z&HLo|umpFhHZ+}Yfc18(v?b;&5sb6C`zYZsW}U!@2{U;MX!{#T>(%*zPF}KaJi-A) zaG7R49c!Vm!kcEX0<@;qYu973BiWI>zjYil@$k<9GjfcA=!sIU7R-b0Xr=eN|KEOQ zGOF;II?TNkvv*vt4rnSZw^Mf-h_BYJknc25^xpNqCwhQn86z&lVqUfOI3)kv3!2Bn z;NCMLK+p5f(w1!inbug!Uc|gIo#r~nmI)g5UsHx;J|Gs6$DzOQzCX2JNd^pq#+hqy z_W_POwGqsoy#!kP-%o2xShc#X)OLGuA03}_zFT2e(K>9R@Pi4)NmB=0{)<=6{G?hY zffXuZ)|GXJ5UlH2y-)nrfOy0hicTy54Kb3ExyhAQ@mNvDV6l<50VeUCqsxKeq^ zA5pc8Fm7PYc3Ia8NH;Lud-u(5Y)e!oAF-nDm&v~~#k_j(u2i$36UNmI@OImL0is?y zDzp3dfc45PQXx0c68=;1*s=ps+B33WfEeg7+lA@GdY~Yu$>t?*AO;Sh8y|3&;&`DnxEm zxwwzO@IE3IQP6nJEC{U7f2;Qx_0HmzIjp)s`mE+C_)kIyr#0$DJ7zu`XL0 zgZ)deU)9_0OjCw|wZGEY_UbPntJg}!r!fzXQ$)_sCVsN7K<1KBkC-_TkA06 z%5y?PUCfPmPU}PDxDVcweLjB_!1^NHk?$9Fn&8`CuWgBe*2&Yq_c-Q>r3)Tw+Mtkbb2FQ{Jum5W(YJjS#8nCRZ4 zt;(QDsQpy-z5(RGcD2rM8OKTAwGXlZdS7aFO9ZXSM{RP(@k~)=&9cVZT6zr7$rvoEX zojNi(9p+-`^}i`%_h83>dc_|NgC71X#p7% zRjs&URZKQN(+s9K2~5aTBbLwzscSrvnMHD>hF31qzP7>6N?))XshTr2r9-bNtn~ zVtSxu8s_BPs$G#hH*b{>THbA^sz2ymwlFrnyA+^hx}GTwP6jIBNR!*`llF^V5|^+- z3GLn3$L@o5%vtcAD(+2U^0a!A9caGw-%qS#zWDi+TEw0Nt;&zcM@|zc#Ycv1F)ECa1KLgSazcBi44TwB!`1u~JyeAJI=1}83RKERqEF=b2q7zTY6Y**DE5mB< z5nNx^`|EF6?t-{vY@75UqzM=-u#VQU7H)SwNEQwrMQ zO4)644WFY=8?36&?*8rF{G_yae;bUm@!>tGMFW&tlMsDe8;JV@kJGh&pvw3u$KBuD zXn(NLVusq6&}Wm?vS9sXy+@}z8YnKs)29-+AUDZ53F~)a;ST-jcF<_Dgy(Vj+<(5*BptO}ch19svYFvB9{{AE8p18nKP>2Y&` z)-9`f^*i<)pKlDxb67KWgP)5DcF-EVqCvt96h>%AzFrB`Zhwtv^%_vEvG+jaZy=5% ztY59vfn*IX-4ERYsxhv-^2ZbCNKbCx@d}`=?mb^b_W}{E{pqy21N0(Lf4K>(yStX% zV&nm6r_|hJd&+?Lo{P9&c@N~J)pzuIDbRhQ;}g~`K&BpMWxP&6^GuO%3+sSdNy>Ty zv7%0JHjI}xf;MTMOZJfo=>0K+x^qfE*Tt`QeLW8(p_UivhC8~mHk$QG2sEd?55~N( zZ`7O5#FOHASyV~+S{8l!aIsI|5PE3t=mX#Hc&c$ezs|k;xnZu1i){C?@*b}3SW;o1 zoLW0_^l>s=x&7g0b9u+#QyLl#o7>U5K53!?zEhik3OuGzj$lfbQ+$ZlEA_&j$(E@0Znu zd3N6)W}!3m_bV+}wX*HL(5C?vdQxZZ;4ZmK2oF)xgElvB{%qA3h);0CECP4#L|5XS zinS_jey*l!KUnph56vIMJpCJ&qDf#38ZT+W`7F$m_MfAPzwUviTJ){n0DIkpXksx{ zHfV8*QP-6)b8b9H?XC0&tz9p3B?nI&qZ3h*O+}#n9bCJ`fmZbtI`N4W(4@GhUP#6O zb$kA1Q^0Y7EsWt*SUvKV)<4hO0_%V=)g41~pvhnQK?0;nec)Yux1bCM<)i**I9WBQ(D@-z^+TMoabI1q>Ji^t-XPp#?M9uI9r8AIiWFm!EAW(z2SF;~R+PRI$W(j*@_;9T#6Ej$SD?2^LaUbvZ z+X=*70WI%y=+~mFK&Kzhu`P`PjfU|qn4baKR^8A18}m=+r{~qqCD8IyO_JxRfI{dT zq#iH-S%RcIcMu zk};l*Ds$QiQp=zzWJ@vjV{TkCG(Q!AccV7r{BIxjq0d#+mvpfE{85;C(kKEm0);$> zTjPMpR`W~EQUefU;M<{rKR~ZvkoY$L1sV-FzrKy9 zm1VombcFAukojjIKDRv^lQ>T8+fY~eeb55UzX@4l?jC=VoGI)ATCRN1)2o|6t$Slq zcHh9Yw%D5Ts1vlWJ#{3T7C;3epGrrSfmBYg+)>>Nlu8@6@RI_<|B9XpWw3Hr;E z@j$QW{LX2H0R;x=4lLjk#pU-UEK@X~4RKJYjtc?NemNEJ{t{3pd3#IIX&|QdL`HW8 zAX)C=uC{U@p$_9O88~B{Va1el8?=SZuN`FeK)2GESZA>+Wct6(W}XC1-u#V6^|T(QLNBUa!Oci|yu?ssI?S7}`W191`iSuw3Piy|P-QPo#-t0Ar_zoK7 zR>U;H7?4Dl-8~)5&P{UK<4<%z3#(^zAG`%*YHM@5Y95GsxK&qq5s329o#S^e12G${ zTbX(T$%M#eGKd2yKRR~lstFKh!kEQdCZL+}X=agLpa5FJx*5xb&_M+#_j5iy`7)V*T5PYiLgeRzRlXPCpx7<$m(_PFKwPnz+{EUoo4A6z=QU z;0bnV-s-E#IhaeybY?Eo4~VrZAp99-yHO0O-EXXg5t4t8eHXymy(i!BZW@sBxQ<2X zIuL=qDG}#8AVnY77oH!0I;>O+pY8)XF+P)`fVCwtkx(6gU10U#TB#Q|SVN}>ig!QD z^s@7~WhCa1w1MNKZ9iE3_f6$bNCA~k+??bJ0Sd00DBOJml3Bx;yeRtAK`}ed?I~Do zZr?d{5BsDN{p*XnZ{_mq+k0ta3akr7KHSeXf$Z*jJE&Lz8QoS+dyn-?+;WbLz6Lb% zvTg1s&wxT}qaW9s0i}QW=n&QpWOzMQ=|mEcr`dZoUG#Wa^E1s0m^qhSN5|rD%|!$? zsz=#i9A%q#g2o!qECbD-t7Je!bL59Z(Bn2l+NZTBK&x5_P9KN{I%4V3xZ(?RmM|h$ z9`n!ZW#;Jn4bb98beu}Q0#Qsw3a+sN#Y%5IJ&rwx&wOqt@-=8YJvp=%FSmy*od!%eV7C)6f(HE1AV1xn~%+ zsIj}V4%i9*Yozmv{{+^f&+4N(XMjYv0nQh0AmiJKY7%r2DzHId)|O z{-VHwI?!58^PJCMM~d5TW+|r&n*OMHoDx=4)UCQ3I@p1K1yk-P?*nVd^zk-nj8=V$ zQR4F-poKE+UCRjq$~qew??D5!KX>ei55~7)Jwas$uk3R{(|Gs$oK#QDwj(ECTqajv z>}f_Iri7y5ibJR!x<}aa7iihH;%OS@WTR%LTUQupL?=x6jo$-_dD1ohW&jeg-f>9Y z0g6!cG3CWP{o*iFcX%&oOUbmVAF+Du1a&6aFi&d)qJMw%0IS#Bg!$T0plV(6h0V`E zrDQYT4xrb3_LvdM-vcekSj1(3*h99E&@UiF{OtwhEAo?Y4dw3D8A*(ibWOK=V{Kr78|UBm$9B zoI^m@C5f)S#+~~e{coM{HfW?d+v|N;WmECyE-j>>1uW4X7|;O9@x8_VwE>9xlYQM^ zteIPhb9W0lK(qWiYQ+@+v{Q1nz-$4?@JEwPEv}S=e1f_P^Zv287GvULu!gM-d0w>x zq8G~hw9f$Oi(%)ZRLpVq5W3S#*zZGx8l%sef>o<}J)UP8$o~Vu)`lU_3Aq=qKXw9z z|21DPIRTWWqL!zIS$sBUZN7mIG%X#kpnCy8dU@U(XRzLqcn$Wj34q4*q3v=k-s5K$ zXWGA?z51t}$h{#v^Ao7J|1*Isu0B7*izL(qwBOENEqNJ089f3rDmY_{qKZuV7ijS* z`O(a{Qr1RezN_P)nNwa-;lqr`jG?@8_7rG#b%KkL7lAAbpVL2F1$y%*nJ@1$(A26y z(E@s0Np`|+(+ISKRFyGK*e8cGZ>ST!0?ldZ^WLx6X@p#S_0JpwO<&f=?7ul6n`bZn zm|&zmUbFFqD1fHg@1`k$G0Jlnt2s`($lA-&9Ex2Np|$t_rS<3OZp%ji&lG-Cvj@9$cIY7xAbL|=F)(b8?iCa4tifZd&t{CC7s_S?%IoZ5T!EE=+U=SIu#OtJmFVG#Xyhs*Hios8$UR)@K@8T7LiQU< zF+j81cOu+|fK;sGV~9C`NK0g0kL~~sNE&c-U{ovj6;T=Uf@Xf9kFyJNNbh?RcVrD{ z?`T$ici(}tVJ)00=m}b{eub(#u0H7(d6}R#Xx4L=u5w{E3HRzrh**F|y{Dz{C+6wF zrSObNN6>O6M|`HSI|geH-iXHv`0inU_;W2-Y197RS;rlD)UVbb!WhNIcaQvR2J6AO zFLE>SK(8pbwMqPd9tGuu5aH<}S{Aw?VFel~*M?AaBT$*5WZ<(SK*w@ZPB~z8Zzz`C ztV;v!CBIdAK`Bs?QOPHNJPrC;BjS58zU;@Zmi3^Y=XGBzp22vqeRulRa~5WNtfOU# zQU|INu?{lBsx7Qakv^dV8j~%FybyYWUH*@hhX`nGZ}?PYB!SYhj9<>C1DPlLRm@|? zj)+^HId9|o z_BsTcIWvQHxb_79nQfpagqoQLu?F7}UaphDJavn2F;lSwD|7raiGJpB}`c76-K{$GGPpW9Vi;;BJR*Z0s5qd-=cE5(NAxsKl#m9zse?m^mv zXH^)5`)&pQ(dmPBhA!)4m;jJQ+qH3f51?mk3Mx9mKp{{1qmxpAe0yR}x#5l!$j3`* z@$}2Nt;*StR~dOT6Zs5lA;-UrmbDFL^uAGLI`a;Q;)FEOYkwf#o_ftJ3ZU`_J`Egy zfo`;L(HrB8mMJEdn>Rsw_N3yp#5tf7J4XCtSApJK52Tp61N6PmNWvusXxb%;#_1YR z%=uOF-Twn+3bxD|DF-dSI;Z^mbs#-%eF;B&W?1-Xz3}HAXw;hRc~9nnCi7pjJH!E9 zH9c_AzY1u@O6b1d3Xl$sfMm`Upgr*y4n3L%S|SU38;l;0s=CZr9uAte)?vF2tVY7| zb!9q?Z*?felr1Y*hcb?lp2R3j9eb2`ZVWUcm(E}IIIgxkm0K0-&BOD#@E^=8$_$n< z>Tww7dO4{?Bmszjv+D3WtlH4Z>PP|1#1qjJFR50+DiQD|{0%kGxN_pnuOvt;+;%Bz zK#CUZr`r~QVj{x7gyG!kir$jAKG0eVW~iT!011yX=~iG)lIFQG_y0SP{>5!`RD|a^ zQ2dp}qHE}TqWgjM9C+fCX@(s5RSDLD&q6=D>?Av{yWqdqay^wo5TTN^{rmuGx!gPa4ECk6rQW)#IEPJ--1?8 ztMJ4O_g3E-l)Lc)H2n@XCj<1ov^e>}BlzskhIunbnAeP^3)7y}uZ zx@%w#RJt&6STPHTh;-K78dn;n6h}RVwK^!&G56XQtof-6^_@mQ=0wU=ThTxY(w+OP zv7)*}sqfbv1MQD%s_GDW_oai8&4wvxrKW-PCVPOY`^g+UaHabDg9eyb@G8D^G|HIS z1I9C*higHTZCcbxy#;h&upoF$35ZyDHSEhKP(!Zy?-X3KddYUf?%ySCZ01z;&Vf~c zo#jZj50H$;z<#Sq=D7Ld&QtQ9R6bk>?PbJe z&kcM6V5?DCIim?0HNlFp>QkVa^dnd9V{W9`e)~Jo30kv2zXW|h(09MwYvg)B%f>gY zBk*~{T0d0bC`M~3_{j8I8n8M!6Tcl~2TE*wYZ{NWaIf&RsRHIC`J?7bL+A}36>hra zd>Gg7Ej6h61V~7-ee0Makp91Su>Y+FQuHO*j{XG1N!Ww&ktgMN?@*S%wemM^FX?SFHAq&0}{2{oY=(fGqpZ8oq|^;)UF>MCI@SP zZR+uZn3KMuVS4=-52B*K?tYVCH6qGyzLNyxqe49sFbH&1Z;yaJt}4XT(l{EgS1n*S zy!*=zt)0X(D|PxC2* zX0Rail@ue$YEt>14f^T^>8+ahRj@V$`+roxjCDUg^mPo!tw@9(I{yKzPdHcJN3sEh zmww~b#&DhcaojlD1fW5KKj$}Ss%#dPI{8v5KvR0z4`9@%*l`Rr}2q`c8{L5 zK>s69La+^&@FO60p9gHa--YUNz8ifQv$M;Z!n9=+XWZAmcnNp@YQD&K_xGm*X7$v6 z{sk-7g(4=|V?cg)>t89p1A0ppU;Y{E{LMm~*zVsFiYbheM`plk?_?ID-UakNk$HUg z6Vt!mUr$-I2JOs;^somzK&ofTs+TSUS^0LTfBy|+d!zl9tsRiSgLuoplUu1fQ6?%5_r@}VgEw<*)|G)3t zdpC4c5%-(!y?M1x0%r8~k4P(_cVC#XkdX0#_Pt0YiPsqD(D^q)dYGrf^Jda*sM#d) zU&wn8R%uD~{cc=9p_!jGZSah``DLPi_dPMDUW(pH+hA3Qrj7iH{mO(x-B~*pG+IxV znkQ0t70!K(*Asw7WWqme9Rf1AQ$Y}o`9df->cxaJLgFO^6QXd&7>}lM8PE#f8YAl- zpqXG&fl76t@xksZwwO8l>Gv8{o(GNS)=487e0u1JCXBmP4BDm}jmZ~XAT2QiX>k*v zzEm}f3iMj1?mJ@N4A6Ee>@AM}0g6#5AzsD1P1;{eSvCNT$NKQe)&ZczVo|D9Iv^=^ z=L;^FVHrv7!O8giqC{t!YLENXm5*bui-2(#JO-SzRDtOJW-xp}?V9M>_iwTG``@z! zrQnrCjVFisgJ4{tqafvH+(+%_sWw)6(8LAgUO0XNGT4giziLLe@JCXv_A zfrd=|g7;wGuoWxU%Mk=E*VI4Bhz;mNKsm?mul7U)C-=l-ZlwBub4KlMq0+O_x0d~E?zpd#Cu-~<|9BEG221Qh)7$6yKWmmo3S+)N&{Y`bqvd-Q=18OoV7bhGC8X%$%l6VL7U#(4RJ1@{d4-V$peJYuOIH z0=u6p?VZXqRK&YoKjKnOp6?Kg@ND{9H#hXe@rS>}~geIA^<;GW>w1j*|2w;A!<` zzkyda=H#zI>5CV!qSOu?n7e^lJpJ*SYgZY}a2?6nc{c{6n)~(Hr^7%YjvwzR1SX$h2_<&t+?+aB~mJ+bWyl751HVCv#@|X8QGf@4HnS&14C!6&;>~}wvQ%-c^ zlae)94Q7f)ui~jOPI=(G*9d4l3?lc{ih-UhKF(gnZs8?LWp(@lXnxa`#=mjr@5Q5^ zOJm%+xW;eR?+2^eKGh;6%+9irWuL0B;YHg)q=XxC2)*!D1TES_hZ*F+EfX_GH%wk4VJz(sq z&jM>pGwaGj^vf*ITYp2WUur>%UvB6>_iIik6G&kkcSTmeF?LMCQgLqA9?;a!k`&0i z1~MpU3kx&^`YuM$(Nhg{IaQVP7y9ZL(VO?Cc;7Wi%Kb9lU`-j16ROPzdaxZ+wUY$o z9`uy&u?UdJeUEQ+BtU(pB3ETE0>zG$r1q2pY2JRPj zHHyUx*ad`qgFVh|f<|IceMf8w=*!~vE3-R5{af6WrFlT%1@+atG0M6eu=V{QXgMSt z1@6f}d0raZXNG}>?uxjc$M`Od*-N;of!1bpktFa3lcp<_sf-6<|-6gq%dlRA_3Q)&>sMw z?Cah zoR%|TJPDcx&EGQ}0zf{V*M01rfUN36>Ro?zX2>n1~pc%Ce#+r7FI`Ha0MbKiN(_9)_19I-&>CqeldQ(Jsu@@sv zFe9CBjB6RuxR|l~ZK4FDMrJx^7-t{yX}uGD@5v*XAVLUQb6cp@Q`APU8_a&kCk2fd zDzjs_`ewfda(!+X$2Qh{^(j^!`P7w5YA&GhrZgCJ-v(kH?PWMc3*(N=#2$iifh zt`7H`y=9U?R|}dCgRS5RB%R5p`?bD-cDeR5t7kaSHyI}eY3x_@(YbR+xIp_GulP2L z7|72}`qlz^{0}=%+13}(zB*9wzQ(gmUYtFp4ZFALD@D#H4q)|Q?ld=X1L93NW&B1M z==90tSQY~yLe>5JZ?N9lJ~%qO#Y`L%%<*Fi1*`rHeVjJtiv*p)zTNi;R?qEoFT(z3 zTo`mmXCI6Uc6Mueh4$Tr~q|t_T68?j8NFy z!v4G;wDW#5H_fAfJ{&TS`VYIAXxA<4CXBv;?(3p^DK<(L=B|YsC&|VDd8j^+I?4ky zd?J$T+Bu*fMp@_h8-aXFLYaAf0j<0<+xYK4Aldiy-OsRtIL&XZ#Vdd|d2YU3AJ5xl-nXgyhYIRqqnT368*cPSyhzP;Lb=?0AkaZYFU1$= zakAhuJG=k(%X*|`OK=#hyb)x_3h+!WwC!)P$4cQPvihWtxjT>`>-FRTjC)(<%1!tR zDCGU9wB~D|%}>)s-_S$$M5pM)v5r`#dl^S#!TN5omvZU)lVohMn5%Kchy|46wSEXZs(-oP0|l<-?BAvN=zf7>7M)X-X%0 zm;}a2D*HF*h5}vno~#bTetO-re0mA1_N!{{kViUL>3l^#{zNTNFgt+xIB5K-uV{xb zi>XNNo0*e>cJ}q$ldC&Gg@ZZXV?00)Z0>c`<5}jE!sSGdevT<`+_9_!Yj?uTSv%~p zvu|g2x+OqkNbB=2#=JM7Jg2k!7p%xH@@M|Nhvc7CfROGZBd)5qI7lxH{j9DKb?L$# zuo@H6M3S)qWelJB&^rsnLw<5}4`%x~x1ZBdR?sSV`j~e=iRw{yukZU?&<@r)*-85W zU3lXfa*-d1^)Tgj8$RoanTEN?bb@9+BX~v?pO(($Mkc>I0-A{CYS8Yld>S-yGd{=r ziqFyocg2JCvz}-^sTt7rt-1+!>~J0<{`-!+0L?c4?tS>LlYf8Dle(BHi&d-5`q=mH z7HCJ<{=1clD-f)+Z@+}mN+mf?Pqhrz%Y+= z&>>5yU`{EZjOXkFjOeRJf1^7I)?JXuT18GWfmWY+i#9|JsD#YtnjrR#Bc&}`ftZseCdmLs%2;ZE5U!7RI^pCKjQNd{G?9A>V0H32ptFW~)q0a~@{1s7 z#b!DlCW}Da9y;G9YJixoS4CPG0sTDGwk7u*DDaqT(@$a``m$8{-M2vypYBh5i@94m z%M%rK6RgAq&B6oNuWXW;1UbS$dsQW{OoCVG_?YsG1Y_R#Ma*+?60Ek-XWkHDMwF9W zu=sHww7v6_l*J!`-bEae+5JE1&T{SE46J?TM|T(1F-GEM@zueGFs@*BoOTLNwXsox z)^{nOnX?O~#iBR%ea|2C_ybxBQ&2KtJaya=nRQBA$ zBzyjs0<0PTKC`&y40Oa$)QHC%sAZNuhX>D@XUsIqRq5+{1{vm9sOLx0eWB;{BtQi0egA3eE`bDg)O zNG1+|Ruyr%&jxGZd8Lcga5re0eNt_HSPSL9A5f(q22J+E`ibw@9fL-HGn2W2b}eK2 z!wBZfg9wW%!ywQkBXxa^CxEyQs*+J213Fi5aQ&+?P?=%3lq){<{cZ5)5WWFg&zak! z)3~a7wx9Bb<)EE@&ZFdr`|VvnoO^xZwIP~b#2J~*KtxfIx zQLtwAeWnV=vto1ccunn3(27g12u>UUN^0r3JC5BfT#41)aTK&B(MQ%fvOptFEbF0i zK$D%s7vr%1%^stoSHZ}5ovSy$h`S^?*D0~K8I;S_ZTa+zT?WV#DfU;ZW56SGde z^uR1zJZOS01|&N2*kqt9MM3*iFb{I`&C{HGKvS~*TegP%`Q%=eup{WJjSmsy zG#JbB$*_ozc&^^N5wk6O24-X_st{4*TvZ`kUly#|_{_QIU!uXvMLFlV``6~$&o0FM z+@M9Al#BCu1!PcSOL_{gaxd?erZ@U!#@BJ+g9TX6_l2Yh69GA;AO2o24^*iW60H0N z=-LA9*;)-CgTo8myT7WD`}Kj~FEY?*S7q348UeNXnQk9d0P-z!=4bH&VpEFsIf?(z z;5KxQZ!82f)2A9#HR${LjhR+WtbjfKsZW^w!8*mTmqY=tJbG^6gaV!)>x?~>m(0M* zKus@ny#mPQ$;nHHhk-r>H`{k$W@nxf`ayxQ{5mOctCbn7JvTTHy?qI!s~MC?Bnjjk zPyRq}3n<_UdvpLb5aoCP<1BWX=;gCDrC1;BWFyD(Ho!_;EU=P^eLTCgayZr+*<=}iRhKn?z;|l&a|h85`yM0)Z#+%04TVX&07j{L)eV7-x0f%zhQ;d zCCql}C(rB+(SP3;-#8vFgBd)3FCMhP8hoJ@#g=dtG@@71?l(a@Y{83)F`3yWa~;SuIzY#*SoiO~-FtAFL53S@mye zft=UH-nGR734A`m6Y&+u|(EKMdd9mjVi^W^6Sc0a65DCN@%(6#)t+C+{l<)0IFYr%j4*a)mL?UTrrQUL z4|V}D$ZqJSYy!32T`keUJavC_v(gf4W{@}L34J(u_`?5 zg~y|?x{cZ5Z<63uYWpeTqMBgb{WC*>9O%=>79`VAc-G#uVy*9_1nd5ocN(X$x}Rq~ zla^5fEi@pj&0Q7fSC(|^40<=;LATxU5oqBImU{2M06qIl@{ZjB=)j*z3qdZR;8Hym z>QSKc+sf_jeLxp!#QGVGfx`dlm_B9&Dma-iYQYR->M6u%bRDSfWqHILM&Y+|8_$FR zXekbk3B!Uw+(f5njV=R~X4rnYi`gVM5bWWMKHVSp<5&%Lbf-k|m7mxhV=~)*Pbk9- zVN&->8DgOF{MQn%%793yJiaiR0eM-5iZ-nR{l|UeP#1c4!9-Gd5>M09x@snGo`aR= z)-mo`%!47V7WP=o1NWAt>!FyFg8vO1U{iu|2@V%#)(-$ZNKuI;#Z3G?+T5**x$)(w zTiEV5;3*C(zR)3naVBLQuaD9Kake#$y~ECR>c|&oBkV5}#Vx(25&wb*3_wH6 z-P^|vfi}2$vJ7VF|&b*Kj@F;`%v0M~bb`salR zY0&6r0z1SrfX?%)vG{cZeL0;rD02@;F)uYV9-mbl&)Nl@Ll2$skrs2Y1uH>%`6u=k zAkUf^Q4PFrWh5PC`V-L3pD>C%7XT!DsV?z4=IOE@gBI-&Xq?ZBUEW|nuniRd&Mgia zM@s=uusu+Q#?Sm>>~-#&Rh-;5pecIasO3EcZ*X4XYYD6Va=3& zQy{VX3)*Fc+-FH>4g7HRgtiW7Rs4U(51@B%Y)l?VA_Gm;uK0!y?&#*rrT5Glpb1|i zYWjey8q4S7aKy~9ER>ct{Q*|z*W5`rFfu+1xlbkWS+z1YX zamR)|x@a(}y@qQ~dXR|3s+;BUxz1ifzccF!jMEwQ4ll;qG94RV&W#4GSV<`OBSxWr zvE6_fuUDdH^7-ipu-X;It~;ayeez#1kd^{+?B>?>z^-?RIx~mQ7qp%v)5gj%Am&si zR|V`5)MlIMW+9*jRTK^mUIKEfrJUrY1Uf>`=I2@g^yMlelN+x2YV5YS7mlNMim%O1 z0;^)xR9EhzA)W8-XIh|{#o5O+mjEqN z9tl+<0Af>oZ{K(v=)Z;+19@+Nm?{b{CSi}LpE*gSf^{h=qJ8CtBUpFDOsOO=4+7md z`8&Ko(-QC*OvLMvZeJ3%F9I#Y1c2`B;i!pt2^5!P{dxCywHSzlxRfq}_9)^qZ#mx0me7o<4R?8O=%jR; zGgz0Z>0gOl09x3wJ=wbhRJu}icPA2vbaw1jNDOM1R*3(@UgE|(RXB_*ApDr7(t&+r z`r>vThZ>AqigT%7_5rGoeQ2HW4k*%?`?j4gN zlF+uUO#-`_?1q7#5JtvZ^O2*O5saf}J~m5)d8+bShUv{~(i!&g(cpRHeZn`NCmF_-e`GV&NCfgdC+8!9tMa_P^)v>x?m5Tj zpT)rHSoOh-s20fb*~JRiDWLvvxwnTfT8SZM+=qUF_U>fs!Z_wt$o_h-|L8%>JDBBr z2X}twyZHB-9MGISU)ox#0u{dG5}U)Ps%F_MC$Fu6_99^CBX14R_2F@gcI;u>DrPl~ z*uB@iJ`$~xg7wG;+kvlkK)hr(O{=lutDFNZ?Jyo=6?`ii=pl*e9{+e;m4}adzo#b5 z@Ga!~WR4!HctfP>Aq|=;W0K}i7NF)9K1~|jZ*uJ9e*Uwdd5AG-MS24*Ni*MijB`CG zO8Jv{L7S42_fhr-`m9bRZh+O}`rOR<$1TvN&AsUcFfvAOCCye(f_B@^R`R(dP!5Iq zN1Xtm(@Hc7{D*)_K8W0ND+ZFH$U5oo02D3#X{7rw(0yj#rRx~gJwZ1vH9g(a&8$ zlaAy1b_y%h&35FiGv;$t%TW)S5U|#)@lZ{+199%eeiJ~ygkN|oP~isJ6sy14ZGIrG z>5aRdsQKxIDX`%_xL&FVyJO}sCYDDiqc^r3FP4pCr6k-hVz85gxr^!+k~)k)rQ!qI zC73z95$4*v@3C2nQus{s6Ra9`nL;kzK#7|tqPqow*wZp*1aUZ-*S&@65 zf%UU#*~MVY&f7^3{Xh4E=E^#2aNsGB1FcW;N-EI!>cSc~dX4@EX~+;}iP9Wp+Fe|g zn8?oZ{BIby=(DQ-$pT1jfcoEGB7mB*Z&ih#^*jaTy@0wq$^eSGo==oPiLX%(JAgCXAy{M|u|?GJf#5AUY0NZmz>wZJ;t z&m;K~tlm?S4)l26m(`~q88@KjI=7gOHO(DgG2e_C8`I{&LFHgQFr(2-OnwFPxx|4|J(4te?V?+cr18cY(O1bDN_PRQk2RG#z6t>mzb3tW;w6yl-{ZcC z|A2J9+x;}bk$s*AkdfR6?Ex{D#q3X@wK7_Zz1X9hZi-^n8?=*w9`bvy14*2_+v`IL zw3MdleFLw-Qj-(8jvkr~I^jY1{gCSYb5H5GpdF`YHHBLu(7)E~&>2~v+Sf-O`M(7+ zz9D8#d=aSfo$t~Y?W z(H68jMEpTUoj{4%Ca%x$tPt2vUP!==5ixwNeA*7Z|wupxw=oo8}ItKj4B!HhCrJuKOb*$3Mf12;%pqA zOf$oOXfqo?J2Pvb>WpWAs^At~6Xrty`^pjvtoJ9Rsow-qLAzjC>sbn{4BkB&!~&Sp zV%l+LNA$sJxp&)dj1}lZ&+PFy+$}27gqRP1K}$|&{6qM>Sn}`J5LY+Qyuu~lW(@X+H|H?oRbF7e(?#lIc=aIi-!BWopZt-YA^gKGmcsRObbTzHbunH}Z1h9`;1l=mnF?k_t}=CA^KBZ#$owH0fz);8nYh z>v;SA4L{+3zp{RnY%?8&cI*`?z6v=&sh<7ardT&*WehD$v0hnJf3@7eDs}w1awcyb zw96!B_qM?d;Hh)GZGjOhVkh*32eVP%B(y*udpz9Ir8wpcJw$~TGzIX~tvvhb;WS=N zEa5(d5Jt|pDesl6-_Y)=a}UQ`tSU)1^nx!idoC0yRF@@!^<;x?eJzgMO&<_q+zgu2 zyQ5?MPl4QNlP&x%0a+a090^5_cbpToGw1^CU@r3<;TzA_C7x`usM%63^q(~Y>(v8a zlnHPB4L6CqG@cLI5Ka2AT^PH?hn^qc{0G|ObY&C5|9)k>*gC(7e%?s^;@9sE)`r3G zoT-mM&llCK-{7qJl{of>VTN9FJnuWn4%Sym)~!GJfPN;*hPR=|E&A{5F69BO-%+l! z^$gI{@*?Gl9U!LhZ&EjlfJ$zvPWIz@*(If@BQg%!TJ$~V8*Mr_St(0Wj|F8_yBENNm1FOZA zYOZGbJkb9A?iu`y`4+<9YT<`jo8)8uB_#{2`6FlCw~B#^Os*td#5;hHudFwe4}rE` zLAh;-+4EBQ1*sfb4I*<#C~z*K{9S>C6VT4~^S)yLBp`7I1x?AbK+M}$|W*Czk4-yP-Ujb{ux%~|SIKO*Ar#VTn z$3yeiquRk>wR+4vbnF8V-yW9klNk4b>)vK%7zbXLmsyK(r%%LW5`_yuJNjUj9SR{F z`68Lw238;0)xT+;SOv6?FOw0z1+^n%zn_K`U0v|;x(#9Edqdk&#LzdbSS&UXYohMq z+e$1L*=6x2A&lskjdHUb7rgVO$vJM2gF9{iNPF1@bAfx`GmQ@oFv^b{C(SHBprdI{ zWA8VC8c0_CwK1b^wEg?5s{q<)cR_Kx9gxcXfT&WeFO{DrnvJPIdlQ@DY2E>J%0<$j z8L2`3UOG`cXtA^1BeWR1Bix&g$J0S`RhiHHhJR)4;#XNC+yQJA)O!EK$SE&4d@CDw zfl7)lfC9&hkEEUOt%1G)@x9RmKimK4JzDMxnm>6i3paYmyf;YQ-vKm1(cDWaD5x)TA1I)NJtd(MNIJuW%^h=LUFDbTW%PlOm*?fX z;$W4ew$+WsdP*fPVcdyx-s}0vH1ri%|DNan@E2nv^yPB_ZoD(HO_;f%)(zHcszStK z13&=@&zwDf0GS*2-XT2Kk9hF)_a~U~%r)gk`533}uh^{hmY`j59c|fVoF7{*>CfH3#Fc7*i1Xs>5{4kQmqI(CxNw_yY9cx}N-$R40(a!9S z`UqrUwIIPJ1N7>SKF^JPKyz|4$8z5T-MT6|{q8zYOS93xZ&5%DHyLg>{RG;5Pj8;^ zmT1w7)y4^Zpv_ZiifW<%+8?*JGTVdpNHOzFD4qcdO6FvK4?v54S?KkX6v&GB=nMx-W`gaes z+dtG(?u0&QkEJcxjgjcfnZ3S^v&x|#_(p?dP(Gj}hkG<^)SB#94So9p{6}SnfoN~^ zcQi`_#ayCnq&5Zm>AdIsC9D>bxpF;+@oMYcWF~WtV9j=9d?@}EsK)o`p)ew#QajbY z;0++M8^iDT4*>}{9lEFM5A^28i{dj_OZd5ea&Sz7X1zCf?v5c)ZQ}Yd_q{-UBzb0v zsz8Bz4x|TK02POu`r{A~UFe!U>ut$!Tg4j4);OQ!iZELHq8jA{1E; zBvsc`bL1*eTjA%2VVF_&*T396@DwyzPS#XoGob(8Q{BmdCqxs^J{Jlv(8e@<^Sp2! zBA0munNmU9a`N|=Pz194Iu*kf4fN&t*a=|+pt7xu$k8$&S&r{tI%R-XW~V#mF!$ey z>3(j-NUUYg3(5HeR?ecx?Q?lR=5L;Mk>3MKTU}8-j4|%BnE9sP4m9HUiG9@aKnud! zHd)6|vwQSIoCYYMbOepoM>UTgt6>2&5^*JmJ;P8*vx^yIm8iICfCs6{oBGiU-CJhKmvz-a32 zpHlyV8MU`JjkW&?STipC3*MS(r$qDtCE7km*YTh2X%Ay4*-2* ze5(0^8z|k*G9fzzNSr~Gj2>qi>T)Nvc^7E@>0u5bj6jnSk`+@JiR!6jHk!D$haSo$ z2MWRZu&a|V0yFQxhl@IeQ=lbuh--gu15&%8nq4sj6rRF$xEAAzRNOYW?L27WR1q4A zII{bmb?yjj(ENSm94YI7idg+A4&r#G-yYg*gn?ETb9Z9=56~^4mzMfiOD3+k9$3cx zh_Mn+OL_=augTMQ6UKm6Ndp(WF99|BR~0!K1I-Px)sJ8W-Z{FpcnqrmjenNc+7+;- z{TRCUkqYSU->ptdta?F82C$JTmOl9j|D|zT>Z`->Zmn^zAr4g60J~6 zi)rcha|Vs-{kbw#jAGR#+eiwGY&GF8WD7)KW&S6uG8YQ8bZX-7G0YyS_-UWdPN127 z^7ZTR1o{)=nnLv^1MC zFpSx~sh{MqiZ$`1XztfDlwehDmJF1^jJo>O)l$F)w5$tCqj5$+D>5=CE@K9C|8+Vk zfPT*Vx7pjc0oHHa`D|}AfV4vY)RCfxHr|TeRX{7f-^|l-jJgf#Mc#R=CGMq^^(%$Y zqfmoEmGD%C%u4a9a`cd&*M~8pcVK;&6hw0$WBglnVu*bXXz3iLE19@nFP)K>!5E!$ z!uHQBS-?uPYN1PuQEXSEcGOrDv|AO+iliJsGK;EYDPMqmTK4YwwhffI?(4vVQ6lW} z@#Sw7&{oo`Lr?YtU8H4=lidMQQDY3tM&H*z)>=_00L?0}fMdQI$ekjKNK*@F{j3l< z*IuBY-I?7D0ze);=6RZ(Kn(u1OREQgqB0eFnKXfT+}A|Ou-#M5VqqR~&?=+Lclhmr z@=x2XnKJ-w)%}xxp9|!oxo`a%W`(CO?Qetkp!MjCvUG9*k$jJ8H^lsP$^MaEhn}?k z(k;S)v;W4UzINmsw2N`&iy(Xoo6j+%Cx0C@x{qDE?GFKss9#Y0nF%zp>*J}Xj6m;9 zZZVE70mYvA^Jf%u^`vf1P9@eH4yx~$3+{o{Oz*GFSO(CsKkO`=3P9br862#S0A;gB zYZKmZw4RsQYL0PgQ+ba|5i_OW!|R{UnCJ7Q0}jkssW+r>k@{w#} zP=Xb-c;7jX8G4}EQPEGQgMof8FSv!FpA)K2Fxo}KhYuv0v z?qEI4E_0Cf8PGZ6g3V$Xpt;v2;suyJ^JEM~n>C=FWx1?nOASPOX)Bu$*~e~wG}!$Z zv&;mcYzc`0wf>sHn$%mA~-=(O_d$AGtrs_I(cx__Cyf@NuBJFKm7|xt3h%p4s)S%yLitnyh9lwu@P*-Q^PR7`_Se^Xs7De z8hZo1TWNFg&3~cspQe+;)G34~d%%k#16rK3X_8IS_-(Kb)cEfBb^?XI8Zt{qulYC~ zODU%ZO;1QlvCA6hRGM1bonD}-?H%%kOF)J-pXmv2po^fZ7$oBZO;pI$k{#ppXZB=S zlnrQK_1BQ4T0Te%ovw9XiH*~>Yo3A7Ccx%Kqv&PE)L_hgkQ!v?3ye;n+jUhrgm`< zX6;~-q07@hpc&AXPO;-$uC96g9q9pWttC1;xDiOb#LL^d7079~Rc8lAafOJr!u(#) zrb{c-B+)MibLvU-G3ui9M@)`m&1vZl%1m&CcJ_iKR5G~x>Z^~Xu3%PF{xX!H$B`of z*-CC*z;^yGw)=1$e?P??eG?0s%8MUr16U`G8dY@Fu7k!g{qaVe5Riv6*O$Y3sNFNF zI*p#}9ve7njN_d-{jAmst7x|nD=$0OaWFMwz9Y5 zSoO$eoJJ1dE)1{-?RR7bYgZ=yh$i02(i=SVT0veyW8fH)dWO!gwCD$LQ zUEmC##$TYn0zwtD`+yvnVyUJ-15NA7y4d3>G}BN$%jW@F*M6$}bK^j9PVSdvIDnjk zDg&Qmk4D#|pUs%lFO!I`k|}`o*eRxhiguvgHU34d=YhuZ)2byf#@&DN7N_IcqfK%v zNCRVBdhhY#M(pA8w=OVG99V8$XA*@`lx0O^$Myr6ttOjiJ_6b>@c8Y$ z2DFD=V!#3Yd{aKy{~lh0=b~s}lpR=y^reKUF|xg-c5m@_ffg6K5@yr{6f&qIGmm%X zbB9he5uOwHLr5+5^%z*W)k{+j;m%NMQ?nmNkEaE2hQ|(q_4~VLKUYYAPT1xT5Z*y% z88)a+_a3zSvQLYGJ^`J+pl6uq4phVKt^A=7XiYAZw3-R%PTS73ERLsgH2K+V5@@D; zHm|9U0Uh)z-#w1n2TQfZK=j60 z5c)uNlre!O0owVDY_sOL0?7#PHzvGQyjDY&p9Q`4p8Hmk4W8nQ8TUp=wxOMpt-gF4 zC6HAgY2YwM&TY2Jj&6*DR|}tHTgAc3@nN|ky%R`GPI>mU3{Y@#J`p>{Btsx|>x&nl z6>2|JBRq9O^r+ioE!@>vFQbbphr!B~|6;Gl4WMT)@29@P*<1R0QZna&wpX_2sO&1x zUke$RItidJj%vHKxPX4~oLcs{2&7r8@|=DNC~z^}R0h5AGMKfhL>sh*gUbVLqd?`p z!msP_+=>|~qOHZ+bpF?r(JghbzURK|F75&}A4sWQ{v9Z@IqcMYh0r)HJj+J~TB_wA2_K0pLTPo15GZd>jE8SfT8{*{p)nlevflC z-ocDI{WM_R2V>kP)co&pta?5V0!VYPsw`1Vy#I=k_`|OAqZ4|A{^h`xbo?7a;(T>g zwl$1L&EvtjC<#QC`r)Y&#zwfuYbfb!P&3|{|lasT~VJ+8d^|4&WSnzJT+IzwC1#@&rR7<%?tCYlb~o%B=~ zE@1##xFW2)aulexh;m;aW_%`@bVyeYXd6~aj3U@0lsrc8sRd~6y;WNb=YbBrV!A(x zGiao?A%BkhrqaYF8jSZ>Un{6w4q|Q3rYyU^cmjH?h&Fv7{6EugUW1dnu>LL8B{!9z zhg?MB4XzDCJJZ_D!>X7)Z#4c|3}9@KGMEORMqlN4(38C8gm!OVvC0$w0xAwAC(Xuc z@g|z6&ov4(Z{Fo^QkWm1`KUsR!naqGB z&W9>j;3$%UiqCUxK`S)8`|%KF1!vb$Q6Y>C3+gLj>9Sz`bI?xPo(*Wir(WzdX6+w| zec2arrrmbJ-aaW{-FnER`?wM4h)`{EYci1I96h@QUhUD?!Z}(w(E17=7ZTnNOR+5K z9rqlxCR%ZkqCB8CjTM_eG0(3K+>yDA)mCJbvCR%WzVqU#FyA|9XZY5@-m(;^JN)u2 zFP<8abr*N>FN3BvO)Wrpk2d?z*44oX&_ct>Ka=(Y$qUQO%y|PP3SRK&z6caiW7|ce z2z2~>?XKLvK=)Iw$Nw${>J5&ZoWSTjXJ+Qx#SNP4<$`Cfw}D={woWZ$guOJIj2w#u z?UM7Q*s3a^lV!)!x{83TA` z?6qa=YuUaodK*V(S``_b5CH2}I-;2S=*i-4f^V+0SOg(2WUOFLdU}^fYf&kezkrA zGS?7u`8^C&k>vg0!D%2ts-Lcx1c3@Wza7lN2qRHeo8fx`T5}3hrg0q5__O<`^9F!k zo?={1&ICHNCGd{$);uq&c@75L-ze7v(=Oa!ry4^JajX{Ng^8a&U?tqUtN-2gQ_y#) z-dJMjGLW?Nde+GVpv57#&YJ;1{gsL@)BAx=1_agT{y%<4}F?zGM80xRl+pyg!A(L`c3<2rPxp}-0>o79~GJ9!{VKle5r zjOPc9tB+(0K)b>CXRqrb(4iBmV-GP77=Fc`olpRcg*bjAB@u||L$A@@WT4+en#06+ z2DGbKrV&18FpMFun#Ia6qsz7_X9Mk2h3LqCDg!ON5P1?+0z|EIk9!|xiYkSsuevH| zo-a0^HY;PFcaX3(sEl(ODHuMu0+ zNsF+6mJ|_c#_Q11)Imh*7&jAe@XcBc{G?BdfQy4o3+OaXZ6r&$NWuMjih0(j^UJA~=F`&s_zR&s_ z*U{#kzWW|}QoZ2s;ss-{dQcr@AUvDE)o}1;)dA2hrxhO}y$bYJ|FPR{O`s6zOVUzU z1$cfJ->}17=npiN2wnlJb@cqKD@LO8+Fn&BoN2>cY|pSWSk3=&i+Evnb57B}TgCc! z+oB}qZZTL(>a2>{q=1%4PnE}91Tto-*mr0e=z2dnu{6e?1jEzd;X%+EPwaPd!>rx) z(&)?(J!onko<4VzfXWU2`!RhM&$qZh zd5s*rnyOb$bwMVy+bq6$kN-1J%5gJ`^b{Z^3f~>ayv%$>Mm)C512DgCa)&g_d>hHZL+<* zlt9mY1e^%pGAhs5wB_9ZjsIYUtYtoskj76czAT`~)7DmLSPv%0^{vRJKs#g;ZuSpP z=P5xW(vnx8oghB-ljR|hQ=G0=8G7x=oxGl7Sj`H3Cx!QMfi*=!$bkc6NIr#uDl!Z- zy2IrfBhP@e1qF01u!7`On(z|dPm<-L-+vcpHK6%pX{Y`R-onRGZaavQN5U?-@zFqoSN)2_5$l!_fals+;j4#7F#be(9CtMcg0{7cd#q&XSy26XbOMq~d5kja7N)SMC^Ya3^ox*Z^i;iocer-6!PZd>Q!rx1M6 zDz|73gI3M#Nvfs+lua|7Y|alPcixdTOBJZ~IMJL4o-TYD9o!ihyI)CP>e=B8q)95+ z>u^8bWa=GEMk~w9F#eq5(6>0_?DHD*WbDvW+C69$zbH(tk3BB@qi%38gm$78l+O%) z0X<2Z`zC|=##SN!gc0+1yOsAwJv&%$6;e-=V3jKU-5kBC51QkxYrf^^1BGj<@`AOX z&FIaC1>oNmw@j+X;;@D#?BDhZz_~=USQW%#B%V*$Z7ISFJ!HgvRS4fcT&V9l8;5i0 zKc~A$xNA=0xNA!IKg0V}BD2r$L65+j-uxUGW8NDLbk*R*O4B)@i+P95+Oe7`RF8?a41)Gp za=$L&TXVJ@zXx)ypef4`z0K$Vn(4TEnBNAd_KN%!w=E#MZKBUExPuEKpb<=Wk#UN^kjB3^lpNRxUSoG(0qt&pR@G=4Gptv^6%ZN-yu71*>a>sbU2M(6j5kyX4D&%QOCE))vF`h@R~TyFC2 z$Yb`ffBmHw*$?erFRvac!A!9%>J3)$1?{MI8Fvz%DZ_e2ETzq$@vE>@+HL>|-J`5w zya_a~`*?#2XC-#(mQCeJ(9XCiePq85WIencD0=~@xK(eNaA(eBuV62t4q957lXwVv z+~h@*$fWn4lp?bPcF? zd-Y&YDbT5il_RjoB?QPD$kb~clyVpKf`R8p}SUQ ze-^$0YlvXn!T0EchTSG*ZFrV#1dy5DMV}5HbQ=G|1no|rqkdv-2W0xue=8o>d-77z zz3^htf{1L=qpE=#SsLqUB!C9Gcc{nefn4HFCWqpFL=T@VnZ`YDJJh4@fPLBIi1q@*X=qV^zdspY2Cq5j;uVYv&KEIk@%tc>MU4y6@S?^fxA#r|7B=)2DBLN$lRe> zpsy6XXTM-hKbFj+)IsmE*~ezAT7uR6m1MLG zd(J(m48nHx!FL`k0ObV^=uco>8{!@(PC)Cp__6e-*q5y~apN;qTVj?wEj@kES3Lp5R8A&tpbJ!L67c0JKhPYdO32C+pmMp+f2Ptvd4I1|k7E_(%Q(JUFB~*W z3YiLKS)iD12S!zLpbOvkOn$;hoVc`X`|2HN{X9(@hcTLXHO%NtFr&5$E~X0LHCP9o z!mr`1qW5xqb{K>n$4-t{)1x<(L%+73rv&ZU{n6Y8Le%Y>wYJ0S?$EGQ3Sj*^n4{yb z-3IM=LobX{>H+DgHD?vE0J$10Q%Yf6Js~bjbi&zFcq{$YItSL$mHP)|Fv5JPx<955 zgLWwI*xTQD&g{}u9bR1mO>AuJGP5gCjH$pl;pu1b>W6}_U=%O14js^;0ITA8i8Y%^ zpuNQk-$xsO&UW~7S_cF1O;TcS8D>T zd_`NBW*W%Zy()(AbdEpmv&zPXph-CpzqG)5+9SqhEB+Km3F<4$z>j9p8? zO6^2ru&R39q6^1N(K>AqH-qt4`P+=ilN+ox42KTu;hw*HO3hGv6SM*5D)A(CAhu78 zx2Vv6*X4|!>7sQH`Toy@x1gE#_O&&IK)dkb06M~x0T`r-4;T1?HhxZ~^qMM=;3%o1 z5!Rfxh2mCSoI$Ach3KdZu=44ulT1Aa(yvY)WI_K?gekoLjrSmD3|JDSaR#>EBXuM` zLAzXCo~R=qfnGd(_|A<8=(%$B5jFJgbG74-pPUBGSN!{DD~!{see3sS4uN*reVB&^GpaS=jLc4U>G3vAqxUE=T5r+X&ElUrzWM&Yp#Sw6l9JXnOyC@w#9< zZy+Emy>~ zH68kr<$>3j^UYc;#T^uQdO5-aYe|CTQ*X*t=n;8k?_iu2P_JDiTWLPfa_fcHmcl?$ zyz)BAp+NQF_Rmfq2P!c9k|c+Dnfj1VnebbU@64N~Yn)(pAR{d>GY1Mv*XC3e05XoW z&R^64O89d*Jy{Sa#f9Y0nO>mt=>at+=YX0#+_PTc9@+9PuCL=NABqSaGCc;?uVIa^ zC5;{q+-N3^*9 zHxNbINIFw9(As7~{Srp!=jv6`+*Q!(DXJRZv;cMamOhMm094f>$x7r8v~)?|R5TCB z$t##a`WDdr>$?J(FlT%{)ITn~2F>BbAF63Opm65KQkG<(rkp7~sp~+UX-%a|Uw|k( zYeiNDf#_z&J(b=98BA`(tE&Kco^$U!5&?8cq<+;K^L&4$pVj5BpixyRYGhsj3Q^zd zbPavAH5Z@y2KQHZ={tQ*D_CVD^zW?s0p+FS?!JlF6+6OMbY~m1S9$LirObc??K(RO zu-$xVQ^v;)&@{824OVCZtmp^i-9L)jDdt^+ul_D0W$12ZjZZMK_#;2R$tKA6QwVeGaUo8}19{uv&`74BZ6nQx~~*39P|%(-o@~Knw6v!RG@s^$&y?9fT23y9 z9}NMycSUOy;>o1ap>Wty5;VoA+JQH?=a*Q?^va__lYL(+X7d{;PR{CWJR{J7X-;8t z+|@nheJN`JptKMc^|T=md1MD>%PJgjqBZQZ(ZksS2Mg{&i-mIv}0>giEnBH z^4+UZwrd6`gnQ~m%QK*KpTn!h7{$h|F2-LlyCwQBy`T~TD@ojDOfVY|HNPJJ9M+PD zFDbrWc@LWDv)?QqaHdpwrM7H%5|{T8adTsaO3^M2)18KP)>WE;`K~|>kK>ucmw~dm z8f^OqfNpCIJEzsgxO3pNaLY zcZ6qo+cwpQP?dt!$FzUy4_2T2X5$P?+*Q}pZXs!&VD0R_z)JZ0vXh0KydVcO<96de z)EFfi$0&H0$3P35yW4sdbAKR_s=^RgX_3XBuZmP!X|0itQ7mB6tL29K#`1OaEmbV^ zjh1#ES;G@dEBuVyEp5=OtgdbFJOny_M&gVCuA@4s>!WioXi03Qr-*L?74E5*YxoXi z-O#}!1v*-(P7QpPW;4yu4=QwDh=RNpJP}_Xz z^*spVz9!tpS&0&?Q7rRO$pS#N;>AtDK|sHEHtGm(6I9X^taQWkgVMZjd#Vzw)BLZ( ztmS}w_M}Fxodb%?uULJKa}GTGSn$6GDg3ADn+AoB9|7`}x^Pxv66jl0?5_j*KtZ9p za#FfL$N7!MRn7xFU0(_vqyp+@<`sAO0i^CZ;>3v&tG7!(s4E4ueQ|1Kgg1*Unm@Zk)*At0NIeQ$Koe+8$fpYT5h?KatSWl*rpR-fM}17Th_jm39`0LzcO4y9nqE;{(r&Yd|4CjP7vF0XgK8%$lPA zT1=R-s&T#gDYUds<6yl-rJdAo2oykRrm_Di5Jy?fZ0;|h+eNo@{m6hW(3M?b!HBi= znbbZ11+;T>lK14wfvO^s`cj?%?Q^|)`FI(Syt9m@(iNaL`9Fs%Gl1$xjc(+lcLfH< zA5UX$acE8MyYm*Tch$z%oZNt-Y5sW?83Cy{Wvescit4z1`tz~!#}plM+s4Z9!Ta)W zf6Vg-uT&x$4nU6^`zbtwnt|%N^g|2qWFo)g5#Oo_T9#DcimNz~z~JWBK#W+yy9qAZ z=w103--$&Luu5*PRo=rIkw4p*qK3PA`WxTIt`A_HsOzl}#jMrRp8xN?KA>g(xt46` z4MftC^4xg|i0x3~zpHqEus5UCC;|OEk~KJ8iPx}@opNA$2kj!3nF9*(#QtHJ?&?a& zx3-}PG}ttp8aoTb`1bF+LNTBMYwb`CtOA88 z-!6W#1kLNGaOz|9%hm(_eF4m%1+nxOMCAgJQQv-Q#DeXff2dHw{GD^Yc0mvG?VF;a zuI+oUlA1nck;gio>***Fk90jKaBJWy_AOOhIGzurR`2@%H}1VZQj>WY=cnYlmvt-~ ztend-zjm+=6_IPStz>+Hyo*^D55%YvVD8-@c&nx1Hu(L|1@$Xlt(4Q)%dpCY>Yi2=6HUVa?xb#syYK5&Csk1)#)5l|L_%fjAs*Exp0) z7BPG}a_lr{#_yOPaAK^vOFdK4?EpyzF8Lu$+_X?~!3!yivHqJ>uxCvIX ztj-fLazNKLzAcb^1)_bZF#i-iNnY_!A{WoW8CLdxhxx(!rX_C233p3ULV!|97_`?q z7s>+qfnx7wwb?$!-IVET`Kimu40;A!x|Gp#jf4_bc>naN_k%3%GJ za1LqAmO55R4XoG8{X;2;f$j^@X6J+e#gzNSC*J{b5!`BD#LTm#q&wmJ479>$>fy3j zr3}SNvqrIJOzvQQnE4K>eZ#z5 zc^^&ACkWOP1^0_cFeYiO{#YqvZK_x^J8 z=;2*+#h|rK)m%SQ1oX6!f`@4os5#v96YXZ5~K04k8&GXvM!$3};LQe~I z4rQSEwfKwnu0R2j$6ma|Gr7Uaed!U-`4iQT+l1dN20J>3q|rk=S0&*W$&Z1ymXmU> zG65~k4vf)Yy$ZcmMtKiCL{>q0GJ+MX5pk?!=OuvpWW*13nWibcSE04R%d;{(B)A1XD2|#QqW6hKAf$n&jSzd?%YU(w#*+%PP zA@5AEK4^T`!?=CAfKIl|D38qnd2mngOc?|58#+mEZ38{86cfqD%$q(W*SkXm+6}VN zDBDaR#f;hXJ&r*3h7KH;b%BCnF6or= zyMglhx%EF40_`zgMovO8iFCzDMIH()NjVd(Lykp}A^#dUohBOs;);k$(AmVINW_IdmUG^_gOm!8Q2 zC1$^6<;A!_16@-8sPz{$^8U;=J2KGz`uBO$-2oyp zW5{>C0>rBIs98uJsBuc3_SpiE-h68L*%_d0m1E+6)__X6uO@uM75VNI-P~3K?Y{*H zUUmV}I$hD`;{a5}uRv9aHOxedw2uq-S62R*bc_aAKON7=vB17k0b(xtc;cLJcPxCf z53H^S4rm-hzm#N{=KjR{XHEt+&KRsdIdcW!)mWukNVX5f;Yk;2+VQTE5&G_~{%NHb z2IMSEu0v`FWHMbYrN#pkI{Zo3{VveYoS}Xf+(B(K;}d;o<6e03HcyT@Xdf&$h2tsDP!SN382K2aLmSwGE26W+xT^vKkAB6F8-`h`u@SpcCmuUyv zxnSg4ULNAEW}xav+EE<#Ku5cajJDf>M&Au8zQwC?IOXaeJObM5O4oQV5}-QD@8O%) zKnx~y1%vy6E*`fVBRtRizRMefX52SAM|n~Otdon8d9GU8&~D@OJoSEcpbNr1jO9u| z$vk<#t#J1pMBXcV3xQS~pV~BlS7ZL}Nb#l@v^icrzODcuflZYTR*c=COWYBiXF&VF zta|g28Bl|{8$02Xwz}@${&G0K5NW^sYq!8^7-e``KO0DBka1}Xdx-2KI@fawG!>FZ zUUQ>Bk-iCcX|N)hwDEnuUJY6(Yrso7P9Xkd9@D)EKyK4icVB%5GJP_i--%VKDp}nl z6{D$oG=gQ*39PXs(>N2YY@-6j4{qy5-VDV9sd7tlK)%^T(2aJZ_p7BnAK#m+UTn*$=eUof$iYYwP-T zR(SjkXgq@IbA0H7*JE#wZDLHW_G|z1!4r&~LviEdA85Dw;qUZrQ=l_%-Sp1miW-;h zoz=wa&hc3B)z^b{+L^6x2rK%g?+_K?x3Fac#^ks0Z;egG_5%~>zwUj@GK;&QN1uE6 z^#12SH120Q42pmr6%pNL!&*FP!Z&vdt#Q3)%wqO}mAfH5^h>F^-`Ulk9RDWjy_sxGjROH7|&?2th*!>aP zNrf-)@8G$hQY%en`w6V^ye2Zq=<)t|(!lb%J*@=;lDXR<7Gh-|T^^ zTQ^F`eSz*-oqIxo63q6Qkd_G7CZBb(uoc)RNyXm#v?wEb*A3#4z!f9L~E9PP*#wF27xuveym8Avkc zK~pU5;DpkyC@vY$Sm~~XR2Bf0U8;C_R27Jrz3}=uoc$>6VrAZK&`ibTu4*L%DNhGmfXt*_&L6=QJxJZ#M0hjl2f>&?!o69${`dDhywHx}-4OA~Iw0Dcn)pZ>%ehIV_arxf$yFlt?I+EfiflQzHb_(FERI`pAVy^&= za!P(OlmST3&zd*b2T1UbeS6M3AcYIbWOW#)7l~Ise?d?Be-slZ{AZ5m{%@9Zh0rd2 zf#@3HlPo1S-CxU>K_iND_&A^gB*x6Vmlv;=Tn zPEMfpW?>j{j{{h*2-2&^-vsimf2&!359s4g{_k+SQ$1HZCe(+k6ntJ28gveVo5K@*|A~_XC=kw1gv{hfA-L9%-@;p}{nMB?lVJ)D- zPYe49zv4f0e|Ii1DQK0l({^&`AH1+>5=I+FPapd{g>=G+D#j+6ja zQ9OzN7T(CS!?>^OQ1s@B0qY&!EoqzkK)Z`aj24T5KJpq6b9n+uWcCP#VjcR_`#EC= z*Ot0JJ&fR&8!xuD+&7>dSC9`2Jta`s!~-H}Jh#@broY&A5j3Tm-Hy7r3l`fA?S#LM z+np^7zG5!8IDMA?hIP$0q(}7%=IX}R_tNE3(D#paon*Qs&?{Z4FKV+uHKgCg34iaq zo)@OC#B(~oTkYIyJm1t3HN&cKl?+95r{o5qM}r6t_ecrQC94l9g!vsO(`7s+0NRgO zQr&lnKzXcAQ)i@shFc#*Sa1VvKBOy-5 zlWdz|CG^{kx`2nMqBuV@eY3-mLny2i5zXxGuSPY)gg+4hx~xZ`y%u*GVuvV-<~s`Y0G zu6*W3k%{@jo&wEsFNuuw0Fdh7QajAaIVPJupX`cYbRl?=45My(MQ zywg7wXjnqGA2gvu<7DyaK&5UQU3U6F$7tF(M;d{$0{&92JOxq=t)aSI29!Xnekf@i z=!1}*Bl}^Xvq$Vs-NvdS&eip4y8tw)x;dH!!oKlpN9y2;OpacyHd_X(@MX7|3wVu? zP3rqQrl2iN=dx|x2I3d$W$VT>h5Xe{l3y}tmCPT+i*tZJiytB~!?+*UD&khay=>X1 znkCN%)}Fw0nnxIu*7Sc0vdlrtrmPyEmH-+rBlG)21C$*6@Tos~L&K@@ZG0kVEC$a1 zsHuT8!)?xg#d@#vDO>y*IcUEhK3bu<4s<6>(4`KmV}jwf(tI;$r;Dw~6diz!+I%#| z@HFMA;IY&f11&w*pic5QPzkxw+-o+V*{_^3^3FiA7sH<3A_ltQbnU8gJ$rSM&EDUdG%rB16bJ^6(dE^f90cTYnfQD#7GUVY~oz@ zuD0iYz*FP6XYnjEUM+U@V2NWj^gXJ~8tuOX6n5O9{3yn5pqna!i66|xqOInx;y z>vkd!G)J#J0dY9f-k~+|?>N)nuQ%j(WW6)N1zpzdO>$ziar8kyaw4+P5K$t|T10y@Y$Aw2yZC@tTC`SL@c zBX_f6&hP+fy3#)WTnNO?HOKf7_lTp3UE&sIt*p}d?!%E_&G9C;ZO1dzeCn#&1B~aD zFsB>-ykMQ8nGo==07~5HDe=Jdrh2+%X2gItNfZ~kg{PYJlQYlf(0cGw1a}0^ zl~gr6etkK`~&BFj*9lR zF#4*XC5k*%39OaWL6M{bKuP9&_UgqzuDK7k&cp*r39%n}`2c9{aLMZtZ=hdmW?y|c zfzH%*sjzMWeJk;FZ$Aj+Uh8l+sTpYER*FCX<_sO}@6;b9pv7?WwEh>#|50bkz-A1t zDk_c9=ufHS?vg7=UKWz7SY(cxgi+_Era0fSU(77GQk*UtLP(H@_xt>b9_7H0h z73V8&rmxV0%*;pOi3yOE7T@YTJ&;?-W5r4IP$&7}G*g`E<^-+Y|42ITcr3dxj-yZ# zBH1G{D#}b|*-}cBQOQUYA=yIq$jIJAlD(2WvqQ?tNMuDqh_cfAUYGyApWk)PeV=o! za~scd_m1MYXuqu5Ye3!_>&!pJfJ$3Oj*p>V|RAuMRjZU8$U@Oc)re?Vb%G{VnX?d`1VY zpJRU!c&Tnc^%bmTa=hE$#(`vf26Z^m_f9XBc0S-rPZ|qR^I-RJWW6EPd=bXw{8|r@ zz}nv%K}}QU0ovbT>RR$;px@sJzIAE>of4pa_!jS*Q&G@Cj@|6nr$M|J@mN34S4khBbX7A$AoAXehS^yA zi~G83C~*bneHZ(WsDo9Zxc{_h5|BW~1Ml2gAja>{Ds^zpjIz$ud*o3&WHPoY0hF$i z>i1#_$boRcUqK2eB_(Zs2+yb=Ion@*NI;8Rqd8qKSvUrVJx-n^G@ z?Q8(GY{>Q=8UW(8KTDq#1@wOJVw54BDXc zpZMKx_2%=_jyC26jVMKayRi#sQBJ#tegep)aHyLy2WWnK*!>ZD_jP_@)sO~ghSd?; zyT2hAw&UD)4(2D( z4_VC4RhFSyy7yp}ius%Pmk-EN`Ddml5fH81#P?NYAp5dSnpq~Gz|YkM@9KfpYDxYX z#sHmnk!3$V2;}IsEf>EJ$Z-2pG7awXia-}>@^8?RZ@V9^O$Uk$8Tj-Ndm>S`-;v$F z7C82IACbEb)~txZ?59tGWS(ri7{VQ?`V?>eU&#M!df%LTO=y73Oq4XDG3F-o8vnkG zg0{^-qcS=GWFMku+hzu2@$`swA0-fZ3-^>Z<`C$>>H0>k6cZ&2P;dpy^6pYAmh^bIN5a|?Md6KyFVvODVFH0C4lDl*q2pw256}8 z$NEPnAc~~DpESIIj2|i0Tt?qFzCG)7QVg^N*(@K2HJ~p!^co*AZn^hMY@6}yX;bp! zmbeMlqUlY$1Z|*b$D#$wR-pFk-p4bT&kq?&WF@yi`}3G^(Ft?ceLc>t+61(yqK>~0 zdw>}4>SX6)pB#1<85;Qv+Vk&`AFutNvj0EnKg)T27khSyV$O|s*z2l&o=5Kf=Z|;b zhgJ~FkciaYNhaX*7E;L{r`6b zzYTjsvw>2BCA|$pfP`2`i4Wnkh4P}?QXTG%&APCL6Z7Rug?VS#0*w3T-ojFjzEXWY zcq#(xlEbnzzs~`zl2)#pKj(pdNd?%k76SDqidmff10>>B^jsIuo;#ysEq)m3L{7~! zpH71H$JinzuQE`DT+xs>cB$AFry~cdLF2cK^lADBlwFIql=0tZsKHux>xd*uuf_69P;CC^+Tc>H1u!$RJjy3PNz7GS* zdoW&gst0=Gl4rt!t55YY*9yg4`#ktWy(kB)>J9E=O?cwW@w|0G%Wy zl|_)&cv}MzJo;@|sSgxhPG=&l2$VQ4I{F&(;Qi_I%bbaz2|2shZ8QKCmK=%uaUV!N zRzD>L`=r4`Yu8KIr7mk8xN-adSl>tg$@-4n?AYCnm%DG|HHowS{G%1DnLPAv%vjy; z!s>?~yMoq7rOu=#0~EL{MXrcfaVFl$QNa89gtxxt!7LGrJ`zQL494Ytnk=&W4aEKa zEq6^ZkbGhu{f}orH0-sZj!ZzG2APC1G3GI2!Z$4OZp~i_#4WkNnx7mUrpX4h_>7IL zA{U60%}VS4&nx~<^pX5$r1^lHZ&q*#&HxF1-l#1j0peK|8+d&K$j9Q-SQL6Zu}z3T z0`t^St9Zu?vyLbJW8Nz~Ij=D@Q%&REvT7u5DeJ*ptLJ7so7l}ZvM>H7VgOA%j4g(^ z3g{f8tcNNYP`zI2@otRF;^>LrvDBb_a_o5N-37!tEMs&9_m)PKs+5ohT2Msgq1`t< zFFY0r)e!=1Y;vLM-w&YU526ZbuuBD(IG<6#NYgi2k4jH~HKsnjy zo}drCG=lyMTV;O#_zsMFOhnuIZnyvW1o*IGcPvdTGunNB{Jm8>ztv+yRSfgycsWCuogDsGYMT}K@+VX zvkt)%tls68TRC=y-m9-d2~UF6ibTDz9QTp++3&Xe6VTKoZg;)?hjUZ%zZo?GS!&zN z%t!(ekEpxV;tB*9hV*}8#fQk}>s-QWoU07TJA%H_pwOhZ_lFsY4EEnl-vYfY8GH5` zpG70ipUg4q1MOrWrFuy;kdD;pdk?dKtkq7eJsk(~S?F<+zEOh2P1H4SzC?tTxNazmclUtGaO>5mWPD`1>gMic2tti0D;E{UXvLHkNWe_5Li zh%hKrwvrHt(Ws-%AqD7i=w2~O?5r|mXD324QPWbqugVGZqt3~i6#e&5-a%6F6lfP$ zUnTs&%*nU0Rt~WP?doByrq5iJOem zYFQHd4Rc`J?1g8x-|)l^dZ2pduL5XCFI>y}j!_utC|NSj1C6dGU4LRP5MOfn+3ac{ z+SOw5U2g~oKI~cd1Wo<&nDe~^pu~MAt9P)@NpERNKEpFKlw|Rt8lFe#Z&>bU9ffhx zMdNdW=y7)KMfL3x&~E%&Hq6Akk-1Zm4&u02UXxAjzhF(jOfbXJ0VF~5lf($Kc;VQC z2P^2IVh-v93{SzT$J7z-j-5;N#CHXf%b=;&PTEDu0zKmw;Z8z7zyEZbT*eEuRl8yD z0PF`pJ{2a}3xH;DGHGE9v(B?Jc3}Wlz{AZw_5q_W>$i`_3VYqJ*HQi_d0~c7P{NO& z;y{`~>|J;8NmcAuucYc3&^#_b6Enu&wQ#5N4-sM%_(nKySe1g+^Xc_>KFvVoQIevC zaX{^*zm!MuXSFEVFRx{sK;tsaZ!vrgw6BpgfAn>dN~Y>G9d@Z!`PI&=IiGg-saTz#RV`=qp;`0a}pxA!YwgpuHVBA#tdY zc%&c9_zYU3^iPJ=UqF_`Gbdi*s)+fV7P@mm`>MKqj8_flqhcy`7vA^d-4pa4l%Sa> zuKzpP3KU;u{N^D(ku7`-5~4@zEO*9zg&$y5ji{{a#w`Aqydm(_0<_#PO_sfwv75>~ zg|inyo6GJBm~saS;r%M=iQe^P%!snY%!z8X=Ccz7t4!E8Z8Zm=W8_En+kOX%38+1g zh?&^^(?u^J2(+m5K<8gYKylV-&zAy#x-Sz)?EY8XG3O3ryAYhK`-F638OV(6NU*mU zP_~|er{NkjKL3pdXo&=xiGJm zwCFq;aUU0(rb4zO!Akoo?24u;keDTj&21>6Q*FR+-OX{j?eMfplEgo9ucRr_QOd@BIpp z&f#B^Wm!PfGpos|`+=V3z9L_X1iF%<^CtB+khrw!v^Dk(#tzONZgbGWo_px+!A>LA z_)Jcr2Q*7R0WIcEAeJiL%Yom3L@&#PJ;tswV#cufP8YOC&0AGFxE8Z9#lyU(Kzk)p zbp0$wT3LOfU_Zv!t$y2b`Vv?-b7mEp%76qWvU@$YfL`VZ##BWE-8AsqABhz&DwTj$IE1(r!!Ko)rSh`rMLKdI3n6qG@bJ6DX9Vp3P(g zD8J@f=I|!aqX@zu*;PP=m$+952!UjH*4!I}f!2@vovWP$(vcM=-18CW?ZhxS6=n|m z!jo^P}m?HH}`yW`pWvG@2y8wAr4-8BU z17*(1pQ*eLWYL(t?1)-uO71o3@1Wh3An}@(2co1YsISLyBC)y`m*_y-uf=gx;t-HW zBF*=aVxZ@nW_yPo0qt1Rw1`mw4H1qUzIzua*?`WE${omqih^J$2uLyF^XELwKkJA_ zw|VSM+Qelh-_ZA5biT9Nn5QM->urj-`n}v6d#AX zHqe7hi|f@7fZB~bbpDY6brmo1q?7>N(<)gjjt6?V<$GiZ^J@R%s;3Bcbk5_|-h=93 z?c@qQ#ZduNOs+((BmoqjC1Ly)J;`_0{A4zsN1}Bx)UP+dYTnmgSKtbCSVhwCU^~z( zV^BmA=F6JcsX29wNBHWYh`zI6^;s&NsW=Q&=M!`OKoJme!fDB8n02`})`PomQ$6*F z=j|`_L6wN}lvp~9%Sd=A7<&T9%}RmDAr2_m;`F#at~oMqwEw&nXm@fI^b)W)?I8;n z2pt2BC~&-n4gE}?%Xwk`b8PEm(SOIHaQ0=-auJrMR_kz1` z%0B&D{A?pe@RV!p155OM(wm4c&mO~!j%Aj%!3`kKqaUvGVkT-xfYpob!h83{{{`zb}#j+I!HYg-rO^mlfBCOq%MqaZ zUU?Du86d}}8P@A5K$}vV`~G4D9F9m?=D@qDOWk82NCRtv9@C1}9Uy6!7OoQPTy}@< z%k2LBGVIAkBi{XBts02XF+Tz{*XXIw!~!&tS*7|0vvbyMMqWw-w8^dy)?DZ-r*_?c z26zfpk6)YC#m+F!&%xP?-W}SKX)4C}W{zBzmEwiDeHW%5-_-#!4eVRUpav=9~^!z+%$4Mv7Q7i$S*gGfF)dDnUxn+A8&(+md^Ly?Fpv4!xNxOkH zV@{*(^Kuik-z!hr%jJOj^7b6Oh9?e_w7%>F4QN$atjup(fr$I$h%1i*E!AfHc*O@~ z_+z24eg^e&&*&AXxfpt;%# zp1H~ZWGx$hFOC$5@k5lfAoj$nhk^Y!S3qlsm=pXH1|)BCKH?%~M2XJx`4#k}FX?+G z`%G z&bSjj-%bNmPS&T+IttW6&83@W3Dg|tV4Z*&alnMM`FkvArDEEZ8LxpJB-Y(A4FbyS z@G(-wOmywe^Y+7M<%+h#To)d&7H=dEjs68v)#Or_L64W2Eiinm0F66IBu!fp=#H>W z-PtrCR+gNcD9qUO4||(F4uaO8=T@vk1*CGatD(IXXhE1$nh0y!;#kr9`2o_;+K)4}dW0Z~{1FCtp+?Y?o;)#T;NFNrXtCgHMi)ErQJ;}7q% zdO*~k%iKEwK#jS#NS3ft)a;_Q_8tR`|1(w6I5m(rRZE)gS0LL)idd6hKvr27O?H0= z(Db8%Rul7zImZ6to>j0uV9R1tF9NDsDfy{}8TQspNw1Or*H-m4FQ@-8>M>0|<$ z?mA(0AN!TjjGEFbH_-NV8!p_%DD2sAUks`N&7O^rZF>^P_BuuVBIZUQQSsIz>|wXx z)fKJ&1Z#3~)2ZFxY%7N{U7^Cv_6mtO@CH38@qS+E#}14WylErKfY*z>%l_{>R+MT= zbG)kvSVg+h%U|J%WAbEw%VCV_Xc$N7z)i4jPuOL7(*xOl^gA0T1C$b8d6x7!kk^yJ z58C2DZa!JptxJH27ER|2D}mlgtEn~Ns`hfl*lc%!R&G{D&MONPY<;n-&>koy)K}W@ zHqfsTO;aHyAjXXB>N?zquVocO4`!VqzY^6otRAn$zq2MMVcZl+V^=6ff92BLm4E1~ z#sR6^4>!PCs!jdkCLK_;f`^aj2cYhr9%fs-?-4qGd_dVkaRtxe`b=U7eS`H$WBvn9bY612o>_F@6!^)hi zKwe#AJ9HRTdiK_?-I`G@6)>Mxh>G-Obuqcjew}S zZ-7nRkl zn7h_Z4*PCegY{xnnMpCOz^35kx!wO7cgQJxcQ_fWStHwRBw|1k1ola{*MZdkf5Xdj z6Cm+N9!c%2K!MiJUg;hIYHVq}Y(fZ>>9I^%ge$$yC#HS%ENH}b2i7(9bIaS`~G8V*8fUjAo#BC1}D{gYaCX zvs^XxvxT`gA4dkCv;(>->T}h+49GC!(5oI=pz|GZ4+b!^PrREqal&lp$@Vzsq7BwT zm6Cge4OC%R1k=tCVgov2WXq( zl8p{#NpeNNs2Tcz_gip{;viUamK;WV34oq1_IGaJnwL6LqmQB|>mQWM-4R0TIeH4| zOrSkPjstJ7A0&{v2f6TqrfuEF>xJFt09SjNKKhUQNNm|CW<<}R&rJigsvTxbv0H!{ zj0zf`YVv{VuB0oMod>Ei`=I>q4baF<`TSf1pe7C0E1P)6$Lx2NQ$|h8YVc(p1y~1? z{Z7x}TDmHpb(P~O&MM~gbb1Y}^6O>`j0r%e^d@}tY=FvjDII@424dM~*xrO*^CNz* zas54N*Swrau+DEsx{#eC0qs#07kO9`(D9VI77|?Fzl5@;);`eg#@6<-;oR^MW`5o* z(AI-hj;CNHzgB-yv^or0pK6mTC&t5!l6CEeA!rqE)s0iI|4Dyy5WHv(ntoFDldV@k zMWeQ+Ynb<+YUKOX3qiZKK(ESz86m#Mrs;??Xv3=kf^xVj*Q+Hj7;l3ntX$@L`v0*0 z|D>-i`KkL4kpE*F!uv!(WVHb{zubYODdo*u!hz^tw?3Xw0m_rp-nPVku#n>2#(57k z!qo!=nHfNA{7WJBAwZU@1tW3TPd|?IXkO?CjXWnhBKQmtN%)+1RUMGF;=1JD7N8Y( z&cd1!pwL!%sgKh@>Ze-lsqjQ(wkLGSM~#<;H$1BmtaYObdd1^F<4u*<=`aeGGH)s9 z89>u`_$G!LGp9c~dC~L`XeU-2POUuz;?2%5soxLOkTp&B0{gSmAT2dL=45u4csN9|ztZ&2j$7sF;nynzc^feMl zD)+EKpD&Pr>IJ#*6F}P;)Y%`zfZPo(&?MqYO{6yHJ32vQ)qNoH!w+aBEsWydFCdy6 zzXW=Wpd;a5OQu-Re1eF^^Kiy1Gd|Ja-=NuiIXA$7D;?b@oXqkZv_pggn};!OiPUep zWpRDJ(xc4R8o;_*l2ljT0YvoEs5?afXo_cU{48e4)%*gXJDhb-qN3zVUS|CPBwH)zHAfGio zq9__5eu?K9nK<`uxXWX6%u`De$yy%`url}tSI92{-H*DwaN#M?gPkwiQ(HhnecXXf zI4<8IrE1L)G>gT0UyBH!3Z^@Jr}26#OUEBh7lCF4ddvB0@W{I&vC!{<`2b%4syj%xnXVcyLssuTpWwr4+`~3jw-61lw#(rAw`&G2yBxuX>C1=&}9-E{^ zdY|!nckG^3CSWx-&DdNg*azdB)vnupUjgdrv|S;?EBA&e=r;TVZB>mV)BYwfF>(a>KTzn5BXl{RPHvgaxilW9JY)pVwCF)S{;R4X_?eM)fF#k@Lgvbi5 zg7)d~xXpfHAm$44bIRv{_&F#IBQe*weu>-u!?_K8NP%?e~J+C>v%@`bOB-m@v>(Ia8I`Fb{g7 zMYMmFgO(zi`1AKRkjR;?bN?65|0JMENhiP#Bs-?J#ENUVn(F+D#2qy1-XopTn}i%btjCO9!NNFr|k~b8{1Horaqn!*?Dho ziQ+x3yX)5YE5NwNgH=tJ4&n@JmJmXuzrlHWAK5^w?-!rU`UW(9i0ZeFDUe~v!>M~% zTLkr2dYm&s)0$_DQLP6mT5vpRfG1dzrT?rhRz)XSxaubZu(HNJ$=dxS=7nd^{Rz&3 zW=4CkPwN%XjAUv6!x(xn&Un7o+@8fVFDv)qeFrPB8meC{ zd|3e0wRv;n9ukE^r^1_R(6q*mMAD=HZ9Y|5lEsXDkrCLt`}Ziiw;Z-Jcy4v@-rJ9YOyY zCZ7C~GX+}3y@q|?Fo(oXza8=n1dWZ!-~<=`bbK|8%~(brG}Da6B-at3zrowIcaH<* zTukrXi<$FE^Qy0S3}|7UdUPTjK*TP(;$B!YqVDg%I~su&_^;!ef*nxsREMMLU!Y6m z?u5-GK=c|*d(IsNdOc|=RI&rq=HxPU4tGAP`)ELH0kn0}$sbCXlSk6GD=mFN+sR&9 z>%-0!qQ?_@66bO&2nTQ<0PBH2is^F6Ky#a3#~!u=Ma|^hmMC!>>+J;fMWtlS zY!8poBHB@~`n+w~cNz0#$LUggOC4zXgv;{D`++0q=>hFM!^ zZ-Z8O_5Cg81R%l#1bu&$fP%PrFC6>~)Vq2&Wf9|1;eGx>*j~_jO5Ljaq=E9^ofsJV z07SKUVQ(X5UH37Xs9T3YStTQev5`uGLV zWH|0r+F(y)_!``-CkfgiJ%YQgWI(2NqT*tPKy~NB{b(70ysU0i7UH$UO7wKT$>m+5rRky{EBnxb3*g-Nig;dZ5m(r3_ZL2X)!$M}g#8<2Y@w8nxyE zB~q}W{`OT|?xq0iw|*CU4(wOLxxccPi9t){Dhbb6 z-yw6LuHu8<{7XRot^F4zuo`>Zy$Eb&K(jx{9z%Z=vVd4I;es*!h9=e z_sxrBBjl7tYoJ+KoJ(4H4z#l&@#Kj(5NQMPelv{6`0+A9jXuycUbVRkasb_yJ@>T- zvx)RTI%ykrE~2kIUsW+T90H8~$>5cp>AyB_-GLb#A5DrMI{?+ns_Q4#4>bJzZ@IKznaGR@#C6IpDM4TTkp3J735gJ*L3wSE$3RvjfD%5dB=G49M|gjsy!c&^cB5 z%7=MC=P$SV`=MX{Zgk!WHvp|dOvU@_J)p>KulxPfK#HMn`c&|4OiXoy_1{42P@vrk zpap9Ex5wmc70{H8he!G-(0k82&HHtLCfF{U-NIA%s#s}wD-~#cVrdeYI4-MI{)Z&i zw29|NNqsF?6AX4zd(Hz*zok9Ij{duSvi`x1c+gU9=Es!PfgTO~3fg`GbZR_@gaV() zmP3ZM`>=zQp4;R7;~`k*2)+=yy$3q%KH*UE3y5w`YmH|CXw5a)VV^dTzPrY(%s-%K zAIU~fqwho5P9#RX293O{#{9Dxkk2QJT4v1RRr-XL-S@QK`%s*ahrUCb#^QDjjHEZi#zSH-XIOX^cA$1F^T~R|>2E9s6BQZHARcNg2bYSr6KUk3<6z zhk*L^_I%y?0TiEi|NJF<;u)U}?{b*{Em`4=Qc?iWlbxVLe=tj=elXZg;HspfLpzPJ zgEU<688{UN zM@l?}8l3F-`*Xpn5+eL~_xJoEdu{btBS5nlDm+%y4>WSrac0W`s8Wg4{s^8pG|6Ev zOOrqoxL6!hH4XIKTdE?49B9y>{PF>eR_JP)gRC!TZRXsPVRb-ylZM{29YEeG?c7gG zfx<&Qr*uvOeNI%HkHs!3KIm%Z7zi4F@S1o6c4~i`_A|tWpfxcs4U6DY+7`Et1PSJI z6@Bhx7}iX}$azUV5g2!3W>3B&CD89`p|?lTlTs8HSL91TbK3e!^8j;0i+^IN2rJ-2 zdQ{+3T!BCdHNgz-&9}rw^NI}2FdBI~n2INu>V8%3vzT>0-1o-B&@U-fME7>zbQQ?h zCa2L1GbkjusK#(rLb~4sZeT_>wPbBX-MoZKH!cD|7eW?UH-I!Y)Pqe5Rb>J!r@N|1=_f zH;|F(jK#b+knsTr-S#&?2h!FiDDDGElkOZRkp(Kd=UtPDKDfd+r@H&*;&I~Eckl`qpS;GGE=!sI(Zz0gE zM0Tt^Qh)*|qVC?o)th^71fDbpt%r3vT^>Dt?4a*W78=mlWR9LZf;*?2xT^dm2(+4y z2maDV0X5T`8cSlHPIA2NQ^l2<@d+|bcz|_0{5W&u86cml=d_KY!ftWe*QEt!wZiAMp z@Q;}+1SpWzSwRKY{B6JX5nvCM1AZd_Jpt<1Rm+=>2xZ2DCZHml01f!_0!GlbLXRLyzpu*f758ikZbL zCt=*rtUWJAH-Id^+rPYmon~j}jj*W`Xn{n=gS+2w;A%a|wfn6gCrb(Pp1cDqU8q3j z4MiaL1tm8Aqd*7f60$7ifbJOx9_GMv=4uKD{qb+0RW_;7CximM39ixC{0XFy+N-3M z43u!M)uKHSh&Ng8evdH_Wh@i-2-3+R99Oe< zKnvvhYI_sC8_kg_orpb*=S=PtA@-LedkuNoS7F@KrUe_uF`&5RXnuX{e=S|Td9n{c zi)DE?_J{|_`!PX}*mEE=vyKTXQlQd!nS0)sfCSbXCVyjB@#tg|rNwR`($nGYiO&qf zhqR*YFq=%6a^h!WV8-qJwLNz_fcBo<=M{wU&}?PCu=`&_b~Tq?^yq@s{T0FXJc>+g?Pjc&7Ydv4l-)_CM_q#EYIjXxbV zjTxYc-whuzMy+SKrk+|0v{L`9Zf8HBvTBY;yWh_7IX6P&@kh|K1s2e0NnMZbZ6oF=aB}V86dT1?k?6`v(XtiHVs;1EQieof$ z@noPmczY@ieF2g92uyz02Qs8oPYgW37x% zJdeKYYdab>4Ay(S9OP4|Sdn7gj$84d329G+$y5Q! zRc80}^;j@Zs<6L?hu0TptiTi3WSjG1In)MI?%C8lT%fp&E&3W_3 z3Cvv;ioJO1~Ovw*(r`r;(ww8dRcn{s-oC0zbwqe={ z1!6yI`}`DUdjM^jrq?adg6+(9g7EC_p1#$bc@?zj!eqwVhk!OcYL6epr+;O|3kS7v z1!?zxTtA2B%-??Vn+LHL>d9#AN3s8@h>k9*zk#`0boE}})qy$>1rMGf2C_ft!B`p& z#P=%Z)dTco*9qPOT$r)Hqm4d=r-HRC_#RgVo`c5-mD1L*K9nSD$a7ABRYU6Z(;n;$ z4<7fOo~Q&ZH2p=3E&8Bqefps;UeCbMCthSfSU(KRo+(ZP`t~z`l^w4a`6rG2BX;1M zE8RhYxXU>uezV8e`Ty>{SX+;^b;rn2)Rz$EIz*8-jdcPkwfr89lLYEM9`7rFy?FLz z>HATPwA@jS7x!@IHR~&-fml(z?K>akx?u*9h>mX#H_+>ay2`C1K<#`wZ@m|R5{&Pj z;rj(7b*|U+f;Z6qc)8czI9ENBa)wA7G|oqAv__|as>QuRe_@V`2jly3PhPr;ui_`~8@I_9<1^je-_n+x+!*F3_o@F%K&Ai{n{~$v(W^$CRGQsgGb~ zOUiRjoCad(ogo$D1q!`;M%dsI(ADM2Y!elrU+*UDlnw(WE$MF?}P=#|)qpM1E!aR+Ph z%mmORbgBL&;uG1aOT>k{@6UVYXd2Ol8GBGFSbZI%Kr-c-9D{4-IFLxPd>-Z&F8%&Z zfGeQquiPTe15Hv)G<)DSkn3A&rd3U#B2Ma&Ls(Ht$uk!N>_H25raIh=-9lMh!TBXt zvo1bCzKB(Mc(JQ7y(^TdO{n3x#rIORI?b*LAjSo z75{K<|DpfiMK=ZG{@x|^=M4h7RdDKA2zp4^^feg`&i&?bDxhZwtf&92?=O1~WGx!! zN8$+7OSkdj6-Fx}wum6-m!0tF3o!yflq*vt~`750?1o$lQ z@Oh&JTLEYxY1jGLam{2x>w=2TpgmxZC-{N=uRZ$a0Yc1Ji_Sf~a#$4sWa0Y9@xH4E zDBo5y!3;Gqn-)_UAO^OjvES&w+wtpR&v!t3nlVq#YmMW+=YFcH(lP7Au|*6L&m)*;_!fi%Kt7#_0QftdOq8Y`@4qA(DmKrK#0UT6~71w@MaN z)qxp;WD@f^8$dS#rE{5vfnx4gZRwQ*-TZKe^E^h?qr&Q}J9dk5Ij%MSd9b#8Ua$Fr zkq-OZDEAfPR^Q%kdk6jUl-1^)i6@MkRJ5zJwgtMFS$6WGFA#OhR<9cJzls= zvX^ptqIhK|sfHCLTu z(;;_ZTmb9!ZB<<$$+SpP#&Mt+gTZqem?d9E(#-NZK(jd}&dBu+Xho`5GZ^=_^CY!= z0B1B!`aJZ+F2LpalI!+&7^m09A^GMyQ2ci>FCn~&P}|#>=rqu>ni9DBGl5>vCKd3$ z2il>6Mc;puVc29FSh_%M(1MtZ@iua zXFdOV0%&xr6Qd6;fwoNl`fNJ^>Gh<@4mATEI%=BbzYRox|Geu(Iv^=6wWEKqqB`^F zeovuK<)2Uw^L_$r;_tP9?|2U{flo(PrE$jdjiGPuKtGn1&6XK}($W^^I?+Qx6*0Z> zcTnpQ5Szr+OF4c!qi+UUZQ3jCFL<)IygXsv@fEc0X1N!;|H&aCF@31}EojWjH&&MB zfQm+Fek@{_$~^EV>Z&(r_TDXQv_(J$t)`2CKY{cN9mBk_wnQvkPSnnT)|u~cV-+>> zR`T=Cn28hq_q!#rTc`(Bqy^!X8(ujjDSN?;iGxcayPqJ_vfq&$oCHnY_ZP7*cDRGW zb)OiqQj{-?9LG252TTj)WBWGgGrn z0v#FFWv2ISpS##|vR=sk@X~;Bx2npk4`M9yN7QY@&VqJwkBicF9uVZ!iN zF`zkz2$tz!ggE=Jt%naguuxsHSNi}p^@6vn(}URKMk3bfl^=ce{_0wuWWZS1TAk#vuy3%ddh zc`6loV|R3?ynpcY2xuJ%??=L^fCNf zHM11ZcP~?J2Rv6FC%?5O69$b^$vp8OR&8bBGltt(p_dQO->gNi-8bkE%l!!B3Y;pB zxML3^zB6^D6SFwvpRw*7Rsh%hkDTdh7)N%)?CDL+x(&wBc-;ojs%)riTMq!`G(Nt> zf_dqlKKrb0mYIX=XBWv zbX$C;Dw7aM!gn?H26|&mhW)+p5@=6t$#qEa%C2>FhfiUZ5m=^WMAU%w)+hTf@3w$e zn*Q{WVnx}_r^&~!fhLuC<6{~S`1FdBAhv`EmpegqQd0#Lixb+*{ zt#d%TCb;Zg6$zBLw_z$S2`HVOt~ux&&?WzGg9}(6bBB4Ucb|bh(SyI~P!;S;tr&cDRlysoDa4obg>hM41n$Cn&M8Xcnkg zjC!4k7%0%pkh!1$C{$*GlKn5x9J^!g?)UqMhuvKeat4h^M!>`xtLK!E4p}JfmnmfL z!CS^){rb5QHguTnp~7o3ffML5X%w3Q zYVq?|Qnaz(f3#4bPEr7?UW~zl{wC0^=bc~3QtpN$M0ID=%JK; z5-V93n8DWgMscMBXoB-D4a+Quah%E}X~N^hpebCV zpx-YJv{&=b2r>3pqs=h%+pxxJ!zZ8Pen*2oT>GTIQBEgvI=oFyWF4wlR@SL%+ez>BG zL}lpPDu6X;AIC>hh}r%{ls&1b8fIwlPkLRG1bXV7%|;sx^gU8>+Ab5QjLwfo8KX}Y z&7%GmPlKpqp5c+$JCiH~_4k;=xB+dYgLjmH95>b}dK7_(SLJEyiGY-x3q`2$oH@Gb zW9424+668(Dc4w_t9C8wmZ?CiFDlu@p94*wQNQAt0mND<8~NuokiCG*g$GJNjdT&W zqH2I%ujE?{U>BIE`LM?j=Q2_ciKya9GFh(QSb7k~9r~%SSjU541>@?(~P3|#*parI%jJMhcBq&$RV7(4R5IQ{HjG35l+}=JHJt=w5fH~L} ztP?+v2z+V>a%p8)x!na+v@^hYKp5x^qgiB*DUfGK+vPHhjFi9jnMi5S_^D5wmc{E4 z8A@O9xCGkJ$9h3GRJh5z}W%&t}^$vPwpdN%@n%hm4)$5nsM=7&jO9d zGkz+_3urow=Q1-LP~3~X9cE-e*LZClUnT?HwXwgUO$-z`FQXlP8i=6Yx4=yXC_ml! zr=}>70>krkp~pby#2c$+l7L2?{mI?1rUgCzX&Yfi1aGIv5n^Nlb8m6}nS*it64%eK zhXIYVKa|dl2cn8eH!$o3Iy`*+%I;frMQ?}BD+hqKu=&*IG(NRNKkZd0zX6(}Laa0w zM$7UofYMe_N^PpJqQLZ&w^-s!ZTR#OW zUqL5xAbL`Oaq+1g`fBM4&k|P!SfAFsG(K2(|XQJRn)>y z5Ov@7uVj%VJtUVt3-0JJ5D`1S=f&~agZ~7%-Iptvc$*D$vTo@3H$1muw!dbv>qVu|s}b9Sc3D|+d^{h>Vk(tz8lMWj^2ZCcCWDq^qsnZC z{aK+p{<1#y5=ze=vSZ~3YMck@rk03FiwF7y-PTwef!gP}IR;15(UqzSLZ~*t4J& zpD%gz#1JTfdZ0a_9>`$d-Pi`)x$f&*N+uY~pA+Q_2GU@y%gN$YsRN2Ev9VjIvl^h3BEfr_E z)&rCpK*+Pz03>|zm{AM%M1mdSrF?(T_;oxOgbjcmRuMB_!rG_o64VsKyrMdA!O(LK ztj1AQEpixN{}b$D-YK9RxUw&1wH3&N=^GC*=9LEt!TRpEU+4vOlb;_2E8CZyxi_9b z%;r*-*U_gw`g`WzW7e5Y8RT2xNoVfLp!6R}=N-@G7sc`Hk;*Q!>@9>Sqo~ZxGNNpX zL?neoS(O!%5h7*NAbV$Kk3<<|WD}85`u)!N{`Y=;&b`lb@44rkd-*=!=PNw{?WjBL zT!!&(bqX4j^0;qhi_)CDUXND^%=yrckrzitXYT1d=K5;?~7Fd0_U-@ljUL zY;7Lzd3_BiYDK~Elnl@_%A_V*?E5K&t=hF2wDG%hRfMOqGhP}cl;g^9dTj1=OM^Ao z|4dS98PH(xR_Gzj1-TED!m_wBoCjo2OfG@7U3$0i6z=;+ESYazoCD3n#_E}rF=yU)C?#-KfcCnH`oLfTP_y={gm!zN zf5A3ed02Pz#%|liVoZ+AJ__7d3f7vAe^F^`K*7H{Q;*;(G+$Av+}8!#dU2fFV_e_f zrkC%6FkTq#thA;v+G(^m7K=VZy8)i3`gXV@4(aMyrVoR*ll}eCb!H&H?+rP@m@~)b zo&2!X#9RO zYdltl4N;SK;r*aFacyc33jw+6Qaihg0PSx)B$S4;6tCVNO{iu`y|1qhQiIjnf%4$L z-$06QRK$1Te0x{>KTs=yHY(7Q#Bv;HQ|I4ujtbE9dA$*q7eM?Ys&=wik?344E?&fn zB)NK_>K|tE8}s^53LHUNKU0-LE%a~ zYMAi_`a=&5A2O;4tYO;@%zIy-1x=U!aC(&kP?~z4ArH2b;d@EluK}8K9!qi~`nh)D zdOr=eGjJnoy@b(3BQRGcX%6i;-X&49U_Ae*>M0gt0IjlQcjkv}Aj^-Rclh{##xm!F z1#pcL#1h&hK7b|_O5aBKSLA zu2>lbY22B<%G_OXRR_(><5jQYgAUt>YIIKy*7IQVx zzSBL*1p12F4l=*S9OS=W6XuWiP5!HDL%##oC((IMMtFV>x2+dz$pei=r7CF;o*g?A zPFtDX2hEuCZc#txN5D7XQ};iCMmBB6@!}QG7R!}$Vo!k5BDrn!Fl#qmK50kffEJgs zZsma^&^&U1q6@Pp_@}8IdmmUO&fjaYp$CdO_?YgH0#M>kVbyQ+L9V*cZfo?K^WHxl zQ|PM~6cs}$=b@d^&b7!3|A55hbEyoV!5IJaOM>ih#%--F!Z84U`gI%bnu_G{f%Pqlz;!84vl~kJ+gBFk;T| zBUp0;ISuXVDq95Wqk&fK%bV_C9on1pVpVq* zG)u>h)F>^WWl8DU*N1?@*cHBQr~=vi-5MRk%AX(kV)MclXy1xn(N-dj1((U4GXqUg zFKu=#9wSrG<8tZuIzjt+@Vl@3L7?Xw@$-!DfnLlR zdpKjpYmwFX$DoJCNsc#@Tc9=m!IU4)qbZ_l)V~|Fdl`#KxfmO1e|P0fVw~D({_8cu zu}s?9iq3t9cJ4+&IWvcWf(FYk5uWq)V&Ghl;Q=j5rKL{@qxiZ`n_LZ!H11H;vT7h$ z(+kMHwBov%UexaDE(R^IrvKET6F}CEy4yLYf$mg1zOeHZ==+3PmXZ#Tx`cpfh9S@! zS<}6p*+AX54t(?`0;-TBcI?KSk)%InRcZ`cM?gx79eVsC$6EuJYS0Wf*Ul95V&9=U z3wQKspLhKeJ=`G-rbkR_FjFo>ZsyqgLc0uBC0_ebpg3)E32WZn$46f|gCISEw4 z-5s&y3^ev=pAO;Kp5tX*mtM_*_PJ=Sg2)p{;!IHRdlA%hyM&s{fVyKX`CIYK`siOa zUk0xE^^1|F?{O_>4ePgRF?R2-@cjx$ADr(G=95SN-4OC4zEJ^JQ7}t!FvWQgGX;Bk z;5qiwVUtVqm?^Y3bbpoGK)Y%^#RMwcQ_d}X%^-XSwISfk%w?>~9T9hSQZk^Ota68X z3r1Z!zu5aSNzmT#FkRA10P>wJ)nxGi8XunItHmgh)jJlagI8W+xhU3!xwRaok>&Rk z+VRC-^_OG>+Egt*sqF^zbY{^f9M_}Tk%`>cA2jpID>9K72R>nJvjWZeuoU` zuUaP?e+ZBrPXe1kERb7+k;f18X`|7U_YW!1DA{>Po}nl8oZWB#5d=+wpLxcb0cb<4 zXy60ZcG-sMIY*>2)~J&td%!B!_B%udJy~~?#*uahw3&>+B3GPm9mzZ1cGw5#-EOJ^SgI=Mx~{ugs5LzhPA8m>aO zdF0I_6krWZc|jJG4rFJ6$!0DtbI*&)fGWet^}}{^XW$A<&Uh1L^)ZKzqH` ze`!4d5|=0WGlLnmf6AGi@br^%_c|Bh6F|}dy|&X<(5}2cHS_-t|C3wRSxPGO{rWLm z*8x`0e5ja>78-!qo$5F(F^Vr;Q;M)^0WDJRu$3c5-Tdi5D(_U#DySxZO@{;hk+yYj z-4E2$V_yEL45;$Sz9S*HMnMnb`ZU!+V-Ogzy^4F;%NAzuZ#b%B$tx`9am|B%-nedw z(YZzxIFN{u?dIL+pN2i`N52|G;3;i~X3FmMC%9hJYHpJe#&{)T(RmxJq89z9>bKD2 z;#wREOli=L_gzoOaathu+hiImCxGlrc{7s_0_E~O72Cm@xQFEC0p^dO4XfYHlC=f8 z&CfHCdkpCQy}*HaEua>2#t`-uAoH+oA;KHDCNyO0{^H&fUwnwN0>|90q)@1xkM)qbf;RQ-X67;i^(YoN}#znI$omF0V;VWX8#x0$d%I~y(S+tw!IwG zGPskZ*77BX*@O1?tqAK?TsIj}|KD@1p#7*$$YsJTt08_wB{l_`q07;3ZFivj&OA;n zjBz!^Mk#-s`OW>qOSf?scb1r*{&W@EEu2e;;pGCd&tJ@%$DG+*Nst^ukIS%pAK6g= z>vh*26`m*{zs#Gq3%IYo6QCH*`VE?^b8OlT>?^&IqA!>XnpmrIdng-_k)hzA3|20Y zhvm1&1VQ7e7Opq<20AKq{IiyC0ROJ2E}4ze>Idtdt%oC-n0b^Z8&-$iKzlpa{q^Vo(7p)&O|Q<7DeGmUzOLzbYnGRa8SD@f%REDZ}y3+3-q`}PA@~v2V`MkmA8e~ zUK{J_ayihdGrT@+;mTNl`>=Zh&megv!zKIzU@dC)S&I$?I@81IoP7?+`-*~-0FFRg zB#uld0W^D-qowaKHuxQD#n@6n`~RmM&%MQ{>-)Bm$CLz`M@+}@1HnK^)8k(xG5)mU zUhlY0g2wtf=ueV1kn7UfJP9eF$JJY#6c{gCy8Yjkc|iLpkwYO$4b&_5z40dcVE4sS zeL)XFTWI0P@LmHV=5-M$##LCbfBQHr48-#El>BTcQ0Ju7iuP+D=@s{OQ_O{_tDD`2u7GC2*yl|6 zkEY@c#(8Vp*<(*ppFNGyeyO8Qiw(VYZfNb_crx@jtoQ#9Qf&aeNfc<`8w0f6-8EXO z0;G4iimW&sNNH$m+Yx;~YY|?-UIyAbqxuOSaiHN73h{(Dw66(GU*N=eu5*}~4QB!? zoABvL8?2{}p?3{KJ3&iacP$A+ubCbp=b6V`^*D0fASoWK!~z1rk^6xnOGIBB=LWL4 z+t%xeqmo%8H{%ciEo?O4`k`8&OOzxlu~>fKCq2AYZ31 zf6S`{t8teKks982g4a!V`!HzfG!N}G(JK5re&_Ke(7d9kgx#(KG2T4gYkC|gTZ>~~ zv?fqR;_^$+UZ7L@ za_m;|1zeB4zSjzM(OP16HRP*5ScOyUm`#@ruipc?_cd}BD@b~~lv z_d=kpm@b**uK+p!SWoE0JPLGcrK(4-4Y84N=(&S6|F4apLNSo)%bkfO%uxDaQ5QSR z&{2lrZ?bp5dd&F3rOYs(S86?SI=EM;&(^XfSb(M!WJqf*31rxRzbBs`=#zfo(f}Dy zyT-vurh1@n$L=#uU<`%J&GIeUg7)fztLHt;eJ=VV_jp-ByK2MtpeF!GaqLlRR}Ro` zab7xGyfRnmMZ?={sEK^s5+nx7sn(Pa69Z~Lo7;3@7AVM!IB7TL;4Q_UjlOlDUAf^; zE@uO@nqr_F{|Bh=wep|FR3O{ug5sp)Kx;w=CVerxQ+7Oj$8ZEZ52=jfF;~USDE!Ay zL%Z$J(^IkSK#WE#lq9c!#*DxBb$^oIVcPB9#wDV%Co&t(M^&(zdn;5a7 z)7RL_ra-F@iAvL22b!Q#M9@1S>eqEu#M(AwvmCqjw2<+!@jJopZJwAc7-H0T07aX81-J_K}d?{wHt zyoz;T$dyQp&br1oGkdVYO>3SqbM}XJOPOZe&s%_s=k$*5!-(jA&^MHbx&J}cg7^-e zcPmo$60*_bZz_0p+2G!@ip*U=2MZtE0%G;5R?Wf_ z1@nRUt#F)&hb9G^K8`+Lo#@&y_V_bqZ`gwE^aomYLNI6AQj~sVRl`+w+eZqWBn2uO zkl24P5~z(~>ZM~pkXg>@QW6ay(WCSGnJ})FLfM1zUV!#o@a|p0TTid#U42w74BAQG zRO;R6$^F+K)~a6yZE!^1?=3&js20bCUd(_uyFA-2V#ZfFIiI4#xYzYekb8qGXp&F1 z*U%1nBq}M1xuCB^*fb;;(9iBC`jR`*FDW15M^9r;cYA51?Bqd@1+j)Z`gehhgg2&T z@G9@Z$@|-GfEM!7b%$&V=$gmbAf`zmA??(stvE|J+30I0y+G?0xN376<9?bh+LB`x zw5OHfK~j%^7y|YWt6?NMf3@087(KV>(9P7hVEy7yE?4&)sOx@<`Auh__J;iyg#X-i zFJ%=4>;vr}_lCE-7SJ`}Be93@Z1MM1;JJFt&`Fbf?t-#l)pQPEY@P-RIe$L2^fl1k ze37$HZUYHw?X~e{1gff+AsWQ!B-7TD`DY3md)ym_q}@Q&`{**4`+!WV>ORWhRhVh- z3GBpz7RScO8q^Nd?i3>0j5UY1E9tMI4QTSLS&c>AK(f6;9k(`s=w}Px__aG0@!*8Z-rVoLha{ubshjXLwaw}lO`8H&!kZntY z^@iUat;6X+3@PpJRI`9;T-LHzseouC6+XYhk(%a4{ae~ zNEQNGAG}VViupUgu09chm4Vy+^x;CR40optHki&qJMXk4lXp1F%=|kUudosl*B@8b z#&)Ib%5@%5(60Z20FiMrP)5iDxiqY6EbO@{!|1EgC(@O96P4&pp6s3kKEV6_7*iU#bq7>0IV<2G{pAzBSRS4D)8QLr-Lm>Nr)X2RwK+%;Z@BhpKjolZN zCVbZ;@59@d4LYDDOt*wi^#G}!f8>1-V@DKs&$1uu`Q0pxqO3^@OS-ec0fTZX;+qHTx+;uK>O`?v){Y9XSaU0DJ`T}i+J=5XGm1g}k6;gH{wC?T^9l|fdI2xQy zCFKQ;JW8WX8fR%V)F%f9;p>wEyY1#uH~r zz-sCA;jB7FcJ2!A*IzTBJsczV9l?3HpJPd{qXf;prbm7X>skbHeZ>}L1t%N*`8s;A z{#%OpUVakjVws!E(G?(eb8~*eyNbE($d~ z5##ltvNNy1I<;ym^|T!50Bgm&BHZ&zIE(vt{(<(um8nsO2`J87%*_V(o;3e}@Zdhs zPI5KQMHc~`W}345mkSiCaa&D22uNvmCixrI96ix3e|e0dKeEcwS}k`|zv(zdiE5 zrZyf}PI$g9de>8h2ic&Ft1s^^;{fuSQ|BSXP{f9_EFo*3D7@S?k`Gpa4>x*V%mal> zJ^I!(1=M@z%!zOZAmY!*ljm_S6D^6fUu{S2M}9NOU!ZG?KGwE1O{qH99$;Mv0!h#5d@yi`Hl<>K58l&`$9Di6h!(Kx8oyjGu6BuA=-S7D=En z3#pwn!g)N1wb1J|22DF#)o<(45(4+5%n! z-J6yCd*VLO3D&O{2+#C>ark@t57r1X6~(e*6|jD;E6RBM3FzSWBV$b=K$-r@ri6D^ zk9|JdA&>(adm1AtTPzSYmAmcmC{Pzen`H&Y)m7K$=2sts7WrNO@;G{2J3nHcK?bxf zR_F76n3umtj;42Gm3Lv0X(D{X^7iEX#Th&;6^Bzv{;Pl@a+ z1$(wZ^QgSiUVvBWvwhL@;RtB^>NF;3F~;+)sIPFhfL14WXm%QX`t2vjT|NfT#4p}$ zxK;-=z?Gyt%#M^GI{K{(NILCss32CZd_Upllfj^wyt~iVh1vb>xYT4Dp0C1kW_u)i zz-s=QS4snS2!|&tCH>Bzna%QM4r3MAp*4Kxj#;4|#W-+Q0IcN=EFRC^0{I_*PGf}e z7b8NK?mGyYfZ`b%!b$o@%-GpHUC_ctKc3OWxs6nv+=!tC?bGucKM3D87ORk)$|?r! z+fs+c3mPCzt01+g%Rs01@-zJ02ehYJY~$BUpvLc#;bEOX-ipG~)mYbfz1|qIVt%}$ z?6ta!bKC6DS&zI3?REu*OMk%;Jb%oUE{wZDxSC|-aci(%ZH}&fumlwT$%0+-E0E#W zxaexUoBuwIxdeC6sCmqGw)B8@zCFEp0I9QTRN-_QX#4s44EQnbeYhHfKVhBRIo{%? zcL1z9pYJmq#Ee>6;qrfp_q7onDEf`rV^AtoN3RL(3P!W39$*gAuGM_}{TsBZ9j4Y) z7NA|i-!J6Y0=1DAzex225}H$|FXIIwlC7|zF9rJbmtW#E##&F@9ILbqXnzhEB#Zw5 zx<|*JK8%rl%j#W5D@L|=e$BEc`enZIx+CHF)4_I{Gw-lIyV(BXHop#i-wRLuCBFhB z^7`P_W~}mxl%dJ<7N8w!m7Ly11vJINnmLEo-HCJpPVu0PHhz+_NC%SoL%Qaw48)nc z>u)_j(9?S+EdH21nWq92B(Po;@7$`njVp8NvETKBxRxnnYVXHbp@(JB+X5!^mCT-J zlY`hU@T)Z+S0Y%|SOfIu27r1*j;B4-0ZO{sJw@2rHjtKxd853p&OE-H7UruL=UX+v0FpRt`w+miOa6 ztbYv8gF5ALhc)yRTcg6eow#Ou?VCKbxOOW`R{?IVClT}^nDaLj^IT$$HKL7Qx;l8eCg4QxqK=vn~n%|i*tSVN#hl7gX4 zTxo+(-}45JfcBarLeS|M(5nNT6J(A+j3P7SgeUjx6z&Rj<31P>qie;0v7yq_yBT>I z+EGy2vHV|X{--Dr6{!Twqbe?SPEO2)H^E2dcjJ7+URC$DmP0#(PXu z?v~0>$C)SHo0=3xt@r<6DanI&SCx_k<#30PIj|>?8P~UBbMB@E`tNv_PgDYCqkM5d zpCLx)e$qYn6jPwDBYCSxj1kcOk9*vIG6B8NGm53aiavTb;f}BiXqDvkq;@zX`)G&5 z<%6J2FK778;wi(UXNzNp1GKOC&gWRBfR4VS*%x*e$f!u%UKYpPv9Fcf7VpcqeJFtk zXHFB~C3Xqdmph#OOg8R~$7c;xUp|1o-3G1sx@JIAEkBO+tpc5syH#201jM_KIj{lO z!{w21_0mz$4r&Oh7hoP4TeOzDmw;BZ5b|qIAE@x(No7}DkKIGEi|%+gp=X5=fpTCC z5UI|)b`I!Kr_@0MEg*eKU(ruka~>Q{Sa?VQ+E2}Gt4>ECof)zR7jX5ne~xztQG&MB z8PEH#8;H*;k#C$ANKBt}ZvbX(hR_)Sff3M1ba)?F3jxg$@2l*j2D;$;V(hp%&?3Vi zi-;P~G1lpbS&Y-{&<)>OMbJLb+}Sqw1Uk9#wM2m!=vmwK*Liq1ufNuEGp|6qC->7u z8*A)Wd39;Ecc9VJ`O@+v0Y#fw61D6H>Q448)C&aCQynU`#3)ub9T@PG0ZqZHyGP*^ z5c9TWffAkq#L$(#rT0}e!f5T22Xwa zy&X#GYC*eu_DHf4-Ys)7HtW#|&_*c@s?0D0T-&P#>LfwicDr2YA_f#meov!87HFAU zPc3^5$U|B<^&##|?s*v-7oLLlui&LsI$q^Ru}?xX=IX66ce)v@b)*}=?nmWAyHoiO zsVp6Uk{^Ghzp)9_Zle9Z30GA+{p;MG8PEi-d)(FQ1k$*#HUJ z3~_4=Tt>fK=@CA-ln(7kT}Ru9?f_YzWZRe^1u7<9B(pmYRe7-d2ec~;Q50PmSH98tCweA9Gb$yE(3Jq< z*GO0_e*o0;w$L^HFOZna3)-jQKqqd`%`xNp9@Bf1Qi|)*uN5~eHUZWwk+)=S20#=g z%fq8sBlLHX*stLAB%(Z4O0k}7ia0xdN;O7?y*(0*O5 z(%2=Sh*PGGOVmL1HkQW@`~=!_IrEhMVW1&diid)j0XrqqDA3VkETttv;aiSeN)AKRtpRxf~+p19ELI_BlI50W3!!$8}R z`sI*r2&9&^PLqhW(@$?Vai}n8nxBIsW%YnK9LSD&VMQ;aDhecgSIbfIN|6&ASmmY9 zEzW8H<$05ny$Au~mO1pZWkV%BK=S`GIBAA}YSYesYVHEc?|s)B zgg&@BubSh5YqSxg6i~|u))P%P{`OHD^V8r^5earoS9iOARE#a4KV*3&_&` zN^$^>J|%*vjqvTl)ITg-uDEObd`zMh2z=!$e|YjTJo=# zLVD;^%I1w4-m{=JSx4PHiS3Lz)@z^OYT4=w>~n|#t8)}BS^XQJhGotfKI|bonEv}E z?uf)EtOQH2?(Tb87^aCmzLq#j3gtnM+`$-g{wScC?ro|VoMq6S*Ox8Oe+5dh1zDS5 z-9C81_W)rxa0v5$iT*227Bng`h}?7docq(_38UqWkS2GQwo}8 zScfD$m6HQ_LGu_d%XJL{YUi>N7up8;PF(yq5i6@nBCCcu?gn%Zcx)Kt@G3#lJbTXp zF$~O;oW@9eq7^;of@d1<8@Wc*=%Hi5Y$k-y1J374s}X*c^IfAZbzKGYmHFN5@(%M{ zUt8=!DQ5C=XrPw*JXqyLM;7k2046mHC#)Wz&EFVk7Q@x@Iy-L>a09dqX6InGPV7;1sXW63 zNPS#FNdfl?8DWZD5o@3YnCvPv#TvHZs+vjF1X@GNda~IZkbO?kH%CapWIJf7GF3|#aGxIg z)KK7$KKPS;{Y*k6SeryTY`m~OyB|7i{Su?SWTJuB$qlRz9As(e1b~o4ps>jo=h$kZMKF`(PxqTvtGR~fghzq@?^?Xax4xcLR3+(xgg zjdh^m=1+QGt^s*^P3n(g_LS03)o_)AW z*3^!!DC>8C7T$U!bKVswVdW7IDUPc1o?QapDroP_{1m*f#;!?k%e=viQVolgki&{O zk$#^fni$%Nm1l<&z86@d^qjA!4z#}O-Z@bjK$jK{#a3fpx+Y!T)sN>5nomNG)tD(? z8aB6NaUMUu^@KHQL61K%0bvW$KnGkc{mJ$KJ(~77$a4fJcY$+=6#X2v_)?%AW2o)a z*9k@juwE-s>?_CEFyntR%~AwfZ`$VZ9C09jvxo=x{eV0x4WoB9fes{lzDvFY^h&aH z&pSK|M1N%RYv=;)y&tJeE5_snqv?OCv7m)hKfZGGB#>A*HTAEXK=IQ;7YUzC4TZk2 zuO9>LVQXVwaFlGU9i^vhH&pHQ|ZXpHAyaUEX;s-KpPxPtZXo124e^9X1m#eGi+ zzXhfwRDb>f=H+plJhzA!U>#)<Dycj5XVgu@k+apcS=C5I=STI&5Cl6N>q3 zCVVn+-4HbDi^WvqxC;H}Iu-unzCeDaLWGYItojTS``=(*#=q5DAiPa-NZ~w-4Fy=s zVyA>IVpe>5apY~E1!%;{=L9=<107)E39G;gEY*GIUhg~5EceHC6F!w$>9ZTSzXV#p zB6&jfGoT(t?QQ-yKqP~S{%7NW{(lhz>lAvU@H`J=mIP=N9Ad_dSXKO*2A%Z&fadh( zlR)D~AdzkEpjD&_*KetPI-q5hv={V}1BKsq6Q8vO`g*n{_#{^E!<08@{EmZWlIr+n z0DVANt}DmE3L2@HhV?J3Yh>YZHj=oz)O9deFJruzFsJ&-V14;rw#TmcHuTUMX!}h# z6Yih4V(-PsrqkcASccvpo3Y~wE`@f9bh%>W!9evV+8Pq2h;~PN9mYUx!ag7eG%?>sYVk3_6Wn>{(|JBH3hbRM4CI%0u z+W~R)bXiQ|JHmlzol6`ehuirx2&X)8lW0_mV+_q z4Kj||`CI0o)rt0{7DofMM43i&i36pNzTRj;Uxkg2^d5}_ZFwRq&mXg5P$%;1%zn_S z)FKCM{sH~FdhP0GZ1?sKvzy^*(7bvSKNH?Iqi{xeq~{7~&I6f! zBme7#J4vX8f*==0`<~01$%OCHM!8gJSK=vX<3|7Y3?b+d{=A9Wg&xRd+H zAUy?I)mqz&wo>uR1&4wkCIUHEh39|5)e`zBrJwZ^v@OYUj|W(HhrS4YO1ceNk>JXl zgfS3viFH5|=Bh^P@VGW!MVP@;u58}A{e+8{6%1)B4KKP&ALP;rKdd8!By&%sTv)-<3gzb6*c6+r*aWkl!L1AUg{ zT<3QN@;NZWnTl7TI}ohXhjH-OcbU!yD>Zqy^USxu(9WKQC%*}I4P}{wi5Ialkh!1E ze6|f%@jIGPA28#6p4~H)LQl?}5?kWM8d2eWUO96H+V$4<@jAN#Nm1)xrGE!R6n{v0 z2)$cjK+9d14cbGOBTJ2EfLK=yX&fH{9no(d9Ulcs5E?%rD+}~3V0F?LbJdAf>Dw00 zqmL=RD2eK$a3{vdfY5_2_%Fw+6h=toBKOWJ{K;)KE$>w&^`BaMzN0GVWWeL3L{#BsYw zn34vlsar^f@PF1i-4)^v0nkEMIPDBD*4U2G&)bH9mQ!H;)JGHP?cqxvv_R4fT{`y# zfd==Mi8f%qO-GTxk-82VhqYP7x(d+n%AFM@th-%09$V^|q49Tb=byrQkWKB;F(41^ zD)}b&Nl5`!b4YfCW4`6neaN^N4qDKqbu~`hQ$B^V&4AwkgY|+oY+hwwR z1EBq~bo0K5GcS0;)urtK8XegV%{%l#{6%77eHYM9M6vAdbWzuep^$A^8oI7VY>1y9++<# z7DA%`mx%w{wbJ@_ncoLGOC(0+gYhS&wWQ@L44gv?b#5>5~aS!+v|Eyz%6wMQWrn&k9W@9G6jeb)dlcry60KKzvtd7hhoviP_E(2V%A8n3k7e zdkog`P??SC<3K6$WP2{W0;(Zu{mV`TbZ6-8wqhHQ$Y;`qyKW?>-9CLK;8OCVo)n)+J2Z_wFFC1T8l`AfA@6&UR= zZ~u8Aa{=1rO0Ew5z}q95CZzW;DuODO^~zRRNe1>yT|&f2muAIqUfx0#%ZGz*Y_ zXV`LO9?($MVfm_0K*s%?n;$T{Bcs*#)}zPEV?#zvaRi5Ivuzbipb3*&)wbvmRQV}W?PEF@my_~@DwsZMI5>M#r{WvVd`eN%JPGeXRU_eL-3Wd4X;xH>@NPu* z*D9`I#D2aydt_DstfzG~iTo;oEL>*Ui7|Gc8+-YMOo2v!XWQNieGrh#TTpr(w42T+ zsA)NXI$GHseqrW$+g&=Pi+&OIOfB$g1*=SL(4;)>q3yiS4Hl9?`zuf}eRTooPySbO zAFLqB=11xau%geXyxES&>T_D;fh6JEvOD56;zFU&%+$*3ZK4J0@ zAe`Wnzx>=rA5=#d@Y3A|D@9y-`Y&goe}$^&cbfo}h#WEai2IC!{TrfeJaI=&waY)o z>t!D$yIX-PsG%NAB%T93c;w7&-&z8(PdmIiZ4VTpdA;B}MyK`7?}1vlTIZNAd^nG% zmbu^r3RTSRmbFAt39RGXHfww#CD1qRP-9EJ8&KON`?~?BfWFgzWNPCDN~%kJ`)~uu zdB5d#!kc&lQ@i#OerNt1$uc*a8d#s3s=Z^xJs`w7JJgm7v_~%c_}<~JTXkG^JQ}N+ zCGi6*K{l|uQ#_UZg`+>nrujJ$kgHN52EHUDnaKi*f&%;k~BKG0>#bha3q18}{_Hmi)dKv_YnlW6C%qk@vnT zEP9|VkvDuz{|CgUV{lFG0Fd%_gGE&>kOb?kG*Qe2X?EYg+;2gv7%#H=V*un4pR&&` z2B@E6ApM?!(=!ES>hrglAE65mK$9}sH&$Q_M53K7{StlfR+`GD8SC!6+l-3I zN3iZQUA#yf2E?W@+rDCBi(CJJI`V1Z(!C8ev`wT$#@km3muL(Bt{#zHw6Y z(9hrex83l{B!U*4mvN;RJ9S^#dP6&{d3QI$?{X({HkZYqpNp;JW65{GD%>d0{}QYG zqkcXLN~{s@d8j7{b;!?Fi=iqG+8KoQ4Ey4I?aP&)KC%LB@kvbQ7M}X*tiNz49RclO zkT+YF2+;VthQ}`STDhTtM&Vh|_N9bdP)`6YD0YXRxdcQ-MyYoON52}Mev>90G}_U{ zoB+(hTx!K{BQXa*LwdC3W#rXe&|6lt!zvl|$bD-~RM-E5z1APd4 z@8_ii^fE_7N=yT2)|p$Uco~SIZ&pj26zHaMHeJvrP}yaXy<|x1Q=Wo1?tpgml8CRH z2~fWeMc)Aypsbz%9|fFI!Kzzt51wfTYEH^_VO+^uTnU`ODAut_>F~j*8*?Wu*fOaWZw>pLIqGFKp*2T@KTdw{q;5EI+q0%DK~xkdP&TQ=?DUv@*#Dz+JN-eK0- zPMllYK~0AC_xRU5uu98&Pkq$|lJ&~r;rt0yT*%xQMg#OHb@$CXfk4z;uSv~tFVpQ> zU`@lm+~t&H{v2SX|Fp0^iYw?u{WbNeG-$zW^6|A*K>6hRP07T7R$XGk#b$w)tnDSt znSshTI+c}i%}Y*-RuSG%e3PbK=>&SinWQ9>%@*4AFb3ad$MI>u@?QIm9^XG8Y}SRo z;&k+={D)UrHWQ6VL!b8jo)Io?fWEDDrJtjEfO4PGGZEffYxtFVhIj!qvKPNolpg{; z&SQ@qa|Tj9&&eT%xfK{9mb#P)np*B}-StGEpW=Hgu4n@3CPoID<7xOzSbSF+KWNg? zEipOKK=W?x!~{PtuZR04c7YbnS?1y)3$7HIZjzXtEe15xrMUZ26}G^j1Ro`L&OZmMtmQOxsV`z{W*TxfS%Ktp;F zYsu%`&8~!J4g8E`HN)h=Dy!pqMgixsIl}kStp+qtVy&+sn4vD!76v{#pbbr48ebg* zI&^_rm~RYd|7*#+4H7_OkBN6_;*2Z?|2_7?Rq*kcdah;$*58h0F{g2)bR4FGmFO$l zQ{g$B#9%c^io0)uQ6j^kbbB4^#;506ci#L4YxTU&n{BLX3Kk;a-dIbx$Nv_ZyvHkF zt-49Z1XP|>s@08qPsGWA_)9lH`}H}-HJuiSgn_ih_YjcWnd{d?mVp#beJ_SI#_xtax{;~j?EYlVf;Ra&Z_pOk^3Frp5)t|#rKmyjb z=h86NLPr^8C2{}I3>f%ShV9zfW*|-|TIe1q7bl>*xE?&_7P}y^|;LJz6R858Ug2p3tjV-?tD9Ga$H^UwviQX%RW~PBi z5(f7AqQ|KXAJWW^gZ6`~vGXd7%ulE?sP-F@w|oW(%rQq;#XLx5Oy<#>Xz(nL!3>(}Dw-&y#y zC|?FE_ve|nq?qwE3_~h*UqCxwCD8dh1N**b@2{T)I&?(sl36E^Kkd2XJ!(L`^&cCq zV6INQJJ+u&3)%=zqEdf45M4lLYYDDkI)AHIpDk$3&w6MN6K2kOA-d8Cw6(eVX)ha~ zr0SJ)I~kzaSmRY1Js|t<<+kQ%{b)P2n!X#f8?I%UXa543UOsH@iDMQ&aq;<9H)s}8 ze>JY)2%dLc-3h{)Q?WGGG}8{&kD0eW-@-9FWjMzhp-%;sYE1hlz}jSz#=vV1G;b=c zs3?X#&a!Aez^FUv@kNpucVa$zq2J2PV7+GW@ZDw1nZ>M_TTTx^JJ23UZHsf`KjFu= zj^6ct{eh0k1+1l9Ty2DNv7|h4;x5dO;ngdYgtt6se>=eaG#lFa$u8aQ`Us?Ee?7d5 z4Jg-tmZs()5Hnk)NEHi^y-#H}TPRS@tqP{C>p)SFkrbcK0_~P3@e02P^d(?`#()z@ zKSw!^tOF=9ykY#47Et4b)K|7NKzHLe$fNfI-TrkcD+Q~{lf0XDNpzrHPq?9Awhzd~ zWbVGVAW+HMgQ7)f<@S8-Kdb=S-qLNkYq;i0UupRHhCmCx&q~{kGm0GM@eg_m+F3Gr zI*9_HGq&!!y4QgI^uBsY_$$Ah@~pZNW@t$EsxT=#SnqPmCxi(B{rq`J)!q&0@Ng-A z>K-7^G?~yd$v}$-EwsSQ2P{uy%qu?!tIknFqET-kDRP~k)tCXI zjjW8!pnCeS7RpwKtHK-?)W zB;&CrR>dch&0{omw5h*8hBb$hZ~Xy#IkY>mUVP9x4=B0K;nb~9Kn}DrOie zv|oUholM%bh4a-B;9sHp1==v{zTv_Epx#Gnc`w_5g5sa=uff_`D{$CB5$C~7yM0wC z4y-w`>w{CYK!P^GXN6mUzTQkMs>3tQLF>j;BQDT%wzU`sXMlo&f|Ciq#I>HGe2MUx zI-i6I*~%NRK3vV1{e(Lh@1wJ6_bWhCukO5~i&+tDmLHo$4_f`P=SA`uYh@;t`U4o_ z-ihi_su-Qg5e}wRSk1=iQ|)gDL66W1mRd_9AcLiT+rQ|0^(TeiHdx{OZ5yB1DT8%6 zY43ECHP8yLPPd#k(E3cpu`7x|&ji$NcH$m7)2MRvRS{@)f^)|STp5=%ugA$$U{xS8 zUR5ztZtum+-mbPmtPw;? zQ;NQmpwW3ZdCbKE9neWLzugIRy!%MG4`!%NmU`u*&!7!z+Kk6x3=wf(WVPP_O~gad zJsR&}I!>j@h+~;LoBbunAFL;?xtJYj0y^y;bx@TCXsN*93gLgC_JY;Yy_kbWel~;a zr@>0zptwVfJ~gk&A3lR?u9+Fx^#=E-K`-6f(l5~NQ4g6?7tSN?wAIckW?2-|ti;_U zu-5w0QXAg`Qp_Tw*kuf~Wnbg)pbx0;KbForp3AR|;~_G#G9o)gMksqmWQGuBr;Loy zAS2m@P-Y<{8Bz9%NcJAdh)5JdB4icM@47tyygg3aaEv#3NvO`T>acE$=oz%MDM9*TWa=TWm&I^FjoS4Ib5#1*9}NS z$n|d@*2kyy&Q78o&|F;_mk4eHtwd2@$iY)XlrQ|;S*$Ysf8CoBMPRLt4q@7=0Aktc zJT$f!h#@YlSQfq8W}RE%gBjr@rpNI^5Uj40|NZ_#6Hs(Pz}WRcpk{@`j^EK6Dt~4! zCZ7kbYw5A=*DfG7hKR`BZ;G?fjXT(eD-}7;F}!C3tP{PQ!M9|9o|;C)-WvxpPmhYo zGXi?gF2`xY2Gp3$@=$ac=(Vex@D%#=`M&nKcYi<|pqKvlgc#`JgDn;vIUxQJ9ie)E zAeX-I&#vV_m7e~hLBD~Lhs;+lRs#*>mpL0?#a}Cb$~%7-wCCNU)ne$$H)reLMMi^m zOs=h0I20)Vp6y)PS0Fx-wg-KyK>jltJzB4TEdC@PIdv3h-%IsSHauZD(}R7;E`mn$ zx~y>bGjRl4;UV)9pozrYA8AAH%HFY5Y48Ot3g|A5;{zLmQz3)Ctq_PP6vtzFr%o&b9$(~ z%~%q%Nph#))$Z>aO^}?g`hp!ZU;DNE?i2U$Pqmql8klQ$Qbwn^3g}(!r)e$p0jX8n z%+N#7zR_R2SB@tvB~b#gv^r=>R|e}^aLxC9xrTTDb2g=P{3R9k=g{`xHz63UP1Z-Z zhxWmY9^J-Jl?A*ms3v3jk~`N+!EC6l!^JWC~UDUumt0#9^c+k z$2$7DUn!$b3$(I#bwb?#fXE*k8i{iODL=64yv_|2_2N3mK@y^yrhcOq7@ zmc}917w%wffK zzNQ$v9?%7)jcYUwKm>bv&xh`I>R??SBL~pv>ldn&vEKG?iD~IzzoHC!m_~qBVRla6 z<&!WjMMHaZ_pb!!@d&SL2SF>UydYV^2XxltV89kFP|mv)>)IqBQ@QhXlG8v(|G4{S zW8eMW<}KB|0@~0;Qbh|}pznMgxT)spMl1zq#L{Ys!$x;D~`-2&^TQ0i+{v! zySF9GqywXxa^<9whZG(mQuI#cjy(pl1fA7Kjsz5*g zBq*++uj-}gz1=22iy>M*BW@3*CBzakf*oBgk!wB%d!m4IcE>eFuzn}LQT6I9(6qpi z;EV`RWB|b9} zSDFWUdpOdPj33A+J3eCz@8MKVP-smF+LiL2!_o{uw=_JeC-823n~734K+Gcn&lJ0(#0VI1rCT*5!;qe7rr#2;>? z>;MWsz7&;!IVt|CK&+eEF{9!5<^MJiOE`-7c z#|5r_XzmBfJ9F~s%VMBH7VSU3@xCgDQy(i~CBJj;>^Qj}th`ha=6txf^XgnqgV;N% z?o|hGVdl);ytY`6ogr(8DI~iLW_$_ZNIr=5F%tQsdH2)C*Iq_B=i=%Q%f>Hik;Ay0 zA_IUzO_tB3~_}J3S0^`jClM zY$4FH;;Od@t}2smn0zq;w7+DvYWi_NY0MQBI+H*W40aZr*ezPQ``dWQK+}0|mN9^* z_<{EX!R6@jX`ikV6THgno*!ytJ1|c6h0ck&dq72J2@Bs~EwoOL8EfIGL9C$h{uu#S zgQ}c35-{(*w*xCnKY{jAefwr4W{zbn`#w6%zY5tQGZ*YWq+Tn3>ylwy#*Zr1mINSn z)hS9(^p&pSP;=QY&>Yk4)En>|q@3pwolpX8hWj#oF#0(vKS@8%9kkl8^6c0vK)gnD zsitRu9(^Ee%9{epA>dV@!=1m&2`2T$it-4jWp334>&(=@>(-K`vee`>-tV#{E{bVt*JC!Nf-~G0RCS`UW3;AOZt^3 z=Ef{#dLvgVXeF94N0qMveUoiJR#J_kn~g-bzvG0lge{`?G<) zY5ARGzr_S-fi_3dm@rFB&scl7egLhsYf0d>Fp!!0`jg9dfJpm3dvqQJvN>8C8;Y6p z+tD>^v=Owe#d@-%Sjn4dg-hHR^ADZQAHSf7Cf8Q0FJhJ)OP9ZNVhLv4ihI}?^%&?C z15@b@>}EA*<;9mV>nLktKDl;+wa8mQ0qf~&j-yG~n>r~{{y1UQxi@ECWw!zA{phF1j^g#$ zA8?AFe+t@ghsuONI8c%~?}>Ihplc5uTQy68a^)4>k5B477cD zM!F-IC32Rb$Is#F*&Mkh2gAT>W^0qzik*wH_FqmTdi)-}!@_b6&fRF^)W*54X6J|N zTDiHA=9I#ojVdV^VbKZNHJrd zM_MPVc!2hl()4!`?x=)E%T#+2w68YYrV)KW%Qd`q$E1KZPaTL($p;b=yX9Sv`PZJp z*&&NLv=KCAp!FB5m-fkNiD0kuH_qo3j0WwY@+8}r79ge~;!ni#KwNAxlZXBQh5vrT z^c&;hv8h1t0I#CXu~im^{cm!ntl%IEj3cEuv_er0R2yu!sE%iuI%A>p23Cp@;gd}p zN3imUjn!&@2a2_hF*x`JsK>8l!TtnLGpEV%#%7@RX07o#n6cWYETze?=SbWUt|UgS z&5`iR$srg=6mfEXxAS+J-*4{t1)Aw|MM2Lzpj=M1y${TQc3x=<+{TVhOX<6qRRo&a zLGA6`&*0CVF-Q}{y?I^UXxM{u`P0j4*Ti95+P{P{*)^c^URBgJJV1&QV*FHCzpNL( zw|8Lo@%s73(N_(uPc@zsD$)XtQjgzh!djixnQ+~UHIvRfa`WOWSpRlQ_`GWcA|_bK z)NcbKr;Z}qX95%?H}3c&1;}=T{EZq`a;oTu*DrCUgicSmcHa$t_p<7lB1#x1J~5QU zhIb>c>R}Zolv+{{S>&G%&115A?%NmzuR6NVVgSkOFp#ms*;3(ik@? zho5V~)?j`4-#?I|oPeUw@oo}|0r6YB;4kt8GD=~u)!_ru@Zg`!I0lq<{@Rh<@83;( z&OE>S4NY`O358>oU_G1Nd}?SO$X)+xr(i13pXAe4-i$!0e%m#==YZ@Acl>t0?@&>w zEN2pDh&?9@8e-8SOuC>hzJs|`7kmTC8`|XdqN}}vFT%cV&BbW4=2#9pL^^Kb=5Q(oa ze?9uXTKVtu8`uS$pAHK8Wen%Sex)a zAd)c2YJXOsOAN1cv!4SoH+1_X)&d=lry%N92J*`Bi&0?$lBYeFWRJdobKj+94_3gb zulxmHuqW#4@98neN@3@w6F0zp=#^2u+nj>ACz$;n?7o-e+jyypup(%w8J3Isx!< z_Xo3+b6nLy2Q_Asb_ppVu#y_3+i#cw**eL1n_(Yns&2hJi`kx=Dt`An<}_yk z80T^Ij=2GL;HP60)3NCL@?Rd8#W8b=E_e6mNWwUIBNzYn13*UMw=>d>fl}y3$hbcN z>8sxk?#6t{|9ZyiAvI{GPIFH3?Lg_}?(xrV03|mSsr)k$MkkD4S!y`Ym><)EcW+?LD!t z1+4`0&A~dD2dp!Wq2zd9wgT6^r|`-|n<*6yc(+ro(>Fbs;3|w%@_zc5SGO3teE(*G zcEj%#*)Qw|)-PzSk74fa4d1_yHV3T2S8AW#X9xN>*u^A_>vQtH%--P$+En10j|yf^ z&L+JlJ$k5w+vPzTo>5~hZ7;*EU>rd?&Z z_5HZyOQ3_tsuKyZ_8vyJX?JZ^J-kJ4SY*{y-}A!m9?eK(qVF z)E)!_rO1US4c!D<&GJ_VUfJQDpUDN&xH2eAj_wKvag7)RF z%k+U3PNT`Hmj%Qi!tOqWJCfhGhi(T~`r7L!YaaT~<$yZLB0r3)Th?7m$6Y=iBvy>D z2hD}RqKX(jq&i#N%fbsK;v(Rzv)G{Z2FbGNb1RgYb7entzLIm3+vrAD9{ zj_cYQ=0M_C=L_wyV@6(0&+IV%m;n3B!x5`t z+uxx5id!$tXaoB9cwmU(3(rsdY<5E`uJ<>Gf&LAa)Z$Gd$3Q25>nSz zVNFLFR`@!n!Hj^FO->KYmm}%7l=i5CwkQ`#YJ|BfMrkM%gI)Q;b^2L;MzAU@&)ALN z`hqJrjQ#OxE=tgJgjyJ^*2{ixS*d|EU+sUqgy*Vlp`O2j3TVBy(n&o$^(W`E_p3qMenOG(7vs@JCdNta3Yu_Y4acE8Af^jK zy!_bj*Bi)^1&^jU91i* zrLhDOy!lOA_zn<}+C=Rbdi>aL&uXDw&^o7Dqogc={`(;V=iUEc&CVLoc5Z^Ev`zX+ z6rwOr3ff~qlAAX7fR3hJ`b%#E#NI?_M~C&6Up^_Wu@|(;eBY6J5}>ADdiCpg z1{egh*lMHikM?zJ4=RCm3;#zX?`= zU?RVqv_8yDxF ztEd2CaTFEaeXaf(>yd=CtDp^S+z5Ah1f)x0!T;78XgS8j-sL1vouKLHgC?Mr#?=>J zm4WuR8lFzWwM_C0n(co6eAG@_bP9Xo%8j^5eXOYee%<+d>kF7sQY_#~i7|4gWPNz= zH)zX@)o1j$fVSes={#0|A`C6h`e7dQb6)hyvjr_PmQh^}yW<7zl!ue@pozUVPG2Mg zY9N*UYuyK=XuW(g#1SY(iB?o}3y6D#Ft#BD$e_U6cJ2xgImxTVyLgrB&6^LXPJ{N0 z{%jQWGEn*1sB;2;fr?Dlxfy=~9egsxLH!HpuRR}2a|6)$lKu$Ab09jC`??$GHAlaP zRWTTIIS&(^76Y(K5?&Id#hp(ZJ~3(v1nmcR{zN!FU7sV6cPGT2STh}4`WK%vhEl6X zl`yKeRY(-K-@^>4kEDq!xO$C|*ZHip;1Oj4!9L164=(DI^pD-Es4m^JoFOWs_v_@FNvyT=VgAY08E# zpfQ&EiPGo*oh=e&FE|L)@I+QT0lhovHvel9^Y8Yte}rXIV5N9@f+&m_NH`!@@v1h^ zcpGzp8LlA8{ZGqsD`;xZPO0%>WGb$9_j3(_ruu#UVb&VZp1BIuL;rvd>t>oypmu## z_oT}tX!f-MqPxFb#6qMPElC5~iy8&_C9KB6M02xLBhbv52#p#K0Es0L&FkVmf+@o6 zH_xJG++|iL0JM1SM(P;)nf-fNdn9%^jkoohmT$m1PTP2uNfzk1A0y4~ZzH&*aJi3S zq(97mf6$r%)-LlC@_E>$4%Q7huVKE>tvcmxV%9~DTentQ!nkT-^6A~zzV@nlQ=W7H zZO>a`MSiTP7cU;GaC`%8a>;~#)E&r0jj?LB6v#lHB|<)z{M30M^u zc?2u|3(S9-!vU3(0+^>)nL^3weuK6#YOy3V3go(Hr7R{2Nbt*^@C=+w)hReFkGrH! zDi5)#2J4qDVWSA_8#gK(N;)xf4vWl@)L?f0xcildDj&u*U!wZ3`#B7fBP{nO@C?wD zI+L$~D=m1zzIOO6j0=kQra!|Al-c}wdxr_Ah<)sqSQAkH;F9Hx29Qtq{iA=M0EwAX zS6);EN?M)u&A?caWkf$OP6X}ZbV~a7b3jsc0jDT1f@wDMZ$vP22uSNo+`fXu*c3Q|DZZWLgWuaZ$ld!gvb(uFBnnkJ(776K~PV>Vh@*ea&_T6*c!~lsk;7{6%9+q?u8GaafF-`Z%F}q zAmn60k_SYXbMJc>KHJU&y!{o$16rodQeTuEko4B+3%un(hc#9&Z=41iIcAY2D4Zh;$2cGW+L{#tF<9y??Hj zZ!W+L@7{f-MKVBxdY|Dd{dOeaEXDQ*#ohU;rzJpv>o4 z%#Gib68aqIHTkKqM*&zLW^LEWc7JPYNX4OH_ZMLT90pv|F@m{coa$OmaFunpAoI0A zAo4@c?#*B?$qL(=SH{(!W)B)m!JW$zFR&cA3F89p%KTCm24cRKcFPsxs~+w*JoX2) z;yH`NO{}9>E0RM2(x6>!%6ycGUYnLDwMt|IO(ZA0diPt9XC$S{%IQHH^2{urdtte6YeUJmR6DwQ;e+L1WpSh>b1W;@e}M)o}ZT{gr2_DA!1u%57* z`Ick|G+dD}XeKYXgq6}!et=3V6s&c<<<}Xp-nLlI{f)c~8dJEXO|K`AdhjsB;u^G@B{}3~z-T+cr^a>lT1?t+E7v5b#t72v?Ungi0 zONXSaa0Oqya&^PGLA&yPFRiT>P{QAm#TKl~(`m6LWSB#XA>%aqEMRR_xg)d02$UH( zILM19=Le0WO;6`Q`_3e|e}58C$K6-6gx)|O>)(Eh90Q_Id{Sx~1Qe6c$-u1%bTUfF z?d4%0U(yV|*ZYA8j-(vdG69OZsz}Qg4)kEW_U$Jlpn(QO3GHs6apHQu>v#{bY=?w< zsNFLs$)p(uYt0^$eNkB5U!@x&^NxX*9%E)Tg3nj2DZL2>&q32}F{?S738bel`sB}X zpvX4HSmi1p<+l@-Bfo*RQ^HJ5seryNA9$9H{ot@vwTsyzXj87CJpC9M2`l1be}zC> zd+y2*AP&^zGCxO-&o3G}H&r?!LE9HOe4l*-C_#3AYOEfRV|lU!2R^@48Rc`gAbp)x zDouz6t4}EL5Iy$n*lX9c{5e6}OpP%a#cK5Co^HR80GdYr;U{;zfd1W+;Ay)K3H~S`^#(%u1w6sT4DXAp zod7MJteu_)GnVjSt?@E?h=62N!~*l>luD=wQ3s4`_jWc^+y}(nrDvOV8)!?2;j|In z&EEgNZ#TyC!&QG|Ui}yDeeD)PbRW4 z9Q)dU_oYx`)H`wpt}Ggt;AQa&=%McQn|=d8HjBp*A(%yLMs)BfEZxvC0G;fd&FZE*EwCCr_@NqIac z0LVVV@Y_M$2YDAE>F%dTBj29B6Yw0Yj5XX8`YJ#hV(CA8PXk#_8T#=O0kPb;Mw^8v zqF@LAvKKb}x%ol(J%PZ9`qYpBA z$xPQ6K%+F`cySeH(EsX+R>s^QqP4O4&Wa=& zkL^+oO6H zJ8RmHTH+4W_J->_x?%P7B?;*KHi2R~L8p1%w4|J}8lf^pVu18>(~16@fT zPUgnzJ)xbvG>h>aun1c*Lr=Cv|4HZxgmKCwTYU#CUJq4Y1_KX z^%js{+}9Fb%ngS^7Qfxk=+wt)w3Xkt0%<-XF4!(4Z zdH6Xw%H3~#vRoHlNyY3u@w}0g0X;eVztooHIrA8H8uc%?f2ZLJ26Vb;BAIbUM|H?#CeSBw z?biL4K&3xyiGoXj{<>MKbh7}t5qlh!!iq}G@vwHl>MrdeaO?OE)<1sdRd#UAMSOSYLZ7A>$HzX+0gYL6!kK^^$ic)ta>)s3zl?L9kt~q7f(IqB1W;wf5!w;- zWHoEi$VYn6CX%f>JGy|*86Axhz!iizb}Ik)0a{eV{#zeafn>!QR!aSV8nSYqt8@d! z3=r06;PaYJh5JnSGH8)>Pt0Sme(#J%T^EQ0jr;h+G#Y%0tn+*wd=C57*sqctSInW+ zFrp59Rv0&W@V@;}Igo^@0gcCPAgPqK>K4p8a-GsW?Uz8av3zZL#QhF0o=kx+ z{`=(`jM164=Y&iGFpi?;sLk%HDW}*kHb-KQ`0SC8^Pvi?hF^YZ`7;4I_w$*HU<9vn z4D>s>f)@8?j_p=Ikp8iGaptT^-gMP{BTlpZW1J)exL3V8^pu=N7D8$Br0-u_aL}I=~Ii$S_Ko7O|{x$K{ z0P8{j;6oy3fmpu?@q3~*hUXin$v@D-f=KB9J_HJBXPC0r2NGYT^q{l_`l#q@Oo{#P z@WYC$U08!|;RVLwSRYr+NS+*Of^lgFrrmRhfCgq0^53olQMD!Y(69l~F|KxU837qz zyR1}$C*AGGf;V>X?@-zTaqaRqU`@+QTc{TT^10~nDHgNolbrqmngeL{b>*E?0opkD z-R}k`(Ab5-K66TSM? z(FVo^v1~k2!cJHlFJqmBJMwv$7hZ-ln&(a(&T4~kl?Pg14(S1L>f8GK83B5ECc$J5 zeZOsLoILCRn#&5C?JBPHso<$r=@X!7JRsy7xd$X}mwH_Sd*Y`AlLS-r+Vvk432*m- z^~0Uk2}SJBUmt3WG*N@*Yp^oxjn7SM{i$6KvOpW|ztxx32-F@w(4ycCM1L*f)EZWFUl1_&QCVtRIGrkbvzxf!~*H=z0KHW2GqOe_smrq=o$4% zA%RgK)4R@OfjvO4)xK}nUj&3890{TV1Hn~gybeJ>bO*RdXb-w(gtBOGT7lPNaxq(VF0!Q{@zU=rIG=0D* zuteOhI(!bSas8J%KBHf%KbEW)l!3PQhUvHRE}*sZe*Ff-Kul+v^oPCyvGg6+V7d?F z|7hE>TNQ|g==-hOk3d)E1Oiidf&Om$%T%rd&7CH_754~e=Kz}n5uRK6nSMtQ5$_OFVk zFS%nswefmirG5*n4Nr`?z2$+Z6=(;`}CMi2k#79{v3oJ#?sE^D-57m9ie5#Y1U1H& z6Z`-8f%f>o$L|G(K*gUGj|^aB$YhKH$`(K?Y2s-(_8v%{pz&1|3()iP6~x4IKyA;` zZyd)HF=hW23CBy&Hgc}tiFH?!K~981vhG_c^CT;O0wqcd(XQl>XfP zWuSzQpPuJG2klb5KnyF!e0ZQqE;$XfovQ--#_%K=_|4Wrr~umcb!#QE??5Hic1yFk z`lrVqc8FozvX$JOFXJx1JnxNpL+(|q(M(D|#A@~O!{^)));i|9$QLAZea!USfGQ(ryMU}WRBJ+o)^S(x|>X*MpF~4t??oK#8?#p#vB?_)1ZlM_x-u` z8R)rZh=V1r#jY}TUwkiU{B6bEmN$SJC_Bsc3SSL3fD37mR`Jxq& zjiM=WDn`FgASP%x=7|NICQeu%Ry$tzWwT-2{rRyUr?I+EZcnnDivVr&x(Qtt5(sG!d9-nwhYoB&%6~K&x6}OU3Vx_Q=b7k$mLyfg#Ep#&+tS{y3 z9naueBD#$lgV5s)DH=+}{$ORG)@2>VUGDX{rzBeg+Fo(R)G-DijnfQq=ktLs?ca>P zfxcqV{b)amU0LaEa{BJK^V*-{%20R<<8m9PA4y_%2CbV7xM0TqGFpi0IS*E+91*tu z(?BkN>eCkPt(0xHOhOXIF^k+tmb?lSqEPo`1S8GUpmfs*ySF`E$N_e&M!kKmR`GaReM*&8 zkr0I$Cr+~pef0tQJz)6y&H#|n**VvYJRtGfoPyo=n-yC}guFx_bc@{G!!-d`<%auW zSvbze%E?L+BTbU?Nieb*tWQt;6XRV2%6qmUUr!B0DZ=R^x&t(_t)TlU3&@lHayd^Q z5HoY0{gesN_TI8%8~1^HMUQfG2mm?M=4BLNF9}Q*3G$~0tu*pu5op}WoR?7@h{Er+Vkr_CfsZC5cJHrTLg&9xfVF^<#JUz^RMo*Z z^$07kT&5^Mk`AoXECMXr9zYYME1m!Pfk?hT&(wJjG*}kT81w+>hqsZMX*duQA362( z7*H(ld6II>-J=oJifn111!t>0GeA!!b57ph{oSgJnvL~iabQ()F&?^&{q*?LPa6Mj zgXZuvuU{LZ-xcm=z}*U3*_9(kYdk==w*87G@V=w5iSz~+Ks)}_@}ui@puwGQ^Ttnr zBv_=p9|-}4i++l|@*L<)@kbFMcA%lb;>;m?pu{+mA18`|?vpv#?Y?^_vSX2$1}pgr z`FgA?_UtQ5ly+CKN4%_CH+F1?84Q+cZ+BnmP4*1yki)u6JMxTYFLq@m0&CLU_ghdO zVpy|23^P_5=67t)0g>iD(Q8NrqLq|&p+5m+Fe!be4XNqjSe)x_JkslGgrB8lFfr-HzG$@3p{K8Tx+8?z*$qR~Q#d`Y`vY zEl^&|W7}9`ATFCexjj@ssyA2sKVgVRk75OU@3*SbUxcf?@{GMA;{~+lH)5536G&;N_0J6(pjxg5D$mD2l7zbMJzYQo z|NTQL15X?&@k+_R*gO3XN$Y>cH7~`tgfAb2aRq623JlqR=q;7GC(sA^KZ8y8VIR-B z#D0+p`*XZq$s9FSV`IMc^&YIU7(Efs7Cc=7&KS_XWW*J$U)=Jp0y1;6-tS=vl;$*d zQDPh@G{#Nz7ZZ?dfUsP|G-*lH8MR$3e;5iYHD90kjc}RiAym+r$U!)MA4Ipw08n{azQg& zTumS_0^-e!oqi?=^l#$UHAnP|youbt6%Npr*DRB{9Dsg?PB>k`4#GBbC;P!DXtb<^ z4~TyO<*7-|jqw3>mJafaIRjNWPR+`105LG1j}7w&`nLEmS3d}dH00XhTP;9SQ{yXB zp+F-WBobVYfU@W+?_{4vYr3?F$;szvYG1TR<1HhBx(8fvCBn zk98rr{Pev%kG`6Vsmitp0P7b{*5XJrpq46ImqawV$V?^OB6ha znRBJ`ioX|TNpx<}(dZ?Zk(-?J0F!_zLzkEd)s^J}XOm`Y+ zElb~umj&o2(d9HRoSP!)H~1c-s%4az6Y>JA0xQoG&tgW9Z>EtRum!Eq#dfB`59gY8 zH;yg>2`vr;Xuw_o5cmd3K(V$D=j9Fq``EzDU7qpbCwpt9P zK%Zv}PJF|>*N<4sduI&V-lXKQ$C&pr7fJ@wgFzG1*xvD2M{8DMtrm6x72l+4$N|?VDzjdjH~7P?@a_9K=Bv)$D~gJ>5;KA4&&W^jh}W8ybhYXa`wa#Jn4Sj z3$=WV)o89OI>n*^R-aWCx0x!S8gD{}AhxYpJMf_AyMtw9R&C6s!B#gGuR#QP7rQWAg;3WSLV zVLUM(^}!V&BiT{J)` z_twK{@Z_YcH<+|%2W^iKIcfe9&`UEaRaz6ENY`uAvo%P6eYRN?fw*2tU$~Y8RGA*X zz=0K|_wMxT_}ieRl$hw36aw)D*4Td_2eOHK#=^w{q?4h&yoOJ&;rBje?!L+{Zq`o} zECE&u>%s%R7`LaCUweCRfOf=oRGbxa!)|IhBcTE`#=0zmD(v$0ash{h(SL4qDh;&4 zU=^D7zCdFRRQ8t8{6i?vzXdy?ER6Z;6HmL{_b_+AH*|HA2WxH=@A@%(4%=kf7zrK) zt;XIUGV>mggNfK(bs?aobq?XCYe1?7XGr9*TbS^eTdsP6_V+S%nnemw7G+m<7Cv8H z4%MDLh&BCmZ28e76pGy-3VQ~eaRr+GeZG_u^F`B} zVVnCSXfd4<=OfyYk{iRuF94mXx_j+3YMe|@R%eqzBMh$6xb_8zt7bq$2d^j6F*tt^ ztrr?g3JvheWmE$N^0;PkM(dY5Nc#0&$(zURoatw8fA zue1H!4dgvpOiPA$`?YBNSP1j}1CO+%G@ft&y|!uoc@oAIYH0RrVh7pz;672758CwH zd-Kj9psd5kxJ8L z!|o%}e(vYD$6&3~1{#ww$5-Qp_v z4deD)>2F`cz1g2`v8yTvP4ou?%g_dp(96l<-1|W0fqs^(6F?;v=h-@OA4^AO^Y`Q4 zgcO5g1<{kV)qP`iSfQ^P-xRo+!i>FoT9nA?5gp)R=9bspoja^D)s$c*L5UhSk?hQ0wkuy=w2;?th zR{hKoXd_KOVWt7-c){|<9c7^I`VTXk<3I_6URk<0can;fDFVCHKQlIiE_$#&W%7~O zngJ?sa}(&s?#;Y^itE)VXuZ6zp4smK66HI3&)5dYLS%4tvK8nX+p)SutmN6OoL5I) zfi_A*Y|xBrz9bnwb^Rh}VcuOm6iPtral##(w}AXv*;~!cfga`YKf8*aOqt>B*!>?Q zFXdQbEE!lW{!z50o&|a;VRz`z3!sRvW7kS^fCSUWeG=~idGRT`lWYPJRTG+wqQ*xm z*(>tj^8b6Px^$e>oeRh`-@d@bA$6(3;qK9x>5KXku73E6f6!i zv=r~X`+=RmtpDyu`bN+WY=nG`ZU$;jYK{$@2Z}z%A3yaHNQZ*khAs@~qfqEy?*t$- zVoLUJ-+;axd~d3E7)XU}L8$?~L88*Uw)_Y*+2>MUX)}Ok4X0L@alfl2Gs|BvpZBmH zHM-IV)}yW8ioW{*{kWd&#*dLn+jBbp4AzX!rT34lc))tiqO;cYDv*oN z9pg*DM zX`9$jr8`T~UGzb-R=Q7l0rN%rp7LI? zq^|%KE)x5_RtI7?9w7ZR22@w{-|INEKwHjK38h$3fl@KK-EN@u7DS8bU_9PfBn{T! z&i@b)sk=FVHNB3=lLGf)Bd>35hjp2-vtB`D1lI7gou}Q%fvnFjn2^T;-J7E{-~Gjb zOzIlH44SAMdayv2C)HdI|>}~<8 zm+7H8zvn={s#dl{n9mFpewP1#H-@gDF&B2ENIA(9H*tLm#T+xQrD29$V`6O8TcFoW zgKwAi0WHjyy{;VqlHVk!?nD0-O8Q*qo&wGPs%mT;)~~-hE7|V11+?aQte-Xp>!aSK zGpcPs)e^C~){#IJ^=D*UF_yy&sn#>-wW_kYuYS0j$2 zgx#loS=M+D5{tP_ECU-@LqqkG?&9_0+rP08V!aW{ci+B&*?zR|yZ@yu80ROp|JLFf z5c#*1;&2ln5~ZvQ+44XM+%^kc2Z4xESN|CQ1LEr%E4Zl&^y9NmsPai5noG@lta*X1 z?VMy7xdSvfFHvBLcT?2KrMJNS8rkN?bmIC_()PZ35e?&PMq2`VO@Y2nxkdiLyieh+ z=W!hd?R}wIVF})sX;@5Y_ix>N>tBxvW5623Km8*VGkbqteQ`COWnm9~t@+^U&%HZa ze3lx<#kX(GWYGh$i=);?53#)UhY9?~25*$-BaAA(QaYJr%w0p)5U770w8AWlpL4T7AD43PTxSLHqx^lmDHtfa<=<`n6(D#1 zn&c$hG)f9WQkOjo=VZ*N#T!6G4M8rgSShL} zZ+sE40nJ^;p^WwrP`tA4wo3=lu=9k7*f}6khQHqA!a(mW18*)#0&)9KZ#!E6+5d`U zhYAcL^#t%tNgKiKoU zzvuwD27P+Mhq=4=$j^t>0idNj82GYa%`n>KM=yqgcA}~L^leR`L4%=g_G}xwY`LnyIlHQyT*7 z<@8b;mLov_OxEgrMuE-}X;W}U1F44OE{?eZ_0qPkH!c8GBpw`k!v`cdZ`dRu1@!i_ zgaBn25X0rTH%Bm9x7mUpHsGoTl}_KX{I3E2_xIpUyRMI>KwM!(inosg$=w|cx`8K2 z&8?-^Kk<1;Jht220lUTR>3?_s(!jXi3VbhjGn<%zKR@&nXlJxve&0WhSNZ)=Am$1X z^NMtBbOF%q%BUxics*Cb&FCQ9$CWGl8Jpt4TA$;xstx=OQR@y+aPP{+mk$z1TrMZ>zuAAO!7WknsWEARzZ@A~oZ1pgp6Z z7vExz_qfLUOrbY2uU4rUaf9`4^K&^$d>-$1u?jhu0NQnd>=6&FsBW%BqTSC@7&>(L z&Ei$elisu(J_+OE0u5#l@B_J|ogj^%2Rd=>*Ew=xAPZv(+GRXl#LN>!n(@lfyic6W zl);)g{C)WX7tmv3VvReufy{-Xl)OTKA`P<21hH0|l$ZVup!HqQ=%2weU>!BSmdo@3 zh$&O<-aO_S#g3|Eb{l935wfcKn4SEu`v?hAKy%IXzWik`kl=+Tj+SzukQ1qosxp8` z{WRUXW`NZ4{a)B2Ju%H;9l@T>Tp3`RhMBk%^o^|S2aMyDp?J|>3zRKkP8oJ6aHWlPRBH6US<%(Q0ASnV5Gcf4`N@{t<%2l%&X!-Z=^ z>EbYs;1FqD(J3I?(*4YDUjuz{s7?NiJNFo;8BxZ$zFRc4M^A%wI`o;0mNn3?_|MkO zPl1BXT`jwPfjV30&g}jg_mvk4t*tAd>5+u_5efo5<88IcISlmCCfj9E1}N+d3snFa z(4_5`e2Y+^?jXJSvzT?~X?~n5W&o|y;GK*#W_EPX%D`pJrZXmoOpYD}YuTZKolx9w zfShqn>^x{*?qT=L@ow+F@XFqg1nt5wHQhzbum#5ix?x$+UXo2n?koY(U(-3qG6BRs zIG>Y`)#Ii1^A-cvbjMfDUfor&zV(%v5HAIiExz^T3K7u3^CI+ai$JyJ#`>BHKm{Y3 zOI1ujLkDXmAAAKGUpd^asRFd~X*BB!_91dMrN#fY@t+n*xS&*y)|1~<^ABL=^mbRV z(s6*5rN(JFyb{RC>;(r6##~#&G_{@)GzSj-i;0Oq_DPzG^>V(jAw8h;0Ihn6aW*Wh|cN^zxB$5V+0(Bp?ToSx?# z0V`X_-iN#Ihuidc+w6>eP3a|FMAbT2#d7ZJ?yU!kk74}D69=UBSWTn;I8aKA{fV4y zAg_NtT1&$~l)YL4B;-IY`KQO9QUmF+6}p+B^0L}F0j!0?%wP#x;%Lf8=ANuCchP~v>WYe7{X3*|b9E)PW zoc!FYL-V^6G@4|}ls%k4s@apSGnh?Xjo)QzXF=;r?4M0XuN_a&(55&Bnquoo_T6`! z(;X_WJeCdG?XQFGM(F27*W>~NT&cIz-O(FKV9il+NM3vg#FtC{z2$!_op(H!UmM4> zLnR_2vl6nEen^OntgK{2X2^_;tjLxbQMRP4%tRuaBxFY+Bbzc4)zfu({(HYZ*E#on z&b7{MeD5!2HpS}3)600@Kd+m;?LBZ@2z}uxoXZ<%9YU)OT2j*kk4%im1(xR=|6xY- zAMGZM!1Z0AV^eY!f^q$pEDC-BK&wX9;-WD?`i~Du8|?==IYqJb@(Iv)FYlvUxaOkI z1Ze`bp!LlUacA`bH4v(*zR&}b9!z5t$8M1uBW2QH1DZ>_K9`UxQ0|TUmCvxpY7;O? zWN3m`^LXdWLJ83N{(6%p-0u%oh5->P&}@Bmq*5`ydvo-e8*@NQmucpIin&pCRjn|e z0ko$n33O{wKqVYIp&Ix^TQixPx$hWg5#{XHwsG~w6t-7#MnDVq{Y?0280e5hst>~j zpn%&{owwcqtrL=&a;E|bX6_R-)&(jRJ9Y2}`bAxlKTbFtw3a+JvfWQKUuM1OC}Rs+ zw4v|b;bov?pOUW)IF~@obzeWO&%^B(X=W){i`*>V{wxQ2dV!+D{x#5^(R>$n^p!Me z|ws!{0K{-VN>TXvZkf@LPt6+z0Ky+zdlktWc(U-m_;=V+k5A zF}n-a9q9(847{(tvQKPG5NMn9e)3l^bIc>iKE$hoHsI>WGaLb_6A{c1hOpo+n7m($mwAKyGlJpA~B2P$yMiQIPU^EHT zC31qR>lTn&1=pqa6rc=6>f*G|KuJPJCdQqCRPUM;9miAcrC6}12aYopaXj=L^D1N2 zWQAh}#*yB9Ta$yHRLl-_Y{!*W&-ZWHe*^2`Dwe6;clPtN4Xp2emiztagurDPuv*KV zrf|^$8j;_#aUJuoZciXnL=|WWw#L79-$L<}_k?y+J!mP@5oQFUK-XGtqUbLbvdaVt>gIkSb`Z>SxTIH>df3TR9|huKW}+)Vc}(fA`mkzmwu!R; z`()!kjceRj`RhE;xi@Uvb7DXt>wEofU{{{9v2QiP9M8LbwU!lgL#@uuapfzFE7v(+ zLwylwfvt)n-w8>Q`LFM_11ZTLa-WFD*bTlKS+g?hsHQ->E#?!$7&@r?d7f1DT$TBzLa{V(=gn zT*D4Lt$6m|w{U{?^R;L7B1VO6LO2i80_} zfHjciO&^QwKp@tc5RYqEWiNTVtto0ib3IYr(v545d$ULRCVDNnQZ@0~C$Js}rfHHy zk3T;6s@n&>HaQxpMlTH3pW?2Za~MlqvRRFK^gS89iD{T2SUKt|KTKnGdS}+V>SN!i zODH~f1O5D=e!R*!9>$3f!v5570<1Zz{(e(3wghk2Q>pmEVxS zJM`b>Vt%h_8?b6MAHHsM1IXiy*XnvHP*}BGR?TrBu`yoy1LuHden%Z!CI{L(7#;PJ z3CKi`lX5{3C}gG2M6x+RBfVjky8D~* zVnUHpe>`z`V>*tSFoTuZynH^nn6ZZ;xT9?OV)WVNkICJ<*jY5KquclCUju~Qr$eQc$N}q{@=HTO>66fF|tr z*hpRkNWV|~)Hwnm@kXKjc362&jxOa~!Ho6d$tgdm0M-EQi(gpq%3&kdC>Yy7i%WWQ zG?oP@dfTYle#4BIo6l~tTLWz|uutzC-lN7L!KnW)Xum%l&ZI>@n9&45F;Z}Va_6@fo z$CROdur8{6IN62cHWI%m*bjqNN7pKIcm(K~)_&3Gvp_r}>=M<*KpN%~3elWEV%-h3 z54eGRD@9aFegP>OP!4Bc=6r8HC-DmVm0)lhyU`u6HVZiQ&LS}i&Lqv~fY$l&?XW6V zvX{Lb+wPO#pHhQH5$p^s`?-C_amJQO?wgQ$m=PYIb9rkN$i29#r3iQaex4#B4E?NE zx!AS)t(@mKexIYi591b1i0*#31d275>;GE-G=G~^TM51Kr)y3&MisQ{=4En%tUxE( z7OWk@fXYo)duiSPO}U6s$AIr0@=t z>^h*@sl*4B*yT&TKgZEfgH|WD{3=&p`EqFixLPqw~M%2WpW$US?T3FLo8S&baSgVpL)aUC|cE{CA*xUsQkYc^shaG8Dr>*TEMkZ#N zLuMI!Q&a)_9ttfOXL^2ONYWTcvUZWw3G*P>CBg8ZHE4X&2g0)P8Oi#SY{WL^q;^8z z!*^a_{mtC`gATKVAe!RgW9)G9zt55$%m-_zhCL_Me?W>~x?@FxfJ~)M47g&yiu}5% zDThxyfuzoygj-$j6`-EHOtXOx zKo9LE%XgnVrmZ^k#4A8sX zd-UUwKTrWbHG9%8peyG~<3_NKBnV71sosG`t1J1523I9`@9)q8*4FFs_)as-PNHC) zZx8mvxKD>JCe)k+64l?~HY5Z(D8Sk^h8eMSqRoF1uae^DcvTgDV(ET=oJIz_l$Gk~ z@e(?iG5FM|KRE|Tc*9b@D-LLMOxPqP8Ys+-dgUv2>I;0IrOFmTJ1PA4_wE}?8c%(x zoTUJ*|8r5t{lh>;o9P4%=&SuDfv-}r-m16H^X(G=D}fnnLnYo1zOC$k5ofgt0(3jy{jMvE#tlDPlgtti`2^t9KAr6`6~C%#sa-b zIL?tS1QeR&Zbpb5?)QLV{Zq_{5A0I~jILn4*5<%*Dh5a`d{S5wbNnLJ-%FcVjaz3m zdk$!THP?KEOQ{kle8Vlr8P})Uaj$#^eI@c;@M<#7c>ct#Z7TrArSj0)ggyd#X&{)j z`|Y-BIpsfp^?S6fFmA-Gj!hZ6kK2jah%`aad~F6URbu8)&ojIo z;|7h1ktr{x0Vw)j)mRkzw9NU`F;&bu*~VX^`=5c8j3lEyK^ExBM^5@r2|zz3R?FUF ze^H;LA$d0pn(oz%z6q@9VRoZ0l-M^$J8X3iVZL0RroD6a4vY&XYkx%=hUEq61 zsVxcSUueXJ^{;CVN((v8}+M23+w3r8Up*VH= z1$KTLZyPhJV9-qdDA<=+1AS3YzGW~4bXHYLgaUo=`rAj|bK{^TUnlvjjue>Lt!H@x zG%i_Ip0^c1gxq^{iW!00f}DEP8iA@`Rr>oxpf>1q()KtIC;ySwChP~(f&GKLPN3ag zdEX^h1T?sRom0>q$XQ0^g#0qlgVvdKLCoE+39>Oy#6hE_BU}1`S5eWmwe7(UQs86C zIgi=d$>(k2^Bcy!kW9#QMXy~~AGj%i@x5O!en7tltoPp8$4#>XG4Oo8H~s?1;(2L- z8~T3J^9N7c7ts8FZ?%Q<0L@%5Ib3o8=zM}tI0a^`Yu&cRyX&AiweJ63`3h*^u#bEx zj{CUt(=`S2`B-3j(C%Lk=~=wq?RxE;D~VW>C(N)Zw-MOJ8hjBX)a^nH+A`N|=684s z<#x%n_T%;1tro{(aYt`V*llDmiwkpB_g_bi0noO5JT5%KY&Y&>6LP)}8nypBYHRH1;dEq5_l|((KGrnuh$G)AT2xC7zF$hcI7s$tdlo z&VqJTxRGTa=IP<$4xw(mFNwPG6Z0=%_284Cb;T=Rpj@QbeX}&}t(v~8-e4^l*g0Gl z4P<{;@%w2tplzy=VFx`Rj_hp5YjHU4L{8vEbsT4^o$&_qB|&Iu-V=S5)lv89FDY23 zJ|CMtiYFaeO4axjGiV7OE}o4+KyRuXy+enAR&x|<7D#}?4LM~r&>BY_`L(DCG-qY9 zr)~y7O0H%i%!JsC4$TyctVeBLV1U#S78DF#XmUzZ7T=pMxo8#S6HD$eX99j_{}yM-s>z+Erl-M<1* zliE59;5}?cKMj2*fN?(z)7@pHfwbS9E;FA8`kHHdOn(6=Hu9U)?*Cqf6Fp`2Aq0*3 zVP_AGEs)r))1(5HK>b874WsV^z1MA8T*MQHEm+nk_c>?}{+Pbrz&w~*9{u{;2sGj9 zXPMO)nXQ1iZzEWPBhOxS{lznWJJNMlss_dt7x-D;#;1o3rI0!f^g)i&j=?Hk<%wU2 zE+1Bu^DD~%f()3^EjG?SSOt`O@uuO;r!X zq+nDT64j-Xu~U26QkoaxKK9?P6_(Y3ah);|YSve9Zu5<@eo7!62kyp`4M3t^L)^kG zK#>ilx2BVT1}k1>T=506kuD4~?*n?rs4eveyC~aRUab%&&;nh@PapgRL>OZH_4RKc z9(#tHh1Y>ji~3W|cmi1)&Yd`hwN>VD?)0}r(7GPx-BCd6nNo58Fr)Sn$XbH|Bf-&i?OELqYWBk^LZkcF(8^`r_`(LK$8xdZqyfmHuq2*Zo<4@vv2Yo zX8?^g&4{P-CJ@<~TL<3M0}=7IFO}g_kUBMi_${ocF4?iqoVZfD&+ijXV7DN4a{jRw zSKur&G<6ue)Tml%{WSIi9&5cTJcr?WO!*UugN{H|35n+t(a)Uj1-jL^k5hb>!v+~( zHO$aI^8oXHm^!}nEM{VM(CLDUDqsztqAbkCItq4QGI2wX%MH(ESz(M8vU$UHKl3=a zuS-=X9cQd~zkDtQbl8U0Ypnx_;s`;H))$~928q2~n5R{Qyrd(IdtC<~9$=x>tD7>vyC#ME$>F1Z!;~YS@vUh5>h=GP& z)YW`8fbLXIDu|l{9ntHIG`kB#yY^83(Ip_e3qqw&wtzGzldu26&R?J0WON)e>}}7h zC7M*QzLl1&nv?-r%sv^CT?Mq{cWr;B7*HMI!PMRVa{RSe^`Y-FXfB-3Liga6?|&0m zy%-6aa<%T^mGeMxr1gfIB0yCQsRpZfYRn3Kap9%`joGJsAkqg&t()btk2KKqpKF?G zg+ON8d9Ga8C&i^l-AQXfi;S2&v8WI9G$@ZICJKmhE~mu>E9&%rp~W*+pxrwE&}{G| zP*OLmD;?$}!Ee9oL;r!+D|=W?qY~)BhtyVj^ug2@`c|ef&~z?oB_vq`F|3>K54a8V zs8T7h{2CD1_d6>m9s{kvA-WKY>l@LfoL$5H#y%?Ae2#ss(@a+XVjYZ&Ugob4Ee9$m z{$OAJ6e!cD?Q0?{P|0xnhu!z^%@){ZkEVe}8Ar_MD-QH9?Z6T%`h_McsQd6i(B#$~ z8~3IIQ9Zu4`W?H)jf|DaN@mc0DGbun;x2hfbr;`ifW~TL>&1ZMN^Ob1$L50enW5fV z@Bq-+A8Nt7-%KxK(Hxn865kMiz}~zHr^k5Xl(&h9rVIy z4(o_@$2PA6E054L^sKN1SZ9`wuHXCt#36L^^_?R?MrNeJ*873fS>C9pVl10|AI5v^ z1FdW)*XA`wfy{m8SQ+M3b_R=Y(IQxB$~n&*d%0x-}@hfB?Kox zqcr-}9f?{L6k;X0g&JVjmGZhj;}vW9qM!iZC2yaohUsZ_n0w@3$K8j zNN4Z;esy_`8Q6tQuFa+e9G9+?&#V53`eY#{IhaSuzs5E znA=2e>>+D^lcfsUqRrvw2G}E*n;P@X6F{S_yB2B|3bc8h3zwDQQIls>eV+i`I?1-<9l66m?&NAGG;`YlK3|KKP6T>;XOK965Xd|=MU=S;C@1Gpb1Zg-636-Qw-~KkveU*IxT=*Rx4AvI z50ho#?Fl)U5z_fL;3)1~iM03Fi7wDuvqwZ{J^~r!KTKV50rHLS8Gji9RHN${U1|;V z_H$*bMm5mpBg4qQ4}lJ`*M027xKS^4hcw^78CRX66=H#I=(>OYG6-Z#WGxbfa|h&| z?lZjy&Hu^s$N3no@bMoTp4hWj*$v8_#lSimX3+ciUuysRDJJ{ppPLv_K1-D91mon}{6^jJdRmtvwmzayd$<-=`scwKGqqaRh))G$5+CGEuBf$>JZM+ z>BY{^UG{wd40YCJfY?s(aK0 zu1gy>^+U7D!KZDvkktz!?3QEB_^E zgYG&)GCM$y{lRj(Zyt7&G!>}FQ|R?pQt55%?XL739Nu#Hv9s+M{P-3B>n}X|#_W=<1U`uOy5c4`+7sBpYbvpYN)?!;>VDflZ4VT;=rCV^_3d_;pW|E@fHW6HJ$TGf}J z4=tE$3LNS+A=qP=rjr(Tf1~7NUTqbR@%`AKJ9`W};aa`My;yUYo8Z_|D#iuWM=Y3I zO$jtk)A78?5vV}TFUb^rb+5PHD(e<#%WjO@Z0Oy=LSDxsc)El(lv#3ZgLPH;npiI8 zDc#RE|25)D-;1oVHEDu1DO{s_7-RW%L^IzDBg6bne#Wx^tR3I`HZEe-7WcOmI!l07 zlQ9-Fgq<)e%J;T8)@ATlp0lPSU=0dYG*!n;yyIE-q&)|;#OPyh1WkZQJidPM#(Rug zNxaO)KK@^{)buJoeLY-tWc`MB%Xr&OH1-H)>}aGV1(O3s$+bQ^vH-+)(0ug}H4w3Y zdRY`!?F1in!7WbEF6!Q0A;DcbFF55fhJ)61l{~Bw<6)oeLCt|R-6Vf`@<1qDJKhkjVZ_gWI@Y=Z6t~`=&tq5}g?^AOuuS&i&OK^Dm-fXyj-v zXhQOfUU|5Jjo`obNx1XKdIjQZ6kz2KUrFY}m|x#|J;Y@Rn*FtVQaW#OF1rKAY!A@b z({CmIL_om@YtvKffJ~k}-{0{ID0?=8_S8HO<0P$-mnu+AU8o38BG6{|O$!=4-;55v ze|5zRv?GDaR?n4zoyK%uLl;t*Pk8h2Vq~KF2MPQJGS}bU~WmUaz z(L)}~a%@k~rxjT}QX7U~Jl^fo1%HL~t0fpGH1hZ3=LbMbt3^JGdx0oLVtHR-2eGgUIg^F?w-F!NpCSy_&Zlag znMy!2)#TZm6&)}+5q%o;luC?^nH-}b92SN zps|oybrjtN655Hs{d5n|=c#J>*rPz3bx%E*pt3dbo1n4ZnfCSoz zWp2v?QRpdc+Svjz=X^CP$IMwveLv$T$WX)2J$#~VY77{M8*N2yGvpp|?+Co)O^q`f2me&aTf@)E-}-cq1|kEuQ~ z^gt7X0Rxs88IgP8F2~$Kd%d+0dUF6MNYNU>;jg;U3sCnf-eVnRsN#?v?_jSA?t>ZrJ)f+Z34vmzw;vnZ1BsgEc@J3wxmR4;_<9XUq^2g7 z>pjqcg6a&TyFlG7Q@Z7tCC`5Sd+*T!(Ao>N#TzgW{G@Yd+f_iD+4di3!`k{Q|_E z_vVTH0(W3s&EMkH5LF;Kp@F(ET$PK(B&AdfXo)}f3MTId`oSbDu=_?*ZL$C8o?`7= z&m}L9VrSTrCGmNRSC)&odd~Aa%upxN^p1B1(py!v%1s1veKG&W{3DRGEA_sZ5ui?H zy`isIt86-J#3e^S6P=&u7nx9nkDsQg846XIF8*t1&tDQ(>Zm{5ug~B}lAze0UA0icr`5 zJyvqY1FB#p%=>*8dM8AZ!Rl}BxA83%h(vmpF-;8U>?#wOnazXMH$xQ!)Y z%pXLjy088L?b`!RjdXlMSvo9dCW$LpPh5Du`(FD~$z?LTXW8VHUw_B(i9)t5xZo(( z{?#`VC(dEE)1I+?KZsRP+ZKZH z6G4THt_}J$C~xJ7&j+wJNz9XGDFeBy9dfhAxjFQ%4R$v{D>=Hhj~)Hz(l+5K<_ns* zF;{b`Igl{R4T~)7VH;U@`aWI+ZT=`@*B0i%PI_{z4OT$of;zX?W3Vn1Qa@X!2XeI8 z>v;uZX|3n=boB;kkNMyKv_A**H#qB_7w*z=tjuo+eRWqX@cQNzu*RJkEuK6D)SGtH zMjmUQcr^0XR2gVBLGKrne*^I`SKOS#ZYCLgTx_KowCvtHhTKv>xx$LP#N0r$!M`^` zF`o-c#VP`@-c*jyTR!>()~AXxm45?)`UFmmf5O^d?;3pOx(Qkh?X>Ui+xt`6_pEkc z_faqDSlRub-nN1wjtf<^w!_pe7YNm zEIn9LZ4QYcYN4+m=<=)|ha39-q?WJCJ@k;Yp#6a^O0a4e-e)8~2=wO9J$nK{pxM~= zM;i7(nnhQacE7tun=7;8@FUQSZQtIU!hDHQe3oCP09q4UEi+*XkY#7mME(*`RqtK9 z2|V*UPAb#CEC5aD?J-%KA3&G6jl(j`fTqjBrXFKPcwVLCr_%$i<|~Qe&RL*6*SRkJ zGz9X}|8m>46R26n@vMpokZN#dL5w`my<>wLZnFZ+VM>f{Cv1hCc@ik+DBcvjt=n>E2!)4Wus_HLU0e6kzx)LlxIzB{4B^9`{Q+ zeB9a>tyv|60e#aj?!eHB1U33zgIU3p9AhaRH}2VwduvuPaQlLtnjzC8!i)-LkR&hD zm|O-r=3}9<%?RYkOVUXx3bd%`!)rqT#4~Z9B{>bq*q%L0s17KhUiY96#@tods$%#v zXgNprxSq`eifLx6c#Iv1k=(bD2s=YozLv>F%!n1{IhR4~-r{0>FHcUujNI~}=IDQ| z=HGt}>3S#J##1fI>B!G1tctzbvK%WxU_JXtv%3_t{g0|n<=>~Ei4Axu@4h))Z}G&N z09DYwb}=z^wE%rPc4v>s6(ANu4%%}LK>VCfU53|zbR!?gB<}@kT`{sx-w(vCIxArN}4%uaiWMPlJOBef{6W4dKUggeR8nAljNU-cJ0-`c=4{R3% zQjAGcJIn$!HALm|)5xX+pz#y_7OSuTI&j9v3 zvOlC!$9!fkp_<=E3RT(L72PjepeOZvFH4p@0F~2TZC^_#=BeHM`7;mjjQZuS_iLC9tgH?9zNI|?QaQ+N z?Ss*ulU&S+-~%mQzQEMq7)YKZ*;oU5}65jG* zfB7+H@KnqdW@vmods`W^L^JtK6#GfgKBTgF3FiaN+sdDh zP+0ooWl}nz7cy3_46u%(lFc%g)j+G#|Fx}i4Cp!+&%48CfJ_$C152ratPY&l-@^~| zto{f0Rm?=0>qXj`SOJ|jS_Q{6!J2v7i{VlT(2?uBp9JxY8lEosvWYe0G8I6$z5&*@ z#ZFlnd!QsA=g$gwF8C>ST$X(anq5eTi{?e3zvq>5#zugQ9(-N@jy>nV^2`BganR^g zT_tQz03G__mM4Z!xuH@obha?&`t(KHOAPhAfNn4I3nvW&?IXL%@!&d;ntI}% zt4L?`P39O^KzktMA@ybfNV&RX)W#O*PWWMaQ#^?;`7nHmNd`@GODkS25QsePiK#Ev z)&=4u8qQasaUL1G#f5orrt*w!Jp*XPJ*UnN;x1W7E;$h|gLd%qfBr2tK!V*-O1p2U zlMBn{i^qK!4aG;MpeKtKnq#(b1y^^-X5+uY3|8~M-y__CmS-NdT)YZIk!g8z_h


    1#lIh5EOoF~=WX5@rA60$O~*3w_-Tpg1Mp2jrNiNfBA4+C89& zoAMCsey1ph+S%}>JD^dr6qfA4akuYR8h^&Mw4SnFm2Lnl^I+^`#9^TQ-3Pxe9Rd=` zOEnRZ)oI-b1q#*&@qemC=g+P<063-kho#SMhq#kE{iUTh)4 zm45r8@*;8otZDu)8rFh=^4$wN>AnD+=p7ri^954QNb}9J0P=4hmVA2&sLN@uu)Z=7 zo5{H|L+n5$qA9{Ti$EQ*I%^qkfL_ujtYzR@T9i%>@BV%={?sg&B=!wQhF1*fxGHM8 zTM?<3VaBmzL?zGm0hLiD-RwtC+8-W1$Z-R-R+Tn=+bKO!?tN=zjDHTfe(0S?> z%m2`)mM8BSCq}|JlUmh3o_#>RXGv}j;y7N3+yravlLGI}EtU+yO8#P8f)#xw<-8Vf zvjwzG3R&_Pyo%e(chOtek$e>oxLm?cQ%A*c=-w=hTPu$d)y0f$kgF!F}k`Ml3fF4+S`B!0l#p@QTIoLpZ%t-3{ z3WP^!VYgtPcOa2koE6{oijtQ&FJ9_D7q&ut$j0iWCK+*A86o7gPQS)~k2a$@$)Yw&lAW~sc_s$>d#3|E!TQK#sJYo0=()&$60KNA?UR(uOx>W(XgUt1 zW3Ih@v{|+_1lpxc<@;+HKy>*&jBR-8`kQ|+y+R9`=)9@pWgj4s6+ZLur$7g-=fpYP zfcBjyxV-yqP|r0RUaa6b!@^OPqNfJdi;O;|o_Jq-UY5%aFF_MOay2>;Yi4wZ-nXj? zG~wEi_F7&bs|@{D+33F)LaNWV@Vxx*V5f5k)&hMszh#RxjJsc0e2@`+Wppri^$o^t zC?@})!U$MzJnM7w#R?Vj)vRU^_s<8MvZu4DE1o<3Jjg*9XJK{TL`39NE6{2WQR0&5`|b4iSr{AqoP7A>#_ z-#<<@Ko3N#_b?)@87Rb`pdt}#deSytVjj=DqDIZv4w(0yb$U*zo-nR}R5{oE3eaNS zF~v&E`^1TOs>uDI9W&z6a(xdZaXR=z2VVKT4a@b5exQ|j#f#43RrvQ+T)2Q0AV^lX zur3T%`I0>^DA3OeWR1UT(f1~-3414wf;GM?$yDeY(2Mh@-`ZOOxfeX%ibfx3P=u)F zseqQS_&rC;9_Z1_-c`X{Kr^Sq!gTNnkLBdR&m&mB|B0lYd4Ts&U(~98j~>zzv_Ebu z2s7enLvFHQzHB9ylkDpPZOYj;nHJAg&R3MnMpB@uYW#i_)dNJ6edAq?1JY*e#Ev1* zd82*rcE7dOM|VZ^!!&3vdlqOee+81Nih1N;0hIlH@F$}z(8H-|N_~vw#N@|wum6J9 zz~B_n@(w6Z;@H)zH-Q=tMA*w?_s-^h&teh_+TQ(wZr&KTc4F!D?nj^nF!?XA90Rg! z=kf4FGOLM+^uu`AO!!ZnX#i{U3X_%~W}SCWfyMJ-&yGnSm z-2?h9Z(zRrO?55)=0A6z9tx%J*BmhetDnxvcMoxI`avnS@mE1ByR5NhyaiNj`=1UY zb_=R+dk?*61g%Frjgudrs;!Nj(aPD)Vuyj{1X9ChLe|#w&YoUfa zNsyirw3;M?VQD;ZHWtD(7O>u==4=SwFoN}Zbtb>tX&~1T(+`xFfKrmWDsB@4Ws+su zT*jT-#0zvpV5M~L$@+FG2&~V3IwgIX0CGQ+IdX6vh`PVh$VVNB-@9~Q^e>>s&#ptY zEI@lnO6oLHf%JY6y(>*atK@Q&6z;>LU+Ez=#%N)~?(J$HST}t4wq&0L8lIt*jd=~U zQ`Vnvd=99OxU;+&yT!qWWpTXTpk0VP6}2q`WJLQ-S}PCe->d2EpN|2(nmhWkeFbRe z(q(NwSD-xqnttj3fRZn#bI8g9Ipkk;eyapDCi}PXmNAeos|c$D&R}HY{IdJDvfnp0 zI~A^gHCjPY$`gH08Y9LKij~6u&28fp?y`z-+jP?$#$8d=y-S6W?&wHVRp$dOttQUb z7whO%XRBTg8E6sZe`shEfn*FtgJUrh|14=|j+cT)aN)X|=QSXrwZq?cKhd)PhaqzX zdc4+6Zl?9+7L#9&tc390HG4c7V2}8-LHP0_nQQf18>D za^;v)zY`7=*v-M#fn93*(~ij}9JiTJ&>SBCR)yS^9b#IbshfjAw1q(Amx~y!u|jK_ zyHpM9K@&AK3)F81VyTVZ`5^~%K%?Hr4X-j<_np~dlglLBb0#v`z8n*Rli9mjlNWGcijTM>-3B z+y+hhQeB{;9#GDNyY3nZ&=Ns$RG>4^f8m{iWayVHLz*tPBcMeL5L38fKL`-I#;lJS zCjE^!ED}9g`cUhRGp^a`q?&uF9L(@?Ae{601f;FdOL|@zDE_d@FE$MzJCWxMpHBi& z*QUKXNe=XdfN$~~R-^TqGddAspw&<0>CWy|B3w-ya6#KXJFkDj3Kk?z>H<3ecd7 z_Q0DaAZu1;{zW`VxWB5#_j!RP7E8b~irytOGnp8f0qubntxtO~&=rBI-rZ=OU|an$ zbpo^AND9%>CVf`k@8QjbnYc^(DQ4ahsE83&{|E`3!Hd$ECV;Fk+6pxx=L;;6xM zA!~+f&H!tlPLiZ)^gdW~(+#@T-GD|u#yu&)lj-)mqmNtgDi)4fRjYMiB}*Ipd5;n( zU3kUpi7?R7!s7gOyzg@+o8{fVC-19T)(jSIpPhXmW&T!m(8^5#F zk1JJvS06fsU0`a2{bd05h%XtRrIpdoXVR?I3s_->%?XmhepetJlQ!f3s(?yX=zNaQ z0kyI(7o@)f3Zu4M`O-b< zHhqD7p7(#9!yQq_5F}Op1nqo22hA^Spt=!D+8Si*s8sToiO-h;_Z(uI<1>-y(fXV{Q{3xAbl5>khzFgQ7tt#{@4W8f8S0W#fDk(*>2uvUoL2a z)Z`E9FiW1=_|@6)fc7vbZ~9LG8K}W=TS?$h7*6lT6IgAg6J2JuES}I zE^?q^K~IJZ%qxWlANKffgLd9!<#-BS*=gi*UTz#{wYSpRd9f=mM2cx8W4BQIn<7I- z4c2sW4_VDtpkd)+WfAOV=k#vq&tP>oX;9zT#GSL8b5G90Y%ls$a);<4%oq~CX8N2P z=t_8*HQQ^T|CYH1L^yz`?oT)NV|GTVFr@FrD169}$YbpUE0fROJG-A%C>w|)-;y(JMKeu8nM>5k(6SNi|7UoBw=r(1wn zEqv01@__WenEAEisya^!rWPrHMsz(){E`un@gLcCftx_0$+xFAmw^7vq-$l>18FX0 zY|&u!4{T+{e8ilj%Ae+^as+FhavVwBA8{E`8rFxwWG z-3D~v)QOgdzkp^$bl{O6#AYlnfCJ&tg^L04qc5Nutqm1Z`TX} zrSZ8H?AQP)HUIl;3Fcq6p+WwuTcGXPq-J-R1oF7gpq3sFlYo}4`f8d z>que&L}#S_Kn}Y~(o%YuQweC2avlHwoa>9gPgkX|zeKdl=Y`{mqtQTfU?&^K-F%)n zE`{D;4fTHYNCdRgw}@{Z#HdE8o8I5Op5F3IF25mIue%(%So9QVB#U|BV-}D_{PtZ^ ztUP+T_RYF8pk=3(gfB4wRjbYCR51dLN&fjUi!(@P9_TjPg64TA^Ak1Jha6oz4KFKb z_u97Pn~;LdUbMel11;s$wqS;-JE~e14!YLb-fklOXd1Zo-99T%G&&b zJ{Wy2qM=`pnn2S$J7c$dR)}9XXm+mvv=Ob$-{n_;tfcJ>tFa5HD)W%oVHQ7+>GCbR z3RahL@}l>bfdq~_)Mc;$#q@vC^mz=#o!=mDiMv$x)6QJM9x-bALUG_3Sg-%8HF|Ci zRO#t{l)V;+N?hr9AwKVRt2KTa69r9EbjWe;KcHt^W;^D%s+;z=C&w^G`r>>d%D6sP znt|hfb1+Vz;PPf2X4oy0Uz!n|pj{CNGgP6~TJE zwl`uF&#lqxbddw+Ks#SsJ2!3s#O2|2_zG%CPi|iPo(G!!51*GWmw{Z!h0W*}fSx?f z=m{+bsxr8my8E9Y@4l&)I2nT`toZ)#`wAdCxx$v?Q$P-POpp5o0d2AF5vubB8at6J z=R*l}bmN=&FbxnNrsOADVLhN_o3YV< z&G8?-`?=n5IuIzX{&7V!o?BxdlR1vefOe)Xu2&m(UVT=IF-;Y;9}AwRi@Sk{_sV#i z_X0(ITJu`F4y55C`R6g7OywUkhY0nqEV|d@p&t8ZA;?B#_j@VfK=u-qVkB6N?s{={F^!=0i*erTSqIuF{@%!k)h+hPfcfn{ z(3Toc=&!E|_JTV#N#G*qWHd(@*;nmDTQdEZHA=JnUx=Gfb@%3fyUdv{;#bwLS-mzOzXA z0IxhK-RK|@1)8=GWrGc7$$ZTHjs95BloEUsdd>sU=Lb=jo&rjnD||AB^;U9RdG@w)6zzcZNpz=;H|D|jMVSM=YoH15kqdX(d*)JHL8E)! zChb+Q`hA~od5U=zWSF^hNfR{943;A1k3clbs;_;}`oxX4ZOsrglf5ftW6?l*2f7X3 z;|ff<1ax@O_di9WXcw@$_grS`I)k|@zh!ZImKcS0BFUXb!XKI zC^h5XJ5+ptY-MEEc%J}m{G|_Z!1|?2zx~%B6ts1sUq$-HK(SppKQqzKkDjc^``rS~ zx@j(=lnY2nJUu2A`%Cc81Gii-s#kL*V<#|LQ_tDW&uYQA3gt(sM@|E+m$qMK_5%{^ z({_hG0&kQll*f+n*QM3(o?(TjoN=KmOpY7^>*sorV@-)1{j+rLfBOspz)?yFE z7_(F$@wbIs2|YkJn#XvL9|Ka+tlcohXUr?FXG!yvK(o3k`)8dNDC+aU=co1q1(k9i z;t2!_RXM>)st?4a+x*Z7>sMrNX-uaGXp-+1o|*oSrSp!b`upQ}_MTCM5T#ToGow;w zBqU^&m641xLRLhwR~bbzv&qVg$W~-!B*`XQlJxt&-+uo+AFua0pU*k(bw2LB?#27o zxo#_-IEXV?6Ec2q0FnNbcv6TpJvJ%eeH1$!*(J?SA8;R5F1hDb(7Q*ICBlT4V8+B; z(NaBjIIe#)O|rG1{rkv3t-uKMMTw$g^%~G-;|DL*Hjw4hm+PdMS4F>`=-k6Du+*hnR*iEBzr_97{k5C(DRWhczhTB**35glRzSKP zk_Ps86>s@FE%yaMbA5igkOX7ywwSy6!4$ONQuaTcb!ZKkdf3nk)YtchqSzC)-smI# zXMhOfE!I0Q+q*y8vc1D|>!R?^=ng)$TuMH)kw_2Y%&V#;#^ivy9!OAYVb2lwDN308 z3feuLR*Uagp$q>eBTcZjY!&a^D97GOz}3lnE4dw-` zWEBPzmQ}3e`U1_g1|6_^Sjla(r_H-@uGS}=#@%n&h=@~p z{u(_loML1qF$?23yu%r3w}6Pd2~_Rofkvi!jps2>#R(t` zR%y#+PAyzL&q)}sZ#Myv#9Q|NYzGQtPPxli3AA`Se8~>497!(parbj%=HYV{To}RH^ib{H z_iUVUZ@$vN>kS-O(R_)uP{L;)ci=W$<=GGBgS)Rnm`)x~?!wc4jN&yBX){>QO+B|N zzX(*Je;}F`E8v^;(|X$?(4=(K0$mz_v}3jCgR%Q8qz{pkw1L*t*L9Kxz)_%cm=KbG?dIz!p ziR;Uho-&7V5?&!|4=^|0)^Cf#uBqS`5S{mT%b&JDhxzuE%AlVQ zDOTHT5rKB=NUlyj=Fr7}%cJKpca2J_g$`rYia6YUcRdWoePVUWy3hjT=SkZTV+M4t zDdO-mw2mnGHdkR+`SXHZ`#sj6RL@QRR9P5D)3Urb;vUdYa>>CT7C^_+dkNwlfrj~n zr`2MBnj$PmeR15I=U20XcR*YAY!Z$`|2?l*Ng@9Xnqj}dk5SxjMd{q2pE_u(HJPE^ z*vGq5QtTS9gBBpk>wBPgzY{NvUjT9_;`ZD+3lzAgtB4pg=eF+7#}XWO zol|a&4Xfv>SQP_b1&k}GI+MTk6X-G9KnuSdknL(=k`~6}Ol`>N^ID)0F%mtbq6L~x zI5Cou2Xv^%SmI0N*%B^W2EISC~VOIE6CaHiC7(WZ{(}86Z9*^Wneo zK<^@zJfyK^4nEoUZ};1imb=;QUfY26nynCzE#?c$t1FQ|?LphFIDC#BudMm;{94u| zXydUb^JcM+4~Gw~yv8*@o9Exl_zkS$rffrY>p<6Ub9EKW0Np%3@qrk9HJP0tz7Ypn z;`znrwC8~YmG>lfjR09Mn$oMX1AXYbcKHJI04(MJ^ z-Gycrpj(Q!wyqBY)w()T$e{mzW$h@4VizzxNVRX*yHhf$GTD(ZE}qu8%>Z}F^yYx5 zA~k5~=c!j#z5wact>!D&11*Y`$T#9Mjp49`nJnfXTYG)0D`o_Jo6n&aI8KCs`_)J6 zf9?IZSBS=7E-}NMalt_#ot9G?88?A~-e{lRz*t_-tk-@a3|etX?{~doprc70+kcaR zZugzf=SA8y!%fF|yDhNsWKBLl2Sk9qGE^aF7d&YM#r-E?x)*^WyEph9&};Klq;~l@PJUQJs8s{3eEDie+Fk+0 zjPP3WlmRJN|IP4u1N76Ts*Zve$jCTs;r1~gmx;MUoLB*FHvj!DB<7@l$=d5Hs$iA) zl;&2BJ?y4%<7Q+aXmzSL=@&7_v*?pQejNvmm!4EK4EJk%CW?M)5j6JM@QL_#phj&) z6XgJ)J!Ldk{BHvdNU-Oc;C=0*KXT~dT9!5z?C7Sz8XW)m5G5Z_KlR?01oXiQhl_&s zQP5oC{i&((l+1PH(+I&zmT1YI34a9EN*|NpRrFPT`IduyI%rXC*)ztjKo5*azF zeeV!*deGW9o*B>%0ll9vp~%7xtpD}3(Z$oCNwWrxoIsy86vb>vW9Ebw_=&y{kN!~f0pTC=XMtuU(u2259i5@q)_Ez&(Eoj^?ijvmRf1zp114g)W zIqru~wpYR0eZVETj~vKCe&az8u0TlKAaWV!KIx_Mjrj%EP09BDOFcjVYypDdm_ugQ z~Q{V(ey|G+2#GT0fWX0GV2~r>7|Z zRo&ZoX^$sF>5nHTU!zaSFMn<_Rsn0_)t><#ctVgZ5r@n8gT_}}HZS-VC}DDlyalse zhM291|e+NQVOhLT-+*fr=nh?lQJ9p@}CXo4qmdin$K=tj#J0H}6BJ21Euj4KauPF_% zU^a2zTx#*JurqTuyCxSm*S;zbkmnjB-So6KL(O0SQq#(f7e z4?h!p+7O78^xE|9yDcK!Me>>6pq;W*thtK0<`6R*9F3iNIDcn274tw?c#SaL7sl26 z?XaSG4Ah%7{(B2oWp?}D%@-@6shA#pps)lK^ozACsT7Fn&YACLT7eqPT|=&+pTE9X zi9EakT2`k>co=&8<}hpH7FMX0#$`$cv>v~r_ODtN#`VWIi$1podMasUGS3YpT*Z-K zO#-C&@!|2%r$DD)WftuAuxY*hpKO^yQ=$wL8pb~4t99Jg$_unJ#I7{1RX~}s5tef3 zmpA*SDmz6%(@bIh#_UTkkGXK%hHc*BoeG#+FJ^FN=n_y*WT>G~Bm!nqrz&hE^GNf7q#I?X$5rr#A5iOzM{svkW*>R## ztnN8s9ksrfpm{U6d*n6(MH<>nizwzte>o zp)%<%%|ig1riq(?Hm=lcy8j(D&Un9%K`#ugg?~IOMx9`sVkfQtsw$Arb@n~&SihZ7 zGFqjxplQr-z8}LrL>VZ4O4AOseG>BT)q~NR_{fZ?Ne zd7yjzPkZiu06L)O&rgE&%V@g5wYMC!^Mn#D-?36+T84Z(u&?c_)S=dV1=d6xUQWen zAoBNg7LTw`?q6CDTf{8>u~mFsgA%NtY=f2*>VP_hE#l_FfCh)+X067B>2Sf-?w3Fuzu4M zc8tKxxg>59vHSf8f}58Iyu-ojAZw(XhEaV?e=B5u5wzd=aSXgwK+0QJCzl6+EMBXP z8sm&E|1vIyO|+K8GO>9BDK*(jv!W;KWrQf{jY0bx${xI@5U5l{sc!c*o{R5}r9Nr{ zjZfUlKn^2a?!q*ff-9&{Yklz#vqW9uQDR*QjLYln6Y%!}>Sa0hj}g0QMg9}3QS8+6 zlICK1n6XPq`<*DR!MGi%q4Dt`pv7Eodhaoy_&q+P8JO*lZZpST4LU9 zW#g%qlwcHLLI{2E@o}1X9vf&;tG$z| zxQ~H1Qg`lQe-Wf|%fE~HwNKxAyPWAGeu7(=^ty+wcJD zV`q0v?FQ;yih6&86o~Wl*2wc_pcbaF3*CA^gOZ}F1Uo?LIt2#jFm6l(5hlCeZ_#r} zp?>*2Sb5%>mQjiV1=w-U2gd?s=KZ?(?JSVhhHKpp#@A1?q4c^FXifo!6!qjd?z2UZ zH?HrY{myqXPSCc$d-f(}0xbrvJz!u5`q=f!I2-RV`mEM{2%qLm?vZ`|hIv|7R+uVn z1LJy@=&ty31N}ZACwd+;=gl|!u^C^`_@1oni53TvH{|OPdxmuMXGsaxWihpehI0vM zFP7u0#;}jClKBs_EQ4mFcFNe!7APuowOSeHzA89=qOlV+w(B;Vm1;oBdiu%^3qbo` zo=nNcenmr6{=*n+aL1mm>m}BCb*VckDQ4$262cJQV3-kejDIw>0_f!J)y;bBf2M*V zTTk)IdYZ&DNqu0gojXqG>jU(Xv`{b){oLiYVSIpaN7q~+xy&<;(0&;AJbJm z@p`<=Zx#!1zi;{Tx|OiY=d(IlmI}eR;^%of_1F(Ms%7T`l0mcHn$XKdPiB8=QFW;S zZ6elol+PXLyMEC45%hRh+k54Dtg^R4>A!@t!Mfx&zP@%7=+IVz`KNb4z5LH6Wukzh zj5u?QxPV%6nAeIefEJXSPju4)Rd!C4?*0-;J>B-a<@MTJ*(`sCeUfu4NqddiUv&z>W4PBj}TFz!R8%E$xE zjh2sN^XAxxN>azvA0sU`#izZ)el?L@LAfyrGd#6-n$Il(Ep(HmxMFvF*n5||K?Jns zhjD}?Vn8A1>3WT&fgJnt!yAc#!t)C&Nwxjm4iUlZ;M@PB!T2c>s2_XfrRw^Q6<%q#bj8v0fm7QKQS#)j$NnH-Ci11O1k>?0LQcbV}9eQ4sF!YD*g3<^#~? zUxYoP#*8o;@0*K#3Ys{rMhhE15JmrExMzUpxVq8*&S zP2vFLR{N@dJPFA5Gl8lh?yXtSO_+xdw3Y{K4FSbKaq3>(g8e`$ujAe{p#Q$z#fc6*WO_@Bgsu%Vh1Y*OicaIWD=9SN6F`M)tG-1ifQ~Ny zyuW}xSoqOW9^?nwZMmt=w!J{lmgMwzt5KyREN&U2m8zI&RlNpQqW&ZPX@fvf1A8OS z&H#DRZdv-40=*;8s3PG7$_$I(UcmZrh*xWV77ki({exLu%#F$e&jK5;1NW2^3r3WK zmE&rLo|7&Rc}JvvQ3=o-WyqvWAyC#~-4avukiKC17C)XsiU%(ayrThY$7zpb65J8% zT9YL8MbJKaJ>cF(ujSXWbCzKgxZ@~dSFVE9`gQ2yS-e}L`z*IW2xx~0`7aLq20ABa z`kDoM)79{=jCy6Dy&4ho8e<14pGoi5PQ-CK1a5-IfGFh&S>jZH55h&6xaQ5kqecc;s}ic4+cY~cPOmpg_jM7_zgXsqyA?o& z{-Yn4Fo(VvH_9vB1MNv|q$6!G5JTp6M&&FJjgq%**Bv0QeO3#N=qoYOtMLqRpk3J0 zt5~Q9RCd8@&C3R8aGfGX(E`YiuWmKx3XrkK&3ghzfUfL|Y!(y)x>j*nJADA?d8SZa zb|8?}n)b_Acv`)PTi{^9>Y-~pq5Z`jtOtdrHf=G!`Ja!SKD-|^@ftg~W$Yl`tc2tx zcxq6&vUt{f1S@;5htnALIX^X#!awjl4@Rr1Nca(d6=-DY!+g8{J^Dnv zk4i)Vw3#lM?;?{x@1v6}-CTf5J0kM5(5LDNR*HjMprsy?oX^F~KGS-F`C~e0q_rKd z32`lol3~gWETBCz@O(B-rmM*A;7 zxuXLc@|!?(@)jyjT7mqEg-J{?$Nf+3_ucvmTBA{qm~H~l<%1f|kMO>Nt)Q9yC}yngiPA*NV0CyHz{DBVZT_+AogK^0UrB zKXiZ6?qL3H@EBwW90iSpD$Z{AulH|% zxm7!&Fk^)daU`r@r7X~EO=qDegEPl0E(O9k-b7)km?J>_E=LruV1Ho`t-C#b5VY=@ zM@d&afyx$2B5ZMeYr)UTUVZ{Cm93aC$B z6fgnWOHRcmgjxJH?I&{$2WTY^Pt0pY07d@R3BHb}+nm@kAiES@eYts{Tj8U|YQjLDr54rPF~`Roiu?EJgLca8?5Xo)K>I4qds2IV zObVHO1ebvBNzd*q;Ay(C`odQWD=HxT@2cx@u$EBx{JCreWS^x~xU&F6$rj1#g;%*| zV*30O#?t7XO`jjGV4JCj<@iq+=WSmu7E}(zSw(iI7FTtE(tGggWza?zI2VPnbCs(_ z8lJQPjeYFr2xSaV<+<-#?(cwZ1RB+Ui~<@UyO~qN4#Z1-%sE+*-_5#hyvH$r!{3~Y2Mf>vZF9u7EMY@k+9o0o!s%znsjIWmm(R*f?A(vsh z@@NgnFrd-7Xc_1u?fxuJf1r?koTnb)$@IOxiDOCuv~MycJJdBm#J0DLMF)Vw9CxZ! zu##n2lPqU3mYb_5Bn&Z&&qd!-IM)y3Y@1TL2DgCr>lq8t)d8(HaF$r*1NjrL{}5;g zT9wQyx|a&1tGrzC9DU{89#74Kl`?Nq_~SQYqIYr?mIEGiwJDNX?G)m=Q_j`=53 zpLUz@0BANLI;=jMK*cr}YyLZ6|D)uX_m*|&gN5shMZ4c3c($>uXbq!qP>j)9?+c83 z_4M`6kX|6MU<>aP=s)sV|Ncc*(1NT7Tp5ReL{%;0A8Y{aVU)e+gW3L~PN4OG2WUG7 zJ|^VQ0U1Akb>|?~xd)m0dtz14-Y0vEcohJ#P3bR;kprdnC>d{J?fXTrI^Qw_E#fLU zPvvW%yPh91IPo3{nWmOz7eKS=6eCPTuNC}Kxx$GZXpRX|DPvPEpTQsJG+{mg}+-BnpyIQttUy1p z``ZXFX`{N{<6O_{AM`ZviB@KiJ@c?9jLZDY{>L6`Vd+$0_wHw>iGx%09iM}>ZJgrH zUT>h)imAO}20$U>7F<;LRA8I(T^llLEhl_>927C8sdxBH3D1}A|`k~7

    unvs$?%l%pjugJ*d%O*r&T_cbi;qAfzg8r6UrQVDXAX=X z291Ks^cdk=AZKqKLuv=qmd*>aV#ibv87a5=1)Ae6i3uC*NYv}(X`Faop1Etylh*-O z_xpsO3tWMuJ+(J$uK`VxJhPeP2AX*O;FQ@kkb3d#k91`qbFwEUDwyrYL01f@an1T> zZ?a!cf%Pf7(iaZQu;*5tBU6|gId3oh5&jLJDxacOYfP!ALL6#Iek{z*l^rEf`w(FBJoEIxKJ& zMFSax`|Is~Po&-wxAEXbS3j&%+6tlXFxx4r3kM9gd zpq)rej~c`nMLJy87-|8nJhcC}ohcAUJ3-du3!w9i2ad{P&A2e%=?z0apIg@+Cc_Ln zm9RsuAqV4xeVOk6#XMaje3mbVG5QvmUvho~tTAWj_VZ^0WxmnP^}vd{kx(<&hNrZ4ag>_ z+;swD#B|Aci_-+Oi@pwZ`ItHNgRG;E#X<9%lBQuz0FtZTFThs|^qpd>i4uFP(8ADJ zSB%?x;bguC1Ymt=pMHXy7>M`exdtoD-9oi5i~8sTeshL%7x5~;6z|V%qh|YkRIgkX zW?XCth@ZUzL@sntJ~|D^=hw>%TsMF^dq;WSd;?-4?Bgx#2GWnduThJ&71cfON{$)! zXtuc^ml-1nqi<7xLqE7s|I9$k<|Mw#)#NA-TW;%XrY`J zEWE3Mp1$5IZ7BkzTk0od5e}pyIe&*K5r}Q{6^*DP5dE(&bsKd+q}KlYt@A+Vyx+F| z-V1bB_-f)l^oIEP9+OJUx?<@SuZ~5q_K8jpiDO=A4-qHD_<*LYbNEZ!A0Wot$+XSr zzsj-E60b7Q+AP{7$#LB0f>&ew0iZ>zRq!6e{QK(Wpn1m}v~_ov6eYZJoaN}oG!tlX zHNzyuIOD)zB~JmaIm4G>?gv(=&T#{wWz5ci0HaS&4#13TlYh!=)If4Ib6x2(K(6Pw zI(EM$!_hg%!cq@3VdIL}gIE=#VJT;-2tm8QW^2A5_fd2+Hg5&9B$vdNTNF>L!BZK! z9C0x2C_VMd5Zuun(V6w1yr89TQhart19~}iuFq*4XrqnRy8^3%-alr5$OW|FmG37u zF-AWea~l${qBuC?B6ojL_V?`7f!+UhpI);KIg0xTRDAu>0nY_R&F+UkFo#66QjFro z;Cg#fShCab%DGdvsx&V_)48D*Ct?Xi`ld{C_Y;zn9ox%$9)LC`q4bjp^Y3J~l*1Xk zo^F`2J?BNRa%73#brA$A2(t}|!x=;;rlaXFn<&gG^7ApD^X%qbz8!&a?|sMfcVAuT zP%-BbM2)A~*O?XLt1NfZWQGC8`R8-G?|w&$(MW0M4%Wy1gId48-vukdN^Ip1%*0YD z#K*&LX$^hv=$6HgLn68hg)AA%=`qKV4 zw4hOzcU(_N0xDrG4nK}nmSMHNP__vg+sIt_j0%tn<89~j=$DB&?X&msZw-m;krM*w z@r+MQ1a9mw?u)JFjorV%2{OB?*cd_Mx~L|0zYoYov}oqp4v+}HBF&CCP`Huy?=_5q z%v3(__E*s6nRKpO;C>_j+!Z#*^Nst-rtS~yS6@tymrY?W@jLYU{&lSLC7yw3qdPFy zdgjOhcuK?rX)X3`<|seAEhaJv;rG4xIx!HQmKJjXm+3`3Zf~X3zu*>AFdUff%`6 zxA&|7b(yYzUVjfnccbNAbOex034hk^Z*^a4zy3SxBxt1i_R`|_fh_x_pPZ2gnj!ow zu7#1NZTeRfaTK(uFTobRqd=@vZ;#z*0J?RyIPe3;BY-wS+V?4FHi3o&HqU^PE~tFl z{jIIX^^99g8=$?AXQ`*91e!@L?RESIG{tCX|Dp+q_vT&sWHF#9&%Lbt*z4|SJIzUl zf%fm_Fi|^p(ctt4!J_y~6Kuona|OLy-|Muu6*Dn0ErcGmC_aV8h^3$?ucmw%WC zg$YdmOkCl5JR2jG;)6iWe@%@Urhx(u`Rn#j0sS=7E88IhGCjAvKKdPq`(iyoKUS@q zSBmlsUR%#eaOzP8tE$r5 zfss(4&Cd5ddvU*lS5z2fum(N0?;p5;H4`P%KthjM=l*(~Yaez29w+s}W0;ehI_F6< zU%^#`pN6!LV5P)RjZXW=fTsPAMERj4kQuA4PqYJ2YiqG+ERl4$k99QqQ$mcXx1mn782BVMQ`liC0=yqRq*7F}8etHh9>x_p3*sx2P z!8J{zJC(u2*fbud*GfS&=x({ zrY4&)5P@wc)x; zd_2&~Y?jm0Ng#{&o0<%`(#(QjmOYqPvseG<)((Qz-fmC-067p7+Zl&=T_AFyap69E zwg?Cp7UaO{{+jMn2cC>k=HO0ditaoyI%ZsXkCK(2gCOB9nj7NH%69O0mX*@W>r=OI%T5r=qmOIz587S26>=a$h5Jmz5{Cd zb?kzuHBidk@^<;lK!=pthu>pwnicAl@v#9dN?-f0uPPAviPqCEPXo<1_y*nP1`08# z{Gp7`2QhLt`O7ftNP8Avp2KJZ%`DsV#YkU(EwWy}mH87p+{OSFbJN znrn?Yk|Hqgh5S2KVyR)A*;ruCH;l(^0`}x&Tz#O|yE(@cus+aT$sxD{#7N7UABx@Q z@!yBz9N0^&T64UwX@T`(>*K`zm?ayZMVJE6yT(H*x=`B{&2ma<;;$v1x>={lL?zacw$S15e3Y+51$UxP$fKSE}4< z>FeJH>#Wn;(x!(Y)g)Nw`yaEE;Ylp{uzxcJqcFjqP9hryR$luU zlBgyiiY9#**9;)7!_=?Z&>PfoYDWukAEPpiE9Y>RE#J(2=J&$5sW{)a9kW2iBugq0 znB$UPirziB2->i#HXSh;kou=m9&uhEh1g?c+C4xVv-%SfUBgwIlIKUqO{p&#h* ztCnX3^+3z5zXV1?fD}VT|I`oxMIN|G6nh!S#qzONUlfp6A&I*9C!mbHx2N~q0P^sr zdfS0Bmf|FMRjWW#ec(x=kI@%a>||>~l8}iT===iKCGw#2NmzL@cIql4c-qTe5M`gl znmJy>bfpD}|J};vvo~ReBF#Ae?vs9FwF_4oUPVgxcFFAmuzD5;hjn0NDplJrP3#9v zM)=rt`a_^RCC83!JX1O?lTMDH56&7(#o1$)P-~pjd#nQEei$6J>cy)N*`MsW>;szL zvJg`(W{$+vI>-A1pecX5T~m*_VWsUERfaq73K3Ngeh=2b#k0TevjFWqa(ZhWYhkuB zWd2!ic@c^7~$SV>(d_&FoE`W zpU0Cu=t zK1~XA`$U(y9Wl_qgl8(Tm?ajo=NK~SKnuM<;o5`UqCEZUd&SS7-MdpR&6x@m`S?cD z2F6#yFzwgA`=ISN*wPk%0i^c#bA*;S&`{U>p)Ynol1~X0o{j_YQTuV^qBmT`boAN+ z(VFo&A=3~@|F2nN_$#2*y>SEMdO&pM<5q0;K-I-hN%j5$jrhvGE&2u2z{Qt;zz@j# zAoJPX_f3_Fqo@h+Dy=MZS89{Mx>u6_&J$lC3hn@B8{GLun34|RNznADj=Zd&0P3kc z;S!DaFiaQF@x)q{h!e1+=m%?8i{XG5#^~MY=@Ks7rK z;8Nt;eT{J>T0LMh8gxG zTiuEoWBK7woK;yF%y?L=THeM5)Ihpl?okQQhxO*Q%Njs04=|D%;LaIIDx6;7^`_0j zc|YWVwVx@`zyo(q`Z9K|wFWfhFy-d4As}Aj0M{BkH7t@_r|fa1m&RTOq)URegS^I6 z1$U`D{3R#`>-Wzuk-QM}-?>_SJ##$4!s_Jq3$?-w0!Pu7Q0x(b4(0oTF-Gw*@#R#w z0>wkFhn`HqII~+FzZCH)=qz7Djj91?;jHBT{di?xuZ=T;UZ5?v@z{7_%z3W%98E?) zKUSKktt$rWeWKy_EPX&N_xii!_<;&KLR~EX04dkZ-`$<7&gw$=1T*%iSu*8MtkuCN z;zx^mFz$pxS2=G2P?tlKMtuxWX2F9mrFbsH$5NhS#}oSkbK(0#!(a_Nu1`IJ*=|h# z*Rx3$G`g|NvmT>B7o{nT>L`I8#Hmp^3juwIOKvhE0`j3tEfdD`GS&2;pB6?nT}C9V zsRFF(H-ZnUV843$cQCgYv-ohzg@K`iVCCL9^3M+=NMUMvX&$>HFFWV_FDbA-xyQvi zKLoVgc$VF+5@(#CcoBUR=w8e70q0PljPrRXsL^YuLj+c-gFu^oFYRKBedyuL_H_Y_ zG__T!Tz@uL!+2M+ui%-I!0}?>)+A`Bq|3wS8jzY;s~PaTEIqEErA7jpPR!{S%6owb z7$^OYDg*tySZ;ZI0BFTaiYzPy$j&ueefRYPLqk#ajANiRzt>@WjVnzHURGDfZb90i zt`<=XR#v(_eAAd~(x%^HB~n1Uyx7sT`%3<+y$gF|(Jx25ZQWcL!Mf+H^3h8;LoIc_ zcwaMUfj3@B>*NDf$DOhuz|-pAvoC+A(UbehoK}Raz^dY=+-!das3oOzlH?-L$K}pT zj^aQ;kA(#-u*1#qRw_te0PS5Li3A(2*|b5(<2Ws7d83RivbI1L!3jrKege_on6B)? z>Ph4Hef&}pXkq4G_zKZ~9Bc1f54-^Fam8Js>w!Ra^>@roNP)CigsoBnfGo3*Tp7m` z(QZ%I%JgN>OfS98FhsxX4S!?mmINAy_Kjmsmw=AkKFVC$4Mezkm)d9o=vR*Xj5JnM zCy}v)JR4}*o;<3T$ALm)>Z;Zr0!@is;9x<&94Qy{OjZCba>cCk?Gd17Iqi`*&{v8a z!9nC9o1(4qB&jCf(fu8LxJmG@t`zbFm zy*B|g&pbYd7#*O?HBWB@l>s^SMYAnP0G&A{%=BR&P*sT7>q{7qhwFUSr;+xX z%?H*vl^)G{yoaV;qeC3da6Lw$z55^L!xLA2HA}-dV%Mh(Mc7Y2@ckJ4f;}Q5(AO^p zuW~KOZ9pHN=AuL*SdP7h8AaDM3<^DfuEpLu#)KX^$dgO2i(Tc($<&C|r(g{<6!>ME z3N$x8bvz62kwOtqrb!DL3H9HVvU#BOTt0d-ysw(`aXW%jpy^+!jtxieJ`{P_w)fFFXD5SJ|$+|%ahY*>>|Kg6>FyP z3M2Tp&FHl89ng9ux5M961DOsd26M&&`OI7ry^0muAr*L@y%MxK!_M&Ul0b{!XvQyz z0ENDo*7#)$v=DdfYdY?-F{&ONdN=YIozSqSx}#$DD5 zcsNfMfJUpvL-qALQ2mmhJ{#7XlZKrf6?X5LIFZ(FtQ4i-+z-YWH=*ZT9)6}UL%Gtu zdiS%sn?F2wKH@!&iOncH>;-F)!;aCl1t9j52S$9!fFk6??uTQvxnza1~ zy-S(;*)JStSR9GE^${y&MmXo%xnD3Y;i&>!Inv>)?evZKT=GNGJy!v{+1Jq4Gg26t zyE`uK!7?yo)$His0qkMTs=xl--v?T*y$;KvO(51X_U;>4d5*(6_YAS3YTB#+bsK_J za$co7(E_N`GiG)ID2r}o#=eoYUZknJ3(7HMvWyz!ir8%WOWeosIPOty=Uu*i0Bo1`vcFh5~IH_8F ztOIiPeU$YbSAW{n_=zwLXyyWLiFKIcr39*+lE*;{(I_q}x(ZZwgDQD{6;KUJw)5_% zsVtAFPfr{KZ8^h|bY^$IueA?P;SBcUDfAz(8bw$CJ>Cw4arON3Sr!imn zPDF$(;S7OGG#Xl%ogcbc>^7KT+`!(?4e7Z+vQdkwe>{LR0`I6@(gD&+W|7;*{3GdO zaNB*asD)1Fmi33=R|Vc9bKmOD zgL2S}`ZANZg@JO^{<|0OQgVP{ZO%b$VdRf<^+d!dC z{Y7tSfS7dmCQ9JW&n;Z2bae*plik9{ggzjyf~>Z8m_xkXq3pK)pp9>GahIdV-|i8A zeG$*R4{o`l2hc-Jy0Uqd*rimLhJR~gorjX-tn`q>+-RA?YrEgs8kC&-)AKoKcXHiC zQeFX(f0kY9Kvc8mK~nZK`LWG<$f=k9*WJGO9Hhyi1{(_prK6j!wnE2p>nPW3>TqRh!P zxXLu;)_yMRCC0&(I|3&`D>P0!ybtdd8(jZj+yu1iZwmG~sQ^{*@t<$V1bVmA=3;{0 zJ^k;m^+Y^qF^9cOKg9u62mIYy#+{e^%^Xk(0ZpzbdiupRAXWdO0!>Ds*)tOfrL926 zmzCG+bAjAb-jXB`1JP{`eU}dhO4j<=c?#o}kZe{K%?}z|iWE&VcB!VrOAf8vpv9yU z8lAZZbaIbu-U9CEdet!4U6EQ#Qr#-Nr-npUuH_aZb<9j6JWLkhM8|)pJaeZ<3vhItv zgLbNqotCZ%NjTK0sn@!ajm{3JG(nHP+~W_B`*jS@kTC zmmgQ32X?cm6hUd1v!GoFBRnFj2gDL6=zSGCA%mB~SNkE*7;j&CV2|~&;KK0yWF=@6 zZ3J%>FpKLYV)%%zf_CSQ@;515K{fH4$2FHg8_GGrKaQ*46aR4U?yDN4+A&_?Oki!O zzIK0N0Z8g0n>LXWQ2sx@w3p}&B_BDZEIH6>hgXj0+y^SC@Ck7H0<>RyPW~j`x2=rD z$`bc`(z=K*03$PahvtzVMux0+dN6ttX1LRjCiUYk!#Ijwd``sc3B4-mXao9|)u$l4 zjau~~VUcAZ>P;Tr{F^|=$&x?9G=S)75`4VzbasvU`PxDlv_F4k>6_<)+~^vk#W#S$ zbOc((@Oo+T4`_D3r+3fi5cBgqVEwKbvo6O8n$NUALj>gn>sb4&J7-uVpMjP; zGbGS70mRZ9{jM+!XzS7J2E%V4)gkF1Cwd^JxoD{_r0HZc*0pZX?6!LT@)zKYdb_hob{n9%D`Ej3%Yo`0s>lN=fZS#t=8pyfB@0Z(AFKniF$j3h3+T{v(dcJSpdEpzP7my-249Ac9>zTQA+N^qAq}ig?=DL@zXTHK*CjDDl{T45b4XhSk06!(*XCK5TP zj+6rNaY?0oBmt70znuC9>!@TZ#nI&-Xmn$583OEq%x%kxBQ66;EJ&=Z;4aPLQoP=9 zfW~AkD%FJE$bH4=eF!rJGMs@7bC;PP z;4=sVe-?`i?&vMe2^M=&uv)*q5M&YqG|t$n)PSdHZTfMSkQUI+ghkza?gwP56~XZm zqpH$Ls6L9%2ODOB5~EltNxWp=I6`5Zw^oJz;2|J$htO4ijK>k5yg+w;P^9W&4l^Zv1SV&$OLJ!0`% zB1LC0XeKEVbjAMzmrf9;wmFAt| zNofL&`^ntfBJBKOgfcYNwx9)P)=j)YuZ3?46P^fRDMtDk z=?~CO#q%9Mc^c^Y0Y&jOQ=s9P#+!Ri0&V8 ze*sDxi>lfE99akLNzrH6RlfgdyYt^8+<#V)qS+A#tQn>ork%g>O!2mLzW%`xteh2t z1b?u1ir$Tl)xoDA4RHzUB)rFtbA!<(%pvkKw{GwZ!3+|cG+%i4-Ovy?e8)6 z3vsbPJg4U~JF)K)jw`)&q6W?M&6>1M3J|fZ-%b~1N!C%dYmpB@8+|idzg`8j&86XY zw;8CDhbb*!6G;3;os0ajc(wlZGdRr*+ysIgFrQzxqPCAz0&fmY5Eo z0a`WLunpD+5;@>ka%~={#Qmu2H11dR`rDv8<)DeJK4lugez2GGMT$f_X#V46BD>!O zVl`_pbe0*kE04aoHDj-fBd#xx*8^?ugh=>q^xMx&9%Q@;8c&C?qhSS5l{4Wr*I^+3 za67Ti4j|hia@VD8pqO{OmLJh;V;R-MG?-1HX4?iD=fP^2{Y%XhqfdI&QNkWG%=Kct z=6B5JX)Y>-dwBky4$D?PSq(G(nl{UQ#r;;t5Vsmkg61=%)cq4P=hmo7>}Nbpy}wp5 zNppjB-$jO~-Ty(@sM{%~!YoOfqmQ|B1gsxzgEV*F38_}y`TAWRH2Fj!T02~o@9%71 z2h3PPsnkz2@nC&KKCh({3MB3Ck*GckbXef;c{dWE=%LPS`}aULRb)E-c|bbqkEB8| z9uywB{!e*86A`l7+A5fQ(4Qj-`^X7^>SKbrdisEVv+;B)V-5xB#Oi;R1}!ou zR`upFAl6Slx88jMTDaq1e=q^)l=e#HO*}(MvLwbFdO(wIZqwh79nRNi=9>K@(D*;3 zh&kX2=J#-CJ;NTR)ED(ufB~#GZ}IeBAOmvV_UUK(0pqlMj1)U~9lQG|x`X5W@9gpSr#&KjjOR#!5Pz!gwOJ?Q^=1*|+lkNw@?O`mo!YZso_Cp^qUjo*V+vsU-iORTrw(zfkk z*wOWU70FyNONs{-O2sN*T-mX2j|qQ8PNg~WUIlC6xt);X3#{{~Gel4CN5iFY(fB^kN>!iZSW_!X7(%{loANtcBAzPJX(Nam)K>db6+> z=F;|zbhfDgaotiTSHr6CH84Ke%?4WJ>92YhvVcOumHVbKo8HvM2vz+C?TvDzHt8bJ zg`se!eC$5Eyi=Em9YOn)xcXfZdrsq%(YievpzR*^6lTQyvkdz+opT*Do&FH%3Y^>W zK}=CH8?-+HS3}&c)Ws{S*mH>$*yI9P26M=>& zDY#~Kh2!`2J76yP-i0ef!$1K&+s4|sk2n4_Z*T7gZA8p;n-nvaJwR-M44)b1&Y!R8 zG68E-vOe7h%r)cp`$i7ygQmLp$Yh%dC}LCpH4WA@^|PlP`stv}derznVF&t7#D6m$ zJ@kQNEiZWqG!2ePCrP}XZy`TjFXms^C35jASfP=R4HYDCzq`{_=?nc}hUkE~&FlL> zRT9;!$u&TC#y-owUI5DNx);ogGybeGZ#}_koUU%MuT2E2;;Qn*LCmJz9@!R|*FbBl zC{iawhtWUq zv-+~38;sNZea1l-@j*Av@55aB`czUxIc#noTUWvnomh4yoHfC|Fh0I9ca~W zlrPm70SS&Y+a1Sf(FC%7yE6qEyQ8a@HfEiFoy3$W`hK=P&))?-Dc5r*NEmD8g}|@> zejy4oj=W^?yITx2a?e&vG91X?-qaP<*cQ?gyBK^rr6O*Q<5*Wm&v|_R-j$p;T`vj zfR>6o&y9%!MR4EJ8p8ha{LV#VTME#Uk00v3RRZMgvpVOA&#Za2V>3O=pmn-tyrdNX zy1|+fKZ2cA`k`8!9W`ir508BnmjL4C;3&6L1ERfFLK}nG^gA=Zy{!xozNZfCNg7_BoNzlZ< z=-Iu%Iy&5x_K_N+;G1XH)quNn&g!|V=MLj�?H8(gFn$bI=Lmn%#=Oc4^OomRZP? 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

  1. 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 w`J|tVgvI>9qxbcEo)o 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 z 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 NpjC_)m}Xc3{RhfTB9{OF literal 0 HcmV?d00001 diff --git a/models/compiled.json b/models/compiled.json deleted file mode 100644 index d063870..0000000 --- a/models/compiled.json +++ /dev/null @@ -1 +0,0 @@ -{"about": [51157, 14378], "half": [65535, 0], "past": [49105, 16430], "ten": [65535, 0], "the": [42265, 23270], "cracked": [65535, 0], "bell": [32706, 32829], "of": [39448, 26087], "small": [57316, 8219], "church": [65535, 0], "began": [65535, 0], "to": [31988, 33547], "ring": [5937, 59598], "and": [39965, 25570], "presently": [56959, 8576], "people": [26155, 39380], "gather": [16338, 49197], "for": [29862, 35673], "morning": [56143, 9392], "sermon": [65535, 0], "sunday": [65535, 0], "school": [65535, 0], "children": [45823, 19712], "distributed": [65535, 0], "themselves": [65535, 0], "house": [22472, 43063], "occupied": [65535, 0], "pews": [65535, 0], "with": [36277, 29258], "their": [26155, 39380], "parents": [21790, 43745], "so": [35195, 30340], "as": [39080, 26455], "be": [20360, 45175], "under": [65535, 0], "supervision": [65535, 0], "aunt": [65535, 0], "polly": [65535, 0], "came": [39262, 26273], "tom": [65535, 0], "sid": [65535, 0], "mary": [65535, 0], "sat": [65535, 0], "her": [31281, 34254], "being": [28026, 37509], "placed": [65535, 0], "next": [61425, 4110], "aisle": [65535, 0], "in": [31079, 34456], "order": [46760, 18775], "that": [30337, 35198], "he": [45494, 20041], "might": [32706, 32829], "far": [59557, 5978], "away": [40680, 24855], "from": [24964, 40571], "open": [37388, 28147], "window": [65535, 0], "seductive": [65535, 0], "outside": [65535, 0], "summer": [65535, 0], "scenes": [65535, 0], "possible": [65535, 0], "crowd": [65535, 0], "filed": [65535, 0], "up": [65535, 0], "aisles": [65535, 0], "aged": [65535, 0], "needy": [32706, 32829], "postmaster": [65535, 0], "who": [28279, 37256], "had": [47487, 18048], "seen": [65535, 0], "better": [37388, 28147], "days": [65535, 0], "mayor": [65535, 0], "his": [46786, 18749], "wife": [3530, 62005], "they": [39430, 26105], "a": [42955, 22580], "there": [38490, 27045], "among": [52389, 13146], "other": [35983, 29552], "unnecessaries": [65535, 0], "justice": [65535, 0], "peace": [32706, 32829], "widow": [65535, 0], "douglass": [65535, 0], "fair": [65535, 0], "smart": [65535, 0], "forty": [65535, 0], "generous": [65535, 0], "good": [34318, 31217], "hearted": [65535, 0], "soul": [65535, 0], "well": [37258, 28277], "do": [40355, 25180], "hill": [65535, 0], "mansion": [65535, 0], "only": [65535, 0], "palace": [65535, 0], "town": [57316, 8219], "most": [28433, 37102], "hospitable": [65535, 0], "much": [36156, 29379], "lavish": [65535, 0], "matter": [49105, 16430], "festivities": [65535, 0], "st": [65535, 0], "petersburg": [65535, 0], "could": [42618, 22917], "boast": [65535, 0], "bent": [49105, 16430], "venerable": [65535, 0], "major": [65535, 0], "mrs": [65535, 0], "ward": [65535, 0], "lawyer": [65535, 0], "riverson": [65535, 0], "new": [58490, 7045], "notable": [65535, 0], "distance": [65535, 0], "belle": [65535, 0], "village": [65535, 0], "followed": [65535, 0], "by": [27701, 37834], "troop": [65535, 0], "lawn": [65535, 0], "clad": [65535, 0], "ribbon": [65535, 0], "decked": [65535, 0], "young": [65535, 0], "heart": [48140, 17395], "breakers": [65535, 0], "then": [33252, 32283], "all": [37749, 27786], "clerks": [65535, 0], "body": [43635, 21900], "stood": [54578, 10957], "vestibule": [65535, 0], "sucking": [65535, 0], "cane": [65535, 0], "heads": [65535, 0], "circling": [65535, 0], "wall": [65535, 0], "oiled": [65535, 0], "simpering": [65535, 0], "admirers": [65535, 0], "till": [26467, 39068], "last": [47281, 18254], "girl": [65535, 0], "run": [32706, 32829], "gantlet": [65535, 0], "model": [65535, 0], "boy": [63572, 1963], "willie": [65535, 0], "mufferson": [65535, 0], "taking": [65535, 0], "heedful": [65535, 0], "care": [16338, 49197], "mother": [43635, 21900], "if": [30001, 35534], "she": [46095, 19440], "were": [37622, 27913], "cut": [54578, 10957], "glass": [65535, 0], "always": [65535, 0], "brought": [32706, 32829], "was": [56143, 9392], "pride": [43635, 21900], "matrons": [65535, 0], "boys": [65535, 0], "hated": [65535, 0], "him": [34493, 31042], "besides": [19609, 45926], "been": [65535, 0], "thrown": [65535, 0], "them": [27709, 37826], "white": [65535, 0], "handkerchief": [65535, 0], "hanging": [65535, 0], "out": [45318, 20217], "pocket": [65535, 0], "behind": [65535, 0], "usual": [65535, 0], "on": [42224, 23311], "sundays": [65535, 0], "accidentally": [32706, 32829], "no": [30001, 35534], "looked": [65535, 0], "upon": [65535, 0], "snobs": [65535, 0], "congregation": [65535, 0], "fully": [65535, 0], "assembled": [43635, 21900], "now": [35919, 29616], "rang": [65535, 0], "once": [37388, 28147], "more": [28026, 37509], "warn": [65535, 0], "laggards": [65535, 0], "stragglers": [65535, 0], "solemn": [65535, 0], "hush": [65535, 0], "fell": [58959, 6576], "which": [30309, 35226], "broken": [65535, 0], "tittering": [65535, 0], "whispering": [65535, 0], "choir": [65535, 0], "gallery": [65535, 0], "tittered": [65535, 0], "whispered": [65535, 0], "through": [59817, 5718], "service": [65535, 0], "not": [15446, 50089], "ill": [9332, 56203], "bred": [32706, 32829], "but": [34401, 31134], "i": [13500, 52035], "have": [65535, 0], "forgotten": [65535, 0], "where": [17824, 47711], "it": [40160, 25375], "great": [46458, 19077], "many": [54578, 10957], "years": [65535, 0], "ago": [65535, 0], "can": [42349, 23186], "scarcely": [65535, 0], "remember": [21790, 43745], "anything": [65535, 0], "think": [65535, 0], "some": [24017, 41518], "foreign": [65535, 0], "country": [65535, 0], "minister": [65535, 0], "gave": [65535, 0], "hymn": [65535, 0], "read": [39262, 26273], "relish": [65535, 0], "peculiar": [65535, 0], "style": [65535, 0], "admired": [65535, 0], "part": [30186, 35349], "voice": [49105, 16430], "medium": [65535, 0], "key": [32706, 32829], "climbed": [65535, 0], "steadily": [65535, 0], "reached": [65535, 0], "certain": [65535, 0], "point": [65535, 0], "bore": [32706, 32829], "strong": [32706, 32829], "emphasis": [65535, 0], "topmost": [65535, 0], "word": [26925, 38610], "plunged": [65535, 0], "down": [65535, 0], "spring": [52389, 13146], "board": [65535, 0], "shall": [18155, 47380], "car": [65535, 0], "ri": [65535, 0], "ed": [65535, 0], "toe": [65535, 0], "skies": [65535, 0], "flow'ry": [65535, 0], "beds": [65535, 0], "ease": [65535, 0], "whilst": [65535, 0], "others": [10888, 54647], "fight": [65535, 0], "win": [65535, 0], "prize": [65535, 0], "sail": [65535, 0], "thro'": [65535, 0], "bloody": [65535, 0], "seas": [32706, 32829], "regarded": [65535, 0], "wonderful": [65535, 0], "reader": [65535, 0], "at": [30462, 35073], "sociables": [65535, 0], "called": [57316, 8219], "poetry": [65535, 0], "when": [38533, 27002], "ladies": [65535, 0], "would": [34940, 30595], "lift": [65535, 0], "hands": [45002, 20533], "let": [23888, 41647], "fall": [37388, 28147], "helplessly": [65535, 0], "laps": [65535, 0], "eyes": [46760, 18775], "shake": [43635, 21900], "say": [32706, 32829], "words": [32706, 32829], "cannot": [5937, 59598], "express": [65535, 0], "is": [19641, 45894], "too": [28239, 37296], "beautiful": [65535, 0], "this": [22881, 42654], "mortal": [65535, 0], "earth": [13068, 52467], "after": [52389, 13146], "sung": [65535, 0], "rev": [65535, 0], "mr": [45823, 19712], "sprague": [65535, 0], "turned": [65535, 0], "himself": [65535, 0], "into": [54031, 11504], "bulletin": [65535, 0], "off": [53583, 11952], "notices": [65535, 0], "meetings": [65535, 0], "societies": [65535, 0], "things": [43635, 21900], "seemed": [65535, 0], "list": [32706, 32829], "stretch": [65535, 0], "crack": [65535, 0], "doom": [65535, 0], "queer": [65535, 0], "custom": [65535, 0], "still": [30522, 35013], "kept": [40902, 24633], "america": [32706, 32829], "even": [65535, 0], "cities": [65535, 0], "here": [24518, 41017], "age": [39262, 26273], "abundant": [65535, 0], "newspapers": [65535, 0], "often": [26155, 39380], "less": [65535, 0], "justify": [65535, 0], "traditional": [65535, 0], "harder": [65535, 0], "get": [37388, 28147], "rid": [65535, 0], "prayed": [65535, 0], "prayer": [65535, 0], "went": [55574, 9961], "details": [65535, 0], "pleaded": [32706, 32829], "little": [62403, 3132], "churches": [65535, 0], "itself": [65535, 0], "county": [65535, 0], "state": [37388, 28147], "officers": [43635, 21900], "united": [65535, 0], "states": [65535, 0], "congress": [65535, 0], "president": [65535, 0], "government": [65535, 0], "poor": [65535, 0], "sailors": [32706, 32829], "tossed": [65535, 0], "stormy": [65535, 0], "oppressed": [65535, 0], "millions": [65535, 0], "groaning": [65535, 0], "heel": [65535, 0], "european": [65535, 0], "monarchies": [65535, 0], "oriental": [65535, 0], "despotisms": [65535, 0], "such": [26564, 38971], "light": [24518, 41017], "tidings": [65535, 0], "yet": [19366, 46169], "see": [29635, 35900], "nor": [8908, 56627], "ears": [65535, 0], "hear": [58959, 6576], "withal": [65535, 0], "heathen": [65535, 0], "islands": [65535, 0], "sea": [9332, 56203], "closed": [65535, 0], "supplication": [65535, 0], "speak": [54578, 10957], "find": [46760, 18775], "grace": [7257, 58278], "favor": [65535, 0], "seed": [65535, 0], "sown": [65535, 0], "fertile": [65535, 0], "ground": [57316, 8219], "yielding": [65535, 0], "time": [32706, 32829], "grateful": [65535, 0], "harvest": [65535, 0], "amen": [65535, 0], "rustling": [65535, 0], "dresses": [65535, 0], "standing": [65535, 0], "whose": [30186, 35349], "history": [65535, 0], "book": [65535, 0], "relates": [65535, 0], "did": [25585, 39950], "enjoy": [65535, 0], "endured": [65535, 0], "restive": [65535, 0], "tally": [65535, 0], "unconsciously": [65535, 0], "listening": [65535, 0], "knew": [55421, 10114], "old": [50597, 14938], "clergyman's": [65535, 0], "regular": [65535, 0], "route": [65535, 0], "over": [65535, 0], "trifle": [65535, 0], "interlarded": [65535, 0], "ear": [65535, 0], "detected": [65535, 0], "whole": [55421, 10114], "nature": [26155, 39380], "resented": [65535, 0], "considered": [65535, 0], "additions": [65535, 0], "unfair": [65535, 0], "scoundrelly": [65535, 0], "midst": [49105, 16430], "fly": [65535, 0], "lit": [65535, 0], "back": [61549, 3986], "pew": [65535, 0], "front": [65535, 0], "tortured": [65535, 0], "spirit": [58959, 6576], "calmly": [65535, 0], "rubbing": [65535, 0], "its": [65535, 0], "together": [37388, 28147], "embracing": [65535, 0], "head": [50368, 15167], "arms": [65535, 0], "polishing": [65535, 0], "vigorously": [65535, 0], "almost": [40902, 24633], "company": [39262, 26273], "slender": [65535, 0], "thread": [65535, 0], "neck": [65535, 0], "exposed": [65535, 0], "view": [32706, 32829], "scraping": [65535, 0], "wings": [65535, 0], "hind": [65535, 0], "legs": [65535, 0], "smoothing": [65535, 0], "coat": [65535, 0], "tails": [65535, 0], "going": [59557, 5978], "toilet": [65535, 0], "tranquilly": [65535, 0], "perfectly": [65535, 0], "safe": [26155, 39380], "indeed": [65535, 0], "sorely": [65535, 0], "tom's": [65535, 0], "itched": [65535, 0], "grab": [65535, 0], "dare": [54578, 10957], "believed": [65535, 0], "instantly": [65535, 0], "destroyed": [65535, 0], "thing": [50929, 14606], "while": [55155, 10380], "closing": [65535, 0], "sentence": [32706, 32829], "hand": [38490, 27045], "curve": [65535, 0], "steal": [65535, 0], "forward": [54578, 10957], "instant": [46760, 18775], "prisoner": [16338, 49197], "war": [65535, 0], "act": [65535, 0], "made": [34754, 30781], "go": [26690, 38845], "text": [65535, 0], "droned": [65535, 0], "along": [54578, 10957], "monotonously": [65535, 0], "an": [30632, 34903], "argument": [65535, 0], "prosy": [65535, 0], "nod": [65535, 0], "dealt": [65535, 0], "limitless": [65535, 0], "fire": [41647, 23888], "brimstone": [65535, 0], "thinned": [65535, 0], "predestined": [65535, 0], "elect": [65535, 0], "hardly": [65535, 0], "worth": [46760, 18775], "saving": [65535, 0], "counted": [65535, 0], "pages": [65535, 0], "how": [22180, 43355], "seldom": [65535, 0], "else": [13068, 52467], "discourse": [26155, 39380], "however": [65535, 0], "really": [65535, 0], "interested": [65535, 0], "grand": [65535, 0], "moving": [65535, 0], "picture": [43635, 21900], "assembling": [65535, 0], "world's": [65535, 0], "hosts": [32706, 32829], "millennium": [65535, 0], "lion": [65535, 0], "lamb": [65535, 0], "should": [11879, 53656], "lie": [57316, 8219], "child": [65535, 0], "lead": [21790, 43745], "pathos": [65535, 0], "lesson": [65535, 0], "moral": [65535, 0], "spectacle": [65535, 0], "lost": [19609, 45926], "thought": [48391, 17144], "conspicuousness": [65535, 0], "principal": [65535, 0], "character": [65535, 0], "before": [39730, 25805], "looking": [56143, 9392], "nations": [65535, 0], "face": [37993, 27542], "said": [63305, 2230], "wished": [49105, 16430], "tame": [65535, 0], "lapsed": [65535, 0], "suffering": [65535, 0], "again": [65535, 0], "dry": [65535, 0], "resumed": [65535, 0], "bethought": [65535, 0], "treasure": [65535, 0], "got": [62073, 3462], "large": [32706, 32829], "black": [65535, 0], "beetle": [65535, 0], "formidable": [65535, 0], "jaws": [65535, 0], "pinchbug": [65535, 0], "percussion": [65535, 0], "cap": [65535, 0], "box": [65535, 0], "first": [28026, 37509], "take": [33592, 31943], "finger": [40902, 24633], "natural": [65535, 0], "fillip": [65535, 0], "floundering": [65535, 0], "hurt": [57316, 8219], "boy's": [65535, 0], "mouth": [65535, 0], "lay": [43635, 21900], "working": [43635, 21900], "helpless": [65535, 0], "unable": [65535, 0], "turn": [65535, 0], "eyed": [65535, 0], "longed": [65535, 0], "reach": [65535, 0], "uninterested": [65535, 0], "found": [45318, 20217], "relief": [65535, 0], "vagrant": [65535, 0], "poodle": [65535, 0], "dog": [57316, 8219], "idling": [65535, 0], "sad": [13068, 52467], "lazy": [65535, 0], "softness": [65535, 0], "quiet": [28026, 37509], "weary": [65535, 0], "captivity": [65535, 0], "sighing": [65535, 0], "change": [43635, 21900], "spied": [65535, 0], "drooping": [65535, 0], "tail": [65535, 0], "lifted": [65535, 0], "wagged": [65535, 0], "surveyed": [65535, 0], "walked": [65535, 0], "around": [65535, 0], "smelt": [65535, 0], "grew": [65535, 0], "bolder": [65535, 0], "took": [65535, 0], "closer": [65535, 0], "smell": [65535, 0], "lip": [65535, 0], "gingerly": [65535, 0], "snatch": [65535, 0], "just": [65535, 0], "missing": [65535, 0], "another": [40902, 24633], "diversion": [65535, 0], "subsided": [65535, 0], "stomach": [65535, 0], "between": [65535, 0], "paws": [65535, 0], "continued": [65535, 0], "experiments": [65535, 0], "indifferent": [65535, 0], "absent": [65535, 0], "minded": [65535, 0], "nodded": [65535, 0], "chin": [52389, 13146], "descended": [65535, 0], "touched": [65535, 0], "enemy": [65535, 0], "seized": [65535, 0], "sharp": [65535, 0], "yelp": [65535, 0], "flirt": [65535, 0], "poodle's": [65535, 0], "couple": [65535, 0], "yards": [65535, 0], "neighboring": [65535, 0], "spectators": [65535, 0], "shook": [65535, 0], "gentle": [19609, 45926], "inward": [65535, 0], "joy": [65535, 0], "several": [65535, 0], "faces": [65535, 0], "fans": [65535, 0], "handkerchiefs": [65535, 0], "entirely": [65535, 0], "happy": [39262, 26273], "foolish": [26155, 39380], "probably": [65535, 0], "felt": [49105, 16430], "resentment": [65535, 0], "craving": [65535, 0], "revenge": [65535, 0], "wary": [65535, 0], "attack": [65535, 0], "jumping": [65535, 0], "every": [65535, 0], "circle": [65535, 0], "lighting": [65535, 0], "fore": [65535, 0], "within": [20427, 45108], "inch": [65535, 0], "creature": [28026, 37509], "making": [36348, 29187], "snatches": [65535, 0], "teeth": [39262, 26273], "jerking": [65535, 0], "flapped": [65535, 0], "tired": [43635, 21900], "tried": [65535, 0], "amuse": [65535, 0], "ant": [527, 65008], "nose": [49105, 16430], "close": [65535, 0], "floor": [65535, 0], "quickly": [65535, 0], "wearied": [65535, 0], "yawned": [65535, 0], "sighed": [65535, 0], "forgot": [43635, 21900], "wild": [65535, 0], "agony": [65535, 0], "sailing": [65535, 0], "yelps": [65535, 0], "crossed": [65535, 0], "altar": [65535, 0], "flew": [65535, 0], "doors": [65535, 0], "clamored": [65535, 0], "home": [15732, 49803], "anguish": [65535, 0], "progress": [65535, 0], "woolly": [65535, 0], "comet": [65535, 0], "orbit": [65535, 0], "gleam": [65535, 0], "speed": [49105, 16430], "frantic": [65535, 0], "sufferer": [65535, 0], "sheered": [65535, 0], "course": [47613, 17922], "sprang": [65535, 0], "master's": [65535, 0], "lap": [65535, 0], "flung": [65535, 0], "distress": [65535, 0], "died": [65535, 0], "red": [54578, 10957], "faced": [65535, 0], "suffocating": [65535, 0], "suppressed": [65535, 0], "laughter": [65535, 0], "come": [18945, 46590], "dead": [53583, 11952], "standstill": [65535, 0], "lame": [65535, 0], "halting": [65535, 0], "possibility": [65535, 0], "impressiveness": [65535, 0], "end": [17049, 48486], "gravest": [65535, 0], "sentiments": [65535, 0], "constantly": [65535, 0], "received": [65535, 0], "smothered": [65535, 0], "burst": [65535, 0], "unholy": [65535, 0], "mirth": [32706, 32829], "cover": [65535, 0], "remote": [65535, 0], "parson": [65535, 0], "rarely": [65535, 0], "facetious": [65535, 0], "genuine": [65535, 0], "ordeal": [65535, 0], "benediction": [65535, 0], "pronounced": [65535, 0], "sawyer": [65535, 0], "quite": [49105, 16430], "cheerful": [65535, 0], "thinking": [65535, 0], "satisfaction": [16338, 49197], "divine": [65535, 0], "bit": [65535, 0], "variety": [65535, 0], "one": [35515, 30020], "marring": [65535, 0], "willing": [65535, 0], "play": [52389, 13146], "upright": [65535, 0], "carry": [65535, 0], "about half": [65535, 0], "half past": [65535, 0], "past ten": [65535, 0], "ten the": [65535, 0], "the cracked": [65535, 0], "cracked bell": [65535, 0], "bell of": [65535, 0], "of the": [56959, 8576], "the small": [65535, 0], "small church": [65535, 0], "church began": [65535, 0], "began to": [65535, 0], "to ring": [65535, 0], "ring and": [32706, 32829], "and presently": [65535, 0], "presently the": [65535, 0], "the people": [65535, 0], "people began": [65535, 0], "to gather": [65535, 0], "gather for": [65535, 0], "for the": [43635, 21900], "the morning": [65535, 0], "morning sermon": [65535, 0], "sermon the": [65535, 0], "the sunday": [65535, 0], "sunday school": [65535, 0], "school children": [65535, 0], "children distributed": [65535, 0], "distributed themselves": [65535, 0], "themselves about": [65535, 0], "about the": [52389, 13146], "the house": [57316, 8219], "house and": [28026, 37509], "and occupied": [65535, 0], "occupied pews": [65535, 0], "pews with": [65535, 0], "with their": [43635, 21900], "their parents": [32706, 32829], "parents so": [65535, 0], "so as": [65535, 0], "as to": [54578, 10957], "to be": [40511, 25024], "be under": [65535, 0], "under supervision": [65535, 0], "supervision aunt": [65535, 0], "aunt polly": [65535, 0], "polly came": [65535, 0], "came and": [65535, 0], "and tom": [65535, 0], "tom and": [65535, 0], "and sid": [65535, 0], "sid and": [65535, 0], "and mary": [65535, 0], "mary sat": [65535, 0], "sat with": [65535, 0], "with her": [18674, 46861], "her tom": [65535, 0], "tom being": [65535, 0], "being placed": [65535, 0], "placed next": [65535, 0], "next the": [65535, 0], "the aisle": [65535, 0], "aisle in": [65535, 0], "in order": [65535, 0], "order that": [65535, 0], "that he": [46370, 19165], "he might": [65535, 0], "might be": [65535, 0], "be as": [65535, 0], "as far": [65535, 0], "far away": [65535, 0], "away from": [65535, 0], "from the": [30366, 35169], "the open": [65535, 0], "open window": [65535, 0], "window and": [65535, 0], "and the": [52604, 12931], "the seductive": [65535, 0], "seductive outside": [65535, 0], "outside summer": [65535, 0], "summer scenes": [65535, 0], "scenes as": [65535, 0], "as possible": [65535, 0], "possible the": [65535, 0], "the crowd": [65535, 0], "crowd filed": [65535, 0], "filed up": [65535, 0], "up the": [65535, 0], "the aisles": [65535, 0], "aisles the": [65535, 0], "the aged": [65535, 0], "aged and": [65535, 0], "and needy": [65535, 0], "needy postmaster": [65535, 0], "postmaster who": [65535, 0], "who had": [65535, 0], "had seen": [65535, 0], "seen better": [65535, 0], "better days": [65535, 0], "days the": [65535, 0], "the mayor": [65535, 0], "mayor and": [65535, 0], "and his": [53934, 11601], "his wife": [13068, 52467], "wife for": [65535, 0], "for they": [58959, 6576], "they had": [65535, 0], "had a": [58229, 7306], "a mayor": [65535, 0], "mayor there": [65535, 0], "there among": [65535, 0], "among other": [65535, 0], "other unnecessaries": [65535, 0], "unnecessaries the": [65535, 0], "the justice": [65535, 0], "justice of": [65535, 0], "the peace": [65535, 0], "peace the": [65535, 0], "the widow": [65535, 0], "widow douglass": [65535, 0], "douglass fair": [65535, 0], "fair smart": [65535, 0], "smart and": [65535, 0], "and forty": [65535, 0], "forty a": [65535, 0], "a generous": [65535, 0], "generous good": [65535, 0], "good hearted": [65535, 0], "hearted soul": [65535, 0], "soul and": [65535, 0], "and well": [65535, 0], "well to": [65535, 0], "to do": [60055, 5480], "do her": [65535, 0], "her hill": [65535, 0], "hill mansion": [65535, 0], "mansion the": [65535, 0], "the only": [65535, 0], "only palace": [65535, 0], "palace in": [65535, 0], "in the": [40813, 24722], "the town": [65535, 0], "town and": [65535, 0], "the most": [65535, 0], "most hospitable": [65535, 0], "hospitable and": [65535, 0], "and much": [21790, 43745], "much the": [65535, 0], "most lavish": [65535, 0], "lavish in": [65535, 0], "the matter": [52389, 13146], "matter of": [65535, 0], "of festivities": [65535, 0], "festivities that": [65535, 0], "that st": [65535, 0], "st petersburg": [65535, 0], "petersburg could": [65535, 0], "could boast": [65535, 0], "boast the": [65535, 0], "the bent": [65535, 0], "bent and": [65535, 0], "and venerable": [65535, 0], "venerable major": [65535, 0], "major and": [65535, 0], "and mrs": [65535, 0], "mrs ward": [65535, 0], "ward lawyer": [65535, 0], "lawyer riverson": [65535, 0], "riverson the": [65535, 0], "the new": [65535, 0], "new notable": [65535, 0], "notable from": [65535, 0], "from a": [52389, 13146], "a distance": [65535, 0], "distance next": [65535, 0], "the belle": [65535, 0], "belle of": [65535, 0], "the village": [65535, 0], "village followed": [65535, 0], "followed by": [65535, 0], "by a": [43635, 21900], "a troop": [65535, 0], "troop of": [65535, 0], "of lawn": [65535, 0], "lawn clad": [65535, 0], "clad and": [65535, 0], "and ribbon": [65535, 0], "ribbon decked": [65535, 0], "decked young": [65535, 0], "young heart": [65535, 0], "heart breakers": [65535, 0], "breakers then": [65535, 0], "then all": [65535, 0], "all the": [43635, 21900], "the young": [65535, 0], "young clerks": [65535, 0], "clerks in": [65535, 0], "in town": [65535, 0], "town in": [65535, 0], "in a": [48576, 16959], "a body": [65535, 0], "body for": [65535, 0], "had stood": [65535, 0], "stood in": [43635, 21900], "the vestibule": [65535, 0], "vestibule sucking": [65535, 0], "sucking their": [65535, 0], "their cane": [65535, 0], "cane heads": [65535, 0], "heads a": [65535, 0], "a circling": [65535, 0], "circling wall": [65535, 0], "wall of": [65535, 0], "of oiled": [65535, 0], "oiled and": [65535, 0], "and simpering": [65535, 0], "simpering admirers": [65535, 0], "admirers till": [65535, 0], "till the": [65535, 0], "the last": [43635, 21900], "last girl": [65535, 0], "girl had": [65535, 0], "had run": [65535, 0], "run their": [65535, 0], "their gantlet": [65535, 0], "gantlet and": [65535, 0], "and last": [65535, 0], "last of": [65535, 0], "of all": [46760, 18775], "all came": [65535, 0], "came the": [65535, 0], "the model": [65535, 0], "model boy": [65535, 0], "boy willie": [65535, 0], "willie mufferson": [65535, 0], "mufferson taking": [65535, 0], "taking as": [65535, 0], "as heedful": [65535, 0], "heedful care": [65535, 0], "care of": [32706, 32829], "of his": [49602, 15933], "his mother": [65535, 0], "mother as": [65535, 0], "as if": [49105, 16430], "if she": [46760, 18775], "she were": [65535, 0], "were cut": [65535, 0], "cut glass": [65535, 0], "glass he": [65535, 0], "he always": [65535, 0], "always brought": [65535, 0], "brought his": [65535, 0], "mother to": [65535, 0], "to church": [65535, 0], "church and": [65535, 0], "and was": [65535, 0], "was the": [56143, 9392], "the pride": [65535, 0], "pride of": [65535, 0], "the matrons": [65535, 0], "matrons the": [65535, 0], "the boys": [65535, 0], "boys all": [65535, 0], "all hated": [65535, 0], "hated him": [65535, 0], "him he": [57316, 8219], "he was": [60377, 5158], "was so": [65535, 0], "so good": [43635, 21900], "good and": [65535, 0], "and besides": [43635, 21900], "besides he": [65535, 0], "he had": [57565, 7970], "had been": [65535, 0], "been thrown": [65535, 0], "thrown up": [65535, 0], "up to": [65535, 0], "to them": [65535, 0], "them so": [65535, 0], "so much": [43635, 21900], "much his": [65535, 0], "his white": [65535, 0], "white handkerchief": [65535, 0], "handkerchief was": [65535, 0], "was hanging": [65535, 0], "hanging out": [65535, 0], "out of": [46760, 18775], "his pocket": [65535, 0], "pocket behind": [65535, 0], "behind as": [65535, 0], "as usual": [65535, 0], "usual on": [65535, 0], "on sundays": [65535, 0], "sundays accidentally": [65535, 0], "accidentally tom": [65535, 0], "tom had": [65535, 0], "had no": [65535, 0], "no handkerchief": [65535, 0], "handkerchief and": [65535, 0], "and he": [55574, 9961], "he looked": [65535, 0], "looked upon": [65535, 0], "upon boys": [65535, 0], "boys who": [65535, 0], "had as": [65535, 0], "as snobs": [65535, 0], "snobs the": [65535, 0], "the congregation": [65535, 0], "congregation being": [65535, 0], "being fully": [65535, 0], "fully assembled": [65535, 0], "assembled now": [65535, 0], "now the": [43635, 21900], "the bell": [21790, 43745], "bell rang": [65535, 0], "rang once": [65535, 0], "once more": [65535, 0], "more to": [49105, 16430], "to warn": [65535, 0], "warn laggards": [65535, 0], "laggards and": [65535, 0], "and stragglers": [65535, 0], "stragglers and": [65535, 0], "and then": [51157, 14378], "then a": [21790, 43745], "a solemn": [65535, 0], "solemn hush": [65535, 0], "hush fell": [65535, 0], "fell upon": [65535, 0], "upon the": [65535, 0], "the church": [65535, 0], "church which": [65535, 0], "which was": [52389, 13146], "was only": [65535, 0], "only broken": [65535, 0], "broken by": [65535, 0], "by the": [43635, 21900], "the tittering": [65535, 0], "tittering and": [65535, 0], "and whispering": [65535, 0], "whispering of": [65535, 0], "the choir": [65535, 0], "choir in": [65535, 0], "the gallery": [65535, 0], "gallery the": [65535, 0], "choir always": [65535, 0], "always tittered": [65535, 0], "tittered and": [65535, 0], "and whispered": [65535, 0], "whispered all": [65535, 0], "all through": [65535, 0], "through service": [65535, 0], "service there": [65535, 0], "there was": [62795, 2740], "was once": [32706, 32829], "once a": [65535, 0], "a church": [65535, 0], "church choir": [65535, 0], "choir that": [65535, 0], "that was": [54578, 10957], "was not": [50368, 15167], "not ill": [65535, 0], "ill bred": [65535, 0], "bred but": [65535, 0], "but i": [20642, 44893], "i have": [65535, 0], "have forgotten": [65535, 0], "forgotten where": [65535, 0], "where it": [43635, 21900], "it was": [55155, 10380], "was now": [65535, 0], "now it": [65535, 0], "was a": [63480, 2055], "a great": [65535, 0], "great many": [65535, 0], "many years": [65535, 0], "years ago": [65535, 0], "ago and": [65535, 0], "and i": [11879, 53656], "i can": [54578, 10957], "can scarcely": [65535, 0], "scarcely remember": [65535, 0], "remember anything": [65535, 0], "anything about": [65535, 0], "about it": [65535, 0], "it but": [43635, 21900], "i think": [65535, 0], "think it": [65535, 0], "was in": [65535, 0], "in some": [32706, 32829], "some foreign": [65535, 0], "foreign country": [65535, 0], "country the": [65535, 0], "the minister": [65535, 0], "minister gave": [65535, 0], "gave out": [65535, 0], "out the": [65535, 0], "the hymn": [65535, 0], "hymn and": [65535, 0], "and read": [65535, 0], "read it": [21790, 43745], "it through": [65535, 0], "through with": [65535, 0], "with a": [52389, 13146], "a relish": [65535, 0], "relish in": [65535, 0], "a peculiar": [65535, 0], "peculiar style": [65535, 0], "style which": [65535, 0], "was much": [65535, 0], "much admired": [65535, 0], "admired in": [65535, 0], "in that": [46760, 18775], "that part": [65535, 0], "part of": [54578, 10957], "the country": [65535, 0], "country his": [65535, 0], "his voice": [65535, 0], "voice began": [65535, 0], "began on": [65535, 0], "on a": [49105, 16430], "a medium": [65535, 0], "medium key": [65535, 0], "key and": [32706, 32829], "and climbed": [65535, 0], "climbed steadily": [65535, 0], "steadily up": [65535, 0], "up till": [65535, 0], "till it": [32706, 32829], "it reached": [65535, 0], "reached a": [65535, 0], "a certain": [65535, 0], "certain point": [65535, 0], "point where": [65535, 0], "it bore": [65535, 0], "bore with": [65535, 0], "with strong": [65535, 0], "strong emphasis": [65535, 0], "emphasis upon": [65535, 0], "the topmost": [65535, 0], "topmost word": [65535, 0], "word and": [32706, 32829], "then plunged": [65535, 0], "plunged down": [65535, 0], "down as": [65535, 0], "if from": [65535, 0], "a spring": [65535, 0], "spring board": [65535, 0], "board shall": [65535, 0], "shall i": [13068, 52467], "i be": [16338, 49197], "be car": [65535, 0], "car ri": [65535, 0], "ri ed": [65535, 0], "ed toe": [65535, 0], "toe the": [65535, 0], "the skies": [65535, 0], "skies on": [65535, 0], "on flow'ry": [65535, 0], "flow'ry beds": [65535, 0], "beds of": [65535, 0], "of ease": [65535, 0], "ease whilst": [65535, 0], "whilst others": [65535, 0], "others fight": [65535, 0], "fight to": [65535, 0], "to win": [65535, 0], "win the": [65535, 0], "the prize": [65535, 0], "prize and": [65535, 0], "and sail": [65535, 0], "sail thro'": [65535, 0], "thro' bloody": [65535, 0], "bloody seas": [65535, 0], "seas he": [65535, 0], "was regarded": [65535, 0], "regarded as": [65535, 0], "as a": [30186, 35349], "a wonderful": [65535, 0], "wonderful reader": [65535, 0], "reader at": [65535, 0], "at church": [65535, 0], "church sociables": [65535, 0], "sociables he": [65535, 0], "was always": [65535, 0], "always called": [65535, 0], "called upon": [65535, 0], "upon to": [65535, 0], "to read": [65535, 0], "read poetry": [65535, 0], "poetry and": [65535, 0], "and when": [53583, 11952], "when he": [48011, 17524], "was through": [65535, 0], "through the": [46760, 18775], "the ladies": [65535, 0], "ladies would": [65535, 0], "would lift": [65535, 0], "lift up": [65535, 0], "up their": [65535, 0], "their hands": [65535, 0], "hands and": [65535, 0], "and let": [16338, 49197], "let them": [65535, 0], "them fall": [65535, 0], "fall helplessly": [65535, 0], "helplessly in": [65535, 0], "in their": [32706, 32829], "their laps": [65535, 0], "laps and": [65535, 0], "and wall": [65535, 0], "wall their": [65535, 0], "their eyes": [65535, 0], "eyes and": [65535, 0], "and shake": [65535, 0], "shake their": [65535, 0], "their heads": [65535, 0], "heads as": [65535, 0], "as much": [32706, 32829], "much as": [65535, 0], "to say": [32706, 32829], "say words": [65535, 0], "words cannot": [65535, 0], "cannot express": [65535, 0], "express it": [65535, 0], "it it": [65535, 0], "it is": [33836, 31699], "is too": [21790, 43745], "too beautiful": [65535, 0], "beautiful too": [65535, 0], "beautiful for": [65535, 0], "for this": [24518, 41017], "this mortal": [65535, 0], "mortal earth": [65535, 0], "earth after": [65535, 0], "after the": [65535, 0], "hymn had": [65535, 0], "been sung": [65535, 0], "sung the": [65535, 0], "the rev": [65535, 0], "rev mr": [65535, 0], "mr sprague": [65535, 0], "sprague turned": [65535, 0], "turned himself": [65535, 0], "himself into": [65535, 0], "into a": [65535, 0], "a bulletin": [65535, 0], "bulletin board": [65535, 0], "board and": [65535, 0], "read off": [65535, 0], "off notices": [65535, 0], "notices of": [65535, 0], "of meetings": [65535, 0], "meetings and": [65535, 0], "and societies": [65535, 0], "societies and": [65535, 0], "and things": [65535, 0], "things till": [65535, 0], "it seemed": [65535, 0], "seemed that": [65535, 0], "that the": [38169, 27366], "the list": [65535, 0], "list would": [65535, 0], "would stretch": [65535, 0], "stretch out": [65535, 0], "out to": [65535, 0], "to the": [30446, 35089], "the crack": [65535, 0], "crack of": [65535, 0], "of doom": [65535, 0], "doom a": [65535, 0], "a queer": [65535, 0], "queer custom": [65535, 0], "custom which": [65535, 0], "which is": [21790, 43745], "is still": [65535, 0], "still kept": [65535, 0], "kept up": [65535, 0], "up in": [65535, 0], "in america": [65535, 0], "america even": [65535, 0], "even in": [65535, 0], "in cities": [65535, 0], "cities away": [65535, 0], "away here": [65535, 0], "here in": [43635, 21900], "in this": [23349, 42186], "this age": [65535, 0], "age of": [65535, 0], "of abundant": [65535, 0], "abundant newspapers": [65535, 0], "newspapers often": [65535, 0], "often the": [65535, 0], "the less": [65535, 0], "less there": [65535, 0], "there is": [19609, 45926], "is to": [65535, 0], "to justify": [65535, 0], "justify a": [65535, 0], "a traditional": [65535, 0], "traditional custom": [65535, 0], "custom the": [65535, 0], "the harder": [65535, 0], "harder it": [65535, 0], "to get": [43635, 21900], "get rid": [65535, 0], "rid of": [65535, 0], "of it": [53934, 11601], "it and": [54578, 10957], "and now": [32706, 32829], "minister prayed": [65535, 0], "prayed a": [65535, 0], "a good": [65535, 0], "good generous": [65535, 0], "generous prayer": [65535, 0], "prayer it": [65535, 0], "was and": [65535, 0], "and went": [65535, 0], "went into": [65535, 0], "into details": [65535, 0], "details it": [65535, 0], "it pleaded": [65535, 0], "pleaded for": [65535, 0], "the little": [65535, 0], "little children": [65535, 0], "children of": [65535, 0], "church for": [65535, 0], "the other": [40902, 24633], "other churches": [65535, 0], "churches of": [65535, 0], "village for": [65535, 0], "village itself": [65535, 0], "itself for": [65535, 0], "the county": [65535, 0], "county for": [65535, 0], "the state": [65535, 0], "state for": [65535, 0], "state officers": [65535, 0], "officers for": [65535, 0], "the united": [65535, 0], "united states": [65535, 0], "states for": [65535, 0], "the churches": [65535, 0], "for congress": [65535, 0], "congress for": [65535, 0], "the president": [65535, 0], "president for": [65535, 0], "the officers": [65535, 0], "officers of": [65535, 0], "the government": [65535, 0], "government for": [65535, 0], "for poor": [65535, 0], "poor sailors": [65535, 0], "sailors tossed": [65535, 0], "tossed by": [65535, 0], "by stormy": [65535, 0], "stormy seas": [65535, 0], "seas for": [65535, 0], "the oppressed": [65535, 0], "oppressed millions": [65535, 0], "millions groaning": [65535, 0], "groaning under": [65535, 0], "under the": [65535, 0], "the heel": [65535, 0], "heel of": [65535, 0], "of european": [65535, 0], "european monarchies": [65535, 0], "monarchies and": [65535, 0], "and oriental": [65535, 0], "oriental despotisms": [65535, 0], "despotisms for": [65535, 0], "for such": [43635, 21900], "such as": [32706, 32829], "as have": [65535, 0], "have the": [65535, 0], "the light": [65535, 0], "light and": [65535, 0], "the good": [65535, 0], "good tidings": [65535, 0], "tidings and": [65535, 0], "and yet": [24518, 41017], "yet have": [65535, 0], "have not": [65535, 0], "not eyes": [65535, 0], "eyes to": [65535, 0], "to see": [34431, 31104], "see nor": [65535, 0], "nor ears": [65535, 0], "ears to": [65535, 0], "to hear": [65535, 0], "hear withal": [65535, 0], "withal for": [65535, 0], "the heathen": [65535, 0], "heathen in": [65535, 0], "the far": [65535, 0], "far islands": [65535, 0], "islands of": [65535, 0], "the sea": [65535, 0], "sea and": [32706, 32829], "and closed": [65535, 0], "closed with": [65535, 0], "a supplication": [65535, 0], "supplication that": [65535, 0], "the words": [65535, 0], "words he": [65535, 0], "was about": [65535, 0], "about to": [65535, 0], "to speak": [65535, 0], "speak might": [65535, 0], "might find": [65535, 0], "find grace": [65535, 0], "grace and": [32706, 32829], "and favor": [65535, 0], "favor and": [65535, 0], "and be": [32706, 32829], "as seed": [65535, 0], "seed sown": [65535, 0], "sown in": [65535, 0], "in fertile": [65535, 0], "fertile ground": [65535, 0], "ground yielding": [65535, 0], "yielding in": [65535, 0], "in time": [65535, 0], "time a": [65535, 0], "a grateful": [65535, 0], "grateful harvest": [65535, 0], "harvest of": [65535, 0], "of good": [65535, 0], "good amen": [65535, 0], "amen there": [65535, 0], "a rustling": [65535, 0], "rustling of": [65535, 0], "of dresses": [65535, 0], "dresses and": [65535, 0], "the standing": [65535, 0], "standing congregation": [65535, 0], "congregation sat": [65535, 0], "sat down": [65535, 0], "down the": [65535, 0], "the boy": [65535, 0], "boy whose": [65535, 0], "whose history": [65535, 0], "history this": [65535, 0], "this book": [65535, 0], "book relates": [65535, 0], "relates did": [65535, 0], "did not": [43635, 21900], "not enjoy": [65535, 0], "enjoy the": [65535, 0], "the prayer": [65535, 0], "prayer he": [65535, 0], "he only": [65535, 0], "only endured": [65535, 0], "endured it": [65535, 0], "it if": [65535, 0], "if he": [49105, 16430], "he even": [65535, 0], "even did": [65535, 0], "did that": [65535, 0], "that much": [65535, 0], "much he": [65535, 0], "was restive": [65535, 0], "restive all": [65535, 0], "through it": [65535, 0], "it he": [57316, 8219], "he kept": [65535, 0], "kept tally": [65535, 0], "tally of": [65535, 0], "the details": [65535, 0], "details of": [65535, 0], "prayer unconsciously": [65535, 0], "unconsciously for": [65535, 0], "for he": [45823, 19712], "not listening": [65535, 0], "listening but": [65535, 0], "but he": [52389, 13146], "he knew": [65535, 0], "knew the": [65535, 0], "the ground": [56143, 9392], "ground of": [32706, 32829], "of old": [32706, 32829], "old and": [32706, 32829], "the clergyman's": [65535, 0], "clergyman's regular": [65535, 0], "regular route": [65535, 0], "route over": [65535, 0], "over it": [65535, 0], "when a": [65535, 0], "a little": [56143, 9392], "little trifle": [65535, 0], "trifle of": [65535, 0], "of new": [65535, 0], "new matter": [65535, 0], "matter was": [65535, 0], "was interlarded": [65535, 0], "interlarded his": [65535, 0], "his ear": [65535, 0], "ear detected": [65535, 0], "detected it": [65535, 0], "his whole": [65535, 0], "whole nature": [65535, 0], "nature resented": [65535, 0], "resented it": [65535, 0], "he considered": [65535, 0], "considered additions": [65535, 0], "additions unfair": [65535, 0], "unfair and": [65535, 0], "and scoundrelly": [65535, 0], "scoundrelly in": [65535, 0], "the midst": [49105, 16430], "midst of": [65535, 0], "prayer a": [65535, 0], "a fly": [65535, 0], "fly had": [65535, 0], "had lit": [65535, 0], "lit on": [65535, 0], "on the": [50929, 14606], "the back": [65535, 0], "back of": [65535, 0], "the pew": [65535, 0], "pew in": [65535, 0], "in front": [65535, 0], "front of": [65535, 0], "of him": [21790, 43745], "him and": [36803, 28732], "and tortured": [65535, 0], "tortured his": [65535, 0], "his spirit": [65535, 0], "spirit by": [65535, 0], "by calmly": [65535, 0], "calmly rubbing": [65535, 0], "rubbing its": [65535, 0], "its hands": [65535, 0], "hands together": [65535, 0], "together embracing": [65535, 0], "embracing its": [65535, 0], "its head": [65535, 0], "head with": [43635, 21900], "with its": [65535, 0], "its arms": [65535, 0], "arms and": [65535, 0], "and polishing": [65535, 0], "polishing it": [65535, 0], "it so": [49105, 16430], "so vigorously": [65535, 0], "vigorously that": [65535, 0], "that it": [52389, 13146], "seemed to": [65535, 0], "to almost": [65535, 0], "almost part": [65535, 0], "part company": [65535, 0], "company with": [65535, 0], "with the": [46209, 19326], "the body": [65535, 0], "body and": [65535, 0], "the slender": [65535, 0], "slender thread": [65535, 0], "thread of": [65535, 0], "of a": [50929, 14606], "a neck": [65535, 0], "neck was": [65535, 0], "was exposed": [65535, 0], "exposed to": [65535, 0], "to view": [32706, 32829], "view scraping": [65535, 0], "scraping its": [65535, 0], "its wings": [65535, 0], "wings with": [65535, 0], "its hind": [65535, 0], "hind legs": [65535, 0], "legs and": [65535, 0], "and smoothing": [65535, 0], "smoothing them": [65535, 0], "them to": [39262, 26273], "to its": [65535, 0], "its body": [65535, 0], "body as": [65535, 0], "if they": [65535, 0], "been coat": [65535, 0], "coat tails": [65535, 0], "tails going": [65535, 0], "going through": [65535, 0], "through its": [65535, 0], "its whole": [65535, 0], "whole toilet": [65535, 0], "toilet as": [65535, 0], "as tranquilly": [65535, 0], "tranquilly as": [65535, 0], "if it": [43635, 21900], "it knew": [65535, 0], "knew it": [65535, 0], "was perfectly": [65535, 0], "perfectly safe": [65535, 0], "safe as": [65535, 0], "as indeed": [65535, 0], "indeed it": [65535, 0], "was for": [32706, 32829], "for as": [65535, 0], "as sorely": [65535, 0], "sorely as": [65535, 0], "as tom's": [65535, 0], "tom's hands": [65535, 0], "hands itched": [65535, 0], "itched to": [65535, 0], "to grab": [65535, 0], "grab for": [65535, 0], "for it": [40902, 24633], "it they": [65535, 0], "they did": [65535, 0], "not dare": [65535, 0], "dare he": [65535, 0], "he believed": [65535, 0], "believed his": [65535, 0], "his soul": [65535, 0], "soul would": [65535, 0], "would be": [28026, 37509], "be instantly": [65535, 0], "instantly destroyed": [65535, 0], "destroyed if": [65535, 0], "he did": [34634, 30901], "did such": [65535, 0], "such a": [25148, 40387], "a thing": [49105, 16430], "thing while": [65535, 0], "while the": [65535, 0], "prayer was": [65535, 0], "was going": [65535, 0], "going on": [65535, 0], "on but": [65535, 0], "but with": [43635, 21900], "the closing": [65535, 0], "closing sentence": [65535, 0], "sentence his": [65535, 0], "his hand": [57316, 8219], "hand began": [65535, 0], "to curve": [65535, 0], "curve and": [65535, 0], "and steal": [65535, 0], "steal forward": [65535, 0], "forward and": [65535, 0], "the instant": [43635, 21900], "instant the": [65535, 0], "the amen": [65535, 0], "amen was": [65535, 0], "was out": [65535, 0], "the fly": [65535, 0], "fly was": [65535, 0], "a prisoner": [65535, 0], "prisoner of": [65535, 0], "of war": [65535, 0], "war his": [65535, 0], "his aunt": [65535, 0], "aunt detected": [65535, 0], "detected the": [65535, 0], "the act": [65535, 0], "act and": [65535, 0], "and made": [65535, 0], "made him": [65535, 0], "him let": [32706, 32829], "let it": [32706, 32829], "it go": [65535, 0], "go the": [32706, 32829], "out his": [43635, 21900], "his text": [65535, 0], "text and": [65535, 0], "and droned": [65535, 0], "droned along": [65535, 0], "along monotonously": [65535, 0], "monotonously through": [65535, 0], "through an": [65535, 0], "an argument": [65535, 0], "argument that": [65535, 0], "so prosy": [65535, 0], "prosy that": [65535, 0], "that many": [65535, 0], "many a": [43635, 21900], "a head": [32706, 32829], "head by": [65535, 0], "by and": [52389, 13146], "and by": [39262, 26273], "by began": [65535, 0], "to nod": [65535, 0], "nod and": [65535, 0], "yet it": [65535, 0], "was an": [65535, 0], "that dealt": [65535, 0], "dealt in": [65535, 0], "in limitless": [65535, 0], "limitless fire": [65535, 0], "fire and": [32706, 32829], "and brimstone": [65535, 0], "brimstone and": [65535, 0], "and thinned": [65535, 0], "thinned the": [65535, 0], "the predestined": [65535, 0], "predestined elect": [65535, 0], "elect down": [65535, 0], "down to": [65535, 0], "to a": [29066, 36469], "a company": [65535, 0], "company so": [65535, 0], "so small": [65535, 0], "small as": [65535, 0], "be hardly": [65535, 0], "hardly worth": [65535, 0], "worth the": [65535, 0], "the saving": [65535, 0], "saving tom": [65535, 0], "tom counted": [65535, 0], "counted the": [65535, 0], "the pages": [65535, 0], "pages of": [65535, 0], "the sermon": [65535, 0], "sermon after": [65535, 0], "after church": [65535, 0], "church he": [65535, 0], "always knew": [65535, 0], "knew how": [65535, 0], "how many": [65535, 0], "many pages": [65535, 0], "pages there": [65535, 0], "there had": [32706, 32829], "been but": [65535, 0], "he seldom": [65535, 0], "seldom knew": [65535, 0], "knew anything": [65535, 0], "anything else": [65535, 0], "else about": [65535, 0], "the discourse": [65535, 0], "discourse however": [65535, 0], "however this": [65535, 0], "this time": [46209, 19326], "time he": [57316, 8219], "was really": [65535, 0], "really interested": [65535, 0], "interested for": [65535, 0], "for a": [28026, 37509], "little while": [65535, 0], "minister made": [65535, 0], "made a": [65535, 0], "a grand": [65535, 0], "grand and": [65535, 0], "and moving": [65535, 0], "moving picture": [65535, 0], "picture of": [32706, 32829], "the assembling": [65535, 0], "assembling together": [65535, 0], "together of": [65535, 0], "the world's": [65535, 0], "world's hosts": [65535, 0], "hosts at": [65535, 0], "at the": [34754, 30781], "the millennium": [65535, 0], "millennium when": [65535, 0], "when the": [49105, 16430], "the lion": [65535, 0], "lion and": [65535, 0], "the lamb": [65535, 0], "lamb should": [65535, 0], "should lie": [65535, 0], "lie down": [65535, 0], "down together": [65535, 0], "together and": [32706, 32829], "and a": [49105, 16430], "little child": [65535, 0], "child should": [65535, 0], "should lead": [65535, 0], "lead them": [65535, 0], "them but": [32706, 32829], "but the": [60055, 5480], "the pathos": [65535, 0], "pathos the": [65535, 0], "the lesson": [65535, 0], "lesson the": [65535, 0], "the moral": [65535, 0], "moral of": [65535, 0], "the great": [56143, 9392], "great spectacle": [65535, 0], "spectacle were": [65535, 0], "were lost": [65535, 0], "lost upon": [65535, 0], "boy he": [65535, 0], "only thought": [65535, 0], "thought of": [54578, 10957], "the conspicuousness": [65535, 0], "conspicuousness of": [65535, 0], "the principal": [65535, 0], "principal character": [65535, 0], "character before": [65535, 0], "before the": [26155, 39380], "the on": [65535, 0], "on looking": [65535, 0], "looking nations": [65535, 0], "nations his": [65535, 0], "his face": [58229, 7306], "face lit": [65535, 0], "lit with": [65535, 0], "the thought": [65535, 0], "thought and": [65535, 0], "he said": [65535, 0], "said to": [65535, 0], "to himself": [65535, 0], "himself that": [65535, 0], "he wished": [65535, 0], "wished he": [65535, 0], "he could": [65535, 0], "could be": [65535, 0], "be that": [21790, 43745], "that child": [65535, 0], "child if": [65535, 0], "a tame": [65535, 0], "tame lion": [65535, 0], "lion now": [65535, 0], "now he": [65535, 0], "he lapsed": [65535, 0], "lapsed into": [65535, 0], "into suffering": [65535, 0], "suffering again": [65535, 0], "again as": [65535, 0], "as the": [50929, 14606], "the dry": [65535, 0], "dry argument": [65535, 0], "argument was": [65535, 0], "was resumed": [65535, 0], "resumed presently": [65535, 0], "presently he": [65535, 0], "he bethought": [65535, 0], "bethought him": [65535, 0], "him of": [65535, 0], "a treasure": [65535, 0], "treasure he": [65535, 0], "had and": [65535, 0], "and got": [65535, 0], "got it": [65535, 0], "it out": [56143, 9392], "out it": [65535, 0], "a large": [65535, 0], "large black": [65535, 0], "black beetle": [65535, 0], "beetle with": [65535, 0], "with formidable": [65535, 0], "formidable jaws": [65535, 0], "jaws a": [65535, 0], "a pinchbug": [65535, 0], "pinchbug he": [65535, 0], "he called": [65535, 0], "called it": [65535, 0], "a percussion": [65535, 0], "percussion cap": [65535, 0], "cap box": [65535, 0], "box the": [65535, 0], "the first": [65535, 0], "first thing": [65535, 0], "thing the": [65535, 0], "the beetle": [65535, 0], "beetle did": [65535, 0], "did was": [65535, 0], "was to": [65535, 0], "to take": [32706, 32829], "take him": [32706, 32829], "him by": [65535, 0], "the finger": [32706, 32829], "finger a": [65535, 0], "a natural": [65535, 0], "natural fillip": [65535, 0], "fillip followed": [65535, 0], "followed the": [65535, 0], "beetle went": [65535, 0], "went floundering": [65535, 0], "floundering into": [65535, 0], "into the": [52389, 13146], "aisle and": [65535, 0], "and lit": [65535, 0], "on its": [65535, 0], "its back": [65535, 0], "back and": [65535, 0], "the hurt": [65535, 0], "hurt finger": [65535, 0], "finger went": [65535, 0], "the boy's": [65535, 0], "boy's mouth": [65535, 0], "mouth the": [65535, 0], "beetle lay": [65535, 0], "lay there": [65535, 0], "there working": [65535, 0], "working its": [65535, 0], "its helpless": [65535, 0], "helpless legs": [65535, 0], "legs unable": [65535, 0], "unable to": [65535, 0], "to turn": [65535, 0], "turn over": [65535, 0], "over tom": [65535, 0], "tom eyed": [65535, 0], "eyed it": [65535, 0], "and longed": [65535, 0], "longed for": [65535, 0], "but it": [65535, 0], "was safe": [65535, 0], "safe out": [65535, 0], "his reach": [65535, 0], "reach other": [65535, 0], "other people": [65535, 0], "people uninterested": [65535, 0], "uninterested in": [65535, 0], "sermon found": [65535, 0], "found relief": [65535, 0], "relief in": [65535, 0], "beetle and": [65535, 0], "and they": [56143, 9392], "they eyed": [65535, 0], "it too": [43635, 21900], "too presently": [65535, 0], "presently a": [65535, 0], "a vagrant": [65535, 0], "vagrant poodle": [65535, 0], "poodle dog": [65535, 0], "dog came": [65535, 0], "came idling": [65535, 0], "idling along": [65535, 0], "along sad": [65535, 0], "sad at": [65535, 0], "at heart": [65535, 0], "heart lazy": [65535, 0], "lazy with": [65535, 0], "the summer": [65535, 0], "summer softness": [65535, 0], "softness and": [65535, 0], "the quiet": [65535, 0], "quiet weary": [65535, 0], "weary of": [65535, 0], "of captivity": [65535, 0], "captivity sighing": [65535, 0], "sighing for": [65535, 0], "for change": [65535, 0], "change he": [65535, 0], "he spied": [65535, 0], "spied the": [65535, 0], "beetle the": [65535, 0], "the drooping": [65535, 0], "drooping tail": [65535, 0], "tail lifted": [65535, 0], "lifted and": [65535, 0], "and wagged": [65535, 0], "wagged he": [65535, 0], "he surveyed": [65535, 0], "surveyed the": [65535, 0], "prize walked": [65535, 0], "walked around": [65535, 0], "around it": [65535, 0], "it smelt": [65535, 0], "smelt at": [65535, 0], "at it": [65535, 0], "it from": [43635, 21900], "a safe": [65535, 0], "safe distance": [65535, 0], "distance walked": [65535, 0], "it again": [65535, 0], "again grew": [65535, 0], "grew bolder": [65535, 0], "bolder and": [65535, 0], "and took": [65535, 0], "took a": [65535, 0], "a closer": [65535, 0], "closer smell": [65535, 0], "smell then": [65535, 0], "then lifted": [65535, 0], "lifted his": [65535, 0], "his lip": [65535, 0], "lip and": [65535, 0], "a gingerly": [65535, 0], "gingerly snatch": [65535, 0], "snatch at": [65535, 0], "it just": [65535, 0], "just missing": [65535, 0], "missing it": [65535, 0], "it made": [65535, 0], "made another": [65535, 0], "another and": [65535, 0], "and another": [65535, 0], "another began": [65535, 0], "to enjoy": [65535, 0], "the diversion": [65535, 0], "diversion subsided": [65535, 0], "subsided to": [65535, 0], "to his": [51450, 14085], "his stomach": [65535, 0], "stomach with": [65535, 0], "beetle between": [65535, 0], "between his": [65535, 0], "his paws": [65535, 0], "paws and": [65535, 0], "and continued": [65535, 0], "continued his": [65535, 0], "his experiments": [65535, 0], "experiments grew": [65535, 0], "grew weary": [65535, 0], "weary at": [65535, 0], "at last": [65535, 0], "last and": [32706, 32829], "then indifferent": [65535, 0], "indifferent and": [65535, 0], "and absent": [65535, 0], "absent minded": [65535, 0], "minded his": [65535, 0], "his head": [56143, 9392], "head nodded": [65535, 0], "nodded and": [65535, 0], "and little": [65535, 0], "little by": [65535, 0], "by little": [65535, 0], "little his": [65535, 0], "his chin": [65535, 0], "chin descended": [65535, 0], "descended and": [65535, 0], "and touched": [65535, 0], "touched the": [65535, 0], "the enemy": [65535, 0], "enemy who": [65535, 0], "who seized": [65535, 0], "seized it": [65535, 0], "it there": [65535, 0], "a sharp": [65535, 0], "sharp yelp": [65535, 0], "yelp a": [65535, 0], "a flirt": [65535, 0], "flirt of": [65535, 0], "the poodle's": [65535, 0], "poodle's head": [65535, 0], "head and": [43635, 21900], "beetle fell": [65535, 0], "fell a": [65535, 0], "a couple": [65535, 0], "couple of": [65535, 0], "of yards": [65535, 0], "yards away": [65535, 0], "away and": [49105, 16430], "back once": [65535, 0], "more the": [65535, 0], "the neighboring": [65535, 0], "neighboring spectators": [65535, 0], "spectators shook": [65535, 0], "shook with": [65535, 0], "a gentle": [32706, 32829], "gentle inward": [65535, 0], "inward joy": [65535, 0], "joy several": [65535, 0], "several faces": [65535, 0], "faces went": [65535, 0], "went behind": [65535, 0], "behind fans": [65535, 0], "fans and": [65535, 0], "and handkerchiefs": [65535, 0], "handkerchiefs and": [65535, 0], "tom was": [65535, 0], "was entirely": [65535, 0], "entirely happy": [65535, 0], "happy the": [65535, 0], "the dog": [65535, 0], "dog looked": [65535, 0], "looked foolish": [65535, 0], "foolish and": [65535, 0], "and probably": [65535, 0], "probably felt": [65535, 0], "felt so": [65535, 0], "so but": [32706, 32829], "but there": [65535, 0], "was resentment": [65535, 0], "resentment in": [65535, 0], "in his": [39262, 26273], "his heart": [65535, 0], "heart too": [65535, 0], "too and": [43635, 21900], "a craving": [65535, 0], "craving for": [65535, 0], "for revenge": [65535, 0], "revenge so": [65535, 0], "so he": [53210, 12325], "he went": [65535, 0], "went to": [52389, 13146], "and began": [65535, 0], "began a": [65535, 0], "a wary": [65535, 0], "wary attack": [65535, 0], "attack on": [65535, 0], "on it": [65535, 0], "again jumping": [65535, 0], "jumping at": [65535, 0], "from every": [65535, 0], "every point": [65535, 0], "point of": [65535, 0], "a circle": [65535, 0], "circle lighting": [65535, 0], "lighting with": [65535, 0], "with his": [52812, 12723], "his fore": [65535, 0], "fore paws": [65535, 0], "paws within": [65535, 0], "within an": [65535, 0], "an inch": [65535, 0], "inch of": [65535, 0], "the creature": [65535, 0], "creature making": [65535, 0], "making even": [65535, 0], "even closer": [65535, 0], "closer snatches": [65535, 0], "snatches at": [65535, 0], "it with": [43635, 21900], "his teeth": [65535, 0], "teeth and": [65535, 0], "and jerking": [65535, 0], "jerking his": [65535, 0], "head till": [65535, 0], "till his": [65535, 0], "his ears": [65535, 0], "ears flapped": [65535, 0], "flapped again": [65535, 0], "again but": [65535, 0], "he grew": [65535, 0], "grew tired": [65535, 0], "tired once": [65535, 0], "more after": [65535, 0], "after a": [65535, 0], "a while": [65535, 0], "while tried": [65535, 0], "tried to": [65535, 0], "to amuse": [65535, 0], "amuse himself": [65535, 0], "himself with": [65535, 0], "fly but": [65535, 0], "but found": [65535, 0], "found no": [65535, 0], "no relief": [65535, 0], "relief followed": [65535, 0], "followed an": [65535, 0], "an ant": [65535, 0], "ant around": [65535, 0], "around with": [65535, 0], "his nose": [65535, 0], "nose close": [65535, 0], "close to": [65535, 0], "the floor": [65535, 0], "floor and": [65535, 0], "and quickly": [65535, 0], "quickly wearied": [65535, 0], "wearied of": [65535, 0], "of that": [65535, 0], "that yawned": [65535, 0], "yawned sighed": [65535, 0], "sighed forgot": [65535, 0], "forgot the": [65535, 0], "beetle entirely": [65535, 0], "entirely and": [65535, 0], "and sat": [65535, 0], "down on": [65535, 0], "it then": [65535, 0], "then there": [65535, 0], "a wild": [65535, 0], "wild yelp": [65535, 0], "yelp of": [65535, 0], "of agony": [65535, 0], "agony and": [65535, 0], "the poodle": [65535, 0], "poodle went": [65535, 0], "went sailing": [65535, 0], "sailing up": [65535, 0], "aisle the": [65535, 0], "the yelps": [65535, 0], "yelps continued": [65535, 0], "continued and": [65535, 0], "and so": [47613, 17922], "so did": [65535, 0], "did the": [49105, 16430], "dog he": [65535, 0], "he crossed": [65535, 0], "crossed the": [65535, 0], "house in": [65535, 0], "the altar": [65535, 0], "altar he": [65535, 0], "he flew": [65535, 0], "flew down": [65535, 0], "other aisle": [65535, 0], "aisle he": [65535, 0], "crossed before": [65535, 0], "the doors": [65535, 0], "doors he": [65535, 0], "he clamored": [65535, 0], "clamored up": [65535, 0], "the home": [65535, 0], "home stretch": [65535, 0], "stretch his": [65535, 0], "his anguish": [65535, 0], "anguish grew": [65535, 0], "grew with": [65535, 0], "his progress": [65535, 0], "progress till": [65535, 0], "till presently": [65535, 0], "was but": [32706, 32829], "but a": [43635, 21900], "a woolly": [65535, 0], "woolly comet": [65535, 0], "comet moving": [65535, 0], "moving in": [65535, 0], "in its": [65535, 0], "its orbit": [65535, 0], "orbit with": [65535, 0], "the gleam": [65535, 0], "gleam and": [65535, 0], "the speed": [65535, 0], "speed of": [65535, 0], "of light": [32706, 32829], "light at": [65535, 0], "last the": [65535, 0], "the frantic": [65535, 0], "frantic sufferer": [65535, 0], "sufferer sheered": [65535, 0], "sheered from": [65535, 0], "from its": [65535, 0], "its course": [65535, 0], "course and": [32706, 32829], "and sprang": [65535, 0], "sprang into": [65535, 0], "into its": [65535, 0], "its master's": [65535, 0], "master's lap": [65535, 0], "lap he": [65535, 0], "he flung": [65535, 0], "flung it": [65535, 0], "the window": [65535, 0], "the voice": [65535, 0], "voice of": [65535, 0], "of distress": [65535, 0], "distress quickly": [65535, 0], "quickly thinned": [65535, 0], "thinned away": [65535, 0], "and died": [65535, 0], "died in": [65535, 0], "the distance": [65535, 0], "distance by": [65535, 0], "by this": [29728, 35807], "time the": [52389, 13146], "the whole": [54578, 10957], "whole church": [65535, 0], "church was": [65535, 0], "was red": [65535, 0], "red faced": [65535, 0], "faced and": [65535, 0], "and suffocating": [65535, 0], "suffocating with": [65535, 0], "with suppressed": [65535, 0], "suppressed laughter": [65535, 0], "laughter and": [65535, 0], "sermon had": [65535, 0], "had come": [65535, 0], "come to": [16338, 49197], "a dead": [65535, 0], "dead standstill": [65535, 0], "standstill the": [65535, 0], "discourse was": [65535, 0], "presently but": [65535, 0], "it went": [65535, 0], "went lame": [65535, 0], "lame and": [65535, 0], "and halting": [65535, 0], "halting all": [65535, 0], "all possibility": [65535, 0], "possibility of": [65535, 0], "of impressiveness": [65535, 0], "impressiveness being": [65535, 0], "being at": [32706, 32829], "at an": [65535, 0], "an end": [65535, 0], "end for": [65535, 0], "for even": [65535, 0], "even the": [65535, 0], "the gravest": [65535, 0], "gravest sentiments": [65535, 0], "sentiments were": [65535, 0], "were constantly": [65535, 0], "constantly being": [65535, 0], "being received": [65535, 0], "received with": [65535, 0], "a smothered": [65535, 0], "smothered burst": [65535, 0], "burst of": [65535, 0], "of unholy": [65535, 0], "unholy mirth": [65535, 0], "mirth under": [65535, 0], "under cover": [65535, 0], "cover of": [65535, 0], "of some": [65535, 0], "some remote": [65535, 0], "remote pew": [65535, 0], "pew back": [65535, 0], "back as": [65535, 0], "if the": [32706, 32829], "the poor": [65535, 0], "poor parson": [65535, 0], "parson had": [65535, 0], "had said": [65535, 0], "said a": [65535, 0], "a rarely": [65535, 0], "rarely facetious": [65535, 0], "facetious thing": [65535, 0], "thing it": [65535, 0], "a genuine": [65535, 0], "genuine relief": [65535, 0], "relief to": [65535, 0], "whole congregation": [65535, 0], "congregation when": [65535, 0], "the ordeal": [65535, 0], "ordeal was": [65535, 0], "was over": [65535, 0], "over and": [65535, 0], "the benediction": [65535, 0], "benediction pronounced": [65535, 0], "pronounced tom": [65535, 0], "tom sawyer": [65535, 0], "sawyer went": [65535, 0], "went home": [65535, 0], "home quite": [65535, 0], "quite cheerful": [65535, 0], "cheerful thinking": [65535, 0], "thinking to": [65535, 0], "that there": [65535, 0], "was some": [65535, 0], "some satisfaction": [65535, 0], "satisfaction about": [65535, 0], "about divine": [65535, 0], "divine service": [65535, 0], "service when": [65535, 0], "when there": [65535, 0], "a bit": [65535, 0], "bit of": [65535, 0], "of variety": [65535, 0], "variety in": [65535, 0], "in it": [65535, 0], "had but": [65535, 0], "but one": [65535, 0], "one marring": [65535, 0], "marring thought": [65535, 0], "thought he": [65535, 0], "was willing": [65535, 0], "willing that": [65535, 0], "dog should": [65535, 0], "should play": [65535, 0], "play with": [65535, 0], "his pinchbug": [65535, 0], "pinchbug but": [65535, 0], "not think": [65535, 0], "was upright": [65535, 0], "upright in": [65535, 0], "in him": [32706, 32829], "him to": [35227, 30308], "to carry": [65535, 0], "carry it": [65535, 0], "it off": [65535, 0], "about half past": [65535, 0], "half past ten": [65535, 0], "past ten the": [65535, 0], "ten the cracked": [65535, 0], "the cracked bell": [65535, 0], "cracked bell of": [65535, 0], "bell of the": [65535, 0], "of the small": [65535, 0], "the small church": [65535, 0], "small church began": [65535, 0], "church began to": [65535, 0], "began to ring": [65535, 0], "to ring and": [65535, 0], "ring and presently": [65535, 0], "and presently the": [65535, 0], "presently the people": [65535, 0], "the people began": [65535, 0], "people began to": [65535, 0], "began to gather": [65535, 0], "to gather for": [65535, 0], "gather for the": [65535, 0], "for the morning": [65535, 0], "the morning sermon": [65535, 0], "morning sermon the": [65535, 0], "sermon the sunday": [65535, 0], "the sunday school": [65535, 0], "sunday school children": [65535, 0], "school children distributed": [65535, 0], "children distributed themselves": [65535, 0], "distributed themselves about": [65535, 0], "themselves about the": [65535, 0], "about the house": [65535, 0], "the house and": [65535, 0], "house and occupied": [65535, 0], "and occupied pews": [65535, 0], "occupied pews with": [65535, 0], "pews with their": [65535, 0], "with their parents": [65535, 0], "their parents so": [65535, 0], "parents so as": [65535, 0], "so as to": [65535, 0], "as to be": [65535, 0], "to be under": [65535, 0], "be under supervision": [65535, 0], "under supervision aunt": [65535, 0], "supervision aunt polly": [65535, 0], "aunt polly came": [65535, 0], "polly came and": [65535, 0], "came and tom": [65535, 0], "and tom and": [65535, 0], "tom and sid": [65535, 0], "and sid and": [65535, 0], "sid and mary": [65535, 0], "and mary sat": [65535, 0], "mary sat with": [65535, 0], "sat with her": [65535, 0], "with her tom": [65535, 0], "her tom being": [65535, 0], "tom being placed": [65535, 0], "being placed next": [65535, 0], "placed next the": [65535, 0], "next the aisle": [65535, 0], "the aisle in": [65535, 0], "aisle in order": [65535, 0], "in order that": [65535, 0], "order that he": [65535, 0], "that he might": [65535, 0], "he might be": [65535, 0], "might be as": [65535, 0], "be as far": [65535, 0], "as far away": [65535, 0], "far away from": [65535, 0], "away from the": [65535, 0], "from the open": [65535, 0], "the open window": [65535, 0], "open window and": [65535, 0], "window and the": [65535, 0], "and the seductive": [65535, 0], "the seductive outside": [65535, 0], "seductive outside summer": [65535, 0], "outside summer scenes": [65535, 0], "summer scenes as": [65535, 0], "scenes as possible": [65535, 0], "as possible the": [65535, 0], "possible the crowd": [65535, 0], "the crowd filed": [65535, 0], "crowd filed up": [65535, 0], "filed up the": [65535, 0], "up the aisles": [65535, 0], "the aisles the": [65535, 0], "aisles the aged": [65535, 0], "the aged and": [65535, 0], "aged and needy": [65535, 0], "and needy postmaster": [65535, 0], "needy postmaster who": [65535, 0], "postmaster who had": [65535, 0], "who had seen": [65535, 0], "had seen better": [65535, 0], "seen better days": [65535, 0], "better days the": [65535, 0], "days the mayor": [65535, 0], "the mayor and": [65535, 0], "mayor and his": [65535, 0], "and his wife": [65535, 0], "his wife for": [65535, 0], "wife for they": [65535, 0], "for they had": [65535, 0], "they had a": [65535, 0], "had a mayor": [65535, 0], "a mayor there": [65535, 0], "mayor there among": [65535, 0], "there among other": [65535, 0], "among other unnecessaries": [65535, 0], "other unnecessaries the": [65535, 0], "unnecessaries the justice": [65535, 0], "the justice of": [65535, 0], "justice of the": [65535, 0], "of the peace": [65535, 0], "the peace the": [65535, 0], "peace the widow": [65535, 0], "the widow douglass": [65535, 0], "widow douglass fair": [65535, 0], "douglass fair smart": [65535, 0], "fair smart and": [65535, 0], "smart and forty": [65535, 0], "and forty a": [65535, 0], "forty a generous": [65535, 0], "a generous good": [65535, 0], "generous good hearted": [65535, 0], "good hearted soul": [65535, 0], "hearted soul and": [65535, 0], "soul and well": [65535, 0], "and well to": [65535, 0], "well to do": [65535, 0], "to do her": [65535, 0], "do her hill": [65535, 0], "her hill mansion": [65535, 0], "hill mansion the": [65535, 0], "mansion the only": [65535, 0], "the only palace": [65535, 0], "only palace in": [65535, 0], "palace in the": [65535, 0], "in the town": [65535, 0], "the town and": [65535, 0], "town and the": [65535, 0], "and the most": [65535, 0], "the most hospitable": [65535, 0], "most hospitable and": [65535, 0], "hospitable and much": [65535, 0], "and much the": [65535, 0], "much the most": [65535, 0], "the most lavish": [65535, 0], "most lavish in": [65535, 0], "lavish in the": [65535, 0], "in the matter": [65535, 0], "the matter of": [65535, 0], "matter of festivities": [65535, 0], "of festivities that": [65535, 0], "festivities that st": [65535, 0], "that st petersburg": [65535, 0], "st petersburg could": [65535, 0], "petersburg could boast": [65535, 0], "could boast the": [65535, 0], "boast the bent": [65535, 0], "the bent and": [65535, 0], "bent and venerable": [65535, 0], "and venerable major": [65535, 0], "venerable major and": [65535, 0], "major and mrs": [65535, 0], "and mrs ward": [65535, 0], "mrs ward lawyer": [65535, 0], "ward lawyer riverson": [65535, 0], "lawyer riverson the": [65535, 0], "riverson the new": [65535, 0], "the new notable": [65535, 0], "new notable from": [65535, 0], "notable from a": [65535, 0], "from a distance": [65535, 0], "a distance next": [65535, 0], "distance next the": [65535, 0], "next the belle": [65535, 0], "the belle of": [65535, 0], "belle of the": [65535, 0], "of the village": [65535, 0], "the village followed": [65535, 0], "village followed by": [65535, 0], "followed by a": [65535, 0], "by a troop": [65535, 0], "a troop of": [65535, 0], "troop of lawn": [65535, 0], "of lawn clad": [65535, 0], "lawn clad and": [65535, 0], "clad and ribbon": [65535, 0], "and ribbon decked": [65535, 0], "ribbon decked young": [65535, 0], "decked young heart": [65535, 0], "young heart breakers": [65535, 0], "heart breakers then": [65535, 0], "breakers then all": [65535, 0], "then all the": [65535, 0], "all the young": [65535, 0], "the young clerks": [65535, 0], "young clerks in": [65535, 0], "clerks in town": [65535, 0], "in town in": [65535, 0], "town in a": [65535, 0], "in a body": [65535, 0], "a body for": [65535, 0], "body for they": [65535, 0], "they had stood": [65535, 0], "had stood in": [65535, 0], "stood in the": [65535, 0], "in the vestibule": [65535, 0], "the vestibule sucking": [65535, 0], "vestibule sucking their": [65535, 0], "sucking their cane": [65535, 0], "their cane heads": [65535, 0], "cane heads a": [65535, 0], "heads a circling": [65535, 0], "a circling wall": [65535, 0], "circling wall of": [65535, 0], "wall of oiled": [65535, 0], "of oiled and": [65535, 0], "oiled and simpering": [65535, 0], "and simpering admirers": [65535, 0], "simpering admirers till": [65535, 0], "admirers till the": [65535, 0], "till the last": [65535, 0], "the last girl": [65535, 0], "last girl had": [65535, 0], "girl had run": [65535, 0], "had run their": [65535, 0], "run their gantlet": [65535, 0], "their gantlet and": [65535, 0], "gantlet and last": [65535, 0], "and last of": [65535, 0], "last of all": [65535, 0], "of all came": [65535, 0], "all came the": [65535, 0], "came the model": [65535, 0], "the model boy": [65535, 0], "model boy willie": [65535, 0], "boy willie mufferson": [65535, 0], "willie mufferson taking": [65535, 0], "mufferson taking as": [65535, 0], "taking as heedful": [65535, 0], "as heedful care": [65535, 0], "heedful care of": [65535, 0], "care of his": [65535, 0], "of his mother": [65535, 0], "his mother as": [65535, 0], "mother as if": [65535, 0], "as if she": [65535, 0], "if she were": [65535, 0], "she were cut": [65535, 0], "were cut glass": [65535, 0], "cut glass he": [65535, 0], "glass he always": [65535, 0], "he always brought": [65535, 0], "always brought his": [65535, 0], "brought his mother": [65535, 0], "his mother to": [65535, 0], "mother to church": [65535, 0], "to church and": [65535, 0], "church and was": [65535, 0], "and was the": [65535, 0], "was the pride": [65535, 0], "the pride of": [65535, 0], "pride of all": [65535, 0], "of all the": [65535, 0], "all the matrons": [65535, 0], "the matrons the": [65535, 0], "matrons the boys": [65535, 0], "the boys all": [65535, 0], "boys all hated": [65535, 0], "all hated him": [65535, 0], "hated him he": [65535, 0], "him he was": [65535, 0], "he was so": [65535, 0], "was so good": [65535, 0], "so good and": [65535, 0], "good and besides": [65535, 0], "and besides he": [65535, 0], "besides he had": [65535, 0], "he had been": [65535, 0], "had been thrown": [65535, 0], "been thrown up": [65535, 0], "thrown up to": [65535, 0], "up to them": [65535, 0], "to them so": [65535, 0], "them so much": [65535, 0], "so much his": [65535, 0], "much his white": [65535, 0], "his white handkerchief": [65535, 0], "white handkerchief was": [65535, 0], "handkerchief was hanging": [65535, 0], "was hanging out": [65535, 0], "hanging out of": [65535, 0], "out of his": [65535, 0], "of his pocket": [65535, 0], "his pocket behind": [65535, 0], "pocket behind as": [65535, 0], "behind as usual": [65535, 0], "as usual on": [65535, 0], "usual on sundays": [65535, 0], "on sundays accidentally": [65535, 0], "sundays accidentally tom": [65535, 0], "accidentally tom had": [65535, 0], "tom had no": [65535, 0], "had no handkerchief": [65535, 0], "no handkerchief and": [65535, 0], "handkerchief and he": [65535, 0], "and he looked": [65535, 0], "he looked upon": [65535, 0], "looked upon boys": [65535, 0], "upon boys who": [65535, 0], "boys who had": [65535, 0], "who had as": [65535, 0], "had as snobs": [65535, 0], "as snobs the": [65535, 0], "snobs the congregation": [65535, 0], "the congregation being": [65535, 0], "congregation being fully": [65535, 0], "being fully assembled": [65535, 0], "fully assembled now": [65535, 0], "assembled now the": [65535, 0], "now the bell": [65535, 0], "the bell rang": [65535, 0], "bell rang once": [65535, 0], "rang once more": [65535, 0], "once more to": [65535, 0], "more to warn": [65535, 0], "to warn laggards": [65535, 0], "warn laggards and": [65535, 0], "laggards and stragglers": [65535, 0], "and stragglers and": [65535, 0], "stragglers and then": [65535, 0], "and then a": [65535, 0], "then a solemn": [65535, 0], "a solemn hush": [65535, 0], "solemn hush fell": [65535, 0], "hush fell upon": [65535, 0], "fell upon the": [65535, 0], "upon the church": [65535, 0], "the church which": [65535, 0], "church which was": [65535, 0], "which was only": [65535, 0], "was only broken": [65535, 0], "only broken by": [65535, 0], "broken by the": [65535, 0], "by the tittering": [65535, 0], "the tittering and": [65535, 0], "tittering and whispering": [65535, 0], "and whispering of": [65535, 0], "whispering of the": [65535, 0], "of the choir": [65535, 0], "the choir in": [65535, 0], "choir in the": [65535, 0], "in the gallery": [65535, 0], "the gallery the": [65535, 0], "gallery the choir": [65535, 0], "the choir always": [65535, 0], "choir always tittered": [65535, 0], "always tittered and": [65535, 0], "tittered and whispered": [65535, 0], "and whispered all": [65535, 0], "whispered all through": [65535, 0], "all through service": [65535, 0], "through service there": [65535, 0], "service there was": [65535, 0], "there was once": [65535, 0], "was once a": [65535, 0], "once a church": [65535, 0], "a church choir": [65535, 0], "church choir that": [65535, 0], "choir that was": [65535, 0], "that was not": [65535, 0], "was not ill": [65535, 0], "not ill bred": [65535, 0], "ill bred but": [65535, 0], "bred but i": [65535, 0], "but i have": [65535, 0], "i have forgotten": [65535, 0], "have forgotten where": [65535, 0], "forgotten where it": [65535, 0], "where it was": [65535, 0], "it was now": [65535, 0], "was now it": [65535, 0], "now it was": [65535, 0], "it was a": [65535, 0], "was a great": [65535, 0], "a great many": [65535, 0], "great many years": [65535, 0], "many years ago": [65535, 0], "years ago and": [65535, 0], "ago and i": [65535, 0], "and i can": [65535, 0], "i can scarcely": [65535, 0], "can scarcely remember": [65535, 0], "scarcely remember anything": [65535, 0], "remember anything about": [65535, 0], "anything about it": [65535, 0], "about it but": [65535, 0], "it but i": [65535, 0], "but i think": [65535, 0], "i think it": [65535, 0], "think it was": [65535, 0], "it was in": [65535, 0], "was in some": [65535, 0], "in some foreign": [65535, 0], "some foreign country": [65535, 0], "foreign country the": [65535, 0], "country the minister": [65535, 0], "the minister gave": [65535, 0], "minister gave out": [65535, 0], "gave out the": [65535, 0], "out the hymn": [65535, 0], "the hymn and": [65535, 0], "hymn and read": [65535, 0], "and read it": [65535, 0], "read it through": [65535, 0], "it through with": [65535, 0], "through with a": [65535, 0], "with a relish": [65535, 0], "a relish in": [65535, 0], "relish in a": [65535, 0], "in a peculiar": [65535, 0], "a peculiar style": [65535, 0], "peculiar style which": [65535, 0], "style which was": [65535, 0], "which was much": [65535, 0], "was much admired": [65535, 0], "much admired in": [65535, 0], "admired in that": [65535, 0], "in that part": [65535, 0], "that part of": [65535, 0], "part of the": [65535, 0], "of the country": [65535, 0], "the country his": [65535, 0], "country his voice": [65535, 0], "his voice began": [65535, 0], "voice began on": [65535, 0], "began on a": [65535, 0], "on a medium": [65535, 0], "a medium key": [65535, 0], "medium key and": [65535, 0], "key and climbed": [65535, 0], "and climbed steadily": [65535, 0], "climbed steadily up": [65535, 0], "steadily up till": [65535, 0], "up till it": [65535, 0], "till it reached": [65535, 0], "it reached a": [65535, 0], "reached a certain": [65535, 0], "a certain point": [65535, 0], "certain point where": [65535, 0], "point where it": [65535, 0], "where it bore": [65535, 0], "it bore with": [65535, 0], "bore with strong": [65535, 0], "with strong emphasis": [65535, 0], "strong emphasis upon": [65535, 0], "emphasis upon the": [65535, 0], "upon the topmost": [65535, 0], "the topmost word": [65535, 0], "topmost word and": [65535, 0], "word and then": [65535, 0], "and then plunged": [65535, 0], "then plunged down": [65535, 0], "plunged down as": [65535, 0], "down as if": [65535, 0], "as if from": [65535, 0], "if from a": [65535, 0], "from a spring": [65535, 0], "a spring board": [65535, 0], "spring board shall": [65535, 0], "board shall i": [65535, 0], "shall i be": [32706, 32829], "i be car": [65535, 0], "be car ri": [65535, 0], "car ri ed": [65535, 0], "ri ed toe": [65535, 0], "ed toe the": [65535, 0], "toe the skies": [65535, 0], "the skies on": [65535, 0], "skies on flow'ry": [65535, 0], "on flow'ry beds": [65535, 0], "flow'ry beds of": [65535, 0], "beds of ease": [65535, 0], "of ease whilst": [65535, 0], "ease whilst others": [65535, 0], "whilst others fight": [65535, 0], "others fight to": [65535, 0], "fight to win": [65535, 0], "to win the": [65535, 0], "win the prize": [65535, 0], "the prize and": [65535, 0], "prize and sail": [65535, 0], "and sail thro'": [65535, 0], "sail thro' bloody": [65535, 0], "thro' bloody seas": [65535, 0], "bloody seas he": [65535, 0], "seas he was": [65535, 0], "he was regarded": [65535, 0], "was regarded as": [65535, 0], "regarded as a": [65535, 0], "as a wonderful": [65535, 0], "a wonderful reader": [65535, 0], "wonderful reader at": [65535, 0], "reader at church": [65535, 0], "at church sociables": [65535, 0], "church sociables he": [65535, 0], "sociables he was": [65535, 0], "he was always": [65535, 0], "was always called": [65535, 0], "always called upon": [65535, 0], "called upon to": [65535, 0], "upon to read": [65535, 0], "to read poetry": [65535, 0], "read poetry and": [65535, 0], "poetry and when": [65535, 0], "and when he": [49105, 16430], "when he was": [65535, 0], "he was through": [65535, 0], "was through the": [65535, 0], "through the ladies": [65535, 0], "the ladies would": [65535, 0], "ladies would lift": [65535, 0], "would lift up": [65535, 0], "lift up their": [65535, 0], "up their hands": [65535, 0], "their hands and": [65535, 0], "hands and let": [65535, 0], "and let them": [65535, 0], "let them fall": [65535, 0], "them fall helplessly": [65535, 0], "fall helplessly in": [65535, 0], "helplessly in their": [65535, 0], "in their laps": [65535, 0], "their laps and": [65535, 0], "laps and wall": [65535, 0], "and wall their": [65535, 0], "wall their eyes": [65535, 0], "their eyes and": [65535, 0], "eyes and shake": [65535, 0], "and shake their": [65535, 0], "shake their heads": [65535, 0], "their heads as": [65535, 0], "heads as much": [65535, 0], "as much as": [65535, 0], "much as to": [65535, 0], "as to say": [65535, 0], "to say words": [65535, 0], "say words cannot": [65535, 0], "words cannot express": [65535, 0], "cannot express it": [65535, 0], "express it it": [65535, 0], "it it is": [65535, 0], "it is too": [65535, 0], "is too beautiful": [65535, 0], "too beautiful too": [65535, 0], "beautiful too beautiful": [65535, 0], "too beautiful for": [65535, 0], "beautiful for this": [65535, 0], "for this mortal": [65535, 0], "this mortal earth": [65535, 0], "mortal earth after": [65535, 0], "earth after the": [65535, 0], "after the hymn": [65535, 0], "the hymn had": [65535, 0], "hymn had been": [65535, 0], "had been sung": [65535, 0], "been sung the": [65535, 0], "sung the rev": [65535, 0], "the rev mr": [65535, 0], "rev mr sprague": [65535, 0], "mr sprague turned": [65535, 0], "sprague turned himself": [65535, 0], "turned himself into": [65535, 0], "himself into a": [65535, 0], "into a bulletin": [65535, 0], "a bulletin board": [65535, 0], "bulletin board and": [65535, 0], "board and read": [65535, 0], "and read off": [65535, 0], "read off notices": [65535, 0], "off notices of": [65535, 0], "notices of meetings": [65535, 0], "of meetings and": [65535, 0], "meetings and societies": [65535, 0], "and societies and": [65535, 0], "societies and things": [65535, 0], "and things till": [65535, 0], "things till it": [65535, 0], "till it seemed": [65535, 0], "it seemed that": [65535, 0], "seemed that the": [65535, 0], "that the list": [65535, 0], "the list would": [65535, 0], "list would stretch": [65535, 0], "would stretch out": [65535, 0], "stretch out to": [65535, 0], "out to the": [65535, 0], "to the crack": [65535, 0], "the crack of": [65535, 0], "crack of doom": [65535, 0], "of doom a": [65535, 0], "doom a queer": [65535, 0], "a queer custom": [65535, 0], "queer custom which": [65535, 0], "custom which is": [65535, 0], "which is still": [65535, 0], "is still kept": [65535, 0], "still kept up": [65535, 0], "kept up in": [65535, 0], "up in america": [65535, 0], "in america even": [65535, 0], "america even in": [65535, 0], "even in cities": [65535, 0], "in cities away": [65535, 0], "cities away here": [65535, 0], "away here in": [65535, 0], "here in this": [65535, 0], "in this age": [65535, 0], "this age of": [65535, 0], "age of abundant": [65535, 0], "of abundant newspapers": [65535, 0], "abundant newspapers often": [65535, 0], "newspapers often the": [65535, 0], "often the less": [65535, 0], "the less there": [65535, 0], "less there is": [65535, 0], "there is to": [65535, 0], "is to justify": [65535, 0], "to justify a": [65535, 0], "justify a traditional": [65535, 0], "a traditional custom": [65535, 0], "traditional custom the": [65535, 0], "custom the harder": [65535, 0], "the harder it": [65535, 0], "harder it is": [65535, 0], "it is to": [65535, 0], "is to get": [65535, 0], "to get rid": [65535, 0], "get rid of": [65535, 0], "rid of it": [65535, 0], "of it and": [49105, 16430], "it and now": [65535, 0], "and now the": [32706, 32829], "now the minister": [65535, 0], "the minister prayed": [65535, 0], "minister prayed a": [65535, 0], "prayed a good": [65535, 0], "a good generous": [65535, 0], "good generous prayer": [65535, 0], "generous prayer it": [65535, 0], "prayer it was": [65535, 0], "it was and": [65535, 0], "was and went": [65535, 0], "and went into": [65535, 0], "went into details": [65535, 0], "into details it": [65535, 0], "details it pleaded": [65535, 0], "it pleaded for": [65535, 0], "pleaded for the": [65535, 0], "for the church": [65535, 0], "the church and": [65535, 0], "church and the": [65535, 0], "and the little": [65535, 0], "the little children": [65535, 0], "little children of": [65535, 0], "children of the": [65535, 0], "of the church": [65535, 0], "the church for": [65535, 0], "church for the": [65535, 0], "for the other": [65535, 0], "the other churches": [65535, 0], "other churches of": [65535, 0], "churches of the": [65535, 0], "the village for": [65535, 0], "village for the": [65535, 0], "for the village": [65535, 0], "the village itself": [65535, 0], "village itself for": [65535, 0], "itself for the": [65535, 0], "for the county": [65535, 0], "the county for": [65535, 0], "county for the": [65535, 0], "for the state": [65535, 0], "the state for": [65535, 0], "state for the": [65535, 0], "the state officers": [65535, 0], "state officers for": [65535, 0], "officers for the": [65535, 0], "for the united": [65535, 0], "the united states": [65535, 0], "united states for": [65535, 0], "states for the": [65535, 0], "for the churches": [65535, 0], "the churches of": [65535, 0], "of the united": [65535, 0], "states for congress": [65535, 0], "for congress for": [65535, 0], "congress for the": [65535, 0], "for the president": [65535, 0], "the president for": [65535, 0], "president for the": [65535, 0], "for the officers": [65535, 0], "the officers of": [65535, 0], "officers of the": [65535, 0], "of the government": [65535, 0], "the government for": [65535, 0], "government for poor": [65535, 0], "for poor sailors": [65535, 0], "poor sailors tossed": [65535, 0], "sailors tossed by": [65535, 0], "tossed by stormy": [65535, 0], "by stormy seas": [65535, 0], "stormy seas for": [65535, 0], "seas for the": [65535, 0], "for the oppressed": [65535, 0], "the oppressed millions": [65535, 0], "oppressed millions groaning": [65535, 0], "millions groaning under": [65535, 0], "groaning under the": [65535, 0], "under the heel": [65535, 0], "the heel of": [65535, 0], "heel of european": [65535, 0], "of european monarchies": [65535, 0], "european monarchies and": [65535, 0], "monarchies and oriental": [65535, 0], "and oriental despotisms": [65535, 0], "oriental despotisms for": [65535, 0], "despotisms for such": [65535, 0], "for such as": [65535, 0], "such as have": [65535, 0], "as have the": [65535, 0], "have the light": [65535, 0], "the light and": [65535, 0], "light and the": [65535, 0], "and the good": [65535, 0], "the good tidings": [65535, 0], "good tidings and": [65535, 0], "tidings and yet": [65535, 0], "and yet have": [65535, 0], "yet have not": [65535, 0], "have not eyes": [65535, 0], "not eyes to": [65535, 0], "eyes to see": [65535, 0], "to see nor": [65535, 0], "see nor ears": [65535, 0], "nor ears to": [65535, 0], "ears to hear": [65535, 0], "to hear withal": [65535, 0], "hear withal for": [65535, 0], "withal for the": [65535, 0], "for the heathen": [65535, 0], "the heathen in": [65535, 0], "heathen in the": [65535, 0], "in the far": [65535, 0], "the far islands": [65535, 0], "far islands of": [65535, 0], "islands of the": [65535, 0], "of the sea": [65535, 0], "the sea and": [65535, 0], "sea and closed": [65535, 0], "and closed with": [65535, 0], "closed with a": [65535, 0], "with a supplication": [65535, 0], "a supplication that": [65535, 0], "supplication that the": [65535, 0], "that the words": [65535, 0], "the words he": [65535, 0], "words he was": [65535, 0], "he was about": [65535, 0], "was about to": [65535, 0], "about to speak": [65535, 0], "to speak might": [65535, 0], "speak might find": [65535, 0], "might find grace": [65535, 0], "find grace and": [65535, 0], "grace and favor": [65535, 0], "and favor and": [65535, 0], "favor and be": [65535, 0], "and be as": [65535, 0], "be as seed": [65535, 0], "as seed sown": [65535, 0], "seed sown in": [65535, 0], "sown in fertile": [65535, 0], "in fertile ground": [65535, 0], "fertile ground yielding": [65535, 0], "ground yielding in": [65535, 0], "yielding in time": [65535, 0], "in time a": [65535, 0], "time a grateful": [65535, 0], "a grateful harvest": [65535, 0], "grateful harvest of": [65535, 0], "harvest of good": [65535, 0], "of good amen": [65535, 0], "good amen there": [65535, 0], "amen there was": [65535, 0], "there was a": [65535, 0], "was a rustling": [65535, 0], "a rustling of": [65535, 0], "rustling of dresses": [65535, 0], "of dresses and": [65535, 0], "dresses and the": [65535, 0], "and the standing": [65535, 0], "the standing congregation": [65535, 0], "standing congregation sat": [65535, 0], "congregation sat down": [65535, 0], "sat down the": [65535, 0], "down the boy": [65535, 0], "the boy whose": [65535, 0], "boy whose history": [65535, 0], "whose history this": [65535, 0], "history this book": [65535, 0], "this book relates": [65535, 0], "book relates did": [65535, 0], "relates did not": [65535, 0], "did not enjoy": [65535, 0], "not enjoy the": [65535, 0], "enjoy the prayer": [65535, 0], "the prayer he": [65535, 0], "prayer he only": [65535, 0], "he only endured": [65535, 0], "only endured it": [65535, 0], "endured it if": [65535, 0], "it if he": [65535, 0], "if he even": [65535, 0], "he even did": [65535, 0], "even did that": [65535, 0], "did that much": [65535, 0], "that much he": [65535, 0], "much he was": [65535, 0], "he was restive": [65535, 0], "was restive all": [65535, 0], "restive all through": [65535, 0], "all through it": [65535, 0], "through it he": [65535, 0], "it he kept": [65535, 0], "he kept tally": [65535, 0], "kept tally of": [65535, 0], "tally of the": [65535, 0], "of the details": [65535, 0], "the details of": [65535, 0], "details of the": [65535, 0], "of the prayer": [65535, 0], "the prayer unconsciously": [65535, 0], "prayer unconsciously for": [65535, 0], "unconsciously for he": [65535, 0], "for he was": [56143, 9392], "he was not": [52389, 13146], "was not listening": [65535, 0], "not listening but": [65535, 0], "listening but he": [65535, 0], "but he knew": [65535, 0], "he knew the": [65535, 0], "knew the ground": [65535, 0], "the ground of": [32706, 32829], "ground of old": [65535, 0], "of old and": [65535, 0], "old and the": [65535, 0], "and the clergyman's": [65535, 0], "the clergyman's regular": [65535, 0], "clergyman's regular route": [65535, 0], "regular route over": [65535, 0], "route over it": [65535, 0], "over it and": [65535, 0], "it and when": [65535, 0], "and when a": [65535, 0], "when a little": [65535, 0], "a little trifle": [65535, 0], "little trifle of": [65535, 0], "trifle of new": [65535, 0], "of new matter": [65535, 0], "new matter was": [65535, 0], "matter was interlarded": [65535, 0], "was interlarded his": [65535, 0], "interlarded his ear": [65535, 0], "his ear detected": [65535, 0], "ear detected it": [65535, 0], "detected it and": [65535, 0], "it and his": [65535, 0], "and his whole": [65535, 0], "his whole nature": [65535, 0], "whole nature resented": [65535, 0], "nature resented it": [65535, 0], "resented it he": [65535, 0], "it he considered": [65535, 0], "he considered additions": [65535, 0], "considered additions unfair": [65535, 0], "additions unfair and": [65535, 0], "unfair and scoundrelly": [65535, 0], "and scoundrelly in": [65535, 0], "scoundrelly in the": [65535, 0], "in the midst": [49105, 16430], "the midst of": [65535, 0], "midst of the": [65535, 0], "the prayer a": [65535, 0], "prayer a fly": [65535, 0], "a fly had": [65535, 0], "fly had lit": [65535, 0], "had lit on": [65535, 0], "lit on the": [65535, 0], "on the back": [65535, 0], "the back of": [65535, 0], "back of the": [65535, 0], "of the pew": [65535, 0], "the pew in": [65535, 0], "pew in front": [65535, 0], "in front of": [65535, 0], "front of him": [65535, 0], "of him and": [32706, 32829], "him and tortured": [65535, 0], "and tortured his": [65535, 0], "tortured his spirit": [65535, 0], "his spirit by": [65535, 0], "spirit by calmly": [65535, 0], "by calmly rubbing": [65535, 0], "calmly rubbing its": [65535, 0], "rubbing its hands": [65535, 0], "its hands together": [65535, 0], "hands together embracing": [65535, 0], "together embracing its": [65535, 0], "embracing its head": [65535, 0], "its head with": [65535, 0], "head with its": [65535, 0], "with its arms": [65535, 0], "its arms and": [65535, 0], "arms and polishing": [65535, 0], "and polishing it": [65535, 0], "polishing it so": [65535, 0], "it so vigorously": [65535, 0], "so vigorously that": [65535, 0], "vigorously that it": [65535, 0], "that it seemed": [65535, 0], "it seemed to": [65535, 0], "seemed to almost": [65535, 0], "to almost part": [65535, 0], "almost part company": [65535, 0], "part company with": [65535, 0], "company with the": [65535, 0], "with the body": [65535, 0], "the body and": [65535, 0], "body and the": [65535, 0], "and the slender": [65535, 0], "the slender thread": [65535, 0], "slender thread of": [65535, 0], "thread of a": [65535, 0], "of a neck": [65535, 0], "a neck was": [65535, 0], "neck was exposed": [65535, 0], "was exposed to": [65535, 0], "exposed to view": [65535, 0], "to view scraping": [65535, 0], "view scraping its": [65535, 0], "scraping its wings": [65535, 0], "its wings with": [65535, 0], "wings with its": [65535, 0], "with its hind": [65535, 0], "its hind legs": [65535, 0], "hind legs and": [65535, 0], "legs and smoothing": [65535, 0], "and smoothing them": [65535, 0], "smoothing them to": [65535, 0], "them to its": [65535, 0], "to its body": [65535, 0], "its body as": [65535, 0], "body as if": [65535, 0], "as if they": [65535, 0], "if they had": [65535, 0], "they had been": [65535, 0], "had been coat": [65535, 0], "been coat tails": [65535, 0], "coat tails going": [65535, 0], "tails going through": [65535, 0], "going through its": [65535, 0], "through its whole": [65535, 0], "its whole toilet": [65535, 0], "whole toilet as": [65535, 0], "toilet as tranquilly": [65535, 0], "as tranquilly as": [65535, 0], "tranquilly as if": [65535, 0], "as if it": [65535, 0], "if it knew": [65535, 0], "it knew it": [65535, 0], "knew it was": [65535, 0], "it was perfectly": [65535, 0], "was perfectly safe": [65535, 0], "perfectly safe as": [65535, 0], "safe as indeed": [65535, 0], "as indeed it": [65535, 0], "indeed it was": [65535, 0], "it was for": [32706, 32829], "was for as": [65535, 0], "for as sorely": [65535, 0], "as sorely as": [65535, 0], "sorely as tom's": [65535, 0], "as tom's hands": [65535, 0], "tom's hands itched": [65535, 0], "hands itched to": [65535, 0], "itched to grab": [65535, 0], "to grab for": [65535, 0], "grab for it": [65535, 0], "for it they": [65535, 0], "it they did": [65535, 0], "they did not": [65535, 0], "did not dare": [65535, 0], "not dare he": [65535, 0], "dare he believed": [65535, 0], "he believed his": [65535, 0], "believed his soul": [65535, 0], "his soul would": [65535, 0], "soul would be": [65535, 0], "would be instantly": [65535, 0], "be instantly destroyed": [65535, 0], "instantly destroyed if": [65535, 0], "destroyed if he": [65535, 0], "if he did": [65535, 0], "he did such": [65535, 0], "did such a": [65535, 0], "such a thing": [65535, 0], "a thing while": [65535, 0], "thing while the": [65535, 0], "while the prayer": [65535, 0], "the prayer was": [65535, 0], "prayer was going": [65535, 0], "was going on": [65535, 0], "going on but": [65535, 0], "on but with": [65535, 0], "but with the": [65535, 0], "with the closing": [65535, 0], "the closing sentence": [65535, 0], "closing sentence his": [65535, 0], "sentence his hand": [65535, 0], "his hand began": [65535, 0], "hand began to": [65535, 0], "began to curve": [65535, 0], "to curve and": [65535, 0], "curve and steal": [65535, 0], "and steal forward": [65535, 0], "steal forward and": [65535, 0], "forward and the": [65535, 0], "and the instant": [65535, 0], "the instant the": [65535, 0], "instant the amen": [65535, 0], "the amen was": [65535, 0], "amen was out": [65535, 0], "was out the": [65535, 0], "out the fly": [65535, 0], "the fly was": [65535, 0], "fly was a": [65535, 0], "was a prisoner": [65535, 0], "a prisoner of": [65535, 0], "prisoner of war": [65535, 0], "of war his": [65535, 0], "war his aunt": [65535, 0], "his aunt detected": [65535, 0], "aunt detected the": [65535, 0], "detected the act": [65535, 0], "the act and": [65535, 0], "act and made": [65535, 0], "and made him": [65535, 0], "made him let": [65535, 0], "him let it": [65535, 0], "let it go": [65535, 0], "it go the": [65535, 0], "go the minister": [65535, 0], "gave out his": [65535, 0], "out his text": [65535, 0], "his text and": [65535, 0], "text and droned": [65535, 0], "and droned along": [65535, 0], "droned along monotonously": [65535, 0], "along monotonously through": [65535, 0], "monotonously through an": [65535, 0], "through an argument": [65535, 0], "an argument that": [65535, 0], "argument that was": [65535, 0], "that was so": [65535, 0], "was so prosy": [65535, 0], "so prosy that": [65535, 0], "prosy that many": [65535, 0], "that many a": [65535, 0], "many a head": [65535, 0], "a head by": [65535, 0], "head by and": [65535, 0], "by and by": [52389, 13146], "and by began": [65535, 0], "by began to": [65535, 0], "began to nod": [65535, 0], "to nod and": [65535, 0], "nod and yet": [65535, 0], "and yet it": [65535, 0], "yet it was": [65535, 0], "it was an": [65535, 0], "was an argument": [65535, 0], "argument that dealt": [65535, 0], "that dealt in": [65535, 0], "dealt in limitless": [65535, 0], "in limitless fire": [65535, 0], "limitless fire and": [65535, 0], "fire and brimstone": [65535, 0], "and brimstone and": [65535, 0], "brimstone and thinned": [65535, 0], "and thinned the": [65535, 0], "thinned the predestined": [65535, 0], "the predestined elect": [65535, 0], "predestined elect down": [65535, 0], "elect down to": [65535, 0], "down to a": [65535, 0], "to a company": [65535, 0], "a company so": [65535, 0], "company so small": [65535, 0], "so small as": [65535, 0], "small as to": [65535, 0], "to be hardly": [65535, 0], "be hardly worth": [65535, 0], "hardly worth the": [65535, 0], "worth the saving": [65535, 0], "the saving tom": [65535, 0], "saving tom counted": [65535, 0], "tom counted the": [65535, 0], "counted the pages": [65535, 0], "the pages of": [65535, 0], "pages of the": [65535, 0], "of the sermon": [65535, 0], "the sermon after": [65535, 0], "sermon after church": [65535, 0], "after church he": [65535, 0], "church he always": [65535, 0], "he always knew": [65535, 0], "always knew how": [65535, 0], "knew how many": [65535, 0], "how many pages": [65535, 0], "many pages there": [65535, 0], "pages there had": [65535, 0], "there had been": [65535, 0], "had been but": [65535, 0], "been but he": [65535, 0], "but he seldom": [65535, 0], "he seldom knew": [65535, 0], "seldom knew anything": [65535, 0], "knew anything else": [65535, 0], "anything else about": [65535, 0], "else about the": [65535, 0], "about the discourse": [65535, 0], "the discourse however": [65535, 0], "discourse however this": [65535, 0], "however this time": [65535, 0], "this time he": [65535, 0], "time he was": [65535, 0], "he was really": [65535, 0], "was really interested": [65535, 0], "really interested for": [65535, 0], "interested for a": [65535, 0], "for a little": [65535, 0], "a little while": [65535, 0], "little while the": [65535, 0], "while the minister": [65535, 0], "the minister made": [65535, 0], "minister made a": [65535, 0], "made a grand": [65535, 0], "a grand and": [65535, 0], "grand and moving": [65535, 0], "and moving picture": [65535, 0], "moving picture of": [65535, 0], "picture of the": [65535, 0], "of the assembling": [65535, 0], "the assembling together": [65535, 0], "assembling together of": [65535, 0], "together of the": [65535, 0], "of the world's": [65535, 0], "the world's hosts": [65535, 0], "world's hosts at": [65535, 0], "hosts at the": [65535, 0], "at the millennium": [65535, 0], "the millennium when": [65535, 0], "millennium when the": [65535, 0], "when the lion": [65535, 0], "the lion and": [65535, 0], "lion and the": [65535, 0], "and the lamb": [65535, 0], "the lamb should": [65535, 0], "lamb should lie": [65535, 0], "should lie down": [65535, 0], "lie down together": [65535, 0], "down together and": [65535, 0], "together and a": [65535, 0], "and a little": [65535, 0], "a little child": [65535, 0], "little child should": [65535, 0], "child should lead": [65535, 0], "should lead them": [65535, 0], "lead them but": [65535, 0], "them but the": [65535, 0], "but the pathos": [65535, 0], "the pathos the": [65535, 0], "pathos the lesson": [65535, 0], "the lesson the": [65535, 0], "lesson the moral": [65535, 0], "the moral of": [65535, 0], "moral of the": [65535, 0], "of the great": [65535, 0], "the great spectacle": [65535, 0], "great spectacle were": [65535, 0], "spectacle were lost": [65535, 0], "were lost upon": [65535, 0], "lost upon the": [65535, 0], "upon the boy": [65535, 0], "the boy he": [65535, 0], "boy he only": [65535, 0], "he only thought": [65535, 0], "only thought of": [65535, 0], "thought of the": [65535, 0], "of the conspicuousness": [65535, 0], "the conspicuousness of": [65535, 0], "conspicuousness of the": [65535, 0], "of the principal": [65535, 0], "the principal character": [65535, 0], "principal character before": [65535, 0], "character before the": [65535, 0], "before the on": [65535, 0], "the on looking": [65535, 0], "on looking nations": [65535, 0], "looking nations his": [65535, 0], "nations his face": [65535, 0], "his face lit": [65535, 0], "face lit with": [65535, 0], "lit with the": [65535, 0], "with the thought": [65535, 0], "the thought and": [65535, 0], "thought and he": [65535, 0], "and he said": [65535, 0], "he said to": [65535, 0], "said to himself": [65535, 0], "to himself that": [65535, 0], "himself that he": [65535, 0], "that he wished": [65535, 0], "he wished he": [65535, 0], "wished he could": [65535, 0], "he could be": [65535, 0], "could be that": [65535, 0], "be that child": [65535, 0], "that child if": [65535, 0], "child if it": [65535, 0], "if it was": [65535, 0], "was a tame": [65535, 0], "a tame lion": [65535, 0], "tame lion now": [65535, 0], "lion now he": [65535, 0], "now he lapsed": [65535, 0], "he lapsed into": [65535, 0], "lapsed into suffering": [65535, 0], "into suffering again": [65535, 0], "suffering again as": [65535, 0], "again as the": [65535, 0], "as the dry": [65535, 0], "the dry argument": [65535, 0], "dry argument was": [65535, 0], "argument was resumed": [65535, 0], "was resumed presently": [65535, 0], "resumed presently he": [65535, 0], "presently he bethought": [65535, 0], "he bethought him": [65535, 0], "bethought him of": [65535, 0], "him of a": [65535, 0], "of a treasure": [65535, 0], "a treasure he": [65535, 0], "treasure he had": [65535, 0], "he had and": [65535, 0], "had and got": [65535, 0], "and got it": [65535, 0], "got it out": [65535, 0], "it out it": [65535, 0], "out it was": [65535, 0], "was a large": [65535, 0], "a large black": [65535, 0], "large black beetle": [65535, 0], "black beetle with": [65535, 0], "beetle with formidable": [65535, 0], "with formidable jaws": [65535, 0], "formidable jaws a": [65535, 0], "jaws a pinchbug": [65535, 0], "a pinchbug he": [65535, 0], "pinchbug he called": [65535, 0], "he called it": [65535, 0], "called it it": [65535, 0], "it it was": [65535, 0], "was in a": [65535, 0], "in a percussion": [65535, 0], "a percussion cap": [65535, 0], "percussion cap box": [65535, 0], "cap box the": [65535, 0], "box the first": [65535, 0], "the first thing": [65535, 0], "first thing the": [65535, 0], "thing the beetle": [65535, 0], "the beetle did": [65535, 0], "beetle did was": [65535, 0], "did was to": [65535, 0], "was to take": [65535, 0], "to take him": [65535, 0], "take him by": [65535, 0], "him by the": [65535, 0], "by the finger": [65535, 0], "the finger a": [65535, 0], "finger a natural": [65535, 0], "a natural fillip": [65535, 0], "natural fillip followed": [65535, 0], "fillip followed the": [65535, 0], "followed the beetle": [65535, 0], "the beetle went": [65535, 0], "beetle went floundering": [65535, 0], "went floundering into": [65535, 0], "floundering into the": [65535, 0], "into the aisle": [65535, 0], "the aisle and": [65535, 0], "aisle and lit": [65535, 0], "and lit on": [65535, 0], "lit on its": [65535, 0], "on its back": [65535, 0], "its back and": [65535, 0], "back and the": [65535, 0], "and the hurt": [65535, 0], "the hurt finger": [65535, 0], "hurt finger went": [65535, 0], "finger went into": [65535, 0], "went into the": [65535, 0], "into the boy's": [65535, 0], "the boy's mouth": [65535, 0], "boy's mouth the": [65535, 0], "mouth the beetle": [65535, 0], "the beetle lay": [65535, 0], "beetle lay there": [65535, 0], "lay there working": [65535, 0], "there working its": [65535, 0], "working its helpless": [65535, 0], "its helpless legs": [65535, 0], "helpless legs unable": [65535, 0], "legs unable to": [65535, 0], "unable to turn": [65535, 0], "to turn over": [65535, 0], "turn over tom": [65535, 0], "over tom eyed": [65535, 0], "tom eyed it": [65535, 0], "eyed it and": [65535, 0], "it and longed": [65535, 0], "and longed for": [65535, 0], "longed for it": [65535, 0], "for it but": [65535, 0], "it but it": [65535, 0], "but it was": [65535, 0], "it was safe": [65535, 0], "was safe out": [65535, 0], "safe out of": [65535, 0], "of his reach": [65535, 0], "his reach other": [65535, 0], "reach other people": [65535, 0], "other people uninterested": [65535, 0], "people uninterested in": [65535, 0], "uninterested in the": [65535, 0], "in the sermon": [65535, 0], "the sermon found": [65535, 0], "sermon found relief": [65535, 0], "found relief in": [65535, 0], "relief in the": [65535, 0], "in the beetle": [65535, 0], "the beetle and": [65535, 0], "beetle and they": [65535, 0], "and they eyed": [65535, 0], "they eyed it": [65535, 0], "eyed it too": [65535, 0], "it too presently": [65535, 0], "too presently a": [65535, 0], "presently a vagrant": [65535, 0], "a vagrant poodle": [65535, 0], "vagrant poodle dog": [65535, 0], "poodle dog came": [65535, 0], "dog came idling": [65535, 0], "came idling along": [65535, 0], "idling along sad": [65535, 0], "along sad at": [65535, 0], "sad at heart": [65535, 0], "at heart lazy": [65535, 0], "heart lazy with": [65535, 0], "lazy with the": [65535, 0], "with the summer": [65535, 0], "the summer softness": [65535, 0], "summer softness and": [65535, 0], "softness and the": [65535, 0], "and the quiet": [65535, 0], "the quiet weary": [65535, 0], "quiet weary of": [65535, 0], "weary of captivity": [65535, 0], "of captivity sighing": [65535, 0], "captivity sighing for": [65535, 0], "sighing for change": [65535, 0], "for change he": [65535, 0], "change he spied": [65535, 0], "he spied the": [65535, 0], "spied the beetle": [65535, 0], "the beetle the": [65535, 0], "beetle the drooping": [65535, 0], "the drooping tail": [65535, 0], "drooping tail lifted": [65535, 0], "tail lifted and": [65535, 0], "lifted and wagged": [65535, 0], "and wagged he": [65535, 0], "wagged he surveyed": [65535, 0], "he surveyed the": [65535, 0], "surveyed the prize": [65535, 0], "the prize walked": [65535, 0], "prize walked around": [65535, 0], "walked around it": [65535, 0], "around it smelt": [65535, 0], "it smelt at": [65535, 0], "smelt at it": [65535, 0], "at it from": [65535, 0], "it from a": [65535, 0], "from a safe": [65535, 0], "a safe distance": [65535, 0], "safe distance walked": [65535, 0], "distance walked around": [65535, 0], "around it again": [65535, 0], "it again grew": [65535, 0], "again grew bolder": [65535, 0], "grew bolder and": [65535, 0], "bolder and took": [65535, 0], "and took a": [65535, 0], "took a closer": [65535, 0], "a closer smell": [65535, 0], "closer smell then": [65535, 0], "smell then lifted": [65535, 0], "then lifted his": [65535, 0], "lifted his lip": [65535, 0], "his lip and": [65535, 0], "lip and made": [65535, 0], "and made a": [65535, 0], "made a gingerly": [65535, 0], "a gingerly snatch": [65535, 0], "gingerly snatch at": [65535, 0], "snatch at it": [65535, 0], "at it just": [65535, 0], "it just missing": [65535, 0], "just missing it": [65535, 0], "missing it made": [65535, 0], "it made another": [65535, 0], "made another and": [65535, 0], "another and another": [65535, 0], "and another began": [65535, 0], "another began to": [65535, 0], "began to enjoy": [65535, 0], "to enjoy the": [65535, 0], "enjoy the diversion": [65535, 0], "the diversion subsided": [65535, 0], "diversion subsided to": [65535, 0], "subsided to his": [65535, 0], "to his stomach": [65535, 0], "his stomach with": [65535, 0], "stomach with the": [65535, 0], "with the beetle": [65535, 0], "the beetle between": [65535, 0], "beetle between his": [65535, 0], "between his paws": [65535, 0], "his paws and": [65535, 0], "paws and continued": [65535, 0], "and continued his": [65535, 0], "continued his experiments": [65535, 0], "his experiments grew": [65535, 0], "experiments grew weary": [65535, 0], "grew weary at": [65535, 0], "weary at last": [65535, 0], "at last and": [65535, 0], "last and then": [65535, 0], "and then indifferent": [65535, 0], "then indifferent and": [65535, 0], "indifferent and absent": [65535, 0], "and absent minded": [65535, 0], "absent minded his": [65535, 0], "minded his head": [65535, 0], "his head nodded": [65535, 0], "head nodded and": [65535, 0], "nodded and little": [65535, 0], "and little by": [65535, 0], "little by little": [65535, 0], "by little his": [65535, 0], "little his chin": [65535, 0], "his chin descended": [65535, 0], "chin descended and": [65535, 0], "descended and touched": [65535, 0], "and touched the": [65535, 0], "touched the enemy": [65535, 0], "the enemy who": [65535, 0], "enemy who seized": [65535, 0], "who seized it": [65535, 0], "seized it there": [65535, 0], "it there was": [65535, 0], "was a sharp": [65535, 0], "a sharp yelp": [65535, 0], "sharp yelp a": [65535, 0], "yelp a flirt": [65535, 0], "a flirt of": [65535, 0], "flirt of the": [65535, 0], "of the poodle's": [65535, 0], "the poodle's head": [65535, 0], "poodle's head and": [65535, 0], "head and the": [65535, 0], "and the beetle": [65535, 0], "the beetle fell": [65535, 0], "beetle fell a": [65535, 0], "fell a couple": [65535, 0], "a couple of": [65535, 0], "couple of yards": [65535, 0], "of yards away": [65535, 0], "yards away and": [65535, 0], "away and lit": [65535, 0], "its back once": [65535, 0], "back once more": [65535, 0], "once more the": [65535, 0], "more the neighboring": [65535, 0], "the neighboring spectators": [65535, 0], "neighboring spectators shook": [65535, 0], "spectators shook with": [65535, 0], "shook with a": [65535, 0], "with a gentle": [65535, 0], "a gentle inward": [65535, 0], "gentle inward joy": [65535, 0], "inward joy several": [65535, 0], "joy several faces": [65535, 0], "several faces went": [65535, 0], "faces went behind": [65535, 0], "went behind fans": [65535, 0], "behind fans and": [65535, 0], "fans and handkerchiefs": [65535, 0], "and handkerchiefs and": [65535, 0], "handkerchiefs and tom": [65535, 0], "and tom was": [65535, 0], "tom was entirely": [65535, 0], "was entirely happy": [65535, 0], "entirely happy the": [65535, 0], "happy the dog": [65535, 0], "the dog looked": [65535, 0], "dog looked foolish": [65535, 0], "looked foolish and": [65535, 0], "foolish and probably": [65535, 0], "and probably felt": [65535, 0], "probably felt so": [65535, 0], "felt so but": [65535, 0], "so but there": [65535, 0], "but there was": [65535, 0], "there was resentment": [65535, 0], "was resentment in": [65535, 0], "resentment in his": [65535, 0], "in his heart": [65535, 0], "his heart too": [65535, 0], "heart too and": [65535, 0], "too and a": [65535, 0], "and a craving": [65535, 0], "a craving for": [65535, 0], "craving for revenge": [65535, 0], "for revenge so": [65535, 0], "revenge so he": [65535, 0], "so he went": [65535, 0], "he went to": [65535, 0], "went to the": [65535, 0], "to the beetle": [65535, 0], "beetle and began": [65535, 0], "and began a": [65535, 0], "began a wary": [65535, 0], "a wary attack": [65535, 0], "wary attack on": [65535, 0], "attack on it": [65535, 0], "on it again": [65535, 0], "it again jumping": [65535, 0], "again jumping at": [65535, 0], "jumping at it": [65535, 0], "it from every": [65535, 0], "from every point": [65535, 0], "every point of": [65535, 0], "point of a": [65535, 0], "of a circle": [65535, 0], "a circle lighting": [65535, 0], "circle lighting with": [65535, 0], "lighting with his": [65535, 0], "with his fore": [65535, 0], "his fore paws": [65535, 0], "fore paws within": [65535, 0], "paws within an": [65535, 0], "within an inch": [65535, 0], "an inch of": [65535, 0], "inch of the": [65535, 0], "of the creature": [65535, 0], "the creature making": [65535, 0], "creature making even": [65535, 0], "making even closer": [65535, 0], "even closer snatches": [65535, 0], "closer snatches at": [65535, 0], "snatches at it": [65535, 0], "at it with": [65535, 0], "it with his": [65535, 0], "with his teeth": [65535, 0], "his teeth and": [65535, 0], "teeth and jerking": [65535, 0], "and jerking his": [65535, 0], "jerking his head": [65535, 0], "his head till": [65535, 0], "head till his": [65535, 0], "till his ears": [65535, 0], "his ears flapped": [65535, 0], "ears flapped again": [65535, 0], "flapped again but": [65535, 0], "again but he": [65535, 0], "but he grew": [65535, 0], "he grew tired": [65535, 0], "grew tired once": [65535, 0], "tired once more": [65535, 0], "once more after": [65535, 0], "more after a": [65535, 0], "after a while": [65535, 0], "a while tried": [65535, 0], "while tried to": [65535, 0], "tried to amuse": [65535, 0], "to amuse himself": [65535, 0], "amuse himself with": [65535, 0], "himself with a": [65535, 0], "with a fly": [65535, 0], "a fly but": [65535, 0], "fly but found": [65535, 0], "but found no": [65535, 0], "found no relief": [65535, 0], "no relief followed": [65535, 0], "relief followed an": [65535, 0], "followed an ant": [65535, 0], "an ant around": [65535, 0], "ant around with": [65535, 0], "around with his": [65535, 0], "with his nose": [65535, 0], "his nose close": [65535, 0], "nose close to": [65535, 0], "close to the": [65535, 0], "to the floor": [65535, 0], "the floor and": [65535, 0], "floor and quickly": [65535, 0], "and quickly wearied": [65535, 0], "quickly wearied of": [65535, 0], "wearied of that": [65535, 0], "of that yawned": [65535, 0], "that yawned sighed": [65535, 0], "yawned sighed forgot": [65535, 0], "sighed forgot the": [65535, 0], "forgot the beetle": [65535, 0], "the beetle entirely": [65535, 0], "beetle entirely and": [65535, 0], "entirely and sat": [65535, 0], "and sat down": [65535, 0], "sat down on": [65535, 0], "down on it": [65535, 0], "on it then": [65535, 0], "it then there": [65535, 0], "then there was": [65535, 0], "was a wild": [65535, 0], "a wild yelp": [65535, 0], "wild yelp of": [65535, 0], "yelp of agony": [65535, 0], "of agony and": [65535, 0], "agony and the": [65535, 0], "and the poodle": [65535, 0], "the poodle went": [65535, 0], "poodle went sailing": [65535, 0], "went sailing up": [65535, 0], "sailing up the": [65535, 0], "up the aisle": [65535, 0], "the aisle the": [65535, 0], "aisle the yelps": [65535, 0], "the yelps continued": [65535, 0], "yelps continued and": [65535, 0], "continued and so": [65535, 0], "and so did": [65535, 0], "so did the": [65535, 0], "did the dog": [65535, 0], "the dog he": [65535, 0], "dog he crossed": [65535, 0], "he crossed the": [65535, 0], "crossed the house": [65535, 0], "the house in": [65535, 0], "house in front": [65535, 0], "front of the": [65535, 0], "of the altar": [65535, 0], "the altar he": [65535, 0], "altar he flew": [65535, 0], "he flew down": [65535, 0], "flew down the": [65535, 0], "down the other": [65535, 0], "the other aisle": [65535, 0], "other aisle he": [65535, 0], "aisle he crossed": [65535, 0], "he crossed before": [65535, 0], "crossed before the": [65535, 0], "before the doors": [65535, 0], "the doors he": [65535, 0], "doors he clamored": [65535, 0], "he clamored up": [65535, 0], "clamored up the": [65535, 0], "up the home": [65535, 0], "the home stretch": [65535, 0], "home stretch his": [65535, 0], "stretch his anguish": [65535, 0], "his anguish grew": [65535, 0], "anguish grew with": [65535, 0], "grew with his": [65535, 0], "with his progress": [65535, 0], "his progress till": [65535, 0], "progress till presently": [65535, 0], "till presently he": [65535, 0], "presently he was": [65535, 0], "he was but": [32706, 32829], "was but a": [65535, 0], "but a woolly": [65535, 0], "a woolly comet": [65535, 0], "woolly comet moving": [65535, 0], "comet moving in": [65535, 0], "moving in its": [65535, 0], "in its orbit": [65535, 0], "its orbit with": [65535, 0], "orbit with the": [65535, 0], "with the gleam": [65535, 0], "the gleam and": [65535, 0], "gleam and the": [65535, 0], "and the speed": [65535, 0], "the speed of": [65535, 0], "speed of light": [65535, 0], "of light at": [65535, 0], "light at last": [65535, 0], "at last the": [65535, 0], "last the frantic": [65535, 0], "the frantic sufferer": [65535, 0], "frantic sufferer sheered": [65535, 0], "sufferer sheered from": [65535, 0], "sheered from its": [65535, 0], "from its course": [65535, 0], "its course and": [65535, 0], "course and sprang": [65535, 0], "and sprang into": [65535, 0], "sprang into its": [65535, 0], "into its master's": [65535, 0], "its master's lap": [65535, 0], "master's lap he": [65535, 0], "lap he flung": [65535, 0], "he flung it": [65535, 0], "flung it out": [65535, 0], "it out of": [65535, 0], "out of the": [65535, 0], "of the window": [65535, 0], "the window and": [65535, 0], "and the voice": [65535, 0], "the voice of": [65535, 0], "voice of distress": [65535, 0], "of distress quickly": [65535, 0], "distress quickly thinned": [65535, 0], "quickly thinned away": [65535, 0], "thinned away and": [65535, 0], "away and died": [65535, 0], "and died in": [65535, 0], "died in the": [65535, 0], "in the distance": [65535, 0], "the distance by": [65535, 0], "distance by this": [65535, 0], "by this time": [65535, 0], "this time the": [43635, 21900], "time the whole": [65535, 0], "the whole church": [65535, 0], "whole church was": [65535, 0], "church was red": [65535, 0], "was red faced": [65535, 0], "red faced and": [65535, 0], "faced and suffocating": [65535, 0], "and suffocating with": [65535, 0], "suffocating with suppressed": [65535, 0], "with suppressed laughter": [65535, 0], "suppressed laughter and": [65535, 0], "laughter and the": [65535, 0], "and the sermon": [65535, 0], "the sermon had": [65535, 0], "sermon had come": [65535, 0], "had come to": [65535, 0], "come to a": [65535, 0], "to a dead": [65535, 0], "a dead standstill": [65535, 0], "dead standstill the": [65535, 0], "standstill the discourse": [65535, 0], "the discourse was": [65535, 0], "discourse was resumed": [65535, 0], "resumed presently but": [65535, 0], "presently but it": [65535, 0], "but it went": [65535, 0], "it went lame": [65535, 0], "went lame and": [65535, 0], "lame and halting": [65535, 0], "and halting all": [65535, 0], "halting all possibility": [65535, 0], "all possibility of": [65535, 0], "possibility of impressiveness": [65535, 0], "of impressiveness being": [65535, 0], "impressiveness being at": [65535, 0], "being at an": [65535, 0], "at an end": [65535, 0], "an end for": [65535, 0], "end for even": [65535, 0], "for even the": [65535, 0], "even the gravest": [65535, 0], "the gravest sentiments": [65535, 0], "gravest sentiments were": [65535, 0], "sentiments were constantly": [65535, 0], "were constantly being": [65535, 0], "constantly being received": [65535, 0], "being received with": [65535, 0], "received with a": [65535, 0], "with a smothered": [65535, 0], "a smothered burst": [65535, 0], "smothered burst of": [65535, 0], "burst of unholy": [65535, 0], "of unholy mirth": [65535, 0], "unholy mirth under": [65535, 0], "mirth under cover": [65535, 0], "under cover of": [65535, 0], "cover of some": [65535, 0], "of some remote": [65535, 0], "some remote pew": [65535, 0], "remote pew back": [65535, 0], "pew back as": [65535, 0], "back as if": [65535, 0], "as if the": [65535, 0], "if the poor": [65535, 0], "the poor parson": [65535, 0], "poor parson had": [65535, 0], "parson had said": [65535, 0], "had said a": [65535, 0], "said a rarely": [65535, 0], "a rarely facetious": [65535, 0], "rarely facetious thing": [65535, 0], "facetious thing it": [65535, 0], "thing it was": [65535, 0], "was a genuine": [65535, 0], "a genuine relief": [65535, 0], "genuine relief to": [65535, 0], "relief to the": [65535, 0], "to the whole": [65535, 0], "the whole congregation": [65535, 0], "whole congregation when": [65535, 0], "congregation when the": [65535, 0], "when the ordeal": [65535, 0], "the ordeal was": [65535, 0], "ordeal was over": [65535, 0], "was over and": [65535, 0], "over and the": [65535, 0], "and the benediction": [65535, 0], "the benediction pronounced": [65535, 0], "benediction pronounced tom": [65535, 0], "pronounced tom sawyer": [65535, 0], "tom sawyer went": [65535, 0], "sawyer went home": [65535, 0], "went home quite": [65535, 0], "home quite cheerful": [65535, 0], "quite cheerful thinking": [65535, 0], "cheerful thinking to": [65535, 0], "thinking to himself": [65535, 0], "himself that there": [65535, 0], "that there was": [65535, 0], "there was some": [65535, 0], "was some satisfaction": [65535, 0], "some satisfaction about": [65535, 0], "satisfaction about divine": [65535, 0], "about divine service": [65535, 0], "divine service when": [65535, 0], "service when there": [65535, 0], "when there was": [65535, 0], "was a bit": [65535, 0], "a bit of": [65535, 0], "bit of variety": [65535, 0], "of variety in": [65535, 0], "variety in it": [65535, 0], "in it he": [65535, 0], "it he had": [65535, 0], "he had but": [65535, 0], "had but one": [65535, 0], "but one marring": [65535, 0], "one marring thought": [65535, 0], "marring thought he": [65535, 0], "thought he was": [65535, 0], "he was willing": [65535, 0], "was willing that": [65535, 0], "willing that the": [65535, 0], "that the dog": [65535, 0], "the dog should": [65535, 0], "dog should play": [65535, 0], "should play with": [65535, 0], "play with his": [65535, 0], "with his pinchbug": [65535, 0], "his pinchbug but": [65535, 0], "pinchbug but he": [65535, 0], "but he did": [65535, 0], "he did not": [65535, 0], "did not think": [65535, 0], "not think it": [65535, 0], "it was upright": [65535, 0], "was upright in": [65535, 0], "upright in him": [65535, 0], "in him to": [65535, 0], "him to carry": [65535, 0], "to carry it": [65535, 0], "carry it off": [65535, 0], "about half past ten": [65535, 0], "half past ten the": [65535, 0], "past ten the cracked": [65535, 0], "ten the cracked bell": [65535, 0], "the cracked bell of": [65535, 0], "cracked bell of the": [65535, 0], "bell of the small": [65535, 0], "of the small church": [65535, 0], "the small church began": [65535, 0], "small church began to": [65535, 0], "church began to ring": [65535, 0], "began to ring and": [65535, 0], "to ring and presently": [65535, 0], "ring and presently the": [65535, 0], "and presently the people": [65535, 0], "presently the people began": [65535, 0], "the people began to": [65535, 0], "people began to gather": [65535, 0], "began to gather for": [65535, 0], "to gather for the": [65535, 0], "gather for the morning": [65535, 0], "for the morning sermon": [65535, 0], "the morning sermon the": [65535, 0], "morning sermon the sunday": [65535, 0], "sermon the sunday school": [65535, 0], "the sunday school children": [65535, 0], "sunday school children distributed": [65535, 0], "school children distributed themselves": [65535, 0], "children distributed themselves about": [65535, 0], "distributed themselves about the": [65535, 0], "themselves about the house": [65535, 0], "about the house and": [65535, 0], "the house and occupied": [65535, 0], "house and occupied pews": [65535, 0], "and occupied pews with": [65535, 0], "occupied pews with their": [65535, 0], "pews with their parents": [65535, 0], "with their parents so": [65535, 0], "their parents so as": [65535, 0], "parents so as to": [65535, 0], "so as to be": [65535, 0], "as to be under": [65535, 0], "to be under supervision": [65535, 0], "be under supervision aunt": [65535, 0], "under supervision aunt polly": [65535, 0], "supervision aunt polly came": [65535, 0], "aunt polly came and": [65535, 0], "polly came and tom": [65535, 0], "came and tom and": [65535, 0], "and tom and sid": [65535, 0], "tom and sid and": [65535, 0], "and sid and mary": [65535, 0], "sid and mary sat": [65535, 0], "and mary sat with": [65535, 0], "mary sat with her": [65535, 0], "sat with her tom": [65535, 0], "with her tom being": [65535, 0], "her tom being placed": [65535, 0], "tom being placed next": [65535, 0], "being placed next the": [65535, 0], "placed next the aisle": [65535, 0], "next the aisle in": [65535, 0], "the aisle in order": [65535, 0], "aisle in order that": [65535, 0], "in order that he": [65535, 0], "order that he might": [65535, 0], "that he might be": [65535, 0], "he might be as": [65535, 0], "might be as far": [65535, 0], "be as far away": [65535, 0], "as far away from": [65535, 0], "far away from the": [65535, 0], "away from the open": [65535, 0], "from the open window": [65535, 0], "the open window and": [65535, 0], "open window and the": [65535, 0], "window and the seductive": [65535, 0], "and the seductive outside": [65535, 0], "the seductive outside summer": [65535, 0], "seductive outside summer scenes": [65535, 0], "outside summer scenes as": [65535, 0], "summer scenes as possible": [65535, 0], "scenes as possible the": [65535, 0], "as possible the crowd": [65535, 0], "possible the crowd filed": [65535, 0], "the crowd filed up": [65535, 0], "crowd filed up the": [65535, 0], "filed up the aisles": [65535, 0], "up the aisles the": [65535, 0], "the aisles the aged": [65535, 0], "aisles the aged and": [65535, 0], "the aged and needy": [65535, 0], "aged and needy postmaster": [65535, 0], "and needy postmaster who": [65535, 0], "needy postmaster who had": [65535, 0], "postmaster who had seen": [65535, 0], "who had seen better": [65535, 0], "had seen better days": [65535, 0], "seen better days the": [65535, 0], "better days the mayor": [65535, 0], "days the mayor and": [65535, 0], "the mayor and his": [65535, 0], "mayor and his wife": [65535, 0], "and his wife for": [65535, 0], "his wife for they": [65535, 0], "wife for they had": [65535, 0], "for they had a": [65535, 0], "they had a mayor": [65535, 0], "had a mayor there": [65535, 0], "a mayor there among": [65535, 0], "mayor there among other": [65535, 0], "there among other unnecessaries": [65535, 0], "among other unnecessaries the": [65535, 0], "other unnecessaries the justice": [65535, 0], "unnecessaries the justice of": [65535, 0], "the justice of the": [65535, 0], "justice of the peace": [65535, 0], "of the peace the": [65535, 0], "the peace the widow": [65535, 0], "peace the widow douglass": [65535, 0], "the widow douglass fair": [65535, 0], "widow douglass fair smart": [65535, 0], "douglass fair smart and": [65535, 0], "fair smart and forty": [65535, 0], "smart and forty a": [65535, 0], "and forty a generous": [65535, 0], "forty a generous good": [65535, 0], "a generous good hearted": [65535, 0], "generous good hearted soul": [65535, 0], "good hearted soul and": [65535, 0], "hearted soul and well": [65535, 0], "soul and well to": [65535, 0], "and well to do": [65535, 0], "well to do her": [65535, 0], "to do her hill": [65535, 0], "do her hill mansion": [65535, 0], "her hill mansion the": [65535, 0], "hill mansion the only": [65535, 0], "mansion the only palace": [65535, 0], "the only palace in": [65535, 0], "only palace in the": [65535, 0], "palace in the town": [65535, 0], "in the town and": [65535, 0], "the town and the": [65535, 0], "town and the most": [65535, 0], "and the most hospitable": [65535, 0], "the most hospitable and": [65535, 0], "most hospitable and much": [65535, 0], "hospitable and much the": [65535, 0], "and much the most": [65535, 0], "much the most lavish": [65535, 0], "the most lavish in": [65535, 0], "most lavish in the": [65535, 0], "lavish in the matter": [65535, 0], "in the matter of": [65535, 0], "the matter of festivities": [65535, 0], "matter of festivities that": [65535, 0], "of festivities that st": [65535, 0], "festivities that st petersburg": [65535, 0], "that st petersburg could": [65535, 0], "st petersburg could boast": [65535, 0], "petersburg could boast the": [65535, 0], "could boast the bent": [65535, 0], "boast the bent and": [65535, 0], "the bent and venerable": [65535, 0], "bent and venerable major": [65535, 0], "and venerable major and": [65535, 0], "venerable major and mrs": [65535, 0], "major and mrs ward": [65535, 0], "and mrs ward lawyer": [65535, 0], "mrs ward lawyer riverson": [65535, 0], "ward lawyer riverson the": [65535, 0], "lawyer riverson the new": [65535, 0], "riverson the new notable": [65535, 0], "the new notable from": [65535, 0], "new notable from a": [65535, 0], "notable from a distance": [65535, 0], "from a distance next": [65535, 0], "a distance next the": [65535, 0], "distance next the belle": [65535, 0], "next the belle of": [65535, 0], "the belle of the": [65535, 0], "belle of the village": [65535, 0], "of the village followed": [65535, 0], "the village followed by": [65535, 0], "village followed by a": [65535, 0], "followed by a troop": [65535, 0], "by a troop of": [65535, 0], "a troop of lawn": [65535, 0], "troop of lawn clad": [65535, 0], "of lawn clad and": [65535, 0], "lawn clad and ribbon": [65535, 0], "clad and ribbon decked": [65535, 0], "and ribbon decked young": [65535, 0], "ribbon decked young heart": [65535, 0], "decked young heart breakers": [65535, 0], "young heart breakers then": [65535, 0], "heart breakers then all": [65535, 0], "breakers then all the": [65535, 0], "then all the young": [65535, 0], "all the young clerks": [65535, 0], "the young clerks in": [65535, 0], "young clerks in town": [65535, 0], "clerks in town in": [65535, 0], "in town in a": [65535, 0], "town in a body": [65535, 0], "in a body for": [65535, 0], "a body for they": [65535, 0], "body for they had": [65535, 0], "for they had stood": [65535, 0], "they had stood in": [65535, 0], "had stood in the": [65535, 0], "stood in the vestibule": [65535, 0], "in the vestibule sucking": [65535, 0], "the vestibule sucking their": [65535, 0], "vestibule sucking their cane": [65535, 0], "sucking their cane heads": [65535, 0], "their cane heads a": [65535, 0], "cane heads a circling": [65535, 0], "heads a circling wall": [65535, 0], "a circling wall of": [65535, 0], "circling wall of oiled": [65535, 0], "wall of oiled and": [65535, 0], "of oiled and simpering": [65535, 0], "oiled and simpering admirers": [65535, 0], "and simpering admirers till": [65535, 0], "simpering admirers till the": [65535, 0], "admirers till the last": [65535, 0], "till the last girl": [65535, 0], "the last girl had": [65535, 0], "last girl had run": [65535, 0], "girl had run their": [65535, 0], "had run their gantlet": [65535, 0], "run their gantlet and": [65535, 0], "their gantlet and last": [65535, 0], "gantlet and last of": [65535, 0], "and last of all": [65535, 0], "last of all came": [65535, 0], "of all came the": [65535, 0], "all came the model": [65535, 0], "came the model boy": [65535, 0], "the model boy willie": [65535, 0], "model boy willie mufferson": [65535, 0], "boy willie mufferson taking": [65535, 0], "willie mufferson taking as": [65535, 0], "mufferson taking as heedful": [65535, 0], "taking as heedful care": [65535, 0], "as heedful care of": [65535, 0], "heedful care of his": [65535, 0], "care of his mother": [65535, 0], "of his mother as": [65535, 0], "his mother as if": [65535, 0], "mother as if she": [65535, 0], "as if she were": [65535, 0], "if she were cut": [65535, 0], "she were cut glass": [65535, 0], "were cut glass he": [65535, 0], "cut glass he always": [65535, 0], "glass he always brought": [65535, 0], "he always brought his": [65535, 0], "always brought his mother": [65535, 0], "brought his mother to": [65535, 0], "his mother to church": [65535, 0], "mother to church and": [65535, 0], "to church and was": [65535, 0], "church and was the": [65535, 0], "and was the pride": [65535, 0], "was the pride of": [65535, 0], "the pride of all": [65535, 0], "pride of all the": [65535, 0], "of all the matrons": [65535, 0], "all the matrons the": [65535, 0], "the matrons the boys": [65535, 0], "matrons the boys all": [65535, 0], "the boys all hated": [65535, 0], "boys all hated him": [65535, 0], "all hated him he": [65535, 0], "hated him he was": [65535, 0], "him he was so": [65535, 0], "he was so good": [65535, 0], "was so good and": [65535, 0], "so good and besides": [65535, 0], "good and besides he": [65535, 0], "and besides he had": [65535, 0], "besides he had been": [65535, 0], "he had been thrown": [65535, 0], "had been thrown up": [65535, 0], "been thrown up to": [65535, 0], "thrown up to them": [65535, 0], "up to them so": [65535, 0], "to them so much": [65535, 0], "them so much his": [65535, 0], "so much his white": [65535, 0], "much his white handkerchief": [65535, 0], "his white handkerchief was": [65535, 0], "white handkerchief was hanging": [65535, 0], "handkerchief was hanging out": [65535, 0], "was hanging out of": [65535, 0], "hanging out of his": [65535, 0], "out of his pocket": [65535, 0], "of his pocket behind": [65535, 0], "his pocket behind as": [65535, 0], "pocket behind as usual": [65535, 0], "behind as usual on": [65535, 0], "as usual on sundays": [65535, 0], "usual on sundays accidentally": [65535, 0], "on sundays accidentally tom": [65535, 0], "sundays accidentally tom had": [65535, 0], "accidentally tom had no": [65535, 0], "tom had no handkerchief": [65535, 0], "had no handkerchief and": [65535, 0], "no handkerchief and he": [65535, 0], "handkerchief and he looked": [65535, 0], "and he looked upon": [65535, 0], "he looked upon boys": [65535, 0], "looked upon boys who": [65535, 0], "upon boys who had": [65535, 0], "boys who had as": [65535, 0], "who had as snobs": [65535, 0], "had as snobs the": [65535, 0], "as snobs the congregation": [65535, 0], "snobs the congregation being": [65535, 0], "the congregation being fully": [65535, 0], "congregation being fully assembled": [65535, 0], "being fully assembled now": [65535, 0], "fully assembled now the": [65535, 0], "assembled now the bell": [65535, 0], "now the bell rang": [65535, 0], "the bell rang once": [65535, 0], "bell rang once more": [65535, 0], "rang once more to": [65535, 0], "once more to warn": [65535, 0], "more to warn laggards": [65535, 0], "to warn laggards and": [65535, 0], "warn laggards and stragglers": [65535, 0], "laggards and stragglers and": [65535, 0], "and stragglers and then": [65535, 0], "stragglers and then a": [65535, 0], "and then a solemn": [65535, 0], "then a solemn hush": [65535, 0], "a solemn hush fell": [65535, 0], "solemn hush fell upon": [65535, 0], "hush fell upon the": [65535, 0], "fell upon the church": [65535, 0], "upon the church which": [65535, 0], "the church which was": [65535, 0], "church which was only": [65535, 0], "which was only broken": [65535, 0], "was only broken by": [65535, 0], "only broken by the": [65535, 0], "broken by the tittering": [65535, 0], "by the tittering and": [65535, 0], "the tittering and whispering": [65535, 0], "tittering and whispering of": [65535, 0], "and whispering of the": [65535, 0], "whispering of the choir": [65535, 0], "of the choir in": [65535, 0], "the choir in the": [65535, 0], "choir in the gallery": [65535, 0], "in the gallery the": [65535, 0], "the gallery the choir": [65535, 0], "gallery the choir always": [65535, 0], "the choir always tittered": [65535, 0], "choir always tittered and": [65535, 0], "always tittered and whispered": [65535, 0], "tittered and whispered all": [65535, 0], "and whispered all through": [65535, 0], "whispered all through service": [65535, 0], "all through service there": [65535, 0], "through service there was": [65535, 0], "service there was once": [65535, 0], "there was once a": [65535, 0], "was once a church": [65535, 0], "once a church choir": [65535, 0], "a church choir that": [65535, 0], "church choir that was": [65535, 0], "choir that was not": [65535, 0], "that was not ill": [65535, 0], "was not ill bred": [65535, 0], "not ill bred but": [65535, 0], "ill bred but i": [65535, 0], "bred but i have": [65535, 0], "but i have forgotten": [65535, 0], "i have forgotten where": [65535, 0], "have forgotten where it": [65535, 0], "forgotten where it was": [65535, 0], "where it was now": [65535, 0], "it was now it": [65535, 0], "was now it was": [65535, 0], "now it was a": [65535, 0], "it was a great": [65535, 0], "was a great many": [65535, 0], "a great many years": [65535, 0], "great many years ago": [65535, 0], "many years ago and": [65535, 0], "years ago and i": [65535, 0], "ago and i can": [65535, 0], "and i can scarcely": [65535, 0], "i can scarcely remember": [65535, 0], "can scarcely remember anything": [65535, 0], "scarcely remember anything about": [65535, 0], "remember anything about it": [65535, 0], "anything about it but": [65535, 0], "about it but i": [65535, 0], "it but i think": [65535, 0], "but i think it": [65535, 0], "i think it was": [65535, 0], "think it was in": [65535, 0], "it was in some": [65535, 0], "was in some foreign": [65535, 0], "in some foreign country": [65535, 0], "some foreign country the": [65535, 0], "foreign country the minister": [65535, 0], "country the minister gave": [65535, 0], "the minister gave out": [65535, 0], "minister gave out the": [65535, 0], "gave out the hymn": [65535, 0], "out the hymn and": [65535, 0], "the hymn and read": [65535, 0], "hymn and read it": [65535, 0], "and read it through": [65535, 0], "read it through with": [65535, 0], "it through with a": [65535, 0], "through with a relish": [65535, 0], "with a relish in": [65535, 0], "a relish in a": [65535, 0], "relish in a peculiar": [65535, 0], "in a peculiar style": [65535, 0], "a peculiar style which": [65535, 0], "peculiar style which was": [65535, 0], "style which was much": [65535, 0], "which was much admired": [65535, 0], "was much admired in": [65535, 0], "much admired in that": [65535, 0], "admired in that part": [65535, 0], "in that part of": [65535, 0], "that part of the": [65535, 0], "part of the country": [65535, 0], "of the country his": [65535, 0], "the country his voice": [65535, 0], "country his voice began": [65535, 0], "his voice began on": [65535, 0], "voice began on a": [65535, 0], "began on a medium": [65535, 0], "on a medium key": [65535, 0], "a medium key and": [65535, 0], "medium key and climbed": [65535, 0], "key and climbed steadily": [65535, 0], "and climbed steadily up": [65535, 0], "climbed steadily up till": [65535, 0], "steadily up till it": [65535, 0], "up till it reached": [65535, 0], "till it reached a": [65535, 0], "it reached a certain": [65535, 0], "reached a certain point": [65535, 0], "a certain point where": [65535, 0], "certain point where it": [65535, 0], "point where it bore": [65535, 0], "where it bore with": [65535, 0], "it bore with strong": [65535, 0], "bore with strong emphasis": [65535, 0], "with strong emphasis upon": [65535, 0], "strong emphasis upon the": [65535, 0], "emphasis upon the topmost": [65535, 0], "upon the topmost word": [65535, 0], "the topmost word and": [65535, 0], "topmost word and then": [65535, 0], "word and then plunged": [65535, 0], "and then plunged down": [65535, 0], "then plunged down as": [65535, 0], "plunged down as if": [65535, 0], "down as if from": [65535, 0], "as if from a": [65535, 0], "if from a spring": [65535, 0], "from a spring board": [65535, 0], "a spring board shall": [65535, 0], "spring board shall i": [65535, 0], "board shall i be": [65535, 0], "shall i be car": [65535, 0], "i be car ri": [65535, 0], "be car ri ed": [65535, 0], "car ri ed toe": [65535, 0], "ri ed toe the": [65535, 0], "ed toe the skies": [65535, 0], "toe the skies on": [65535, 0], "the skies on flow'ry": [65535, 0], "skies on flow'ry beds": [65535, 0], "on flow'ry beds of": [65535, 0], "flow'ry beds of ease": [65535, 0], "beds of ease whilst": [65535, 0], "of ease whilst others": [65535, 0], "ease whilst others fight": [65535, 0], "whilst others fight to": [65535, 0], "others fight to win": [65535, 0], "fight to win the": [65535, 0], "to win the prize": [65535, 0], "win the prize and": [65535, 0], "the prize and sail": [65535, 0], "prize and sail thro'": [65535, 0], "and sail thro' bloody": [65535, 0], "sail thro' bloody seas": [65535, 0], "thro' bloody seas he": [65535, 0], "bloody seas he was": [65535, 0], "seas he was regarded": [65535, 0], "he was regarded as": [65535, 0], "was regarded as a": [65535, 0], "regarded as a wonderful": [65535, 0], "as a wonderful reader": [65535, 0], "a wonderful reader at": [65535, 0], "wonderful reader at church": [65535, 0], "reader at church sociables": [65535, 0], "at church sociables he": [65535, 0], "church sociables he was": [65535, 0], "sociables he was always": [65535, 0], "he was always called": [65535, 0], "was always called upon": [65535, 0], "always called upon to": [65535, 0], "called upon to read": [65535, 0], "upon to read poetry": [65535, 0], "to read poetry and": [65535, 0], "read poetry and when": [65535, 0], "poetry and when he": [65535, 0], "and when he was": [65535, 0], "when he was through": [65535, 0], "he was through the": [65535, 0], "was through the ladies": [65535, 0], "through the ladies would": [65535, 0], "the ladies would lift": [65535, 0], "ladies would lift up": [65535, 0], "would lift up their": [65535, 0], "lift up their hands": [65535, 0], "up their hands and": [65535, 0], "their hands and let": [65535, 0], "hands and let them": [65535, 0], "and let them fall": [65535, 0], "let them fall helplessly": [65535, 0], "them fall helplessly in": [65535, 0], "fall helplessly in their": [65535, 0], "helplessly in their laps": [65535, 0], "in their laps and": [65535, 0], "their laps and wall": [65535, 0], "laps and wall their": [65535, 0], "and wall their eyes": [65535, 0], "wall their eyes and": [65535, 0], "their eyes and shake": [65535, 0], "eyes and shake their": [65535, 0], "and shake their heads": [65535, 0], "shake their heads as": [65535, 0], "their heads as much": [65535, 0], "heads as much as": [65535, 0], "as much as to": [65535, 0], "much as to say": [65535, 0], "as to say words": [65535, 0], "to say words cannot": [65535, 0], "say words cannot express": [65535, 0], "words cannot express it": [65535, 0], "cannot express it it": [65535, 0], "express it it is": [65535, 0], "it it is too": [65535, 0], "it is too beautiful": [65535, 0], "is too beautiful too": [65535, 0], "too beautiful too beautiful": [65535, 0], "beautiful too beautiful for": [65535, 0], "too beautiful for this": [65535, 0], "beautiful for this mortal": [65535, 0], "for this mortal earth": [65535, 0], "this mortal earth after": [65535, 0], "mortal earth after the": [65535, 0], "earth after the hymn": [65535, 0], "after the hymn had": [65535, 0], "the hymn had been": [65535, 0], "hymn had been sung": [65535, 0], "had been sung the": [65535, 0], "been sung the rev": [65535, 0], "sung the rev mr": [65535, 0], "the rev mr sprague": [65535, 0], "rev mr sprague turned": [65535, 0], "mr sprague turned himself": [65535, 0], "sprague turned himself into": [65535, 0], "turned himself into a": [65535, 0], "himself into a bulletin": [65535, 0], "into a bulletin board": [65535, 0], "a bulletin board and": [65535, 0], "bulletin board and read": [65535, 0], "board and read off": [65535, 0], "and read off notices": [65535, 0], "read off notices of": [65535, 0], "off notices of meetings": [65535, 0], "notices of meetings and": [65535, 0], "of meetings and societies": [65535, 0], "meetings and societies and": [65535, 0], "and societies and things": [65535, 0], "societies and things till": [65535, 0], "and things till it": [65535, 0], "things till it seemed": [65535, 0], "till it seemed that": [65535, 0], "it seemed that the": [65535, 0], "seemed that the list": [65535, 0], "that the list would": [65535, 0], "the list would stretch": [65535, 0], "list would stretch out": [65535, 0], "would stretch out to": [65535, 0], "stretch out to the": [65535, 0], "out to the crack": [65535, 0], "to the crack of": [65535, 0], "the crack of doom": [65535, 0], "crack of doom a": [65535, 0], "of doom a queer": [65535, 0], "doom a queer custom": [65535, 0], "a queer custom which": [65535, 0], "queer custom which is": [65535, 0], "custom which is still": [65535, 0], "which is still kept": [65535, 0], "is still kept up": [65535, 0], "still kept up in": [65535, 0], "kept up in america": [65535, 0], "up in america even": [65535, 0], "in america even in": [65535, 0], "america even in cities": [65535, 0], "even in cities away": [65535, 0], "in cities away here": [65535, 0], "cities away here in": [65535, 0], "away here in this": [65535, 0], "here in this age": [65535, 0], "in this age of": [65535, 0], "this age of abundant": [65535, 0], "age of abundant newspapers": [65535, 0], "of abundant newspapers often": [65535, 0], "abundant newspapers often the": [65535, 0], "newspapers often the less": [65535, 0], "often the less there": [65535, 0], "the less there is": [65535, 0], "less there is to": [65535, 0], "there is to justify": [65535, 0], "is to justify a": [65535, 0], "to justify a traditional": [65535, 0], "justify a traditional custom": [65535, 0], "a traditional custom the": [65535, 0], "traditional custom the harder": [65535, 0], "custom the harder it": [65535, 0], "the harder it is": [65535, 0], "harder it is to": [65535, 0], "it is to get": [65535, 0], "is to get rid": [65535, 0], "to get rid of": [65535, 0], "get rid of it": [65535, 0], "rid of it and": [65535, 0], "of it and now": [65535, 0], "it and now the": [65535, 0], "and now the minister": [65535, 0], "now the minister prayed": [65535, 0], "the minister prayed a": [65535, 0], "minister prayed a good": [65535, 0], "prayed a good generous": [65535, 0], "a good generous prayer": [65535, 0], "good generous prayer it": [65535, 0], "generous prayer it was": [65535, 0], "prayer it was and": [65535, 0], "it was and went": [65535, 0], "was and went into": [65535, 0], "and went into details": [65535, 0], "went into details it": [65535, 0], "into details it pleaded": [65535, 0], "details it pleaded for": [65535, 0], "it pleaded for the": [65535, 0], "pleaded for the church": [65535, 0], "for the church and": [65535, 0], "the church and the": [65535, 0], "church and the little": [65535, 0], "and the little children": [65535, 0], "the little children of": [65535, 0], "little children of the": [65535, 0], "children of the church": [65535, 0], "of the church for": [65535, 0], "the church for the": [65535, 0], "church for the other": [65535, 0], "for the other churches": [65535, 0], "the other churches of": [65535, 0], "other churches of the": [65535, 0], "churches of the village": [65535, 0], "of the village for": [65535, 0], "the village for the": [65535, 0], "village for the village": [65535, 0], "for the village itself": [65535, 0], "the village itself for": [65535, 0], "village itself for the": [65535, 0], "itself for the county": [65535, 0], "for the county for": [65535, 0], "the county for the": [65535, 0], "county for the state": [65535, 0], "for the state for": [65535, 0], "the state for the": [65535, 0], "state for the state": [65535, 0], "for the state officers": [65535, 0], "the state officers for": [65535, 0], "state officers for the": [65535, 0], "officers for the united": [65535, 0], "for the united states": [65535, 0], "the united states for": [65535, 0], "united states for the": [65535, 0], "states for the churches": [65535, 0], "for the churches of": [65535, 0], "the churches of the": [65535, 0], "churches of the united": [65535, 0], "of the united states": [65535, 0], "united states for congress": [65535, 0], "states for congress for": [65535, 0], "for congress for the": [65535, 0], "congress for the president": [65535, 0], "for the president for": [65535, 0], "the president for the": [65535, 0], "president for the officers": [65535, 0], "for the officers of": [65535, 0], "the officers of the": [65535, 0], "officers of the government": [65535, 0], "of the government for": [65535, 0], "the government for poor": [65535, 0], "government for poor sailors": [65535, 0], "for poor sailors tossed": [65535, 0], "poor sailors tossed by": [65535, 0], "sailors tossed by stormy": [65535, 0], "tossed by stormy seas": [65535, 0], "by stormy seas for": [65535, 0], "stormy seas for the": [65535, 0], "seas for the oppressed": [65535, 0], "for the oppressed millions": [65535, 0], "the oppressed millions groaning": [65535, 0], "oppressed millions groaning under": [65535, 0], "millions groaning under the": [65535, 0], "groaning under the heel": [65535, 0], "under the heel of": [65535, 0], "the heel of european": [65535, 0], "heel of european monarchies": [65535, 0], "of european monarchies and": [65535, 0], "european monarchies and oriental": [65535, 0], "monarchies and oriental despotisms": [65535, 0], "and oriental despotisms for": [65535, 0], "oriental despotisms for such": [65535, 0], "despotisms for such as": [65535, 0], "for such as have": [65535, 0], "such as have the": [65535, 0], "as have the light": [65535, 0], "have the light and": [65535, 0], "the light and the": [65535, 0], "light and the good": [65535, 0], "and the good tidings": [65535, 0], "the good tidings and": [65535, 0], "good tidings and yet": [65535, 0], "tidings and yet have": [65535, 0], "and yet have not": [65535, 0], "yet have not eyes": [65535, 0], "have not eyes to": [65535, 0], "not eyes to see": [65535, 0], "eyes to see nor": [65535, 0], "to see nor ears": [65535, 0], "see nor ears to": [65535, 0], "nor ears to hear": [65535, 0], "ears to hear withal": [65535, 0], "to hear withal for": [65535, 0], "hear withal for the": [65535, 0], "withal for the heathen": [65535, 0], "for the heathen in": [65535, 0], "the heathen in the": [65535, 0], "heathen in the far": [65535, 0], "in the far islands": [65535, 0], "the far islands of": [65535, 0], "far islands of the": [65535, 0], "islands of the sea": [65535, 0], "of the sea and": [65535, 0], "the sea and closed": [65535, 0], "sea and closed with": [65535, 0], "and closed with a": [65535, 0], "closed with a supplication": [65535, 0], "with a supplication that": [65535, 0], "a supplication that the": [65535, 0], "supplication that the words": [65535, 0], "that the words he": [65535, 0], "the words he was": [65535, 0], "words he was about": [65535, 0], "he was about to": [65535, 0], "was about to speak": [65535, 0], "about to speak might": [65535, 0], "to speak might find": [65535, 0], "speak might find grace": [65535, 0], "might find grace and": [65535, 0], "find grace and favor": [65535, 0], "grace and favor and": [65535, 0], "and favor and be": [65535, 0], "favor and be as": [65535, 0], "and be as seed": [65535, 0], "be as seed sown": [65535, 0], "as seed sown in": [65535, 0], "seed sown in fertile": [65535, 0], "sown in fertile ground": [65535, 0], "in fertile ground yielding": [65535, 0], "fertile ground yielding in": [65535, 0], "ground yielding in time": [65535, 0], "yielding in time a": [65535, 0], "in time a grateful": [65535, 0], "time a grateful harvest": [65535, 0], "a grateful harvest of": [65535, 0], "grateful harvest of good": [65535, 0], "harvest of good amen": [65535, 0], "of good amen there": [65535, 0], "good amen there was": [65535, 0], "amen there was a": [65535, 0], "there was a rustling": [65535, 0], "was a rustling of": [65535, 0], "a rustling of dresses": [65535, 0], "rustling of dresses and": [65535, 0], "of dresses and the": [65535, 0], "dresses and the standing": [65535, 0], "and the standing congregation": [65535, 0], "the standing congregation sat": [65535, 0], "standing congregation sat down": [65535, 0], "congregation sat down the": [65535, 0], "sat down the boy": [65535, 0], "down the boy whose": [65535, 0], "the boy whose history": [65535, 0], "boy whose history this": [65535, 0], "whose history this book": [65535, 0], "history this book relates": [65535, 0], "this book relates did": [65535, 0], "book relates did not": [65535, 0], "relates did not enjoy": [65535, 0], "did not enjoy the": [65535, 0], "not enjoy the prayer": [65535, 0], "enjoy the prayer he": [65535, 0], "the prayer he only": [65535, 0], "prayer he only endured": [65535, 0], "he only endured it": [65535, 0], "only endured it if": [65535, 0], "endured it if he": [65535, 0], "it if he even": [65535, 0], "if he even did": [65535, 0], "he even did that": [65535, 0], "even did that much": [65535, 0], "did that much he": [65535, 0], "that much he was": [65535, 0], "much he was restive": [65535, 0], "he was restive all": [65535, 0], "was restive all through": [65535, 0], "restive all through it": [65535, 0], "all through it he": [65535, 0], "through it he kept": [65535, 0], "it he kept tally": [65535, 0], "he kept tally of": [65535, 0], "kept tally of the": [65535, 0], "tally of the details": [65535, 0], "of the details of": [65535, 0], "the details of the": [65535, 0], "details of the prayer": [65535, 0], "of the prayer unconsciously": [65535, 0], "the prayer unconsciously for": [65535, 0], "prayer unconsciously for he": [65535, 0], "unconsciously for he was": [65535, 0], "for he was not": [65535, 0], "he was not listening": [65535, 0], "was not listening but": [65535, 0], "not listening but he": [65535, 0], "listening but he knew": [65535, 0], "but he knew the": [65535, 0], "he knew the ground": [65535, 0], "knew the ground of": [65535, 0], "the ground of old": [65535, 0], "ground of old and": [65535, 0], "of old and the": [65535, 0], "old and the clergyman's": [65535, 0], "and the clergyman's regular": [65535, 0], "the clergyman's regular route": [65535, 0], "clergyman's regular route over": [65535, 0], "regular route over it": [65535, 0], "route over it and": [65535, 0], "over it and when": [65535, 0], "it and when a": [65535, 0], "and when a little": [65535, 0], "when a little trifle": [65535, 0], "a little trifle of": [65535, 0], "little trifle of new": [65535, 0], "trifle of new matter": [65535, 0], "of new matter was": [65535, 0], "new matter was interlarded": [65535, 0], "matter was interlarded his": [65535, 0], "was interlarded his ear": [65535, 0], "interlarded his ear detected": [65535, 0], "his ear detected it": [65535, 0], "ear detected it and": [65535, 0], "detected it and his": [65535, 0], "it and his whole": [65535, 0], "and his whole nature": [65535, 0], "his whole nature resented": [65535, 0], "whole nature resented it": [65535, 0], "nature resented it he": [65535, 0], "resented it he considered": [65535, 0], "it he considered additions": [65535, 0], "he considered additions unfair": [65535, 0], "considered additions unfair and": [65535, 0], "additions unfair and scoundrelly": [65535, 0], "unfair and scoundrelly in": [65535, 0], "and scoundrelly in the": [65535, 0], "scoundrelly in the midst": [65535, 0], "in the midst of": [65535, 0], "the midst of the": [65535, 0], "midst of the prayer": [65535, 0], "of the prayer a": [65535, 0], "the prayer a fly": [65535, 0], "prayer a fly had": [65535, 0], "a fly had lit": [65535, 0], "fly had lit on": [65535, 0], "had lit on the": [65535, 0], "lit on the back": [65535, 0], "on the back of": [65535, 0], "the back of the": [65535, 0], "back of the pew": [65535, 0], "of the pew in": [65535, 0], "the pew in front": [65535, 0], "pew in front of": [65535, 0], "in front of him": [65535, 0], "front of him and": [65535, 0], "of him and tortured": [65535, 0], "him and tortured his": [65535, 0], "and tortured his spirit": [65535, 0], "tortured his spirit by": [65535, 0], "his spirit by calmly": [65535, 0], "spirit by calmly rubbing": [65535, 0], "by calmly rubbing its": [65535, 0], "calmly rubbing its hands": [65535, 0], "rubbing its hands together": [65535, 0], "its hands together embracing": [65535, 0], "hands together embracing its": [65535, 0], "together embracing its head": [65535, 0], "embracing its head with": [65535, 0], "its head with its": [65535, 0], "head with its arms": [65535, 0], "with its arms and": [65535, 0], "its arms and polishing": [65535, 0], "arms and polishing it": [65535, 0], "and polishing it so": [65535, 0], "polishing it so vigorously": [65535, 0], "it so vigorously that": [65535, 0], "so vigorously that it": [65535, 0], "vigorously that it seemed": [65535, 0], "that it seemed to": [65535, 0], "it seemed to almost": [65535, 0], "seemed to almost part": [65535, 0], "to almost part company": [65535, 0], "almost part company with": [65535, 0], "part company with the": [65535, 0], "company with the body": [65535, 0], "with the body and": [65535, 0], "the body and the": [65535, 0], "body and the slender": [65535, 0], "and the slender thread": [65535, 0], "the slender thread of": [65535, 0], "slender thread of a": [65535, 0], "thread of a neck": [65535, 0], "of a neck was": [65535, 0], "a neck was exposed": [65535, 0], "neck was exposed to": [65535, 0], "was exposed to view": [65535, 0], "exposed to view scraping": [65535, 0], "to view scraping its": [65535, 0], "view scraping its wings": [65535, 0], "scraping its wings with": [65535, 0], "its wings with its": [65535, 0], "wings with its hind": [65535, 0], "with its hind legs": [65535, 0], "its hind legs and": [65535, 0], "hind legs and smoothing": [65535, 0], "legs and smoothing them": [65535, 0], "and smoothing them to": [65535, 0], "smoothing them to its": [65535, 0], "them to its body": [65535, 0], "to its body as": [65535, 0], "its body as if": [65535, 0], "body as if they": [65535, 0], "as if they had": [65535, 0], "if they had been": [65535, 0], "they had been coat": [65535, 0], "had been coat tails": [65535, 0], "been coat tails going": [65535, 0], "coat tails going through": [65535, 0], "tails going through its": [65535, 0], "going through its whole": [65535, 0], "through its whole toilet": [65535, 0], "its whole toilet as": [65535, 0], "whole toilet as tranquilly": [65535, 0], "toilet as tranquilly as": [65535, 0], "as tranquilly as if": [65535, 0], "tranquilly as if it": [65535, 0], "as if it knew": [65535, 0], "if it knew it": [65535, 0], "it knew it was": [65535, 0], "knew it was perfectly": [65535, 0], "it was perfectly safe": [65535, 0], "was perfectly safe as": [65535, 0], "perfectly safe as indeed": [65535, 0], "safe as indeed it": [65535, 0], "as indeed it was": [65535, 0], "indeed it was for": [65535, 0], "it was for as": [65535, 0], "was for as sorely": [65535, 0], "for as sorely as": [65535, 0], "as sorely as tom's": [65535, 0], "sorely as tom's hands": [65535, 0], "as tom's hands itched": [65535, 0], "tom's hands itched to": [65535, 0], "hands itched to grab": [65535, 0], "itched to grab for": [65535, 0], "to grab for it": [65535, 0], "grab for it they": [65535, 0], "for it they did": [65535, 0], "it they did not": [65535, 0], "they did not dare": [65535, 0], "did not dare he": [65535, 0], "not dare he believed": [65535, 0], "dare he believed his": [65535, 0], "he believed his soul": [65535, 0], "believed his soul would": [65535, 0], "his soul would be": [65535, 0], "soul would be instantly": [65535, 0], "would be instantly destroyed": [65535, 0], "be instantly destroyed if": [65535, 0], "instantly destroyed if he": [65535, 0], "destroyed if he did": [65535, 0], "if he did such": [65535, 0], "he did such a": [65535, 0], "did such a thing": [65535, 0], "such a thing while": [65535, 0], "a thing while the": [65535, 0], "thing while the prayer": [65535, 0], "while the prayer was": [65535, 0], "the prayer was going": [65535, 0], "prayer was going on": [65535, 0], "was going on but": [65535, 0], "going on but with": [65535, 0], "on but with the": [65535, 0], "but with the closing": [65535, 0], "with the closing sentence": [65535, 0], "the closing sentence his": [65535, 0], "closing sentence his hand": [65535, 0], "sentence his hand began": [65535, 0], "his hand began to": [65535, 0], "hand began to curve": [65535, 0], "began to curve and": [65535, 0], "to curve and steal": [65535, 0], "curve and steal forward": [65535, 0], "and steal forward and": [65535, 0], "steal forward and the": [65535, 0], "forward and the instant": [65535, 0], "and the instant the": [65535, 0], "the instant the amen": [65535, 0], "instant the amen was": [65535, 0], "the amen was out": [65535, 0], "amen was out the": [65535, 0], "was out the fly": [65535, 0], "out the fly was": [65535, 0], "the fly was a": [65535, 0], "fly was a prisoner": [65535, 0], "was a prisoner of": [65535, 0], "a prisoner of war": [65535, 0], "prisoner of war his": [65535, 0], "of war his aunt": [65535, 0], "war his aunt detected": [65535, 0], "his aunt detected the": [65535, 0], "aunt detected the act": [65535, 0], "detected the act and": [65535, 0], "the act and made": [65535, 0], "act and made him": [65535, 0], "and made him let": [65535, 0], "made him let it": [65535, 0], "him let it go": [65535, 0], "let it go the": [65535, 0], "it go the minister": [65535, 0], "go the minister gave": [65535, 0], "minister gave out his": [65535, 0], "gave out his text": [65535, 0], "out his text and": [65535, 0], "his text and droned": [65535, 0], "text and droned along": [65535, 0], "and droned along monotonously": [65535, 0], "droned along monotonously through": [65535, 0], "along monotonously through an": [65535, 0], "monotonously through an argument": [65535, 0], "through an argument that": [65535, 0], "an argument that was": [65535, 0], "argument that was so": [65535, 0], "that was so prosy": [65535, 0], "was so prosy that": [65535, 0], "so prosy that many": [65535, 0], "prosy that many a": [65535, 0], "that many a head": [65535, 0], "many a head by": [65535, 0], "a head by and": [65535, 0], "head by and by": [65535, 0], "by and by began": [65535, 0], "and by began to": [65535, 0], "by began to nod": [65535, 0], "began to nod and": [65535, 0], "to nod and yet": [65535, 0], "nod and yet it": [65535, 0], "and yet it was": [65535, 0], "yet it was an": [65535, 0], "it was an argument": [65535, 0], "was an argument that": [65535, 0], "an argument that dealt": [65535, 0], "argument that dealt in": [65535, 0], "that dealt in limitless": [65535, 0], "dealt in limitless fire": [65535, 0], "in limitless fire and": [65535, 0], "limitless fire and brimstone": [65535, 0], "fire and brimstone and": [65535, 0], "and brimstone and thinned": [65535, 0], "brimstone and thinned the": [65535, 0], "and thinned the predestined": [65535, 0], "thinned the predestined elect": [65535, 0], "the predestined elect down": [65535, 0], "predestined elect down to": [65535, 0], "elect down to a": [65535, 0], "down to a company": [65535, 0], "to a company so": [65535, 0], "a company so small": [65535, 0], "company so small as": [65535, 0], "so small as to": [65535, 0], "small as to be": [65535, 0], "as to be hardly": [65535, 0], "to be hardly worth": [65535, 0], "be hardly worth the": [65535, 0], "hardly worth the saving": [65535, 0], "worth the saving tom": [65535, 0], "the saving tom counted": [65535, 0], "saving tom counted the": [65535, 0], "tom counted the pages": [65535, 0], "counted the pages of": [65535, 0], "the pages of the": [65535, 0], "pages of the sermon": [65535, 0], "of the sermon after": [65535, 0], "the sermon after church": [65535, 0], "sermon after church he": [65535, 0], "after church he always": [65535, 0], "church he always knew": [65535, 0], "he always knew how": [65535, 0], "always knew how many": [65535, 0], "knew how many pages": [65535, 0], "how many pages there": [65535, 0], "many pages there had": [65535, 0], "pages there had been": [65535, 0], "there had been but": [65535, 0], "had been but he": [65535, 0], "been but he seldom": [65535, 0], "but he seldom knew": [65535, 0], "he seldom knew anything": [65535, 0], "seldom knew anything else": [65535, 0], "knew anything else about": [65535, 0], "anything else about the": [65535, 0], "else about the discourse": [65535, 0], "about the discourse however": [65535, 0], "the discourse however this": [65535, 0], "discourse however this time": [65535, 0], "however this time he": [65535, 0], "this time he was": [65535, 0], "time he was really": [65535, 0], "he was really interested": [65535, 0], "was really interested for": [65535, 0], "really interested for a": [65535, 0], "interested for a little": [65535, 0], "for a little while": [65535, 0], "a little while the": [65535, 0], "little while the minister": [65535, 0], "while the minister made": [65535, 0], "the minister made a": [65535, 0], "minister made a grand": [65535, 0], "made a grand and": [65535, 0], "a grand and moving": [65535, 0], "grand and moving picture": [65535, 0], "and moving picture of": [65535, 0], "moving picture of the": [65535, 0], "picture of the assembling": [65535, 0], "of the assembling together": [65535, 0], "the assembling together of": [65535, 0], "assembling together of the": [65535, 0], "together of the world's": [65535, 0], "of the world's hosts": [65535, 0], "the world's hosts at": [65535, 0], "world's hosts at the": [65535, 0], "hosts at the millennium": [65535, 0], "at the millennium when": [65535, 0], "the millennium when the": [65535, 0], "millennium when the lion": [65535, 0], "when the lion and": [65535, 0], "the lion and the": [65535, 0], "lion and the lamb": [65535, 0], "and the lamb should": [65535, 0], "the lamb should lie": [65535, 0], "lamb should lie down": [65535, 0], "should lie down together": [65535, 0], "lie down together and": [65535, 0], "down together and a": [65535, 0], "together and a little": [65535, 0], "and a little child": [65535, 0], "a little child should": [65535, 0], "little child should lead": [65535, 0], "child should lead them": [65535, 0], "should lead them but": [65535, 0], "lead them but the": [65535, 0], "them but the pathos": [65535, 0], "but the pathos the": [65535, 0], "the pathos the lesson": [65535, 0], "pathos the lesson the": [65535, 0], "the lesson the moral": [65535, 0], "lesson the moral of": [65535, 0], "the moral of the": [65535, 0], "moral of the great": [65535, 0], "of the great spectacle": [65535, 0], "the great spectacle were": [65535, 0], "great spectacle were lost": [65535, 0], "spectacle were lost upon": [65535, 0], "were lost upon the": [65535, 0], "lost upon the boy": [65535, 0], "upon the boy he": [65535, 0], "the boy he only": [65535, 0], "boy he only thought": [65535, 0], "he only thought of": [65535, 0], "only thought of the": [65535, 0], "thought of the conspicuousness": [65535, 0], "of the conspicuousness of": [65535, 0], "the conspicuousness of the": [65535, 0], "conspicuousness of the principal": [65535, 0], "of the principal character": [65535, 0], "the principal character before": [65535, 0], "principal character before the": [65535, 0], "character before the on": [65535, 0], "before the on looking": [65535, 0], "the on looking nations": [65535, 0], "on looking nations his": [65535, 0], "looking nations his face": [65535, 0], "nations his face lit": [65535, 0], "his face lit with": [65535, 0], "face lit with the": [65535, 0], "lit with the thought": [65535, 0], "with the thought and": [65535, 0], "the thought and he": [65535, 0], "thought and he said": [65535, 0], "and he said to": [65535, 0], "he said to himself": [65535, 0], "said to himself that": [65535, 0], "to himself that he": [65535, 0], "himself that he wished": [65535, 0], "that he wished he": [65535, 0], "he wished he could": [65535, 0], "wished he could be": [65535, 0], "he could be that": [65535, 0], "could be that child": [65535, 0], "be that child if": [65535, 0], "that child if it": [65535, 0], "child if it was": [65535, 0], "if it was a": [65535, 0], "it was a tame": [65535, 0], "was a tame lion": [65535, 0], "a tame lion now": [65535, 0], "tame lion now he": [65535, 0], "lion now he lapsed": [65535, 0], "now he lapsed into": [65535, 0], "he lapsed into suffering": [65535, 0], "lapsed into suffering again": [65535, 0], "into suffering again as": [65535, 0], "suffering again as the": [65535, 0], "again as the dry": [65535, 0], "as the dry argument": [65535, 0], "the dry argument was": [65535, 0], "dry argument was resumed": [65535, 0], "argument was resumed presently": [65535, 0], "was resumed presently he": [65535, 0], "resumed presently he bethought": [65535, 0], "presently he bethought him": [65535, 0], "he bethought him of": [65535, 0], "bethought him of a": [65535, 0], "him of a treasure": [65535, 0], "of a treasure he": [65535, 0], "a treasure he had": [65535, 0], "treasure he had and": [65535, 0], "he had and got": [65535, 0], "had and got it": [65535, 0], "and got it out": [65535, 0], "got it out it": [65535, 0], "it out it was": [65535, 0], "out it was a": [65535, 0], "it was a large": [65535, 0], "was a large black": [65535, 0], "a large black beetle": [65535, 0], "large black beetle with": [65535, 0], "black beetle with formidable": [65535, 0], "beetle with formidable jaws": [65535, 0], "with formidable jaws a": [65535, 0], "formidable jaws a pinchbug": [65535, 0], "jaws a pinchbug he": [65535, 0], "a pinchbug he called": [65535, 0], "pinchbug he called it": [65535, 0], "he called it it": [65535, 0], "called it it was": [65535, 0], "it it was in": [65535, 0], "it was in a": [65535, 0], "was in a percussion": [65535, 0], "in a percussion cap": [65535, 0], "a percussion cap box": [65535, 0], "percussion cap box the": [65535, 0], "cap box the first": [65535, 0], "box the first thing": [65535, 0], "the first thing the": [65535, 0], "first thing the beetle": [65535, 0], "thing the beetle did": [65535, 0], "the beetle did was": [65535, 0], "beetle did was to": [65535, 0], "did was to take": [65535, 0], "was to take him": [65535, 0], "to take him by": [65535, 0], "take him by the": [65535, 0], "him by the finger": [65535, 0], "by the finger a": [65535, 0], "the finger a natural": [65535, 0], "finger a natural fillip": [65535, 0], "a natural fillip followed": [65535, 0], "natural fillip followed the": [65535, 0], "fillip followed the beetle": [65535, 0], "followed the beetle went": [65535, 0], "the beetle went floundering": [65535, 0], "beetle went floundering into": [65535, 0], "went floundering into the": [65535, 0], "floundering into the aisle": [65535, 0], "into the aisle and": [65535, 0], "the aisle and lit": [65535, 0], "aisle and lit on": [65535, 0], "and lit on its": [65535, 0], "lit on its back": [65535, 0], "on its back and": [65535, 0], "its back and the": [65535, 0], "back and the hurt": [65535, 0], "and the hurt finger": [65535, 0], "the hurt finger went": [65535, 0], "hurt finger went into": [65535, 0], "finger went into the": [65535, 0], "went into the boy's": [65535, 0], "into the boy's mouth": [65535, 0], "the boy's mouth the": [65535, 0], "boy's mouth the beetle": [65535, 0], "mouth the beetle lay": [65535, 0], "the beetle lay there": [65535, 0], "beetle lay there working": [65535, 0], "lay there working its": [65535, 0], "there working its helpless": [65535, 0], "working its helpless legs": [65535, 0], "its helpless legs unable": [65535, 0], "helpless legs unable to": [65535, 0], "legs unable to turn": [65535, 0], "unable to turn over": [65535, 0], "to turn over tom": [65535, 0], "turn over tom eyed": [65535, 0], "over tom eyed it": [65535, 0], "tom eyed it and": [65535, 0], "eyed it and longed": [65535, 0], "it and longed for": [65535, 0], "and longed for it": [65535, 0], "longed for it but": [65535, 0], "for it but it": [65535, 0], "it but it was": [65535, 0], "but it was safe": [65535, 0], "it was safe out": [65535, 0], "was safe out of": [65535, 0], "safe out of his": [65535, 0], "out of his reach": [65535, 0], "of his reach other": [65535, 0], "his reach other people": [65535, 0], "reach other people uninterested": [65535, 0], "other people uninterested in": [65535, 0], "people uninterested in the": [65535, 0], "uninterested in the sermon": [65535, 0], "in the sermon found": [65535, 0], "the sermon found relief": [65535, 0], "sermon found relief in": [65535, 0], "found relief in the": [65535, 0], "relief in the beetle": [65535, 0], "in the beetle and": [65535, 0], "the beetle and they": [65535, 0], "beetle and they eyed": [65535, 0], "and they eyed it": [65535, 0], "they eyed it too": [65535, 0], "eyed it too presently": [65535, 0], "it too presently a": [65535, 0], "too presently a vagrant": [65535, 0], "presently a vagrant poodle": [65535, 0], "a vagrant poodle dog": [65535, 0], "vagrant poodle dog came": [65535, 0], "poodle dog came idling": [65535, 0], "dog came idling along": [65535, 0], "came idling along sad": [65535, 0], "idling along sad at": [65535, 0], "along sad at heart": [65535, 0], "sad at heart lazy": [65535, 0], "at heart lazy with": [65535, 0], "heart lazy with the": [65535, 0], "lazy with the summer": [65535, 0], "with the summer softness": [65535, 0], "the summer softness and": [65535, 0], "summer softness and the": [65535, 0], "softness and the quiet": [65535, 0], "and the quiet weary": [65535, 0], "the quiet weary of": [65535, 0], "quiet weary of captivity": [65535, 0], "weary of captivity sighing": [65535, 0], "of captivity sighing for": [65535, 0], "captivity sighing for change": [65535, 0], "sighing for change he": [65535, 0], "for change he spied": [65535, 0], "change he spied the": [65535, 0], "he spied the beetle": [65535, 0], "spied the beetle the": [65535, 0], "the beetle the drooping": [65535, 0], "beetle the drooping tail": [65535, 0], "the drooping tail lifted": [65535, 0], "drooping tail lifted and": [65535, 0], "tail lifted and wagged": [65535, 0], "lifted and wagged he": [65535, 0], "and wagged he surveyed": [65535, 0], "wagged he surveyed the": [65535, 0], "he surveyed the prize": [65535, 0], "surveyed the prize walked": [65535, 0], "the prize walked around": [65535, 0], "prize walked around it": [65535, 0], "walked around it smelt": [65535, 0], "around it smelt at": [65535, 0], "it smelt at it": [65535, 0], "smelt at it from": [65535, 0], "at it from a": [65535, 0], "it from a safe": [65535, 0], "from a safe distance": [65535, 0], "a safe distance walked": [65535, 0], "safe distance walked around": [65535, 0], "distance walked around it": [65535, 0], "walked around it again": [65535, 0], "around it again grew": [65535, 0], "it again grew bolder": [65535, 0], "again grew bolder and": [65535, 0], "grew bolder and took": [65535, 0], "bolder and took a": [65535, 0], "and took a closer": [65535, 0], "took a closer smell": [65535, 0], "a closer smell then": [65535, 0], "closer smell then lifted": [65535, 0], "smell then lifted his": [65535, 0], "then lifted his lip": [65535, 0], "lifted his lip and": [65535, 0], "his lip and made": [65535, 0], "lip and made a": [65535, 0], "and made a gingerly": [65535, 0], "made a gingerly snatch": [65535, 0], "a gingerly snatch at": [65535, 0], "gingerly snatch at it": [65535, 0], "snatch at it just": [65535, 0], "at it just missing": [65535, 0], "it just missing it": [65535, 0], "just missing it made": [65535, 0], "missing it made another": [65535, 0], "it made another and": [65535, 0], "made another and another": [65535, 0], "another and another began": [65535, 0], "and another began to": [65535, 0], "another began to enjoy": [65535, 0], "began to enjoy the": [65535, 0], "to enjoy the diversion": [65535, 0], "enjoy the diversion subsided": [65535, 0], "the diversion subsided to": [65535, 0], "diversion subsided to his": [65535, 0], "subsided to his stomach": [65535, 0], "to his stomach with": [65535, 0], "his stomach with the": [65535, 0], "stomach with the beetle": [65535, 0], "with the beetle between": [65535, 0], "the beetle between his": [65535, 0], "beetle between his paws": [65535, 0], "between his paws and": [65535, 0], "his paws and continued": [65535, 0], "paws and continued his": [65535, 0], "and continued his experiments": [65535, 0], "continued his experiments grew": [65535, 0], "his experiments grew weary": [65535, 0], "experiments grew weary at": [65535, 0], "grew weary at last": [65535, 0], "weary at last and": [65535, 0], "at last and then": [65535, 0], "last and then indifferent": [65535, 0], "and then indifferent and": [65535, 0], "then indifferent and absent": [65535, 0], "indifferent and absent minded": [65535, 0], "and absent minded his": [65535, 0], "absent minded his head": [65535, 0], "minded his head nodded": [65535, 0], "his head nodded and": [65535, 0], "head nodded and little": [65535, 0], "nodded and little by": [65535, 0], "and little by little": [65535, 0], "little by little his": [65535, 0], "by little his chin": [65535, 0], "little his chin descended": [65535, 0], "his chin descended and": [65535, 0], "chin descended and touched": [65535, 0], "descended and touched the": [65535, 0], "and touched the enemy": [65535, 0], "touched the enemy who": [65535, 0], "the enemy who seized": [65535, 0], "enemy who seized it": [65535, 0], "who seized it there": [65535, 0], "seized it there was": [65535, 0], "it there was a": [65535, 0], "there was a sharp": [65535, 0], "was a sharp yelp": [65535, 0], "a sharp yelp a": [65535, 0], "sharp yelp a flirt": [65535, 0], "yelp a flirt of": [65535, 0], "a flirt of the": [65535, 0], "flirt of the poodle's": [65535, 0], "of the poodle's head": [65535, 0], "the poodle's head and": [65535, 0], "poodle's head and the": [65535, 0], "head and the beetle": [65535, 0], "and the beetle fell": [65535, 0], "the beetle fell a": [65535, 0], "beetle fell a couple": [65535, 0], "fell a couple of": [65535, 0], "a couple of yards": [65535, 0], "couple of yards away": [65535, 0], "of yards away and": [65535, 0], "yards away and lit": [65535, 0], "away and lit on": [65535, 0], "on its back once": [65535, 0], "its back once more": [65535, 0], "back once more the": [65535, 0], "once more the neighboring": [65535, 0], "more the neighboring spectators": [65535, 0], "the neighboring spectators shook": [65535, 0], "neighboring spectators shook with": [65535, 0], "spectators shook with a": [65535, 0], "shook with a gentle": [65535, 0], "with a gentle inward": [65535, 0], "a gentle inward joy": [65535, 0], "gentle inward joy several": [65535, 0], "inward joy several faces": [65535, 0], "joy several faces went": [65535, 0], "several faces went behind": [65535, 0], "faces went behind fans": [65535, 0], "went behind fans and": [65535, 0], "behind fans and handkerchiefs": [65535, 0], "fans and handkerchiefs and": [65535, 0], "and handkerchiefs and tom": [65535, 0], "handkerchiefs and tom was": [65535, 0], "and tom was entirely": [65535, 0], "tom was entirely happy": [65535, 0], "was entirely happy the": [65535, 0], "entirely happy the dog": [65535, 0], "happy the dog looked": [65535, 0], "the dog looked foolish": [65535, 0], "dog looked foolish and": [65535, 0], "looked foolish and probably": [65535, 0], "foolish and probably felt": [65535, 0], "and probably felt so": [65535, 0], "probably felt so but": [65535, 0], "felt so but there": [65535, 0], "so but there was": [65535, 0], "but there was resentment": [65535, 0], "there was resentment in": [65535, 0], "was resentment in his": [65535, 0], "resentment in his heart": [65535, 0], "in his heart too": [65535, 0], "his heart too and": [65535, 0], "heart too and a": [65535, 0], "too and a craving": [65535, 0], "and a craving for": [65535, 0], "a craving for revenge": [65535, 0], "craving for revenge so": [65535, 0], "for revenge so he": [65535, 0], "revenge so he went": [65535, 0], "so he went to": [65535, 0], "he went to the": [65535, 0], "went to the beetle": [65535, 0], "to the beetle and": [65535, 0], "the beetle and began": [65535, 0], "beetle and began a": [65535, 0], "and began a wary": [65535, 0], "began a wary attack": [65535, 0], "a wary attack on": [65535, 0], "wary attack on it": [65535, 0], "attack on it again": [65535, 0], "on it again jumping": [65535, 0], "it again jumping at": [65535, 0], "again jumping at it": [65535, 0], "jumping at it from": [65535, 0], "at it from every": [65535, 0], "it from every point": [65535, 0], "from every point of": [65535, 0], "every point of a": [65535, 0], "point of a circle": [65535, 0], "of a circle lighting": [65535, 0], "a circle lighting with": [65535, 0], "circle lighting with his": [65535, 0], "lighting with his fore": [65535, 0], "with his fore paws": [65535, 0], "his fore paws within": [65535, 0], "fore paws within an": [65535, 0], "paws within an inch": [65535, 0], "within an inch of": [65535, 0], "an inch of the": [65535, 0], "inch of the creature": [65535, 0], "of the creature making": [65535, 0], "the creature making even": [65535, 0], "creature making even closer": [65535, 0], "making even closer snatches": [65535, 0], "even closer snatches at": [65535, 0], "closer snatches at it": [65535, 0], "snatches at it with": [65535, 0], "at it with his": [65535, 0], "it with his teeth": [65535, 0], "with his teeth and": [65535, 0], "his teeth and jerking": [65535, 0], "teeth and jerking his": [65535, 0], "and jerking his head": [65535, 0], "jerking his head till": [65535, 0], "his head till his": [65535, 0], "head till his ears": [65535, 0], "till his ears flapped": [65535, 0], "his ears flapped again": [65535, 0], "ears flapped again but": [65535, 0], "flapped again but he": [65535, 0], "again but he grew": [65535, 0], "but he grew tired": [65535, 0], "he grew tired once": [65535, 0], "grew tired once more": [65535, 0], "tired once more after": [65535, 0], "once more after a": [65535, 0], "more after a while": [65535, 0], "after a while tried": [65535, 0], "a while tried to": [65535, 0], "while tried to amuse": [65535, 0], "tried to amuse himself": [65535, 0], "to amuse himself with": [65535, 0], "amuse himself with a": [65535, 0], "himself with a fly": [65535, 0], "with a fly but": [65535, 0], "a fly but found": [65535, 0], "fly but found no": [65535, 0], "but found no relief": [65535, 0], "found no relief followed": [65535, 0], "no relief followed an": [65535, 0], "relief followed an ant": [65535, 0], "followed an ant around": [65535, 0], "an ant around with": [65535, 0], "ant around with his": [65535, 0], "around with his nose": [65535, 0], "with his nose close": [65535, 0], "his nose close to": [65535, 0], "nose close to the": [65535, 0], "close to the floor": [65535, 0], "to the floor and": [65535, 0], "the floor and quickly": [65535, 0], "floor and quickly wearied": [65535, 0], "and quickly wearied of": [65535, 0], "quickly wearied of that": [65535, 0], "wearied of that yawned": [65535, 0], "of that yawned sighed": [65535, 0], "that yawned sighed forgot": [65535, 0], "yawned sighed forgot the": [65535, 0], "sighed forgot the beetle": [65535, 0], "forgot the beetle entirely": [65535, 0], "the beetle entirely and": [65535, 0], "beetle entirely and sat": [65535, 0], "entirely and sat down": [65535, 0], "and sat down on": [65535, 0], "sat down on it": [65535, 0], "down on it then": [65535, 0], "on it then there": [65535, 0], "it then there was": [65535, 0], "then there was a": [65535, 0], "there was a wild": [65535, 0], "was a wild yelp": [65535, 0], "a wild yelp of": [65535, 0], "wild yelp of agony": [65535, 0], "yelp of agony and": [65535, 0], "of agony and the": [65535, 0], "agony and the poodle": [65535, 0], "and the poodle went": [65535, 0], "the poodle went sailing": [65535, 0], "poodle went sailing up": [65535, 0], "went sailing up the": [65535, 0], "sailing up the aisle": [65535, 0], "up the aisle the": [65535, 0], "the aisle the yelps": [65535, 0], "aisle the yelps continued": [65535, 0], "the yelps continued and": [65535, 0], "yelps continued and so": [65535, 0], "continued and so did": [65535, 0], "and so did the": [65535, 0], "so did the dog": [65535, 0], "did the dog he": [65535, 0], "the dog he crossed": [65535, 0], "dog he crossed the": [65535, 0], "he crossed the house": [65535, 0], "crossed the house in": [65535, 0], "the house in front": [65535, 0], "house in front of": [65535, 0], "in front of the": [65535, 0], "front of the altar": [65535, 0], "of the altar he": [65535, 0], "the altar he flew": [65535, 0], "altar he flew down": [65535, 0], "he flew down the": [65535, 0], "flew down the other": [65535, 0], "down the other aisle": [65535, 0], "the other aisle he": [65535, 0], "other aisle he crossed": [65535, 0], "aisle he crossed before": [65535, 0], "he crossed before the": [65535, 0], "crossed before the doors": [65535, 0], "before the doors he": [65535, 0], "the doors he clamored": [65535, 0], "doors he clamored up": [65535, 0], "he clamored up the": [65535, 0], "clamored up the home": [65535, 0], "up the home stretch": [65535, 0], "the home stretch his": [65535, 0], "home stretch his anguish": [65535, 0], "stretch his anguish grew": [65535, 0], "his anguish grew with": [65535, 0], "anguish grew with his": [65535, 0], "grew with his progress": [65535, 0], "with his progress till": [65535, 0], "his progress till presently": [65535, 0], "progress till presently he": [65535, 0], "till presently he was": [65535, 0], "presently he was but": [65535, 0], "he was but a": [65535, 0], "was but a woolly": [65535, 0], "but a woolly comet": [65535, 0], "a woolly comet moving": [65535, 0], "woolly comet moving in": [65535, 0], "comet moving in its": [65535, 0], "moving in its orbit": [65535, 0], "in its orbit with": [65535, 0], "its orbit with the": [65535, 0], "orbit with the gleam": [65535, 0], "with the gleam and": [65535, 0], "the gleam and the": [65535, 0], "gleam and the speed": [65535, 0], "and the speed of": [65535, 0], "the speed of light": [65535, 0], "speed of light at": [65535, 0], "of light at last": [65535, 0], "light at last the": [65535, 0], "at last the frantic": [65535, 0], "last the frantic sufferer": [65535, 0], "the frantic sufferer sheered": [65535, 0], "frantic sufferer sheered from": [65535, 0], "sufferer sheered from its": [65535, 0], "sheered from its course": [65535, 0], "from its course and": [65535, 0], "its course and sprang": [65535, 0], "course and sprang into": [65535, 0], "and sprang into its": [65535, 0], "sprang into its master's": [65535, 0], "into its master's lap": [65535, 0], "its master's lap he": [65535, 0], "master's lap he flung": [65535, 0], "lap he flung it": [65535, 0], "he flung it out": [65535, 0], "flung it out of": [65535, 0], "it out of the": [65535, 0], "out of the window": [65535, 0], "of the window and": [65535, 0], "the window and the": [65535, 0], "window and the voice": [65535, 0], "and the voice of": [65535, 0], "the voice of distress": [65535, 0], "voice of distress quickly": [65535, 0], "of distress quickly thinned": [65535, 0], "distress quickly thinned away": [65535, 0], "quickly thinned away and": [65535, 0], "thinned away and died": [65535, 0], "away and died in": [65535, 0], "and died in the": [65535, 0], "died in the distance": [65535, 0], "in the distance by": [65535, 0], "the distance by this": [65535, 0], "distance by this time": [65535, 0], "by this time the": [65535, 0], "this time the whole": [65535, 0], "time the whole church": [65535, 0], "the whole church was": [65535, 0], "whole church was red": [65535, 0], "church was red faced": [65535, 0], "was red faced and": [65535, 0], "red faced and suffocating": [65535, 0], "faced and suffocating with": [65535, 0], "and suffocating with suppressed": [65535, 0], "suffocating with suppressed laughter": [65535, 0], "with suppressed laughter and": [65535, 0], "suppressed laughter and the": [65535, 0], "laughter and the sermon": [65535, 0], "and the sermon had": [65535, 0], "the sermon had come": [65535, 0], "sermon had come to": [65535, 0], "had come to a": [65535, 0], "come to a dead": [65535, 0], "to a dead standstill": [65535, 0], "a dead standstill the": [65535, 0], "dead standstill the discourse": [65535, 0], "standstill the discourse was": [65535, 0], "the discourse was resumed": [65535, 0], "discourse was resumed presently": [65535, 0], "was resumed presently but": [65535, 0], "resumed presently but it": [65535, 0], "presently but it went": [65535, 0], "but it went lame": [65535, 0], "it went lame and": [65535, 0], "went lame and halting": [65535, 0], "lame and halting all": [65535, 0], "and halting all possibility": [65535, 0], "halting all possibility of": [65535, 0], "all possibility of impressiveness": [65535, 0], "possibility of impressiveness being": [65535, 0], "of impressiveness being at": [65535, 0], "impressiveness being at an": [65535, 0], "being at an end": [65535, 0], "at an end for": [65535, 0], "an end for even": [65535, 0], "end for even the": [65535, 0], "for even the gravest": [65535, 0], "even the gravest sentiments": [65535, 0], "the gravest sentiments were": [65535, 0], "gravest sentiments were constantly": [65535, 0], "sentiments were constantly being": [65535, 0], "were constantly being received": [65535, 0], "constantly being received with": [65535, 0], "being received with a": [65535, 0], "received with a smothered": [65535, 0], "with a smothered burst": [65535, 0], "a smothered burst of": [65535, 0], "smothered burst of unholy": [65535, 0], "burst of unholy mirth": [65535, 0], "of unholy mirth under": [65535, 0], "unholy mirth under cover": [65535, 0], "mirth under cover of": [65535, 0], "under cover of some": [65535, 0], "cover of some remote": [65535, 0], "of some remote pew": [65535, 0], "some remote pew back": [65535, 0], "remote pew back as": [65535, 0], "pew back as if": [65535, 0], "back as if the": [65535, 0], "as if the poor": [65535, 0], "if the poor parson": [65535, 0], "the poor parson had": [65535, 0], "poor parson had said": [65535, 0], "parson had said a": [65535, 0], "had said a rarely": [65535, 0], "said a rarely facetious": [65535, 0], "a rarely facetious thing": [65535, 0], "rarely facetious thing it": [65535, 0], "facetious thing it was": [65535, 0], "thing it was a": [65535, 0], "it was a genuine": [65535, 0], "was a genuine relief": [65535, 0], "a genuine relief to": [65535, 0], "genuine relief to the": [65535, 0], "relief to the whole": [65535, 0], "to the whole congregation": [65535, 0], "the whole congregation when": [65535, 0], "whole congregation when the": [65535, 0], "congregation when the ordeal": [65535, 0], "when the ordeal was": [65535, 0], "the ordeal was over": [65535, 0], "ordeal was over and": [65535, 0], "was over and the": [65535, 0], "over and the benediction": [65535, 0], "and the benediction pronounced": [65535, 0], "the benediction pronounced tom": [65535, 0], "benediction pronounced tom sawyer": [65535, 0], "pronounced tom sawyer went": [65535, 0], "tom sawyer went home": [65535, 0], "sawyer went home quite": [65535, 0], "went home quite cheerful": [65535, 0], "home quite cheerful thinking": [65535, 0], "quite cheerful thinking to": [65535, 0], "cheerful thinking to himself": [65535, 0], "thinking to himself that": [65535, 0], "to himself that there": [65535, 0], "himself that there was": [65535, 0], "that there was some": [65535, 0], "there was some satisfaction": [65535, 0], "was some satisfaction about": [65535, 0], "some satisfaction about divine": [65535, 0], "satisfaction about divine service": [65535, 0], "about divine service when": [65535, 0], "divine service when there": [65535, 0], "service when there was": [65535, 0], "when there was a": [65535, 0], "there was a bit": [65535, 0], "was a bit of": [65535, 0], "a bit of variety": [65535, 0], "bit of variety in": [65535, 0], "of variety in it": [65535, 0], "variety in it he": [65535, 0], "in it he had": [65535, 0], "it he had but": [65535, 0], "he had but one": [65535, 0], "had but one marring": [65535, 0], "but one marring thought": [65535, 0], "one marring thought he": [65535, 0], "marring thought he was": [65535, 0], "thought he was willing": [65535, 0], "he was willing that": [65535, 0], "was willing that the": [65535, 0], "willing that the dog": [65535, 0], "that the dog should": [65535, 0], "the dog should play": [65535, 0], "dog should play with": [65535, 0], "should play with his": [65535, 0], "play with his pinchbug": [65535, 0], "with his pinchbug but": [65535, 0], "his pinchbug but he": [65535, 0], "pinchbug but he did": [65535, 0], "but he did not": [65535, 0], "he did not think": [65535, 0], "did not think it": [65535, 0], "not think it was": [65535, 0], "think it was upright": [65535, 0], "it was upright in": [65535, 0], "was upright in him": [65535, 0], "upright in him to": [65535, 0], "in him to carry": [65535, 0], "him to carry it": [65535, 0], "to carry it off": [65535, 0], "about half past ten the": [65535, 0], "half past ten the cracked": [65535, 0], "past ten the cracked bell": [65535, 0], "ten the cracked bell of": [65535, 0], "the cracked bell of the": [65535, 0], "cracked bell of the small": [65535, 0], "bell of the small church": [65535, 0], "of the small church began": [65535, 0], "the small church began to": [65535, 0], "small church began to ring": [65535, 0], "church began to ring and": [65535, 0], "began to ring and presently": [65535, 0], "to ring and presently the": [65535, 0], "ring and presently the people": [65535, 0], "and presently the people began": [65535, 0], "presently the people began to": [65535, 0], "the people began to gather": [65535, 0], "people began to gather for": [65535, 0], "began to gather for the": [65535, 0], "to gather for the morning": [65535, 0], "gather for the morning sermon": [65535, 0], "for the morning sermon the": [65535, 0], "the morning sermon the sunday": [65535, 0], "morning sermon the sunday school": [65535, 0], "sermon the sunday school children": [65535, 0], "the sunday school children distributed": [65535, 0], "sunday school children distributed themselves": [65535, 0], "school children distributed themselves about": [65535, 0], "children distributed themselves about the": [65535, 0], "distributed themselves about the house": [65535, 0], "themselves about the house and": [65535, 0], "about the house and occupied": [65535, 0], "the house and occupied pews": [65535, 0], "house and occupied pews with": [65535, 0], "and occupied pews with their": [65535, 0], "occupied pews with their parents": [65535, 0], "pews with their parents so": [65535, 0], "with their parents so as": [65535, 0], "their parents so as to": [65535, 0], "parents so as to be": [65535, 0], "so as to be under": [65535, 0], "as to be under supervision": [65535, 0], "to be under supervision aunt": [65535, 0], "be under supervision aunt polly": [65535, 0], "under supervision aunt polly came": [65535, 0], "supervision aunt polly came and": [65535, 0], "aunt polly came and tom": [65535, 0], "polly came and tom and": [65535, 0], "came and tom and sid": [65535, 0], "and tom and sid and": [65535, 0], "tom and sid and mary": [65535, 0], "and sid and mary sat": [65535, 0], "sid and mary sat with": [65535, 0], "and mary sat with her": [65535, 0], "mary sat with her tom": [65535, 0], "sat with her tom being": [65535, 0], "with her tom being placed": [65535, 0], "her tom being placed next": [65535, 0], "tom being placed next the": [65535, 0], "being placed next the aisle": [65535, 0], "placed next the aisle in": [65535, 0], "next the aisle in order": [65535, 0], "the aisle in order that": [65535, 0], "aisle in order that he": [65535, 0], "in order that he might": [65535, 0], "order that he might be": [65535, 0], "that he might be as": [65535, 0], "he might be as far": [65535, 0], "might be as far away": [65535, 0], "be as far away from": [65535, 0], "as far away from the": [65535, 0], "far away from the open": [65535, 0], "away from the open window": [65535, 0], "from the open window and": [65535, 0], "the open window and the": [65535, 0], "open window and the seductive": [65535, 0], "window and the seductive outside": [65535, 0], "and the seductive outside summer": [65535, 0], "the seductive outside summer scenes": [65535, 0], "seductive outside summer scenes as": [65535, 0], "outside summer scenes as possible": [65535, 0], "summer scenes as possible the": [65535, 0], "scenes as possible the crowd": [65535, 0], "as possible the crowd filed": [65535, 0], "possible the crowd filed up": [65535, 0], "the crowd filed up the": [65535, 0], "crowd filed up the aisles": [65535, 0], "filed up the aisles the": [65535, 0], "up the aisles the aged": [65535, 0], "the aisles the aged and": [65535, 0], "aisles the aged and needy": [65535, 0], "the aged and needy postmaster": [65535, 0], "aged and needy postmaster who": [65535, 0], "and needy postmaster who had": [65535, 0], "needy postmaster who had seen": [65535, 0], "postmaster who had seen better": [65535, 0], "who had seen better days": [65535, 0], "had seen better days the": [65535, 0], "seen better days the mayor": [65535, 0], "better days the mayor and": [65535, 0], "days the mayor and his": [65535, 0], "the mayor and his wife": [65535, 0], "mayor and his wife for": [65535, 0], "and his wife for they": [65535, 0], "his wife for they had": [65535, 0], "wife for they had a": [65535, 0], "for they had a mayor": [65535, 0], "they had a mayor there": [65535, 0], "had a mayor there among": [65535, 0], "a mayor there among other": [65535, 0], "mayor there among other unnecessaries": [65535, 0], "there among other unnecessaries the": [65535, 0], "among other unnecessaries the justice": [65535, 0], "other unnecessaries the justice of": [65535, 0], "unnecessaries the justice of the": [65535, 0], "the justice of the peace": [65535, 0], "justice of the peace the": [65535, 0], "of the peace the widow": [65535, 0], "the peace the widow douglass": [65535, 0], "peace the widow douglass fair": [65535, 0], "the widow douglass fair smart": [65535, 0], "widow douglass fair smart and": [65535, 0], "douglass fair smart and forty": [65535, 0], "fair smart and forty a": [65535, 0], "smart and forty a generous": [65535, 0], "and forty a generous good": [65535, 0], "forty a generous good hearted": [65535, 0], "a generous good hearted soul": [65535, 0], "generous good hearted soul and": [65535, 0], "good hearted soul and well": [65535, 0], "hearted soul and well to": [65535, 0], "soul and well to do": [65535, 0], "and well to do her": [65535, 0], "well to do her hill": [65535, 0], "to do her hill mansion": [65535, 0], "do her hill mansion the": [65535, 0], "her hill mansion the only": [65535, 0], "hill mansion the only palace": [65535, 0], "mansion the only palace in": [65535, 0], "the only palace in the": [65535, 0], "only palace in the town": [65535, 0], "palace in the town and": [65535, 0], "in the town and the": [65535, 0], "the town and the most": [65535, 0], "town and the most hospitable": [65535, 0], "and the most hospitable and": [65535, 0], "the most hospitable and much": [65535, 0], "most hospitable and much the": [65535, 0], "hospitable and much the most": [65535, 0], "and much the most lavish": [65535, 0], "much the most lavish in": [65535, 0], "the most lavish in the": [65535, 0], "most lavish in the matter": [65535, 0], "lavish in the matter of": [65535, 0], "in the matter of festivities": [65535, 0], "the matter of festivities that": [65535, 0], "matter of festivities that st": [65535, 0], "of festivities that st petersburg": [65535, 0], "festivities that st petersburg could": [65535, 0], "that st petersburg could boast": [65535, 0], "st petersburg could boast the": [65535, 0], "petersburg could boast the bent": [65535, 0], "could boast the bent and": [65535, 0], "boast the bent and venerable": [65535, 0], "the bent and venerable major": [65535, 0], "bent and venerable major and": [65535, 0], "and venerable major and mrs": [65535, 0], "venerable major and mrs ward": [65535, 0], "major and mrs ward lawyer": [65535, 0], "and mrs ward lawyer riverson": [65535, 0], "mrs ward lawyer riverson the": [65535, 0], "ward lawyer riverson the new": [65535, 0], "lawyer riverson the new notable": [65535, 0], "riverson the new notable from": [65535, 0], "the new notable from a": [65535, 0], "new notable from a distance": [65535, 0], "notable from a distance next": [65535, 0], "from a distance next the": [65535, 0], "a distance next the belle": [65535, 0], "distance next the belle of": [65535, 0], "next the belle of the": [65535, 0], "the belle of the village": [65535, 0], "belle of the village followed": [65535, 0], "of the village followed by": [65535, 0], "the village followed by a": [65535, 0], "village followed by a troop": [65535, 0], "followed by a troop of": [65535, 0], "by a troop of lawn": [65535, 0], "a troop of lawn clad": [65535, 0], "troop of lawn clad and": [65535, 0], "of lawn clad and ribbon": [65535, 0], "lawn clad and ribbon decked": [65535, 0], "clad and ribbon decked young": [65535, 0], "and ribbon decked young heart": [65535, 0], "ribbon decked young heart breakers": [65535, 0], "decked young heart breakers then": [65535, 0], "young heart breakers then all": [65535, 0], "heart breakers then all the": [65535, 0], "breakers then all the young": [65535, 0], "then all the young clerks": [65535, 0], "all the young clerks in": [65535, 0], "the young clerks in town": [65535, 0], "young clerks in town in": [65535, 0], "clerks in town in a": [65535, 0], "in town in a body": [65535, 0], "town in a body for": [65535, 0], "in a body for they": [65535, 0], "a body for they had": [65535, 0], "body for they had stood": [65535, 0], "for they had stood in": [65535, 0], "they had stood in the": [65535, 0], "had stood in the vestibule": [65535, 0], "stood in the vestibule sucking": [65535, 0], "in the vestibule sucking their": [65535, 0], "the vestibule sucking their cane": [65535, 0], "vestibule sucking their cane heads": [65535, 0], "sucking their cane heads a": [65535, 0], "their cane heads a circling": [65535, 0], "cane heads a circling wall": [65535, 0], "heads a circling wall of": [65535, 0], "a circling wall of oiled": [65535, 0], "circling wall of oiled and": [65535, 0], "wall of oiled and simpering": [65535, 0], "of oiled and simpering admirers": [65535, 0], "oiled and simpering admirers till": [65535, 0], "and simpering admirers till the": [65535, 0], "simpering admirers till the last": [65535, 0], "admirers till the last girl": [65535, 0], "till the last girl had": [65535, 0], "the last girl had run": [65535, 0], "last girl had run their": [65535, 0], "girl had run their gantlet": [65535, 0], "had run their gantlet and": [65535, 0], "run their gantlet and last": [65535, 0], "their gantlet and last of": [65535, 0], "gantlet and last of all": [65535, 0], "and last of all came": [65535, 0], "last of all came the": [65535, 0], "of all came the model": [65535, 0], "all came the model boy": [65535, 0], "came the model boy willie": [65535, 0], "the model boy willie mufferson": [65535, 0], "model boy willie mufferson taking": [65535, 0], "boy willie mufferson taking as": [65535, 0], "willie mufferson taking as heedful": [65535, 0], "mufferson taking as heedful care": [65535, 0], "taking as heedful care of": [65535, 0], "as heedful care of his": [65535, 0], "heedful care of his mother": [65535, 0], "care of his mother as": [65535, 0], "of his mother as if": [65535, 0], "his mother as if she": [65535, 0], "mother as if she were": [65535, 0], "as if she were cut": [65535, 0], "if she were cut glass": [65535, 0], "she were cut glass he": [65535, 0], "were cut glass he always": [65535, 0], "cut glass he always brought": [65535, 0], "glass he always brought his": [65535, 0], "he always brought his mother": [65535, 0], "always brought his mother to": [65535, 0], "brought his mother to church": [65535, 0], "his mother to church and": [65535, 0], "mother to church and was": [65535, 0], "to church and was the": [65535, 0], "church and was the pride": [65535, 0], "and was the pride of": [65535, 0], "was the pride of all": [65535, 0], "the pride of all the": [65535, 0], "pride of all the matrons": [65535, 0], "of all the matrons the": [65535, 0], "all the matrons the boys": [65535, 0], "the matrons the boys all": [65535, 0], "matrons the boys all hated": [65535, 0], "the boys all hated him": [65535, 0], "boys all hated him he": [65535, 0], "all hated him he was": [65535, 0], "hated him he was so": [65535, 0], "him he was so good": [65535, 0], "he was so good and": [65535, 0], "was so good and besides": [65535, 0], "so good and besides he": [65535, 0], "good and besides he had": [65535, 0], "and besides he had been": [65535, 0], "besides he had been thrown": [65535, 0], "he had been thrown up": [65535, 0], "had been thrown up to": [65535, 0], "been thrown up to them": [65535, 0], "thrown up to them so": [65535, 0], "up to them so much": [65535, 0], "to them so much his": [65535, 0], "them so much his white": [65535, 0], "so much his white handkerchief": [65535, 0], "much his white handkerchief was": [65535, 0], "his white handkerchief was hanging": [65535, 0], "white handkerchief was hanging out": [65535, 0], "handkerchief was hanging out of": [65535, 0], "was hanging out of his": [65535, 0], "hanging out of his pocket": [65535, 0], "out of his pocket behind": [65535, 0], "of his pocket behind as": [65535, 0], "his pocket behind as usual": [65535, 0], "pocket behind as usual on": [65535, 0], "behind as usual on sundays": [65535, 0], "as usual on sundays accidentally": [65535, 0], "usual on sundays accidentally tom": [65535, 0], "on sundays accidentally tom had": [65535, 0], "sundays accidentally tom had no": [65535, 0], "accidentally tom had no handkerchief": [65535, 0], "tom had no handkerchief and": [65535, 0], "had no handkerchief and he": [65535, 0], "no handkerchief and he looked": [65535, 0], "handkerchief and he looked upon": [65535, 0], "and he looked upon boys": [65535, 0], "he looked upon boys who": [65535, 0], "looked upon boys who had": [65535, 0], "upon boys who had as": [65535, 0], "boys who had as snobs": [65535, 0], "who had as snobs the": [65535, 0], "had as snobs the congregation": [65535, 0], "as snobs the congregation being": [65535, 0], "snobs the congregation being fully": [65535, 0], "the congregation being fully assembled": [65535, 0], "congregation being fully assembled now": [65535, 0], "being fully assembled now the": [65535, 0], "fully assembled now the bell": [65535, 0], "assembled now the bell rang": [65535, 0], "now the bell rang once": [65535, 0], "the bell rang once more": [65535, 0], "bell rang once more to": [65535, 0], "rang once more to warn": [65535, 0], "once more to warn laggards": [65535, 0], "more to warn laggards and": [65535, 0], "to warn laggards and stragglers": [65535, 0], "warn laggards and stragglers and": [65535, 0], "laggards and stragglers and then": [65535, 0], "and stragglers and then a": [65535, 0], "stragglers and then a solemn": [65535, 0], "and then a solemn hush": [65535, 0], "then a solemn hush fell": [65535, 0], "a solemn hush fell upon": [65535, 0], "solemn hush fell upon the": [65535, 0], "hush fell upon the church": [65535, 0], "fell upon the church which": [65535, 0], "upon the church which was": [65535, 0], "the church which was only": [65535, 0], "church which was only broken": [65535, 0], "which was only broken by": [65535, 0], "was only broken by the": [65535, 0], "only broken by the tittering": [65535, 0], "broken by the tittering and": [65535, 0], "by the tittering and whispering": [65535, 0], "the tittering and whispering of": [65535, 0], "tittering and whispering of the": [65535, 0], "and whispering of the choir": [65535, 0], "whispering of the choir in": [65535, 0], "of the choir in the": [65535, 0], "the choir in the gallery": [65535, 0], "choir in the gallery the": [65535, 0], "in the gallery the choir": [65535, 0], "the gallery the choir always": [65535, 0], "gallery the choir always tittered": [65535, 0], "the choir always tittered and": [65535, 0], "choir always tittered and whispered": [65535, 0], "always tittered and whispered all": [65535, 0], "tittered and whispered all through": [65535, 0], "and whispered all through service": [65535, 0], "whispered all through service there": [65535, 0], "all through service there was": [65535, 0], "through service there was once": [65535, 0], "service there was once a": [65535, 0], "there was once a church": [65535, 0], "was once a church choir": [65535, 0], "once a church choir that": [65535, 0], "a church choir that was": [65535, 0], "church choir that was not": [65535, 0], "choir that was not ill": [65535, 0], "that was not ill bred": [65535, 0], "was not ill bred but": [65535, 0], "not ill bred but i": [65535, 0], "ill bred but i have": [65535, 0], "bred but i have forgotten": [65535, 0], "but i have forgotten where": [65535, 0], "i have forgotten where it": [65535, 0], "have forgotten where it was": [65535, 0], "forgotten where it was now": [65535, 0], "where it was now it": [65535, 0], "it was now it was": [65535, 0], "was now it was a": [65535, 0], "now it was a great": [65535, 0], "it was a great many": [65535, 0], "was a great many years": [65535, 0], "a great many years ago": [65535, 0], "great many years ago and": [65535, 0], "many years ago and i": [65535, 0], "years ago and i can": [65535, 0], "ago and i can scarcely": [65535, 0], "and i can scarcely remember": [65535, 0], "i can scarcely remember anything": [65535, 0], "can scarcely remember anything about": [65535, 0], "scarcely remember anything about it": [65535, 0], "remember anything about it but": [65535, 0], "anything about it but i": [65535, 0], "about it but i think": [65535, 0], "it but i think it": [65535, 0], "but i think it was": [65535, 0], "i think it was in": [65535, 0], "think it was in some": [65535, 0], "it was in some foreign": [65535, 0], "was in some foreign country": [65535, 0], "in some foreign country the": [65535, 0], "some foreign country the minister": [65535, 0], "foreign country the minister gave": [65535, 0], "country the minister gave out": [65535, 0], "the minister gave out the": [65535, 0], "minister gave out the hymn": [65535, 0], "gave out the hymn and": [65535, 0], "out the hymn and read": [65535, 0], "the hymn and read it": [65535, 0], "hymn and read it through": [65535, 0], "and read it through with": [65535, 0], "read it through with a": [65535, 0], "it through with a relish": [65535, 0], "through with a relish in": [65535, 0], "with a relish in a": [65535, 0], "a relish in a peculiar": [65535, 0], "relish in a peculiar style": [65535, 0], "in a peculiar style which": [65535, 0], "a peculiar style which was": [65535, 0], "peculiar style which was much": [65535, 0], "style which was much admired": [65535, 0], "which was much admired in": [65535, 0], "was much admired in that": [65535, 0], "much admired in that part": [65535, 0], "admired in that part of": [65535, 0], "in that part of the": [65535, 0], "that part of the country": [65535, 0], "part of the country his": [65535, 0], "of the country his voice": [65535, 0], "the country his voice began": [65535, 0], "country his voice began on": [65535, 0], "his voice began on a": [65535, 0], "voice began on a medium": [65535, 0], "began on a medium key": [65535, 0], "on a medium key and": [65535, 0], "a medium key and climbed": [65535, 0], "medium key and climbed steadily": [65535, 0], "key and climbed steadily up": [65535, 0], "and climbed steadily up till": [65535, 0], "climbed steadily up till it": [65535, 0], "steadily up till it reached": [65535, 0], "up till it reached a": [65535, 0], "till it reached a certain": [65535, 0], "it reached a certain point": [65535, 0], "reached a certain point where": [65535, 0], "a certain point where it": [65535, 0], "certain point where it bore": [65535, 0], "point where it bore with": [65535, 0], "where it bore with strong": [65535, 0], "it bore with strong emphasis": [65535, 0], "bore with strong emphasis upon": [65535, 0], "with strong emphasis upon the": [65535, 0], "strong emphasis upon the topmost": [65535, 0], "emphasis upon the topmost word": [65535, 0], "upon the topmost word and": [65535, 0], "the topmost word and then": [65535, 0], "topmost word and then plunged": [65535, 0], "word and then plunged down": [65535, 0], "and then plunged down as": [65535, 0], "then plunged down as if": [65535, 0], "plunged down as if from": [65535, 0], "down as if from a": [65535, 0], "as if from a spring": [65535, 0], "if from a spring board": [65535, 0], "from a spring board shall": [65535, 0], "a spring board shall i": [65535, 0], "spring board shall i be": [65535, 0], "board shall i be car": [65535, 0], "shall i be car ri": [65535, 0], "i be car ri ed": [65535, 0], "be car ri ed toe": [65535, 0], "car ri ed toe the": [65535, 0], "ri ed toe the skies": [65535, 0], "ed toe the skies on": [65535, 0], "toe the skies on flow'ry": [65535, 0], "the skies on flow'ry beds": [65535, 0], "skies on flow'ry beds of": [65535, 0], "on flow'ry beds of ease": [65535, 0], "flow'ry beds of ease whilst": [65535, 0], "beds of ease whilst others": [65535, 0], "of ease whilst others fight": [65535, 0], "ease whilst others fight to": [65535, 0], "whilst others fight to win": [65535, 0], "others fight to win the": [65535, 0], "fight to win the prize": [65535, 0], "to win the prize and": [65535, 0], "win the prize and sail": [65535, 0], "the prize and sail thro'": [65535, 0], "prize and sail thro' bloody": [65535, 0], "and sail thro' bloody seas": [65535, 0], "sail thro' bloody seas he": [65535, 0], "thro' bloody seas he was": [65535, 0], "bloody seas he was regarded": [65535, 0], "seas he was regarded as": [65535, 0], "he was regarded as a": [65535, 0], "was regarded as a wonderful": [65535, 0], "regarded as a wonderful reader": [65535, 0], "as a wonderful reader at": [65535, 0], "a wonderful reader at church": [65535, 0], "wonderful reader at church sociables": [65535, 0], "reader at church sociables he": [65535, 0], "at church sociables he was": [65535, 0], "church sociables he was always": [65535, 0], "sociables he was always called": [65535, 0], "he was always called upon": [65535, 0], "was always called upon to": [65535, 0], "always called upon to read": [65535, 0], "called upon to read poetry": [65535, 0], "upon to read poetry and": [65535, 0], "to read poetry and when": [65535, 0], "read poetry and when he": [65535, 0], "poetry and when he was": [65535, 0], "and when he was through": [65535, 0], "when he was through the": [65535, 0], "he was through the ladies": [65535, 0], "was through the ladies would": [65535, 0], "through the ladies would lift": [65535, 0], "the ladies would lift up": [65535, 0], "ladies would lift up their": [65535, 0], "would lift up their hands": [65535, 0], "lift up their hands and": [65535, 0], "up their hands and let": [65535, 0], "their hands and let them": [65535, 0], "hands and let them fall": [65535, 0], "and let them fall helplessly": [65535, 0], "let them fall helplessly in": [65535, 0], "them fall helplessly in their": [65535, 0], "fall helplessly in their laps": [65535, 0], "helplessly in their laps and": [65535, 0], "in their laps and wall": [65535, 0], "their laps and wall their": [65535, 0], "laps and wall their eyes": [65535, 0], "and wall their eyes and": [65535, 0], "wall their eyes and shake": [65535, 0], "their eyes and shake their": [65535, 0], "eyes and shake their heads": [65535, 0], "and shake their heads as": [65535, 0], "shake their heads as much": [65535, 0], "their heads as much as": [65535, 0], "heads as much as to": [65535, 0], "as much as to say": [65535, 0], "much as to say words": [65535, 0], "as to say words cannot": [65535, 0], "to say words cannot express": [65535, 0], "say words cannot express it": [65535, 0], "words cannot express it it": [65535, 0], "cannot express it it is": [65535, 0], "express it it is too": [65535, 0], "it it is too beautiful": [65535, 0], "it is too beautiful too": [65535, 0], "is too beautiful too beautiful": [65535, 0], "too beautiful too beautiful for": [65535, 0], "beautiful too beautiful for this": [65535, 0], "too beautiful for this mortal": [65535, 0], "beautiful for this mortal earth": [65535, 0], "for this mortal earth after": [65535, 0], "this mortal earth after the": [65535, 0], "mortal earth after the hymn": [65535, 0], "earth after the hymn had": [65535, 0], "after the hymn had been": [65535, 0], "the hymn had been sung": [65535, 0], "hymn had been sung the": [65535, 0], "had been sung the rev": [65535, 0], "been sung the rev mr": [65535, 0], "sung the rev mr sprague": [65535, 0], "the rev mr sprague turned": [65535, 0], "rev mr sprague turned himself": [65535, 0], "mr sprague turned himself into": [65535, 0], "sprague turned himself into a": [65535, 0], "turned himself into a bulletin": [65535, 0], "himself into a bulletin board": [65535, 0], "into a bulletin board and": [65535, 0], "a bulletin board and read": [65535, 0], "bulletin board and read off": [65535, 0], "board and read off notices": [65535, 0], "and read off notices of": [65535, 0], "read off notices of meetings": [65535, 0], "off notices of meetings and": [65535, 0], "notices of meetings and societies": [65535, 0], "of meetings and societies and": [65535, 0], "meetings and societies and things": [65535, 0], "and societies and things till": [65535, 0], "societies and things till it": [65535, 0], "and things till it seemed": [65535, 0], "things till it seemed that": [65535, 0], "till it seemed that the": [65535, 0], "it seemed that the list": [65535, 0], "seemed that the list would": [65535, 0], "that the list would stretch": [65535, 0], "the list would stretch out": [65535, 0], "list would stretch out to": [65535, 0], "would stretch out to the": [65535, 0], "stretch out to the crack": [65535, 0], "out to the crack of": [65535, 0], "to the crack of doom": [65535, 0], "the crack of doom a": [65535, 0], "crack of doom a queer": [65535, 0], "of doom a queer custom": [65535, 0], "doom a queer custom which": [65535, 0], "a queer custom which is": [65535, 0], "queer custom which is still": [65535, 0], "custom which is still kept": [65535, 0], "which is still kept up": [65535, 0], "is still kept up in": [65535, 0], "still kept up in america": [65535, 0], "kept up in america even": [65535, 0], "up in america even in": [65535, 0], "in america even in cities": [65535, 0], "america even in cities away": [65535, 0], "even in cities away here": [65535, 0], "in cities away here in": [65535, 0], "cities away here in this": [65535, 0], "away here in this age": [65535, 0], "here in this age of": [65535, 0], "in this age of abundant": [65535, 0], "this age of abundant newspapers": [65535, 0], "age of abundant newspapers often": [65535, 0], "of abundant newspapers often the": [65535, 0], "abundant newspapers often the less": [65535, 0], "newspapers often the less there": [65535, 0], "often the less there is": [65535, 0], "the less there is to": [65535, 0], "less there is to justify": [65535, 0], "there is to justify a": [65535, 0], "is to justify a traditional": [65535, 0], "to justify a traditional custom": [65535, 0], "justify a traditional custom the": [65535, 0], "a traditional custom the harder": [65535, 0], "traditional custom the harder it": [65535, 0], "custom the harder it is": [65535, 0], "the harder it is to": [65535, 0], "harder it is to get": [65535, 0], "it is to get rid": [65535, 0], "is to get rid of": [65535, 0], "to get rid of it": [65535, 0], "get rid of it and": [65535, 0], "rid of it and now": [65535, 0], "of it and now the": [65535, 0], "it and now the minister": [65535, 0], "and now the minister prayed": [65535, 0], "now the minister prayed a": [65535, 0], "the minister prayed a good": [65535, 0], "minister prayed a good generous": [65535, 0], "prayed a good generous prayer": [65535, 0], "a good generous prayer it": [65535, 0], "good generous prayer it was": [65535, 0], "generous prayer it was and": [65535, 0], "prayer it was and went": [65535, 0], "it was and went into": [65535, 0], "was and went into details": [65535, 0], "and went into details it": [65535, 0], "went into details it pleaded": [65535, 0], "into details it pleaded for": [65535, 0], "details it pleaded for the": [65535, 0], "it pleaded for the church": [65535, 0], "pleaded for the church and": [65535, 0], "for the church and the": [65535, 0], "the church and the little": [65535, 0], "church and the little children": [65535, 0], "and the little children of": [65535, 0], "the little children of the": [65535, 0], "little children of the church": [65535, 0], "children of the church for": [65535, 0], "of the church for the": [65535, 0], "the church for the other": [65535, 0], "church for the other churches": [65535, 0], "for the other churches of": [65535, 0], "the other churches of the": [65535, 0], "other churches of the village": [65535, 0], "churches of the village for": [65535, 0], "of the village for the": [65535, 0], "the village for the village": [65535, 0], "village for the village itself": [65535, 0], "for the village itself for": [65535, 0], "the village itself for the": [65535, 0], "village itself for the county": [65535, 0], "itself for the county for": [65535, 0], "for the county for the": [65535, 0], "the county for the state": [65535, 0], "county for the state for": [65535, 0], "for the state for the": [65535, 0], "the state for the state": [65535, 0], "state for the state officers": [65535, 0], "for the state officers for": [65535, 0], "the state officers for the": [65535, 0], "state officers for the united": [65535, 0], "officers for the united states": [65535, 0], "for the united states for": [65535, 0], "the united states for the": [65535, 0], "united states for the churches": [65535, 0], "states for the churches of": [65535, 0], "for the churches of the": [65535, 0], "the churches of the united": [65535, 0], "churches of the united states": [65535, 0], "of the united states for": [65535, 0], "the united states for congress": [65535, 0], "united states for congress for": [65535, 0], "states for congress for the": [65535, 0], "for congress for the president": [65535, 0], "congress for the president for": [65535, 0], "for the president for the": [65535, 0], "the president for the officers": [65535, 0], "president for the officers of": [65535, 0], "for the officers of the": [65535, 0], "the officers of the government": [65535, 0], "officers of the government for": [65535, 0], "of the government for poor": [65535, 0], "the government for poor sailors": [65535, 0], "government for poor sailors tossed": [65535, 0], "for poor sailors tossed by": [65535, 0], "poor sailors tossed by stormy": [65535, 0], "sailors tossed by stormy seas": [65535, 0], "tossed by stormy seas for": [65535, 0], "by stormy seas for the": [65535, 0], "stormy seas for the oppressed": [65535, 0], "seas for the oppressed millions": [65535, 0], "for the oppressed millions groaning": [65535, 0], "the oppressed millions groaning under": [65535, 0], "oppressed millions groaning under the": [65535, 0], "millions groaning under the heel": [65535, 0], "groaning under the heel of": [65535, 0], "under the heel of european": [65535, 0], "the heel of european monarchies": [65535, 0], "heel of european monarchies and": [65535, 0], "of european monarchies and oriental": [65535, 0], "european monarchies and oriental despotisms": [65535, 0], "monarchies and oriental despotisms for": [65535, 0], "and oriental despotisms for such": [65535, 0], "oriental despotisms for such as": [65535, 0], "despotisms for such as have": [65535, 0], "for such as have the": [65535, 0], "such as have the light": [65535, 0], "as have the light and": [65535, 0], "have the light and the": [65535, 0], "the light and the good": [65535, 0], "light and the good tidings": [65535, 0], "and the good tidings and": [65535, 0], "the good tidings and yet": [65535, 0], "good tidings and yet have": [65535, 0], "tidings and yet have not": [65535, 0], "and yet have not eyes": [65535, 0], "yet have not eyes to": [65535, 0], "have not eyes to see": [65535, 0], "not eyes to see nor": [65535, 0], "eyes to see nor ears": [65535, 0], "to see nor ears to": [65535, 0], "see nor ears to hear": [65535, 0], "nor ears to hear withal": [65535, 0], "ears to hear withal for": [65535, 0], "to hear withal for the": [65535, 0], "hear withal for the heathen": [65535, 0], "withal for the heathen in": [65535, 0], "for the heathen in the": [65535, 0], "the heathen in the far": [65535, 0], "heathen in the far islands": [65535, 0], "in the far islands of": [65535, 0], "the far islands of the": [65535, 0], "far islands of the sea": [65535, 0], "islands of the sea and": [65535, 0], "of the sea and closed": [65535, 0], "the sea and closed with": [65535, 0], "sea and closed with a": [65535, 0], "and closed with a supplication": [65535, 0], "closed with a supplication that": [65535, 0], "with a supplication that the": [65535, 0], "a supplication that the words": [65535, 0], "supplication that the words he": [65535, 0], "that the words he was": [65535, 0], "the words he was about": [65535, 0], "words he was about to": [65535, 0], "he was about to speak": [65535, 0], "was about to speak might": [65535, 0], "about to speak might find": [65535, 0], "to speak might find grace": [65535, 0], "speak might find grace and": [65535, 0], "might find grace and favor": [65535, 0], "find grace and favor and": [65535, 0], "grace and favor and be": [65535, 0], "and favor and be as": [65535, 0], "favor and be as seed": [65535, 0], "and be as seed sown": [65535, 0], "be as seed sown in": [65535, 0], "as seed sown in fertile": [65535, 0], "seed sown in fertile ground": [65535, 0], "sown in fertile ground yielding": [65535, 0], "in fertile ground yielding in": [65535, 0], "fertile ground yielding in time": [65535, 0], "ground yielding in time a": [65535, 0], "yielding in time a grateful": [65535, 0], "in time a grateful harvest": [65535, 0], "time a grateful harvest of": [65535, 0], "a grateful harvest of good": [65535, 0], "grateful harvest of good amen": [65535, 0], "harvest of good amen there": [65535, 0], "of good amen there was": [65535, 0], "good amen there was a": [65535, 0], "amen there was a rustling": [65535, 0], "there was a rustling of": [65535, 0], "was a rustling of dresses": [65535, 0], "a rustling of dresses and": [65535, 0], "rustling of dresses and the": [65535, 0], "of dresses and the standing": [65535, 0], "dresses and the standing congregation": [65535, 0], "and the standing congregation sat": [65535, 0], "the standing congregation sat down": [65535, 0], "standing congregation sat down the": [65535, 0], "congregation sat down the boy": [65535, 0], "sat down the boy whose": [65535, 0], "down the boy whose history": [65535, 0], "the boy whose history this": [65535, 0], "boy whose history this book": [65535, 0], "whose history this book relates": [65535, 0], "history this book relates did": [65535, 0], "this book relates did not": [65535, 0], "book relates did not enjoy": [65535, 0], "relates did not enjoy the": [65535, 0], "did not enjoy the prayer": [65535, 0], "not enjoy the prayer he": [65535, 0], "enjoy the prayer he only": [65535, 0], "the prayer he only endured": [65535, 0], "prayer he only endured it": [65535, 0], "he only endured it if": [65535, 0], "only endured it if he": [65535, 0], "endured it if he even": [65535, 0], "it if he even did": [65535, 0], "if he even did that": [65535, 0], "he even did that much": [65535, 0], "even did that much he": [65535, 0], "did that much he was": [65535, 0], "that much he was restive": [65535, 0], "much he was restive all": [65535, 0], "he was restive all through": [65535, 0], "was restive all through it": [65535, 0], "restive all through it he": [65535, 0], "all through it he kept": [65535, 0], "through it he kept tally": [65535, 0], "it he kept tally of": [65535, 0], "he kept tally of the": [65535, 0], "kept tally of the details": [65535, 0], "tally of the details of": [65535, 0], "of the details of the": [65535, 0], "the details of the prayer": [65535, 0], "details of the prayer unconsciously": [65535, 0], "of the prayer unconsciously for": [65535, 0], "the prayer unconsciously for he": [65535, 0], "prayer unconsciously for he was": [65535, 0], "unconsciously for he was not": [65535, 0], "for he was not listening": [65535, 0], "he was not listening but": [65535, 0], "was not listening but he": [65535, 0], "not listening but he knew": [65535, 0], "listening but he knew the": [65535, 0], "but he knew the ground": [65535, 0], "he knew the ground of": [65535, 0], "knew the ground of old": [65535, 0], "the ground of old and": [65535, 0], "ground of old and the": [65535, 0], "of old and the clergyman's": [65535, 0], "old and the clergyman's regular": [65535, 0], "and the clergyman's regular route": [65535, 0], "the clergyman's regular route over": [65535, 0], "clergyman's regular route over it": [65535, 0], "regular route over it and": [65535, 0], "route over it and when": [65535, 0], "over it and when a": [65535, 0], "it and when a little": [65535, 0], "and when a little trifle": [65535, 0], "when a little trifle of": [65535, 0], "a little trifle of new": [65535, 0], "little trifle of new matter": [65535, 0], "trifle of new matter was": [65535, 0], "of new matter was interlarded": [65535, 0], "new matter was interlarded his": [65535, 0], "matter was interlarded his ear": [65535, 0], "was interlarded his ear detected": [65535, 0], "interlarded his ear detected it": [65535, 0], "his ear detected it and": [65535, 0], "ear detected it and his": [65535, 0], "detected it and his whole": [65535, 0], "it and his whole nature": [65535, 0], "and his whole nature resented": [65535, 0], "his whole nature resented it": [65535, 0], "whole nature resented it he": [65535, 0], "nature resented it he considered": [65535, 0], "resented it he considered additions": [65535, 0], "it he considered additions unfair": [65535, 0], "he considered additions unfair and": [65535, 0], "considered additions unfair and scoundrelly": [65535, 0], "additions unfair and scoundrelly in": [65535, 0], "unfair and scoundrelly in the": [65535, 0], "and scoundrelly in the midst": [65535, 0], "scoundrelly in the midst of": [65535, 0], "in the midst of the": [65535, 0], "the midst of the prayer": [65535, 0], "midst of the prayer a": [65535, 0], "of the prayer a fly": [65535, 0], "the prayer a fly had": [65535, 0], "prayer a fly had lit": [65535, 0], "a fly had lit on": [65535, 0], "fly had lit on the": [65535, 0], "had lit on the back": [65535, 0], "lit on the back of": [65535, 0], "on the back of the": [65535, 0], "the back of the pew": [65535, 0], "back of the pew in": [65535, 0], "of the pew in front": [65535, 0], "the pew in front of": [65535, 0], "pew in front of him": [65535, 0], "in front of him and": [65535, 0], "front of him and tortured": [65535, 0], "of him and tortured his": [65535, 0], "him and tortured his spirit": [65535, 0], "and tortured his spirit by": [65535, 0], "tortured his spirit by calmly": [65535, 0], "his spirit by calmly rubbing": [65535, 0], "spirit by calmly rubbing its": [65535, 0], "by calmly rubbing its hands": [65535, 0], "calmly rubbing its hands together": [65535, 0], "rubbing its hands together embracing": [65535, 0], "its hands together embracing its": [65535, 0], "hands together embracing its head": [65535, 0], "together embracing its head with": [65535, 0], "embracing its head with its": [65535, 0], "its head with its arms": [65535, 0], "head with its arms and": [65535, 0], "with its arms and polishing": [65535, 0], "its arms and polishing it": [65535, 0], "arms and polishing it so": [65535, 0], "and polishing it so vigorously": [65535, 0], "polishing it so vigorously that": [65535, 0], "it so vigorously that it": [65535, 0], "so vigorously that it seemed": [65535, 0], "vigorously that it seemed to": [65535, 0], "that it seemed to almost": [65535, 0], "it seemed to almost part": [65535, 0], "seemed to almost part company": [65535, 0], "to almost part company with": [65535, 0], "almost part company with the": [65535, 0], "part company with the body": [65535, 0], "company with the body and": [65535, 0], "with the body and the": [65535, 0], "the body and the slender": [65535, 0], "body and the slender thread": [65535, 0], "and the slender thread of": [65535, 0], "the slender thread of a": [65535, 0], "slender thread of a neck": [65535, 0], "thread of a neck was": [65535, 0], "of a neck was exposed": [65535, 0], "a neck was exposed to": [65535, 0], "neck was exposed to view": [65535, 0], "was exposed to view scraping": [65535, 0], "exposed to view scraping its": [65535, 0], "to view scraping its wings": [65535, 0], "view scraping its wings with": [65535, 0], "scraping its wings with its": [65535, 0], "its wings with its hind": [65535, 0], "wings with its hind legs": [65535, 0], "with its hind legs and": [65535, 0], "its hind legs and smoothing": [65535, 0], "hind legs and smoothing them": [65535, 0], "legs and smoothing them to": [65535, 0], "and smoothing them to its": [65535, 0], "smoothing them to its body": [65535, 0], "them to its body as": [65535, 0], "to its body as if": [65535, 0], "its body as if they": [65535, 0], "body as if they had": [65535, 0], "as if they had been": [65535, 0], "if they had been coat": [65535, 0], "they had been coat tails": [65535, 0], "had been coat tails going": [65535, 0], "been coat tails going through": [65535, 0], "coat tails going through its": [65535, 0], "tails going through its whole": [65535, 0], "going through its whole toilet": [65535, 0], "through its whole toilet as": [65535, 0], "its whole toilet as tranquilly": [65535, 0], "whole toilet as tranquilly as": [65535, 0], "toilet as tranquilly as if": [65535, 0], "as tranquilly as if it": [65535, 0], "tranquilly as if it knew": [65535, 0], "as if it knew it": [65535, 0], "if it knew it was": [65535, 0], "it knew it was perfectly": [65535, 0], "knew it was perfectly safe": [65535, 0], "it was perfectly safe as": [65535, 0], "was perfectly safe as indeed": [65535, 0], "perfectly safe as indeed it": [65535, 0], "safe as indeed it was": [65535, 0], "as indeed it was for": [65535, 0], "indeed it was for as": [65535, 0], "it was for as sorely": [65535, 0], "was for as sorely as": [65535, 0], "for as sorely as tom's": [65535, 0], "as sorely as tom's hands": [65535, 0], "sorely as tom's hands itched": [65535, 0], "as tom's hands itched to": [65535, 0], "tom's hands itched to grab": [65535, 0], "hands itched to grab for": [65535, 0], "itched to grab for it": [65535, 0], "to grab for it they": [65535, 0], "grab for it they did": [65535, 0], "for it they did not": [65535, 0], "it they did not dare": [65535, 0], "they did not dare he": [65535, 0], "did not dare he believed": [65535, 0], "not dare he believed his": [65535, 0], "dare he believed his soul": [65535, 0], "he believed his soul would": [65535, 0], "believed his soul would be": [65535, 0], "his soul would be instantly": [65535, 0], "soul would be instantly destroyed": [65535, 0], "would be instantly destroyed if": [65535, 0], "be instantly destroyed if he": [65535, 0], "instantly destroyed if he did": [65535, 0], "destroyed if he did such": [65535, 0], "if he did such a": [65535, 0], "he did such a thing": [65535, 0], "did such a thing while": [65535, 0], "such a thing while the": [65535, 0], "a thing while the prayer": [65535, 0], "thing while the prayer was": [65535, 0], "while the prayer was going": [65535, 0], "the prayer was going on": [65535, 0], "prayer was going on but": [65535, 0], "was going on but with": [65535, 0], "going on but with the": [65535, 0], "on but with the closing": [65535, 0], "but with the closing sentence": [65535, 0], "with the closing sentence his": [65535, 0], "the closing sentence his hand": [65535, 0], "closing sentence his hand began": [65535, 0], "sentence his hand began to": [65535, 0], "his hand began to curve": [65535, 0], "hand began to curve and": [65535, 0], "began to curve and steal": [65535, 0], "to curve and steal forward": [65535, 0], "curve and steal forward and": [65535, 0], "and steal forward and the": [65535, 0], "steal forward and the instant": [65535, 0], "forward and the instant the": [65535, 0], "and the instant the amen": [65535, 0], "the instant the amen was": [65535, 0], "instant the amen was out": [65535, 0], "the amen was out the": [65535, 0], "amen was out the fly": [65535, 0], "was out the fly was": [65535, 0], "out the fly was a": [65535, 0], "the fly was a prisoner": [65535, 0], "fly was a prisoner of": [65535, 0], "was a prisoner of war": [65535, 0], "a prisoner of war his": [65535, 0], "prisoner of war his aunt": [65535, 0], "of war his aunt detected": [65535, 0], "war his aunt detected the": [65535, 0], "his aunt detected the act": [65535, 0], "aunt detected the act and": [65535, 0], "detected the act and made": [65535, 0], "the act and made him": [65535, 0], "act and made him let": [65535, 0], "and made him let it": [65535, 0], "made him let it go": [65535, 0], "him let it go the": [65535, 0], "let it go the minister": [65535, 0], "it go the minister gave": [65535, 0], "go the minister gave out": [65535, 0], "the minister gave out his": [65535, 0], "minister gave out his text": [65535, 0], "gave out his text and": [65535, 0], "out his text and droned": [65535, 0], "his text and droned along": [65535, 0], "text and droned along monotonously": [65535, 0], "and droned along monotonously through": [65535, 0], "droned along monotonously through an": [65535, 0], "along monotonously through an argument": [65535, 0], "monotonously through an argument that": [65535, 0], "through an argument that was": [65535, 0], "an argument that was so": [65535, 0], "argument that was so prosy": [65535, 0], "that was so prosy that": [65535, 0], "was so prosy that many": [65535, 0], "so prosy that many a": [65535, 0], "prosy that many a head": [65535, 0], "that many a head by": [65535, 0], "many a head by and": [65535, 0], "a head by and by": [65535, 0], "head by and by began": [65535, 0], "by and by began to": [65535, 0], "and by began to nod": [65535, 0], "by began to nod and": [65535, 0], "began to nod and yet": [65535, 0], "to nod and yet it": [65535, 0], "nod and yet it was": [65535, 0], "and yet it was an": [65535, 0], "yet it was an argument": [65535, 0], "it was an argument that": [65535, 0], "was an argument that dealt": [65535, 0], "an argument that dealt in": [65535, 0], "argument that dealt in limitless": [65535, 0], "that dealt in limitless fire": [65535, 0], "dealt in limitless fire and": [65535, 0], "in limitless fire and brimstone": [65535, 0], "limitless fire and brimstone and": [65535, 0], "fire and brimstone and thinned": [65535, 0], "and brimstone and thinned the": [65535, 0], "brimstone and thinned the predestined": [65535, 0], "and thinned the predestined elect": [65535, 0], "thinned the predestined elect down": [65535, 0], "the predestined elect down to": [65535, 0], "predestined elect down to a": [65535, 0], "elect down to a company": [65535, 0], "down to a company so": [65535, 0], "to a company so small": [65535, 0], "a company so small as": [65535, 0], "company so small as to": [65535, 0], "so small as to be": [65535, 0], "small as to be hardly": [65535, 0], "as to be hardly worth": [65535, 0], "to be hardly worth the": [65535, 0], "be hardly worth the saving": [65535, 0], "hardly worth the saving tom": [65535, 0], "worth the saving tom counted": [65535, 0], "the saving tom counted the": [65535, 0], "saving tom counted the pages": [65535, 0], "tom counted the pages of": [65535, 0], "counted the pages of the": [65535, 0], "the pages of the sermon": [65535, 0], "pages of the sermon after": [65535, 0], "of the sermon after church": [65535, 0], "the sermon after church he": [65535, 0], "sermon after church he always": [65535, 0], "after church he always knew": [65535, 0], "church he always knew how": [65535, 0], "he always knew how many": [65535, 0], "always knew how many pages": [65535, 0], "knew how many pages there": [65535, 0], "how many pages there had": [65535, 0], "many pages there had been": [65535, 0], "pages there had been but": [65535, 0], "there had been but he": [65535, 0], "had been but he seldom": [65535, 0], "been but he seldom knew": [65535, 0], "but he seldom knew anything": [65535, 0], "he seldom knew anything else": [65535, 0], "seldom knew anything else about": [65535, 0], "knew anything else about the": [65535, 0], "anything else about the discourse": [65535, 0], "else about the discourse however": [65535, 0], "about the discourse however this": [65535, 0], "the discourse however this time": [65535, 0], "discourse however this time he": [65535, 0], "however this time he was": [65535, 0], "this time he was really": [65535, 0], "time he was really interested": [65535, 0], "he was really interested for": [65535, 0], "was really interested for a": [65535, 0], "really interested for a little": [65535, 0], "interested for a little while": [65535, 0], "for a little while the": [65535, 0], "a little while the minister": [65535, 0], "little while the minister made": [65535, 0], "while the minister made a": [65535, 0], "the minister made a grand": [65535, 0], "minister made a grand and": [65535, 0], "made a grand and moving": [65535, 0], "a grand and moving picture": [65535, 0], "grand and moving picture of": [65535, 0], "and moving picture of the": [65535, 0], "moving picture of the assembling": [65535, 0], "picture of the assembling together": [65535, 0], "of the assembling together of": [65535, 0], "the assembling together of the": [65535, 0], "assembling together of the world's": [65535, 0], "together of the world's hosts": [65535, 0], "of the world's hosts at": [65535, 0], "the world's hosts at the": [65535, 0], "world's hosts at the millennium": [65535, 0], "hosts at the millennium when": [65535, 0], "at the millennium when the": [65535, 0], "the millennium when the lion": [65535, 0], "millennium when the lion and": [65535, 0], "when the lion and the": [65535, 0], "the lion and the lamb": [65535, 0], "lion and the lamb should": [65535, 0], "and the lamb should lie": [65535, 0], "the lamb should lie down": [65535, 0], "lamb should lie down together": [65535, 0], "should lie down together and": [65535, 0], "lie down together and a": [65535, 0], "down together and a little": [65535, 0], "together and a little child": [65535, 0], "and a little child should": [65535, 0], "a little child should lead": [65535, 0], "little child should lead them": [65535, 0], "child should lead them but": [65535, 0], "should lead them but the": [65535, 0], "lead them but the pathos": [65535, 0], "them but the pathos the": [65535, 0], "but the pathos the lesson": [65535, 0], "the pathos the lesson the": [65535, 0], "pathos the lesson the moral": [65535, 0], "the lesson the moral of": [65535, 0], "lesson the moral of the": [65535, 0], "the moral of the great": [65535, 0], "moral of the great spectacle": [65535, 0], "of the great spectacle were": [65535, 0], "the great spectacle were lost": [65535, 0], "great spectacle were lost upon": [65535, 0], "spectacle were lost upon the": [65535, 0], "were lost upon the boy": [65535, 0], "lost upon the boy he": [65535, 0], "upon the boy he only": [65535, 0], "the boy he only thought": [65535, 0], "boy he only thought of": [65535, 0], "he only thought of the": [65535, 0], "only thought of the conspicuousness": [65535, 0], "thought of the conspicuousness of": [65535, 0], "of the conspicuousness of the": [65535, 0], "the conspicuousness of the principal": [65535, 0], "conspicuousness of the principal character": [65535, 0], "of the principal character before": [65535, 0], "the principal character before the": [65535, 0], "principal character before the on": [65535, 0], "character before the on looking": [65535, 0], "before the on looking nations": [65535, 0], "the on looking nations his": [65535, 0], "on looking nations his face": [65535, 0], "looking nations his face lit": [65535, 0], "nations his face lit with": [65535, 0], "his face lit with the": [65535, 0], "face lit with the thought": [65535, 0], "lit with the thought and": [65535, 0], "with the thought and he": [65535, 0], "the thought and he said": [65535, 0], "thought and he said to": [65535, 0], "and he said to himself": [65535, 0], "he said to himself that": [65535, 0], "said to himself that he": [65535, 0], "to himself that he wished": [65535, 0], "himself that he wished he": [65535, 0], "that he wished he could": [65535, 0], "he wished he could be": [65535, 0], "wished he could be that": [65535, 0], "he could be that child": [65535, 0], "could be that child if": [65535, 0], "be that child if it": [65535, 0], "that child if it was": [65535, 0], "child if it was a": [65535, 0], "if it was a tame": [65535, 0], "it was a tame lion": [65535, 0], "was a tame lion now": [65535, 0], "a tame lion now he": [65535, 0], "tame lion now he lapsed": [65535, 0], "lion now he lapsed into": [65535, 0], "now he lapsed into suffering": [65535, 0], "he lapsed into suffering again": [65535, 0], "lapsed into suffering again as": [65535, 0], "into suffering again as the": [65535, 0], "suffering again as the dry": [65535, 0], "again as the dry argument": [65535, 0], "as the dry argument was": [65535, 0], "the dry argument was resumed": [65535, 0], "dry argument was resumed presently": [65535, 0], "argument was resumed presently he": [65535, 0], "was resumed presently he bethought": [65535, 0], "resumed presently he bethought him": [65535, 0], "presently he bethought him of": [65535, 0], "he bethought him of a": [65535, 0], "bethought him of a treasure": [65535, 0], "him of a treasure he": [65535, 0], "of a treasure he had": [65535, 0], "a treasure he had and": [65535, 0], "treasure he had and got": [65535, 0], "he had and got it": [65535, 0], "had and got it out": [65535, 0], "and got it out it": [65535, 0], "got it out it was": [65535, 0], "it out it was a": [65535, 0], "out it was a large": [65535, 0], "it was a large black": [65535, 0], "was a large black beetle": [65535, 0], "a large black beetle with": [65535, 0], "large black beetle with formidable": [65535, 0], "black beetle with formidable jaws": [65535, 0], "beetle with formidable jaws a": [65535, 0], "with formidable jaws a pinchbug": [65535, 0], "formidable jaws a pinchbug he": [65535, 0], "jaws a pinchbug he called": [65535, 0], "a pinchbug he called it": [65535, 0], "pinchbug he called it it": [65535, 0], "he called it it was": [65535, 0], "called it it was in": [65535, 0], "it it was in a": [65535, 0], "it was in a percussion": [65535, 0], "was in a percussion cap": [65535, 0], "in a percussion cap box": [65535, 0], "a percussion cap box the": [65535, 0], "percussion cap box the first": [65535, 0], "cap box the first thing": [65535, 0], "box the first thing the": [65535, 0], "the first thing the beetle": [65535, 0], "first thing the beetle did": [65535, 0], "thing the beetle did was": [65535, 0], "the beetle did was to": [65535, 0], "beetle did was to take": [65535, 0], "did was to take him": [65535, 0], "was to take him by": [65535, 0], "to take him by the": [65535, 0], "take him by the finger": [65535, 0], "him by the finger a": [65535, 0], "by the finger a natural": [65535, 0], "the finger a natural fillip": [65535, 0], "finger a natural fillip followed": [65535, 0], "a natural fillip followed the": [65535, 0], "natural fillip followed the beetle": [65535, 0], "fillip followed the beetle went": [65535, 0], "followed the beetle went floundering": [65535, 0], "the beetle went floundering into": [65535, 0], "beetle went floundering into the": [65535, 0], "went floundering into the aisle": [65535, 0], "floundering into the aisle and": [65535, 0], "into the aisle and lit": [65535, 0], "the aisle and lit on": [65535, 0], "aisle and lit on its": [65535, 0], "and lit on its back": [65535, 0], "lit on its back and": [65535, 0], "on its back and the": [65535, 0], "its back and the hurt": [65535, 0], "back and the hurt finger": [65535, 0], "and the hurt finger went": [65535, 0], "the hurt finger went into": [65535, 0], "hurt finger went into the": [65535, 0], "finger went into the boy's": [65535, 0], "went into the boy's mouth": [65535, 0], "into the boy's mouth the": [65535, 0], "the boy's mouth the beetle": [65535, 0], "boy's mouth the beetle lay": [65535, 0], "mouth the beetle lay there": [65535, 0], "the beetle lay there working": [65535, 0], "beetle lay there working its": [65535, 0], "lay there working its helpless": [65535, 0], "there working its helpless legs": [65535, 0], "working its helpless legs unable": [65535, 0], "its helpless legs unable to": [65535, 0], "helpless legs unable to turn": [65535, 0], "legs unable to turn over": [65535, 0], "unable to turn over tom": [65535, 0], "to turn over tom eyed": [65535, 0], "turn over tom eyed it": [65535, 0], "over tom eyed it and": [65535, 0], "tom eyed it and longed": [65535, 0], "eyed it and longed for": [65535, 0], "it and longed for it": [65535, 0], "and longed for it but": [65535, 0], "longed for it but it": [65535, 0], "for it but it was": [65535, 0], "it but it was safe": [65535, 0], "but it was safe out": [65535, 0], "it was safe out of": [65535, 0], "was safe out of his": [65535, 0], "safe out of his reach": [65535, 0], "out of his reach other": [65535, 0], "of his reach other people": [65535, 0], "his reach other people uninterested": [65535, 0], "reach other people uninterested in": [65535, 0], "other people uninterested in the": [65535, 0], "people uninterested in the sermon": [65535, 0], "uninterested in the sermon found": [65535, 0], "in the sermon found relief": [65535, 0], "the sermon found relief in": [65535, 0], "sermon found relief in the": [65535, 0], "found relief in the beetle": [65535, 0], "relief in the beetle and": [65535, 0], "in the beetle and they": [65535, 0], "the beetle and they eyed": [65535, 0], "beetle and they eyed it": [65535, 0], "and they eyed it too": [65535, 0], "they eyed it too presently": [65535, 0], "eyed it too presently a": [65535, 0], "it too presently a vagrant": [65535, 0], "too presently a vagrant poodle": [65535, 0], "presently a vagrant poodle dog": [65535, 0], "a vagrant poodle dog came": [65535, 0], "vagrant poodle dog came idling": [65535, 0], "poodle dog came idling along": [65535, 0], "dog came idling along sad": [65535, 0], "came idling along sad at": [65535, 0], "idling along sad at heart": [65535, 0], "along sad at heart lazy": [65535, 0], "sad at heart lazy with": [65535, 0], "at heart lazy with the": [65535, 0], "heart lazy with the summer": [65535, 0], "lazy with the summer softness": [65535, 0], "with the summer softness and": [65535, 0], "the summer softness and the": [65535, 0], "summer softness and the quiet": [65535, 0], "softness and the quiet weary": [65535, 0], "and the quiet weary of": [65535, 0], "the quiet weary of captivity": [65535, 0], "quiet weary of captivity sighing": [65535, 0], "weary of captivity sighing for": [65535, 0], "of captivity sighing for change": [65535, 0], "captivity sighing for change he": [65535, 0], "sighing for change he spied": [65535, 0], "for change he spied the": [65535, 0], "change he spied the beetle": [65535, 0], "he spied the beetle the": [65535, 0], "spied the beetle the drooping": [65535, 0], "the beetle the drooping tail": [65535, 0], "beetle the drooping tail lifted": [65535, 0], "the drooping tail lifted and": [65535, 0], "drooping tail lifted and wagged": [65535, 0], "tail lifted and wagged he": [65535, 0], "lifted and wagged he surveyed": [65535, 0], "and wagged he surveyed the": [65535, 0], "wagged he surveyed the prize": [65535, 0], "he surveyed the prize walked": [65535, 0], "surveyed the prize walked around": [65535, 0], "the prize walked around it": [65535, 0], "prize walked around it smelt": [65535, 0], "walked around it smelt at": [65535, 0], "around it smelt at it": [65535, 0], "it smelt at it from": [65535, 0], "smelt at it from a": [65535, 0], "at it from a safe": [65535, 0], "it from a safe distance": [65535, 0], "from a safe distance walked": [65535, 0], "a safe distance walked around": [65535, 0], "safe distance walked around it": [65535, 0], "distance walked around it again": [65535, 0], "walked around it again grew": [65535, 0], "around it again grew bolder": [65535, 0], "it again grew bolder and": [65535, 0], "again grew bolder and took": [65535, 0], "grew bolder and took a": [65535, 0], "bolder and took a closer": [65535, 0], "and took a closer smell": [65535, 0], "took a closer smell then": [65535, 0], "a closer smell then lifted": [65535, 0], "closer smell then lifted his": [65535, 0], "smell then lifted his lip": [65535, 0], "then lifted his lip and": [65535, 0], "lifted his lip and made": [65535, 0], "his lip and made a": [65535, 0], "lip and made a gingerly": [65535, 0], "and made a gingerly snatch": [65535, 0], "made a gingerly snatch at": [65535, 0], "a gingerly snatch at it": [65535, 0], "gingerly snatch at it just": [65535, 0], "snatch at it just missing": [65535, 0], "at it just missing it": [65535, 0], "it just missing it made": [65535, 0], "just missing it made another": [65535, 0], "missing it made another and": [65535, 0], "it made another and another": [65535, 0], "made another and another began": [65535, 0], "another and another began to": [65535, 0], "and another began to enjoy": [65535, 0], "another began to enjoy the": [65535, 0], "began to enjoy the diversion": [65535, 0], "to enjoy the diversion subsided": [65535, 0], "enjoy the diversion subsided to": [65535, 0], "the diversion subsided to his": [65535, 0], "diversion subsided to his stomach": [65535, 0], "subsided to his stomach with": [65535, 0], "to his stomach with the": [65535, 0], "his stomach with the beetle": [65535, 0], "stomach with the beetle between": [65535, 0], "with the beetle between his": [65535, 0], "the beetle between his paws": [65535, 0], "beetle between his paws and": [65535, 0], "between his paws and continued": [65535, 0], "his paws and continued his": [65535, 0], "paws and continued his experiments": [65535, 0], "and continued his experiments grew": [65535, 0], "continued his experiments grew weary": [65535, 0], "his experiments grew weary at": [65535, 0], "experiments grew weary at last": [65535, 0], "grew weary at last and": [65535, 0], "weary at last and then": [65535, 0], "at last and then indifferent": [65535, 0], "last and then indifferent and": [65535, 0], "and then indifferent and absent": [65535, 0], "then indifferent and absent minded": [65535, 0], "indifferent and absent minded his": [65535, 0], "and absent minded his head": [65535, 0], "absent minded his head nodded": [65535, 0], "minded his head nodded and": [65535, 0], "his head nodded and little": [65535, 0], "head nodded and little by": [65535, 0], "nodded and little by little": [65535, 0], "and little by little his": [65535, 0], "little by little his chin": [65535, 0], "by little his chin descended": [65535, 0], "little his chin descended and": [65535, 0], "his chin descended and touched": [65535, 0], "chin descended and touched the": [65535, 0], "descended and touched the enemy": [65535, 0], "and touched the enemy who": [65535, 0], "touched the enemy who seized": [65535, 0], "the enemy who seized it": [65535, 0], "enemy who seized it there": [65535, 0], "who seized it there was": [65535, 0], "seized it there was a": [65535, 0], "it there was a sharp": [65535, 0], "there was a sharp yelp": [65535, 0], "was a sharp yelp a": [65535, 0], "a sharp yelp a flirt": [65535, 0], "sharp yelp a flirt of": [65535, 0], "yelp a flirt of the": [65535, 0], "a flirt of the poodle's": [65535, 0], "flirt of the poodle's head": [65535, 0], "of the poodle's head and": [65535, 0], "the poodle's head and the": [65535, 0], "poodle's head and the beetle": [65535, 0], "head and the beetle fell": [65535, 0], "and the beetle fell a": [65535, 0], "the beetle fell a couple": [65535, 0], "beetle fell a couple of": [65535, 0], "fell a couple of yards": [65535, 0], "a couple of yards away": [65535, 0], "couple of yards away and": [65535, 0], "of yards away and lit": [65535, 0], "yards away and lit on": [65535, 0], "away and lit on its": [65535, 0], "lit on its back once": [65535, 0], "on its back once more": [65535, 0], "its back once more the": [65535, 0], "back once more the neighboring": [65535, 0], "once more the neighboring spectators": [65535, 0], "more the neighboring spectators shook": [65535, 0], "the neighboring spectators shook with": [65535, 0], "neighboring spectators shook with a": [65535, 0], "spectators shook with a gentle": [65535, 0], "shook with a gentle inward": [65535, 0], "with a gentle inward joy": [65535, 0], "a gentle inward joy several": [65535, 0], "gentle inward joy several faces": [65535, 0], "inward joy several faces went": [65535, 0], "joy several faces went behind": [65535, 0], "several faces went behind fans": [65535, 0], "faces went behind fans and": [65535, 0], "went behind fans and handkerchiefs": [65535, 0], "behind fans and handkerchiefs and": [65535, 0], "fans and handkerchiefs and tom": [65535, 0], "and handkerchiefs and tom was": [65535, 0], "handkerchiefs and tom was entirely": [65535, 0], "and tom was entirely happy": [65535, 0], "tom was entirely happy the": [65535, 0], "was entirely happy the dog": [65535, 0], "entirely happy the dog looked": [65535, 0], "happy the dog looked foolish": [65535, 0], "the dog looked foolish and": [65535, 0], "dog looked foolish and probably": [65535, 0], "looked foolish and probably felt": [65535, 0], "foolish and probably felt so": [65535, 0], "and probably felt so but": [65535, 0], "probably felt so but there": [65535, 0], "felt so but there was": [65535, 0], "so but there was resentment": [65535, 0], "but there was resentment in": [65535, 0], "there was resentment in his": [65535, 0], "was resentment in his heart": [65535, 0], "resentment in his heart too": [65535, 0], "in his heart too and": [65535, 0], "his heart too and a": [65535, 0], "heart too and a craving": [65535, 0], "too and a craving for": [65535, 0], "and a craving for revenge": [65535, 0], "a craving for revenge so": [65535, 0], "craving for revenge so he": [65535, 0], "for revenge so he went": [65535, 0], "revenge so he went to": [65535, 0], "so he went to the": [65535, 0], "he went to the beetle": [65535, 0], "went to the beetle and": [65535, 0], "to the beetle and began": [65535, 0], "the beetle and began a": [65535, 0], "beetle and began a wary": [65535, 0], "and began a wary attack": [65535, 0], "began a wary attack on": [65535, 0], "a wary attack on it": [65535, 0], "wary attack on it again": [65535, 0], "attack on it again jumping": [65535, 0], "on it again jumping at": [65535, 0], "it again jumping at it": [65535, 0], "again jumping at it from": [65535, 0], "jumping at it from every": [65535, 0], "at it from every point": [65535, 0], "it from every point of": [65535, 0], "from every point of a": [65535, 0], "every point of a circle": [65535, 0], "point of a circle lighting": [65535, 0], "of a circle lighting with": [65535, 0], "a circle lighting with his": [65535, 0], "circle lighting with his fore": [65535, 0], "lighting with his fore paws": [65535, 0], "with his fore paws within": [65535, 0], "his fore paws within an": [65535, 0], "fore paws within an inch": [65535, 0], "paws within an inch of": [65535, 0], "within an inch of the": [65535, 0], "an inch of the creature": [65535, 0], "inch of the creature making": [65535, 0], "of the creature making even": [65535, 0], "the creature making even closer": [65535, 0], "creature making even closer snatches": [65535, 0], "making even closer snatches at": [65535, 0], "even closer snatches at it": [65535, 0], "closer snatches at it with": [65535, 0], "snatches at it with his": [65535, 0], "at it with his teeth": [65535, 0], "it with his teeth and": [65535, 0], "with his teeth and jerking": [65535, 0], "his teeth and jerking his": [65535, 0], "teeth and jerking his head": [65535, 0], "and jerking his head till": [65535, 0], "jerking his head till his": [65535, 0], "his head till his ears": [65535, 0], "head till his ears flapped": [65535, 0], "till his ears flapped again": [65535, 0], "his ears flapped again but": [65535, 0], "ears flapped again but he": [65535, 0], "flapped again but he grew": [65535, 0], "again but he grew tired": [65535, 0], "but he grew tired once": [65535, 0], "he grew tired once more": [65535, 0], "grew tired once more after": [65535, 0], "tired once more after a": [65535, 0], "once more after a while": [65535, 0], "more after a while tried": [65535, 0], "after a while tried to": [65535, 0], "a while tried to amuse": [65535, 0], "while tried to amuse himself": [65535, 0], "tried to amuse himself with": [65535, 0], "to amuse himself with a": [65535, 0], "amuse himself with a fly": [65535, 0], "himself with a fly but": [65535, 0], "with a fly but found": [65535, 0], "a fly but found no": [65535, 0], "fly but found no relief": [65535, 0], "but found no relief followed": [65535, 0], "found no relief followed an": [65535, 0], "no relief followed an ant": [65535, 0], "relief followed an ant around": [65535, 0], "followed an ant around with": [65535, 0], "an ant around with his": [65535, 0], "ant around with his nose": [65535, 0], "around with his nose close": [65535, 0], "with his nose close to": [65535, 0], "his nose close to the": [65535, 0], "nose close to the floor": [65535, 0], "close to the floor and": [65535, 0], "to the floor and quickly": [65535, 0], "the floor and quickly wearied": [65535, 0], "floor and quickly wearied of": [65535, 0], "and quickly wearied of that": [65535, 0], "quickly wearied of that yawned": [65535, 0], "wearied of that yawned sighed": [65535, 0], "of that yawned sighed forgot": [65535, 0], "that yawned sighed forgot the": [65535, 0], "yawned sighed forgot the beetle": [65535, 0], "sighed forgot the beetle entirely": [65535, 0], "forgot the beetle entirely and": [65535, 0], "the beetle entirely and sat": [65535, 0], "beetle entirely and sat down": [65535, 0], "entirely and sat down on": [65535, 0], "and sat down on it": [65535, 0], "sat down on it then": [65535, 0], "down on it then there": [65535, 0], "on it then there was": [65535, 0], "it then there was a": [65535, 0], "then there was a wild": [65535, 0], "there was a wild yelp": [65535, 0], "was a wild yelp of": [65535, 0], "a wild yelp of agony": [65535, 0], "wild yelp of agony and": [65535, 0], "yelp of agony and the": [65535, 0], "of agony and the poodle": [65535, 0], "agony and the poodle went": [65535, 0], "and the poodle went sailing": [65535, 0], "the poodle went sailing up": [65535, 0], "poodle went sailing up the": [65535, 0], "went sailing up the aisle": [65535, 0], "sailing up the aisle the": [65535, 0], "up the aisle the yelps": [65535, 0], "the aisle the yelps continued": [65535, 0], "aisle the yelps continued and": [65535, 0], "the yelps continued and so": [65535, 0], "yelps continued and so did": [65535, 0], "continued and so did the": [65535, 0], "and so did the dog": [65535, 0], "so did the dog he": [65535, 0], "did the dog he crossed": [65535, 0], "the dog he crossed the": [65535, 0], "dog he crossed the house": [65535, 0], "he crossed the house in": [65535, 0], "crossed the house in front": [65535, 0], "the house in front of": [65535, 0], "house in front of the": [65535, 0], "in front of the altar": [65535, 0], "front of the altar he": [65535, 0], "of the altar he flew": [65535, 0], "the altar he flew down": [65535, 0], "altar he flew down the": [65535, 0], "he flew down the other": [65535, 0], "flew down the other aisle": [65535, 0], "down the other aisle he": [65535, 0], "the other aisle he crossed": [65535, 0], "other aisle he crossed before": [65535, 0], "aisle he crossed before the": [65535, 0], "he crossed before the doors": [65535, 0], "crossed before the doors he": [65535, 0], "before the doors he clamored": [65535, 0], "the doors he clamored up": [65535, 0], "doors he clamored up the": [65535, 0], "he clamored up the home": [65535, 0], "clamored up the home stretch": [65535, 0], "up the home stretch his": [65535, 0], "the home stretch his anguish": [65535, 0], "home stretch his anguish grew": [65535, 0], "stretch his anguish grew with": [65535, 0], "his anguish grew with his": [65535, 0], "anguish grew with his progress": [65535, 0], "grew with his progress till": [65535, 0], "with his progress till presently": [65535, 0], "his progress till presently he": [65535, 0], "progress till presently he was": [65535, 0], "till presently he was but": [65535, 0], "presently he was but a": [65535, 0], "he was but a woolly": [65535, 0], "was but a woolly comet": [65535, 0], "but a woolly comet moving": [65535, 0], "a woolly comet moving in": [65535, 0], "woolly comet moving in its": [65535, 0], "comet moving in its orbit": [65535, 0], "moving in its orbit with": [65535, 0], "in its orbit with the": [65535, 0], "its orbit with the gleam": [65535, 0], "orbit with the gleam and": [65535, 0], "with the gleam and the": [65535, 0], "the gleam and the speed": [65535, 0], "gleam and the speed of": [65535, 0], "and the speed of light": [65535, 0], "the speed of light at": [65535, 0], "speed of light at last": [65535, 0], "of light at last the": [65535, 0], "light at last the frantic": [65535, 0], "at last the frantic sufferer": [65535, 0], "last the frantic sufferer sheered": [65535, 0], "the frantic sufferer sheered from": [65535, 0], "frantic sufferer sheered from its": [65535, 0], "sufferer sheered from its course": [65535, 0], "sheered from its course and": [65535, 0], "from its course and sprang": [65535, 0], "its course and sprang into": [65535, 0], "course and sprang into its": [65535, 0], "and sprang into its master's": [65535, 0], "sprang into its master's lap": [65535, 0], "into its master's lap he": [65535, 0], "its master's lap he flung": [65535, 0], "master's lap he flung it": [65535, 0], "lap he flung it out": [65535, 0], "he flung it out of": [65535, 0], "flung it out of the": [65535, 0], "it out of the window": [65535, 0], "out of the window and": [65535, 0], "of the window and the": [65535, 0], "the window and the voice": [65535, 0], "window and the voice of": [65535, 0], "and the voice of distress": [65535, 0], "the voice of distress quickly": [65535, 0], "voice of distress quickly thinned": [65535, 0], "of distress quickly thinned away": [65535, 0], "distress quickly thinned away and": [65535, 0], "quickly thinned away and died": [65535, 0], "thinned away and died in": [65535, 0], "away and died in the": [65535, 0], "and died in the distance": [65535, 0], "died in the distance by": [65535, 0], "in the distance by this": [65535, 0], "the distance by this time": [65535, 0], "distance by this time the": [65535, 0], "by this time the whole": [65535, 0], "this time the whole church": [65535, 0], "time the whole church was": [65535, 0], "the whole church was red": [65535, 0], "whole church was red faced": [65535, 0], "church was red faced and": [65535, 0], "was red faced and suffocating": [65535, 0], "red faced and suffocating with": [65535, 0], "faced and suffocating with suppressed": [65535, 0], "and suffocating with suppressed laughter": [65535, 0], "suffocating with suppressed laughter and": [65535, 0], "with suppressed laughter and the": [65535, 0], "suppressed laughter and the sermon": [65535, 0], "laughter and the sermon had": [65535, 0], "and the sermon had come": [65535, 0], "the sermon had come to": [65535, 0], "sermon had come to a": [65535, 0], "had come to a dead": [65535, 0], "come to a dead standstill": [65535, 0], "to a dead standstill the": [65535, 0], "a dead standstill the discourse": [65535, 0], "dead standstill the discourse was": [65535, 0], "standstill the discourse was resumed": [65535, 0], "the discourse was resumed presently": [65535, 0], "discourse was resumed presently but": [65535, 0], "was resumed presently but it": [65535, 0], "resumed presently but it went": [65535, 0], "presently but it went lame": [65535, 0], "but it went lame and": [65535, 0], "it went lame and halting": [65535, 0], "went lame and halting all": [65535, 0], "lame and halting all possibility": [65535, 0], "and halting all possibility of": [65535, 0], "halting all possibility of impressiveness": [65535, 0], "all possibility of impressiveness being": [65535, 0], "possibility of impressiveness being at": [65535, 0], "of impressiveness being at an": [65535, 0], "impressiveness being at an end": [65535, 0], "being at an end for": [65535, 0], "at an end for even": [65535, 0], "an end for even the": [65535, 0], "end for even the gravest": [65535, 0], "for even the gravest sentiments": [65535, 0], "even the gravest sentiments were": [65535, 0], "the gravest sentiments were constantly": [65535, 0], "gravest sentiments were constantly being": [65535, 0], "sentiments were constantly being received": [65535, 0], "were constantly being received with": [65535, 0], "constantly being received with a": [65535, 0], "being received with a smothered": [65535, 0], "received with a smothered burst": [65535, 0], "with a smothered burst of": [65535, 0], "a smothered burst of unholy": [65535, 0], "smothered burst of unholy mirth": [65535, 0], "burst of unholy mirth under": [65535, 0], "of unholy mirth under cover": [65535, 0], "unholy mirth under cover of": [65535, 0], "mirth under cover of some": [65535, 0], "under cover of some remote": [65535, 0], "cover of some remote pew": [65535, 0], "of some remote pew back": [65535, 0], "some remote pew back as": [65535, 0], "remote pew back as if": [65535, 0], "pew back as if the": [65535, 0], "back as if the poor": [65535, 0], "as if the poor parson": [65535, 0], "if the poor parson had": [65535, 0], "the poor parson had said": [65535, 0], "poor parson had said a": [65535, 0], "parson had said a rarely": [65535, 0], "had said a rarely facetious": [65535, 0], "said a rarely facetious thing": [65535, 0], "a rarely facetious thing it": [65535, 0], "rarely facetious thing it was": [65535, 0], "facetious thing it was a": [65535, 0], "thing it was a genuine": [65535, 0], "it was a genuine relief": [65535, 0], "was a genuine relief to": [65535, 0], "a genuine relief to the": [65535, 0], "genuine relief to the whole": [65535, 0], "relief to the whole congregation": [65535, 0], "to the whole congregation when": [65535, 0], "the whole congregation when the": [65535, 0], "whole congregation when the ordeal": [65535, 0], "congregation when the ordeal was": [65535, 0], "when the ordeal was over": [65535, 0], "the ordeal was over and": [65535, 0], "ordeal was over and the": [65535, 0], "was over and the benediction": [65535, 0], "over and the benediction pronounced": [65535, 0], "and the benediction pronounced tom": [65535, 0], "the benediction pronounced tom sawyer": [65535, 0], "benediction pronounced tom sawyer went": [65535, 0], "pronounced tom sawyer went home": [65535, 0], "tom sawyer went home quite": [65535, 0], "sawyer went home quite cheerful": [65535, 0], "went home quite cheerful thinking": [65535, 0], "home quite cheerful thinking to": [65535, 0], "quite cheerful thinking to himself": [65535, 0], "cheerful thinking to himself that": [65535, 0], "thinking to himself that there": [65535, 0], "to himself that there was": [65535, 0], "himself that there was some": [65535, 0], "that there was some satisfaction": [65535, 0], "there was some satisfaction about": [65535, 0], "was some satisfaction about divine": [65535, 0], "some satisfaction about divine service": [65535, 0], "satisfaction about divine service when": [65535, 0], "about divine service when there": [65535, 0], "divine service when there was": [65535, 0], "service when there was a": [65535, 0], "when there was a bit": [65535, 0], "there was a bit of": [65535, 0], "was a bit of variety": [65535, 0], "a bit of variety in": [65535, 0], "bit of variety in it": [65535, 0], "of variety in it he": [65535, 0], "variety in it he had": [65535, 0], "in it he had but": [65535, 0], "it he had but one": [65535, 0], "he had but one marring": [65535, 0], "had but one marring thought": [65535, 0], "but one marring thought he": [65535, 0], "one marring thought he was": [65535, 0], "marring thought he was willing": [65535, 0], "thought he was willing that": [65535, 0], "he was willing that the": [65535, 0], "was willing that the dog": [65535, 0], "willing that the dog should": [65535, 0], "that the dog should play": [65535, 0], "the dog should play with": [65535, 0], "dog should play with his": [65535, 0], "should play with his pinchbug": [65535, 0], "play with his pinchbug but": [65535, 0], "with his pinchbug but he": [65535, 0], "his pinchbug but he did": [65535, 0], "pinchbug but he did not": [65535, 0], "but he did not think": [65535, 0], "he did not think it": [65535, 0], "did not think it was": [65535, 0], "not think it was upright": [65535, 0], "think it was upright in": [65535, 0], "it was upright in him": [65535, 0], "was upright in him to": [65535, 0], "upright in him to carry": [65535, 0], "in him to carry it": [65535, 0], "him to carry it off": [65535, 0], "about half past ten the cracked": [65535, 0], "half past ten the cracked bell": [65535, 0], "past ten the cracked bell of": [65535, 0], "ten the cracked bell of the": [65535, 0], "the cracked bell of the small": [65535, 0], "cracked bell of the small church": [65535, 0], "bell of the small church began": [65535, 0], "of the small church began to": [65535, 0], "the small church began to ring": [65535, 0], "small church began to ring and": [65535, 0], "church began to ring and presently": [65535, 0], "began to ring and presently the": [65535, 0], "to ring and presently the people": [65535, 0], "ring and presently the people began": [65535, 0], "and presently the people began to": [65535, 0], "presently the people began to gather": [65535, 0], "the people began to gather for": [65535, 0], "people began to gather for the": [65535, 0], "began to gather for the morning": [65535, 0], "to gather for the morning sermon": [65535, 0], "gather for the morning sermon the": [65535, 0], "for the morning sermon the sunday": [65535, 0], "the morning sermon the sunday school": [65535, 0], "morning sermon the sunday school children": [65535, 0], "sermon the sunday school children distributed": [65535, 0], "the sunday school children distributed themselves": [65535, 0], "sunday school children distributed themselves about": [65535, 0], "school children distributed themselves about the": [65535, 0], "children distributed themselves about the house": [65535, 0], "distributed themselves about the house and": [65535, 0], "themselves about the house and occupied": [65535, 0], "about the house and occupied pews": [65535, 0], "the house and occupied pews with": [65535, 0], "house and occupied pews with their": [65535, 0], "and occupied pews with their parents": [65535, 0], "occupied pews with their parents so": [65535, 0], "pews with their parents so as": [65535, 0], "with their parents so as to": [65535, 0], "their parents so as to be": [65535, 0], "parents so as to be under": [65535, 0], "so as to be under supervision": [65535, 0], "as to be under supervision aunt": [65535, 0], "to be under supervision aunt polly": [65535, 0], "be under supervision aunt polly came": [65535, 0], "under supervision aunt polly came and": [65535, 0], "supervision aunt polly came and tom": [65535, 0], "aunt polly came and tom and": [65535, 0], "polly came and tom and sid": [65535, 0], "came and tom and sid and": [65535, 0], "and tom and sid and mary": [65535, 0], "tom and sid and mary sat": [65535, 0], "and sid and mary sat with": [65535, 0], "sid and mary sat with her": [65535, 0], "and mary sat with her tom": [65535, 0], "mary sat with her tom being": [65535, 0], "sat with her tom being placed": [65535, 0], "with her tom being placed next": [65535, 0], "her tom being placed next the": [65535, 0], "tom being placed next the aisle": [65535, 0], "being placed next the aisle in": [65535, 0], "placed next the aisle in order": [65535, 0], "next the aisle in order that": [65535, 0], "the aisle in order that he": [65535, 0], "aisle in order that he might": [65535, 0], "in order that he might be": [65535, 0], "order that he might be as": [65535, 0], "that he might be as far": [65535, 0], "he might be as far away": [65535, 0], "might be as far away from": [65535, 0], "be as far away from the": [65535, 0], "as far away from the open": [65535, 0], "far away from the open window": [65535, 0], "away from the open window and": [65535, 0], "from the open window and the": [65535, 0], "the open window and the seductive": [65535, 0], "open window and the seductive outside": [65535, 0], "window and the seductive outside summer": [65535, 0], "and the seductive outside summer scenes": [65535, 0], "the seductive outside summer scenes as": [65535, 0], "seductive outside summer scenes as possible": [65535, 0], "outside summer scenes as possible the": [65535, 0], "summer scenes as possible the crowd": [65535, 0], "scenes as possible the crowd filed": [65535, 0], "as possible the crowd filed up": [65535, 0], "possible the crowd filed up the": [65535, 0], "the crowd filed up the aisles": [65535, 0], "crowd filed up the aisles the": [65535, 0], "filed up the aisles the aged": [65535, 0], "up the aisles the aged and": [65535, 0], "the aisles the aged and needy": [65535, 0], "aisles the aged and needy postmaster": [65535, 0], "the aged and needy postmaster who": [65535, 0], "aged and needy postmaster who had": [65535, 0], "and needy postmaster who had seen": [65535, 0], "needy postmaster who had seen better": [65535, 0], "postmaster who had seen better days": [65535, 0], "who had seen better days the": [65535, 0], "had seen better days the mayor": [65535, 0], "seen better days the mayor and": [65535, 0], "better days the mayor and his": [65535, 0], "days the mayor and his wife": [65535, 0], "the mayor and his wife for": [65535, 0], "mayor and his wife for they": [65535, 0], "and his wife for they had": [65535, 0], "his wife for they had a": [65535, 0], "wife for they had a mayor": [65535, 0], "for they had a mayor there": [65535, 0], "they had a mayor there among": [65535, 0], "had a mayor there among other": [65535, 0], "a mayor there among other unnecessaries": [65535, 0], "mayor there among other unnecessaries the": [65535, 0], "there among other unnecessaries the justice": [65535, 0], "among other unnecessaries the justice of": [65535, 0], "other unnecessaries the justice of the": [65535, 0], "unnecessaries the justice of the peace": [65535, 0], "the justice of the peace the": [65535, 0], "justice of the peace the widow": [65535, 0], "of the peace the widow douglass": [65535, 0], "the peace the widow douglass fair": [65535, 0], "peace the widow douglass fair smart": [65535, 0], "the widow douglass fair smart and": [65535, 0], "widow douglass fair smart and forty": [65535, 0], "douglass fair smart and forty a": [65535, 0], "fair smart and forty a generous": [65535, 0], "smart and forty a generous good": [65535, 0], "and forty a generous good hearted": [65535, 0], "forty a generous good hearted soul": [65535, 0], "a generous good hearted soul and": [65535, 0], "generous good hearted soul and well": [65535, 0], "good hearted soul and well to": [65535, 0], "hearted soul and well to do": [65535, 0], "soul and well to do her": [65535, 0], "and well to do her hill": [65535, 0], "well to do her hill mansion": [65535, 0], "to do her hill mansion the": [65535, 0], "do her hill mansion the only": [65535, 0], "her hill mansion the only palace": [65535, 0], "hill mansion the only palace in": [65535, 0], "mansion the only palace in the": [65535, 0], "the only palace in the town": [65535, 0], "only palace in the town and": [65535, 0], "palace in the town and the": [65535, 0], "in the town and the most": [65535, 0], "the town and the most hospitable": [65535, 0], "town and the most hospitable and": [65535, 0], "and the most hospitable and much": [65535, 0], "the most hospitable and much the": [65535, 0], "most hospitable and much the most": [65535, 0], "hospitable and much the most lavish": [65535, 0], "and much the most lavish in": [65535, 0], "much the most lavish in the": [65535, 0], "the most lavish in the matter": [65535, 0], "most lavish in the matter of": [65535, 0], "lavish in the matter of festivities": [65535, 0], "in the matter of festivities that": [65535, 0], "the matter of festivities that st": [65535, 0], "matter of festivities that st petersburg": [65535, 0], "of festivities that st petersburg could": [65535, 0], "festivities that st petersburg could boast": [65535, 0], "that st petersburg could boast the": [65535, 0], "st petersburg could boast the bent": [65535, 0], "petersburg could boast the bent and": [65535, 0], "could boast the bent and venerable": [65535, 0], "boast the bent and venerable major": [65535, 0], "the bent and venerable major and": [65535, 0], "bent and venerable major and mrs": [65535, 0], "and venerable major and mrs ward": [65535, 0], "venerable major and mrs ward lawyer": [65535, 0], "major and mrs ward lawyer riverson": [65535, 0], "and mrs ward lawyer riverson the": [65535, 0], "mrs ward lawyer riverson the new": [65535, 0], "ward lawyer riverson the new notable": [65535, 0], "lawyer riverson the new notable from": [65535, 0], "riverson the new notable from a": [65535, 0], "the new notable from a distance": [65535, 0], "new notable from a distance next": [65535, 0], "notable from a distance next the": [65535, 0], "from a distance next the belle": [65535, 0], "a distance next the belle of": [65535, 0], "distance next the belle of the": [65535, 0], "next the belle of the village": [65535, 0], "the belle of the village followed": [65535, 0], "belle of the village followed by": [65535, 0], "of the village followed by a": [65535, 0], "the village followed by a troop": [65535, 0], "village followed by a troop of": [65535, 0], "followed by a troop of lawn": [65535, 0], "by a troop of lawn clad": [65535, 0], "a troop of lawn clad and": [65535, 0], "troop of lawn clad and ribbon": [65535, 0], "of lawn clad and ribbon decked": [65535, 0], "lawn clad and ribbon decked young": [65535, 0], "clad and ribbon decked young heart": [65535, 0], "and ribbon decked young heart breakers": [65535, 0], "ribbon decked young heart breakers then": [65535, 0], "decked young heart breakers then all": [65535, 0], "young heart breakers then all the": [65535, 0], "heart breakers then all the young": [65535, 0], "breakers then all the young clerks": [65535, 0], "then all the young clerks in": [65535, 0], "all the young clerks in town": [65535, 0], "the young clerks in town in": [65535, 0], "young clerks in town in a": [65535, 0], "clerks in town in a body": [65535, 0], "in town in a body for": [65535, 0], "town in a body for they": [65535, 0], "in a body for they had": [65535, 0], "a body for they had stood": [65535, 0], "body for they had stood in": [65535, 0], "for they had stood in the": [65535, 0], "they had stood in the vestibule": [65535, 0], "had stood in the vestibule sucking": [65535, 0], "stood in the vestibule sucking their": [65535, 0], "in the vestibule sucking their cane": [65535, 0], "the vestibule sucking their cane heads": [65535, 0], "vestibule sucking their cane heads a": [65535, 0], "sucking their cane heads a circling": [65535, 0], "their cane heads a circling wall": [65535, 0], "cane heads a circling wall of": [65535, 0], "heads a circling wall of oiled": [65535, 0], "a circling wall of oiled and": [65535, 0], "circling wall of oiled and simpering": [65535, 0], "wall of oiled and simpering admirers": [65535, 0], "of oiled and simpering admirers till": [65535, 0], "oiled and simpering admirers till the": [65535, 0], "and simpering admirers till the last": [65535, 0], "simpering admirers till the last girl": [65535, 0], "admirers till the last girl had": [65535, 0], "till the last girl had run": [65535, 0], "the last girl had run their": [65535, 0], "last girl had run their gantlet": [65535, 0], "girl had run their gantlet and": [65535, 0], "had run their gantlet and last": [65535, 0], "run their gantlet and last of": [65535, 0], "their gantlet and last of all": [65535, 0], "gantlet and last of all came": [65535, 0], "and last of all came the": [65535, 0], "last of all came the model": [65535, 0], "of all came the model boy": [65535, 0], "all came the model boy willie": [65535, 0], "came the model boy willie mufferson": [65535, 0], "the model boy willie mufferson taking": [65535, 0], "model boy willie mufferson taking as": [65535, 0], "boy willie mufferson taking as heedful": [65535, 0], "willie mufferson taking as heedful care": [65535, 0], "mufferson taking as heedful care of": [65535, 0], "taking as heedful care of his": [65535, 0], "as heedful care of his mother": [65535, 0], "heedful care of his mother as": [65535, 0], "care of his mother as if": [65535, 0], "of his mother as if she": [65535, 0], "his mother as if she were": [65535, 0], "mother as if she were cut": [65535, 0], "as if she were cut glass": [65535, 0], "if she were cut glass he": [65535, 0], "she were cut glass he always": [65535, 0], "were cut glass he always brought": [65535, 0], "cut glass he always brought his": [65535, 0], "glass he always brought his mother": [65535, 0], "he always brought his mother to": [65535, 0], "always brought his mother to church": [65535, 0], "brought his mother to church and": [65535, 0], "his mother to church and was": [65535, 0], "mother to church and was the": [65535, 0], "to church and was the pride": [65535, 0], "church and was the pride of": [65535, 0], "and was the pride of all": [65535, 0], "was the pride of all the": [65535, 0], "the pride of all the matrons": [65535, 0], "pride of all the matrons the": [65535, 0], "of all the matrons the boys": [65535, 0], "all the matrons the boys all": [65535, 0], "the matrons the boys all hated": [65535, 0], "matrons the boys all hated him": [65535, 0], "the boys all hated him he": [65535, 0], "boys all hated him he was": [65535, 0], "all hated him he was so": [65535, 0], "hated him he was so good": [65535, 0], "him he was so good and": [65535, 0], "he was so good and besides": [65535, 0], "was so good and besides he": [65535, 0], "so good and besides he had": [65535, 0], "good and besides he had been": [65535, 0], "and besides he had been thrown": [65535, 0], "besides he had been thrown up": [65535, 0], "he had been thrown up to": [65535, 0], "had been thrown up to them": [65535, 0], "been thrown up to them so": [65535, 0], "thrown up to them so much": [65535, 0], "up to them so much his": [65535, 0], "to them so much his white": [65535, 0], "them so much his white handkerchief": [65535, 0], "so much his white handkerchief was": [65535, 0], "much his white handkerchief was hanging": [65535, 0], "his white handkerchief was hanging out": [65535, 0], "white handkerchief was hanging out of": [65535, 0], "handkerchief was hanging out of his": [65535, 0], "was hanging out of his pocket": [65535, 0], "hanging out of his pocket behind": [65535, 0], "out of his pocket behind as": [65535, 0], "of his pocket behind as usual": [65535, 0], "his pocket behind as usual on": [65535, 0], "pocket behind as usual on sundays": [65535, 0], "behind as usual on sundays accidentally": [65535, 0], "as usual on sundays accidentally tom": [65535, 0], "usual on sundays accidentally tom had": [65535, 0], "on sundays accidentally tom had no": [65535, 0], "sundays accidentally tom had no handkerchief": [65535, 0], "accidentally tom had no handkerchief and": [65535, 0], "tom had no handkerchief and he": [65535, 0], "had no handkerchief and he looked": [65535, 0], "no handkerchief and he looked upon": [65535, 0], "handkerchief and he looked upon boys": [65535, 0], "and he looked upon boys who": [65535, 0], "he looked upon boys who had": [65535, 0], "looked upon boys who had as": [65535, 0], "upon boys who had as snobs": [65535, 0], "boys who had as snobs the": [65535, 0], "who had as snobs the congregation": [65535, 0], "had as snobs the congregation being": [65535, 0], "as snobs the congregation being fully": [65535, 0], "snobs the congregation being fully assembled": [65535, 0], "the congregation being fully assembled now": [65535, 0], "congregation being fully assembled now the": [65535, 0], "being fully assembled now the bell": [65535, 0], "fully assembled now the bell rang": [65535, 0], "assembled now the bell rang once": [65535, 0], "now the bell rang once more": [65535, 0], "the bell rang once more to": [65535, 0], "bell rang once more to warn": [65535, 0], "rang once more to warn laggards": [65535, 0], "once more to warn laggards and": [65535, 0], "more to warn laggards and stragglers": [65535, 0], "to warn laggards and stragglers and": [65535, 0], "warn laggards and stragglers and then": [65535, 0], "laggards and stragglers and then a": [65535, 0], "and stragglers and then a solemn": [65535, 0], "stragglers and then a solemn hush": [65535, 0], "and then a solemn hush fell": [65535, 0], "then a solemn hush fell upon": [65535, 0], "a solemn hush fell upon the": [65535, 0], "solemn hush fell upon the church": [65535, 0], "hush fell upon the church which": [65535, 0], "fell upon the church which was": [65535, 0], "upon the church which was only": [65535, 0], "the church which was only broken": [65535, 0], "church which was only broken by": [65535, 0], "which was only broken by the": [65535, 0], "was only broken by the tittering": [65535, 0], "only broken by the tittering and": [65535, 0], "broken by the tittering and whispering": [65535, 0], "by the tittering and whispering of": [65535, 0], "the tittering and whispering of the": [65535, 0], "tittering and whispering of the choir": [65535, 0], "and whispering of the choir in": [65535, 0], "whispering of the choir in the": [65535, 0], "of the choir in the gallery": [65535, 0], "the choir in the gallery the": [65535, 0], "choir in the gallery the choir": [65535, 0], "in the gallery the choir always": [65535, 0], "the gallery the choir always tittered": [65535, 0], "gallery the choir always tittered and": [65535, 0], "the choir always tittered and whispered": [65535, 0], "choir always tittered and whispered all": [65535, 0], "always tittered and whispered all through": [65535, 0], "tittered and whispered all through service": [65535, 0], "and whispered all through service there": [65535, 0], "whispered all through service there was": [65535, 0], "all through service there was once": [65535, 0], "through service there was once a": [65535, 0], "service there was once a church": [65535, 0], "there was once a church choir": [65535, 0], "was once a church choir that": [65535, 0], "once a church choir that was": [65535, 0], "a church choir that was not": [65535, 0], "church choir that was not ill": [65535, 0], "choir that was not ill bred": [65535, 0], "that was not ill bred but": [65535, 0], "was not ill bred but i": [65535, 0], "not ill bred but i have": [65535, 0], "ill bred but i have forgotten": [65535, 0], "bred but i have forgotten where": [65535, 0], "but i have forgotten where it": [65535, 0], "i have forgotten where it was": [65535, 0], "have forgotten where it was now": [65535, 0], "forgotten where it was now it": [65535, 0], "where it was now it was": [65535, 0], "it was now it was a": [65535, 0], "was now it was a great": [65535, 0], "now it was a great many": [65535, 0], "it was a great many years": [65535, 0], "was a great many years ago": [65535, 0], "a great many years ago and": [65535, 0], "great many years ago and i": [65535, 0], "many years ago and i can": [65535, 0], "years ago and i can scarcely": [65535, 0], "ago and i can scarcely remember": [65535, 0], "and i can scarcely remember anything": [65535, 0], "i can scarcely remember anything about": [65535, 0], "can scarcely remember anything about it": [65535, 0], "scarcely remember anything about it but": [65535, 0], "remember anything about it but i": [65535, 0], "anything about it but i think": [65535, 0], "about it but i think it": [65535, 0], "it but i think it was": [65535, 0], "but i think it was in": [65535, 0], "i think it was in some": [65535, 0], "think it was in some foreign": [65535, 0], "it was in some foreign country": [65535, 0], "was in some foreign country the": [65535, 0], "in some foreign country the minister": [65535, 0], "some foreign country the minister gave": [65535, 0], "foreign country the minister gave out": [65535, 0], "country the minister gave out the": [65535, 0], "the minister gave out the hymn": [65535, 0], "minister gave out the hymn and": [65535, 0], "gave out the hymn and read": [65535, 0], "out the hymn and read it": [65535, 0], "the hymn and read it through": [65535, 0], "hymn and read it through with": [65535, 0], "and read it through with a": [65535, 0], "read it through with a relish": [65535, 0], "it through with a relish in": [65535, 0], "through with a relish in a": [65535, 0], "with a relish in a peculiar": [65535, 0], "a relish in a peculiar style": [65535, 0], "relish in a peculiar style which": [65535, 0], "in a peculiar style which was": [65535, 0], "a peculiar style which was much": [65535, 0], "peculiar style which was much admired": [65535, 0], "style which was much admired in": [65535, 0], "which was much admired in that": [65535, 0], "was much admired in that part": [65535, 0], "much admired in that part of": [65535, 0], "admired in that part of the": [65535, 0], "in that part of the country": [65535, 0], "that part of the country his": [65535, 0], "part of the country his voice": [65535, 0], "of the country his voice began": [65535, 0], "the country his voice began on": [65535, 0], "country his voice began on a": [65535, 0], "his voice began on a medium": [65535, 0], "voice began on a medium key": [65535, 0], "began on a medium key and": [65535, 0], "on a medium key and climbed": [65535, 0], "a medium key and climbed steadily": [65535, 0], "medium key and climbed steadily up": [65535, 0], "key and climbed steadily up till": [65535, 0], "and climbed steadily up till it": [65535, 0], "climbed steadily up till it reached": [65535, 0], "steadily up till it reached a": [65535, 0], "up till it reached a certain": [65535, 0], "till it reached a certain point": [65535, 0], "it reached a certain point where": [65535, 0], "reached a certain point where it": [65535, 0], "a certain point where it bore": [65535, 0], "certain point where it bore with": [65535, 0], "point where it bore with strong": [65535, 0], "where it bore with strong emphasis": [65535, 0], "it bore with strong emphasis upon": [65535, 0], "bore with strong emphasis upon the": [65535, 0], "with strong emphasis upon the topmost": [65535, 0], "strong emphasis upon the topmost word": [65535, 0], "emphasis upon the topmost word and": [65535, 0], "upon the topmost word and then": [65535, 0], "the topmost word and then plunged": [65535, 0], "topmost word and then plunged down": [65535, 0], "word and then plunged down as": [65535, 0], "and then plunged down as if": [65535, 0], "then plunged down as if from": [65535, 0], "plunged down as if from a": [65535, 0], "down as if from a spring": [65535, 0], "as if from a spring board": [65535, 0], "if from a spring board shall": [65535, 0], "from a spring board shall i": [65535, 0], "a spring board shall i be": [65535, 0], "spring board shall i be car": [65535, 0], "board shall i be car ri": [65535, 0], "shall i be car ri ed": [65535, 0], "i be car ri ed toe": [65535, 0], "be car ri ed toe the": [65535, 0], "car ri ed toe the skies": [65535, 0], "ri ed toe the skies on": [65535, 0], "ed toe the skies on flow'ry": [65535, 0], "toe the skies on flow'ry beds": [65535, 0], "the skies on flow'ry beds of": [65535, 0], "skies on flow'ry beds of ease": [65535, 0], "on flow'ry beds of ease whilst": [65535, 0], "flow'ry beds of ease whilst others": [65535, 0], "beds of ease whilst others fight": [65535, 0], "of ease whilst others fight to": [65535, 0], "ease whilst others fight to win": [65535, 0], "whilst others fight to win the": [65535, 0], "others fight to win the prize": [65535, 0], "fight to win the prize and": [65535, 0], "to win the prize and sail": [65535, 0], "win the prize and sail thro'": [65535, 0], "the prize and sail thro' bloody": [65535, 0], "prize and sail thro' bloody seas": [65535, 0], "and sail thro' bloody seas he": [65535, 0], "sail thro' bloody seas he was": [65535, 0], "thro' bloody seas he was regarded": [65535, 0], "bloody seas he was regarded as": [65535, 0], "seas he was regarded as a": [65535, 0], "he was regarded as a wonderful": [65535, 0], "was regarded as a wonderful reader": [65535, 0], "regarded as a wonderful reader at": [65535, 0], "as a wonderful reader at church": [65535, 0], "a wonderful reader at church sociables": [65535, 0], "wonderful reader at church sociables he": [65535, 0], "reader at church sociables he was": [65535, 0], "at church sociables he was always": [65535, 0], "church sociables he was always called": [65535, 0], "sociables he was always called upon": [65535, 0], "he was always called upon to": [65535, 0], "was always called upon to read": [65535, 0], "always called upon to read poetry": [65535, 0], "called upon to read poetry and": [65535, 0], "upon to read poetry and when": [65535, 0], "to read poetry and when he": [65535, 0], "read poetry and when he was": [65535, 0], "poetry and when he was through": [65535, 0], "and when he was through the": [65535, 0], "when he was through the ladies": [65535, 0], "he was through the ladies would": [65535, 0], "was through the ladies would lift": [65535, 0], "through the ladies would lift up": [65535, 0], "the ladies would lift up their": [65535, 0], "ladies would lift up their hands": [65535, 0], "would lift up their hands and": [65535, 0], "lift up their hands and let": [65535, 0], "up their hands and let them": [65535, 0], "their hands and let them fall": [65535, 0], "hands and let them fall helplessly": [65535, 0], "and let them fall helplessly in": [65535, 0], "let them fall helplessly in their": [65535, 0], "them fall helplessly in their laps": [65535, 0], "fall helplessly in their laps and": [65535, 0], "helplessly in their laps and wall": [65535, 0], "in their laps and wall their": [65535, 0], "their laps and wall their eyes": [65535, 0], "laps and wall their eyes and": [65535, 0], "and wall their eyes and shake": [65535, 0], "wall their eyes and shake their": [65535, 0], "their eyes and shake their heads": [65535, 0], "eyes and shake their heads as": [65535, 0], "and shake their heads as much": [65535, 0], "shake their heads as much as": [65535, 0], "their heads as much as to": [65535, 0], "heads as much as to say": [65535, 0], "as much as to say words": [65535, 0], "much as to say words cannot": [65535, 0], "as to say words cannot express": [65535, 0], "to say words cannot express it": [65535, 0], "say words cannot express it it": [65535, 0], "words cannot express it it is": [65535, 0], "cannot express it it is too": [65535, 0], "express it it is too beautiful": [65535, 0], "it it is too beautiful too": [65535, 0], "it is too beautiful too beautiful": [65535, 0], "is too beautiful too beautiful for": [65535, 0], "too beautiful too beautiful for this": [65535, 0], "beautiful too beautiful for this mortal": [65535, 0], "too beautiful for this mortal earth": [65535, 0], "beautiful for this mortal earth after": [65535, 0], "for this mortal earth after the": [65535, 0], "this mortal earth after the hymn": [65535, 0], "mortal earth after the hymn had": [65535, 0], "earth after the hymn had been": [65535, 0], "after the hymn had been sung": [65535, 0], "the hymn had been sung the": [65535, 0], "hymn had been sung the rev": [65535, 0], "had been sung the rev mr": [65535, 0], "been sung the rev mr sprague": [65535, 0], "sung the rev mr sprague turned": [65535, 0], "the rev mr sprague turned himself": [65535, 0], "rev mr sprague turned himself into": [65535, 0], "mr sprague turned himself into a": [65535, 0], "sprague turned himself into a bulletin": [65535, 0], "turned himself into a bulletin board": [65535, 0], "himself into a bulletin board and": [65535, 0], "into a bulletin board and read": [65535, 0], "a bulletin board and read off": [65535, 0], "bulletin board and read off notices": [65535, 0], "board and read off notices of": [65535, 0], "and read off notices of meetings": [65535, 0], "read off notices of meetings and": [65535, 0], "off notices of meetings and societies": [65535, 0], "notices of meetings and societies and": [65535, 0], "of meetings and societies and things": [65535, 0], "meetings and societies and things till": [65535, 0], "and societies and things till it": [65535, 0], "societies and things till it seemed": [65535, 0], "and things till it seemed that": [65535, 0], "things till it seemed that the": [65535, 0], "till it seemed that the list": [65535, 0], "it seemed that the list would": [65535, 0], "seemed that the list would stretch": [65535, 0], "that the list would stretch out": [65535, 0], "the list would stretch out to": [65535, 0], "list would stretch out to the": [65535, 0], "would stretch out to the crack": [65535, 0], "stretch out to the crack of": [65535, 0], "out to the crack of doom": [65535, 0], "to the crack of doom a": [65535, 0], "the crack of doom a queer": [65535, 0], "crack of doom a queer custom": [65535, 0], "of doom a queer custom which": [65535, 0], "doom a queer custom which is": [65535, 0], "a queer custom which is still": [65535, 0], "queer custom which is still kept": [65535, 0], "custom which is still kept up": [65535, 0], "which is still kept up in": [65535, 0], "is still kept up in america": [65535, 0], "still kept up in america even": [65535, 0], "kept up in america even in": [65535, 0], "up in america even in cities": [65535, 0], "in america even in cities away": [65535, 0], "america even in cities away here": [65535, 0], "even in cities away here in": [65535, 0], "in cities away here in this": [65535, 0], "cities away here in this age": [65535, 0], "away here in this age of": [65535, 0], "here in this age of abundant": [65535, 0], "in this age of abundant newspapers": [65535, 0], "this age of abundant newspapers often": [65535, 0], "age of abundant newspapers often the": [65535, 0], "of abundant newspapers often the less": [65535, 0], "abundant newspapers often the less there": [65535, 0], "newspapers often the less there is": [65535, 0], "often the less there is to": [65535, 0], "the less there is to justify": [65535, 0], "less there is to justify a": [65535, 0], "there is to justify a traditional": [65535, 0], "is to justify a traditional custom": [65535, 0], "to justify a traditional custom the": [65535, 0], "justify a traditional custom the harder": [65535, 0], "a traditional custom the harder it": [65535, 0], "traditional custom the harder it is": [65535, 0], "custom the harder it is to": [65535, 0], "the harder it is to get": [65535, 0], "harder it is to get rid": [65535, 0], "it is to get rid of": [65535, 0], "is to get rid of it": [65535, 0], "to get rid of it and": [65535, 0], "get rid of it and now": [65535, 0], "rid of it and now the": [65535, 0], "of it and now the minister": [65535, 0], "it and now the minister prayed": [65535, 0], "and now the minister prayed a": [65535, 0], "now the minister prayed a good": [65535, 0], "the minister prayed a good generous": [65535, 0], "minister prayed a good generous prayer": [65535, 0], "prayed a good generous prayer it": [65535, 0], "a good generous prayer it was": [65535, 0], "good generous prayer it was and": [65535, 0], "generous prayer it was and went": [65535, 0], "prayer it was and went into": [65535, 0], "it was and went into details": [65535, 0], "was and went into details it": [65535, 0], "and went into details it pleaded": [65535, 0], "went into details it pleaded for": [65535, 0], "into details it pleaded for the": [65535, 0], "details it pleaded for the church": [65535, 0], "it pleaded for the church and": [65535, 0], "pleaded for the church and the": [65535, 0], "for the church and the little": [65535, 0], "the church and the little children": [65535, 0], "church and the little children of": [65535, 0], "and the little children of the": [65535, 0], "the little children of the church": [65535, 0], "little children of the church for": [65535, 0], "children of the church for the": [65535, 0], "of the church for the other": [65535, 0], "the church for the other churches": [65535, 0], "church for the other churches of": [65535, 0], "for the other churches of the": [65535, 0], "the other churches of the village": [65535, 0], "other churches of the village for": [65535, 0], "churches of the village for the": [65535, 0], "of the village for the village": [65535, 0], "the village for the village itself": [65535, 0], "village for the village itself for": [65535, 0], "for the village itself for the": [65535, 0], "the village itself for the county": [65535, 0], "village itself for the county for": [65535, 0], "itself for the county for the": [65535, 0], "for the county for the state": [65535, 0], "the county for the state for": [65535, 0], "county for the state for the": [65535, 0], "for the state for the state": [65535, 0], "the state for the state officers": [65535, 0], "state for the state officers for": [65535, 0], "for the state officers for the": [65535, 0], "the state officers for the united": [65535, 0], "state officers for the united states": [65535, 0], "officers for the united states for": [65535, 0], "for the united states for the": [65535, 0], "the united states for the churches": [65535, 0], "united states for the churches of": [65535, 0], "states for the churches of the": [65535, 0], "for the churches of the united": [65535, 0], "the churches of the united states": [65535, 0], "churches of the united states for": [65535, 0], "of the united states for congress": [65535, 0], "the united states for congress for": [65535, 0], "united states for congress for the": [65535, 0], "states for congress for the president": [65535, 0], "for congress for the president for": [65535, 0], "congress for the president for the": [65535, 0], "for the president for the officers": [65535, 0], "the president for the officers of": [65535, 0], "president for the officers of the": [65535, 0], "for the officers of the government": [65535, 0], "the officers of the government for": [65535, 0], "officers of the government for poor": [65535, 0], "of the government for poor sailors": [65535, 0], "the government for poor sailors tossed": [65535, 0], "government for poor sailors tossed by": [65535, 0], "for poor sailors tossed by stormy": [65535, 0], "poor sailors tossed by stormy seas": [65535, 0], "sailors tossed by stormy seas for": [65535, 0], "tossed by stormy seas for the": [65535, 0], "by stormy seas for the oppressed": [65535, 0], "stormy seas for the oppressed millions": [65535, 0], "seas for the oppressed millions groaning": [65535, 0], "for the oppressed millions groaning under": [65535, 0], "the oppressed millions groaning under the": [65535, 0], "oppressed millions groaning under the heel": [65535, 0], "millions groaning under the heel of": [65535, 0], "groaning under the heel of european": [65535, 0], "under the heel of european monarchies": [65535, 0], "the heel of european monarchies and": [65535, 0], "heel of european monarchies and oriental": [65535, 0], "of european monarchies and oriental despotisms": [65535, 0], "european monarchies and oriental despotisms for": [65535, 0], "monarchies and oriental despotisms for such": [65535, 0], "and oriental despotisms for such as": [65535, 0], "oriental despotisms for such as have": [65535, 0], "despotisms for such as have the": [65535, 0], "for such as have the light": [65535, 0], "such as have the light and": [65535, 0], "as have the light and the": [65535, 0], "have the light and the good": [65535, 0], "the light and the good tidings": [65535, 0], "light and the good tidings and": [65535, 0], "and the good tidings and yet": [65535, 0], "the good tidings and yet have": [65535, 0], "good tidings and yet have not": [65535, 0], "tidings and yet have not eyes": [65535, 0], "and yet have not eyes to": [65535, 0], "yet have not eyes to see": [65535, 0], "have not eyes to see nor": [65535, 0], "not eyes to see nor ears": [65535, 0], "eyes to see nor ears to": [65535, 0], "to see nor ears to hear": [65535, 0], "see nor ears to hear withal": [65535, 0], "nor ears to hear withal for": [65535, 0], "ears to hear withal for the": [65535, 0], "to hear withal for the heathen": [65535, 0], "hear withal for the heathen in": [65535, 0], "withal for the heathen in the": [65535, 0], "for the heathen in the far": [65535, 0], "the heathen in the far islands": [65535, 0], "heathen in the far islands of": [65535, 0], "in the far islands of the": [65535, 0], "the far islands of the sea": [65535, 0], "far islands of the sea and": [65535, 0], "islands of the sea and closed": [65535, 0], "of the sea and closed with": [65535, 0], "the sea and closed with a": [65535, 0], "sea and closed with a supplication": [65535, 0], "and closed with a supplication that": [65535, 0], "closed with a supplication that the": [65535, 0], "with a supplication that the words": [65535, 0], "a supplication that the words he": [65535, 0], "supplication that the words he was": [65535, 0], "that the words he was about": [65535, 0], "the words he was about to": [65535, 0], "words he was about to speak": [65535, 0], "he was about to speak might": [65535, 0], "was about to speak might find": [65535, 0], "about to speak might find grace": [65535, 0], "to speak might find grace and": [65535, 0], "speak might find grace and favor": [65535, 0], "might find grace and favor and": [65535, 0], "find grace and favor and be": [65535, 0], "grace and favor and be as": [65535, 0], "and favor and be as seed": [65535, 0], "favor and be as seed sown": [65535, 0], "and be as seed sown in": [65535, 0], "be as seed sown in fertile": [65535, 0], "as seed sown in fertile ground": [65535, 0], "seed sown in fertile ground yielding": [65535, 0], "sown in fertile ground yielding in": [65535, 0], "in fertile ground yielding in time": [65535, 0], "fertile ground yielding in time a": [65535, 0], "ground yielding in time a grateful": [65535, 0], "yielding in time a grateful harvest": [65535, 0], "in time a grateful harvest of": [65535, 0], "time a grateful harvest of good": [65535, 0], "a grateful harvest of good amen": [65535, 0], "grateful harvest of good amen there": [65535, 0], "harvest of good amen there was": [65535, 0], "of good amen there was a": [65535, 0], "good amen there was a rustling": [65535, 0], "amen there was a rustling of": [65535, 0], "there was a rustling of dresses": [65535, 0], "was a rustling of dresses and": [65535, 0], "a rustling of dresses and the": [65535, 0], "rustling of dresses and the standing": [65535, 0], "of dresses and the standing congregation": [65535, 0], "dresses and the standing congregation sat": [65535, 0], "and the standing congregation sat down": [65535, 0], "the standing congregation sat down the": [65535, 0], "standing congregation sat down the boy": [65535, 0], "congregation sat down the boy whose": [65535, 0], "sat down the boy whose history": [65535, 0], "down the boy whose history this": [65535, 0], "the boy whose history this book": [65535, 0], "boy whose history this book relates": [65535, 0], "whose history this book relates did": [65535, 0], "history this book relates did not": [65535, 0], "this book relates did not enjoy": [65535, 0], "book relates did not enjoy the": [65535, 0], "relates did not enjoy the prayer": [65535, 0], "did not enjoy the prayer he": [65535, 0], "not enjoy the prayer he only": [65535, 0], "enjoy the prayer he only endured": [65535, 0], "the prayer he only endured it": [65535, 0], "prayer he only endured it if": [65535, 0], "he only endured it if he": [65535, 0], "only endured it if he even": [65535, 0], "endured it if he even did": [65535, 0], "it if he even did that": [65535, 0], "if he even did that much": [65535, 0], "he even did that much he": [65535, 0], "even did that much he was": [65535, 0], "did that much he was restive": [65535, 0], "that much he was restive all": [65535, 0], "much he was restive all through": [65535, 0], "he was restive all through it": [65535, 0], "was restive all through it he": [65535, 0], "restive all through it he kept": [65535, 0], "all through it he kept tally": [65535, 0], "through it he kept tally of": [65535, 0], "it he kept tally of the": [65535, 0], "he kept tally of the details": [65535, 0], "kept tally of the details of": [65535, 0], "tally of the details of the": [65535, 0], "of the details of the prayer": [65535, 0], "the details of the prayer unconsciously": [65535, 0], "details of the prayer unconsciously for": [65535, 0], "of the prayer unconsciously for he": [65535, 0], "the prayer unconsciously for he was": [65535, 0], "prayer unconsciously for he was not": [65535, 0], "unconsciously for he was not listening": [65535, 0], "for he was not listening but": [65535, 0], "he was not listening but he": [65535, 0], "was not listening but he knew": [65535, 0], "not listening but he knew the": [65535, 0], "listening but he knew the ground": [65535, 0], "but he knew the ground of": [65535, 0], "he knew the ground of old": [65535, 0], "knew the ground of old and": [65535, 0], "the ground of old and the": [65535, 0], "ground of old and the clergyman's": [65535, 0], "of old and the clergyman's regular": [65535, 0], "old and the clergyman's regular route": [65535, 0], "and the clergyman's regular route over": [65535, 0], "the clergyman's regular route over it": [65535, 0], "clergyman's regular route over it and": [65535, 0], "regular route over it and when": [65535, 0], "route over it and when a": [65535, 0], "over it and when a little": [65535, 0], "it and when a little trifle": [65535, 0], "and when a little trifle of": [65535, 0], "when a little trifle of new": [65535, 0], "a little trifle of new matter": [65535, 0], "little trifle of new matter was": [65535, 0], "trifle of new matter was interlarded": [65535, 0], "of new matter was interlarded his": [65535, 0], "new matter was interlarded his ear": [65535, 0], "matter was interlarded his ear detected": [65535, 0], "was interlarded his ear detected it": [65535, 0], "interlarded his ear detected it and": [65535, 0], "his ear detected it and his": [65535, 0], "ear detected it and his whole": [65535, 0], "detected it and his whole nature": [65535, 0], "it and his whole nature resented": [65535, 0], "and his whole nature resented it": [65535, 0], "his whole nature resented it he": [65535, 0], "whole nature resented it he considered": [65535, 0], "nature resented it he considered additions": [65535, 0], "resented it he considered additions unfair": [65535, 0], "it he considered additions unfair and": [65535, 0], "he considered additions unfair and scoundrelly": [65535, 0], "considered additions unfair and scoundrelly in": [65535, 0], "additions unfair and scoundrelly in the": [65535, 0], "unfair and scoundrelly in the midst": [65535, 0], "and scoundrelly in the midst of": [65535, 0], "scoundrelly in the midst of the": [65535, 0], "in the midst of the prayer": [65535, 0], "the midst of the prayer a": [65535, 0], "midst of the prayer a fly": [65535, 0], "of the prayer a fly had": [65535, 0], "the prayer a fly had lit": [65535, 0], "prayer a fly had lit on": [65535, 0], "a fly had lit on the": [65535, 0], "fly had lit on the back": [65535, 0], "had lit on the back of": [65535, 0], "lit on the back of the": [65535, 0], "on the back of the pew": [65535, 0], "the back of the pew in": [65535, 0], "back of the pew in front": [65535, 0], "of the pew in front of": [65535, 0], "the pew in front of him": [65535, 0], "pew in front of him and": [65535, 0], "in front of him and tortured": [65535, 0], "front of him and tortured his": [65535, 0], "of him and tortured his spirit": [65535, 0], "him and tortured his spirit by": [65535, 0], "and tortured his spirit by calmly": [65535, 0], "tortured his spirit by calmly rubbing": [65535, 0], "his spirit by calmly rubbing its": [65535, 0], "spirit by calmly rubbing its hands": [65535, 0], "by calmly rubbing its hands together": [65535, 0], "calmly rubbing its hands together embracing": [65535, 0], "rubbing its hands together embracing its": [65535, 0], "its hands together embracing its head": [65535, 0], "hands together embracing its head with": [65535, 0], "together embracing its head with its": [65535, 0], "embracing its head with its arms": [65535, 0], "its head with its arms and": [65535, 0], "head with its arms and polishing": [65535, 0], "with its arms and polishing it": [65535, 0], "its arms and polishing it so": [65535, 0], "arms and polishing it so vigorously": [65535, 0], "and polishing it so vigorously that": [65535, 0], "polishing it so vigorously that it": [65535, 0], "it so vigorously that it seemed": [65535, 0], "so vigorously that it seemed to": [65535, 0], "vigorously that it seemed to almost": [65535, 0], "that it seemed to almost part": [65535, 0], "it seemed to almost part company": [65535, 0], "seemed to almost part company with": [65535, 0], "to almost part company with the": [65535, 0], "almost part company with the body": [65535, 0], "part company with the body and": [65535, 0], "company with the body and the": [65535, 0], "with the body and the slender": [65535, 0], "the body and the slender thread": [65535, 0], "body and the slender thread of": [65535, 0], "and the slender thread of a": [65535, 0], "the slender thread of a neck": [65535, 0], "slender thread of a neck was": [65535, 0], "thread of a neck was exposed": [65535, 0], "of a neck was exposed to": [65535, 0], "a neck was exposed to view": [65535, 0], "neck was exposed to view scraping": [65535, 0], "was exposed to view scraping its": [65535, 0], "exposed to view scraping its wings": [65535, 0], "to view scraping its wings with": [65535, 0], "view scraping its wings with its": [65535, 0], "scraping its wings with its hind": [65535, 0], "its wings with its hind legs": [65535, 0], "wings with its hind legs and": [65535, 0], "with its hind legs and smoothing": [65535, 0], "its hind legs and smoothing them": [65535, 0], "hind legs and smoothing them to": [65535, 0], "legs and smoothing them to its": [65535, 0], "and smoothing them to its body": [65535, 0], "smoothing them to its body as": [65535, 0], "them to its body as if": [65535, 0], "to its body as if they": [65535, 0], "its body as if they had": [65535, 0], "body as if they had been": [65535, 0], "as if they had been coat": [65535, 0], "if they had been coat tails": [65535, 0], "they had been coat tails going": [65535, 0], "had been coat tails going through": [65535, 0], "been coat tails going through its": [65535, 0], "coat tails going through its whole": [65535, 0], "tails going through its whole toilet": [65535, 0], "going through its whole toilet as": [65535, 0], "through its whole toilet as tranquilly": [65535, 0], "its whole toilet as tranquilly as": [65535, 0], "whole toilet as tranquilly as if": [65535, 0], "toilet as tranquilly as if it": [65535, 0], "as tranquilly as if it knew": [65535, 0], "tranquilly as if it knew it": [65535, 0], "as if it knew it was": [65535, 0], "if it knew it was perfectly": [65535, 0], "it knew it was perfectly safe": [65535, 0], "knew it was perfectly safe as": [65535, 0], "it was perfectly safe as indeed": [65535, 0], "was perfectly safe as indeed it": [65535, 0], "perfectly safe as indeed it was": [65535, 0], "safe as indeed it was for": [65535, 0], "as indeed it was for as": [65535, 0], "indeed it was for as sorely": [65535, 0], "it was for as sorely as": [65535, 0], "was for as sorely as tom's": [65535, 0], "for as sorely as tom's hands": [65535, 0], "as sorely as tom's hands itched": [65535, 0], "sorely as tom's hands itched to": [65535, 0], "as tom's hands itched to grab": [65535, 0], "tom's hands itched to grab for": [65535, 0], "hands itched to grab for it": [65535, 0], "itched to grab for it they": [65535, 0], "to grab for it they did": [65535, 0], "grab for it they did not": [65535, 0], "for it they did not dare": [65535, 0], "it they did not dare he": [65535, 0], "they did not dare he believed": [65535, 0], "did not dare he believed his": [65535, 0], "not dare he believed his soul": [65535, 0], "dare he believed his soul would": [65535, 0], "he believed his soul would be": [65535, 0], "believed his soul would be instantly": [65535, 0], "his soul would be instantly destroyed": [65535, 0], "soul would be instantly destroyed if": [65535, 0], "would be instantly destroyed if he": [65535, 0], "be instantly destroyed if he did": [65535, 0], "instantly destroyed if he did such": [65535, 0], "destroyed if he did such a": [65535, 0], "if he did such a thing": [65535, 0], "he did such a thing while": [65535, 0], "did such a thing while the": [65535, 0], "such a thing while the prayer": [65535, 0], "a thing while the prayer was": [65535, 0], "thing while the prayer was going": [65535, 0], "while the prayer was going on": [65535, 0], "the prayer was going on but": [65535, 0], "prayer was going on but with": [65535, 0], "was going on but with the": [65535, 0], "going on but with the closing": [65535, 0], "on but with the closing sentence": [65535, 0], "but with the closing sentence his": [65535, 0], "with the closing sentence his hand": [65535, 0], "the closing sentence his hand began": [65535, 0], "closing sentence his hand began to": [65535, 0], "sentence his hand began to curve": [65535, 0], "his hand began to curve and": [65535, 0], "hand began to curve and steal": [65535, 0], "began to curve and steal forward": [65535, 0], "to curve and steal forward and": [65535, 0], "curve and steal forward and the": [65535, 0], "and steal forward and the instant": [65535, 0], "steal forward and the instant the": [65535, 0], "forward and the instant the amen": [65535, 0], "and the instant the amen was": [65535, 0], "the instant the amen was out": [65535, 0], "instant the amen was out the": [65535, 0], "the amen was out the fly": [65535, 0], "amen was out the fly was": [65535, 0], "was out the fly was a": [65535, 0], "out the fly was a prisoner": [65535, 0], "the fly was a prisoner of": [65535, 0], "fly was a prisoner of war": [65535, 0], "was a prisoner of war his": [65535, 0], "a prisoner of war his aunt": [65535, 0], "prisoner of war his aunt detected": [65535, 0], "of war his aunt detected the": [65535, 0], "war his aunt detected the act": [65535, 0], "his aunt detected the act and": [65535, 0], "aunt detected the act and made": [65535, 0], "detected the act and made him": [65535, 0], "the act and made him let": [65535, 0], "act and made him let it": [65535, 0], "and made him let it go": [65535, 0], "made him let it go the": [65535, 0], "him let it go the minister": [65535, 0], "let it go the minister gave": [65535, 0], "it go the minister gave out": [65535, 0], "go the minister gave out his": [65535, 0], "the minister gave out his text": [65535, 0], "minister gave out his text and": [65535, 0], "gave out his text and droned": [65535, 0], "out his text and droned along": [65535, 0], "his text and droned along monotonously": [65535, 0], "text and droned along monotonously through": [65535, 0], "and droned along monotonously through an": [65535, 0], "droned along monotonously through an argument": [65535, 0], "along monotonously through an argument that": [65535, 0], "monotonously through an argument that was": [65535, 0], "through an argument that was so": [65535, 0], "an argument that was so prosy": [65535, 0], "argument that was so prosy that": [65535, 0], "that was so prosy that many": [65535, 0], "was so prosy that many a": [65535, 0], "so prosy that many a head": [65535, 0], "prosy that many a head by": [65535, 0], "that many a head by and": [65535, 0], "many a head by and by": [65535, 0], "a head by and by began": [65535, 0], "head by and by began to": [65535, 0], "by and by began to nod": [65535, 0], "and by began to nod and": [65535, 0], "by began to nod and yet": [65535, 0], "began to nod and yet it": [65535, 0], "to nod and yet it was": [65535, 0], "nod and yet it was an": [65535, 0], "and yet it was an argument": [65535, 0], "yet it was an argument that": [65535, 0], "it was an argument that dealt": [65535, 0], "was an argument that dealt in": [65535, 0], "an argument that dealt in limitless": [65535, 0], "argument that dealt in limitless fire": [65535, 0], "that dealt in limitless fire and": [65535, 0], "dealt in limitless fire and brimstone": [65535, 0], "in limitless fire and brimstone and": [65535, 0], "limitless fire and brimstone and thinned": [65535, 0], "fire and brimstone and thinned the": [65535, 0], "and brimstone and thinned the predestined": [65535, 0], "brimstone and thinned the predestined elect": [65535, 0], "and thinned the predestined elect down": [65535, 0], "thinned the predestined elect down to": [65535, 0], "the predestined elect down to a": [65535, 0], "predestined elect down to a company": [65535, 0], "elect down to a company so": [65535, 0], "down to a company so small": [65535, 0], "to a company so small as": [65535, 0], "a company so small as to": [65535, 0], "company so small as to be": [65535, 0], "so small as to be hardly": [65535, 0], "small as to be hardly worth": [65535, 0], "as to be hardly worth the": [65535, 0], "to be hardly worth the saving": [65535, 0], "be hardly worth the saving tom": [65535, 0], "hardly worth the saving tom counted": [65535, 0], "worth the saving tom counted the": [65535, 0], "the saving tom counted the pages": [65535, 0], "saving tom counted the pages of": [65535, 0], "tom counted the pages of the": [65535, 0], "counted the pages of the sermon": [65535, 0], "the pages of the sermon after": [65535, 0], "pages of the sermon after church": [65535, 0], "of the sermon after church he": [65535, 0], "the sermon after church he always": [65535, 0], "sermon after church he always knew": [65535, 0], "after church he always knew how": [65535, 0], "church he always knew how many": [65535, 0], "he always knew how many pages": [65535, 0], "always knew how many pages there": [65535, 0], "knew how many pages there had": [65535, 0], "how many pages there had been": [65535, 0], "many pages there had been but": [65535, 0], "pages there had been but he": [65535, 0], "there had been but he seldom": [65535, 0], "had been but he seldom knew": [65535, 0], "been but he seldom knew anything": [65535, 0], "but he seldom knew anything else": [65535, 0], "he seldom knew anything else about": [65535, 0], "seldom knew anything else about the": [65535, 0], "knew anything else about the discourse": [65535, 0], "anything else about the discourse however": [65535, 0], "else about the discourse however this": [65535, 0], "about the discourse however this time": [65535, 0], "the discourse however this time he": [65535, 0], "discourse however this time he was": [65535, 0], "however this time he was really": [65535, 0], "this time he was really interested": [65535, 0], "time he was really interested for": [65535, 0], "he was really interested for a": [65535, 0], "was really interested for a little": [65535, 0], "really interested for a little while": [65535, 0], "interested for a little while the": [65535, 0], "for a little while the minister": [65535, 0], "a little while the minister made": [65535, 0], "little while the minister made a": [65535, 0], "while the minister made a grand": [65535, 0], "the minister made a grand and": [65535, 0], "minister made a grand and moving": [65535, 0], "made a grand and moving picture": [65535, 0], "a grand and moving picture of": [65535, 0], "grand and moving picture of the": [65535, 0], "and moving picture of the assembling": [65535, 0], "moving picture of the assembling together": [65535, 0], "picture of the assembling together of": [65535, 0], "of the assembling together of the": [65535, 0], "the assembling together of the world's": [65535, 0], "assembling together of the world's hosts": [65535, 0], "together of the world's hosts at": [65535, 0], "of the world's hosts at the": [65535, 0], "the world's hosts at the millennium": [65535, 0], "world's hosts at the millennium when": [65535, 0], "hosts at the millennium when the": [65535, 0], "at the millennium when the lion": [65535, 0], "the millennium when the lion and": [65535, 0], "millennium when the lion and the": [65535, 0], "when the lion and the lamb": [65535, 0], "the lion and the lamb should": [65535, 0], "lion and the lamb should lie": [65535, 0], "and the lamb should lie down": [65535, 0], "the lamb should lie down together": [65535, 0], "lamb should lie down together and": [65535, 0], "should lie down together and a": [65535, 0], "lie down together and a little": [65535, 0], "down together and a little child": [65535, 0], "together and a little child should": [65535, 0], "and a little child should lead": [65535, 0], "a little child should lead them": [65535, 0], "little child should lead them but": [65535, 0], "child should lead them but the": [65535, 0], "should lead them but the pathos": [65535, 0], "lead them but the pathos the": [65535, 0], "them but the pathos the lesson": [65535, 0], "but the pathos the lesson the": [65535, 0], "the pathos the lesson the moral": [65535, 0], "pathos the lesson the moral of": [65535, 0], "the lesson the moral of the": [65535, 0], "lesson the moral of the great": [65535, 0], "the moral of the great spectacle": [65535, 0], "moral of the great spectacle were": [65535, 0], "of the great spectacle were lost": [65535, 0], "the great spectacle were lost upon": [65535, 0], "great spectacle were lost upon the": [65535, 0], "spectacle were lost upon the boy": [65535, 0], "were lost upon the boy he": [65535, 0], "lost upon the boy he only": [65535, 0], "upon the boy he only thought": [65535, 0], "the boy he only thought of": [65535, 0], "boy he only thought of the": [65535, 0], "he only thought of the conspicuousness": [65535, 0], "only thought of the conspicuousness of": [65535, 0], "thought of the conspicuousness of the": [65535, 0], "of the conspicuousness of the principal": [65535, 0], "the conspicuousness of the principal character": [65535, 0], "conspicuousness of the principal character before": [65535, 0], "of the principal character before the": [65535, 0], "the principal character before the on": [65535, 0], "principal character before the on looking": [65535, 0], "character before the on looking nations": [65535, 0], "before the on looking nations his": [65535, 0], "the on looking nations his face": [65535, 0], "on looking nations his face lit": [65535, 0], "looking nations his face lit with": [65535, 0], "nations his face lit with the": [65535, 0], "his face lit with the thought": [65535, 0], "face lit with the thought and": [65535, 0], "lit with the thought and he": [65535, 0], "with the thought and he said": [65535, 0], "the thought and he said to": [65535, 0], "thought and he said to himself": [65535, 0], "and he said to himself that": [65535, 0], "he said to himself that he": [65535, 0], "said to himself that he wished": [65535, 0], "to himself that he wished he": [65535, 0], "himself that he wished he could": [65535, 0], "that he wished he could be": [65535, 0], "he wished he could be that": [65535, 0], "wished he could be that child": [65535, 0], "he could be that child if": [65535, 0], "could be that child if it": [65535, 0], "be that child if it was": [65535, 0], "that child if it was a": [65535, 0], "child if it was a tame": [65535, 0], "if it was a tame lion": [65535, 0], "it was a tame lion now": [65535, 0], "was a tame lion now he": [65535, 0], "a tame lion now he lapsed": [65535, 0], "tame lion now he lapsed into": [65535, 0], "lion now he lapsed into suffering": [65535, 0], "now he lapsed into suffering again": [65535, 0], "he lapsed into suffering again as": [65535, 0], "lapsed into suffering again as the": [65535, 0], "into suffering again as the dry": [65535, 0], "suffering again as the dry argument": [65535, 0], "again as the dry argument was": [65535, 0], "as the dry argument was resumed": [65535, 0], "the dry argument was resumed presently": [65535, 0], "dry argument was resumed presently he": [65535, 0], "argument was resumed presently he bethought": [65535, 0], "was resumed presently he bethought him": [65535, 0], "resumed presently he bethought him of": [65535, 0], "presently he bethought him of a": [65535, 0], "he bethought him of a treasure": [65535, 0], "bethought him of a treasure he": [65535, 0], "him of a treasure he had": [65535, 0], "of a treasure he had and": [65535, 0], "a treasure he had and got": [65535, 0], "treasure he had and got it": [65535, 0], "he had and got it out": [65535, 0], "had and got it out it": [65535, 0], "and got it out it was": [65535, 0], "got it out it was a": [65535, 0], "it out it was a large": [65535, 0], "out it was a large black": [65535, 0], "it was a large black beetle": [65535, 0], "was a large black beetle with": [65535, 0], "a large black beetle with formidable": [65535, 0], "large black beetle with formidable jaws": [65535, 0], "black beetle with formidable jaws a": [65535, 0], "beetle with formidable jaws a pinchbug": [65535, 0], "with formidable jaws a pinchbug he": [65535, 0], "formidable jaws a pinchbug he called": [65535, 0], "jaws a pinchbug he called it": [65535, 0], "a pinchbug he called it it": [65535, 0], "pinchbug he called it it was": [65535, 0], "he called it it was in": [65535, 0], "called it it was in a": [65535, 0], "it it was in a percussion": [65535, 0], "it was in a percussion cap": [65535, 0], "was in a percussion cap box": [65535, 0], "in a percussion cap box the": [65535, 0], "a percussion cap box the first": [65535, 0], "percussion cap box the first thing": [65535, 0], "cap box the first thing the": [65535, 0], "box the first thing the beetle": [65535, 0], "the first thing the beetle did": [65535, 0], "first thing the beetle did was": [65535, 0], "thing the beetle did was to": [65535, 0], "the beetle did was to take": [65535, 0], "beetle did was to take him": [65535, 0], "did was to take him by": [65535, 0], "was to take him by the": [65535, 0], "to take him by the finger": [65535, 0], "take him by the finger a": [65535, 0], "him by the finger a natural": [65535, 0], "by the finger a natural fillip": [65535, 0], "the finger a natural fillip followed": [65535, 0], "finger a natural fillip followed the": [65535, 0], "a natural fillip followed the beetle": [65535, 0], "natural fillip followed the beetle went": [65535, 0], "fillip followed the beetle went floundering": [65535, 0], "followed the beetle went floundering into": [65535, 0], "the beetle went floundering into the": [65535, 0], "beetle went floundering into the aisle": [65535, 0], "went floundering into the aisle and": [65535, 0], "floundering into the aisle and lit": [65535, 0], "into the aisle and lit on": [65535, 0], "the aisle and lit on its": [65535, 0], "aisle and lit on its back": [65535, 0], "and lit on its back and": [65535, 0], "lit on its back and the": [65535, 0], "on its back and the hurt": [65535, 0], "its back and the hurt finger": [65535, 0], "back and the hurt finger went": [65535, 0], "and the hurt finger went into": [65535, 0], "the hurt finger went into the": [65535, 0], "hurt finger went into the boy's": [65535, 0], "finger went into the boy's mouth": [65535, 0], "went into the boy's mouth the": [65535, 0], "into the boy's mouth the beetle": [65535, 0], "the boy's mouth the beetle lay": [65535, 0], "boy's mouth the beetle lay there": [65535, 0], "mouth the beetle lay there working": [65535, 0], "the beetle lay there working its": [65535, 0], "beetle lay there working its helpless": [65535, 0], "lay there working its helpless legs": [65535, 0], "there working its helpless legs unable": [65535, 0], "working its helpless legs unable to": [65535, 0], "its helpless legs unable to turn": [65535, 0], "helpless legs unable to turn over": [65535, 0], "legs unable to turn over tom": [65535, 0], "unable to turn over tom eyed": [65535, 0], "to turn over tom eyed it": [65535, 0], "turn over tom eyed it and": [65535, 0], "over tom eyed it and longed": [65535, 0], "tom eyed it and longed for": [65535, 0], "eyed it and longed for it": [65535, 0], "it and longed for it but": [65535, 0], "and longed for it but it": [65535, 0], "longed for it but it was": [65535, 0], "for it but it was safe": [65535, 0], "it but it was safe out": [65535, 0], "but it was safe out of": [65535, 0], "it was safe out of his": [65535, 0], "was safe out of his reach": [65535, 0], "safe out of his reach other": [65535, 0], "out of his reach other people": [65535, 0], "of his reach other people uninterested": [65535, 0], "his reach other people uninterested in": [65535, 0], "reach other people uninterested in the": [65535, 0], "other people uninterested in the sermon": [65535, 0], "people uninterested in the sermon found": [65535, 0], "uninterested in the sermon found relief": [65535, 0], "in the sermon found relief in": [65535, 0], "the sermon found relief in the": [65535, 0], "sermon found relief in the beetle": [65535, 0], "found relief in the beetle and": [65535, 0], "relief in the beetle and they": [65535, 0], "in the beetle and they eyed": [65535, 0], "the beetle and they eyed it": [65535, 0], "beetle and they eyed it too": [65535, 0], "and they eyed it too presently": [65535, 0], "they eyed it too presently a": [65535, 0], "eyed it too presently a vagrant": [65535, 0], "it too presently a vagrant poodle": [65535, 0], "too presently a vagrant poodle dog": [65535, 0], "presently a vagrant poodle dog came": [65535, 0], "a vagrant poodle dog came idling": [65535, 0], "vagrant poodle dog came idling along": [65535, 0], "poodle dog came idling along sad": [65535, 0], "dog came idling along sad at": [65535, 0], "came idling along sad at heart": [65535, 0], "idling along sad at heart lazy": [65535, 0], "along sad at heart lazy with": [65535, 0], "sad at heart lazy with the": [65535, 0], "at heart lazy with the summer": [65535, 0], "heart lazy with the summer softness": [65535, 0], "lazy with the summer softness and": [65535, 0], "with the summer softness and the": [65535, 0], "the summer softness and the quiet": [65535, 0], "summer softness and the quiet weary": [65535, 0], "softness and the quiet weary of": [65535, 0], "and the quiet weary of captivity": [65535, 0], "the quiet weary of captivity sighing": [65535, 0], "quiet weary of captivity sighing for": [65535, 0], "weary of captivity sighing for change": [65535, 0], "of captivity sighing for change he": [65535, 0], "captivity sighing for change he spied": [65535, 0], "sighing for change he spied the": [65535, 0], "for change he spied the beetle": [65535, 0], "change he spied the beetle the": [65535, 0], "he spied the beetle the drooping": [65535, 0], "spied the beetle the drooping tail": [65535, 0], "the beetle the drooping tail lifted": [65535, 0], "beetle the drooping tail lifted and": [65535, 0], "the drooping tail lifted and wagged": [65535, 0], "drooping tail lifted and wagged he": [65535, 0], "tail lifted and wagged he surveyed": [65535, 0], "lifted and wagged he surveyed the": [65535, 0], "and wagged he surveyed the prize": [65535, 0], "wagged he surveyed the prize walked": [65535, 0], "he surveyed the prize walked around": [65535, 0], "surveyed the prize walked around it": [65535, 0], "the prize walked around it smelt": [65535, 0], "prize walked around it smelt at": [65535, 0], "walked around it smelt at it": [65535, 0], "around it smelt at it from": [65535, 0], "it smelt at it from a": [65535, 0], "smelt at it from a safe": [65535, 0], "at it from a safe distance": [65535, 0], "it from a safe distance walked": [65535, 0], "from a safe distance walked around": [65535, 0], "a safe distance walked around it": [65535, 0], "safe distance walked around it again": [65535, 0], "distance walked around it again grew": [65535, 0], "walked around it again grew bolder": [65535, 0], "around it again grew bolder and": [65535, 0], "it again grew bolder and took": [65535, 0], "again grew bolder and took a": [65535, 0], "grew bolder and took a closer": [65535, 0], "bolder and took a closer smell": [65535, 0], "and took a closer smell then": [65535, 0], "took a closer smell then lifted": [65535, 0], "a closer smell then lifted his": [65535, 0], "closer smell then lifted his lip": [65535, 0], "smell then lifted his lip and": [65535, 0], "then lifted his lip and made": [65535, 0], "lifted his lip and made a": [65535, 0], "his lip and made a gingerly": [65535, 0], "lip and made a gingerly snatch": [65535, 0], "and made a gingerly snatch at": [65535, 0], "made a gingerly snatch at it": [65535, 0], "a gingerly snatch at it just": [65535, 0], "gingerly snatch at it just missing": [65535, 0], "snatch at it just missing it": [65535, 0], "at it just missing it made": [65535, 0], "it just missing it made another": [65535, 0], "just missing it made another and": [65535, 0], "missing it made another and another": [65535, 0], "it made another and another began": [65535, 0], "made another and another began to": [65535, 0], "another and another began to enjoy": [65535, 0], "and another began to enjoy the": [65535, 0], "another began to enjoy the diversion": [65535, 0], "began to enjoy the diversion subsided": [65535, 0], "to enjoy the diversion subsided to": [65535, 0], "enjoy the diversion subsided to his": [65535, 0], "the diversion subsided to his stomach": [65535, 0], "diversion subsided to his stomach with": [65535, 0], "subsided to his stomach with the": [65535, 0], "to his stomach with the beetle": [65535, 0], "his stomach with the beetle between": [65535, 0], "stomach with the beetle between his": [65535, 0], "with the beetle between his paws": [65535, 0], "the beetle between his paws and": [65535, 0], "beetle between his paws and continued": [65535, 0], "between his paws and continued his": [65535, 0], "his paws and continued his experiments": [65535, 0], "paws and continued his experiments grew": [65535, 0], "and continued his experiments grew weary": [65535, 0], "continued his experiments grew weary at": [65535, 0], "his experiments grew weary at last": [65535, 0], "experiments grew weary at last and": [65535, 0], "grew weary at last and then": [65535, 0], "weary at last and then indifferent": [65535, 0], "at last and then indifferent and": [65535, 0], "last and then indifferent and absent": [65535, 0], "and then indifferent and absent minded": [65535, 0], "then indifferent and absent minded his": [65535, 0], "indifferent and absent minded his head": [65535, 0], "and absent minded his head nodded": [65535, 0], "absent minded his head nodded and": [65535, 0], "minded his head nodded and little": [65535, 0], "his head nodded and little by": [65535, 0], "head nodded and little by little": [65535, 0], "nodded and little by little his": [65535, 0], "and little by little his chin": [65535, 0], "little by little his chin descended": [65535, 0], "by little his chin descended and": [65535, 0], "little his chin descended and touched": [65535, 0], "his chin descended and touched the": [65535, 0], "chin descended and touched the enemy": [65535, 0], "descended and touched the enemy who": [65535, 0], "and touched the enemy who seized": [65535, 0], "touched the enemy who seized it": [65535, 0], "the enemy who seized it there": [65535, 0], "enemy who seized it there was": [65535, 0], "who seized it there was a": [65535, 0], "seized it there was a sharp": [65535, 0], "it there was a sharp yelp": [65535, 0], "there was a sharp yelp a": [65535, 0], "was a sharp yelp a flirt": [65535, 0], "a sharp yelp a flirt of": [65535, 0], "sharp yelp a flirt of the": [65535, 0], "yelp a flirt of the poodle's": [65535, 0], "a flirt of the poodle's head": [65535, 0], "flirt of the poodle's head and": [65535, 0], "of the poodle's head and the": [65535, 0], "the poodle's head and the beetle": [65535, 0], "poodle's head and the beetle fell": [65535, 0], "head and the beetle fell a": [65535, 0], "and the beetle fell a couple": [65535, 0], "the beetle fell a couple of": [65535, 0], "beetle fell a couple of yards": [65535, 0], "fell a couple of yards away": [65535, 0], "a couple of yards away and": [65535, 0], "couple of yards away and lit": [65535, 0], "of yards away and lit on": [65535, 0], "yards away and lit on its": [65535, 0], "away and lit on its back": [65535, 0], "and lit on its back once": [65535, 0], "lit on its back once more": [65535, 0], "on its back once more the": [65535, 0], "its back once more the neighboring": [65535, 0], "back once more the neighboring spectators": [65535, 0], "once more the neighboring spectators shook": [65535, 0], "more the neighboring spectators shook with": [65535, 0], "the neighboring spectators shook with a": [65535, 0], "neighboring spectators shook with a gentle": [65535, 0], "spectators shook with a gentle inward": [65535, 0], "shook with a gentle inward joy": [65535, 0], "with a gentle inward joy several": [65535, 0], "a gentle inward joy several faces": [65535, 0], "gentle inward joy several faces went": [65535, 0], "inward joy several faces went behind": [65535, 0], "joy several faces went behind fans": [65535, 0], "several faces went behind fans and": [65535, 0], "faces went behind fans and handkerchiefs": [65535, 0], "went behind fans and handkerchiefs and": [65535, 0], "behind fans and handkerchiefs and tom": [65535, 0], "fans and handkerchiefs and tom was": [65535, 0], "and handkerchiefs and tom was entirely": [65535, 0], "handkerchiefs and tom was entirely happy": [65535, 0], "and tom was entirely happy the": [65535, 0], "tom was entirely happy the dog": [65535, 0], "was entirely happy the dog looked": [65535, 0], "entirely happy the dog looked foolish": [65535, 0], "happy the dog looked foolish and": [65535, 0], "the dog looked foolish and probably": [65535, 0], "dog looked foolish and probably felt": [65535, 0], "looked foolish and probably felt so": [65535, 0], "foolish and probably felt so but": [65535, 0], "and probably felt so but there": [65535, 0], "probably felt so but there was": [65535, 0], "felt so but there was resentment": [65535, 0], "so but there was resentment in": [65535, 0], "but there was resentment in his": [65535, 0], "there was resentment in his heart": [65535, 0], "was resentment in his heart too": [65535, 0], "resentment in his heart too and": [65535, 0], "in his heart too and a": [65535, 0], "his heart too and a craving": [65535, 0], "heart too and a craving for": [65535, 0], "too and a craving for revenge": [65535, 0], "and a craving for revenge so": [65535, 0], "a craving for revenge so he": [65535, 0], "craving for revenge so he went": [65535, 0], "for revenge so he went to": [65535, 0], "revenge so he went to the": [65535, 0], "so he went to the beetle": [65535, 0], "he went to the beetle and": [65535, 0], "went to the beetle and began": [65535, 0], "to the beetle and began a": [65535, 0], "the beetle and began a wary": [65535, 0], "beetle and began a wary attack": [65535, 0], "and began a wary attack on": [65535, 0], "began a wary attack on it": [65535, 0], "a wary attack on it again": [65535, 0], "wary attack on it again jumping": [65535, 0], "attack on it again jumping at": [65535, 0], "on it again jumping at it": [65535, 0], "it again jumping at it from": [65535, 0], "again jumping at it from every": [65535, 0], "jumping at it from every point": [65535, 0], "at it from every point of": [65535, 0], "it from every point of a": [65535, 0], "from every point of a circle": [65535, 0], "every point of a circle lighting": [65535, 0], "point of a circle lighting with": [65535, 0], "of a circle lighting with his": [65535, 0], "a circle lighting with his fore": [65535, 0], "circle lighting with his fore paws": [65535, 0], "lighting with his fore paws within": [65535, 0], "with his fore paws within an": [65535, 0], "his fore paws within an inch": [65535, 0], "fore paws within an inch of": [65535, 0], "paws within an inch of the": [65535, 0], "within an inch of the creature": [65535, 0], "an inch of the creature making": [65535, 0], "inch of the creature making even": [65535, 0], "of the creature making even closer": [65535, 0], "the creature making even closer snatches": [65535, 0], "creature making even closer snatches at": [65535, 0], "making even closer snatches at it": [65535, 0], "even closer snatches at it with": [65535, 0], "closer snatches at it with his": [65535, 0], "snatches at it with his teeth": [65535, 0], "at it with his teeth and": [65535, 0], "it with his teeth and jerking": [65535, 0], "with his teeth and jerking his": [65535, 0], "his teeth and jerking his head": [65535, 0], "teeth and jerking his head till": [65535, 0], "and jerking his head till his": [65535, 0], "jerking his head till his ears": [65535, 0], "his head till his ears flapped": [65535, 0], "head till his ears flapped again": [65535, 0], "till his ears flapped again but": [65535, 0], "his ears flapped again but he": [65535, 0], "ears flapped again but he grew": [65535, 0], "flapped again but he grew tired": [65535, 0], "again but he grew tired once": [65535, 0], "but he grew tired once more": [65535, 0], "he grew tired once more after": [65535, 0], "grew tired once more after a": [65535, 0], "tired once more after a while": [65535, 0], "once more after a while tried": [65535, 0], "more after a while tried to": [65535, 0], "after a while tried to amuse": [65535, 0], "a while tried to amuse himself": [65535, 0], "while tried to amuse himself with": [65535, 0], "tried to amuse himself with a": [65535, 0], "to amuse himself with a fly": [65535, 0], "amuse himself with a fly but": [65535, 0], "himself with a fly but found": [65535, 0], "with a fly but found no": [65535, 0], "a fly but found no relief": [65535, 0], "fly but found no relief followed": [65535, 0], "but found no relief followed an": [65535, 0], "found no relief followed an ant": [65535, 0], "no relief followed an ant around": [65535, 0], "relief followed an ant around with": [65535, 0], "followed an ant around with his": [65535, 0], "an ant around with his nose": [65535, 0], "ant around with his nose close": [65535, 0], "around with his nose close to": [65535, 0], "with his nose close to the": [65535, 0], "his nose close to the floor": [65535, 0], "nose close to the floor and": [65535, 0], "close to the floor and quickly": [65535, 0], "to the floor and quickly wearied": [65535, 0], "the floor and quickly wearied of": [65535, 0], "floor and quickly wearied of that": [65535, 0], "and quickly wearied of that yawned": [65535, 0], "quickly wearied of that yawned sighed": [65535, 0], "wearied of that yawned sighed forgot": [65535, 0], "of that yawned sighed forgot the": [65535, 0], "that yawned sighed forgot the beetle": [65535, 0], "yawned sighed forgot the beetle entirely": [65535, 0], "sighed forgot the beetle entirely and": [65535, 0], "forgot the beetle entirely and sat": [65535, 0], "the beetle entirely and sat down": [65535, 0], "beetle entirely and sat down on": [65535, 0], "entirely and sat down on it": [65535, 0], "and sat down on it then": [65535, 0], "sat down on it then there": [65535, 0], "down on it then there was": [65535, 0], "on it then there was a": [65535, 0], "it then there was a wild": [65535, 0], "then there was a wild yelp": [65535, 0], "there was a wild yelp of": [65535, 0], "was a wild yelp of agony": [65535, 0], "a wild yelp of agony and": [65535, 0], "wild yelp of agony and the": [65535, 0], "yelp of agony and the poodle": [65535, 0], "of agony and the poodle went": [65535, 0], "agony and the poodle went sailing": [65535, 0], "and the poodle went sailing up": [65535, 0], "the poodle went sailing up the": [65535, 0], "poodle went sailing up the aisle": [65535, 0], "went sailing up the aisle the": [65535, 0], "sailing up the aisle the yelps": [65535, 0], "up the aisle the yelps continued": [65535, 0], "the aisle the yelps continued and": [65535, 0], "aisle the yelps continued and so": [65535, 0], "the yelps continued and so did": [65535, 0], "yelps continued and so did the": [65535, 0], "continued and so did the dog": [65535, 0], "and so did the dog he": [65535, 0], "so did the dog he crossed": [65535, 0], "did the dog he crossed the": [65535, 0], "the dog he crossed the house": [65535, 0], "dog he crossed the house in": [65535, 0], "he crossed the house in front": [65535, 0], "crossed the house in front of": [65535, 0], "the house in front of the": [65535, 0], "house in front of the altar": [65535, 0], "in front of the altar he": [65535, 0], "front of the altar he flew": [65535, 0], "of the altar he flew down": [65535, 0], "the altar he flew down the": [65535, 0], "altar he flew down the other": [65535, 0], "he flew down the other aisle": [65535, 0], "flew down the other aisle he": [65535, 0], "down the other aisle he crossed": [65535, 0], "the other aisle he crossed before": [65535, 0], "other aisle he crossed before the": [65535, 0], "aisle he crossed before the doors": [65535, 0], "he crossed before the doors he": [65535, 0], "crossed before the doors he clamored": [65535, 0], "before the doors he clamored up": [65535, 0], "the doors he clamored up the": [65535, 0], "doors he clamored up the home": [65535, 0], "he clamored up the home stretch": [65535, 0], "clamored up the home stretch his": [65535, 0], "up the home stretch his anguish": [65535, 0], "the home stretch his anguish grew": [65535, 0], "home stretch his anguish grew with": [65535, 0], "stretch his anguish grew with his": [65535, 0], "his anguish grew with his progress": [65535, 0], "anguish grew with his progress till": [65535, 0], "grew with his progress till presently": [65535, 0], "with his progress till presently he": [65535, 0], "his progress till presently he was": [65535, 0], "progress till presently he was but": [65535, 0], "till presently he was but a": [65535, 0], "presently he was but a woolly": [65535, 0], "he was but a woolly comet": [65535, 0], "was but a woolly comet moving": [65535, 0], "but a woolly comet moving in": [65535, 0], "a woolly comet moving in its": [65535, 0], "woolly comet moving in its orbit": [65535, 0], "comet moving in its orbit with": [65535, 0], "moving in its orbit with the": [65535, 0], "in its orbit with the gleam": [65535, 0], "its orbit with the gleam and": [65535, 0], "orbit with the gleam and the": [65535, 0], "with the gleam and the speed": [65535, 0], "the gleam and the speed of": [65535, 0], "gleam and the speed of light": [65535, 0], "and the speed of light at": [65535, 0], "the speed of light at last": [65535, 0], "speed of light at last the": [65535, 0], "of light at last the frantic": [65535, 0], "light at last the frantic sufferer": [65535, 0], "at last the frantic sufferer sheered": [65535, 0], "last the frantic sufferer sheered from": [65535, 0], "the frantic sufferer sheered from its": [65535, 0], "frantic sufferer sheered from its course": [65535, 0], "sufferer sheered from its course and": [65535, 0], "sheered from its course and sprang": [65535, 0], "from its course and sprang into": [65535, 0], "its course and sprang into its": [65535, 0], "course and sprang into its master's": [65535, 0], "and sprang into its master's lap": [65535, 0], "sprang into its master's lap he": [65535, 0], "into its master's lap he flung": [65535, 0], "its master's lap he flung it": [65535, 0], "master's lap he flung it out": [65535, 0], "lap he flung it out of": [65535, 0], "he flung it out of the": [65535, 0], "flung it out of the window": [65535, 0], "it out of the window and": [65535, 0], "out of the window and the": [65535, 0], "of the window and the voice": [65535, 0], "the window and the voice of": [65535, 0], "window and the voice of distress": [65535, 0], "and the voice of distress quickly": [65535, 0], "the voice of distress quickly thinned": [65535, 0], "voice of distress quickly thinned away": [65535, 0], "of distress quickly thinned away and": [65535, 0], "distress quickly thinned away and died": [65535, 0], "quickly thinned away and died in": [65535, 0], "thinned away and died in the": [65535, 0], "away and died in the distance": [65535, 0], "and died in the distance by": [65535, 0], "died in the distance by this": [65535, 0], "in the distance by this time": [65535, 0], "the distance by this time the": [65535, 0], "distance by this time the whole": [65535, 0], "by this time the whole church": [65535, 0], "this time the whole church was": [65535, 0], "time the whole church was red": [65535, 0], "the whole church was red faced": [65535, 0], "whole church was red faced and": [65535, 0], "church was red faced and suffocating": [65535, 0], "was red faced and suffocating with": [65535, 0], "red faced and suffocating with suppressed": [65535, 0], "faced and suffocating with suppressed laughter": [65535, 0], "and suffocating with suppressed laughter and": [65535, 0], "suffocating with suppressed laughter and the": [65535, 0], "with suppressed laughter and the sermon": [65535, 0], "suppressed laughter and the sermon had": [65535, 0], "laughter and the sermon had come": [65535, 0], "and the sermon had come to": [65535, 0], "the sermon had come to a": [65535, 0], "sermon had come to a dead": [65535, 0], "had come to a dead standstill": [65535, 0], "come to a dead standstill the": [65535, 0], "to a dead standstill the discourse": [65535, 0], "a dead standstill the discourse was": [65535, 0], "dead standstill the discourse was resumed": [65535, 0], "standstill the discourse was resumed presently": [65535, 0], "the discourse was resumed presently but": [65535, 0], "discourse was resumed presently but it": [65535, 0], "was resumed presently but it went": [65535, 0], "resumed presently but it went lame": [65535, 0], "presently but it went lame and": [65535, 0], "but it went lame and halting": [65535, 0], "it went lame and halting all": [65535, 0], "went lame and halting all possibility": [65535, 0], "lame and halting all possibility of": [65535, 0], "and halting all possibility of impressiveness": [65535, 0], "halting all possibility of impressiveness being": [65535, 0], "all possibility of impressiveness being at": [65535, 0], "possibility of impressiveness being at an": [65535, 0], "of impressiveness being at an end": [65535, 0], "impressiveness being at an end for": [65535, 0], "being at an end for even": [65535, 0], "at an end for even the": [65535, 0], "an end for even the gravest": [65535, 0], "end for even the gravest sentiments": [65535, 0], "for even the gravest sentiments were": [65535, 0], "even the gravest sentiments were constantly": [65535, 0], "the gravest sentiments were constantly being": [65535, 0], "gravest sentiments were constantly being received": [65535, 0], "sentiments were constantly being received with": [65535, 0], "were constantly being received with a": [65535, 0], "constantly being received with a smothered": [65535, 0], "being received with a smothered burst": [65535, 0], "received with a smothered burst of": [65535, 0], "with a smothered burst of unholy": [65535, 0], "a smothered burst of unholy mirth": [65535, 0], "smothered burst of unholy mirth under": [65535, 0], "burst of unholy mirth under cover": [65535, 0], "of unholy mirth under cover of": [65535, 0], "unholy mirth under cover of some": [65535, 0], "mirth under cover of some remote": [65535, 0], "under cover of some remote pew": [65535, 0], "cover of some remote pew back": [65535, 0], "of some remote pew back as": [65535, 0], "some remote pew back as if": [65535, 0], "remote pew back as if the": [65535, 0], "pew back as if the poor": [65535, 0], "back as if the poor parson": [65535, 0], "as if the poor parson had": [65535, 0], "if the poor parson had said": [65535, 0], "the poor parson had said a": [65535, 0], "poor parson had said a rarely": [65535, 0], "parson had said a rarely facetious": [65535, 0], "had said a rarely facetious thing": [65535, 0], "said a rarely facetious thing it": [65535, 0], "a rarely facetious thing it was": [65535, 0], "rarely facetious thing it was a": [65535, 0], "facetious thing it was a genuine": [65535, 0], "thing it was a genuine relief": [65535, 0], "it was a genuine relief to": [65535, 0], "was a genuine relief to the": [65535, 0], "a genuine relief to the whole": [65535, 0], "genuine relief to the whole congregation": [65535, 0], "relief to the whole congregation when": [65535, 0], "to the whole congregation when the": [65535, 0], "the whole congregation when the ordeal": [65535, 0], "whole congregation when the ordeal was": [65535, 0], "congregation when the ordeal was over": [65535, 0], "when the ordeal was over and": [65535, 0], "the ordeal was over and the": [65535, 0], "ordeal was over and the benediction": [65535, 0], "was over and the benediction pronounced": [65535, 0], "over and the benediction pronounced tom": [65535, 0], "and the benediction pronounced tom sawyer": [65535, 0], "the benediction pronounced tom sawyer went": [65535, 0], "benediction pronounced tom sawyer went home": [65535, 0], "pronounced tom sawyer went home quite": [65535, 0], "tom sawyer went home quite cheerful": [65535, 0], "sawyer went home quite cheerful thinking": [65535, 0], "went home quite cheerful thinking to": [65535, 0], "home quite cheerful thinking to himself": [65535, 0], "quite cheerful thinking to himself that": [65535, 0], "cheerful thinking to himself that there": [65535, 0], "thinking to himself that there was": [65535, 0], "to himself that there was some": [65535, 0], "himself that there was some satisfaction": [65535, 0], "that there was some satisfaction about": [65535, 0], "there was some satisfaction about divine": [65535, 0], "was some satisfaction about divine service": [65535, 0], "some satisfaction about divine service when": [65535, 0], "satisfaction about divine service when there": [65535, 0], "about divine service when there was": [65535, 0], "divine service when there was a": [65535, 0], "service when there was a bit": [65535, 0], "when there was a bit of": [65535, 0], "there was a bit of variety": [65535, 0], "was a bit of variety in": [65535, 0], "a bit of variety in it": [65535, 0], "bit of variety in it he": [65535, 0], "of variety in it he had": [65535, 0], "variety in it he had but": [65535, 0], "in it he had but one": [65535, 0], "it he had but one marring": [65535, 0], "he had but one marring thought": [65535, 0], "had but one marring thought he": [65535, 0], "but one marring thought he was": [65535, 0], "one marring thought he was willing": [65535, 0], "marring thought he was willing that": [65535, 0], "thought he was willing that the": [65535, 0], "he was willing that the dog": [65535, 0], "was willing that the dog should": [65535, 0], "willing that the dog should play": [65535, 0], "that the dog should play with": [65535, 0], "the dog should play with his": [65535, 0], "dog should play with his pinchbug": [65535, 0], "should play with his pinchbug but": [65535, 0], "play with his pinchbug but he": [65535, 0], "with his pinchbug but he did": [65535, 0], "his pinchbug but he did not": [65535, 0], "pinchbug but he did not think": [65535, 0], "but he did not think it": [65535, 0], "he did not think it was": [65535, 0], "did not think it was upright": [65535, 0], "not think it was upright in": [65535, 0], "think it was upright in him": [65535, 0], "it was upright in him to": [65535, 0], "was upright in him to carry": [65535, 0], "upright in him to carry it": [65535, 0], "in him to carry it off": [65535, 0], "about half past ten the cracked bell": [65535, 0], "half past ten the cracked bell of": [65535, 0], "past ten the cracked bell of the": [65535, 0], "ten the cracked bell of the small": [65535, 0], "the cracked bell of the small church": [65535, 0], "cracked bell of the small church began": [65535, 0], "bell of the small church began to": [65535, 0], "of the small church began to ring": [65535, 0], "the small church began to ring and": [65535, 0], "small church began to ring and presently": [65535, 0], "church began to ring and presently the": [65535, 0], "began to ring and presently the people": [65535, 0], "to ring and presently the people began": [65535, 0], "ring and presently the people began to": [65535, 0], "and presently the people began to gather": [65535, 0], "presently the people began to gather for": [65535, 0], "the people began to gather for the": [65535, 0], "people began to gather for the morning": [65535, 0], "began to gather for the morning sermon": [65535, 0], "to gather for the morning sermon the": [65535, 0], "gather for the morning sermon the sunday": [65535, 0], "for the morning sermon the sunday school": [65535, 0], "the morning sermon the sunday school children": [65535, 0], "morning sermon the sunday school children distributed": [65535, 0], "sermon the sunday school children distributed themselves": [65535, 0], "the sunday school children distributed themselves about": [65535, 0], "sunday school children distributed themselves about the": [65535, 0], "school children distributed themselves about the house": [65535, 0], "children distributed themselves about the house and": [65535, 0], "distributed themselves about the house and occupied": [65535, 0], "themselves about the house and occupied pews": [65535, 0], "about the house and occupied pews with": [65535, 0], "the house and occupied pews with their": [65535, 0], "house and occupied pews with their parents": [65535, 0], "and occupied pews with their parents so": [65535, 0], "occupied pews with their parents so as": [65535, 0], "pews with their parents so as to": [65535, 0], "with their parents so as to be": [65535, 0], "their parents so as to be under": [65535, 0], "parents so as to be under supervision": [65535, 0], "so as to be under supervision aunt": [65535, 0], "as to be under supervision aunt polly": [65535, 0], "to be under supervision aunt polly came": [65535, 0], "be under supervision aunt polly came and": [65535, 0], "under supervision aunt polly came and tom": [65535, 0], "supervision aunt polly came and tom and": [65535, 0], "aunt polly came and tom and sid": [65535, 0], "polly came and tom and sid and": [65535, 0], "came and tom and sid and mary": [65535, 0], "and tom and sid and mary sat": [65535, 0], "tom and sid and mary sat with": [65535, 0], "and sid and mary sat with her": [65535, 0], "sid and mary sat with her tom": [65535, 0], "and mary sat with her tom being": [65535, 0], "mary sat with her tom being placed": [65535, 0], "sat with her tom being placed next": [65535, 0], "with her tom being placed next the": [65535, 0], "her tom being placed next the aisle": [65535, 0], "tom being placed next the aisle in": [65535, 0], "being placed next the aisle in order": [65535, 0], "placed next the aisle in order that": [65535, 0], "next the aisle in order that he": [65535, 0], "the aisle in order that he might": [65535, 0], "aisle in order that he might be": [65535, 0], "in order that he might be as": [65535, 0], "order that he might be as far": [65535, 0], "that he might be as far away": [65535, 0], "he might be as far away from": [65535, 0], "might be as far away from the": [65535, 0], "be as far away from the open": [65535, 0], "as far away from the open window": [65535, 0], "far away from the open window and": [65535, 0], "away from the open window and the": [65535, 0], "from the open window and the seductive": [65535, 0], "the open window and the seductive outside": [65535, 0], "open window and the seductive outside summer": [65535, 0], "window and the seductive outside summer scenes": [65535, 0], "and the seductive outside summer scenes as": [65535, 0], "the seductive outside summer scenes as possible": [65535, 0], "seductive outside summer scenes as possible the": [65535, 0], "outside summer scenes as possible the crowd": [65535, 0], "summer scenes as possible the crowd filed": [65535, 0], "scenes as possible the crowd filed up": [65535, 0], "as possible the crowd filed up the": [65535, 0], "possible the crowd filed up the aisles": [65535, 0], "the crowd filed up the aisles the": [65535, 0], "crowd filed up the aisles the aged": [65535, 0], "filed up the aisles the aged and": [65535, 0], "up the aisles the aged and needy": [65535, 0], "the aisles the aged and needy postmaster": [65535, 0], "aisles the aged and needy postmaster who": [65535, 0], "the aged and needy postmaster who had": [65535, 0], "aged and needy postmaster who had seen": [65535, 0], "and needy postmaster who had seen better": [65535, 0], "needy postmaster who had seen better days": [65535, 0], "postmaster who had seen better days the": [65535, 0], "who had seen better days the mayor": [65535, 0], "had seen better days the mayor and": [65535, 0], "seen better days the mayor and his": [65535, 0], "better days the mayor and his wife": [65535, 0], "days the mayor and his wife for": [65535, 0], "the mayor and his wife for they": [65535, 0], "mayor and his wife for they had": [65535, 0], "and his wife for they had a": [65535, 0], "his wife for they had a mayor": [65535, 0], "wife for they had a mayor there": [65535, 0], "for they had a mayor there among": [65535, 0], "they had a mayor there among other": [65535, 0], "had a mayor there among other unnecessaries": [65535, 0], "a mayor there among other unnecessaries the": [65535, 0], "mayor there among other unnecessaries the justice": [65535, 0], "there among other unnecessaries the justice of": [65535, 0], "among other unnecessaries the justice of the": [65535, 0], "other unnecessaries the justice of the peace": [65535, 0], "unnecessaries the justice of the peace the": [65535, 0], "the justice of the peace the widow": [65535, 0], "justice of the peace the widow douglass": [65535, 0], "of the peace the widow douglass fair": [65535, 0], "the peace the widow douglass fair smart": [65535, 0], "peace the widow douglass fair smart and": [65535, 0], "the widow douglass fair smart and forty": [65535, 0], "widow douglass fair smart and forty a": [65535, 0], "douglass fair smart and forty a generous": [65535, 0], "fair smart and forty a generous good": [65535, 0], "smart and forty a generous good hearted": [65535, 0], "and forty a generous good hearted soul": [65535, 0], "forty a generous good hearted soul and": [65535, 0], "a generous good hearted soul and well": [65535, 0], "generous good hearted soul and well to": [65535, 0], "good hearted soul and well to do": [65535, 0], "hearted soul and well to do her": [65535, 0], "soul and well to do her hill": [65535, 0], "and well to do her hill mansion": [65535, 0], "well to do her hill mansion the": [65535, 0], "to do her hill mansion the only": [65535, 0], "do her hill mansion the only palace": [65535, 0], "her hill mansion the only palace in": [65535, 0], "hill mansion the only palace in the": [65535, 0], "mansion the only palace in the town": [65535, 0], "the only palace in the town and": [65535, 0], "only palace in the town and the": [65535, 0], "palace in the town and the most": [65535, 0], "in the town and the most hospitable": [65535, 0], "the town and the most hospitable and": [65535, 0], "town and the most hospitable and much": [65535, 0], "and the most hospitable and much the": [65535, 0], "the most hospitable and much the most": [65535, 0], "most hospitable and much the most lavish": [65535, 0], "hospitable and much the most lavish in": [65535, 0], "and much the most lavish in the": [65535, 0], "much the most lavish in the matter": [65535, 0], "the most lavish in the matter of": [65535, 0], "most lavish in the matter of festivities": [65535, 0], "lavish in the matter of festivities that": [65535, 0], "in the matter of festivities that st": [65535, 0], "the matter of festivities that st petersburg": [65535, 0], "matter of festivities that st petersburg could": [65535, 0], "of festivities that st petersburg could boast": [65535, 0], "festivities that st petersburg could boast the": [65535, 0], "that st petersburg could boast the bent": [65535, 0], "st petersburg could boast the bent and": [65535, 0], "petersburg could boast the bent and venerable": [65535, 0], "could boast the bent and venerable major": [65535, 0], "boast the bent and venerable major and": [65535, 0], "the bent and venerable major and mrs": [65535, 0], "bent and venerable major and mrs ward": [65535, 0], "and venerable major and mrs ward lawyer": [65535, 0], "venerable major and mrs ward lawyer riverson": [65535, 0], "major and mrs ward lawyer riverson the": [65535, 0], "and mrs ward lawyer riverson the new": [65535, 0], "mrs ward lawyer riverson the new notable": [65535, 0], "ward lawyer riverson the new notable from": [65535, 0], "lawyer riverson the new notable from a": [65535, 0], "riverson the new notable from a distance": [65535, 0], "the new notable from a distance next": [65535, 0], "new notable from a distance next the": [65535, 0], "notable from a distance next the belle": [65535, 0], "from a distance next the belle of": [65535, 0], "a distance next the belle of the": [65535, 0], "distance next the belle of the village": [65535, 0], "next the belle of the village followed": [65535, 0], "the belle of the village followed by": [65535, 0], "belle of the village followed by a": [65535, 0], "of the village followed by a troop": [65535, 0], "the village followed by a troop of": [65535, 0], "village followed by a troop of lawn": [65535, 0], "followed by a troop of lawn clad": [65535, 0], "by a troop of lawn clad and": [65535, 0], "a troop of lawn clad and ribbon": [65535, 0], "troop of lawn clad and ribbon decked": [65535, 0], "of lawn clad and ribbon decked young": [65535, 0], "lawn clad and ribbon decked young heart": [65535, 0], "clad and ribbon decked young heart breakers": [65535, 0], "and ribbon decked young heart breakers then": [65535, 0], "ribbon decked young heart breakers then all": [65535, 0], "decked young heart breakers then all the": [65535, 0], "young heart breakers then all the young": [65535, 0], "heart breakers then all the young clerks": [65535, 0], "breakers then all the young clerks in": [65535, 0], "then all the young clerks in town": [65535, 0], "all the young clerks in town in": [65535, 0], "the young clerks in town in a": [65535, 0], "young clerks in town in a body": [65535, 0], "clerks in town in a body for": [65535, 0], "in town in a body for they": [65535, 0], "town in a body for they had": [65535, 0], "in a body for they had stood": [65535, 0], "a body for they had stood in": [65535, 0], "body for they had stood in the": [65535, 0], "for they had stood in the vestibule": [65535, 0], "they had stood in the vestibule sucking": [65535, 0], "had stood in the vestibule sucking their": [65535, 0], "stood in the vestibule sucking their cane": [65535, 0], "in the vestibule sucking their cane heads": [65535, 0], "the vestibule sucking their cane heads a": [65535, 0], "vestibule sucking their cane heads a circling": [65535, 0], "sucking their cane heads a circling wall": [65535, 0], "their cane heads a circling wall of": [65535, 0], "cane heads a circling wall of oiled": [65535, 0], "heads a circling wall of oiled and": [65535, 0], "a circling wall of oiled and simpering": [65535, 0], "circling wall of oiled and simpering admirers": [65535, 0], "wall of oiled and simpering admirers till": [65535, 0], "of oiled and simpering admirers till the": [65535, 0], "oiled and simpering admirers till the last": [65535, 0], "and simpering admirers till the last girl": [65535, 0], "simpering admirers till the last girl had": [65535, 0], "admirers till the last girl had run": [65535, 0], "till the last girl had run their": [65535, 0], "the last girl had run their gantlet": [65535, 0], "last girl had run their gantlet and": [65535, 0], "girl had run their gantlet and last": [65535, 0], "had run their gantlet and last of": [65535, 0], "run their gantlet and last of all": [65535, 0], "their gantlet and last of all came": [65535, 0], "gantlet and last of all came the": [65535, 0], "and last of all came the model": [65535, 0], "last of all came the model boy": [65535, 0], "of all came the model boy willie": [65535, 0], "all came the model boy willie mufferson": [65535, 0], "came the model boy willie mufferson taking": [65535, 0], "the model boy willie mufferson taking as": [65535, 0], "model boy willie mufferson taking as heedful": [65535, 0], "boy willie mufferson taking as heedful care": [65535, 0], "willie mufferson taking as heedful care of": [65535, 0], "mufferson taking as heedful care of his": [65535, 0], "taking as heedful care of his mother": [65535, 0], "as heedful care of his mother as": [65535, 0], "heedful care of his mother as if": [65535, 0], "care of his mother as if she": [65535, 0], "of his mother as if she were": [65535, 0], "his mother as if she were cut": [65535, 0], "mother as if she were cut glass": [65535, 0], "as if she were cut glass he": [65535, 0], "if she were cut glass he always": [65535, 0], "she were cut glass he always brought": [65535, 0], "were cut glass he always brought his": [65535, 0], "cut glass he always brought his mother": [65535, 0], "glass he always brought his mother to": [65535, 0], "he always brought his mother to church": [65535, 0], "always brought his mother to church and": [65535, 0], "brought his mother to church and was": [65535, 0], "his mother to church and was the": [65535, 0], "mother to church and was the pride": [65535, 0], "to church and was the pride of": [65535, 0], "church and was the pride of all": [65535, 0], "and was the pride of all the": [65535, 0], "was the pride of all the matrons": [65535, 0], "the pride of all the matrons the": [65535, 0], "pride of all the matrons the boys": [65535, 0], "of all the matrons the boys all": [65535, 0], "all the matrons the boys all hated": [65535, 0], "the matrons the boys all hated him": [65535, 0], "matrons the boys all hated him he": [65535, 0], "the boys all hated him he was": [65535, 0], "boys all hated him he was so": [65535, 0], "all hated him he was so good": [65535, 0], "hated him he was so good and": [65535, 0], "him he was so good and besides": [65535, 0], "he was so good and besides he": [65535, 0], "was so good and besides he had": [65535, 0], "so good and besides he had been": [65535, 0], "good and besides he had been thrown": [65535, 0], "and besides he had been thrown up": [65535, 0], "besides he had been thrown up to": [65535, 0], "he had been thrown up to them": [65535, 0], "had been thrown up to them so": [65535, 0], "been thrown up to them so much": [65535, 0], "thrown up to them so much his": [65535, 0], "up to them so much his white": [65535, 0], "to them so much his white handkerchief": [65535, 0], "them so much his white handkerchief was": [65535, 0], "so much his white handkerchief was hanging": [65535, 0], "much his white handkerchief was hanging out": [65535, 0], "his white handkerchief was hanging out of": [65535, 0], "white handkerchief was hanging out of his": [65535, 0], "handkerchief was hanging out of his pocket": [65535, 0], "was hanging out of his pocket behind": [65535, 0], "hanging out of his pocket behind as": [65535, 0], "out of his pocket behind as usual": [65535, 0], "of his pocket behind as usual on": [65535, 0], "his pocket behind as usual on sundays": [65535, 0], "pocket behind as usual on sundays accidentally": [65535, 0], "behind as usual on sundays accidentally tom": [65535, 0], "as usual on sundays accidentally tom had": [65535, 0], "usual on sundays accidentally tom had no": [65535, 0], "on sundays accidentally tom had no handkerchief": [65535, 0], "sundays accidentally tom had no handkerchief and": [65535, 0], "accidentally tom had no handkerchief and he": [65535, 0], "tom had no handkerchief and he looked": [65535, 0], "had no handkerchief and he looked upon": [65535, 0], "no handkerchief and he looked upon boys": [65535, 0], "handkerchief and he looked upon boys who": [65535, 0], "and he looked upon boys who had": [65535, 0], "he looked upon boys who had as": [65535, 0], "looked upon boys who had as snobs": [65535, 0], "upon boys who had as snobs the": [65535, 0], "boys who had as snobs the congregation": [65535, 0], "who had as snobs the congregation being": [65535, 0], "had as snobs the congregation being fully": [65535, 0], "as snobs the congregation being fully assembled": [65535, 0], "snobs the congregation being fully assembled now": [65535, 0], "the congregation being fully assembled now the": [65535, 0], "congregation being fully assembled now the bell": [65535, 0], "being fully assembled now the bell rang": [65535, 0], "fully assembled now the bell rang once": [65535, 0], "assembled now the bell rang once more": [65535, 0], "now the bell rang once more to": [65535, 0], "the bell rang once more to warn": [65535, 0], "bell rang once more to warn laggards": [65535, 0], "rang once more to warn laggards and": [65535, 0], "once more to warn laggards and stragglers": [65535, 0], "more to warn laggards and stragglers and": [65535, 0], "to warn laggards and stragglers and then": [65535, 0], "warn laggards and stragglers and then a": [65535, 0], "laggards and stragglers and then a solemn": [65535, 0], "and stragglers and then a solemn hush": [65535, 0], "stragglers and then a solemn hush fell": [65535, 0], "and then a solemn hush fell upon": [65535, 0], "then a solemn hush fell upon the": [65535, 0], "a solemn hush fell upon the church": [65535, 0], "solemn hush fell upon the church which": [65535, 0], "hush fell upon the church which was": [65535, 0], "fell upon the church which was only": [65535, 0], "upon the church which was only broken": [65535, 0], "the church which was only broken by": [65535, 0], "church which was only broken by the": [65535, 0], "which was only broken by the tittering": [65535, 0], "was only broken by the tittering and": [65535, 0], "only broken by the tittering and whispering": [65535, 0], "broken by the tittering and whispering of": [65535, 0], "by the tittering and whispering of the": [65535, 0], "the tittering and whispering of the choir": [65535, 0], "tittering and whispering of the choir in": [65535, 0], "and whispering of the choir in the": [65535, 0], "whispering of the choir in the gallery": [65535, 0], "of the choir in the gallery the": [65535, 0], "the choir in the gallery the choir": [65535, 0], "choir in the gallery the choir always": [65535, 0], "in the gallery the choir always tittered": [65535, 0], "the gallery the choir always tittered and": [65535, 0], "gallery the choir always tittered and whispered": [65535, 0], "the choir always tittered and whispered all": [65535, 0], "choir always tittered and whispered all through": [65535, 0], "always tittered and whispered all through service": [65535, 0], "tittered and whispered all through service there": [65535, 0], "and whispered all through service there was": [65535, 0], "whispered all through service there was once": [65535, 0], "all through service there was once a": [65535, 0], "through service there was once a church": [65535, 0], "service there was once a church choir": [65535, 0], "there was once a church choir that": [65535, 0], "was once a church choir that was": [65535, 0], "once a church choir that was not": [65535, 0], "a church choir that was not ill": [65535, 0], "church choir that was not ill bred": [65535, 0], "choir that was not ill bred but": [65535, 0], "that was not ill bred but i": [65535, 0], "was not ill bred but i have": [65535, 0], "not ill bred but i have forgotten": [65535, 0], "ill bred but i have forgotten where": [65535, 0], "bred but i have forgotten where it": [65535, 0], "but i have forgotten where it was": [65535, 0], "i have forgotten where it was now": [65535, 0], "have forgotten where it was now it": [65535, 0], "forgotten where it was now it was": [65535, 0], "where it was now it was a": [65535, 0], "it was now it was a great": [65535, 0], "was now it was a great many": [65535, 0], "now it was a great many years": [65535, 0], "it was a great many years ago": [65535, 0], "was a great many years ago and": [65535, 0], "a great many years ago and i": [65535, 0], "great many years ago and i can": [65535, 0], "many years ago and i can scarcely": [65535, 0], "years ago and i can scarcely remember": [65535, 0], "ago and i can scarcely remember anything": [65535, 0], "and i can scarcely remember anything about": [65535, 0], "i can scarcely remember anything about it": [65535, 0], "can scarcely remember anything about it but": [65535, 0], "scarcely remember anything about it but i": [65535, 0], "remember anything about it but i think": [65535, 0], "anything about it but i think it": [65535, 0], "about it but i think it was": [65535, 0], "it but i think it was in": [65535, 0], "but i think it was in some": [65535, 0], "i think it was in some foreign": [65535, 0], "think it was in some foreign country": [65535, 0], "it was in some foreign country the": [65535, 0], "was in some foreign country the minister": [65535, 0], "in some foreign country the minister gave": [65535, 0], "some foreign country the minister gave out": [65535, 0], "foreign country the minister gave out the": [65535, 0], "country the minister gave out the hymn": [65535, 0], "the minister gave out the hymn and": [65535, 0], "minister gave out the hymn and read": [65535, 0], "gave out the hymn and read it": [65535, 0], "out the hymn and read it through": [65535, 0], "the hymn and read it through with": [65535, 0], "hymn and read it through with a": [65535, 0], "and read it through with a relish": [65535, 0], "read it through with a relish in": [65535, 0], "it through with a relish in a": [65535, 0], "through with a relish in a peculiar": [65535, 0], "with a relish in a peculiar style": [65535, 0], "a relish in a peculiar style which": [65535, 0], "relish in a peculiar style which was": [65535, 0], "in a peculiar style which was much": [65535, 0], "a peculiar style which was much admired": [65535, 0], "peculiar style which was much admired in": [65535, 0], "style which was much admired in that": [65535, 0], "which was much admired in that part": [65535, 0], "was much admired in that part of": [65535, 0], "much admired in that part of the": [65535, 0], "admired in that part of the country": [65535, 0], "in that part of the country his": [65535, 0], "that part of the country his voice": [65535, 0], "part of the country his voice began": [65535, 0], "of the country his voice began on": [65535, 0], "the country his voice began on a": [65535, 0], "country his voice began on a medium": [65535, 0], "his voice began on a medium key": [65535, 0], "voice began on a medium key and": [65535, 0], "began on a medium key and climbed": [65535, 0], "on a medium key and climbed steadily": [65535, 0], "a medium key and climbed steadily up": [65535, 0], "medium key and climbed steadily up till": [65535, 0], "key and climbed steadily up till it": [65535, 0], "and climbed steadily up till it reached": [65535, 0], "climbed steadily up till it reached a": [65535, 0], "steadily up till it reached a certain": [65535, 0], "up till it reached a certain point": [65535, 0], "till it reached a certain point where": [65535, 0], "it reached a certain point where it": [65535, 0], "reached a certain point where it bore": [65535, 0], "a certain point where it bore with": [65535, 0], "certain point where it bore with strong": [65535, 0], "point where it bore with strong emphasis": [65535, 0], "where it bore with strong emphasis upon": [65535, 0], "it bore with strong emphasis upon the": [65535, 0], "bore with strong emphasis upon the topmost": [65535, 0], "with strong emphasis upon the topmost word": [65535, 0], "strong emphasis upon the topmost word and": [65535, 0], "emphasis upon the topmost word and then": [65535, 0], "upon the topmost word and then plunged": [65535, 0], "the topmost word and then plunged down": [65535, 0], "topmost word and then plunged down as": [65535, 0], "word and then plunged down as if": [65535, 0], "and then plunged down as if from": [65535, 0], "then plunged down as if from a": [65535, 0], "plunged down as if from a spring": [65535, 0], "down as if from a spring board": [65535, 0], "as if from a spring board shall": [65535, 0], "if from a spring board shall i": [65535, 0], "from a spring board shall i be": [65535, 0], "a spring board shall i be car": [65535, 0], "spring board shall i be car ri": [65535, 0], "board shall i be car ri ed": [65535, 0], "shall i be car ri ed toe": [65535, 0], "i be car ri ed toe the": [65535, 0], "be car ri ed toe the skies": [65535, 0], "car ri ed toe the skies on": [65535, 0], "ri ed toe the skies on flow'ry": [65535, 0], "ed toe the skies on flow'ry beds": [65535, 0], "toe the skies on flow'ry beds of": [65535, 0], "the skies on flow'ry beds of ease": [65535, 0], "skies on flow'ry beds of ease whilst": [65535, 0], "on flow'ry beds of ease whilst others": [65535, 0], "flow'ry beds of ease whilst others fight": [65535, 0], "beds of ease whilst others fight to": [65535, 0], "of ease whilst others fight to win": [65535, 0], "ease whilst others fight to win the": [65535, 0], "whilst others fight to win the prize": [65535, 0], "others fight to win the prize and": [65535, 0], "fight to win the prize and sail": [65535, 0], "to win the prize and sail thro'": [65535, 0], "win the prize and sail thro' bloody": [65535, 0], "the prize and sail thro' bloody seas": [65535, 0], "prize and sail thro' bloody seas he": [65535, 0], "and sail thro' bloody seas he was": [65535, 0], "sail thro' bloody seas he was regarded": [65535, 0], "thro' bloody seas he was regarded as": [65535, 0], "bloody seas he was regarded as a": [65535, 0], "seas he was regarded as a wonderful": [65535, 0], "he was regarded as a wonderful reader": [65535, 0], "was regarded as a wonderful reader at": [65535, 0], "regarded as a wonderful reader at church": [65535, 0], "as a wonderful reader at church sociables": [65535, 0], "a wonderful reader at church sociables he": [65535, 0], "wonderful reader at church sociables he was": [65535, 0], "reader at church sociables he was always": [65535, 0], "at church sociables he was always called": [65535, 0], "church sociables he was always called upon": [65535, 0], "sociables he was always called upon to": [65535, 0], "he was always called upon to read": [65535, 0], "was always called upon to read poetry": [65535, 0], "always called upon to read poetry and": [65535, 0], "called upon to read poetry and when": [65535, 0], "upon to read poetry and when he": [65535, 0], "to read poetry and when he was": [65535, 0], "read poetry and when he was through": [65535, 0], "poetry and when he was through the": [65535, 0], "and when he was through the ladies": [65535, 0], "when he was through the ladies would": [65535, 0], "he was through the ladies would lift": [65535, 0], "was through the ladies would lift up": [65535, 0], "through the ladies would lift up their": [65535, 0], "the ladies would lift up their hands": [65535, 0], "ladies would lift up their hands and": [65535, 0], "would lift up their hands and let": [65535, 0], "lift up their hands and let them": [65535, 0], "up their hands and let them fall": [65535, 0], "their hands and let them fall helplessly": [65535, 0], "hands and let them fall helplessly in": [65535, 0], "and let them fall helplessly in their": [65535, 0], "let them fall helplessly in their laps": [65535, 0], "them fall helplessly in their laps and": [65535, 0], "fall helplessly in their laps and wall": [65535, 0], "helplessly in their laps and wall their": [65535, 0], "in their laps and wall their eyes": [65535, 0], "their laps and wall their eyes and": [65535, 0], "laps and wall their eyes and shake": [65535, 0], "and wall their eyes and shake their": [65535, 0], "wall their eyes and shake their heads": [65535, 0], "their eyes and shake their heads as": [65535, 0], "eyes and shake their heads as much": [65535, 0], "and shake their heads as much as": [65535, 0], "shake their heads as much as to": [65535, 0], "their heads as much as to say": [65535, 0], "heads as much as to say words": [65535, 0], "as much as to say words cannot": [65535, 0], "much as to say words cannot express": [65535, 0], "as to say words cannot express it": [65535, 0], "to say words cannot express it it": [65535, 0], "say words cannot express it it is": [65535, 0], "words cannot express it it is too": [65535, 0], "cannot express it it is too beautiful": [65535, 0], "express it it is too beautiful too": [65535, 0], "it it is too beautiful too beautiful": [65535, 0], "it is too beautiful too beautiful for": [65535, 0], "is too beautiful too beautiful for this": [65535, 0], "too beautiful too beautiful for this mortal": [65535, 0], "beautiful too beautiful for this mortal earth": [65535, 0], "too beautiful for this mortal earth after": [65535, 0], "beautiful for this mortal earth after the": [65535, 0], "for this mortal earth after the hymn": [65535, 0], "this mortal earth after the hymn had": [65535, 0], "mortal earth after the hymn had been": [65535, 0], "earth after the hymn had been sung": [65535, 0], "after the hymn had been sung the": [65535, 0], "the hymn had been sung the rev": [65535, 0], "hymn had been sung the rev mr": [65535, 0], "had been sung the rev mr sprague": [65535, 0], "been sung the rev mr sprague turned": [65535, 0], "sung the rev mr sprague turned himself": [65535, 0], "the rev mr sprague turned himself into": [65535, 0], "rev mr sprague turned himself into a": [65535, 0], "mr sprague turned himself into a bulletin": [65535, 0], "sprague turned himself into a bulletin board": [65535, 0], "turned himself into a bulletin board and": [65535, 0], "himself into a bulletin board and read": [65535, 0], "into a bulletin board and read off": [65535, 0], "a bulletin board and read off notices": [65535, 0], "bulletin board and read off notices of": [65535, 0], "board and read off notices of meetings": [65535, 0], "and read off notices of meetings and": [65535, 0], "read off notices of meetings and societies": [65535, 0], "off notices of meetings and societies and": [65535, 0], "notices of meetings and societies and things": [65535, 0], "of meetings and societies and things till": [65535, 0], "meetings and societies and things till it": [65535, 0], "and societies and things till it seemed": [65535, 0], "societies and things till it seemed that": [65535, 0], "and things till it seemed that the": [65535, 0], "things till it seemed that the list": [65535, 0], "till it seemed that the list would": [65535, 0], "it seemed that the list would stretch": [65535, 0], "seemed that the list would stretch out": [65535, 0], "that the list would stretch out to": [65535, 0], "the list would stretch out to the": [65535, 0], "list would stretch out to the crack": [65535, 0], "would stretch out to the crack of": [65535, 0], "stretch out to the crack of doom": [65535, 0], "out to the crack of doom a": [65535, 0], "to the crack of doom a queer": [65535, 0], "the crack of doom a queer custom": [65535, 0], "crack of doom a queer custom which": [65535, 0], "of doom a queer custom which is": [65535, 0], "doom a queer custom which is still": [65535, 0], "a queer custom which is still kept": [65535, 0], "queer custom which is still kept up": [65535, 0], "custom which is still kept up in": [65535, 0], "which is still kept up in america": [65535, 0], "is still kept up in america even": [65535, 0], "still kept up in america even in": [65535, 0], "kept up in america even in cities": [65535, 0], "up in america even in cities away": [65535, 0], "in america even in cities away here": [65535, 0], "america even in cities away here in": [65535, 0], "even in cities away here in this": [65535, 0], "in cities away here in this age": [65535, 0], "cities away here in this age of": [65535, 0], "away here in this age of abundant": [65535, 0], "here in this age of abundant newspapers": [65535, 0], "in this age of abundant newspapers often": [65535, 0], "this age of abundant newspapers often the": [65535, 0], "age of abundant newspapers often the less": [65535, 0], "of abundant newspapers often the less there": [65535, 0], "abundant newspapers often the less there is": [65535, 0], "newspapers often the less there is to": [65535, 0], "often the less there is to justify": [65535, 0], "the less there is to justify a": [65535, 0], "less there is to justify a traditional": [65535, 0], "there is to justify a traditional custom": [65535, 0], "is to justify a traditional custom the": [65535, 0], "to justify a traditional custom the harder": [65535, 0], "justify a traditional custom the harder it": [65535, 0], "a traditional custom the harder it is": [65535, 0], "traditional custom the harder it is to": [65535, 0], "custom the harder it is to get": [65535, 0], "the harder it is to get rid": [65535, 0], "harder it is to get rid of": [65535, 0], "it is to get rid of it": [65535, 0], "is to get rid of it and": [65535, 0], "to get rid of it and now": [65535, 0], "get rid of it and now the": [65535, 0], "rid of it and now the minister": [65535, 0], "of it and now the minister prayed": [65535, 0], "it and now the minister prayed a": [65535, 0], "and now the minister prayed a good": [65535, 0], "now the minister prayed a good generous": [65535, 0], "the minister prayed a good generous prayer": [65535, 0], "minister prayed a good generous prayer it": [65535, 0], "prayed a good generous prayer it was": [65535, 0], "a good generous prayer it was and": [65535, 0], "good generous prayer it was and went": [65535, 0], "generous prayer it was and went into": [65535, 0], "prayer it was and went into details": [65535, 0], "it was and went into details it": [65535, 0], "was and went into details it pleaded": [65535, 0], "and went into details it pleaded for": [65535, 0], "went into details it pleaded for the": [65535, 0], "into details it pleaded for the church": [65535, 0], "details it pleaded for the church and": [65535, 0], "it pleaded for the church and the": [65535, 0], "pleaded for the church and the little": [65535, 0], "for the church and the little children": [65535, 0], "the church and the little children of": [65535, 0], "church and the little children of the": [65535, 0], "and the little children of the church": [65535, 0], "the little children of the church for": [65535, 0], "little children of the church for the": [65535, 0], "children of the church for the other": [65535, 0], "of the church for the other churches": [65535, 0], "the church for the other churches of": [65535, 0], "church for the other churches of the": [65535, 0], "for the other churches of the village": [65535, 0], "the other churches of the village for": [65535, 0], "other churches of the village for the": [65535, 0], "churches of the village for the village": [65535, 0], "of the village for the village itself": [65535, 0], "the village for the village itself for": [65535, 0], "village for the village itself for the": [65535, 0], "for the village itself for the county": [65535, 0], "the village itself for the county for": [65535, 0], "village itself for the county for the": [65535, 0], "itself for the county for the state": [65535, 0], "for the county for the state for": [65535, 0], "the county for the state for the": [65535, 0], "county for the state for the state": [65535, 0], "for the state for the state officers": [65535, 0], "the state for the state officers for": [65535, 0], "state for the state officers for the": [65535, 0], "for the state officers for the united": [65535, 0], "the state officers for the united states": [65535, 0], "state officers for the united states for": [65535, 0], "officers for the united states for the": [65535, 0], "for the united states for the churches": [65535, 0], "the united states for the churches of": [65535, 0], "united states for the churches of the": [65535, 0], "states for the churches of the united": [65535, 0], "for the churches of the united states": [65535, 0], "the churches of the united states for": [65535, 0], "churches of the united states for congress": [65535, 0], "of the united states for congress for": [65535, 0], "the united states for congress for the": [65535, 0], "united states for congress for the president": [65535, 0], "states for congress for the president for": [65535, 0], "for congress for the president for the": [65535, 0], "congress for the president for the officers": [65535, 0], "for the president for the officers of": [65535, 0], "the president for the officers of the": [65535, 0], "president for the officers of the government": [65535, 0], "for the officers of the government for": [65535, 0], "the officers of the government for poor": [65535, 0], "officers of the government for poor sailors": [65535, 0], "of the government for poor sailors tossed": [65535, 0], "the government for poor sailors tossed by": [65535, 0], "government for poor sailors tossed by stormy": [65535, 0], "for poor sailors tossed by stormy seas": [65535, 0], "poor sailors tossed by stormy seas for": [65535, 0], "sailors tossed by stormy seas for the": [65535, 0], "tossed by stormy seas for the oppressed": [65535, 0], "by stormy seas for the oppressed millions": [65535, 0], "stormy seas for the oppressed millions groaning": [65535, 0], "seas for the oppressed millions groaning under": [65535, 0], "for the oppressed millions groaning under the": [65535, 0], "the oppressed millions groaning under the heel": [65535, 0], "oppressed millions groaning under the heel of": [65535, 0], "millions groaning under the heel of european": [65535, 0], "groaning under the heel of european monarchies": [65535, 0], "under the heel of european monarchies and": [65535, 0], "the heel of european monarchies and oriental": [65535, 0], "heel of european monarchies and oriental despotisms": [65535, 0], "of european monarchies and oriental despotisms for": [65535, 0], "european monarchies and oriental despotisms for such": [65535, 0], "monarchies and oriental despotisms for such as": [65535, 0], "and oriental despotisms for such as have": [65535, 0], "oriental despotisms for such as have the": [65535, 0], "despotisms for such as have the light": [65535, 0], "for such as have the light and": [65535, 0], "such as have the light and the": [65535, 0], "as have the light and the good": [65535, 0], "have the light and the good tidings": [65535, 0], "the light and the good tidings and": [65535, 0], "light and the good tidings and yet": [65535, 0], "and the good tidings and yet have": [65535, 0], "the good tidings and yet have not": [65535, 0], "good tidings and yet have not eyes": [65535, 0], "tidings and yet have not eyes to": [65535, 0], "and yet have not eyes to see": [65535, 0], "yet have not eyes to see nor": [65535, 0], "have not eyes to see nor ears": [65535, 0], "not eyes to see nor ears to": [65535, 0], "eyes to see nor ears to hear": [65535, 0], "to see nor ears to hear withal": [65535, 0], "see nor ears to hear withal for": [65535, 0], "nor ears to hear withal for the": [65535, 0], "ears to hear withal for the heathen": [65535, 0], "to hear withal for the heathen in": [65535, 0], "hear withal for the heathen in the": [65535, 0], "withal for the heathen in the far": [65535, 0], "for the heathen in the far islands": [65535, 0], "the heathen in the far islands of": [65535, 0], "heathen in the far islands of the": [65535, 0], "in the far islands of the sea": [65535, 0], "the far islands of the sea and": [65535, 0], "far islands of the sea and closed": [65535, 0], "islands of the sea and closed with": [65535, 0], "of the sea and closed with a": [65535, 0], "the sea and closed with a supplication": [65535, 0], "sea and closed with a supplication that": [65535, 0], "and closed with a supplication that the": [65535, 0], "closed with a supplication that the words": [65535, 0], "with a supplication that the words he": [65535, 0], "a supplication that the words he was": [65535, 0], "supplication that the words he was about": [65535, 0], "that the words he was about to": [65535, 0], "the words he was about to speak": [65535, 0], "words he was about to speak might": [65535, 0], "he was about to speak might find": [65535, 0], "was about to speak might find grace": [65535, 0], "about to speak might find grace and": [65535, 0], "to speak might find grace and favor": [65535, 0], "speak might find grace and favor and": [65535, 0], "might find grace and favor and be": [65535, 0], "find grace and favor and be as": [65535, 0], "grace and favor and be as seed": [65535, 0], "and favor and be as seed sown": [65535, 0], "favor and be as seed sown in": [65535, 0], "and be as seed sown in fertile": [65535, 0], "be as seed sown in fertile ground": [65535, 0], "as seed sown in fertile ground yielding": [65535, 0], "seed sown in fertile ground yielding in": [65535, 0], "sown in fertile ground yielding in time": [65535, 0], "in fertile ground yielding in time a": [65535, 0], "fertile ground yielding in time a grateful": [65535, 0], "ground yielding in time a grateful harvest": [65535, 0], "yielding in time a grateful harvest of": [65535, 0], "in time a grateful harvest of good": [65535, 0], "time a grateful harvest of good amen": [65535, 0], "a grateful harvest of good amen there": [65535, 0], "grateful harvest of good amen there was": [65535, 0], "harvest of good amen there was a": [65535, 0], "of good amen there was a rustling": [65535, 0], "good amen there was a rustling of": [65535, 0], "amen there was a rustling of dresses": [65535, 0], "there was a rustling of dresses and": [65535, 0], "was a rustling of dresses and the": [65535, 0], "a rustling of dresses and the standing": [65535, 0], "rustling of dresses and the standing congregation": [65535, 0], "of dresses and the standing congregation sat": [65535, 0], "dresses and the standing congregation sat down": [65535, 0], "and the standing congregation sat down the": [65535, 0], "the standing congregation sat down the boy": [65535, 0], "standing congregation sat down the boy whose": [65535, 0], "congregation sat down the boy whose history": [65535, 0], "sat down the boy whose history this": [65535, 0], "down the boy whose history this book": [65535, 0], "the boy whose history this book relates": [65535, 0], "boy whose history this book relates did": [65535, 0], "whose history this book relates did not": [65535, 0], "history this book relates did not enjoy": [65535, 0], "this book relates did not enjoy the": [65535, 0], "book relates did not enjoy the prayer": [65535, 0], "relates did not enjoy the prayer he": [65535, 0], "did not enjoy the prayer he only": [65535, 0], "not enjoy the prayer he only endured": [65535, 0], "enjoy the prayer he only endured it": [65535, 0], "the prayer he only endured it if": [65535, 0], "prayer he only endured it if he": [65535, 0], "he only endured it if he even": [65535, 0], "only endured it if he even did": [65535, 0], "endured it if he even did that": [65535, 0], "it if he even did that much": [65535, 0], "if he even did that much he": [65535, 0], "he even did that much he was": [65535, 0], "even did that much he was restive": [65535, 0], "did that much he was restive all": [65535, 0], "that much he was restive all through": [65535, 0], "much he was restive all through it": [65535, 0], "he was restive all through it he": [65535, 0], "was restive all through it he kept": [65535, 0], "restive all through it he kept tally": [65535, 0], "all through it he kept tally of": [65535, 0], "through it he kept tally of the": [65535, 0], "it he kept tally of the details": [65535, 0], "he kept tally of the details of": [65535, 0], "kept tally of the details of the": [65535, 0], "tally of the details of the prayer": [65535, 0], "of the details of the prayer unconsciously": [65535, 0], "the details of the prayer unconsciously for": [65535, 0], "details of the prayer unconsciously for he": [65535, 0], "of the prayer unconsciously for he was": [65535, 0], "the prayer unconsciously for he was not": [65535, 0], "prayer unconsciously for he was not listening": [65535, 0], "unconsciously for he was not listening but": [65535, 0], "for he was not listening but he": [65535, 0], "he was not listening but he knew": [65535, 0], "was not listening but he knew the": [65535, 0], "not listening but he knew the ground": [65535, 0], "listening but he knew the ground of": [65535, 0], "but he knew the ground of old": [65535, 0], "he knew the ground of old and": [65535, 0], "knew the ground of old and the": [65535, 0], "the ground of old and the clergyman's": [65535, 0], "ground of old and the clergyman's regular": [65535, 0], "of old and the clergyman's regular route": [65535, 0], "old and the clergyman's regular route over": [65535, 0], "and the clergyman's regular route over it": [65535, 0], "the clergyman's regular route over it and": [65535, 0], "clergyman's regular route over it and when": [65535, 0], "regular route over it and when a": [65535, 0], "route over it and when a little": [65535, 0], "over it and when a little trifle": [65535, 0], "it and when a little trifle of": [65535, 0], "and when a little trifle of new": [65535, 0], "when a little trifle of new matter": [65535, 0], "a little trifle of new matter was": [65535, 0], "little trifle of new matter was interlarded": [65535, 0], "trifle of new matter was interlarded his": [65535, 0], "of new matter was interlarded his ear": [65535, 0], "new matter was interlarded his ear detected": [65535, 0], "matter was interlarded his ear detected it": [65535, 0], "was interlarded his ear detected it and": [65535, 0], "interlarded his ear detected it and his": [65535, 0], "his ear detected it and his whole": [65535, 0], "ear detected it and his whole nature": [65535, 0], "detected it and his whole nature resented": [65535, 0], "it and his whole nature resented it": [65535, 0], "and his whole nature resented it he": [65535, 0], "his whole nature resented it he considered": [65535, 0], "whole nature resented it he considered additions": [65535, 0], "nature resented it he considered additions unfair": [65535, 0], "resented it he considered additions unfair and": [65535, 0], "it he considered additions unfair and scoundrelly": [65535, 0], "he considered additions unfair and scoundrelly in": [65535, 0], "considered additions unfair and scoundrelly in the": [65535, 0], "additions unfair and scoundrelly in the midst": [65535, 0], "unfair and scoundrelly in the midst of": [65535, 0], "and scoundrelly in the midst of the": [65535, 0], "scoundrelly in the midst of the prayer": [65535, 0], "in the midst of the prayer a": [65535, 0], "the midst of the prayer a fly": [65535, 0], "midst of the prayer a fly had": [65535, 0], "of the prayer a fly had lit": [65535, 0], "the prayer a fly had lit on": [65535, 0], "prayer a fly had lit on the": [65535, 0], "a fly had lit on the back": [65535, 0], "fly had lit on the back of": [65535, 0], "had lit on the back of the": [65535, 0], "lit on the back of the pew": [65535, 0], "on the back of the pew in": [65535, 0], "the back of the pew in front": [65535, 0], "back of the pew in front of": [65535, 0], "of the pew in front of him": [65535, 0], "the pew in front of him and": [65535, 0], "pew in front of him and tortured": [65535, 0], "in front of him and tortured his": [65535, 0], "front of him and tortured his spirit": [65535, 0], "of him and tortured his spirit by": [65535, 0], "him and tortured his spirit by calmly": [65535, 0], "and tortured his spirit by calmly rubbing": [65535, 0], "tortured his spirit by calmly rubbing its": [65535, 0], "his spirit by calmly rubbing its hands": [65535, 0], "spirit by calmly rubbing its hands together": [65535, 0], "by calmly rubbing its hands together embracing": [65535, 0], "calmly rubbing its hands together embracing its": [65535, 0], "rubbing its hands together embracing its head": [65535, 0], "its hands together embracing its head with": [65535, 0], "hands together embracing its head with its": [65535, 0], "together embracing its head with its arms": [65535, 0], "embracing its head with its arms and": [65535, 0], "its head with its arms and polishing": [65535, 0], "head with its arms and polishing it": [65535, 0], "with its arms and polishing it so": [65535, 0], "its arms and polishing it so vigorously": [65535, 0], "arms and polishing it so vigorously that": [65535, 0], "and polishing it so vigorously that it": [65535, 0], "polishing it so vigorously that it seemed": [65535, 0], "it so vigorously that it seemed to": [65535, 0], "so vigorously that it seemed to almost": [65535, 0], "vigorously that it seemed to almost part": [65535, 0], "that it seemed to almost part company": [65535, 0], "it seemed to almost part company with": [65535, 0], "seemed to almost part company with the": [65535, 0], "to almost part company with the body": [65535, 0], "almost part company with the body and": [65535, 0], "part company with the body and the": [65535, 0], "company with the body and the slender": [65535, 0], "with the body and the slender thread": [65535, 0], "the body and the slender thread of": [65535, 0], "body and the slender thread of a": [65535, 0], "and the slender thread of a neck": [65535, 0], "the slender thread of a neck was": [65535, 0], "slender thread of a neck was exposed": [65535, 0], "thread of a neck was exposed to": [65535, 0], "of a neck was exposed to view": [65535, 0], "a neck was exposed to view scraping": [65535, 0], "neck was exposed to view scraping its": [65535, 0], "was exposed to view scraping its wings": [65535, 0], "exposed to view scraping its wings with": [65535, 0], "to view scraping its wings with its": [65535, 0], "view scraping its wings with its hind": [65535, 0], "scraping its wings with its hind legs": [65535, 0], "its wings with its hind legs and": [65535, 0], "wings with its hind legs and smoothing": [65535, 0], "with its hind legs and smoothing them": [65535, 0], "its hind legs and smoothing them to": [65535, 0], "hind legs and smoothing them to its": [65535, 0], "legs and smoothing them to its body": [65535, 0], "and smoothing them to its body as": [65535, 0], "smoothing them to its body as if": [65535, 0], "them to its body as if they": [65535, 0], "to its body as if they had": [65535, 0], "its body as if they had been": [65535, 0], "body as if they had been coat": [65535, 0], "as if they had been coat tails": [65535, 0], "if they had been coat tails going": [65535, 0], "they had been coat tails going through": [65535, 0], "had been coat tails going through its": [65535, 0], "been coat tails going through its whole": [65535, 0], "coat tails going through its whole toilet": [65535, 0], "tails going through its whole toilet as": [65535, 0], "going through its whole toilet as tranquilly": [65535, 0], "through its whole toilet as tranquilly as": [65535, 0], "its whole toilet as tranquilly as if": [65535, 0], "whole toilet as tranquilly as if it": [65535, 0], "toilet as tranquilly as if it knew": [65535, 0], "as tranquilly as if it knew it": [65535, 0], "tranquilly as if it knew it was": [65535, 0], "as if it knew it was perfectly": [65535, 0], "if it knew it was perfectly safe": [65535, 0], "it knew it was perfectly safe as": [65535, 0], "knew it was perfectly safe as indeed": [65535, 0], "it was perfectly safe as indeed it": [65535, 0], "was perfectly safe as indeed it was": [65535, 0], "perfectly safe as indeed it was for": [65535, 0], "safe as indeed it was for as": [65535, 0], "as indeed it was for as sorely": [65535, 0], "indeed it was for as sorely as": [65535, 0], "it was for as sorely as tom's": [65535, 0], "was for as sorely as tom's hands": [65535, 0], "for as sorely as tom's hands itched": [65535, 0], "as sorely as tom's hands itched to": [65535, 0], "sorely as tom's hands itched to grab": [65535, 0], "as tom's hands itched to grab for": [65535, 0], "tom's hands itched to grab for it": [65535, 0], "hands itched to grab for it they": [65535, 0], "itched to grab for it they did": [65535, 0], "to grab for it they did not": [65535, 0], "grab for it they did not dare": [65535, 0], "for it they did not dare he": [65535, 0], "it they did not dare he believed": [65535, 0], "they did not dare he believed his": [65535, 0], "did not dare he believed his soul": [65535, 0], "not dare he believed his soul would": [65535, 0], "dare he believed his soul would be": [65535, 0], "he believed his soul would be instantly": [65535, 0], "believed his soul would be instantly destroyed": [65535, 0], "his soul would be instantly destroyed if": [65535, 0], "soul would be instantly destroyed if he": [65535, 0], "would be instantly destroyed if he did": [65535, 0], "be instantly destroyed if he did such": [65535, 0], "instantly destroyed if he did such a": [65535, 0], "destroyed if he did such a thing": [65535, 0], "if he did such a thing while": [65535, 0], "he did such a thing while the": [65535, 0], "did such a thing while the prayer": [65535, 0], "such a thing while the prayer was": [65535, 0], "a thing while the prayer was going": [65535, 0], "thing while the prayer was going on": [65535, 0], "while the prayer was going on but": [65535, 0], "the prayer was going on but with": [65535, 0], "prayer was going on but with the": [65535, 0], "was going on but with the closing": [65535, 0], "going on but with the closing sentence": [65535, 0], "on but with the closing sentence his": [65535, 0], "but with the closing sentence his hand": [65535, 0], "with the closing sentence his hand began": [65535, 0], "the closing sentence his hand began to": [65535, 0], "closing sentence his hand began to curve": [65535, 0], "sentence his hand began to curve and": [65535, 0], "his hand began to curve and steal": [65535, 0], "hand began to curve and steal forward": [65535, 0], "began to curve and steal forward and": [65535, 0], "to curve and steal forward and the": [65535, 0], "curve and steal forward and the instant": [65535, 0], "and steal forward and the instant the": [65535, 0], "steal forward and the instant the amen": [65535, 0], "forward and the instant the amen was": [65535, 0], "and the instant the amen was out": [65535, 0], "the instant the amen was out the": [65535, 0], "instant the amen was out the fly": [65535, 0], "the amen was out the fly was": [65535, 0], "amen was out the fly was a": [65535, 0], "was out the fly was a prisoner": [65535, 0], "out the fly was a prisoner of": [65535, 0], "the fly was a prisoner of war": [65535, 0], "fly was a prisoner of war his": [65535, 0], "was a prisoner of war his aunt": [65535, 0], "a prisoner of war his aunt detected": [65535, 0], "prisoner of war his aunt detected the": [65535, 0], "of war his aunt detected the act": [65535, 0], "war his aunt detected the act and": [65535, 0], "his aunt detected the act and made": [65535, 0], "aunt detected the act and made him": [65535, 0], "detected the act and made him let": [65535, 0], "the act and made him let it": [65535, 0], "act and made him let it go": [65535, 0], "and made him let it go the": [65535, 0], "made him let it go the minister": [65535, 0], "him let it go the minister gave": [65535, 0], "let it go the minister gave out": [65535, 0], "it go the minister gave out his": [65535, 0], "go the minister gave out his text": [65535, 0], "the minister gave out his text and": [65535, 0], "minister gave out his text and droned": [65535, 0], "gave out his text and droned along": [65535, 0], "out his text and droned along monotonously": [65535, 0], "his text and droned along monotonously through": [65535, 0], "text and droned along monotonously through an": [65535, 0], "and droned along monotonously through an argument": [65535, 0], "droned along monotonously through an argument that": [65535, 0], "along monotonously through an argument that was": [65535, 0], "monotonously through an argument that was so": [65535, 0], "through an argument that was so prosy": [65535, 0], "an argument that was so prosy that": [65535, 0], "argument that was so prosy that many": [65535, 0], "that was so prosy that many a": [65535, 0], "was so prosy that many a head": [65535, 0], "so prosy that many a head by": [65535, 0], "prosy that many a head by and": [65535, 0], "that many a head by and by": [65535, 0], "many a head by and by began": [65535, 0], "a head by and by began to": [65535, 0], "head by and by began to nod": [65535, 0], "by and by began to nod and": [65535, 0], "and by began to nod and yet": [65535, 0], "by began to nod and yet it": [65535, 0], "began to nod and yet it was": [65535, 0], "to nod and yet it was an": [65535, 0], "nod and yet it was an argument": [65535, 0], "and yet it was an argument that": [65535, 0], "yet it was an argument that dealt": [65535, 0], "it was an argument that dealt in": [65535, 0], "was an argument that dealt in limitless": [65535, 0], "an argument that dealt in limitless fire": [65535, 0], "argument that dealt in limitless fire and": [65535, 0], "that dealt in limitless fire and brimstone": [65535, 0], "dealt in limitless fire and brimstone and": [65535, 0], "in limitless fire and brimstone and thinned": [65535, 0], "limitless fire and brimstone and thinned the": [65535, 0], "fire and brimstone and thinned the predestined": [65535, 0], "and brimstone and thinned the predestined elect": [65535, 0], "brimstone and thinned the predestined elect down": [65535, 0], "and thinned the predestined elect down to": [65535, 0], "thinned the predestined elect down to a": [65535, 0], "the predestined elect down to a company": [65535, 0], "predestined elect down to a company so": [65535, 0], "elect down to a company so small": [65535, 0], "down to a company so small as": [65535, 0], "to a company so small as to": [65535, 0], "a company so small as to be": [65535, 0], "company so small as to be hardly": [65535, 0], "so small as to be hardly worth": [65535, 0], "small as to be hardly worth the": [65535, 0], "as to be hardly worth the saving": [65535, 0], "to be hardly worth the saving tom": [65535, 0], "be hardly worth the saving tom counted": [65535, 0], "hardly worth the saving tom counted the": [65535, 0], "worth the saving tom counted the pages": [65535, 0], "the saving tom counted the pages of": [65535, 0], "saving tom counted the pages of the": [65535, 0], "tom counted the pages of the sermon": [65535, 0], "counted the pages of the sermon after": [65535, 0], "the pages of the sermon after church": [65535, 0], "pages of the sermon after church he": [65535, 0], "of the sermon after church he always": [65535, 0], "the sermon after church he always knew": [65535, 0], "sermon after church he always knew how": [65535, 0], "after church he always knew how many": [65535, 0], "church he always knew how many pages": [65535, 0], "he always knew how many pages there": [65535, 0], "always knew how many pages there had": [65535, 0], "knew how many pages there had been": [65535, 0], "how many pages there had been but": [65535, 0], "many pages there had been but he": [65535, 0], "pages there had been but he seldom": [65535, 0], "there had been but he seldom knew": [65535, 0], "had been but he seldom knew anything": [65535, 0], "been but he seldom knew anything else": [65535, 0], "but he seldom knew anything else about": [65535, 0], "he seldom knew anything else about the": [65535, 0], "seldom knew anything else about the discourse": [65535, 0], "knew anything else about the discourse however": [65535, 0], "anything else about the discourse however this": [65535, 0], "else about the discourse however this time": [65535, 0], "about the discourse however this time he": [65535, 0], "the discourse however this time he was": [65535, 0], "discourse however this time he was really": [65535, 0], "however this time he was really interested": [65535, 0], "this time he was really interested for": [65535, 0], "time he was really interested for a": [65535, 0], "he was really interested for a little": [65535, 0], "was really interested for a little while": [65535, 0], "really interested for a little while the": [65535, 0], "interested for a little while the minister": [65535, 0], "for a little while the minister made": [65535, 0], "a little while the minister made a": [65535, 0], "little while the minister made a grand": [65535, 0], "while the minister made a grand and": [65535, 0], "the minister made a grand and moving": [65535, 0], "minister made a grand and moving picture": [65535, 0], "made a grand and moving picture of": [65535, 0], "a grand and moving picture of the": [65535, 0], "grand and moving picture of the assembling": [65535, 0], "and moving picture of the assembling together": [65535, 0], "moving picture of the assembling together of": [65535, 0], "picture of the assembling together of the": [65535, 0], "of the assembling together of the world's": [65535, 0], "the assembling together of the world's hosts": [65535, 0], "assembling together of the world's hosts at": [65535, 0], "together of the world's hosts at the": [65535, 0], "of the world's hosts at the millennium": [65535, 0], "the world's hosts at the millennium when": [65535, 0], "world's hosts at the millennium when the": [65535, 0], "hosts at the millennium when the lion": [65535, 0], "at the millennium when the lion and": [65535, 0], "the millennium when the lion and the": [65535, 0], "millennium when the lion and the lamb": [65535, 0], "when the lion and the lamb should": [65535, 0], "the lion and the lamb should lie": [65535, 0], "lion and the lamb should lie down": [65535, 0], "and the lamb should lie down together": [65535, 0], "the lamb should lie down together and": [65535, 0], "lamb should lie down together and a": [65535, 0], "should lie down together and a little": [65535, 0], "lie down together and a little child": [65535, 0], "down together and a little child should": [65535, 0], "together and a little child should lead": [65535, 0], "and a little child should lead them": [65535, 0], "a little child should lead them but": [65535, 0], "little child should lead them but the": [65535, 0], "child should lead them but the pathos": [65535, 0], "should lead them but the pathos the": [65535, 0], "lead them but the pathos the lesson": [65535, 0], "them but the pathos the lesson the": [65535, 0], "but the pathos the lesson the moral": [65535, 0], "the pathos the lesson the moral of": [65535, 0], "pathos the lesson the moral of the": [65535, 0], "the lesson the moral of the great": [65535, 0], "lesson the moral of the great spectacle": [65535, 0], "the moral of the great spectacle were": [65535, 0], "moral of the great spectacle were lost": [65535, 0], "of the great spectacle were lost upon": [65535, 0], "the great spectacle were lost upon the": [65535, 0], "great spectacle were lost upon the boy": [65535, 0], "spectacle were lost upon the boy he": [65535, 0], "were lost upon the boy he only": [65535, 0], "lost upon the boy he only thought": [65535, 0], "upon the boy he only thought of": [65535, 0], "the boy he only thought of the": [65535, 0], "boy he only thought of the conspicuousness": [65535, 0], "he only thought of the conspicuousness of": [65535, 0], "only thought of the conspicuousness of the": [65535, 0], "thought of the conspicuousness of the principal": [65535, 0], "of the conspicuousness of the principal character": [65535, 0], "the conspicuousness of the principal character before": [65535, 0], "conspicuousness of the principal character before the": [65535, 0], "of the principal character before the on": [65535, 0], "the principal character before the on looking": [65535, 0], "principal character before the on looking nations": [65535, 0], "character before the on looking nations his": [65535, 0], "before the on looking nations his face": [65535, 0], "the on looking nations his face lit": [65535, 0], "on looking nations his face lit with": [65535, 0], "looking nations his face lit with the": [65535, 0], "nations his face lit with the thought": [65535, 0], "his face lit with the thought and": [65535, 0], "face lit with the thought and he": [65535, 0], "lit with the thought and he said": [65535, 0], "with the thought and he said to": [65535, 0], "the thought and he said to himself": [65535, 0], "thought and he said to himself that": [65535, 0], "and he said to himself that he": [65535, 0], "he said to himself that he wished": [65535, 0], "said to himself that he wished he": [65535, 0], "to himself that he wished he could": [65535, 0], "himself that he wished he could be": [65535, 0], "that he wished he could be that": [65535, 0], "he wished he could be that child": [65535, 0], "wished he could be that child if": [65535, 0], "he could be that child if it": [65535, 0], "could be that child if it was": [65535, 0], "be that child if it was a": [65535, 0], "that child if it was a tame": [65535, 0], "child if it was a tame lion": [65535, 0], "if it was a tame lion now": [65535, 0], "it was a tame lion now he": [65535, 0], "was a tame lion now he lapsed": [65535, 0], "a tame lion now he lapsed into": [65535, 0], "tame lion now he lapsed into suffering": [65535, 0], "lion now he lapsed into suffering again": [65535, 0], "now he lapsed into suffering again as": [65535, 0], "he lapsed into suffering again as the": [65535, 0], "lapsed into suffering again as the dry": [65535, 0], "into suffering again as the dry argument": [65535, 0], "suffering again as the dry argument was": [65535, 0], "again as the dry argument was resumed": [65535, 0], "as the dry argument was resumed presently": [65535, 0], "the dry argument was resumed presently he": [65535, 0], "dry argument was resumed presently he bethought": [65535, 0], "argument was resumed presently he bethought him": [65535, 0], "was resumed presently he bethought him of": [65535, 0], "resumed presently he bethought him of a": [65535, 0], "presently he bethought him of a treasure": [65535, 0], "he bethought him of a treasure he": [65535, 0], "bethought him of a treasure he had": [65535, 0], "him of a treasure he had and": [65535, 0], "of a treasure he had and got": [65535, 0], "a treasure he had and got it": [65535, 0], "treasure he had and got it out": [65535, 0], "he had and got it out it": [65535, 0], "had and got it out it was": [65535, 0], "and got it out it was a": [65535, 0], "got it out it was a large": [65535, 0], "it out it was a large black": [65535, 0], "out it was a large black beetle": [65535, 0], "it was a large black beetle with": [65535, 0], "was a large black beetle with formidable": [65535, 0], "a large black beetle with formidable jaws": [65535, 0], "large black beetle with formidable jaws a": [65535, 0], "black beetle with formidable jaws a pinchbug": [65535, 0], "beetle with formidable jaws a pinchbug he": [65535, 0], "with formidable jaws a pinchbug he called": [65535, 0], "formidable jaws a pinchbug he called it": [65535, 0], "jaws a pinchbug he called it it": [65535, 0], "a pinchbug he called it it was": [65535, 0], "pinchbug he called it it was in": [65535, 0], "he called it it was in a": [65535, 0], "called it it was in a percussion": [65535, 0], "it it was in a percussion cap": [65535, 0], "it was in a percussion cap box": [65535, 0], "was in a percussion cap box the": [65535, 0], "in a percussion cap box the first": [65535, 0], "a percussion cap box the first thing": [65535, 0], "percussion cap box the first thing the": [65535, 0], "cap box the first thing the beetle": [65535, 0], "box the first thing the beetle did": [65535, 0], "the first thing the beetle did was": [65535, 0], "first thing the beetle did was to": [65535, 0], "thing the beetle did was to take": [65535, 0], "the beetle did was to take him": [65535, 0], "beetle did was to take him by": [65535, 0], "did was to take him by the": [65535, 0], "was to take him by the finger": [65535, 0], "to take him by the finger a": [65535, 0], "take him by the finger a natural": [65535, 0], "him by the finger a natural fillip": [65535, 0], "by the finger a natural fillip followed": [65535, 0], "the finger a natural fillip followed the": [65535, 0], "finger a natural fillip followed the beetle": [65535, 0], "a natural fillip followed the beetle went": [65535, 0], "natural fillip followed the beetle went floundering": [65535, 0], "fillip followed the beetle went floundering into": [65535, 0], "followed the beetle went floundering into the": [65535, 0], "the beetle went floundering into the aisle": [65535, 0], "beetle went floundering into the aisle and": [65535, 0], "went floundering into the aisle and lit": [65535, 0], "floundering into the aisle and lit on": [65535, 0], "into the aisle and lit on its": [65535, 0], "the aisle and lit on its back": [65535, 0], "aisle and lit on its back and": [65535, 0], "and lit on its back and the": [65535, 0], "lit on its back and the hurt": [65535, 0], "on its back and the hurt finger": [65535, 0], "its back and the hurt finger went": [65535, 0], "back and the hurt finger went into": [65535, 0], "and the hurt finger went into the": [65535, 0], "the hurt finger went into the boy's": [65535, 0], "hurt finger went into the boy's mouth": [65535, 0], "finger went into the boy's mouth the": [65535, 0], "went into the boy's mouth the beetle": [65535, 0], "into the boy's mouth the beetle lay": [65535, 0], "the boy's mouth the beetle lay there": [65535, 0], "boy's mouth the beetle lay there working": [65535, 0], "mouth the beetle lay there working its": [65535, 0], "the beetle lay there working its helpless": [65535, 0], "beetle lay there working its helpless legs": [65535, 0], "lay there working its helpless legs unable": [65535, 0], "there working its helpless legs unable to": [65535, 0], "working its helpless legs unable to turn": [65535, 0], "its helpless legs unable to turn over": [65535, 0], "helpless legs unable to turn over tom": [65535, 0], "legs unable to turn over tom eyed": [65535, 0], "unable to turn over tom eyed it": [65535, 0], "to turn over tom eyed it and": [65535, 0], "turn over tom eyed it and longed": [65535, 0], "over tom eyed it and longed for": [65535, 0], "tom eyed it and longed for it": [65535, 0], "eyed it and longed for it but": [65535, 0], "it and longed for it but it": [65535, 0], "and longed for it but it was": [65535, 0], "longed for it but it was safe": [65535, 0], "for it but it was safe out": [65535, 0], "it but it was safe out of": [65535, 0], "but it was safe out of his": [65535, 0], "it was safe out of his reach": [65535, 0], "was safe out of his reach other": [65535, 0], "safe out of his reach other people": [65535, 0], "out of his reach other people uninterested": [65535, 0], "of his reach other people uninterested in": [65535, 0], "his reach other people uninterested in the": [65535, 0], "reach other people uninterested in the sermon": [65535, 0], "other people uninterested in the sermon found": [65535, 0], "people uninterested in the sermon found relief": [65535, 0], "uninterested in the sermon found relief in": [65535, 0], "in the sermon found relief in the": [65535, 0], "the sermon found relief in the beetle": [65535, 0], "sermon found relief in the beetle and": [65535, 0], "found relief in the beetle and they": [65535, 0], "relief in the beetle and they eyed": [65535, 0], "in the beetle and they eyed it": [65535, 0], "the beetle and they eyed it too": [65535, 0], "beetle and they eyed it too presently": [65535, 0], "and they eyed it too presently a": [65535, 0], "they eyed it too presently a vagrant": [65535, 0], "eyed it too presently a vagrant poodle": [65535, 0], "it too presently a vagrant poodle dog": [65535, 0], "too presently a vagrant poodle dog came": [65535, 0], "presently a vagrant poodle dog came idling": [65535, 0], "a vagrant poodle dog came idling along": [65535, 0], "vagrant poodle dog came idling along sad": [65535, 0], "poodle dog came idling along sad at": [65535, 0], "dog came idling along sad at heart": [65535, 0], "came idling along sad at heart lazy": [65535, 0], "idling along sad at heart lazy with": [65535, 0], "along sad at heart lazy with the": [65535, 0], "sad at heart lazy with the summer": [65535, 0], "at heart lazy with the summer softness": [65535, 0], "heart lazy with the summer softness and": [65535, 0], "lazy with the summer softness and the": [65535, 0], "with the summer softness and the quiet": [65535, 0], "the summer softness and the quiet weary": [65535, 0], "summer softness and the quiet weary of": [65535, 0], "softness and the quiet weary of captivity": [65535, 0], "and the quiet weary of captivity sighing": [65535, 0], "the quiet weary of captivity sighing for": [65535, 0], "quiet weary of captivity sighing for change": [65535, 0], "weary of captivity sighing for change he": [65535, 0], "of captivity sighing for change he spied": [65535, 0], "captivity sighing for change he spied the": [65535, 0], "sighing for change he spied the beetle": [65535, 0], "for change he spied the beetle the": [65535, 0], "change he spied the beetle the drooping": [65535, 0], "he spied the beetle the drooping tail": [65535, 0], "spied the beetle the drooping tail lifted": [65535, 0], "the beetle the drooping tail lifted and": [65535, 0], "beetle the drooping tail lifted and wagged": [65535, 0], "the drooping tail lifted and wagged he": [65535, 0], "drooping tail lifted and wagged he surveyed": [65535, 0], "tail lifted and wagged he surveyed the": [65535, 0], "lifted and wagged he surveyed the prize": [65535, 0], "and wagged he surveyed the prize walked": [65535, 0], "wagged he surveyed the prize walked around": [65535, 0], "he surveyed the prize walked around it": [65535, 0], "surveyed the prize walked around it smelt": [65535, 0], "the prize walked around it smelt at": [65535, 0], "prize walked around it smelt at it": [65535, 0], "walked around it smelt at it from": [65535, 0], "around it smelt at it from a": [65535, 0], "it smelt at it from a safe": [65535, 0], "smelt at it from a safe distance": [65535, 0], "at it from a safe distance walked": [65535, 0], "it from a safe distance walked around": [65535, 0], "from a safe distance walked around it": [65535, 0], "a safe distance walked around it again": [65535, 0], "safe distance walked around it again grew": [65535, 0], "distance walked around it again grew bolder": [65535, 0], "walked around it again grew bolder and": [65535, 0], "around it again grew bolder and took": [65535, 0], "it again grew bolder and took a": [65535, 0], "again grew bolder and took a closer": [65535, 0], "grew bolder and took a closer smell": [65535, 0], "bolder and took a closer smell then": [65535, 0], "and took a closer smell then lifted": [65535, 0], "took a closer smell then lifted his": [65535, 0], "a closer smell then lifted his lip": [65535, 0], "closer smell then lifted his lip and": [65535, 0], "smell then lifted his lip and made": [65535, 0], "then lifted his lip and made a": [65535, 0], "lifted his lip and made a gingerly": [65535, 0], "his lip and made a gingerly snatch": [65535, 0], "lip and made a gingerly snatch at": [65535, 0], "and made a gingerly snatch at it": [65535, 0], "made a gingerly snatch at it just": [65535, 0], "a gingerly snatch at it just missing": [65535, 0], "gingerly snatch at it just missing it": [65535, 0], "snatch at it just missing it made": [65535, 0], "at it just missing it made another": [65535, 0], "it just missing it made another and": [65535, 0], "just missing it made another and another": [65535, 0], "missing it made another and another began": [65535, 0], "it made another and another began to": [65535, 0], "made another and another began to enjoy": [65535, 0], "another and another began to enjoy the": [65535, 0], "and another began to enjoy the diversion": [65535, 0], "another began to enjoy the diversion subsided": [65535, 0], "began to enjoy the diversion subsided to": [65535, 0], "to enjoy the diversion subsided to his": [65535, 0], "enjoy the diversion subsided to his stomach": [65535, 0], "the diversion subsided to his stomach with": [65535, 0], "diversion subsided to his stomach with the": [65535, 0], "subsided to his stomach with the beetle": [65535, 0], "to his stomach with the beetle between": [65535, 0], "his stomach with the beetle between his": [65535, 0], "stomach with the beetle between his paws": [65535, 0], "with the beetle between his paws and": [65535, 0], "the beetle between his paws and continued": [65535, 0], "beetle between his paws and continued his": [65535, 0], "between his paws and continued his experiments": [65535, 0], "his paws and continued his experiments grew": [65535, 0], "paws and continued his experiments grew weary": [65535, 0], "and continued his experiments grew weary at": [65535, 0], "continued his experiments grew weary at last": [65535, 0], "his experiments grew weary at last and": [65535, 0], "experiments grew weary at last and then": [65535, 0], "grew weary at last and then indifferent": [65535, 0], "weary at last and then indifferent and": [65535, 0], "at last and then indifferent and absent": [65535, 0], "last and then indifferent and absent minded": [65535, 0], "and then indifferent and absent minded his": [65535, 0], "then indifferent and absent minded his head": [65535, 0], "indifferent and absent minded his head nodded": [65535, 0], "and absent minded his head nodded and": [65535, 0], "absent minded his head nodded and little": [65535, 0], "minded his head nodded and little by": [65535, 0], "his head nodded and little by little": [65535, 0], "head nodded and little by little his": [65535, 0], "nodded and little by little his chin": [65535, 0], "and little by little his chin descended": [65535, 0], "little by little his chin descended and": [65535, 0], "by little his chin descended and touched": [65535, 0], "little his chin descended and touched the": [65535, 0], "his chin descended and touched the enemy": [65535, 0], "chin descended and touched the enemy who": [65535, 0], "descended and touched the enemy who seized": [65535, 0], "and touched the enemy who seized it": [65535, 0], "touched the enemy who seized it there": [65535, 0], "the enemy who seized it there was": [65535, 0], "enemy who seized it there was a": [65535, 0], "who seized it there was a sharp": [65535, 0], "seized it there was a sharp yelp": [65535, 0], "it there was a sharp yelp a": [65535, 0], "there was a sharp yelp a flirt": [65535, 0], "was a sharp yelp a flirt of": [65535, 0], "a sharp yelp a flirt of the": [65535, 0], "sharp yelp a flirt of the poodle's": [65535, 0], "yelp a flirt of the poodle's head": [65535, 0], "a flirt of the poodle's head and": [65535, 0], "flirt of the poodle's head and the": [65535, 0], "of the poodle's head and the beetle": [65535, 0], "the poodle's head and the beetle fell": [65535, 0], "poodle's head and the beetle fell a": [65535, 0], "head and the beetle fell a couple": [65535, 0], "and the beetle fell a couple of": [65535, 0], "the beetle fell a couple of yards": [65535, 0], "beetle fell a couple of yards away": [65535, 0], "fell a couple of yards away and": [65535, 0], "a couple of yards away and lit": [65535, 0], "couple of yards away and lit on": [65535, 0], "of yards away and lit on its": [65535, 0], "yards away and lit on its back": [65535, 0], "away and lit on its back once": [65535, 0], "and lit on its back once more": [65535, 0], "lit on its back once more the": [65535, 0], "on its back once more the neighboring": [65535, 0], "its back once more the neighboring spectators": [65535, 0], "back once more the neighboring spectators shook": [65535, 0], "once more the neighboring spectators shook with": [65535, 0], "more the neighboring spectators shook with a": [65535, 0], "the neighboring spectators shook with a gentle": [65535, 0], "neighboring spectators shook with a gentle inward": [65535, 0], "spectators shook with a gentle inward joy": [65535, 0], "shook with a gentle inward joy several": [65535, 0], "with a gentle inward joy several faces": [65535, 0], "a gentle inward joy several faces went": [65535, 0], "gentle inward joy several faces went behind": [65535, 0], "inward joy several faces went behind fans": [65535, 0], "joy several faces went behind fans and": [65535, 0], "several faces went behind fans and handkerchiefs": [65535, 0], "faces went behind fans and handkerchiefs and": [65535, 0], "went behind fans and handkerchiefs and tom": [65535, 0], "behind fans and handkerchiefs and tom was": [65535, 0], "fans and handkerchiefs and tom was entirely": [65535, 0], "and handkerchiefs and tom was entirely happy": [65535, 0], "handkerchiefs and tom was entirely happy the": [65535, 0], "and tom was entirely happy the dog": [65535, 0], "tom was entirely happy the dog looked": [65535, 0], "was entirely happy the dog looked foolish": [65535, 0], "entirely happy the dog looked foolish and": [65535, 0], "happy the dog looked foolish and probably": [65535, 0], "the dog looked foolish and probably felt": [65535, 0], "dog looked foolish and probably felt so": [65535, 0], "looked foolish and probably felt so but": [65535, 0], "foolish and probably felt so but there": [65535, 0], "and probably felt so but there was": [65535, 0], "probably felt so but there was resentment": [65535, 0], "felt so but there was resentment in": [65535, 0], "so but there was resentment in his": [65535, 0], "but there was resentment in his heart": [65535, 0], "there was resentment in his heart too": [65535, 0], "was resentment in his heart too and": [65535, 0], "resentment in his heart too and a": [65535, 0], "in his heart too and a craving": [65535, 0], "his heart too and a craving for": [65535, 0], "heart too and a craving for revenge": [65535, 0], "too and a craving for revenge so": [65535, 0], "and a craving for revenge so he": [65535, 0], "a craving for revenge so he went": [65535, 0], "craving for revenge so he went to": [65535, 0], "for revenge so he went to the": [65535, 0], "revenge so he went to the beetle": [65535, 0], "so he went to the beetle and": [65535, 0], "he went to the beetle and began": [65535, 0], "went to the beetle and began a": [65535, 0], "to the beetle and began a wary": [65535, 0], "the beetle and began a wary attack": [65535, 0], "beetle and began a wary attack on": [65535, 0], "and began a wary attack on it": [65535, 0], "began a wary attack on it again": [65535, 0], "a wary attack on it again jumping": [65535, 0], "wary attack on it again jumping at": [65535, 0], "attack on it again jumping at it": [65535, 0], "on it again jumping at it from": [65535, 0], "it again jumping at it from every": [65535, 0], "again jumping at it from every point": [65535, 0], "jumping at it from every point of": [65535, 0], "at it from every point of a": [65535, 0], "it from every point of a circle": [65535, 0], "from every point of a circle lighting": [65535, 0], "every point of a circle lighting with": [65535, 0], "point of a circle lighting with his": [65535, 0], "of a circle lighting with his fore": [65535, 0], "a circle lighting with his fore paws": [65535, 0], "circle lighting with his fore paws within": [65535, 0], "lighting with his fore paws within an": [65535, 0], "with his fore paws within an inch": [65535, 0], "his fore paws within an inch of": [65535, 0], "fore paws within an inch of the": [65535, 0], "paws within an inch of the creature": [65535, 0], "within an inch of the creature making": [65535, 0], "an inch of the creature making even": [65535, 0], "inch of the creature making even closer": [65535, 0], "of the creature making even closer snatches": [65535, 0], "the creature making even closer snatches at": [65535, 0], "creature making even closer snatches at it": [65535, 0], "making even closer snatches at it with": [65535, 0], "even closer snatches at it with his": [65535, 0], "closer snatches at it with his teeth": [65535, 0], "snatches at it with his teeth and": [65535, 0], "at it with his teeth and jerking": [65535, 0], "it with his teeth and jerking his": [65535, 0], "with his teeth and jerking his head": [65535, 0], "his teeth and jerking his head till": [65535, 0], "teeth and jerking his head till his": [65535, 0], "and jerking his head till his ears": [65535, 0], "jerking his head till his ears flapped": [65535, 0], "his head till his ears flapped again": [65535, 0], "head till his ears flapped again but": [65535, 0], "till his ears flapped again but he": [65535, 0], "his ears flapped again but he grew": [65535, 0], "ears flapped again but he grew tired": [65535, 0], "flapped again but he grew tired once": [65535, 0], "again but he grew tired once more": [65535, 0], "but he grew tired once more after": [65535, 0], "he grew tired once more after a": [65535, 0], "grew tired once more after a while": [65535, 0], "tired once more after a while tried": [65535, 0], "once more after a while tried to": [65535, 0], "more after a while tried to amuse": [65535, 0], "after a while tried to amuse himself": [65535, 0], "a while tried to amuse himself with": [65535, 0], "while tried to amuse himself with a": [65535, 0], "tried to amuse himself with a fly": [65535, 0], "to amuse himself with a fly but": [65535, 0], "amuse himself with a fly but found": [65535, 0], "himself with a fly but found no": [65535, 0], "with a fly but found no relief": [65535, 0], "a fly but found no relief followed": [65535, 0], "fly but found no relief followed an": [65535, 0], "but found no relief followed an ant": [65535, 0], "found no relief followed an ant around": [65535, 0], "no relief followed an ant around with": [65535, 0], "relief followed an ant around with his": [65535, 0], "followed an ant around with his nose": [65535, 0], "an ant around with his nose close": [65535, 0], "ant around with his nose close to": [65535, 0], "around with his nose close to the": [65535, 0], "with his nose close to the floor": [65535, 0], "his nose close to the floor and": [65535, 0], "nose close to the floor and quickly": [65535, 0], "close to the floor and quickly wearied": [65535, 0], "to the floor and quickly wearied of": [65535, 0], "the floor and quickly wearied of that": [65535, 0], "floor and quickly wearied of that yawned": [65535, 0], "and quickly wearied of that yawned sighed": [65535, 0], "quickly wearied of that yawned sighed forgot": [65535, 0], "wearied of that yawned sighed forgot the": [65535, 0], "of that yawned sighed forgot the beetle": [65535, 0], "that yawned sighed forgot the beetle entirely": [65535, 0], "yawned sighed forgot the beetle entirely and": [65535, 0], "sighed forgot the beetle entirely and sat": [65535, 0], "forgot the beetle entirely and sat down": [65535, 0], "the beetle entirely and sat down on": [65535, 0], "beetle entirely and sat down on it": [65535, 0], "entirely and sat down on it then": [65535, 0], "and sat down on it then there": [65535, 0], "sat down on it then there was": [65535, 0], "down on it then there was a": [65535, 0], "on it then there was a wild": [65535, 0], "it then there was a wild yelp": [65535, 0], "then there was a wild yelp of": [65535, 0], "there was a wild yelp of agony": [65535, 0], "was a wild yelp of agony and": [65535, 0], "a wild yelp of agony and the": [65535, 0], "wild yelp of agony and the poodle": [65535, 0], "yelp of agony and the poodle went": [65535, 0], "of agony and the poodle went sailing": [65535, 0], "agony and the poodle went sailing up": [65535, 0], "and the poodle went sailing up the": [65535, 0], "the poodle went sailing up the aisle": [65535, 0], "poodle went sailing up the aisle the": [65535, 0], "went sailing up the aisle the yelps": [65535, 0], "sailing up the aisle the yelps continued": [65535, 0], "up the aisle the yelps continued and": [65535, 0], "the aisle the yelps continued and so": [65535, 0], "aisle the yelps continued and so did": [65535, 0], "the yelps continued and so did the": [65535, 0], "yelps continued and so did the dog": [65535, 0], "continued and so did the dog he": [65535, 0], "and so did the dog he crossed": [65535, 0], "so did the dog he crossed the": [65535, 0], "did the dog he crossed the house": [65535, 0], "the dog he crossed the house in": [65535, 0], "dog he crossed the house in front": [65535, 0], "he crossed the house in front of": [65535, 0], "crossed the house in front of the": [65535, 0], "the house in front of the altar": [65535, 0], "house in front of the altar he": [65535, 0], "in front of the altar he flew": [65535, 0], "front of the altar he flew down": [65535, 0], "of the altar he flew down the": [65535, 0], "the altar he flew down the other": [65535, 0], "altar he flew down the other aisle": [65535, 0], "he flew down the other aisle he": [65535, 0], "flew down the other aisle he crossed": [65535, 0], "down the other aisle he crossed before": [65535, 0], "the other aisle he crossed before the": [65535, 0], "other aisle he crossed before the doors": [65535, 0], "aisle he crossed before the doors he": [65535, 0], "he crossed before the doors he clamored": [65535, 0], "crossed before the doors he clamored up": [65535, 0], "before the doors he clamored up the": [65535, 0], "the doors he clamored up the home": [65535, 0], "doors he clamored up the home stretch": [65535, 0], "he clamored up the home stretch his": [65535, 0], "clamored up the home stretch his anguish": [65535, 0], "up the home stretch his anguish grew": [65535, 0], "the home stretch his anguish grew with": [65535, 0], "home stretch his anguish grew with his": [65535, 0], "stretch his anguish grew with his progress": [65535, 0], "his anguish grew with his progress till": [65535, 0], "anguish grew with his progress till presently": [65535, 0], "grew with his progress till presently he": [65535, 0], "with his progress till presently he was": [65535, 0], "his progress till presently he was but": [65535, 0], "progress till presently he was but a": [65535, 0], "till presently he was but a woolly": [65535, 0], "presently he was but a woolly comet": [65535, 0], "he was but a woolly comet moving": [65535, 0], "was but a woolly comet moving in": [65535, 0], "but a woolly comet moving in its": [65535, 0], "a woolly comet moving in its orbit": [65535, 0], "woolly comet moving in its orbit with": [65535, 0], "comet moving in its orbit with the": [65535, 0], "moving in its orbit with the gleam": [65535, 0], "in its orbit with the gleam and": [65535, 0], "its orbit with the gleam and the": [65535, 0], "orbit with the gleam and the speed": [65535, 0], "with the gleam and the speed of": [65535, 0], "the gleam and the speed of light": [65535, 0], "gleam and the speed of light at": [65535, 0], "and the speed of light at last": [65535, 0], "the speed of light at last the": [65535, 0], "speed of light at last the frantic": [65535, 0], "of light at last the frantic sufferer": [65535, 0], "light at last the frantic sufferer sheered": [65535, 0], "at last the frantic sufferer sheered from": [65535, 0], "last the frantic sufferer sheered from its": [65535, 0], "the frantic sufferer sheered from its course": [65535, 0], "frantic sufferer sheered from its course and": [65535, 0], "sufferer sheered from its course and sprang": [65535, 0], "sheered from its course and sprang into": [65535, 0], "from its course and sprang into its": [65535, 0], "its course and sprang into its master's": [65535, 0], "course and sprang into its master's lap": [65535, 0], "and sprang into its master's lap he": [65535, 0], "sprang into its master's lap he flung": [65535, 0], "into its master's lap he flung it": [65535, 0], "its master's lap he flung it out": [65535, 0], "master's lap he flung it out of": [65535, 0], "lap he flung it out of the": [65535, 0], "he flung it out of the window": [65535, 0], "flung it out of the window and": [65535, 0], "it out of the window and the": [65535, 0], "out of the window and the voice": [65535, 0], "of the window and the voice of": [65535, 0], "the window and the voice of distress": [65535, 0], "window and the voice of distress quickly": [65535, 0], "and the voice of distress quickly thinned": [65535, 0], "the voice of distress quickly thinned away": [65535, 0], "voice of distress quickly thinned away and": [65535, 0], "of distress quickly thinned away and died": [65535, 0], "distress quickly thinned away and died in": [65535, 0], "quickly thinned away and died in the": [65535, 0], "thinned away and died in the distance": [65535, 0], "away and died in the distance by": [65535, 0], "and died in the distance by this": [65535, 0], "died in the distance by this time": [65535, 0], "in the distance by this time the": [65535, 0], "the distance by this time the whole": [65535, 0], "distance by this time the whole church": [65535, 0], "by this time the whole church was": [65535, 0], "this time the whole church was red": [65535, 0], "time the whole church was red faced": [65535, 0], "the whole church was red faced and": [65535, 0], "whole church was red faced and suffocating": [65535, 0], "church was red faced and suffocating with": [65535, 0], "was red faced and suffocating with suppressed": [65535, 0], "red faced and suffocating with suppressed laughter": [65535, 0], "faced and suffocating with suppressed laughter and": [65535, 0], "and suffocating with suppressed laughter and the": [65535, 0], "suffocating with suppressed laughter and the sermon": [65535, 0], "with suppressed laughter and the sermon had": [65535, 0], "suppressed laughter and the sermon had come": [65535, 0], "laughter and the sermon had come to": [65535, 0], "and the sermon had come to a": [65535, 0], "the sermon had come to a dead": [65535, 0], "sermon had come to a dead standstill": [65535, 0], "had come to a dead standstill the": [65535, 0], "come to a dead standstill the discourse": [65535, 0], "to a dead standstill the discourse was": [65535, 0], "a dead standstill the discourse was resumed": [65535, 0], "dead standstill the discourse was resumed presently": [65535, 0], "standstill the discourse was resumed presently but": [65535, 0], "the discourse was resumed presently but it": [65535, 0], "discourse was resumed presently but it went": [65535, 0], "was resumed presently but it went lame": [65535, 0], "resumed presently but it went lame and": [65535, 0], "presently but it went lame and halting": [65535, 0], "but it went lame and halting all": [65535, 0], "it went lame and halting all possibility": [65535, 0], "went lame and halting all possibility of": [65535, 0], "lame and halting all possibility of impressiveness": [65535, 0], "and halting all possibility of impressiveness being": [65535, 0], "halting all possibility of impressiveness being at": [65535, 0], "all possibility of impressiveness being at an": [65535, 0], "possibility of impressiveness being at an end": [65535, 0], "of impressiveness being at an end for": [65535, 0], "impressiveness being at an end for even": [65535, 0], "being at an end for even the": [65535, 0], "at an end for even the gravest": [65535, 0], "an end for even the gravest sentiments": [65535, 0], "end for even the gravest sentiments were": [65535, 0], "for even the gravest sentiments were constantly": [65535, 0], "even the gravest sentiments were constantly being": [65535, 0], "the gravest sentiments were constantly being received": [65535, 0], "gravest sentiments were constantly being received with": [65535, 0], "sentiments were constantly being received with a": [65535, 0], "were constantly being received with a smothered": [65535, 0], "constantly being received with a smothered burst": [65535, 0], "being received with a smothered burst of": [65535, 0], "received with a smothered burst of unholy": [65535, 0], "with a smothered burst of unholy mirth": [65535, 0], "a smothered burst of unholy mirth under": [65535, 0], "smothered burst of unholy mirth under cover": [65535, 0], "burst of unholy mirth under cover of": [65535, 0], "of unholy mirth under cover of some": [65535, 0], "unholy mirth under cover of some remote": [65535, 0], "mirth under cover of some remote pew": [65535, 0], "under cover of some remote pew back": [65535, 0], "cover of some remote pew back as": [65535, 0], "of some remote pew back as if": [65535, 0], "some remote pew back as if the": [65535, 0], "remote pew back as if the poor": [65535, 0], "pew back as if the poor parson": [65535, 0], "back as if the poor parson had": [65535, 0], "as if the poor parson had said": [65535, 0], "if the poor parson had said a": [65535, 0], "the poor parson had said a rarely": [65535, 0], "poor parson had said a rarely facetious": [65535, 0], "parson had said a rarely facetious thing": [65535, 0], "had said a rarely facetious thing it": [65535, 0], "said a rarely facetious thing it was": [65535, 0], "a rarely facetious thing it was a": [65535, 0], "rarely facetious thing it was a genuine": [65535, 0], "facetious thing it was a genuine relief": [65535, 0], "thing it was a genuine relief to": [65535, 0], "it was a genuine relief to the": [65535, 0], "was a genuine relief to the whole": [65535, 0], "a genuine relief to the whole congregation": [65535, 0], "genuine relief to the whole congregation when": [65535, 0], "relief to the whole congregation when the": [65535, 0], "to the whole congregation when the ordeal": [65535, 0], "the whole congregation when the ordeal was": [65535, 0], "whole congregation when the ordeal was over": [65535, 0], "congregation when the ordeal was over and": [65535, 0], "when the ordeal was over and the": [65535, 0], "the ordeal was over and the benediction": [65535, 0], "ordeal was over and the benediction pronounced": [65535, 0], "was over and the benediction pronounced tom": [65535, 0], "over and the benediction pronounced tom sawyer": [65535, 0], "and the benediction pronounced tom sawyer went": [65535, 0], "the benediction pronounced tom sawyer went home": [65535, 0], "benediction pronounced tom sawyer went home quite": [65535, 0], "pronounced tom sawyer went home quite cheerful": [65535, 0], "tom sawyer went home quite cheerful thinking": [65535, 0], "sawyer went home quite cheerful thinking to": [65535, 0], "went home quite cheerful thinking to himself": [65535, 0], "home quite cheerful thinking to himself that": [65535, 0], "quite cheerful thinking to himself that there": [65535, 0], "cheerful thinking to himself that there was": [65535, 0], "thinking to himself that there was some": [65535, 0], "to himself that there was some satisfaction": [65535, 0], "himself that there was some satisfaction about": [65535, 0], "that there was some satisfaction about divine": [65535, 0], "there was some satisfaction about divine service": [65535, 0], "was some satisfaction about divine service when": [65535, 0], "some satisfaction about divine service when there": [65535, 0], "satisfaction about divine service when there was": [65535, 0], "about divine service when there was a": [65535, 0], "divine service when there was a bit": [65535, 0], "service when there was a bit of": [65535, 0], "when there was a bit of variety": [65535, 0], "there was a bit of variety in": [65535, 0], "was a bit of variety in it": [65535, 0], "a bit of variety in it he": [65535, 0], "bit of variety in it he had": [65535, 0], "of variety in it he had but": [65535, 0], "variety in it he had but one": [65535, 0], "in it he had but one marring": [65535, 0], "it he had but one marring thought": [65535, 0], "he had but one marring thought he": [65535, 0], "had but one marring thought he was": [65535, 0], "but one marring thought he was willing": [65535, 0], "one marring thought he was willing that": [65535, 0], "marring thought he was willing that the": [65535, 0], "thought he was willing that the dog": [65535, 0], "he was willing that the dog should": [65535, 0], "was willing that the dog should play": [65535, 0], "willing that the dog should play with": [65535, 0], "that the dog should play with his": [65535, 0], "the dog should play with his pinchbug": [65535, 0], "dog should play with his pinchbug but": [65535, 0], "should play with his pinchbug but he": [65535, 0], "play with his pinchbug but he did": [65535, 0], "with his pinchbug but he did not": [65535, 0], "his pinchbug but he did not think": [65535, 0], "pinchbug but he did not think it": [65535, 0], "but he did not think it was": [65535, 0], "he did not think it was upright": [65535, 0], "did not think it was upright in": [65535, 0], "not think it was upright in him": [65535, 0], "think it was upright in him to": [65535, 0], "it was upright in him to carry": [65535, 0], "was upright in him to carry it": [65535, 0], "upright in him to carry it off": [65535, 0], "about half past ten the cracked bell of": [65535, 0], "half past ten the cracked bell of the": [65535, 0], "past ten the cracked bell of the small": [65535, 0], "ten the cracked bell of the small church": [65535, 0], "the cracked bell of the small church began": [65535, 0], "cracked bell of the small church began to": [65535, 0], "bell of the small church began to ring": [65535, 0], "of the small church began to ring and": [65535, 0], "the small church began to ring and presently": [65535, 0], "small church began to ring and presently the": [65535, 0], "church began to ring and presently the people": [65535, 0], "began to ring and presently the people began": [65535, 0], "to ring and presently the people began to": [65535, 0], "ring and presently the people began to gather": [65535, 0], "and presently the people began to gather for": [65535, 0], "presently the people began to gather for the": [65535, 0], "the people began to gather for the morning": [65535, 0], "people began to gather for the morning sermon": [65535, 0], "began to gather for the morning sermon the": [65535, 0], "to gather for the morning sermon the sunday": [65535, 0], "gather for the morning sermon the sunday school": [65535, 0], "for the morning sermon the sunday school children": [65535, 0], "the morning sermon the sunday school children distributed": [65535, 0], "morning sermon the sunday school children distributed themselves": [65535, 0], "sermon the sunday school children distributed themselves about": [65535, 0], "the sunday school children distributed themselves about the": [65535, 0], "sunday school children distributed themselves about the house": [65535, 0], "school children distributed themselves about the house and": [65535, 0], "children distributed themselves about the house and occupied": [65535, 0], "distributed themselves about the house and occupied pews": [65535, 0], "themselves about the house and occupied pews with": [65535, 0], "about the house and occupied pews with their": [65535, 0], "the house and occupied pews with their parents": [65535, 0], "house and occupied pews with their parents so": [65535, 0], "and occupied pews with their parents so as": [65535, 0], "occupied pews with their parents so as to": [65535, 0], "pews with their parents so as to be": [65535, 0], "with their parents so as to be under": [65535, 0], "their parents so as to be under supervision": [65535, 0], "parents so as to be under supervision aunt": [65535, 0], "so as to be under supervision aunt polly": [65535, 0], "as to be under supervision aunt polly came": [65535, 0], "to be under supervision aunt polly came and": [65535, 0], "be under supervision aunt polly came and tom": [65535, 0], "under supervision aunt polly came and tom and": [65535, 0], "supervision aunt polly came and tom and sid": [65535, 0], "aunt polly came and tom and sid and": [65535, 0], "polly came and tom and sid and mary": [65535, 0], "came and tom and sid and mary sat": [65535, 0], "and tom and sid and mary sat with": [65535, 0], "tom and sid and mary sat with her": [65535, 0], "and sid and mary sat with her tom": [65535, 0], "sid and mary sat with her tom being": [65535, 0], "and mary sat with her tom being placed": [65535, 0], "mary sat with her tom being placed next": [65535, 0], "sat with her tom being placed next the": [65535, 0], "with her tom being placed next the aisle": [65535, 0], "her tom being placed next the aisle in": [65535, 0], "tom being placed next the aisle in order": [65535, 0], "being placed next the aisle in order that": [65535, 0], "placed next the aisle in order that he": [65535, 0], "next the aisle in order that he might": [65535, 0], "the aisle in order that he might be": [65535, 0], "aisle in order that he might be as": [65535, 0], "in order that he might be as far": [65535, 0], "order that he might be as far away": [65535, 0], "that he might be as far away from": [65535, 0], "he might be as far away from the": [65535, 0], "might be as far away from the open": [65535, 0], "be as far away from the open window": [65535, 0], "as far away from the open window and": [65535, 0], "far away from the open window and the": [65535, 0], "away from the open window and the seductive": [65535, 0], "from the open window and the seductive outside": [65535, 0], "the open window and the seductive outside summer": [65535, 0], "open window and the seductive outside summer scenes": [65535, 0], "window and the seductive outside summer scenes as": [65535, 0], "and the seductive outside summer scenes as possible": [65535, 0], "the seductive outside summer scenes as possible the": [65535, 0], "seductive outside summer scenes as possible the crowd": [65535, 0], "outside summer scenes as possible the crowd filed": [65535, 0], "summer scenes as possible the crowd filed up": [65535, 0], "scenes as possible the crowd filed up the": [65535, 0], "as possible the crowd filed up the aisles": [65535, 0], "possible the crowd filed up the aisles the": [65535, 0], "the crowd filed up the aisles the aged": [65535, 0], "crowd filed up the aisles the aged and": [65535, 0], "filed up the aisles the aged and needy": [65535, 0], "up the aisles the aged and needy postmaster": [65535, 0], "the aisles the aged and needy postmaster who": [65535, 0], "aisles the aged and needy postmaster who had": [65535, 0], "the aged and needy postmaster who had seen": [65535, 0], "aged and needy postmaster who had seen better": [65535, 0], "and needy postmaster who had seen better days": [65535, 0], "needy postmaster who had seen better days the": [65535, 0], "postmaster who had seen better days the mayor": [65535, 0], "who had seen better days the mayor and": [65535, 0], "had seen better days the mayor and his": [65535, 0], "seen better days the mayor and his wife": [65535, 0], "better days the mayor and his wife for": [65535, 0], "days the mayor and his wife for they": [65535, 0], "the mayor and his wife for they had": [65535, 0], "mayor and his wife for they had a": [65535, 0], "and his wife for they had a mayor": [65535, 0], "his wife for they had a mayor there": [65535, 0], "wife for they had a mayor there among": [65535, 0], "for they had a mayor there among other": [65535, 0], "they had a mayor there among other unnecessaries": [65535, 0], "had a mayor there among other unnecessaries the": [65535, 0], "a mayor there among other unnecessaries the justice": [65535, 0], "mayor there among other unnecessaries the justice of": [65535, 0], "there among other unnecessaries the justice of the": [65535, 0], "among other unnecessaries the justice of the peace": [65535, 0], "other unnecessaries the justice of the peace the": [65535, 0], "unnecessaries the justice of the peace the widow": [65535, 0], "the justice of the peace the widow douglass": [65535, 0], "justice of the peace the widow douglass fair": [65535, 0], "of the peace the widow douglass fair smart": [65535, 0], "the peace the widow douglass fair smart and": [65535, 0], "peace the widow douglass fair smart and forty": [65535, 0], "the widow douglass fair smart and forty a": [65535, 0], "widow douglass fair smart and forty a generous": [65535, 0], "douglass fair smart and forty a generous good": [65535, 0], "fair smart and forty a generous good hearted": [65535, 0], "smart and forty a generous good hearted soul": [65535, 0], "and forty a generous good hearted soul and": [65535, 0], "forty a generous good hearted soul and well": [65535, 0], "a generous good hearted soul and well to": [65535, 0], "generous good hearted soul and well to do": [65535, 0], "good hearted soul and well to do her": [65535, 0], "hearted soul and well to do her hill": [65535, 0], "soul and well to do her hill mansion": [65535, 0], "and well to do her hill mansion the": [65535, 0], "well to do her hill mansion the only": [65535, 0], "to do her hill mansion the only palace": [65535, 0], "do her hill mansion the only palace in": [65535, 0], "her hill mansion the only palace in the": [65535, 0], "hill mansion the only palace in the town": [65535, 0], "mansion the only palace in the town and": [65535, 0], "the only palace in the town and the": [65535, 0], "only palace in the town and the most": [65535, 0], "palace in the town and the most hospitable": [65535, 0], "in the town and the most hospitable and": [65535, 0], "the town and the most hospitable and much": [65535, 0], "town and the most hospitable and much the": [65535, 0], "and the most hospitable and much the most": [65535, 0], "the most hospitable and much the most lavish": [65535, 0], "most hospitable and much the most lavish in": [65535, 0], "hospitable and much the most lavish in the": [65535, 0], "and much the most lavish in the matter": [65535, 0], "much the most lavish in the matter of": [65535, 0], "the most lavish in the matter of festivities": [65535, 0], "most lavish in the matter of festivities that": [65535, 0], "lavish in the matter of festivities that st": [65535, 0], "in the matter of festivities that st petersburg": [65535, 0], "the matter of festivities that st petersburg could": [65535, 0], "matter of festivities that st petersburg could boast": [65535, 0], "of festivities that st petersburg could boast the": [65535, 0], "festivities that st petersburg could boast the bent": [65535, 0], "that st petersburg could boast the bent and": [65535, 0], "st petersburg could boast the bent and venerable": [65535, 0], "petersburg could boast the bent and venerable major": [65535, 0], "could boast the bent and venerable major and": [65535, 0], "boast the bent and venerable major and mrs": [65535, 0], "the bent and venerable major and mrs ward": [65535, 0], "bent and venerable major and mrs ward lawyer": [65535, 0], "and venerable major and mrs ward lawyer riverson": [65535, 0], "venerable major and mrs ward lawyer riverson the": [65535, 0], "major and mrs ward lawyer riverson the new": [65535, 0], "and mrs ward lawyer riverson the new notable": [65535, 0], "mrs ward lawyer riverson the new notable from": [65535, 0], "ward lawyer riverson the new notable from a": [65535, 0], "lawyer riverson the new notable from a distance": [65535, 0], "riverson the new notable from a distance next": [65535, 0], "the new notable from a distance next the": [65535, 0], "new notable from a distance next the belle": [65535, 0], "notable from a distance next the belle of": [65535, 0], "from a distance next the belle of the": [65535, 0], "a distance next the belle of the village": [65535, 0], "distance next the belle of the village followed": [65535, 0], "next the belle of the village followed by": [65535, 0], "the belle of the village followed by a": [65535, 0], "belle of the village followed by a troop": [65535, 0], "of the village followed by a troop of": [65535, 0], "the village followed by a troop of lawn": [65535, 0], "village followed by a troop of lawn clad": [65535, 0], "followed by a troop of lawn clad and": [65535, 0], "by a troop of lawn clad and ribbon": [65535, 0], "a troop of lawn clad and ribbon decked": [65535, 0], "troop of lawn clad and ribbon decked young": [65535, 0], "of lawn clad and ribbon decked young heart": [65535, 0], "lawn clad and ribbon decked young heart breakers": [65535, 0], "clad and ribbon decked young heart breakers then": [65535, 0], "and ribbon decked young heart breakers then all": [65535, 0], "ribbon decked young heart breakers then all the": [65535, 0], "decked young heart breakers then all the young": [65535, 0], "young heart breakers then all the young clerks": [65535, 0], "heart breakers then all the young clerks in": [65535, 0], "breakers then all the young clerks in town": [65535, 0], "then all the young clerks in town in": [65535, 0], "all the young clerks in town in a": [65535, 0], "the young clerks in town in a body": [65535, 0], "young clerks in town in a body for": [65535, 0], "clerks in town in a body for they": [65535, 0], "in town in a body for they had": [65535, 0], "town in a body for they had stood": [65535, 0], "in a body for they had stood in": [65535, 0], "a body for they had stood in the": [65535, 0], "body for they had stood in the vestibule": [65535, 0], "for they had stood in the vestibule sucking": [65535, 0], "they had stood in the vestibule sucking their": [65535, 0], "had stood in the vestibule sucking their cane": [65535, 0], "stood in the vestibule sucking their cane heads": [65535, 0], "in the vestibule sucking their cane heads a": [65535, 0], "the vestibule sucking their cane heads a circling": [65535, 0], "vestibule sucking their cane heads a circling wall": [65535, 0], "sucking their cane heads a circling wall of": [65535, 0], "their cane heads a circling wall of oiled": [65535, 0], "cane heads a circling wall of oiled and": [65535, 0], "heads a circling wall of oiled and simpering": [65535, 0], "a circling wall of oiled and simpering admirers": [65535, 0], "circling wall of oiled and simpering admirers till": [65535, 0], "wall of oiled and simpering admirers till the": [65535, 0], "of oiled and simpering admirers till the last": [65535, 0], "oiled and simpering admirers till the last girl": [65535, 0], "and simpering admirers till the last girl had": [65535, 0], "simpering admirers till the last girl had run": [65535, 0], "admirers till the last girl had run their": [65535, 0], "till the last girl had run their gantlet": [65535, 0], "the last girl had run their gantlet and": [65535, 0], "last girl had run their gantlet and last": [65535, 0], "girl had run their gantlet and last of": [65535, 0], "had run their gantlet and last of all": [65535, 0], "run their gantlet and last of all came": [65535, 0], "their gantlet and last of all came the": [65535, 0], "gantlet and last of all came the model": [65535, 0], "and last of all came the model boy": [65535, 0], "last of all came the model boy willie": [65535, 0], "of all came the model boy willie mufferson": [65535, 0], "all came the model boy willie mufferson taking": [65535, 0], "came the model boy willie mufferson taking as": [65535, 0], "the model boy willie mufferson taking as heedful": [65535, 0], "model boy willie mufferson taking as heedful care": [65535, 0], "boy willie mufferson taking as heedful care of": [65535, 0], "willie mufferson taking as heedful care of his": [65535, 0], "mufferson taking as heedful care of his mother": [65535, 0], "taking as heedful care of his mother as": [65535, 0], "as heedful care of his mother as if": [65535, 0], "heedful care of his mother as if she": [65535, 0], "care of his mother as if she were": [65535, 0], "of his mother as if she were cut": [65535, 0], "his mother as if she were cut glass": [65535, 0], "mother as if she were cut glass he": [65535, 0], "as if she were cut glass he always": [65535, 0], "if she were cut glass he always brought": [65535, 0], "she were cut glass he always brought his": [65535, 0], "were cut glass he always brought his mother": [65535, 0], "cut glass he always brought his mother to": [65535, 0], "glass he always brought his mother to church": [65535, 0], "he always brought his mother to church and": [65535, 0], "always brought his mother to church and was": [65535, 0], "brought his mother to church and was the": [65535, 0], "his mother to church and was the pride": [65535, 0], "mother to church and was the pride of": [65535, 0], "to church and was the pride of all": [65535, 0], "church and was the pride of all the": [65535, 0], "and was the pride of all the matrons": [65535, 0], "was the pride of all the matrons the": [65535, 0], "the pride of all the matrons the boys": [65535, 0], "pride of all the matrons the boys all": [65535, 0], "of all the matrons the boys all hated": [65535, 0], "all the matrons the boys all hated him": [65535, 0], "the matrons the boys all hated him he": [65535, 0], "matrons the boys all hated him he was": [65535, 0], "the boys all hated him he was so": [65535, 0], "boys all hated him he was so good": [65535, 0], "all hated him he was so good and": [65535, 0], "hated him he was so good and besides": [65535, 0], "him he was so good and besides he": [65535, 0], "he was so good and besides he had": [65535, 0], "was so good and besides he had been": [65535, 0], "so good and besides he had been thrown": [65535, 0], "good and besides he had been thrown up": [65535, 0], "and besides he had been thrown up to": [65535, 0], "besides he had been thrown up to them": [65535, 0], "he had been thrown up to them so": [65535, 0], "had been thrown up to them so much": [65535, 0], "been thrown up to them so much his": [65535, 0], "thrown up to them so much his white": [65535, 0], "up to them so much his white handkerchief": [65535, 0], "to them so much his white handkerchief was": [65535, 0], "them so much his white handkerchief was hanging": [65535, 0], "so much his white handkerchief was hanging out": [65535, 0], "much his white handkerchief was hanging out of": [65535, 0], "his white handkerchief was hanging out of his": [65535, 0], "white handkerchief was hanging out of his pocket": [65535, 0], "handkerchief was hanging out of his pocket behind": [65535, 0], "was hanging out of his pocket behind as": [65535, 0], "hanging out of his pocket behind as usual": [65535, 0], "out of his pocket behind as usual on": [65535, 0], "of his pocket behind as usual on sundays": [65535, 0], "his pocket behind as usual on sundays accidentally": [65535, 0], "pocket behind as usual on sundays accidentally tom": [65535, 0], "behind as usual on sundays accidentally tom had": [65535, 0], "as usual on sundays accidentally tom had no": [65535, 0], "usual on sundays accidentally tom had no handkerchief": [65535, 0], "on sundays accidentally tom had no handkerchief and": [65535, 0], "sundays accidentally tom had no handkerchief and he": [65535, 0], "accidentally tom had no handkerchief and he looked": [65535, 0], "tom had no handkerchief and he looked upon": [65535, 0], "had no handkerchief and he looked upon boys": [65535, 0], "no handkerchief and he looked upon boys who": [65535, 0], "handkerchief and he looked upon boys who had": [65535, 0], "and he looked upon boys who had as": [65535, 0], "he looked upon boys who had as snobs": [65535, 0], "looked upon boys who had as snobs the": [65535, 0], "upon boys who had as snobs the congregation": [65535, 0], "boys who had as snobs the congregation being": [65535, 0], "who had as snobs the congregation being fully": [65535, 0], "had as snobs the congregation being fully assembled": [65535, 0], "as snobs the congregation being fully assembled now": [65535, 0], "snobs the congregation being fully assembled now the": [65535, 0], "the congregation being fully assembled now the bell": [65535, 0], "congregation being fully assembled now the bell rang": [65535, 0], "being fully assembled now the bell rang once": [65535, 0], "fully assembled now the bell rang once more": [65535, 0], "assembled now the bell rang once more to": [65535, 0], "now the bell rang once more to warn": [65535, 0], "the bell rang once more to warn laggards": [65535, 0], "bell rang once more to warn laggards and": [65535, 0], "rang once more to warn laggards and stragglers": [65535, 0], "once more to warn laggards and stragglers and": [65535, 0], "more to warn laggards and stragglers and then": [65535, 0], "to warn laggards and stragglers and then a": [65535, 0], "warn laggards and stragglers and then a solemn": [65535, 0], "laggards and stragglers and then a solemn hush": [65535, 0], "and stragglers and then a solemn hush fell": [65535, 0], "stragglers and then a solemn hush fell upon": [65535, 0], "and then a solemn hush fell upon the": [65535, 0], "then a solemn hush fell upon the church": [65535, 0], "a solemn hush fell upon the church which": [65535, 0], "solemn hush fell upon the church which was": [65535, 0], "hush fell upon the church which was only": [65535, 0], "fell upon the church which was only broken": [65535, 0], "upon the church which was only broken by": [65535, 0], "the church which was only broken by the": [65535, 0], "church which was only broken by the tittering": [65535, 0], "which was only broken by the tittering and": [65535, 0], "was only broken by the tittering and whispering": [65535, 0], "only broken by the tittering and whispering of": [65535, 0], "broken by the tittering and whispering of the": [65535, 0], "by the tittering and whispering of the choir": [65535, 0], "the tittering and whispering of the choir in": [65535, 0], "tittering and whispering of the choir in the": [65535, 0], "and whispering of the choir in the gallery": [65535, 0], "whispering of the choir in the gallery the": [65535, 0], "of the choir in the gallery the choir": [65535, 0], "the choir in the gallery the choir always": [65535, 0], "choir in the gallery the choir always tittered": [65535, 0], "in the gallery the choir always tittered and": [65535, 0], "the gallery the choir always tittered and whispered": [65535, 0], "gallery the choir always tittered and whispered all": [65535, 0], "the choir always tittered and whispered all through": [65535, 0], "choir always tittered and whispered all through service": [65535, 0], "always tittered and whispered all through service there": [65535, 0], "tittered and whispered all through service there was": [65535, 0], "and whispered all through service there was once": [65535, 0], "whispered all through service there was once a": [65535, 0], "all through service there was once a church": [65535, 0], "through service there was once a church choir": [65535, 0], "service there was once a church choir that": [65535, 0], "there was once a church choir that was": [65535, 0], "was once a church choir that was not": [65535, 0], "once a church choir that was not ill": [65535, 0], "a church choir that was not ill bred": [65535, 0], "church choir that was not ill bred but": [65535, 0], "choir that was not ill bred but i": [65535, 0], "that was not ill bred but i have": [65535, 0], "was not ill bred but i have forgotten": [65535, 0], "not ill bred but i have forgotten where": [65535, 0], "ill bred but i have forgotten where it": [65535, 0], "bred but i have forgotten where it was": [65535, 0], "but i have forgotten where it was now": [65535, 0], "i have forgotten where it was now it": [65535, 0], "have forgotten where it was now it was": [65535, 0], "forgotten where it was now it was a": [65535, 0], "where it was now it was a great": [65535, 0], "it was now it was a great many": [65535, 0], "was now it was a great many years": [65535, 0], "now it was a great many years ago": [65535, 0], "it was a great many years ago and": [65535, 0], "was a great many years ago and i": [65535, 0], "a great many years ago and i can": [65535, 0], "great many years ago and i can scarcely": [65535, 0], "many years ago and i can scarcely remember": [65535, 0], "years ago and i can scarcely remember anything": [65535, 0], "ago and i can scarcely remember anything about": [65535, 0], "and i can scarcely remember anything about it": [65535, 0], "i can scarcely remember anything about it but": [65535, 0], "can scarcely remember anything about it but i": [65535, 0], "scarcely remember anything about it but i think": [65535, 0], "remember anything about it but i think it": [65535, 0], "anything about it but i think it was": [65535, 0], "about it but i think it was in": [65535, 0], "it but i think it was in some": [65535, 0], "but i think it was in some foreign": [65535, 0], "i think it was in some foreign country": [65535, 0], "think it was in some foreign country the": [65535, 0], "it was in some foreign country the minister": [65535, 0], "was in some foreign country the minister gave": [65535, 0], "in some foreign country the minister gave out": [65535, 0], "some foreign country the minister gave out the": [65535, 0], "foreign country the minister gave out the hymn": [65535, 0], "country the minister gave out the hymn and": [65535, 0], "the minister gave out the hymn and read": [65535, 0], "minister gave out the hymn and read it": [65535, 0], "gave out the hymn and read it through": [65535, 0], "out the hymn and read it through with": [65535, 0], "the hymn and read it through with a": [65535, 0], "hymn and read it through with a relish": [65535, 0], "and read it through with a relish in": [65535, 0], "read it through with a relish in a": [65535, 0], "it through with a relish in a peculiar": [65535, 0], "through with a relish in a peculiar style": [65535, 0], "with a relish in a peculiar style which": [65535, 0], "a relish in a peculiar style which was": [65535, 0], "relish in a peculiar style which was much": [65535, 0], "in a peculiar style which was much admired": [65535, 0], "a peculiar style which was much admired in": [65535, 0], "peculiar style which was much admired in that": [65535, 0], "style which was much admired in that part": [65535, 0], "which was much admired in that part of": [65535, 0], "was much admired in that part of the": [65535, 0], "much admired in that part of the country": [65535, 0], "admired in that part of the country his": [65535, 0], "in that part of the country his voice": [65535, 0], "that part of the country his voice began": [65535, 0], "part of the country his voice began on": [65535, 0], "of the country his voice began on a": [65535, 0], "the country his voice began on a medium": [65535, 0], "country his voice began on a medium key": [65535, 0], "his voice began on a medium key and": [65535, 0], "voice began on a medium key and climbed": [65535, 0], "began on a medium key and climbed steadily": [65535, 0], "on a medium key and climbed steadily up": [65535, 0], "a medium key and climbed steadily up till": [65535, 0], "medium key and climbed steadily up till it": [65535, 0], "key and climbed steadily up till it reached": [65535, 0], "and climbed steadily up till it reached a": [65535, 0], "climbed steadily up till it reached a certain": [65535, 0], "steadily up till it reached a certain point": [65535, 0], "up till it reached a certain point where": [65535, 0], "till it reached a certain point where it": [65535, 0], "it reached a certain point where it bore": [65535, 0], "reached a certain point where it bore with": [65535, 0], "a certain point where it bore with strong": [65535, 0], "certain point where it bore with strong emphasis": [65535, 0], "point where it bore with strong emphasis upon": [65535, 0], "where it bore with strong emphasis upon the": [65535, 0], "it bore with strong emphasis upon the topmost": [65535, 0], "bore with strong emphasis upon the topmost word": [65535, 0], "with strong emphasis upon the topmost word and": [65535, 0], "strong emphasis upon the topmost word and then": [65535, 0], "emphasis upon the topmost word and then plunged": [65535, 0], "upon the topmost word and then plunged down": [65535, 0], "the topmost word and then plunged down as": [65535, 0], "topmost word and then plunged down as if": [65535, 0], "word and then plunged down as if from": [65535, 0], "and then plunged down as if from a": [65535, 0], "then plunged down as if from a spring": [65535, 0], "plunged down as if from a spring board": [65535, 0], "down as if from a spring board shall": [65535, 0], "as if from a spring board shall i": [65535, 0], "if from a spring board shall i be": [65535, 0], "from a spring board shall i be car": [65535, 0], "a spring board shall i be car ri": [65535, 0], "spring board shall i be car ri ed": [65535, 0], "board shall i be car ri ed toe": [65535, 0], "shall i be car ri ed toe the": [65535, 0], "i be car ri ed toe the skies": [65535, 0], "be car ri ed toe the skies on": [65535, 0], "car ri ed toe the skies on flow'ry": [65535, 0], "ri ed toe the skies on flow'ry beds": [65535, 0], "ed toe the skies on flow'ry beds of": [65535, 0], "toe the skies on flow'ry beds of ease": [65535, 0], "the skies on flow'ry beds of ease whilst": [65535, 0], "skies on flow'ry beds of ease whilst others": [65535, 0], "on flow'ry beds of ease whilst others fight": [65535, 0], "flow'ry beds of ease whilst others fight to": [65535, 0], "beds of ease whilst others fight to win": [65535, 0], "of ease whilst others fight to win the": [65535, 0], "ease whilst others fight to win the prize": [65535, 0], "whilst others fight to win the prize and": [65535, 0], "others fight to win the prize and sail": [65535, 0], "fight to win the prize and sail thro'": [65535, 0], "to win the prize and sail thro' bloody": [65535, 0], "win the prize and sail thro' bloody seas": [65535, 0], "the prize and sail thro' bloody seas he": [65535, 0], "prize and sail thro' bloody seas he was": [65535, 0], "and sail thro' bloody seas he was regarded": [65535, 0], "sail thro' bloody seas he was regarded as": [65535, 0], "thro' bloody seas he was regarded as a": [65535, 0], "bloody seas he was regarded as a wonderful": [65535, 0], "seas he was regarded as a wonderful reader": [65535, 0], "he was regarded as a wonderful reader at": [65535, 0], "was regarded as a wonderful reader at church": [65535, 0], "regarded as a wonderful reader at church sociables": [65535, 0], "as a wonderful reader at church sociables he": [65535, 0], "a wonderful reader at church sociables he was": [65535, 0], "wonderful reader at church sociables he was always": [65535, 0], "reader at church sociables he was always called": [65535, 0], "at church sociables he was always called upon": [65535, 0], "church sociables he was always called upon to": [65535, 0], "sociables he was always called upon to read": [65535, 0], "he was always called upon to read poetry": [65535, 0], "was always called upon to read poetry and": [65535, 0], "always called upon to read poetry and when": [65535, 0], "called upon to read poetry and when he": [65535, 0], "upon to read poetry and when he was": [65535, 0], "to read poetry and when he was through": [65535, 0], "read poetry and when he was through the": [65535, 0], "poetry and when he was through the ladies": [65535, 0], "and when he was through the ladies would": [65535, 0], "when he was through the ladies would lift": [65535, 0], "he was through the ladies would lift up": [65535, 0], "was through the ladies would lift up their": [65535, 0], "through the ladies would lift up their hands": [65535, 0], "the ladies would lift up their hands and": [65535, 0], "ladies would lift up their hands and let": [65535, 0], "would lift up their hands and let them": [65535, 0], "lift up their hands and let them fall": [65535, 0], "up their hands and let them fall helplessly": [65535, 0], "their hands and let them fall helplessly in": [65535, 0], "hands and let them fall helplessly in their": [65535, 0], "and let them fall helplessly in their laps": [65535, 0], "let them fall helplessly in their laps and": [65535, 0], "them fall helplessly in their laps and wall": [65535, 0], "fall helplessly in their laps and wall their": [65535, 0], "helplessly in their laps and wall their eyes": [65535, 0], "in their laps and wall their eyes and": [65535, 0], "their laps and wall their eyes and shake": [65535, 0], "laps and wall their eyes and shake their": [65535, 0], "and wall their eyes and shake their heads": [65535, 0], "wall their eyes and shake their heads as": [65535, 0], "their eyes and shake their heads as much": [65535, 0], "eyes and shake their heads as much as": [65535, 0], "and shake their heads as much as to": [65535, 0], "shake their heads as much as to say": [65535, 0], "their heads as much as to say words": [65535, 0], "heads as much as to say words cannot": [65535, 0], "as much as to say words cannot express": [65535, 0], "much as to say words cannot express it": [65535, 0], "as to say words cannot express it it": [65535, 0], "to say words cannot express it it is": [65535, 0], "say words cannot express it it is too": [65535, 0], "words cannot express it it is too beautiful": [65535, 0], "cannot express it it is too beautiful too": [65535, 0], "express it it is too beautiful too beautiful": [65535, 0], "it it is too beautiful too beautiful for": [65535, 0], "it is too beautiful too beautiful for this": [65535, 0], "is too beautiful too beautiful for this mortal": [65535, 0], "too beautiful too beautiful for this mortal earth": [65535, 0], "beautiful too beautiful for this mortal earth after": [65535, 0], "too beautiful for this mortal earth after the": [65535, 0], "beautiful for this mortal earth after the hymn": [65535, 0], "for this mortal earth after the hymn had": [65535, 0], "this mortal earth after the hymn had been": [65535, 0], "mortal earth after the hymn had been sung": [65535, 0], "earth after the hymn had been sung the": [65535, 0], "after the hymn had been sung the rev": [65535, 0], "the hymn had been sung the rev mr": [65535, 0], "hymn had been sung the rev mr sprague": [65535, 0], "had been sung the rev mr sprague turned": [65535, 0], "been sung the rev mr sprague turned himself": [65535, 0], "sung the rev mr sprague turned himself into": [65535, 0], "the rev mr sprague turned himself into a": [65535, 0], "rev mr sprague turned himself into a bulletin": [65535, 0], "mr sprague turned himself into a bulletin board": [65535, 0], "sprague turned himself into a bulletin board and": [65535, 0], "turned himself into a bulletin board and read": [65535, 0], "himself into a bulletin board and read off": [65535, 0], "into a bulletin board and read off notices": [65535, 0], "a bulletin board and read off notices of": [65535, 0], "bulletin board and read off notices of meetings": [65535, 0], "board and read off notices of meetings and": [65535, 0], "and read off notices of meetings and societies": [65535, 0], "read off notices of meetings and societies and": [65535, 0], "off notices of meetings and societies and things": [65535, 0], "notices of meetings and societies and things till": [65535, 0], "of meetings and societies and things till it": [65535, 0], "meetings and societies and things till it seemed": [65535, 0], "and societies and things till it seemed that": [65535, 0], "societies and things till it seemed that the": [65535, 0], "and things till it seemed that the list": [65535, 0], "things till it seemed that the list would": [65535, 0], "till it seemed that the list would stretch": [65535, 0], "it seemed that the list would stretch out": [65535, 0], "seemed that the list would stretch out to": [65535, 0], "that the list would stretch out to the": [65535, 0], "the list would stretch out to the crack": [65535, 0], "list would stretch out to the crack of": [65535, 0], "would stretch out to the crack of doom": [65535, 0], "stretch out to the crack of doom a": [65535, 0], "out to the crack of doom a queer": [65535, 0], "to the crack of doom a queer custom": [65535, 0], "the crack of doom a queer custom which": [65535, 0], "crack of doom a queer custom which is": [65535, 0], "of doom a queer custom which is still": [65535, 0], "doom a queer custom which is still kept": [65535, 0], "a queer custom which is still kept up": [65535, 0], "queer custom which is still kept up in": [65535, 0], "custom which is still kept up in america": [65535, 0], "which is still kept up in america even": [65535, 0], "is still kept up in america even in": [65535, 0], "still kept up in america even in cities": [65535, 0], "kept up in america even in cities away": [65535, 0], "up in america even in cities away here": [65535, 0], "in america even in cities away here in": [65535, 0], "america even in cities away here in this": [65535, 0], "even in cities away here in this age": [65535, 0], "in cities away here in this age of": [65535, 0], "cities away here in this age of abundant": [65535, 0], "away here in this age of abundant newspapers": [65535, 0], "here in this age of abundant newspapers often": [65535, 0], "in this age of abundant newspapers often the": [65535, 0], "this age of abundant newspapers often the less": [65535, 0], "age of abundant newspapers often the less there": [65535, 0], "of abundant newspapers often the less there is": [65535, 0], "abundant newspapers often the less there is to": [65535, 0], "newspapers often the less there is to justify": [65535, 0], "often the less there is to justify a": [65535, 0], "the less there is to justify a traditional": [65535, 0], "less there is to justify a traditional custom": [65535, 0], "there is to justify a traditional custom the": [65535, 0], "is to justify a traditional custom the harder": [65535, 0], "to justify a traditional custom the harder it": [65535, 0], "justify a traditional custom the harder it is": [65535, 0], "a traditional custom the harder it is to": [65535, 0], "traditional custom the harder it is to get": [65535, 0], "custom the harder it is to get rid": [65535, 0], "the harder it is to get rid of": [65535, 0], "harder it is to get rid of it": [65535, 0], "it is to get rid of it and": [65535, 0], "is to get rid of it and now": [65535, 0], "to get rid of it and now the": [65535, 0], "get rid of it and now the minister": [65535, 0], "rid of it and now the minister prayed": [65535, 0], "of it and now the minister prayed a": [65535, 0], "it and now the minister prayed a good": [65535, 0], "and now the minister prayed a good generous": [65535, 0], "now the minister prayed a good generous prayer": [65535, 0], "the minister prayed a good generous prayer it": [65535, 0], "minister prayed a good generous prayer it was": [65535, 0], "prayed a good generous prayer it was and": [65535, 0], "a good generous prayer it was and went": [65535, 0], "good generous prayer it was and went into": [65535, 0], "generous prayer it was and went into details": [65535, 0], "prayer it was and went into details it": [65535, 0], "it was and went into details it pleaded": [65535, 0], "was and went into details it pleaded for": [65535, 0], "and went into details it pleaded for the": [65535, 0], "went into details it pleaded for the church": [65535, 0], "into details it pleaded for the church and": [65535, 0], "details it pleaded for the church and the": [65535, 0], "it pleaded for the church and the little": [65535, 0], "pleaded for the church and the little children": [65535, 0], "for the church and the little children of": [65535, 0], "the church and the little children of the": [65535, 0], "church and the little children of the church": [65535, 0], "and the little children of the church for": [65535, 0], "the little children of the church for the": [65535, 0], "little children of the church for the other": [65535, 0], "children of the church for the other churches": [65535, 0], "of the church for the other churches of": [65535, 0], "the church for the other churches of the": [65535, 0], "church for the other churches of the village": [65535, 0], "for the other churches of the village for": [65535, 0], "the other churches of the village for the": [65535, 0], "other churches of the village for the village": [65535, 0], "churches of the village for the village itself": [65535, 0], "of the village for the village itself for": [65535, 0], "the village for the village itself for the": [65535, 0], "village for the village itself for the county": [65535, 0], "for the village itself for the county for": [65535, 0], "the village itself for the county for the": [65535, 0], "village itself for the county for the state": [65535, 0], "itself for the county for the state for": [65535, 0], "for the county for the state for the": [65535, 0], "the county for the state for the state": [65535, 0], "county for the state for the state officers": [65535, 0], "for the state for the state officers for": [65535, 0], "the state for the state officers for the": [65535, 0], "state for the state officers for the united": [65535, 0], "for the state officers for the united states": [65535, 0], "the state officers for the united states for": [65535, 0], "state officers for the united states for the": [65535, 0], "officers for the united states for the churches": [65535, 0], "for the united states for the churches of": [65535, 0], "the united states for the churches of the": [65535, 0], "united states for the churches of the united": [65535, 0], "states for the churches of the united states": [65535, 0], "for the churches of the united states for": [65535, 0], "the churches of the united states for congress": [65535, 0], "churches of the united states for congress for": [65535, 0], "of the united states for congress for the": [65535, 0], "the united states for congress for the president": [65535, 0], "united states for congress for the president for": [65535, 0], "states for congress for the president for the": [65535, 0], "for congress for the president for the officers": [65535, 0], "congress for the president for the officers of": [65535, 0], "for the president for the officers of the": [65535, 0], "the president for the officers of the government": [65535, 0], "president for the officers of the government for": [65535, 0], "for the officers of the government for poor": [65535, 0], "the officers of the government for poor sailors": [65535, 0], "officers of the government for poor sailors tossed": [65535, 0], "of the government for poor sailors tossed by": [65535, 0], "the government for poor sailors tossed by stormy": [65535, 0], "government for poor sailors tossed by stormy seas": [65535, 0], "for poor sailors tossed by stormy seas for": [65535, 0], "poor sailors tossed by stormy seas for the": [65535, 0], "sailors tossed by stormy seas for the oppressed": [65535, 0], "tossed by stormy seas for the oppressed millions": [65535, 0], "by stormy seas for the oppressed millions groaning": [65535, 0], "stormy seas for the oppressed millions groaning under": [65535, 0], "seas for the oppressed millions groaning under the": [65535, 0], "for the oppressed millions groaning under the heel": [65535, 0], "the oppressed millions groaning under the heel of": [65535, 0], "oppressed millions groaning under the heel of european": [65535, 0], "millions groaning under the heel of european monarchies": [65535, 0], "groaning under the heel of european monarchies and": [65535, 0], "under the heel of european monarchies and oriental": [65535, 0], "the heel of european monarchies and oriental despotisms": [65535, 0], "heel of european monarchies and oriental despotisms for": [65535, 0], "of european monarchies and oriental despotisms for such": [65535, 0], "european monarchies and oriental despotisms for such as": [65535, 0], "monarchies and oriental despotisms for such as have": [65535, 0], "and oriental despotisms for such as have the": [65535, 0], "oriental despotisms for such as have the light": [65535, 0], "despotisms for such as have the light and": [65535, 0], "for such as have the light and the": [65535, 0], "such as have the light and the good": [65535, 0], "as have the light and the good tidings": [65535, 0], "have the light and the good tidings and": [65535, 0], "the light and the good tidings and yet": [65535, 0], "light and the good tidings and yet have": [65535, 0], "and the good tidings and yet have not": [65535, 0], "the good tidings and yet have not eyes": [65535, 0], "good tidings and yet have not eyes to": [65535, 0], "tidings and yet have not eyes to see": [65535, 0], "and yet have not eyes to see nor": [65535, 0], "yet have not eyes to see nor ears": [65535, 0], "have not eyes to see nor ears to": [65535, 0], "not eyes to see nor ears to hear": [65535, 0], "eyes to see nor ears to hear withal": [65535, 0], "to see nor ears to hear withal for": [65535, 0], "see nor ears to hear withal for the": [65535, 0], "nor ears to hear withal for the heathen": [65535, 0], "ears to hear withal for the heathen in": [65535, 0], "to hear withal for the heathen in the": [65535, 0], "hear withal for the heathen in the far": [65535, 0], "withal for the heathen in the far islands": [65535, 0], "for the heathen in the far islands of": [65535, 0], "the heathen in the far islands of the": [65535, 0], "heathen in the far islands of the sea": [65535, 0], "in the far islands of the sea and": [65535, 0], "the far islands of the sea and closed": [65535, 0], "far islands of the sea and closed with": [65535, 0], "islands of the sea and closed with a": [65535, 0], "of the sea and closed with a supplication": [65535, 0], "the sea and closed with a supplication that": [65535, 0], "sea and closed with a supplication that the": [65535, 0], "and closed with a supplication that the words": [65535, 0], "closed with a supplication that the words he": [65535, 0], "with a supplication that the words he was": [65535, 0], "a supplication that the words he was about": [65535, 0], "supplication that the words he was about to": [65535, 0], "that the words he was about to speak": [65535, 0], "the words he was about to speak might": [65535, 0], "words he was about to speak might find": [65535, 0], "he was about to speak might find grace": [65535, 0], "was about to speak might find grace and": [65535, 0], "about to speak might find grace and favor": [65535, 0], "to speak might find grace and favor and": [65535, 0], "speak might find grace and favor and be": [65535, 0], "might find grace and favor and be as": [65535, 0], "find grace and favor and be as seed": [65535, 0], "grace and favor and be as seed sown": [65535, 0], "and favor and be as seed sown in": [65535, 0], "favor and be as seed sown in fertile": [65535, 0], "and be as seed sown in fertile ground": [65535, 0], "be as seed sown in fertile ground yielding": [65535, 0], "as seed sown in fertile ground yielding in": [65535, 0], "seed sown in fertile ground yielding in time": [65535, 0], "sown in fertile ground yielding in time a": [65535, 0], "in fertile ground yielding in time a grateful": [65535, 0], "fertile ground yielding in time a grateful harvest": [65535, 0], "ground yielding in time a grateful harvest of": [65535, 0], "yielding in time a grateful harvest of good": [65535, 0], "in time a grateful harvest of good amen": [65535, 0], "time a grateful harvest of good amen there": [65535, 0], "a grateful harvest of good amen there was": [65535, 0], "grateful harvest of good amen there was a": [65535, 0], "harvest of good amen there was a rustling": [65535, 0], "of good amen there was a rustling of": [65535, 0], "good amen there was a rustling of dresses": [65535, 0], "amen there was a rustling of dresses and": [65535, 0], "there was a rustling of dresses and the": [65535, 0], "was a rustling of dresses and the standing": [65535, 0], "a rustling of dresses and the standing congregation": [65535, 0], "rustling of dresses and the standing congregation sat": [65535, 0], "of dresses and the standing congregation sat down": [65535, 0], "dresses and the standing congregation sat down the": [65535, 0], "and the standing congregation sat down the boy": [65535, 0], "the standing congregation sat down the boy whose": [65535, 0], "standing congregation sat down the boy whose history": [65535, 0], "congregation sat down the boy whose history this": [65535, 0], "sat down the boy whose history this book": [65535, 0], "down the boy whose history this book relates": [65535, 0], "the boy whose history this book relates did": [65535, 0], "boy whose history this book relates did not": [65535, 0], "whose history this book relates did not enjoy": [65535, 0], "history this book relates did not enjoy the": [65535, 0], "this book relates did not enjoy the prayer": [65535, 0], "book relates did not enjoy the prayer he": [65535, 0], "relates did not enjoy the prayer he only": [65535, 0], "did not enjoy the prayer he only endured": [65535, 0], "not enjoy the prayer he only endured it": [65535, 0], "enjoy the prayer he only endured it if": [65535, 0], "the prayer he only endured it if he": [65535, 0], "prayer he only endured it if he even": [65535, 0], "he only endured it if he even did": [65535, 0], "only endured it if he even did that": [65535, 0], "endured it if he even did that much": [65535, 0], "it if he even did that much he": [65535, 0], "if he even did that much he was": [65535, 0], "he even did that much he was restive": [65535, 0], "even did that much he was restive all": [65535, 0], "did that much he was restive all through": [65535, 0], "that much he was restive all through it": [65535, 0], "much he was restive all through it he": [65535, 0], "he was restive all through it he kept": [65535, 0], "was restive all through it he kept tally": [65535, 0], "restive all through it he kept tally of": [65535, 0], "all through it he kept tally of the": [65535, 0], "through it he kept tally of the details": [65535, 0], "it he kept tally of the details of": [65535, 0], "he kept tally of the details of the": [65535, 0], "kept tally of the details of the prayer": [65535, 0], "tally of the details of the prayer unconsciously": [65535, 0], "of the details of the prayer unconsciously for": [65535, 0], "the details of the prayer unconsciously for he": [65535, 0], "details of the prayer unconsciously for he was": [65535, 0], "of the prayer unconsciously for he was not": [65535, 0], "the prayer unconsciously for he was not listening": [65535, 0], "prayer unconsciously for he was not listening but": [65535, 0], "unconsciously for he was not listening but he": [65535, 0], "for he was not listening but he knew": [65535, 0], "he was not listening but he knew the": [65535, 0], "was not listening but he knew the ground": [65535, 0], "not listening but he knew the ground of": [65535, 0], "listening but he knew the ground of old": [65535, 0], "but he knew the ground of old and": [65535, 0], "he knew the ground of old and the": [65535, 0], "knew the ground of old and the clergyman's": [65535, 0], "the ground of old and the clergyman's regular": [65535, 0], "ground of old and the clergyman's regular route": [65535, 0], "of old and the clergyman's regular route over": [65535, 0], "old and the clergyman's regular route over it": [65535, 0], "and the clergyman's regular route over it and": [65535, 0], "the clergyman's regular route over it and when": [65535, 0], "clergyman's regular route over it and when a": [65535, 0], "regular route over it and when a little": [65535, 0], "route over it and when a little trifle": [65535, 0], "over it and when a little trifle of": [65535, 0], "it and when a little trifle of new": [65535, 0], "and when a little trifle of new matter": [65535, 0], "when a little trifle of new matter was": [65535, 0], "a little trifle of new matter was interlarded": [65535, 0], "little trifle of new matter was interlarded his": [65535, 0], "trifle of new matter was interlarded his ear": [65535, 0], "of new matter was interlarded his ear detected": [65535, 0], "new matter was interlarded his ear detected it": [65535, 0], "matter was interlarded his ear detected it and": [65535, 0], "was interlarded his ear detected it and his": [65535, 0], "interlarded his ear detected it and his whole": [65535, 0], "his ear detected it and his whole nature": [65535, 0], "ear detected it and his whole nature resented": [65535, 0], "detected it and his whole nature resented it": [65535, 0], "it and his whole nature resented it he": [65535, 0], "and his whole nature resented it he considered": [65535, 0], "his whole nature resented it he considered additions": [65535, 0], "whole nature resented it he considered additions unfair": [65535, 0], "nature resented it he considered additions unfair and": [65535, 0], "resented it he considered additions unfair and scoundrelly": [65535, 0], "it he considered additions unfair and scoundrelly in": [65535, 0], "he considered additions unfair and scoundrelly in the": [65535, 0], "considered additions unfair and scoundrelly in the midst": [65535, 0], "additions unfair and scoundrelly in the midst of": [65535, 0], "unfair and scoundrelly in the midst of the": [65535, 0], "and scoundrelly in the midst of the prayer": [65535, 0], "scoundrelly in the midst of the prayer a": [65535, 0], "in the midst of the prayer a fly": [65535, 0], "the midst of the prayer a fly had": [65535, 0], "midst of the prayer a fly had lit": [65535, 0], "of the prayer a fly had lit on": [65535, 0], "the prayer a fly had lit on the": [65535, 0], "prayer a fly had lit on the back": [65535, 0], "a fly had lit on the back of": [65535, 0], "fly had lit on the back of the": [65535, 0], "had lit on the back of the pew": [65535, 0], "lit on the back of the pew in": [65535, 0], "on the back of the pew in front": [65535, 0], "the back of the pew in front of": [65535, 0], "back of the pew in front of him": [65535, 0], "of the pew in front of him and": [65535, 0], "the pew in front of him and tortured": [65535, 0], "pew in front of him and tortured his": [65535, 0], "in front of him and tortured his spirit": [65535, 0], "front of him and tortured his spirit by": [65535, 0], "of him and tortured his spirit by calmly": [65535, 0], "him and tortured his spirit by calmly rubbing": [65535, 0], "and tortured his spirit by calmly rubbing its": [65535, 0], "tortured his spirit by calmly rubbing its hands": [65535, 0], "his spirit by calmly rubbing its hands together": [65535, 0], "spirit by calmly rubbing its hands together embracing": [65535, 0], "by calmly rubbing its hands together embracing its": [65535, 0], "calmly rubbing its hands together embracing its head": [65535, 0], "rubbing its hands together embracing its head with": [65535, 0], "its hands together embracing its head with its": [65535, 0], "hands together embracing its head with its arms": [65535, 0], "together embracing its head with its arms and": [65535, 0], "embracing its head with its arms and polishing": [65535, 0], "its head with its arms and polishing it": [65535, 0], "head with its arms and polishing it so": [65535, 0], "with its arms and polishing it so vigorously": [65535, 0], "its arms and polishing it so vigorously that": [65535, 0], "arms and polishing it so vigorously that it": [65535, 0], "and polishing it so vigorously that it seemed": [65535, 0], "polishing it so vigorously that it seemed to": [65535, 0], "it so vigorously that it seemed to almost": [65535, 0], "so vigorously that it seemed to almost part": [65535, 0], "vigorously that it seemed to almost part company": [65535, 0], "that it seemed to almost part company with": [65535, 0], "it seemed to almost part company with the": [65535, 0], "seemed to almost part company with the body": [65535, 0], "to almost part company with the body and": [65535, 0], "almost part company with the body and the": [65535, 0], "part company with the body and the slender": [65535, 0], "company with the body and the slender thread": [65535, 0], "with the body and the slender thread of": [65535, 0], "the body and the slender thread of a": [65535, 0], "body and the slender thread of a neck": [65535, 0], "and the slender thread of a neck was": [65535, 0], "the slender thread of a neck was exposed": [65535, 0], "slender thread of a neck was exposed to": [65535, 0], "thread of a neck was exposed to view": [65535, 0], "of a neck was exposed to view scraping": [65535, 0], "a neck was exposed to view scraping its": [65535, 0], "neck was exposed to view scraping its wings": [65535, 0], "was exposed to view scraping its wings with": [65535, 0], "exposed to view scraping its wings with its": [65535, 0], "to view scraping its wings with its hind": [65535, 0], "view scraping its wings with its hind legs": [65535, 0], "scraping its wings with its hind legs and": [65535, 0], "its wings with its hind legs and smoothing": [65535, 0], "wings with its hind legs and smoothing them": [65535, 0], "with its hind legs and smoothing them to": [65535, 0], "its hind legs and smoothing them to its": [65535, 0], "hind legs and smoothing them to its body": [65535, 0], "legs and smoothing them to its body as": [65535, 0], "and smoothing them to its body as if": [65535, 0], "smoothing them to its body as if they": [65535, 0], "them to its body as if they had": [65535, 0], "to its body as if they had been": [65535, 0], "its body as if they had been coat": [65535, 0], "body as if they had been coat tails": [65535, 0], "as if they had been coat tails going": [65535, 0], "if they had been coat tails going through": [65535, 0], "they had been coat tails going through its": [65535, 0], "had been coat tails going through its whole": [65535, 0], "been coat tails going through its whole toilet": [65535, 0], "coat tails going through its whole toilet as": [65535, 0], "tails going through its whole toilet as tranquilly": [65535, 0], "going through its whole toilet as tranquilly as": [65535, 0], "through its whole toilet as tranquilly as if": [65535, 0], "its whole toilet as tranquilly as if it": [65535, 0], "whole toilet as tranquilly as if it knew": [65535, 0], "toilet as tranquilly as if it knew it": [65535, 0], "as tranquilly as if it knew it was": [65535, 0], "tranquilly as if it knew it was perfectly": [65535, 0], "as if it knew it was perfectly safe": [65535, 0], "if it knew it was perfectly safe as": [65535, 0], "it knew it was perfectly safe as indeed": [65535, 0], "knew it was perfectly safe as indeed it": [65535, 0], "it was perfectly safe as indeed it was": [65535, 0], "was perfectly safe as indeed it was for": [65535, 0], "perfectly safe as indeed it was for as": [65535, 0], "safe as indeed it was for as sorely": [65535, 0], "as indeed it was for as sorely as": [65535, 0], "indeed it was for as sorely as tom's": [65535, 0], "it was for as sorely as tom's hands": [65535, 0], "was for as sorely as tom's hands itched": [65535, 0], "for as sorely as tom's hands itched to": [65535, 0], "as sorely as tom's hands itched to grab": [65535, 0], "sorely as tom's hands itched to grab for": [65535, 0], "as tom's hands itched to grab for it": [65535, 0], "tom's hands itched to grab for it they": [65535, 0], "hands itched to grab for it they did": [65535, 0], "itched to grab for it they did not": [65535, 0], "to grab for it they did not dare": [65535, 0], "grab for it they did not dare he": [65535, 0], "for it they did not dare he believed": [65535, 0], "it they did not dare he believed his": [65535, 0], "they did not dare he believed his soul": [65535, 0], "did not dare he believed his soul would": [65535, 0], "not dare he believed his soul would be": [65535, 0], "dare he believed his soul would be instantly": [65535, 0], "he believed his soul would be instantly destroyed": [65535, 0], "believed his soul would be instantly destroyed if": [65535, 0], "his soul would be instantly destroyed if he": [65535, 0], "soul would be instantly destroyed if he did": [65535, 0], "would be instantly destroyed if he did such": [65535, 0], "be instantly destroyed if he did such a": [65535, 0], "instantly destroyed if he did such a thing": [65535, 0], "destroyed if he did such a thing while": [65535, 0], "if he did such a thing while the": [65535, 0], "he did such a thing while the prayer": [65535, 0], "did such a thing while the prayer was": [65535, 0], "such a thing while the prayer was going": [65535, 0], "a thing while the prayer was going on": [65535, 0], "thing while the prayer was going on but": [65535, 0], "while the prayer was going on but with": [65535, 0], "the prayer was going on but with the": [65535, 0], "prayer was going on but with the closing": [65535, 0], "was going on but with the closing sentence": [65535, 0], "going on but with the closing sentence his": [65535, 0], "on but with the closing sentence his hand": [65535, 0], "but with the closing sentence his hand began": [65535, 0], "with the closing sentence his hand began to": [65535, 0], "the closing sentence his hand began to curve": [65535, 0], "closing sentence his hand began to curve and": [65535, 0], "sentence his hand began to curve and steal": [65535, 0], "his hand began to curve and steal forward": [65535, 0], "hand began to curve and steal forward and": [65535, 0], "began to curve and steal forward and the": [65535, 0], "to curve and steal forward and the instant": [65535, 0], "curve and steal forward and the instant the": [65535, 0], "and steal forward and the instant the amen": [65535, 0], "steal forward and the instant the amen was": [65535, 0], "forward and the instant the amen was out": [65535, 0], "and the instant the amen was out the": [65535, 0], "the instant the amen was out the fly": [65535, 0], "instant the amen was out the fly was": [65535, 0], "the amen was out the fly was a": [65535, 0], "amen was out the fly was a prisoner": [65535, 0], "was out the fly was a prisoner of": [65535, 0], "out the fly was a prisoner of war": [65535, 0], "the fly was a prisoner of war his": [65535, 0], "fly was a prisoner of war his aunt": [65535, 0], "was a prisoner of war his aunt detected": [65535, 0], "a prisoner of war his aunt detected the": [65535, 0], "prisoner of war his aunt detected the act": [65535, 0], "of war his aunt detected the act and": [65535, 0], "war his aunt detected the act and made": [65535, 0], "his aunt detected the act and made him": [65535, 0], "aunt detected the act and made him let": [65535, 0], "detected the act and made him let it": [65535, 0], "the act and made him let it go": [65535, 0], "act and made him let it go the": [65535, 0], "and made him let it go the minister": [65535, 0], "made him let it go the minister gave": [65535, 0], "him let it go the minister gave out": [65535, 0], "let it go the minister gave out his": [65535, 0], "it go the minister gave out his text": [65535, 0], "go the minister gave out his text and": [65535, 0], "the minister gave out his text and droned": [65535, 0], "minister gave out his text and droned along": [65535, 0], "gave out his text and droned along monotonously": [65535, 0], "out his text and droned along monotonously through": [65535, 0], "his text and droned along monotonously through an": [65535, 0], "text and droned along monotonously through an argument": [65535, 0], "and droned along monotonously through an argument that": [65535, 0], "droned along monotonously through an argument that was": [65535, 0], "along monotonously through an argument that was so": [65535, 0], "monotonously through an argument that was so prosy": [65535, 0], "through an argument that was so prosy that": [65535, 0], "an argument that was so prosy that many": [65535, 0], "argument that was so prosy that many a": [65535, 0], "that was so prosy that many a head": [65535, 0], "was so prosy that many a head by": [65535, 0], "so prosy that many a head by and": [65535, 0], "prosy that many a head by and by": [65535, 0], "that many a head by and by began": [65535, 0], "many a head by and by began to": [65535, 0], "a head by and by began to nod": [65535, 0], "head by and by began to nod and": [65535, 0], "by and by began to nod and yet": [65535, 0], "and by began to nod and yet it": [65535, 0], "by began to nod and yet it was": [65535, 0], "began to nod and yet it was an": [65535, 0], "to nod and yet it was an argument": [65535, 0], "nod and yet it was an argument that": [65535, 0], "and yet it was an argument that dealt": [65535, 0], "yet it was an argument that dealt in": [65535, 0], "it was an argument that dealt in limitless": [65535, 0], "was an argument that dealt in limitless fire": [65535, 0], "an argument that dealt in limitless fire and": [65535, 0], "argument that dealt in limitless fire and brimstone": [65535, 0], "that dealt in limitless fire and brimstone and": [65535, 0], "dealt in limitless fire and brimstone and thinned": [65535, 0], "in limitless fire and brimstone and thinned the": [65535, 0], "limitless fire and brimstone and thinned the predestined": [65535, 0], "fire and brimstone and thinned the predestined elect": [65535, 0], "and brimstone and thinned the predestined elect down": [65535, 0], "brimstone and thinned the predestined elect down to": [65535, 0], "and thinned the predestined elect down to a": [65535, 0], "thinned the predestined elect down to a company": [65535, 0], "the predestined elect down to a company so": [65535, 0], "predestined elect down to a company so small": [65535, 0], "elect down to a company so small as": [65535, 0], "down to a company so small as to": [65535, 0], "to a company so small as to be": [65535, 0], "a company so small as to be hardly": [65535, 0], "company so small as to be hardly worth": [65535, 0], "so small as to be hardly worth the": [65535, 0], "small as to be hardly worth the saving": [65535, 0], "as to be hardly worth the saving tom": [65535, 0], "to be hardly worth the saving tom counted": [65535, 0], "be hardly worth the saving tom counted the": [65535, 0], "hardly worth the saving tom counted the pages": [65535, 0], "worth the saving tom counted the pages of": [65535, 0], "the saving tom counted the pages of the": [65535, 0], "saving tom counted the pages of the sermon": [65535, 0], "tom counted the pages of the sermon after": [65535, 0], "counted the pages of the sermon after church": [65535, 0], "the pages of the sermon after church he": [65535, 0], "pages of the sermon after church he always": [65535, 0], "of the sermon after church he always knew": [65535, 0], "the sermon after church he always knew how": [65535, 0], "sermon after church he always knew how many": [65535, 0], "after church he always knew how many pages": [65535, 0], "church he always knew how many pages there": [65535, 0], "he always knew how many pages there had": [65535, 0], "always knew how many pages there had been": [65535, 0], "knew how many pages there had been but": [65535, 0], "how many pages there had been but he": [65535, 0], "many pages there had been but he seldom": [65535, 0], "pages there had been but he seldom knew": [65535, 0], "there had been but he seldom knew anything": [65535, 0], "had been but he seldom knew anything else": [65535, 0], "been but he seldom knew anything else about": [65535, 0], "but he seldom knew anything else about the": [65535, 0], "he seldom knew anything else about the discourse": [65535, 0], "seldom knew anything else about the discourse however": [65535, 0], "knew anything else about the discourse however this": [65535, 0], "anything else about the discourse however this time": [65535, 0], "else about the discourse however this time he": [65535, 0], "about the discourse however this time he was": [65535, 0], "the discourse however this time he was really": [65535, 0], "discourse however this time he was really interested": [65535, 0], "however this time he was really interested for": [65535, 0], "this time he was really interested for a": [65535, 0], "time he was really interested for a little": [65535, 0], "he was really interested for a little while": [65535, 0], "was really interested for a little while the": [65535, 0], "really interested for a little while the minister": [65535, 0], "interested for a little while the minister made": [65535, 0], "for a little while the minister made a": [65535, 0], "a little while the minister made a grand": [65535, 0], "little while the minister made a grand and": [65535, 0], "while the minister made a grand and moving": [65535, 0], "the minister made a grand and moving picture": [65535, 0], "minister made a grand and moving picture of": [65535, 0], "made a grand and moving picture of the": [65535, 0], "a grand and moving picture of the assembling": [65535, 0], "grand and moving picture of the assembling together": [65535, 0], "and moving picture of the assembling together of": [65535, 0], "moving picture of the assembling together of the": [65535, 0], "picture of the assembling together of the world's": [65535, 0], "of the assembling together of the world's hosts": [65535, 0], "the assembling together of the world's hosts at": [65535, 0], "assembling together of the world's hosts at the": [65535, 0], "together of the world's hosts at the millennium": [65535, 0], "of the world's hosts at the millennium when": [65535, 0], "the world's hosts at the millennium when the": [65535, 0], "world's hosts at the millennium when the lion": [65535, 0], "hosts at the millennium when the lion and": [65535, 0], "at the millennium when the lion and the": [65535, 0], "the millennium when the lion and the lamb": [65535, 0], "millennium when the lion and the lamb should": [65535, 0], "when the lion and the lamb should lie": [65535, 0], "the lion and the lamb should lie down": [65535, 0], "lion and the lamb should lie down together": [65535, 0], "and the lamb should lie down together and": [65535, 0], "the lamb should lie down together and a": [65535, 0], "lamb should lie down together and a little": [65535, 0], "should lie down together and a little child": [65535, 0], "lie down together and a little child should": [65535, 0], "down together and a little child should lead": [65535, 0], "together and a little child should lead them": [65535, 0], "and a little child should lead them but": [65535, 0], "a little child should lead them but the": [65535, 0], "little child should lead them but the pathos": [65535, 0], "child should lead them but the pathos the": [65535, 0], "should lead them but the pathos the lesson": [65535, 0], "lead them but the pathos the lesson the": [65535, 0], "them but the pathos the lesson the moral": [65535, 0], "but the pathos the lesson the moral of": [65535, 0], "the pathos the lesson the moral of the": [65535, 0], "pathos the lesson the moral of the great": [65535, 0], "the lesson the moral of the great spectacle": [65535, 0], "lesson the moral of the great spectacle were": [65535, 0], "the moral of the great spectacle were lost": [65535, 0], "moral of the great spectacle were lost upon": [65535, 0], "of the great spectacle were lost upon the": [65535, 0], "the great spectacle were lost upon the boy": [65535, 0], "great spectacle were lost upon the boy he": [65535, 0], "spectacle were lost upon the boy he only": [65535, 0], "were lost upon the boy he only thought": [65535, 0], "lost upon the boy he only thought of": [65535, 0], "upon the boy he only thought of the": [65535, 0], "the boy he only thought of the conspicuousness": [65535, 0], "boy he only thought of the conspicuousness of": [65535, 0], "he only thought of the conspicuousness of the": [65535, 0], "only thought of the conspicuousness of the principal": [65535, 0], "thought of the conspicuousness of the principal character": [65535, 0], "of the conspicuousness of the principal character before": [65535, 0], "the conspicuousness of the principal character before the": [65535, 0], "conspicuousness of the principal character before the on": [65535, 0], "of the principal character before the on looking": [65535, 0], "the principal character before the on looking nations": [65535, 0], "principal character before the on looking nations his": [65535, 0], "character before the on looking nations his face": [65535, 0], "before the on looking nations his face lit": [65535, 0], "the on looking nations his face lit with": [65535, 0], "on looking nations his face lit with the": [65535, 0], "looking nations his face lit with the thought": [65535, 0], "nations his face lit with the thought and": [65535, 0], "his face lit with the thought and he": [65535, 0], "face lit with the thought and he said": [65535, 0], "lit with the thought and he said to": [65535, 0], "with the thought and he said to himself": [65535, 0], "the thought and he said to himself that": [65535, 0], "thought and he said to himself that he": [65535, 0], "and he said to himself that he wished": [65535, 0], "he said to himself that he wished he": [65535, 0], "said to himself that he wished he could": [65535, 0], "to himself that he wished he could be": [65535, 0], "himself that he wished he could be that": [65535, 0], "that he wished he could be that child": [65535, 0], "he wished he could be that child if": [65535, 0], "wished he could be that child if it": [65535, 0], "he could be that child if it was": [65535, 0], "could be that child if it was a": [65535, 0], "be that child if it was a tame": [65535, 0], "that child if it was a tame lion": [65535, 0], "child if it was a tame lion now": [65535, 0], "if it was a tame lion now he": [65535, 0], "it was a tame lion now he lapsed": [65535, 0], "was a tame lion now he lapsed into": [65535, 0], "a tame lion now he lapsed into suffering": [65535, 0], "tame lion now he lapsed into suffering again": [65535, 0], "lion now he lapsed into suffering again as": [65535, 0], "now he lapsed into suffering again as the": [65535, 0], "he lapsed into suffering again as the dry": [65535, 0], "lapsed into suffering again as the dry argument": [65535, 0], "into suffering again as the dry argument was": [65535, 0], "suffering again as the dry argument was resumed": [65535, 0], "again as the dry argument was resumed presently": [65535, 0], "as the dry argument was resumed presently he": [65535, 0], "the dry argument was resumed presently he bethought": [65535, 0], "dry argument was resumed presently he bethought him": [65535, 0], "argument was resumed presently he bethought him of": [65535, 0], "was resumed presently he bethought him of a": [65535, 0], "resumed presently he bethought him of a treasure": [65535, 0], "presently he bethought him of a treasure he": [65535, 0], "he bethought him of a treasure he had": [65535, 0], "bethought him of a treasure he had and": [65535, 0], "him of a treasure he had and got": [65535, 0], "of a treasure he had and got it": [65535, 0], "a treasure he had and got it out": [65535, 0], "treasure he had and got it out it": [65535, 0], "he had and got it out it was": [65535, 0], "had and got it out it was a": [65535, 0], "and got it out it was a large": [65535, 0], "got it out it was a large black": [65535, 0], "it out it was a large black beetle": [65535, 0], "out it was a large black beetle with": [65535, 0], "it was a large black beetle with formidable": [65535, 0], "was a large black beetle with formidable jaws": [65535, 0], "a large black beetle with formidable jaws a": [65535, 0], "large black beetle with formidable jaws a pinchbug": [65535, 0], "black beetle with formidable jaws a pinchbug he": [65535, 0], "beetle with formidable jaws a pinchbug he called": [65535, 0], "with formidable jaws a pinchbug he called it": [65535, 0], "formidable jaws a pinchbug he called it it": [65535, 0], "jaws a pinchbug he called it it was": [65535, 0], "a pinchbug he called it it was in": [65535, 0], "pinchbug he called it it was in a": [65535, 0], "he called it it was in a percussion": [65535, 0], "called it it was in a percussion cap": [65535, 0], "it it was in a percussion cap box": [65535, 0], "it was in a percussion cap box the": [65535, 0], "was in a percussion cap box the first": [65535, 0], "in a percussion cap box the first thing": [65535, 0], "a percussion cap box the first thing the": [65535, 0], "percussion cap box the first thing the beetle": [65535, 0], "cap box the first thing the beetle did": [65535, 0], "box the first thing the beetle did was": [65535, 0], "the first thing the beetle did was to": [65535, 0], "first thing the beetle did was to take": [65535, 0], "thing the beetle did was to take him": [65535, 0], "the beetle did was to take him by": [65535, 0], "beetle did was to take him by the": [65535, 0], "did was to take him by the finger": [65535, 0], "was to take him by the finger a": [65535, 0], "to take him by the finger a natural": [65535, 0], "take him by the finger a natural fillip": [65535, 0], "him by the finger a natural fillip followed": [65535, 0], "by the finger a natural fillip followed the": [65535, 0], "the finger a natural fillip followed the beetle": [65535, 0], "finger a natural fillip followed the beetle went": [65535, 0], "a natural fillip followed the beetle went floundering": [65535, 0], "natural fillip followed the beetle went floundering into": [65535, 0], "fillip followed the beetle went floundering into the": [65535, 0], "followed the beetle went floundering into the aisle": [65535, 0], "the beetle went floundering into the aisle and": [65535, 0], "beetle went floundering into the aisle and lit": [65535, 0], "went floundering into the aisle and lit on": [65535, 0], "floundering into the aisle and lit on its": [65535, 0], "into the aisle and lit on its back": [65535, 0], "the aisle and lit on its back and": [65535, 0], "aisle and lit on its back and the": [65535, 0], "and lit on its back and the hurt": [65535, 0], "lit on its back and the hurt finger": [65535, 0], "on its back and the hurt finger went": [65535, 0], "its back and the hurt finger went into": [65535, 0], "back and the hurt finger went into the": [65535, 0], "and the hurt finger went into the boy's": [65535, 0], "the hurt finger went into the boy's mouth": [65535, 0], "hurt finger went into the boy's mouth the": [65535, 0], "finger went into the boy's mouth the beetle": [65535, 0], "went into the boy's mouth the beetle lay": [65535, 0], "into the boy's mouth the beetle lay there": [65535, 0], "the boy's mouth the beetle lay there working": [65535, 0], "boy's mouth the beetle lay there working its": [65535, 0], "mouth the beetle lay there working its helpless": [65535, 0], "the beetle lay there working its helpless legs": [65535, 0], "beetle lay there working its helpless legs unable": [65535, 0], "lay there working its helpless legs unable to": [65535, 0], "there working its helpless legs unable to turn": [65535, 0], "working its helpless legs unable to turn over": [65535, 0], "its helpless legs unable to turn over tom": [65535, 0], "helpless legs unable to turn over tom eyed": [65535, 0], "legs unable to turn over tom eyed it": [65535, 0], "unable to turn over tom eyed it and": [65535, 0], "to turn over tom eyed it and longed": [65535, 0], "turn over tom eyed it and longed for": [65535, 0], "over tom eyed it and longed for it": [65535, 0], "tom eyed it and longed for it but": [65535, 0], "eyed it and longed for it but it": [65535, 0], "it and longed for it but it was": [65535, 0], "and longed for it but it was safe": [65535, 0], "longed for it but it was safe out": [65535, 0], "for it but it was safe out of": [65535, 0], "it but it was safe out of his": [65535, 0], "but it was safe out of his reach": [65535, 0], "it was safe out of his reach other": [65535, 0], "was safe out of his reach other people": [65535, 0], "safe out of his reach other people uninterested": [65535, 0], "out of his reach other people uninterested in": [65535, 0], "of his reach other people uninterested in the": [65535, 0], "his reach other people uninterested in the sermon": [65535, 0], "reach other people uninterested in the sermon found": [65535, 0], "other people uninterested in the sermon found relief": [65535, 0], "people uninterested in the sermon found relief in": [65535, 0], "uninterested in the sermon found relief in the": [65535, 0], "in the sermon found relief in the beetle": [65535, 0], "the sermon found relief in the beetle and": [65535, 0], "sermon found relief in the beetle and they": [65535, 0], "found relief in the beetle and they eyed": [65535, 0], "relief in the beetle and they eyed it": [65535, 0], "in the beetle and they eyed it too": [65535, 0], "the beetle and they eyed it too presently": [65535, 0], "beetle and they eyed it too presently a": [65535, 0], "and they eyed it too presently a vagrant": [65535, 0], "they eyed it too presently a vagrant poodle": [65535, 0], "eyed it too presently a vagrant poodle dog": [65535, 0], "it too presently a vagrant poodle dog came": [65535, 0], "too presently a vagrant poodle dog came idling": [65535, 0], "presently a vagrant poodle dog came idling along": [65535, 0], "a vagrant poodle dog came idling along sad": [65535, 0], "vagrant poodle dog came idling along sad at": [65535, 0], "poodle dog came idling along sad at heart": [65535, 0], "dog came idling along sad at heart lazy": [65535, 0], "came idling along sad at heart lazy with": [65535, 0], "idling along sad at heart lazy with the": [65535, 0], "along sad at heart lazy with the summer": [65535, 0], "sad at heart lazy with the summer softness": [65535, 0], "at heart lazy with the summer softness and": [65535, 0], "heart lazy with the summer softness and the": [65535, 0], "lazy with the summer softness and the quiet": [65535, 0], "with the summer softness and the quiet weary": [65535, 0], "the summer softness and the quiet weary of": [65535, 0], "summer softness and the quiet weary of captivity": [65535, 0], "softness and the quiet weary of captivity sighing": [65535, 0], "and the quiet weary of captivity sighing for": [65535, 0], "the quiet weary of captivity sighing for change": [65535, 0], "quiet weary of captivity sighing for change he": [65535, 0], "weary of captivity sighing for change he spied": [65535, 0], "of captivity sighing for change he spied the": [65535, 0], "captivity sighing for change he spied the beetle": [65535, 0], "sighing for change he spied the beetle the": [65535, 0], "for change he spied the beetle the drooping": [65535, 0], "change he spied the beetle the drooping tail": [65535, 0], "he spied the beetle the drooping tail lifted": [65535, 0], "spied the beetle the drooping tail lifted and": [65535, 0], "the beetle the drooping tail lifted and wagged": [65535, 0], "beetle the drooping tail lifted and wagged he": [65535, 0], "the drooping tail lifted and wagged he surveyed": [65535, 0], "drooping tail lifted and wagged he surveyed the": [65535, 0], "tail lifted and wagged he surveyed the prize": [65535, 0], "lifted and wagged he surveyed the prize walked": [65535, 0], "and wagged he surveyed the prize walked around": [65535, 0], "wagged he surveyed the prize walked around it": [65535, 0], "he surveyed the prize walked around it smelt": [65535, 0], "surveyed the prize walked around it smelt at": [65535, 0], "the prize walked around it smelt at it": [65535, 0], "prize walked around it smelt at it from": [65535, 0], "walked around it smelt at it from a": [65535, 0], "around it smelt at it from a safe": [65535, 0], "it smelt at it from a safe distance": [65535, 0], "smelt at it from a safe distance walked": [65535, 0], "at it from a safe distance walked around": [65535, 0], "it from a safe distance walked around it": [65535, 0], "from a safe distance walked around it again": [65535, 0], "a safe distance walked around it again grew": [65535, 0], "safe distance walked around it again grew bolder": [65535, 0], "distance walked around it again grew bolder and": [65535, 0], "walked around it again grew bolder and took": [65535, 0], "around it again grew bolder and took a": [65535, 0], "it again grew bolder and took a closer": [65535, 0], "again grew bolder and took a closer smell": [65535, 0], "grew bolder and took a closer smell then": [65535, 0], "bolder and took a closer smell then lifted": [65535, 0], "and took a closer smell then lifted his": [65535, 0], "took a closer smell then lifted his lip": [65535, 0], "a closer smell then lifted his lip and": [65535, 0], "closer smell then lifted his lip and made": [65535, 0], "smell then lifted his lip and made a": [65535, 0], "then lifted his lip and made a gingerly": [65535, 0], "lifted his lip and made a gingerly snatch": [65535, 0], "his lip and made a gingerly snatch at": [65535, 0], "lip and made a gingerly snatch at it": [65535, 0], "and made a gingerly snatch at it just": [65535, 0], "made a gingerly snatch at it just missing": [65535, 0], "a gingerly snatch at it just missing it": [65535, 0], "gingerly snatch at it just missing it made": [65535, 0], "snatch at it just missing it made another": [65535, 0], "at it just missing it made another and": [65535, 0], "it just missing it made another and another": [65535, 0], "just missing it made another and another began": [65535, 0], "missing it made another and another began to": [65535, 0], "it made another and another began to enjoy": [65535, 0], "made another and another began to enjoy the": [65535, 0], "another and another began to enjoy the diversion": [65535, 0], "and another began to enjoy the diversion subsided": [65535, 0], "another began to enjoy the diversion subsided to": [65535, 0], "began to enjoy the diversion subsided to his": [65535, 0], "to enjoy the diversion subsided to his stomach": [65535, 0], "enjoy the diversion subsided to his stomach with": [65535, 0], "the diversion subsided to his stomach with the": [65535, 0], "diversion subsided to his stomach with the beetle": [65535, 0], "subsided to his stomach with the beetle between": [65535, 0], "to his stomach with the beetle between his": [65535, 0], "his stomach with the beetle between his paws": [65535, 0], "stomach with the beetle between his paws and": [65535, 0], "with the beetle between his paws and continued": [65535, 0], "the beetle between his paws and continued his": [65535, 0], "beetle between his paws and continued his experiments": [65535, 0], "between his paws and continued his experiments grew": [65535, 0], "his paws and continued his experiments grew weary": [65535, 0], "paws and continued his experiments grew weary at": [65535, 0], "and continued his experiments grew weary at last": [65535, 0], "continued his experiments grew weary at last and": [65535, 0], "his experiments grew weary at last and then": [65535, 0], "experiments grew weary at last and then indifferent": [65535, 0], "grew weary at last and then indifferent and": [65535, 0], "weary at last and then indifferent and absent": [65535, 0], "at last and then indifferent and absent minded": [65535, 0], "last and then indifferent and absent minded his": [65535, 0], "and then indifferent and absent minded his head": [65535, 0], "then indifferent and absent minded his head nodded": [65535, 0], "indifferent and absent minded his head nodded and": [65535, 0], "and absent minded his head nodded and little": [65535, 0], "absent minded his head nodded and little by": [65535, 0], "minded his head nodded and little by little": [65535, 0], "his head nodded and little by little his": [65535, 0], "head nodded and little by little his chin": [65535, 0], "nodded and little by little his chin descended": [65535, 0], "and little by little his chin descended and": [65535, 0], "little by little his chin descended and touched": [65535, 0], "by little his chin descended and touched the": [65535, 0], "little his chin descended and touched the enemy": [65535, 0], "his chin descended and touched the enemy who": [65535, 0], "chin descended and touched the enemy who seized": [65535, 0], "descended and touched the enemy who seized it": [65535, 0], "and touched the enemy who seized it there": [65535, 0], "touched the enemy who seized it there was": [65535, 0], "the enemy who seized it there was a": [65535, 0], "enemy who seized it there was a sharp": [65535, 0], "who seized it there was a sharp yelp": [65535, 0], "seized it there was a sharp yelp a": [65535, 0], "it there was a sharp yelp a flirt": [65535, 0], "there was a sharp yelp a flirt of": [65535, 0], "was a sharp yelp a flirt of the": [65535, 0], "a sharp yelp a flirt of the poodle's": [65535, 0], "sharp yelp a flirt of the poodle's head": [65535, 0], "yelp a flirt of the poodle's head and": [65535, 0], "a flirt of the poodle's head and the": [65535, 0], "flirt of the poodle's head and the beetle": [65535, 0], "of the poodle's head and the beetle fell": [65535, 0], "the poodle's head and the beetle fell a": [65535, 0], "poodle's head and the beetle fell a couple": [65535, 0], "head and the beetle fell a couple of": [65535, 0], "and the beetle fell a couple of yards": [65535, 0], "the beetle fell a couple of yards away": [65535, 0], "beetle fell a couple of yards away and": [65535, 0], "fell a couple of yards away and lit": [65535, 0], "a couple of yards away and lit on": [65535, 0], "couple of yards away and lit on its": [65535, 0], "of yards away and lit on its back": [65535, 0], "yards away and lit on its back once": [65535, 0], "away and lit on its back once more": [65535, 0], "and lit on its back once more the": [65535, 0], "lit on its back once more the neighboring": [65535, 0], "on its back once more the neighboring spectators": [65535, 0], "its back once more the neighboring spectators shook": [65535, 0], "back once more the neighboring spectators shook with": [65535, 0], "once more the neighboring spectators shook with a": [65535, 0], "more the neighboring spectators shook with a gentle": [65535, 0], "the neighboring spectators shook with a gentle inward": [65535, 0], "neighboring spectators shook with a gentle inward joy": [65535, 0], "spectators shook with a gentle inward joy several": [65535, 0], "shook with a gentle inward joy several faces": [65535, 0], "with a gentle inward joy several faces went": [65535, 0], "a gentle inward joy several faces went behind": [65535, 0], "gentle inward joy several faces went behind fans": [65535, 0], "inward joy several faces went behind fans and": [65535, 0], "joy several faces went behind fans and handkerchiefs": [65535, 0], "several faces went behind fans and handkerchiefs and": [65535, 0], "faces went behind fans and handkerchiefs and tom": [65535, 0], "went behind fans and handkerchiefs and tom was": [65535, 0], "behind fans and handkerchiefs and tom was entirely": [65535, 0], "fans and handkerchiefs and tom was entirely happy": [65535, 0], "and handkerchiefs and tom was entirely happy the": [65535, 0], "handkerchiefs and tom was entirely happy the dog": [65535, 0], "and tom was entirely happy the dog looked": [65535, 0], "tom was entirely happy the dog looked foolish": [65535, 0], "was entirely happy the dog looked foolish and": [65535, 0], "entirely happy the dog looked foolish and probably": [65535, 0], "happy the dog looked foolish and probably felt": [65535, 0], "the dog looked foolish and probably felt so": [65535, 0], "dog looked foolish and probably felt so but": [65535, 0], "looked foolish and probably felt so but there": [65535, 0], "foolish and probably felt so but there was": [65535, 0], "and probably felt so but there was resentment": [65535, 0], "probably felt so but there was resentment in": [65535, 0], "felt so but there was resentment in his": [65535, 0], "so but there was resentment in his heart": [65535, 0], "but there was resentment in his heart too": [65535, 0], "there was resentment in his heart too and": [65535, 0], "was resentment in his heart too and a": [65535, 0], "resentment in his heart too and a craving": [65535, 0], "in his heart too and a craving for": [65535, 0], "his heart too and a craving for revenge": [65535, 0], "heart too and a craving for revenge so": [65535, 0], "too and a craving for revenge so he": [65535, 0], "and a craving for revenge so he went": [65535, 0], "a craving for revenge so he went to": [65535, 0], "craving for revenge so he went to the": [65535, 0], "for revenge so he went to the beetle": [65535, 0], "revenge so he went to the beetle and": [65535, 0], "so he went to the beetle and began": [65535, 0], "he went to the beetle and began a": [65535, 0], "went to the beetle and began a wary": [65535, 0], "to the beetle and began a wary attack": [65535, 0], "the beetle and began a wary attack on": [65535, 0], "beetle and began a wary attack on it": [65535, 0], "and began a wary attack on it again": [65535, 0], "began a wary attack on it again jumping": [65535, 0], "a wary attack on it again jumping at": [65535, 0], "wary attack on it again jumping at it": [65535, 0], "attack on it again jumping at it from": [65535, 0], "on it again jumping at it from every": [65535, 0], "it again jumping at it from every point": [65535, 0], "again jumping at it from every point of": [65535, 0], "jumping at it from every point of a": [65535, 0], "at it from every point of a circle": [65535, 0], "it from every point of a circle lighting": [65535, 0], "from every point of a circle lighting with": [65535, 0], "every point of a circle lighting with his": [65535, 0], "point of a circle lighting with his fore": [65535, 0], "of a circle lighting with his fore paws": [65535, 0], "a circle lighting with his fore paws within": [65535, 0], "circle lighting with his fore paws within an": [65535, 0], "lighting with his fore paws within an inch": [65535, 0], "with his fore paws within an inch of": [65535, 0], "his fore paws within an inch of the": [65535, 0], "fore paws within an inch of the creature": [65535, 0], "paws within an inch of the creature making": [65535, 0], "within an inch of the creature making even": [65535, 0], "an inch of the creature making even closer": [65535, 0], "inch of the creature making even closer snatches": [65535, 0], "of the creature making even closer snatches at": [65535, 0], "the creature making even closer snatches at it": [65535, 0], "creature making even closer snatches at it with": [65535, 0], "making even closer snatches at it with his": [65535, 0], "even closer snatches at it with his teeth": [65535, 0], "closer snatches at it with his teeth and": [65535, 0], "snatches at it with his teeth and jerking": [65535, 0], "at it with his teeth and jerking his": [65535, 0], "it with his teeth and jerking his head": [65535, 0], "with his teeth and jerking his head till": [65535, 0], "his teeth and jerking his head till his": [65535, 0], "teeth and jerking his head till his ears": [65535, 0], "and jerking his head till his ears flapped": [65535, 0], "jerking his head till his ears flapped again": [65535, 0], "his head till his ears flapped again but": [65535, 0], "head till his ears flapped again but he": [65535, 0], "till his ears flapped again but he grew": [65535, 0], "his ears flapped again but he grew tired": [65535, 0], "ears flapped again but he grew tired once": [65535, 0], "flapped again but he grew tired once more": [65535, 0], "again but he grew tired once more after": [65535, 0], "but he grew tired once more after a": [65535, 0], "he grew tired once more after a while": [65535, 0], "grew tired once more after a while tried": [65535, 0], "tired once more after a while tried to": [65535, 0], "once more after a while tried to amuse": [65535, 0], "more after a while tried to amuse himself": [65535, 0], "after a while tried to amuse himself with": [65535, 0], "a while tried to amuse himself with a": [65535, 0], "while tried to amuse himself with a fly": [65535, 0], "tried to amuse himself with a fly but": [65535, 0], "to amuse himself with a fly but found": [65535, 0], "amuse himself with a fly but found no": [65535, 0], "himself with a fly but found no relief": [65535, 0], "with a fly but found no relief followed": [65535, 0], "a fly but found no relief followed an": [65535, 0], "fly but found no relief followed an ant": [65535, 0], "but found no relief followed an ant around": [65535, 0], "found no relief followed an ant around with": [65535, 0], "no relief followed an ant around with his": [65535, 0], "relief followed an ant around with his nose": [65535, 0], "followed an ant around with his nose close": [65535, 0], "an ant around with his nose close to": [65535, 0], "ant around with his nose close to the": [65535, 0], "around with his nose close to the floor": [65535, 0], "with his nose close to the floor and": [65535, 0], "his nose close to the floor and quickly": [65535, 0], "nose close to the floor and quickly wearied": [65535, 0], "close to the floor and quickly wearied of": [65535, 0], "to the floor and quickly wearied of that": [65535, 0], "the floor and quickly wearied of that yawned": [65535, 0], "floor and quickly wearied of that yawned sighed": [65535, 0], "and quickly wearied of that yawned sighed forgot": [65535, 0], "quickly wearied of that yawned sighed forgot the": [65535, 0], "wearied of that yawned sighed forgot the beetle": [65535, 0], "of that yawned sighed forgot the beetle entirely": [65535, 0], "that yawned sighed forgot the beetle entirely and": [65535, 0], "yawned sighed forgot the beetle entirely and sat": [65535, 0], "sighed forgot the beetle entirely and sat down": [65535, 0], "forgot the beetle entirely and sat down on": [65535, 0], "the beetle entirely and sat down on it": [65535, 0], "beetle entirely and sat down on it then": [65535, 0], "entirely and sat down on it then there": [65535, 0], "and sat down on it then there was": [65535, 0], "sat down on it then there was a": [65535, 0], "down on it then there was a wild": [65535, 0], "on it then there was a wild yelp": [65535, 0], "it then there was a wild yelp of": [65535, 0], "then there was a wild yelp of agony": [65535, 0], "there was a wild yelp of agony and": [65535, 0], "was a wild yelp of agony and the": [65535, 0], "a wild yelp of agony and the poodle": [65535, 0], "wild yelp of agony and the poodle went": [65535, 0], "yelp of agony and the poodle went sailing": [65535, 0], "of agony and the poodle went sailing up": [65535, 0], "agony and the poodle went sailing up the": [65535, 0], "and the poodle went sailing up the aisle": [65535, 0], "the poodle went sailing up the aisle the": [65535, 0], "poodle went sailing up the aisle the yelps": [65535, 0], "went sailing up the aisle the yelps continued": [65535, 0], "sailing up the aisle the yelps continued and": [65535, 0], "up the aisle the yelps continued and so": [65535, 0], "the aisle the yelps continued and so did": [65535, 0], "aisle the yelps continued and so did the": [65535, 0], "the yelps continued and so did the dog": [65535, 0], "yelps continued and so did the dog he": [65535, 0], "continued and so did the dog he crossed": [65535, 0], "and so did the dog he crossed the": [65535, 0], "so did the dog he crossed the house": [65535, 0], "did the dog he crossed the house in": [65535, 0], "the dog he crossed the house in front": [65535, 0], "dog he crossed the house in front of": [65535, 0], "he crossed the house in front of the": [65535, 0], "crossed the house in front of the altar": [65535, 0], "the house in front of the altar he": [65535, 0], "house in front of the altar he flew": [65535, 0], "in front of the altar he flew down": [65535, 0], "front of the altar he flew down the": [65535, 0], "of the altar he flew down the other": [65535, 0], "the altar he flew down the other aisle": [65535, 0], "altar he flew down the other aisle he": [65535, 0], "he flew down the other aisle he crossed": [65535, 0], "flew down the other aisle he crossed before": [65535, 0], "down the other aisle he crossed before the": [65535, 0], "the other aisle he crossed before the doors": [65535, 0], "other aisle he crossed before the doors he": [65535, 0], "aisle he crossed before the doors he clamored": [65535, 0], "he crossed before the doors he clamored up": [65535, 0], "crossed before the doors he clamored up the": [65535, 0], "before the doors he clamored up the home": [65535, 0], "the doors he clamored up the home stretch": [65535, 0], "doors he clamored up the home stretch his": [65535, 0], "he clamored up the home stretch his anguish": [65535, 0], "clamored up the home stretch his anguish grew": [65535, 0], "up the home stretch his anguish grew with": [65535, 0], "the home stretch his anguish grew with his": [65535, 0], "home stretch his anguish grew with his progress": [65535, 0], "stretch his anguish grew with his progress till": [65535, 0], "his anguish grew with his progress till presently": [65535, 0], "anguish grew with his progress till presently he": [65535, 0], "grew with his progress till presently he was": [65535, 0], "with his progress till presently he was but": [65535, 0], "his progress till presently he was but a": [65535, 0], "progress till presently he was but a woolly": [65535, 0], "till presently he was but a woolly comet": [65535, 0], "presently he was but a woolly comet moving": [65535, 0], "he was but a woolly comet moving in": [65535, 0], "was but a woolly comet moving in its": [65535, 0], "but a woolly comet moving in its orbit": [65535, 0], "a woolly comet moving in its orbit with": [65535, 0], "woolly comet moving in its orbit with the": [65535, 0], "comet moving in its orbit with the gleam": [65535, 0], "moving in its orbit with the gleam and": [65535, 0], "in its orbit with the gleam and the": [65535, 0], "its orbit with the gleam and the speed": [65535, 0], "orbit with the gleam and the speed of": [65535, 0], "with the gleam and the speed of light": [65535, 0], "the gleam and the speed of light at": [65535, 0], "gleam and the speed of light at last": [65535, 0], "and the speed of light at last the": [65535, 0], "the speed of light at last the frantic": [65535, 0], "speed of light at last the frantic sufferer": [65535, 0], "of light at last the frantic sufferer sheered": [65535, 0], "light at last the frantic sufferer sheered from": [65535, 0], "at last the frantic sufferer sheered from its": [65535, 0], "last the frantic sufferer sheered from its course": [65535, 0], "the frantic sufferer sheered from its course and": [65535, 0], "frantic sufferer sheered from its course and sprang": [65535, 0], "sufferer sheered from its course and sprang into": [65535, 0], "sheered from its course and sprang into its": [65535, 0], "from its course and sprang into its master's": [65535, 0], "its course and sprang into its master's lap": [65535, 0], "course and sprang into its master's lap he": [65535, 0], "and sprang into its master's lap he flung": [65535, 0], "sprang into its master's lap he flung it": [65535, 0], "into its master's lap he flung it out": [65535, 0], "its master's lap he flung it out of": [65535, 0], "master's lap he flung it out of the": [65535, 0], "lap he flung it out of the window": [65535, 0], "he flung it out of the window and": [65535, 0], "flung it out of the window and the": [65535, 0], "it out of the window and the voice": [65535, 0], "out of the window and the voice of": [65535, 0], "of the window and the voice of distress": [65535, 0], "the window and the voice of distress quickly": [65535, 0], "window and the voice of distress quickly thinned": [65535, 0], "and the voice of distress quickly thinned away": [65535, 0], "the voice of distress quickly thinned away and": [65535, 0], "voice of distress quickly thinned away and died": [65535, 0], "of distress quickly thinned away and died in": [65535, 0], "distress quickly thinned away and died in the": [65535, 0], "quickly thinned away and died in the distance": [65535, 0], "thinned away and died in the distance by": [65535, 0], "away and died in the distance by this": [65535, 0], "and died in the distance by this time": [65535, 0], "died in the distance by this time the": [65535, 0], "in the distance by this time the whole": [65535, 0], "the distance by this time the whole church": [65535, 0], "distance by this time the whole church was": [65535, 0], "by this time the whole church was red": [65535, 0], "this time the whole church was red faced": [65535, 0], "time the whole church was red faced and": [65535, 0], "the whole church was red faced and suffocating": [65535, 0], "whole church was red faced and suffocating with": [65535, 0], "church was red faced and suffocating with suppressed": [65535, 0], "was red faced and suffocating with suppressed laughter": [65535, 0], "red faced and suffocating with suppressed laughter and": [65535, 0], "faced and suffocating with suppressed laughter and the": [65535, 0], "and suffocating with suppressed laughter and the sermon": [65535, 0], "suffocating with suppressed laughter and the sermon had": [65535, 0], "with suppressed laughter and the sermon had come": [65535, 0], "suppressed laughter and the sermon had come to": [65535, 0], "laughter and the sermon had come to a": [65535, 0], "and the sermon had come to a dead": [65535, 0], "the sermon had come to a dead standstill": [65535, 0], "sermon had come to a dead standstill the": [65535, 0], "had come to a dead standstill the discourse": [65535, 0], "come to a dead standstill the discourse was": [65535, 0], "to a dead standstill the discourse was resumed": [65535, 0], "a dead standstill the discourse was resumed presently": [65535, 0], "dead standstill the discourse was resumed presently but": [65535, 0], "standstill the discourse was resumed presently but it": [65535, 0], "the discourse was resumed presently but it went": [65535, 0], "discourse was resumed presently but it went lame": [65535, 0], "was resumed presently but it went lame and": [65535, 0], "resumed presently but it went lame and halting": [65535, 0], "presently but it went lame and halting all": [65535, 0], "but it went lame and halting all possibility": [65535, 0], "it went lame and halting all possibility of": [65535, 0], "went lame and halting all possibility of impressiveness": [65535, 0], "lame and halting all possibility of impressiveness being": [65535, 0], "and halting all possibility of impressiveness being at": [65535, 0], "halting all possibility of impressiveness being at an": [65535, 0], "all possibility of impressiveness being at an end": [65535, 0], "possibility of impressiveness being at an end for": [65535, 0], "of impressiveness being at an end for even": [65535, 0], "impressiveness being at an end for even the": [65535, 0], "being at an end for even the gravest": [65535, 0], "at an end for even the gravest sentiments": [65535, 0], "an end for even the gravest sentiments were": [65535, 0], "end for even the gravest sentiments were constantly": [65535, 0], "for even the gravest sentiments were constantly being": [65535, 0], "even the gravest sentiments were constantly being received": [65535, 0], "the gravest sentiments were constantly being received with": [65535, 0], "gravest sentiments were constantly being received with a": [65535, 0], "sentiments were constantly being received with a smothered": [65535, 0], "were constantly being received with a smothered burst": [65535, 0], "constantly being received with a smothered burst of": [65535, 0], "being received with a smothered burst of unholy": [65535, 0], "received with a smothered burst of unholy mirth": [65535, 0], "with a smothered burst of unholy mirth under": [65535, 0], "a smothered burst of unholy mirth under cover": [65535, 0], "smothered burst of unholy mirth under cover of": [65535, 0], "burst of unholy mirth under cover of some": [65535, 0], "of unholy mirth under cover of some remote": [65535, 0], "unholy mirth under cover of some remote pew": [65535, 0], "mirth under cover of some remote pew back": [65535, 0], "under cover of some remote pew back as": [65535, 0], "cover of some remote pew back as if": [65535, 0], "of some remote pew back as if the": [65535, 0], "some remote pew back as if the poor": [65535, 0], "remote pew back as if the poor parson": [65535, 0], "pew back as if the poor parson had": [65535, 0], "back as if the poor parson had said": [65535, 0], "as if the poor parson had said a": [65535, 0], "if the poor parson had said a rarely": [65535, 0], "the poor parson had said a rarely facetious": [65535, 0], "poor parson had said a rarely facetious thing": [65535, 0], "parson had said a rarely facetious thing it": [65535, 0], "had said a rarely facetious thing it was": [65535, 0], "said a rarely facetious thing it was a": [65535, 0], "a rarely facetious thing it was a genuine": [65535, 0], "rarely facetious thing it was a genuine relief": [65535, 0], "facetious thing it was a genuine relief to": [65535, 0], "thing it was a genuine relief to the": [65535, 0], "it was a genuine relief to the whole": [65535, 0], "was a genuine relief to the whole congregation": [65535, 0], "a genuine relief to the whole congregation when": [65535, 0], "genuine relief to the whole congregation when the": [65535, 0], "relief to the whole congregation when the ordeal": [65535, 0], "to the whole congregation when the ordeal was": [65535, 0], "the whole congregation when the ordeal was over": [65535, 0], "whole congregation when the ordeal was over and": [65535, 0], "congregation when the ordeal was over and the": [65535, 0], "when the ordeal was over and the benediction": [65535, 0], "the ordeal was over and the benediction pronounced": [65535, 0], "ordeal was over and the benediction pronounced tom": [65535, 0], "was over and the benediction pronounced tom sawyer": [65535, 0], "over and the benediction pronounced tom sawyer went": [65535, 0], "and the benediction pronounced tom sawyer went home": [65535, 0], "the benediction pronounced tom sawyer went home quite": [65535, 0], "benediction pronounced tom sawyer went home quite cheerful": [65535, 0], "pronounced tom sawyer went home quite cheerful thinking": [65535, 0], "tom sawyer went home quite cheerful thinking to": [65535, 0], "sawyer went home quite cheerful thinking to himself": [65535, 0], "went home quite cheerful thinking to himself that": [65535, 0], "home quite cheerful thinking to himself that there": [65535, 0], "quite cheerful thinking to himself that there was": [65535, 0], "cheerful thinking to himself that there was some": [65535, 0], "thinking to himself that there was some satisfaction": [65535, 0], "to himself that there was some satisfaction about": [65535, 0], "himself that there was some satisfaction about divine": [65535, 0], "that there was some satisfaction about divine service": [65535, 0], "there was some satisfaction about divine service when": [65535, 0], "was some satisfaction about divine service when there": [65535, 0], "some satisfaction about divine service when there was": [65535, 0], "satisfaction about divine service when there was a": [65535, 0], "about divine service when there was a bit": [65535, 0], "divine service when there was a bit of": [65535, 0], "service when there was a bit of variety": [65535, 0], "when there was a bit of variety in": [65535, 0], "there was a bit of variety in it": [65535, 0], "was a bit of variety in it he": [65535, 0], "a bit of variety in it he had": [65535, 0], "bit of variety in it he had but": [65535, 0], "of variety in it he had but one": [65535, 0], "variety in it he had but one marring": [65535, 0], "in it he had but one marring thought": [65535, 0], "it he had but one marring thought he": [65535, 0], "he had but one marring thought he was": [65535, 0], "had but one marring thought he was willing": [65535, 0], "but one marring thought he was willing that": [65535, 0], "one marring thought he was willing that the": [65535, 0], "marring thought he was willing that the dog": [65535, 0], "thought he was willing that the dog should": [65535, 0], "he was willing that the dog should play": [65535, 0], "was willing that the dog should play with": [65535, 0], "willing that the dog should play with his": [65535, 0], "that the dog should play with his pinchbug": [65535, 0], "the dog should play with his pinchbug but": [65535, 0], "dog should play with his pinchbug but he": [65535, 0], "should play with his pinchbug but he did": [65535, 0], "play with his pinchbug but he did not": [65535, 0], "with his pinchbug but he did not think": [65535, 0], "his pinchbug but he did not think it": [65535, 0], "pinchbug but he did not think it was": [65535, 0], "but he did not think it was upright": [65535, 0], "he did not think it was upright in": [65535, 0], "did not think it was upright in him": [65535, 0], "not think it was upright in him to": [65535, 0], "think it was upright in him to carry": [65535, 0], "it was upright in him to carry it": [65535, 0], "was upright in him to carry it off": [65535, 0], "about half past ten the cracked bell of the": [65535, 0], "half past ten the cracked bell of the small": [65535, 0], "past ten the cracked bell of the small church": [65535, 0], "ten the cracked bell of the small church began": [65535, 0], "the cracked bell of the small church began to": [65535, 0], "cracked bell of the small church began to ring": [65535, 0], "bell of the small church began to ring and": [65535, 0], "of the small church began to ring and presently": [65535, 0], "the small church began to ring and presently the": [65535, 0], "small church began to ring and presently the people": [65535, 0], "church began to ring and presently the people began": [65535, 0], "began to ring and presently the people began to": [65535, 0], "to ring and presently the people began to gather": [65535, 0], "ring and presently the people began to gather for": [65535, 0], "and presently the people began to gather for the": [65535, 0], "presently the people began to gather for the morning": [65535, 0], "the people began to gather for the morning sermon": [65535, 0], "people began to gather for the morning sermon the": [65535, 0], "began to gather for the morning sermon the sunday": [65535, 0], "to gather for the morning sermon the sunday school": [65535, 0], "gather for the morning sermon the sunday school children": [65535, 0], "for the morning sermon the sunday school children distributed": [65535, 0], "the morning sermon the sunday school children distributed themselves": [65535, 0], "morning sermon the sunday school children distributed themselves about": [65535, 0], "sermon the sunday school children distributed themselves about the": [65535, 0], "the sunday school children distributed themselves about the house": [65535, 0], "sunday school children distributed themselves about the house and": [65535, 0], "school children distributed themselves about the house and occupied": [65535, 0], "children distributed themselves about the house and occupied pews": [65535, 0], "distributed themselves about the house and occupied pews with": [65535, 0], "themselves about the house and occupied pews with their": [65535, 0], "about the house and occupied pews with their parents": [65535, 0], "the house and occupied pews with their parents so": [65535, 0], "house and occupied pews with their parents so as": [65535, 0], "and occupied pews with their parents so as to": [65535, 0], "occupied pews with their parents so as to be": [65535, 0], "pews with their parents so as to be under": [65535, 0], "with their parents so as to be under supervision": [65535, 0], "their parents so as to be under supervision aunt": [65535, 0], "parents so as to be under supervision aunt polly": [65535, 0], "so as to be under supervision aunt polly came": [65535, 0], "as to be under supervision aunt polly came and": [65535, 0], "to be under supervision aunt polly came and tom": [65535, 0], "be under supervision aunt polly came and tom and": [65535, 0], "under supervision aunt polly came and tom and sid": [65535, 0], "supervision aunt polly came and tom and sid and": [65535, 0], "aunt polly came and tom and sid and mary": [65535, 0], "polly came and tom and sid and mary sat": [65535, 0], "came and tom and sid and mary sat with": [65535, 0], "and tom and sid and mary sat with her": [65535, 0], "tom and sid and mary sat with her tom": [65535, 0], "and sid and mary sat with her tom being": [65535, 0], "sid and mary sat with her tom being placed": [65535, 0], "and mary sat with her tom being placed next": [65535, 0], "mary sat with her tom being placed next the": [65535, 0], "sat with her tom being placed next the aisle": [65535, 0], "with her tom being placed next the aisle in": [65535, 0], "her tom being placed next the aisle in order": [65535, 0], "tom being placed next the aisle in order that": [65535, 0], "being placed next the aisle in order that he": [65535, 0], "placed next the aisle in order that he might": [65535, 0], "next the aisle in order that he might be": [65535, 0], "the aisle in order that he might be as": [65535, 0], "aisle in order that he might be as far": [65535, 0], "in order that he might be as far away": [65535, 0], "order that he might be as far away from": [65535, 0], "that he might be as far away from the": [65535, 0], "he might be as far away from the open": [65535, 0], "might be as far away from the open window": [65535, 0], "be as far away from the open window and": [65535, 0], "as far away from the open window and the": [65535, 0], "far away from the open window and the seductive": [65535, 0], "away from the open window and the seductive outside": [65535, 0], "from the open window and the seductive outside summer": [65535, 0], "the open window and the seductive outside summer scenes": [65535, 0], "open window and the seductive outside summer scenes as": [65535, 0], "window and the seductive outside summer scenes as possible": [65535, 0], "and the seductive outside summer scenes as possible the": [65535, 0], "the seductive outside summer scenes as possible the crowd": [65535, 0], "seductive outside summer scenes as possible the crowd filed": [65535, 0], "outside summer scenes as possible the crowd filed up": [65535, 0], "summer scenes as possible the crowd filed up the": [65535, 0], "scenes as possible the crowd filed up the aisles": [65535, 0], "as possible the crowd filed up the aisles the": [65535, 0], "possible the crowd filed up the aisles the aged": [65535, 0], "the crowd filed up the aisles the aged and": [65535, 0], "crowd filed up the aisles the aged and needy": [65535, 0], "filed up the aisles the aged and needy postmaster": [65535, 0], "up the aisles the aged and needy postmaster who": [65535, 0], "the aisles the aged and needy postmaster who had": [65535, 0], "aisles the aged and needy postmaster who had seen": [65535, 0], "the aged and needy postmaster who had seen better": [65535, 0], "aged and needy postmaster who had seen better days": [65535, 0], "and needy postmaster who had seen better days the": [65535, 0], "needy postmaster who had seen better days the mayor": [65535, 0], "postmaster who had seen better days the mayor and": [65535, 0], "who had seen better days the mayor and his": [65535, 0], "had seen better days the mayor and his wife": [65535, 0], "seen better days the mayor and his wife for": [65535, 0], "better days the mayor and his wife for they": [65535, 0], "days the mayor and his wife for they had": [65535, 0], "the mayor and his wife for they had a": [65535, 0], "mayor and his wife for they had a mayor": [65535, 0], "and his wife for they had a mayor there": [65535, 0], "his wife for they had a mayor there among": [65535, 0], "wife for they had a mayor there among other": [65535, 0], "for they had a mayor there among other unnecessaries": [65535, 0], "they had a mayor there among other unnecessaries the": [65535, 0], "had a mayor there among other unnecessaries the justice": [65535, 0], "a mayor there among other unnecessaries the justice of": [65535, 0], "mayor there among other unnecessaries the justice of the": [65535, 0], "there among other unnecessaries the justice of the peace": [65535, 0], "among other unnecessaries the justice of the peace the": [65535, 0], "other unnecessaries the justice of the peace the widow": [65535, 0], "unnecessaries the justice of the peace the widow douglass": [65535, 0], "the justice of the peace the widow douglass fair": [65535, 0], "justice of the peace the widow douglass fair smart": [65535, 0], "of the peace the widow douglass fair smart and": [65535, 0], "the peace the widow douglass fair smart and forty": [65535, 0], "peace the widow douglass fair smart and forty a": [65535, 0], "the widow douglass fair smart and forty a generous": [65535, 0], "widow douglass fair smart and forty a generous good": [65535, 0], "douglass fair smart and forty a generous good hearted": [65535, 0], "fair smart and forty a generous good hearted soul": [65535, 0], "smart and forty a generous good hearted soul and": [65535, 0], "and forty a generous good hearted soul and well": [65535, 0], "forty a generous good hearted soul and well to": [65535, 0], "a generous good hearted soul and well to do": [65535, 0], "generous good hearted soul and well to do her": [65535, 0], "good hearted soul and well to do her hill": [65535, 0], "hearted soul and well to do her hill mansion": [65535, 0], "soul and well to do her hill mansion the": [65535, 0], "and well to do her hill mansion the only": [65535, 0], "well to do her hill mansion the only palace": [65535, 0], "to do her hill mansion the only palace in": [65535, 0], "do her hill mansion the only palace in the": [65535, 0], "her hill mansion the only palace in the town": [65535, 0], "hill mansion the only palace in the town and": [65535, 0], "mansion the only palace in the town and the": [65535, 0], "the only palace in the town and the most": [65535, 0], "only palace in the town and the most hospitable": [65535, 0], "palace in the town and the most hospitable and": [65535, 0], "in the town and the most hospitable and much": [65535, 0], "the town and the most hospitable and much the": [65535, 0], "town and the most hospitable and much the most": [65535, 0], "and the most hospitable and much the most lavish": [65535, 0], "the most hospitable and much the most lavish in": [65535, 0], "most hospitable and much the most lavish in the": [65535, 0], "hospitable and much the most lavish in the matter": [65535, 0], "and much the most lavish in the matter of": [65535, 0], "much the most lavish in the matter of festivities": [65535, 0], "the most lavish in the matter of festivities that": [65535, 0], "most lavish in the matter of festivities that st": [65535, 0], "lavish in the matter of festivities that st petersburg": [65535, 0], "in the matter of festivities that st petersburg could": [65535, 0], "the matter of festivities that st petersburg could boast": [65535, 0], "matter of festivities that st petersburg could boast the": [65535, 0], "of festivities that st petersburg could boast the bent": [65535, 0], "festivities that st petersburg could boast the bent and": [65535, 0], "that st petersburg could boast the bent and venerable": [65535, 0], "st petersburg could boast the bent and venerable major": [65535, 0], "petersburg could boast the bent and venerable major and": [65535, 0], "could boast the bent and venerable major and mrs": [65535, 0], "boast the bent and venerable major and mrs ward": [65535, 0], "the bent and venerable major and mrs ward lawyer": [65535, 0], "bent and venerable major and mrs ward lawyer riverson": [65535, 0], "and venerable major and mrs ward lawyer riverson the": [65535, 0], "venerable major and mrs ward lawyer riverson the new": [65535, 0], "major and mrs ward lawyer riverson the new notable": [65535, 0], "and mrs ward lawyer riverson the new notable from": [65535, 0], "mrs ward lawyer riverson the new notable from a": [65535, 0], "ward lawyer riverson the new notable from a distance": [65535, 0], "lawyer riverson the new notable from a distance next": [65535, 0], "riverson the new notable from a distance next the": [65535, 0], "the new notable from a distance next the belle": [65535, 0], "new notable from a distance next the belle of": [65535, 0], "notable from a distance next the belle of the": [65535, 0], "from a distance next the belle of the village": [65535, 0], "a distance next the belle of the village followed": [65535, 0], "distance next the belle of the village followed by": [65535, 0], "next the belle of the village followed by a": [65535, 0], "the belle of the village followed by a troop": [65535, 0], "belle of the village followed by a troop of": [65535, 0], "of the village followed by a troop of lawn": [65535, 0], "the village followed by a troop of lawn clad": [65535, 0], "village followed by a troop of lawn clad and": [65535, 0], "followed by a troop of lawn clad and ribbon": [65535, 0], "by a troop of lawn clad and ribbon decked": [65535, 0], "a troop of lawn clad and ribbon decked young": [65535, 0], "troop of lawn clad and ribbon decked young heart": [65535, 0], "of lawn clad and ribbon decked young heart breakers": [65535, 0], "lawn clad and ribbon decked young heart breakers then": [65535, 0], "clad and ribbon decked young heart breakers then all": [65535, 0], "and ribbon decked young heart breakers then all the": [65535, 0], "ribbon decked young heart breakers then all the young": [65535, 0], "decked young heart breakers then all the young clerks": [65535, 0], "young heart breakers then all the young clerks in": [65535, 0], "heart breakers then all the young clerks in town": [65535, 0], "breakers then all the young clerks in town in": [65535, 0], "then all the young clerks in town in a": [65535, 0], "all the young clerks in town in a body": [65535, 0], "the young clerks in town in a body for": [65535, 0], "young clerks in town in a body for they": [65535, 0], "clerks in town in a body for they had": [65535, 0], "in town in a body for they had stood": [65535, 0], "town in a body for they had stood in": [65535, 0], "in a body for they had stood in the": [65535, 0], "a body for they had stood in the vestibule": [65535, 0], "body for they had stood in the vestibule sucking": [65535, 0], "for they had stood in the vestibule sucking their": [65535, 0], "they had stood in the vestibule sucking their cane": [65535, 0], "had stood in the vestibule sucking their cane heads": [65535, 0], "stood in the vestibule sucking their cane heads a": [65535, 0], "in the vestibule sucking their cane heads a circling": [65535, 0], "the vestibule sucking their cane heads a circling wall": [65535, 0], "vestibule sucking their cane heads a circling wall of": [65535, 0], "sucking their cane heads a circling wall of oiled": [65535, 0], "their cane heads a circling wall of oiled and": [65535, 0], "cane heads a circling wall of oiled and simpering": [65535, 0], "heads a circling wall of oiled and simpering admirers": [65535, 0], "a circling wall of oiled and simpering admirers till": [65535, 0], "circling wall of oiled and simpering admirers till the": [65535, 0], "wall of oiled and simpering admirers till the last": [65535, 0], "of oiled and simpering admirers till the last girl": [65535, 0], "oiled and simpering admirers till the last girl had": [65535, 0], "and simpering admirers till the last girl had run": [65535, 0], "simpering admirers till the last girl had run their": [65535, 0], "admirers till the last girl had run their gantlet": [65535, 0], "till the last girl had run their gantlet and": [65535, 0], "the last girl had run their gantlet and last": [65535, 0], "last girl had run their gantlet and last of": [65535, 0], "girl had run their gantlet and last of all": [65535, 0], "had run their gantlet and last of all came": [65535, 0], "run their gantlet and last of all came the": [65535, 0], "their gantlet and last of all came the model": [65535, 0], "gantlet and last of all came the model boy": [65535, 0], "and last of all came the model boy willie": [65535, 0], "last of all came the model boy willie mufferson": [65535, 0], "of all came the model boy willie mufferson taking": [65535, 0], "all came the model boy willie mufferson taking as": [65535, 0], "came the model boy willie mufferson taking as heedful": [65535, 0], "the model boy willie mufferson taking as heedful care": [65535, 0], "model boy willie mufferson taking as heedful care of": [65535, 0], "boy willie mufferson taking as heedful care of his": [65535, 0], "willie mufferson taking as heedful care of his mother": [65535, 0], "mufferson taking as heedful care of his mother as": [65535, 0], "taking as heedful care of his mother as if": [65535, 0], "as heedful care of his mother as if she": [65535, 0], "heedful care of his mother as if she were": [65535, 0], "care of his mother as if she were cut": [65535, 0], "of his mother as if she were cut glass": [65535, 0], "his mother as if she were cut glass he": [65535, 0], "mother as if she were cut glass he always": [65535, 0], "as if she were cut glass he always brought": [65535, 0], "if she were cut glass he always brought his": [65535, 0], "she were cut glass he always brought his mother": [65535, 0], "were cut glass he always brought his mother to": [65535, 0], "cut glass he always brought his mother to church": [65535, 0], "glass he always brought his mother to church and": [65535, 0], "he always brought his mother to church and was": [65535, 0], "always brought his mother to church and was the": [65535, 0], "brought his mother to church and was the pride": [65535, 0], "his mother to church and was the pride of": [65535, 0], "mother to church and was the pride of all": [65535, 0], "to church and was the pride of all the": [65535, 0], "church and was the pride of all the matrons": [65535, 0], "and was the pride of all the matrons the": [65535, 0], "was the pride of all the matrons the boys": [65535, 0], "the pride of all the matrons the boys all": [65535, 0], "pride of all the matrons the boys all hated": [65535, 0], "of all the matrons the boys all hated him": [65535, 0], "all the matrons the boys all hated him he": [65535, 0], "the matrons the boys all hated him he was": [65535, 0], "matrons the boys all hated him he was so": [65535, 0], "the boys all hated him he was so good": [65535, 0], "boys all hated him he was so good and": [65535, 0], "all hated him he was so good and besides": [65535, 0], "hated him he was so good and besides he": [65535, 0], "him he was so good and besides he had": [65535, 0], "he was so good and besides he had been": [65535, 0], "was so good and besides he had been thrown": [65535, 0], "so good and besides he had been thrown up": [65535, 0], "good and besides he had been thrown up to": [65535, 0], "and besides he had been thrown up to them": [65535, 0], "besides he had been thrown up to them so": [65535, 0], "he had been thrown up to them so much": [65535, 0], "had been thrown up to them so much his": [65535, 0], "been thrown up to them so much his white": [65535, 0], "thrown up to them so much his white handkerchief": [65535, 0], "up to them so much his white handkerchief was": [65535, 0], "to them so much his white handkerchief was hanging": [65535, 0], "them so much his white handkerchief was hanging out": [65535, 0], "so much his white handkerchief was hanging out of": [65535, 0], "much his white handkerchief was hanging out of his": [65535, 0], "his white handkerchief was hanging out of his pocket": [65535, 0], "white handkerchief was hanging out of his pocket behind": [65535, 0], "handkerchief was hanging out of his pocket behind as": [65535, 0], "was hanging out of his pocket behind as usual": [65535, 0], "hanging out of his pocket behind as usual on": [65535, 0], "out of his pocket behind as usual on sundays": [65535, 0], "of his pocket behind as usual on sundays accidentally": [65535, 0], "his pocket behind as usual on sundays accidentally tom": [65535, 0], "pocket behind as usual on sundays accidentally tom had": [65535, 0], "behind as usual on sundays accidentally tom had no": [65535, 0], "as usual on sundays accidentally tom had no handkerchief": [65535, 0], "usual on sundays accidentally tom had no handkerchief and": [65535, 0], "on sundays accidentally tom had no handkerchief and he": [65535, 0], "sundays accidentally tom had no handkerchief and he looked": [65535, 0], "accidentally tom had no handkerchief and he looked upon": [65535, 0], "tom had no handkerchief and he looked upon boys": [65535, 0], "had no handkerchief and he looked upon boys who": [65535, 0], "no handkerchief and he looked upon boys who had": [65535, 0], "handkerchief and he looked upon boys who had as": [65535, 0], "and he looked upon boys who had as snobs": [65535, 0], "he looked upon boys who had as snobs the": [65535, 0], "looked upon boys who had as snobs the congregation": [65535, 0], "upon boys who had as snobs the congregation being": [65535, 0], "boys who had as snobs the congregation being fully": [65535, 0], "who had as snobs the congregation being fully assembled": [65535, 0], "had as snobs the congregation being fully assembled now": [65535, 0], "as snobs the congregation being fully assembled now the": [65535, 0], "snobs the congregation being fully assembled now the bell": [65535, 0], "the congregation being fully assembled now the bell rang": [65535, 0], "congregation being fully assembled now the bell rang once": [65535, 0], "being fully assembled now the bell rang once more": [65535, 0], "fully assembled now the bell rang once more to": [65535, 0], "assembled now the bell rang once more to warn": [65535, 0], "now the bell rang once more to warn laggards": [65535, 0], "the bell rang once more to warn laggards and": [65535, 0], "bell rang once more to warn laggards and stragglers": [65535, 0], "rang once more to warn laggards and stragglers and": [65535, 0], "once more to warn laggards and stragglers and then": [65535, 0], "more to warn laggards and stragglers and then a": [65535, 0], "to warn laggards and stragglers and then a solemn": [65535, 0], "warn laggards and stragglers and then a solemn hush": [65535, 0], "laggards and stragglers and then a solemn hush fell": [65535, 0], "and stragglers and then a solemn hush fell upon": [65535, 0], "stragglers and then a solemn hush fell upon the": [65535, 0], "and then a solemn hush fell upon the church": [65535, 0], "then a solemn hush fell upon the church which": [65535, 0], "a solemn hush fell upon the church which was": [65535, 0], "solemn hush fell upon the church which was only": [65535, 0], "hush fell upon the church which was only broken": [65535, 0], "fell upon the church which was only broken by": [65535, 0], "upon the church which was only broken by the": [65535, 0], "the church which was only broken by the tittering": [65535, 0], "church which was only broken by the tittering and": [65535, 0], "which was only broken by the tittering and whispering": [65535, 0], "was only broken by the tittering and whispering of": [65535, 0], "only broken by the tittering and whispering of the": [65535, 0], "broken by the tittering and whispering of the choir": [65535, 0], "by the tittering and whispering of the choir in": [65535, 0], "the tittering and whispering of the choir in the": [65535, 0], "tittering and whispering of the choir in the gallery": [65535, 0], "and whispering of the choir in the gallery the": [65535, 0], "whispering of the choir in the gallery the choir": [65535, 0], "of the choir in the gallery the choir always": [65535, 0], "the choir in the gallery the choir always tittered": [65535, 0], "choir in the gallery the choir always tittered and": [65535, 0], "in the gallery the choir always tittered and whispered": [65535, 0], "the gallery the choir always tittered and whispered all": [65535, 0], "gallery the choir always tittered and whispered all through": [65535, 0], "the choir always tittered and whispered all through service": [65535, 0], "choir always tittered and whispered all through service there": [65535, 0], "always tittered and whispered all through service there was": [65535, 0], "tittered and whispered all through service there was once": [65535, 0], "and whispered all through service there was once a": [65535, 0], "whispered all through service there was once a church": [65535, 0], "all through service there was once a church choir": [65535, 0], "through service there was once a church choir that": [65535, 0], "service there was once a church choir that was": [65535, 0], "there was once a church choir that was not": [65535, 0], "was once a church choir that was not ill": [65535, 0], "once a church choir that was not ill bred": [65535, 0], "a church choir that was not ill bred but": [65535, 0], "church choir that was not ill bred but i": [65535, 0], "choir that was not ill bred but i have": [65535, 0], "that was not ill bred but i have forgotten": [65535, 0], "was not ill bred but i have forgotten where": [65535, 0], "not ill bred but i have forgotten where it": [65535, 0], "ill bred but i have forgotten where it was": [65535, 0], "bred but i have forgotten where it was now": [65535, 0], "but i have forgotten where it was now it": [65535, 0], "i have forgotten where it was now it was": [65535, 0], "have forgotten where it was now it was a": [65535, 0], "forgotten where it was now it was a great": [65535, 0], "where it was now it was a great many": [65535, 0], "it was now it was a great many years": [65535, 0], "was now it was a great many years ago": [65535, 0], "now it was a great many years ago and": [65535, 0], "it was a great many years ago and i": [65535, 0], "was a great many years ago and i can": [65535, 0], "a great many years ago and i can scarcely": [65535, 0], "great many years ago and i can scarcely remember": [65535, 0], "many years ago and i can scarcely remember anything": [65535, 0], "years ago and i can scarcely remember anything about": [65535, 0], "ago and i can scarcely remember anything about it": [65535, 0], "and i can scarcely remember anything about it but": [65535, 0], "i can scarcely remember anything about it but i": [65535, 0], "can scarcely remember anything about it but i think": [65535, 0], "scarcely remember anything about it but i think it": [65535, 0], "remember anything about it but i think it was": [65535, 0], "anything about it but i think it was in": [65535, 0], "about it but i think it was in some": [65535, 0], "it but i think it was in some foreign": [65535, 0], "but i think it was in some foreign country": [65535, 0], "i think it was in some foreign country the": [65535, 0], "think it was in some foreign country the minister": [65535, 0], "it was in some foreign country the minister gave": [65535, 0], "was in some foreign country the minister gave out": [65535, 0], "in some foreign country the minister gave out the": [65535, 0], "some foreign country the minister gave out the hymn": [65535, 0], "foreign country the minister gave out the hymn and": [65535, 0], "country the minister gave out the hymn and read": [65535, 0], "the minister gave out the hymn and read it": [65535, 0], "minister gave out the hymn and read it through": [65535, 0], "gave out the hymn and read it through with": [65535, 0], "out the hymn and read it through with a": [65535, 0], "the hymn and read it through with a relish": [65535, 0], "hymn and read it through with a relish in": [65535, 0], "and read it through with a relish in a": [65535, 0], "read it through with a relish in a peculiar": [65535, 0], "it through with a relish in a peculiar style": [65535, 0], "through with a relish in a peculiar style which": [65535, 0], "with a relish in a peculiar style which was": [65535, 0], "a relish in a peculiar style which was much": [65535, 0], "relish in a peculiar style which was much admired": [65535, 0], "in a peculiar style which was much admired in": [65535, 0], "a peculiar style which was much admired in that": [65535, 0], "peculiar style which was much admired in that part": [65535, 0], "style which was much admired in that part of": [65535, 0], "which was much admired in that part of the": [65535, 0], "was much admired in that part of the country": [65535, 0], "much admired in that part of the country his": [65535, 0], "admired in that part of the country his voice": [65535, 0], "in that part of the country his voice began": [65535, 0], "that part of the country his voice began on": [65535, 0], "part of the country his voice began on a": [65535, 0], "of the country his voice began on a medium": [65535, 0], "the country his voice began on a medium key": [65535, 0], "country his voice began on a medium key and": [65535, 0], "his voice began on a medium key and climbed": [65535, 0], "voice began on a medium key and climbed steadily": [65535, 0], "began on a medium key and climbed steadily up": [65535, 0], "on a medium key and climbed steadily up till": [65535, 0], "a medium key and climbed steadily up till it": [65535, 0], "medium key and climbed steadily up till it reached": [65535, 0], "key and climbed steadily up till it reached a": [65535, 0], "and climbed steadily up till it reached a certain": [65535, 0], "climbed steadily up till it reached a certain point": [65535, 0], "steadily up till it reached a certain point where": [65535, 0], "up till it reached a certain point where it": [65535, 0], "till it reached a certain point where it bore": [65535, 0], "it reached a certain point where it bore with": [65535, 0], "reached a certain point where it bore with strong": [65535, 0], "a certain point where it bore with strong emphasis": [65535, 0], "certain point where it bore with strong emphasis upon": [65535, 0], "point where it bore with strong emphasis upon the": [65535, 0], "where it bore with strong emphasis upon the topmost": [65535, 0], "it bore with strong emphasis upon the topmost word": [65535, 0], "bore with strong emphasis upon the topmost word and": [65535, 0], "with strong emphasis upon the topmost word and then": [65535, 0], "strong emphasis upon the topmost word and then plunged": [65535, 0], "emphasis upon the topmost word and then plunged down": [65535, 0], "upon the topmost word and then plunged down as": [65535, 0], "the topmost word and then plunged down as if": [65535, 0], "topmost word and then plunged down as if from": [65535, 0], "word and then plunged down as if from a": [65535, 0], "and then plunged down as if from a spring": [65535, 0], "then plunged down as if from a spring board": [65535, 0], "plunged down as if from a spring board shall": [65535, 0], "down as if from a spring board shall i": [65535, 0], "as if from a spring board shall i be": [65535, 0], "if from a spring board shall i be car": [65535, 0], "from a spring board shall i be car ri": [65535, 0], "a spring board shall i be car ri ed": [65535, 0], "spring board shall i be car ri ed toe": [65535, 0], "board shall i be car ri ed toe the": [65535, 0], "shall i be car ri ed toe the skies": [65535, 0], "i be car ri ed toe the skies on": [65535, 0], "be car ri ed toe the skies on flow'ry": [65535, 0], "car ri ed toe the skies on flow'ry beds": [65535, 0], "ri ed toe the skies on flow'ry beds of": [65535, 0], "ed toe the skies on flow'ry beds of ease": [65535, 0], "toe the skies on flow'ry beds of ease whilst": [65535, 0], "the skies on flow'ry beds of ease whilst others": [65535, 0], "skies on flow'ry beds of ease whilst others fight": [65535, 0], "on flow'ry beds of ease whilst others fight to": [65535, 0], "flow'ry beds of ease whilst others fight to win": [65535, 0], "beds of ease whilst others fight to win the": [65535, 0], "of ease whilst others fight to win the prize": [65535, 0], "ease whilst others fight to win the prize and": [65535, 0], "whilst others fight to win the prize and sail": [65535, 0], "others fight to win the prize and sail thro'": [65535, 0], "fight to win the prize and sail thro' bloody": [65535, 0], "to win the prize and sail thro' bloody seas": [65535, 0], "win the prize and sail thro' bloody seas he": [65535, 0], "the prize and sail thro' bloody seas he was": [65535, 0], "prize and sail thro' bloody seas he was regarded": [65535, 0], "and sail thro' bloody seas he was regarded as": [65535, 0], "sail thro' bloody seas he was regarded as a": [65535, 0], "thro' bloody seas he was regarded as a wonderful": [65535, 0], "bloody seas he was regarded as a wonderful reader": [65535, 0], "seas he was regarded as a wonderful reader at": [65535, 0], "he was regarded as a wonderful reader at church": [65535, 0], "was regarded as a wonderful reader at church sociables": [65535, 0], "regarded as a wonderful reader at church sociables he": [65535, 0], "as a wonderful reader at church sociables he was": [65535, 0], "a wonderful reader at church sociables he was always": [65535, 0], "wonderful reader at church sociables he was always called": [65535, 0], "reader at church sociables he was always called upon": [65535, 0], "at church sociables he was always called upon to": [65535, 0], "church sociables he was always called upon to read": [65535, 0], "sociables he was always called upon to read poetry": [65535, 0], "he was always called upon to read poetry and": [65535, 0], "was always called upon to read poetry and when": [65535, 0], "always called upon to read poetry and when he": [65535, 0], "called upon to read poetry and when he was": [65535, 0], "upon to read poetry and when he was through": [65535, 0], "to read poetry and when he was through the": [65535, 0], "read poetry and when he was through the ladies": [65535, 0], "poetry and when he was through the ladies would": [65535, 0], "and when he was through the ladies would lift": [65535, 0], "when he was through the ladies would lift up": [65535, 0], "he was through the ladies would lift up their": [65535, 0], "was through the ladies would lift up their hands": [65535, 0], "through the ladies would lift up their hands and": [65535, 0], "the ladies would lift up their hands and let": [65535, 0], "ladies would lift up their hands and let them": [65535, 0], "would lift up their hands and let them fall": [65535, 0], "lift up their hands and let them fall helplessly": [65535, 0], "up their hands and let them fall helplessly in": [65535, 0], "their hands and let them fall helplessly in their": [65535, 0], "hands and let them fall helplessly in their laps": [65535, 0], "and let them fall helplessly in their laps and": [65535, 0], "let them fall helplessly in their laps and wall": [65535, 0], "them fall helplessly in their laps and wall their": [65535, 0], "fall helplessly in their laps and wall their eyes": [65535, 0], "helplessly in their laps and wall their eyes and": [65535, 0], "in their laps and wall their eyes and shake": [65535, 0], "their laps and wall their eyes and shake their": [65535, 0], "laps and wall their eyes and shake their heads": [65535, 0], "and wall their eyes and shake their heads as": [65535, 0], "wall their eyes and shake their heads as much": [65535, 0], "their eyes and shake their heads as much as": [65535, 0], "eyes and shake their heads as much as to": [65535, 0], "and shake their heads as much as to say": [65535, 0], "shake their heads as much as to say words": [65535, 0], "their heads as much as to say words cannot": [65535, 0], "heads as much as to say words cannot express": [65535, 0], "as much as to say words cannot express it": [65535, 0], "much as to say words cannot express it it": [65535, 0], "as to say words cannot express it it is": [65535, 0], "to say words cannot express it it is too": [65535, 0], "say words cannot express it it is too beautiful": [65535, 0], "words cannot express it it is too beautiful too": [65535, 0], "cannot express it it is too beautiful too beautiful": [65535, 0], "express it it is too beautiful too beautiful for": [65535, 0], "it it is too beautiful too beautiful for this": [65535, 0], "it is too beautiful too beautiful for this mortal": [65535, 0], "is too beautiful too beautiful for this mortal earth": [65535, 0], "too beautiful too beautiful for this mortal earth after": [65535, 0], "beautiful too beautiful for this mortal earth after the": [65535, 0], "too beautiful for this mortal earth after the hymn": [65535, 0], "beautiful for this mortal earth after the hymn had": [65535, 0], "for this mortal earth after the hymn had been": [65535, 0], "this mortal earth after the hymn had been sung": [65535, 0], "mortal earth after the hymn had been sung the": [65535, 0], "earth after the hymn had been sung the rev": [65535, 0], "after the hymn had been sung the rev mr": [65535, 0], "the hymn had been sung the rev mr sprague": [65535, 0], "hymn had been sung the rev mr sprague turned": [65535, 0], "had been sung the rev mr sprague turned himself": [65535, 0], "been sung the rev mr sprague turned himself into": [65535, 0], "sung the rev mr sprague turned himself into a": [65535, 0], "the rev mr sprague turned himself into a bulletin": [65535, 0], "rev mr sprague turned himself into a bulletin board": [65535, 0], "mr sprague turned himself into a bulletin board and": [65535, 0], "sprague turned himself into a bulletin board and read": [65535, 0], "turned himself into a bulletin board and read off": [65535, 0], "himself into a bulletin board and read off notices": [65535, 0], "into a bulletin board and read off notices of": [65535, 0], "a bulletin board and read off notices of meetings": [65535, 0], "bulletin board and read off notices of meetings and": [65535, 0], "board and read off notices of meetings and societies": [65535, 0], "and read off notices of meetings and societies and": [65535, 0], "read off notices of meetings and societies and things": [65535, 0], "off notices of meetings and societies and things till": [65535, 0], "notices of meetings and societies and things till it": [65535, 0], "of meetings and societies and things till it seemed": [65535, 0], "meetings and societies and things till it seemed that": [65535, 0], "and societies and things till it seemed that the": [65535, 0], "societies and things till it seemed that the list": [65535, 0], "and things till it seemed that the list would": [65535, 0], "things till it seemed that the list would stretch": [65535, 0], "till it seemed that the list would stretch out": [65535, 0], "it seemed that the list would stretch out to": [65535, 0], "seemed that the list would stretch out to the": [65535, 0], "that the list would stretch out to the crack": [65535, 0], "the list would stretch out to the crack of": [65535, 0], "list would stretch out to the crack of doom": [65535, 0], "would stretch out to the crack of doom a": [65535, 0], "stretch out to the crack of doom a queer": [65535, 0], "out to the crack of doom a queer custom": [65535, 0], "to the crack of doom a queer custom which": [65535, 0], "the crack of doom a queer custom which is": [65535, 0], "crack of doom a queer custom which is still": [65535, 0], "of doom a queer custom which is still kept": [65535, 0], "doom a queer custom which is still kept up": [65535, 0], "a queer custom which is still kept up in": [65535, 0], "queer custom which is still kept up in america": [65535, 0], "custom which is still kept up in america even": [65535, 0], "which is still kept up in america even in": [65535, 0], "is still kept up in america even in cities": [65535, 0], "still kept up in america even in cities away": [65535, 0], "kept up in america even in cities away here": [65535, 0], "up in america even in cities away here in": [65535, 0], "in america even in cities away here in this": [65535, 0], "america even in cities away here in this age": [65535, 0], "even in cities away here in this age of": [65535, 0], "in cities away here in this age of abundant": [65535, 0], "cities away here in this age of abundant newspapers": [65535, 0], "away here in this age of abundant newspapers often": [65535, 0], "here in this age of abundant newspapers often the": [65535, 0], "in this age of abundant newspapers often the less": [65535, 0], "this age of abundant newspapers often the less there": [65535, 0], "age of abundant newspapers often the less there is": [65535, 0], "of abundant newspapers often the less there is to": [65535, 0], "abundant newspapers often the less there is to justify": [65535, 0], "newspapers often the less there is to justify a": [65535, 0], "often the less there is to justify a traditional": [65535, 0], "the less there is to justify a traditional custom": [65535, 0], "less there is to justify a traditional custom the": [65535, 0], "there is to justify a traditional custom the harder": [65535, 0], "is to justify a traditional custom the harder it": [65535, 0], "to justify a traditional custom the harder it is": [65535, 0], "justify a traditional custom the harder it is to": [65535, 0], "a traditional custom the harder it is to get": [65535, 0], "traditional custom the harder it is to get rid": [65535, 0], "custom the harder it is to get rid of": [65535, 0], "the harder it is to get rid of it": [65535, 0], "harder it is to get rid of it and": [65535, 0], "it is to get rid of it and now": [65535, 0], "is to get rid of it and now the": [65535, 0], "to get rid of it and now the minister": [65535, 0], "get rid of it and now the minister prayed": [65535, 0], "rid of it and now the minister prayed a": [65535, 0], "of it and now the minister prayed a good": [65535, 0], "it and now the minister prayed a good generous": [65535, 0], "and now the minister prayed a good generous prayer": [65535, 0], "now the minister prayed a good generous prayer it": [65535, 0], "the minister prayed a good generous prayer it was": [65535, 0], "minister prayed a good generous prayer it was and": [65535, 0], "prayed a good generous prayer it was and went": [65535, 0], "a good generous prayer it was and went into": [65535, 0], "good generous prayer it was and went into details": [65535, 0], "generous prayer it was and went into details it": [65535, 0], "prayer it was and went into details it pleaded": [65535, 0], "it was and went into details it pleaded for": [65535, 0], "was and went into details it pleaded for the": [65535, 0], "and went into details it pleaded for the church": [65535, 0], "went into details it pleaded for the church and": [65535, 0], "into details it pleaded for the church and the": [65535, 0], "details it pleaded for the church and the little": [65535, 0], "it pleaded for the church and the little children": [65535, 0], "pleaded for the church and the little children of": [65535, 0], "for the church and the little children of the": [65535, 0], "the church and the little children of the church": [65535, 0], "church and the little children of the church for": [65535, 0], "and the little children of the church for the": [65535, 0], "the little children of the church for the other": [65535, 0], "little children of the church for the other churches": [65535, 0], "children of the church for the other churches of": [65535, 0], "of the church for the other churches of the": [65535, 0], "the church for the other churches of the village": [65535, 0], "church for the other churches of the village for": [65535, 0], "for the other churches of the village for the": [65535, 0], "the other churches of the village for the village": [65535, 0], "other churches of the village for the village itself": [65535, 0], "churches of the village for the village itself for": [65535, 0], "of the village for the village itself for the": [65535, 0], "the village for the village itself for the county": [65535, 0], "village for the village itself for the county for": [65535, 0], "for the village itself for the county for the": [65535, 0], "the village itself for the county for the state": [65535, 0], "village itself for the county for the state for": [65535, 0], "itself for the county for the state for the": [65535, 0], "for the county for the state for the state": [65535, 0], "the county for the state for the state officers": [65535, 0], "county for the state for the state officers for": [65535, 0], "for the state for the state officers for the": [65535, 0], "the state for the state officers for the united": [65535, 0], "state for the state officers for the united states": [65535, 0], "for the state officers for the united states for": [65535, 0], "the state officers for the united states for the": [65535, 0], "state officers for the united states for the churches": [65535, 0], "officers for the united states for the churches of": [65535, 0], "for the united states for the churches of the": [65535, 0], "the united states for the churches of the united": [65535, 0], "united states for the churches of the united states": [65535, 0], "states for the churches of the united states for": [65535, 0], "for the churches of the united states for congress": [65535, 0], "the churches of the united states for congress for": [65535, 0], "churches of the united states for congress for the": [65535, 0], "of the united states for congress for the president": [65535, 0], "the united states for congress for the president for": [65535, 0], "united states for congress for the president for the": [65535, 0], "states for congress for the president for the officers": [65535, 0], "for congress for the president for the officers of": [65535, 0], "congress for the president for the officers of the": [65535, 0], "for the president for the officers of the government": [65535, 0], "the president for the officers of the government for": [65535, 0], "president for the officers of the government for poor": [65535, 0], "for the officers of the government for poor sailors": [65535, 0], "the officers of the government for poor sailors tossed": [65535, 0], "officers of the government for poor sailors tossed by": [65535, 0], "of the government for poor sailors tossed by stormy": [65535, 0], "the government for poor sailors tossed by stormy seas": [65535, 0], "government for poor sailors tossed by stormy seas for": [65535, 0], "for poor sailors tossed by stormy seas for the": [65535, 0], "poor sailors tossed by stormy seas for the oppressed": [65535, 0], "sailors tossed by stormy seas for the oppressed millions": [65535, 0], "tossed by stormy seas for the oppressed millions groaning": [65535, 0], "by stormy seas for the oppressed millions groaning under": [65535, 0], "stormy seas for the oppressed millions groaning under the": [65535, 0], "seas for the oppressed millions groaning under the heel": [65535, 0], "for the oppressed millions groaning under the heel of": [65535, 0], "the oppressed millions groaning under the heel of european": [65535, 0], "oppressed millions groaning under the heel of european monarchies": [65535, 0], "millions groaning under the heel of european monarchies and": [65535, 0], "groaning under the heel of european monarchies and oriental": [65535, 0], "under the heel of european monarchies and oriental despotisms": [65535, 0], "the heel of european monarchies and oriental despotisms for": [65535, 0], "heel of european monarchies and oriental despotisms for such": [65535, 0], "of european monarchies and oriental despotisms for such as": [65535, 0], "european monarchies and oriental despotisms for such as have": [65535, 0], "monarchies and oriental despotisms for such as have the": [65535, 0], "and oriental despotisms for such as have the light": [65535, 0], "oriental despotisms for such as have the light and": [65535, 0], "despotisms for such as have the light and the": [65535, 0], "for such as have the light and the good": [65535, 0], "such as have the light and the good tidings": [65535, 0], "as have the light and the good tidings and": [65535, 0], "have the light and the good tidings and yet": [65535, 0], "the light and the good tidings and yet have": [65535, 0], "light and the good tidings and yet have not": [65535, 0], "and the good tidings and yet have not eyes": [65535, 0], "the good tidings and yet have not eyes to": [65535, 0], "good tidings and yet have not eyes to see": [65535, 0], "tidings and yet have not eyes to see nor": [65535, 0], "and yet have not eyes to see nor ears": [65535, 0], "yet have not eyes to see nor ears to": [65535, 0], "have not eyes to see nor ears to hear": [65535, 0], "not eyes to see nor ears to hear withal": [65535, 0], "eyes to see nor ears to hear withal for": [65535, 0], "to see nor ears to hear withal for the": [65535, 0], "see nor ears to hear withal for the heathen": [65535, 0], "nor ears to hear withal for the heathen in": [65535, 0], "ears to hear withal for the heathen in the": [65535, 0], "to hear withal for the heathen in the far": [65535, 0], "hear withal for the heathen in the far islands": [65535, 0], "withal for the heathen in the far islands of": [65535, 0], "for the heathen in the far islands of the": [65535, 0], "the heathen in the far islands of the sea": [65535, 0], "heathen in the far islands of the sea and": [65535, 0], "in the far islands of the sea and closed": [65535, 0], "the far islands of the sea and closed with": [65535, 0], "far islands of the sea and closed with a": [65535, 0], "islands of the sea and closed with a supplication": [65535, 0], "of the sea and closed with a supplication that": [65535, 0], "the sea and closed with a supplication that the": [65535, 0], "sea and closed with a supplication that the words": [65535, 0], "and closed with a supplication that the words he": [65535, 0], "closed with a supplication that the words he was": [65535, 0], "with a supplication that the words he was about": [65535, 0], "a supplication that the words he was about to": [65535, 0], "supplication that the words he was about to speak": [65535, 0], "that the words he was about to speak might": [65535, 0], "the words he was about to speak might find": [65535, 0], "words he was about to speak might find grace": [65535, 0], "he was about to speak might find grace and": [65535, 0], "was about to speak might find grace and favor": [65535, 0], "about to speak might find grace and favor and": [65535, 0], "to speak might find grace and favor and be": [65535, 0], "speak might find grace and favor and be as": [65535, 0], "might find grace and favor and be as seed": [65535, 0], "find grace and favor and be as seed sown": [65535, 0], "grace and favor and be as seed sown in": [65535, 0], "and favor and be as seed sown in fertile": [65535, 0], "favor and be as seed sown in fertile ground": [65535, 0], "and be as seed sown in fertile ground yielding": [65535, 0], "be as seed sown in fertile ground yielding in": [65535, 0], "as seed sown in fertile ground yielding in time": [65535, 0], "seed sown in fertile ground yielding in time a": [65535, 0], "sown in fertile ground yielding in time a grateful": [65535, 0], "in fertile ground yielding in time a grateful harvest": [65535, 0], "fertile ground yielding in time a grateful harvest of": [65535, 0], "ground yielding in time a grateful harvest of good": [65535, 0], "yielding in time a grateful harvest of good amen": [65535, 0], "in time a grateful harvest of good amen there": [65535, 0], "time a grateful harvest of good amen there was": [65535, 0], "a grateful harvest of good amen there was a": [65535, 0], "grateful harvest of good amen there was a rustling": [65535, 0], "harvest of good amen there was a rustling of": [65535, 0], "of good amen there was a rustling of dresses": [65535, 0], "good amen there was a rustling of dresses and": [65535, 0], "amen there was a rustling of dresses and the": [65535, 0], "there was a rustling of dresses and the standing": [65535, 0], "was a rustling of dresses and the standing congregation": [65535, 0], "a rustling of dresses and the standing congregation sat": [65535, 0], "rustling of dresses and the standing congregation sat down": [65535, 0], "of dresses and the standing congregation sat down the": [65535, 0], "dresses and the standing congregation sat down the boy": [65535, 0], "and the standing congregation sat down the boy whose": [65535, 0], "the standing congregation sat down the boy whose history": [65535, 0], "standing congregation sat down the boy whose history this": [65535, 0], "congregation sat down the boy whose history this book": [65535, 0], "sat down the boy whose history this book relates": [65535, 0], "down the boy whose history this book relates did": [65535, 0], "the boy whose history this book relates did not": [65535, 0], "boy whose history this book relates did not enjoy": [65535, 0], "whose history this book relates did not enjoy the": [65535, 0], "history this book relates did not enjoy the prayer": [65535, 0], "this book relates did not enjoy the prayer he": [65535, 0], "book relates did not enjoy the prayer he only": [65535, 0], "relates did not enjoy the prayer he only endured": [65535, 0], "did not enjoy the prayer he only endured it": [65535, 0], "not enjoy the prayer he only endured it if": [65535, 0], "enjoy the prayer he only endured it if he": [65535, 0], "the prayer he only endured it if he even": [65535, 0], "prayer he only endured it if he even did": [65535, 0], "he only endured it if he even did that": [65535, 0], "only endured it if he even did that much": [65535, 0], "endured it if he even did that much he": [65535, 0], "it if he even did that much he was": [65535, 0], "if he even did that much he was restive": [65535, 0], "he even did that much he was restive all": [65535, 0], "even did that much he was restive all through": [65535, 0], "did that much he was restive all through it": [65535, 0], "that much he was restive all through it he": [65535, 0], "much he was restive all through it he kept": [65535, 0], "he was restive all through it he kept tally": [65535, 0], "was restive all through it he kept tally of": [65535, 0], "restive all through it he kept tally of the": [65535, 0], "all through it he kept tally of the details": [65535, 0], "through it he kept tally of the details of": [65535, 0], "it he kept tally of the details of the": [65535, 0], "he kept tally of the details of the prayer": [65535, 0], "kept tally of the details of the prayer unconsciously": [65535, 0], "tally of the details of the prayer unconsciously for": [65535, 0], "of the details of the prayer unconsciously for he": [65535, 0], "the details of the prayer unconsciously for he was": [65535, 0], "details of the prayer unconsciously for he was not": [65535, 0], "of the prayer unconsciously for he was not listening": [65535, 0], "the prayer unconsciously for he was not listening but": [65535, 0], "prayer unconsciously for he was not listening but he": [65535, 0], "unconsciously for he was not listening but he knew": [65535, 0], "for he was not listening but he knew the": [65535, 0], "he was not listening but he knew the ground": [65535, 0], "was not listening but he knew the ground of": [65535, 0], "not listening but he knew the ground of old": [65535, 0], "listening but he knew the ground of old and": [65535, 0], "but he knew the ground of old and the": [65535, 0], "he knew the ground of old and the clergyman's": [65535, 0], "knew the ground of old and the clergyman's regular": [65535, 0], "the ground of old and the clergyman's regular route": [65535, 0], "ground of old and the clergyman's regular route over": [65535, 0], "of old and the clergyman's regular route over it": [65535, 0], "old and the clergyman's regular route over it and": [65535, 0], "and the clergyman's regular route over it and when": [65535, 0], "the clergyman's regular route over it and when a": [65535, 0], "clergyman's regular route over it and when a little": [65535, 0], "regular route over it and when a little trifle": [65535, 0], "route over it and when a little trifle of": [65535, 0], "over it and when a little trifle of new": [65535, 0], "it and when a little trifle of new matter": [65535, 0], "and when a little trifle of new matter was": [65535, 0], "when a little trifle of new matter was interlarded": [65535, 0], "a little trifle of new matter was interlarded his": [65535, 0], "little trifle of new matter was interlarded his ear": [65535, 0], "trifle of new matter was interlarded his ear detected": [65535, 0], "of new matter was interlarded his ear detected it": [65535, 0], "new matter was interlarded his ear detected it and": [65535, 0], "matter was interlarded his ear detected it and his": [65535, 0], "was interlarded his ear detected it and his whole": [65535, 0], "interlarded his ear detected it and his whole nature": [65535, 0], "his ear detected it and his whole nature resented": [65535, 0], "ear detected it and his whole nature resented it": [65535, 0], "detected it and his whole nature resented it he": [65535, 0], "it and his whole nature resented it he considered": [65535, 0], "and his whole nature resented it he considered additions": [65535, 0], "his whole nature resented it he considered additions unfair": [65535, 0], "whole nature resented it he considered additions unfair and": [65535, 0], "nature resented it he considered additions unfair and scoundrelly": [65535, 0], "resented it he considered additions unfair and scoundrelly in": [65535, 0], "it he considered additions unfair and scoundrelly in the": [65535, 0], "he considered additions unfair and scoundrelly in the midst": [65535, 0], "considered additions unfair and scoundrelly in the midst of": [65535, 0], "additions unfair and scoundrelly in the midst of the": [65535, 0], "unfair and scoundrelly in the midst of the prayer": [65535, 0], "and scoundrelly in the midst of the prayer a": [65535, 0], "scoundrelly in the midst of the prayer a fly": [65535, 0], "in the midst of the prayer a fly had": [65535, 0], "the midst of the prayer a fly had lit": [65535, 0], "midst of the prayer a fly had lit on": [65535, 0], "of the prayer a fly had lit on the": [65535, 0], "the prayer a fly had lit on the back": [65535, 0], "prayer a fly had lit on the back of": [65535, 0], "a fly had lit on the back of the": [65535, 0], "fly had lit on the back of the pew": [65535, 0], "had lit on the back of the pew in": [65535, 0], "lit on the back of the pew in front": [65535, 0], "on the back of the pew in front of": [65535, 0], "the back of the pew in front of him": [65535, 0], "back of the pew in front of him and": [65535, 0], "of the pew in front of him and tortured": [65535, 0], "the pew in front of him and tortured his": [65535, 0], "pew in front of him and tortured his spirit": [65535, 0], "in front of him and tortured his spirit by": [65535, 0], "front of him and tortured his spirit by calmly": [65535, 0], "of him and tortured his spirit by calmly rubbing": [65535, 0], "him and tortured his spirit by calmly rubbing its": [65535, 0], "and tortured his spirit by calmly rubbing its hands": [65535, 0], "tortured his spirit by calmly rubbing its hands together": [65535, 0], "his spirit by calmly rubbing its hands together embracing": [65535, 0], "spirit by calmly rubbing its hands together embracing its": [65535, 0], "by calmly rubbing its hands together embracing its head": [65535, 0], "calmly rubbing its hands together embracing its head with": [65535, 0], "rubbing its hands together embracing its head with its": [65535, 0], "its hands together embracing its head with its arms": [65535, 0], "hands together embracing its head with its arms and": [65535, 0], "together embracing its head with its arms and polishing": [65535, 0], "embracing its head with its arms and polishing it": [65535, 0], "its head with its arms and polishing it so": [65535, 0], "head with its arms and polishing it so vigorously": [65535, 0], "with its arms and polishing it so vigorously that": [65535, 0], "its arms and polishing it so vigorously that it": [65535, 0], "arms and polishing it so vigorously that it seemed": [65535, 0], "and polishing it so vigorously that it seemed to": [65535, 0], "polishing it so vigorously that it seemed to almost": [65535, 0], "it so vigorously that it seemed to almost part": [65535, 0], "so vigorously that it seemed to almost part company": [65535, 0], "vigorously that it seemed to almost part company with": [65535, 0], "that it seemed to almost part company with the": [65535, 0], "it seemed to almost part company with the body": [65535, 0], "seemed to almost part company with the body and": [65535, 0], "to almost part company with the body and the": [65535, 0], "almost part company with the body and the slender": [65535, 0], "part company with the body and the slender thread": [65535, 0], "company with the body and the slender thread of": [65535, 0], "with the body and the slender thread of a": [65535, 0], "the body and the slender thread of a neck": [65535, 0], "body and the slender thread of a neck was": [65535, 0], "and the slender thread of a neck was exposed": [65535, 0], "the slender thread of a neck was exposed to": [65535, 0], "slender thread of a neck was exposed to view": [65535, 0], "thread of a neck was exposed to view scraping": [65535, 0], "of a neck was exposed to view scraping its": [65535, 0], "a neck was exposed to view scraping its wings": [65535, 0], "neck was exposed to view scraping its wings with": [65535, 0], "was exposed to view scraping its wings with its": [65535, 0], "exposed to view scraping its wings with its hind": [65535, 0], "to view scraping its wings with its hind legs": [65535, 0], "view scraping its wings with its hind legs and": [65535, 0], "scraping its wings with its hind legs and smoothing": [65535, 0], "its wings with its hind legs and smoothing them": [65535, 0], "wings with its hind legs and smoothing them to": [65535, 0], "with its hind legs and smoothing them to its": [65535, 0], "its hind legs and smoothing them to its body": [65535, 0], "hind legs and smoothing them to its body as": [65535, 0], "legs and smoothing them to its body as if": [65535, 0], "and smoothing them to its body as if they": [65535, 0], "smoothing them to its body as if they had": [65535, 0], "them to its body as if they had been": [65535, 0], "to its body as if they had been coat": [65535, 0], "its body as if they had been coat tails": [65535, 0], "body as if they had been coat tails going": [65535, 0], "as if they had been coat tails going through": [65535, 0], "if they had been coat tails going through its": [65535, 0], "they had been coat tails going through its whole": [65535, 0], "had been coat tails going through its whole toilet": [65535, 0], "been coat tails going through its whole toilet as": [65535, 0], "coat tails going through its whole toilet as tranquilly": [65535, 0], "tails going through its whole toilet as tranquilly as": [65535, 0], "going through its whole toilet as tranquilly as if": [65535, 0], "through its whole toilet as tranquilly as if it": [65535, 0], "its whole toilet as tranquilly as if it knew": [65535, 0], "whole toilet as tranquilly as if it knew it": [65535, 0], "toilet as tranquilly as if it knew it was": [65535, 0], "as tranquilly as if it knew it was perfectly": [65535, 0], "tranquilly as if it knew it was perfectly safe": [65535, 0], "as if it knew it was perfectly safe as": [65535, 0], "if it knew it was perfectly safe as indeed": [65535, 0], "it knew it was perfectly safe as indeed it": [65535, 0], "knew it was perfectly safe as indeed it was": [65535, 0], "it was perfectly safe as indeed it was for": [65535, 0], "was perfectly safe as indeed it was for as": [65535, 0], "perfectly safe as indeed it was for as sorely": [65535, 0], "safe as indeed it was for as sorely as": [65535, 0], "as indeed it was for as sorely as tom's": [65535, 0], "indeed it was for as sorely as tom's hands": [65535, 0], "it was for as sorely as tom's hands itched": [65535, 0], "was for as sorely as tom's hands itched to": [65535, 0], "for as sorely as tom's hands itched to grab": [65535, 0], "as sorely as tom's hands itched to grab for": [65535, 0], "sorely as tom's hands itched to grab for it": [65535, 0], "as tom's hands itched to grab for it they": [65535, 0], "tom's hands itched to grab for it they did": [65535, 0], "hands itched to grab for it they did not": [65535, 0], "itched to grab for it they did not dare": [65535, 0], "to grab for it they did not dare he": [65535, 0], "grab for it they did not dare he believed": [65535, 0], "for it they did not dare he believed his": [65535, 0], "it they did not dare he believed his soul": [65535, 0], "they did not dare he believed his soul would": [65535, 0], "did not dare he believed his soul would be": [65535, 0], "not dare he believed his soul would be instantly": [65535, 0], "dare he believed his soul would be instantly destroyed": [65535, 0], "he believed his soul would be instantly destroyed if": [65535, 0], "believed his soul would be instantly destroyed if he": [65535, 0], "his soul would be instantly destroyed if he did": [65535, 0], "soul would be instantly destroyed if he did such": [65535, 0], "would be instantly destroyed if he did such a": [65535, 0], "be instantly destroyed if he did such a thing": [65535, 0], "instantly destroyed if he did such a thing while": [65535, 0], "destroyed if he did such a thing while the": [65535, 0], "if he did such a thing while the prayer": [65535, 0], "he did such a thing while the prayer was": [65535, 0], "did such a thing while the prayer was going": [65535, 0], "such a thing while the prayer was going on": [65535, 0], "a thing while the prayer was going on but": [65535, 0], "thing while the prayer was going on but with": [65535, 0], "while the prayer was going on but with the": [65535, 0], "the prayer was going on but with the closing": [65535, 0], "prayer was going on but with the closing sentence": [65535, 0], "was going on but with the closing sentence his": [65535, 0], "going on but with the closing sentence his hand": [65535, 0], "on but with the closing sentence his hand began": [65535, 0], "but with the closing sentence his hand began to": [65535, 0], "with the closing sentence his hand began to curve": [65535, 0], "the closing sentence his hand began to curve and": [65535, 0], "closing sentence his hand began to curve and steal": [65535, 0], "sentence his hand began to curve and steal forward": [65535, 0], "his hand began to curve and steal forward and": [65535, 0], "hand began to curve and steal forward and the": [65535, 0], "began to curve and steal forward and the instant": [65535, 0], "to curve and steal forward and the instant the": [65535, 0], "curve and steal forward and the instant the amen": [65535, 0], "and steal forward and the instant the amen was": [65535, 0], "steal forward and the instant the amen was out": [65535, 0], "forward and the instant the amen was out the": [65535, 0], "and the instant the amen was out the fly": [65535, 0], "the instant the amen was out the fly was": [65535, 0], "instant the amen was out the fly was a": [65535, 0], "the amen was out the fly was a prisoner": [65535, 0], "amen was out the fly was a prisoner of": [65535, 0], "was out the fly was a prisoner of war": [65535, 0], "out the fly was a prisoner of war his": [65535, 0], "the fly was a prisoner of war his aunt": [65535, 0], "fly was a prisoner of war his aunt detected": [65535, 0], "was a prisoner of war his aunt detected the": [65535, 0], "a prisoner of war his aunt detected the act": [65535, 0], "prisoner of war his aunt detected the act and": [65535, 0], "of war his aunt detected the act and made": [65535, 0], "war his aunt detected the act and made him": [65535, 0], "his aunt detected the act and made him let": [65535, 0], "aunt detected the act and made him let it": [65535, 0], "detected the act and made him let it go": [65535, 0], "the act and made him let it go the": [65535, 0], "act and made him let it go the minister": [65535, 0], "and made him let it go the minister gave": [65535, 0], "made him let it go the minister gave out": [65535, 0], "him let it go the minister gave out his": [65535, 0], "let it go the minister gave out his text": [65535, 0], "it go the minister gave out his text and": [65535, 0], "go the minister gave out his text and droned": [65535, 0], "the minister gave out his text and droned along": [65535, 0], "minister gave out his text and droned along monotonously": [65535, 0], "gave out his text and droned along monotonously through": [65535, 0], "out his text and droned along monotonously through an": [65535, 0], "his text and droned along monotonously through an argument": [65535, 0], "text and droned along monotonously through an argument that": [65535, 0], "and droned along monotonously through an argument that was": [65535, 0], "droned along monotonously through an argument that was so": [65535, 0], "along monotonously through an argument that was so prosy": [65535, 0], "monotonously through an argument that was so prosy that": [65535, 0], "through an argument that was so prosy that many": [65535, 0], "an argument that was so prosy that many a": [65535, 0], "argument that was so prosy that many a head": [65535, 0], "that was so prosy that many a head by": [65535, 0], "was so prosy that many a head by and": [65535, 0], "so prosy that many a head by and by": [65535, 0], "prosy that many a head by and by began": [65535, 0], "that many a head by and by began to": [65535, 0], "many a head by and by began to nod": [65535, 0], "a head by and by began to nod and": [65535, 0], "head by and by began to nod and yet": [65535, 0], "by and by began to nod and yet it": [65535, 0], "and by began to nod and yet it was": [65535, 0], "by began to nod and yet it was an": [65535, 0], "began to nod and yet it was an argument": [65535, 0], "to nod and yet it was an argument that": [65535, 0], "nod and yet it was an argument that dealt": [65535, 0], "and yet it was an argument that dealt in": [65535, 0], "yet it was an argument that dealt in limitless": [65535, 0], "it was an argument that dealt in limitless fire": [65535, 0], "was an argument that dealt in limitless fire and": [65535, 0], "an argument that dealt in limitless fire and brimstone": [65535, 0], "argument that dealt in limitless fire and brimstone and": [65535, 0], "that dealt in limitless fire and brimstone and thinned": [65535, 0], "dealt in limitless fire and brimstone and thinned the": [65535, 0], "in limitless fire and brimstone and thinned the predestined": [65535, 0], "limitless fire and brimstone and thinned the predestined elect": [65535, 0], "fire and brimstone and thinned the predestined elect down": [65535, 0], "and brimstone and thinned the predestined elect down to": [65535, 0], "brimstone and thinned the predestined elect down to a": [65535, 0], "and thinned the predestined elect down to a company": [65535, 0], "thinned the predestined elect down to a company so": [65535, 0], "the predestined elect down to a company so small": [65535, 0], "predestined elect down to a company so small as": [65535, 0], "elect down to a company so small as to": [65535, 0], "down to a company so small as to be": [65535, 0], "to a company so small as to be hardly": [65535, 0], "a company so small as to be hardly worth": [65535, 0], "company so small as to be hardly worth the": [65535, 0], "so small as to be hardly worth the saving": [65535, 0], "small as to be hardly worth the saving tom": [65535, 0], "as to be hardly worth the saving tom counted": [65535, 0], "to be hardly worth the saving tom counted the": [65535, 0], "be hardly worth the saving tom counted the pages": [65535, 0], "hardly worth the saving tom counted the pages of": [65535, 0], "worth the saving tom counted the pages of the": [65535, 0], "the saving tom counted the pages of the sermon": [65535, 0], "saving tom counted the pages of the sermon after": [65535, 0], "tom counted the pages of the sermon after church": [65535, 0], "counted the pages of the sermon after church he": [65535, 0], "the pages of the sermon after church he always": [65535, 0], "pages of the sermon after church he always knew": [65535, 0], "of the sermon after church he always knew how": [65535, 0], "the sermon after church he always knew how many": [65535, 0], "sermon after church he always knew how many pages": [65535, 0], "after church he always knew how many pages there": [65535, 0], "church he always knew how many pages there had": [65535, 0], "he always knew how many pages there had been": [65535, 0], "always knew how many pages there had been but": [65535, 0], "knew how many pages there had been but he": [65535, 0], "how many pages there had been but he seldom": [65535, 0], "many pages there had been but he seldom knew": [65535, 0], "pages there had been but he seldom knew anything": [65535, 0], "there had been but he seldom knew anything else": [65535, 0], "had been but he seldom knew anything else about": [65535, 0], "been but he seldom knew anything else about the": [65535, 0], "but he seldom knew anything else about the discourse": [65535, 0], "he seldom knew anything else about the discourse however": [65535, 0], "seldom knew anything else about the discourse however this": [65535, 0], "knew anything else about the discourse however this time": [65535, 0], "anything else about the discourse however this time he": [65535, 0], "else about the discourse however this time he was": [65535, 0], "about the discourse however this time he was really": [65535, 0], "the discourse however this time he was really interested": [65535, 0], "discourse however this time he was really interested for": [65535, 0], "however this time he was really interested for a": [65535, 0], "this time he was really interested for a little": [65535, 0], "time he was really interested for a little while": [65535, 0], "he was really interested for a little while the": [65535, 0], "was really interested for a little while the minister": [65535, 0], "really interested for a little while the minister made": [65535, 0], "interested for a little while the minister made a": [65535, 0], "for a little while the minister made a grand": [65535, 0], "a little while the minister made a grand and": [65535, 0], "little while the minister made a grand and moving": [65535, 0], "while the minister made a grand and moving picture": [65535, 0], "the minister made a grand and moving picture of": [65535, 0], "minister made a grand and moving picture of the": [65535, 0], "made a grand and moving picture of the assembling": [65535, 0], "a grand and moving picture of the assembling together": [65535, 0], "grand and moving picture of the assembling together of": [65535, 0], "and moving picture of the assembling together of the": [65535, 0], "moving picture of the assembling together of the world's": [65535, 0], "picture of the assembling together of the world's hosts": [65535, 0], "of the assembling together of the world's hosts at": [65535, 0], "the assembling together of the world's hosts at the": [65535, 0], "assembling together of the world's hosts at the millennium": [65535, 0], "together of the world's hosts at the millennium when": [65535, 0], "of the world's hosts at the millennium when the": [65535, 0], "the world's hosts at the millennium when the lion": [65535, 0], "world's hosts at the millennium when the lion and": [65535, 0], "hosts at the millennium when the lion and the": [65535, 0], "at the millennium when the lion and the lamb": [65535, 0], "the millennium when the lion and the lamb should": [65535, 0], "millennium when the lion and the lamb should lie": [65535, 0], "when the lion and the lamb should lie down": [65535, 0], "the lion and the lamb should lie down together": [65535, 0], "lion and the lamb should lie down together and": [65535, 0], "and the lamb should lie down together and a": [65535, 0], "the lamb should lie down together and a little": [65535, 0], "lamb should lie down together and a little child": [65535, 0], "should lie down together and a little child should": [65535, 0], "lie down together and a little child should lead": [65535, 0], "down together and a little child should lead them": [65535, 0], "together and a little child should lead them but": [65535, 0], "and a little child should lead them but the": [65535, 0], "a little child should lead them but the pathos": [65535, 0], "little child should lead them but the pathos the": [65535, 0], "child should lead them but the pathos the lesson": [65535, 0], "should lead them but the pathos the lesson the": [65535, 0], "lead them but the pathos the lesson the moral": [65535, 0], "them but the pathos the lesson the moral of": [65535, 0], "but the pathos the lesson the moral of the": [65535, 0], "the pathos the lesson the moral of the great": [65535, 0], "pathos the lesson the moral of the great spectacle": [65535, 0], "the lesson the moral of the great spectacle were": [65535, 0], "lesson the moral of the great spectacle were lost": [65535, 0], "the moral of the great spectacle were lost upon": [65535, 0], "moral of the great spectacle were lost upon the": [65535, 0], "of the great spectacle were lost upon the boy": [65535, 0], "the great spectacle were lost upon the boy he": [65535, 0], "great spectacle were lost upon the boy he only": [65535, 0], "spectacle were lost upon the boy he only thought": [65535, 0], "were lost upon the boy he only thought of": [65535, 0], "lost upon the boy he only thought of the": [65535, 0], "upon the boy he only thought of the conspicuousness": [65535, 0], "the boy he only thought of the conspicuousness of": [65535, 0], "boy he only thought of the conspicuousness of the": [65535, 0], "he only thought of the conspicuousness of the principal": [65535, 0], "only thought of the conspicuousness of the principal character": [65535, 0], "thought of the conspicuousness of the principal character before": [65535, 0], "of the conspicuousness of the principal character before the": [65535, 0], "the conspicuousness of the principal character before the on": [65535, 0], "conspicuousness of the principal character before the on looking": [65535, 0], "of the principal character before the on looking nations": [65535, 0], "the principal character before the on looking nations his": [65535, 0], "principal character before the on looking nations his face": [65535, 0], "character before the on looking nations his face lit": [65535, 0], "before the on looking nations his face lit with": [65535, 0], "the on looking nations his face lit with the": [65535, 0], "on looking nations his face lit with the thought": [65535, 0], "looking nations his face lit with the thought and": [65535, 0], "nations his face lit with the thought and he": [65535, 0], "his face lit with the thought and he said": [65535, 0], "face lit with the thought and he said to": [65535, 0], "lit with the thought and he said to himself": [65535, 0], "with the thought and he said to himself that": [65535, 0], "the thought and he said to himself that he": [65535, 0], "thought and he said to himself that he wished": [65535, 0], "and he said to himself that he wished he": [65535, 0], "he said to himself that he wished he could": [65535, 0], "said to himself that he wished he could be": [65535, 0], "to himself that he wished he could be that": [65535, 0], "himself that he wished he could be that child": [65535, 0], "that he wished he could be that child if": [65535, 0], "he wished he could be that child if it": [65535, 0], "wished he could be that child if it was": [65535, 0], "he could be that child if it was a": [65535, 0], "could be that child if it was a tame": [65535, 0], "be that child if it was a tame lion": [65535, 0], "that child if it was a tame lion now": [65535, 0], "child if it was a tame lion now he": [65535, 0], "if it was a tame lion now he lapsed": [65535, 0], "it was a tame lion now he lapsed into": [65535, 0], "was a tame lion now he lapsed into suffering": [65535, 0], "a tame lion now he lapsed into suffering again": [65535, 0], "tame lion now he lapsed into suffering again as": [65535, 0], "lion now he lapsed into suffering again as the": [65535, 0], "now he lapsed into suffering again as the dry": [65535, 0], "he lapsed into suffering again as the dry argument": [65535, 0], "lapsed into suffering again as the dry argument was": [65535, 0], "into suffering again as the dry argument was resumed": [65535, 0], "suffering again as the dry argument was resumed presently": [65535, 0], "again as the dry argument was resumed presently he": [65535, 0], "as the dry argument was resumed presently he bethought": [65535, 0], "the dry argument was resumed presently he bethought him": [65535, 0], "dry argument was resumed presently he bethought him of": [65535, 0], "argument was resumed presently he bethought him of a": [65535, 0], "was resumed presently he bethought him of a treasure": [65535, 0], "resumed presently he bethought him of a treasure he": [65535, 0], "presently he bethought him of a treasure he had": [65535, 0], "he bethought him of a treasure he had and": [65535, 0], "bethought him of a treasure he had and got": [65535, 0], "him of a treasure he had and got it": [65535, 0], "of a treasure he had and got it out": [65535, 0], "a treasure he had and got it out it": [65535, 0], "treasure he had and got it out it was": [65535, 0], "he had and got it out it was a": [65535, 0], "had and got it out it was a large": [65535, 0], "and got it out it was a large black": [65535, 0], "got it out it was a large black beetle": [65535, 0], "it out it was a large black beetle with": [65535, 0], "out it was a large black beetle with formidable": [65535, 0], "it was a large black beetle with formidable jaws": [65535, 0], "was a large black beetle with formidable jaws a": [65535, 0], "a large black beetle with formidable jaws a pinchbug": [65535, 0], "large black beetle with formidable jaws a pinchbug he": [65535, 0], "black beetle with formidable jaws a pinchbug he called": [65535, 0], "beetle with formidable jaws a pinchbug he called it": [65535, 0], "with formidable jaws a pinchbug he called it it": [65535, 0], "formidable jaws a pinchbug he called it it was": [65535, 0], "jaws a pinchbug he called it it was in": [65535, 0], "a pinchbug he called it it was in a": [65535, 0], "pinchbug he called it it was in a percussion": [65535, 0], "he called it it was in a percussion cap": [65535, 0], "called it it was in a percussion cap box": [65535, 0], "it it was in a percussion cap box the": [65535, 0], "it was in a percussion cap box the first": [65535, 0], "was in a percussion cap box the first thing": [65535, 0], "in a percussion cap box the first thing the": [65535, 0], "a percussion cap box the first thing the beetle": [65535, 0], "percussion cap box the first thing the beetle did": [65535, 0], "cap box the first thing the beetle did was": [65535, 0], "box the first thing the beetle did was to": [65535, 0], "the first thing the beetle did was to take": [65535, 0], "first thing the beetle did was to take him": [65535, 0], "thing the beetle did was to take him by": [65535, 0], "the beetle did was to take him by the": [65535, 0], "beetle did was to take him by the finger": [65535, 0], "did was to take him by the finger a": [65535, 0], "was to take him by the finger a natural": [65535, 0], "to take him by the finger a natural fillip": [65535, 0], "take him by the finger a natural fillip followed": [65535, 0], "him by the finger a natural fillip followed the": [65535, 0], "by the finger a natural fillip followed the beetle": [65535, 0], "the finger a natural fillip followed the beetle went": [65535, 0], "finger a natural fillip followed the beetle went floundering": [65535, 0], "a natural fillip followed the beetle went floundering into": [65535, 0], "natural fillip followed the beetle went floundering into the": [65535, 0], "fillip followed the beetle went floundering into the aisle": [65535, 0], "followed the beetle went floundering into the aisle and": [65535, 0], "the beetle went floundering into the aisle and lit": [65535, 0], "beetle went floundering into the aisle and lit on": [65535, 0], "went floundering into the aisle and lit on its": [65535, 0], "floundering into the aisle and lit on its back": [65535, 0], "into the aisle and lit on its back and": [65535, 0], "the aisle and lit on its back and the": [65535, 0], "aisle and lit on its back and the hurt": [65535, 0], "and lit on its back and the hurt finger": [65535, 0], "lit on its back and the hurt finger went": [65535, 0], "on its back and the hurt finger went into": [65535, 0], "its back and the hurt finger went into the": [65535, 0], "back and the hurt finger went into the boy's": [65535, 0], "and the hurt finger went into the boy's mouth": [65535, 0], "the hurt finger went into the boy's mouth the": [65535, 0], "hurt finger went into the boy's mouth the beetle": [65535, 0], "finger went into the boy's mouth the beetle lay": [65535, 0], "went into the boy's mouth the beetle lay there": [65535, 0], "into the boy's mouth the beetle lay there working": [65535, 0], "the boy's mouth the beetle lay there working its": [65535, 0], "boy's mouth the beetle lay there working its helpless": [65535, 0], "mouth the beetle lay there working its helpless legs": [65535, 0], "the beetle lay there working its helpless legs unable": [65535, 0], "beetle lay there working its helpless legs unable to": [65535, 0], "lay there working its helpless legs unable to turn": [65535, 0], "there working its helpless legs unable to turn over": [65535, 0], "working its helpless legs unable to turn over tom": [65535, 0], "its helpless legs unable to turn over tom eyed": [65535, 0], "helpless legs unable to turn over tom eyed it": [65535, 0], "legs unable to turn over tom eyed it and": [65535, 0], "unable to turn over tom eyed it and longed": [65535, 0], "to turn over tom eyed it and longed for": [65535, 0], "turn over tom eyed it and longed for it": [65535, 0], "over tom eyed it and longed for it but": [65535, 0], "tom eyed it and longed for it but it": [65535, 0], "eyed it and longed for it but it was": [65535, 0], "it and longed for it but it was safe": [65535, 0], "and longed for it but it was safe out": [65535, 0], "longed for it but it was safe out of": [65535, 0], "for it but it was safe out of his": [65535, 0], "it but it was safe out of his reach": [65535, 0], "but it was safe out of his reach other": [65535, 0], "it was safe out of his reach other people": [65535, 0], "was safe out of his reach other people uninterested": [65535, 0], "safe out of his reach other people uninterested in": [65535, 0], "out of his reach other people uninterested in the": [65535, 0], "of his reach other people uninterested in the sermon": [65535, 0], "his reach other people uninterested in the sermon found": [65535, 0], "reach other people uninterested in the sermon found relief": [65535, 0], "other people uninterested in the sermon found relief in": [65535, 0], "people uninterested in the sermon found relief in the": [65535, 0], "uninterested in the sermon found relief in the beetle": [65535, 0], "in the sermon found relief in the beetle and": [65535, 0], "the sermon found relief in the beetle and they": [65535, 0], "sermon found relief in the beetle and they eyed": [65535, 0], "found relief in the beetle and they eyed it": [65535, 0], "relief in the beetle and they eyed it too": [65535, 0], "in the beetle and they eyed it too presently": [65535, 0], "the beetle and they eyed it too presently a": [65535, 0], "beetle and they eyed it too presently a vagrant": [65535, 0], "and they eyed it too presently a vagrant poodle": [65535, 0], "they eyed it too presently a vagrant poodle dog": [65535, 0], "eyed it too presently a vagrant poodle dog came": [65535, 0], "it too presently a vagrant poodle dog came idling": [65535, 0], "too presently a vagrant poodle dog came idling along": [65535, 0], "presently a vagrant poodle dog came idling along sad": [65535, 0], "a vagrant poodle dog came idling along sad at": [65535, 0], "vagrant poodle dog came idling along sad at heart": [65535, 0], "poodle dog came idling along sad at heart lazy": [65535, 0], "dog came idling along sad at heart lazy with": [65535, 0], "came idling along sad at heart lazy with the": [65535, 0], "idling along sad at heart lazy with the summer": [65535, 0], "along sad at heart lazy with the summer softness": [65535, 0], "sad at heart lazy with the summer softness and": [65535, 0], "at heart lazy with the summer softness and the": [65535, 0], "heart lazy with the summer softness and the quiet": [65535, 0], "lazy with the summer softness and the quiet weary": [65535, 0], "with the summer softness and the quiet weary of": [65535, 0], "the summer softness and the quiet weary of captivity": [65535, 0], "summer softness and the quiet weary of captivity sighing": [65535, 0], "softness and the quiet weary of captivity sighing for": [65535, 0], "and the quiet weary of captivity sighing for change": [65535, 0], "the quiet weary of captivity sighing for change he": [65535, 0], "quiet weary of captivity sighing for change he spied": [65535, 0], "weary of captivity sighing for change he spied the": [65535, 0], "of captivity sighing for change he spied the beetle": [65535, 0], "captivity sighing for change he spied the beetle the": [65535, 0], "sighing for change he spied the beetle the drooping": [65535, 0], "for change he spied the beetle the drooping tail": [65535, 0], "change he spied the beetle the drooping tail lifted": [65535, 0], "he spied the beetle the drooping tail lifted and": [65535, 0], "spied the beetle the drooping tail lifted and wagged": [65535, 0], "the beetle the drooping tail lifted and wagged he": [65535, 0], "beetle the drooping tail lifted and wagged he surveyed": [65535, 0], "the drooping tail lifted and wagged he surveyed the": [65535, 0], "drooping tail lifted and wagged he surveyed the prize": [65535, 0], "tail lifted and wagged he surveyed the prize walked": [65535, 0], "lifted and wagged he surveyed the prize walked around": [65535, 0], "and wagged he surveyed the prize walked around it": [65535, 0], "wagged he surveyed the prize walked around it smelt": [65535, 0], "he surveyed the prize walked around it smelt at": [65535, 0], "surveyed the prize walked around it smelt at it": [65535, 0], "the prize walked around it smelt at it from": [65535, 0], "prize walked around it smelt at it from a": [65535, 0], "walked around it smelt at it from a safe": [65535, 0], "around it smelt at it from a safe distance": [65535, 0], "it smelt at it from a safe distance walked": [65535, 0], "smelt at it from a safe distance walked around": [65535, 0], "at it from a safe distance walked around it": [65535, 0], "it from a safe distance walked around it again": [65535, 0], "from a safe distance walked around it again grew": [65535, 0], "a safe distance walked around it again grew bolder": [65535, 0], "safe distance walked around it again grew bolder and": [65535, 0], "distance walked around it again grew bolder and took": [65535, 0], "walked around it again grew bolder and took a": [65535, 0], "around it again grew bolder and took a closer": [65535, 0], "it again grew bolder and took a closer smell": [65535, 0], "again grew bolder and took a closer smell then": [65535, 0], "grew bolder and took a closer smell then lifted": [65535, 0], "bolder and took a closer smell then lifted his": [65535, 0], "and took a closer smell then lifted his lip": [65535, 0], "took a closer smell then lifted his lip and": [65535, 0], "a closer smell then lifted his lip and made": [65535, 0], "closer smell then lifted his lip and made a": [65535, 0], "smell then lifted his lip and made a gingerly": [65535, 0], "then lifted his lip and made a gingerly snatch": [65535, 0], "lifted his lip and made a gingerly snatch at": [65535, 0], "his lip and made a gingerly snatch at it": [65535, 0], "lip and made a gingerly snatch at it just": [65535, 0], "and made a gingerly snatch at it just missing": [65535, 0], "made a gingerly snatch at it just missing it": [65535, 0], "a gingerly snatch at it just missing it made": [65535, 0], "gingerly snatch at it just missing it made another": [65535, 0], "snatch at it just missing it made another and": [65535, 0], "at it just missing it made another and another": [65535, 0], "it just missing it made another and another began": [65535, 0], "just missing it made another and another began to": [65535, 0], "missing it made another and another began to enjoy": [65535, 0], "it made another and another began to enjoy the": [65535, 0], "made another and another began to enjoy the diversion": [65535, 0], "another and another began to enjoy the diversion subsided": [65535, 0], "and another began to enjoy the diversion subsided to": [65535, 0], "another began to enjoy the diversion subsided to his": [65535, 0], "began to enjoy the diversion subsided to his stomach": [65535, 0], "to enjoy the diversion subsided to his stomach with": [65535, 0], "enjoy the diversion subsided to his stomach with the": [65535, 0], "the diversion subsided to his stomach with the beetle": [65535, 0], "diversion subsided to his stomach with the beetle between": [65535, 0], "subsided to his stomach with the beetle between his": [65535, 0], "to his stomach with the beetle between his paws": [65535, 0], "his stomach with the beetle between his paws and": [65535, 0], "stomach with the beetle between his paws and continued": [65535, 0], "with the beetle between his paws and continued his": [65535, 0], "the beetle between his paws and continued his experiments": [65535, 0], "beetle between his paws and continued his experiments grew": [65535, 0], "between his paws and continued his experiments grew weary": [65535, 0], "his paws and continued his experiments grew weary at": [65535, 0], "paws and continued his experiments grew weary at last": [65535, 0], "and continued his experiments grew weary at last and": [65535, 0], "continued his experiments grew weary at last and then": [65535, 0], "his experiments grew weary at last and then indifferent": [65535, 0], "experiments grew weary at last and then indifferent and": [65535, 0], "grew weary at last and then indifferent and absent": [65535, 0], "weary at last and then indifferent and absent minded": [65535, 0], "at last and then indifferent and absent minded his": [65535, 0], "last and then indifferent and absent minded his head": [65535, 0], "and then indifferent and absent minded his head nodded": [65535, 0], "then indifferent and absent minded his head nodded and": [65535, 0], "indifferent and absent minded his head nodded and little": [65535, 0], "and absent minded his head nodded and little by": [65535, 0], "absent minded his head nodded and little by little": [65535, 0], "minded his head nodded and little by little his": [65535, 0], "his head nodded and little by little his chin": [65535, 0], "head nodded and little by little his chin descended": [65535, 0], "nodded and little by little his chin descended and": [65535, 0], "and little by little his chin descended and touched": [65535, 0], "little by little his chin descended and touched the": [65535, 0], "by little his chin descended and touched the enemy": [65535, 0], "little his chin descended and touched the enemy who": [65535, 0], "his chin descended and touched the enemy who seized": [65535, 0], "chin descended and touched the enemy who seized it": [65535, 0], "descended and touched the enemy who seized it there": [65535, 0], "and touched the enemy who seized it there was": [65535, 0], "touched the enemy who seized it there was a": [65535, 0], "the enemy who seized it there was a sharp": [65535, 0], "enemy who seized it there was a sharp yelp": [65535, 0], "who seized it there was a sharp yelp a": [65535, 0], "seized it there was a sharp yelp a flirt": [65535, 0], "it there was a sharp yelp a flirt of": [65535, 0], "there was a sharp yelp a flirt of the": [65535, 0], "was a sharp yelp a flirt of the poodle's": [65535, 0], "a sharp yelp a flirt of the poodle's head": [65535, 0], "sharp yelp a flirt of the poodle's head and": [65535, 0], "yelp a flirt of the poodle's head and the": [65535, 0], "a flirt of the poodle's head and the beetle": [65535, 0], "flirt of the poodle's head and the beetle fell": [65535, 0], "of the poodle's head and the beetle fell a": [65535, 0], "the poodle's head and the beetle fell a couple": [65535, 0], "poodle's head and the beetle fell a couple of": [65535, 0], "head and the beetle fell a couple of yards": [65535, 0], "and the beetle fell a couple of yards away": [65535, 0], "the beetle fell a couple of yards away and": [65535, 0], "beetle fell a couple of yards away and lit": [65535, 0], "fell a couple of yards away and lit on": [65535, 0], "a couple of yards away and lit on its": [65535, 0], "couple of yards away and lit on its back": [65535, 0], "of yards away and lit on its back once": [65535, 0], "yards away and lit on its back once more": [65535, 0], "away and lit on its back once more the": [65535, 0], "and lit on its back once more the neighboring": [65535, 0], "lit on its back once more the neighboring spectators": [65535, 0], "on its back once more the neighboring spectators shook": [65535, 0], "its back once more the neighboring spectators shook with": [65535, 0], "back once more the neighboring spectators shook with a": [65535, 0], "once more the neighboring spectators shook with a gentle": [65535, 0], "more the neighboring spectators shook with a gentle inward": [65535, 0], "the neighboring spectators shook with a gentle inward joy": [65535, 0], "neighboring spectators shook with a gentle inward joy several": [65535, 0], "spectators shook with a gentle inward joy several faces": [65535, 0], "shook with a gentle inward joy several faces went": [65535, 0], "with a gentle inward joy several faces went behind": [65535, 0], "a gentle inward joy several faces went behind fans": [65535, 0], "gentle inward joy several faces went behind fans and": [65535, 0], "inward joy several faces went behind fans and handkerchiefs": [65535, 0], "joy several faces went behind fans and handkerchiefs and": [65535, 0], "several faces went behind fans and handkerchiefs and tom": [65535, 0], "faces went behind fans and handkerchiefs and tom was": [65535, 0], "went behind fans and handkerchiefs and tom was entirely": [65535, 0], "behind fans and handkerchiefs and tom was entirely happy": [65535, 0], "fans and handkerchiefs and tom was entirely happy the": [65535, 0], "and handkerchiefs and tom was entirely happy the dog": [65535, 0], "handkerchiefs and tom was entirely happy the dog looked": [65535, 0], "and tom was entirely happy the dog looked foolish": [65535, 0], "tom was entirely happy the dog looked foolish and": [65535, 0], "was entirely happy the dog looked foolish and probably": [65535, 0], "entirely happy the dog looked foolish and probably felt": [65535, 0], "happy the dog looked foolish and probably felt so": [65535, 0], "the dog looked foolish and probably felt so but": [65535, 0], "dog looked foolish and probably felt so but there": [65535, 0], "looked foolish and probably felt so but there was": [65535, 0], "foolish and probably felt so but there was resentment": [65535, 0], "and probably felt so but there was resentment in": [65535, 0], "probably felt so but there was resentment in his": [65535, 0], "felt so but there was resentment in his heart": [65535, 0], "so but there was resentment in his heart too": [65535, 0], "but there was resentment in his heart too and": [65535, 0], "there was resentment in his heart too and a": [65535, 0], "was resentment in his heart too and a craving": [65535, 0], "resentment in his heart too and a craving for": [65535, 0], "in his heart too and a craving for revenge": [65535, 0], "his heart too and a craving for revenge so": [65535, 0], "heart too and a craving for revenge so he": [65535, 0], "too and a craving for revenge so he went": [65535, 0], "and a craving for revenge so he went to": [65535, 0], "a craving for revenge so he went to the": [65535, 0], "craving for revenge so he went to the beetle": [65535, 0], "for revenge so he went to the beetle and": [65535, 0], "revenge so he went to the beetle and began": [65535, 0], "so he went to the beetle and began a": [65535, 0], "he went to the beetle and began a wary": [65535, 0], "went to the beetle and began a wary attack": [65535, 0], "to the beetle and began a wary attack on": [65535, 0], "the beetle and began a wary attack on it": [65535, 0], "beetle and began a wary attack on it again": [65535, 0], "and began a wary attack on it again jumping": [65535, 0], "began a wary attack on it again jumping at": [65535, 0], "a wary attack on it again jumping at it": [65535, 0], "wary attack on it again jumping at it from": [65535, 0], "attack on it again jumping at it from every": [65535, 0], "on it again jumping at it from every point": [65535, 0], "it again jumping at it from every point of": [65535, 0], "again jumping at it from every point of a": [65535, 0], "jumping at it from every point of a circle": [65535, 0], "at it from every point of a circle lighting": [65535, 0], "it from every point of a circle lighting with": [65535, 0], "from every point of a circle lighting with his": [65535, 0], "every point of a circle lighting with his fore": [65535, 0], "point of a circle lighting with his fore paws": [65535, 0], "of a circle lighting with his fore paws within": [65535, 0], "a circle lighting with his fore paws within an": [65535, 0], "circle lighting with his fore paws within an inch": [65535, 0], "lighting with his fore paws within an inch of": [65535, 0], "with his fore paws within an inch of the": [65535, 0], "his fore paws within an inch of the creature": [65535, 0], "fore paws within an inch of the creature making": [65535, 0], "paws within an inch of the creature making even": [65535, 0], "within an inch of the creature making even closer": [65535, 0], "an inch of the creature making even closer snatches": [65535, 0], "inch of the creature making even closer snatches at": [65535, 0], "of the creature making even closer snatches at it": [65535, 0], "the creature making even closer snatches at it with": [65535, 0], "creature making even closer snatches at it with his": [65535, 0], "making even closer snatches at it with his teeth": [65535, 0], "even closer snatches at it with his teeth and": [65535, 0], "closer snatches at it with his teeth and jerking": [65535, 0], "snatches at it with his teeth and jerking his": [65535, 0], "at it with his teeth and jerking his head": [65535, 0], "it with his teeth and jerking his head till": [65535, 0], "with his teeth and jerking his head till his": [65535, 0], "his teeth and jerking his head till his ears": [65535, 0], "teeth and jerking his head till his ears flapped": [65535, 0], "and jerking his head till his ears flapped again": [65535, 0], "jerking his head till his ears flapped again but": [65535, 0], "his head till his ears flapped again but he": [65535, 0], "head till his ears flapped again but he grew": [65535, 0], "till his ears flapped again but he grew tired": [65535, 0], "his ears flapped again but he grew tired once": [65535, 0], "ears flapped again but he grew tired once more": [65535, 0], "flapped again but he grew tired once more after": [65535, 0], "again but he grew tired once more after a": [65535, 0], "but he grew tired once more after a while": [65535, 0], "he grew tired once more after a while tried": [65535, 0], "grew tired once more after a while tried to": [65535, 0], "tired once more after a while tried to amuse": [65535, 0], "once more after a while tried to amuse himself": [65535, 0], "more after a while tried to amuse himself with": [65535, 0], "after a while tried to amuse himself with a": [65535, 0], "a while tried to amuse himself with a fly": [65535, 0], "while tried to amuse himself with a fly but": [65535, 0], "tried to amuse himself with a fly but found": [65535, 0], "to amuse himself with a fly but found no": [65535, 0], "amuse himself with a fly but found no relief": [65535, 0], "himself with a fly but found no relief followed": [65535, 0], "with a fly but found no relief followed an": [65535, 0], "a fly but found no relief followed an ant": [65535, 0], "fly but found no relief followed an ant around": [65535, 0], "but found no relief followed an ant around with": [65535, 0], "found no relief followed an ant around with his": [65535, 0], "no relief followed an ant around with his nose": [65535, 0], "relief followed an ant around with his nose close": [65535, 0], "followed an ant around with his nose close to": [65535, 0], "an ant around with his nose close to the": [65535, 0], "ant around with his nose close to the floor": [65535, 0], "around with his nose close to the floor and": [65535, 0], "with his nose close to the floor and quickly": [65535, 0], "his nose close to the floor and quickly wearied": [65535, 0], "nose close to the floor and quickly wearied of": [65535, 0], "close to the floor and quickly wearied of that": [65535, 0], "to the floor and quickly wearied of that yawned": [65535, 0], "the floor and quickly wearied of that yawned sighed": [65535, 0], "floor and quickly wearied of that yawned sighed forgot": [65535, 0], "and quickly wearied of that yawned sighed forgot the": [65535, 0], "quickly wearied of that yawned sighed forgot the beetle": [65535, 0], "wearied of that yawned sighed forgot the beetle entirely": [65535, 0], "of that yawned sighed forgot the beetle entirely and": [65535, 0], "that yawned sighed forgot the beetle entirely and sat": [65535, 0], "yawned sighed forgot the beetle entirely and sat down": [65535, 0], "sighed forgot the beetle entirely and sat down on": [65535, 0], "forgot the beetle entirely and sat down on it": [65535, 0], "the beetle entirely and sat down on it then": [65535, 0], "beetle entirely and sat down on it then there": [65535, 0], "entirely and sat down on it then there was": [65535, 0], "and sat down on it then there was a": [65535, 0], "sat down on it then there was a wild": [65535, 0], "down on it then there was a wild yelp": [65535, 0], "on it then there was a wild yelp of": [65535, 0], "it then there was a wild yelp of agony": [65535, 0], "then there was a wild yelp of agony and": [65535, 0], "there was a wild yelp of agony and the": [65535, 0], "was a wild yelp of agony and the poodle": [65535, 0], "a wild yelp of agony and the poodle went": [65535, 0], "wild yelp of agony and the poodle went sailing": [65535, 0], "yelp of agony and the poodle went sailing up": [65535, 0], "of agony and the poodle went sailing up the": [65535, 0], "agony and the poodle went sailing up the aisle": [65535, 0], "and the poodle went sailing up the aisle the": [65535, 0], "the poodle went sailing up the aisle the yelps": [65535, 0], "poodle went sailing up the aisle the yelps continued": [65535, 0], "went sailing up the aisle the yelps continued and": [65535, 0], "sailing up the aisle the yelps continued and so": [65535, 0], "up the aisle the yelps continued and so did": [65535, 0], "the aisle the yelps continued and so did the": [65535, 0], "aisle the yelps continued and so did the dog": [65535, 0], "the yelps continued and so did the dog he": [65535, 0], "yelps continued and so did the dog he crossed": [65535, 0], "continued and so did the dog he crossed the": [65535, 0], "and so did the dog he crossed the house": [65535, 0], "so did the dog he crossed the house in": [65535, 0], "did the dog he crossed the house in front": [65535, 0], "the dog he crossed the house in front of": [65535, 0], "dog he crossed the house in front of the": [65535, 0], "he crossed the house in front of the altar": [65535, 0], "crossed the house in front of the altar he": [65535, 0], "the house in front of the altar he flew": [65535, 0], "house in front of the altar he flew down": [65535, 0], "in front of the altar he flew down the": [65535, 0], "front of the altar he flew down the other": [65535, 0], "of the altar he flew down the other aisle": [65535, 0], "the altar he flew down the other aisle he": [65535, 0], "altar he flew down the other aisle he crossed": [65535, 0], "he flew down the other aisle he crossed before": [65535, 0], "flew down the other aisle he crossed before the": [65535, 0], "down the other aisle he crossed before the doors": [65535, 0], "the other aisle he crossed before the doors he": [65535, 0], "other aisle he crossed before the doors he clamored": [65535, 0], "aisle he crossed before the doors he clamored up": [65535, 0], "he crossed before the doors he clamored up the": [65535, 0], "crossed before the doors he clamored up the home": [65535, 0], "before the doors he clamored up the home stretch": [65535, 0], "the doors he clamored up the home stretch his": [65535, 0], "doors he clamored up the home stretch his anguish": [65535, 0], "he clamored up the home stretch his anguish grew": [65535, 0], "clamored up the home stretch his anguish grew with": [65535, 0], "up the home stretch his anguish grew with his": [65535, 0], "the home stretch his anguish grew with his progress": [65535, 0], "home stretch his anguish grew with his progress till": [65535, 0], "stretch his anguish grew with his progress till presently": [65535, 0], "his anguish grew with his progress till presently he": [65535, 0], "anguish grew with his progress till presently he was": [65535, 0], "grew with his progress till presently he was but": [65535, 0], "with his progress till presently he was but a": [65535, 0], "his progress till presently he was but a woolly": [65535, 0], "progress till presently he was but a woolly comet": [65535, 0], "till presently he was but a woolly comet moving": [65535, 0], "presently he was but a woolly comet moving in": [65535, 0], "he was but a woolly comet moving in its": [65535, 0], "was but a woolly comet moving in its orbit": [65535, 0], "but a woolly comet moving in its orbit with": [65535, 0], "a woolly comet moving in its orbit with the": [65535, 0], "woolly comet moving in its orbit with the gleam": [65535, 0], "comet moving in its orbit with the gleam and": [65535, 0], "moving in its orbit with the gleam and the": [65535, 0], "in its orbit with the gleam and the speed": [65535, 0], "its orbit with the gleam and the speed of": [65535, 0], "orbit with the gleam and the speed of light": [65535, 0], "with the gleam and the speed of light at": [65535, 0], "the gleam and the speed of light at last": [65535, 0], "gleam and the speed of light at last the": [65535, 0], "and the speed of light at last the frantic": [65535, 0], "the speed of light at last the frantic sufferer": [65535, 0], "speed of light at last the frantic sufferer sheered": [65535, 0], "of light at last the frantic sufferer sheered from": [65535, 0], "light at last the frantic sufferer sheered from its": [65535, 0], "at last the frantic sufferer sheered from its course": [65535, 0], "last the frantic sufferer sheered from its course and": [65535, 0], "the frantic sufferer sheered from its course and sprang": [65535, 0], "frantic sufferer sheered from its course and sprang into": [65535, 0], "sufferer sheered from its course and sprang into its": [65535, 0], "sheered from its course and sprang into its master's": [65535, 0], "from its course and sprang into its master's lap": [65535, 0], "its course and sprang into its master's lap he": [65535, 0], "course and sprang into its master's lap he flung": [65535, 0], "and sprang into its master's lap he flung it": [65535, 0], "sprang into its master's lap he flung it out": [65535, 0], "into its master's lap he flung it out of": [65535, 0], "its master's lap he flung it out of the": [65535, 0], "master's lap he flung it out of the window": [65535, 0], "lap he flung it out of the window and": [65535, 0], "he flung it out of the window and the": [65535, 0], "flung it out of the window and the voice": [65535, 0], "it out of the window and the voice of": [65535, 0], "out of the window and the voice of distress": [65535, 0], "of the window and the voice of distress quickly": [65535, 0], "the window and the voice of distress quickly thinned": [65535, 0], "window and the voice of distress quickly thinned away": [65535, 0], "and the voice of distress quickly thinned away and": [65535, 0], "the voice of distress quickly thinned away and died": [65535, 0], "voice of distress quickly thinned away and died in": [65535, 0], "of distress quickly thinned away and died in the": [65535, 0], "distress quickly thinned away and died in the distance": [65535, 0], "quickly thinned away and died in the distance by": [65535, 0], "thinned away and died in the distance by this": [65535, 0], "away and died in the distance by this time": [65535, 0], "and died in the distance by this time the": [65535, 0], "died in the distance by this time the whole": [65535, 0], "in the distance by this time the whole church": [65535, 0], "the distance by this time the whole church was": [65535, 0], "distance by this time the whole church was red": [65535, 0], "by this time the whole church was red faced": [65535, 0], "this time the whole church was red faced and": [65535, 0], "time the whole church was red faced and suffocating": [65535, 0], "the whole church was red faced and suffocating with": [65535, 0], "whole church was red faced and suffocating with suppressed": [65535, 0], "church was red faced and suffocating with suppressed laughter": [65535, 0], "was red faced and suffocating with suppressed laughter and": [65535, 0], "red faced and suffocating with suppressed laughter and the": [65535, 0], "faced and suffocating with suppressed laughter and the sermon": [65535, 0], "and suffocating with suppressed laughter and the sermon had": [65535, 0], "suffocating with suppressed laughter and the sermon had come": [65535, 0], "with suppressed laughter and the sermon had come to": [65535, 0], "suppressed laughter and the sermon had come to a": [65535, 0], "laughter and the sermon had come to a dead": [65535, 0], "and the sermon had come to a dead standstill": [65535, 0], "the sermon had come to a dead standstill the": [65535, 0], "sermon had come to a dead standstill the discourse": [65535, 0], "had come to a dead standstill the discourse was": [65535, 0], "come to a dead standstill the discourse was resumed": [65535, 0], "to a dead standstill the discourse was resumed presently": [65535, 0], "a dead standstill the discourse was resumed presently but": [65535, 0], "dead standstill the discourse was resumed presently but it": [65535, 0], "standstill the discourse was resumed presently but it went": [65535, 0], "the discourse was resumed presently but it went lame": [65535, 0], "discourse was resumed presently but it went lame and": [65535, 0], "was resumed presently but it went lame and halting": [65535, 0], "resumed presently but it went lame and halting all": [65535, 0], "presently but it went lame and halting all possibility": [65535, 0], "but it went lame and halting all possibility of": [65535, 0], "it went lame and halting all possibility of impressiveness": [65535, 0], "went lame and halting all possibility of impressiveness being": [65535, 0], "lame and halting all possibility of impressiveness being at": [65535, 0], "and halting all possibility of impressiveness being at an": [65535, 0], "halting all possibility of impressiveness being at an end": [65535, 0], "all possibility of impressiveness being at an end for": [65535, 0], "possibility of impressiveness being at an end for even": [65535, 0], "of impressiveness being at an end for even the": [65535, 0], "impressiveness being at an end for even the gravest": [65535, 0], "being at an end for even the gravest sentiments": [65535, 0], "at an end for even the gravest sentiments were": [65535, 0], "an end for even the gravest sentiments were constantly": [65535, 0], "end for even the gravest sentiments were constantly being": [65535, 0], "for even the gravest sentiments were constantly being received": [65535, 0], "even the gravest sentiments were constantly being received with": [65535, 0], "the gravest sentiments were constantly being received with a": [65535, 0], "gravest sentiments were constantly being received with a smothered": [65535, 0], "sentiments were constantly being received with a smothered burst": [65535, 0], "were constantly being received with a smothered burst of": [65535, 0], "constantly being received with a smothered burst of unholy": [65535, 0], "being received with a smothered burst of unholy mirth": [65535, 0], "received with a smothered burst of unholy mirth under": [65535, 0], "with a smothered burst of unholy mirth under cover": [65535, 0], "a smothered burst of unholy mirth under cover of": [65535, 0], "smothered burst of unholy mirth under cover of some": [65535, 0], "burst of unholy mirth under cover of some remote": [65535, 0], "of unholy mirth under cover of some remote pew": [65535, 0], "unholy mirth under cover of some remote pew back": [65535, 0], "mirth under cover of some remote pew back as": [65535, 0], "under cover of some remote pew back as if": [65535, 0], "cover of some remote pew back as if the": [65535, 0], "of some remote pew back as if the poor": [65535, 0], "some remote pew back as if the poor parson": [65535, 0], "remote pew back as if the poor parson had": [65535, 0], "pew back as if the poor parson had said": [65535, 0], "back as if the poor parson had said a": [65535, 0], "as if the poor parson had said a rarely": [65535, 0], "if the poor parson had said a rarely facetious": [65535, 0], "the poor parson had said a rarely facetious thing": [65535, 0], "poor parson had said a rarely facetious thing it": [65535, 0], "parson had said a rarely facetious thing it was": [65535, 0], "had said a rarely facetious thing it was a": [65535, 0], "said a rarely facetious thing it was a genuine": [65535, 0], "a rarely facetious thing it was a genuine relief": [65535, 0], "rarely facetious thing it was a genuine relief to": [65535, 0], "facetious thing it was a genuine relief to the": [65535, 0], "thing it was a genuine relief to the whole": [65535, 0], "it was a genuine relief to the whole congregation": [65535, 0], "was a genuine relief to the whole congregation when": [65535, 0], "a genuine relief to the whole congregation when the": [65535, 0], "genuine relief to the whole congregation when the ordeal": [65535, 0], "relief to the whole congregation when the ordeal was": [65535, 0], "to the whole congregation when the ordeal was over": [65535, 0], "the whole congregation when the ordeal was over and": [65535, 0], "whole congregation when the ordeal was over and the": [65535, 0], "congregation when the ordeal was over and the benediction": [65535, 0], "when the ordeal was over and the benediction pronounced": [65535, 0], "the ordeal was over and the benediction pronounced tom": [65535, 0], "ordeal was over and the benediction pronounced tom sawyer": [65535, 0], "was over and the benediction pronounced tom sawyer went": [65535, 0], "over and the benediction pronounced tom sawyer went home": [65535, 0], "and the benediction pronounced tom sawyer went home quite": [65535, 0], "the benediction pronounced tom sawyer went home quite cheerful": [65535, 0], "benediction pronounced tom sawyer went home quite cheerful thinking": [65535, 0], "pronounced tom sawyer went home quite cheerful thinking to": [65535, 0], "tom sawyer went home quite cheerful thinking to himself": [65535, 0], "sawyer went home quite cheerful thinking to himself that": [65535, 0], "went home quite cheerful thinking to himself that there": [65535, 0], "home quite cheerful thinking to himself that there was": [65535, 0], "quite cheerful thinking to himself that there was some": [65535, 0], "cheerful thinking to himself that there was some satisfaction": [65535, 0], "thinking to himself that there was some satisfaction about": [65535, 0], "to himself that there was some satisfaction about divine": [65535, 0], "himself that there was some satisfaction about divine service": [65535, 0], "that there was some satisfaction about divine service when": [65535, 0], "there was some satisfaction about divine service when there": [65535, 0], "was some satisfaction about divine service when there was": [65535, 0], "some satisfaction about divine service when there was a": [65535, 0], "satisfaction about divine service when there was a bit": [65535, 0], "about divine service when there was a bit of": [65535, 0], "divine service when there was a bit of variety": [65535, 0], "service when there was a bit of variety in": [65535, 0], "when there was a bit of variety in it": [65535, 0], "there was a bit of variety in it he": [65535, 0], "was a bit of variety in it he had": [65535, 0], "a bit of variety in it he had but": [65535, 0], "bit of variety in it he had but one": [65535, 0], "of variety in it he had but one marring": [65535, 0], "variety in it he had but one marring thought": [65535, 0], "in it he had but one marring thought he": [65535, 0], "it he had but one marring thought he was": [65535, 0], "he had but one marring thought he was willing": [65535, 0], "had but one marring thought he was willing that": [65535, 0], "but one marring thought he was willing that the": [65535, 0], "one marring thought he was willing that the dog": [65535, 0], "marring thought he was willing that the dog should": [65535, 0], "thought he was willing that the dog should play": [65535, 0], "he was willing that the dog should play with": [65535, 0], "was willing that the dog should play with his": [65535, 0], "willing that the dog should play with his pinchbug": [65535, 0], "that the dog should play with his pinchbug but": [65535, 0], "the dog should play with his pinchbug but he": [65535, 0], "dog should play with his pinchbug but he did": [65535, 0], "should play with his pinchbug but he did not": [65535, 0], "play with his pinchbug but he did not think": [65535, 0], "with his pinchbug but he did not think it": [65535, 0], "his pinchbug but he did not think it was": [65535, 0], "pinchbug but he did not think it was upright": [65535, 0], "but he did not think it was upright in": [65535, 0], "he did not think it was upright in him": [65535, 0], "did not think it was upright in him to": [65535, 0], "not think it was upright in him to carry": [65535, 0], "think it was upright in him to carry it": [65535, 0], "it was upright in him to carry it off": [65535, 0], "about half past ten the cracked bell of the small": [65535, 0], "half past ten the cracked bell of the small church": [65535, 0], "past ten the cracked bell of the small church began": [65535, 0], "ten the cracked bell of the small church began to": [65535, 0], "the cracked bell of the small church began to ring": [65535, 0], "cracked bell of the small church began to ring and": [65535, 0], "bell of the small church began to ring and presently": [65535, 0], "of the small church began to ring and presently the": [65535, 0], "the small church began to ring and presently the people": [65535, 0], "small church began to ring and presently the people began": [65535, 0], "church began to ring and presently the people began to": [65535, 0], "began to ring and presently the people began to gather": [65535, 0], "to ring and presently the people began to gather for": [65535, 0], "ring and presently the people began to gather for the": [65535, 0], "and presently the people began to gather for the morning": [65535, 0], "presently the people began to gather for the morning sermon": [65535, 0], "the people began to gather for the morning sermon the": [65535, 0], "people began to gather for the morning sermon the sunday": [65535, 0], "began to gather for the morning sermon the sunday school": [65535, 0], "to gather for the morning sermon the sunday school children": [65535, 0], "gather for the morning sermon the sunday school children distributed": [65535, 0], "for the morning sermon the sunday school children distributed themselves": [65535, 0], "the morning sermon the sunday school children distributed themselves about": [65535, 0], "morning sermon the sunday school children distributed themselves about the": [65535, 0], "sermon the sunday school children distributed themselves about the house": [65535, 0], "the sunday school children distributed themselves about the house and": [65535, 0], "sunday school children distributed themselves about the house and occupied": [65535, 0], "school children distributed themselves about the house and occupied pews": [65535, 0], "children distributed themselves about the house and occupied pews with": [65535, 0], "distributed themselves about the house and occupied pews with their": [65535, 0], "themselves about the house and occupied pews with their parents": [65535, 0], "about the house and occupied pews with their parents so": [65535, 0], "the house and occupied pews with their parents so as": [65535, 0], "house and occupied pews with their parents so as to": [65535, 0], "and occupied pews with their parents so as to be": [65535, 0], "occupied pews with their parents so as to be under": [65535, 0], "pews with their parents so as to be under supervision": [65535, 0], "with their parents so as to be under supervision aunt": [65535, 0], "their parents so as to be under supervision aunt polly": [65535, 0], "parents so as to be under supervision aunt polly came": [65535, 0], "so as to be under supervision aunt polly came and": [65535, 0], "as to be under supervision aunt polly came and tom": [65535, 0], "to be under supervision aunt polly came and tom and": [65535, 0], "be under supervision aunt polly came and tom and sid": [65535, 0], "under supervision aunt polly came and tom and sid and": [65535, 0], "supervision aunt polly came and tom and sid and mary": [65535, 0], "aunt polly came and tom and sid and mary sat": [65535, 0], "polly came and tom and sid and mary sat with": [65535, 0], "came and tom and sid and mary sat with her": [65535, 0], "and tom and sid and mary sat with her tom": [65535, 0], "tom and sid and mary sat with her tom being": [65535, 0], "and sid and mary sat with her tom being placed": [65535, 0], "sid and mary sat with her tom being placed next": [65535, 0], "and mary sat with her tom being placed next the": [65535, 0], "mary sat with her tom being placed next the aisle": [65535, 0], "sat with her tom being placed next the aisle in": [65535, 0], "with her tom being placed next the aisle in order": [65535, 0], "her tom being placed next the aisle in order that": [65535, 0], "tom being placed next the aisle in order that he": [65535, 0], "being placed next the aisle in order that he might": [65535, 0], "placed next the aisle in order that he might be": [65535, 0], "next the aisle in order that he might be as": [65535, 0], "the aisle in order that he might be as far": [65535, 0], "aisle in order that he might be as far away": [65535, 0], "in order that he might be as far away from": [65535, 0], "order that he might be as far away from the": [65535, 0], "that he might be as far away from the open": [65535, 0], "he might be as far away from the open window": [65535, 0], "might be as far away from the open window and": [65535, 0], "be as far away from the open window and the": [65535, 0], "as far away from the open window and the seductive": [65535, 0], "far away from the open window and the seductive outside": [65535, 0], "away from the open window and the seductive outside summer": [65535, 0], "from the open window and the seductive outside summer scenes": [65535, 0], "the open window and the seductive outside summer scenes as": [65535, 0], "open window and the seductive outside summer scenes as possible": [65535, 0], "window and the seductive outside summer scenes as possible the": [65535, 0], "and the seductive outside summer scenes as possible the crowd": [65535, 0], "the seductive outside summer scenes as possible the crowd filed": [65535, 0], "seductive outside summer scenes as possible the crowd filed up": [65535, 0], "outside summer scenes as possible the crowd filed up the": [65535, 0], "summer scenes as possible the crowd filed up the aisles": [65535, 0], "scenes as possible the crowd filed up the aisles the": [65535, 0], "as possible the crowd filed up the aisles the aged": [65535, 0], "possible the crowd filed up the aisles the aged and": [65535, 0], "the crowd filed up the aisles the aged and needy": [65535, 0], "crowd filed up the aisles the aged and needy postmaster": [65535, 0], "filed up the aisles the aged and needy postmaster who": [65535, 0], "up the aisles the aged and needy postmaster who had": [65535, 0], "the aisles the aged and needy postmaster who had seen": [65535, 0], "aisles the aged and needy postmaster who had seen better": [65535, 0], "the aged and needy postmaster who had seen better days": [65535, 0], "aged and needy postmaster who had seen better days the": [65535, 0], "and needy postmaster who had seen better days the mayor": [65535, 0], "needy postmaster who had seen better days the mayor and": [65535, 0], "postmaster who had seen better days the mayor and his": [65535, 0], "who had seen better days the mayor and his wife": [65535, 0], "had seen better days the mayor and his wife for": [65535, 0], "seen better days the mayor and his wife for they": [65535, 0], "better days the mayor and his wife for they had": [65535, 0], "days the mayor and his wife for they had a": [65535, 0], "the mayor and his wife for they had a mayor": [65535, 0], "mayor and his wife for they had a mayor there": [65535, 0], "and his wife for they had a mayor there among": [65535, 0], "his wife for they had a mayor there among other": [65535, 0], "wife for they had a mayor there among other unnecessaries": [65535, 0], "for they had a mayor there among other unnecessaries the": [65535, 0], "they had a mayor there among other unnecessaries the justice": [65535, 0], "had a mayor there among other unnecessaries the justice of": [65535, 0], "a mayor there among other unnecessaries the justice of the": [65535, 0], "mayor there among other unnecessaries the justice of the peace": [65535, 0], "there among other unnecessaries the justice of the peace the": [65535, 0], "among other unnecessaries the justice of the peace the widow": [65535, 0], "other unnecessaries the justice of the peace the widow douglass": [65535, 0], "unnecessaries the justice of the peace the widow douglass fair": [65535, 0], "the justice of the peace the widow douglass fair smart": [65535, 0], "justice of the peace the widow douglass fair smart and": [65535, 0], "of the peace the widow douglass fair smart and forty": [65535, 0], "the peace the widow douglass fair smart and forty a": [65535, 0], "peace the widow douglass fair smart and forty a generous": [65535, 0], "the widow douglass fair smart and forty a generous good": [65535, 0], "widow douglass fair smart and forty a generous good hearted": [65535, 0], "douglass fair smart and forty a generous good hearted soul": [65535, 0], "fair smart and forty a generous good hearted soul and": [65535, 0], "smart and forty a generous good hearted soul and well": [65535, 0], "and forty a generous good hearted soul and well to": [65535, 0], "forty a generous good hearted soul and well to do": [65535, 0], "a generous good hearted soul and well to do her": [65535, 0], "generous good hearted soul and well to do her hill": [65535, 0], "good hearted soul and well to do her hill mansion": [65535, 0], "hearted soul and well to do her hill mansion the": [65535, 0], "soul and well to do her hill mansion the only": [65535, 0], "and well to do her hill mansion the only palace": [65535, 0], "well to do her hill mansion the only palace in": [65535, 0], "to do her hill mansion the only palace in the": [65535, 0], "do her hill mansion the only palace in the town": [65535, 0], "her hill mansion the only palace in the town and": [65535, 0], "hill mansion the only palace in the town and the": [65535, 0], "mansion the only palace in the town and the most": [65535, 0], "the only palace in the town and the most hospitable": [65535, 0], "only palace in the town and the most hospitable and": [65535, 0], "palace in the town and the most hospitable and much": [65535, 0], "in the town and the most hospitable and much the": [65535, 0], "the town and the most hospitable and much the most": [65535, 0], "town and the most hospitable and much the most lavish": [65535, 0], "and the most hospitable and much the most lavish in": [65535, 0], "the most hospitable and much the most lavish in the": [65535, 0], "most hospitable and much the most lavish in the matter": [65535, 0], "hospitable and much the most lavish in the matter of": [65535, 0], "and much the most lavish in the matter of festivities": [65535, 0], "much the most lavish in the matter of festivities that": [65535, 0], "the most lavish in the matter of festivities that st": [65535, 0], "most lavish in the matter of festivities that st petersburg": [65535, 0], "lavish in the matter of festivities that st petersburg could": [65535, 0], "in the matter of festivities that st petersburg could boast": [65535, 0], "the matter of festivities that st petersburg could boast the": [65535, 0], "matter of festivities that st petersburg could boast the bent": [65535, 0], "of festivities that st petersburg could boast the bent and": [65535, 0], "festivities that st petersburg could boast the bent and venerable": [65535, 0], "that st petersburg could boast the bent and venerable major": [65535, 0], "st petersburg could boast the bent and venerable major and": [65535, 0], "petersburg could boast the bent and venerable major and mrs": [65535, 0], "could boast the bent and venerable major and mrs ward": [65535, 0], "boast the bent and venerable major and mrs ward lawyer": [65535, 0], "the bent and venerable major and mrs ward lawyer riverson": [65535, 0], "bent and venerable major and mrs ward lawyer riverson the": [65535, 0], "and venerable major and mrs ward lawyer riverson the new": [65535, 0], "venerable major and mrs ward lawyer riverson the new notable": [65535, 0], "major and mrs ward lawyer riverson the new notable from": [65535, 0], "and mrs ward lawyer riverson the new notable from a": [65535, 0], "mrs ward lawyer riverson the new notable from a distance": [65535, 0], "ward lawyer riverson the new notable from a distance next": [65535, 0], "lawyer riverson the new notable from a distance next the": [65535, 0], "riverson the new notable from a distance next the belle": [65535, 0], "the new notable from a distance next the belle of": [65535, 0], "new notable from a distance next the belle of the": [65535, 0], "notable from a distance next the belle of the village": [65535, 0], "from a distance next the belle of the village followed": [65535, 0], "a distance next the belle of the village followed by": [65535, 0], "distance next the belle of the village followed by a": [65535, 0], "next the belle of the village followed by a troop": [65535, 0], "the belle of the village followed by a troop of": [65535, 0], "belle of the village followed by a troop of lawn": [65535, 0], "of the village followed by a troop of lawn clad": [65535, 0], "the village followed by a troop of lawn clad and": [65535, 0], "village followed by a troop of lawn clad and ribbon": [65535, 0], "followed by a troop of lawn clad and ribbon decked": [65535, 0], "by a troop of lawn clad and ribbon decked young": [65535, 0], "a troop of lawn clad and ribbon decked young heart": [65535, 0], "troop of lawn clad and ribbon decked young heart breakers": [65535, 0], "of lawn clad and ribbon decked young heart breakers then": [65535, 0], "lawn clad and ribbon decked young heart breakers then all": [65535, 0], "clad and ribbon decked young heart breakers then all the": [65535, 0], "and ribbon decked young heart breakers then all the young": [65535, 0], "ribbon decked young heart breakers then all the young clerks": [65535, 0], "decked young heart breakers then all the young clerks in": [65535, 0], "young heart breakers then all the young clerks in town": [65535, 0], "heart breakers then all the young clerks in town in": [65535, 0], "breakers then all the young clerks in town in a": [65535, 0], "then all the young clerks in town in a body": [65535, 0], "all the young clerks in town in a body for": [65535, 0], "the young clerks in town in a body for they": [65535, 0], "young clerks in town in a body for they had": [65535, 0], "clerks in town in a body for they had stood": [65535, 0], "in town in a body for they had stood in": [65535, 0], "town in a body for they had stood in the": [65535, 0], "in a body for they had stood in the vestibule": [65535, 0], "a body for they had stood in the vestibule sucking": [65535, 0], "body for they had stood in the vestibule sucking their": [65535, 0], "for they had stood in the vestibule sucking their cane": [65535, 0], "they had stood in the vestibule sucking their cane heads": [65535, 0], "had stood in the vestibule sucking their cane heads a": [65535, 0], "stood in the vestibule sucking their cane heads a circling": [65535, 0], "in the vestibule sucking their cane heads a circling wall": [65535, 0], "the vestibule sucking their cane heads a circling wall of": [65535, 0], "vestibule sucking their cane heads a circling wall of oiled": [65535, 0], "sucking their cane heads a circling wall of oiled and": [65535, 0], "their cane heads a circling wall of oiled and simpering": [65535, 0], "cane heads a circling wall of oiled and simpering admirers": [65535, 0], "heads a circling wall of oiled and simpering admirers till": [65535, 0], "a circling wall of oiled and simpering admirers till the": [65535, 0], "circling wall of oiled and simpering admirers till the last": [65535, 0], "wall of oiled and simpering admirers till the last girl": [65535, 0], "of oiled and simpering admirers till the last girl had": [65535, 0], "oiled and simpering admirers till the last girl had run": [65535, 0], "and simpering admirers till the last girl had run their": [65535, 0], "simpering admirers till the last girl had run their gantlet": [65535, 0], "admirers till the last girl had run their gantlet and": [65535, 0], "till the last girl had run their gantlet and last": [65535, 0], "the last girl had run their gantlet and last of": [65535, 0], "last girl had run their gantlet and last of all": [65535, 0], "girl had run their gantlet and last of all came": [65535, 0], "had run their gantlet and last of all came the": [65535, 0], "run their gantlet and last of all came the model": [65535, 0], "their gantlet and last of all came the model boy": [65535, 0], "gantlet and last of all came the model boy willie": [65535, 0], "and last of all came the model boy willie mufferson": [65535, 0], "last of all came the model boy willie mufferson taking": [65535, 0], "of all came the model boy willie mufferson taking as": [65535, 0], "all came the model boy willie mufferson taking as heedful": [65535, 0], "came the model boy willie mufferson taking as heedful care": [65535, 0], "the model boy willie mufferson taking as heedful care of": [65535, 0], "model boy willie mufferson taking as heedful care of his": [65535, 0], "boy willie mufferson taking as heedful care of his mother": [65535, 0], "willie mufferson taking as heedful care of his mother as": [65535, 0], "mufferson taking as heedful care of his mother as if": [65535, 0], "taking as heedful care of his mother as if she": [65535, 0], "as heedful care of his mother as if she were": [65535, 0], "heedful care of his mother as if she were cut": [65535, 0], "care of his mother as if she were cut glass": [65535, 0], "of his mother as if she were cut glass he": [65535, 0], "his mother as if she were cut glass he always": [65535, 0], "mother as if she were cut glass he always brought": [65535, 0], "as if she were cut glass he always brought his": [65535, 0], "if she were cut glass he always brought his mother": [65535, 0], "she were cut glass he always brought his mother to": [65535, 0], "were cut glass he always brought his mother to church": [65535, 0], "cut glass he always brought his mother to church and": [65535, 0], "glass he always brought his mother to church and was": [65535, 0], "he always brought his mother to church and was the": [65535, 0], "always brought his mother to church and was the pride": [65535, 0], "brought his mother to church and was the pride of": [65535, 0], "his mother to church and was the pride of all": [65535, 0], "mother to church and was the pride of all the": [65535, 0], "to church and was the pride of all the matrons": [65535, 0], "church and was the pride of all the matrons the": [65535, 0], "and was the pride of all the matrons the boys": [65535, 0], "was the pride of all the matrons the boys all": [65535, 0], "the pride of all the matrons the boys all hated": [65535, 0], "pride of all the matrons the boys all hated him": [65535, 0], "of all the matrons the boys all hated him he": [65535, 0], "all the matrons the boys all hated him he was": [65535, 0], "the matrons the boys all hated him he was so": [65535, 0], "matrons the boys all hated him he was so good": [65535, 0], "the boys all hated him he was so good and": [65535, 0], "boys all hated him he was so good and besides": [65535, 0], "all hated him he was so good and besides he": [65535, 0], "hated him he was so good and besides he had": [65535, 0], "him he was so good and besides he had been": [65535, 0], "he was so good and besides he had been thrown": [65535, 0], "was so good and besides he had been thrown up": [65535, 0], "so good and besides he had been thrown up to": [65535, 0], "good and besides he had been thrown up to them": [65535, 0], "and besides he had been thrown up to them so": [65535, 0], "besides he had been thrown up to them so much": [65535, 0], "he had been thrown up to them so much his": [65535, 0], "had been thrown up to them so much his white": [65535, 0], "been thrown up to them so much his white handkerchief": [65535, 0], "thrown up to them so much his white handkerchief was": [65535, 0], "up to them so much his white handkerchief was hanging": [65535, 0], "to them so much his white handkerchief was hanging out": [65535, 0], "them so much his white handkerchief was hanging out of": [65535, 0], "so much his white handkerchief was hanging out of his": [65535, 0], "much his white handkerchief was hanging out of his pocket": [65535, 0], "his white handkerchief was hanging out of his pocket behind": [65535, 0], "white handkerchief was hanging out of his pocket behind as": [65535, 0], "handkerchief was hanging out of his pocket behind as usual": [65535, 0], "was hanging out of his pocket behind as usual on": [65535, 0], "hanging out of his pocket behind as usual on sundays": [65535, 0], "out of his pocket behind as usual on sundays accidentally": [65535, 0], "of his pocket behind as usual on sundays accidentally tom": [65535, 0], "his pocket behind as usual on sundays accidentally tom had": [65535, 0], "pocket behind as usual on sundays accidentally tom had no": [65535, 0], "behind as usual on sundays accidentally tom had no handkerchief": [65535, 0], "as usual on sundays accidentally tom had no handkerchief and": [65535, 0], "usual on sundays accidentally tom had no handkerchief and he": [65535, 0], "on sundays accidentally tom had no handkerchief and he looked": [65535, 0], "sundays accidentally tom had no handkerchief and he looked upon": [65535, 0], "accidentally tom had no handkerchief and he looked upon boys": [65535, 0], "tom had no handkerchief and he looked upon boys who": [65535, 0], "had no handkerchief and he looked upon boys who had": [65535, 0], "no handkerchief and he looked upon boys who had as": [65535, 0], "handkerchief and he looked upon boys who had as snobs": [65535, 0], "and he looked upon boys who had as snobs the": [65535, 0], "he looked upon boys who had as snobs the congregation": [65535, 0], "looked upon boys who had as snobs the congregation being": [65535, 0], "upon boys who had as snobs the congregation being fully": [65535, 0], "boys who had as snobs the congregation being fully assembled": [65535, 0], "who had as snobs the congregation being fully assembled now": [65535, 0], "had as snobs the congregation being fully assembled now the": [65535, 0], "as snobs the congregation being fully assembled now the bell": [65535, 0], "snobs the congregation being fully assembled now the bell rang": [65535, 0], "the congregation being fully assembled now the bell rang once": [65535, 0], "congregation being fully assembled now the bell rang once more": [65535, 0], "being fully assembled now the bell rang once more to": [65535, 0], "fully assembled now the bell rang once more to warn": [65535, 0], "assembled now the bell rang once more to warn laggards": [65535, 0], "now the bell rang once more to warn laggards and": [65535, 0], "the bell rang once more to warn laggards and stragglers": [65535, 0], "bell rang once more to warn laggards and stragglers and": [65535, 0], "rang once more to warn laggards and stragglers and then": [65535, 0], "once more to warn laggards and stragglers and then a": [65535, 0], "more to warn laggards and stragglers and then a solemn": [65535, 0], "to warn laggards and stragglers and then a solemn hush": [65535, 0], "warn laggards and stragglers and then a solemn hush fell": [65535, 0], "laggards and stragglers and then a solemn hush fell upon": [65535, 0], "and stragglers and then a solemn hush fell upon the": [65535, 0], "stragglers and then a solemn hush fell upon the church": [65535, 0], "and then a solemn hush fell upon the church which": [65535, 0], "then a solemn hush fell upon the church which was": [65535, 0], "a solemn hush fell upon the church which was only": [65535, 0], "solemn hush fell upon the church which was only broken": [65535, 0], "hush fell upon the church which was only broken by": [65535, 0], "fell upon the church which was only broken by the": [65535, 0], "upon the church which was only broken by the tittering": [65535, 0], "the church which was only broken by the tittering and": [65535, 0], "church which was only broken by the tittering and whispering": [65535, 0], "which was only broken by the tittering and whispering of": [65535, 0], "was only broken by the tittering and whispering of the": [65535, 0], "only broken by the tittering and whispering of the choir": [65535, 0], "broken by the tittering and whispering of the choir in": [65535, 0], "by the tittering and whispering of the choir in the": [65535, 0], "the tittering and whispering of the choir in the gallery": [65535, 0], "tittering and whispering of the choir in the gallery the": [65535, 0], "and whispering of the choir in the gallery the choir": [65535, 0], "whispering of the choir in the gallery the choir always": [65535, 0], "of the choir in the gallery the choir always tittered": [65535, 0], "the choir in the gallery the choir always tittered and": [65535, 0], "choir in the gallery the choir always tittered and whispered": [65535, 0], "in the gallery the choir always tittered and whispered all": [65535, 0], "the gallery the choir always tittered and whispered all through": [65535, 0], "gallery the choir always tittered and whispered all through service": [65535, 0], "the choir always tittered and whispered all through service there": [65535, 0], "choir always tittered and whispered all through service there was": [65535, 0], "always tittered and whispered all through service there was once": [65535, 0], "tittered and whispered all through service there was once a": [65535, 0], "and whispered all through service there was once a church": [65535, 0], "whispered all through service there was once a church choir": [65535, 0], "all through service there was once a church choir that": [65535, 0], "through service there was once a church choir that was": [65535, 0], "service there was once a church choir that was not": [65535, 0], "there was once a church choir that was not ill": [65535, 0], "was once a church choir that was not ill bred": [65535, 0], "once a church choir that was not ill bred but": [65535, 0], "a church choir that was not ill bred but i": [65535, 0], "church choir that was not ill bred but i have": [65535, 0], "choir that was not ill bred but i have forgotten": [65535, 0], "that was not ill bred but i have forgotten where": [65535, 0], "was not ill bred but i have forgotten where it": [65535, 0], "not ill bred but i have forgotten where it was": [65535, 0], "ill bred but i have forgotten where it was now": [65535, 0], "bred but i have forgotten where it was now it": [65535, 0], "but i have forgotten where it was now it was": [65535, 0], "i have forgotten where it was now it was a": [65535, 0], "have forgotten where it was now it was a great": [65535, 0], "forgotten where it was now it was a great many": [65535, 0], "where it was now it was a great many years": [65535, 0], "it was now it was a great many years ago": [65535, 0], "was now it was a great many years ago and": [65535, 0], "now it was a great many years ago and i": [65535, 0], "it was a great many years ago and i can": [65535, 0], "was a great many years ago and i can scarcely": [65535, 0], "a great many years ago and i can scarcely remember": [65535, 0], "great many years ago and i can scarcely remember anything": [65535, 0], "many years ago and i can scarcely remember anything about": [65535, 0], "years ago and i can scarcely remember anything about it": [65535, 0], "ago and i can scarcely remember anything about it but": [65535, 0], "and i can scarcely remember anything about it but i": [65535, 0], "i can scarcely remember anything about it but i think": [65535, 0], "can scarcely remember anything about it but i think it": [65535, 0], "scarcely remember anything about it but i think it was": [65535, 0], "remember anything about it but i think it was in": [65535, 0], "anything about it but i think it was in some": [65535, 0], "about it but i think it was in some foreign": [65535, 0], "it but i think it was in some foreign country": [65535, 0], "but i think it was in some foreign country the": [65535, 0], "i think it was in some foreign country the minister": [65535, 0], "think it was in some foreign country the minister gave": [65535, 0], "it was in some foreign country the minister gave out": [65535, 0], "was in some foreign country the minister gave out the": [65535, 0], "in some foreign country the minister gave out the hymn": [65535, 0], "some foreign country the minister gave out the hymn and": [65535, 0], "foreign country the minister gave out the hymn and read": [65535, 0], "country the minister gave out the hymn and read it": [65535, 0], "the minister gave out the hymn and read it through": [65535, 0], "minister gave out the hymn and read it through with": [65535, 0], "gave out the hymn and read it through with a": [65535, 0], "out the hymn and read it through with a relish": [65535, 0], "the hymn and read it through with a relish in": [65535, 0], "hymn and read it through with a relish in a": [65535, 0], "and read it through with a relish in a peculiar": [65535, 0], "read it through with a relish in a peculiar style": [65535, 0], "it through with a relish in a peculiar style which": [65535, 0], "through with a relish in a peculiar style which was": [65535, 0], "with a relish in a peculiar style which was much": [65535, 0], "a relish in a peculiar style which was much admired": [65535, 0], "relish in a peculiar style which was much admired in": [65535, 0], "in a peculiar style which was much admired in that": [65535, 0], "a peculiar style which was much admired in that part": [65535, 0], "peculiar style which was much admired in that part of": [65535, 0], "style which was much admired in that part of the": [65535, 0], "which was much admired in that part of the country": [65535, 0], "was much admired in that part of the country his": [65535, 0], "much admired in that part of the country his voice": [65535, 0], "admired in that part of the country his voice began": [65535, 0], "in that part of the country his voice began on": [65535, 0], "that part of the country his voice began on a": [65535, 0], "part of the country his voice began on a medium": [65535, 0], "of the country his voice began on a medium key": [65535, 0], "the country his voice began on a medium key and": [65535, 0], "country his voice began on a medium key and climbed": [65535, 0], "his voice began on a medium key and climbed steadily": [65535, 0], "voice began on a medium key and climbed steadily up": [65535, 0], "began on a medium key and climbed steadily up till": [65535, 0], "on a medium key and climbed steadily up till it": [65535, 0], "a medium key and climbed steadily up till it reached": [65535, 0], "medium key and climbed steadily up till it reached a": [65535, 0], "key and climbed steadily up till it reached a certain": [65535, 0], "and climbed steadily up till it reached a certain point": [65535, 0], "climbed steadily up till it reached a certain point where": [65535, 0], "steadily up till it reached a certain point where it": [65535, 0], "up till it reached a certain point where it bore": [65535, 0], "till it reached a certain point where it bore with": [65535, 0], "it reached a certain point where it bore with strong": [65535, 0], "reached a certain point where it bore with strong emphasis": [65535, 0], "a certain point where it bore with strong emphasis upon": [65535, 0], "certain point where it bore with strong emphasis upon the": [65535, 0], "point where it bore with strong emphasis upon the topmost": [65535, 0], "where it bore with strong emphasis upon the topmost word": [65535, 0], "it bore with strong emphasis upon the topmost word and": [65535, 0], "bore with strong emphasis upon the topmost word and then": [65535, 0], "with strong emphasis upon the topmost word and then plunged": [65535, 0], "strong emphasis upon the topmost word and then plunged down": [65535, 0], "emphasis upon the topmost word and then plunged down as": [65535, 0], "upon the topmost word and then plunged down as if": [65535, 0], "the topmost word and then plunged down as if from": [65535, 0], "topmost word and then plunged down as if from a": [65535, 0], "word and then plunged down as if from a spring": [65535, 0], "and then plunged down as if from a spring board": [65535, 0], "then plunged down as if from a spring board shall": [65535, 0], "plunged down as if from a spring board shall i": [65535, 0], "down as if from a spring board shall i be": [65535, 0], "as if from a spring board shall i be car": [65535, 0], "if from a spring board shall i be car ri": [65535, 0], "from a spring board shall i be car ri ed": [65535, 0], "a spring board shall i be car ri ed toe": [65535, 0], "spring board shall i be car ri ed toe the": [65535, 0], "board shall i be car ri ed toe the skies": [65535, 0], "shall i be car ri ed toe the skies on": [65535, 0], "i be car ri ed toe the skies on flow'ry": [65535, 0], "be car ri ed toe the skies on flow'ry beds": [65535, 0], "car ri ed toe the skies on flow'ry beds of": [65535, 0], "ri ed toe the skies on flow'ry beds of ease": [65535, 0], "ed toe the skies on flow'ry beds of ease whilst": [65535, 0], "toe the skies on flow'ry beds of ease whilst others": [65535, 0], "the skies on flow'ry beds of ease whilst others fight": [65535, 0], "skies on flow'ry beds of ease whilst others fight to": [65535, 0], "on flow'ry beds of ease whilst others fight to win": [65535, 0], "flow'ry beds of ease whilst others fight to win the": [65535, 0], "beds of ease whilst others fight to win the prize": [65535, 0], "of ease whilst others fight to win the prize and": [65535, 0], "ease whilst others fight to win the prize and sail": [65535, 0], "whilst others fight to win the prize and sail thro'": [65535, 0], "others fight to win the prize and sail thro' bloody": [65535, 0], "fight to win the prize and sail thro' bloody seas": [65535, 0], "to win the prize and sail thro' bloody seas he": [65535, 0], "win the prize and sail thro' bloody seas he was": [65535, 0], "the prize and sail thro' bloody seas he was regarded": [65535, 0], "prize and sail thro' bloody seas he was regarded as": [65535, 0], "and sail thro' bloody seas he was regarded as a": [65535, 0], "sail thro' bloody seas he was regarded as a wonderful": [65535, 0], "thro' bloody seas he was regarded as a wonderful reader": [65535, 0], "bloody seas he was regarded as a wonderful reader at": [65535, 0], "seas he was regarded as a wonderful reader at church": [65535, 0], "he was regarded as a wonderful reader at church sociables": [65535, 0], "was regarded as a wonderful reader at church sociables he": [65535, 0], "regarded as a wonderful reader at church sociables he was": [65535, 0], "as a wonderful reader at church sociables he was always": [65535, 0], "a wonderful reader at church sociables he was always called": [65535, 0], "wonderful reader at church sociables he was always called upon": [65535, 0], "reader at church sociables he was always called upon to": [65535, 0], "at church sociables he was always called upon to read": [65535, 0], "church sociables he was always called upon to read poetry": [65535, 0], "sociables he was always called upon to read poetry and": [65535, 0], "he was always called upon to read poetry and when": [65535, 0], "was always called upon to read poetry and when he": [65535, 0], "always called upon to read poetry and when he was": [65535, 0], "called upon to read poetry and when he was through": [65535, 0], "upon to read poetry and when he was through the": [65535, 0], "to read poetry and when he was through the ladies": [65535, 0], "read poetry and when he was through the ladies would": [65535, 0], "poetry and when he was through the ladies would lift": [65535, 0], "and when he was through the ladies would lift up": [65535, 0], "when he was through the ladies would lift up their": [65535, 0], "he was through the ladies would lift up their hands": [65535, 0], "was through the ladies would lift up their hands and": [65535, 0], "through the ladies would lift up their hands and let": [65535, 0], "the ladies would lift up their hands and let them": [65535, 0], "ladies would lift up their hands and let them fall": [65535, 0], "would lift up their hands and let them fall helplessly": [65535, 0], "lift up their hands and let them fall helplessly in": [65535, 0], "up their hands and let them fall helplessly in their": [65535, 0], "their hands and let them fall helplessly in their laps": [65535, 0], "hands and let them fall helplessly in their laps and": [65535, 0], "and let them fall helplessly in their laps and wall": [65535, 0], "let them fall helplessly in their laps and wall their": [65535, 0], "them fall helplessly in their laps and wall their eyes": [65535, 0], "fall helplessly in their laps and wall their eyes and": [65535, 0], "helplessly in their laps and wall their eyes and shake": [65535, 0], "in their laps and wall their eyes and shake their": [65535, 0], "their laps and wall their eyes and shake their heads": [65535, 0], "laps and wall their eyes and shake their heads as": [65535, 0], "and wall their eyes and shake their heads as much": [65535, 0], "wall their eyes and shake their heads as much as": [65535, 0], "their eyes and shake their heads as much as to": [65535, 0], "eyes and shake their heads as much as to say": [65535, 0], "and shake their heads as much as to say words": [65535, 0], "shake their heads as much as to say words cannot": [65535, 0], "their heads as much as to say words cannot express": [65535, 0], "heads as much as to say words cannot express it": [65535, 0], "as much as to say words cannot express it it": [65535, 0], "much as to say words cannot express it it is": [65535, 0], "as to say words cannot express it it is too": [65535, 0], "to say words cannot express it it is too beautiful": [65535, 0], "say words cannot express it it is too beautiful too": [65535, 0], "words cannot express it it is too beautiful too beautiful": [65535, 0], "cannot express it it is too beautiful too beautiful for": [65535, 0], "express it it is too beautiful too beautiful for this": [65535, 0], "it it is too beautiful too beautiful for this mortal": [65535, 0], "it is too beautiful too beautiful for this mortal earth": [65535, 0], "is too beautiful too beautiful for this mortal earth after": [65535, 0], "too beautiful too beautiful for this mortal earth after the": [65535, 0], "beautiful too beautiful for this mortal earth after the hymn": [65535, 0], "too beautiful for this mortal earth after the hymn had": [65535, 0], "beautiful for this mortal earth after the hymn had been": [65535, 0], "for this mortal earth after the hymn had been sung": [65535, 0], "this mortal earth after the hymn had been sung the": [65535, 0], "mortal earth after the hymn had been sung the rev": [65535, 0], "earth after the hymn had been sung the rev mr": [65535, 0], "after the hymn had been sung the rev mr sprague": [65535, 0], "the hymn had been sung the rev mr sprague turned": [65535, 0], "hymn had been sung the rev mr sprague turned himself": [65535, 0], "had been sung the rev mr sprague turned himself into": [65535, 0], "been sung the rev mr sprague turned himself into a": [65535, 0], "sung the rev mr sprague turned himself into a bulletin": [65535, 0], "the rev mr sprague turned himself into a bulletin board": [65535, 0], "rev mr sprague turned himself into a bulletin board and": [65535, 0], "mr sprague turned himself into a bulletin board and read": [65535, 0], "sprague turned himself into a bulletin board and read off": [65535, 0], "turned himself into a bulletin board and read off notices": [65535, 0], "himself into a bulletin board and read off notices of": [65535, 0], "into a bulletin board and read off notices of meetings": [65535, 0], "a bulletin board and read off notices of meetings and": [65535, 0], "bulletin board and read off notices of meetings and societies": [65535, 0], "board and read off notices of meetings and societies and": [65535, 0], "and read off notices of meetings and societies and things": [65535, 0], "read off notices of meetings and societies and things till": [65535, 0], "off notices of meetings and societies and things till it": [65535, 0], "notices of meetings and societies and things till it seemed": [65535, 0], "of meetings and societies and things till it seemed that": [65535, 0], "meetings and societies and things till it seemed that the": [65535, 0], "and societies and things till it seemed that the list": [65535, 0], "societies and things till it seemed that the list would": [65535, 0], "and things till it seemed that the list would stretch": [65535, 0], "things till it seemed that the list would stretch out": [65535, 0], "till it seemed that the list would stretch out to": [65535, 0], "it seemed that the list would stretch out to the": [65535, 0], "seemed that the list would stretch out to the crack": [65535, 0], "that the list would stretch out to the crack of": [65535, 0], "the list would stretch out to the crack of doom": [65535, 0], "list would stretch out to the crack of doom a": [65535, 0], "would stretch out to the crack of doom a queer": [65535, 0], "stretch out to the crack of doom a queer custom": [65535, 0], "out to the crack of doom a queer custom which": [65535, 0], "to the crack of doom a queer custom which is": [65535, 0], "the crack of doom a queer custom which is still": [65535, 0], "crack of doom a queer custom which is still kept": [65535, 0], "of doom a queer custom which is still kept up": [65535, 0], "doom a queer custom which is still kept up in": [65535, 0], "a queer custom which is still kept up in america": [65535, 0], "queer custom which is still kept up in america even": [65535, 0], "custom which is still kept up in america even in": [65535, 0], "which is still kept up in america even in cities": [65535, 0], "is still kept up in america even in cities away": [65535, 0], "still kept up in america even in cities away here": [65535, 0], "kept up in america even in cities away here in": [65535, 0], "up in america even in cities away here in this": [65535, 0], "in america even in cities away here in this age": [65535, 0], "america even in cities away here in this age of": [65535, 0], "even in cities away here in this age of abundant": [65535, 0], "in cities away here in this age of abundant newspapers": [65535, 0], "cities away here in this age of abundant newspapers often": [65535, 0], "away here in this age of abundant newspapers often the": [65535, 0], "here in this age of abundant newspapers often the less": [65535, 0], "in this age of abundant newspapers often the less there": [65535, 0], "this age of abundant newspapers often the less there is": [65535, 0], "age of abundant newspapers often the less there is to": [65535, 0], "of abundant newspapers often the less there is to justify": [65535, 0], "abundant newspapers often the less there is to justify a": [65535, 0], "newspapers often the less there is to justify a traditional": [65535, 0], "often the less there is to justify a traditional custom": [65535, 0], "the less there is to justify a traditional custom the": [65535, 0], "less there is to justify a traditional custom the harder": [65535, 0], "there is to justify a traditional custom the harder it": [65535, 0], "is to justify a traditional custom the harder it is": [65535, 0], "to justify a traditional custom the harder it is to": [65535, 0], "justify a traditional custom the harder it is to get": [65535, 0], "a traditional custom the harder it is to get rid": [65535, 0], "traditional custom the harder it is to get rid of": [65535, 0], "custom the harder it is to get rid of it": [65535, 0], "the harder it is to get rid of it and": [65535, 0], "harder it is to get rid of it and now": [65535, 0], "it is to get rid of it and now the": [65535, 0], "is to get rid of it and now the minister": [65535, 0], "to get rid of it and now the minister prayed": [65535, 0], "get rid of it and now the minister prayed a": [65535, 0], "rid of it and now the minister prayed a good": [65535, 0], "of it and now the minister prayed a good generous": [65535, 0], "it and now the minister prayed a good generous prayer": [65535, 0], "and now the minister prayed a good generous prayer it": [65535, 0], "now the minister prayed a good generous prayer it was": [65535, 0], "the minister prayed a good generous prayer it was and": [65535, 0], "minister prayed a good generous prayer it was and went": [65535, 0], "prayed a good generous prayer it was and went into": [65535, 0], "a good generous prayer it was and went into details": [65535, 0], "good generous prayer it was and went into details it": [65535, 0], "generous prayer it was and went into details it pleaded": [65535, 0], "prayer it was and went into details it pleaded for": [65535, 0], "it was and went into details it pleaded for the": [65535, 0], "was and went into details it pleaded for the church": [65535, 0], "and went into details it pleaded for the church and": [65535, 0], "went into details it pleaded for the church and the": [65535, 0], "into details it pleaded for the church and the little": [65535, 0], "details it pleaded for the church and the little children": [65535, 0], "it pleaded for the church and the little children of": [65535, 0], "pleaded for the church and the little children of the": [65535, 0], "for the church and the little children of the church": [65535, 0], "the church and the little children of the church for": [65535, 0], "church and the little children of the church for the": [65535, 0], "and the little children of the church for the other": [65535, 0], "the little children of the church for the other churches": [65535, 0], "little children of the church for the other churches of": [65535, 0], "children of the church for the other churches of the": [65535, 0], "of the church for the other churches of the village": [65535, 0], "the church for the other churches of the village for": [65535, 0], "church for the other churches of the village for the": [65535, 0], "for the other churches of the village for the village": [65535, 0], "the other churches of the village for the village itself": [65535, 0], "other churches of the village for the village itself for": [65535, 0], "churches of the village for the village itself for the": [65535, 0], "of the village for the village itself for the county": [65535, 0], "the village for the village itself for the county for": [65535, 0], "village for the village itself for the county for the": [65535, 0], "for the village itself for the county for the state": [65535, 0], "the village itself for the county for the state for": [65535, 0], "village itself for the county for the state for the": [65535, 0], "itself for the county for the state for the state": [65535, 0], "for the county for the state for the state officers": [65535, 0], "the county for the state for the state officers for": [65535, 0], "county for the state for the state officers for the": [65535, 0], "for the state for the state officers for the united": [65535, 0], "the state for the state officers for the united states": [65535, 0], "state for the state officers for the united states for": [65535, 0], "for the state officers for the united states for the": [65535, 0], "the state officers for the united states for the churches": [65535, 0], "state officers for the united states for the churches of": [65535, 0], "officers for the united states for the churches of the": [65535, 0], "for the united states for the churches of the united": [65535, 0], "the united states for the churches of the united states": [65535, 0], "united states for the churches of the united states for": [65535, 0], "states for the churches of the united states for congress": [65535, 0], "for the churches of the united states for congress for": [65535, 0], "the churches of the united states for congress for the": [65535, 0], "churches of the united states for congress for the president": [65535, 0], "of the united states for congress for the president for": [65535, 0], "the united states for congress for the president for the": [65535, 0], "united states for congress for the president for the officers": [65535, 0], "states for congress for the president for the officers of": [65535, 0], "for congress for the president for the officers of the": [65535, 0], "congress for the president for the officers of the government": [65535, 0], "for the president for the officers of the government for": [65535, 0], "the president for the officers of the government for poor": [65535, 0], "president for the officers of the government for poor sailors": [65535, 0], "for the officers of the government for poor sailors tossed": [65535, 0], "the officers of the government for poor sailors tossed by": [65535, 0], "officers of the government for poor sailors tossed by stormy": [65535, 0], "of the government for poor sailors tossed by stormy seas": [65535, 0], "the government for poor sailors tossed by stormy seas for": [65535, 0], "government for poor sailors tossed by stormy seas for the": [65535, 0], "for poor sailors tossed by stormy seas for the oppressed": [65535, 0], "poor sailors tossed by stormy seas for the oppressed millions": [65535, 0], "sailors tossed by stormy seas for the oppressed millions groaning": [65535, 0], "tossed by stormy seas for the oppressed millions groaning under": [65535, 0], "by stormy seas for the oppressed millions groaning under the": [65535, 0], "stormy seas for the oppressed millions groaning under the heel": [65535, 0], "seas for the oppressed millions groaning under the heel of": [65535, 0], "for the oppressed millions groaning under the heel of european": [65535, 0], "the oppressed millions groaning under the heel of european monarchies": [65535, 0], "oppressed millions groaning under the heel of european monarchies and": [65535, 0], "millions groaning under the heel of european monarchies and oriental": [65535, 0], "groaning under the heel of european monarchies and oriental despotisms": [65535, 0], "under the heel of european monarchies and oriental despotisms for": [65535, 0], "the heel of european monarchies and oriental despotisms for such": [65535, 0], "heel of european monarchies and oriental despotisms for such as": [65535, 0], "of european monarchies and oriental despotisms for such as have": [65535, 0], "european monarchies and oriental despotisms for such as have the": [65535, 0], "monarchies and oriental despotisms for such as have the light": [65535, 0], "and oriental despotisms for such as have the light and": [65535, 0], "oriental despotisms for such as have the light and the": [65535, 0], "despotisms for such as have the light and the good": [65535, 0], "for such as have the light and the good tidings": [65535, 0], "such as have the light and the good tidings and": [65535, 0], "as have the light and the good tidings and yet": [65535, 0], "have the light and the good tidings and yet have": [65535, 0], "the light and the good tidings and yet have not": [65535, 0], "light and the good tidings and yet have not eyes": [65535, 0], "and the good tidings and yet have not eyes to": [65535, 0], "the good tidings and yet have not eyes to see": [65535, 0], "good tidings and yet have not eyes to see nor": [65535, 0], "tidings and yet have not eyes to see nor ears": [65535, 0], "and yet have not eyes to see nor ears to": [65535, 0], "yet have not eyes to see nor ears to hear": [65535, 0], "have not eyes to see nor ears to hear withal": [65535, 0], "not eyes to see nor ears to hear withal for": [65535, 0], "eyes to see nor ears to hear withal for the": [65535, 0], "to see nor ears to hear withal for the heathen": [65535, 0], "see nor ears to hear withal for the heathen in": [65535, 0], "nor ears to hear withal for the heathen in the": [65535, 0], "ears to hear withal for the heathen in the far": [65535, 0], "to hear withal for the heathen in the far islands": [65535, 0], "hear withal for the heathen in the far islands of": [65535, 0], "withal for the heathen in the far islands of the": [65535, 0], "for the heathen in the far islands of the sea": [65535, 0], "the heathen in the far islands of the sea and": [65535, 0], "heathen in the far islands of the sea and closed": [65535, 0], "in the far islands of the sea and closed with": [65535, 0], "the far islands of the sea and closed with a": [65535, 0], "far islands of the sea and closed with a supplication": [65535, 0], "islands of the sea and closed with a supplication that": [65535, 0], "of the sea and closed with a supplication that the": [65535, 0], "the sea and closed with a supplication that the words": [65535, 0], "sea and closed with a supplication that the words he": [65535, 0], "and closed with a supplication that the words he was": [65535, 0], "closed with a supplication that the words he was about": [65535, 0], "with a supplication that the words he was about to": [65535, 0], "a supplication that the words he was about to speak": [65535, 0], "supplication that the words he was about to speak might": [65535, 0], "that the words he was about to speak might find": [65535, 0], "the words he was about to speak might find grace": [65535, 0], "words he was about to speak might find grace and": [65535, 0], "he was about to speak might find grace and favor": [65535, 0], "was about to speak might find grace and favor and": [65535, 0], "about to speak might find grace and favor and be": [65535, 0], "to speak might find grace and favor and be as": [65535, 0], "speak might find grace and favor and be as seed": [65535, 0], "might find grace and favor and be as seed sown": [65535, 0], "find grace and favor and be as seed sown in": [65535, 0], "grace and favor and be as seed sown in fertile": [65535, 0], "and favor and be as seed sown in fertile ground": [65535, 0], "favor and be as seed sown in fertile ground yielding": [65535, 0], "and be as seed sown in fertile ground yielding in": [65535, 0], "be as seed sown in fertile ground yielding in time": [65535, 0], "as seed sown in fertile ground yielding in time a": [65535, 0], "seed sown in fertile ground yielding in time a grateful": [65535, 0], "sown in fertile ground yielding in time a grateful harvest": [65535, 0], "in fertile ground yielding in time a grateful harvest of": [65535, 0], "fertile ground yielding in time a grateful harvest of good": [65535, 0], "ground yielding in time a grateful harvest of good amen": [65535, 0], "yielding in time a grateful harvest of good amen there": [65535, 0], "in time a grateful harvest of good amen there was": [65535, 0], "time a grateful harvest of good amen there was a": [65535, 0], "a grateful harvest of good amen there was a rustling": [65535, 0], "grateful harvest of good amen there was a rustling of": [65535, 0], "harvest of good amen there was a rustling of dresses": [65535, 0], "of good amen there was a rustling of dresses and": [65535, 0], "good amen there was a rustling of dresses and the": [65535, 0], "amen there was a rustling of dresses and the standing": [65535, 0], "there was a rustling of dresses and the standing congregation": [65535, 0], "was a rustling of dresses and the standing congregation sat": [65535, 0], "a rustling of dresses and the standing congregation sat down": [65535, 0], "rustling of dresses and the standing congregation sat down the": [65535, 0], "of dresses and the standing congregation sat down the boy": [65535, 0], "dresses and the standing congregation sat down the boy whose": [65535, 0], "and the standing congregation sat down the boy whose history": [65535, 0], "the standing congregation sat down the boy whose history this": [65535, 0], "standing congregation sat down the boy whose history this book": [65535, 0], "congregation sat down the boy whose history this book relates": [65535, 0], "sat down the boy whose history this book relates did": [65535, 0], "down the boy whose history this book relates did not": [65535, 0], "the boy whose history this book relates did not enjoy": [65535, 0], "boy whose history this book relates did not enjoy the": [65535, 0], "whose history this book relates did not enjoy the prayer": [65535, 0], "history this book relates did not enjoy the prayer he": [65535, 0], "this book relates did not enjoy the prayer he only": [65535, 0], "book relates did not enjoy the prayer he only endured": [65535, 0], "relates did not enjoy the prayer he only endured it": [65535, 0], "did not enjoy the prayer he only endured it if": [65535, 0], "not enjoy the prayer he only endured it if he": [65535, 0], "enjoy the prayer he only endured it if he even": [65535, 0], "the prayer he only endured it if he even did": [65535, 0], "prayer he only endured it if he even did that": [65535, 0], "he only endured it if he even did that much": [65535, 0], "only endured it if he even did that much he": [65535, 0], "endured it if he even did that much he was": [65535, 0], "it if he even did that much he was restive": [65535, 0], "if he even did that much he was restive all": [65535, 0], "he even did that much he was restive all through": [65535, 0], "even did that much he was restive all through it": [65535, 0], "did that much he was restive all through it he": [65535, 0], "that much he was restive all through it he kept": [65535, 0], "much he was restive all through it he kept tally": [65535, 0], "he was restive all through it he kept tally of": [65535, 0], "was restive all through it he kept tally of the": [65535, 0], "restive all through it he kept tally of the details": [65535, 0], "all through it he kept tally of the details of": [65535, 0], "through it he kept tally of the details of the": [65535, 0], "it he kept tally of the details of the prayer": [65535, 0], "he kept tally of the details of the prayer unconsciously": [65535, 0], "kept tally of the details of the prayer unconsciously for": [65535, 0], "tally of the details of the prayer unconsciously for he": [65535, 0], "of the details of the prayer unconsciously for he was": [65535, 0], "the details of the prayer unconsciously for he was not": [65535, 0], "details of the prayer unconsciously for he was not listening": [65535, 0], "of the prayer unconsciously for he was not listening but": [65535, 0], "the prayer unconsciously for he was not listening but he": [65535, 0], "prayer unconsciously for he was not listening but he knew": [65535, 0], "unconsciously for he was not listening but he knew the": [65535, 0], "for he was not listening but he knew the ground": [65535, 0], "he was not listening but he knew the ground of": [65535, 0], "was not listening but he knew the ground of old": [65535, 0], "not listening but he knew the ground of old and": [65535, 0], "listening but he knew the ground of old and the": [65535, 0], "but he knew the ground of old and the clergyman's": [65535, 0], "he knew the ground of old and the clergyman's regular": [65535, 0], "knew the ground of old and the clergyman's regular route": [65535, 0], "the ground of old and the clergyman's regular route over": [65535, 0], "ground of old and the clergyman's regular route over it": [65535, 0], "of old and the clergyman's regular route over it and": [65535, 0], "old and the clergyman's regular route over it and when": [65535, 0], "and the clergyman's regular route over it and when a": [65535, 0], "the clergyman's regular route over it and when a little": [65535, 0], "clergyman's regular route over it and when a little trifle": [65535, 0], "regular route over it and when a little trifle of": [65535, 0], "route over it and when a little trifle of new": [65535, 0], "over it and when a little trifle of new matter": [65535, 0], "it and when a little trifle of new matter was": [65535, 0], "and when a little trifle of new matter was interlarded": [65535, 0], "when a little trifle of new matter was interlarded his": [65535, 0], "a little trifle of new matter was interlarded his ear": [65535, 0], "little trifle of new matter was interlarded his ear detected": [65535, 0], "trifle of new matter was interlarded his ear detected it": [65535, 0], "of new matter was interlarded his ear detected it and": [65535, 0], "new matter was interlarded his ear detected it and his": [65535, 0], "matter was interlarded his ear detected it and his whole": [65535, 0], "was interlarded his ear detected it and his whole nature": [65535, 0], "interlarded his ear detected it and his whole nature resented": [65535, 0], "his ear detected it and his whole nature resented it": [65535, 0], "ear detected it and his whole nature resented it he": [65535, 0], "detected it and his whole nature resented it he considered": [65535, 0], "it and his whole nature resented it he considered additions": [65535, 0], "and his whole nature resented it he considered additions unfair": [65535, 0], "his whole nature resented it he considered additions unfair and": [65535, 0], "whole nature resented it he considered additions unfair and scoundrelly": [65535, 0], "nature resented it he considered additions unfair and scoundrelly in": [65535, 0], "resented it he considered additions unfair and scoundrelly in the": [65535, 0], "it he considered additions unfair and scoundrelly in the midst": [65535, 0], "he considered additions unfair and scoundrelly in the midst of": [65535, 0], "considered additions unfair and scoundrelly in the midst of the": [65535, 0], "additions unfair and scoundrelly in the midst of the prayer": [65535, 0], "unfair and scoundrelly in the midst of the prayer a": [65535, 0], "and scoundrelly in the midst of the prayer a fly": [65535, 0], "scoundrelly in the midst of the prayer a fly had": [65535, 0], "in the midst of the prayer a fly had lit": [65535, 0], "the midst of the prayer a fly had lit on": [65535, 0], "midst of the prayer a fly had lit on the": [65535, 0], "of the prayer a fly had lit on the back": [65535, 0], "the prayer a fly had lit on the back of": [65535, 0], "prayer a fly had lit on the back of the": [65535, 0], "a fly had lit on the back of the pew": [65535, 0], "fly had lit on the back of the pew in": [65535, 0], "had lit on the back of the pew in front": [65535, 0], "lit on the back of the pew in front of": [65535, 0], "on the back of the pew in front of him": [65535, 0], "the back of the pew in front of him and": [65535, 0], "back of the pew in front of him and tortured": [65535, 0], "of the pew in front of him and tortured his": [65535, 0], "the pew in front of him and tortured his spirit": [65535, 0], "pew in front of him and tortured his spirit by": [65535, 0], "in front of him and tortured his spirit by calmly": [65535, 0], "front of him and tortured his spirit by calmly rubbing": [65535, 0], "of him and tortured his spirit by calmly rubbing its": [65535, 0], "him and tortured his spirit by calmly rubbing its hands": [65535, 0], "and tortured his spirit by calmly rubbing its hands together": [65535, 0], "tortured his spirit by calmly rubbing its hands together embracing": [65535, 0], "his spirit by calmly rubbing its hands together embracing its": [65535, 0], "spirit by calmly rubbing its hands together embracing its head": [65535, 0], "by calmly rubbing its hands together embracing its head with": [65535, 0], "calmly rubbing its hands together embracing its head with its": [65535, 0], "rubbing its hands together embracing its head with its arms": [65535, 0], "its hands together embracing its head with its arms and": [65535, 0], "hands together embracing its head with its arms and polishing": [65535, 0], "together embracing its head with its arms and polishing it": [65535, 0], "embracing its head with its arms and polishing it so": [65535, 0], "its head with its arms and polishing it so vigorously": [65535, 0], "head with its arms and polishing it so vigorously that": [65535, 0], "with its arms and polishing it so vigorously that it": [65535, 0], "its arms and polishing it so vigorously that it seemed": [65535, 0], "arms and polishing it so vigorously that it seemed to": [65535, 0], "and polishing it so vigorously that it seemed to almost": [65535, 0], "polishing it so vigorously that it seemed to almost part": [65535, 0], "it so vigorously that it seemed to almost part company": [65535, 0], "so vigorously that it seemed to almost part company with": [65535, 0], "vigorously that it seemed to almost part company with the": [65535, 0], "that it seemed to almost part company with the body": [65535, 0], "it seemed to almost part company with the body and": [65535, 0], "seemed to almost part company with the body and the": [65535, 0], "to almost part company with the body and the slender": [65535, 0], "almost part company with the body and the slender thread": [65535, 0], "part company with the body and the slender thread of": [65535, 0], "company with the body and the slender thread of a": [65535, 0], "with the body and the slender thread of a neck": [65535, 0], "the body and the slender thread of a neck was": [65535, 0], "body and the slender thread of a neck was exposed": [65535, 0], "and the slender thread of a neck was exposed to": [65535, 0], "the slender thread of a neck was exposed to view": [65535, 0], "slender thread of a neck was exposed to view scraping": [65535, 0], "thread of a neck was exposed to view scraping its": [65535, 0], "of a neck was exposed to view scraping its wings": [65535, 0], "a neck was exposed to view scraping its wings with": [65535, 0], "neck was exposed to view scraping its wings with its": [65535, 0], "was exposed to view scraping its wings with its hind": [65535, 0], "exposed to view scraping its wings with its hind legs": [65535, 0], "to view scraping its wings with its hind legs and": [65535, 0], "view scraping its wings with its hind legs and smoothing": [65535, 0], "scraping its wings with its hind legs and smoothing them": [65535, 0], "its wings with its hind legs and smoothing them to": [65535, 0], "wings with its hind legs and smoothing them to its": [65535, 0], "with its hind legs and smoothing them to its body": [65535, 0], "its hind legs and smoothing them to its body as": [65535, 0], "hind legs and smoothing them to its body as if": [65535, 0], "legs and smoothing them to its body as if they": [65535, 0], "and smoothing them to its body as if they had": [65535, 0], "smoothing them to its body as if they had been": [65535, 0], "them to its body as if they had been coat": [65535, 0], "to its body as if they had been coat tails": [65535, 0], "its body as if they had been coat tails going": [65535, 0], "body as if they had been coat tails going through": [65535, 0], "as if they had been coat tails going through its": [65535, 0], "if they had been coat tails going through its whole": [65535, 0], "they had been coat tails going through its whole toilet": [65535, 0], "had been coat tails going through its whole toilet as": [65535, 0], "been coat tails going through its whole toilet as tranquilly": [65535, 0], "coat tails going through its whole toilet as tranquilly as": [65535, 0], "tails going through its whole toilet as tranquilly as if": [65535, 0], "going through its whole toilet as tranquilly as if it": [65535, 0], "through its whole toilet as tranquilly as if it knew": [65535, 0], "its whole toilet as tranquilly as if it knew it": [65535, 0], "whole toilet as tranquilly as if it knew it was": [65535, 0], "toilet as tranquilly as if it knew it was perfectly": [65535, 0], "as tranquilly as if it knew it was perfectly safe": [65535, 0], "tranquilly as if it knew it was perfectly safe as": [65535, 0], "as if it knew it was perfectly safe as indeed": [65535, 0], "if it knew it was perfectly safe as indeed it": [65535, 0], "it knew it was perfectly safe as indeed it was": [65535, 0], "knew it was perfectly safe as indeed it was for": [65535, 0], "it was perfectly safe as indeed it was for as": [65535, 0], "was perfectly safe as indeed it was for as sorely": [65535, 0], "perfectly safe as indeed it was for as sorely as": [65535, 0], "safe as indeed it was for as sorely as tom's": [65535, 0], "as indeed it was for as sorely as tom's hands": [65535, 0], "indeed it was for as sorely as tom's hands itched": [65535, 0], "it was for as sorely as tom's hands itched to": [65535, 0], "was for as sorely as tom's hands itched to grab": [65535, 0], "for as sorely as tom's hands itched to grab for": [65535, 0], "as sorely as tom's hands itched to grab for it": [65535, 0], "sorely as tom's hands itched to grab for it they": [65535, 0], "as tom's hands itched to grab for it they did": [65535, 0], "tom's hands itched to grab for it they did not": [65535, 0], "hands itched to grab for it they did not dare": [65535, 0], "itched to grab for it they did not dare he": [65535, 0], "to grab for it they did not dare he believed": [65535, 0], "grab for it they did not dare he believed his": [65535, 0], "for it they did not dare he believed his soul": [65535, 0], "it they did not dare he believed his soul would": [65535, 0], "they did not dare he believed his soul would be": [65535, 0], "did not dare he believed his soul would be instantly": [65535, 0], "not dare he believed his soul would be instantly destroyed": [65535, 0], "dare he believed his soul would be instantly destroyed if": [65535, 0], "he believed his soul would be instantly destroyed if he": [65535, 0], "believed his soul would be instantly destroyed if he did": [65535, 0], "his soul would be instantly destroyed if he did such": [65535, 0], "soul would be instantly destroyed if he did such a": [65535, 0], "would be instantly destroyed if he did such a thing": [65535, 0], "be instantly destroyed if he did such a thing while": [65535, 0], "instantly destroyed if he did such a thing while the": [65535, 0], "destroyed if he did such a thing while the prayer": [65535, 0], "if he did such a thing while the prayer was": [65535, 0], "he did such a thing while the prayer was going": [65535, 0], "did such a thing while the prayer was going on": [65535, 0], "such a thing while the prayer was going on but": [65535, 0], "a thing while the prayer was going on but with": [65535, 0], "thing while the prayer was going on but with the": [65535, 0], "while the prayer was going on but with the closing": [65535, 0], "the prayer was going on but with the closing sentence": [65535, 0], "prayer was going on but with the closing sentence his": [65535, 0], "was going on but with the closing sentence his hand": [65535, 0], "going on but with the closing sentence his hand began": [65535, 0], "on but with the closing sentence his hand began to": [65535, 0], "but with the closing sentence his hand began to curve": [65535, 0], "with the closing sentence his hand began to curve and": [65535, 0], "the closing sentence his hand began to curve and steal": [65535, 0], "closing sentence his hand began to curve and steal forward": [65535, 0], "sentence his hand began to curve and steal forward and": [65535, 0], "his hand began to curve and steal forward and the": [65535, 0], "hand began to curve and steal forward and the instant": [65535, 0], "began to curve and steal forward and the instant the": [65535, 0], "to curve and steal forward and the instant the amen": [65535, 0], "curve and steal forward and the instant the amen was": [65535, 0], "and steal forward and the instant the amen was out": [65535, 0], "steal forward and the instant the amen was out the": [65535, 0], "forward and the instant the amen was out the fly": [65535, 0], "and the instant the amen was out the fly was": [65535, 0], "the instant the amen was out the fly was a": [65535, 0], "instant the amen was out the fly was a prisoner": [65535, 0], "the amen was out the fly was a prisoner of": [65535, 0], "amen was out the fly was a prisoner of war": [65535, 0], "was out the fly was a prisoner of war his": [65535, 0], "out the fly was a prisoner of war his aunt": [65535, 0], "the fly was a prisoner of war his aunt detected": [65535, 0], "fly was a prisoner of war his aunt detected the": [65535, 0], "was a prisoner of war his aunt detected the act": [65535, 0], "a prisoner of war his aunt detected the act and": [65535, 0], "prisoner of war his aunt detected the act and made": [65535, 0], "of war his aunt detected the act and made him": [65535, 0], "war his aunt detected the act and made him let": [65535, 0], "his aunt detected the act and made him let it": [65535, 0], "aunt detected the act and made him let it go": [65535, 0], "detected the act and made him let it go the": [65535, 0], "the act and made him let it go the minister": [65535, 0], "act and made him let it go the minister gave": [65535, 0], "and made him let it go the minister gave out": [65535, 0], "made him let it go the minister gave out his": [65535, 0], "him let it go the minister gave out his text": [65535, 0], "let it go the minister gave out his text and": [65535, 0], "it go the minister gave out his text and droned": [65535, 0], "go the minister gave out his text and droned along": [65535, 0], "the minister gave out his text and droned along monotonously": [65535, 0], "minister gave out his text and droned along monotonously through": [65535, 0], "gave out his text and droned along monotonously through an": [65535, 0], "out his text and droned along monotonously through an argument": [65535, 0], "his text and droned along monotonously through an argument that": [65535, 0], "text and droned along monotonously through an argument that was": [65535, 0], "and droned along monotonously through an argument that was so": [65535, 0], "droned along monotonously through an argument that was so prosy": [65535, 0], "along monotonously through an argument that was so prosy that": [65535, 0], "monotonously through an argument that was so prosy that many": [65535, 0], "through an argument that was so prosy that many a": [65535, 0], "an argument that was so prosy that many a head": [65535, 0], "argument that was so prosy that many a head by": [65535, 0], "that was so prosy that many a head by and": [65535, 0], "was so prosy that many a head by and by": [65535, 0], "so prosy that many a head by and by began": [65535, 0], "prosy that many a head by and by began to": [65535, 0], "that many a head by and by began to nod": [65535, 0], "many a head by and by began to nod and": [65535, 0], "a head by and by began to nod and yet": [65535, 0], "head by and by began to nod and yet it": [65535, 0], "by and by began to nod and yet it was": [65535, 0], "and by began to nod and yet it was an": [65535, 0], "by began to nod and yet it was an argument": [65535, 0], "began to nod and yet it was an argument that": [65535, 0], "to nod and yet it was an argument that dealt": [65535, 0], "nod and yet it was an argument that dealt in": [65535, 0], "and yet it was an argument that dealt in limitless": [65535, 0], "yet it was an argument that dealt in limitless fire": [65535, 0], "it was an argument that dealt in limitless fire and": [65535, 0], "was an argument that dealt in limitless fire and brimstone": [65535, 0], "an argument that dealt in limitless fire and brimstone and": [65535, 0], "argument that dealt in limitless fire and brimstone and thinned": [65535, 0], "that dealt in limitless fire and brimstone and thinned the": [65535, 0], "dealt in limitless fire and brimstone and thinned the predestined": [65535, 0], "in limitless fire and brimstone and thinned the predestined elect": [65535, 0], "limitless fire and brimstone and thinned the predestined elect down": [65535, 0], "fire and brimstone and thinned the predestined elect down to": [65535, 0], "and brimstone and thinned the predestined elect down to a": [65535, 0], "brimstone and thinned the predestined elect down to a company": [65535, 0], "and thinned the predestined elect down to a company so": [65535, 0], "thinned the predestined elect down to a company so small": [65535, 0], "the predestined elect down to a company so small as": [65535, 0], "predestined elect down to a company so small as to": [65535, 0], "elect down to a company so small as to be": [65535, 0], "down to a company so small as to be hardly": [65535, 0], "to a company so small as to be hardly worth": [65535, 0], "a company so small as to be hardly worth the": [65535, 0], "company so small as to be hardly worth the saving": [65535, 0], "so small as to be hardly worth the saving tom": [65535, 0], "small as to be hardly worth the saving tom counted": [65535, 0], "as to be hardly worth the saving tom counted the": [65535, 0], "to be hardly worth the saving tom counted the pages": [65535, 0], "be hardly worth the saving tom counted the pages of": [65535, 0], "hardly worth the saving tom counted the pages of the": [65535, 0], "worth the saving tom counted the pages of the sermon": [65535, 0], "the saving tom counted the pages of the sermon after": [65535, 0], "saving tom counted the pages of the sermon after church": [65535, 0], "tom counted the pages of the sermon after church he": [65535, 0], "counted the pages of the sermon after church he always": [65535, 0], "the pages of the sermon after church he always knew": [65535, 0], "pages of the sermon after church he always knew how": [65535, 0], "of the sermon after church he always knew how many": [65535, 0], "the sermon after church he always knew how many pages": [65535, 0], "sermon after church he always knew how many pages there": [65535, 0], "after church he always knew how many pages there had": [65535, 0], "church he always knew how many pages there had been": [65535, 0], "he always knew how many pages there had been but": [65535, 0], "always knew how many pages there had been but he": [65535, 0], "knew how many pages there had been but he seldom": [65535, 0], "how many pages there had been but he seldom knew": [65535, 0], "many pages there had been but he seldom knew anything": [65535, 0], "pages there had been but he seldom knew anything else": [65535, 0], "there had been but he seldom knew anything else about": [65535, 0], "had been but he seldom knew anything else about the": [65535, 0], "been but he seldom knew anything else about the discourse": [65535, 0], "but he seldom knew anything else about the discourse however": [65535, 0], "he seldom knew anything else about the discourse however this": [65535, 0], "seldom knew anything else about the discourse however this time": [65535, 0], "knew anything else about the discourse however this time he": [65535, 0], "anything else about the discourse however this time he was": [65535, 0], "else about the discourse however this time he was really": [65535, 0], "about the discourse however this time he was really interested": [65535, 0], "the discourse however this time he was really interested for": [65535, 0], "discourse however this time he was really interested for a": [65535, 0], "however this time he was really interested for a little": [65535, 0], "this time he was really interested for a little while": [65535, 0], "time he was really interested for a little while the": [65535, 0], "he was really interested for a little while the minister": [65535, 0], "was really interested for a little while the minister made": [65535, 0], "really interested for a little while the minister made a": [65535, 0], "interested for a little while the minister made a grand": [65535, 0], "for a little while the minister made a grand and": [65535, 0], "a little while the minister made a grand and moving": [65535, 0], "little while the minister made a grand and moving picture": [65535, 0], "while the minister made a grand and moving picture of": [65535, 0], "the minister made a grand and moving picture of the": [65535, 0], "minister made a grand and moving picture of the assembling": [65535, 0], "made a grand and moving picture of the assembling together": [65535, 0], "a grand and moving picture of the assembling together of": [65535, 0], "grand and moving picture of the assembling together of the": [65535, 0], "and moving picture of the assembling together of the world's": [65535, 0], "moving picture of the assembling together of the world's hosts": [65535, 0], "picture of the assembling together of the world's hosts at": [65535, 0], "of the assembling together of the world's hosts at the": [65535, 0], "the assembling together of the world's hosts at the millennium": [65535, 0], "assembling together of the world's hosts at the millennium when": [65535, 0], "together of the world's hosts at the millennium when the": [65535, 0], "of the world's hosts at the millennium when the lion": [65535, 0], "the world's hosts at the millennium when the lion and": [65535, 0], "world's hosts at the millennium when the lion and the": [65535, 0], "hosts at the millennium when the lion and the lamb": [65535, 0], "at the millennium when the lion and the lamb should": [65535, 0], "the millennium when the lion and the lamb should lie": [65535, 0], "millennium when the lion and the lamb should lie down": [65535, 0], "when the lion and the lamb should lie down together": [65535, 0], "the lion and the lamb should lie down together and": [65535, 0], "lion and the lamb should lie down together and a": [65535, 0], "and the lamb should lie down together and a little": [65535, 0], "the lamb should lie down together and a little child": [65535, 0], "lamb should lie down together and a little child should": [65535, 0], "should lie down together and a little child should lead": [65535, 0], "lie down together and a little child should lead them": [65535, 0], "down together and a little child should lead them but": [65535, 0], "together and a little child should lead them but the": [65535, 0], "and a little child should lead them but the pathos": [65535, 0], "a little child should lead them but the pathos the": [65535, 0], "little child should lead them but the pathos the lesson": [65535, 0], "child should lead them but the pathos the lesson the": [65535, 0], "should lead them but the pathos the lesson the moral": [65535, 0], "lead them but the pathos the lesson the moral of": [65535, 0], "them but the pathos the lesson the moral of the": [65535, 0], "but the pathos the lesson the moral of the great": [65535, 0], "the pathos the lesson the moral of the great spectacle": [65535, 0], "pathos the lesson the moral of the great spectacle were": [65535, 0], "the lesson the moral of the great spectacle were lost": [65535, 0], "lesson the moral of the great spectacle were lost upon": [65535, 0], "the moral of the great spectacle were lost upon the": [65535, 0], "moral of the great spectacle were lost upon the boy": [65535, 0], "of the great spectacle were lost upon the boy he": [65535, 0], "the great spectacle were lost upon the boy he only": [65535, 0], "great spectacle were lost upon the boy he only thought": [65535, 0], "spectacle were lost upon the boy he only thought of": [65535, 0], "were lost upon the boy he only thought of the": [65535, 0], "lost upon the boy he only thought of the conspicuousness": [65535, 0], "upon the boy he only thought of the conspicuousness of": [65535, 0], "the boy he only thought of the conspicuousness of the": [65535, 0], "boy he only thought of the conspicuousness of the principal": [65535, 0], "he only thought of the conspicuousness of the principal character": [65535, 0], "only thought of the conspicuousness of the principal character before": [65535, 0], "thought of the conspicuousness of the principal character before the": [65535, 0], "of the conspicuousness of the principal character before the on": [65535, 0], "the conspicuousness of the principal character before the on looking": [65535, 0], "conspicuousness of the principal character before the on looking nations": [65535, 0], "of the principal character before the on looking nations his": [65535, 0], "the principal character before the on looking nations his face": [65535, 0], "principal character before the on looking nations his face lit": [65535, 0], "character before the on looking nations his face lit with": [65535, 0], "before the on looking nations his face lit with the": [65535, 0], "the on looking nations his face lit with the thought": [65535, 0], "on looking nations his face lit with the thought and": [65535, 0], "looking nations his face lit with the thought and he": [65535, 0], "nations his face lit with the thought and he said": [65535, 0], "his face lit with the thought and he said to": [65535, 0], "face lit with the thought and he said to himself": [65535, 0], "lit with the thought and he said to himself that": [65535, 0], "with the thought and he said to himself that he": [65535, 0], "the thought and he said to himself that he wished": [65535, 0], "thought and he said to himself that he wished he": [65535, 0], "and he said to himself that he wished he could": [65535, 0], "he said to himself that he wished he could be": [65535, 0], "said to himself that he wished he could be that": [65535, 0], "to himself that he wished he could be that child": [65535, 0], "himself that he wished he could be that child if": [65535, 0], "that he wished he could be that child if it": [65535, 0], "he wished he could be that child if it was": [65535, 0], "wished he could be that child if it was a": [65535, 0], "he could be that child if it was a tame": [65535, 0], "could be that child if it was a tame lion": [65535, 0], "be that child if it was a tame lion now": [65535, 0], "that child if it was a tame lion now he": [65535, 0], "child if it was a tame lion now he lapsed": [65535, 0], "if it was a tame lion now he lapsed into": [65535, 0], "it was a tame lion now he lapsed into suffering": [65535, 0], "was a tame lion now he lapsed into suffering again": [65535, 0], "a tame lion now he lapsed into suffering again as": [65535, 0], "tame lion now he lapsed into suffering again as the": [65535, 0], "lion now he lapsed into suffering again as the dry": [65535, 0], "now he lapsed into suffering again as the dry argument": [65535, 0], "he lapsed into suffering again as the dry argument was": [65535, 0], "lapsed into suffering again as the dry argument was resumed": [65535, 0], "into suffering again as the dry argument was resumed presently": [65535, 0], "suffering again as the dry argument was resumed presently he": [65535, 0], "again as the dry argument was resumed presently he bethought": [65535, 0], "as the dry argument was resumed presently he bethought him": [65535, 0], "the dry argument was resumed presently he bethought him of": [65535, 0], "dry argument was resumed presently he bethought him of a": [65535, 0], "argument was resumed presently he bethought him of a treasure": [65535, 0], "was resumed presently he bethought him of a treasure he": [65535, 0], "resumed presently he bethought him of a treasure he had": [65535, 0], "presently he bethought him of a treasure he had and": [65535, 0], "he bethought him of a treasure he had and got": [65535, 0], "bethought him of a treasure he had and got it": [65535, 0], "him of a treasure he had and got it out": [65535, 0], "of a treasure he had and got it out it": [65535, 0], "a treasure he had and got it out it was": [65535, 0], "treasure he had and got it out it was a": [65535, 0], "he had and got it out it was a large": [65535, 0], "had and got it out it was a large black": [65535, 0], "and got it out it was a large black beetle": [65535, 0], "got it out it was a large black beetle with": [65535, 0], "it out it was a large black beetle with formidable": [65535, 0], "out it was a large black beetle with formidable jaws": [65535, 0], "it was a large black beetle with formidable jaws a": [65535, 0], "was a large black beetle with formidable jaws a pinchbug": [65535, 0], "a large black beetle with formidable jaws a pinchbug he": [65535, 0], "large black beetle with formidable jaws a pinchbug he called": [65535, 0], "black beetle with formidable jaws a pinchbug he called it": [65535, 0], "beetle with formidable jaws a pinchbug he called it it": [65535, 0], "with formidable jaws a pinchbug he called it it was": [65535, 0], "formidable jaws a pinchbug he called it it was in": [65535, 0], "jaws a pinchbug he called it it was in a": [65535, 0], "a pinchbug he called it it was in a percussion": [65535, 0], "pinchbug he called it it was in a percussion cap": [65535, 0], "he called it it was in a percussion cap box": [65535, 0], "called it it was in a percussion cap box the": [65535, 0], "it it was in a percussion cap box the first": [65535, 0], "it was in a percussion cap box the first thing": [65535, 0], "was in a percussion cap box the first thing the": [65535, 0], "in a percussion cap box the first thing the beetle": [65535, 0], "a percussion cap box the first thing the beetle did": [65535, 0], "percussion cap box the first thing the beetle did was": [65535, 0], "cap box the first thing the beetle did was to": [65535, 0], "box the first thing the beetle did was to take": [65535, 0], "the first thing the beetle did was to take him": [65535, 0], "first thing the beetle did was to take him by": [65535, 0], "thing the beetle did was to take him by the": [65535, 0], "the beetle did was to take him by the finger": [65535, 0], "beetle did was to take him by the finger a": [65535, 0], "did was to take him by the finger a natural": [65535, 0], "was to take him by the finger a natural fillip": [65535, 0], "to take him by the finger a natural fillip followed": [65535, 0], "take him by the finger a natural fillip followed the": [65535, 0], "him by the finger a natural fillip followed the beetle": [65535, 0], "by the finger a natural fillip followed the beetle went": [65535, 0], "the finger a natural fillip followed the beetle went floundering": [65535, 0], "finger a natural fillip followed the beetle went floundering into": [65535, 0], "a natural fillip followed the beetle went floundering into the": [65535, 0], "natural fillip followed the beetle went floundering into the aisle": [65535, 0], "fillip followed the beetle went floundering into the aisle and": [65535, 0], "followed the beetle went floundering into the aisle and lit": [65535, 0], "the beetle went floundering into the aisle and lit on": [65535, 0], "beetle went floundering into the aisle and lit on its": [65535, 0], "went floundering into the aisle and lit on its back": [65535, 0], "floundering into the aisle and lit on its back and": [65535, 0], "into the aisle and lit on its back and the": [65535, 0], "the aisle and lit on its back and the hurt": [65535, 0], "aisle and lit on its back and the hurt finger": [65535, 0], "and lit on its back and the hurt finger went": [65535, 0], "lit on its back and the hurt finger went into": [65535, 0], "on its back and the hurt finger went into the": [65535, 0], "its back and the hurt finger went into the boy's": [65535, 0], "back and the hurt finger went into the boy's mouth": [65535, 0], "and the hurt finger went into the boy's mouth the": [65535, 0], "the hurt finger went into the boy's mouth the beetle": [65535, 0], "hurt finger went into the boy's mouth the beetle lay": [65535, 0], "finger went into the boy's mouth the beetle lay there": [65535, 0], "went into the boy's mouth the beetle lay there working": [65535, 0], "into the boy's mouth the beetle lay there working its": [65535, 0], "the boy's mouth the beetle lay there working its helpless": [65535, 0], "boy's mouth the beetle lay there working its helpless legs": [65535, 0], "mouth the beetle lay there working its helpless legs unable": [65535, 0], "the beetle lay there working its helpless legs unable to": [65535, 0], "beetle lay there working its helpless legs unable to turn": [65535, 0], "lay there working its helpless legs unable to turn over": [65535, 0], "there working its helpless legs unable to turn over tom": [65535, 0], "working its helpless legs unable to turn over tom eyed": [65535, 0], "its helpless legs unable to turn over tom eyed it": [65535, 0], "helpless legs unable to turn over tom eyed it and": [65535, 0], "legs unable to turn over tom eyed it and longed": [65535, 0], "unable to turn over tom eyed it and longed for": [65535, 0], "to turn over tom eyed it and longed for it": [65535, 0], "turn over tom eyed it and longed for it but": [65535, 0], "over tom eyed it and longed for it but it": [65535, 0], "tom eyed it and longed for it but it was": [65535, 0], "eyed it and longed for it but it was safe": [65535, 0], "it and longed for it but it was safe out": [65535, 0], "and longed for it but it was safe out of": [65535, 0], "longed for it but it was safe out of his": [65535, 0], "for it but it was safe out of his reach": [65535, 0], "it but it was safe out of his reach other": [65535, 0], "but it was safe out of his reach other people": [65535, 0], "it was safe out of his reach other people uninterested": [65535, 0], "was safe out of his reach other people uninterested in": [65535, 0], "safe out of his reach other people uninterested in the": [65535, 0], "out of his reach other people uninterested in the sermon": [65535, 0], "of his reach other people uninterested in the sermon found": [65535, 0], "his reach other people uninterested in the sermon found relief": [65535, 0], "reach other people uninterested in the sermon found relief in": [65535, 0], "other people uninterested in the sermon found relief in the": [65535, 0], "people uninterested in the sermon found relief in the beetle": [65535, 0], "uninterested in the sermon found relief in the beetle and": [65535, 0], "in the sermon found relief in the beetle and they": [65535, 0], "the sermon found relief in the beetle and they eyed": [65535, 0], "sermon found relief in the beetle and they eyed it": [65535, 0], "found relief in the beetle and they eyed it too": [65535, 0], "relief in the beetle and they eyed it too presently": [65535, 0], "in the beetle and they eyed it too presently a": [65535, 0], "the beetle and they eyed it too presently a vagrant": [65535, 0], "beetle and they eyed it too presently a vagrant poodle": [65535, 0], "and they eyed it too presently a vagrant poodle dog": [65535, 0], "they eyed it too presently a vagrant poodle dog came": [65535, 0], "eyed it too presently a vagrant poodle dog came idling": [65535, 0], "it too presently a vagrant poodle dog came idling along": [65535, 0], "too presently a vagrant poodle dog came idling along sad": [65535, 0], "presently a vagrant poodle dog came idling along sad at": [65535, 0], "a vagrant poodle dog came idling along sad at heart": [65535, 0], "vagrant poodle dog came idling along sad at heart lazy": [65535, 0], "poodle dog came idling along sad at heart lazy with": [65535, 0], "dog came idling along sad at heart lazy with the": [65535, 0], "came idling along sad at heart lazy with the summer": [65535, 0], "idling along sad at heart lazy with the summer softness": [65535, 0], "along sad at heart lazy with the summer softness and": [65535, 0], "sad at heart lazy with the summer softness and the": [65535, 0], "at heart lazy with the summer softness and the quiet": [65535, 0], "heart lazy with the summer softness and the quiet weary": [65535, 0], "lazy with the summer softness and the quiet weary of": [65535, 0], "with the summer softness and the quiet weary of captivity": [65535, 0], "the summer softness and the quiet weary of captivity sighing": [65535, 0], "summer softness and the quiet weary of captivity sighing for": [65535, 0], "softness and the quiet weary of captivity sighing for change": [65535, 0], "and the quiet weary of captivity sighing for change he": [65535, 0], "the quiet weary of captivity sighing for change he spied": [65535, 0], "quiet weary of captivity sighing for change he spied the": [65535, 0], "weary of captivity sighing for change he spied the beetle": [65535, 0], "of captivity sighing for change he spied the beetle the": [65535, 0], "captivity sighing for change he spied the beetle the drooping": [65535, 0], "sighing for change he spied the beetle the drooping tail": [65535, 0], "for change he spied the beetle the drooping tail lifted": [65535, 0], "change he spied the beetle the drooping tail lifted and": [65535, 0], "he spied the beetle the drooping tail lifted and wagged": [65535, 0], "spied the beetle the drooping tail lifted and wagged he": [65535, 0], "the beetle the drooping tail lifted and wagged he surveyed": [65535, 0], "beetle the drooping tail lifted and wagged he surveyed the": [65535, 0], "the drooping tail lifted and wagged he surveyed the prize": [65535, 0], "drooping tail lifted and wagged he surveyed the prize walked": [65535, 0], "tail lifted and wagged he surveyed the prize walked around": [65535, 0], "lifted and wagged he surveyed the prize walked around it": [65535, 0], "and wagged he surveyed the prize walked around it smelt": [65535, 0], "wagged he surveyed the prize walked around it smelt at": [65535, 0], "he surveyed the prize walked around it smelt at it": [65535, 0], "surveyed the prize walked around it smelt at it from": [65535, 0], "the prize walked around it smelt at it from a": [65535, 0], "prize walked around it smelt at it from a safe": [65535, 0], "walked around it smelt at it from a safe distance": [65535, 0], "around it smelt at it from a safe distance walked": [65535, 0], "it smelt at it from a safe distance walked around": [65535, 0], "smelt at it from a safe distance walked around it": [65535, 0], "at it from a safe distance walked around it again": [65535, 0], "it from a safe distance walked around it again grew": [65535, 0], "from a safe distance walked around it again grew bolder": [65535, 0], "a safe distance walked around it again grew bolder and": [65535, 0], "safe distance walked around it again grew bolder and took": [65535, 0], "distance walked around it again grew bolder and took a": [65535, 0], "walked around it again grew bolder and took a closer": [65535, 0], "around it again grew bolder and took a closer smell": [65535, 0], "it again grew bolder and took a closer smell then": [65535, 0], "again grew bolder and took a closer smell then lifted": [65535, 0], "grew bolder and took a closer smell then lifted his": [65535, 0], "bolder and took a closer smell then lifted his lip": [65535, 0], "and took a closer smell then lifted his lip and": [65535, 0], "took a closer smell then lifted his lip and made": [65535, 0], "a closer smell then lifted his lip and made a": [65535, 0], "closer smell then lifted his lip and made a gingerly": [65535, 0], "smell then lifted his lip and made a gingerly snatch": [65535, 0], "then lifted his lip and made a gingerly snatch at": [65535, 0], "lifted his lip and made a gingerly snatch at it": [65535, 0], "his lip and made a gingerly snatch at it just": [65535, 0], "lip and made a gingerly snatch at it just missing": [65535, 0], "and made a gingerly snatch at it just missing it": [65535, 0], "made a gingerly snatch at it just missing it made": [65535, 0], "a gingerly snatch at it just missing it made another": [65535, 0], "gingerly snatch at it just missing it made another and": [65535, 0], "snatch at it just missing it made another and another": [65535, 0], "at it just missing it made another and another began": [65535, 0], "it just missing it made another and another began to": [65535, 0], "just missing it made another and another began to enjoy": [65535, 0], "missing it made another and another began to enjoy the": [65535, 0], "it made another and another began to enjoy the diversion": [65535, 0], "made another and another began to enjoy the diversion subsided": [65535, 0], "another and another began to enjoy the diversion subsided to": [65535, 0], "and another began to enjoy the diversion subsided to his": [65535, 0], "another began to enjoy the diversion subsided to his stomach": [65535, 0], "began to enjoy the diversion subsided to his stomach with": [65535, 0], "to enjoy the diversion subsided to his stomach with the": [65535, 0], "enjoy the diversion subsided to his stomach with the beetle": [65535, 0], "the diversion subsided to his stomach with the beetle between": [65535, 0], "diversion subsided to his stomach with the beetle between his": [65535, 0], "subsided to his stomach with the beetle between his paws": [65535, 0], "to his stomach with the beetle between his paws and": [65535, 0], "his stomach with the beetle between his paws and continued": [65535, 0], "stomach with the beetle between his paws and continued his": [65535, 0], "with the beetle between his paws and continued his experiments": [65535, 0], "the beetle between his paws and continued his experiments grew": [65535, 0], "beetle between his paws and continued his experiments grew weary": [65535, 0], "between his paws and continued his experiments grew weary at": [65535, 0], "his paws and continued his experiments grew weary at last": [65535, 0], "paws and continued his experiments grew weary at last and": [65535, 0], "and continued his experiments grew weary at last and then": [65535, 0], "continued his experiments grew weary at last and then indifferent": [65535, 0], "his experiments grew weary at last and then indifferent and": [65535, 0], "experiments grew weary at last and then indifferent and absent": [65535, 0], "grew weary at last and then indifferent and absent minded": [65535, 0], "weary at last and then indifferent and absent minded his": [65535, 0], "at last and then indifferent and absent minded his head": [65535, 0], "last and then indifferent and absent minded his head nodded": [65535, 0], "and then indifferent and absent minded his head nodded and": [65535, 0], "then indifferent and absent minded his head nodded and little": [65535, 0], "indifferent and absent minded his head nodded and little by": [65535, 0], "and absent minded his head nodded and little by little": [65535, 0], "absent minded his head nodded and little by little his": [65535, 0], "minded his head nodded and little by little his chin": [65535, 0], "his head nodded and little by little his chin descended": [65535, 0], "head nodded and little by little his chin descended and": [65535, 0], "nodded and little by little his chin descended and touched": [65535, 0], "and little by little his chin descended and touched the": [65535, 0], "little by little his chin descended and touched the enemy": [65535, 0], "by little his chin descended and touched the enemy who": [65535, 0], "little his chin descended and touched the enemy who seized": [65535, 0], "his chin descended and touched the enemy who seized it": [65535, 0], "chin descended and touched the enemy who seized it there": [65535, 0], "descended and touched the enemy who seized it there was": [65535, 0], "and touched the enemy who seized it there was a": [65535, 0], "touched the enemy who seized it there was a sharp": [65535, 0], "the enemy who seized it there was a sharp yelp": [65535, 0], "enemy who seized it there was a sharp yelp a": [65535, 0], "who seized it there was a sharp yelp a flirt": [65535, 0], "seized it there was a sharp yelp a flirt of": [65535, 0], "it there was a sharp yelp a flirt of the": [65535, 0], "there was a sharp yelp a flirt of the poodle's": [65535, 0], "was a sharp yelp a flirt of the poodle's head": [65535, 0], "a sharp yelp a flirt of the poodle's head and": [65535, 0], "sharp yelp a flirt of the poodle's head and the": [65535, 0], "yelp a flirt of the poodle's head and the beetle": [65535, 0], "a flirt of the poodle's head and the beetle fell": [65535, 0], "flirt of the poodle's head and the beetle fell a": [65535, 0], "of the poodle's head and the beetle fell a couple": [65535, 0], "the poodle's head and the beetle fell a couple of": [65535, 0], "poodle's head and the beetle fell a couple of yards": [65535, 0], "head and the beetle fell a couple of yards away": [65535, 0], "and the beetle fell a couple of yards away and": [65535, 0], "the beetle fell a couple of yards away and lit": [65535, 0], "beetle fell a couple of yards away and lit on": [65535, 0], "fell a couple of yards away and lit on its": [65535, 0], "a couple of yards away and lit on its back": [65535, 0], "couple of yards away and lit on its back once": [65535, 0], "of yards away and lit on its back once more": [65535, 0], "yards away and lit on its back once more the": [65535, 0], "away and lit on its back once more the neighboring": [65535, 0], "and lit on its back once more the neighboring spectators": [65535, 0], "lit on its back once more the neighboring spectators shook": [65535, 0], "on its back once more the neighboring spectators shook with": [65535, 0], "its back once more the neighboring spectators shook with a": [65535, 0], "back once more the neighboring spectators shook with a gentle": [65535, 0], "once more the neighboring spectators shook with a gentle inward": [65535, 0], "more the neighboring spectators shook with a gentle inward joy": [65535, 0], "the neighboring spectators shook with a gentle inward joy several": [65535, 0], "neighboring spectators shook with a gentle inward joy several faces": [65535, 0], "spectators shook with a gentle inward joy several faces went": [65535, 0], "shook with a gentle inward joy several faces went behind": [65535, 0], "with a gentle inward joy several faces went behind fans": [65535, 0], "a gentle inward joy several faces went behind fans and": [65535, 0], "gentle inward joy several faces went behind fans and handkerchiefs": [65535, 0], "inward joy several faces went behind fans and handkerchiefs and": [65535, 0], "joy several faces went behind fans and handkerchiefs and tom": [65535, 0], "several faces went behind fans and handkerchiefs and tom was": [65535, 0], "faces went behind fans and handkerchiefs and tom was entirely": [65535, 0], "went behind fans and handkerchiefs and tom was entirely happy": [65535, 0], "behind fans and handkerchiefs and tom was entirely happy the": [65535, 0], "fans and handkerchiefs and tom was entirely happy the dog": [65535, 0], "and handkerchiefs and tom was entirely happy the dog looked": [65535, 0], "handkerchiefs and tom was entirely happy the dog looked foolish": [65535, 0], "and tom was entirely happy the dog looked foolish and": [65535, 0], "tom was entirely happy the dog looked foolish and probably": [65535, 0], "was entirely happy the dog looked foolish and probably felt": [65535, 0], "entirely happy the dog looked foolish and probably felt so": [65535, 0], "happy the dog looked foolish and probably felt so but": [65535, 0], "the dog looked foolish and probably felt so but there": [65535, 0], "dog looked foolish and probably felt so but there was": [65535, 0], "looked foolish and probably felt so but there was resentment": [65535, 0], "foolish and probably felt so but there was resentment in": [65535, 0], "and probably felt so but there was resentment in his": [65535, 0], "probably felt so but there was resentment in his heart": [65535, 0], "felt so but there was resentment in his heart too": [65535, 0], "so but there was resentment in his heart too and": [65535, 0], "but there was resentment in his heart too and a": [65535, 0], "there was resentment in his heart too and a craving": [65535, 0], "was resentment in his heart too and a craving for": [65535, 0], "resentment in his heart too and a craving for revenge": [65535, 0], "in his heart too and a craving for revenge so": [65535, 0], "his heart too and a craving for revenge so he": [65535, 0], "heart too and a craving for revenge so he went": [65535, 0], "too and a craving for revenge so he went to": [65535, 0], "and a craving for revenge so he went to the": [65535, 0], "a craving for revenge so he went to the beetle": [65535, 0], "craving for revenge so he went to the beetle and": [65535, 0], "for revenge so he went to the beetle and began": [65535, 0], "revenge so he went to the beetle and began a": [65535, 0], "so he went to the beetle and began a wary": [65535, 0], "he went to the beetle and began a wary attack": [65535, 0], "went to the beetle and began a wary attack on": [65535, 0], "to the beetle and began a wary attack on it": [65535, 0], "the beetle and began a wary attack on it again": [65535, 0], "beetle and began a wary attack on it again jumping": [65535, 0], "and began a wary attack on it again jumping at": [65535, 0], "began a wary attack on it again jumping at it": [65535, 0], "a wary attack on it again jumping at it from": [65535, 0], "wary attack on it again jumping at it from every": [65535, 0], "attack on it again jumping at it from every point": [65535, 0], "on it again jumping at it from every point of": [65535, 0], "it again jumping at it from every point of a": [65535, 0], "again jumping at it from every point of a circle": [65535, 0], "jumping at it from every point of a circle lighting": [65535, 0], "at it from every point of a circle lighting with": [65535, 0], "it from every point of a circle lighting with his": [65535, 0], "from every point of a circle lighting with his fore": [65535, 0], "every point of a circle lighting with his fore paws": [65535, 0], "point of a circle lighting with his fore paws within": [65535, 0], "of a circle lighting with his fore paws within an": [65535, 0], "a circle lighting with his fore paws within an inch": [65535, 0], "circle lighting with his fore paws within an inch of": [65535, 0], "lighting with his fore paws within an inch of the": [65535, 0], "with his fore paws within an inch of the creature": [65535, 0], "his fore paws within an inch of the creature making": [65535, 0], "fore paws within an inch of the creature making even": [65535, 0], "paws within an inch of the creature making even closer": [65535, 0], "within an inch of the creature making even closer snatches": [65535, 0], "an inch of the creature making even closer snatches at": [65535, 0], "inch of the creature making even closer snatches at it": [65535, 0], "of the creature making even closer snatches at it with": [65535, 0], "the creature making even closer snatches at it with his": [65535, 0], "creature making even closer snatches at it with his teeth": [65535, 0], "making even closer snatches at it with his teeth and": [65535, 0], "even closer snatches at it with his teeth and jerking": [65535, 0], "closer snatches at it with his teeth and jerking his": [65535, 0], "snatches at it with his teeth and jerking his head": [65535, 0], "at it with his teeth and jerking his head till": [65535, 0], "it with his teeth and jerking his head till his": [65535, 0], "with his teeth and jerking his head till his ears": [65535, 0], "his teeth and jerking his head till his ears flapped": [65535, 0], "teeth and jerking his head till his ears flapped again": [65535, 0], "and jerking his head till his ears flapped again but": [65535, 0], "jerking his head till his ears flapped again but he": [65535, 0], "his head till his ears flapped again but he grew": [65535, 0], "head till his ears flapped again but he grew tired": [65535, 0], "till his ears flapped again but he grew tired once": [65535, 0], "his ears flapped again but he grew tired once more": [65535, 0], "ears flapped again but he grew tired once more after": [65535, 0], "flapped again but he grew tired once more after a": [65535, 0], "again but he grew tired once more after a while": [65535, 0], "but he grew tired once more after a while tried": [65535, 0], "he grew tired once more after a while tried to": [65535, 0], "grew tired once more after a while tried to amuse": [65535, 0], "tired once more after a while tried to amuse himself": [65535, 0], "once more after a while tried to amuse himself with": [65535, 0], "more after a while tried to amuse himself with a": [65535, 0], "after a while tried to amuse himself with a fly": [65535, 0], "a while tried to amuse himself with a fly but": [65535, 0], "while tried to amuse himself with a fly but found": [65535, 0], "tried to amuse himself with a fly but found no": [65535, 0], "to amuse himself with a fly but found no relief": [65535, 0], "amuse himself with a fly but found no relief followed": [65535, 0], "himself with a fly but found no relief followed an": [65535, 0], "with a fly but found no relief followed an ant": [65535, 0], "a fly but found no relief followed an ant around": [65535, 0], "fly but found no relief followed an ant around with": [65535, 0], "but found no relief followed an ant around with his": [65535, 0], "found no relief followed an ant around with his nose": [65535, 0], "no relief followed an ant around with his nose close": [65535, 0], "relief followed an ant around with his nose close to": [65535, 0], "followed an ant around with his nose close to the": [65535, 0], "an ant around with his nose close to the floor": [65535, 0], "ant around with his nose close to the floor and": [65535, 0], "around with his nose close to the floor and quickly": [65535, 0], "with his nose close to the floor and quickly wearied": [65535, 0], "his nose close to the floor and quickly wearied of": [65535, 0], "nose close to the floor and quickly wearied of that": [65535, 0], "close to the floor and quickly wearied of that yawned": [65535, 0], "to the floor and quickly wearied of that yawned sighed": [65535, 0], "the floor and quickly wearied of that yawned sighed forgot": [65535, 0], "floor and quickly wearied of that yawned sighed forgot the": [65535, 0], "and quickly wearied of that yawned sighed forgot the beetle": [65535, 0], "quickly wearied of that yawned sighed forgot the beetle entirely": [65535, 0], "wearied of that yawned sighed forgot the beetle entirely and": [65535, 0], "of that yawned sighed forgot the beetle entirely and sat": [65535, 0], "that yawned sighed forgot the beetle entirely and sat down": [65535, 0], "yawned sighed forgot the beetle entirely and sat down on": [65535, 0], "sighed forgot the beetle entirely and sat down on it": [65535, 0], "forgot the beetle entirely and sat down on it then": [65535, 0], "the beetle entirely and sat down on it then there": [65535, 0], "beetle entirely and sat down on it then there was": [65535, 0], "entirely and sat down on it then there was a": [65535, 0], "and sat down on it then there was a wild": [65535, 0], "sat down on it then there was a wild yelp": [65535, 0], "down on it then there was a wild yelp of": [65535, 0], "on it then there was a wild yelp of agony": [65535, 0], "it then there was a wild yelp of agony and": [65535, 0], "then there was a wild yelp of agony and the": [65535, 0], "there was a wild yelp of agony and the poodle": [65535, 0], "was a wild yelp of agony and the poodle went": [65535, 0], "a wild yelp of agony and the poodle went sailing": [65535, 0], "wild yelp of agony and the poodle went sailing up": [65535, 0], "yelp of agony and the poodle went sailing up the": [65535, 0], "of agony and the poodle went sailing up the aisle": [65535, 0], "agony and the poodle went sailing up the aisle the": [65535, 0], "and the poodle went sailing up the aisle the yelps": [65535, 0], "the poodle went sailing up the aisle the yelps continued": [65535, 0], "poodle went sailing up the aisle the yelps continued and": [65535, 0], "went sailing up the aisle the yelps continued and so": [65535, 0], "sailing up the aisle the yelps continued and so did": [65535, 0], "up the aisle the yelps continued and so did the": [65535, 0], "the aisle the yelps continued and so did the dog": [65535, 0], "aisle the yelps continued and so did the dog he": [65535, 0], "the yelps continued and so did the dog he crossed": [65535, 0], "yelps continued and so did the dog he crossed the": [65535, 0], "continued and so did the dog he crossed the house": [65535, 0], "and so did the dog he crossed the house in": [65535, 0], "so did the dog he crossed the house in front": [65535, 0], "did the dog he crossed the house in front of": [65535, 0], "the dog he crossed the house in front of the": [65535, 0], "dog he crossed the house in front of the altar": [65535, 0], "he crossed the house in front of the altar he": [65535, 0], "crossed the house in front of the altar he flew": [65535, 0], "the house in front of the altar he flew down": [65535, 0], "house in front of the altar he flew down the": [65535, 0], "in front of the altar he flew down the other": [65535, 0], "front of the altar he flew down the other aisle": [65535, 0], "of the altar he flew down the other aisle he": [65535, 0], "the altar he flew down the other aisle he crossed": [65535, 0], "altar he flew down the other aisle he crossed before": [65535, 0], "he flew down the other aisle he crossed before the": [65535, 0], "flew down the other aisle he crossed before the doors": [65535, 0], "down the other aisle he crossed before the doors he": [65535, 0], "the other aisle he crossed before the doors he clamored": [65535, 0], "other aisle he crossed before the doors he clamored up": [65535, 0], "aisle he crossed before the doors he clamored up the": [65535, 0], "he crossed before the doors he clamored up the home": [65535, 0], "crossed before the doors he clamored up the home stretch": [65535, 0], "before the doors he clamored up the home stretch his": [65535, 0], "the doors he clamored up the home stretch his anguish": [65535, 0], "doors he clamored up the home stretch his anguish grew": [65535, 0], "he clamored up the home stretch his anguish grew with": [65535, 0], "clamored up the home stretch his anguish grew with his": [65535, 0], "up the home stretch his anguish grew with his progress": [65535, 0], "the home stretch his anguish grew with his progress till": [65535, 0], "home stretch his anguish grew with his progress till presently": [65535, 0], "stretch his anguish grew with his progress till presently he": [65535, 0], "his anguish grew with his progress till presently he was": [65535, 0], "anguish grew with his progress till presently he was but": [65535, 0], "grew with his progress till presently he was but a": [65535, 0], "with his progress till presently he was but a woolly": [65535, 0], "his progress till presently he was but a woolly comet": [65535, 0], "progress till presently he was but a woolly comet moving": [65535, 0], "till presently he was but a woolly comet moving in": [65535, 0], "presently he was but a woolly comet moving in its": [65535, 0], "he was but a woolly comet moving in its orbit": [65535, 0], "was but a woolly comet moving in its orbit with": [65535, 0], "but a woolly comet moving in its orbit with the": [65535, 0], "a woolly comet moving in its orbit with the gleam": [65535, 0], "woolly comet moving in its orbit with the gleam and": [65535, 0], "comet moving in its orbit with the gleam and the": [65535, 0], "moving in its orbit with the gleam and the speed": [65535, 0], "in its orbit with the gleam and the speed of": [65535, 0], "its orbit with the gleam and the speed of light": [65535, 0], "orbit with the gleam and the speed of light at": [65535, 0], "with the gleam and the speed of light at last": [65535, 0], "the gleam and the speed of light at last the": [65535, 0], "gleam and the speed of light at last the frantic": [65535, 0], "and the speed of light at last the frantic sufferer": [65535, 0], "the speed of light at last the frantic sufferer sheered": [65535, 0], "speed of light at last the frantic sufferer sheered from": [65535, 0], "of light at last the frantic sufferer sheered from its": [65535, 0], "light at last the frantic sufferer sheered from its course": [65535, 0], "at last the frantic sufferer sheered from its course and": [65535, 0], "last the frantic sufferer sheered from its course and sprang": [65535, 0], "the frantic sufferer sheered from its course and sprang into": [65535, 0], "frantic sufferer sheered from its course and sprang into its": [65535, 0], "sufferer sheered from its course and sprang into its master's": [65535, 0], "sheered from its course and sprang into its master's lap": [65535, 0], "from its course and sprang into its master's lap he": [65535, 0], "its course and sprang into its master's lap he flung": [65535, 0], "course and sprang into its master's lap he flung it": [65535, 0], "and sprang into its master's lap he flung it out": [65535, 0], "sprang into its master's lap he flung it out of": [65535, 0], "into its master's lap he flung it out of the": [65535, 0], "its master's lap he flung it out of the window": [65535, 0], "master's lap he flung it out of the window and": [65535, 0], "lap he flung it out of the window and the": [65535, 0], "he flung it out of the window and the voice": [65535, 0], "flung it out of the window and the voice of": [65535, 0], "it out of the window and the voice of distress": [65535, 0], "out of the window and the voice of distress quickly": [65535, 0], "of the window and the voice of distress quickly thinned": [65535, 0], "the window and the voice of distress quickly thinned away": [65535, 0], "window and the voice of distress quickly thinned away and": [65535, 0], "and the voice of distress quickly thinned away and died": [65535, 0], "the voice of distress quickly thinned away and died in": [65535, 0], "voice of distress quickly thinned away and died in the": [65535, 0], "of distress quickly thinned away and died in the distance": [65535, 0], "distress quickly thinned away and died in the distance by": [65535, 0], "quickly thinned away and died in the distance by this": [65535, 0], "thinned away and died in the distance by this time": [65535, 0], "away and died in the distance by this time the": [65535, 0], "and died in the distance by this time the whole": [65535, 0], "died in the distance by this time the whole church": [65535, 0], "in the distance by this time the whole church was": [65535, 0], "the distance by this time the whole church was red": [65535, 0], "distance by this time the whole church was red faced": [65535, 0], "by this time the whole church was red faced and": [65535, 0], "this time the whole church was red faced and suffocating": [65535, 0], "time the whole church was red faced and suffocating with": [65535, 0], "the whole church was red faced and suffocating with suppressed": [65535, 0], "whole church was red faced and suffocating with suppressed laughter": [65535, 0], "church was red faced and suffocating with suppressed laughter and": [65535, 0], "was red faced and suffocating with suppressed laughter and the": [65535, 0], "red faced and suffocating with suppressed laughter and the sermon": [65535, 0], "faced and suffocating with suppressed laughter and the sermon had": [65535, 0], "and suffocating with suppressed laughter and the sermon had come": [65535, 0], "suffocating with suppressed laughter and the sermon had come to": [65535, 0], "with suppressed laughter and the sermon had come to a": [65535, 0], "suppressed laughter and the sermon had come to a dead": [65535, 0], "laughter and the sermon had come to a dead standstill": [65535, 0], "and the sermon had come to a dead standstill the": [65535, 0], "the sermon had come to a dead standstill the discourse": [65535, 0], "sermon had come to a dead standstill the discourse was": [65535, 0], "had come to a dead standstill the discourse was resumed": [65535, 0], "come to a dead standstill the discourse was resumed presently": [65535, 0], "to a dead standstill the discourse was resumed presently but": [65535, 0], "a dead standstill the discourse was resumed presently but it": [65535, 0], "dead standstill the discourse was resumed presently but it went": [65535, 0], "standstill the discourse was resumed presently but it went lame": [65535, 0], "the discourse was resumed presently but it went lame and": [65535, 0], "discourse was resumed presently but it went lame and halting": [65535, 0], "was resumed presently but it went lame and halting all": [65535, 0], "resumed presently but it went lame and halting all possibility": [65535, 0], "presently but it went lame and halting all possibility of": [65535, 0], "but it went lame and halting all possibility of impressiveness": [65535, 0], "it went lame and halting all possibility of impressiveness being": [65535, 0], "went lame and halting all possibility of impressiveness being at": [65535, 0], "lame and halting all possibility of impressiveness being at an": [65535, 0], "and halting all possibility of impressiveness being at an end": [65535, 0], "halting all possibility of impressiveness being at an end for": [65535, 0], "all possibility of impressiveness being at an end for even": [65535, 0], "possibility of impressiveness being at an end for even the": [65535, 0], "of impressiveness being at an end for even the gravest": [65535, 0], "impressiveness being at an end for even the gravest sentiments": [65535, 0], "being at an end for even the gravest sentiments were": [65535, 0], "at an end for even the gravest sentiments were constantly": [65535, 0], "an end for even the gravest sentiments were constantly being": [65535, 0], "end for even the gravest sentiments were constantly being received": [65535, 0], "for even the gravest sentiments were constantly being received with": [65535, 0], "even the gravest sentiments were constantly being received with a": [65535, 0], "the gravest sentiments were constantly being received with a smothered": [65535, 0], "gravest sentiments were constantly being received with a smothered burst": [65535, 0], "sentiments were constantly being received with a smothered burst of": [65535, 0], "were constantly being received with a smothered burst of unholy": [65535, 0], "constantly being received with a smothered burst of unholy mirth": [65535, 0], "being received with a smothered burst of unholy mirth under": [65535, 0], "received with a smothered burst of unholy mirth under cover": [65535, 0], "with a smothered burst of unholy mirth under cover of": [65535, 0], "a smothered burst of unholy mirth under cover of some": [65535, 0], "smothered burst of unholy mirth under cover of some remote": [65535, 0], "burst of unholy mirth under cover of some remote pew": [65535, 0], "of unholy mirth under cover of some remote pew back": [65535, 0], "unholy mirth under cover of some remote pew back as": [65535, 0], "mirth under cover of some remote pew back as if": [65535, 0], "under cover of some remote pew back as if the": [65535, 0], "cover of some remote pew back as if the poor": [65535, 0], "of some remote pew back as if the poor parson": [65535, 0], "some remote pew back as if the poor parson had": [65535, 0], "remote pew back as if the poor parson had said": [65535, 0], "pew back as if the poor parson had said a": [65535, 0], "back as if the poor parson had said a rarely": [65535, 0], "as if the poor parson had said a rarely facetious": [65535, 0], "if the poor parson had said a rarely facetious thing": [65535, 0], "the poor parson had said a rarely facetious thing it": [65535, 0], "poor parson had said a rarely facetious thing it was": [65535, 0], "parson had said a rarely facetious thing it was a": [65535, 0], "had said a rarely facetious thing it was a genuine": [65535, 0], "said a rarely facetious thing it was a genuine relief": [65535, 0], "a rarely facetious thing it was a genuine relief to": [65535, 0], "rarely facetious thing it was a genuine relief to the": [65535, 0], "facetious thing it was a genuine relief to the whole": [65535, 0], "thing it was a genuine relief to the whole congregation": [65535, 0], "it was a genuine relief to the whole congregation when": [65535, 0], "was a genuine relief to the whole congregation when the": [65535, 0], "a genuine relief to the whole congregation when the ordeal": [65535, 0], "genuine relief to the whole congregation when the ordeal was": [65535, 0], "relief to the whole congregation when the ordeal was over": [65535, 0], "to the whole congregation when the ordeal was over and": [65535, 0], "the whole congregation when the ordeal was over and the": [65535, 0], "whole congregation when the ordeal was over and the benediction": [65535, 0], "congregation when the ordeal was over and the benediction pronounced": [65535, 0], "when the ordeal was over and the benediction pronounced tom": [65535, 0], "the ordeal was over and the benediction pronounced tom sawyer": [65535, 0], "ordeal was over and the benediction pronounced tom sawyer went": [65535, 0], "was over and the benediction pronounced tom sawyer went home": [65535, 0], "over and the benediction pronounced tom sawyer went home quite": [65535, 0], "and the benediction pronounced tom sawyer went home quite cheerful": [65535, 0], "the benediction pronounced tom sawyer went home quite cheerful thinking": [65535, 0], "benediction pronounced tom sawyer went home quite cheerful thinking to": [65535, 0], "pronounced tom sawyer went home quite cheerful thinking to himself": [65535, 0], "tom sawyer went home quite cheerful thinking to himself that": [65535, 0], "sawyer went home quite cheerful thinking to himself that there": [65535, 0], "went home quite cheerful thinking to himself that there was": [65535, 0], "home quite cheerful thinking to himself that there was some": [65535, 0], "quite cheerful thinking to himself that there was some satisfaction": [65535, 0], "cheerful thinking to himself that there was some satisfaction about": [65535, 0], "thinking to himself that there was some satisfaction about divine": [65535, 0], "to himself that there was some satisfaction about divine service": [65535, 0], "himself that there was some satisfaction about divine service when": [65535, 0], "that there was some satisfaction about divine service when there": [65535, 0], "there was some satisfaction about divine service when there was": [65535, 0], "was some satisfaction about divine service when there was a": [65535, 0], "some satisfaction about divine service when there was a bit": [65535, 0], "satisfaction about divine service when there was a bit of": [65535, 0], "about divine service when there was a bit of variety": [65535, 0], "divine service when there was a bit of variety in": [65535, 0], "service when there was a bit of variety in it": [65535, 0], "when there was a bit of variety in it he": [65535, 0], "there was a bit of variety in it he had": [65535, 0], "was a bit of variety in it he had but": [65535, 0], "a bit of variety in it he had but one": [65535, 0], "bit of variety in it he had but one marring": [65535, 0], "of variety in it he had but one marring thought": [65535, 0], "variety in it he had but one marring thought he": [65535, 0], "in it he had but one marring thought he was": [65535, 0], "it he had but one marring thought he was willing": [65535, 0], "he had but one marring thought he was willing that": [65535, 0], "had but one marring thought he was willing that the": [65535, 0], "but one marring thought he was willing that the dog": [65535, 0], "one marring thought he was willing that the dog should": [65535, 0], "marring thought he was willing that the dog should play": [65535, 0], "thought he was willing that the dog should play with": [65535, 0], "he was willing that the dog should play with his": [65535, 0], "was willing that the dog should play with his pinchbug": [65535, 0], "willing that the dog should play with his pinchbug but": [65535, 0], "that the dog should play with his pinchbug but he": [65535, 0], "the dog should play with his pinchbug but he did": [65535, 0], "dog should play with his pinchbug but he did not": [65535, 0], "should play with his pinchbug but he did not think": [65535, 0], "play with his pinchbug but he did not think it": [65535, 0], "with his pinchbug but he did not think it was": [65535, 0], "his pinchbug but he did not think it was upright": [65535, 0], "pinchbug but he did not think it was upright in": [65535, 0], "but he did not think it was upright in him": [65535, 0], "he did not think it was upright in him to": [65535, 0], "did not think it was upright in him to carry": [65535, 0], "not think it was upright in him to carry it": [65535, 0], "think it was upright in him to carry it off": [65535, 0], "monday": [65535, 0], "miserable": [65535, 0], "because": [44786, 20749], "week's": [65535, 0], "slow": [49105, 16430], "generally": [65535, 0], "day": [17973, 47562], "wishing": [65535, 0], "intervening": [65535, 0], "holiday": [65535, 0], "fetters": [65535, 0], "odious": [65535, 0], "occurred": [65535, 0], "sick": [65535, 0], "stay": [23349, 42186], "vague": [65535, 0], "canvassed": [65535, 0], "system": [65535, 0], "ailment": [65535, 0], "investigated": [65535, 0], "detect": [65535, 0], "colicky": [65535, 0], "symptoms": [65535, 0], "encourage": [65535, 0], "considerable": [65535, 0], "hope": [21790, 43745], "soon": [65535, 0], "feeble": [32706, 32829], "wholly": [65535, 0], "reflected": [65535, 0], "further": [65535, 0], "suddenly": [65535, 0], "discovered": [65535, 0], "something": [43635, 21900], "upper": [65535, 0], "loose": [19609, 45926], "lucky": [65535, 0], "begin": [49105, 16430], "groan": [65535, 0], "starter": [65535, 0], "court": [65535, 0], "pull": [65535, 0], "hold": [18674, 46861], "tooth": [58229, 7306], "reserve": [65535, 0], "present": [16338, 49197], "seek": [32706, 32829], "nothing": [28026, 37509], "offered": [65535, 0], "remembered": [65535, 0], "hearing": [65535, 0], "doctor": [16338, 49197], "tell": [28433, 37102], "laid": [49105, 16430], "patient": [18674, 46861], "two": [40378, 25157], "or": [25208, 40327], "three": [40902, 24633], "weeks": [65535, 0], "threatened": [65535, 0], "make": [28026, 37509], "lose": [21790, 43745], "eagerly": [65535, 0], "drew": [40902, 24633], "sore": [52389, 13146], "sheet": [65535, 0], "held": [49105, 16430], "inspection": [65535, 0], "know": [24999, 40536], "necessary": [65535, 0], "chance": [56143, 9392], "slept": [43635, 21900], "unconscious": [65535, 0], "groaned": [65535, 0], "louder": [65535, 0], "fancied": [65535, 0], "feel": [65535, 0], "pain": [65535, 0], "result": [65535, 0], "panting": [65535, 0], "exertions": [65535, 0], "rest": [41647, 23888], "swelled": [65535, 0], "fetched": [65535, 0], "succession": [43635, 21900], "admirable": [65535, 0], "groans": [65535, 0], "snored": [65535, 0], "aggravated": [65535, 0], "worked": [65535, 0], "stretched": [65535, 0], "elbow": [65535, 0], "snort": [65535, 0], "stare": [65535, 0], "response": [65535, 0], "what": [18346, 47189], "anxiously": [65535, 0], "moaned": [65535, 0], "oh": [35685, 29850], "don't": [65535, 0], "joggle": [65535, 0], "me": [11138, 54397], "why": [27709, 37826], "what's": [50071, 15464], "must": [11529, 54006], "call": [18155, 47380], "auntie": [65535, 0], "never": [65535, 0], "mind": [65535, 0], "it'll": [65535, 0], "maybe": [65535, 0], "anybody": [65535, 0], "it's": [65535, 0], "awful": [65535, 0], "long": [32706, 32829], "you": [26233, 39302], "way": [49105, 16430], "hours": [65535, 0], "ouch": [65535, 0], "stir": [65535, 0], "you'll": [47613, 17922], "kill": [21790, 43745], "didn't": [65535, 0], "wake": [65535, 0], "sooner": [21790, 43745], "makes": [32706, 32829], "my": [5820, 59715], "flesh": [16338, 49197], "crawl": [65535, 0], "forgive": [65535, 0], "everything": [65535, 0], "you've": [65535, 0], "ever": [65535, 0], "done": [45823, 19712], "i'm": [65535, 0], "gone": [23074, 42461], "ain't": [65535, 0], "dying": [65535, 0], "are": [15506, 50029], "everybody": [65535, 0], "'em": [65535, 0], "give": [65535, 0], "sash": [65535, 0], "cat": [65535, 0], "eye": [42073, 23462], "that's": [46458, 19077], "snatched": [65535, 0], "clothes": [65535, 0], "reality": [65535, 0], "handsomely": [65535, 0], "imagination": [32706, 32829], "gathered": [65535, 0], "tone": [65535, 0], "stairs": [65535, 0], "yes'm": [65535, 0], "wait": [65535, 0], "quick": [65535, 0], "rubbage": [65535, 0], "believe": [65535, 0], "fled": [32706, 32829], "nevertheless": [65535, 0], "heels": [65535, 0], "trembled": [65535, 0], "bedside": [65535, 0], "gasped": [65535, 0], "toe's": [65535, 0], "mortified": [65535, 0], "lady": [55421, 10114], "sank": [65535, 0], "chair": [65535, 0], "laughed": [65535, 0], "cried": [65535, 0], "both": [22739, 42796], "restored": [65535, 0], "shut": [21790, 43745], "nonsense": [65535, 0], "climb": [65535, 0], "ceased": [65535, 0], "vanished": [65535, 0], "your": [11879, 53656], "them's": [65535, 0], "aches": [65535, 0], "you're": [65535, 0], "die": [24518, 41017], "silk": [65535, 0], "chunk": [65535, 0], "kitchen": [52389, 13146], "please": [27246, 38289], "any": [27058, 38477], "wish": [65535, 0], "may": [2511, 63024], "does": [65535, 0], "want": [53583, 11952], "row": [43635, 21900], "you'd": [65535, 0], "fishing": [65535, 0], "love": [65535, 0], "seem": [65535, 0], "try": [57316, 8219], "break": [21790, 43745], "outrageousness": [65535, 0], "dental": [65535, 0], "instruments": [65535, 0], "ready": [65535, 0], "fast": [14521, 51014], "loop": [65535, 0], "tied": [65535, 0], "bedpost": [65535, 0], "thrust": [65535, 0], "hung": [65535, 0], "dangling": [65535, 0], "trials": [65535, 0], "bring": [6531, 59004], "compensations": [65535, 0], "wended": [65535, 0], "breakfast": [65535, 0], "envy": [65535, 0], "met": [13068, 52467], "gap": [65535, 0], "enabled": [65535, 0], "expectorate": [65535, 0], "following": [32706, 32829], "lads": [65535, 0], "exhibition": [65535, 0], "centre": [65535, 0], "fascination": [65535, 0], "homage": [21790, 43745], "without": [35685, 29850], "adherent": [65535, 0], "shorn": [65535, 0], "glory": [65535, 0], "heavy": [65535, 0], "disdain": [65535, 0], "wasn't": [65535, 0], "spit": [21790, 43745], "like": [38070, 27465], "sour": [65535, 0], "grapes": [65535, 0], "wandered": [65535, 0], "dismantled": [65535, 0], "hero": [65535, 0], "shortly": [65535, 0], "juvenile": [65535, 0], "pariah": [65535, 0], "huckleberry": [65535, 0], "finn": [65535, 0], "son": [65535, 0], "drunkard": [32706, 32829], "cordially": [65535, 0], "dreaded": [65535, 0], "mothers": [65535, 0], "idle": [32706, 32829], "lawless": [65535, 0], "vulgar": [43635, 21900], "bad": [49105, 16430], "delighted": [65535, 0], "forbidden": [65535, 0], "society": [65535, 0], "dared": [65535, 0], "respectable": [65535, 0], "envied": [65535, 0], "gaudy": [65535, 0], "outcast": [65535, 0], "condition": [65535, 0], "strict": [65535, 0], "orders": [65535, 0], "played": [65535, 0], "dressed": [65535, 0], "cast": [65535, 0], "full": [49105, 16430], "grown": [65535, 0], "men": [18674, 46861], "perennial": [65535, 0], "bloom": [65535, 0], "fluttering": [65535, 0], "rags": [65535, 0], "hat": [65535, 0], "vast": [65535, 0], "ruin": [65535, 0], "wide": [43635, 21900], "crescent": [65535, 0], "lopped": [65535, 0], "brim": [65535, 0], "wore": [65535, 0], "nearly": [65535, 0], "rearward": [65535, 0], "buttons": [65535, 0], "suspender": [65535, 0], "supported": [65535, 0], "trousers": [65535, 0], "seat": [65535, 0], "bagged": [65535, 0], "low": [49105, 16430], "contained": [65535, 0], "fringed": [65535, 0], "dragged": [65535, 0], "dirt": [65535, 0], "rolled": [65535, 0], "own": [65535, 0], "free": [49105, 16430], "will": [11988, 53547], "doorsteps": [65535, 0], "fine": [49105, 16430], "weather": [65535, 0], "empty": [65535, 0], "hogsheads": [65535, 0], "wet": [65535, 0], "master": [5558, 59977], "obey": [13068, 52467], "swimming": [65535, 0], "chose": [65535, 0], "suited": [65535, 0], "nobody": [65535, 0], "forbade": [65535, 0], "sit": [37388, 28147], "late": [36348, 29187], "pleased": [65535, 0], "barefoot": [65535, 0], "resume": [65535, 0], "leather": [21790, 43745], "wash": [65535, 0], "put": [39262, 26273], "clean": [65535, 0], "swear": [65535, 0], "wonderfully": [65535, 0], "goes": [32706, 32829], "life": [14851, 50684], "precious": [65535, 0], "harassed": [65535, 0], "hampered": [65535, 0], "hailed": [65535, 0], "romantic": [65535, 0], "hello": [65535, 0], "yourself": [65535, 0], "lemme": [65535, 0], "huck": [65535, 0], "he's": [38169, 27366], "pretty": [65535, 0], "stiff": [65535, 0], "where'd": [65535, 0], "bought": [28026, 37509], "off'n": [65535, 0], "blue": [65535, 0], "ticket": [65535, 0], "bladder": [65535, 0], "slaughter": [65535, 0], "ben": [65535, 0], "rogers": [65535, 0], "hoop": [65535, 0], "stick": [65535, 0], "cats": [65535, 0], "cure": [65535, 0], "warts": [65535, 0], "bet": [65535, 0], "spunk": [65535, 0], "water": [57316, 8219], "wouldn't": [65535, 0], "dern": [65535, 0], "d'you": [65535, 0], "hain't": [65535, 0], "bob": [65535, 0], "tanner": [65535, 0], "told": [43635, 21900], "jeff": [65535, 0], "thatcher": [65535, 0], "johnny": [65535, 0], "baker": [65535, 0], "jim": [65535, 0], "hollis": [65535, 0], "nigger": [65535, 0], "they'll": [26155, 39380], "leastways": [65535, 0], "shucks": [65535, 0], "dipped": [65535, 0], "rotten": [65535, 0], "stump": [65535, 0], "rain": [65535, 0], "daytime": [65535, 0], "certainly": [65535, 0], "yes": [52389, 13146], "least": [32706, 32829], "reckon": [65535, 0], "aha": [65535, 0], "talk": [65535, 0], "trying": [54578, 10957], "blame": [21790, 43745], "fool": [65535, 0], "middle": [65535, 0], "woods": [65535, 0], "there's": [15080, 50455], "midnight": [65535, 0], "against": [7684, 57851], "jam": [65535, 0], "'barley": [65535, 0], "corn": [65535, 0], "barley": [65535, 0], "injun": [65535, 0], "meal": [65535, 0], "shorts": [65535, 0], "swaller": [65535, 0], "these": [16757, 48778], "'": [65535, 0], "walk": [65535, 0], "eleven": [65535, 0], "steps": [65535, 0], "times": [37388, 28147], "speaking": [65535, 0], "charm's": [65535, 0], "busted": [65535, 0], "sounds": [65535, 0], "sir": [4213, 61322], "becuz": [65535, 0], "wartiest": [65535, 0], "wart": [54578, 10957], "he'd": [65535, 0], "knowed": [65535, 0], "work": [65535, 0], "i've": [65535, 0], "thousands": [65535, 0], "frogs": [65535, 0], "sometimes": [49105, 16430], "bean": [65535, 0], "bean's": [65535, 0], "split": [65535, 0], "blood": [37388, 28147], "piece": [65535, 0], "dig": [65535, 0], "hole": [65535, 0], "bury": [65535, 0], "'bout": [65535, 0], "crossroads": [65535, 0], "dark": [65535, 0], "moon": [65535, 0], "burn": [65535, 0], "keep": [65535, 0], "drawing": [65535, 0], "fetch": [11529, 54006], "helps": [65535, 0], "draw": [26155, 39380], "comes": [4354, 61181], "though": [21790, 43745], "burying": [65535, 0], "'down": [65535, 0], "bother": [65535, 0], "joe": [65535, 0], "harper": [65535, 0], "coonville": [65535, 0], "everywheres": [65535, 0], "graveyard": [65535, 0], "'long": [65535, 0], "somebody": [65535, 0], "wicked": [65535, 0], "has": [65535, 0], "buried": [43635, 21900], "devil": [65535, 0], "can't": [65535, 0], "wind": [65535, 0], "they're": [65535, 0], "feller": [65535, 0], "heave": [65535, 0], "'devil": [65535, 0], "follow": [65535, 0], "corpse": [65535, 0], "ye": [65535, 0], "that'll": [65535, 0], "right": [49105, 16430], "hopkins": [65535, 0], "she's": [43635, 21900], "witch": [16338, 49197], "witched": [65535, 0], "pap": [65535, 0], "says": [65535, 0], "self": [65535, 0], "witching": [65535, 0], "rock": [65535, 0], "hadn't": [65535, 0], "dodged": [65535, 0], "very": [49105, 16430], "night": [26155, 39380], "shed": [65535, 0], "wher'": [65535, 0], "layin": [65535, 0], "drunk": [65535, 0], "broke": [40902, 24633], "arm": [65535, 0], "lord": [6531, 59004], "easy": [65535, 0], "stiddy": [65535, 0], "specially": [65535, 0], "mumble": [65535, 0], "saying": [56143, 9392], "lord's": [65535, 0], "backards": [65535, 0], "hucky": [65535, 0], "hoss": [65535, 0], "williams": [65535, 0], "saturday": [65535, 0], "charms": [65535, 0], "devils": [65535, 0], "slosh": [65535, 0], "afeard": [65535, 0], "'tain't": [65535, 0], "likely": [65535, 0], "meow": [65535, 0], "kep'": [65535, 0], "meowing": [65535, 0], "hays": [65535, 0], "throwing": [65535, 0], "rocks": [65535, 0], "'dern": [65535, 0], "hove": [65535, 0], "brick": [65535, 0], "won't": [65535, 0], "couldn't": [65535, 0], "watching": [65535, 0], "i'll": [65535, 0], "tick": [65535, 0], "what'll": [65535, 0], "sell": [65535, 0], "mighty": [46760, 18775], "anyway": [65535, 0], "belong": [65535, 0], "satisfied": [65535, 0], "enough": [51450, 14085], "sho": [65535, 0], "ticks": [65535, 0], "plenty": [65535, 0], "thousand": [34891, 30644], "wanted": [65535, 0], "early": [65535, 0], "year": [65535, 0], "paper": [65535, 0], "carefully": [65535, 0], "unrolled": [65535, 0], "viewed": [65535, 0], "wistfully": [65535, 0], "temptation": [65535, 0], "genuwyne": [65535, 0], "showed": [65535, 0], "vacancy": [65535, 0], "trade": [65535, 0], "enclosed": [65535, 0], "lately": [43635, 21900], "pinchbug's": [65535, 0], "prison": [21790, 43745], "separated": [65535, 0], "each": [54578, 10957], "feeling": [32706, 32829], "wealthier": [65535, 0], "than": [65535, 0], "isolated": [65535, 0], "frame": [65535, 0], "schoolhouse": [65535, 0], "strode": [65535, 0], "briskly": [65535, 0], "manner": [65535, 0], "honest": [37388, 28147], "peg": [65535, 0], "business": [65535, 0], "alacrity": [65535, 0], "throned": [65535, 0], "high": [65535, 0], "splint": [65535, 0], "bottom": [65535, 0], "dozing": [65535, 0], "lulled": [65535, 0], "drowsy": [65535, 0], "hum": [65535, 0], "study": [65535, 0], "interruption": [65535, 0], "roused": [65535, 0], "thomas": [65535, 0], "name": [17824, 47711], "meant": [32706, 32829], "trouble": [46760, 18775], "refuge": [65535, 0], "saw": [24908, 40627], "yellow": [65535, 0], "hair": [65535, 0], "recognized": [65535, 0], "electric": [65535, 0], "sympathy": [65535, 0], "form": [65535, 0], "vacant": [65535, 0], "place": [38490, 27045], "girls'": [65535, 0], "side": [65535, 0], "stopped": [65535, 0], "pulse": [21790, 43745], "stared": [65535, 0], "buzz": [65535, 0], "pupils": [65535, 0], "wondered": [65535, 0], "foolhardy": [65535, 0], "mistaking": [65535, 0], "astounding": [65535, 0], "confession": [65535, 0], "listened": [65535, 0], "mere": [65535, 0], "ferule": [65535, 0], "answer": [28611, 36924], "offence": [21790, 43745], "jacket": [65535, 0], "performed": [65535, 0], "until": [65535, 0], "stock": [65535, 0], "switches": [65535, 0], "notably": [65535, 0], "diminished": [65535, 0], "girls": [65535, 0], "warning": [65535, 0], "titter": [65535, 0], "rippled": [65535, 0], "room": [65535, 0], "appeared": [65535, 0], "abash": [65535, 0], "caused": [65535, 0], "rather": [21790, 43745], "worshipful": [65535, 0], "awe": [65535, 0], "unknown": [65535, 0], "idol": [65535, 0], "dread": [65535, 0], "pleasure": [65535, 0], "fortune": [13068, 52467], "pine": [65535, 0], "bench": [65535, 0], "hitched": [65535, 0], "herself": [65535, 0], "toss": [65535, 0], "nudges": [65535, 0], "winks": [65535, 0], "whispers": [65535, 0], "traversed": [65535, 0], "desk": [65535, 0], "attention": [65535, 0], "accustomed": [65535, 0], "murmur": [65535, 0], "rose": [65535, 0], "dull": [21790, 43745], "air": [65535, 0], "furtive": [65535, 0], "glances": [65535, 0], "observed": [65535, 0], "space": [65535, 0], "minute": [65535, 0], "cautiously": [65535, 0], "peach": [65535, 0], "gently": [65535, 0], "animosity": [65535, 0], "patiently": [43635, 21900], "returned": [65535, 0], "remain": [65535, 0], "scrawled": [65535, 0], "slate": [65535, 0], "glanced": [43635, 21900], "sign": [65535, 0], "hiding": [65535, 0], "left": [17428, 48107], "refused": [65535, 0], "notice": [65535, 0], "human": [65535, 0], "curiosity": [65535, 0], "manifest": [65535, 0], "perceptible": [65535, 0], "signs": [65535, 0], "apparently": [65535, 0], "sort": [65535, 0], "noncommittal": [65535, 0], "attempt": [65535, 0], "betray": [32706, 32829], "aware": [65535, 0], "hesitatingly": [65535, 0], "partly": [65535, 0], "uncovered": [65535, 0], "dismal": [65535, 0], "caricature": [65535, 0], "gable": [65535, 0], "ends": [65535, 0], "corkscrew": [65535, 0], "smoke": [65535, 0], "issuing": [65535, 0], "chimney": [65535, 0], "girl's": [65535, 0], "interest": [65535, 0], "fasten": [32706, 32829], "finished": [65535, 0], "gazed": [65535, 0], "moment": [65535, 0], "nice": [65535, 0], "man": [14128, 51407], "artist": [65535, 0], "erected": [65535, 0], "yard": [65535, 0], "resembled": [65535, 0], "derrick": [65535, 0], "stepped": [65535, 0], "hypercritical": [65535, 0], "monster": [65535, 0], "coming": [65535, 0], "hour": [65535, 0], "straw": [65535, 0], "limbs": [65535, 0], "armed": [65535, 0], "spreading": [65535, 0], "fingers": [65535, 0], "portentous": [65535, 0], "fan": [65535, 0], "learn": [65535, 0], "noon": [65535, 0], "dinner": [2612, 62923], "whack": [65535, 0], "becky": [65535, 0], "yours": [21790, 43745], "lick": [65535, 0], "scrawl": [65535, 0], "backward": [65535, 0], "begged": [65535, 0], "deed": [65535, 0], "double": [43635, 21900], "live": [65535, 0], "treat": [65535, 0], "scuffle": [65535, 0], "ensued": [65535, 0], "pretending": [65535, 0], "resist": [65535, 0], "earnest": [32706, 32829], "letting": [65535, 0], "slip": [65535, 0], "degrees": [65535, 0], "revealed": [65535, 0], "hit": [52389, 13146], "rap": [65535, 0], "reddened": [65535, 0], "juncture": [65535, 0], "fateful": [65535, 0], "grip": [65535, 0], "steady": [65535, 0], "lifting": [65535, 0], "impulse": [65535, 0], "vise": [65535, 0], "borne": [8165, 57370], "across": [65535, 0], "deposited": [65535, 0], "peppering": [65535, 0], "giggles": [65535, 0], "during": [43635, 21900], "few": [65535, 0], "moments": [65535, 0], "finally": [65535, 0], "moved": [65535, 0], "throne": [65535, 0], "although": [43635, 21900], "tingled": [65535, 0], "jubilant": [65535, 0], "quieted": [65535, 0], "effort": [65535, 0], "turmoil": [65535, 0], "reading": [65535, 0], "class": [65535, 0], "botch": [65535, 0], "geography": [65535, 0], "lakes": [65535, 0], "mountains": [65535, 0], "rivers": [65535, 0], "continents": [65535, 0], "chaos": [65535, 0], "spelling": [65535, 0], "baby": [65535, 0], "foot": [49105, 16430], "yielded": [65535, 0], "pewter": [65535, 0], "medal": [65535, 0], "worn": [65535, 0], "ostentation": [65535, 0], "months": [65535, 0], "monday morning": [65535, 0], "morning found": [65535, 0], "found tom": [65535, 0], "sawyer miserable": [65535, 0], "miserable monday": [65535, 0], "morning always": [65535, 0], "always found": [65535, 0], "found him": [65535, 0], "him so": [54578, 10957], "so because": [65535, 0], "because it": [32706, 32829], "it began": [65535, 0], "began another": [65535, 0], "another week's": [65535, 0], "week's slow": [65535, 0], "slow suffering": [65535, 0], "suffering in": [65535, 0], "in school": [65535, 0], "school he": [65535, 0], "he generally": [65535, 0], "generally began": [65535, 0], "began that": [65535, 0], "that day": [65535, 0], "day with": [65535, 0], "with wishing": [65535, 0], "wishing he": [65535, 0], "had had": [65535, 0], "no intervening": [65535, 0], "intervening holiday": [65535, 0], "holiday it": [65535, 0], "made the": [65535, 0], "the going": [65535, 0], "going into": [65535, 0], "into captivity": [65535, 0], "captivity and": [65535, 0], "and fetters": [65535, 0], "fetters again": [65535, 0], "again so": [65535, 0], "much more": [65535, 0], "more odious": [65535, 0], "odious tom": [65535, 0], "tom lay": [65535, 0], "lay thinking": [65535, 0], "thinking presently": [65535, 0], "presently it": [65535, 0], "it occurred": [65535, 0], "occurred to": [65535, 0], "to him": [43635, 21900], "him that": [32706, 32829], "was sick": [65535, 0], "sick then": [65535, 0], "then he": [58959, 6576], "could stay": [65535, 0], "stay home": [65535, 0], "home from": [65535, 0], "from school": [65535, 0], "school here": [65535, 0], "here was": [65535, 0], "a vague": [65535, 0], "vague possibility": [65535, 0], "possibility he": [65535, 0], "he canvassed": [65535, 0], "canvassed his": [65535, 0], "his system": [65535, 0], "system no": [65535, 0], "no ailment": [65535, 0], "ailment was": [65535, 0], "was found": [65535, 0], "found and": [65535, 0], "he investigated": [65535, 0], "investigated again": [65535, 0], "again this": [65535, 0], "he thought": [65535, 0], "could detect": [65535, 0], "detect colicky": [65535, 0], "colicky symptoms": [65535, 0], "symptoms and": [65535, 0], "he began": [65535, 0], "to encourage": [65535, 0], "encourage them": [65535, 0], "them with": [65535, 0], "with considerable": [65535, 0], "considerable hope": [65535, 0], "hope but": [65535, 0], "but they": [65535, 0], "they soon": [65535, 0], "soon grew": [65535, 0], "grew feeble": [65535, 0], "feeble and": [65535, 0], "presently died": [65535, 0], "died wholly": [65535, 0], "wholly away": [65535, 0], "away he": [65535, 0], "he reflected": [65535, 0], "reflected further": [65535, 0], "further suddenly": [65535, 0], "suddenly he": [65535, 0], "he discovered": [65535, 0], "discovered something": [65535, 0], "something one": [65535, 0], "one of": [50929, 14606], "his upper": [65535, 0], "upper front": [65535, 0], "front teeth": [65535, 0], "teeth was": [65535, 0], "was loose": [65535, 0], "loose this": [65535, 0], "this was": [65535, 0], "was lucky": [65535, 0], "lucky he": [65535, 0], "to begin": [65535, 0], "begin to": [32706, 32829], "to groan": [65535, 0], "groan as": [65535, 0], "a starter": [65535, 0], "starter as": [65535, 0], "as he": [57316, 8219], "it when": [13068, 52467], "when it": [49105, 16430], "that if": [65535, 0], "he came": [32706, 32829], "came into": [32706, 32829], "into court": [65535, 0], "court with": [65535, 0], "with that": [65535, 0], "that argument": [65535, 0], "argument his": [65535, 0], "aunt would": [65535, 0], "would pull": [65535, 0], "pull it": [65535, 0], "out and": [65535, 0], "and that": [18674, 46861], "that would": [18674, 46861], "would hurt": [65535, 0], "hurt so": [65535, 0], "he would": [47281, 18254], "would hold": [65535, 0], "hold the": [65535, 0], "the tooth": [65535, 0], "tooth in": [65535, 0], "in reserve": [65535, 0], "reserve for": [65535, 0], "the present": [32706, 32829], "present and": [65535, 0], "and seek": [65535, 0], "seek further": [65535, 0], "further nothing": [65535, 0], "nothing offered": [65535, 0], "offered for": [65535, 0], "for some": [65535, 0], "some little": [65535, 0], "little time": [65535, 0], "time and": [65535, 0], "he remembered": [65535, 0], "remembered hearing": [65535, 0], "hearing the": [65535, 0], "the doctor": [32706, 32829], "doctor tell": [65535, 0], "tell about": [65535, 0], "about a": [65535, 0], "certain thing": [65535, 0], "thing that": [65535, 0], "that laid": [65535, 0], "laid up": [65535, 0], "up a": [65535, 0], "a patient": [65535, 0], "patient for": [32706, 32829], "for two": [49105, 16430], "two or": [65535, 0], "or three": [65535, 0], "three weeks": [65535, 0], "weeks and": [65535, 0], "and threatened": [65535, 0], "threatened to": [65535, 0], "to make": [34634, 30901], "make him": [52389, 13146], "him lose": [65535, 0], "lose a": [65535, 0], "a finger": [65535, 0], "finger so": [65535, 0], "so the": [65535, 0], "boy eagerly": [65535, 0], "eagerly drew": [65535, 0], "drew his": [65535, 0], "his sore": [65535, 0], "sore toe": [65535, 0], "toe from": [65535, 0], "from under": [65535, 0], "the sheet": [65535, 0], "sheet and": [65535, 0], "and held": [65535, 0], "held it": [65535, 0], "it up": [65535, 0], "up for": [65535, 0], "for inspection": [65535, 0], "inspection but": [65535, 0], "but now": [65535, 0], "not know": [18674, 46861], "know the": [28026, 37509], "the necessary": [65535, 0], "necessary symptoms": [65535, 0], "symptoms however": [65535, 0], "however it": [65535, 0], "seemed well": [65535, 0], "well worth": [65535, 0], "worth while": [65535, 0], "while to": [65535, 0], "to chance": [65535, 0], "chance it": [65535, 0], "he fell": [65535, 0], "fell to": [65535, 0], "to groaning": [65535, 0], "groaning with": [65535, 0], "considerable spirit": [65535, 0], "spirit but": [65535, 0], "but sid": [65535, 0], "sid slept": [65535, 0], "slept on": [65535, 0], "on unconscious": [65535, 0], "unconscious tom": [65535, 0], "tom groaned": [65535, 0], "groaned louder": [65535, 0], "louder and": [65535, 0], "and fancied": [65535, 0], "fancied that": [65535, 0], "to feel": [65535, 0], "feel pain": [65535, 0], "pain in": [65535, 0], "the toe": [65535, 0], "toe no": [65535, 0], "no result": [65535, 0], "result from": [65535, 0], "from sid": [65535, 0], "sid tom": [65535, 0], "was panting": [65535, 0], "panting with": [65535, 0], "his exertions": [65535, 0], "exertions by": [65535, 0], "he took": [65535, 0], "a rest": [65535, 0], "rest and": [65535, 0], "then swelled": [65535, 0], "swelled himself": [65535, 0], "himself up": [65535, 0], "up and": [65535, 0], "and fetched": [65535, 0], "fetched a": [65535, 0], "a succession": [65535, 0], "succession of": [65535, 0], "of admirable": [65535, 0], "admirable groans": [65535, 0], "groans sid": [65535, 0], "sid snored": [65535, 0], "snored on": [65535, 0], "on tom": [65535, 0], "was aggravated": [65535, 0], "aggravated he": [65535, 0], "said sid": [65535, 0], "sid sid": [65535, 0], "and shook": [65535, 0], "shook him": [65535, 0], "him this": [65535, 0], "this course": [32706, 32829], "course worked": [65535, 0], "worked well": [65535, 0], "well and": [65535, 0], "tom began": [65535, 0], "groan again": [65535, 0], "again sid": [65535, 0], "sid yawned": [65535, 0], "yawned stretched": [65535, 0], "stretched then": [65535, 0], "then brought": [65535, 0], "brought himself": [65535, 0], "up on": [65535, 0], "on his": [65535, 0], "his elbow": [65535, 0], "elbow with": [65535, 0], "a snort": [65535, 0], "snort and": [65535, 0], "to stare": [65535, 0], "stare at": [65535, 0], "at tom": [65535, 0], "tom tom": [65535, 0], "tom went": [65535, 0], "went on": [65535, 0], "on groaning": [65535, 0], "groaning sid": [65535, 0], "sid said": [65535, 0], "said tom": [65535, 0], "tom say": [65535, 0], "say tom": [65535, 0], "tom no": [65535, 0], "no response": [65535, 0], "response here": [65535, 0], "here tom": [65535, 0], "tom what": [65535, 0], "what is": [35227, 30308], "is the": [22739, 42796], "matter tom": [65535, 0], "he shook": [65535, 0], "and looked": [65535, 0], "looked in": [65535, 0], "face anxiously": [65535, 0], "anxiously tom": [65535, 0], "tom moaned": [65535, 0], "moaned out": [65535, 0], "out oh": [65535, 0], "oh don't": [65535, 0], "don't sid": [65535, 0], "sid don't": [65535, 0], "don't joggle": [65535, 0], "joggle me": [65535, 0], "me why": [65535, 0], "why what's": [65535, 0], "what's the": [65535, 0], "tom i": [65535, 0], "i must": [21790, 43745], "must call": [65535, 0], "call auntie": [65535, 0], "auntie no": [65535, 0], "no never": [65535, 0], "never mind": [65535, 0], "mind it'll": [65535, 0], "it'll be": [65535, 0], "be over": [65535, 0], "over by": [65535, 0], "by maybe": [65535, 0], "maybe don't": [65535, 0], "don't call": [65535, 0], "call anybody": [65535, 0], "anybody but": [65535, 0], "must don't": [65535, 0], "don't groan": [65535, 0], "groan so": [65535, 0], "so tom": [65535, 0], "tom it's": [65535, 0], "it's awful": [65535, 0], "awful how": [65535, 0], "how long": [43635, 21900], "long you": [65535, 0], "you been": [65535, 0], "been this": [65535, 0], "this way": [43635, 21900], "way hours": [65535, 0], "hours ouch": [65535, 0], "ouch oh": [65535, 0], "don't stir": [65535, 0], "stir so": [65535, 0], "so sid": [65535, 0], "sid you'll": [65535, 0], "you'll kill": [65535, 0], "kill me": [65535, 0], "me tom": [65535, 0], "tom why": [65535, 0], "why didn't": [65535, 0], "didn't you": [65535, 0], "you wake": [65535, 0], "wake me": [65535, 0], "me sooner": [65535, 0], "sooner oh": [65535, 0], "oh tom": [65535, 0], "tom don't": [65535, 0], "don't it": [65535, 0], "it makes": [65535, 0], "makes my": [65535, 0], "my flesh": [65535, 0], "flesh crawl": [65535, 0], "crawl to": [65535, 0], "hear you": [65535, 0], "you tom": [65535, 0], "matter i": [65535, 0], "i forgive": [65535, 0], "forgive you": [65535, 0], "you everything": [65535, 0], "everything sid": [65535, 0], "sid groan": [65535, 0], "groan everything": [65535, 0], "everything you've": [65535, 0], "you've ever": [65535, 0], "ever done": [65535, 0], "done to": [65535, 0], "to me": [9332, 56203], "me when": [65535, 0], "when i'm": [65535, 0], "i'm gone": [65535, 0], "gone oh": [65535, 0], "tom you": [65535, 0], "you ain't": [65535, 0], "ain't dying": [65535, 0], "dying are": [65535, 0], "are you": [21790, 43745], "you don't": [65535, 0], "don't tom": [65535, 0], "tom oh": [65535, 0], "don't maybe": [65535, 0], "maybe i": [65535, 0], "forgive everybody": [65535, 0], "everybody sid": [65535, 0], "groan tell": [65535, 0], "tell 'em": [65535, 0], "'em so": [65535, 0], "sid you": [65535, 0], "you give": [65535, 0], "give my": [65535, 0], "my window": [65535, 0], "window sash": [65535, 0], "sash and": [65535, 0], "and my": [5937, 59598], "my cat": [65535, 0], "cat with": [65535, 0], "with one": [65535, 0], "one eye": [65535, 0], "eye to": [65535, 0], "to that": [13068, 52467], "that new": [65535, 0], "new girl": [65535, 0], "girl that's": [65535, 0], "that's come": [65535, 0], "to town": [65535, 0], "and tell": [16338, 49197], "tell her": [21790, 43745], "her but": [65535, 0], "sid had": [65535, 0], "had snatched": [65535, 0], "snatched his": [65535, 0], "his clothes": [65535, 0], "clothes and": [65535, 0], "and gone": [65535, 0], "gone tom": [65535, 0], "was suffering": [65535, 0], "in reality": [65535, 0], "reality now": [65535, 0], "now so": [65535, 0], "so handsomely": [65535, 0], "handsomely was": [65535, 0], "was his": [32706, 32829], "his imagination": [65535, 0], "imagination working": [65535, 0], "working and": [65535, 0], "so his": [43635, 21900], "his groans": [65535, 0], "groans had": [65535, 0], "had gathered": [65535, 0], "gathered quite": [65535, 0], "quite a": [65535, 0], "genuine tone": [65535, 0], "tone sid": [65535, 0], "sid flew": [65535, 0], "down stairs": [65535, 0], "stairs and": [65535, 0], "and said": [65535, 0], "said oh": [65535, 0], "oh aunt": [65535, 0], "polly come": [65535, 0], "come tom's": [65535, 0], "tom's dying": [65535, 0], "dying dying": [65535, 0], "dying yes'm": [65535, 0], "yes'm don't": [65535, 0], "don't wait": [65535, 0], "wait come": [65535, 0], "come quick": [65535, 0], "quick rubbage": [65535, 0], "rubbage i": [65535, 0], "i don't": [65535, 0], "don't believe": [65535, 0], "believe it": [65535, 0], "but she": [32706, 32829], "she fled": [65535, 0], "fled up": [65535, 0], "up stairs": [65535, 0], "stairs nevertheless": [65535, 0], "nevertheless with": [65535, 0], "with sid": [65535, 0], "mary at": [65535, 0], "at her": [21790, 43745], "her heels": [65535, 0], "heels and": [65535, 0], "and her": [49105, 16430], "her face": [43635, 21900], "face grew": [65535, 0], "grew white": [65535, 0], "white too": [65535, 0], "her lip": [65535, 0], "lip trembled": [65535, 0], "trembled when": [65535, 0], "when she": [65535, 0], "she reached": [65535, 0], "reached the": [65535, 0], "the bedside": [65535, 0], "bedside she": [65535, 0], "she gasped": [65535, 0], "gasped out": [65535, 0], "out you": [32706, 32829], "tom what's": [65535, 0], "matter with": [65535, 0], "with you": [23349, 42186], "you oh": [65535, 0], "oh auntie": [65535, 0], "auntie i'm": [65535, 0], "i'm what's": [65535, 0], "you what": [16338, 49197], "you child": [65535, 0], "child oh": [65535, 0], "auntie my": [65535, 0], "my sore": [65535, 0], "sore toe's": [65535, 0], "toe's mortified": [65535, 0], "mortified the": [65535, 0], "the old": [65535, 0], "old lady": [65535, 0], "lady sank": [65535, 0], "sank down": [65535, 0], "down into": [65535, 0], "a chair": [65535, 0], "chair and": [65535, 0], "and laughed": [65535, 0], "laughed a": [65535, 0], "little then": [65535, 0], "then cried": [65535, 0], "cried a": [65535, 0], "then did": [65535, 0], "did both": [65535, 0], "both together": [65535, 0], "together this": [65535, 0], "this restored": [65535, 0], "restored her": [65535, 0], "her and": [49105, 16430], "and she": [61666, 3869], "she said": [65535, 0], "what a": [43635, 21900], "a turn": [65535, 0], "turn you": [65535, 0], "you did": [21790, 43745], "did give": [65535, 0], "give me": [65535, 0], "me now": [43635, 21900], "now you": [43635, 21900], "you shut": [32706, 32829], "shut up": [65535, 0], "up that": [65535, 0], "that nonsense": [65535, 0], "nonsense and": [65535, 0], "and climb": [65535, 0], "climb out": [65535, 0], "of this": [28026, 37509], "this the": [32706, 32829], "the groans": [65535, 0], "groans ceased": [65535, 0], "ceased and": [65535, 0], "the pain": [65535, 0], "pain vanished": [65535, 0], "vanished from": [65535, 0], "boy felt": [65535, 0], "felt a": [65535, 0], "little foolish": [65535, 0], "said aunt": [65535, 0], "polly it": [65535, 0], "seemed mortified": [65535, 0], "mortified and": [65535, 0], "and it": [52389, 13146], "it hurt": [65535, 0], "so i": [26155, 39380], "i never": [65535, 0], "never minded": [65535, 0], "minded my": [65535, 0], "my tooth": [65535, 0], "tooth at": [65535, 0], "at all": [32706, 32829], "all your": [65535, 0], "your tooth": [65535, 0], "tooth indeed": [65535, 0], "indeed what's": [65535, 0], "with your": [32706, 32829], "tooth one": [65535, 0], "of them's": [65535, 0], "them's loose": [65535, 0], "loose and": [65535, 0], "it aches": [65535, 0], "aches perfectly": [65535, 0], "perfectly awful": [65535, 0], "awful there": [65535, 0], "there there": [65535, 0], "there now": [65535, 0], "now don't": [65535, 0], "don't begin": [65535, 0], "begin that": [65535, 0], "that groaning": [65535, 0], "groaning again": [65535, 0], "again open": [65535, 0], "open your": [65535, 0], "your mouth": [65535, 0], "mouth well": [65535, 0], "well your": [65535, 0], "tooth is": [65535, 0], "is loose": [65535, 0], "loose but": [65535, 0], "but you're": [65535, 0], "you're not": [65535, 0], "not going": [65535, 0], "going to": [52389, 13146], "to die": [16338, 49197], "die about": [65535, 0], "about that": [65535, 0], "that mary": [65535, 0], "mary get": [65535, 0], "get me": [65535, 0], "me a": [24518, 41017], "a silk": [65535, 0], "silk thread": [65535, 0], "thread and": [65535, 0], "a chunk": [65535, 0], "chunk of": [65535, 0], "of fire": [32706, 32829], "fire out": [65535, 0], "the kitchen": [65535, 0], "kitchen tom": [65535, 0], "tom said": [65535, 0], "oh please": [65535, 0], "please auntie": [65535, 0], "auntie don't": [65535, 0], "don't pull": [65535, 0], "it don't": [65535, 0], "don't hurt": [65535, 0], "hurt any": [65535, 0], "any more": [65535, 0], "more i": [32706, 32829], "i wish": [65535, 0], "wish i": [65535, 0], "i may": [65535, 0], "may never": [65535, 0], "never stir": [65535, 0], "stir if": [65535, 0], "it does": [65535, 0], "does please": [65535, 0], "please don't": [65535, 0], "don't auntie": [65535, 0], "auntie i": [65535, 0], "don't want": [65535, 0], "want to": [65535, 0], "to stay": [43635, 21900], "school oh": [65535, 0], "oh you": [65535, 0], "don't don't": [65535, 0], "don't you": [65535, 0], "you so": [49105, 16430], "so all": [65535, 0], "all this": [13068, 52467], "this row": [65535, 0], "row was": [65535, 0], "was because": [65535, 0], "because you": [21790, 43745], "you thought": [32706, 32829], "thought you'd": [65535, 0], "you'd get": [65535, 0], "get to": [65535, 0], "school and": [65535, 0], "and go": [43635, 21900], "go a": [65535, 0], "a fishing": [65535, 0], "fishing tom": [65535, 0], "i love": [65535, 0], "love you": [65535, 0], "so and": [32706, 32829], "and you": [20112, 45423], "you seem": [65535, 0], "seem to": [65535, 0], "to try": [65535, 0], "try every": [65535, 0], "every way": [65535, 0], "way you": [65535, 0], "you can": [65535, 0], "can to": [65535, 0], "to break": [65535, 0], "break my": [65535, 0], "my old": [65535, 0], "old heart": [65535, 0], "heart with": [65535, 0], "your outrageousness": [65535, 0], "outrageousness by": [65535, 0], "the dental": [65535, 0], "dental instruments": [65535, 0], "instruments were": [65535, 0], "were ready": [65535, 0], "ready the": [65535, 0], "lady made": [65535, 0], "made one": [65535, 0], "one end": [65535, 0], "end of": [65535, 0], "the silk": [65535, 0], "thread fast": [65535, 0], "fast to": [65535, 0], "to tom's": [65535, 0], "tom's tooth": [65535, 0], "tooth with": [65535, 0], "a loop": [65535, 0], "loop and": [65535, 0], "and tied": [65535, 0], "tied the": [65535, 0], "other to": [65535, 0], "the bedpost": [65535, 0], "bedpost then": [65535, 0], "then she": [56143, 9392], "she seized": [65535, 0], "seized the": [65535, 0], "the chunk": [65535, 0], "and suddenly": [65535, 0], "suddenly thrust": [65535, 0], "thrust it": [65535, 0], "it almost": [65535, 0], "almost into": [65535, 0], "boy's face": [65535, 0], "face the": [65535, 0], "tooth hung": [65535, 0], "hung dangling": [65535, 0], "dangling by": [65535, 0], "bedpost now": [65535, 0], "now but": [65535, 0], "but all": [65535, 0], "all trials": [65535, 0], "trials bring": [65535, 0], "bring their": [65535, 0], "their compensations": [65535, 0], "compensations as": [65535, 0], "as tom": [65535, 0], "tom wended": [65535, 0], "wended to": [65535, 0], "to school": [65535, 0], "school after": [65535, 0], "after breakfast": [65535, 0], "breakfast he": [65535, 0], "the envy": [65535, 0], "envy of": [65535, 0], "of every": [65535, 0], "every boy": [65535, 0], "he met": [32706, 32829], "met because": [65535, 0], "because the": [43635, 21900], "the gap": [65535, 0], "gap in": [65535, 0], "upper row": [65535, 0], "row of": [65535, 0], "of teeth": [65535, 0], "teeth enabled": [65535, 0], "enabled him": [65535, 0], "to expectorate": [65535, 0], "expectorate in": [65535, 0], "a new": [65535, 0], "new and": [65535, 0], "and admirable": [65535, 0], "admirable way": [65535, 0], "way he": [65535, 0], "he gathered": [65535, 0], "a following": [65535, 0], "following of": [65535, 0], "of lads": [65535, 0], "lads interested": [65535, 0], "interested in": [65535, 0], "the exhibition": [65535, 0], "exhibition and": [65535, 0], "and one": [65535, 0], "one that": [9332, 56203], "that had": [49105, 16430], "had cut": [65535, 0], "cut his": [65535, 0], "his finger": [32706, 32829], "finger and": [65535, 0], "and had": [65535, 0], "been a": [65535, 0], "a centre": [65535, 0], "centre of": [65535, 0], "of fascination": [65535, 0], "fascination and": [65535, 0], "and homage": [65535, 0], "homage up": [65535, 0], "to this": [16338, 49197], "time now": [65535, 0], "now found": [65535, 0], "found himself": [65535, 0], "himself suddenly": [65535, 0], "suddenly without": [65535, 0], "without an": [65535, 0], "an adherent": [65535, 0], "adherent and": [65535, 0], "and shorn": [65535, 0], "shorn of": [65535, 0], "his glory": [65535, 0], "glory his": [65535, 0], "heart was": [65535, 0], "was heavy": [65535, 0], "heavy and": [65535, 0], "said with": [65535, 0], "a disdain": [65535, 0], "disdain which": [65535, 0], "which he": [39262, 26273], "not feel": [65535, 0], "feel that": [65535, 0], "it wasn't": [65535, 0], "wasn't anything": [65535, 0], "anything to": [65535, 0], "to spit": [65535, 0], "spit like": [65535, 0], "like tom": [65535, 0], "sawyer but": [65535, 0], "but another": [65535, 0], "another boy": [65535, 0], "boy said": [65535, 0], "said sour": [65535, 0], "sour grapes": [65535, 0], "grapes and": [65535, 0], "he wandered": [65535, 0], "wandered away": [65535, 0], "away a": [65535, 0], "a dismantled": [65535, 0], "dismantled hero": [65535, 0], "hero shortly": [65535, 0], "shortly tom": [65535, 0], "tom came": [65535, 0], "came upon": [65535, 0], "the juvenile": [65535, 0], "juvenile pariah": [65535, 0], "pariah of": [65535, 0], "village huckleberry": [65535, 0], "huckleberry finn": [65535, 0], "finn son": [65535, 0], "son of": [65535, 0], "town drunkard": [65535, 0], "drunkard huckleberry": [65535, 0], "huckleberry was": [65535, 0], "was cordially": [65535, 0], "cordially hated": [65535, 0], "hated and": [65535, 0], "and dreaded": [65535, 0], "dreaded by": [65535, 0], "by all": [21790, 43745], "the mothers": [65535, 0], "mothers of": [65535, 0], "town because": [65535, 0], "because he": [65535, 0], "was idle": [65535, 0], "idle and": [65535, 0], "and lawless": [65535, 0], "lawless and": [65535, 0], "and vulgar": [65535, 0], "vulgar and": [65535, 0], "and bad": [32706, 32829], "bad and": [65535, 0], "and because": [65535, 0], "because all": [65535, 0], "all their": [65535, 0], "their children": [65535, 0], "children admired": [65535, 0], "admired him": [65535, 0], "and delighted": [65535, 0], "delighted in": [65535, 0], "his forbidden": [65535, 0], "forbidden society": [65535, 0], "society and": [65535, 0], "and wished": [65535, 0], "wished they": [65535, 0], "they dared": [65535, 0], "dared to": [65535, 0], "be like": [65535, 0], "like him": [65535, 0], "him tom": [65535, 0], "was like": [32706, 32829], "like the": [39262, 26273], "the rest": [65535, 0], "rest of": [65535, 0], "the respectable": [65535, 0], "respectable boys": [65535, 0], "boys in": [65535, 0], "he envied": [65535, 0], "envied huckleberry": [65535, 0], "huckleberry his": [65535, 0], "his gaudy": [65535, 0], "gaudy outcast": [65535, 0], "outcast condition": [65535, 0], "condition and": [65535, 0], "was under": [65535, 0], "under strict": [65535, 0], "strict orders": [65535, 0], "orders not": [65535, 0], "not to": [65535, 0], "to play": [65535, 0], "with him": [32706, 32829], "he played": [65535, 0], "played with": [65535, 0], "him every": [65535, 0], "every time": [65535, 0], "he got": [65535, 0], "got a": [65535, 0], "a chance": [65535, 0], "chance huckleberry": [65535, 0], "always dressed": [65535, 0], "dressed in": [65535, 0], "the cast": [65535, 0], "cast off": [65535, 0], "off clothes": [65535, 0], "clothes of": [65535, 0], "of full": [65535, 0], "full grown": [65535, 0], "grown men": [65535, 0], "men and": [43635, 21900], "they were": [65535, 0], "were in": [54578, 10957], "in perennial": [65535, 0], "perennial bloom": [65535, 0], "bloom and": [65535, 0], "and fluttering": [65535, 0], "fluttering with": [65535, 0], "with rags": [65535, 0], "rags his": [65535, 0], "his hat": [65535, 0], "hat was": [65535, 0], "a vast": [65535, 0], "vast ruin": [65535, 0], "ruin with": [65535, 0], "a wide": [65535, 0], "wide crescent": [65535, 0], "crescent lopped": [65535, 0], "lopped out": [65535, 0], "of its": [65535, 0], "its brim": [65535, 0], "brim his": [65535, 0], "his coat": [65535, 0], "coat when": [65535, 0], "he wore": [65535, 0], "wore one": [65535, 0], "one hung": [65535, 0], "hung nearly": [65535, 0], "nearly to": [65535, 0], "his heels": [65535, 0], "had the": [13068, 52467], "the rearward": [65535, 0], "rearward buttons": [65535, 0], "buttons far": [65535, 0], "far down": [65535, 0], "back but": [65535, 0], "one suspender": [65535, 0], "suspender supported": [65535, 0], "supported his": [65535, 0], "his trousers": [65535, 0], "trousers the": [65535, 0], "the seat": [65535, 0], "seat of": [65535, 0], "the trousers": [65535, 0], "trousers bagged": [65535, 0], "bagged low": [65535, 0], "low and": [65535, 0], "and contained": [65535, 0], "contained nothing": [65535, 0], "nothing the": [65535, 0], "the fringed": [65535, 0], "fringed legs": [65535, 0], "legs dragged": [65535, 0], "dragged in": [65535, 0], "the dirt": [65535, 0], "dirt when": [65535, 0], "when not": [65535, 0], "not rolled": [65535, 0], "rolled up": [65535, 0], "up huckleberry": [65535, 0], "huckleberry came": [65535, 0], "went at": [65535, 0], "at his": [39262, 26273], "his own": [65535, 0], "own free": [65535, 0], "free will": [65535, 0], "will he": [32706, 32829], "he slept": [32706, 32829], "on doorsteps": [65535, 0], "doorsteps in": [65535, 0], "in fine": [65535, 0], "fine weather": [65535, 0], "weather and": [65535, 0], "and in": [5442, 60093], "in empty": [65535, 0], "empty hogsheads": [65535, 0], "hogsheads in": [65535, 0], "in wet": [65535, 0], "wet he": [65535, 0], "not have": [65535, 0], "have to": [65535, 0], "to go": [40902, 24633], "go to": [21790, 43745], "school or": [65535, 0], "or to": [65535, 0], "church or": [65535, 0], "or call": [65535, 0], "call any": [65535, 0], "any being": [65535, 0], "being master": [65535, 0], "master or": [65535, 0], "or obey": [65535, 0], "obey anybody": [65535, 0], "anybody he": [65535, 0], "could go": [32706, 32829], "go fishing": [65535, 0], "fishing or": [65535, 0], "or swimming": [65535, 0], "swimming when": [65535, 0], "when and": [32706, 32829], "and where": [65535, 0], "where he": [43635, 21900], "he chose": [65535, 0], "chose and": [65535, 0], "and stay": [32706, 32829], "stay as": [65535, 0], "as long": [65535, 0], "long as": [65535, 0], "as it": [21790, 43745], "it suited": [65535, 0], "suited him": [65535, 0], "him nobody": [65535, 0], "nobody forbade": [65535, 0], "forbade him": [65535, 0], "to fight": [65535, 0], "fight he": [65535, 0], "could sit": [65535, 0], "sit up": [65535, 0], "up as": [65535, 0], "as late": [65535, 0], "late as": [65535, 0], "he pleased": [65535, 0], "pleased he": [65535, 0], "always the": [65535, 0], "first boy": [65535, 0], "boy that": [65535, 0], "that went": [21790, 43745], "went barefoot": [65535, 0], "barefoot in": [65535, 0], "the spring": [32706, 32829], "spring and": [65535, 0], "last to": [32706, 32829], "to resume": [65535, 0], "resume leather": [65535, 0], "leather in": [65535, 0], "the fall": [65535, 0], "fall he": [65535, 0], "he never": [65535, 0], "never had": [65535, 0], "had to": [56143, 9392], "to wash": [65535, 0], "wash nor": [65535, 0], "nor put": [65535, 0], "put on": [65535, 0], "on clean": [65535, 0], "clean clothes": [65535, 0], "clothes he": [65535, 0], "could swear": [65535, 0], "swear wonderfully": [65535, 0], "wonderfully in": [65535, 0], "a word": [37388, 28147], "word everything": [65535, 0], "everything that": [65535, 0], "that goes": [32706, 32829], "goes to": [65535, 0], "make life": [65535, 0], "life precious": [65535, 0], "precious that": [65535, 0], "that boy": [65535, 0], "boy had": [65535, 0], "had so": [65535, 0], "so thought": [65535, 0], "thought every": [65535, 0], "every harassed": [65535, 0], "harassed hampered": [65535, 0], "hampered respectable": [65535, 0], "respectable boy": [65535, 0], "boy in": [65535, 0], "in st": [65535, 0], "petersburg tom": [65535, 0], "tom hailed": [65535, 0], "hailed the": [65535, 0], "the romantic": [65535, 0], "romantic outcast": [65535, 0], "outcast hello": [65535, 0], "hello huckleberry": [65535, 0], "huckleberry hello": [65535, 0], "hello yourself": [65535, 0], "yourself and": [65535, 0], "and see": [65535, 0], "see how": [65535, 0], "how you": [65535, 0], "you like": [43635, 21900], "like it": [65535, 0], "it what's": [65535, 0], "what's that": [43635, 21900], "that you": [16338, 49197], "you got": [49105, 16430], "got dead": [65535, 0], "dead cat": [65535, 0], "cat lemme": [65535, 0], "lemme see": [65535, 0], "see him": [32706, 32829], "him huck": [65535, 0], "huck my": [65535, 0], "my he's": [65535, 0], "he's pretty": [65535, 0], "pretty stiff": [65535, 0], "stiff where'd": [65535, 0], "where'd you": [65535, 0], "you get": [65535, 0], "get him": [49105, 16430], "him bought": [65535, 0], "bought him": [65535, 0], "him off'n": [65535, 0], "off'n a": [65535, 0], "a boy": [65535, 0], "boy what": [65535, 0], "what did": [65535, 0], "did you": [43635, 21900], "give i": [65535, 0], "i give": [65535, 0], "give a": [65535, 0], "a blue": [65535, 0], "blue ticket": [65535, 0], "ticket and": [65535, 0], "a bladder": [65535, 0], "bladder that": [65535, 0], "that i": [4082, 61453], "i got": [65535, 0], "got at": [65535, 0], "the slaughter": [65535, 0], "slaughter house": [65535, 0], "house where'd": [65535, 0], "get the": [65535, 0], "the blue": [65535, 0], "ticket bought": [65535, 0], "bought it": [65535, 0], "it off'n": [65535, 0], "off'n ben": [65535, 0], "ben rogers": [65535, 0], "rogers two": [65535, 0], "two weeks": [65535, 0], "weeks ago": [65535, 0], "ago for": [65535, 0], "a hoop": [65535, 0], "hoop stick": [65535, 0], "stick say": [65535, 0], "say what": [32706, 32829], "is dead": [65535, 0], "dead cats": [65535, 0], "cats good": [65535, 0], "good for": [65535, 0], "for huck": [65535, 0], "huck good": [65535, 0], "for cure": [65535, 0], "cure warts": [65535, 0], "warts with": [65535, 0], "with no": [43635, 21900], "no is": [65535, 0], "is that": [32706, 32829], "that so": [65535, 0], "i know": [20112, 45423], "know something": [65535, 0], "something that's": [65535, 0], "that's better": [65535, 0], "better i": [65535, 0], "i bet": [65535, 0], "bet you": [65535, 0], "don't what": [65535, 0], "is it": [54578, 10957], "it why": [65535, 0], "why spunk": [65535, 0], "spunk water": [65535, 0], "water spunk": [65535, 0], "water i": [65535, 0], "i wouldn't": [65535, 0], "wouldn't give": [65535, 0], "a dern": [65535, 0], "dern for": [65535, 0], "for spunk": [65535, 0], "water you": [65535, 0], "you wouldn't": [65535, 0], "wouldn't wouldn't": [65535, 0], "wouldn't you": [65535, 0], "you d'you": [65535, 0], "d'you ever": [65535, 0], "ever try": [65535, 0], "try it": [65535, 0], "it no": [65535, 0], "no i": [46760, 18775], "i hain't": [65535, 0], "hain't but": [65535, 0], "but bob": [65535, 0], "bob tanner": [65535, 0], "tanner did": [65535, 0], "did who": [65535, 0], "who told": [65535, 0], "told you": [32706, 32829], "so why": [65535, 0], "why he": [65535, 0], "he told": [21790, 43745], "told jeff": [65535, 0], "jeff thatcher": [65535, 0], "thatcher and": [65535, 0], "and jeff": [65535, 0], "jeff told": [65535, 0], "told johnny": [65535, 0], "johnny baker": [65535, 0], "baker and": [65535, 0], "and johnny": [65535, 0], "johnny told": [65535, 0], "told jim": [65535, 0], "jim hollis": [65535, 0], "hollis and": [65535, 0], "and jim": [65535, 0], "jim told": [65535, 0], "told ben": [65535, 0], "rogers and": [65535, 0], "and ben": [65535, 0], "ben told": [65535, 0], "told a": [65535, 0], "a nigger": [65535, 0], "nigger and": [65535, 0], "the nigger": [65535, 0], "nigger told": [65535, 0], "told me": [43635, 21900], "me there": [21790, 43745], "now well": [65535, 0], "well what": [65535, 0], "what of": [65535, 0], "it they'll": [65535, 0], "they'll all": [65535, 0], "all lie": [65535, 0], "lie leastways": [65535, 0], "leastways all": [65535, 0], "all but": [32706, 32829], "nigger i": [65535, 0], "don't know": [65535, 0], "know him": [32706, 32829], "him but": [32706, 32829], "never see": [65535, 0], "see a": [21790, 43745], "nigger that": [65535, 0], "that wouldn't": [65535, 0], "wouldn't lie": [65535, 0], "lie shucks": [65535, 0], "shucks now": [65535, 0], "you tell": [46760, 18775], "tell me": [18674, 46861], "me how": [32706, 32829], "how bob": [65535, 0], "tanner done": [65535, 0], "done it": [65535, 0], "it huck": [65535, 0], "huck why": [65535, 0], "took and": [65535, 0], "and dipped": [65535, 0], "dipped his": [65535, 0], "hand in": [43635, 21900], "a rotten": [65535, 0], "rotten stump": [65535, 0], "stump where": [65535, 0], "where the": [52389, 13146], "the rain": [65535, 0], "rain water": [65535, 0], "water was": [65535, 0], "the daytime": [65535, 0], "daytime certainly": [65535, 0], "certainly with": [65535, 0], "face to": [65535, 0], "the stump": [65535, 0], "stump yes": [65535, 0], "yes least": [65535, 0], "least i": [21790, 43745], "i reckon": [65535, 0], "reckon so": [65535, 0], "did he": [32706, 32829], "he say": [32706, 32829], "say anything": [65535, 0], "anything i": [65535, 0], "don't reckon": [65535, 0], "reckon he": [65535, 0], "did i": [10888, 54647], "know aha": [65535, 0], "aha talk": [65535, 0], "talk about": [65535, 0], "about trying": [65535, 0], "trying to": [65535, 0], "to cure": [65535, 0], "with spunk": [65535, 0], "water such": [65535, 0], "a blame": [65535, 0], "blame fool": [65535, 0], "fool way": [65535, 0], "way as": [65535, 0], "as that": [65535, 0], "that why": [65535, 0], "why that": [65535, 0], "that ain't": [65535, 0], "ain't a": [65535, 0], "a going": [65535, 0], "do any": [65535, 0], "any good": [65535, 0], "good you": [65535, 0], "got to": [65535, 0], "go all": [65535, 0], "all by": [65535, 0], "by yourself": [65535, 0], "yourself to": [65535, 0], "the middle": [65535, 0], "middle of": [65535, 0], "the woods": [65535, 0], "woods where": [65535, 0], "where you": [65535, 0], "you know": [23349, 42186], "know there's": [65535, 0], "there's a": [21790, 43745], "a spunk": [65535, 0], "water stump": [65535, 0], "stump and": [65535, 0], "and just": [65535, 0], "just as": [65535, 0], "as it's": [65535, 0], "it's midnight": [65535, 0], "midnight you": [65535, 0], "you back": [65535, 0], "back up": [65535, 0], "up against": [65535, 0], "against the": [16338, 49197], "and jam": [65535, 0], "jam your": [65535, 0], "your hand": [21790, 43745], "in and": [43635, 21900], "and say": [65535, 0], "say 'barley": [65535, 0], "'barley corn": [65535, 0], "corn barley": [65535, 0], "barley corn": [65535, 0], "corn injun": [65535, 0], "injun meal": [65535, 0], "meal shorts": [65535, 0], "shorts spunk": [65535, 0], "water swaller": [65535, 0], "swaller these": [65535, 0], "these warts": [65535, 0], "warts '": [65535, 0], "' and": [65535, 0], "then walk": [65535, 0], "walk away": [65535, 0], "away quick": [65535, 0], "quick eleven": [65535, 0], "eleven steps": [65535, 0], "steps with": [65535, 0], "your eyes": [65535, 0], "eyes shut": [65535, 0], "shut and": [43635, 21900], "then turn": [65535, 0], "turn around": [65535, 0], "around three": [65535, 0], "three times": [65535, 0], "times and": [65535, 0], "and walk": [65535, 0], "walk home": [65535, 0], "home without": [32706, 32829], "without speaking": [65535, 0], "speaking to": [65535, 0], "to anybody": [65535, 0], "anybody because": [65535, 0], "because if": [65535, 0], "if you": [48241, 17294], "you speak": [65535, 0], "speak the": [65535, 0], "the charm's": [65535, 0], "charm's busted": [65535, 0], "busted well": [65535, 0], "well that": [65535, 0], "that sounds": [65535, 0], "sounds like": [65535, 0], "like a": [29728, 35807], "good way": [65535, 0], "way but": [65535, 0], "but that": [13068, 52467], "ain't the": [65535, 0], "the way": [56143, 9392], "way bob": [65535, 0], "done no": [65535, 0], "no sir": [16338, 49197], "sir you": [26155, 39380], "can bet": [65535, 0], "bet he": [65535, 0], "he didn't": [65535, 0], "didn't becuz": [65535, 0], "becuz he's": [65535, 0], "he's the": [65535, 0], "the wartiest": [65535, 0], "wartiest boy": [65535, 0], "this town": [32706, 32829], "he wouldn't": [65535, 0], "wouldn't have": [65535, 0], "have a": [65535, 0], "a wart": [65535, 0], "wart on": [32706, 32829], "on him": [13068, 52467], "him if": [65535, 0], "if he'd": [65535, 0], "he'd knowed": [65535, 0], "knowed how": [65535, 0], "how to": [43635, 21900], "to work": [65535, 0], "work spunk": [65535, 0], "water i've": [65535, 0], "i've took": [65535, 0], "took off": [65535, 0], "off thousands": [65535, 0], "thousands of": [65535, 0], "of warts": [65535, 0], "warts off": [65535, 0], "off of": [65535, 0], "of my": [14851, 50684], "my hands": [65535, 0], "hands that": [65535, 0], "that way": [65535, 0], "way huck": [65535, 0], "huck i": [65535, 0], "i play": [65535, 0], "with frogs": [65535, 0], "frogs so": [65535, 0], "much that": [32706, 32829], "that i've": [65535, 0], "i've always": [65535, 0], "always got": [65535, 0], "got considerable": [65535, 0], "considerable many": [65535, 0], "many warts": [65535, 0], "warts sometimes": [65535, 0], "sometimes i": [65535, 0], "i take": [65535, 0], "take 'em": [65535, 0], "'em off": [65535, 0], "off with": [54578, 10957], "a bean": [65535, 0], "bean yes": [65535, 0], "yes bean's": [65535, 0], "bean's good": [65535, 0], "good i've": [65535, 0], "i've done": [65535, 0], "done that": [65535, 0], "that have": [65535, 0], "have you": [65535, 0], "you what's": [65535, 0], "what's your": [65535, 0], "your way": [65535, 0], "you take": [52389, 13146], "take and": [65535, 0], "and split": [65535, 0], "split the": [65535, 0], "the bean": [65535, 0], "bean and": [65535, 0], "and cut": [65535, 0], "cut the": [32706, 32829], "the wart": [65535, 0], "wart so": [65535, 0], "get some": [65535, 0], "some blood": [65535, 0], "blood and": [65535, 0], "then you": [32706, 32829], "you put": [65535, 0], "put the": [43635, 21900], "the blood": [49105, 16430], "blood on": [65535, 0], "on one": [65535, 0], "one piece": [65535, 0], "piece of": [65535, 0], "and take": [21790, 43745], "and dig": [65535, 0], "dig a": [65535, 0], "a hole": [65535, 0], "hole and": [65535, 0], "and bury": [65535, 0], "bury it": [65535, 0], "it 'bout": [65535, 0], "'bout midnight": [65535, 0], "midnight at": [65535, 0], "the crossroads": [65535, 0], "crossroads in": [65535, 0], "the dark": [65535, 0], "dark of": [65535, 0], "the moon": [65535, 0], "moon and": [65535, 0], "you burn": [65535, 0], "burn up": [65535, 0], "bean you": [65535, 0], "you see": [39262, 26273], "see that": [65535, 0], "that piece": [65535, 0], "piece that's": [65535, 0], "that's got": [65535, 0], "got the": [49105, 16430], "it will": [32706, 32829], "will keep": [65535, 0], "keep drawing": [65535, 0], "drawing and": [65535, 0], "and drawing": [65535, 0], "drawing trying": [65535, 0], "to fetch": [16338, 49197], "fetch the": [43635, 21900], "other piece": [65535, 0], "piece to": [65535, 0], "to it": [65535, 0], "so that": [21790, 43745], "that helps": [65535, 0], "helps the": [65535, 0], "blood to": [65535, 0], "to draw": [65535, 0], "draw the": [65535, 0], "wart and": [65535, 0], "and pretty": [65535, 0], "pretty soon": [65535, 0], "soon off": [65535, 0], "off she": [65535, 0], "she comes": [32706, 32829], "comes yes": [65535, 0], "yes that's": [65535, 0], "that's it": [65535, 0], "huck that's": [65535, 0], "it though": [65535, 0], "though when": [65535, 0], "when you're": [65535, 0], "you're burying": [65535, 0], "burying it": [65535, 0], "you say": [49105, 16430], "say 'down": [65535, 0], "'down bean": [65535, 0], "bean off": [65535, 0], "off wart": [65535, 0], "wart come": [65535, 0], "come no": [32706, 32829], "no more": [32706, 32829], "to bother": [65535, 0], "bother me": [65535, 0], "me '": [65535, 0], "' it's": [65535, 0], "it's better": [65535, 0], "better that's": [65535, 0], "that's the": [65535, 0], "way joe": [65535, 0], "joe harper": [65535, 0], "harper does": [65535, 0], "does and": [65535, 0], "and he's": [65535, 0], "he's been": [65535, 0], "been nearly": [65535, 0], "to coonville": [65535, 0], "coonville and": [65535, 0], "and most": [65535, 0], "most everywheres": [65535, 0], "everywheres but": [65535, 0], "but say": [21790, 43745], "say how": [32706, 32829], "how do": [65535, 0], "do you": [46760, 18775], "you cure": [65535, 0], "cure 'em": [65535, 0], "'em with": [65535, 0], "with dead": [65535, 0], "cats why": [65535, 0], "why you": [32706, 32829], "take your": [65535, 0], "your cat": [65535, 0], "cat and": [65535, 0], "go and": [65535, 0], "and get": [65535, 0], "get in": [32706, 32829], "the graveyard": [65535, 0], "graveyard 'long": [65535, 0], "'long about": [65535, 0], "about midnight": [65535, 0], "midnight when": [65535, 0], "when somebody": [65535, 0], "somebody that": [65535, 0], "was wicked": [65535, 0], "wicked has": [65535, 0], "has been": [65535, 0], "been buried": [65535, 0], "buried and": [65535, 0], "when it's": [65535, 0], "midnight a": [65535, 0], "a devil": [65535, 0], "devil will": [65535, 0], "will come": [65535, 0], "come or": [65535, 0], "or maybe": [65535, 0], "maybe two": [65535, 0], "three but": [65535, 0], "but you": [65535, 0], "you can't": [65535, 0], "can't see": [65535, 0], "see 'em": [65535, 0], "'em you": [65535, 0], "can only": [65535, 0], "only hear": [65535, 0], "hear something": [65535, 0], "something like": [65535, 0], "the wind": [65535, 0], "wind or": [65535, 0], "maybe hear": [65535, 0], "hear 'em": [65535, 0], "'em talk": [65535, 0], "talk and": [65535, 0], "when they're": [65535, 0], "they're taking": [65535, 0], "taking that": [65535, 0], "that feller": [65535, 0], "feller away": [65535, 0], "away you": [65535, 0], "you heave": [65535, 0], "heave your": [65535, 0], "cat after": [65535, 0], "after 'em": [65535, 0], "'em and": [65535, 0], "say 'devil": [65535, 0], "'devil follow": [65535, 0], "follow corpse": [65535, 0], "corpse cat": [65535, 0], "cat follow": [65535, 0], "follow devil": [65535, 0], "devil warts": [65535, 0], "warts follow": [65535, 0], "follow cat": [65535, 0], "cat i'm": [65535, 0], "i'm done": [65535, 0], "done with": [65535, 0], "with ye": [65535, 0], "ye '": [65535, 0], "' that'll": [65535, 0], "that'll fetch": [65535, 0], "fetch any": [65535, 0], "any wart": [65535, 0], "wart sounds": [65535, 0], "sounds right": [65535, 0], "right d'you": [65535, 0], "huck no": [65535, 0], "no but": [65535, 0], "but old": [65535, 0], "old mother": [65535, 0], "mother hopkins": [65535, 0], "hopkins told": [65535, 0], "me well": [32706, 32829], "well i": [53583, 11952], "reckon it's": [65535, 0], "it's so": [65535, 0], "so then": [65535, 0], "then becuz": [65535, 0], "becuz they": [65535, 0], "they say": [16338, 49197], "say she's": [65535, 0], "she's a": [65535, 0], "a witch": [32706, 32829], "witch say": [65535, 0], "say why": [65535, 0], "why tom": [65535, 0], "know she": [65535, 0], "she is": [9332, 56203], "is she": [16338, 49197], "she witched": [65535, 0], "witched pap": [65535, 0], "pap pap": [65535, 0], "pap says": [65535, 0], "says so": [65535, 0], "own self": [65535, 0], "self he": [65535, 0], "he come": [32706, 32829], "come along": [65535, 0], "along one": [65535, 0], "one day": [32706, 32829], "day and": [26155, 39380], "he see": [65535, 0], "see she": [65535, 0], "she was": [65535, 0], "a witching": [65535, 0], "witching him": [65535, 0], "took up": [65535, 0], "a rock": [65535, 0], "rock and": [65535, 0], "and if": [32706, 32829], "she hadn't": [65535, 0], "hadn't dodged": [65535, 0], "dodged he'd": [65535, 0], "he'd a": [65535, 0], "a got": [65535, 0], "got her": [65535, 0], "her well": [65535, 0], "that very": [21790, 43745], "very night": [65535, 0], "night he": [65535, 0], "he rolled": [65535, 0], "rolled off'n": [65535, 0], "a shed": [65535, 0], "shed wher'": [65535, 0], "wher' he": [65535, 0], "a layin": [65535, 0], "layin drunk": [65535, 0], "drunk and": [65535, 0], "and broke": [65535, 0], "broke his": [65535, 0], "his arm": [65535, 0], "arm why": [65535, 0], "why that's": [65535, 0], "that's awful": [65535, 0], "how did": [65535, 0], "he know": [65535, 0], "him lord": [65535, 0], "lord pap": [65535, 0], "pap can": [65535, 0], "can tell": [65535, 0], "tell easy": [65535, 0], "easy pap": [65535, 0], "says when": [65535, 0], "when they": [49105, 16430], "they keep": [65535, 0], "keep looking": [65535, 0], "looking at": [65535, 0], "at you": [21790, 43745], "you right": [65535, 0], "right stiddy": [65535, 0], "stiddy they're": [65535, 0], "they're a": [65535, 0], "witching you": [65535, 0], "you specially": [65535, 0], "specially if": [65535, 0], "they mumble": [65535, 0], "mumble becuz": [65535, 0], "becuz when": [65535, 0], "mumble they're": [65535, 0], "they're saying": [65535, 0], "saying the": [65535, 0], "the lord's": [65535, 0], "lord's prayer": [65535, 0], "prayer backards": [65535, 0], "backards say": [65535, 0], "say hucky": [65535, 0], "hucky when": [65535, 0], "when you": [16338, 49197], "you going": [65535, 0], "try the": [65535, 0], "the cat": [65535, 0], "cat to": [65535, 0], "to night": [21790, 43745], "night i": [65535, 0], "reckon they'll": [65535, 0], "they'll come": [65535, 0], "come after": [65535, 0], "after old": [65535, 0], "old hoss": [65535, 0], "hoss williams": [65535, 0], "williams to": [65535, 0], "night but": [32706, 32829], "they buried": [65535, 0], "buried him": [65535, 0], "him saturday": [65535, 0], "saturday didn't": [65535, 0], "didn't they": [65535, 0], "they get": [65535, 0], "saturday night": [65535, 0], "night why": [65535, 0], "why how": [32706, 32829], "you talk": [65535, 0], "talk how": [65535, 0], "how could": [65535, 0], "could their": [65535, 0], "their charms": [65535, 0], "charms work": [65535, 0], "work till": [65535, 0], "till midnight": [65535, 0], "midnight and": [65535, 0], "then it's": [65535, 0], "it's sunday": [65535, 0], "sunday devils": [65535, 0], "devils don't": [65535, 0], "don't slosh": [65535, 0], "slosh around": [65535, 0], "around much": [65535, 0], "much of": [65535, 0], "a sunday": [65535, 0], "sunday i": [65535, 0], "reckon i": [65535, 0], "never thought": [65535, 0], "that that's": [65535, 0], "that's so": [65535, 0], "so lemme": [65535, 0], "lemme go": [65535, 0], "go with": [16338, 49197], "you of": [32706, 32829], "of course": [65535, 0], "course if": [65535, 0], "ain't afeard": [65535, 0], "afeard afeard": [65535, 0], "afeard 'tain't": [65535, 0], "'tain't likely": [65535, 0], "likely will": [65535, 0], "will you": [17824, 47711], "you meow": [65535, 0], "meow yes": [65535, 0], "yes and": [65535, 0], "meow back": [65535, 0], "back if": [65535, 0], "get a": [52389, 13146], "chance last": [65535, 0], "last time": [65535, 0], "time you": [65535, 0], "you kep'": [65535, 0], "kep' me": [65535, 0], "a meowing": [65535, 0], "meowing around": [65535, 0], "around till": [65535, 0], "till old": [65535, 0], "old hays": [65535, 0], "hays went": [65535, 0], "to throwing": [65535, 0], "throwing rocks": [65535, 0], "rocks at": [65535, 0], "at me": [21790, 43745], "me and": [14521, 51014], "and says": [65535, 0], "says 'dern": [65535, 0], "'dern that": [65535, 0], "that cat": [65535, 0], "cat '": [65535, 0], "i hove": [65535, 0], "hove a": [65535, 0], "a brick": [65535, 0], "brick through": [65535, 0], "through his": [65535, 0], "his window": [65535, 0], "window but": [65535, 0], "but don't": [65535, 0], "tell i": [32706, 32829], "i won't": [65535, 0], "won't i": [65535, 0], "i couldn't": [65535, 0], "couldn't meow": [65535, 0], "meow that": [65535, 0], "that night": [65535, 0], "night becuz": [65535, 0], "becuz auntie": [65535, 0], "auntie was": [65535, 0], "was watching": [65535, 0], "watching me": [65535, 0], "me but": [13068, 52467], "but i'll": [65535, 0], "i'll meow": [65535, 0], "meow this": [65535, 0], "time say": [65535, 0], "say what's": [65535, 0], "that nothing": [65535, 0], "nothing but": [21790, 43745], "a tick": [65535, 0], "tick where'd": [65535, 0], "him out": [43635, 21900], "out in": [65535, 0], "woods what'll": [65535, 0], "what'll you": [65535, 0], "take for": [65535, 0], "for him": [37388, 28147], "him i": [21790, 43745], "know i": [21790, 43745], "to sell": [65535, 0], "sell him": [65535, 0], "him all": [32706, 32829], "all right": [65535, 0], "right it's": [65535, 0], "it's a": [65535, 0], "a mighty": [43635, 21900], "mighty small": [65535, 0], "small tick": [65535, 0], "tick anyway": [65535, 0], "anyway oh": [65535, 0], "oh anybody": [65535, 0], "anybody can": [65535, 0], "can run": [65535, 0], "run a": [65535, 0], "tick down": [65535, 0], "down that": [65535, 0], "that don't": [65535, 0], "don't belong": [65535, 0], "belong to": [65535, 0], "them i'm": [65535, 0], "i'm satisfied": [65535, 0], "satisfied with": [65535, 0], "with it": [19609, 45926], "it it's": [65535, 0], "good enough": [65535, 0], "enough tick": [65535, 0], "tick for": [65535, 0], "for me": [11879, 53656], "me sho": [65535, 0], "sho there's": [65535, 0], "there's ticks": [65535, 0], "ticks a": [65535, 0], "a plenty": [65535, 0], "plenty i": [65535, 0], "i could": [19609, 45926], "could have": [65535, 0], "a thousand": [18674, 46861], "thousand of": [65535, 0], "of 'em": [65535, 0], "'em if": [65535, 0], "if i": [26155, 39380], "i wanted": [65535, 0], "wanted to": [65535, 0], "to well": [65535, 0], "well why": [65535, 0], "why don't": [65535, 0], "you becuz": [65535, 0], "becuz you": [65535, 0], "know mighty": [65535, 0], "mighty well": [65535, 0], "well you": [65535, 0], "can't this": [65535, 0], "this is": [18674, 46861], "is a": [21790, 43745], "a pretty": [65535, 0], "pretty early": [65535, 0], "early tick": [65535, 0], "tick i": [65535, 0], "it's the": [65535, 0], "first one": [65535, 0], "one i've": [65535, 0], "i've seen": [65535, 0], "seen this": [65535, 0], "this year": [65535, 0], "year say": [65535, 0], "say huck": [65535, 0], "huck i'll": [65535, 0], "i'll give": [65535, 0], "give you": [65535, 0], "you my": [32706, 32829], "tooth for": [65535, 0], "him less": [65535, 0], "less see": [65535, 0], "see it": [32706, 32829], "it tom": [65535, 0], "tom got": [65535, 0], "got out": [65535, 0], "out a": [49105, 16430], "of paper": [65535, 0], "paper and": [65535, 0], "and carefully": [65535, 0], "carefully unrolled": [65535, 0], "unrolled it": [65535, 0], "it huckleberry": [65535, 0], "huckleberry viewed": [65535, 0], "viewed it": [65535, 0], "it wistfully": [65535, 0], "wistfully the": [65535, 0], "the temptation": [65535, 0], "temptation was": [65535, 0], "was very": [65535, 0], "very strong": [65535, 0], "strong at": [65535, 0], "last he": [65535, 0], "said is": [65535, 0], "it genuwyne": [65535, 0], "genuwyne tom": [65535, 0], "tom lifted": [65535, 0], "and showed": [65535, 0], "showed the": [65535, 0], "the vacancy": [65535, 0], "vacancy well": [65535, 0], "well all": [65535, 0], "right said": [65535, 0], "said huckleberry": [65535, 0], "huckleberry it's": [65535, 0], "a trade": [65535, 0], "trade tom": [65535, 0], "tom enclosed": [65535, 0], "enclosed the": [65535, 0], "the tick": [65535, 0], "tick in": [65535, 0], "the percussion": [65535, 0], "box that": [65535, 0], "had lately": [65535, 0], "lately been": [65535, 0], "been the": [65535, 0], "the pinchbug's": [65535, 0], "pinchbug's prison": [65535, 0], "prison and": [65535, 0], "boys separated": [65535, 0], "separated each": [65535, 0], "each feeling": [65535, 0], "feeling wealthier": [65535, 0], "wealthier than": [65535, 0], "than before": [65535, 0], "before when": [65535, 0], "when tom": [65535, 0], "tom reached": [65535, 0], "little isolated": [65535, 0], "isolated frame": [65535, 0], "frame schoolhouse": [65535, 0], "schoolhouse he": [65535, 0], "he strode": [65535, 0], "strode in": [65535, 0], "in briskly": [65535, 0], "briskly with": [65535, 0], "the manner": [65535, 0], "manner of": [65535, 0], "of one": [65535, 0], "one who": [65535, 0], "come with": [32706, 32829], "with all": [49105, 16430], "all honest": [65535, 0], "honest speed": [65535, 0], "speed he": [65535, 0], "he hung": [65535, 0], "hung his": [65535, 0], "hat on": [65535, 0], "a peg": [65535, 0], "peg and": [65535, 0], "and flung": [65535, 0], "flung himself": [65535, 0], "into his": [65535, 0], "his seat": [65535, 0], "seat with": [65535, 0], "with business": [65535, 0], "business like": [65535, 0], "like alacrity": [65535, 0], "alacrity the": [65535, 0], "the master": [49105, 16430], "master throned": [65535, 0], "throned on": [65535, 0], "on high": [65535, 0], "high in": [65535, 0], "his great": [65535, 0], "great splint": [65535, 0], "splint bottom": [65535, 0], "bottom arm": [65535, 0], "arm chair": [65535, 0], "chair was": [65535, 0], "was dozing": [65535, 0], "dozing lulled": [65535, 0], "lulled by": [65535, 0], "the drowsy": [65535, 0], "drowsy hum": [65535, 0], "hum of": [65535, 0], "of study": [65535, 0], "study the": [65535, 0], "the interruption": [65535, 0], "interruption roused": [65535, 0], "roused him": [65535, 0], "him thomas": [65535, 0], "thomas sawyer": [65535, 0], "sawyer tom": [65535, 0], "tom knew": [65535, 0], "knew that": [65535, 0], "that when": [32706, 32829], "when his": [65535, 0], "his name": [43635, 21900], "name was": [65535, 0], "was pronounced": [65535, 0], "pronounced in": [65535, 0], "in full": [65535, 0], "full it": [65535, 0], "it meant": [65535, 0], "meant trouble": [65535, 0], "trouble sir": [65535, 0], "sir come": [65535, 0], "come up": [65535, 0], "up here": [65535, 0], "here now": [65535, 0], "now sir": [32706, 32829], "sir why": [21790, 43745], "why are": [65535, 0], "you late": [65535, 0], "late again": [65535, 0], "usual tom": [65535, 0], "take refuge": [65535, 0], "refuge in": [65535, 0], "a lie": [65535, 0], "lie when": [65535, 0], "he saw": [65535, 0], "saw two": [65535, 0], "two long": [65535, 0], "long tails": [65535, 0], "tails of": [65535, 0], "of yellow": [65535, 0], "yellow hair": [65535, 0], "hair hanging": [65535, 0], "hanging down": [65535, 0], "down a": [65535, 0], "a back": [32706, 32829], "back that": [65535, 0], "he recognized": [65535, 0], "recognized by": [65535, 0], "the electric": [65535, 0], "electric sympathy": [65535, 0], "sympathy of": [65535, 0], "of love": [65535, 0], "love and": [65535, 0], "by that": [43635, 21900], "that form": [65535, 0], "form was": [65535, 0], "only vacant": [65535, 0], "vacant place": [65535, 0], "place on": [65535, 0], "the girls'": [65535, 0], "girls' side": [65535, 0], "side of": [65535, 0], "the school": [65535, 0], "school house": [65535, 0], "house he": [65535, 0], "he instantly": [65535, 0], "instantly said": [65535, 0], "said i": [65535, 0], "i stopped": [65535, 0], "stopped to": [65535, 0], "to talk": [65535, 0], "talk with": [65535, 0], "with huckleberry": [65535, 0], "finn the": [65535, 0], "the master's": [65535, 0], "master's pulse": [65535, 0], "pulse stood": [65535, 0], "stood still": [65535, 0], "still and": [32706, 32829], "he stared": [65535, 0], "stared helplessly": [65535, 0], "helplessly the": [65535, 0], "the buzz": [65535, 0], "buzz of": [65535, 0], "study ceased": [65535, 0], "ceased the": [65535, 0], "the pupils": [65535, 0], "pupils wondered": [65535, 0], "wondered if": [65535, 0], "if this": [32706, 32829], "this foolhardy": [65535, 0], "foolhardy boy": [65535, 0], "had lost": [65535, 0], "lost his": [65535, 0], "his mind": [65535, 0], "mind the": [65535, 0], "master said": [65535, 0], "said you": [65535, 0], "you you": [65535, 0], "did what": [65535, 0], "what stopped": [65535, 0], "finn there": [65535, 0], "was no": [65535, 0], "no mistaking": [65535, 0], "mistaking the": [65535, 0], "words thomas": [65535, 0], "sawyer this": [65535, 0], "most astounding": [65535, 0], "astounding confession": [65535, 0], "confession i": [65535, 0], "have ever": [65535, 0], "ever listened": [65535, 0], "listened to": [65535, 0], "to no": [65535, 0], "no mere": [65535, 0], "mere ferule": [65535, 0], "ferule will": [65535, 0], "will answer": [32706, 32829], "answer for": [65535, 0], "this offence": [65535, 0], "offence take": [65535, 0], "take off": [65535, 0], "off your": [65535, 0], "your jacket": [65535, 0], "jacket the": [65535, 0], "master's arm": [65535, 0], "arm performed": [65535, 0], "performed until": [65535, 0], "until it": [65535, 0], "was tired": [65535, 0], "tired and": [65535, 0], "the stock": [65535, 0], "stock of": [65535, 0], "of switches": [65535, 0], "switches notably": [65535, 0], "notably diminished": [65535, 0], "diminished then": [65535, 0], "then the": [52389, 13146], "the order": [65535, 0], "order followed": [65535, 0], "followed now": [65535, 0], "sir go": [65535, 0], "and sit": [65535, 0], "sit with": [65535, 0], "the girls": [65535, 0], "girls and": [65535, 0], "let this": [65535, 0], "this be": [32706, 32829], "be a": [32706, 32829], "a warning": [65535, 0], "warning to": [65535, 0], "to you": [10888, 54647], "you the": [32706, 32829], "the titter": [65535, 0], "titter that": [65535, 0], "that rippled": [65535, 0], "rippled around": [65535, 0], "around the": [65535, 0], "the room": [65535, 0], "room appeared": [65535, 0], "appeared to": [65535, 0], "to abash": [65535, 0], "abash the": [65535, 0], "boy but": [65535, 0], "but in": [65535, 0], "reality that": [65535, 0], "that result": [65535, 0], "result was": [65535, 0], "was caused": [65535, 0], "caused rather": [65535, 0], "rather more": [65535, 0], "more by": [65535, 0], "by his": [32706, 32829], "his worshipful": [65535, 0], "worshipful awe": [65535, 0], "awe of": [65535, 0], "his unknown": [65535, 0], "unknown idol": [65535, 0], "idol and": [65535, 0], "the dread": [65535, 0], "dread pleasure": [65535, 0], "pleasure that": [65535, 0], "that lay": [32706, 32829], "lay in": [65535, 0], "his high": [65535, 0], "high good": [65535, 0], "good fortune": [65535, 0], "fortune he": [65535, 0], "he sat": [65535, 0], "down upon": [65535, 0], "the end": [65535, 0], "the pine": [65535, 0], "pine bench": [65535, 0], "bench and": [65535, 0], "the girl": [65535, 0], "girl hitched": [65535, 0], "hitched herself": [65535, 0], "herself away": [65535, 0], "from him": [43635, 21900], "him with": [39262, 26273], "a toss": [65535, 0], "toss of": [65535, 0], "of her": [29066, 36469], "her head": [65535, 0], "head nudges": [65535, 0], "nudges and": [65535, 0], "and winks": [65535, 0], "winks and": [65535, 0], "and whispers": [65535, 0], "whispers traversed": [65535, 0], "traversed the": [65535, 0], "room but": [65535, 0], "but tom": [65535, 0], "tom sat": [65535, 0], "sat still": [65535, 0], "still with": [65535, 0], "his arms": [65535, 0], "arms upon": [65535, 0], "the long": [65535, 0], "long low": [65535, 0], "low desk": [65535, 0], "desk before": [65535, 0], "before him": [65535, 0], "and seemed": [65535, 0], "to study": [65535, 0], "study his": [65535, 0], "his book": [65535, 0], "book by": [65535, 0], "by attention": [65535, 0], "attention ceased": [65535, 0], "ceased from": [65535, 0], "the accustomed": [65535, 0], "accustomed school": [65535, 0], "school murmur": [65535, 0], "murmur rose": [65535, 0], "rose upon": [65535, 0], "the dull": [65535, 0], "dull air": [65535, 0], "air once": [65535, 0], "more presently": [65535, 0], "boy began": [65535, 0], "to steal": [65535, 0], "steal furtive": [65535, 0], "furtive glances": [65535, 0], "glances at": [65535, 0], "girl she": [65535, 0], "she observed": [65535, 0], "observed it": [65535, 0], "a mouth": [65535, 0], "mouth at": [65535, 0], "at him": [65535, 0], "and gave": [65535, 0], "gave him": [65535, 0], "him the": [65535, 0], "head for": [65535, 0], "the space": [65535, 0], "space of": [65535, 0], "a minute": [65535, 0], "minute when": [65535, 0], "she cautiously": [65535, 0], "cautiously faced": [65535, 0], "faced around": [65535, 0], "around again": [65535, 0], "again a": [65535, 0], "a peach": [65535, 0], "peach lay": [65535, 0], "lay before": [65535, 0], "before her": [32706, 32829], "her she": [65535, 0], "she thrust": [65535, 0], "it away": [65535, 0], "away tom": [65535, 0], "tom gently": [65535, 0], "gently put": [65535, 0], "put it": [65535, 0], "it back": [65535, 0], "back she": [65535, 0], "away again": [65535, 0], "with less": [65535, 0], "less animosity": [65535, 0], "animosity tom": [65535, 0], "tom patiently": [65535, 0], "patiently returned": [65535, 0], "returned it": [65535, 0], "it to": [32706, 32829], "its place": [65535, 0], "place then": [65535, 0], "she let": [65535, 0], "it remain": [65535, 0], "remain tom": [65535, 0], "tom scrawled": [65535, 0], "scrawled on": [65535, 0], "his slate": [65535, 0], "slate please": [65535, 0], "please take": [65535, 0], "take it": [43635, 21900], "it i": [43635, 21900], "got more": [65535, 0], "girl glanced": [65535, 0], "glanced at": [65535, 0], "words but": [65535, 0], "but made": [65535, 0], "made no": [65535, 0], "no sign": [65535, 0], "sign now": [65535, 0], "draw something": [65535, 0], "something on": [65535, 0], "the slate": [65535, 0], "slate hiding": [65535, 0], "hiding his": [65535, 0], "his work": [65535, 0], "work with": [65535, 0], "his left": [65535, 0], "left hand": [65535, 0], "hand for": [65535, 0], "a time": [32706, 32829], "girl refused": [65535, 0], "refused to": [65535, 0], "to notice": [65535, 0], "notice but": [65535, 0], "but her": [16338, 49197], "her human": [65535, 0], "human curiosity": [65535, 0], "curiosity presently": [65535, 0], "presently began": [65535, 0], "to manifest": [65535, 0], "manifest itself": [65535, 0], "itself by": [65535, 0], "by hardly": [65535, 0], "hardly perceptible": [65535, 0], "perceptible signs": [65535, 0], "signs the": [65535, 0], "boy worked": [65535, 0], "worked on": [65535, 0], "on apparently": [65535, 0], "apparently unconscious": [65535, 0], "unconscious the": [65535, 0], "girl made": [65535, 0], "a sort": [65535, 0], "sort of": [65535, 0], "of noncommittal": [65535, 0], "noncommittal attempt": [65535, 0], "attempt to": [65535, 0], "see but": [65535, 0], "boy did": [65535, 0], "not betray": [65535, 0], "betray that": [65535, 0], "was aware": [65535, 0], "aware of": [65535, 0], "it at": [21790, 43745], "last she": [65535, 0], "she gave": [65535, 0], "gave in": [65535, 0], "and hesitatingly": [65535, 0], "hesitatingly whispered": [65535, 0], "whispered let": [65535, 0], "let me": [23774, 41761], "me see": [32706, 32829], "tom partly": [65535, 0], "partly uncovered": [65535, 0], "uncovered a": [65535, 0], "a dismal": [65535, 0], "dismal caricature": [65535, 0], "caricature of": [65535, 0], "a house": [32706, 32829], "house with": [65535, 0], "with two": [65535, 0], "two gable": [65535, 0], "gable ends": [65535, 0], "ends to": [65535, 0], "a corkscrew": [65535, 0], "corkscrew of": [65535, 0], "of smoke": [65535, 0], "smoke issuing": [65535, 0], "issuing from": [65535, 0], "the chimney": [65535, 0], "chimney then": [65535, 0], "the girl's": [65535, 0], "girl's interest": [65535, 0], "interest began": [65535, 0], "to fasten": [65535, 0], "fasten itself": [65535, 0], "itself upon": [65535, 0], "the work": [65535, 0], "work and": [65535, 0], "she forgot": [65535, 0], "forgot everything": [65535, 0], "everything else": [65535, 0], "else when": [65535, 0], "was finished": [65535, 0], "finished she": [65535, 0], "she gazed": [65535, 0], "gazed a": [65535, 0], "a moment": [65535, 0], "moment then": [65535, 0], "then whispered": [65535, 0], "whispered it's": [65535, 0], "it's nice": [65535, 0], "nice make": [65535, 0], "make a": [24518, 41017], "a man": [15559, 49976], "man the": [65535, 0], "the artist": [65535, 0], "artist erected": [65535, 0], "erected a": [65535, 0], "man in": [65535, 0], "the front": [65535, 0], "front yard": [65535, 0], "yard that": [65535, 0], "that resembled": [65535, 0], "resembled a": [65535, 0], "a derrick": [65535, 0], "derrick he": [65535, 0], "have stepped": [65535, 0], "stepped over": [65535, 0], "over the": [65535, 0], "house but": [65535, 0], "girl was": [65535, 0], "not hypercritical": [65535, 0], "hypercritical she": [65535, 0], "was satisfied": [65535, 0], "the monster": [65535, 0], "monster and": [65535, 0], "a beautiful": [65535, 0], "beautiful man": [65535, 0], "man now": [32706, 32829], "now make": [32706, 32829], "make me": [32706, 32829], "me coming": [65535, 0], "coming along": [65535, 0], "along tom": [65535, 0], "tom drew": [65535, 0], "drew an": [65535, 0], "an hour": [65535, 0], "hour glass": [65535, 0], "glass with": [65535, 0], "a full": [65535, 0], "full moon": [65535, 0], "and straw": [65535, 0], "straw limbs": [65535, 0], "limbs to": [65535, 0], "and armed": [65535, 0], "armed the": [65535, 0], "the spreading": [65535, 0], "spreading fingers": [65535, 0], "fingers with": [65535, 0], "a portentous": [65535, 0], "portentous fan": [65535, 0], "fan the": [65535, 0], "girl said": [65535, 0], "said it's": [65535, 0], "it's ever": [65535, 0], "ever so": [65535, 0], "so nice": [65535, 0], "nice i": [65535, 0], "could draw": [65535, 0], "draw it's": [65535, 0], "it's easy": [65535, 0], "easy whispered": [65535, 0], "whispered tom": [65535, 0], "tom i'll": [65535, 0], "i'll learn": [65535, 0], "learn you": [65535, 0], "oh will": [65535, 0], "you when": [21790, 43745], "when at": [65535, 0], "at noon": [65535, 0], "noon do": [65535, 0], "you go": [65535, 0], "go home": [32706, 32829], "home to": [5937, 59598], "to dinner": [5937, 59598], "dinner i'll": [65535, 0], "i'll stay": [65535, 0], "stay if": [32706, 32829], "you will": [25148, 40387], "will good": [65535, 0], "good that's": [65535, 0], "that's a": [46760, 18775], "a whack": [65535, 0], "whack what's": [65535, 0], "your name": [32706, 32829], "name becky": [65535, 0], "becky thatcher": [65535, 0], "thatcher what's": [65535, 0], "what's yours": [65535, 0], "yours oh": [65535, 0], "oh i": [65535, 0], "know it's": [65535, 0], "it's thomas": [65535, 0], "sawyer that's": [65535, 0], "the name": [32706, 32829], "name they": [65535, 0], "they lick": [65535, 0], "lick me": [65535, 0], "me by": [16338, 49197], "by i'm": [65535, 0], "i'm tom": [65535, 0], "tom when": [65535, 0], "i'm good": [65535, 0], "you call": [65535, 0], "call me": [13068, 52467], "tom will": [65535, 0], "you yes": [65535, 0], "yes now": [65535, 0], "now tom": [65535, 0], "to scrawl": [65535, 0], "scrawl something": [65535, 0], "hiding the": [65535, 0], "words from": [65535, 0], "girl but": [65535, 0], "not backward": [65535, 0], "backward this": [65535, 0], "time she": [65535, 0], "she begged": [65535, 0], "begged to": [65535, 0], "see tom": [65535, 0], "oh it": [65535, 0], "it ain't": [65535, 0], "ain't anything": [65535, 0], "anything yes": [65535, 0], "yes it": [65535, 0], "is no": [13068, 52467], "no it": [32706, 32829], "ain't you": [65535, 0], "see yes": [65535, 0], "yes i": [65535, 0], "i do": [16338, 49197], "do indeed": [65535, 0], "indeed i": [65535, 0], "do please": [65535, 0], "please let": [65535, 0], "me you'll": [65535, 0], "you'll tell": [49105, 16430], "tell no": [65535, 0], "won't deed": [65535, 0], "deed and": [65535, 0], "and deed": [65535, 0], "and double": [65535, 0], "double deed": [65535, 0], "deed won't": [65535, 0], "won't you": [65535, 0], "you won't": [65535, 0], "won't tell": [65535, 0], "tell anybody": [65535, 0], "anybody at": [65535, 0], "all ever": [65535, 0], "ever as": [65535, 0], "as you": [14521, 51014], "you live": [65535, 0], "live no": [65535, 0], "won't ever": [65535, 0], "ever tell": [65535, 0], "anybody now": [65535, 0], "now let": [65535, 0], "me oh": [65535, 0], "see now": [65535, 0], "now that": [43635, 21900], "you treat": [65535, 0], "treat me": [65535, 0], "me so": [26155, 39380], "i will": [9607, 55928], "will see": [65535, 0], "see and": [32706, 32829], "she put": [65535, 0], "put her": [49105, 16430], "her small": [65535, 0], "small hand": [65535, 0], "hand upon": [65535, 0], "upon his": [65535, 0], "his and": [65535, 0], "little scuffle": [65535, 0], "scuffle ensued": [65535, 0], "ensued tom": [65535, 0], "tom pretending": [65535, 0], "pretending to": [65535, 0], "to resist": [65535, 0], "resist in": [65535, 0], "in earnest": [32706, 32829], "earnest but": [65535, 0], "but letting": [65535, 0], "letting his": [65535, 0], "hand slip": [65535, 0], "slip by": [65535, 0], "by degrees": [65535, 0], "degrees till": [65535, 0], "till these": [65535, 0], "these words": [65535, 0], "words were": [32706, 32829], "were revealed": [65535, 0], "revealed i": [65535, 0], "you bad": [65535, 0], "bad thing": [65535, 0], "thing and": [65535, 0], "she hit": [65535, 0], "hit his": [65535, 0], "hand a": [65535, 0], "a smart": [65535, 0], "smart rap": [65535, 0], "rap but": [65535, 0], "but reddened": [65535, 0], "reddened and": [65535, 0], "looked pleased": [65535, 0], "pleased nevertheless": [65535, 0], "nevertheless just": [65535, 0], "just at": [65535, 0], "at this": [39262, 26273], "this juncture": [65535, 0], "juncture the": [65535, 0], "a slow": [65535, 0], "slow fateful": [65535, 0], "fateful grip": [65535, 0], "grip closing": [65535, 0], "closing on": [65535, 0], "ear and": [65535, 0], "a steady": [65535, 0], "steady lifting": [65535, 0], "lifting impulse": [65535, 0], "impulse in": [65535, 0], "that vise": [65535, 0], "vise he": [65535, 0], "was borne": [65535, 0], "borne across": [65535, 0], "across the": [65535, 0], "and deposited": [65535, 0], "deposited in": [65535, 0], "own seat": [65535, 0], "seat under": [65535, 0], "under a": [65535, 0], "a peppering": [65535, 0], "peppering fire": [65535, 0], "fire of": [32706, 32829], "of giggles": [65535, 0], "giggles from": [65535, 0], "whole school": [65535, 0], "school then": [65535, 0], "master stood": [65535, 0], "stood over": [65535, 0], "over him": [65535, 0], "him during": [65535, 0], "during a": [65535, 0], "a few": [65535, 0], "few awful": [65535, 0], "awful moments": [65535, 0], "moments and": [65535, 0], "and finally": [65535, 0], "finally moved": [65535, 0], "moved away": [65535, 0], "away to": [43635, 21900], "his throne": [65535, 0], "throne without": [65535, 0], "without saying": [65535, 0], "saying a": [65535, 0], "word but": [65535, 0], "but although": [65535, 0], "although tom's": [65535, 0], "tom's ear": [65535, 0], "ear tingled": [65535, 0], "tingled his": [65535, 0], "was jubilant": [65535, 0], "jubilant as": [65535, 0], "school quieted": [65535, 0], "quieted down": [65535, 0], "down tom": [65535, 0], "tom made": [65535, 0], "made an": [65535, 0], "an honest": [32706, 32829], "honest effort": [65535, 0], "effort to": [65535, 0], "study but": [65535, 0], "the turmoil": [65535, 0], "turmoil within": [65535, 0], "within him": [32706, 32829], "him was": [65535, 0], "was too": [65535, 0], "too great": [65535, 0], "great in": [65535, 0], "in turn": [65535, 0], "turn he": [65535, 0], "took his": [65535, 0], "his place": [65535, 0], "place in": [65535, 0], "the reading": [65535, 0], "reading class": [65535, 0], "class and": [65535, 0], "a botch": [65535, 0], "botch of": [65535, 0], "then in": [65535, 0], "the geography": [65535, 0], "geography class": [65535, 0], "and turned": [65535, 0], "turned lakes": [65535, 0], "lakes into": [65535, 0], "into mountains": [65535, 0], "mountains mountains": [65535, 0], "mountains into": [65535, 0], "into rivers": [65535, 0], "rivers and": [65535, 0], "and rivers": [65535, 0], "rivers into": [65535, 0], "into continents": [65535, 0], "continents till": [65535, 0], "till chaos": [65535, 0], "chaos was": [65535, 0], "was come": [65535, 0], "come again": [65535, 0], "again then": [65535, 0], "the spelling": [65535, 0], "spelling class": [65535, 0], "got turned": [65535, 0], "turned down": [65535, 0], "down by": [65535, 0], "of mere": [65535, 0], "mere baby": [65535, 0], "baby words": [65535, 0], "words till": [65535, 0], "till he": [52389, 13146], "he brought": [32706, 32829], "brought up": [65535, 0], "up at": [65535, 0], "the foot": [65535, 0], "foot and": [65535, 0], "and yielded": [65535, 0], "yielded up": [65535, 0], "the pewter": [65535, 0], "pewter medal": [65535, 0], "medal which": [65535, 0], "had worn": [65535, 0], "worn with": [65535, 0], "with ostentation": [65535, 0], "ostentation for": [65535, 0], "for months": [65535, 0], "monday morning found": [65535, 0], "morning found tom": [65535, 0], "found tom sawyer": [65535, 0], "tom sawyer miserable": [65535, 0], "sawyer miserable monday": [65535, 0], "miserable monday morning": [65535, 0], "monday morning always": [65535, 0], "morning always found": [65535, 0], "always found him": [65535, 0], "found him so": [65535, 0], "him so because": [65535, 0], "so because it": [65535, 0], "because it began": [65535, 0], "it began another": [65535, 0], "began another week's": [65535, 0], "another week's slow": [65535, 0], "week's slow suffering": [65535, 0], "slow suffering in": [65535, 0], "suffering in school": [65535, 0], "in school he": [65535, 0], "school he generally": [65535, 0], "he generally began": [65535, 0], "generally began that": [65535, 0], "began that day": [65535, 0], "that day with": [65535, 0], "day with wishing": [65535, 0], "with wishing he": [65535, 0], "wishing he had": [65535, 0], "he had had": [65535, 0], "had had no": [65535, 0], "had no intervening": [65535, 0], "no intervening holiday": [65535, 0], "intervening holiday it": [65535, 0], "holiday it made": [65535, 0], "it made the": [65535, 0], "made the going": [65535, 0], "the going into": [65535, 0], "going into captivity": [65535, 0], "into captivity and": [65535, 0], "captivity and fetters": [65535, 0], "and fetters again": [65535, 0], "fetters again so": [65535, 0], "again so much": [65535, 0], "so much more": [65535, 0], "much more odious": [65535, 0], "more odious tom": [65535, 0], "odious tom lay": [65535, 0], "tom lay thinking": [65535, 0], "lay thinking presently": [65535, 0], "thinking presently it": [65535, 0], "presently it occurred": [65535, 0], "it occurred to": [65535, 0], "occurred to him": [65535, 0], "to him that": [65535, 0], "him that he": [21790, 43745], "wished he was": [65535, 0], "he was sick": [65535, 0], "was sick then": [65535, 0], "sick then he": [65535, 0], "then he could": [65535, 0], "he could stay": [65535, 0], "could stay home": [65535, 0], "stay home from": [65535, 0], "home from school": [65535, 0], "from school here": [65535, 0], "school here was": [65535, 0], "here was a": [65535, 0], "was a vague": [65535, 0], "a vague possibility": [65535, 0], "vague possibility he": [65535, 0], "possibility he canvassed": [65535, 0], "he canvassed his": [65535, 0], "canvassed his system": [65535, 0], "his system no": [65535, 0], "system no ailment": [65535, 0], "no ailment was": [65535, 0], "ailment was found": [65535, 0], "was found and": [65535, 0], "found and he": [65535, 0], "and he investigated": [65535, 0], "he investigated again": [65535, 0], "investigated again this": [65535, 0], "again this time": [65535, 0], "time he thought": [65535, 0], "he thought he": [65535, 0], "thought he could": [65535, 0], "he could detect": [65535, 0], "could detect colicky": [65535, 0], "detect colicky symptoms": [65535, 0], "colicky symptoms and": [65535, 0], "symptoms and he": [65535, 0], "and he began": [65535, 0], "he began to": [65535, 0], "began to encourage": [65535, 0], "to encourage them": [65535, 0], "encourage them with": [65535, 0], "them with considerable": [65535, 0], "with considerable hope": [65535, 0], "considerable hope but": [65535, 0], "hope but they": [65535, 0], "but they soon": [65535, 0], "they soon grew": [65535, 0], "soon grew feeble": [65535, 0], "grew feeble and": [65535, 0], "feeble and presently": [65535, 0], "and presently died": [65535, 0], "presently died wholly": [65535, 0], "died wholly away": [65535, 0], "wholly away he": [65535, 0], "away he reflected": [65535, 0], "he reflected further": [65535, 0], "reflected further suddenly": [65535, 0], "further suddenly he": [65535, 0], "suddenly he discovered": [65535, 0], "he discovered something": [65535, 0], "discovered something one": [65535, 0], "something one of": [65535, 0], "one of his": [65535, 0], "of his upper": [65535, 0], "his upper front": [65535, 0], "upper front teeth": [65535, 0], "front teeth was": [65535, 0], "teeth was loose": [65535, 0], "was loose this": [65535, 0], "loose this was": [65535, 0], "this was lucky": [65535, 0], "was lucky he": [65535, 0], "lucky he was": [65535, 0], "about to begin": [65535, 0], "to begin to": [65535, 0], "begin to groan": [65535, 0], "to groan as": [65535, 0], "groan as a": [65535, 0], "as a starter": [65535, 0], "a starter as": [65535, 0], "starter as he": [65535, 0], "as he called": [65535, 0], "called it when": [65535, 0], "it when it": [65535, 0], "when it occurred": [65535, 0], "him that if": [65535, 0], "that if he": [65535, 0], "if he came": [65535, 0], "he came into": [65535, 0], "came into court": [65535, 0], "into court with": [65535, 0], "court with that": [65535, 0], "with that argument": [65535, 0], "that argument his": [65535, 0], "argument his aunt": [65535, 0], "his aunt would": [65535, 0], "aunt would pull": [65535, 0], "would pull it": [65535, 0], "pull it out": [65535, 0], "it out and": [65535, 0], "out and that": [65535, 0], "and that would": [65535, 0], "that would hurt": [65535, 0], "would hurt so": [65535, 0], "hurt so he": [65535, 0], "so he thought": [65535, 0], "thought he would": [65535, 0], "he would hold": [65535, 0], "would hold the": [65535, 0], "hold the tooth": [65535, 0], "the tooth in": [65535, 0], "tooth in reserve": [65535, 0], "in reserve for": [65535, 0], "reserve for the": [65535, 0], "for the present": [65535, 0], "the present and": [65535, 0], "present and seek": [65535, 0], "and seek further": [65535, 0], "seek further nothing": [65535, 0], "further nothing offered": [65535, 0], "nothing offered for": [65535, 0], "offered for some": [65535, 0], "for some little": [65535, 0], "some little time": [65535, 0], "little time and": [65535, 0], "time and then": [65535, 0], "and then he": [65535, 0], "then he remembered": [65535, 0], "he remembered hearing": [65535, 0], "remembered hearing the": [65535, 0], "hearing the doctor": [65535, 0], "the doctor tell": [65535, 0], "doctor tell about": [65535, 0], "tell about a": [65535, 0], "about a certain": [65535, 0], "a certain thing": [65535, 0], "certain thing that": [65535, 0], "thing that laid": [65535, 0], "that laid up": [65535, 0], "laid up a": [65535, 0], "up a patient": [65535, 0], "a patient for": [65535, 0], "patient for two": [65535, 0], "for two or": [65535, 0], "two or three": [65535, 0], "or three weeks": [65535, 0], "three weeks and": [65535, 0], "weeks and threatened": [65535, 0], "and threatened to": [65535, 0], "threatened to make": [65535, 0], "to make him": [65535, 0], "make him lose": [65535, 0], "him lose a": [65535, 0], "lose a finger": [65535, 0], "a finger so": [65535, 0], "finger so the": [65535, 0], "so the boy": [65535, 0], "the boy eagerly": [65535, 0], "boy eagerly drew": [65535, 0], "eagerly drew his": [65535, 0], "drew his sore": [65535, 0], "his sore toe": [65535, 0], "sore toe from": [65535, 0], "toe from under": [65535, 0], "from under the": [65535, 0], "under the sheet": [65535, 0], "the sheet and": [65535, 0], "sheet and held": [65535, 0], "and held it": [65535, 0], "held it up": [65535, 0], "it up for": [65535, 0], "up for inspection": [65535, 0], "for inspection but": [65535, 0], "inspection but now": [65535, 0], "but now he": [65535, 0], "now he did": [65535, 0], "did not know": [65535, 0], "not know the": [32706, 32829], "know the necessary": [65535, 0], "the necessary symptoms": [65535, 0], "necessary symptoms however": [65535, 0], "symptoms however it": [65535, 0], "however it seemed": [65535, 0], "it seemed well": [65535, 0], "seemed well worth": [65535, 0], "well worth while": [65535, 0], "worth while to": [65535, 0], "while to chance": [65535, 0], "to chance it": [65535, 0], "chance it so": [65535, 0], "it so he": [65535, 0], "so he fell": [65535, 0], "he fell to": [65535, 0], "fell to groaning": [65535, 0], "to groaning with": [65535, 0], "groaning with considerable": [65535, 0], "with considerable spirit": [65535, 0], "considerable spirit but": [65535, 0], "spirit but sid": [65535, 0], "but sid slept": [65535, 0], "sid slept on": [65535, 0], "slept on unconscious": [65535, 0], "on unconscious tom": [65535, 0], "unconscious tom groaned": [65535, 0], "tom groaned louder": [65535, 0], "groaned louder and": [65535, 0], "louder and fancied": [65535, 0], "and fancied that": [65535, 0], "fancied that he": [65535, 0], "that he began": [65535, 0], "began to feel": [65535, 0], "to feel pain": [65535, 0], "feel pain in": [65535, 0], "pain in the": [65535, 0], "in the toe": [65535, 0], "the toe no": [65535, 0], "toe no result": [65535, 0], "no result from": [65535, 0], "result from sid": [65535, 0], "from sid tom": [65535, 0], "sid tom was": [65535, 0], "tom was panting": [65535, 0], "was panting with": [65535, 0], "panting with his": [65535, 0], "with his exertions": [65535, 0], "his exertions by": [65535, 0], "exertions by this": [65535, 0], "time he took": [65535, 0], "he took a": [65535, 0], "took a rest": [65535, 0], "a rest and": [65535, 0], "rest and then": [65535, 0], "and then swelled": [65535, 0], "then swelled himself": [65535, 0], "swelled himself up": [65535, 0], "himself up and": [65535, 0], "up and fetched": [65535, 0], "and fetched a": [65535, 0], "fetched a succession": [65535, 0], "a succession of": [65535, 0], "succession of admirable": [65535, 0], "of admirable groans": [65535, 0], "admirable groans sid": [65535, 0], "groans sid snored": [65535, 0], "sid snored on": [65535, 0], "snored on tom": [65535, 0], "on tom was": [65535, 0], "tom was aggravated": [65535, 0], "was aggravated he": [65535, 0], "aggravated he said": [65535, 0], "he said sid": [65535, 0], "said sid sid": [65535, 0], "sid sid and": [65535, 0], "sid and shook": [65535, 0], "and shook him": [65535, 0], "shook him this": [65535, 0], "him this course": [65535, 0], "this course worked": [65535, 0], "course worked well": [65535, 0], "worked well and": [65535, 0], "well and tom": [65535, 0], "and tom began": [65535, 0], "tom began to": [65535, 0], "began to groan": [65535, 0], "to groan again": [65535, 0], "groan again sid": [65535, 0], "again sid yawned": [65535, 0], "sid yawned stretched": [65535, 0], "yawned stretched then": [65535, 0], "stretched then brought": [65535, 0], "then brought himself": [65535, 0], "brought himself up": [65535, 0], "himself up on": [65535, 0], "up on his": [65535, 0], "on his elbow": [65535, 0], "his elbow with": [65535, 0], "elbow with a": [65535, 0], "with a snort": [65535, 0], "a snort and": [65535, 0], "snort and began": [65535, 0], "and began to": [65535, 0], "began to stare": [65535, 0], "to stare at": [65535, 0], "stare at tom": [65535, 0], "at tom tom": [65535, 0], "tom tom went": [65535, 0], "tom went on": [65535, 0], "went on groaning": [65535, 0], "on groaning sid": [65535, 0], "groaning sid said": [65535, 0], "sid said tom": [65535, 0], "said tom say": [65535, 0], "tom say tom": [65535, 0], "say tom no": [65535, 0], "tom no response": [65535, 0], "no response here": [65535, 0], "response here tom": [65535, 0], "here tom tom": [65535, 0], "tom tom what": [65535, 0], "tom what is": [65535, 0], "what is the": [32706, 32829], "is the matter": [49105, 16430], "the matter tom": [65535, 0], "matter tom and": [65535, 0], "tom and he": [65535, 0], "and he shook": [65535, 0], "he shook him": [65535, 0], "shook him and": [65535, 0], "him and looked": [65535, 0], "and looked in": [65535, 0], "looked in his": [65535, 0], "in his face": [43635, 21900], "his face anxiously": [65535, 0], "face anxiously tom": [65535, 0], "anxiously tom moaned": [65535, 0], "tom moaned out": [65535, 0], "moaned out oh": [65535, 0], "out oh don't": [65535, 0], "oh don't sid": [65535, 0], "don't sid don't": [65535, 0], "sid don't joggle": [65535, 0], "don't joggle me": [65535, 0], "joggle me why": [65535, 0], "me why what's": [65535, 0], "why what's the": [65535, 0], "what's the matter": [65535, 0], "matter tom i": [65535, 0], "tom i must": [65535, 0], "i must call": [65535, 0], "must call auntie": [65535, 0], "call auntie no": [65535, 0], "auntie no never": [65535, 0], "no never mind": [65535, 0], "never mind it'll": [65535, 0], "mind it'll be": [65535, 0], "it'll be over": [65535, 0], "be over by": [65535, 0], "over by and": [65535, 0], "and by maybe": [65535, 0], "by maybe don't": [65535, 0], "maybe don't call": [65535, 0], "don't call anybody": [65535, 0], "call anybody but": [65535, 0], "anybody but i": [65535, 0], "but i must": [65535, 0], "i must don't": [65535, 0], "must don't groan": [65535, 0], "don't groan so": [65535, 0], "groan so tom": [65535, 0], "so tom it's": [65535, 0], "tom it's awful": [65535, 0], "it's awful how": [65535, 0], "awful how long": [65535, 0], "how long you": [65535, 0], "long you been": [65535, 0], "you been this": [65535, 0], "been this way": [65535, 0], "this way hours": [65535, 0], "way hours ouch": [65535, 0], "hours ouch oh": [65535, 0], "ouch oh don't": [65535, 0], "oh don't stir": [65535, 0], "don't stir so": [65535, 0], "stir so sid": [65535, 0], "so sid you'll": [65535, 0], "sid you'll kill": [65535, 0], "you'll kill me": [65535, 0], "kill me tom": [65535, 0], "me tom why": [65535, 0], "tom why didn't": [65535, 0], "why didn't you": [65535, 0], "didn't you wake": [65535, 0], "you wake me": [65535, 0], "wake me sooner": [65535, 0], "me sooner oh": [65535, 0], "sooner oh tom": [65535, 0], "oh tom don't": [65535, 0], "tom don't it": [65535, 0], "don't it makes": [65535, 0], "it makes my": [65535, 0], "makes my flesh": [65535, 0], "my flesh crawl": [65535, 0], "flesh crawl to": [65535, 0], "crawl to hear": [65535, 0], "to hear you": [65535, 0], "hear you tom": [65535, 0], "you tom what": [65535, 0], "the matter i": [65535, 0], "matter i forgive": [65535, 0], "i forgive you": [65535, 0], "forgive you everything": [65535, 0], "you everything sid": [65535, 0], "everything sid groan": [65535, 0], "sid groan everything": [65535, 0], "groan everything you've": [65535, 0], "everything you've ever": [65535, 0], "you've ever done": [65535, 0], "ever done to": [65535, 0], "done to me": [65535, 0], "to me when": [65535, 0], "me when i'm": [65535, 0], "when i'm gone": [65535, 0], "i'm gone oh": [65535, 0], "gone oh tom": [65535, 0], "oh tom you": [65535, 0], "tom you ain't": [65535, 0], "you ain't dying": [65535, 0], "ain't dying are": [65535, 0], "dying are you": [65535, 0], "are you don't": [65535, 0], "you don't tom": [65535, 0], "don't tom oh": [65535, 0], "tom oh don't": [65535, 0], "oh don't maybe": [65535, 0], "don't maybe i": [65535, 0], "maybe i forgive": [65535, 0], "i forgive everybody": [65535, 0], "forgive everybody sid": [65535, 0], "everybody sid groan": [65535, 0], "sid groan tell": [65535, 0], "groan tell 'em": [65535, 0], "tell 'em so": [65535, 0], "'em so sid": [65535, 0], "so sid and": [65535, 0], "sid and sid": [65535, 0], "and sid you": [65535, 0], "sid you give": [65535, 0], "you give my": [65535, 0], "give my window": [65535, 0], "my window sash": [65535, 0], "window sash and": [65535, 0], "sash and my": [65535, 0], "and my cat": [65535, 0], "my cat with": [65535, 0], "cat with one": [65535, 0], "with one eye": [65535, 0], "one eye to": [65535, 0], "eye to that": [65535, 0], "to that new": [65535, 0], "that new girl": [65535, 0], "new girl that's": [65535, 0], "girl that's come": [65535, 0], "that's come to": [65535, 0], "come to town": [65535, 0], "to town and": [65535, 0], "town and tell": [65535, 0], "and tell her": [32706, 32829], "tell her but": [65535, 0], "her but sid": [65535, 0], "but sid had": [65535, 0], "sid had snatched": [65535, 0], "had snatched his": [65535, 0], "snatched his clothes": [65535, 0], "his clothes and": [65535, 0], "clothes and gone": [65535, 0], "and gone tom": [65535, 0], "gone tom was": [65535, 0], "tom was suffering": [65535, 0], "was suffering in": [65535, 0], "suffering in reality": [65535, 0], "in reality now": [65535, 0], "reality now so": [65535, 0], "now so handsomely": [65535, 0], "so handsomely was": [65535, 0], "handsomely was his": [65535, 0], "was his imagination": [65535, 0], "his imagination working": [65535, 0], "imagination working and": [65535, 0], "working and so": [65535, 0], "and so his": [65535, 0], "so his groans": [65535, 0], "his groans had": [65535, 0], "groans had gathered": [65535, 0], "had gathered quite": [65535, 0], "gathered quite a": [65535, 0], "quite a genuine": [65535, 0], "a genuine tone": [65535, 0], "genuine tone sid": [65535, 0], "tone sid flew": [65535, 0], "sid flew down": [65535, 0], "flew down stairs": [65535, 0], "down stairs and": [65535, 0], "stairs and said": [65535, 0], "and said oh": [65535, 0], "said oh aunt": [65535, 0], "oh aunt polly": [65535, 0], "aunt polly come": [65535, 0], "polly come tom's": [65535, 0], "come tom's dying": [65535, 0], "tom's dying dying": [65535, 0], "dying dying yes'm": [65535, 0], "dying yes'm don't": [65535, 0], "yes'm don't wait": [65535, 0], "don't wait come": [65535, 0], "wait come quick": [65535, 0], "come quick rubbage": [65535, 0], "quick rubbage i": [65535, 0], "rubbage i don't": [65535, 0], "i don't believe": [65535, 0], "don't believe it": [65535, 0], "believe it but": [65535, 0], "it but she": [65535, 0], "but she fled": [65535, 0], "she fled up": [65535, 0], "fled up stairs": [65535, 0], "up stairs nevertheless": [65535, 0], "stairs nevertheless with": [65535, 0], "nevertheless with sid": [65535, 0], "with sid and": [65535, 0], "and mary at": [65535, 0], "mary at her": [65535, 0], "at her heels": [65535, 0], "her heels and": [65535, 0], "heels and her": [65535, 0], "and her face": [65535, 0], "her face grew": [65535, 0], "face grew white": [65535, 0], "grew white too": [65535, 0], "white too and": [65535, 0], "too and her": [65535, 0], "and her lip": [65535, 0], "her lip trembled": [65535, 0], "lip trembled when": [65535, 0], "trembled when she": [65535, 0], "when she reached": [65535, 0], "she reached the": [65535, 0], "reached the bedside": [65535, 0], "the bedside she": [65535, 0], "bedside she gasped": [65535, 0], "she gasped out": [65535, 0], "gasped out you": [65535, 0], "out you tom": [65535, 0], "you tom tom": [65535, 0], "tom tom what's": [65535, 0], "tom what's the": [65535, 0], "the matter with": [65535, 0], "matter with you": [65535, 0], "with you oh": [65535, 0], "you oh auntie": [65535, 0], "oh auntie i'm": [65535, 0], "auntie i'm what's": [65535, 0], "i'm what's the": [65535, 0], "with you what": [65535, 0], "you what is": [65535, 0], "with you child": [65535, 0], "you child oh": [65535, 0], "child oh auntie": [65535, 0], "oh auntie my": [65535, 0], "auntie my sore": [65535, 0], "my sore toe's": [65535, 0], "sore toe's mortified": [65535, 0], "toe's mortified the": [65535, 0], "mortified the old": [65535, 0], "the old lady": [65535, 0], "old lady sank": [65535, 0], "lady sank down": [65535, 0], "sank down into": [65535, 0], "down into a": [65535, 0], "into a chair": [65535, 0], "a chair and": [65535, 0], "chair and laughed": [65535, 0], "and laughed a": [65535, 0], "laughed a little": [65535, 0], "a little then": [65535, 0], "little then cried": [65535, 0], "then cried a": [65535, 0], "cried a little": [65535, 0], "little then did": [65535, 0], "then did both": [65535, 0], "did both together": [65535, 0], "both together this": [65535, 0], "together this restored": [65535, 0], "this restored her": [65535, 0], "restored her and": [65535, 0], "her and she": [65535, 0], "and she said": [65535, 0], "she said tom": [65535, 0], "said tom what": [65535, 0], "tom what a": [65535, 0], "what a turn": [65535, 0], "a turn you": [65535, 0], "turn you did": [65535, 0], "you did give": [65535, 0], "did give me": [65535, 0], "give me now": [65535, 0], "me now you": [65535, 0], "now you shut": [65535, 0], "you shut up": [65535, 0], "shut up that": [65535, 0], "up that nonsense": [65535, 0], "that nonsense and": [65535, 0], "nonsense and climb": [65535, 0], "and climb out": [65535, 0], "climb out of": [65535, 0], "out of this": [65535, 0], "of this the": [65535, 0], "this the groans": [65535, 0], "the groans ceased": [65535, 0], "groans ceased and": [65535, 0], "ceased and the": [65535, 0], "and the pain": [65535, 0], "the pain vanished": [65535, 0], "pain vanished from": [65535, 0], "vanished from the": [65535, 0], "from the toe": [65535, 0], "the toe the": [65535, 0], "toe the boy": [65535, 0], "the boy felt": [65535, 0], "boy felt a": [65535, 0], "felt a little": [65535, 0], "a little foolish": [65535, 0], "little foolish and": [65535, 0], "foolish and he": [65535, 0], "he said aunt": [65535, 0], "said aunt polly": [65535, 0], "aunt polly it": [65535, 0], "polly it seemed": [65535, 0], "it seemed mortified": [65535, 0], "seemed mortified and": [65535, 0], "mortified and it": [65535, 0], "and it hurt": [65535, 0], "it hurt so": [65535, 0], "hurt so i": [65535, 0], "so i never": [65535, 0], "i never minded": [65535, 0], "never minded my": [65535, 0], "minded my tooth": [65535, 0], "my tooth at": [65535, 0], "tooth at all": [65535, 0], "at all your": [65535, 0], "all your tooth": [65535, 0], "your tooth indeed": [65535, 0], "tooth indeed what's": [65535, 0], "indeed what's the": [65535, 0], "matter with your": [65535, 0], "with your tooth": [65535, 0], "your tooth one": [65535, 0], "tooth one of": [65535, 0], "one of them's": [65535, 0], "of them's loose": [65535, 0], "them's loose and": [65535, 0], "loose and it": [65535, 0], "and it aches": [65535, 0], "it aches perfectly": [65535, 0], "aches perfectly awful": [65535, 0], "perfectly awful there": [65535, 0], "awful there there": [65535, 0], "there there now": [65535, 0], "there now don't": [65535, 0], "now don't begin": [65535, 0], "don't begin that": [65535, 0], "begin that groaning": [65535, 0], "that groaning again": [65535, 0], "groaning again open": [65535, 0], "again open your": [65535, 0], "open your mouth": [65535, 0], "your mouth well": [65535, 0], "mouth well your": [65535, 0], "well your tooth": [65535, 0], "your tooth is": [65535, 0], "tooth is loose": [65535, 0], "is loose but": [65535, 0], "loose but you're": [65535, 0], "but you're not": [65535, 0], "you're not going": [65535, 0], "not going to": [65535, 0], "going to die": [65535, 0], "to die about": [65535, 0], "die about that": [65535, 0], "about that mary": [65535, 0], "that mary get": [65535, 0], "mary get me": [65535, 0], "get me a": [65535, 0], "me a silk": [65535, 0], "a silk thread": [65535, 0], "silk thread and": [65535, 0], "thread and a": [65535, 0], "and a chunk": [65535, 0], "a chunk of": [65535, 0], "chunk of fire": [65535, 0], "of fire out": [65535, 0], "fire out of": [65535, 0], "of the kitchen": [65535, 0], "the kitchen tom": [65535, 0], "kitchen tom said": [65535, 0], "tom said oh": [65535, 0], "said oh please": [65535, 0], "oh please auntie": [65535, 0], "please auntie don't": [65535, 0], "auntie don't pull": [65535, 0], "don't pull it": [65535, 0], "out it don't": [65535, 0], "it don't hurt": [65535, 0], "don't hurt any": [65535, 0], "hurt any more": [65535, 0], "any more i": [65535, 0], "more i wish": [65535, 0], "i wish i": [65535, 0], "wish i may": [65535, 0], "i may never": [65535, 0], "may never stir": [65535, 0], "never stir if": [65535, 0], "stir if it": [65535, 0], "if it does": [65535, 0], "it does please": [65535, 0], "does please don't": [65535, 0], "please don't auntie": [65535, 0], "don't auntie i": [65535, 0], "auntie i don't": [65535, 0], "i don't want": [65535, 0], "don't want to": [65535, 0], "want to stay": [65535, 0], "to stay home": [65535, 0], "from school oh": [65535, 0], "school oh you": [65535, 0], "oh you don't": [65535, 0], "you don't don't": [65535, 0], "don't don't you": [65535, 0], "don't you so": [65535, 0], "you so all": [65535, 0], "so all this": [65535, 0], "all this row": [65535, 0], "this row was": [65535, 0], "row was because": [65535, 0], "was because you": [65535, 0], "because you thought": [65535, 0], "you thought you'd": [65535, 0], "thought you'd get": [65535, 0], "you'd get to": [65535, 0], "get to stay": [65535, 0], "from school and": [65535, 0], "school and go": [65535, 0], "and go a": [65535, 0], "go a fishing": [65535, 0], "a fishing tom": [65535, 0], "fishing tom tom": [65535, 0], "tom tom i": [65535, 0], "tom i love": [65535, 0], "i love you": [65535, 0], "love you so": [65535, 0], "you so and": [65535, 0], "so and you": [65535, 0], "and you seem": [65535, 0], "you seem to": [65535, 0], "seem to try": [65535, 0], "to try every": [65535, 0], "try every way": [65535, 0], "every way you": [65535, 0], "way you can": [65535, 0], "you can to": [65535, 0], "can to break": [65535, 0], "to break my": [65535, 0], "break my old": [65535, 0], "my old heart": [65535, 0], "old heart with": [65535, 0], "heart with your": [65535, 0], "with your outrageousness": [65535, 0], "your outrageousness by": [65535, 0], "outrageousness by this": [65535, 0], "time the dental": [65535, 0], "the dental instruments": [65535, 0], "dental instruments were": [65535, 0], "instruments were ready": [65535, 0], "were ready the": [65535, 0], "ready the old": [65535, 0], "old lady made": [65535, 0], "lady made one": [65535, 0], "made one end": [65535, 0], "one end of": [65535, 0], "end of the": [65535, 0], "of the silk": [65535, 0], "the silk thread": [65535, 0], "silk thread fast": [65535, 0], "thread fast to": [65535, 0], "fast to tom's": [65535, 0], "to tom's tooth": [65535, 0], "tom's tooth with": [65535, 0], "tooth with a": [65535, 0], "with a loop": [65535, 0], "a loop and": [65535, 0], "loop and tied": [65535, 0], "and tied the": [65535, 0], "tied the other": [65535, 0], "the other to": [65535, 0], "other to the": [65535, 0], "to the bedpost": [65535, 0], "the bedpost then": [65535, 0], "bedpost then she": [65535, 0], "then she seized": [65535, 0], "she seized the": [65535, 0], "seized the chunk": [65535, 0], "the chunk of": [65535, 0], "of fire and": [21790, 43745], "fire and suddenly": [65535, 0], "and suddenly thrust": [65535, 0], "suddenly thrust it": [65535, 0], "thrust it almost": [65535, 0], "it almost into": [65535, 0], "almost into the": [65535, 0], "the boy's face": [65535, 0], "boy's face the": [65535, 0], "face the tooth": [65535, 0], "the tooth hung": [65535, 0], "tooth hung dangling": [65535, 0], "hung dangling by": [65535, 0], "dangling by the": [65535, 0], "by the bedpost": [65535, 0], "the bedpost now": [65535, 0], "bedpost now but": [65535, 0], "now but all": [65535, 0], "but all trials": [65535, 0], "all trials bring": [65535, 0], "trials bring their": [65535, 0], "bring their compensations": [65535, 0], "their compensations as": [65535, 0], "compensations as tom": [65535, 0], "as tom wended": [65535, 0], "tom wended to": [65535, 0], "wended to school": [65535, 0], "to school after": [65535, 0], "school after breakfast": [65535, 0], "after breakfast he": [65535, 0], "breakfast he was": [65535, 0], "he was the": [65535, 0], "was the envy": [65535, 0], "the envy of": [65535, 0], "envy of every": [65535, 0], "of every boy": [65535, 0], "every boy he": [65535, 0], "boy he met": [65535, 0], "he met because": [65535, 0], "met because the": [65535, 0], "because the gap": [65535, 0], "the gap in": [65535, 0], "gap in his": [65535, 0], "in his upper": [65535, 0], "his upper row": [65535, 0], "upper row of": [65535, 0], "row of teeth": [65535, 0], "of teeth enabled": [65535, 0], "teeth enabled him": [65535, 0], "enabled him to": [65535, 0], "him to expectorate": [65535, 0], "to expectorate in": [65535, 0], "expectorate in a": [65535, 0], "in a new": [65535, 0], "a new and": [65535, 0], "new and admirable": [65535, 0], "and admirable way": [65535, 0], "admirable way he": [65535, 0], "way he gathered": [65535, 0], "he gathered quite": [65535, 0], "quite a following": [65535, 0], "a following of": [65535, 0], "following of lads": [65535, 0], "of lads interested": [65535, 0], "lads interested in": [65535, 0], "interested in the": [65535, 0], "in the exhibition": [65535, 0], "the exhibition and": [65535, 0], "exhibition and one": [65535, 0], "and one that": [65535, 0], "one that had": [65535, 0], "that had cut": [65535, 0], "had cut his": [65535, 0], "cut his finger": [65535, 0], "his finger and": [65535, 0], "finger and had": [65535, 0], "and had been": [65535, 0], "had been a": [65535, 0], "been a centre": [65535, 0], "a centre of": [65535, 0], "centre of fascination": [65535, 0], "of fascination and": [65535, 0], "fascination and homage": [65535, 0], "and homage up": [65535, 0], "homage up to": [65535, 0], "up to this": [65535, 0], "to this time": [65535, 0], "this time now": [65535, 0], "time now found": [65535, 0], "now found himself": [65535, 0], "found himself suddenly": [65535, 0], "himself suddenly without": [65535, 0], "suddenly without an": [65535, 0], "without an adherent": [65535, 0], "an adherent and": [65535, 0], "adherent and shorn": [65535, 0], "and shorn of": [65535, 0], "shorn of his": [65535, 0], "of his glory": [65535, 0], "his glory his": [65535, 0], "glory his heart": [65535, 0], "his heart was": [65535, 0], "heart was heavy": [65535, 0], "was heavy and": [65535, 0], "heavy and he": [65535, 0], "he said with": [65535, 0], "said with a": [65535, 0], "with a disdain": [65535, 0], "a disdain which": [65535, 0], "disdain which he": [65535, 0], "which he did": [32706, 32829], "did not feel": [65535, 0], "not feel that": [65535, 0], "feel that it": [65535, 0], "that it wasn't": [65535, 0], "it wasn't anything": [65535, 0], "wasn't anything to": [65535, 0], "anything to spit": [65535, 0], "to spit like": [65535, 0], "spit like tom": [65535, 0], "like tom sawyer": [65535, 0], "tom sawyer but": [65535, 0], "sawyer but another": [65535, 0], "but another boy": [65535, 0], "another boy said": [65535, 0], "boy said sour": [65535, 0], "said sour grapes": [65535, 0], "sour grapes and": [65535, 0], "grapes and he": [65535, 0], "and he wandered": [65535, 0], "he wandered away": [65535, 0], "wandered away a": [65535, 0], "away a dismantled": [65535, 0], "a dismantled hero": [65535, 0], "dismantled hero shortly": [65535, 0], "hero shortly tom": [65535, 0], "shortly tom came": [65535, 0], "tom came upon": [65535, 0], "came upon the": [65535, 0], "upon the juvenile": [65535, 0], "the juvenile pariah": [65535, 0], "juvenile pariah of": [65535, 0], "pariah of the": [65535, 0], "the village huckleberry": [65535, 0], "village huckleberry finn": [65535, 0], "huckleberry finn son": [65535, 0], "finn son of": [65535, 0], "son of the": [65535, 0], "of the town": [65535, 0], "the town drunkard": [65535, 0], "town drunkard huckleberry": [65535, 0], "drunkard huckleberry was": [65535, 0], "huckleberry was cordially": [65535, 0], "was cordially hated": [65535, 0], "cordially hated and": [65535, 0], "hated and dreaded": [65535, 0], "and dreaded by": [65535, 0], "dreaded by all": [65535, 0], "by all the": [32706, 32829], "all the mothers": [65535, 0], "the mothers of": [65535, 0], "mothers of the": [65535, 0], "the town because": [65535, 0], "town because he": [65535, 0], "because he was": [65535, 0], "he was idle": [65535, 0], "was idle and": [65535, 0], "idle and lawless": [65535, 0], "and lawless and": [65535, 0], "lawless and vulgar": [65535, 0], "and vulgar and": [65535, 0], "vulgar and bad": [65535, 0], "and bad and": [65535, 0], "bad and because": [65535, 0], "and because all": [65535, 0], "because all their": [65535, 0], "all their children": [65535, 0], "their children admired": [65535, 0], "children admired him": [65535, 0], "admired him so": [65535, 0], "him so and": [65535, 0], "so and delighted": [65535, 0], "and delighted in": [65535, 0], "delighted in his": [65535, 0], "in his forbidden": [65535, 0], "his forbidden society": [65535, 0], "forbidden society and": [65535, 0], "society and wished": [65535, 0], "and wished they": [65535, 0], "wished they dared": [65535, 0], "they dared to": [65535, 0], "dared to be": [65535, 0], "to be like": [65535, 0], "be like him": [65535, 0], "like him tom": [65535, 0], "him tom was": [65535, 0], "tom was like": [65535, 0], "was like the": [65535, 0], "like the rest": [65535, 0], "the rest of": [65535, 0], "rest of the": [65535, 0], "of the respectable": [65535, 0], "the respectable boys": [65535, 0], "respectable boys in": [65535, 0], "boys in that": [65535, 0], "in that he": [65535, 0], "that he envied": [65535, 0], "he envied huckleberry": [65535, 0], "envied huckleberry his": [65535, 0], "huckleberry his gaudy": [65535, 0], "his gaudy outcast": [65535, 0], "gaudy outcast condition": [65535, 0], "outcast condition and": [65535, 0], "condition and was": [65535, 0], "and was under": [65535, 0], "was under strict": [65535, 0], "under strict orders": [65535, 0], "strict orders not": [65535, 0], "orders not to": [65535, 0], "not to play": [65535, 0], "to play with": [65535, 0], "play with him": [65535, 0], "with him so": [65535, 0], "him so he": [49105, 16430], "so he played": [65535, 0], "he played with": [65535, 0], "played with him": [65535, 0], "with him every": [65535, 0], "him every time": [65535, 0], "every time he": [65535, 0], "time he got": [65535, 0], "he got a": [65535, 0], "got a chance": [65535, 0], "a chance huckleberry": [65535, 0], "chance huckleberry was": [65535, 0], "huckleberry was always": [65535, 0], "was always dressed": [65535, 0], "always dressed in": [65535, 0], "dressed in the": [65535, 0], "in the cast": [65535, 0], "the cast off": [65535, 0], "cast off clothes": [65535, 0], "off clothes of": [65535, 0], "clothes of full": [65535, 0], "of full grown": [65535, 0], "full grown men": [65535, 0], "grown men and": [65535, 0], "men and they": [65535, 0], "and they were": [65535, 0], "they were in": [65535, 0], "were in perennial": [65535, 0], "in perennial bloom": [65535, 0], "perennial bloom and": [65535, 0], "bloom and fluttering": [65535, 0], "and fluttering with": [65535, 0], "fluttering with rags": [65535, 0], "with rags his": [65535, 0], "rags his hat": [65535, 0], "his hat was": [65535, 0], "hat was a": [65535, 0], "was a vast": [65535, 0], "a vast ruin": [65535, 0], "vast ruin with": [65535, 0], "ruin with a": [65535, 0], "with a wide": [65535, 0], "a wide crescent": [65535, 0], "wide crescent lopped": [65535, 0], "crescent lopped out": [65535, 0], "lopped out of": [65535, 0], "out of its": [65535, 0], "of its brim": [65535, 0], "its brim his": [65535, 0], "brim his coat": [65535, 0], "his coat when": [65535, 0], "coat when he": [65535, 0], "when he wore": [65535, 0], "he wore one": [65535, 0], "wore one hung": [65535, 0], "one hung nearly": [65535, 0], "hung nearly to": [65535, 0], "nearly to his": [65535, 0], "to his heels": [65535, 0], "his heels and": [65535, 0], "heels and had": [65535, 0], "and had the": [65535, 0], "had the rearward": [65535, 0], "the rearward buttons": [65535, 0], "rearward buttons far": [65535, 0], "buttons far down": [65535, 0], "far down the": [65535, 0], "down the back": [65535, 0], "the back but": [65535, 0], "back but one": [65535, 0], "but one suspender": [65535, 0], "one suspender supported": [65535, 0], "suspender supported his": [65535, 0], "supported his trousers": [65535, 0], "his trousers the": [65535, 0], "trousers the seat": [65535, 0], "the seat of": [65535, 0], "seat of the": [65535, 0], "of the trousers": [65535, 0], "the trousers bagged": [65535, 0], "trousers bagged low": [65535, 0], "bagged low and": [65535, 0], "low and contained": [65535, 0], "and contained nothing": [65535, 0], "contained nothing the": [65535, 0], "nothing the fringed": [65535, 0], "the fringed legs": [65535, 0], "fringed legs dragged": [65535, 0], "legs dragged in": [65535, 0], "dragged in the": [65535, 0], "in the dirt": [65535, 0], "the dirt when": [65535, 0], "dirt when not": [65535, 0], "when not rolled": [65535, 0], "not rolled up": [65535, 0], "rolled up huckleberry": [65535, 0], "up huckleberry came": [65535, 0], "huckleberry came and": [65535, 0], "came and went": [65535, 0], "and went at": [65535, 0], "went at his": [65535, 0], "at his own": [65535, 0], "his own free": [65535, 0], "own free will": [65535, 0], "free will he": [65535, 0], "will he slept": [65535, 0], "he slept on": [65535, 0], "slept on doorsteps": [65535, 0], "on doorsteps in": [65535, 0], "doorsteps in fine": [65535, 0], "in fine weather": [65535, 0], "fine weather and": [65535, 0], "weather and in": [65535, 0], "and in empty": [65535, 0], "in empty hogsheads": [65535, 0], "empty hogsheads in": [65535, 0], "hogsheads in wet": [65535, 0], "in wet he": [65535, 0], "wet he did": [65535, 0], "did not have": [65535, 0], "not have to": [65535, 0], "have to go": [65535, 0], "to go to": [65535, 0], "go to school": [65535, 0], "to school or": [65535, 0], "school or to": [65535, 0], "or to church": [65535, 0], "to church or": [65535, 0], "church or call": [65535, 0], "or call any": [65535, 0], "call any being": [65535, 0], "any being master": [65535, 0], "being master or": [65535, 0], "master or obey": [65535, 0], "or obey anybody": [65535, 0], "obey anybody he": [65535, 0], "anybody he could": [65535, 0], "he could go": [65535, 0], "could go fishing": [65535, 0], "go fishing or": [65535, 0], "fishing or swimming": [65535, 0], "or swimming when": [65535, 0], "swimming when and": [65535, 0], "when and where": [65535, 0], "and where he": [65535, 0], "where he chose": [65535, 0], "he chose and": [65535, 0], "chose and stay": [65535, 0], "and stay as": [65535, 0], "stay as long": [65535, 0], "as long as": [65535, 0], "long as it": [65535, 0], "as it suited": [65535, 0], "it suited him": [65535, 0], "suited him nobody": [65535, 0], "him nobody forbade": [65535, 0], "nobody forbade him": [65535, 0], "forbade him to": [65535, 0], "him to fight": [65535, 0], "to fight he": [65535, 0], "fight he could": [65535, 0], "he could sit": [65535, 0], "could sit up": [65535, 0], "sit up as": [65535, 0], "up as late": [65535, 0], "as late as": [65535, 0], "late as he": [65535, 0], "as he pleased": [65535, 0], "he pleased he": [65535, 0], "pleased he was": [65535, 0], "was always the": [65535, 0], "always the first": [65535, 0], "the first boy": [65535, 0], "first boy that": [65535, 0], "boy that went": [65535, 0], "that went barefoot": [65535, 0], "went barefoot in": [65535, 0], "barefoot in the": [65535, 0], "in the spring": [32706, 32829], "the spring and": [65535, 0], "spring and the": [65535, 0], "and the last": [65535, 0], "the last to": [65535, 0], "last to resume": [65535, 0], "to resume leather": [65535, 0], "resume leather in": [65535, 0], "leather in the": [65535, 0], "in the fall": [65535, 0], "the fall he": [65535, 0], "fall he never": [65535, 0], "he never had": [65535, 0], "never had to": [65535, 0], "had to wash": [65535, 0], "to wash nor": [65535, 0], "wash nor put": [65535, 0], "nor put on": [65535, 0], "put on clean": [65535, 0], "on clean clothes": [65535, 0], "clean clothes he": [65535, 0], "clothes he could": [65535, 0], "he could swear": [65535, 0], "could swear wonderfully": [65535, 0], "swear wonderfully in": [65535, 0], "wonderfully in a": [65535, 0], "in a word": [65535, 0], "a word everything": [65535, 0], "word everything that": [65535, 0], "everything that goes": [65535, 0], "that goes to": [65535, 0], "goes to make": [65535, 0], "to make life": [65535, 0], "make life precious": [65535, 0], "life precious that": [65535, 0], "precious that boy": [65535, 0], "that boy had": [65535, 0], "boy had so": [65535, 0], "had so thought": [65535, 0], "so thought every": [65535, 0], "thought every harassed": [65535, 0], "every harassed hampered": [65535, 0], "harassed hampered respectable": [65535, 0], "hampered respectable boy": [65535, 0], "respectable boy in": [65535, 0], "boy in st": [65535, 0], "in st petersburg": [65535, 0], "st petersburg tom": [65535, 0], "petersburg tom hailed": [65535, 0], "tom hailed the": [65535, 0], "hailed the romantic": [65535, 0], "the romantic outcast": [65535, 0], "romantic outcast hello": [65535, 0], "outcast hello huckleberry": [65535, 0], "hello huckleberry hello": [65535, 0], "huckleberry hello yourself": [65535, 0], "hello yourself and": [65535, 0], "yourself and see": [65535, 0], "and see how": [65535, 0], "see how you": [65535, 0], "how you like": [65535, 0], "you like it": [65535, 0], "like it what's": [65535, 0], "it what's that": [65535, 0], "what's that you": [65535, 0], "that you got": [65535, 0], "you got dead": [65535, 0], "got dead cat": [65535, 0], "dead cat lemme": [65535, 0], "cat lemme see": [65535, 0], "lemme see him": [65535, 0], "see him huck": [65535, 0], "him huck my": [65535, 0], "huck my he's": [65535, 0], "my he's pretty": [65535, 0], "he's pretty stiff": [65535, 0], "pretty stiff where'd": [65535, 0], "stiff where'd you": [65535, 0], "where'd you get": [65535, 0], "you get him": [65535, 0], "get him bought": [65535, 0], "him bought him": [65535, 0], "bought him off'n": [65535, 0], "him off'n a": [65535, 0], "off'n a boy": [65535, 0], "a boy what": [65535, 0], "boy what did": [65535, 0], "what did you": [65535, 0], "did you give": [65535, 0], "you give i": [65535, 0], "give i give": [65535, 0], "i give a": [65535, 0], "give a blue": [65535, 0], "a blue ticket": [65535, 0], "blue ticket and": [65535, 0], "ticket and a": [65535, 0], "and a bladder": [65535, 0], "a bladder that": [65535, 0], "bladder that i": [65535, 0], "that i got": [65535, 0], "i got at": [65535, 0], "got at the": [65535, 0], "at the slaughter": [65535, 0], "the slaughter house": [65535, 0], "slaughter house where'd": [65535, 0], "house where'd you": [65535, 0], "you get the": [65535, 0], "get the blue": [65535, 0], "the blue ticket": [65535, 0], "blue ticket bought": [65535, 0], "ticket bought it": [65535, 0], "bought it off'n": [65535, 0], "it off'n ben": [65535, 0], "off'n ben rogers": [65535, 0], "ben rogers two": [65535, 0], "rogers two weeks": [65535, 0], "two weeks ago": [65535, 0], "weeks ago for": [65535, 0], "ago for a": [65535, 0], "for a hoop": [65535, 0], "a hoop stick": [65535, 0], "hoop stick say": [65535, 0], "stick say what": [65535, 0], "say what is": [65535, 0], "what is dead": [65535, 0], "is dead cats": [65535, 0], "dead cats good": [65535, 0], "cats good for": [65535, 0], "good for huck": [65535, 0], "for huck good": [65535, 0], "huck good for": [65535, 0], "good for cure": [65535, 0], "for cure warts": [65535, 0], "cure warts with": [65535, 0], "warts with no": [65535, 0], "with no is": [65535, 0], "no is that": [65535, 0], "is that so": [65535, 0], "that so i": [65535, 0], "so i know": [65535, 0], "i know something": [65535, 0], "know something that's": [65535, 0], "something that's better": [65535, 0], "that's better i": [65535, 0], "better i bet": [65535, 0], "i bet you": [65535, 0], "bet you don't": [65535, 0], "you don't what": [65535, 0], "don't what is": [65535, 0], "what is it": [65535, 0], "is it why": [65535, 0], "it why spunk": [65535, 0], "why spunk water": [65535, 0], "spunk water spunk": [65535, 0], "water spunk water": [65535, 0], "spunk water i": [65535, 0], "water i wouldn't": [65535, 0], "i wouldn't give": [65535, 0], "wouldn't give a": [65535, 0], "give a dern": [65535, 0], "a dern for": [65535, 0], "dern for spunk": [65535, 0], "for spunk water": [65535, 0], "spunk water you": [65535, 0], "water you wouldn't": [65535, 0], "you wouldn't wouldn't": [65535, 0], "wouldn't wouldn't you": [65535, 0], "wouldn't you d'you": [65535, 0], "you d'you ever": [65535, 0], "d'you ever try": [65535, 0], "ever try it": [65535, 0], "try it no": [65535, 0], "it no i": [65535, 0], "no i hain't": [65535, 0], "i hain't but": [65535, 0], "hain't but bob": [65535, 0], "but bob tanner": [65535, 0], "bob tanner did": [65535, 0], "tanner did who": [65535, 0], "did who told": [65535, 0], "who told you": [65535, 0], "told you so": [65535, 0], "you so why": [65535, 0], "so why he": [65535, 0], "why he told": [65535, 0], "he told jeff": [65535, 0], "told jeff thatcher": [65535, 0], "jeff thatcher and": [65535, 0], "thatcher and jeff": [65535, 0], "and jeff told": [65535, 0], "jeff told johnny": [65535, 0], "told johnny baker": [65535, 0], "johnny baker and": [65535, 0], "baker and johnny": [65535, 0], "and johnny told": [65535, 0], "johnny told jim": [65535, 0], "told jim hollis": [65535, 0], "jim hollis and": [65535, 0], "hollis and jim": [65535, 0], "and jim told": [65535, 0], "jim told ben": [65535, 0], "told ben rogers": [65535, 0], "ben rogers and": [65535, 0], "rogers and ben": [65535, 0], "and ben told": [65535, 0], "ben told a": [65535, 0], "told a nigger": [65535, 0], "a nigger and": [65535, 0], "nigger and the": [65535, 0], "and the nigger": [65535, 0], "the nigger told": [65535, 0], "nigger told me": [65535, 0], "told me there": [65535, 0], "me there now": [65535, 0], "there now well": [65535, 0], "now well what": [65535, 0], "well what of": [65535, 0], "what of it": [65535, 0], "of it they'll": [65535, 0], "it they'll all": [65535, 0], "they'll all lie": [65535, 0], "all lie leastways": [65535, 0], "lie leastways all": [65535, 0], "leastways all but": [65535, 0], "all but the": [65535, 0], "but the nigger": [65535, 0], "the nigger i": [65535, 0], "nigger i don't": [65535, 0], "i don't know": [65535, 0], "don't know him": [65535, 0], "know him but": [65535, 0], "him but i": [65535, 0], "but i never": [65535, 0], "i never see": [65535, 0], "never see a": [65535, 0], "see a nigger": [65535, 0], "a nigger that": [65535, 0], "nigger that wouldn't": [65535, 0], "that wouldn't lie": [65535, 0], "wouldn't lie shucks": [65535, 0], "lie shucks now": [65535, 0], "shucks now you": [65535, 0], "now you tell": [65535, 0], "you tell me": [65535, 0], "tell me how": [32706, 32829], "me how bob": [65535, 0], "how bob tanner": [65535, 0], "bob tanner done": [65535, 0], "tanner done it": [65535, 0], "done it huck": [65535, 0], "it huck why": [65535, 0], "huck why he": [65535, 0], "why he took": [65535, 0], "he took and": [65535, 0], "took and dipped": [65535, 0], "and dipped his": [65535, 0], "dipped his hand": [65535, 0], "his hand in": [65535, 0], "hand in a": [65535, 0], "in a rotten": [65535, 0], "a rotten stump": [65535, 0], "rotten stump where": [65535, 0], "stump where the": [65535, 0], "where the rain": [65535, 0], "the rain water": [65535, 0], "rain water was": [65535, 0], "water was in": [65535, 0], "was in the": [65535, 0], "in the daytime": [65535, 0], "the daytime certainly": [65535, 0], "daytime certainly with": [65535, 0], "certainly with his": [65535, 0], "with his face": [65535, 0], "his face to": [65535, 0], "face to the": [65535, 0], "to the stump": [65535, 0], "the stump yes": [65535, 0], "stump yes least": [65535, 0], "yes least i": [65535, 0], "least i reckon": [65535, 0], "i reckon so": [65535, 0], "reckon so did": [65535, 0], "so did he": [65535, 0], "did he say": [65535, 0], "he say anything": [65535, 0], "say anything i": [65535, 0], "anything i don't": [65535, 0], "i don't reckon": [65535, 0], "don't reckon he": [65535, 0], "reckon he did": [65535, 0], "he did i": [65535, 0], "did i don't": [65535, 0], "don't know aha": [65535, 0], "know aha talk": [65535, 0], "aha talk about": [65535, 0], "talk about trying": [65535, 0], "about trying to": [65535, 0], "trying to cure": [65535, 0], "to cure warts": [65535, 0], "warts with spunk": [65535, 0], "with spunk water": [65535, 0], "spunk water such": [65535, 0], "water such a": [65535, 0], "such a blame": [65535, 0], "a blame fool": [65535, 0], "blame fool way": [65535, 0], "fool way as": [65535, 0], "way as that": [65535, 0], "as that why": [65535, 0], "that why that": [65535, 0], "why that ain't": [65535, 0], "that ain't a": [65535, 0], "ain't a going": [65535, 0], "a going to": [65535, 0], "going to do": [65535, 0], "to do any": [65535, 0], "do any good": [65535, 0], "any good you": [65535, 0], "good you got": [65535, 0], "you got to": [65535, 0], "got to go": [65535, 0], "to go all": [65535, 0], "go all by": [65535, 0], "all by yourself": [65535, 0], "by yourself to": [65535, 0], "yourself to the": [65535, 0], "to the middle": [65535, 0], "the middle of": [65535, 0], "middle of the": [65535, 0], "of the woods": [65535, 0], "the woods where": [65535, 0], "woods where you": [65535, 0], "where you know": [65535, 0], "you know there's": [65535, 0], "know there's a": [65535, 0], "there's a spunk": [65535, 0], "a spunk water": [65535, 0], "spunk water stump": [65535, 0], "water stump and": [65535, 0], "stump and just": [65535, 0], "and just as": [65535, 0], "just as it's": [65535, 0], "as it's midnight": [65535, 0], "it's midnight you": [65535, 0], "midnight you back": [65535, 0], "you back up": [65535, 0], "back up against": [65535, 0], "up against the": [65535, 0], "against the stump": [65535, 0], "the stump and": [65535, 0], "stump and jam": [65535, 0], "and jam your": [65535, 0], "jam your hand": [65535, 0], "your hand in": [65535, 0], "hand in and": [65535, 0], "in and say": [65535, 0], "and say 'barley": [65535, 0], "say 'barley corn": [65535, 0], "'barley corn barley": [65535, 0], "corn barley corn": [65535, 0], "barley corn injun": [65535, 0], "corn injun meal": [65535, 0], "injun meal shorts": [65535, 0], "meal shorts spunk": [65535, 0], "shorts spunk water": [65535, 0], "spunk water swaller": [65535, 0], "water swaller these": [65535, 0], "swaller these warts": [65535, 0], "these warts '": [65535, 0], "warts ' and": [65535, 0], "' and then": [65535, 0], "and then walk": [65535, 0], "then walk away": [65535, 0], "walk away quick": [65535, 0], "away quick eleven": [65535, 0], "quick eleven steps": [65535, 0], "eleven steps with": [65535, 0], "steps with your": [65535, 0], "with your eyes": [65535, 0], "your eyes shut": [65535, 0], "eyes shut and": [65535, 0], "shut and then": [65535, 0], "and then turn": [65535, 0], "then turn around": [65535, 0], "turn around three": [65535, 0], "around three times": [65535, 0], "three times and": [65535, 0], "times and walk": [65535, 0], "and walk home": [65535, 0], "walk home without": [65535, 0], "home without speaking": [65535, 0], "without speaking to": [65535, 0], "speaking to anybody": [65535, 0], "to anybody because": [65535, 0], "anybody because if": [65535, 0], "because if you": [65535, 0], "if you speak": [65535, 0], "you speak the": [65535, 0], "speak the charm's": [65535, 0], "the charm's busted": [65535, 0], "charm's busted well": [65535, 0], "busted well that": [65535, 0], "well that sounds": [65535, 0], "that sounds like": [65535, 0], "sounds like a": [65535, 0], "like a good": [65535, 0], "a good way": [65535, 0], "good way but": [65535, 0], "way but that": [65535, 0], "but that ain't": [65535, 0], "that ain't the": [65535, 0], "ain't the way": [65535, 0], "the way bob": [65535, 0], "way bob tanner": [65535, 0], "tanner done no": [65535, 0], "done no sir": [65535, 0], "no sir you": [65535, 0], "sir you can": [65535, 0], "you can bet": [65535, 0], "can bet he": [65535, 0], "bet he didn't": [65535, 0], "he didn't becuz": [65535, 0], "didn't becuz he's": [65535, 0], "becuz he's the": [65535, 0], "he's the wartiest": [65535, 0], "the wartiest boy": [65535, 0], "wartiest boy in": [65535, 0], "boy in this": [65535, 0], "in this town": [65535, 0], "this town and": [65535, 0], "town and he": [65535, 0], "and he wouldn't": [65535, 0], "he wouldn't have": [65535, 0], "wouldn't have a": [65535, 0], "have a wart": [65535, 0], "a wart on": [65535, 0], "wart on him": [65535, 0], "on him if": [65535, 0], "him if he'd": [65535, 0], "if he'd knowed": [65535, 0], "he'd knowed how": [65535, 0], "knowed how to": [65535, 0], "how to work": [65535, 0], "to work spunk": [65535, 0], "work spunk water": [65535, 0], "spunk water i've": [65535, 0], "water i've took": [65535, 0], "i've took off": [65535, 0], "took off thousands": [65535, 0], "off thousands of": [65535, 0], "thousands of warts": [65535, 0], "of warts off": [65535, 0], "warts off of": [65535, 0], "off of my": [65535, 0], "of my hands": [65535, 0], "my hands that": [65535, 0], "hands that way": [65535, 0], "that way huck": [65535, 0], "way huck i": [65535, 0], "huck i play": [65535, 0], "i play with": [65535, 0], "play with frogs": [65535, 0], "with frogs so": [65535, 0], "frogs so much": [65535, 0], "so much that": [65535, 0], "much that i've": [65535, 0], "that i've always": [65535, 0], "i've always got": [65535, 0], "always got considerable": [65535, 0], "got considerable many": [65535, 0], "considerable many warts": [65535, 0], "many warts sometimes": [65535, 0], "warts sometimes i": [65535, 0], "sometimes i take": [65535, 0], "i take 'em": [65535, 0], "take 'em off": [65535, 0], "'em off with": [65535, 0], "off with a": [65535, 0], "with a bean": [65535, 0], "a bean yes": [65535, 0], "bean yes bean's": [65535, 0], "yes bean's good": [65535, 0], "bean's good i've": [65535, 0], "good i've done": [65535, 0], "i've done that": [65535, 0], "done that have": [65535, 0], "that have you": [65535, 0], "have you what's": [65535, 0], "you what's your": [65535, 0], "what's your way": [65535, 0], "your way you": [65535, 0], "way you take": [65535, 0], "you take and": [65535, 0], "take and split": [65535, 0], "and split the": [65535, 0], "split the bean": [65535, 0], "the bean and": [65535, 0], "bean and cut": [65535, 0], "and cut the": [65535, 0], "cut the wart": [65535, 0], "the wart so": [65535, 0], "wart so as": [65535, 0], "as to get": [65535, 0], "to get some": [65535, 0], "get some blood": [65535, 0], "some blood and": [65535, 0], "blood and then": [65535, 0], "and then you": [43635, 21900], "then you put": [65535, 0], "you put the": [65535, 0], "put the blood": [65535, 0], "the blood on": [65535, 0], "blood on one": [65535, 0], "on one piece": [65535, 0], "one piece of": [65535, 0], "piece of the": [65535, 0], "of the bean": [65535, 0], "bean and take": [65535, 0], "and take and": [65535, 0], "take and dig": [65535, 0], "and dig a": [65535, 0], "dig a hole": [65535, 0], "a hole and": [65535, 0], "hole and bury": [65535, 0], "and bury it": [65535, 0], "bury it 'bout": [65535, 0], "it 'bout midnight": [65535, 0], "'bout midnight at": [65535, 0], "midnight at the": [65535, 0], "at the crossroads": [65535, 0], "the crossroads in": [65535, 0], "crossroads in the": [65535, 0], "in the dark": [65535, 0], "the dark of": [65535, 0], "dark of the": [65535, 0], "of the moon": [65535, 0], "the moon and": [65535, 0], "moon and then": [65535, 0], "then you burn": [65535, 0], "you burn up": [65535, 0], "burn up the": [65535, 0], "up the rest": [65535, 0], "the bean you": [65535, 0], "bean you see": [65535, 0], "you see that": [65535, 0], "see that piece": [65535, 0], "that piece that's": [65535, 0], "piece that's got": [65535, 0], "that's got the": [65535, 0], "got the blood": [65535, 0], "blood on it": [65535, 0], "on it will": [65535, 0], "it will keep": [65535, 0], "will keep drawing": [65535, 0], "keep drawing and": [65535, 0], "drawing and drawing": [65535, 0], "and drawing trying": [65535, 0], "drawing trying to": [65535, 0], "trying to fetch": [65535, 0], "to fetch the": [65535, 0], "fetch the other": [65535, 0], "the other piece": [65535, 0], "other piece to": [65535, 0], "piece to it": [65535, 0], "to it and": [65535, 0], "it and so": [65535, 0], "and so that": [65535, 0], "so that helps": [65535, 0], "that helps the": [65535, 0], "helps the blood": [65535, 0], "the blood to": [65535, 0], "blood to draw": [65535, 0], "to draw the": [65535, 0], "draw the wart": [65535, 0], "the wart and": [65535, 0], "wart and pretty": [65535, 0], "and pretty soon": [65535, 0], "pretty soon off": [65535, 0], "soon off she": [65535, 0], "off she comes": [65535, 0], "she comes yes": [65535, 0], "comes yes that's": [65535, 0], "yes that's it": [65535, 0], "that's it huck": [65535, 0], "it huck that's": [65535, 0], "huck that's it": [65535, 0], "that's it though": [65535, 0], "it though when": [65535, 0], "though when you're": [65535, 0], "when you're burying": [65535, 0], "you're burying it": [65535, 0], "burying it if": [65535, 0], "it if you": [65535, 0], "if you say": [65535, 0], "you say 'down": [65535, 0], "say 'down bean": [65535, 0], "'down bean off": [65535, 0], "bean off wart": [65535, 0], "off wart come": [65535, 0], "wart come no": [65535, 0], "come no more": [65535, 0], "no more to": [65535, 0], "more to bother": [65535, 0], "to bother me": [65535, 0], "bother me '": [65535, 0], "me ' it's": [65535, 0], "' it's better": [65535, 0], "it's better that's": [65535, 0], "better that's the": [65535, 0], "that's the way": [65535, 0], "the way joe": [65535, 0], "way joe harper": [65535, 0], "joe harper does": [65535, 0], "harper does and": [65535, 0], "does and he's": [65535, 0], "and he's been": [65535, 0], "he's been nearly": [65535, 0], "been nearly to": [65535, 0], "nearly to coonville": [65535, 0], "to coonville and": [65535, 0], "coonville and most": [65535, 0], "and most everywheres": [65535, 0], "most everywheres but": [65535, 0], "everywheres but say": [65535, 0], "but say how": [65535, 0], "say how do": [65535, 0], "how do you": [65535, 0], "do you cure": [65535, 0], "you cure 'em": [65535, 0], "cure 'em with": [65535, 0], "'em with dead": [65535, 0], "with dead cats": [65535, 0], "dead cats why": [65535, 0], "cats why you": [65535, 0], "why you take": [65535, 0], "you take your": [65535, 0], "take your cat": [65535, 0], "your cat and": [65535, 0], "cat and go": [65535, 0], "and go and": [65535, 0], "go and get": [65535, 0], "and get in": [65535, 0], "get in the": [65535, 0], "in the graveyard": [65535, 0], "the graveyard 'long": [65535, 0], "graveyard 'long about": [65535, 0], "'long about midnight": [65535, 0], "about midnight when": [65535, 0], "midnight when somebody": [65535, 0], "when somebody that": [65535, 0], "somebody that was": [65535, 0], "that was wicked": [65535, 0], "was wicked has": [65535, 0], "wicked has been": [65535, 0], "has been buried": [65535, 0], "been buried and": [65535, 0], "buried and when": [65535, 0], "and when it's": [65535, 0], "when it's midnight": [65535, 0], "it's midnight a": [65535, 0], "midnight a devil": [65535, 0], "a devil will": [65535, 0], "devil will come": [65535, 0], "will come or": [65535, 0], "come or maybe": [65535, 0], "or maybe two": [65535, 0], "maybe two or": [65535, 0], "or three but": [65535, 0], "three but you": [65535, 0], "but you can't": [65535, 0], "you can't see": [65535, 0], "can't see 'em": [65535, 0], "see 'em you": [65535, 0], "'em you can": [65535, 0], "you can only": [65535, 0], "can only hear": [65535, 0], "only hear something": [65535, 0], "hear something like": [65535, 0], "something like the": [65535, 0], "like the wind": [65535, 0], "the wind or": [65535, 0], "wind or maybe": [65535, 0], "or maybe hear": [65535, 0], "maybe hear 'em": [65535, 0], "hear 'em talk": [65535, 0], "'em talk and": [65535, 0], "talk and when": [65535, 0], "and when they're": [65535, 0], "when they're taking": [65535, 0], "they're taking that": [65535, 0], "taking that feller": [65535, 0], "that feller away": [65535, 0], "feller away you": [65535, 0], "away you heave": [65535, 0], "you heave your": [65535, 0], "heave your cat": [65535, 0], "your cat after": [65535, 0], "cat after 'em": [65535, 0], "after 'em and": [65535, 0], "'em and say": [65535, 0], "and say 'devil": [65535, 0], "say 'devil follow": [65535, 0], "'devil follow corpse": [65535, 0], "follow corpse cat": [65535, 0], "corpse cat follow": [65535, 0], "cat follow devil": [65535, 0], "follow devil warts": [65535, 0], "devil warts follow": [65535, 0], "warts follow cat": [65535, 0], "follow cat i'm": [65535, 0], "cat i'm done": [65535, 0], "i'm done with": [65535, 0], "done with ye": [65535, 0], "with ye '": [65535, 0], "ye ' that'll": [65535, 0], "' that'll fetch": [65535, 0], "that'll fetch any": [65535, 0], "fetch any wart": [65535, 0], "any wart sounds": [65535, 0], "wart sounds right": [65535, 0], "sounds right d'you": [65535, 0], "right d'you ever": [65535, 0], "try it huck": [65535, 0], "it huck no": [65535, 0], "huck no but": [65535, 0], "no but old": [65535, 0], "but old mother": [65535, 0], "old mother hopkins": [65535, 0], "mother hopkins told": [65535, 0], "hopkins told me": [65535, 0], "told me well": [65535, 0], "me well i": [65535, 0], "well i reckon": [65535, 0], "i reckon it's": [65535, 0], "reckon it's so": [65535, 0], "it's so then": [65535, 0], "so then becuz": [65535, 0], "then becuz they": [65535, 0], "becuz they say": [65535, 0], "they say she's": [65535, 0], "say she's a": [65535, 0], "she's a witch": [65535, 0], "a witch say": [65535, 0], "witch say why": [65535, 0], "say why tom": [65535, 0], "why tom i": [65535, 0], "tom i know": [65535, 0], "i know she": [65535, 0], "know she is": [65535, 0], "she is she": [65535, 0], "is she witched": [65535, 0], "she witched pap": [65535, 0], "witched pap pap": [65535, 0], "pap pap says": [65535, 0], "pap says so": [65535, 0], "says so his": [65535, 0], "so his own": [65535, 0], "his own self": [65535, 0], "own self he": [65535, 0], "self he come": [65535, 0], "he come along": [65535, 0], "come along one": [65535, 0], "along one day": [65535, 0], "one day and": [65535, 0], "day and he": [65535, 0], "and he see": [65535, 0], "he see she": [65535, 0], "see she was": [65535, 0], "she was a": [65535, 0], "was a witching": [65535, 0], "a witching him": [65535, 0], "witching him so": [65535, 0], "so he took": [65535, 0], "he took up": [65535, 0], "took up a": [65535, 0], "up a rock": [65535, 0], "a rock and": [65535, 0], "rock and if": [65535, 0], "and if she": [65535, 0], "if she hadn't": [65535, 0], "she hadn't dodged": [65535, 0], "hadn't dodged he'd": [65535, 0], "dodged he'd a": [65535, 0], "he'd a got": [65535, 0], "a got her": [65535, 0], "got her well": [65535, 0], "her well that": [65535, 0], "well that very": [65535, 0], "that very night": [65535, 0], "very night he": [65535, 0], "night he rolled": [65535, 0], "he rolled off'n": [65535, 0], "rolled off'n a": [65535, 0], "off'n a shed": [65535, 0], "a shed wher'": [65535, 0], "shed wher' he": [65535, 0], "wher' he was": [65535, 0], "he was a": [49105, 16430], "was a layin": [65535, 0], "a layin drunk": [65535, 0], "layin drunk and": [65535, 0], "drunk and broke": [65535, 0], "and broke his": [65535, 0], "broke his arm": [65535, 0], "his arm why": [65535, 0], "arm why that's": [65535, 0], "why that's awful": [65535, 0], "that's awful how": [65535, 0], "awful how did": [65535, 0], "how did he": [65535, 0], "did he know": [65535, 0], "he know she": [65535, 0], "know she was": [65535, 0], "witching him lord": [65535, 0], "him lord pap": [65535, 0], "lord pap can": [65535, 0], "pap can tell": [65535, 0], "can tell easy": [65535, 0], "tell easy pap": [65535, 0], "easy pap says": [65535, 0], "pap says when": [65535, 0], "says when they": [65535, 0], "when they keep": [65535, 0], "they keep looking": [65535, 0], "keep looking at": [65535, 0], "looking at you": [65535, 0], "at you right": [65535, 0], "you right stiddy": [65535, 0], "right stiddy they're": [65535, 0], "stiddy they're a": [65535, 0], "they're a witching": [65535, 0], "a witching you": [65535, 0], "witching you specially": [65535, 0], "you specially if": [65535, 0], "specially if they": [65535, 0], "if they mumble": [65535, 0], "they mumble becuz": [65535, 0], "mumble becuz when": [65535, 0], "becuz when they": [65535, 0], "when they mumble": [65535, 0], "they mumble they're": [65535, 0], "mumble they're saying": [65535, 0], "they're saying the": [65535, 0], "saying the lord's": [65535, 0], "the lord's prayer": [65535, 0], "lord's prayer backards": [65535, 0], "prayer backards say": [65535, 0], "backards say hucky": [65535, 0], "say hucky when": [65535, 0], "hucky when you": [65535, 0], "when you going": [65535, 0], "you going to": [65535, 0], "going to try": [65535, 0], "to try the": [65535, 0], "try the cat": [65535, 0], "the cat to": [65535, 0], "cat to night": [65535, 0], "to night i": [65535, 0], "night i reckon": [65535, 0], "i reckon they'll": [65535, 0], "reckon they'll come": [65535, 0], "they'll come after": [65535, 0], "come after old": [65535, 0], "after old hoss": [65535, 0], "old hoss williams": [65535, 0], "hoss williams to": [65535, 0], "williams to night": [65535, 0], "to night but": [65535, 0], "night but they": [65535, 0], "but they buried": [65535, 0], "they buried him": [65535, 0], "buried him saturday": [65535, 0], "him saturday didn't": [65535, 0], "saturday didn't they": [65535, 0], "didn't they get": [65535, 0], "they get him": [65535, 0], "get him saturday": [65535, 0], "him saturday night": [65535, 0], "saturday night why": [65535, 0], "night why how": [65535, 0], "why how you": [65535, 0], "how you talk": [65535, 0], "you talk how": [65535, 0], "talk how could": [65535, 0], "how could their": [65535, 0], "could their charms": [65535, 0], "their charms work": [65535, 0], "charms work till": [65535, 0], "work till midnight": [65535, 0], "till midnight and": [65535, 0], "midnight and then": [65535, 0], "and then it's": [65535, 0], "then it's sunday": [65535, 0], "it's sunday devils": [65535, 0], "sunday devils don't": [65535, 0], "devils don't slosh": [65535, 0], "don't slosh around": [65535, 0], "slosh around much": [65535, 0], "around much of": [65535, 0], "much of a": [65535, 0], "of a sunday": [65535, 0], "a sunday i": [65535, 0], "sunday i don't": [65535, 0], "don't reckon i": [65535, 0], "reckon i never": [65535, 0], "i never thought": [65535, 0], "never thought of": [65535, 0], "thought of that": [65535, 0], "of that that's": [65535, 0], "that that's so": [65535, 0], "that's so lemme": [65535, 0], "so lemme go": [65535, 0], "lemme go with": [65535, 0], "go with you": [65535, 0], "with you of": [65535, 0], "you of course": [65535, 0], "of course if": [65535, 0], "course if you": [65535, 0], "if you ain't": [65535, 0], "you ain't afeard": [65535, 0], "ain't afeard afeard": [65535, 0], "afeard afeard 'tain't": [65535, 0], "afeard 'tain't likely": [65535, 0], "'tain't likely will": [65535, 0], "likely will you": [65535, 0], "will you meow": [65535, 0], "you meow yes": [65535, 0], "meow yes and": [65535, 0], "yes and you": [65535, 0], "and you meow": [65535, 0], "you meow back": [65535, 0], "meow back if": [65535, 0], "back if you": [65535, 0], "if you get": [65535, 0], "you get a": [65535, 0], "get a chance": [65535, 0], "a chance last": [65535, 0], "chance last time": [65535, 0], "last time you": [65535, 0], "time you kep'": [65535, 0], "you kep' me": [65535, 0], "kep' me a": [65535, 0], "me a meowing": [65535, 0], "a meowing around": [65535, 0], "meowing around till": [65535, 0], "around till old": [65535, 0], "till old hays": [65535, 0], "old hays went": [65535, 0], "hays went to": [65535, 0], "went to throwing": [65535, 0], "to throwing rocks": [65535, 0], "throwing rocks at": [65535, 0], "rocks at me": [65535, 0], "at me and": [21790, 43745], "me and says": [65535, 0], "and says 'dern": [65535, 0], "says 'dern that": [65535, 0], "'dern that cat": [65535, 0], "that cat '": [65535, 0], "cat ' and": [65535, 0], "' and so": [65535, 0], "and so i": [65535, 0], "so i hove": [65535, 0], "i hove a": [65535, 0], "hove a brick": [65535, 0], "a brick through": [65535, 0], "brick through his": [65535, 0], "through his window": [65535, 0], "his window but": [65535, 0], "window but don't": [65535, 0], "but don't you": [65535, 0], "don't you tell": [65535, 0], "you tell i": [65535, 0], "tell i won't": [65535, 0], "i won't i": [65535, 0], "won't i couldn't": [65535, 0], "i couldn't meow": [65535, 0], "couldn't meow that": [65535, 0], "meow that night": [65535, 0], "that night becuz": [65535, 0], "night becuz auntie": [65535, 0], "becuz auntie was": [65535, 0], "auntie was watching": [65535, 0], "was watching me": [65535, 0], "watching me but": [65535, 0], "me but i'll": [65535, 0], "but i'll meow": [65535, 0], "i'll meow this": [65535, 0], "meow this time": [65535, 0], "this time say": [65535, 0], "time say what's": [65535, 0], "say what's that": [65535, 0], "what's that nothing": [65535, 0], "that nothing but": [65535, 0], "nothing but a": [32706, 32829], "but a tick": [65535, 0], "a tick where'd": [65535, 0], "tick where'd you": [65535, 0], "get him out": [65535, 0], "him out in": [65535, 0], "out in the": [65535, 0], "in the woods": [65535, 0], "the woods what'll": [65535, 0], "woods what'll you": [65535, 0], "what'll you take": [65535, 0], "you take for": [65535, 0], "take for him": [65535, 0], "for him i": [65535, 0], "him i don't": [65535, 0], "don't know i": [65535, 0], "know i don't": [65535, 0], "want to sell": [65535, 0], "to sell him": [65535, 0], "sell him all": [65535, 0], "him all right": [65535, 0], "all right it's": [65535, 0], "right it's a": [65535, 0], "it's a mighty": [65535, 0], "a mighty small": [65535, 0], "mighty small tick": [65535, 0], "small tick anyway": [65535, 0], "tick anyway oh": [65535, 0], "anyway oh anybody": [65535, 0], "oh anybody can": [65535, 0], "anybody can run": [65535, 0], "can run a": [65535, 0], "run a tick": [65535, 0], "a tick down": [65535, 0], "tick down that": [65535, 0], "down that don't": [65535, 0], "that don't belong": [65535, 0], "don't belong to": [65535, 0], "belong to them": [65535, 0], "to them i'm": [65535, 0], "them i'm satisfied": [65535, 0], "i'm satisfied with": [65535, 0], "satisfied with it": [65535, 0], "with it it's": [65535, 0], "it it's a": [65535, 0], "it's a good": [65535, 0], "a good enough": [65535, 0], "good enough tick": [65535, 0], "enough tick for": [65535, 0], "tick for me": [65535, 0], "for me sho": [65535, 0], "me sho there's": [65535, 0], "sho there's ticks": [65535, 0], "there's ticks a": [65535, 0], "ticks a plenty": [65535, 0], "a plenty i": [65535, 0], "plenty i could": [65535, 0], "i could have": [65535, 0], "could have a": [65535, 0], "have a thousand": [65535, 0], "a thousand of": [65535, 0], "thousand of 'em": [65535, 0], "of 'em if": [65535, 0], "'em if i": [65535, 0], "if i wanted": [65535, 0], "i wanted to": [65535, 0], "wanted to well": [65535, 0], "to well why": [65535, 0], "well why don't": [65535, 0], "why don't you": [65535, 0], "don't you becuz": [65535, 0], "you becuz you": [65535, 0], "becuz you know": [65535, 0], "you know mighty": [65535, 0], "know mighty well": [65535, 0], "mighty well you": [65535, 0], "well you can't": [65535, 0], "you can't this": [65535, 0], "can't this is": [65535, 0], "this is a": [65535, 0], "is a pretty": [65535, 0], "a pretty early": [65535, 0], "pretty early tick": [65535, 0], "early tick i": [65535, 0], "tick i reckon": [65535, 0], "reckon it's the": [65535, 0], "it's the first": [65535, 0], "the first one": [65535, 0], "first one i've": [65535, 0], "one i've seen": [65535, 0], "i've seen this": [65535, 0], "seen this year": [65535, 0], "this year say": [65535, 0], "year say huck": [65535, 0], "say huck i'll": [65535, 0], "huck i'll give": [65535, 0], "i'll give you": [65535, 0], "give you my": [65535, 0], "you my tooth": [65535, 0], "my tooth for": [65535, 0], "tooth for him": [65535, 0], "for him less": [65535, 0], "him less see": [65535, 0], "less see it": [65535, 0], "see it tom": [65535, 0], "it tom got": [65535, 0], "tom got out": [65535, 0], "got out a": [65535, 0], "out a bit": [65535, 0], "bit of paper": [65535, 0], "of paper and": [65535, 0], "paper and carefully": [65535, 0], "and carefully unrolled": [65535, 0], "carefully unrolled it": [65535, 0], "unrolled it huckleberry": [65535, 0], "it huckleberry viewed": [65535, 0], "huckleberry viewed it": [65535, 0], "viewed it wistfully": [65535, 0], "it wistfully the": [65535, 0], "wistfully the temptation": [65535, 0], "the temptation was": [65535, 0], "temptation was very": [65535, 0], "was very strong": [65535, 0], "very strong at": [65535, 0], "strong at last": [65535, 0], "at last he": [65535, 0], "last he said": [65535, 0], "he said is": [65535, 0], "said is it": [65535, 0], "is it genuwyne": [65535, 0], "it genuwyne tom": [65535, 0], "genuwyne tom lifted": [65535, 0], "tom lifted his": [65535, 0], "lip and showed": [65535, 0], "and showed the": [65535, 0], "showed the vacancy": [65535, 0], "the vacancy well": [65535, 0], "vacancy well all": [65535, 0], "well all right": [65535, 0], "all right said": [65535, 0], "right said huckleberry": [65535, 0], "said huckleberry it's": [65535, 0], "huckleberry it's a": [65535, 0], "it's a trade": [65535, 0], "a trade tom": [65535, 0], "trade tom enclosed": [65535, 0], "tom enclosed the": [65535, 0], "enclosed the tick": [65535, 0], "the tick in": [65535, 0], "tick in the": [65535, 0], "in the percussion": [65535, 0], "the percussion cap": [65535, 0], "cap box that": [65535, 0], "box that had": [65535, 0], "that had lately": [65535, 0], "had lately been": [65535, 0], "lately been the": [65535, 0], "been the pinchbug's": [65535, 0], "the pinchbug's prison": [65535, 0], "pinchbug's prison and": [65535, 0], "prison and the": [65535, 0], "and the boys": [65535, 0], "the boys separated": [65535, 0], "boys separated each": [65535, 0], "separated each feeling": [65535, 0], "each feeling wealthier": [65535, 0], "feeling wealthier than": [65535, 0], "wealthier than before": [65535, 0], "than before when": [65535, 0], "before when tom": [65535, 0], "when tom reached": [65535, 0], "tom reached the": [65535, 0], "reached the little": [65535, 0], "the little isolated": [65535, 0], "little isolated frame": [65535, 0], "isolated frame schoolhouse": [65535, 0], "frame schoolhouse he": [65535, 0], "schoolhouse he strode": [65535, 0], "he strode in": [65535, 0], "strode in briskly": [65535, 0], "in briskly with": [65535, 0], "briskly with the": [65535, 0], "with the manner": [65535, 0], "the manner of": [65535, 0], "manner of one": [65535, 0], "of one who": [65535, 0], "one who had": [65535, 0], "who had come": [65535, 0], "had come with": [65535, 0], "come with all": [65535, 0], "with all honest": [65535, 0], "all honest speed": [65535, 0], "honest speed he": [65535, 0], "speed he hung": [65535, 0], "he hung his": [65535, 0], "hung his hat": [65535, 0], "his hat on": [65535, 0], "hat on a": [65535, 0], "on a peg": [65535, 0], "a peg and": [65535, 0], "peg and flung": [65535, 0], "and flung himself": [65535, 0], "flung himself into": [65535, 0], "himself into his": [65535, 0], "into his seat": [65535, 0], "his seat with": [65535, 0], "seat with business": [65535, 0], "with business like": [65535, 0], "business like alacrity": [65535, 0], "like alacrity the": [65535, 0], "alacrity the master": [65535, 0], "the master throned": [65535, 0], "master throned on": [65535, 0], "throned on high": [65535, 0], "on high in": [65535, 0], "high in his": [65535, 0], "in his great": [65535, 0], "his great splint": [65535, 0], "great splint bottom": [65535, 0], "splint bottom arm": [65535, 0], "bottom arm chair": [65535, 0], "arm chair was": [65535, 0], "chair was dozing": [65535, 0], "was dozing lulled": [65535, 0], "dozing lulled by": [65535, 0], "lulled by the": [65535, 0], "by the drowsy": [65535, 0], "the drowsy hum": [65535, 0], "drowsy hum of": [65535, 0], "hum of study": [65535, 0], "of study the": [65535, 0], "study the interruption": [65535, 0], "the interruption roused": [65535, 0], "interruption roused him": [65535, 0], "roused him thomas": [65535, 0], "him thomas sawyer": [65535, 0], "thomas sawyer tom": [65535, 0], "sawyer tom knew": [65535, 0], "tom knew that": [65535, 0], "knew that when": [65535, 0], "that when his": [65535, 0], "when his name": [65535, 0], "his name was": [65535, 0], "name was pronounced": [65535, 0], "was pronounced in": [65535, 0], "pronounced in full": [65535, 0], "in full it": [65535, 0], "full it meant": [65535, 0], "it meant trouble": [65535, 0], "meant trouble sir": [65535, 0], "trouble sir come": [65535, 0], "sir come up": [65535, 0], "come up here": [65535, 0], "up here now": [65535, 0], "here now sir": [65535, 0], "now sir why": [65535, 0], "sir why are": [65535, 0], "why are you": [65535, 0], "are you late": [65535, 0], "you late again": [65535, 0], "late again as": [65535, 0], "again as usual": [65535, 0], "as usual tom": [65535, 0], "usual tom was": [65535, 0], "tom was about": [65535, 0], "about to take": [65535, 0], "to take refuge": [65535, 0], "take refuge in": [65535, 0], "refuge in a": [65535, 0], "in a lie": [65535, 0], "a lie when": [65535, 0], "lie when he": [65535, 0], "when he saw": [65535, 0], "he saw two": [65535, 0], "saw two long": [65535, 0], "two long tails": [65535, 0], "long tails of": [65535, 0], "tails of yellow": [65535, 0], "of yellow hair": [65535, 0], "yellow hair hanging": [65535, 0], "hair hanging down": [65535, 0], "hanging down a": [65535, 0], "down a back": [65535, 0], "a back that": [65535, 0], "back that he": [65535, 0], "that he recognized": [65535, 0], "he recognized by": [65535, 0], "recognized by the": [65535, 0], "by the electric": [65535, 0], "the electric sympathy": [65535, 0], "electric sympathy of": [65535, 0], "sympathy of love": [65535, 0], "of love and": [65535, 0], "love and by": [65535, 0], "and by that": [65535, 0], "by that form": [65535, 0], "that form was": [65535, 0], "form was the": [65535, 0], "was the only": [65535, 0], "the only vacant": [65535, 0], "only vacant place": [65535, 0], "vacant place on": [65535, 0], "place on the": [65535, 0], "on the girls'": [65535, 0], "the girls' side": [65535, 0], "girls' side of": [65535, 0], "side of the": [65535, 0], "of the school": [65535, 0], "the school house": [65535, 0], "school house he": [65535, 0], "house he instantly": [65535, 0], "he instantly said": [65535, 0], "instantly said i": [65535, 0], "said i stopped": [65535, 0], "i stopped to": [65535, 0], "stopped to talk": [65535, 0], "to talk with": [65535, 0], "talk with huckleberry": [65535, 0], "with huckleberry finn": [65535, 0], "huckleberry finn the": [65535, 0], "finn the master's": [65535, 0], "the master's pulse": [65535, 0], "master's pulse stood": [65535, 0], "pulse stood still": [65535, 0], "stood still and": [65535, 0], "still and he": [65535, 0], "and he stared": [65535, 0], "he stared helplessly": [65535, 0], "stared helplessly the": [65535, 0], "helplessly the buzz": [65535, 0], "the buzz of": [65535, 0], "buzz of study": [65535, 0], "of study ceased": [65535, 0], "study ceased the": [65535, 0], "ceased the pupils": [65535, 0], "the pupils wondered": [65535, 0], "pupils wondered if": [65535, 0], "wondered if this": [65535, 0], "if this foolhardy": [65535, 0], "this foolhardy boy": [65535, 0], "foolhardy boy had": [65535, 0], "boy had lost": [65535, 0], "had lost his": [65535, 0], "lost his mind": [65535, 0], "his mind the": [65535, 0], "mind the master": [65535, 0], "the master said": [65535, 0], "master said you": [65535, 0], "said you you": [65535, 0], "you you did": [65535, 0], "you did what": [65535, 0], "did what stopped": [65535, 0], "what stopped to": [65535, 0], "huckleberry finn there": [65535, 0], "finn there was": [65535, 0], "there was no": [65535, 0], "was no mistaking": [65535, 0], "no mistaking the": [65535, 0], "mistaking the words": [65535, 0], "the words thomas": [65535, 0], "words thomas sawyer": [65535, 0], "thomas sawyer this": [65535, 0], "sawyer this is": [65535, 0], "this is the": [32706, 32829], "is the most": [65535, 0], "the most astounding": [65535, 0], "most astounding confession": [65535, 0], "astounding confession i": [65535, 0], "confession i have": [65535, 0], "i have ever": [65535, 0], "have ever listened": [65535, 0], "ever listened to": [65535, 0], "listened to no": [65535, 0], "to no mere": [65535, 0], "no mere ferule": [65535, 0], "mere ferule will": [65535, 0], "ferule will answer": [65535, 0], "will answer for": [65535, 0], "answer for this": [65535, 0], "for this offence": [65535, 0], "this offence take": [65535, 0], "offence take off": [65535, 0], "take off your": [65535, 0], "off your jacket": [65535, 0], "your jacket the": [65535, 0], "jacket the master's": [65535, 0], "the master's arm": [65535, 0], "master's arm performed": [65535, 0], "arm performed until": [65535, 0], "performed until it": [65535, 0], "until it was": [65535, 0], "it was tired": [65535, 0], "was tired and": [65535, 0], "tired and the": [65535, 0], "and the stock": [65535, 0], "the stock of": [65535, 0], "stock of switches": [65535, 0], "of switches notably": [65535, 0], "switches notably diminished": [65535, 0], "notably diminished then": [65535, 0], "diminished then the": [65535, 0], "then the order": [65535, 0], "the order followed": [65535, 0], "order followed now": [65535, 0], "followed now sir": [65535, 0], "now sir go": [65535, 0], "sir go and": [65535, 0], "go and sit": [65535, 0], "and sit with": [65535, 0], "sit with the": [65535, 0], "with the girls": [65535, 0], "the girls and": [65535, 0], "girls and let": [65535, 0], "and let this": [65535, 0], "let this be": [65535, 0], "this be a": [65535, 0], "be a warning": [65535, 0], "a warning to": [65535, 0], "warning to you": [65535, 0], "to you the": [65535, 0], "you the titter": [65535, 0], "the titter that": [65535, 0], "titter that rippled": [65535, 0], "that rippled around": [65535, 0], "rippled around the": [65535, 0], "around the room": [65535, 0], "the room appeared": [65535, 0], "room appeared to": [65535, 0], "appeared to abash": [65535, 0], "to abash the": [65535, 0], "abash the boy": [65535, 0], "the boy but": [65535, 0], "boy but in": [65535, 0], "but in reality": [65535, 0], "in reality that": [65535, 0], "reality that result": [65535, 0], "that result was": [65535, 0], "result was caused": [65535, 0], "was caused rather": [65535, 0], "caused rather more": [65535, 0], "rather more by": [65535, 0], "more by his": [65535, 0], "by his worshipful": [65535, 0], "his worshipful awe": [65535, 0], "worshipful awe of": [65535, 0], "awe of his": [65535, 0], "of his unknown": [65535, 0], "his unknown idol": [65535, 0], "unknown idol and": [65535, 0], "idol and the": [65535, 0], "and the dread": [65535, 0], "the dread pleasure": [65535, 0], "dread pleasure that": [65535, 0], "pleasure that lay": [65535, 0], "that lay in": [65535, 0], "lay in his": [65535, 0], "in his high": [65535, 0], "his high good": [65535, 0], "high good fortune": [65535, 0], "good fortune he": [65535, 0], "fortune he sat": [65535, 0], "he sat down": [65535, 0], "sat down upon": [65535, 0], "down upon the": [65535, 0], "upon the end": [65535, 0], "the end of": [65535, 0], "of the pine": [65535, 0], "the pine bench": [65535, 0], "pine bench and": [65535, 0], "bench and the": [65535, 0], "and the girl": [65535, 0], "the girl hitched": [65535, 0], "girl hitched herself": [65535, 0], "hitched herself away": [65535, 0], "herself away from": [65535, 0], "away from him": [65535, 0], "from him with": [65535, 0], "him with a": [21790, 43745], "with a toss": [65535, 0], "a toss of": [65535, 0], "toss of her": [65535, 0], "of her head": [65535, 0], "her head nudges": [65535, 0], "head nudges and": [65535, 0], "nudges and winks": [65535, 0], "and winks and": [65535, 0], "winks and whispers": [65535, 0], "and whispers traversed": [65535, 0], "whispers traversed the": [65535, 0], "traversed the room": [65535, 0], "the room but": [65535, 0], "room but tom": [65535, 0], "but tom sat": [65535, 0], "tom sat still": [65535, 0], "sat still with": [65535, 0], "still with his": [65535, 0], "with his arms": [65535, 0], "his arms upon": [65535, 0], "arms upon the": [65535, 0], "upon the long": [65535, 0], "the long low": [65535, 0], "long low desk": [65535, 0], "low desk before": [65535, 0], "desk before him": [65535, 0], "before him and": [65535, 0], "him and seemed": [65535, 0], "and seemed to": [65535, 0], "seemed to study": [65535, 0], "to study his": [65535, 0], "study his book": [65535, 0], "his book by": [65535, 0], "book by and": [65535, 0], "and by attention": [65535, 0], "by attention ceased": [65535, 0], "attention ceased from": [65535, 0], "ceased from him": [65535, 0], "from him and": [65535, 0], "him and the": [32706, 32829], "and the accustomed": [65535, 0], "the accustomed school": [65535, 0], "accustomed school murmur": [65535, 0], "school murmur rose": [65535, 0], "murmur rose upon": [65535, 0], "rose upon the": [65535, 0], "upon the dull": [65535, 0], "the dull air": [65535, 0], "dull air once": [65535, 0], "air once more": [65535, 0], "once more presently": [65535, 0], "more presently the": [65535, 0], "presently the boy": [65535, 0], "the boy began": [65535, 0], "boy began to": [65535, 0], "began to steal": [65535, 0], "to steal furtive": [65535, 0], "steal furtive glances": [65535, 0], "furtive glances at": [65535, 0], "glances at the": [65535, 0], "at the girl": [65535, 0], "the girl she": [65535, 0], "girl she observed": [65535, 0], "she observed it": [65535, 0], "observed it made": [65535, 0], "it made a": [65535, 0], "made a mouth": [65535, 0], "a mouth at": [65535, 0], "mouth at him": [65535, 0], "at him and": [65535, 0], "him and gave": [65535, 0], "and gave him": [65535, 0], "gave him the": [65535, 0], "him the back": [65535, 0], "back of her": [65535, 0], "her head for": [65535, 0], "head for the": [65535, 0], "for the space": [65535, 0], "the space of": [65535, 0], "space of a": [65535, 0], "of a minute": [65535, 0], "a minute when": [65535, 0], "minute when she": [65535, 0], "when she cautiously": [65535, 0], "she cautiously faced": [65535, 0], "cautiously faced around": [65535, 0], "faced around again": [65535, 0], "around again a": [65535, 0], "again a peach": [65535, 0], "a peach lay": [65535, 0], "peach lay before": [65535, 0], "lay before her": [65535, 0], "before her she": [65535, 0], "her she thrust": [65535, 0], "she thrust it": [65535, 0], "thrust it away": [65535, 0], "it away tom": [65535, 0], "away tom gently": [65535, 0], "tom gently put": [65535, 0], "gently put it": [65535, 0], "put it back": [65535, 0], "it back she": [65535, 0], "back she thrust": [65535, 0], "it away again": [65535, 0], "away again but": [65535, 0], "again but with": [65535, 0], "but with less": [65535, 0], "with less animosity": [65535, 0], "less animosity tom": [65535, 0], "animosity tom patiently": [65535, 0], "tom patiently returned": [65535, 0], "patiently returned it": [65535, 0], "returned it to": [65535, 0], "it to its": [65535, 0], "to its place": [65535, 0], "its place then": [65535, 0], "place then she": [65535, 0], "then she let": [65535, 0], "she let it": [65535, 0], "let it remain": [65535, 0], "it remain tom": [65535, 0], "remain tom scrawled": [65535, 0], "tom scrawled on": [65535, 0], "scrawled on his": [65535, 0], "on his slate": [65535, 0], "his slate please": [65535, 0], "slate please take": [65535, 0], "please take it": [65535, 0], "take it i": [65535, 0], "it i got": [65535, 0], "i got more": [65535, 0], "got more the": [65535, 0], "more the girl": [65535, 0], "the girl glanced": [65535, 0], "girl glanced at": [65535, 0], "glanced at the": [65535, 0], "at the words": [65535, 0], "the words but": [65535, 0], "words but made": [65535, 0], "but made no": [65535, 0], "made no sign": [65535, 0], "no sign now": [65535, 0], "sign now the": [65535, 0], "now the boy": [65535, 0], "began to draw": [65535, 0], "to draw something": [65535, 0], "draw something on": [65535, 0], "something on the": [65535, 0], "on the slate": [65535, 0], "the slate hiding": [65535, 0], "slate hiding his": [65535, 0], "hiding his work": [65535, 0], "his work with": [65535, 0], "work with his": [65535, 0], "with his left": [65535, 0], "his left hand": [65535, 0], "left hand for": [65535, 0], "hand for a": [65535, 0], "for a time": [65535, 0], "a time the": [65535, 0], "time the girl": [65535, 0], "the girl refused": [65535, 0], "girl refused to": [65535, 0], "refused to notice": [65535, 0], "to notice but": [65535, 0], "notice but her": [65535, 0], "but her human": [65535, 0], "her human curiosity": [65535, 0], "human curiosity presently": [65535, 0], "curiosity presently began": [65535, 0], "presently began to": [65535, 0], "began to manifest": [65535, 0], "to manifest itself": [65535, 0], "manifest itself by": [65535, 0], "itself by hardly": [65535, 0], "by hardly perceptible": [65535, 0], "hardly perceptible signs": [65535, 0], "perceptible signs the": [65535, 0], "signs the boy": [65535, 0], "the boy worked": [65535, 0], "boy worked on": [65535, 0], "worked on apparently": [65535, 0], "on apparently unconscious": [65535, 0], "apparently unconscious the": [65535, 0], "unconscious the girl": [65535, 0], "the girl made": [65535, 0], "girl made a": [65535, 0], "made a sort": [65535, 0], "a sort of": [65535, 0], "sort of noncommittal": [65535, 0], "of noncommittal attempt": [65535, 0], "noncommittal attempt to": [65535, 0], "attempt to see": [65535, 0], "to see but": [65535, 0], "see but the": [65535, 0], "but the boy": [65535, 0], "the boy did": [65535, 0], "boy did not": [65535, 0], "did not betray": [65535, 0], "not betray that": [65535, 0], "betray that he": [65535, 0], "that he was": [32706, 32829], "he was aware": [65535, 0], "was aware of": [65535, 0], "aware of it": [65535, 0], "of it at": [65535, 0], "it at last": [65535, 0], "at last she": [65535, 0], "last she gave": [65535, 0], "she gave in": [65535, 0], "gave in and": [65535, 0], "in and hesitatingly": [65535, 0], "and hesitatingly whispered": [65535, 0], "hesitatingly whispered let": [65535, 0], "whispered let me": [65535, 0], "let me see": [32706, 32829], "me see it": [32706, 32829], "it tom partly": [65535, 0], "tom partly uncovered": [65535, 0], "partly uncovered a": [65535, 0], "uncovered a dismal": [65535, 0], "a dismal caricature": [65535, 0], "dismal caricature of": [65535, 0], "caricature of a": [65535, 0], "of a house": [65535, 0], "a house with": [65535, 0], "house with two": [65535, 0], "with two gable": [65535, 0], "two gable ends": [65535, 0], "gable ends to": [65535, 0], "ends to it": [65535, 0], "it and a": [65535, 0], "and a corkscrew": [65535, 0], "a corkscrew of": [65535, 0], "corkscrew of smoke": [65535, 0], "of smoke issuing": [65535, 0], "smoke issuing from": [65535, 0], "issuing from the": [65535, 0], "from the chimney": [65535, 0], "the chimney then": [65535, 0], "chimney then the": [65535, 0], "then the girl's": [65535, 0], "the girl's interest": [65535, 0], "girl's interest began": [65535, 0], "interest began to": [65535, 0], "began to fasten": [65535, 0], "to fasten itself": [65535, 0], "fasten itself upon": [65535, 0], "itself upon the": [65535, 0], "upon the work": [65535, 0], "the work and": [65535, 0], "work and she": [65535, 0], "and she forgot": [65535, 0], "she forgot everything": [65535, 0], "forgot everything else": [65535, 0], "everything else when": [65535, 0], "else when it": [65535, 0], "when it was": [65535, 0], "it was finished": [65535, 0], "was finished she": [65535, 0], "finished she gazed": [65535, 0], "she gazed a": [65535, 0], "gazed a moment": [65535, 0], "a moment then": [65535, 0], "moment then whispered": [65535, 0], "then whispered it's": [65535, 0], "whispered it's nice": [65535, 0], "it's nice make": [65535, 0], "nice make a": [65535, 0], "make a man": [43635, 21900], "a man the": [65535, 0], "man the artist": [65535, 0], "the artist erected": [65535, 0], "artist erected a": [65535, 0], "erected a man": [65535, 0], "a man in": [65535, 0], "man in the": [65535, 0], "in the front": [65535, 0], "the front yard": [65535, 0], "front yard that": [65535, 0], "yard that resembled": [65535, 0], "that resembled a": [65535, 0], "resembled a derrick": [65535, 0], "a derrick he": [65535, 0], "derrick he could": [65535, 0], "he could have": [65535, 0], "could have stepped": [65535, 0], "have stepped over": [65535, 0], "stepped over the": [65535, 0], "over the house": [65535, 0], "the house but": [65535, 0], "house but the": [65535, 0], "but the girl": [65535, 0], "the girl was": [65535, 0], "girl was not": [65535, 0], "was not hypercritical": [65535, 0], "not hypercritical she": [65535, 0], "hypercritical she was": [65535, 0], "she was satisfied": [65535, 0], "was satisfied with": [65535, 0], "satisfied with the": [65535, 0], "with the monster": [65535, 0], "the monster and": [65535, 0], "monster and whispered": [65535, 0], "and whispered it's": [65535, 0], "whispered it's a": [65535, 0], "it's a beautiful": [65535, 0], "a beautiful man": [65535, 0], "beautiful man now": [65535, 0], "man now make": [65535, 0], "now make me": [65535, 0], "make me coming": [65535, 0], "me coming along": [65535, 0], "coming along tom": [65535, 0], "along tom drew": [65535, 0], "tom drew an": [65535, 0], "drew an hour": [65535, 0], "an hour glass": [65535, 0], "hour glass with": [65535, 0], "glass with a": [65535, 0], "with a full": [65535, 0], "a full moon": [65535, 0], "full moon and": [65535, 0], "moon and straw": [65535, 0], "and straw limbs": [65535, 0], "straw limbs to": [65535, 0], "limbs to it": [65535, 0], "it and armed": [65535, 0], "and armed the": [65535, 0], "armed the spreading": [65535, 0], "the spreading fingers": [65535, 0], "spreading fingers with": [65535, 0], "fingers with a": [65535, 0], "with a portentous": [65535, 0], "a portentous fan": [65535, 0], "portentous fan the": [65535, 0], "fan the girl": [65535, 0], "the girl said": [65535, 0], "girl said it's": [65535, 0], "said it's ever": [65535, 0], "it's ever so": [65535, 0], "ever so nice": [65535, 0], "so nice i": [65535, 0], "nice i wish": [65535, 0], "wish i could": [65535, 0], "i could draw": [65535, 0], "could draw it's": [65535, 0], "draw it's easy": [65535, 0], "it's easy whispered": [65535, 0], "easy whispered tom": [65535, 0], "whispered tom i'll": [65535, 0], "tom i'll learn": [65535, 0], "i'll learn you": [65535, 0], "learn you oh": [65535, 0], "you oh will": [65535, 0], "oh will you": [65535, 0], "will you when": [65535, 0], "you when at": [65535, 0], "when at noon": [65535, 0], "at noon do": [65535, 0], "noon do you": [65535, 0], "do you go": [65535, 0], "you go home": [65535, 0], "go home to": [65535, 0], "home to dinner": [10888, 54647], "to dinner i'll": [65535, 0], "dinner i'll stay": [65535, 0], "i'll stay if": [65535, 0], "stay if you": [65535, 0], "if you will": [43635, 21900], "you will good": [65535, 0], "will good that's": [65535, 0], "good that's a": [65535, 0], "that's a whack": [65535, 0], "a whack what's": [65535, 0], "whack what's your": [65535, 0], "what's your name": [65535, 0], "your name becky": [65535, 0], "name becky thatcher": [65535, 0], "becky thatcher what's": [65535, 0], "thatcher what's yours": [65535, 0], "what's yours oh": [65535, 0], "yours oh i": [65535, 0], "oh i know": [65535, 0], "i know it's": [65535, 0], "know it's thomas": [65535, 0], "it's thomas sawyer": [65535, 0], "thomas sawyer that's": [65535, 0], "sawyer that's the": [65535, 0], "that's the name": [65535, 0], "the name they": [65535, 0], "name they lick": [65535, 0], "they lick me": [65535, 0], "lick me by": [65535, 0], "me by i'm": [65535, 0], "by i'm tom": [65535, 0], "i'm tom when": [65535, 0], "tom when i'm": [65535, 0], "when i'm good": [65535, 0], "i'm good you": [65535, 0], "good you call": [65535, 0], "you call me": [65535, 0], "call me tom": [65535, 0], "me tom will": [65535, 0], "tom will you": [65535, 0], "will you yes": [65535, 0], "you yes now": [65535, 0], "yes now tom": [65535, 0], "now tom began": [65535, 0], "began to scrawl": [65535, 0], "to scrawl something": [65535, 0], "scrawl something on": [65535, 0], "slate hiding the": [65535, 0], "hiding the words": [65535, 0], "the words from": [65535, 0], "words from the": [65535, 0], "from the girl": [65535, 0], "the girl but": [65535, 0], "girl but she": [65535, 0], "but she was": [65535, 0], "she was not": [65535, 0], "was not backward": [65535, 0], "not backward this": [65535, 0], "backward this time": [65535, 0], "this time she": [65535, 0], "time she begged": [65535, 0], "she begged to": [65535, 0], "begged to see": [65535, 0], "to see tom": [65535, 0], "see tom said": [65535, 0], "said oh it": [65535, 0], "oh it ain't": [65535, 0], "it ain't anything": [65535, 0], "ain't anything yes": [65535, 0], "anything yes it": [65535, 0], "yes it is": [65535, 0], "it is no": [32706, 32829], "is no it": [65535, 0], "no it ain't": [65535, 0], "it ain't you": [65535, 0], "ain't you don't": [65535, 0], "you don't want": [65535, 0], "want to see": [65535, 0], "to see yes": [65535, 0], "see yes i": [65535, 0], "yes i do": [65535, 0], "i do indeed": [65535, 0], "do indeed i": [65535, 0], "indeed i do": [65535, 0], "i do please": [65535, 0], "do please let": [65535, 0], "please let me": [65535, 0], "let me you'll": [65535, 0], "me you'll tell": [65535, 0], "you'll tell no": [65535, 0], "tell no i": [65535, 0], "no i won't": [65535, 0], "i won't deed": [65535, 0], "won't deed and": [65535, 0], "deed and deed": [65535, 0], "and deed and": [65535, 0], "deed and double": [65535, 0], "and double deed": [65535, 0], "double deed won't": [65535, 0], "deed won't you": [65535, 0], "won't you won't": [65535, 0], "you won't tell": [65535, 0], "won't tell anybody": [65535, 0], "tell anybody at": [65535, 0], "anybody at all": [65535, 0], "at all ever": [65535, 0], "all ever as": [65535, 0], "ever as long": [65535, 0], "long as you": [65535, 0], "as you live": [65535, 0], "you live no": [65535, 0], "live no i": [65535, 0], "i won't ever": [65535, 0], "won't ever tell": [65535, 0], "ever tell anybody": [65535, 0], "tell anybody now": [65535, 0], "anybody now let": [65535, 0], "now let me": [65535, 0], "let me oh": [65535, 0], "me oh you": [65535, 0], "to see now": [65535, 0], "see now that": [65535, 0], "now that you": [65535, 0], "that you treat": [65535, 0], "you treat me": [65535, 0], "treat me so": [65535, 0], "me so i": [65535, 0], "so i will": [32706, 32829], "i will see": [65535, 0], "will see and": [65535, 0], "see and she": [65535, 0], "and she put": [65535, 0], "she put her": [65535, 0], "put her small": [65535, 0], "her small hand": [65535, 0], "small hand upon": [65535, 0], "hand upon his": [65535, 0], "upon his and": [65535, 0], "his and a": [65535, 0], "a little scuffle": [65535, 0], "little scuffle ensued": [65535, 0], "scuffle ensued tom": [65535, 0], "ensued tom pretending": [65535, 0], "tom pretending to": [65535, 0], "pretending to resist": [65535, 0], "to resist in": [65535, 0], "resist in earnest": [65535, 0], "in earnest but": [65535, 0], "earnest but letting": [65535, 0], "but letting his": [65535, 0], "letting his hand": [65535, 0], "his hand slip": [65535, 0], "hand slip by": [65535, 0], "slip by degrees": [65535, 0], "by degrees till": [65535, 0], "degrees till these": [65535, 0], "till these words": [65535, 0], "these words were": [65535, 0], "words were revealed": [65535, 0], "were revealed i": [65535, 0], "revealed i love": [65535, 0], "love you oh": [65535, 0], "you oh you": [65535, 0], "oh you bad": [65535, 0], "you bad thing": [65535, 0], "bad thing and": [65535, 0], "thing and she": [65535, 0], "and she hit": [65535, 0], "she hit his": [65535, 0], "hit his hand": [65535, 0], "his hand a": [65535, 0], "hand a smart": [65535, 0], "a smart rap": [65535, 0], "smart rap but": [65535, 0], "rap but reddened": [65535, 0], "but reddened and": [65535, 0], "reddened and looked": [65535, 0], "and looked pleased": [65535, 0], "looked pleased nevertheless": [65535, 0], "pleased nevertheless just": [65535, 0], "nevertheless just at": [65535, 0], "just at this": [65535, 0], "at this juncture": [65535, 0], "this juncture the": [65535, 0], "juncture the boy": [65535, 0], "felt a slow": [65535, 0], "a slow fateful": [65535, 0], "slow fateful grip": [65535, 0], "fateful grip closing": [65535, 0], "grip closing on": [65535, 0], "closing on his": [65535, 0], "on his ear": [65535, 0], "his ear and": [65535, 0], "ear and a": [65535, 0], "and a steady": [65535, 0], "a steady lifting": [65535, 0], "steady lifting impulse": [65535, 0], "lifting impulse in": [65535, 0], "impulse in that": [65535, 0], "in that vise": [65535, 0], "that vise he": [65535, 0], "vise he was": [65535, 0], "he was borne": [65535, 0], "was borne across": [65535, 0], "borne across the": [65535, 0], "across the house": [65535, 0], "house and deposited": [65535, 0], "and deposited in": [65535, 0], "deposited in his": [65535, 0], "in his own": [65535, 0], "his own seat": [65535, 0], "own seat under": [65535, 0], "seat under a": [65535, 0], "under a peppering": [65535, 0], "a peppering fire": [65535, 0], "peppering fire of": [65535, 0], "fire of giggles": [65535, 0], "of giggles from": [65535, 0], "giggles from the": [65535, 0], "from the whole": [65535, 0], "the whole school": [65535, 0], "whole school then": [65535, 0], "school then the": [65535, 0], "then the master": [65535, 0], "the master stood": [65535, 0], "master stood over": [65535, 0], "stood over him": [65535, 0], "over him during": [65535, 0], "him during a": [65535, 0], "during a few": [65535, 0], "a few awful": [65535, 0], "few awful moments": [65535, 0], "awful moments and": [65535, 0], "moments and finally": [65535, 0], "and finally moved": [65535, 0], "finally moved away": [65535, 0], "moved away to": [65535, 0], "away to his": [65535, 0], "to his throne": [65535, 0], "his throne without": [65535, 0], "throne without saying": [65535, 0], "without saying a": [65535, 0], "saying a word": [65535, 0], "a word but": [65535, 0], "word but although": [65535, 0], "but although tom's": [65535, 0], "although tom's ear": [65535, 0], "tom's ear tingled": [65535, 0], "ear tingled his": [65535, 0], "tingled his heart": [65535, 0], "heart was jubilant": [65535, 0], "was jubilant as": [65535, 0], "jubilant as the": [65535, 0], "as the school": [65535, 0], "the school quieted": [65535, 0], "school quieted down": [65535, 0], "quieted down tom": [65535, 0], "down tom made": [65535, 0], "tom made an": [65535, 0], "made an honest": [65535, 0], "an honest effort": [65535, 0], "honest effort to": [65535, 0], "effort to study": [65535, 0], "to study but": [65535, 0], "study but the": [65535, 0], "but the turmoil": [65535, 0], "the turmoil within": [65535, 0], "turmoil within him": [65535, 0], "within him was": [65535, 0], "him was too": [65535, 0], "was too great": [65535, 0], "too great in": [65535, 0], "great in turn": [65535, 0], "in turn he": [65535, 0], "turn he took": [65535, 0], "he took his": [65535, 0], "took his place": [65535, 0], "his place in": [65535, 0], "place in the": [65535, 0], "in the reading": [65535, 0], "the reading class": [65535, 0], "reading class and": [65535, 0], "class and made": [65535, 0], "made a botch": [65535, 0], "a botch of": [65535, 0], "botch of it": [65535, 0], "of it then": [65535, 0], "it then in": [65535, 0], "then in the": [65535, 0], "in the geography": [65535, 0], "the geography class": [65535, 0], "geography class and": [65535, 0], "class and turned": [65535, 0], "and turned lakes": [65535, 0], "turned lakes into": [65535, 0], "lakes into mountains": [65535, 0], "into mountains mountains": [65535, 0], "mountains mountains into": [65535, 0], "mountains into rivers": [65535, 0], "into rivers and": [65535, 0], "rivers and rivers": [65535, 0], "and rivers into": [65535, 0], "rivers into continents": [65535, 0], "into continents till": [65535, 0], "continents till chaos": [65535, 0], "till chaos was": [65535, 0], "chaos was come": [65535, 0], "was come again": [65535, 0], "come again then": [65535, 0], "again then in": [65535, 0], "in the spelling": [65535, 0], "the spelling class": [65535, 0], "spelling class and": [65535, 0], "class and got": [65535, 0], "and got turned": [65535, 0], "got turned down": [65535, 0], "turned down by": [65535, 0], "down by a": [65535, 0], "by a succession": [65535, 0], "succession of mere": [65535, 0], "of mere baby": [65535, 0], "mere baby words": [65535, 0], "baby words till": [65535, 0], "words till he": [65535, 0], "till he brought": [65535, 0], "he brought up": [65535, 0], "brought up at": [65535, 0], "up at the": [65535, 0], "at the foot": [65535, 0], "the foot and": [65535, 0], "foot and yielded": [65535, 0], "and yielded up": [65535, 0], "yielded up the": [65535, 0], "up the pewter": [65535, 0], "the pewter medal": [65535, 0], "pewter medal which": [65535, 0], "medal which he": [65535, 0], "which he had": [65535, 0], "he had worn": [65535, 0], "had worn with": [65535, 0], "worn with ostentation": [65535, 0], "with ostentation for": [65535, 0], "ostentation for months": [65535, 0], "monday morning found tom": [65535, 0], "morning found tom sawyer": [65535, 0], "found tom sawyer miserable": [65535, 0], "tom sawyer miserable monday": [65535, 0], "sawyer miserable monday morning": [65535, 0], "miserable monday morning always": [65535, 0], "monday morning always found": [65535, 0], "morning always found him": [65535, 0], "always found him so": [65535, 0], "found him so because": [65535, 0], "him so because it": [65535, 0], "so because it began": [65535, 0], "because it began another": [65535, 0], "it began another week's": [65535, 0], "began another week's slow": [65535, 0], "another week's slow suffering": [65535, 0], "week's slow suffering in": [65535, 0], "slow suffering in school": [65535, 0], "suffering in school he": [65535, 0], "in school he generally": [65535, 0], "school he generally began": [65535, 0], "he generally began that": [65535, 0], "generally began that day": [65535, 0], "began that day with": [65535, 0], "that day with wishing": [65535, 0], "day with wishing he": [65535, 0], "with wishing he had": [65535, 0], "wishing he had had": [65535, 0], "he had had no": [65535, 0], "had had no intervening": [65535, 0], "had no intervening holiday": [65535, 0], "no intervening holiday it": [65535, 0], "intervening holiday it made": [65535, 0], "holiday it made the": [65535, 0], "it made the going": [65535, 0], "made the going into": [65535, 0], "the going into captivity": [65535, 0], "going into captivity and": [65535, 0], "into captivity and fetters": [65535, 0], "captivity and fetters again": [65535, 0], "and fetters again so": [65535, 0], "fetters again so much": [65535, 0], "again so much more": [65535, 0], "so much more odious": [65535, 0], "much more odious tom": [65535, 0], "more odious tom lay": [65535, 0], "odious tom lay thinking": [65535, 0], "tom lay thinking presently": [65535, 0], "lay thinking presently it": [65535, 0], "thinking presently it occurred": [65535, 0], "presently it occurred to": [65535, 0], "it occurred to him": [65535, 0], "occurred to him that": [65535, 0], "to him that he": [65535, 0], "him that he wished": [65535, 0], "he wished he was": [65535, 0], "wished he was sick": [65535, 0], "he was sick then": [65535, 0], "was sick then he": [65535, 0], "sick then he could": [65535, 0], "then he could stay": [65535, 0], "he could stay home": [65535, 0], "could stay home from": [65535, 0], "stay home from school": [65535, 0], "home from school here": [65535, 0], "from school here was": [65535, 0], "school here was a": [65535, 0], "here was a vague": [65535, 0], "was a vague possibility": [65535, 0], "a vague possibility he": [65535, 0], "vague possibility he canvassed": [65535, 0], "possibility he canvassed his": [65535, 0], "he canvassed his system": [65535, 0], "canvassed his system no": [65535, 0], "his system no ailment": [65535, 0], "system no ailment was": [65535, 0], "no ailment was found": [65535, 0], "ailment was found and": [65535, 0], "was found and he": [65535, 0], "found and he investigated": [65535, 0], "and he investigated again": [65535, 0], "he investigated again this": [65535, 0], "investigated again this time": [65535, 0], "again this time he": [65535, 0], "this time he thought": [65535, 0], "time he thought he": [65535, 0], "he thought he could": [65535, 0], "thought he could detect": [65535, 0], "he could detect colicky": [65535, 0], "could detect colicky symptoms": [65535, 0], "detect colicky symptoms and": [65535, 0], "colicky symptoms and he": [65535, 0], "symptoms and he began": [65535, 0], "and he began to": [65535, 0], "he began to encourage": [65535, 0], "began to encourage them": [65535, 0], "to encourage them with": [65535, 0], "encourage them with considerable": [65535, 0], "them with considerable hope": [65535, 0], "with considerable hope but": [65535, 0], "considerable hope but they": [65535, 0], "hope but they soon": [65535, 0], "but they soon grew": [65535, 0], "they soon grew feeble": [65535, 0], "soon grew feeble and": [65535, 0], "grew feeble and presently": [65535, 0], "feeble and presently died": [65535, 0], "and presently died wholly": [65535, 0], "presently died wholly away": [65535, 0], "died wholly away he": [65535, 0], "wholly away he reflected": [65535, 0], "away he reflected further": [65535, 0], "he reflected further suddenly": [65535, 0], "reflected further suddenly he": [65535, 0], "further suddenly he discovered": [65535, 0], "suddenly he discovered something": [65535, 0], "he discovered something one": [65535, 0], "discovered something one of": [65535, 0], "something one of his": [65535, 0], "one of his upper": [65535, 0], "of his upper front": [65535, 0], "his upper front teeth": [65535, 0], "upper front teeth was": [65535, 0], "front teeth was loose": [65535, 0], "teeth was loose this": [65535, 0], "was loose this was": [65535, 0], "loose this was lucky": [65535, 0], "this was lucky he": [65535, 0], "was lucky he was": [65535, 0], "lucky he was about": [65535, 0], "was about to begin": [65535, 0], "about to begin to": [65535, 0], "to begin to groan": [65535, 0], "begin to groan as": [65535, 0], "to groan as a": [65535, 0], "groan as a starter": [65535, 0], "as a starter as": [65535, 0], "a starter as he": [65535, 0], "starter as he called": [65535, 0], "as he called it": [65535, 0], "he called it when": [65535, 0], "called it when it": [65535, 0], "it when it occurred": [65535, 0], "when it occurred to": [65535, 0], "to him that if": [65535, 0], "him that if he": [65535, 0], "that if he came": [65535, 0], "if he came into": [65535, 0], "he came into court": [65535, 0], "came into court with": [65535, 0], "into court with that": [65535, 0], "court with that argument": [65535, 0], "with that argument his": [65535, 0], "that argument his aunt": [65535, 0], "argument his aunt would": [65535, 0], "his aunt would pull": [65535, 0], "aunt would pull it": [65535, 0], "would pull it out": [65535, 0], "pull it out and": [65535, 0], "it out and that": [65535, 0], "out and that would": [65535, 0], "and that would hurt": [65535, 0], "that would hurt so": [65535, 0], "would hurt so he": [65535, 0], "hurt so he thought": [65535, 0], "so he thought he": [65535, 0], "he thought he would": [65535, 0], "thought he would hold": [65535, 0], "he would hold the": [65535, 0], "would hold the tooth": [65535, 0], "hold the tooth in": [65535, 0], "the tooth in reserve": [65535, 0], "tooth in reserve for": [65535, 0], "in reserve for the": [65535, 0], "reserve for the present": [65535, 0], "for the present and": [65535, 0], "the present and seek": [65535, 0], "present and seek further": [65535, 0], "and seek further nothing": [65535, 0], "seek further nothing offered": [65535, 0], "further nothing offered for": [65535, 0], "nothing offered for some": [65535, 0], "offered for some little": [65535, 0], "for some little time": [65535, 0], "some little time and": [65535, 0], "little time and then": [65535, 0], "time and then he": [65535, 0], "and then he remembered": [65535, 0], "then he remembered hearing": [65535, 0], "he remembered hearing the": [65535, 0], "remembered hearing the doctor": [65535, 0], "hearing the doctor tell": [65535, 0], "the doctor tell about": [65535, 0], "doctor tell about a": [65535, 0], "tell about a certain": [65535, 0], "about a certain thing": [65535, 0], "a certain thing that": [65535, 0], "certain thing that laid": [65535, 0], "thing that laid up": [65535, 0], "that laid up a": [65535, 0], "laid up a patient": [65535, 0], "up a patient for": [65535, 0], "a patient for two": [65535, 0], "patient for two or": [65535, 0], "for two or three": [65535, 0], "two or three weeks": [65535, 0], "or three weeks and": [65535, 0], "three weeks and threatened": [65535, 0], "weeks and threatened to": [65535, 0], "and threatened to make": [65535, 0], "threatened to make him": [65535, 0], "to make him lose": [65535, 0], "make him lose a": [65535, 0], "him lose a finger": [65535, 0], "lose a finger so": [65535, 0], "a finger so the": [65535, 0], "finger so the boy": [65535, 0], "so the boy eagerly": [65535, 0], "the boy eagerly drew": [65535, 0], "boy eagerly drew his": [65535, 0], "eagerly drew his sore": [65535, 0], "drew his sore toe": [65535, 0], "his sore toe from": [65535, 0], "sore toe from under": [65535, 0], "toe from under the": [65535, 0], "from under the sheet": [65535, 0], "under the sheet and": [65535, 0], "the sheet and held": [65535, 0], "sheet and held it": [65535, 0], "and held it up": [65535, 0], "held it up for": [65535, 0], "it up for inspection": [65535, 0], "up for inspection but": [65535, 0], "for inspection but now": [65535, 0], "inspection but now he": [65535, 0], "but now he did": [65535, 0], "now he did not": [65535, 0], "he did not know": [65535, 0], "did not know the": [65535, 0], "not know the necessary": [65535, 0], "know the necessary symptoms": [65535, 0], "the necessary symptoms however": [65535, 0], "necessary symptoms however it": [65535, 0], "symptoms however it seemed": [65535, 0], "however it seemed well": [65535, 0], "it seemed well worth": [65535, 0], "seemed well worth while": [65535, 0], "well worth while to": [65535, 0], "worth while to chance": [65535, 0], "while to chance it": [65535, 0], "to chance it so": [65535, 0], "chance it so he": [65535, 0], "it so he fell": [65535, 0], "so he fell to": [65535, 0], "he fell to groaning": [65535, 0], "fell to groaning with": [65535, 0], "to groaning with considerable": [65535, 0], "groaning with considerable spirit": [65535, 0], "with considerable spirit but": [65535, 0], "considerable spirit but sid": [65535, 0], "spirit but sid slept": [65535, 0], "but sid slept on": [65535, 0], "sid slept on unconscious": [65535, 0], "slept on unconscious tom": [65535, 0], "on unconscious tom groaned": [65535, 0], "unconscious tom groaned louder": [65535, 0], "tom groaned louder and": [65535, 0], "groaned louder and fancied": [65535, 0], "louder and fancied that": [65535, 0], "and fancied that he": [65535, 0], "fancied that he began": [65535, 0], "that he began to": [65535, 0], "he began to feel": [65535, 0], "began to feel pain": [65535, 0], "to feel pain in": [65535, 0], "feel pain in the": [65535, 0], "pain in the toe": [65535, 0], "in the toe no": [65535, 0], "the toe no result": [65535, 0], "toe no result from": [65535, 0], "no result from sid": [65535, 0], "result from sid tom": [65535, 0], "from sid tom was": [65535, 0], "sid tom was panting": [65535, 0], "tom was panting with": [65535, 0], "was panting with his": [65535, 0], "panting with his exertions": [65535, 0], "with his exertions by": [65535, 0], "his exertions by this": [65535, 0], "exertions by this time": [65535, 0], "by this time he": [65535, 0], "this time he took": [65535, 0], "time he took a": [65535, 0], "he took a rest": [65535, 0], "took a rest and": [65535, 0], "a rest and then": [65535, 0], "rest and then swelled": [65535, 0], "and then swelled himself": [65535, 0], "then swelled himself up": [65535, 0], "swelled himself up and": [65535, 0], "himself up and fetched": [65535, 0], "up and fetched a": [65535, 0], "and fetched a succession": [65535, 0], "fetched a succession of": [65535, 0], "a succession of admirable": [65535, 0], "succession of admirable groans": [65535, 0], "of admirable groans sid": [65535, 0], "admirable groans sid snored": [65535, 0], "groans sid snored on": [65535, 0], "sid snored on tom": [65535, 0], "snored on tom was": [65535, 0], "on tom was aggravated": [65535, 0], "tom was aggravated he": [65535, 0], "was aggravated he said": [65535, 0], "aggravated he said sid": [65535, 0], "he said sid sid": [65535, 0], "said sid sid and": [65535, 0], "sid sid and shook": [65535, 0], "sid and shook him": [65535, 0], "and shook him this": [65535, 0], "shook him this course": [65535, 0], "him this course worked": [65535, 0], "this course worked well": [65535, 0], "course worked well and": [65535, 0], "worked well and tom": [65535, 0], "well and tom began": [65535, 0], "and tom began to": [65535, 0], "tom began to groan": [65535, 0], "began to groan again": [65535, 0], "to groan again sid": [65535, 0], "groan again sid yawned": [65535, 0], "again sid yawned stretched": [65535, 0], "sid yawned stretched then": [65535, 0], "yawned stretched then brought": [65535, 0], "stretched then brought himself": [65535, 0], "then brought himself up": [65535, 0], "brought himself up on": [65535, 0], "himself up on his": [65535, 0], "up on his elbow": [65535, 0], "on his elbow with": [65535, 0], "his elbow with a": [65535, 0], "elbow with a snort": [65535, 0], "with a snort and": [65535, 0], "a snort and began": [65535, 0], "snort and began to": [65535, 0], "and began to stare": [65535, 0], "began to stare at": [65535, 0], "to stare at tom": [65535, 0], "stare at tom tom": [65535, 0], "at tom tom went": [65535, 0], "tom tom went on": [65535, 0], "tom went on groaning": [65535, 0], "went on groaning sid": [65535, 0], "on groaning sid said": [65535, 0], "groaning sid said tom": [65535, 0], "sid said tom say": [65535, 0], "said tom say tom": [65535, 0], "tom say tom no": [65535, 0], "say tom no response": [65535, 0], "tom no response here": [65535, 0], "no response here tom": [65535, 0], "response here tom tom": [65535, 0], "here tom tom what": [65535, 0], "tom tom what is": [65535, 0], "tom what is the": [65535, 0], "what is the matter": [49105, 16430], "is the matter tom": [65535, 0], "the matter tom and": [65535, 0], "matter tom and he": [65535, 0], "tom and he shook": [65535, 0], "and he shook him": [65535, 0], "he shook him and": [65535, 0], "shook him and looked": [65535, 0], "him and looked in": [65535, 0], "and looked in his": [65535, 0], "looked in his face": [65535, 0], "in his face anxiously": [65535, 0], "his face anxiously tom": [65535, 0], "face anxiously tom moaned": [65535, 0], "anxiously tom moaned out": [65535, 0], "tom moaned out oh": [65535, 0], "moaned out oh don't": [65535, 0], "out oh don't sid": [65535, 0], "oh don't sid don't": [65535, 0], "don't sid don't joggle": [65535, 0], "sid don't joggle me": [65535, 0], "don't joggle me why": [65535, 0], "joggle me why what's": [65535, 0], "me why what's the": [65535, 0], "why what's the matter": [65535, 0], "what's the matter tom": [65535, 0], "the matter tom i": [65535, 0], "matter tom i must": [65535, 0], "tom i must call": [65535, 0], "i must call auntie": [65535, 0], "must call auntie no": [65535, 0], "call auntie no never": [65535, 0], "auntie no never mind": [65535, 0], "no never mind it'll": [65535, 0], "never mind it'll be": [65535, 0], "mind it'll be over": [65535, 0], "it'll be over by": [65535, 0], "be over by and": [65535, 0], "over by and by": [65535, 0], "by and by maybe": [65535, 0], "and by maybe don't": [65535, 0], "by maybe don't call": [65535, 0], "maybe don't call anybody": [65535, 0], "don't call anybody but": [65535, 0], "call anybody but i": [65535, 0], "anybody but i must": [65535, 0], "but i must don't": [65535, 0], "i must don't groan": [65535, 0], "must don't groan so": [65535, 0], "don't groan so tom": [65535, 0], "groan so tom it's": [65535, 0], "so tom it's awful": [65535, 0], "tom it's awful how": [65535, 0], "it's awful how long": [65535, 0], "awful how long you": [65535, 0], "how long you been": [65535, 0], "long you been this": [65535, 0], "you been this way": [65535, 0], "been this way hours": [65535, 0], "this way hours ouch": [65535, 0], "way hours ouch oh": [65535, 0], "hours ouch oh don't": [65535, 0], "ouch oh don't stir": [65535, 0], "oh don't stir so": [65535, 0], "don't stir so sid": [65535, 0], "stir so sid you'll": [65535, 0], "so sid you'll kill": [65535, 0], "sid you'll kill me": [65535, 0], "you'll kill me tom": [65535, 0], "kill me tom why": [65535, 0], "me tom why didn't": [65535, 0], "tom why didn't you": [65535, 0], "why didn't you wake": [65535, 0], "didn't you wake me": [65535, 0], "you wake me sooner": [65535, 0], "wake me sooner oh": [65535, 0], "me sooner oh tom": [65535, 0], "sooner oh tom don't": [65535, 0], "oh tom don't it": [65535, 0], "tom don't it makes": [65535, 0], "don't it makes my": [65535, 0], "it makes my flesh": [65535, 0], "makes my flesh crawl": [65535, 0], "my flesh crawl to": [65535, 0], "flesh crawl to hear": [65535, 0], "crawl to hear you": [65535, 0], "to hear you tom": [65535, 0], "hear you tom what": [65535, 0], "you tom what is": [65535, 0], "is the matter i": [65535, 0], "the matter i forgive": [65535, 0], "matter i forgive you": [65535, 0], "i forgive you everything": [65535, 0], "forgive you everything sid": [65535, 0], "you everything sid groan": [65535, 0], "everything sid groan everything": [65535, 0], "sid groan everything you've": [65535, 0], "groan everything you've ever": [65535, 0], "everything you've ever done": [65535, 0], "you've ever done to": [65535, 0], "ever done to me": [65535, 0], "done to me when": [65535, 0], "to me when i'm": [65535, 0], "me when i'm gone": [65535, 0], "when i'm gone oh": [65535, 0], "i'm gone oh tom": [65535, 0], "gone oh tom you": [65535, 0], "oh tom you ain't": [65535, 0], "tom you ain't dying": [65535, 0], "you ain't dying are": [65535, 0], "ain't dying are you": [65535, 0], "dying are you don't": [65535, 0], "are you don't tom": [65535, 0], "you don't tom oh": [65535, 0], "don't tom oh don't": [65535, 0], "tom oh don't maybe": [65535, 0], "oh don't maybe i": [65535, 0], "don't maybe i forgive": [65535, 0], "maybe i forgive everybody": [65535, 0], "i forgive everybody sid": [65535, 0], "forgive everybody sid groan": [65535, 0], "everybody sid groan tell": [65535, 0], "sid groan tell 'em": [65535, 0], "groan tell 'em so": [65535, 0], "tell 'em so sid": [65535, 0], "'em so sid and": [65535, 0], "so sid and sid": [65535, 0], "sid and sid you": [65535, 0], "and sid you give": [65535, 0], "sid you give my": [65535, 0], "you give my window": [65535, 0], "give my window sash": [65535, 0], "my window sash and": [65535, 0], "window sash and my": [65535, 0], "sash and my cat": [65535, 0], "and my cat with": [65535, 0], "my cat with one": [65535, 0], "cat with one eye": [65535, 0], "with one eye to": [65535, 0], "one eye to that": [65535, 0], "eye to that new": [65535, 0], "to that new girl": [65535, 0], "that new girl that's": [65535, 0], "new girl that's come": [65535, 0], "girl that's come to": [65535, 0], "that's come to town": [65535, 0], "come to town and": [65535, 0], "to town and tell": [65535, 0], "town and tell her": [65535, 0], "and tell her but": [65535, 0], "tell her but sid": [65535, 0], "her but sid had": [65535, 0], "but sid had snatched": [65535, 0], "sid had snatched his": [65535, 0], "had snatched his clothes": [65535, 0], "snatched his clothes and": [65535, 0], "his clothes and gone": [65535, 0], "clothes and gone tom": [65535, 0], "and gone tom was": [65535, 0], "gone tom was suffering": [65535, 0], "tom was suffering in": [65535, 0], "was suffering in reality": [65535, 0], "suffering in reality now": [65535, 0], "in reality now so": [65535, 0], "reality now so handsomely": [65535, 0], "now so handsomely was": [65535, 0], "so handsomely was his": [65535, 0], "handsomely was his imagination": [65535, 0], "was his imagination working": [65535, 0], "his imagination working and": [65535, 0], "imagination working and so": [65535, 0], "working and so his": [65535, 0], "and so his groans": [65535, 0], "so his groans had": [65535, 0], "his groans had gathered": [65535, 0], "groans had gathered quite": [65535, 0], "had gathered quite a": [65535, 0], "gathered quite a genuine": [65535, 0], "quite a genuine tone": [65535, 0], "a genuine tone sid": [65535, 0], "genuine tone sid flew": [65535, 0], "tone sid flew down": [65535, 0], "sid flew down stairs": [65535, 0], "flew down stairs and": [65535, 0], "down stairs and said": [65535, 0], "stairs and said oh": [65535, 0], "and said oh aunt": [65535, 0], "said oh aunt polly": [65535, 0], "oh aunt polly come": [65535, 0], "aunt polly come tom's": [65535, 0], "polly come tom's dying": [65535, 0], "come tom's dying dying": [65535, 0], "tom's dying dying yes'm": [65535, 0], "dying dying yes'm don't": [65535, 0], "dying yes'm don't wait": [65535, 0], "yes'm don't wait come": [65535, 0], "don't wait come quick": [65535, 0], "wait come quick rubbage": [65535, 0], "come quick rubbage i": [65535, 0], "quick rubbage i don't": [65535, 0], "rubbage i don't believe": [65535, 0], "i don't believe it": [65535, 0], "don't believe it but": [65535, 0], "believe it but she": [65535, 0], "it but she fled": [65535, 0], "but she fled up": [65535, 0], "she fled up stairs": [65535, 0], "fled up stairs nevertheless": [65535, 0], "up stairs nevertheless with": [65535, 0], "stairs nevertheless with sid": [65535, 0], "nevertheless with sid and": [65535, 0], "with sid and mary": [65535, 0], "sid and mary at": [65535, 0], "and mary at her": [65535, 0], "mary at her heels": [65535, 0], "at her heels and": [65535, 0], "her heels and her": [65535, 0], "heels and her face": [65535, 0], "and her face grew": [65535, 0], "her face grew white": [65535, 0], "face grew white too": [65535, 0], "grew white too and": [65535, 0], "white too and her": [65535, 0], "too and her lip": [65535, 0], "and her lip trembled": [65535, 0], "her lip trembled when": [65535, 0], "lip trembled when she": [65535, 0], "trembled when she reached": [65535, 0], "when she reached the": [65535, 0], "she reached the bedside": [65535, 0], "reached the bedside she": [65535, 0], "the bedside she gasped": [65535, 0], "bedside she gasped out": [65535, 0], "she gasped out you": [65535, 0], "gasped out you tom": [65535, 0], "out you tom tom": [65535, 0], "you tom tom what's": [65535, 0], "tom tom what's the": [65535, 0], "tom what's the matter": [65535, 0], "what's the matter with": [65535, 0], "the matter with you": [65535, 0], "matter with you oh": [65535, 0], "with you oh auntie": [65535, 0], "you oh auntie i'm": [65535, 0], "oh auntie i'm what's": [65535, 0], "auntie i'm what's the": [65535, 0], "i'm what's the matter": [65535, 0], "matter with you what": [65535, 0], "with you what is": [65535, 0], "you what is the": [65535, 0], "is the matter with": [65535, 0], "matter with you child": [65535, 0], "with you child oh": [65535, 0], "you child oh auntie": [65535, 0], "child oh auntie my": [65535, 0], "oh auntie my sore": [65535, 0], "auntie my sore toe's": [65535, 0], "my sore toe's mortified": [65535, 0], "sore toe's mortified the": [65535, 0], "toe's mortified the old": [65535, 0], "mortified the old lady": [65535, 0], "the old lady sank": [65535, 0], "old lady sank down": [65535, 0], "lady sank down into": [65535, 0], "sank down into a": [65535, 0], "down into a chair": [65535, 0], "into a chair and": [65535, 0], "a chair and laughed": [65535, 0], "chair and laughed a": [65535, 0], "and laughed a little": [65535, 0], "laughed a little then": [65535, 0], "a little then cried": [65535, 0], "little then cried a": [65535, 0], "then cried a little": [65535, 0], "cried a little then": [65535, 0], "a little then did": [65535, 0], "little then did both": [65535, 0], "then did both together": [65535, 0], "did both together this": [65535, 0], "both together this restored": [65535, 0], "together this restored her": [65535, 0], "this restored her and": [65535, 0], "restored her and she": [65535, 0], "her and she said": [65535, 0], "and she said tom": [65535, 0], "she said tom what": [65535, 0], "said tom what a": [65535, 0], "tom what a turn": [65535, 0], "what a turn you": [65535, 0], "a turn you did": [65535, 0], "turn you did give": [65535, 0], "you did give me": [65535, 0], "did give me now": [65535, 0], "give me now you": [65535, 0], "me now you shut": [65535, 0], "now you shut up": [65535, 0], "you shut up that": [65535, 0], "shut up that nonsense": [65535, 0], "up that nonsense and": [65535, 0], "that nonsense and climb": [65535, 0], "nonsense and climb out": [65535, 0], "and climb out of": [65535, 0], "climb out of this": [65535, 0], "out of this the": [65535, 0], "of this the groans": [65535, 0], "this the groans ceased": [65535, 0], "the groans ceased and": [65535, 0], "groans ceased and the": [65535, 0], "ceased and the pain": [65535, 0], "and the pain vanished": [65535, 0], "the pain vanished from": [65535, 0], "pain vanished from the": [65535, 0], "vanished from the toe": [65535, 0], "from the toe the": [65535, 0], "the toe the boy": [65535, 0], "toe the boy felt": [65535, 0], "the boy felt a": [65535, 0], "boy felt a little": [65535, 0], "felt a little foolish": [65535, 0], "a little foolish and": [65535, 0], "little foolish and he": [65535, 0], "foolish and he said": [65535, 0], "and he said aunt": [65535, 0], "he said aunt polly": [65535, 0], "said aunt polly it": [65535, 0], "aunt polly it seemed": [65535, 0], "polly it seemed mortified": [65535, 0], "it seemed mortified and": [65535, 0], "seemed mortified and it": [65535, 0], "mortified and it hurt": [65535, 0], "and it hurt so": [65535, 0], "it hurt so i": [65535, 0], "hurt so i never": [65535, 0], "so i never minded": [65535, 0], "i never minded my": [65535, 0], "never minded my tooth": [65535, 0], "minded my tooth at": [65535, 0], "my tooth at all": [65535, 0], "tooth at all your": [65535, 0], "at all your tooth": [65535, 0], "all your tooth indeed": [65535, 0], "your tooth indeed what's": [65535, 0], "tooth indeed what's the": [65535, 0], "indeed what's the matter": [65535, 0], "the matter with your": [65535, 0], "matter with your tooth": [65535, 0], "with your tooth one": [65535, 0], "your tooth one of": [65535, 0], "tooth one of them's": [65535, 0], "one of them's loose": [65535, 0], "of them's loose and": [65535, 0], "them's loose and it": [65535, 0], "loose and it aches": [65535, 0], "and it aches perfectly": [65535, 0], "it aches perfectly awful": [65535, 0], "aches perfectly awful there": [65535, 0], "perfectly awful there there": [65535, 0], "awful there there now": [65535, 0], "there there now don't": [65535, 0], "there now don't begin": [65535, 0], "now don't begin that": [65535, 0], "don't begin that groaning": [65535, 0], "begin that groaning again": [65535, 0], "that groaning again open": [65535, 0], "groaning again open your": [65535, 0], "again open your mouth": [65535, 0], "open your mouth well": [65535, 0], "your mouth well your": [65535, 0], "mouth well your tooth": [65535, 0], "well your tooth is": [65535, 0], "your tooth is loose": [65535, 0], "tooth is loose but": [65535, 0], "is loose but you're": [65535, 0], "loose but you're not": [65535, 0], "but you're not going": [65535, 0], "you're not going to": [65535, 0], "not going to die": [65535, 0], "going to die about": [65535, 0], "to die about that": [65535, 0], "die about that mary": [65535, 0], "about that mary get": [65535, 0], "that mary get me": [65535, 0], "mary get me a": [65535, 0], "get me a silk": [65535, 0], "me a silk thread": [65535, 0], "a silk thread and": [65535, 0], "silk thread and a": [65535, 0], "thread and a chunk": [65535, 0], "and a chunk of": [65535, 0], "a chunk of fire": [65535, 0], "chunk of fire out": [65535, 0], "of fire out of": [65535, 0], "fire out of the": [65535, 0], "out of the kitchen": [65535, 0], "of the kitchen tom": [65535, 0], "the kitchen tom said": [65535, 0], "kitchen tom said oh": [65535, 0], "tom said oh please": [65535, 0], "said oh please auntie": [65535, 0], "oh please auntie don't": [65535, 0], "please auntie don't pull": [65535, 0], "auntie don't pull it": [65535, 0], "don't pull it out": [65535, 0], "pull it out it": [65535, 0], "it out it don't": [65535, 0], "out it don't hurt": [65535, 0], "it don't hurt any": [65535, 0], "don't hurt any more": [65535, 0], "hurt any more i": [65535, 0], "any more i wish": [65535, 0], "more i wish i": [65535, 0], "i wish i may": [65535, 0], "wish i may never": [65535, 0], "i may never stir": [65535, 0], "may never stir if": [65535, 0], "never stir if it": [65535, 0], "stir if it does": [65535, 0], "if it does please": [65535, 0], "it does please don't": [65535, 0], "does please don't auntie": [65535, 0], "please don't auntie i": [65535, 0], "don't auntie i don't": [65535, 0], "auntie i don't want": [65535, 0], "i don't want to": [65535, 0], "don't want to stay": [65535, 0], "want to stay home": [65535, 0], "to stay home from": [65535, 0], "home from school oh": [65535, 0], "from school oh you": [65535, 0], "school oh you don't": [65535, 0], "oh you don't don't": [65535, 0], "you don't don't you": [65535, 0], "don't don't you so": [65535, 0], "don't you so all": [65535, 0], "you so all this": [65535, 0], "so all this row": [65535, 0], "all this row was": [65535, 0], "this row was because": [65535, 0], "row was because you": [65535, 0], "was because you thought": [65535, 0], "because you thought you'd": [65535, 0], "you thought you'd get": [65535, 0], "thought you'd get to": [65535, 0], "you'd get to stay": [65535, 0], "get to stay home": [65535, 0], "home from school and": [65535, 0], "from school and go": [65535, 0], "school and go a": [65535, 0], "and go a fishing": [65535, 0], "go a fishing tom": [65535, 0], "a fishing tom tom": [65535, 0], "fishing tom tom i": [65535, 0], "tom tom i love": [65535, 0], "tom i love you": [65535, 0], "i love you so": [65535, 0], "love you so and": [65535, 0], "you so and you": [65535, 0], "so and you seem": [65535, 0], "and you seem to": [65535, 0], "you seem to try": [65535, 0], "seem to try every": [65535, 0], "to try every way": [65535, 0], "try every way you": [65535, 0], "every way you can": [65535, 0], "way you can to": [65535, 0], "you can to break": [65535, 0], "can to break my": [65535, 0], "to break my old": [65535, 0], "break my old heart": [65535, 0], "my old heart with": [65535, 0], "old heart with your": [65535, 0], "heart with your outrageousness": [65535, 0], "with your outrageousness by": [65535, 0], "your outrageousness by this": [65535, 0], "outrageousness by this time": [65535, 0], "this time the dental": [65535, 0], "time the dental instruments": [65535, 0], "the dental instruments were": [65535, 0], "dental instruments were ready": [65535, 0], "instruments were ready the": [65535, 0], "were ready the old": [65535, 0], "ready the old lady": [65535, 0], "the old lady made": [65535, 0], "old lady made one": [65535, 0], "lady made one end": [65535, 0], "made one end of": [65535, 0], "one end of the": [65535, 0], "end of the silk": [65535, 0], "of the silk thread": [65535, 0], "the silk thread fast": [65535, 0], "silk thread fast to": [65535, 0], "thread fast to tom's": [65535, 0], "fast to tom's tooth": [65535, 0], "to tom's tooth with": [65535, 0], "tom's tooth with a": [65535, 0], "tooth with a loop": [65535, 0], "with a loop and": [65535, 0], "a loop and tied": [65535, 0], "loop and tied the": [65535, 0], "and tied the other": [65535, 0], "tied the other to": [65535, 0], "the other to the": [65535, 0], "other to the bedpost": [65535, 0], "to the bedpost then": [65535, 0], "the bedpost then she": [65535, 0], "bedpost then she seized": [65535, 0], "then she seized the": [65535, 0], "she seized the chunk": [65535, 0], "seized the chunk of": [65535, 0], "the chunk of fire": [65535, 0], "chunk of fire and": [65535, 0], "of fire and suddenly": [65535, 0], "fire and suddenly thrust": [65535, 0], "and suddenly thrust it": [65535, 0], "suddenly thrust it almost": [65535, 0], "thrust it almost into": [65535, 0], "it almost into the": [65535, 0], "almost into the boy's": [65535, 0], "into the boy's face": [65535, 0], "the boy's face the": [65535, 0], "boy's face the tooth": [65535, 0], "face the tooth hung": [65535, 0], "the tooth hung dangling": [65535, 0], "tooth hung dangling by": [65535, 0], "hung dangling by the": [65535, 0], "dangling by the bedpost": [65535, 0], "by the bedpost now": [65535, 0], "the bedpost now but": [65535, 0], "bedpost now but all": [65535, 0], "now but all trials": [65535, 0], "but all trials bring": [65535, 0], "all trials bring their": [65535, 0], "trials bring their compensations": [65535, 0], "bring their compensations as": [65535, 0], "their compensations as tom": [65535, 0], "compensations as tom wended": [65535, 0], "as tom wended to": [65535, 0], "tom wended to school": [65535, 0], "wended to school after": [65535, 0], "to school after breakfast": [65535, 0], "school after breakfast he": [65535, 0], "after breakfast he was": [65535, 0], "breakfast he was the": [65535, 0], "he was the envy": [65535, 0], "was the envy of": [65535, 0], "the envy of every": [65535, 0], "envy of every boy": [65535, 0], "of every boy he": [65535, 0], "every boy he met": [65535, 0], "boy he met because": [65535, 0], "he met because the": [65535, 0], "met because the gap": [65535, 0], "because the gap in": [65535, 0], "the gap in his": [65535, 0], "gap in his upper": [65535, 0], "in his upper row": [65535, 0], "his upper row of": [65535, 0], "upper row of teeth": [65535, 0], "row of teeth enabled": [65535, 0], "of teeth enabled him": [65535, 0], "teeth enabled him to": [65535, 0], "enabled him to expectorate": [65535, 0], "him to expectorate in": [65535, 0], "to expectorate in a": [65535, 0], "expectorate in a new": [65535, 0], "in a new and": [65535, 0], "a new and admirable": [65535, 0], "new and admirable way": [65535, 0], "and admirable way he": [65535, 0], "admirable way he gathered": [65535, 0], "way he gathered quite": [65535, 0], "he gathered quite a": [65535, 0], "gathered quite a following": [65535, 0], "quite a following of": [65535, 0], "a following of lads": [65535, 0], "following of lads interested": [65535, 0], "of lads interested in": [65535, 0], "lads interested in the": [65535, 0], "interested in the exhibition": [65535, 0], "in the exhibition and": [65535, 0], "the exhibition and one": [65535, 0], "exhibition and one that": [65535, 0], "and one that had": [65535, 0], "one that had cut": [65535, 0], "that had cut his": [65535, 0], "had cut his finger": [65535, 0], "cut his finger and": [65535, 0], "his finger and had": [65535, 0], "finger and had been": [65535, 0], "and had been a": [65535, 0], "had been a centre": [65535, 0], "been a centre of": [65535, 0], "a centre of fascination": [65535, 0], "centre of fascination and": [65535, 0], "of fascination and homage": [65535, 0], "fascination and homage up": [65535, 0], "and homage up to": [65535, 0], "homage up to this": [65535, 0], "up to this time": [65535, 0], "to this time now": [65535, 0], "this time now found": [65535, 0], "time now found himself": [65535, 0], "now found himself suddenly": [65535, 0], "found himself suddenly without": [65535, 0], "himself suddenly without an": [65535, 0], "suddenly without an adherent": [65535, 0], "without an adherent and": [65535, 0], "an adherent and shorn": [65535, 0], "adherent and shorn of": [65535, 0], "and shorn of his": [65535, 0], "shorn of his glory": [65535, 0], "of his glory his": [65535, 0], "his glory his heart": [65535, 0], "glory his heart was": [65535, 0], "his heart was heavy": [65535, 0], "heart was heavy and": [65535, 0], "was heavy and he": [65535, 0], "heavy and he said": [65535, 0], "and he said with": [65535, 0], "he said with a": [65535, 0], "said with a disdain": [65535, 0], "with a disdain which": [65535, 0], "a disdain which he": [65535, 0], "disdain which he did": [65535, 0], "which he did not": [65535, 0], "he did not feel": [65535, 0], "did not feel that": [65535, 0], "not feel that it": [65535, 0], "feel that it wasn't": [65535, 0], "that it wasn't anything": [65535, 0], "it wasn't anything to": [65535, 0], "wasn't anything to spit": [65535, 0], "anything to spit like": [65535, 0], "to spit like tom": [65535, 0], "spit like tom sawyer": [65535, 0], "like tom sawyer but": [65535, 0], "tom sawyer but another": [65535, 0], "sawyer but another boy": [65535, 0], "but another boy said": [65535, 0], "another boy said sour": [65535, 0], "boy said sour grapes": [65535, 0], "said sour grapes and": [65535, 0], "sour grapes and he": [65535, 0], "grapes and he wandered": [65535, 0], "and he wandered away": [65535, 0], "he wandered away a": [65535, 0], "wandered away a dismantled": [65535, 0], "away a dismantled hero": [65535, 0], "a dismantled hero shortly": [65535, 0], "dismantled hero shortly tom": [65535, 0], "hero shortly tom came": [65535, 0], "shortly tom came upon": [65535, 0], "tom came upon the": [65535, 0], "came upon the juvenile": [65535, 0], "upon the juvenile pariah": [65535, 0], "the juvenile pariah of": [65535, 0], "juvenile pariah of the": [65535, 0], "pariah of the village": [65535, 0], "of the village huckleberry": [65535, 0], "the village huckleberry finn": [65535, 0], "village huckleberry finn son": [65535, 0], "huckleberry finn son of": [65535, 0], "finn son of the": [65535, 0], "son of the town": [65535, 0], "of the town drunkard": [65535, 0], "the town drunkard huckleberry": [65535, 0], "town drunkard huckleberry was": [65535, 0], "drunkard huckleberry was cordially": [65535, 0], "huckleberry was cordially hated": [65535, 0], "was cordially hated and": [65535, 0], "cordially hated and dreaded": [65535, 0], "hated and dreaded by": [65535, 0], "and dreaded by all": [65535, 0], "dreaded by all the": [65535, 0], "by all the mothers": [65535, 0], "all the mothers of": [65535, 0], "the mothers of the": [65535, 0], "mothers of the town": [65535, 0], "of the town because": [65535, 0], "the town because he": [65535, 0], "town because he was": [65535, 0], "because he was idle": [65535, 0], "he was idle and": [65535, 0], "was idle and lawless": [65535, 0], "idle and lawless and": [65535, 0], "and lawless and vulgar": [65535, 0], "lawless and vulgar and": [65535, 0], "and vulgar and bad": [65535, 0], "vulgar and bad and": [65535, 0], "and bad and because": [65535, 0], "bad and because all": [65535, 0], "and because all their": [65535, 0], "because all their children": [65535, 0], "all their children admired": [65535, 0], "their children admired him": [65535, 0], "children admired him so": [65535, 0], "admired him so and": [65535, 0], "him so and delighted": [65535, 0], "so and delighted in": [65535, 0], "and delighted in his": [65535, 0], "delighted in his forbidden": [65535, 0], "in his forbidden society": [65535, 0], "his forbidden society and": [65535, 0], "forbidden society and wished": [65535, 0], "society and wished they": [65535, 0], "and wished they dared": [65535, 0], "wished they dared to": [65535, 0], "they dared to be": [65535, 0], "dared to be like": [65535, 0], "to be like him": [65535, 0], "be like him tom": [65535, 0], "like him tom was": [65535, 0], "him tom was like": [65535, 0], "tom was like the": [65535, 0], "was like the rest": [65535, 0], "like the rest of": [65535, 0], "the rest of the": [65535, 0], "rest of the respectable": [65535, 0], "of the respectable boys": [65535, 0], "the respectable boys in": [65535, 0], "respectable boys in that": [65535, 0], "boys in that he": [65535, 0], "in that he envied": [65535, 0], "that he envied huckleberry": [65535, 0], "he envied huckleberry his": [65535, 0], "envied huckleberry his gaudy": [65535, 0], "huckleberry his gaudy outcast": [65535, 0], "his gaudy outcast condition": [65535, 0], "gaudy outcast condition and": [65535, 0], "outcast condition and was": [65535, 0], "condition and was under": [65535, 0], "and was under strict": [65535, 0], "was under strict orders": [65535, 0], "under strict orders not": [65535, 0], "strict orders not to": [65535, 0], "orders not to play": [65535, 0], "not to play with": [65535, 0], "to play with him": [65535, 0], "play with him so": [65535, 0], "with him so he": [65535, 0], "him so he played": [65535, 0], "so he played with": [65535, 0], "he played with him": [65535, 0], "played with him every": [65535, 0], "with him every time": [65535, 0], "him every time he": [65535, 0], "every time he got": [65535, 0], "time he got a": [65535, 0], "he got a chance": [65535, 0], "got a chance huckleberry": [65535, 0], "a chance huckleberry was": [65535, 0], "chance huckleberry was always": [65535, 0], "huckleberry was always dressed": [65535, 0], "was always dressed in": [65535, 0], "always dressed in the": [65535, 0], "dressed in the cast": [65535, 0], "in the cast off": [65535, 0], "the cast off clothes": [65535, 0], "cast off clothes of": [65535, 0], "off clothes of full": [65535, 0], "clothes of full grown": [65535, 0], "of full grown men": [65535, 0], "full grown men and": [65535, 0], "grown men and they": [65535, 0], "men and they were": [65535, 0], "and they were in": [65535, 0], "they were in perennial": [65535, 0], "were in perennial bloom": [65535, 0], "in perennial bloom and": [65535, 0], "perennial bloom and fluttering": [65535, 0], "bloom and fluttering with": [65535, 0], "and fluttering with rags": [65535, 0], "fluttering with rags his": [65535, 0], "with rags his hat": [65535, 0], "rags his hat was": [65535, 0], "his hat was a": [65535, 0], "hat was a vast": [65535, 0], "was a vast ruin": [65535, 0], "a vast ruin with": [65535, 0], "vast ruin with a": [65535, 0], "ruin with a wide": [65535, 0], "with a wide crescent": [65535, 0], "a wide crescent lopped": [65535, 0], "wide crescent lopped out": [65535, 0], "crescent lopped out of": [65535, 0], "lopped out of its": [65535, 0], "out of its brim": [65535, 0], "of its brim his": [65535, 0], "its brim his coat": [65535, 0], "brim his coat when": [65535, 0], "his coat when he": [65535, 0], "coat when he wore": [65535, 0], "when he wore one": [65535, 0], "he wore one hung": [65535, 0], "wore one hung nearly": [65535, 0], "one hung nearly to": [65535, 0], "hung nearly to his": [65535, 0], "nearly to his heels": [65535, 0], "to his heels and": [65535, 0], "his heels and had": [65535, 0], "heels and had the": [65535, 0], "and had the rearward": [65535, 0], "had the rearward buttons": [65535, 0], "the rearward buttons far": [65535, 0], "rearward buttons far down": [65535, 0], "buttons far down the": [65535, 0], "far down the back": [65535, 0], "down the back but": [65535, 0], "the back but one": [65535, 0], "back but one suspender": [65535, 0], "but one suspender supported": [65535, 0], "one suspender supported his": [65535, 0], "suspender supported his trousers": [65535, 0], "supported his trousers the": [65535, 0], "his trousers the seat": [65535, 0], "trousers the seat of": [65535, 0], "the seat of the": [65535, 0], "seat of the trousers": [65535, 0], "of the trousers bagged": [65535, 0], "the trousers bagged low": [65535, 0], "trousers bagged low and": [65535, 0], "bagged low and contained": [65535, 0], "low and contained nothing": [65535, 0], "and contained nothing the": [65535, 0], "contained nothing the fringed": [65535, 0], "nothing the fringed legs": [65535, 0], "the fringed legs dragged": [65535, 0], "fringed legs dragged in": [65535, 0], "legs dragged in the": [65535, 0], "dragged in the dirt": [65535, 0], "in the dirt when": [65535, 0], "the dirt when not": [65535, 0], "dirt when not rolled": [65535, 0], "when not rolled up": [65535, 0], "not rolled up huckleberry": [65535, 0], "rolled up huckleberry came": [65535, 0], "up huckleberry came and": [65535, 0], "huckleberry came and went": [65535, 0], "came and went at": [65535, 0], "and went at his": [65535, 0], "went at his own": [65535, 0], "at his own free": [65535, 0], "his own free will": [65535, 0], "own free will he": [65535, 0], "free will he slept": [65535, 0], "will he slept on": [65535, 0], "he slept on doorsteps": [65535, 0], "slept on doorsteps in": [65535, 0], "on doorsteps in fine": [65535, 0], "doorsteps in fine weather": [65535, 0], "in fine weather and": [65535, 0], "fine weather and in": [65535, 0], "weather and in empty": [65535, 0], "and in empty hogsheads": [65535, 0], "in empty hogsheads in": [65535, 0], "empty hogsheads in wet": [65535, 0], "hogsheads in wet he": [65535, 0], "in wet he did": [65535, 0], "wet he did not": [65535, 0], "he did not have": [65535, 0], "did not have to": [65535, 0], "not have to go": [65535, 0], "have to go to": [65535, 0], "to go to school": [65535, 0], "go to school or": [65535, 0], "to school or to": [65535, 0], "school or to church": [65535, 0], "or to church or": [65535, 0], "to church or call": [65535, 0], "church or call any": [65535, 0], "or call any being": [65535, 0], "call any being master": [65535, 0], "any being master or": [65535, 0], "being master or obey": [65535, 0], "master or obey anybody": [65535, 0], "or obey anybody he": [65535, 0], "obey anybody he could": [65535, 0], "anybody he could go": [65535, 0], "he could go fishing": [65535, 0], "could go fishing or": [65535, 0], "go fishing or swimming": [65535, 0], "fishing or swimming when": [65535, 0], "or swimming when and": [65535, 0], "swimming when and where": [65535, 0], "when and where he": [65535, 0], "and where he chose": [65535, 0], "where he chose and": [65535, 0], "he chose and stay": [65535, 0], "chose and stay as": [65535, 0], "and stay as long": [65535, 0], "stay as long as": [65535, 0], "as long as it": [65535, 0], "long as it suited": [65535, 0], "as it suited him": [65535, 0], "it suited him nobody": [65535, 0], "suited him nobody forbade": [65535, 0], "him nobody forbade him": [65535, 0], "nobody forbade him to": [65535, 0], "forbade him to fight": [65535, 0], "him to fight he": [65535, 0], "to fight he could": [65535, 0], "fight he could sit": [65535, 0], "he could sit up": [65535, 0], "could sit up as": [65535, 0], "sit up as late": [65535, 0], "up as late as": [65535, 0], "as late as he": [65535, 0], "late as he pleased": [65535, 0], "as he pleased he": [65535, 0], "he pleased he was": [65535, 0], "pleased he was always": [65535, 0], "he was always the": [65535, 0], "was always the first": [65535, 0], "always the first boy": [65535, 0], "the first boy that": [65535, 0], "first boy that went": [65535, 0], "boy that went barefoot": [65535, 0], "that went barefoot in": [65535, 0], "went barefoot in the": [65535, 0], "barefoot in the spring": [65535, 0], "in the spring and": [65535, 0], "the spring and the": [65535, 0], "spring and the last": [65535, 0], "and the last to": [65535, 0], "the last to resume": [65535, 0], "last to resume leather": [65535, 0], "to resume leather in": [65535, 0], "resume leather in the": [65535, 0], "leather in the fall": [65535, 0], "in the fall he": [65535, 0], "the fall he never": [65535, 0], "fall he never had": [65535, 0], "he never had to": [65535, 0], "never had to wash": [65535, 0], "had to wash nor": [65535, 0], "to wash nor put": [65535, 0], "wash nor put on": [65535, 0], "nor put on clean": [65535, 0], "put on clean clothes": [65535, 0], "on clean clothes he": [65535, 0], "clean clothes he could": [65535, 0], "clothes he could swear": [65535, 0], "he could swear wonderfully": [65535, 0], "could swear wonderfully in": [65535, 0], "swear wonderfully in a": [65535, 0], "wonderfully in a word": [65535, 0], "in a word everything": [65535, 0], "a word everything that": [65535, 0], "word everything that goes": [65535, 0], "everything that goes to": [65535, 0], "that goes to make": [65535, 0], "goes to make life": [65535, 0], "to make life precious": [65535, 0], "make life precious that": [65535, 0], "life precious that boy": [65535, 0], "precious that boy had": [65535, 0], "that boy had so": [65535, 0], "boy had so thought": [65535, 0], "had so thought every": [65535, 0], "so thought every harassed": [65535, 0], "thought every harassed hampered": [65535, 0], "every harassed hampered respectable": [65535, 0], "harassed hampered respectable boy": [65535, 0], "hampered respectable boy in": [65535, 0], "respectable boy in st": [65535, 0], "boy in st petersburg": [65535, 0], "in st petersburg tom": [65535, 0], "st petersburg tom hailed": [65535, 0], "petersburg tom hailed the": [65535, 0], "tom hailed the romantic": [65535, 0], "hailed the romantic outcast": [65535, 0], "the romantic outcast hello": [65535, 0], "romantic outcast hello huckleberry": [65535, 0], "outcast hello huckleberry hello": [65535, 0], "hello huckleberry hello yourself": [65535, 0], "huckleberry hello yourself and": [65535, 0], "hello yourself and see": [65535, 0], "yourself and see how": [65535, 0], "and see how you": [65535, 0], "see how you like": [65535, 0], "how you like it": [65535, 0], "you like it what's": [65535, 0], "like it what's that": [65535, 0], "it what's that you": [65535, 0], "what's that you got": [65535, 0], "that you got dead": [65535, 0], "you got dead cat": [65535, 0], "got dead cat lemme": [65535, 0], "dead cat lemme see": [65535, 0], "cat lemme see him": [65535, 0], "lemme see him huck": [65535, 0], "see him huck my": [65535, 0], "him huck my he's": [65535, 0], "huck my he's pretty": [65535, 0], "my he's pretty stiff": [65535, 0], "he's pretty stiff where'd": [65535, 0], "pretty stiff where'd you": [65535, 0], "stiff where'd you get": [65535, 0], "where'd you get him": [65535, 0], "you get him bought": [65535, 0], "get him bought him": [65535, 0], "him bought him off'n": [65535, 0], "bought him off'n a": [65535, 0], "him off'n a boy": [65535, 0], "off'n a boy what": [65535, 0], "a boy what did": [65535, 0], "boy what did you": [65535, 0], "what did you give": [65535, 0], "did you give i": [65535, 0], "you give i give": [65535, 0], "give i give a": [65535, 0], "i give a blue": [65535, 0], "give a blue ticket": [65535, 0], "a blue ticket and": [65535, 0], "blue ticket and a": [65535, 0], "ticket and a bladder": [65535, 0], "and a bladder that": [65535, 0], "a bladder that i": [65535, 0], "bladder that i got": [65535, 0], "that i got at": [65535, 0], "i got at the": [65535, 0], "got at the slaughter": [65535, 0], "at the slaughter house": [65535, 0], "the slaughter house where'd": [65535, 0], "slaughter house where'd you": [65535, 0], "house where'd you get": [65535, 0], "where'd you get the": [65535, 0], "you get the blue": [65535, 0], "get the blue ticket": [65535, 0], "the blue ticket bought": [65535, 0], "blue ticket bought it": [65535, 0], "ticket bought it off'n": [65535, 0], "bought it off'n ben": [65535, 0], "it off'n ben rogers": [65535, 0], "off'n ben rogers two": [65535, 0], "ben rogers two weeks": [65535, 0], "rogers two weeks ago": [65535, 0], "two weeks ago for": [65535, 0], "weeks ago for a": [65535, 0], "ago for a hoop": [65535, 0], "for a hoop stick": [65535, 0], "a hoop stick say": [65535, 0], "hoop stick say what": [65535, 0], "stick say what is": [65535, 0], "say what is dead": [65535, 0], "what is dead cats": [65535, 0], "is dead cats good": [65535, 0], "dead cats good for": [65535, 0], "cats good for huck": [65535, 0], "good for huck good": [65535, 0], "for huck good for": [65535, 0], "huck good for cure": [65535, 0], "good for cure warts": [65535, 0], "for cure warts with": [65535, 0], "cure warts with no": [65535, 0], "warts with no is": [65535, 0], "with no is that": [65535, 0], "no is that so": [65535, 0], "is that so i": [65535, 0], "that so i know": [65535, 0], "so i know something": [65535, 0], "i know something that's": [65535, 0], "know something that's better": [65535, 0], "something that's better i": [65535, 0], "that's better i bet": [65535, 0], "better i bet you": [65535, 0], "i bet you don't": [65535, 0], "bet you don't what": [65535, 0], "you don't what is": [65535, 0], "don't what is it": [65535, 0], "what is it why": [65535, 0], "is it why spunk": [65535, 0], "it why spunk water": [65535, 0], "why spunk water spunk": [65535, 0], "spunk water spunk water": [65535, 0], "water spunk water i": [65535, 0], "spunk water i wouldn't": [65535, 0], "water i wouldn't give": [65535, 0], "i wouldn't give a": [65535, 0], "wouldn't give a dern": [65535, 0], "give a dern for": [65535, 0], "a dern for spunk": [65535, 0], "dern for spunk water": [65535, 0], "for spunk water you": [65535, 0], "spunk water you wouldn't": [65535, 0], "water you wouldn't wouldn't": [65535, 0], "you wouldn't wouldn't you": [65535, 0], "wouldn't wouldn't you d'you": [65535, 0], "wouldn't you d'you ever": [65535, 0], "you d'you ever try": [65535, 0], "d'you ever try it": [65535, 0], "ever try it no": [65535, 0], "try it no i": [65535, 0], "it no i hain't": [65535, 0], "no i hain't but": [65535, 0], "i hain't but bob": [65535, 0], "hain't but bob tanner": [65535, 0], "but bob tanner did": [65535, 0], "bob tanner did who": [65535, 0], "tanner did who told": [65535, 0], "did who told you": [65535, 0], "who told you so": [65535, 0], "told you so why": [65535, 0], "you so why he": [65535, 0], "so why he told": [65535, 0], "why he told jeff": [65535, 0], "he told jeff thatcher": [65535, 0], "told jeff thatcher and": [65535, 0], "jeff thatcher and jeff": [65535, 0], "thatcher and jeff told": [65535, 0], "and jeff told johnny": [65535, 0], "jeff told johnny baker": [65535, 0], "told johnny baker and": [65535, 0], "johnny baker and johnny": [65535, 0], "baker and johnny told": [65535, 0], "and johnny told jim": [65535, 0], "johnny told jim hollis": [65535, 0], "told jim hollis and": [65535, 0], "jim hollis and jim": [65535, 0], "hollis and jim told": [65535, 0], "and jim told ben": [65535, 0], "jim told ben rogers": [65535, 0], "told ben rogers and": [65535, 0], "ben rogers and ben": [65535, 0], "rogers and ben told": [65535, 0], "and ben told a": [65535, 0], "ben told a nigger": [65535, 0], "told a nigger and": [65535, 0], "a nigger and the": [65535, 0], "nigger and the nigger": [65535, 0], "and the nigger told": [65535, 0], "the nigger told me": [65535, 0], "nigger told me there": [65535, 0], "told me there now": [65535, 0], "me there now well": [65535, 0], "there now well what": [65535, 0], "now well what of": [65535, 0], "well what of it": [65535, 0], "what of it they'll": [65535, 0], "of it they'll all": [65535, 0], "it they'll all lie": [65535, 0], "they'll all lie leastways": [65535, 0], "all lie leastways all": [65535, 0], "lie leastways all but": [65535, 0], "leastways all but the": [65535, 0], "all but the nigger": [65535, 0], "but the nigger i": [65535, 0], "the nigger i don't": [65535, 0], "nigger i don't know": [65535, 0], "i don't know him": [65535, 0], "don't know him but": [65535, 0], "know him but i": [65535, 0], "him but i never": [65535, 0], "but i never see": [65535, 0], "i never see a": [65535, 0], "never see a nigger": [65535, 0], "see a nigger that": [65535, 0], "a nigger that wouldn't": [65535, 0], "nigger that wouldn't lie": [65535, 0], "that wouldn't lie shucks": [65535, 0], "wouldn't lie shucks now": [65535, 0], "lie shucks now you": [65535, 0], "shucks now you tell": [65535, 0], "now you tell me": [65535, 0], "you tell me how": [65535, 0], "tell me how bob": [65535, 0], "me how bob tanner": [65535, 0], "how bob tanner done": [65535, 0], "bob tanner done it": [65535, 0], "tanner done it huck": [65535, 0], "done it huck why": [65535, 0], "it huck why he": [65535, 0], "huck why he took": [65535, 0], "why he took and": [65535, 0], "he took and dipped": [65535, 0], "took and dipped his": [65535, 0], "and dipped his hand": [65535, 0], "dipped his hand in": [65535, 0], "his hand in a": [65535, 0], "hand in a rotten": [65535, 0], "in a rotten stump": [65535, 0], "a rotten stump where": [65535, 0], "rotten stump where the": [65535, 0], "stump where the rain": [65535, 0], "where the rain water": [65535, 0], "the rain water was": [65535, 0], "rain water was in": [65535, 0], "water was in the": [65535, 0], "was in the daytime": [65535, 0], "in the daytime certainly": [65535, 0], "the daytime certainly with": [65535, 0], "daytime certainly with his": [65535, 0], "certainly with his face": [65535, 0], "with his face to": [65535, 0], "his face to the": [65535, 0], "face to the stump": [65535, 0], "to the stump yes": [65535, 0], "the stump yes least": [65535, 0], "stump yes least i": [65535, 0], "yes least i reckon": [65535, 0], "least i reckon so": [65535, 0], "i reckon so did": [65535, 0], "reckon so did he": [65535, 0], "so did he say": [65535, 0], "did he say anything": [65535, 0], "he say anything i": [65535, 0], "say anything i don't": [65535, 0], "anything i don't reckon": [65535, 0], "i don't reckon he": [65535, 0], "don't reckon he did": [65535, 0], "reckon he did i": [65535, 0], "he did i don't": [65535, 0], "did i don't know": [65535, 0], "i don't know aha": [65535, 0], "don't know aha talk": [65535, 0], "know aha talk about": [65535, 0], "aha talk about trying": [65535, 0], "talk about trying to": [65535, 0], "about trying to cure": [65535, 0], "trying to cure warts": [65535, 0], "to cure warts with": [65535, 0], "cure warts with spunk": [65535, 0], "warts with spunk water": [65535, 0], "with spunk water such": [65535, 0], "spunk water such a": [65535, 0], "water such a blame": [65535, 0], "such a blame fool": [65535, 0], "a blame fool way": [65535, 0], "blame fool way as": [65535, 0], "fool way as that": [65535, 0], "way as that why": [65535, 0], "as that why that": [65535, 0], "that why that ain't": [65535, 0], "why that ain't a": [65535, 0], "that ain't a going": [65535, 0], "ain't a going to": [65535, 0], "a going to do": [65535, 0], "going to do any": [65535, 0], "to do any good": [65535, 0], "do any good you": [65535, 0], "any good you got": [65535, 0], "good you got to": [65535, 0], "you got to go": [65535, 0], "got to go all": [65535, 0], "to go all by": [65535, 0], "go all by yourself": [65535, 0], "all by yourself to": [65535, 0], "by yourself to the": [65535, 0], "yourself to the middle": [65535, 0], "to the middle of": [65535, 0], "the middle of the": [65535, 0], "middle of the woods": [65535, 0], "of the woods where": [65535, 0], "the woods where you": [65535, 0], "woods where you know": [65535, 0], "where you know there's": [65535, 0], "you know there's a": [65535, 0], "know there's a spunk": [65535, 0], "there's a spunk water": [65535, 0], "a spunk water stump": [65535, 0], "spunk water stump and": [65535, 0], "water stump and just": [65535, 0], "stump and just as": [65535, 0], "and just as it's": [65535, 0], "just as it's midnight": [65535, 0], "as it's midnight you": [65535, 0], "it's midnight you back": [65535, 0], "midnight you back up": [65535, 0], "you back up against": [65535, 0], "back up against the": [65535, 0], "up against the stump": [65535, 0], "against the stump and": [65535, 0], "the stump and jam": [65535, 0], "stump and jam your": [65535, 0], "and jam your hand": [65535, 0], "jam your hand in": [65535, 0], "your hand in and": [65535, 0], "hand in and say": [65535, 0], "in and say 'barley": [65535, 0], "and say 'barley corn": [65535, 0], "say 'barley corn barley": [65535, 0], "'barley corn barley corn": [65535, 0], "corn barley corn injun": [65535, 0], "barley corn injun meal": [65535, 0], "corn injun meal shorts": [65535, 0], "injun meal shorts spunk": [65535, 0], "meal shorts spunk water": [65535, 0], "shorts spunk water spunk": [65535, 0], "water spunk water swaller": [65535, 0], "spunk water swaller these": [65535, 0], "water swaller these warts": [65535, 0], "swaller these warts '": [65535, 0], "these warts ' and": [65535, 0], "warts ' and then": [65535, 0], "' and then walk": [65535, 0], "and then walk away": [65535, 0], "then walk away quick": [65535, 0], "walk away quick eleven": [65535, 0], "away quick eleven steps": [65535, 0], "quick eleven steps with": [65535, 0], "eleven steps with your": [65535, 0], "steps with your eyes": [65535, 0], "with your eyes shut": [65535, 0], "your eyes shut and": [65535, 0], "eyes shut and then": [65535, 0], "shut and then turn": [65535, 0], "and then turn around": [65535, 0], "then turn around three": [65535, 0], "turn around three times": [65535, 0], "around three times and": [65535, 0], "three times and walk": [65535, 0], "times and walk home": [65535, 0], "and walk home without": [65535, 0], "walk home without speaking": [65535, 0], "home without speaking to": [65535, 0], "without speaking to anybody": [65535, 0], "speaking to anybody because": [65535, 0], "to anybody because if": [65535, 0], "anybody because if you": [65535, 0], "because if you speak": [65535, 0], "if you speak the": [65535, 0], "you speak the charm's": [65535, 0], "speak the charm's busted": [65535, 0], "the charm's busted well": [65535, 0], "charm's busted well that": [65535, 0], "busted well that sounds": [65535, 0], "well that sounds like": [65535, 0], "that sounds like a": [65535, 0], "sounds like a good": [65535, 0], "like a good way": [65535, 0], "a good way but": [65535, 0], "good way but that": [65535, 0], "way but that ain't": [65535, 0], "but that ain't the": [65535, 0], "that ain't the way": [65535, 0], "ain't the way bob": [65535, 0], "the way bob tanner": [65535, 0], "way bob tanner done": [65535, 0], "bob tanner done no": [65535, 0], "tanner done no sir": [65535, 0], "done no sir you": [65535, 0], "no sir you can": [65535, 0], "sir you can bet": [65535, 0], "you can bet he": [65535, 0], "can bet he didn't": [65535, 0], "bet he didn't becuz": [65535, 0], "he didn't becuz he's": [65535, 0], "didn't becuz he's the": [65535, 0], "becuz he's the wartiest": [65535, 0], "he's the wartiest boy": [65535, 0], "the wartiest boy in": [65535, 0], "wartiest boy in this": [65535, 0], "boy in this town": [65535, 0], "in this town and": [65535, 0], "this town and he": [65535, 0], "town and he wouldn't": [65535, 0], "and he wouldn't have": [65535, 0], "he wouldn't have a": [65535, 0], "wouldn't have a wart": [65535, 0], "have a wart on": [65535, 0], "a wart on him": [65535, 0], "wart on him if": [65535, 0], "on him if he'd": [65535, 0], "him if he'd knowed": [65535, 0], "if he'd knowed how": [65535, 0], "he'd knowed how to": [65535, 0], "knowed how to work": [65535, 0], "how to work spunk": [65535, 0], "to work spunk water": [65535, 0], "work spunk water i've": [65535, 0], "spunk water i've took": [65535, 0], "water i've took off": [65535, 0], "i've took off thousands": [65535, 0], "took off thousands of": [65535, 0], "off thousands of warts": [65535, 0], "thousands of warts off": [65535, 0], "of warts off of": [65535, 0], "warts off of my": [65535, 0], "off of my hands": [65535, 0], "of my hands that": [65535, 0], "my hands that way": [65535, 0], "hands that way huck": [65535, 0], "that way huck i": [65535, 0], "way huck i play": [65535, 0], "huck i play with": [65535, 0], "i play with frogs": [65535, 0], "play with frogs so": [65535, 0], "with frogs so much": [65535, 0], "frogs so much that": [65535, 0], "so much that i've": [65535, 0], "much that i've always": [65535, 0], "that i've always got": [65535, 0], "i've always got considerable": [65535, 0], "always got considerable many": [65535, 0], "got considerable many warts": [65535, 0], "considerable many warts sometimes": [65535, 0], "many warts sometimes i": [65535, 0], "warts sometimes i take": [65535, 0], "sometimes i take 'em": [65535, 0], "i take 'em off": [65535, 0], "take 'em off with": [65535, 0], "'em off with a": [65535, 0], "off with a bean": [65535, 0], "with a bean yes": [65535, 0], "a bean yes bean's": [65535, 0], "bean yes bean's good": [65535, 0], "yes bean's good i've": [65535, 0], "bean's good i've done": [65535, 0], "good i've done that": [65535, 0], "i've done that have": [65535, 0], "done that have you": [65535, 0], "that have you what's": [65535, 0], "have you what's your": [65535, 0], "you what's your way": [65535, 0], "what's your way you": [65535, 0], "your way you take": [65535, 0], "way you take and": [65535, 0], "you take and split": [65535, 0], "take and split the": [65535, 0], "and split the bean": [65535, 0], "split the bean and": [65535, 0], "the bean and cut": [65535, 0], "bean and cut the": [65535, 0], "and cut the wart": [65535, 0], "cut the wart so": [65535, 0], "the wart so as": [65535, 0], "wart so as to": [65535, 0], "so as to get": [65535, 0], "as to get some": [65535, 0], "to get some blood": [65535, 0], "get some blood and": [65535, 0], "some blood and then": [65535, 0], "blood and then you": [65535, 0], "and then you put": [65535, 0], "then you put the": [65535, 0], "you put the blood": [65535, 0], "put the blood on": [65535, 0], "the blood on one": [65535, 0], "blood on one piece": [65535, 0], "on one piece of": [65535, 0], "one piece of the": [65535, 0], "piece of the bean": [65535, 0], "of the bean and": [65535, 0], "the bean and take": [65535, 0], "bean and take and": [65535, 0], "and take and dig": [65535, 0], "take and dig a": [65535, 0], "and dig a hole": [65535, 0], "dig a hole and": [65535, 0], "a hole and bury": [65535, 0], "hole and bury it": [65535, 0], "and bury it 'bout": [65535, 0], "bury it 'bout midnight": [65535, 0], "it 'bout midnight at": [65535, 0], "'bout midnight at the": [65535, 0], "midnight at the crossroads": [65535, 0], "at the crossroads in": [65535, 0], "the crossroads in the": [65535, 0], "crossroads in the dark": [65535, 0], "in the dark of": [65535, 0], "the dark of the": [65535, 0], "dark of the moon": [65535, 0], "of the moon and": [65535, 0], "the moon and then": [65535, 0], "moon and then you": [65535, 0], "and then you burn": [65535, 0], "then you burn up": [65535, 0], "you burn up the": [65535, 0], "burn up the rest": [65535, 0], "up the rest of": [65535, 0], "rest of the bean": [65535, 0], "of the bean you": [65535, 0], "the bean you see": [65535, 0], "bean you see that": [65535, 0], "you see that piece": [65535, 0], "see that piece that's": [65535, 0], "that piece that's got": [65535, 0], "piece that's got the": [65535, 0], "that's got the blood": [65535, 0], "got the blood on": [65535, 0], "the blood on it": [65535, 0], "blood on it will": [65535, 0], "on it will keep": [65535, 0], "it will keep drawing": [65535, 0], "will keep drawing and": [65535, 0], "keep drawing and drawing": [65535, 0], "drawing and drawing trying": [65535, 0], "and drawing trying to": [65535, 0], "drawing trying to fetch": [65535, 0], "trying to fetch the": [65535, 0], "to fetch the other": [65535, 0], "fetch the other piece": [65535, 0], "the other piece to": [65535, 0], "other piece to it": [65535, 0], "piece to it and": [65535, 0], "to it and so": [65535, 0], "it and so that": [65535, 0], "and so that helps": [65535, 0], "so that helps the": [65535, 0], "that helps the blood": [65535, 0], "helps the blood to": [65535, 0], "the blood to draw": [65535, 0], "blood to draw the": [65535, 0], "to draw the wart": [65535, 0], "draw the wart and": [65535, 0], "the wart and pretty": [65535, 0], "wart and pretty soon": [65535, 0], "and pretty soon off": [65535, 0], "pretty soon off she": [65535, 0], "soon off she comes": [65535, 0], "off she comes yes": [65535, 0], "she comes yes that's": [65535, 0], "comes yes that's it": [65535, 0], "yes that's it huck": [65535, 0], "that's it huck that's": [65535, 0], "it huck that's it": [65535, 0], "huck that's it though": [65535, 0], "that's it though when": [65535, 0], "it though when you're": [65535, 0], "though when you're burying": [65535, 0], "when you're burying it": [65535, 0], "you're burying it if": [65535, 0], "burying it if you": [65535, 0], "it if you say": [65535, 0], "if you say 'down": [65535, 0], "you say 'down bean": [65535, 0], "say 'down bean off": [65535, 0], "'down bean off wart": [65535, 0], "bean off wart come": [65535, 0], "off wart come no": [65535, 0], "wart come no more": [65535, 0], "come no more to": [65535, 0], "no more to bother": [65535, 0], "more to bother me": [65535, 0], "to bother me '": [65535, 0], "bother me ' it's": [65535, 0], "me ' it's better": [65535, 0], "' it's better that's": [65535, 0], "it's better that's the": [65535, 0], "better that's the way": [65535, 0], "that's the way joe": [65535, 0], "the way joe harper": [65535, 0], "way joe harper does": [65535, 0], "joe harper does and": [65535, 0], "harper does and he's": [65535, 0], "does and he's been": [65535, 0], "and he's been nearly": [65535, 0], "he's been nearly to": [65535, 0], "been nearly to coonville": [65535, 0], "nearly to coonville and": [65535, 0], "to coonville and most": [65535, 0], "coonville and most everywheres": [65535, 0], "and most everywheres but": [65535, 0], "most everywheres but say": [65535, 0], "everywheres but say how": [65535, 0], "but say how do": [65535, 0], "say how do you": [65535, 0], "how do you cure": [65535, 0], "do you cure 'em": [65535, 0], "you cure 'em with": [65535, 0], "cure 'em with dead": [65535, 0], "'em with dead cats": [65535, 0], "with dead cats why": [65535, 0], "dead cats why you": [65535, 0], "cats why you take": [65535, 0], "why you take your": [65535, 0], "you take your cat": [65535, 0], "take your cat and": [65535, 0], "your cat and go": [65535, 0], "cat and go and": [65535, 0], "and go and get": [65535, 0], "go and get in": [65535, 0], "and get in the": [65535, 0], "get in the graveyard": [65535, 0], "in the graveyard 'long": [65535, 0], "the graveyard 'long about": [65535, 0], "graveyard 'long about midnight": [65535, 0], "'long about midnight when": [65535, 0], "about midnight when somebody": [65535, 0], "midnight when somebody that": [65535, 0], "when somebody that was": [65535, 0], "somebody that was wicked": [65535, 0], "that was wicked has": [65535, 0], "was wicked has been": [65535, 0], "wicked has been buried": [65535, 0], "has been buried and": [65535, 0], "been buried and when": [65535, 0], "buried and when it's": [65535, 0], "and when it's midnight": [65535, 0], "when it's midnight a": [65535, 0], "it's midnight a devil": [65535, 0], "midnight a devil will": [65535, 0], "a devil will come": [65535, 0], "devil will come or": [65535, 0], "will come or maybe": [65535, 0], "come or maybe two": [65535, 0], "or maybe two or": [65535, 0], "maybe two or three": [65535, 0], "two or three but": [65535, 0], "or three but you": [65535, 0], "three but you can't": [65535, 0], "but you can't see": [65535, 0], "you can't see 'em": [65535, 0], "can't see 'em you": [65535, 0], "see 'em you can": [65535, 0], "'em you can only": [65535, 0], "you can only hear": [65535, 0], "can only hear something": [65535, 0], "only hear something like": [65535, 0], "hear something like the": [65535, 0], "something like the wind": [65535, 0], "like the wind or": [65535, 0], "the wind or maybe": [65535, 0], "wind or maybe hear": [65535, 0], "or maybe hear 'em": [65535, 0], "maybe hear 'em talk": [65535, 0], "hear 'em talk and": [65535, 0], "'em talk and when": [65535, 0], "talk and when they're": [65535, 0], "and when they're taking": [65535, 0], "when they're taking that": [65535, 0], "they're taking that feller": [65535, 0], "taking that feller away": [65535, 0], "that feller away you": [65535, 0], "feller away you heave": [65535, 0], "away you heave your": [65535, 0], "you heave your cat": [65535, 0], "heave your cat after": [65535, 0], "your cat after 'em": [65535, 0], "cat after 'em and": [65535, 0], "after 'em and say": [65535, 0], "'em and say 'devil": [65535, 0], "and say 'devil follow": [65535, 0], "say 'devil follow corpse": [65535, 0], "'devil follow corpse cat": [65535, 0], "follow corpse cat follow": [65535, 0], "corpse cat follow devil": [65535, 0], "cat follow devil warts": [65535, 0], "follow devil warts follow": [65535, 0], "devil warts follow cat": [65535, 0], "warts follow cat i'm": [65535, 0], "follow cat i'm done": [65535, 0], "cat i'm done with": [65535, 0], "i'm done with ye": [65535, 0], "done with ye '": [65535, 0], "with ye ' that'll": [65535, 0], "ye ' that'll fetch": [65535, 0], "' that'll fetch any": [65535, 0], "that'll fetch any wart": [65535, 0], "fetch any wart sounds": [65535, 0], "any wart sounds right": [65535, 0], "wart sounds right d'you": [65535, 0], "sounds right d'you ever": [65535, 0], "right d'you ever try": [65535, 0], "ever try it huck": [65535, 0], "try it huck no": [65535, 0], "it huck no but": [65535, 0], "huck no but old": [65535, 0], "no but old mother": [65535, 0], "but old mother hopkins": [65535, 0], "old mother hopkins told": [65535, 0], "mother hopkins told me": [65535, 0], "hopkins told me well": [65535, 0], "told me well i": [65535, 0], "me well i reckon": [65535, 0], "well i reckon it's": [65535, 0], "i reckon it's so": [65535, 0], "reckon it's so then": [65535, 0], "it's so then becuz": [65535, 0], "so then becuz they": [65535, 0], "then becuz they say": [65535, 0], "becuz they say she's": [65535, 0], "they say she's a": [65535, 0], "say she's a witch": [65535, 0], "she's a witch say": [65535, 0], "a witch say why": [65535, 0], "witch say why tom": [65535, 0], "say why tom i": [65535, 0], "why tom i know": [65535, 0], "tom i know she": [65535, 0], "i know she is": [65535, 0], "know she is she": [65535, 0], "she is she witched": [65535, 0], "is she witched pap": [65535, 0], "she witched pap pap": [65535, 0], "witched pap pap says": [65535, 0], "pap pap says so": [65535, 0], "pap says so his": [65535, 0], "says so his own": [65535, 0], "so his own self": [65535, 0], "his own self he": [65535, 0], "own self he come": [65535, 0], "self he come along": [65535, 0], "he come along one": [65535, 0], "come along one day": [65535, 0], "along one day and": [65535, 0], "one day and he": [65535, 0], "day and he see": [65535, 0], "and he see she": [65535, 0], "he see she was": [65535, 0], "see she was a": [65535, 0], "she was a witching": [65535, 0], "was a witching him": [65535, 0], "a witching him so": [65535, 0], "witching him so he": [65535, 0], "him so he took": [65535, 0], "so he took up": [65535, 0], "he took up a": [65535, 0], "took up a rock": [65535, 0], "up a rock and": [65535, 0], "a rock and if": [65535, 0], "rock and if she": [65535, 0], "and if she hadn't": [65535, 0], "if she hadn't dodged": [65535, 0], "she hadn't dodged he'd": [65535, 0], "hadn't dodged he'd a": [65535, 0], "dodged he'd a got": [65535, 0], "he'd a got her": [65535, 0], "a got her well": [65535, 0], "got her well that": [65535, 0], "her well that very": [65535, 0], "well that very night": [65535, 0], "that very night he": [65535, 0], "very night he rolled": [65535, 0], "night he rolled off'n": [65535, 0], "he rolled off'n a": [65535, 0], "rolled off'n a shed": [65535, 0], "off'n a shed wher'": [65535, 0], "a shed wher' he": [65535, 0], "shed wher' he was": [65535, 0], "wher' he was a": [65535, 0], "he was a layin": [65535, 0], "was a layin drunk": [65535, 0], "a layin drunk and": [65535, 0], "layin drunk and broke": [65535, 0], "drunk and broke his": [65535, 0], "and broke his arm": [65535, 0], "broke his arm why": [65535, 0], "his arm why that's": [65535, 0], "arm why that's awful": [65535, 0], "why that's awful how": [65535, 0], "that's awful how did": [65535, 0], "awful how did he": [65535, 0], "how did he know": [65535, 0], "did he know she": [65535, 0], "he know she was": [65535, 0], "know she was a": [65535, 0], "a witching him lord": [65535, 0], "witching him lord pap": [65535, 0], "him lord pap can": [65535, 0], "lord pap can tell": [65535, 0], "pap can tell easy": [65535, 0], "can tell easy pap": [65535, 0], "tell easy pap says": [65535, 0], "easy pap says when": [65535, 0], "pap says when they": [65535, 0], "says when they keep": [65535, 0], "when they keep looking": [65535, 0], "they keep looking at": [65535, 0], "keep looking at you": [65535, 0], "looking at you right": [65535, 0], "at you right stiddy": [65535, 0], "you right stiddy they're": [65535, 0], "right stiddy they're a": [65535, 0], "stiddy they're a witching": [65535, 0], "they're a witching you": [65535, 0], "a witching you specially": [65535, 0], "witching you specially if": [65535, 0], "you specially if they": [65535, 0], "specially if they mumble": [65535, 0], "if they mumble becuz": [65535, 0], "they mumble becuz when": [65535, 0], "mumble becuz when they": [65535, 0], "becuz when they mumble": [65535, 0], "when they mumble they're": [65535, 0], "they mumble they're saying": [65535, 0], "mumble they're saying the": [65535, 0], "they're saying the lord's": [65535, 0], "saying the lord's prayer": [65535, 0], "the lord's prayer backards": [65535, 0], "lord's prayer backards say": [65535, 0], "prayer backards say hucky": [65535, 0], "backards say hucky when": [65535, 0], "say hucky when you": [65535, 0], "hucky when you going": [65535, 0], "when you going to": [65535, 0], "you going to try": [65535, 0], "going to try the": [65535, 0], "to try the cat": [65535, 0], "try the cat to": [65535, 0], "the cat to night": [65535, 0], "cat to night i": [65535, 0], "to night i reckon": [65535, 0], "night i reckon they'll": [65535, 0], "i reckon they'll come": [65535, 0], "reckon they'll come after": [65535, 0], "they'll come after old": [65535, 0], "come after old hoss": [65535, 0], "after old hoss williams": [65535, 0], "old hoss williams to": [65535, 0], "hoss williams to night": [65535, 0], "williams to night but": [65535, 0], "to night but they": [65535, 0], "night but they buried": [65535, 0], "but they buried him": [65535, 0], "they buried him saturday": [65535, 0], "buried him saturday didn't": [65535, 0], "him saturday didn't they": [65535, 0], "saturday didn't they get": [65535, 0], "didn't they get him": [65535, 0], "they get him saturday": [65535, 0], "get him saturday night": [65535, 0], "him saturday night why": [65535, 0], "saturday night why how": [65535, 0], "night why how you": [65535, 0], "why how you talk": [65535, 0], "how you talk how": [65535, 0], "you talk how could": [65535, 0], "talk how could their": [65535, 0], "how could their charms": [65535, 0], "could their charms work": [65535, 0], "their charms work till": [65535, 0], "charms work till midnight": [65535, 0], "work till midnight and": [65535, 0], "till midnight and then": [65535, 0], "midnight and then it's": [65535, 0], "and then it's sunday": [65535, 0], "then it's sunday devils": [65535, 0], "it's sunday devils don't": [65535, 0], "sunday devils don't slosh": [65535, 0], "devils don't slosh around": [65535, 0], "don't slosh around much": [65535, 0], "slosh around much of": [65535, 0], "around much of a": [65535, 0], "much of a sunday": [65535, 0], "of a sunday i": [65535, 0], "a sunday i don't": [65535, 0], "sunday i don't reckon": [65535, 0], "i don't reckon i": [65535, 0], "don't reckon i never": [65535, 0], "reckon i never thought": [65535, 0], "i never thought of": [65535, 0], "never thought of that": [65535, 0], "thought of that that's": [65535, 0], "of that that's so": [65535, 0], "that that's so lemme": [65535, 0], "that's so lemme go": [65535, 0], "so lemme go with": [65535, 0], "lemme go with you": [65535, 0], "go with you of": [65535, 0], "with you of course": [65535, 0], "you of course if": [65535, 0], "of course if you": [65535, 0], "course if you ain't": [65535, 0], "if you ain't afeard": [65535, 0], "you ain't afeard afeard": [65535, 0], "ain't afeard afeard 'tain't": [65535, 0], "afeard afeard 'tain't likely": [65535, 0], "afeard 'tain't likely will": [65535, 0], "'tain't likely will you": [65535, 0], "likely will you meow": [65535, 0], "will you meow yes": [65535, 0], "you meow yes and": [65535, 0], "meow yes and you": [65535, 0], "yes and you meow": [65535, 0], "and you meow back": [65535, 0], "you meow back if": [65535, 0], "meow back if you": [65535, 0], "back if you get": [65535, 0], "if you get a": [65535, 0], "you get a chance": [65535, 0], "get a chance last": [65535, 0], "a chance last time": [65535, 0], "chance last time you": [65535, 0], "last time you kep'": [65535, 0], "time you kep' me": [65535, 0], "you kep' me a": [65535, 0], "kep' me a meowing": [65535, 0], "me a meowing around": [65535, 0], "a meowing around till": [65535, 0], "meowing around till old": [65535, 0], "around till old hays": [65535, 0], "till old hays went": [65535, 0], "old hays went to": [65535, 0], "hays went to throwing": [65535, 0], "went to throwing rocks": [65535, 0], "to throwing rocks at": [65535, 0], "throwing rocks at me": [65535, 0], "rocks at me and": [65535, 0], "at me and says": [65535, 0], "me and says 'dern": [65535, 0], "and says 'dern that": [65535, 0], "says 'dern that cat": [65535, 0], "'dern that cat '": [65535, 0], "that cat ' and": [65535, 0], "cat ' and so": [65535, 0], "' and so i": [65535, 0], "and so i hove": [65535, 0], "so i hove a": [65535, 0], "i hove a brick": [65535, 0], "hove a brick through": [65535, 0], "a brick through his": [65535, 0], "brick through his window": [65535, 0], "through his window but": [65535, 0], "his window but don't": [65535, 0], "window but don't you": [65535, 0], "but don't you tell": [65535, 0], "don't you tell i": [65535, 0], "you tell i won't": [65535, 0], "tell i won't i": [65535, 0], "i won't i couldn't": [65535, 0], "won't i couldn't meow": [65535, 0], "i couldn't meow that": [65535, 0], "couldn't meow that night": [65535, 0], "meow that night becuz": [65535, 0], "that night becuz auntie": [65535, 0], "night becuz auntie was": [65535, 0], "becuz auntie was watching": [65535, 0], "auntie was watching me": [65535, 0], "was watching me but": [65535, 0], "watching me but i'll": [65535, 0], "me but i'll meow": [65535, 0], "but i'll meow this": [65535, 0], "i'll meow this time": [65535, 0], "meow this time say": [65535, 0], "this time say what's": [65535, 0], "time say what's that": [65535, 0], "say what's that nothing": [65535, 0], "what's that nothing but": [65535, 0], "that nothing but a": [65535, 0], "nothing but a tick": [65535, 0], "but a tick where'd": [65535, 0], "a tick where'd you": [65535, 0], "tick where'd you get": [65535, 0], "you get him out": [65535, 0], "get him out in": [65535, 0], "him out in the": [65535, 0], "out in the woods": [65535, 0], "in the woods what'll": [65535, 0], "the woods what'll you": [65535, 0], "woods what'll you take": [65535, 0], "what'll you take for": [65535, 0], "you take for him": [65535, 0], "take for him i": [65535, 0], "for him i don't": [65535, 0], "him i don't know": [65535, 0], "i don't know i": [65535, 0], "don't know i don't": [65535, 0], "know i don't want": [65535, 0], "don't want to sell": [65535, 0], "want to sell him": [65535, 0], "to sell him all": [65535, 0], "sell him all right": [65535, 0], "him all right it's": [65535, 0], "all right it's a": [65535, 0], "right it's a mighty": [65535, 0], "it's a mighty small": [65535, 0], "a mighty small tick": [65535, 0], "mighty small tick anyway": [65535, 0], "small tick anyway oh": [65535, 0], "tick anyway oh anybody": [65535, 0], "anyway oh anybody can": [65535, 0], "oh anybody can run": [65535, 0], "anybody can run a": [65535, 0], "can run a tick": [65535, 0], "run a tick down": [65535, 0], "a tick down that": [65535, 0], "tick down that don't": [65535, 0], "down that don't belong": [65535, 0], "that don't belong to": [65535, 0], "don't belong to them": [65535, 0], "belong to them i'm": [65535, 0], "to them i'm satisfied": [65535, 0], "them i'm satisfied with": [65535, 0], "i'm satisfied with it": [65535, 0], "satisfied with it it's": [65535, 0], "with it it's a": [65535, 0], "it it's a good": [65535, 0], "it's a good enough": [65535, 0], "a good enough tick": [65535, 0], "good enough tick for": [65535, 0], "enough tick for me": [65535, 0], "tick for me sho": [65535, 0], "for me sho there's": [65535, 0], "me sho there's ticks": [65535, 0], "sho there's ticks a": [65535, 0], "there's ticks a plenty": [65535, 0], "ticks a plenty i": [65535, 0], "a plenty i could": [65535, 0], "plenty i could have": [65535, 0], "i could have a": [65535, 0], "could have a thousand": [65535, 0], "have a thousand of": [65535, 0], "a thousand of 'em": [65535, 0], "thousand of 'em if": [65535, 0], "of 'em if i": [65535, 0], "'em if i wanted": [65535, 0], "if i wanted to": [65535, 0], "i wanted to well": [65535, 0], "wanted to well why": [65535, 0], "to well why don't": [65535, 0], "well why don't you": [65535, 0], "why don't you becuz": [65535, 0], "don't you becuz you": [65535, 0], "you becuz you know": [65535, 0], "becuz you know mighty": [65535, 0], "you know mighty well": [65535, 0], "know mighty well you": [65535, 0], "mighty well you can't": [65535, 0], "well you can't this": [65535, 0], "you can't this is": [65535, 0], "can't this is a": [65535, 0], "this is a pretty": [65535, 0], "is a pretty early": [65535, 0], "a pretty early tick": [65535, 0], "pretty early tick i": [65535, 0], "early tick i reckon": [65535, 0], "tick i reckon it's": [65535, 0], "i reckon it's the": [65535, 0], "reckon it's the first": [65535, 0], "it's the first one": [65535, 0], "the first one i've": [65535, 0], "first one i've seen": [65535, 0], "one i've seen this": [65535, 0], "i've seen this year": [65535, 0], "seen this year say": [65535, 0], "this year say huck": [65535, 0], "year say huck i'll": [65535, 0], "say huck i'll give": [65535, 0], "huck i'll give you": [65535, 0], "i'll give you my": [65535, 0], "give you my tooth": [65535, 0], "you my tooth for": [65535, 0], "my tooth for him": [65535, 0], "tooth for him less": [65535, 0], "for him less see": [65535, 0], "him less see it": [65535, 0], "less see it tom": [65535, 0], "see it tom got": [65535, 0], "it tom got out": [65535, 0], "tom got out a": [65535, 0], "got out a bit": [65535, 0], "out a bit of": [65535, 0], "a bit of paper": [65535, 0], "bit of paper and": [65535, 0], "of paper and carefully": [65535, 0], "paper and carefully unrolled": [65535, 0], "and carefully unrolled it": [65535, 0], "carefully unrolled it huckleberry": [65535, 0], "unrolled it huckleberry viewed": [65535, 0], "it huckleberry viewed it": [65535, 0], "huckleberry viewed it wistfully": [65535, 0], "viewed it wistfully the": [65535, 0], "it wistfully the temptation": [65535, 0], "wistfully the temptation was": [65535, 0], "the temptation was very": [65535, 0], "temptation was very strong": [65535, 0], "was very strong at": [65535, 0], "very strong at last": [65535, 0], "strong at last he": [65535, 0], "at last he said": [65535, 0], "last he said is": [65535, 0], "he said is it": [65535, 0], "said is it genuwyne": [65535, 0], "is it genuwyne tom": [65535, 0], "it genuwyne tom lifted": [65535, 0], "genuwyne tom lifted his": [65535, 0], "tom lifted his lip": [65535, 0], "his lip and showed": [65535, 0], "lip and showed the": [65535, 0], "and showed the vacancy": [65535, 0], "showed the vacancy well": [65535, 0], "the vacancy well all": [65535, 0], "vacancy well all right": [65535, 0], "well all right said": [65535, 0], "all right said huckleberry": [65535, 0], "right said huckleberry it's": [65535, 0], "said huckleberry it's a": [65535, 0], "huckleberry it's a trade": [65535, 0], "it's a trade tom": [65535, 0], "a trade tom enclosed": [65535, 0], "trade tom enclosed the": [65535, 0], "tom enclosed the tick": [65535, 0], "enclosed the tick in": [65535, 0], "the tick in the": [65535, 0], "tick in the percussion": [65535, 0], "in the percussion cap": [65535, 0], "the percussion cap box": [65535, 0], "percussion cap box that": [65535, 0], "cap box that had": [65535, 0], "box that had lately": [65535, 0], "that had lately been": [65535, 0], "had lately been the": [65535, 0], "lately been the pinchbug's": [65535, 0], "been the pinchbug's prison": [65535, 0], "the pinchbug's prison and": [65535, 0], "pinchbug's prison and the": [65535, 0], "prison and the boys": [65535, 0], "and the boys separated": [65535, 0], "the boys separated each": [65535, 0], "boys separated each feeling": [65535, 0], "separated each feeling wealthier": [65535, 0], "each feeling wealthier than": [65535, 0], "feeling wealthier than before": [65535, 0], "wealthier than before when": [65535, 0], "than before when tom": [65535, 0], "before when tom reached": [65535, 0], "when tom reached the": [65535, 0], "tom reached the little": [65535, 0], "reached the little isolated": [65535, 0], "the little isolated frame": [65535, 0], "little isolated frame schoolhouse": [65535, 0], "isolated frame schoolhouse he": [65535, 0], "frame schoolhouse he strode": [65535, 0], "schoolhouse he strode in": [65535, 0], "he strode in briskly": [65535, 0], "strode in briskly with": [65535, 0], "in briskly with the": [65535, 0], "briskly with the manner": [65535, 0], "with the manner of": [65535, 0], "the manner of one": [65535, 0], "manner of one who": [65535, 0], "of one who had": [65535, 0], "one who had come": [65535, 0], "who had come with": [65535, 0], "had come with all": [65535, 0], "come with all honest": [65535, 0], "with all honest speed": [65535, 0], "all honest speed he": [65535, 0], "honest speed he hung": [65535, 0], "speed he hung his": [65535, 0], "he hung his hat": [65535, 0], "hung his hat on": [65535, 0], "his hat on a": [65535, 0], "hat on a peg": [65535, 0], "on a peg and": [65535, 0], "a peg and flung": [65535, 0], "peg and flung himself": [65535, 0], "and flung himself into": [65535, 0], "flung himself into his": [65535, 0], "himself into his seat": [65535, 0], "into his seat with": [65535, 0], "his seat with business": [65535, 0], "seat with business like": [65535, 0], "with business like alacrity": [65535, 0], "business like alacrity the": [65535, 0], "like alacrity the master": [65535, 0], "alacrity the master throned": [65535, 0], "the master throned on": [65535, 0], "master throned on high": [65535, 0], "throned on high in": [65535, 0], "on high in his": [65535, 0], "high in his great": [65535, 0], "in his great splint": [65535, 0], "his great splint bottom": [65535, 0], "great splint bottom arm": [65535, 0], "splint bottom arm chair": [65535, 0], "bottom arm chair was": [65535, 0], "arm chair was dozing": [65535, 0], "chair was dozing lulled": [65535, 0], "was dozing lulled by": [65535, 0], "dozing lulled by the": [65535, 0], "lulled by the drowsy": [65535, 0], "by the drowsy hum": [65535, 0], "the drowsy hum of": [65535, 0], "drowsy hum of study": [65535, 0], "hum of study the": [65535, 0], "of study the interruption": [65535, 0], "study the interruption roused": [65535, 0], "the interruption roused him": [65535, 0], "interruption roused him thomas": [65535, 0], "roused him thomas sawyer": [65535, 0], "him thomas sawyer tom": [65535, 0], "thomas sawyer tom knew": [65535, 0], "sawyer tom knew that": [65535, 0], "tom knew that when": [65535, 0], "knew that when his": [65535, 0], "that when his name": [65535, 0], "when his name was": [65535, 0], "his name was pronounced": [65535, 0], "name was pronounced in": [65535, 0], "was pronounced in full": [65535, 0], "pronounced in full it": [65535, 0], "in full it meant": [65535, 0], "full it meant trouble": [65535, 0], "it meant trouble sir": [65535, 0], "meant trouble sir come": [65535, 0], "trouble sir come up": [65535, 0], "sir come up here": [65535, 0], "come up here now": [65535, 0], "up here now sir": [65535, 0], "here now sir why": [65535, 0], "now sir why are": [65535, 0], "sir why are you": [65535, 0], "why are you late": [65535, 0], "are you late again": [65535, 0], "you late again as": [65535, 0], "late again as usual": [65535, 0], "again as usual tom": [65535, 0], "as usual tom was": [65535, 0], "usual tom was about": [65535, 0], "tom was about to": [65535, 0], "was about to take": [65535, 0], "about to take refuge": [65535, 0], "to take refuge in": [65535, 0], "take refuge in a": [65535, 0], "refuge in a lie": [65535, 0], "in a lie when": [65535, 0], "a lie when he": [65535, 0], "lie when he saw": [65535, 0], "when he saw two": [65535, 0], "he saw two long": [65535, 0], "saw two long tails": [65535, 0], "two long tails of": [65535, 0], "long tails of yellow": [65535, 0], "tails of yellow hair": [65535, 0], "of yellow hair hanging": [65535, 0], "yellow hair hanging down": [65535, 0], "hair hanging down a": [65535, 0], "hanging down a back": [65535, 0], "down a back that": [65535, 0], "a back that he": [65535, 0], "back that he recognized": [65535, 0], "that he recognized by": [65535, 0], "he recognized by the": [65535, 0], "recognized by the electric": [65535, 0], "by the electric sympathy": [65535, 0], "the electric sympathy of": [65535, 0], "electric sympathy of love": [65535, 0], "sympathy of love and": [65535, 0], "of love and by": [65535, 0], "love and by that": [65535, 0], "and by that form": [65535, 0], "by that form was": [65535, 0], "that form was the": [65535, 0], "form was the only": [65535, 0], "was the only vacant": [65535, 0], "the only vacant place": [65535, 0], "only vacant place on": [65535, 0], "vacant place on the": [65535, 0], "place on the girls'": [65535, 0], "on the girls' side": [65535, 0], "the girls' side of": [65535, 0], "girls' side of the": [65535, 0], "side of the school": [65535, 0], "of the school house": [65535, 0], "the school house he": [65535, 0], "school house he instantly": [65535, 0], "house he instantly said": [65535, 0], "he instantly said i": [65535, 0], "instantly said i stopped": [65535, 0], "said i stopped to": [65535, 0], "i stopped to talk": [65535, 0], "stopped to talk with": [65535, 0], "to talk with huckleberry": [65535, 0], "talk with huckleberry finn": [65535, 0], "with huckleberry finn the": [65535, 0], "huckleberry finn the master's": [65535, 0], "finn the master's pulse": [65535, 0], "the master's pulse stood": [65535, 0], "master's pulse stood still": [65535, 0], "pulse stood still and": [65535, 0], "stood still and he": [65535, 0], "still and he stared": [65535, 0], "and he stared helplessly": [65535, 0], "he stared helplessly the": [65535, 0], "stared helplessly the buzz": [65535, 0], "helplessly the buzz of": [65535, 0], "the buzz of study": [65535, 0], "buzz of study ceased": [65535, 0], "of study ceased the": [65535, 0], "study ceased the pupils": [65535, 0], "ceased the pupils wondered": [65535, 0], "the pupils wondered if": [65535, 0], "pupils wondered if this": [65535, 0], "wondered if this foolhardy": [65535, 0], "if this foolhardy boy": [65535, 0], "this foolhardy boy had": [65535, 0], "foolhardy boy had lost": [65535, 0], "boy had lost his": [65535, 0], "had lost his mind": [65535, 0], "lost his mind the": [65535, 0], "his mind the master": [65535, 0], "mind the master said": [65535, 0], "the master said you": [65535, 0], "master said you you": [65535, 0], "said you you did": [65535, 0], "you you did what": [65535, 0], "you did what stopped": [65535, 0], "did what stopped to": [65535, 0], "what stopped to talk": [65535, 0], "with huckleberry finn there": [65535, 0], "huckleberry finn there was": [65535, 0], "finn there was no": [65535, 0], "there was no mistaking": [65535, 0], "was no mistaking the": [65535, 0], "no mistaking the words": [65535, 0], "mistaking the words thomas": [65535, 0], "the words thomas sawyer": [65535, 0], "words thomas sawyer this": [65535, 0], "thomas sawyer this is": [65535, 0], "sawyer this is the": [65535, 0], "this is the most": [65535, 0], "is the most astounding": [65535, 0], "the most astounding confession": [65535, 0], "most astounding confession i": [65535, 0], "astounding confession i have": [65535, 0], "confession i have ever": [65535, 0], "i have ever listened": [65535, 0], "have ever listened to": [65535, 0], "ever listened to no": [65535, 0], "listened to no mere": [65535, 0], "to no mere ferule": [65535, 0], "no mere ferule will": [65535, 0], "mere ferule will answer": [65535, 0], "ferule will answer for": [65535, 0], "will answer for this": [65535, 0], "answer for this offence": [65535, 0], "for this offence take": [65535, 0], "this offence take off": [65535, 0], "offence take off your": [65535, 0], "take off your jacket": [65535, 0], "off your jacket the": [65535, 0], "your jacket the master's": [65535, 0], "jacket the master's arm": [65535, 0], "the master's arm performed": [65535, 0], "master's arm performed until": [65535, 0], "arm performed until it": [65535, 0], "performed until it was": [65535, 0], "until it was tired": [65535, 0], "it was tired and": [65535, 0], "was tired and the": [65535, 0], "tired and the stock": [65535, 0], "and the stock of": [65535, 0], "the stock of switches": [65535, 0], "stock of switches notably": [65535, 0], "of switches notably diminished": [65535, 0], "switches notably diminished then": [65535, 0], "notably diminished then the": [65535, 0], "diminished then the order": [65535, 0], "then the order followed": [65535, 0], "the order followed now": [65535, 0], "order followed now sir": [65535, 0], "followed now sir go": [65535, 0], "now sir go and": [65535, 0], "sir go and sit": [65535, 0], "go and sit with": [65535, 0], "and sit with the": [65535, 0], "sit with the girls": [65535, 0], "with the girls and": [65535, 0], "the girls and let": [65535, 0], "girls and let this": [65535, 0], "and let this be": [65535, 0], "let this be a": [65535, 0], "this be a warning": [65535, 0], "be a warning to": [65535, 0], "a warning to you": [65535, 0], "warning to you the": [65535, 0], "to you the titter": [65535, 0], "you the titter that": [65535, 0], "the titter that rippled": [65535, 0], "titter that rippled around": [65535, 0], "that rippled around the": [65535, 0], "rippled around the room": [65535, 0], "around the room appeared": [65535, 0], "the room appeared to": [65535, 0], "room appeared to abash": [65535, 0], "appeared to abash the": [65535, 0], "to abash the boy": [65535, 0], "abash the boy but": [65535, 0], "the boy but in": [65535, 0], "boy but in reality": [65535, 0], "but in reality that": [65535, 0], "in reality that result": [65535, 0], "reality that result was": [65535, 0], "that result was caused": [65535, 0], "result was caused rather": [65535, 0], "was caused rather more": [65535, 0], "caused rather more by": [65535, 0], "rather more by his": [65535, 0], "more by his worshipful": [65535, 0], "by his worshipful awe": [65535, 0], "his worshipful awe of": [65535, 0], "worshipful awe of his": [65535, 0], "awe of his unknown": [65535, 0], "of his unknown idol": [65535, 0], "his unknown idol and": [65535, 0], "unknown idol and the": [65535, 0], "idol and the dread": [65535, 0], "and the dread pleasure": [65535, 0], "the dread pleasure that": [65535, 0], "dread pleasure that lay": [65535, 0], "pleasure that lay in": [65535, 0], "that lay in his": [65535, 0], "lay in his high": [65535, 0], "in his high good": [65535, 0], "his high good fortune": [65535, 0], "high good fortune he": [65535, 0], "good fortune he sat": [65535, 0], "fortune he sat down": [65535, 0], "he sat down upon": [65535, 0], "sat down upon the": [65535, 0], "down upon the end": [65535, 0], "upon the end of": [65535, 0], "the end of the": [65535, 0], "end of the pine": [65535, 0], "of the pine bench": [65535, 0], "the pine bench and": [65535, 0], "pine bench and the": [65535, 0], "bench and the girl": [65535, 0], "and the girl hitched": [65535, 0], "the girl hitched herself": [65535, 0], "girl hitched herself away": [65535, 0], "hitched herself away from": [65535, 0], "herself away from him": [65535, 0], "away from him with": [65535, 0], "from him with a": [65535, 0], "him with a toss": [65535, 0], "with a toss of": [65535, 0], "a toss of her": [65535, 0], "toss of her head": [65535, 0], "of her head nudges": [65535, 0], "her head nudges and": [65535, 0], "head nudges and winks": [65535, 0], "nudges and winks and": [65535, 0], "and winks and whispers": [65535, 0], "winks and whispers traversed": [65535, 0], "and whispers traversed the": [65535, 0], "whispers traversed the room": [65535, 0], "traversed the room but": [65535, 0], "the room but tom": [65535, 0], "room but tom sat": [65535, 0], "but tom sat still": [65535, 0], "tom sat still with": [65535, 0], "sat still with his": [65535, 0], "still with his arms": [65535, 0], "with his arms upon": [65535, 0], "his arms upon the": [65535, 0], "arms upon the long": [65535, 0], "upon the long low": [65535, 0], "the long low desk": [65535, 0], "long low desk before": [65535, 0], "low desk before him": [65535, 0], "desk before him and": [65535, 0], "before him and seemed": [65535, 0], "him and seemed to": [65535, 0], "and seemed to study": [65535, 0], "seemed to study his": [65535, 0], "to study his book": [65535, 0], "study his book by": [65535, 0], "his book by and": [65535, 0], "book by and by": [65535, 0], "by and by attention": [65535, 0], "and by attention ceased": [65535, 0], "by attention ceased from": [65535, 0], "attention ceased from him": [65535, 0], "ceased from him and": [65535, 0], "from him and the": [65535, 0], "him and the accustomed": [65535, 0], "and the accustomed school": [65535, 0], "the accustomed school murmur": [65535, 0], "accustomed school murmur rose": [65535, 0], "school murmur rose upon": [65535, 0], "murmur rose upon the": [65535, 0], "rose upon the dull": [65535, 0], "upon the dull air": [65535, 0], "the dull air once": [65535, 0], "dull air once more": [65535, 0], "air once more presently": [65535, 0], "once more presently the": [65535, 0], "more presently the boy": [65535, 0], "presently the boy began": [65535, 0], "the boy began to": [65535, 0], "boy began to steal": [65535, 0], "began to steal furtive": [65535, 0], "to steal furtive glances": [65535, 0], "steal furtive glances at": [65535, 0], "furtive glances at the": [65535, 0], "glances at the girl": [65535, 0], "at the girl she": [65535, 0], "the girl she observed": [65535, 0], "girl she observed it": [65535, 0], "she observed it made": [65535, 0], "observed it made a": [65535, 0], "it made a mouth": [65535, 0], "made a mouth at": [65535, 0], "a mouth at him": [65535, 0], "mouth at him and": [65535, 0], "at him and gave": [65535, 0], "him and gave him": [65535, 0], "and gave him the": [65535, 0], "gave him the back": [65535, 0], "him the back of": [65535, 0], "the back of her": [65535, 0], "back of her head": [65535, 0], "of her head for": [65535, 0], "her head for the": [65535, 0], "head for the space": [65535, 0], "for the space of": [65535, 0], "the space of a": [65535, 0], "space of a minute": [65535, 0], "of a minute when": [65535, 0], "a minute when she": [65535, 0], "minute when she cautiously": [65535, 0], "when she cautiously faced": [65535, 0], "she cautiously faced around": [65535, 0], "cautiously faced around again": [65535, 0], "faced around again a": [65535, 0], "around again a peach": [65535, 0], "again a peach lay": [65535, 0], "a peach lay before": [65535, 0], "peach lay before her": [65535, 0], "lay before her she": [65535, 0], "before her she thrust": [65535, 0], "her she thrust it": [65535, 0], "she thrust it away": [65535, 0], "thrust it away tom": [65535, 0], "it away tom gently": [65535, 0], "away tom gently put": [65535, 0], "tom gently put it": [65535, 0], "gently put it back": [65535, 0], "put it back she": [65535, 0], "it back she thrust": [65535, 0], "back she thrust it": [65535, 0], "thrust it away again": [65535, 0], "it away again but": [65535, 0], "away again but with": [65535, 0], "again but with less": [65535, 0], "but with less animosity": [65535, 0], "with less animosity tom": [65535, 0], "less animosity tom patiently": [65535, 0], "animosity tom patiently returned": [65535, 0], "tom patiently returned it": [65535, 0], "patiently returned it to": [65535, 0], "returned it to its": [65535, 0], "it to its place": [65535, 0], "to its place then": [65535, 0], "its place then she": [65535, 0], "place then she let": [65535, 0], "then she let it": [65535, 0], "she let it remain": [65535, 0], "let it remain tom": [65535, 0], "it remain tom scrawled": [65535, 0], "remain tom scrawled on": [65535, 0], "tom scrawled on his": [65535, 0], "scrawled on his slate": [65535, 0], "on his slate please": [65535, 0], "his slate please take": [65535, 0], "slate please take it": [65535, 0], "please take it i": [65535, 0], "take it i got": [65535, 0], "it i got more": [65535, 0], "i got more the": [65535, 0], "got more the girl": [65535, 0], "more the girl glanced": [65535, 0], "the girl glanced at": [65535, 0], "girl glanced at the": [65535, 0], "glanced at the words": [65535, 0], "at the words but": [65535, 0], "the words but made": [65535, 0], "words but made no": [65535, 0], "but made no sign": [65535, 0], "made no sign now": [65535, 0], "no sign now the": [65535, 0], "sign now the boy": [65535, 0], "now the boy began": [65535, 0], "boy began to draw": [65535, 0], "began to draw something": [65535, 0], "to draw something on": [65535, 0], "draw something on the": [65535, 0], "something on the slate": [65535, 0], "on the slate hiding": [65535, 0], "the slate hiding his": [65535, 0], "slate hiding his work": [65535, 0], "hiding his work with": [65535, 0], "his work with his": [65535, 0], "work with his left": [65535, 0], "with his left hand": [65535, 0], "his left hand for": [65535, 0], "left hand for a": [65535, 0], "hand for a time": [65535, 0], "for a time the": [65535, 0], "a time the girl": [65535, 0], "time the girl refused": [65535, 0], "the girl refused to": [65535, 0], "girl refused to notice": [65535, 0], "refused to notice but": [65535, 0], "to notice but her": [65535, 0], "notice but her human": [65535, 0], "but her human curiosity": [65535, 0], "her human curiosity presently": [65535, 0], "human curiosity presently began": [65535, 0], "curiosity presently began to": [65535, 0], "presently began to manifest": [65535, 0], "began to manifest itself": [65535, 0], "to manifest itself by": [65535, 0], "manifest itself by hardly": [65535, 0], "itself by hardly perceptible": [65535, 0], "by hardly perceptible signs": [65535, 0], "hardly perceptible signs the": [65535, 0], "perceptible signs the boy": [65535, 0], "signs the boy worked": [65535, 0], "the boy worked on": [65535, 0], "boy worked on apparently": [65535, 0], "worked on apparently unconscious": [65535, 0], "on apparently unconscious the": [65535, 0], "apparently unconscious the girl": [65535, 0], "unconscious the girl made": [65535, 0], "the girl made a": [65535, 0], "girl made a sort": [65535, 0], "made a sort of": [65535, 0], "a sort of noncommittal": [65535, 0], "sort of noncommittal attempt": [65535, 0], "of noncommittal attempt to": [65535, 0], "noncommittal attempt to see": [65535, 0], "attempt to see but": [65535, 0], "to see but the": [65535, 0], "see but the boy": [65535, 0], "but the boy did": [65535, 0], "the boy did not": [65535, 0], "boy did not betray": [65535, 0], "did not betray that": [65535, 0], "not betray that he": [65535, 0], "betray that he was": [65535, 0], "that he was aware": [65535, 0], "he was aware of": [65535, 0], "was aware of it": [65535, 0], "aware of it at": [65535, 0], "of it at last": [65535, 0], "it at last she": [65535, 0], "at last she gave": [65535, 0], "last she gave in": [65535, 0], "she gave in and": [65535, 0], "gave in and hesitatingly": [65535, 0], "in and hesitatingly whispered": [65535, 0], "and hesitatingly whispered let": [65535, 0], "hesitatingly whispered let me": [65535, 0], "whispered let me see": [65535, 0], "let me see it": [32706, 32829], "me see it tom": [65535, 0], "see it tom partly": [65535, 0], "it tom partly uncovered": [65535, 0], "tom partly uncovered a": [65535, 0], "partly uncovered a dismal": [65535, 0], "uncovered a dismal caricature": [65535, 0], "a dismal caricature of": [65535, 0], "dismal caricature of a": [65535, 0], "caricature of a house": [65535, 0], "of a house with": [65535, 0], "a house with two": [65535, 0], "house with two gable": [65535, 0], "with two gable ends": [65535, 0], "two gable ends to": [65535, 0], "gable ends to it": [65535, 0], "ends to it and": [65535, 0], "to it and a": [65535, 0], "it and a corkscrew": [65535, 0], "and a corkscrew of": [65535, 0], "a corkscrew of smoke": [65535, 0], "corkscrew of smoke issuing": [65535, 0], "of smoke issuing from": [65535, 0], "smoke issuing from the": [65535, 0], "issuing from the chimney": [65535, 0], "from the chimney then": [65535, 0], "the chimney then the": [65535, 0], "chimney then the girl's": [65535, 0], "then the girl's interest": [65535, 0], "the girl's interest began": [65535, 0], "girl's interest began to": [65535, 0], "interest began to fasten": [65535, 0], "began to fasten itself": [65535, 0], "to fasten itself upon": [65535, 0], "fasten itself upon the": [65535, 0], "itself upon the work": [65535, 0], "upon the work and": [65535, 0], "the work and she": [65535, 0], "work and she forgot": [65535, 0], "and she forgot everything": [65535, 0], "she forgot everything else": [65535, 0], "forgot everything else when": [65535, 0], "everything else when it": [65535, 0], "else when it was": [65535, 0], "when it was finished": [65535, 0], "it was finished she": [65535, 0], "was finished she gazed": [65535, 0], "finished she gazed a": [65535, 0], "she gazed a moment": [65535, 0], "gazed a moment then": [65535, 0], "a moment then whispered": [65535, 0], "moment then whispered it's": [65535, 0], "then whispered it's nice": [65535, 0], "whispered it's nice make": [65535, 0], "it's nice make a": [65535, 0], "nice make a man": [65535, 0], "make a man the": [65535, 0], "a man the artist": [65535, 0], "man the artist erected": [65535, 0], "the artist erected a": [65535, 0], "artist erected a man": [65535, 0], "erected a man in": [65535, 0], "a man in the": [65535, 0], "man in the front": [65535, 0], "in the front yard": [65535, 0], "the front yard that": [65535, 0], "front yard that resembled": [65535, 0], "yard that resembled a": [65535, 0], "that resembled a derrick": [65535, 0], "resembled a derrick he": [65535, 0], "a derrick he could": [65535, 0], "derrick he could have": [65535, 0], "he could have stepped": [65535, 0], "could have stepped over": [65535, 0], "have stepped over the": [65535, 0], "stepped over the house": [65535, 0], "over the house but": [65535, 0], "the house but the": [65535, 0], "house but the girl": [65535, 0], "but the girl was": [65535, 0], "the girl was not": [65535, 0], "girl was not hypercritical": [65535, 0], "was not hypercritical she": [65535, 0], "not hypercritical she was": [65535, 0], "hypercritical she was satisfied": [65535, 0], "she was satisfied with": [65535, 0], "was satisfied with the": [65535, 0], "satisfied with the monster": [65535, 0], "with the monster and": [65535, 0], "the monster and whispered": [65535, 0], "monster and whispered it's": [65535, 0], "and whispered it's a": [65535, 0], "whispered it's a beautiful": [65535, 0], "it's a beautiful man": [65535, 0], "a beautiful man now": [65535, 0], "beautiful man now make": [65535, 0], "man now make me": [65535, 0], "now make me coming": [65535, 0], "make me coming along": [65535, 0], "me coming along tom": [65535, 0], "coming along tom drew": [65535, 0], "along tom drew an": [65535, 0], "tom drew an hour": [65535, 0], "drew an hour glass": [65535, 0], "an hour glass with": [65535, 0], "hour glass with a": [65535, 0], "glass with a full": [65535, 0], "with a full moon": [65535, 0], "a full moon and": [65535, 0], "full moon and straw": [65535, 0], "moon and straw limbs": [65535, 0], "and straw limbs to": [65535, 0], "straw limbs to it": [65535, 0], "limbs to it and": [65535, 0], "to it and armed": [65535, 0], "it and armed the": [65535, 0], "and armed the spreading": [65535, 0], "armed the spreading fingers": [65535, 0], "the spreading fingers with": [65535, 0], "spreading fingers with a": [65535, 0], "fingers with a portentous": [65535, 0], "with a portentous fan": [65535, 0], "a portentous fan the": [65535, 0], "portentous fan the girl": [65535, 0], "fan the girl said": [65535, 0], "the girl said it's": [65535, 0], "girl said it's ever": [65535, 0], "said it's ever so": [65535, 0], "it's ever so nice": [65535, 0], "ever so nice i": [65535, 0], "so nice i wish": [65535, 0], "nice i wish i": [65535, 0], "i wish i could": [65535, 0], "wish i could draw": [65535, 0], "i could draw it's": [65535, 0], "could draw it's easy": [65535, 0], "draw it's easy whispered": [65535, 0], "it's easy whispered tom": [65535, 0], "easy whispered tom i'll": [65535, 0], "whispered tom i'll learn": [65535, 0], "tom i'll learn you": [65535, 0], "i'll learn you oh": [65535, 0], "learn you oh will": [65535, 0], "you oh will you": [65535, 0], "oh will you when": [65535, 0], "will you when at": [65535, 0], "you when at noon": [65535, 0], "when at noon do": [65535, 0], "at noon do you": [65535, 0], "noon do you go": [65535, 0], "do you go home": [65535, 0], "you go home to": [65535, 0], "go home to dinner": [65535, 0], "home to dinner i'll": [65535, 0], "to dinner i'll stay": [65535, 0], "dinner i'll stay if": [65535, 0], "i'll stay if you": [65535, 0], "stay if you will": [65535, 0], "if you will good": [65535, 0], "you will good that's": [65535, 0], "will good that's a": [65535, 0], "good that's a whack": [65535, 0], "that's a whack what's": [65535, 0], "a whack what's your": [65535, 0], "whack what's your name": [65535, 0], "what's your name becky": [65535, 0], "your name becky thatcher": [65535, 0], "name becky thatcher what's": [65535, 0], "becky thatcher what's yours": [65535, 0], "thatcher what's yours oh": [65535, 0], "what's yours oh i": [65535, 0], "yours oh i know": [65535, 0], "oh i know it's": [65535, 0], "i know it's thomas": [65535, 0], "know it's thomas sawyer": [65535, 0], "it's thomas sawyer that's": [65535, 0], "thomas sawyer that's the": [65535, 0], "sawyer that's the name": [65535, 0], "that's the name they": [65535, 0], "the name they lick": [65535, 0], "name they lick me": [65535, 0], "they lick me by": [65535, 0], "lick me by i'm": [65535, 0], "me by i'm tom": [65535, 0], "by i'm tom when": [65535, 0], "i'm tom when i'm": [65535, 0], "tom when i'm good": [65535, 0], "when i'm good you": [65535, 0], "i'm good you call": [65535, 0], "good you call me": [65535, 0], "you call me tom": [65535, 0], "call me tom will": [65535, 0], "me tom will you": [65535, 0], "tom will you yes": [65535, 0], "will you yes now": [65535, 0], "you yes now tom": [65535, 0], "yes now tom began": [65535, 0], "now tom began to": [65535, 0], "tom began to scrawl": [65535, 0], "began to scrawl something": [65535, 0], "to scrawl something on": [65535, 0], "scrawl something on the": [65535, 0], "the slate hiding the": [65535, 0], "slate hiding the words": [65535, 0], "hiding the words from": [65535, 0], "the words from the": [65535, 0], "words from the girl": [65535, 0], "from the girl but": [65535, 0], "the girl but she": [65535, 0], "girl but she was": [65535, 0], "but she was not": [65535, 0], "she was not backward": [65535, 0], "was not backward this": [65535, 0], "not backward this time": [65535, 0], "backward this time she": [65535, 0], "this time she begged": [65535, 0], "time she begged to": [65535, 0], "she begged to see": [65535, 0], "begged to see tom": [65535, 0], "to see tom said": [65535, 0], "see tom said oh": [65535, 0], "tom said oh it": [65535, 0], "said oh it ain't": [65535, 0], "oh it ain't anything": [65535, 0], "it ain't anything yes": [65535, 0], "ain't anything yes it": [65535, 0], "anything yes it is": [65535, 0], "yes it is no": [65535, 0], "it is no it": [65535, 0], "is no it ain't": [65535, 0], "no it ain't you": [65535, 0], "it ain't you don't": [65535, 0], "ain't you don't want": [65535, 0], "you don't want to": [65535, 0], "don't want to see": [65535, 0], "want to see yes": [65535, 0], "to see yes i": [65535, 0], "see yes i do": [65535, 0], "yes i do indeed": [65535, 0], "i do indeed i": [65535, 0], "do indeed i do": [65535, 0], "indeed i do please": [65535, 0], "i do please let": [65535, 0], "do please let me": [65535, 0], "please let me you'll": [65535, 0], "let me you'll tell": [65535, 0], "me you'll tell no": [65535, 0], "you'll tell no i": [65535, 0], "tell no i won't": [65535, 0], "no i won't deed": [65535, 0], "i won't deed and": [65535, 0], "won't deed and deed": [65535, 0], "deed and deed and": [65535, 0], "and deed and double": [65535, 0], "deed and double deed": [65535, 0], "and double deed won't": [65535, 0], "double deed won't you": [65535, 0], "deed won't you won't": [65535, 0], "won't you won't tell": [65535, 0], "you won't tell anybody": [65535, 0], "won't tell anybody at": [65535, 0], "tell anybody at all": [65535, 0], "anybody at all ever": [65535, 0], "at all ever as": [65535, 0], "all ever as long": [65535, 0], "ever as long as": [65535, 0], "as long as you": [65535, 0], "long as you live": [65535, 0], "as you live no": [65535, 0], "you live no i": [65535, 0], "live no i won't": [65535, 0], "no i won't ever": [65535, 0], "i won't ever tell": [65535, 0], "won't ever tell anybody": [65535, 0], "ever tell anybody now": [65535, 0], "tell anybody now let": [65535, 0], "anybody now let me": [65535, 0], "now let me oh": [65535, 0], "let me oh you": [65535, 0], "me oh you don't": [65535, 0], "oh you don't want": [65535, 0], "want to see now": [65535, 0], "to see now that": [65535, 0], "see now that you": [65535, 0], "now that you treat": [65535, 0], "that you treat me": [65535, 0], "you treat me so": [65535, 0], "treat me so i": [65535, 0], "me so i will": [65535, 0], "so i will see": [65535, 0], "i will see and": [65535, 0], "will see and she": [65535, 0], "see and she put": [65535, 0], "and she put her": [65535, 0], "she put her small": [65535, 0], "put her small hand": [65535, 0], "her small hand upon": [65535, 0], "small hand upon his": [65535, 0], "hand upon his and": [65535, 0], "upon his and a": [65535, 0], "his and a little": [65535, 0], "and a little scuffle": [65535, 0], "a little scuffle ensued": [65535, 0], "little scuffle ensued tom": [65535, 0], "scuffle ensued tom pretending": [65535, 0], "ensued tom pretending to": [65535, 0], "tom pretending to resist": [65535, 0], "pretending to resist in": [65535, 0], "to resist in earnest": [65535, 0], "resist in earnest but": [65535, 0], "in earnest but letting": [65535, 0], "earnest but letting his": [65535, 0], "but letting his hand": [65535, 0], "letting his hand slip": [65535, 0], "his hand slip by": [65535, 0], "hand slip by degrees": [65535, 0], "slip by degrees till": [65535, 0], "by degrees till these": [65535, 0], "degrees till these words": [65535, 0], "till these words were": [65535, 0], "these words were revealed": [65535, 0], "words were revealed i": [65535, 0], "were revealed i love": [65535, 0], "revealed i love you": [65535, 0], "i love you oh": [65535, 0], "love you oh you": [65535, 0], "you oh you bad": [65535, 0], "oh you bad thing": [65535, 0], "you bad thing and": [65535, 0], "bad thing and she": [65535, 0], "thing and she hit": [65535, 0], "and she hit his": [65535, 0], "she hit his hand": [65535, 0], "hit his hand a": [65535, 0], "his hand a smart": [65535, 0], "hand a smart rap": [65535, 0], "a smart rap but": [65535, 0], "smart rap but reddened": [65535, 0], "rap but reddened and": [65535, 0], "but reddened and looked": [65535, 0], "reddened and looked pleased": [65535, 0], "and looked pleased nevertheless": [65535, 0], "looked pleased nevertheless just": [65535, 0], "pleased nevertheless just at": [65535, 0], "nevertheless just at this": [65535, 0], "just at this juncture": [65535, 0], "at this juncture the": [65535, 0], "this juncture the boy": [65535, 0], "juncture the boy felt": [65535, 0], "boy felt a slow": [65535, 0], "felt a slow fateful": [65535, 0], "a slow fateful grip": [65535, 0], "slow fateful grip closing": [65535, 0], "fateful grip closing on": [65535, 0], "grip closing on his": [65535, 0], "closing on his ear": [65535, 0], "on his ear and": [65535, 0], "his ear and a": [65535, 0], "ear and a steady": [65535, 0], "and a steady lifting": [65535, 0], "a steady lifting impulse": [65535, 0], "steady lifting impulse in": [65535, 0], "lifting impulse in that": [65535, 0], "impulse in that vise": [65535, 0], "in that vise he": [65535, 0], "that vise he was": [65535, 0], "vise he was borne": [65535, 0], "he was borne across": [65535, 0], "was borne across the": [65535, 0], "borne across the house": [65535, 0], "across the house and": [65535, 0], "the house and deposited": [65535, 0], "house and deposited in": [65535, 0], "and deposited in his": [65535, 0], "deposited in his own": [65535, 0], "in his own seat": [65535, 0], "his own seat under": [65535, 0], "own seat under a": [65535, 0], "seat under a peppering": [65535, 0], "under a peppering fire": [65535, 0], "a peppering fire of": [65535, 0], "peppering fire of giggles": [65535, 0], "fire of giggles from": [65535, 0], "of giggles from the": [65535, 0], "giggles from the whole": [65535, 0], "from the whole school": [65535, 0], "the whole school then": [65535, 0], "whole school then the": [65535, 0], "school then the master": [65535, 0], "then the master stood": [65535, 0], "the master stood over": [65535, 0], "master stood over him": [65535, 0], "stood over him during": [65535, 0], "over him during a": [65535, 0], "him during a few": [65535, 0], "during a few awful": [65535, 0], "a few awful moments": [65535, 0], "few awful moments and": [65535, 0], "awful moments and finally": [65535, 0], "moments and finally moved": [65535, 0], "and finally moved away": [65535, 0], "finally moved away to": [65535, 0], "moved away to his": [65535, 0], "away to his throne": [65535, 0], "to his throne without": [65535, 0], "his throne without saying": [65535, 0], "throne without saying a": [65535, 0], "without saying a word": [65535, 0], "saying a word but": [65535, 0], "a word but although": [65535, 0], "word but although tom's": [65535, 0], "but although tom's ear": [65535, 0], "although tom's ear tingled": [65535, 0], "tom's ear tingled his": [65535, 0], "ear tingled his heart": [65535, 0], "tingled his heart was": [65535, 0], "his heart was jubilant": [65535, 0], "heart was jubilant as": [65535, 0], "was jubilant as the": [65535, 0], "jubilant as the school": [65535, 0], "as the school quieted": [65535, 0], "the school quieted down": [65535, 0], "school quieted down tom": [65535, 0], "quieted down tom made": [65535, 0], "down tom made an": [65535, 0], "tom made an honest": [65535, 0], "made an honest effort": [65535, 0], "an honest effort to": [65535, 0], "honest effort to study": [65535, 0], "effort to study but": [65535, 0], "to study but the": [65535, 0], "study but the turmoil": [65535, 0], "but the turmoil within": [65535, 0], "the turmoil within him": [65535, 0], "turmoil within him was": [65535, 0], "within him was too": [65535, 0], "him was too great": [65535, 0], "was too great in": [65535, 0], "too great in turn": [65535, 0], "great in turn he": [65535, 0], "in turn he took": [65535, 0], "turn he took his": [65535, 0], "he took his place": [65535, 0], "took his place in": [65535, 0], "his place in the": [65535, 0], "place in the reading": [65535, 0], "in the reading class": [65535, 0], "the reading class and": [65535, 0], "reading class and made": [65535, 0], "class and made a": [65535, 0], "and made a botch": [65535, 0], "made a botch of": [65535, 0], "a botch of it": [65535, 0], "botch of it then": [65535, 0], "of it then in": [65535, 0], "it then in the": [65535, 0], "then in the geography": [65535, 0], "in the geography class": [65535, 0], "the geography class and": [65535, 0], "geography class and turned": [65535, 0], "class and turned lakes": [65535, 0], "and turned lakes into": [65535, 0], "turned lakes into mountains": [65535, 0], "lakes into mountains mountains": [65535, 0], "into mountains mountains into": [65535, 0], "mountains mountains into rivers": [65535, 0], "mountains into rivers and": [65535, 0], "into rivers and rivers": [65535, 0], "rivers and rivers into": [65535, 0], "and rivers into continents": [65535, 0], "rivers into continents till": [65535, 0], "into continents till chaos": [65535, 0], "continents till chaos was": [65535, 0], "till chaos was come": [65535, 0], "chaos was come again": [65535, 0], "was come again then": [65535, 0], "come again then in": [65535, 0], "again then in the": [65535, 0], "then in the spelling": [65535, 0], "in the spelling class": [65535, 0], "the spelling class and": [65535, 0], "spelling class and got": [65535, 0], "class and got turned": [65535, 0], "and got turned down": [65535, 0], "got turned down by": [65535, 0], "turned down by a": [65535, 0], "down by a succession": [65535, 0], "by a succession of": [65535, 0], "a succession of mere": [65535, 0], "succession of mere baby": [65535, 0], "of mere baby words": [65535, 0], "mere baby words till": [65535, 0], "baby words till he": [65535, 0], "words till he brought": [65535, 0], "till he brought up": [65535, 0], "he brought up at": [65535, 0], "brought up at the": [65535, 0], "up at the foot": [65535, 0], "at the foot and": [65535, 0], "the foot and yielded": [65535, 0], "foot and yielded up": [65535, 0], "and yielded up the": [65535, 0], "yielded up the pewter": [65535, 0], "up the pewter medal": [65535, 0], "the pewter medal which": [65535, 0], "pewter medal which he": [65535, 0], "medal which he had": [65535, 0], "which he had worn": [65535, 0], "he had worn with": [65535, 0], "had worn with ostentation": [65535, 0], "worn with ostentation for": [65535, 0], "with ostentation for months": [65535, 0], "monday morning found tom sawyer": [65535, 0], "morning found tom sawyer miserable": [65535, 0], "found tom sawyer miserable monday": [65535, 0], "tom sawyer miserable monday morning": [65535, 0], "sawyer miserable monday morning always": [65535, 0], "miserable monday morning always found": [65535, 0], "monday morning always found him": [65535, 0], "morning always found him so": [65535, 0], "always found him so because": [65535, 0], "found him so because it": [65535, 0], "him so because it began": [65535, 0], "so because it began another": [65535, 0], "because it began another week's": [65535, 0], "it began another week's slow": [65535, 0], "began another week's slow suffering": [65535, 0], "another week's slow suffering in": [65535, 0], "week's slow suffering in school": [65535, 0], "slow suffering in school he": [65535, 0], "suffering in school he generally": [65535, 0], "in school he generally began": [65535, 0], "school he generally began that": [65535, 0], "he generally began that day": [65535, 0], "generally began that day with": [65535, 0], "began that day with wishing": [65535, 0], "that day with wishing he": [65535, 0], "day with wishing he had": [65535, 0], "with wishing he had had": [65535, 0], "wishing he had had no": [65535, 0], "he had had no intervening": [65535, 0], "had had no intervening holiday": [65535, 0], "had no intervening holiday it": [65535, 0], "no intervening holiday it made": [65535, 0], "intervening holiday it made the": [65535, 0], "holiday it made the going": [65535, 0], "it made the going into": [65535, 0], "made the going into captivity": [65535, 0], "the going into captivity and": [65535, 0], "going into captivity and fetters": [65535, 0], "into captivity and fetters again": [65535, 0], "captivity and fetters again so": [65535, 0], "and fetters again so much": [65535, 0], "fetters again so much more": [65535, 0], "again so much more odious": [65535, 0], "so much more odious tom": [65535, 0], "much more odious tom lay": [65535, 0], "more odious tom lay thinking": [65535, 0], "odious tom lay thinking presently": [65535, 0], "tom lay thinking presently it": [65535, 0], "lay thinking presently it occurred": [65535, 0], "thinking presently it occurred to": [65535, 0], "presently it occurred to him": [65535, 0], "it occurred to him that": [65535, 0], "occurred to him that he": [65535, 0], "to him that he wished": [65535, 0], "him that he wished he": [65535, 0], "that he wished he was": [65535, 0], "he wished he was sick": [65535, 0], "wished he was sick then": [65535, 0], "he was sick then he": [65535, 0], "was sick then he could": [65535, 0], "sick then he could stay": [65535, 0], "then he could stay home": [65535, 0], "he could stay home from": [65535, 0], "could stay home from school": [65535, 0], "stay home from school here": [65535, 0], "home from school here was": [65535, 0], "from school here was a": [65535, 0], "school here was a vague": [65535, 0], "here was a vague possibility": [65535, 0], "was a vague possibility he": [65535, 0], "a vague possibility he canvassed": [65535, 0], "vague possibility he canvassed his": [65535, 0], "possibility he canvassed his system": [65535, 0], "he canvassed his system no": [65535, 0], "canvassed his system no ailment": [65535, 0], "his system no ailment was": [65535, 0], "system no ailment was found": [65535, 0], "no ailment was found and": [65535, 0], "ailment was found and he": [65535, 0], "was found and he investigated": [65535, 0], "found and he investigated again": [65535, 0], "and he investigated again this": [65535, 0], "he investigated again this time": [65535, 0], "investigated again this time he": [65535, 0], "again this time he thought": [65535, 0], "this time he thought he": [65535, 0], "time he thought he could": [65535, 0], "he thought he could detect": [65535, 0], "thought he could detect colicky": [65535, 0], "he could detect colicky symptoms": [65535, 0], "could detect colicky symptoms and": [65535, 0], "detect colicky symptoms and he": [65535, 0], "colicky symptoms and he began": [65535, 0], "symptoms and he began to": [65535, 0], "and he began to encourage": [65535, 0], "he began to encourage them": [65535, 0], "began to encourage them with": [65535, 0], "to encourage them with considerable": [65535, 0], "encourage them with considerable hope": [65535, 0], "them with considerable hope but": [65535, 0], "with considerable hope but they": [65535, 0], "considerable hope but they soon": [65535, 0], "hope but they soon grew": [65535, 0], "but they soon grew feeble": [65535, 0], "they soon grew feeble and": [65535, 0], "soon grew feeble and presently": [65535, 0], "grew feeble and presently died": [65535, 0], "feeble and presently died wholly": [65535, 0], "and presently died wholly away": [65535, 0], "presently died wholly away he": [65535, 0], "died wholly away he reflected": [65535, 0], "wholly away he reflected further": [65535, 0], "away he reflected further suddenly": [65535, 0], "he reflected further suddenly he": [65535, 0], "reflected further suddenly he discovered": [65535, 0], "further suddenly he discovered something": [65535, 0], "suddenly he discovered something one": [65535, 0], "he discovered something one of": [65535, 0], "discovered something one of his": [65535, 0], "something one of his upper": [65535, 0], "one of his upper front": [65535, 0], "of his upper front teeth": [65535, 0], "his upper front teeth was": [65535, 0], "upper front teeth was loose": [65535, 0], "front teeth was loose this": [65535, 0], "teeth was loose this was": [65535, 0], "was loose this was lucky": [65535, 0], "loose this was lucky he": [65535, 0], "this was lucky he was": [65535, 0], "was lucky he was about": [65535, 0], "lucky he was about to": [65535, 0], "he was about to begin": [65535, 0], "was about to begin to": [65535, 0], "about to begin to groan": [65535, 0], "to begin to groan as": [65535, 0], "begin to groan as a": [65535, 0], "to groan as a starter": [65535, 0], "groan as a starter as": [65535, 0], "as a starter as he": [65535, 0], "a starter as he called": [65535, 0], "starter as he called it": [65535, 0], "as he called it when": [65535, 0], "he called it when it": [65535, 0], "called it when it occurred": [65535, 0], "it when it occurred to": [65535, 0], "when it occurred to him": [65535, 0], "occurred to him that if": [65535, 0], "to him that if he": [65535, 0], "him that if he came": [65535, 0], "that if he came into": [65535, 0], "if he came into court": [65535, 0], "he came into court with": [65535, 0], "came into court with that": [65535, 0], "into court with that argument": [65535, 0], "court with that argument his": [65535, 0], "with that argument his aunt": [65535, 0], "that argument his aunt would": [65535, 0], "argument his aunt would pull": [65535, 0], "his aunt would pull it": [65535, 0], "aunt would pull it out": [65535, 0], "would pull it out and": [65535, 0], "pull it out and that": [65535, 0], "it out and that would": [65535, 0], "out and that would hurt": [65535, 0], "and that would hurt so": [65535, 0], "that would hurt so he": [65535, 0], "would hurt so he thought": [65535, 0], "hurt so he thought he": [65535, 0], "so he thought he would": [65535, 0], "he thought he would hold": [65535, 0], "thought he would hold the": [65535, 0], "he would hold the tooth": [65535, 0], "would hold the tooth in": [65535, 0], "hold the tooth in reserve": [65535, 0], "the tooth in reserve for": [65535, 0], "tooth in reserve for the": [65535, 0], "in reserve for the present": [65535, 0], "reserve for the present and": [65535, 0], "for the present and seek": [65535, 0], "the present and seek further": [65535, 0], "present and seek further nothing": [65535, 0], "and seek further nothing offered": [65535, 0], "seek further nothing offered for": [65535, 0], "further nothing offered for some": [65535, 0], "nothing offered for some little": [65535, 0], "offered for some little time": [65535, 0], "for some little time and": [65535, 0], "some little time and then": [65535, 0], "little time and then he": [65535, 0], "time and then he remembered": [65535, 0], "and then he remembered hearing": [65535, 0], "then he remembered hearing the": [65535, 0], "he remembered hearing the doctor": [65535, 0], "remembered hearing the doctor tell": [65535, 0], "hearing the doctor tell about": [65535, 0], "the doctor tell about a": [65535, 0], "doctor tell about a certain": [65535, 0], "tell about a certain thing": [65535, 0], "about a certain thing that": [65535, 0], "a certain thing that laid": [65535, 0], "certain thing that laid up": [65535, 0], "thing that laid up a": [65535, 0], "that laid up a patient": [65535, 0], "laid up a patient for": [65535, 0], "up a patient for two": [65535, 0], "a patient for two or": [65535, 0], "patient for two or three": [65535, 0], "for two or three weeks": [65535, 0], "two or three weeks and": [65535, 0], "or three weeks and threatened": [65535, 0], "three weeks and threatened to": [65535, 0], "weeks and threatened to make": [65535, 0], "and threatened to make him": [65535, 0], "threatened to make him lose": [65535, 0], "to make him lose a": [65535, 0], "make him lose a finger": [65535, 0], "him lose a finger so": [65535, 0], "lose a finger so the": [65535, 0], "a finger so the boy": [65535, 0], "finger so the boy eagerly": [65535, 0], "so the boy eagerly drew": [65535, 0], "the boy eagerly drew his": [65535, 0], "boy eagerly drew his sore": [65535, 0], "eagerly drew his sore toe": [65535, 0], "drew his sore toe from": [65535, 0], "his sore toe from under": [65535, 0], "sore toe from under the": [65535, 0], "toe from under the sheet": [65535, 0], "from under the sheet and": [65535, 0], "under the sheet and held": [65535, 0], "the sheet and held it": [65535, 0], "sheet and held it up": [65535, 0], "and held it up for": [65535, 0], "held it up for inspection": [65535, 0], "it up for inspection but": [65535, 0], "up for inspection but now": [65535, 0], "for inspection but now he": [65535, 0], "inspection but now he did": [65535, 0], "but now he did not": [65535, 0], "now he did not know": [65535, 0], "he did not know the": [65535, 0], "did not know the necessary": [65535, 0], "not know the necessary symptoms": [65535, 0], "know the necessary symptoms however": [65535, 0], "the necessary symptoms however it": [65535, 0], "necessary symptoms however it seemed": [65535, 0], "symptoms however it seemed well": [65535, 0], "however it seemed well worth": [65535, 0], "it seemed well worth while": [65535, 0], "seemed well worth while to": [65535, 0], "well worth while to chance": [65535, 0], "worth while to chance it": [65535, 0], "while to chance it so": [65535, 0], "to chance it so he": [65535, 0], "chance it so he fell": [65535, 0], "it so he fell to": [65535, 0], "so he fell to groaning": [65535, 0], "he fell to groaning with": [65535, 0], "fell to groaning with considerable": [65535, 0], "to groaning with considerable spirit": [65535, 0], "groaning with considerable spirit but": [65535, 0], "with considerable spirit but sid": [65535, 0], "considerable spirit but sid slept": [65535, 0], "spirit but sid slept on": [65535, 0], "but sid slept on unconscious": [65535, 0], "sid slept on unconscious tom": [65535, 0], "slept on unconscious tom groaned": [65535, 0], "on unconscious tom groaned louder": [65535, 0], "unconscious tom groaned louder and": [65535, 0], "tom groaned louder and fancied": [65535, 0], "groaned louder and fancied that": [65535, 0], "louder and fancied that he": [65535, 0], "and fancied that he began": [65535, 0], "fancied that he began to": [65535, 0], "that he began to feel": [65535, 0], "he began to feel pain": [65535, 0], "began to feel pain in": [65535, 0], "to feel pain in the": [65535, 0], "feel pain in the toe": [65535, 0], "pain in the toe no": [65535, 0], "in the toe no result": [65535, 0], "the toe no result from": [65535, 0], "toe no result from sid": [65535, 0], "no result from sid tom": [65535, 0], "result from sid tom was": [65535, 0], "from sid tom was panting": [65535, 0], "sid tom was panting with": [65535, 0], "tom was panting with his": [65535, 0], "was panting with his exertions": [65535, 0], "panting with his exertions by": [65535, 0], "with his exertions by this": [65535, 0], "his exertions by this time": [65535, 0], "exertions by this time he": [65535, 0], "by this time he took": [65535, 0], "this time he took a": [65535, 0], "time he took a rest": [65535, 0], "he took a rest and": [65535, 0], "took a rest and then": [65535, 0], "a rest and then swelled": [65535, 0], "rest and then swelled himself": [65535, 0], "and then swelled himself up": [65535, 0], "then swelled himself up and": [65535, 0], "swelled himself up and fetched": [65535, 0], "himself up and fetched a": [65535, 0], "up and fetched a succession": [65535, 0], "and fetched a succession of": [65535, 0], "fetched a succession of admirable": [65535, 0], "a succession of admirable groans": [65535, 0], "succession of admirable groans sid": [65535, 0], "of admirable groans sid snored": [65535, 0], "admirable groans sid snored on": [65535, 0], "groans sid snored on tom": [65535, 0], "sid snored on tom was": [65535, 0], "snored on tom was aggravated": [65535, 0], "on tom was aggravated he": [65535, 0], "tom was aggravated he said": [65535, 0], "was aggravated he said sid": [65535, 0], "aggravated he said sid sid": [65535, 0], "he said sid sid and": [65535, 0], "said sid sid and shook": [65535, 0], "sid sid and shook him": [65535, 0], "sid and shook him this": [65535, 0], "and shook him this course": [65535, 0], "shook him this course worked": [65535, 0], "him this course worked well": [65535, 0], "this course worked well and": [65535, 0], "course worked well and tom": [65535, 0], "worked well and tom began": [65535, 0], "well and tom began to": [65535, 0], "and tom began to groan": [65535, 0], "tom began to groan again": [65535, 0], "began to groan again sid": [65535, 0], "to groan again sid yawned": [65535, 0], "groan again sid yawned stretched": [65535, 0], "again sid yawned stretched then": [65535, 0], "sid yawned stretched then brought": [65535, 0], "yawned stretched then brought himself": [65535, 0], "stretched then brought himself up": [65535, 0], "then brought himself up on": [65535, 0], "brought himself up on his": [65535, 0], "himself up on his elbow": [65535, 0], "up on his elbow with": [65535, 0], "on his elbow with a": [65535, 0], "his elbow with a snort": [65535, 0], "elbow with a snort and": [65535, 0], "with a snort and began": [65535, 0], "a snort and began to": [65535, 0], "snort and began to stare": [65535, 0], "and began to stare at": [65535, 0], "began to stare at tom": [65535, 0], "to stare at tom tom": [65535, 0], "stare at tom tom went": [65535, 0], "at tom tom went on": [65535, 0], "tom tom went on groaning": [65535, 0], "tom went on groaning sid": [65535, 0], "went on groaning sid said": [65535, 0], "on groaning sid said tom": [65535, 0], "groaning sid said tom say": [65535, 0], "sid said tom say tom": [65535, 0], "said tom say tom no": [65535, 0], "tom say tom no response": [65535, 0], "say tom no response here": [65535, 0], "tom no response here tom": [65535, 0], "no response here tom tom": [65535, 0], "response here tom tom what": [65535, 0], "here tom tom what is": [65535, 0], "tom tom what is the": [65535, 0], "tom what is the matter": [65535, 0], "what is the matter tom": [65535, 0], "is the matter tom and": [65535, 0], "the matter tom and he": [65535, 0], "matter tom and he shook": [65535, 0], "tom and he shook him": [65535, 0], "and he shook him and": [65535, 0], "he shook him and looked": [65535, 0], "shook him and looked in": [65535, 0], "him and looked in his": [65535, 0], "and looked in his face": [65535, 0], "looked in his face anxiously": [65535, 0], "in his face anxiously tom": [65535, 0], "his face anxiously tom moaned": [65535, 0], "face anxiously tom moaned out": [65535, 0], "anxiously tom moaned out oh": [65535, 0], "tom moaned out oh don't": [65535, 0], "moaned out oh don't sid": [65535, 0], "out oh don't sid don't": [65535, 0], "oh don't sid don't joggle": [65535, 0], "don't sid don't joggle me": [65535, 0], "sid don't joggle me why": [65535, 0], "don't joggle me why what's": [65535, 0], "joggle me why what's the": [65535, 0], "me why what's the matter": [65535, 0], "why what's the matter tom": [65535, 0], "what's the matter tom i": [65535, 0], "the matter tom i must": [65535, 0], "matter tom i must call": [65535, 0], "tom i must call auntie": [65535, 0], "i must call auntie no": [65535, 0], "must call auntie no never": [65535, 0], "call auntie no never mind": [65535, 0], "auntie no never mind it'll": [65535, 0], "no never mind it'll be": [65535, 0], "never mind it'll be over": [65535, 0], "mind it'll be over by": [65535, 0], "it'll be over by and": [65535, 0], "be over by and by": [65535, 0], "over by and by maybe": [65535, 0], "by and by maybe don't": [65535, 0], "and by maybe don't call": [65535, 0], "by maybe don't call anybody": [65535, 0], "maybe don't call anybody but": [65535, 0], "don't call anybody but i": [65535, 0], "call anybody but i must": [65535, 0], "anybody but i must don't": [65535, 0], "but i must don't groan": [65535, 0], "i must don't groan so": [65535, 0], "must don't groan so tom": [65535, 0], "don't groan so tom it's": [65535, 0], "groan so tom it's awful": [65535, 0], "so tom it's awful how": [65535, 0], "tom it's awful how long": [65535, 0], "it's awful how long you": [65535, 0], "awful how long you been": [65535, 0], "how long you been this": [65535, 0], "long you been this way": [65535, 0], "you been this way hours": [65535, 0], "been this way hours ouch": [65535, 0], "this way hours ouch oh": [65535, 0], "way hours ouch oh don't": [65535, 0], "hours ouch oh don't stir": [65535, 0], "ouch oh don't stir so": [65535, 0], "oh don't stir so sid": [65535, 0], "don't stir so sid you'll": [65535, 0], "stir so sid you'll kill": [65535, 0], "so sid you'll kill me": [65535, 0], "sid you'll kill me tom": [65535, 0], "you'll kill me tom why": [65535, 0], "kill me tom why didn't": [65535, 0], "me tom why didn't you": [65535, 0], "tom why didn't you wake": [65535, 0], "why didn't you wake me": [65535, 0], "didn't you wake me sooner": [65535, 0], "you wake me sooner oh": [65535, 0], "wake me sooner oh tom": [65535, 0], "me sooner oh tom don't": [65535, 0], "sooner oh tom don't it": [65535, 0], "oh tom don't it makes": [65535, 0], "tom don't it makes my": [65535, 0], "don't it makes my flesh": [65535, 0], "it makes my flesh crawl": [65535, 0], "makes my flesh crawl to": [65535, 0], "my flesh crawl to hear": [65535, 0], "flesh crawl to hear you": [65535, 0], "crawl to hear you tom": [65535, 0], "to hear you tom what": [65535, 0], "hear you tom what is": [65535, 0], "you tom what is the": [65535, 0], "what is the matter i": [65535, 0], "is the matter i forgive": [65535, 0], "the matter i forgive you": [65535, 0], "matter i forgive you everything": [65535, 0], "i forgive you everything sid": [65535, 0], "forgive you everything sid groan": [65535, 0], "you everything sid groan everything": [65535, 0], "everything sid groan everything you've": [65535, 0], "sid groan everything you've ever": [65535, 0], "groan everything you've ever done": [65535, 0], "everything you've ever done to": [65535, 0], "you've ever done to me": [65535, 0], "ever done to me when": [65535, 0], "done to me when i'm": [65535, 0], "to me when i'm gone": [65535, 0], "me when i'm gone oh": [65535, 0], "when i'm gone oh tom": [65535, 0], "i'm gone oh tom you": [65535, 0], "gone oh tom you ain't": [65535, 0], "oh tom you ain't dying": [65535, 0], "tom you ain't dying are": [65535, 0], "you ain't dying are you": [65535, 0], "ain't dying are you don't": [65535, 0], "dying are you don't tom": [65535, 0], "are you don't tom oh": [65535, 0], "you don't tom oh don't": [65535, 0], "don't tom oh don't maybe": [65535, 0], "tom oh don't maybe i": [65535, 0], "oh don't maybe i forgive": [65535, 0], "don't maybe i forgive everybody": [65535, 0], "maybe i forgive everybody sid": [65535, 0], "i forgive everybody sid groan": [65535, 0], "forgive everybody sid groan tell": [65535, 0], "everybody sid groan tell 'em": [65535, 0], "sid groan tell 'em so": [65535, 0], "groan tell 'em so sid": [65535, 0], "tell 'em so sid and": [65535, 0], "'em so sid and sid": [65535, 0], "so sid and sid you": [65535, 0], "sid and sid you give": [65535, 0], "and sid you give my": [65535, 0], "sid you give my window": [65535, 0], "you give my window sash": [65535, 0], "give my window sash and": [65535, 0], "my window sash and my": [65535, 0], "window sash and my cat": [65535, 0], "sash and my cat with": [65535, 0], "and my cat with one": [65535, 0], "my cat with one eye": [65535, 0], "cat with one eye to": [65535, 0], "with one eye to that": [65535, 0], "one eye to that new": [65535, 0], "eye to that new girl": [65535, 0], "to that new girl that's": [65535, 0], "that new girl that's come": [65535, 0], "new girl that's come to": [65535, 0], "girl that's come to town": [65535, 0], "that's come to town and": [65535, 0], "come to town and tell": [65535, 0], "to town and tell her": [65535, 0], "town and tell her but": [65535, 0], "and tell her but sid": [65535, 0], "tell her but sid had": [65535, 0], "her but sid had snatched": [65535, 0], "but sid had snatched his": [65535, 0], "sid had snatched his clothes": [65535, 0], "had snatched his clothes and": [65535, 0], "snatched his clothes and gone": [65535, 0], "his clothes and gone tom": [65535, 0], "clothes and gone tom was": [65535, 0], "and gone tom was suffering": [65535, 0], "gone tom was suffering in": [65535, 0], "tom was suffering in reality": [65535, 0], "was suffering in reality now": [65535, 0], "suffering in reality now so": [65535, 0], "in reality now so handsomely": [65535, 0], "reality now so handsomely was": [65535, 0], "now so handsomely was his": [65535, 0], "so handsomely was his imagination": [65535, 0], "handsomely was his imagination working": [65535, 0], "was his imagination working and": [65535, 0], "his imagination working and so": [65535, 0], "imagination working and so his": [65535, 0], "working and so his groans": [65535, 0], "and so his groans had": [65535, 0], "so his groans had gathered": [65535, 0], "his groans had gathered quite": [65535, 0], "groans had gathered quite a": [65535, 0], "had gathered quite a genuine": [65535, 0], "gathered quite a genuine tone": [65535, 0], "quite a genuine tone sid": [65535, 0], "a genuine tone sid flew": [65535, 0], "genuine tone sid flew down": [65535, 0], "tone sid flew down stairs": [65535, 0], "sid flew down stairs and": [65535, 0], "flew down stairs and said": [65535, 0], "down stairs and said oh": [65535, 0], "stairs and said oh aunt": [65535, 0], "and said oh aunt polly": [65535, 0], "said oh aunt polly come": [65535, 0], "oh aunt polly come tom's": [65535, 0], "aunt polly come tom's dying": [65535, 0], "polly come tom's dying dying": [65535, 0], "come tom's dying dying yes'm": [65535, 0], "tom's dying dying yes'm don't": [65535, 0], "dying dying yes'm don't wait": [65535, 0], "dying yes'm don't wait come": [65535, 0], "yes'm don't wait come quick": [65535, 0], "don't wait come quick rubbage": [65535, 0], "wait come quick rubbage i": [65535, 0], "come quick rubbage i don't": [65535, 0], "quick rubbage i don't believe": [65535, 0], "rubbage i don't believe it": [65535, 0], "i don't believe it but": [65535, 0], "don't believe it but she": [65535, 0], "believe it but she fled": [65535, 0], "it but she fled up": [65535, 0], "but she fled up stairs": [65535, 0], "she fled up stairs nevertheless": [65535, 0], "fled up stairs nevertheless with": [65535, 0], "up stairs nevertheless with sid": [65535, 0], "stairs nevertheless with sid and": [65535, 0], "nevertheless with sid and mary": [65535, 0], "with sid and mary at": [65535, 0], "sid and mary at her": [65535, 0], "and mary at her heels": [65535, 0], "mary at her heels and": [65535, 0], "at her heels and her": [65535, 0], "her heels and her face": [65535, 0], "heels and her face grew": [65535, 0], "and her face grew white": [65535, 0], "her face grew white too": [65535, 0], "face grew white too and": [65535, 0], "grew white too and her": [65535, 0], "white too and her lip": [65535, 0], "too and her lip trembled": [65535, 0], "and her lip trembled when": [65535, 0], "her lip trembled when she": [65535, 0], "lip trembled when she reached": [65535, 0], "trembled when she reached the": [65535, 0], "when she reached the bedside": [65535, 0], "she reached the bedside she": [65535, 0], "reached the bedside she gasped": [65535, 0], "the bedside she gasped out": [65535, 0], "bedside she gasped out you": [65535, 0], "she gasped out you tom": [65535, 0], "gasped out you tom tom": [65535, 0], "out you tom tom what's": [65535, 0], "you tom tom what's the": [65535, 0], "tom tom what's the matter": [65535, 0], "tom what's the matter with": [65535, 0], "what's the matter with you": [65535, 0], "the matter with you oh": [65535, 0], "matter with you oh auntie": [65535, 0], "with you oh auntie i'm": [65535, 0], "you oh auntie i'm what's": [65535, 0], "oh auntie i'm what's the": [65535, 0], "auntie i'm what's the matter": [65535, 0], "i'm what's the matter with": [65535, 0], "the matter with you what": [65535, 0], "matter with you what is": [65535, 0], "with you what is the": [65535, 0], "you what is the matter": [65535, 0], "what is the matter with": [65535, 0], "is the matter with you": [65535, 0], "the matter with you child": [65535, 0], "matter with you child oh": [65535, 0], "with you child oh auntie": [65535, 0], "you child oh auntie my": [65535, 0], "child oh auntie my sore": [65535, 0], "oh auntie my sore toe's": [65535, 0], "auntie my sore toe's mortified": [65535, 0], "my sore toe's mortified the": [65535, 0], "sore toe's mortified the old": [65535, 0], "toe's mortified the old lady": [65535, 0], "mortified the old lady sank": [65535, 0], "the old lady sank down": [65535, 0], "old lady sank down into": [65535, 0], "lady sank down into a": [65535, 0], "sank down into a chair": [65535, 0], "down into a chair and": [65535, 0], "into a chair and laughed": [65535, 0], "a chair and laughed a": [65535, 0], "chair and laughed a little": [65535, 0], "and laughed a little then": [65535, 0], "laughed a little then cried": [65535, 0], "a little then cried a": [65535, 0], "little then cried a little": [65535, 0], "then cried a little then": [65535, 0], "cried a little then did": [65535, 0], "a little then did both": [65535, 0], "little then did both together": [65535, 0], "then did both together this": [65535, 0], "did both together this restored": [65535, 0], "both together this restored her": [65535, 0], "together this restored her and": [65535, 0], "this restored her and she": [65535, 0], "restored her and she said": [65535, 0], "her and she said tom": [65535, 0], "and she said tom what": [65535, 0], "she said tom what a": [65535, 0], "said tom what a turn": [65535, 0], "tom what a turn you": [65535, 0], "what a turn you did": [65535, 0], "a turn you did give": [65535, 0], "turn you did give me": [65535, 0], "you did give me now": [65535, 0], "did give me now you": [65535, 0], "give me now you shut": [65535, 0], "me now you shut up": [65535, 0], "now you shut up that": [65535, 0], "you shut up that nonsense": [65535, 0], "shut up that nonsense and": [65535, 0], "up that nonsense and climb": [65535, 0], "that nonsense and climb out": [65535, 0], "nonsense and climb out of": [65535, 0], "and climb out of this": [65535, 0], "climb out of this the": [65535, 0], "out of this the groans": [65535, 0], "of this the groans ceased": [65535, 0], "this the groans ceased and": [65535, 0], "the groans ceased and the": [65535, 0], "groans ceased and the pain": [65535, 0], "ceased and the pain vanished": [65535, 0], "and the pain vanished from": [65535, 0], "the pain vanished from the": [65535, 0], "pain vanished from the toe": [65535, 0], "vanished from the toe the": [65535, 0], "from the toe the boy": [65535, 0], "the toe the boy felt": [65535, 0], "toe the boy felt a": [65535, 0], "the boy felt a little": [65535, 0], "boy felt a little foolish": [65535, 0], "felt a little foolish and": [65535, 0], "a little foolish and he": [65535, 0], "little foolish and he said": [65535, 0], "foolish and he said aunt": [65535, 0], "and he said aunt polly": [65535, 0], "he said aunt polly it": [65535, 0], "said aunt polly it seemed": [65535, 0], "aunt polly it seemed mortified": [65535, 0], "polly it seemed mortified and": [65535, 0], "it seemed mortified and it": [65535, 0], "seemed mortified and it hurt": [65535, 0], "mortified and it hurt so": [65535, 0], "and it hurt so i": [65535, 0], "it hurt so i never": [65535, 0], "hurt so i never minded": [65535, 0], "so i never minded my": [65535, 0], "i never minded my tooth": [65535, 0], "never minded my tooth at": [65535, 0], "minded my tooth at all": [65535, 0], "my tooth at all your": [65535, 0], "tooth at all your tooth": [65535, 0], "at all your tooth indeed": [65535, 0], "all your tooth indeed what's": [65535, 0], "your tooth indeed what's the": [65535, 0], "tooth indeed what's the matter": [65535, 0], "indeed what's the matter with": [65535, 0], "what's the matter with your": [65535, 0], "the matter with your tooth": [65535, 0], "matter with your tooth one": [65535, 0], "with your tooth one of": [65535, 0], "your tooth one of them's": [65535, 0], "tooth one of them's loose": [65535, 0], "one of them's loose and": [65535, 0], "of them's loose and it": [65535, 0], "them's loose and it aches": [65535, 0], "loose and it aches perfectly": [65535, 0], "and it aches perfectly awful": [65535, 0], "it aches perfectly awful there": [65535, 0], "aches perfectly awful there there": [65535, 0], "perfectly awful there there now": [65535, 0], "awful there there now don't": [65535, 0], "there there now don't begin": [65535, 0], "there now don't begin that": [65535, 0], "now don't begin that groaning": [65535, 0], "don't begin that groaning again": [65535, 0], "begin that groaning again open": [65535, 0], "that groaning again open your": [65535, 0], "groaning again open your mouth": [65535, 0], "again open your mouth well": [65535, 0], "open your mouth well your": [65535, 0], "your mouth well your tooth": [65535, 0], "mouth well your tooth is": [65535, 0], "well your tooth is loose": [65535, 0], "your tooth is loose but": [65535, 0], "tooth is loose but you're": [65535, 0], "is loose but you're not": [65535, 0], "loose but you're not going": [65535, 0], "but you're not going to": [65535, 0], "you're not going to die": [65535, 0], "not going to die about": [65535, 0], "going to die about that": [65535, 0], "to die about that mary": [65535, 0], "die about that mary get": [65535, 0], "about that mary get me": [65535, 0], "that mary get me a": [65535, 0], "mary get me a silk": [65535, 0], "get me a silk thread": [65535, 0], "me a silk thread and": [65535, 0], "a silk thread and a": [65535, 0], "silk thread and a chunk": [65535, 0], "thread and a chunk of": [65535, 0], "and a chunk of fire": [65535, 0], "a chunk of fire out": [65535, 0], "chunk of fire out of": [65535, 0], "of fire out of the": [65535, 0], "fire out of the kitchen": [65535, 0], "out of the kitchen tom": [65535, 0], "of the kitchen tom said": [65535, 0], "the kitchen tom said oh": [65535, 0], "kitchen tom said oh please": [65535, 0], "tom said oh please auntie": [65535, 0], "said oh please auntie don't": [65535, 0], "oh please auntie don't pull": [65535, 0], "please auntie don't pull it": [65535, 0], "auntie don't pull it out": [65535, 0], "don't pull it out it": [65535, 0], "pull it out it don't": [65535, 0], "it out it don't hurt": [65535, 0], "out it don't hurt any": [65535, 0], "it don't hurt any more": [65535, 0], "don't hurt any more i": [65535, 0], "hurt any more i wish": [65535, 0], "any more i wish i": [65535, 0], "more i wish i may": [65535, 0], "i wish i may never": [65535, 0], "wish i may never stir": [65535, 0], "i may never stir if": [65535, 0], "may never stir if it": [65535, 0], "never stir if it does": [65535, 0], "stir if it does please": [65535, 0], "if it does please don't": [65535, 0], "it does please don't auntie": [65535, 0], "does please don't auntie i": [65535, 0], "please don't auntie i don't": [65535, 0], "don't auntie i don't want": [65535, 0], "auntie i don't want to": [65535, 0], "i don't want to stay": [65535, 0], "don't want to stay home": [65535, 0], "want to stay home from": [65535, 0], "to stay home from school": [65535, 0], "stay home from school oh": [65535, 0], "home from school oh you": [65535, 0], "from school oh you don't": [65535, 0], "school oh you don't don't": [65535, 0], "oh you don't don't you": [65535, 0], "you don't don't you so": [65535, 0], "don't don't you so all": [65535, 0], "don't you so all this": [65535, 0], "you so all this row": [65535, 0], "so all this row was": [65535, 0], "all this row was because": [65535, 0], "this row was because you": [65535, 0], "row was because you thought": [65535, 0], "was because you thought you'd": [65535, 0], "because you thought you'd get": [65535, 0], "you thought you'd get to": [65535, 0], "thought you'd get to stay": [65535, 0], "you'd get to stay home": [65535, 0], "get to stay home from": [65535, 0], "stay home from school and": [65535, 0], "home from school and go": [65535, 0], "from school and go a": [65535, 0], "school and go a fishing": [65535, 0], "and go a fishing tom": [65535, 0], "go a fishing tom tom": [65535, 0], "a fishing tom tom i": [65535, 0], "fishing tom tom i love": [65535, 0], "tom tom i love you": [65535, 0], "tom i love you so": [65535, 0], "i love you so and": [65535, 0], "love you so and you": [65535, 0], "you so and you seem": [65535, 0], "so and you seem to": [65535, 0], "and you seem to try": [65535, 0], "you seem to try every": [65535, 0], "seem to try every way": [65535, 0], "to try every way you": [65535, 0], "try every way you can": [65535, 0], "every way you can to": [65535, 0], "way you can to break": [65535, 0], "you can to break my": [65535, 0], "can to break my old": [65535, 0], "to break my old heart": [65535, 0], "break my old heart with": [65535, 0], "my old heart with your": [65535, 0], "old heart with your outrageousness": [65535, 0], "heart with your outrageousness by": [65535, 0], "with your outrageousness by this": [65535, 0], "your outrageousness by this time": [65535, 0], "outrageousness by this time the": [65535, 0], "by this time the dental": [65535, 0], "this time the dental instruments": [65535, 0], "time the dental instruments were": [65535, 0], "the dental instruments were ready": [65535, 0], "dental instruments were ready the": [65535, 0], "instruments were ready the old": [65535, 0], "were ready the old lady": [65535, 0], "ready the old lady made": [65535, 0], "the old lady made one": [65535, 0], "old lady made one end": [65535, 0], "lady made one end of": [65535, 0], "made one end of the": [65535, 0], "one end of the silk": [65535, 0], "end of the silk thread": [65535, 0], "of the silk thread fast": [65535, 0], "the silk thread fast to": [65535, 0], "silk thread fast to tom's": [65535, 0], "thread fast to tom's tooth": [65535, 0], "fast to tom's tooth with": [65535, 0], "to tom's tooth with a": [65535, 0], "tom's tooth with a loop": [65535, 0], "tooth with a loop and": [65535, 0], "with a loop and tied": [65535, 0], "a loop and tied the": [65535, 0], "loop and tied the other": [65535, 0], "and tied the other to": [65535, 0], "tied the other to the": [65535, 0], "the other to the bedpost": [65535, 0], "other to the bedpost then": [65535, 0], "to the bedpost then she": [65535, 0], "the bedpost then she seized": [65535, 0], "bedpost then she seized the": [65535, 0], "then she seized the chunk": [65535, 0], "she seized the chunk of": [65535, 0], "seized the chunk of fire": [65535, 0], "the chunk of fire and": [65535, 0], "chunk of fire and suddenly": [65535, 0], "of fire and suddenly thrust": [65535, 0], "fire and suddenly thrust it": [65535, 0], "and suddenly thrust it almost": [65535, 0], "suddenly thrust it almost into": [65535, 0], "thrust it almost into the": [65535, 0], "it almost into the boy's": [65535, 0], "almost into the boy's face": [65535, 0], "into the boy's face the": [65535, 0], "the boy's face the tooth": [65535, 0], "boy's face the tooth hung": [65535, 0], "face the tooth hung dangling": [65535, 0], "the tooth hung dangling by": [65535, 0], "tooth hung dangling by the": [65535, 0], "hung dangling by the bedpost": [65535, 0], "dangling by the bedpost now": [65535, 0], "by the bedpost now but": [65535, 0], "the bedpost now but all": [65535, 0], "bedpost now but all trials": [65535, 0], "now but all trials bring": [65535, 0], "but all trials bring their": [65535, 0], "all trials bring their compensations": [65535, 0], "trials bring their compensations as": [65535, 0], "bring their compensations as tom": [65535, 0], "their compensations as tom wended": [65535, 0], "compensations as tom wended to": [65535, 0], "as tom wended to school": [65535, 0], "tom wended to school after": [65535, 0], "wended to school after breakfast": [65535, 0], "to school after breakfast he": [65535, 0], "school after breakfast he was": [65535, 0], "after breakfast he was the": [65535, 0], "breakfast he was the envy": [65535, 0], "he was the envy of": [65535, 0], "was the envy of every": [65535, 0], "the envy of every boy": [65535, 0], "envy of every boy he": [65535, 0], "of every boy he met": [65535, 0], "every boy he met because": [65535, 0], "boy he met because the": [65535, 0], "he met because the gap": [65535, 0], "met because the gap in": [65535, 0], "because the gap in his": [65535, 0], "the gap in his upper": [65535, 0], "gap in his upper row": [65535, 0], "in his upper row of": [65535, 0], "his upper row of teeth": [65535, 0], "upper row of teeth enabled": [65535, 0], "row of teeth enabled him": [65535, 0], "of teeth enabled him to": [65535, 0], "teeth enabled him to expectorate": [65535, 0], "enabled him to expectorate in": [65535, 0], "him to expectorate in a": [65535, 0], "to expectorate in a new": [65535, 0], "expectorate in a new and": [65535, 0], "in a new and admirable": [65535, 0], "a new and admirable way": [65535, 0], "new and admirable way he": [65535, 0], "and admirable way he gathered": [65535, 0], "admirable way he gathered quite": [65535, 0], "way he gathered quite a": [65535, 0], "he gathered quite a following": [65535, 0], "gathered quite a following of": [65535, 0], "quite a following of lads": [65535, 0], "a following of lads interested": [65535, 0], "following of lads interested in": [65535, 0], "of lads interested in the": [65535, 0], "lads interested in the exhibition": [65535, 0], "interested in the exhibition and": [65535, 0], "in the exhibition and one": [65535, 0], "the exhibition and one that": [65535, 0], "exhibition and one that had": [65535, 0], "and one that had cut": [65535, 0], "one that had cut his": [65535, 0], "that had cut his finger": [65535, 0], "had cut his finger and": [65535, 0], "cut his finger and had": [65535, 0], "his finger and had been": [65535, 0], "finger and had been a": [65535, 0], "and had been a centre": [65535, 0], "had been a centre of": [65535, 0], "been a centre of fascination": [65535, 0], "a centre of fascination and": [65535, 0], "centre of fascination and homage": [65535, 0], "of fascination and homage up": [65535, 0], "fascination and homage up to": [65535, 0], "and homage up to this": [65535, 0], "homage up to this time": [65535, 0], "up to this time now": [65535, 0], "to this time now found": [65535, 0], "this time now found himself": [65535, 0], "time now found himself suddenly": [65535, 0], "now found himself suddenly without": [65535, 0], "found himself suddenly without an": [65535, 0], "himself suddenly without an adherent": [65535, 0], "suddenly without an adherent and": [65535, 0], "without an adherent and shorn": [65535, 0], "an adherent and shorn of": [65535, 0], "adherent and shorn of his": [65535, 0], "and shorn of his glory": [65535, 0], "shorn of his glory his": [65535, 0], "of his glory his heart": [65535, 0], "his glory his heart was": [65535, 0], "glory his heart was heavy": [65535, 0], "his heart was heavy and": [65535, 0], "heart was heavy and he": [65535, 0], "was heavy and he said": [65535, 0], "heavy and he said with": [65535, 0], "and he said with a": [65535, 0], "he said with a disdain": [65535, 0], "said with a disdain which": [65535, 0], "with a disdain which he": [65535, 0], "a disdain which he did": [65535, 0], "disdain which he did not": [65535, 0], "which he did not feel": [65535, 0], "he did not feel that": [65535, 0], "did not feel that it": [65535, 0], "not feel that it wasn't": [65535, 0], "feel that it wasn't anything": [65535, 0], "that it wasn't anything to": [65535, 0], "it wasn't anything to spit": [65535, 0], "wasn't anything to spit like": [65535, 0], "anything to spit like tom": [65535, 0], "to spit like tom sawyer": [65535, 0], "spit like tom sawyer but": [65535, 0], "like tom sawyer but another": [65535, 0], "tom sawyer but another boy": [65535, 0], "sawyer but another boy said": [65535, 0], "but another boy said sour": [65535, 0], "another boy said sour grapes": [65535, 0], "boy said sour grapes and": [65535, 0], "said sour grapes and he": [65535, 0], "sour grapes and he wandered": [65535, 0], "grapes and he wandered away": [65535, 0], "and he wandered away a": [65535, 0], "he wandered away a dismantled": [65535, 0], "wandered away a dismantled hero": [65535, 0], "away a dismantled hero shortly": [65535, 0], "a dismantled hero shortly tom": [65535, 0], "dismantled hero shortly tom came": [65535, 0], "hero shortly tom came upon": [65535, 0], "shortly tom came upon the": [65535, 0], "tom came upon the juvenile": [65535, 0], "came upon the juvenile pariah": [65535, 0], "upon the juvenile pariah of": [65535, 0], "the juvenile pariah of the": [65535, 0], "juvenile pariah of the village": [65535, 0], "pariah of the village huckleberry": [65535, 0], "of the village huckleberry finn": [65535, 0], "the village huckleberry finn son": [65535, 0], "village huckleberry finn son of": [65535, 0], "huckleberry finn son of the": [65535, 0], "finn son of the town": [65535, 0], "son of the town drunkard": [65535, 0], "of the town drunkard huckleberry": [65535, 0], "the town drunkard huckleberry was": [65535, 0], "town drunkard huckleberry was cordially": [65535, 0], "drunkard huckleberry was cordially hated": [65535, 0], "huckleberry was cordially hated and": [65535, 0], "was cordially hated and dreaded": [65535, 0], "cordially hated and dreaded by": [65535, 0], "hated and dreaded by all": [65535, 0], "and dreaded by all the": [65535, 0], "dreaded by all the mothers": [65535, 0], "by all the mothers of": [65535, 0], "all the mothers of the": [65535, 0], "the mothers of the town": [65535, 0], "mothers of the town because": [65535, 0], "of the town because he": [65535, 0], "the town because he was": [65535, 0], "town because he was idle": [65535, 0], "because he was idle and": [65535, 0], "he was idle and lawless": [65535, 0], "was idle and lawless and": [65535, 0], "idle and lawless and vulgar": [65535, 0], "and lawless and vulgar and": [65535, 0], "lawless and vulgar and bad": [65535, 0], "and vulgar and bad and": [65535, 0], "vulgar and bad and because": [65535, 0], "and bad and because all": [65535, 0], "bad and because all their": [65535, 0], "and because all their children": [65535, 0], "because all their children admired": [65535, 0], "all their children admired him": [65535, 0], "their children admired him so": [65535, 0], "children admired him so and": [65535, 0], "admired him so and delighted": [65535, 0], "him so and delighted in": [65535, 0], "so and delighted in his": [65535, 0], "and delighted in his forbidden": [65535, 0], "delighted in his forbidden society": [65535, 0], "in his forbidden society and": [65535, 0], "his forbidden society and wished": [65535, 0], "forbidden society and wished they": [65535, 0], "society and wished they dared": [65535, 0], "and wished they dared to": [65535, 0], "wished they dared to be": [65535, 0], "they dared to be like": [65535, 0], "dared to be like him": [65535, 0], "to be like him tom": [65535, 0], "be like him tom was": [65535, 0], "like him tom was like": [65535, 0], "him tom was like the": [65535, 0], "tom was like the rest": [65535, 0], "was like the rest of": [65535, 0], "like the rest of the": [65535, 0], "the rest of the respectable": [65535, 0], "rest of the respectable boys": [65535, 0], "of the respectable boys in": [65535, 0], "the respectable boys in that": [65535, 0], "respectable boys in that he": [65535, 0], "boys in that he envied": [65535, 0], "in that he envied huckleberry": [65535, 0], "that he envied huckleberry his": [65535, 0], "he envied huckleberry his gaudy": [65535, 0], "envied huckleberry his gaudy outcast": [65535, 0], "huckleberry his gaudy outcast condition": [65535, 0], "his gaudy outcast condition and": [65535, 0], "gaudy outcast condition and was": [65535, 0], "outcast condition and was under": [65535, 0], "condition and was under strict": [65535, 0], "and was under strict orders": [65535, 0], "was under strict orders not": [65535, 0], "under strict orders not to": [65535, 0], "strict orders not to play": [65535, 0], "orders not to play with": [65535, 0], "not to play with him": [65535, 0], "to play with him so": [65535, 0], "play with him so he": [65535, 0], "with him so he played": [65535, 0], "him so he played with": [65535, 0], "so he played with him": [65535, 0], "he played with him every": [65535, 0], "played with him every time": [65535, 0], "with him every time he": [65535, 0], "him every time he got": [65535, 0], "every time he got a": [65535, 0], "time he got a chance": [65535, 0], "he got a chance huckleberry": [65535, 0], "got a chance huckleberry was": [65535, 0], "a chance huckleberry was always": [65535, 0], "chance huckleberry was always dressed": [65535, 0], "huckleberry was always dressed in": [65535, 0], "was always dressed in the": [65535, 0], "always dressed in the cast": [65535, 0], "dressed in the cast off": [65535, 0], "in the cast off clothes": [65535, 0], "the cast off clothes of": [65535, 0], "cast off clothes of full": [65535, 0], "off clothes of full grown": [65535, 0], "clothes of full grown men": [65535, 0], "of full grown men and": [65535, 0], "full grown men and they": [65535, 0], "grown men and they were": [65535, 0], "men and they were in": [65535, 0], "and they were in perennial": [65535, 0], "they were in perennial bloom": [65535, 0], "were in perennial bloom and": [65535, 0], "in perennial bloom and fluttering": [65535, 0], "perennial bloom and fluttering with": [65535, 0], "bloom and fluttering with rags": [65535, 0], "and fluttering with rags his": [65535, 0], "fluttering with rags his hat": [65535, 0], "with rags his hat was": [65535, 0], "rags his hat was a": [65535, 0], "his hat was a vast": [65535, 0], "hat was a vast ruin": [65535, 0], "was a vast ruin with": [65535, 0], "a vast ruin with a": [65535, 0], "vast ruin with a wide": [65535, 0], "ruin with a wide crescent": [65535, 0], "with a wide crescent lopped": [65535, 0], "a wide crescent lopped out": [65535, 0], "wide crescent lopped out of": [65535, 0], "crescent lopped out of its": [65535, 0], "lopped out of its brim": [65535, 0], "out of its brim his": [65535, 0], "of its brim his coat": [65535, 0], "its brim his coat when": [65535, 0], "brim his coat when he": [65535, 0], "his coat when he wore": [65535, 0], "coat when he wore one": [65535, 0], "when he wore one hung": [65535, 0], "he wore one hung nearly": [65535, 0], "wore one hung nearly to": [65535, 0], "one hung nearly to his": [65535, 0], "hung nearly to his heels": [65535, 0], "nearly to his heels and": [65535, 0], "to his heels and had": [65535, 0], "his heels and had the": [65535, 0], "heels and had the rearward": [65535, 0], "and had the rearward buttons": [65535, 0], "had the rearward buttons far": [65535, 0], "the rearward buttons far down": [65535, 0], "rearward buttons far down the": [65535, 0], "buttons far down the back": [65535, 0], "far down the back but": [65535, 0], "down the back but one": [65535, 0], "the back but one suspender": [65535, 0], "back but one suspender supported": [65535, 0], "but one suspender supported his": [65535, 0], "one suspender supported his trousers": [65535, 0], "suspender supported his trousers the": [65535, 0], "supported his trousers the seat": [65535, 0], "his trousers the seat of": [65535, 0], "trousers the seat of the": [65535, 0], "the seat of the trousers": [65535, 0], "seat of the trousers bagged": [65535, 0], "of the trousers bagged low": [65535, 0], "the trousers bagged low and": [65535, 0], "trousers bagged low and contained": [65535, 0], "bagged low and contained nothing": [65535, 0], "low and contained nothing the": [65535, 0], "and contained nothing the fringed": [65535, 0], "contained nothing the fringed legs": [65535, 0], "nothing the fringed legs dragged": [65535, 0], "the fringed legs dragged in": [65535, 0], "fringed legs dragged in the": [65535, 0], "legs dragged in the dirt": [65535, 0], "dragged in the dirt when": [65535, 0], "in the dirt when not": [65535, 0], "the dirt when not rolled": [65535, 0], "dirt when not rolled up": [65535, 0], "when not rolled up huckleberry": [65535, 0], "not rolled up huckleberry came": [65535, 0], "rolled up huckleberry came and": [65535, 0], "up huckleberry came and went": [65535, 0], "huckleberry came and went at": [65535, 0], "came and went at his": [65535, 0], "and went at his own": [65535, 0], "went at his own free": [65535, 0], "at his own free will": [65535, 0], "his own free will he": [65535, 0], "own free will he slept": [65535, 0], "free will he slept on": [65535, 0], "will he slept on doorsteps": [65535, 0], "he slept on doorsteps in": [65535, 0], "slept on doorsteps in fine": [65535, 0], "on doorsteps in fine weather": [65535, 0], "doorsteps in fine weather and": [65535, 0], "in fine weather and in": [65535, 0], "fine weather and in empty": [65535, 0], "weather and in empty hogsheads": [65535, 0], "and in empty hogsheads in": [65535, 0], "in empty hogsheads in wet": [65535, 0], "empty hogsheads in wet he": [65535, 0], "hogsheads in wet he did": [65535, 0], "in wet he did not": [65535, 0], "wet he did not have": [65535, 0], "he did not have to": [65535, 0], "did not have to go": [65535, 0], "not have to go to": [65535, 0], "have to go to school": [65535, 0], "to go to school or": [65535, 0], "go to school or to": [65535, 0], "to school or to church": [65535, 0], "school or to church or": [65535, 0], "or to church or call": [65535, 0], "to church or call any": [65535, 0], "church or call any being": [65535, 0], "or call any being master": [65535, 0], "call any being master or": [65535, 0], "any being master or obey": [65535, 0], "being master or obey anybody": [65535, 0], "master or obey anybody he": [65535, 0], "or obey anybody he could": [65535, 0], "obey anybody he could go": [65535, 0], "anybody he could go fishing": [65535, 0], "he could go fishing or": [65535, 0], "could go fishing or swimming": [65535, 0], "go fishing or swimming when": [65535, 0], "fishing or swimming when and": [65535, 0], "or swimming when and where": [65535, 0], "swimming when and where he": [65535, 0], "when and where he chose": [65535, 0], "and where he chose and": [65535, 0], "where he chose and stay": [65535, 0], "he chose and stay as": [65535, 0], "chose and stay as long": [65535, 0], "and stay as long as": [65535, 0], "stay as long as it": [65535, 0], "as long as it suited": [65535, 0], "long as it suited him": [65535, 0], "as it suited him nobody": [65535, 0], "it suited him nobody forbade": [65535, 0], "suited him nobody forbade him": [65535, 0], "him nobody forbade him to": [65535, 0], "nobody forbade him to fight": [65535, 0], "forbade him to fight he": [65535, 0], "him to fight he could": [65535, 0], "to fight he could sit": [65535, 0], "fight he could sit up": [65535, 0], "he could sit up as": [65535, 0], "could sit up as late": [65535, 0], "sit up as late as": [65535, 0], "up as late as he": [65535, 0], "as late as he pleased": [65535, 0], "late as he pleased he": [65535, 0], "as he pleased he was": [65535, 0], "he pleased he was always": [65535, 0], "pleased he was always the": [65535, 0], "he was always the first": [65535, 0], "was always the first boy": [65535, 0], "always the first boy that": [65535, 0], "the first boy that went": [65535, 0], "first boy that went barefoot": [65535, 0], "boy that went barefoot in": [65535, 0], "that went barefoot in the": [65535, 0], "went barefoot in the spring": [65535, 0], "barefoot in the spring and": [65535, 0], "in the spring and the": [65535, 0], "the spring and the last": [65535, 0], "spring and the last to": [65535, 0], "and the last to resume": [65535, 0], "the last to resume leather": [65535, 0], "last to resume leather in": [65535, 0], "to resume leather in the": [65535, 0], "resume leather in the fall": [65535, 0], "leather in the fall he": [65535, 0], "in the fall he never": [65535, 0], "the fall he never had": [65535, 0], "fall he never had to": [65535, 0], "he never had to wash": [65535, 0], "never had to wash nor": [65535, 0], "had to wash nor put": [65535, 0], "to wash nor put on": [65535, 0], "wash nor put on clean": [65535, 0], "nor put on clean clothes": [65535, 0], "put on clean clothes he": [65535, 0], "on clean clothes he could": [65535, 0], "clean clothes he could swear": [65535, 0], "clothes he could swear wonderfully": [65535, 0], "he could swear wonderfully in": [65535, 0], "could swear wonderfully in a": [65535, 0], "swear wonderfully in a word": [65535, 0], "wonderfully in a word everything": [65535, 0], "in a word everything that": [65535, 0], "a word everything that goes": [65535, 0], "word everything that goes to": [65535, 0], "everything that goes to make": [65535, 0], "that goes to make life": [65535, 0], "goes to make life precious": [65535, 0], "to make life precious that": [65535, 0], "make life precious that boy": [65535, 0], "life precious that boy had": [65535, 0], "precious that boy had so": [65535, 0], "that boy had so thought": [65535, 0], "boy had so thought every": [65535, 0], "had so thought every harassed": [65535, 0], "so thought every harassed hampered": [65535, 0], "thought every harassed hampered respectable": [65535, 0], "every harassed hampered respectable boy": [65535, 0], "harassed hampered respectable boy in": [65535, 0], "hampered respectable boy in st": [65535, 0], "respectable boy in st petersburg": [65535, 0], "boy in st petersburg tom": [65535, 0], "in st petersburg tom hailed": [65535, 0], "st petersburg tom hailed the": [65535, 0], "petersburg tom hailed the romantic": [65535, 0], "tom hailed the romantic outcast": [65535, 0], "hailed the romantic outcast hello": [65535, 0], "the romantic outcast hello huckleberry": [65535, 0], "romantic outcast hello huckleberry hello": [65535, 0], "outcast hello huckleberry hello yourself": [65535, 0], "hello huckleberry hello yourself and": [65535, 0], "huckleberry hello yourself and see": [65535, 0], "hello yourself and see how": [65535, 0], "yourself and see how you": [65535, 0], "and see how you like": [65535, 0], "see how you like it": [65535, 0], "how you like it what's": [65535, 0], "you like it what's that": [65535, 0], "like it what's that you": [65535, 0], "it what's that you got": [65535, 0], "what's that you got dead": [65535, 0], "that you got dead cat": [65535, 0], "you got dead cat lemme": [65535, 0], "got dead cat lemme see": [65535, 0], "dead cat lemme see him": [65535, 0], "cat lemme see him huck": [65535, 0], "lemme see him huck my": [65535, 0], "see him huck my he's": [65535, 0], "him huck my he's pretty": [65535, 0], "huck my he's pretty stiff": [65535, 0], "my he's pretty stiff where'd": [65535, 0], "he's pretty stiff where'd you": [65535, 0], "pretty stiff where'd you get": [65535, 0], "stiff where'd you get him": [65535, 0], "where'd you get him bought": [65535, 0], "you get him bought him": [65535, 0], "get him bought him off'n": [65535, 0], "him bought him off'n a": [65535, 0], "bought him off'n a boy": [65535, 0], "him off'n a boy what": [65535, 0], "off'n a boy what did": [65535, 0], "a boy what did you": [65535, 0], "boy what did you give": [65535, 0], "what did you give i": [65535, 0], "did you give i give": [65535, 0], "you give i give a": [65535, 0], "give i give a blue": [65535, 0], "i give a blue ticket": [65535, 0], "give a blue ticket and": [65535, 0], "a blue ticket and a": [65535, 0], "blue ticket and a bladder": [65535, 0], "ticket and a bladder that": [65535, 0], "and a bladder that i": [65535, 0], "a bladder that i got": [65535, 0], "bladder that i got at": [65535, 0], "that i got at the": [65535, 0], "i got at the slaughter": [65535, 0], "got at the slaughter house": [65535, 0], "at the slaughter house where'd": [65535, 0], "the slaughter house where'd you": [65535, 0], "slaughter house where'd you get": [65535, 0], "house where'd you get the": [65535, 0], "where'd you get the blue": [65535, 0], "you get the blue ticket": [65535, 0], "get the blue ticket bought": [65535, 0], "the blue ticket bought it": [65535, 0], "blue ticket bought it off'n": [65535, 0], "ticket bought it off'n ben": [65535, 0], "bought it off'n ben rogers": [65535, 0], "it off'n ben rogers two": [65535, 0], "off'n ben rogers two weeks": [65535, 0], "ben rogers two weeks ago": [65535, 0], "rogers two weeks ago for": [65535, 0], "two weeks ago for a": [65535, 0], "weeks ago for a hoop": [65535, 0], "ago for a hoop stick": [65535, 0], "for a hoop stick say": [65535, 0], "a hoop stick say what": [65535, 0], "hoop stick say what is": [65535, 0], "stick say what is dead": [65535, 0], "say what is dead cats": [65535, 0], "what is dead cats good": [65535, 0], "is dead cats good for": [65535, 0], "dead cats good for huck": [65535, 0], "cats good for huck good": [65535, 0], "good for huck good for": [65535, 0], "for huck good for cure": [65535, 0], "huck good for cure warts": [65535, 0], "good for cure warts with": [65535, 0], "for cure warts with no": [65535, 0], "cure warts with no is": [65535, 0], "warts with no is that": [65535, 0], "with no is that so": [65535, 0], "no is that so i": [65535, 0], "is that so i know": [65535, 0], "that so i know something": [65535, 0], "so i know something that's": [65535, 0], "i know something that's better": [65535, 0], "know something that's better i": [65535, 0], "something that's better i bet": [65535, 0], "that's better i bet you": [65535, 0], "better i bet you don't": [65535, 0], "i bet you don't what": [65535, 0], "bet you don't what is": [65535, 0], "you don't what is it": [65535, 0], "don't what is it why": [65535, 0], "what is it why spunk": [65535, 0], "is it why spunk water": [65535, 0], "it why spunk water spunk": [65535, 0], "why spunk water spunk water": [65535, 0], "spunk water spunk water i": [65535, 0], "water spunk water i wouldn't": [65535, 0], "spunk water i wouldn't give": [65535, 0], "water i wouldn't give a": [65535, 0], "i wouldn't give a dern": [65535, 0], "wouldn't give a dern for": [65535, 0], "give a dern for spunk": [65535, 0], "a dern for spunk water": [65535, 0], "dern for spunk water you": [65535, 0], "for spunk water you wouldn't": [65535, 0], "spunk water you wouldn't wouldn't": [65535, 0], "water you wouldn't wouldn't you": [65535, 0], "you wouldn't wouldn't you d'you": [65535, 0], "wouldn't wouldn't you d'you ever": [65535, 0], "wouldn't you d'you ever try": [65535, 0], "you d'you ever try it": [65535, 0], "d'you ever try it no": [65535, 0], "ever try it no i": [65535, 0], "try it no i hain't": [65535, 0], "it no i hain't but": [65535, 0], "no i hain't but bob": [65535, 0], "i hain't but bob tanner": [65535, 0], "hain't but bob tanner did": [65535, 0], "but bob tanner did who": [65535, 0], "bob tanner did who told": [65535, 0], "tanner did who told you": [65535, 0], "did who told you so": [65535, 0], "who told you so why": [65535, 0], "told you so why he": [65535, 0], "you so why he told": [65535, 0], "so why he told jeff": [65535, 0], "why he told jeff thatcher": [65535, 0], "he told jeff thatcher and": [65535, 0], "told jeff thatcher and jeff": [65535, 0], "jeff thatcher and jeff told": [65535, 0], "thatcher and jeff told johnny": [65535, 0], "and jeff told johnny baker": [65535, 0], "jeff told johnny baker and": [65535, 0], "told johnny baker and johnny": [65535, 0], "johnny baker and johnny told": [65535, 0], "baker and johnny told jim": [65535, 0], "and johnny told jim hollis": [65535, 0], "johnny told jim hollis and": [65535, 0], "told jim hollis and jim": [65535, 0], "jim hollis and jim told": [65535, 0], "hollis and jim told ben": [65535, 0], "and jim told ben rogers": [65535, 0], "jim told ben rogers and": [65535, 0], "told ben rogers and ben": [65535, 0], "ben rogers and ben told": [65535, 0], "rogers and ben told a": [65535, 0], "and ben told a nigger": [65535, 0], "ben told a nigger and": [65535, 0], "told a nigger and the": [65535, 0], "a nigger and the nigger": [65535, 0], "nigger and the nigger told": [65535, 0], "and the nigger told me": [65535, 0], "the nigger told me there": [65535, 0], "nigger told me there now": [65535, 0], "told me there now well": [65535, 0], "me there now well what": [65535, 0], "there now well what of": [65535, 0], "now well what of it": [65535, 0], "well what of it they'll": [65535, 0], "what of it they'll all": [65535, 0], "of it they'll all lie": [65535, 0], "it they'll all lie leastways": [65535, 0], "they'll all lie leastways all": [65535, 0], "all lie leastways all but": [65535, 0], "lie leastways all but the": [65535, 0], "leastways all but the nigger": [65535, 0], "all but the nigger i": [65535, 0], "but the nigger i don't": [65535, 0], "the nigger i don't know": [65535, 0], "nigger i don't know him": [65535, 0], "i don't know him but": [65535, 0], "don't know him but i": [65535, 0], "know him but i never": [65535, 0], "him but i never see": [65535, 0], "but i never see a": [65535, 0], "i never see a nigger": [65535, 0], "never see a nigger that": [65535, 0], "see a nigger that wouldn't": [65535, 0], "a nigger that wouldn't lie": [65535, 0], "nigger that wouldn't lie shucks": [65535, 0], "that wouldn't lie shucks now": [65535, 0], "wouldn't lie shucks now you": [65535, 0], "lie shucks now you tell": [65535, 0], "shucks now you tell me": [65535, 0], "now you tell me how": [65535, 0], "you tell me how bob": [65535, 0], "tell me how bob tanner": [65535, 0], "me how bob tanner done": [65535, 0], "how bob tanner done it": [65535, 0], "bob tanner done it huck": [65535, 0], "tanner done it huck why": [65535, 0], "done it huck why he": [65535, 0], "it huck why he took": [65535, 0], "huck why he took and": [65535, 0], "why he took and dipped": [65535, 0], "he took and dipped his": [65535, 0], "took and dipped his hand": [65535, 0], "and dipped his hand in": [65535, 0], "dipped his hand in a": [65535, 0], "his hand in a rotten": [65535, 0], "hand in a rotten stump": [65535, 0], "in a rotten stump where": [65535, 0], "a rotten stump where the": [65535, 0], "rotten stump where the rain": [65535, 0], "stump where the rain water": [65535, 0], "where the rain water was": [65535, 0], "the rain water was in": [65535, 0], "rain water was in the": [65535, 0], "water was in the daytime": [65535, 0], "was in the daytime certainly": [65535, 0], "in the daytime certainly with": [65535, 0], "the daytime certainly with his": [65535, 0], "daytime certainly with his face": [65535, 0], "certainly with his face to": [65535, 0], "with his face to the": [65535, 0], "his face to the stump": [65535, 0], "face to the stump yes": [65535, 0], "to the stump yes least": [65535, 0], "the stump yes least i": [65535, 0], "stump yes least i reckon": [65535, 0], "yes least i reckon so": [65535, 0], "least i reckon so did": [65535, 0], "i reckon so did he": [65535, 0], "reckon so did he say": [65535, 0], "so did he say anything": [65535, 0], "did he say anything i": [65535, 0], "he say anything i don't": [65535, 0], "say anything i don't reckon": [65535, 0], "anything i don't reckon he": [65535, 0], "i don't reckon he did": [65535, 0], "don't reckon he did i": [65535, 0], "reckon he did i don't": [65535, 0], "he did i don't know": [65535, 0], "did i don't know aha": [65535, 0], "i don't know aha talk": [65535, 0], "don't know aha talk about": [65535, 0], "know aha talk about trying": [65535, 0], "aha talk about trying to": [65535, 0], "talk about trying to cure": [65535, 0], "about trying to cure warts": [65535, 0], "trying to cure warts with": [65535, 0], "to cure warts with spunk": [65535, 0], "cure warts with spunk water": [65535, 0], "warts with spunk water such": [65535, 0], "with spunk water such a": [65535, 0], "spunk water such a blame": [65535, 0], "water such a blame fool": [65535, 0], "such a blame fool way": [65535, 0], "a blame fool way as": [65535, 0], "blame fool way as that": [65535, 0], "fool way as that why": [65535, 0], "way as that why that": [65535, 0], "as that why that ain't": [65535, 0], "that why that ain't a": [65535, 0], "why that ain't a going": [65535, 0], "that ain't a going to": [65535, 0], "ain't a going to do": [65535, 0], "a going to do any": [65535, 0], "going to do any good": [65535, 0], "to do any good you": [65535, 0], "do any good you got": [65535, 0], "any good you got to": [65535, 0], "good you got to go": [65535, 0], "you got to go all": [65535, 0], "got to go all by": [65535, 0], "to go all by yourself": [65535, 0], "go all by yourself to": [65535, 0], "all by yourself to the": [65535, 0], "by yourself to the middle": [65535, 0], "yourself to the middle of": [65535, 0], "to the middle of the": [65535, 0], "the middle of the woods": [65535, 0], "middle of the woods where": [65535, 0], "of the woods where you": [65535, 0], "the woods where you know": [65535, 0], "woods where you know there's": [65535, 0], "where you know there's a": [65535, 0], "you know there's a spunk": [65535, 0], "know there's a spunk water": [65535, 0], "there's a spunk water stump": [65535, 0], "a spunk water stump and": [65535, 0], "spunk water stump and just": [65535, 0], "water stump and just as": [65535, 0], "stump and just as it's": [65535, 0], "and just as it's midnight": [65535, 0], "just as it's midnight you": [65535, 0], "as it's midnight you back": [65535, 0], "it's midnight you back up": [65535, 0], "midnight you back up against": [65535, 0], "you back up against the": [65535, 0], "back up against the stump": [65535, 0], "up against the stump and": [65535, 0], "against the stump and jam": [65535, 0], "the stump and jam your": [65535, 0], "stump and jam your hand": [65535, 0], "and jam your hand in": [65535, 0], "jam your hand in and": [65535, 0], "your hand in and say": [65535, 0], "hand in and say 'barley": [65535, 0], "in and say 'barley corn": [65535, 0], "and say 'barley corn barley": [65535, 0], "say 'barley corn barley corn": [65535, 0], "'barley corn barley corn injun": [65535, 0], "corn barley corn injun meal": [65535, 0], "barley corn injun meal shorts": [65535, 0], "corn injun meal shorts spunk": [65535, 0], "injun meal shorts spunk water": [65535, 0], "meal shorts spunk water spunk": [65535, 0], "shorts spunk water spunk water": [65535, 0], "spunk water spunk water swaller": [65535, 0], "water spunk water swaller these": [65535, 0], "spunk water swaller these warts": [65535, 0], "water swaller these warts '": [65535, 0], "swaller these warts ' and": [65535, 0], "these warts ' and then": [65535, 0], "warts ' and then walk": [65535, 0], "' and then walk away": [65535, 0], "and then walk away quick": [65535, 0], "then walk away quick eleven": [65535, 0], "walk away quick eleven steps": [65535, 0], "away quick eleven steps with": [65535, 0], "quick eleven steps with your": [65535, 0], "eleven steps with your eyes": [65535, 0], "steps with your eyes shut": [65535, 0], "with your eyes shut and": [65535, 0], "your eyes shut and then": [65535, 0], "eyes shut and then turn": [65535, 0], "shut and then turn around": [65535, 0], "and then turn around three": [65535, 0], "then turn around three times": [65535, 0], "turn around three times and": [65535, 0], "around three times and walk": [65535, 0], "three times and walk home": [65535, 0], "times and walk home without": [65535, 0], "and walk home without speaking": [65535, 0], "walk home without speaking to": [65535, 0], "home without speaking to anybody": [65535, 0], "without speaking to anybody because": [65535, 0], "speaking to anybody because if": [65535, 0], "to anybody because if you": [65535, 0], "anybody because if you speak": [65535, 0], "because if you speak the": [65535, 0], "if you speak the charm's": [65535, 0], "you speak the charm's busted": [65535, 0], "speak the charm's busted well": [65535, 0], "the charm's busted well that": [65535, 0], "charm's busted well that sounds": [65535, 0], "busted well that sounds like": [65535, 0], "well that sounds like a": [65535, 0], "that sounds like a good": [65535, 0], "sounds like a good way": [65535, 0], "like a good way but": [65535, 0], "a good way but that": [65535, 0], "good way but that ain't": [65535, 0], "way but that ain't the": [65535, 0], "but that ain't the way": [65535, 0], "that ain't the way bob": [65535, 0], "ain't the way bob tanner": [65535, 0], "the way bob tanner done": [65535, 0], "way bob tanner done no": [65535, 0], "bob tanner done no sir": [65535, 0], "tanner done no sir you": [65535, 0], "done no sir you can": [65535, 0], "no sir you can bet": [65535, 0], "sir you can bet he": [65535, 0], "you can bet he didn't": [65535, 0], "can bet he didn't becuz": [65535, 0], "bet he didn't becuz he's": [65535, 0], "he didn't becuz he's the": [65535, 0], "didn't becuz he's the wartiest": [65535, 0], "becuz he's the wartiest boy": [65535, 0], "he's the wartiest boy in": [65535, 0], "the wartiest boy in this": [65535, 0], "wartiest boy in this town": [65535, 0], "boy in this town and": [65535, 0], "in this town and he": [65535, 0], "this town and he wouldn't": [65535, 0], "town and he wouldn't have": [65535, 0], "and he wouldn't have a": [65535, 0], "he wouldn't have a wart": [65535, 0], "wouldn't have a wart on": [65535, 0], "have a wart on him": [65535, 0], "a wart on him if": [65535, 0], "wart on him if he'd": [65535, 0], "on him if he'd knowed": [65535, 0], "him if he'd knowed how": [65535, 0], "if he'd knowed how to": [65535, 0], "he'd knowed how to work": [65535, 0], "knowed how to work spunk": [65535, 0], "how to work spunk water": [65535, 0], "to work spunk water i've": [65535, 0], "work spunk water i've took": [65535, 0], "spunk water i've took off": [65535, 0], "water i've took off thousands": [65535, 0], "i've took off thousands of": [65535, 0], "took off thousands of warts": [65535, 0], "off thousands of warts off": [65535, 0], "thousands of warts off of": [65535, 0], "of warts off of my": [65535, 0], "warts off of my hands": [65535, 0], "off of my hands that": [65535, 0], "of my hands that way": [65535, 0], "my hands that way huck": [65535, 0], "hands that way huck i": [65535, 0], "that way huck i play": [65535, 0], "way huck i play with": [65535, 0], "huck i play with frogs": [65535, 0], "i play with frogs so": [65535, 0], "play with frogs so much": [65535, 0], "with frogs so much that": [65535, 0], "frogs so much that i've": [65535, 0], "so much that i've always": [65535, 0], "much that i've always got": [65535, 0], "that i've always got considerable": [65535, 0], "i've always got considerable many": [65535, 0], "always got considerable many warts": [65535, 0], "got considerable many warts sometimes": [65535, 0], "considerable many warts sometimes i": [65535, 0], "many warts sometimes i take": [65535, 0], "warts sometimes i take 'em": [65535, 0], "sometimes i take 'em off": [65535, 0], "i take 'em off with": [65535, 0], "take 'em off with a": [65535, 0], "'em off with a bean": [65535, 0], "off with a bean yes": [65535, 0], "with a bean yes bean's": [65535, 0], "a bean yes bean's good": [65535, 0], "bean yes bean's good i've": [65535, 0], "yes bean's good i've done": [65535, 0], "bean's good i've done that": [65535, 0], "good i've done that have": [65535, 0], "i've done that have you": [65535, 0], "done that have you what's": [65535, 0], "that have you what's your": [65535, 0], "have you what's your way": [65535, 0], "you what's your way you": [65535, 0], "what's your way you take": [65535, 0], "your way you take and": [65535, 0], "way you take and split": [65535, 0], "you take and split the": [65535, 0], "take and split the bean": [65535, 0], "and split the bean and": [65535, 0], "split the bean and cut": [65535, 0], "the bean and cut the": [65535, 0], "bean and cut the wart": [65535, 0], "and cut the wart so": [65535, 0], "cut the wart so as": [65535, 0], "the wart so as to": [65535, 0], "wart so as to get": [65535, 0], "so as to get some": [65535, 0], "as to get some blood": [65535, 0], "to get some blood and": [65535, 0], "get some blood and then": [65535, 0], "some blood and then you": [65535, 0], "blood and then you put": [65535, 0], "and then you put the": [65535, 0], "then you put the blood": [65535, 0], "you put the blood on": [65535, 0], "put the blood on one": [65535, 0], "the blood on one piece": [65535, 0], "blood on one piece of": [65535, 0], "on one piece of the": [65535, 0], "one piece of the bean": [65535, 0], "piece of the bean and": [65535, 0], "of the bean and take": [65535, 0], "the bean and take and": [65535, 0], "bean and take and dig": [65535, 0], "and take and dig a": [65535, 0], "take and dig a hole": [65535, 0], "and dig a hole and": [65535, 0], "dig a hole and bury": [65535, 0], "a hole and bury it": [65535, 0], "hole and bury it 'bout": [65535, 0], "and bury it 'bout midnight": [65535, 0], "bury it 'bout midnight at": [65535, 0], "it 'bout midnight at the": [65535, 0], "'bout midnight at the crossroads": [65535, 0], "midnight at the crossroads in": [65535, 0], "at the crossroads in the": [65535, 0], "the crossroads in the dark": [65535, 0], "crossroads in the dark of": [65535, 0], "in the dark of the": [65535, 0], "the dark of the moon": [65535, 0], "dark of the moon and": [65535, 0], "of the moon and then": [65535, 0], "the moon and then you": [65535, 0], "moon and then you burn": [65535, 0], "and then you burn up": [65535, 0], "then you burn up the": [65535, 0], "you burn up the rest": [65535, 0], "burn up the rest of": [65535, 0], "up the rest of the": [65535, 0], "the rest of the bean": [65535, 0], "rest of the bean you": [65535, 0], "of the bean you see": [65535, 0], "the bean you see that": [65535, 0], "bean you see that piece": [65535, 0], "you see that piece that's": [65535, 0], "see that piece that's got": [65535, 0], "that piece that's got the": [65535, 0], "piece that's got the blood": [65535, 0], "that's got the blood on": [65535, 0], "got the blood on it": [65535, 0], "the blood on it will": [65535, 0], "blood on it will keep": [65535, 0], "on it will keep drawing": [65535, 0], "it will keep drawing and": [65535, 0], "will keep drawing and drawing": [65535, 0], "keep drawing and drawing trying": [65535, 0], "drawing and drawing trying to": [65535, 0], "and drawing trying to fetch": [65535, 0], "drawing trying to fetch the": [65535, 0], "trying to fetch the other": [65535, 0], "to fetch the other piece": [65535, 0], "fetch the other piece to": [65535, 0], "the other piece to it": [65535, 0], "other piece to it and": [65535, 0], "piece to it and so": [65535, 0], "to it and so that": [65535, 0], "it and so that helps": [65535, 0], "and so that helps the": [65535, 0], "so that helps the blood": [65535, 0], "that helps the blood to": [65535, 0], "helps the blood to draw": [65535, 0], "the blood to draw the": [65535, 0], "blood to draw the wart": [65535, 0], "to draw the wart and": [65535, 0], "draw the wart and pretty": [65535, 0], "the wart and pretty soon": [65535, 0], "wart and pretty soon off": [65535, 0], "and pretty soon off she": [65535, 0], "pretty soon off she comes": [65535, 0], "soon off she comes yes": [65535, 0], "off she comes yes that's": [65535, 0], "she comes yes that's it": [65535, 0], "comes yes that's it huck": [65535, 0], "yes that's it huck that's": [65535, 0], "that's it huck that's it": [65535, 0], "it huck that's it though": [65535, 0], "huck that's it though when": [65535, 0], "that's it though when you're": [65535, 0], "it though when you're burying": [65535, 0], "though when you're burying it": [65535, 0], "when you're burying it if": [65535, 0], "you're burying it if you": [65535, 0], "burying it if you say": [65535, 0], "it if you say 'down": [65535, 0], "if you say 'down bean": [65535, 0], "you say 'down bean off": [65535, 0], "say 'down bean off wart": [65535, 0], "'down bean off wart come": [65535, 0], "bean off wart come no": [65535, 0], "off wart come no more": [65535, 0], "wart come no more to": [65535, 0], "come no more to bother": [65535, 0], "no more to bother me": [65535, 0], "more to bother me '": [65535, 0], "to bother me ' it's": [65535, 0], "bother me ' it's better": [65535, 0], "me ' it's better that's": [65535, 0], "' it's better that's the": [65535, 0], "it's better that's the way": [65535, 0], "better that's the way joe": [65535, 0], "that's the way joe harper": [65535, 0], "the way joe harper does": [65535, 0], "way joe harper does and": [65535, 0], "joe harper does and he's": [65535, 0], "harper does and he's been": [65535, 0], "does and he's been nearly": [65535, 0], "and he's been nearly to": [65535, 0], "he's been nearly to coonville": [65535, 0], "been nearly to coonville and": [65535, 0], "nearly to coonville and most": [65535, 0], "to coonville and most everywheres": [65535, 0], "coonville and most everywheres but": [65535, 0], "and most everywheres but say": [65535, 0], "most everywheres but say how": [65535, 0], "everywheres but say how do": [65535, 0], "but say how do you": [65535, 0], "say how do you cure": [65535, 0], "how do you cure 'em": [65535, 0], "do you cure 'em with": [65535, 0], "you cure 'em with dead": [65535, 0], "cure 'em with dead cats": [65535, 0], "'em with dead cats why": [65535, 0], "with dead cats why you": [65535, 0], "dead cats why you take": [65535, 0], "cats why you take your": [65535, 0], "why you take your cat": [65535, 0], "you take your cat and": [65535, 0], "take your cat and go": [65535, 0], "your cat and go and": [65535, 0], "cat and go and get": [65535, 0], "and go and get in": [65535, 0], "go and get in the": [65535, 0], "and get in the graveyard": [65535, 0], "get in the graveyard 'long": [65535, 0], "in the graveyard 'long about": [65535, 0], "the graveyard 'long about midnight": [65535, 0], "graveyard 'long about midnight when": [65535, 0], "'long about midnight when somebody": [65535, 0], "about midnight when somebody that": [65535, 0], "midnight when somebody that was": [65535, 0], "when somebody that was wicked": [65535, 0], "somebody that was wicked has": [65535, 0], "that was wicked has been": [65535, 0], "was wicked has been buried": [65535, 0], "wicked has been buried and": [65535, 0], "has been buried and when": [65535, 0], "been buried and when it's": [65535, 0], "buried and when it's midnight": [65535, 0], "and when it's midnight a": [65535, 0], "when it's midnight a devil": [65535, 0], "it's midnight a devil will": [65535, 0], "midnight a devil will come": [65535, 0], "a devil will come or": [65535, 0], "devil will come or maybe": [65535, 0], "will come or maybe two": [65535, 0], "come or maybe two or": [65535, 0], "or maybe two or three": [65535, 0], "maybe two or three but": [65535, 0], "two or three but you": [65535, 0], "or three but you can't": [65535, 0], "three but you can't see": [65535, 0], "but you can't see 'em": [65535, 0], "you can't see 'em you": [65535, 0], "can't see 'em you can": [65535, 0], "see 'em you can only": [65535, 0], "'em you can only hear": [65535, 0], "you can only hear something": [65535, 0], "can only hear something like": [65535, 0], "only hear something like the": [65535, 0], "hear something like the wind": [65535, 0], "something like the wind or": [65535, 0], "like the wind or maybe": [65535, 0], "the wind or maybe hear": [65535, 0], "wind or maybe hear 'em": [65535, 0], "or maybe hear 'em talk": [65535, 0], "maybe hear 'em talk and": [65535, 0], "hear 'em talk and when": [65535, 0], "'em talk and when they're": [65535, 0], "talk and when they're taking": [65535, 0], "and when they're taking that": [65535, 0], "when they're taking that feller": [65535, 0], "they're taking that feller away": [65535, 0], "taking that feller away you": [65535, 0], "that feller away you heave": [65535, 0], "feller away you heave your": [65535, 0], "away you heave your cat": [65535, 0], "you heave your cat after": [65535, 0], "heave your cat after 'em": [65535, 0], "your cat after 'em and": [65535, 0], "cat after 'em and say": [65535, 0], "after 'em and say 'devil": [65535, 0], "'em and say 'devil follow": [65535, 0], "and say 'devil follow corpse": [65535, 0], "say 'devil follow corpse cat": [65535, 0], "'devil follow corpse cat follow": [65535, 0], "follow corpse cat follow devil": [65535, 0], "corpse cat follow devil warts": [65535, 0], "cat follow devil warts follow": [65535, 0], "follow devil warts follow cat": [65535, 0], "devil warts follow cat i'm": [65535, 0], "warts follow cat i'm done": [65535, 0], "follow cat i'm done with": [65535, 0], "cat i'm done with ye": [65535, 0], "i'm done with ye '": [65535, 0], "done with ye ' that'll": [65535, 0], "with ye ' that'll fetch": [65535, 0], "ye ' that'll fetch any": [65535, 0], "' that'll fetch any wart": [65535, 0], "that'll fetch any wart sounds": [65535, 0], "fetch any wart sounds right": [65535, 0], "any wart sounds right d'you": [65535, 0], "wart sounds right d'you ever": [65535, 0], "sounds right d'you ever try": [65535, 0], "right d'you ever try it": [65535, 0], "d'you ever try it huck": [65535, 0], "ever try it huck no": [65535, 0], "try it huck no but": [65535, 0], "it huck no but old": [65535, 0], "huck no but old mother": [65535, 0], "no but old mother hopkins": [65535, 0], "but old mother hopkins told": [65535, 0], "old mother hopkins told me": [65535, 0], "mother hopkins told me well": [65535, 0], "hopkins told me well i": [65535, 0], "told me well i reckon": [65535, 0], "me well i reckon it's": [65535, 0], "well i reckon it's so": [65535, 0], "i reckon it's so then": [65535, 0], "reckon it's so then becuz": [65535, 0], "it's so then becuz they": [65535, 0], "so then becuz they say": [65535, 0], "then becuz they say she's": [65535, 0], "becuz they say she's a": [65535, 0], "they say she's a witch": [65535, 0], "say she's a witch say": [65535, 0], "she's a witch say why": [65535, 0], "a witch say why tom": [65535, 0], "witch say why tom i": [65535, 0], "say why tom i know": [65535, 0], "why tom i know she": [65535, 0], "tom i know she is": [65535, 0], "i know she is she": [65535, 0], "know she is she witched": [65535, 0], "she is she witched pap": [65535, 0], "is she witched pap pap": [65535, 0], "she witched pap pap says": [65535, 0], "witched pap pap says so": [65535, 0], "pap pap says so his": [65535, 0], "pap says so his own": [65535, 0], "says so his own self": [65535, 0], "so his own self he": [65535, 0], "his own self he come": [65535, 0], "own self he come along": [65535, 0], "self he come along one": [65535, 0], "he come along one day": [65535, 0], "come along one day and": [65535, 0], "along one day and he": [65535, 0], "one day and he see": [65535, 0], "day and he see she": [65535, 0], "and he see she was": [65535, 0], "he see she was a": [65535, 0], "see she was a witching": [65535, 0], "she was a witching him": [65535, 0], "was a witching him so": [65535, 0], "a witching him so he": [65535, 0], "witching him so he took": [65535, 0], "him so he took up": [65535, 0], "so he took up a": [65535, 0], "he took up a rock": [65535, 0], "took up a rock and": [65535, 0], "up a rock and if": [65535, 0], "a rock and if she": [65535, 0], "rock and if she hadn't": [65535, 0], "and if she hadn't dodged": [65535, 0], "if she hadn't dodged he'd": [65535, 0], "she hadn't dodged he'd a": [65535, 0], "hadn't dodged he'd a got": [65535, 0], "dodged he'd a got her": [65535, 0], "he'd a got her well": [65535, 0], "a got her well that": [65535, 0], "got her well that very": [65535, 0], "her well that very night": [65535, 0], "well that very night he": [65535, 0], "that very night he rolled": [65535, 0], "very night he rolled off'n": [65535, 0], "night he rolled off'n a": [65535, 0], "he rolled off'n a shed": [65535, 0], "rolled off'n a shed wher'": [65535, 0], "off'n a shed wher' he": [65535, 0], "a shed wher' he was": [65535, 0], "shed wher' he was a": [65535, 0], "wher' he was a layin": [65535, 0], "he was a layin drunk": [65535, 0], "was a layin drunk and": [65535, 0], "a layin drunk and broke": [65535, 0], "layin drunk and broke his": [65535, 0], "drunk and broke his arm": [65535, 0], "and broke his arm why": [65535, 0], "broke his arm why that's": [65535, 0], "his arm why that's awful": [65535, 0], "arm why that's awful how": [65535, 0], "why that's awful how did": [65535, 0], "that's awful how did he": [65535, 0], "awful how did he know": [65535, 0], "how did he know she": [65535, 0], "did he know she was": [65535, 0], "he know she was a": [65535, 0], "know she was a witching": [65535, 0], "was a witching him lord": [65535, 0], "a witching him lord pap": [65535, 0], "witching him lord pap can": [65535, 0], "him lord pap can tell": [65535, 0], "lord pap can tell easy": [65535, 0], "pap can tell easy pap": [65535, 0], "can tell easy pap says": [65535, 0], "tell easy pap says when": [65535, 0], "easy pap says when they": [65535, 0], "pap says when they keep": [65535, 0], "says when they keep looking": [65535, 0], "when they keep looking at": [65535, 0], "they keep looking at you": [65535, 0], "keep looking at you right": [65535, 0], "looking at you right stiddy": [65535, 0], "at you right stiddy they're": [65535, 0], "you right stiddy they're a": [65535, 0], "right stiddy they're a witching": [65535, 0], "stiddy they're a witching you": [65535, 0], "they're a witching you specially": [65535, 0], "a witching you specially if": [65535, 0], "witching you specially if they": [65535, 0], "you specially if they mumble": [65535, 0], "specially if they mumble becuz": [65535, 0], "if they mumble becuz when": [65535, 0], "they mumble becuz when they": [65535, 0], "mumble becuz when they mumble": [65535, 0], "becuz when they mumble they're": [65535, 0], "when they mumble they're saying": [65535, 0], "they mumble they're saying the": [65535, 0], "mumble they're saying the lord's": [65535, 0], "they're saying the lord's prayer": [65535, 0], "saying the lord's prayer backards": [65535, 0], "the lord's prayer backards say": [65535, 0], "lord's prayer backards say hucky": [65535, 0], "prayer backards say hucky when": [65535, 0], "backards say hucky when you": [65535, 0], "say hucky when you going": [65535, 0], "hucky when you going to": [65535, 0], "when you going to try": [65535, 0], "you going to try the": [65535, 0], "going to try the cat": [65535, 0], "to try the cat to": [65535, 0], "try the cat to night": [65535, 0], "the cat to night i": [65535, 0], "cat to night i reckon": [65535, 0], "to night i reckon they'll": [65535, 0], "night i reckon they'll come": [65535, 0], "i reckon they'll come after": [65535, 0], "reckon they'll come after old": [65535, 0], "they'll come after old hoss": [65535, 0], "come after old hoss williams": [65535, 0], "after old hoss williams to": [65535, 0], "old hoss williams to night": [65535, 0], "hoss williams to night but": [65535, 0], "williams to night but they": [65535, 0], "to night but they buried": [65535, 0], "night but they buried him": [65535, 0], "but they buried him saturday": [65535, 0], "they buried him saturday didn't": [65535, 0], "buried him saturday didn't they": [65535, 0], "him saturday didn't they get": [65535, 0], "saturday didn't they get him": [65535, 0], "didn't they get him saturday": [65535, 0], "they get him saturday night": [65535, 0], "get him saturday night why": [65535, 0], "him saturday night why how": [65535, 0], "saturday night why how you": [65535, 0], "night why how you talk": [65535, 0], "why how you talk how": [65535, 0], "how you talk how could": [65535, 0], "you talk how could their": [65535, 0], "talk how could their charms": [65535, 0], "how could their charms work": [65535, 0], "could their charms work till": [65535, 0], "their charms work till midnight": [65535, 0], "charms work till midnight and": [65535, 0], "work till midnight and then": [65535, 0], "till midnight and then it's": [65535, 0], "midnight and then it's sunday": [65535, 0], "and then it's sunday devils": [65535, 0], "then it's sunday devils don't": [65535, 0], "it's sunday devils don't slosh": [65535, 0], "sunday devils don't slosh around": [65535, 0], "devils don't slosh around much": [65535, 0], "don't slosh around much of": [65535, 0], "slosh around much of a": [65535, 0], "around much of a sunday": [65535, 0], "much of a sunday i": [65535, 0], "of a sunday i don't": [65535, 0], "a sunday i don't reckon": [65535, 0], "sunday i don't reckon i": [65535, 0], "i don't reckon i never": [65535, 0], "don't reckon i never thought": [65535, 0], "reckon i never thought of": [65535, 0], "i never thought of that": [65535, 0], "never thought of that that's": [65535, 0], "thought of that that's so": [65535, 0], "of that that's so lemme": [65535, 0], "that that's so lemme go": [65535, 0], "that's so lemme go with": [65535, 0], "so lemme go with you": [65535, 0], "lemme go with you of": [65535, 0], "go with you of course": [65535, 0], "with you of course if": [65535, 0], "you of course if you": [65535, 0], "of course if you ain't": [65535, 0], "course if you ain't afeard": [65535, 0], "if you ain't afeard afeard": [65535, 0], "you ain't afeard afeard 'tain't": [65535, 0], "ain't afeard afeard 'tain't likely": [65535, 0], "afeard afeard 'tain't likely will": [65535, 0], "afeard 'tain't likely will you": [65535, 0], "'tain't likely will you meow": [65535, 0], "likely will you meow yes": [65535, 0], "will you meow yes and": [65535, 0], "you meow yes and you": [65535, 0], "meow yes and you meow": [65535, 0], "yes and you meow back": [65535, 0], "and you meow back if": [65535, 0], "you meow back if you": [65535, 0], "meow back if you get": [65535, 0], "back if you get a": [65535, 0], "if you get a chance": [65535, 0], "you get a chance last": [65535, 0], "get a chance last time": [65535, 0], "a chance last time you": [65535, 0], "chance last time you kep'": [65535, 0], "last time you kep' me": [65535, 0], "time you kep' me a": [65535, 0], "you kep' me a meowing": [65535, 0], "kep' me a meowing around": [65535, 0], "me a meowing around till": [65535, 0], "a meowing around till old": [65535, 0], "meowing around till old hays": [65535, 0], "around till old hays went": [65535, 0], "till old hays went to": [65535, 0], "old hays went to throwing": [65535, 0], "hays went to throwing rocks": [65535, 0], "went to throwing rocks at": [65535, 0], "to throwing rocks at me": [65535, 0], "throwing rocks at me and": [65535, 0], "rocks at me and says": [65535, 0], "at me and says 'dern": [65535, 0], "me and says 'dern that": [65535, 0], "and says 'dern that cat": [65535, 0], "says 'dern that cat '": [65535, 0], "'dern that cat ' and": [65535, 0], "that cat ' and so": [65535, 0], "cat ' and so i": [65535, 0], "' and so i hove": [65535, 0], "and so i hove a": [65535, 0], "so i hove a brick": [65535, 0], "i hove a brick through": [65535, 0], "hove a brick through his": [65535, 0], "a brick through his window": [65535, 0], "brick through his window but": [65535, 0], "through his window but don't": [65535, 0], "his window but don't you": [65535, 0], "window but don't you tell": [65535, 0], "but don't you tell i": [65535, 0], "don't you tell i won't": [65535, 0], "you tell i won't i": [65535, 0], "tell i won't i couldn't": [65535, 0], "i won't i couldn't meow": [65535, 0], "won't i couldn't meow that": [65535, 0], "i couldn't meow that night": [65535, 0], "couldn't meow that night becuz": [65535, 0], "meow that night becuz auntie": [65535, 0], "that night becuz auntie was": [65535, 0], "night becuz auntie was watching": [65535, 0], "becuz auntie was watching me": [65535, 0], "auntie was watching me but": [65535, 0], "was watching me but i'll": [65535, 0], "watching me but i'll meow": [65535, 0], "me but i'll meow this": [65535, 0], "but i'll meow this time": [65535, 0], "i'll meow this time say": [65535, 0], "meow this time say what's": [65535, 0], "this time say what's that": [65535, 0], "time say what's that nothing": [65535, 0], "say what's that nothing but": [65535, 0], "what's that nothing but a": [65535, 0], "that nothing but a tick": [65535, 0], "nothing but a tick where'd": [65535, 0], "but a tick where'd you": [65535, 0], "a tick where'd you get": [65535, 0], "tick where'd you get him": [65535, 0], "where'd you get him out": [65535, 0], "you get him out in": [65535, 0], "get him out in the": [65535, 0], "him out in the woods": [65535, 0], "out in the woods what'll": [65535, 0], "in the woods what'll you": [65535, 0], "the woods what'll you take": [65535, 0], "woods what'll you take for": [65535, 0], "what'll you take for him": [65535, 0], "you take for him i": [65535, 0], "take for him i don't": [65535, 0], "for him i don't know": [65535, 0], "him i don't know i": [65535, 0], "i don't know i don't": [65535, 0], "don't know i don't want": [65535, 0], "know i don't want to": [65535, 0], "i don't want to sell": [65535, 0], "don't want to sell him": [65535, 0], "want to sell him all": [65535, 0], "to sell him all right": [65535, 0], "sell him all right it's": [65535, 0], "him all right it's a": [65535, 0], "all right it's a mighty": [65535, 0], "right it's a mighty small": [65535, 0], "it's a mighty small tick": [65535, 0], "a mighty small tick anyway": [65535, 0], "mighty small tick anyway oh": [65535, 0], "small tick anyway oh anybody": [65535, 0], "tick anyway oh anybody can": [65535, 0], "anyway oh anybody can run": [65535, 0], "oh anybody can run a": [65535, 0], "anybody can run a tick": [65535, 0], "can run a tick down": [65535, 0], "run a tick down that": [65535, 0], "a tick down that don't": [65535, 0], "tick down that don't belong": [65535, 0], "down that don't belong to": [65535, 0], "that don't belong to them": [65535, 0], "don't belong to them i'm": [65535, 0], "belong to them i'm satisfied": [65535, 0], "to them i'm satisfied with": [65535, 0], "them i'm satisfied with it": [65535, 0], "i'm satisfied with it it's": [65535, 0], "satisfied with it it's a": [65535, 0], "with it it's a good": [65535, 0], "it it's a good enough": [65535, 0], "it's a good enough tick": [65535, 0], "a good enough tick for": [65535, 0], "good enough tick for me": [65535, 0], "enough tick for me sho": [65535, 0], "tick for me sho there's": [65535, 0], "for me sho there's ticks": [65535, 0], "me sho there's ticks a": [65535, 0], "sho there's ticks a plenty": [65535, 0], "there's ticks a plenty i": [65535, 0], "ticks a plenty i could": [65535, 0], "a plenty i could have": [65535, 0], "plenty i could have a": [65535, 0], "i could have a thousand": [65535, 0], "could have a thousand of": [65535, 0], "have a thousand of 'em": [65535, 0], "a thousand of 'em if": [65535, 0], "thousand of 'em if i": [65535, 0], "of 'em if i wanted": [65535, 0], "'em if i wanted to": [65535, 0], "if i wanted to well": [65535, 0], "i wanted to well why": [65535, 0], "wanted to well why don't": [65535, 0], "to well why don't you": [65535, 0], "well why don't you becuz": [65535, 0], "why don't you becuz you": [65535, 0], "don't you becuz you know": [65535, 0], "you becuz you know mighty": [65535, 0], "becuz you know mighty well": [65535, 0], "you know mighty well you": [65535, 0], "know mighty well you can't": [65535, 0], "mighty well you can't this": [65535, 0], "well you can't this is": [65535, 0], "you can't this is a": [65535, 0], "can't this is a pretty": [65535, 0], "this is a pretty early": [65535, 0], "is a pretty early tick": [65535, 0], "a pretty early tick i": [65535, 0], "pretty early tick i reckon": [65535, 0], "early tick i reckon it's": [65535, 0], "tick i reckon it's the": [65535, 0], "i reckon it's the first": [65535, 0], "reckon it's the first one": [65535, 0], "it's the first one i've": [65535, 0], "the first one i've seen": [65535, 0], "first one i've seen this": [65535, 0], "one i've seen this year": [65535, 0], "i've seen this year say": [65535, 0], "seen this year say huck": [65535, 0], "this year say huck i'll": [65535, 0], "year say huck i'll give": [65535, 0], "say huck i'll give you": [65535, 0], "huck i'll give you my": [65535, 0], "i'll give you my tooth": [65535, 0], "give you my tooth for": [65535, 0], "you my tooth for him": [65535, 0], "my tooth for him less": [65535, 0], "tooth for him less see": [65535, 0], "for him less see it": [65535, 0], "him less see it tom": [65535, 0], "less see it tom got": [65535, 0], "see it tom got out": [65535, 0], "it tom got out a": [65535, 0], "tom got out a bit": [65535, 0], "got out a bit of": [65535, 0], "out a bit of paper": [65535, 0], "a bit of paper and": [65535, 0], "bit of paper and carefully": [65535, 0], "of paper and carefully unrolled": [65535, 0], "paper and carefully unrolled it": [65535, 0], "and carefully unrolled it huckleberry": [65535, 0], "carefully unrolled it huckleberry viewed": [65535, 0], "unrolled it huckleberry viewed it": [65535, 0], "it huckleberry viewed it wistfully": [65535, 0], "huckleberry viewed it wistfully the": [65535, 0], "viewed it wistfully the temptation": [65535, 0], "it wistfully the temptation was": [65535, 0], "wistfully the temptation was very": [65535, 0], "the temptation was very strong": [65535, 0], "temptation was very strong at": [65535, 0], "was very strong at last": [65535, 0], "very strong at last he": [65535, 0], "strong at last he said": [65535, 0], "at last he said is": [65535, 0], "last he said is it": [65535, 0], "he said is it genuwyne": [65535, 0], "said is it genuwyne tom": [65535, 0], "is it genuwyne tom lifted": [65535, 0], "it genuwyne tom lifted his": [65535, 0], "genuwyne tom lifted his lip": [65535, 0], "tom lifted his lip and": [65535, 0], "lifted his lip and showed": [65535, 0], "his lip and showed the": [65535, 0], "lip and showed the vacancy": [65535, 0], "and showed the vacancy well": [65535, 0], "showed the vacancy well all": [65535, 0], "the vacancy well all right": [65535, 0], "vacancy well all right said": [65535, 0], "well all right said huckleberry": [65535, 0], "all right said huckleberry it's": [65535, 0], "right said huckleberry it's a": [65535, 0], "said huckleberry it's a trade": [65535, 0], "huckleberry it's a trade tom": [65535, 0], "it's a trade tom enclosed": [65535, 0], "a trade tom enclosed the": [65535, 0], "trade tom enclosed the tick": [65535, 0], "tom enclosed the tick in": [65535, 0], "enclosed the tick in the": [65535, 0], "the tick in the percussion": [65535, 0], "tick in the percussion cap": [65535, 0], "in the percussion cap box": [65535, 0], "the percussion cap box that": [65535, 0], "percussion cap box that had": [65535, 0], "cap box that had lately": [65535, 0], "box that had lately been": [65535, 0], "that had lately been the": [65535, 0], "had lately been the pinchbug's": [65535, 0], "lately been the pinchbug's prison": [65535, 0], "been the pinchbug's prison and": [65535, 0], "the pinchbug's prison and the": [65535, 0], "pinchbug's prison and the boys": [65535, 0], "prison and the boys separated": [65535, 0], "and the boys separated each": [65535, 0], "the boys separated each feeling": [65535, 0], "boys separated each feeling wealthier": [65535, 0], "separated each feeling wealthier than": [65535, 0], "each feeling wealthier than before": [65535, 0], "feeling wealthier than before when": [65535, 0], "wealthier than before when tom": [65535, 0], "than before when tom reached": [65535, 0], "before when tom reached the": [65535, 0], "when tom reached the little": [65535, 0], "tom reached the little isolated": [65535, 0], "reached the little isolated frame": [65535, 0], "the little isolated frame schoolhouse": [65535, 0], "little isolated frame schoolhouse he": [65535, 0], "isolated frame schoolhouse he strode": [65535, 0], "frame schoolhouse he strode in": [65535, 0], "schoolhouse he strode in briskly": [65535, 0], "he strode in briskly with": [65535, 0], "strode in briskly with the": [65535, 0], "in briskly with the manner": [65535, 0], "briskly with the manner of": [65535, 0], "with the manner of one": [65535, 0], "the manner of one who": [65535, 0], "manner of one who had": [65535, 0], "of one who had come": [65535, 0], "one who had come with": [65535, 0], "who had come with all": [65535, 0], "had come with all honest": [65535, 0], "come with all honest speed": [65535, 0], "with all honest speed he": [65535, 0], "all honest speed he hung": [65535, 0], "honest speed he hung his": [65535, 0], "speed he hung his hat": [65535, 0], "he hung his hat on": [65535, 0], "hung his hat on a": [65535, 0], "his hat on a peg": [65535, 0], "hat on a peg and": [65535, 0], "on a peg and flung": [65535, 0], "a peg and flung himself": [65535, 0], "peg and flung himself into": [65535, 0], "and flung himself into his": [65535, 0], "flung himself into his seat": [65535, 0], "himself into his seat with": [65535, 0], "into his seat with business": [65535, 0], "his seat with business like": [65535, 0], "seat with business like alacrity": [65535, 0], "with business like alacrity the": [65535, 0], "business like alacrity the master": [65535, 0], "like alacrity the master throned": [65535, 0], "alacrity the master throned on": [65535, 0], "the master throned on high": [65535, 0], "master throned on high in": [65535, 0], "throned on high in his": [65535, 0], "on high in his great": [65535, 0], "high in his great splint": [65535, 0], "in his great splint bottom": [65535, 0], "his great splint bottom arm": [65535, 0], "great splint bottom arm chair": [65535, 0], "splint bottom arm chair was": [65535, 0], "bottom arm chair was dozing": [65535, 0], "arm chair was dozing lulled": [65535, 0], "chair was dozing lulled by": [65535, 0], "was dozing lulled by the": [65535, 0], "dozing lulled by the drowsy": [65535, 0], "lulled by the drowsy hum": [65535, 0], "by the drowsy hum of": [65535, 0], "the drowsy hum of study": [65535, 0], "drowsy hum of study the": [65535, 0], "hum of study the interruption": [65535, 0], "of study the interruption roused": [65535, 0], "study the interruption roused him": [65535, 0], "the interruption roused him thomas": [65535, 0], "interruption roused him thomas sawyer": [65535, 0], "roused him thomas sawyer tom": [65535, 0], "him thomas sawyer tom knew": [65535, 0], "thomas sawyer tom knew that": [65535, 0], "sawyer tom knew that when": [65535, 0], "tom knew that when his": [65535, 0], "knew that when his name": [65535, 0], "that when his name was": [65535, 0], "when his name was pronounced": [65535, 0], "his name was pronounced in": [65535, 0], "name was pronounced in full": [65535, 0], "was pronounced in full it": [65535, 0], "pronounced in full it meant": [65535, 0], "in full it meant trouble": [65535, 0], "full it meant trouble sir": [65535, 0], "it meant trouble sir come": [65535, 0], "meant trouble sir come up": [65535, 0], "trouble sir come up here": [65535, 0], "sir come up here now": [65535, 0], "come up here now sir": [65535, 0], "up here now sir why": [65535, 0], "here now sir why are": [65535, 0], "now sir why are you": [65535, 0], "sir why are you late": [65535, 0], "why are you late again": [65535, 0], "are you late again as": [65535, 0], "you late again as usual": [65535, 0], "late again as usual tom": [65535, 0], "again as usual tom was": [65535, 0], "as usual tom was about": [65535, 0], "usual tom was about to": [65535, 0], "tom was about to take": [65535, 0], "was about to take refuge": [65535, 0], "about to take refuge in": [65535, 0], "to take refuge in a": [65535, 0], "take refuge in a lie": [65535, 0], "refuge in a lie when": [65535, 0], "in a lie when he": [65535, 0], "a lie when he saw": [65535, 0], "lie when he saw two": [65535, 0], "when he saw two long": [65535, 0], "he saw two long tails": [65535, 0], "saw two long tails of": [65535, 0], "two long tails of yellow": [65535, 0], "long tails of yellow hair": [65535, 0], "tails of yellow hair hanging": [65535, 0], "of yellow hair hanging down": [65535, 0], "yellow hair hanging down a": [65535, 0], "hair hanging down a back": [65535, 0], "hanging down a back that": [65535, 0], "down a back that he": [65535, 0], "a back that he recognized": [65535, 0], "back that he recognized by": [65535, 0], "that he recognized by the": [65535, 0], "he recognized by the electric": [65535, 0], "recognized by the electric sympathy": [65535, 0], "by the electric sympathy of": [65535, 0], "the electric sympathy of love": [65535, 0], "electric sympathy of love and": [65535, 0], "sympathy of love and by": [65535, 0], "of love and by that": [65535, 0], "love and by that form": [65535, 0], "and by that form was": [65535, 0], "by that form was the": [65535, 0], "that form was the only": [65535, 0], "form was the only vacant": [65535, 0], "was the only vacant place": [65535, 0], "the only vacant place on": [65535, 0], "only vacant place on the": [65535, 0], "vacant place on the girls'": [65535, 0], "place on the girls' side": [65535, 0], "on the girls' side of": [65535, 0], "the girls' side of the": [65535, 0], "girls' side of the school": [65535, 0], "side of the school house": [65535, 0], "of the school house he": [65535, 0], "the school house he instantly": [65535, 0], "school house he instantly said": [65535, 0], "house he instantly said i": [65535, 0], "he instantly said i stopped": [65535, 0], "instantly said i stopped to": [65535, 0], "said i stopped to talk": [65535, 0], "i stopped to talk with": [65535, 0], "stopped to talk with huckleberry": [65535, 0], "to talk with huckleberry finn": [65535, 0], "talk with huckleberry finn the": [65535, 0], "with huckleberry finn the master's": [65535, 0], "huckleberry finn the master's pulse": [65535, 0], "finn the master's pulse stood": [65535, 0], "the master's pulse stood still": [65535, 0], "master's pulse stood still and": [65535, 0], "pulse stood still and he": [65535, 0], "stood still and he stared": [65535, 0], "still and he stared helplessly": [65535, 0], "and he stared helplessly the": [65535, 0], "he stared helplessly the buzz": [65535, 0], "stared helplessly the buzz of": [65535, 0], "helplessly the buzz of study": [65535, 0], "the buzz of study ceased": [65535, 0], "buzz of study ceased the": [65535, 0], "of study ceased the pupils": [65535, 0], "study ceased the pupils wondered": [65535, 0], "ceased the pupils wondered if": [65535, 0], "the pupils wondered if this": [65535, 0], "pupils wondered if this foolhardy": [65535, 0], "wondered if this foolhardy boy": [65535, 0], "if this foolhardy boy had": [65535, 0], "this foolhardy boy had lost": [65535, 0], "foolhardy boy had lost his": [65535, 0], "boy had lost his mind": [65535, 0], "had lost his mind the": [65535, 0], "lost his mind the master": [65535, 0], "his mind the master said": [65535, 0], "mind the master said you": [65535, 0], "the master said you you": [65535, 0], "master said you you did": [65535, 0], "said you you did what": [65535, 0], "you you did what stopped": [65535, 0], "you did what stopped to": [65535, 0], "did what stopped to talk": [65535, 0], "what stopped to talk with": [65535, 0], "talk with huckleberry finn there": [65535, 0], "with huckleberry finn there was": [65535, 0], "huckleberry finn there was no": [65535, 0], "finn there was no mistaking": [65535, 0], "there was no mistaking the": [65535, 0], "was no mistaking the words": [65535, 0], "no mistaking the words thomas": [65535, 0], "mistaking the words thomas sawyer": [65535, 0], "the words thomas sawyer this": [65535, 0], "words thomas sawyer this is": [65535, 0], "thomas sawyer this is the": [65535, 0], "sawyer this is the most": [65535, 0], "this is the most astounding": [65535, 0], "is the most astounding confession": [65535, 0], "the most astounding confession i": [65535, 0], "most astounding confession i have": [65535, 0], "astounding confession i have ever": [65535, 0], "confession i have ever listened": [65535, 0], "i have ever listened to": [65535, 0], "have ever listened to no": [65535, 0], "ever listened to no mere": [65535, 0], "listened to no mere ferule": [65535, 0], "to no mere ferule will": [65535, 0], "no mere ferule will answer": [65535, 0], "mere ferule will answer for": [65535, 0], "ferule will answer for this": [65535, 0], "will answer for this offence": [65535, 0], "answer for this offence take": [65535, 0], "for this offence take off": [65535, 0], "this offence take off your": [65535, 0], "offence take off your jacket": [65535, 0], "take off your jacket the": [65535, 0], "off your jacket the master's": [65535, 0], "your jacket the master's arm": [65535, 0], "jacket the master's arm performed": [65535, 0], "the master's arm performed until": [65535, 0], "master's arm performed until it": [65535, 0], "arm performed until it was": [65535, 0], "performed until it was tired": [65535, 0], "until it was tired and": [65535, 0], "it was tired and the": [65535, 0], "was tired and the stock": [65535, 0], "tired and the stock of": [65535, 0], "and the stock of switches": [65535, 0], "the stock of switches notably": [65535, 0], "stock of switches notably diminished": [65535, 0], "of switches notably diminished then": [65535, 0], "switches notably diminished then the": [65535, 0], "notably diminished then the order": [65535, 0], "diminished then the order followed": [65535, 0], "then the order followed now": [65535, 0], "the order followed now sir": [65535, 0], "order followed now sir go": [65535, 0], "followed now sir go and": [65535, 0], "now sir go and sit": [65535, 0], "sir go and sit with": [65535, 0], "go and sit with the": [65535, 0], "and sit with the girls": [65535, 0], "sit with the girls and": [65535, 0], "with the girls and let": [65535, 0], "the girls and let this": [65535, 0], "girls and let this be": [65535, 0], "and let this be a": [65535, 0], "let this be a warning": [65535, 0], "this be a warning to": [65535, 0], "be a warning to you": [65535, 0], "a warning to you the": [65535, 0], "warning to you the titter": [65535, 0], "to you the titter that": [65535, 0], "you the titter that rippled": [65535, 0], "the titter that rippled around": [65535, 0], "titter that rippled around the": [65535, 0], "that rippled around the room": [65535, 0], "rippled around the room appeared": [65535, 0], "around the room appeared to": [65535, 0], "the room appeared to abash": [65535, 0], "room appeared to abash the": [65535, 0], "appeared to abash the boy": [65535, 0], "to abash the boy but": [65535, 0], "abash the boy but in": [65535, 0], "the boy but in reality": [65535, 0], "boy but in reality that": [65535, 0], "but in reality that result": [65535, 0], "in reality that result was": [65535, 0], "reality that result was caused": [65535, 0], "that result was caused rather": [65535, 0], "result was caused rather more": [65535, 0], "was caused rather more by": [65535, 0], "caused rather more by his": [65535, 0], "rather more by his worshipful": [65535, 0], "more by his worshipful awe": [65535, 0], "by his worshipful awe of": [65535, 0], "his worshipful awe of his": [65535, 0], "worshipful awe of his unknown": [65535, 0], "awe of his unknown idol": [65535, 0], "of his unknown idol and": [65535, 0], "his unknown idol and the": [65535, 0], "unknown idol and the dread": [65535, 0], "idol and the dread pleasure": [65535, 0], "and the dread pleasure that": [65535, 0], "the dread pleasure that lay": [65535, 0], "dread pleasure that lay in": [65535, 0], "pleasure that lay in his": [65535, 0], "that lay in his high": [65535, 0], "lay in his high good": [65535, 0], "in his high good fortune": [65535, 0], "his high good fortune he": [65535, 0], "high good fortune he sat": [65535, 0], "good fortune he sat down": [65535, 0], "fortune he sat down upon": [65535, 0], "he sat down upon the": [65535, 0], "sat down upon the end": [65535, 0], "down upon the end of": [65535, 0], "upon the end of the": [65535, 0], "the end of the pine": [65535, 0], "end of the pine bench": [65535, 0], "of the pine bench and": [65535, 0], "the pine bench and the": [65535, 0], "pine bench and the girl": [65535, 0], "bench and the girl hitched": [65535, 0], "and the girl hitched herself": [65535, 0], "the girl hitched herself away": [65535, 0], "girl hitched herself away from": [65535, 0], "hitched herself away from him": [65535, 0], "herself away from him with": [65535, 0], "away from him with a": [65535, 0], "from him with a toss": [65535, 0], "him with a toss of": [65535, 0], "with a toss of her": [65535, 0], "a toss of her head": [65535, 0], "toss of her head nudges": [65535, 0], "of her head nudges and": [65535, 0], "her head nudges and winks": [65535, 0], "head nudges and winks and": [65535, 0], "nudges and winks and whispers": [65535, 0], "and winks and whispers traversed": [65535, 0], "winks and whispers traversed the": [65535, 0], "and whispers traversed the room": [65535, 0], "whispers traversed the room but": [65535, 0], "traversed the room but tom": [65535, 0], "the room but tom sat": [65535, 0], "room but tom sat still": [65535, 0], "but tom sat still with": [65535, 0], "tom sat still with his": [65535, 0], "sat still with his arms": [65535, 0], "still with his arms upon": [65535, 0], "with his arms upon the": [65535, 0], "his arms upon the long": [65535, 0], "arms upon the long low": [65535, 0], "upon the long low desk": [65535, 0], "the long low desk before": [65535, 0], "long low desk before him": [65535, 0], "low desk before him and": [65535, 0], "desk before him and seemed": [65535, 0], "before him and seemed to": [65535, 0], "him and seemed to study": [65535, 0], "and seemed to study his": [65535, 0], "seemed to study his book": [65535, 0], "to study his book by": [65535, 0], "study his book by and": [65535, 0], "his book by and by": [65535, 0], "book by and by attention": [65535, 0], "by and by attention ceased": [65535, 0], "and by attention ceased from": [65535, 0], "by attention ceased from him": [65535, 0], "attention ceased from him and": [65535, 0], "ceased from him and the": [65535, 0], "from him and the accustomed": [65535, 0], "him and the accustomed school": [65535, 0], "and the accustomed school murmur": [65535, 0], "the accustomed school murmur rose": [65535, 0], "accustomed school murmur rose upon": [65535, 0], "school murmur rose upon the": [65535, 0], "murmur rose upon the dull": [65535, 0], "rose upon the dull air": [65535, 0], "upon the dull air once": [65535, 0], "the dull air once more": [65535, 0], "dull air once more presently": [65535, 0], "air once more presently the": [65535, 0], "once more presently the boy": [65535, 0], "more presently the boy began": [65535, 0], "presently the boy began to": [65535, 0], "the boy began to steal": [65535, 0], "boy began to steal furtive": [65535, 0], "began to steal furtive glances": [65535, 0], "to steal furtive glances at": [65535, 0], "steal furtive glances at the": [65535, 0], "furtive glances at the girl": [65535, 0], "glances at the girl she": [65535, 0], "at the girl she observed": [65535, 0], "the girl she observed it": [65535, 0], "girl she observed it made": [65535, 0], "she observed it made a": [65535, 0], "observed it made a mouth": [65535, 0], "it made a mouth at": [65535, 0], "made a mouth at him": [65535, 0], "a mouth at him and": [65535, 0], "mouth at him and gave": [65535, 0], "at him and gave him": [65535, 0], "him and gave him the": [65535, 0], "and gave him the back": [65535, 0], "gave him the back of": [65535, 0], "him the back of her": [65535, 0], "the back of her head": [65535, 0], "back of her head for": [65535, 0], "of her head for the": [65535, 0], "her head for the space": [65535, 0], "head for the space of": [65535, 0], "for the space of a": [65535, 0], "the space of a minute": [65535, 0], "space of a minute when": [65535, 0], "of a minute when she": [65535, 0], "a minute when she cautiously": [65535, 0], "minute when she cautiously faced": [65535, 0], "when she cautiously faced around": [65535, 0], "she cautiously faced around again": [65535, 0], "cautiously faced around again a": [65535, 0], "faced around again a peach": [65535, 0], "around again a peach lay": [65535, 0], "again a peach lay before": [65535, 0], "a peach lay before her": [65535, 0], "peach lay before her she": [65535, 0], "lay before her she thrust": [65535, 0], "before her she thrust it": [65535, 0], "her she thrust it away": [65535, 0], "she thrust it away tom": [65535, 0], "thrust it away tom gently": [65535, 0], "it away tom gently put": [65535, 0], "away tom gently put it": [65535, 0], "tom gently put it back": [65535, 0], "gently put it back she": [65535, 0], "put it back she thrust": [65535, 0], "it back she thrust it": [65535, 0], "back she thrust it away": [65535, 0], "she thrust it away again": [65535, 0], "thrust it away again but": [65535, 0], "it away again but with": [65535, 0], "away again but with less": [65535, 0], "again but with less animosity": [65535, 0], "but with less animosity tom": [65535, 0], "with less animosity tom patiently": [65535, 0], "less animosity tom patiently returned": [65535, 0], "animosity tom patiently returned it": [65535, 0], "tom patiently returned it to": [65535, 0], "patiently returned it to its": [65535, 0], "returned it to its place": [65535, 0], "it to its place then": [65535, 0], "to its place then she": [65535, 0], "its place then she let": [65535, 0], "place then she let it": [65535, 0], "then she let it remain": [65535, 0], "she let it remain tom": [65535, 0], "let it remain tom scrawled": [65535, 0], "it remain tom scrawled on": [65535, 0], "remain tom scrawled on his": [65535, 0], "tom scrawled on his slate": [65535, 0], "scrawled on his slate please": [65535, 0], "on his slate please take": [65535, 0], "his slate please take it": [65535, 0], "slate please take it i": [65535, 0], "please take it i got": [65535, 0], "take it i got more": [65535, 0], "it i got more the": [65535, 0], "i got more the girl": [65535, 0], "got more the girl glanced": [65535, 0], "more the girl glanced at": [65535, 0], "the girl glanced at the": [65535, 0], "girl glanced at the words": [65535, 0], "glanced at the words but": [65535, 0], "at the words but made": [65535, 0], "the words but made no": [65535, 0], "words but made no sign": [65535, 0], "but made no sign now": [65535, 0], "made no sign now the": [65535, 0], "no sign now the boy": [65535, 0], "sign now the boy began": [65535, 0], "now the boy began to": [65535, 0], "the boy began to draw": [65535, 0], "boy began to draw something": [65535, 0], "began to draw something on": [65535, 0], "to draw something on the": [65535, 0], "draw something on the slate": [65535, 0], "something on the slate hiding": [65535, 0], "on the slate hiding his": [65535, 0], "the slate hiding his work": [65535, 0], "slate hiding his work with": [65535, 0], "hiding his work with his": [65535, 0], "his work with his left": [65535, 0], "work with his left hand": [65535, 0], "with his left hand for": [65535, 0], "his left hand for a": [65535, 0], "left hand for a time": [65535, 0], "hand for a time the": [65535, 0], "for a time the girl": [65535, 0], "a time the girl refused": [65535, 0], "time the girl refused to": [65535, 0], "the girl refused to notice": [65535, 0], "girl refused to notice but": [65535, 0], "refused to notice but her": [65535, 0], "to notice but her human": [65535, 0], "notice but her human curiosity": [65535, 0], "but her human curiosity presently": [65535, 0], "her human curiosity presently began": [65535, 0], "human curiosity presently began to": [65535, 0], "curiosity presently began to manifest": [65535, 0], "presently began to manifest itself": [65535, 0], "began to manifest itself by": [65535, 0], "to manifest itself by hardly": [65535, 0], "manifest itself by hardly perceptible": [65535, 0], "itself by hardly perceptible signs": [65535, 0], "by hardly perceptible signs the": [65535, 0], "hardly perceptible signs the boy": [65535, 0], "perceptible signs the boy worked": [65535, 0], "signs the boy worked on": [65535, 0], "the boy worked on apparently": [65535, 0], "boy worked on apparently unconscious": [65535, 0], "worked on apparently unconscious the": [65535, 0], "on apparently unconscious the girl": [65535, 0], "apparently unconscious the girl made": [65535, 0], "unconscious the girl made a": [65535, 0], "the girl made a sort": [65535, 0], "girl made a sort of": [65535, 0], "made a sort of noncommittal": [65535, 0], "a sort of noncommittal attempt": [65535, 0], "sort of noncommittal attempt to": [65535, 0], "of noncommittal attempt to see": [65535, 0], "noncommittal attempt to see but": [65535, 0], "attempt to see but the": [65535, 0], "to see but the boy": [65535, 0], "see but the boy did": [65535, 0], "but the boy did not": [65535, 0], "the boy did not betray": [65535, 0], "boy did not betray that": [65535, 0], "did not betray that he": [65535, 0], "not betray that he was": [65535, 0], "betray that he was aware": [65535, 0], "that he was aware of": [65535, 0], "he was aware of it": [65535, 0], "was aware of it at": [65535, 0], "aware of it at last": [65535, 0], "of it at last she": [65535, 0], "it at last she gave": [65535, 0], "at last she gave in": [65535, 0], "last she gave in and": [65535, 0], "she gave in and hesitatingly": [65535, 0], "gave in and hesitatingly whispered": [65535, 0], "in and hesitatingly whispered let": [65535, 0], "and hesitatingly whispered let me": [65535, 0], "hesitatingly whispered let me see": [65535, 0], "whispered let me see it": [65535, 0], "let me see it tom": [65535, 0], "me see it tom partly": [65535, 0], "see it tom partly uncovered": [65535, 0], "it tom partly uncovered a": [65535, 0], "tom partly uncovered a dismal": [65535, 0], "partly uncovered a dismal caricature": [65535, 0], "uncovered a dismal caricature of": [65535, 0], "a dismal caricature of a": [65535, 0], "dismal caricature of a house": [65535, 0], "caricature of a house with": [65535, 0], "of a house with two": [65535, 0], "a house with two gable": [65535, 0], "house with two gable ends": [65535, 0], "with two gable ends to": [65535, 0], "two gable ends to it": [65535, 0], "gable ends to it and": [65535, 0], "ends to it and a": [65535, 0], "to it and a corkscrew": [65535, 0], "it and a corkscrew of": [65535, 0], "and a corkscrew of smoke": [65535, 0], "a corkscrew of smoke issuing": [65535, 0], "corkscrew of smoke issuing from": [65535, 0], "of smoke issuing from the": [65535, 0], "smoke issuing from the chimney": [65535, 0], "issuing from the chimney then": [65535, 0], "from the chimney then the": [65535, 0], "the chimney then the girl's": [65535, 0], "chimney then the girl's interest": [65535, 0], "then the girl's interest began": [65535, 0], "the girl's interest began to": [65535, 0], "girl's interest began to fasten": [65535, 0], "interest began to fasten itself": [65535, 0], "began to fasten itself upon": [65535, 0], "to fasten itself upon the": [65535, 0], "fasten itself upon the work": [65535, 0], "itself upon the work and": [65535, 0], "upon the work and she": [65535, 0], "the work and she forgot": [65535, 0], "work and she forgot everything": [65535, 0], "and she forgot everything else": [65535, 0], "she forgot everything else when": [65535, 0], "forgot everything else when it": [65535, 0], "everything else when it was": [65535, 0], "else when it was finished": [65535, 0], "when it was finished she": [65535, 0], "it was finished she gazed": [65535, 0], "was finished she gazed a": [65535, 0], "finished she gazed a moment": [65535, 0], "she gazed a moment then": [65535, 0], "gazed a moment then whispered": [65535, 0], "a moment then whispered it's": [65535, 0], "moment then whispered it's nice": [65535, 0], "then whispered it's nice make": [65535, 0], "whispered it's nice make a": [65535, 0], "it's nice make a man": [65535, 0], "nice make a man the": [65535, 0], "make a man the artist": [65535, 0], "a man the artist erected": [65535, 0], "man the artist erected a": [65535, 0], "the artist erected a man": [65535, 0], "artist erected a man in": [65535, 0], "erected a man in the": [65535, 0], "a man in the front": [65535, 0], "man in the front yard": [65535, 0], "in the front yard that": [65535, 0], "the front yard that resembled": [65535, 0], "front yard that resembled a": [65535, 0], "yard that resembled a derrick": [65535, 0], "that resembled a derrick he": [65535, 0], "resembled a derrick he could": [65535, 0], "a derrick he could have": [65535, 0], "derrick he could have stepped": [65535, 0], "he could have stepped over": [65535, 0], "could have stepped over the": [65535, 0], "have stepped over the house": [65535, 0], "stepped over the house but": [65535, 0], "over the house but the": [65535, 0], "the house but the girl": [65535, 0], "house but the girl was": [65535, 0], "but the girl was not": [65535, 0], "the girl was not hypercritical": [65535, 0], "girl was not hypercritical she": [65535, 0], "was not hypercritical she was": [65535, 0], "not hypercritical she was satisfied": [65535, 0], "hypercritical she was satisfied with": [65535, 0], "she was satisfied with the": [65535, 0], "was satisfied with the monster": [65535, 0], "satisfied with the monster and": [65535, 0], "with the monster and whispered": [65535, 0], "the monster and whispered it's": [65535, 0], "monster and whispered it's a": [65535, 0], "and whispered it's a beautiful": [65535, 0], "whispered it's a beautiful man": [65535, 0], "it's a beautiful man now": [65535, 0], "a beautiful man now make": [65535, 0], "beautiful man now make me": [65535, 0], "man now make me coming": [65535, 0], "now make me coming along": [65535, 0], "make me coming along tom": [65535, 0], "me coming along tom drew": [65535, 0], "coming along tom drew an": [65535, 0], "along tom drew an hour": [65535, 0], "tom drew an hour glass": [65535, 0], "drew an hour glass with": [65535, 0], "an hour glass with a": [65535, 0], "hour glass with a full": [65535, 0], "glass with a full moon": [65535, 0], "with a full moon and": [65535, 0], "a full moon and straw": [65535, 0], "full moon and straw limbs": [65535, 0], "moon and straw limbs to": [65535, 0], "and straw limbs to it": [65535, 0], "straw limbs to it and": [65535, 0], "limbs to it and armed": [65535, 0], "to it and armed the": [65535, 0], "it and armed the spreading": [65535, 0], "and armed the spreading fingers": [65535, 0], "armed the spreading fingers with": [65535, 0], "the spreading fingers with a": [65535, 0], "spreading fingers with a portentous": [65535, 0], "fingers with a portentous fan": [65535, 0], "with a portentous fan the": [65535, 0], "a portentous fan the girl": [65535, 0], "portentous fan the girl said": [65535, 0], "fan the girl said it's": [65535, 0], "the girl said it's ever": [65535, 0], "girl said it's ever so": [65535, 0], "said it's ever so nice": [65535, 0], "it's ever so nice i": [65535, 0], "ever so nice i wish": [65535, 0], "so nice i wish i": [65535, 0], "nice i wish i could": [65535, 0], "i wish i could draw": [65535, 0], "wish i could draw it's": [65535, 0], "i could draw it's easy": [65535, 0], "could draw it's easy whispered": [65535, 0], "draw it's easy whispered tom": [65535, 0], "it's easy whispered tom i'll": [65535, 0], "easy whispered tom i'll learn": [65535, 0], "whispered tom i'll learn you": [65535, 0], "tom i'll learn you oh": [65535, 0], "i'll learn you oh will": [65535, 0], "learn you oh will you": [65535, 0], "you oh will you when": [65535, 0], "oh will you when at": [65535, 0], "will you when at noon": [65535, 0], "you when at noon do": [65535, 0], "when at noon do you": [65535, 0], "at noon do you go": [65535, 0], "noon do you go home": [65535, 0], "do you go home to": [65535, 0], "you go home to dinner": [65535, 0], "go home to dinner i'll": [65535, 0], "home to dinner i'll stay": [65535, 0], "to dinner i'll stay if": [65535, 0], "dinner i'll stay if you": [65535, 0], "i'll stay if you will": [65535, 0], "stay if you will good": [65535, 0], "if you will good that's": [65535, 0], "you will good that's a": [65535, 0], "will good that's a whack": [65535, 0], "good that's a whack what's": [65535, 0], "that's a whack what's your": [65535, 0], "a whack what's your name": [65535, 0], "whack what's your name becky": [65535, 0], "what's your name becky thatcher": [65535, 0], "your name becky thatcher what's": [65535, 0], "name becky thatcher what's yours": [65535, 0], "becky thatcher what's yours oh": [65535, 0], "thatcher what's yours oh i": [65535, 0], "what's yours oh i know": [65535, 0], "yours oh i know it's": [65535, 0], "oh i know it's thomas": [65535, 0], "i know it's thomas sawyer": [65535, 0], "know it's thomas sawyer that's": [65535, 0], "it's thomas sawyer that's the": [65535, 0], "thomas sawyer that's the name": [65535, 0], "sawyer that's the name they": [65535, 0], "that's the name they lick": [65535, 0], "the name they lick me": [65535, 0], "name they lick me by": [65535, 0], "they lick me by i'm": [65535, 0], "lick me by i'm tom": [65535, 0], "me by i'm tom when": [65535, 0], "by i'm tom when i'm": [65535, 0], "i'm tom when i'm good": [65535, 0], "tom when i'm good you": [65535, 0], "when i'm good you call": [65535, 0], "i'm good you call me": [65535, 0], "good you call me tom": [65535, 0], "you call me tom will": [65535, 0], "call me tom will you": [65535, 0], "me tom will you yes": [65535, 0], "tom will you yes now": [65535, 0], "will you yes now tom": [65535, 0], "you yes now tom began": [65535, 0], "yes now tom began to": [65535, 0], "now tom began to scrawl": [65535, 0], "tom began to scrawl something": [65535, 0], "began to scrawl something on": [65535, 0], "to scrawl something on the": [65535, 0], "scrawl something on the slate": [65535, 0], "on the slate hiding the": [65535, 0], "the slate hiding the words": [65535, 0], "slate hiding the words from": [65535, 0], "hiding the words from the": [65535, 0], "the words from the girl": [65535, 0], "words from the girl but": [65535, 0], "from the girl but she": [65535, 0], "the girl but she was": [65535, 0], "girl but she was not": [65535, 0], "but she was not backward": [65535, 0], "she was not backward this": [65535, 0], "was not backward this time": [65535, 0], "not backward this time she": [65535, 0], "backward this time she begged": [65535, 0], "this time she begged to": [65535, 0], "time she begged to see": [65535, 0], "she begged to see tom": [65535, 0], "begged to see tom said": [65535, 0], "to see tom said oh": [65535, 0], "see tom said oh it": [65535, 0], "tom said oh it ain't": [65535, 0], "said oh it ain't anything": [65535, 0], "oh it ain't anything yes": [65535, 0], "it ain't anything yes it": [65535, 0], "ain't anything yes it is": [65535, 0], "anything yes it is no": [65535, 0], "yes it is no it": [65535, 0], "it is no it ain't": [65535, 0], "is no it ain't you": [65535, 0], "no it ain't you don't": [65535, 0], "it ain't you don't want": [65535, 0], "ain't you don't want to": [65535, 0], "you don't want to see": [65535, 0], "don't want to see yes": [65535, 0], "want to see yes i": [65535, 0], "to see yes i do": [65535, 0], "see yes i do indeed": [65535, 0], "yes i do indeed i": [65535, 0], "i do indeed i do": [65535, 0], "do indeed i do please": [65535, 0], "indeed i do please let": [65535, 0], "i do please let me": [65535, 0], "do please let me you'll": [65535, 0], "please let me you'll tell": [65535, 0], "let me you'll tell no": [65535, 0], "me you'll tell no i": [65535, 0], "you'll tell no i won't": [65535, 0], "tell no i won't deed": [65535, 0], "no i won't deed and": [65535, 0], "i won't deed and deed": [65535, 0], "won't deed and deed and": [65535, 0], "deed and deed and double": [65535, 0], "and deed and double deed": [65535, 0], "deed and double deed won't": [65535, 0], "and double deed won't you": [65535, 0], "double deed won't you won't": [65535, 0], "deed won't you won't tell": [65535, 0], "won't you won't tell anybody": [65535, 0], "you won't tell anybody at": [65535, 0], "won't tell anybody at all": [65535, 0], "tell anybody at all ever": [65535, 0], "anybody at all ever as": [65535, 0], "at all ever as long": [65535, 0], "all ever as long as": [65535, 0], "ever as long as you": [65535, 0], "as long as you live": [65535, 0], "long as you live no": [65535, 0], "as you live no i": [65535, 0], "you live no i won't": [65535, 0], "live no i won't ever": [65535, 0], "no i won't ever tell": [65535, 0], "i won't ever tell anybody": [65535, 0], "won't ever tell anybody now": [65535, 0], "ever tell anybody now let": [65535, 0], "tell anybody now let me": [65535, 0], "anybody now let me oh": [65535, 0], "now let me oh you": [65535, 0], "let me oh you don't": [65535, 0], "me oh you don't want": [65535, 0], "oh you don't want to": [65535, 0], "don't want to see now": [65535, 0], "want to see now that": [65535, 0], "to see now that you": [65535, 0], "see now that you treat": [65535, 0], "now that you treat me": [65535, 0], "that you treat me so": [65535, 0], "you treat me so i": [65535, 0], "treat me so i will": [65535, 0], "me so i will see": [65535, 0], "so i will see and": [65535, 0], "i will see and she": [65535, 0], "will see and she put": [65535, 0], "see and she put her": [65535, 0], "and she put her small": [65535, 0], "she put her small hand": [65535, 0], "put her small hand upon": [65535, 0], "her small hand upon his": [65535, 0], "small hand upon his and": [65535, 0], "hand upon his and a": [65535, 0], "upon his and a little": [65535, 0], "his and a little scuffle": [65535, 0], "and a little scuffle ensued": [65535, 0], "a little scuffle ensued tom": [65535, 0], "little scuffle ensued tom pretending": [65535, 0], "scuffle ensued tom pretending to": [65535, 0], "ensued tom pretending to resist": [65535, 0], "tom pretending to resist in": [65535, 0], "pretending to resist in earnest": [65535, 0], "to resist in earnest but": [65535, 0], "resist in earnest but letting": [65535, 0], "in earnest but letting his": [65535, 0], "earnest but letting his hand": [65535, 0], "but letting his hand slip": [65535, 0], "letting his hand slip by": [65535, 0], "his hand slip by degrees": [65535, 0], "hand slip by degrees till": [65535, 0], "slip by degrees till these": [65535, 0], "by degrees till these words": [65535, 0], "degrees till these words were": [65535, 0], "till these words were revealed": [65535, 0], "these words were revealed i": [65535, 0], "words were revealed i love": [65535, 0], "were revealed i love you": [65535, 0], "revealed i love you oh": [65535, 0], "i love you oh you": [65535, 0], "love you oh you bad": [65535, 0], "you oh you bad thing": [65535, 0], "oh you bad thing and": [65535, 0], "you bad thing and she": [65535, 0], "bad thing and she hit": [65535, 0], "thing and she hit his": [65535, 0], "and she hit his hand": [65535, 0], "she hit his hand a": [65535, 0], "hit his hand a smart": [65535, 0], "his hand a smart rap": [65535, 0], "hand a smart rap but": [65535, 0], "a smart rap but reddened": [65535, 0], "smart rap but reddened and": [65535, 0], "rap but reddened and looked": [65535, 0], "but reddened and looked pleased": [65535, 0], "reddened and looked pleased nevertheless": [65535, 0], "and looked pleased nevertheless just": [65535, 0], "looked pleased nevertheless just at": [65535, 0], "pleased nevertheless just at this": [65535, 0], "nevertheless just at this juncture": [65535, 0], "just at this juncture the": [65535, 0], "at this juncture the boy": [65535, 0], "this juncture the boy felt": [65535, 0], "juncture the boy felt a": [65535, 0], "the boy felt a slow": [65535, 0], "boy felt a slow fateful": [65535, 0], "felt a slow fateful grip": [65535, 0], "a slow fateful grip closing": [65535, 0], "slow fateful grip closing on": [65535, 0], "fateful grip closing on his": [65535, 0], "grip closing on his ear": [65535, 0], "closing on his ear and": [65535, 0], "on his ear and a": [65535, 0], "his ear and a steady": [65535, 0], "ear and a steady lifting": [65535, 0], "and a steady lifting impulse": [65535, 0], "a steady lifting impulse in": [65535, 0], "steady lifting impulse in that": [65535, 0], "lifting impulse in that vise": [65535, 0], "impulse in that vise he": [65535, 0], "in that vise he was": [65535, 0], "that vise he was borne": [65535, 0], "vise he was borne across": [65535, 0], "he was borne across the": [65535, 0], "was borne across the house": [65535, 0], "borne across the house and": [65535, 0], "across the house and deposited": [65535, 0], "the house and deposited in": [65535, 0], "house and deposited in his": [65535, 0], "and deposited in his own": [65535, 0], "deposited in his own seat": [65535, 0], "in his own seat under": [65535, 0], "his own seat under a": [65535, 0], "own seat under a peppering": [65535, 0], "seat under a peppering fire": [65535, 0], "under a peppering fire of": [65535, 0], "a peppering fire of giggles": [65535, 0], "peppering fire of giggles from": [65535, 0], "fire of giggles from the": [65535, 0], "of giggles from the whole": [65535, 0], "giggles from the whole school": [65535, 0], "from the whole school then": [65535, 0], "the whole school then the": [65535, 0], "whole school then the master": [65535, 0], "school then the master stood": [65535, 0], "then the master stood over": [65535, 0], "the master stood over him": [65535, 0], "master stood over him during": [65535, 0], "stood over him during a": [65535, 0], "over him during a few": [65535, 0], "him during a few awful": [65535, 0], "during a few awful moments": [65535, 0], "a few awful moments and": [65535, 0], "few awful moments and finally": [65535, 0], "awful moments and finally moved": [65535, 0], "moments and finally moved away": [65535, 0], "and finally moved away to": [65535, 0], "finally moved away to his": [65535, 0], "moved away to his throne": [65535, 0], "away to his throne without": [65535, 0], "to his throne without saying": [65535, 0], "his throne without saying a": [65535, 0], "throne without saying a word": [65535, 0], "without saying a word but": [65535, 0], "saying a word but although": [65535, 0], "a word but although tom's": [65535, 0], "word but although tom's ear": [65535, 0], "but although tom's ear tingled": [65535, 0], "although tom's ear tingled his": [65535, 0], "tom's ear tingled his heart": [65535, 0], "ear tingled his heart was": [65535, 0], "tingled his heart was jubilant": [65535, 0], "his heart was jubilant as": [65535, 0], "heart was jubilant as the": [65535, 0], "was jubilant as the school": [65535, 0], "jubilant as the school quieted": [65535, 0], "as the school quieted down": [65535, 0], "the school quieted down tom": [65535, 0], "school quieted down tom made": [65535, 0], "quieted down tom made an": [65535, 0], "down tom made an honest": [65535, 0], "tom made an honest effort": [65535, 0], "made an honest effort to": [65535, 0], "an honest effort to study": [65535, 0], "honest effort to study but": [65535, 0], "effort to study but the": [65535, 0], "to study but the turmoil": [65535, 0], "study but the turmoil within": [65535, 0], "but the turmoil within him": [65535, 0], "the turmoil within him was": [65535, 0], "turmoil within him was too": [65535, 0], "within him was too great": [65535, 0], "him was too great in": [65535, 0], "was too great in turn": [65535, 0], "too great in turn he": [65535, 0], "great in turn he took": [65535, 0], "in turn he took his": [65535, 0], "turn he took his place": [65535, 0], "he took his place in": [65535, 0], "took his place in the": [65535, 0], "his place in the reading": [65535, 0], "place in the reading class": [65535, 0], "in the reading class and": [65535, 0], "the reading class and made": [65535, 0], "reading class and made a": [65535, 0], "class and made a botch": [65535, 0], "and made a botch of": [65535, 0], "made a botch of it": [65535, 0], "a botch of it then": [65535, 0], "botch of it then in": [65535, 0], "of it then in the": [65535, 0], "it then in the geography": [65535, 0], "then in the geography class": [65535, 0], "in the geography class and": [65535, 0], "the geography class and turned": [65535, 0], "geography class and turned lakes": [65535, 0], "class and turned lakes into": [65535, 0], "and turned lakes into mountains": [65535, 0], "turned lakes into mountains mountains": [65535, 0], "lakes into mountains mountains into": [65535, 0], "into mountains mountains into rivers": [65535, 0], "mountains mountains into rivers and": [65535, 0], "mountains into rivers and rivers": [65535, 0], "into rivers and rivers into": [65535, 0], "rivers and rivers into continents": [65535, 0], "and rivers into continents till": [65535, 0], "rivers into continents till chaos": [65535, 0], "into continents till chaos was": [65535, 0], "continents till chaos was come": [65535, 0], "till chaos was come again": [65535, 0], "chaos was come again then": [65535, 0], "was come again then in": [65535, 0], "come again then in the": [65535, 0], "again then in the spelling": [65535, 0], "then in the spelling class": [65535, 0], "in the spelling class and": [65535, 0], "the spelling class and got": [65535, 0], "spelling class and got turned": [65535, 0], "class and got turned down": [65535, 0], "and got turned down by": [65535, 0], "got turned down by a": [65535, 0], "turned down by a succession": [65535, 0], "down by a succession of": [65535, 0], "by a succession of mere": [65535, 0], "a succession of mere baby": [65535, 0], "succession of mere baby words": [65535, 0], "of mere baby words till": [65535, 0], "mere baby words till he": [65535, 0], "baby words till he brought": [65535, 0], "words till he brought up": [65535, 0], "till he brought up at": [65535, 0], "he brought up at the": [65535, 0], "brought up at the foot": [65535, 0], "up at the foot and": [65535, 0], "at the foot and yielded": [65535, 0], "the foot and yielded up": [65535, 0], "foot and yielded up the": [65535, 0], "and yielded up the pewter": [65535, 0], "yielded up the pewter medal": [65535, 0], "up the pewter medal which": [65535, 0], "the pewter medal which he": [65535, 0], "pewter medal which he had": [65535, 0], "medal which he had worn": [65535, 0], "which he had worn with": [65535, 0], "he had worn with ostentation": [65535, 0], "had worn with ostentation for": [65535, 0], "worn with ostentation for months": [65535, 0], "monday morning found tom sawyer miserable": [65535, 0], "morning found tom sawyer miserable monday": [65535, 0], "found tom sawyer miserable monday morning": [65535, 0], "tom sawyer miserable monday morning always": [65535, 0], "sawyer miserable monday morning always found": [65535, 0], "miserable monday morning always found him": [65535, 0], "monday morning always found him so": [65535, 0], "morning always found him so because": [65535, 0], "always found him so because it": [65535, 0], "found him so because it began": [65535, 0], "him so because it began another": [65535, 0], "so because it began another week's": [65535, 0], "because it began another week's slow": [65535, 0], "it began another week's slow suffering": [65535, 0], "began another week's slow suffering in": [65535, 0], "another week's slow suffering in school": [65535, 0], "week's slow suffering in school he": [65535, 0], "slow suffering in school he generally": [65535, 0], "suffering in school he generally began": [65535, 0], "in school he generally began that": [65535, 0], "school he generally began that day": [65535, 0], "he generally began that day with": [65535, 0], "generally began that day with wishing": [65535, 0], "began that day with wishing he": [65535, 0], "that day with wishing he had": [65535, 0], "day with wishing he had had": [65535, 0], "with wishing he had had no": [65535, 0], "wishing he had had no intervening": [65535, 0], "he had had no intervening holiday": [65535, 0], "had had no intervening holiday it": [65535, 0], "had no intervening holiday it made": [65535, 0], "no intervening holiday it made the": [65535, 0], "intervening holiday it made the going": [65535, 0], "holiday it made the going into": [65535, 0], "it made the going into captivity": [65535, 0], "made the going into captivity and": [65535, 0], "the going into captivity and fetters": [65535, 0], "going into captivity and fetters again": [65535, 0], "into captivity and fetters again so": [65535, 0], "captivity and fetters again so much": [65535, 0], "and fetters again so much more": [65535, 0], "fetters again so much more odious": [65535, 0], "again so much more odious tom": [65535, 0], "so much more odious tom lay": [65535, 0], "much more odious tom lay thinking": [65535, 0], "more odious tom lay thinking presently": [65535, 0], "odious tom lay thinking presently it": [65535, 0], "tom lay thinking presently it occurred": [65535, 0], "lay thinking presently it occurred to": [65535, 0], "thinking presently it occurred to him": [65535, 0], "presently it occurred to him that": [65535, 0], "it occurred to him that he": [65535, 0], "occurred to him that he wished": [65535, 0], "to him that he wished he": [65535, 0], "him that he wished he was": [65535, 0], "that he wished he was sick": [65535, 0], "he wished he was sick then": [65535, 0], "wished he was sick then he": [65535, 0], "he was sick then he could": [65535, 0], "was sick then he could stay": [65535, 0], "sick then he could stay home": [65535, 0], "then he could stay home from": [65535, 0], "he could stay home from school": [65535, 0], "could stay home from school here": [65535, 0], "stay home from school here was": [65535, 0], "home from school here was a": [65535, 0], "from school here was a vague": [65535, 0], "school here was a vague possibility": [65535, 0], "here was a vague possibility he": [65535, 0], "was a vague possibility he canvassed": [65535, 0], "a vague possibility he canvassed his": [65535, 0], "vague possibility he canvassed his system": [65535, 0], "possibility he canvassed his system no": [65535, 0], "he canvassed his system no ailment": [65535, 0], "canvassed his system no ailment was": [65535, 0], "his system no ailment was found": [65535, 0], "system no ailment was found and": [65535, 0], "no ailment was found and he": [65535, 0], "ailment was found and he investigated": [65535, 0], "was found and he investigated again": [65535, 0], "found and he investigated again this": [65535, 0], "and he investigated again this time": [65535, 0], "he investigated again this time he": [65535, 0], "investigated again this time he thought": [65535, 0], "again this time he thought he": [65535, 0], "this time he thought he could": [65535, 0], "time he thought he could detect": [65535, 0], "he thought he could detect colicky": [65535, 0], "thought he could detect colicky symptoms": [65535, 0], "he could detect colicky symptoms and": [65535, 0], "could detect colicky symptoms and he": [65535, 0], "detect colicky symptoms and he began": [65535, 0], "colicky symptoms and he began to": [65535, 0], "symptoms and he began to encourage": [65535, 0], "and he began to encourage them": [65535, 0], "he began to encourage them with": [65535, 0], "began to encourage them with considerable": [65535, 0], "to encourage them with considerable hope": [65535, 0], "encourage them with considerable hope but": [65535, 0], "them with considerable hope but they": [65535, 0], "with considerable hope but they soon": [65535, 0], "considerable hope but they soon grew": [65535, 0], "hope but they soon grew feeble": [65535, 0], "but they soon grew feeble and": [65535, 0], "they soon grew feeble and presently": [65535, 0], "soon grew feeble and presently died": [65535, 0], "grew feeble and presently died wholly": [65535, 0], "feeble and presently died wholly away": [65535, 0], "and presently died wholly away he": [65535, 0], "presently died wholly away he reflected": [65535, 0], "died wholly away he reflected further": [65535, 0], "wholly away he reflected further suddenly": [65535, 0], "away he reflected further suddenly he": [65535, 0], "he reflected further suddenly he discovered": [65535, 0], "reflected further suddenly he discovered something": [65535, 0], "further suddenly he discovered something one": [65535, 0], "suddenly he discovered something one of": [65535, 0], "he discovered something one of his": [65535, 0], "discovered something one of his upper": [65535, 0], "something one of his upper front": [65535, 0], "one of his upper front teeth": [65535, 0], "of his upper front teeth was": [65535, 0], "his upper front teeth was loose": [65535, 0], "upper front teeth was loose this": [65535, 0], "front teeth was loose this was": [65535, 0], "teeth was loose this was lucky": [65535, 0], "was loose this was lucky he": [65535, 0], "loose this was lucky he was": [65535, 0], "this was lucky he was about": [65535, 0], "was lucky he was about to": [65535, 0], "lucky he was about to begin": [65535, 0], "he was about to begin to": [65535, 0], "was about to begin to groan": [65535, 0], "about to begin to groan as": [65535, 0], "to begin to groan as a": [65535, 0], "begin to groan as a starter": [65535, 0], "to groan as a starter as": [65535, 0], "groan as a starter as he": [65535, 0], "as a starter as he called": [65535, 0], "a starter as he called it": [65535, 0], "starter as he called it when": [65535, 0], "as he called it when it": [65535, 0], "he called it when it occurred": [65535, 0], "called it when it occurred to": [65535, 0], "it when it occurred to him": [65535, 0], "when it occurred to him that": [65535, 0], "it occurred to him that if": [65535, 0], "occurred to him that if he": [65535, 0], "to him that if he came": [65535, 0], "him that if he came into": [65535, 0], "that if he came into court": [65535, 0], "if he came into court with": [65535, 0], "he came into court with that": [65535, 0], "came into court with that argument": [65535, 0], "into court with that argument his": [65535, 0], "court with that argument his aunt": [65535, 0], "with that argument his aunt would": [65535, 0], "that argument his aunt would pull": [65535, 0], "argument his aunt would pull it": [65535, 0], "his aunt would pull it out": [65535, 0], "aunt would pull it out and": [65535, 0], "would pull it out and that": [65535, 0], "pull it out and that would": [65535, 0], "it out and that would hurt": [65535, 0], "out and that would hurt so": [65535, 0], "and that would hurt so he": [65535, 0], "that would hurt so he thought": [65535, 0], "would hurt so he thought he": [65535, 0], "hurt so he thought he would": [65535, 0], "so he thought he would hold": [65535, 0], "he thought he would hold the": [65535, 0], "thought he would hold the tooth": [65535, 0], "he would hold the tooth in": [65535, 0], "would hold the tooth in reserve": [65535, 0], "hold the tooth in reserve for": [65535, 0], "the tooth in reserve for the": [65535, 0], "tooth in reserve for the present": [65535, 0], "in reserve for the present and": [65535, 0], "reserve for the present and seek": [65535, 0], "for the present and seek further": [65535, 0], "the present and seek further nothing": [65535, 0], "present and seek further nothing offered": [65535, 0], "and seek further nothing offered for": [65535, 0], "seek further nothing offered for some": [65535, 0], "further nothing offered for some little": [65535, 0], "nothing offered for some little time": [65535, 0], "offered for some little time and": [65535, 0], "for some little time and then": [65535, 0], "some little time and then he": [65535, 0], "little time and then he remembered": [65535, 0], "time and then he remembered hearing": [65535, 0], "and then he remembered hearing the": [65535, 0], "then he remembered hearing the doctor": [65535, 0], "he remembered hearing the doctor tell": [65535, 0], "remembered hearing the doctor tell about": [65535, 0], "hearing the doctor tell about a": [65535, 0], "the doctor tell about a certain": [65535, 0], "doctor tell about a certain thing": [65535, 0], "tell about a certain thing that": [65535, 0], "about a certain thing that laid": [65535, 0], "a certain thing that laid up": [65535, 0], "certain thing that laid up a": [65535, 0], "thing that laid up a patient": [65535, 0], "that laid up a patient for": [65535, 0], "laid up a patient for two": [65535, 0], "up a patient for two or": [65535, 0], "a patient for two or three": [65535, 0], "patient for two or three weeks": [65535, 0], "for two or three weeks and": [65535, 0], "two or three weeks and threatened": [65535, 0], "or three weeks and threatened to": [65535, 0], "three weeks and threatened to make": [65535, 0], "weeks and threatened to make him": [65535, 0], "and threatened to make him lose": [65535, 0], "threatened to make him lose a": [65535, 0], "to make him lose a finger": [65535, 0], "make him lose a finger so": [65535, 0], "him lose a finger so the": [65535, 0], "lose a finger so the boy": [65535, 0], "a finger so the boy eagerly": [65535, 0], "finger so the boy eagerly drew": [65535, 0], "so the boy eagerly drew his": [65535, 0], "the boy eagerly drew his sore": [65535, 0], "boy eagerly drew his sore toe": [65535, 0], "eagerly drew his sore toe from": [65535, 0], "drew his sore toe from under": [65535, 0], "his sore toe from under the": [65535, 0], "sore toe from under the sheet": [65535, 0], "toe from under the sheet and": [65535, 0], "from under the sheet and held": [65535, 0], "under the sheet and held it": [65535, 0], "the sheet and held it up": [65535, 0], "sheet and held it up for": [65535, 0], "and held it up for inspection": [65535, 0], "held it up for inspection but": [65535, 0], "it up for inspection but now": [65535, 0], "up for inspection but now he": [65535, 0], "for inspection but now he did": [65535, 0], "inspection but now he did not": [65535, 0], "but now he did not know": [65535, 0], "now he did not know the": [65535, 0], "he did not know the necessary": [65535, 0], "did not know the necessary symptoms": [65535, 0], "not know the necessary symptoms however": [65535, 0], "know the necessary symptoms however it": [65535, 0], "the necessary symptoms however it seemed": [65535, 0], "necessary symptoms however it seemed well": [65535, 0], "symptoms however it seemed well worth": [65535, 0], "however it seemed well worth while": [65535, 0], "it seemed well worth while to": [65535, 0], "seemed well worth while to chance": [65535, 0], "well worth while to chance it": [65535, 0], "worth while to chance it so": [65535, 0], "while to chance it so he": [65535, 0], "to chance it so he fell": [65535, 0], "chance it so he fell to": [65535, 0], "it so he fell to groaning": [65535, 0], "so he fell to groaning with": [65535, 0], "he fell to groaning with considerable": [65535, 0], "fell to groaning with considerable spirit": [65535, 0], "to groaning with considerable spirit but": [65535, 0], "groaning with considerable spirit but sid": [65535, 0], "with considerable spirit but sid slept": [65535, 0], "considerable spirit but sid slept on": [65535, 0], "spirit but sid slept on unconscious": [65535, 0], "but sid slept on unconscious tom": [65535, 0], "sid slept on unconscious tom groaned": [65535, 0], "slept on unconscious tom groaned louder": [65535, 0], "on unconscious tom groaned louder and": [65535, 0], "unconscious tom groaned louder and fancied": [65535, 0], "tom groaned louder and fancied that": [65535, 0], "groaned louder and fancied that he": [65535, 0], "louder and fancied that he began": [65535, 0], "and fancied that he began to": [65535, 0], "fancied that he began to feel": [65535, 0], "that he began to feel pain": [65535, 0], "he began to feel pain in": [65535, 0], "began to feel pain in the": [65535, 0], "to feel pain in the toe": [65535, 0], "feel pain in the toe no": [65535, 0], "pain in the toe no result": [65535, 0], "in the toe no result from": [65535, 0], "the toe no result from sid": [65535, 0], "toe no result from sid tom": [65535, 0], "no result from sid tom was": [65535, 0], "result from sid tom was panting": [65535, 0], "from sid tom was panting with": [65535, 0], "sid tom was panting with his": [65535, 0], "tom was panting with his exertions": [65535, 0], "was panting with his exertions by": [65535, 0], "panting with his exertions by this": [65535, 0], "with his exertions by this time": [65535, 0], "his exertions by this time he": [65535, 0], "exertions by this time he took": [65535, 0], "by this time he took a": [65535, 0], "this time he took a rest": [65535, 0], "time he took a rest and": [65535, 0], "he took a rest and then": [65535, 0], "took a rest and then swelled": [65535, 0], "a rest and then swelled himself": [65535, 0], "rest and then swelled himself up": [65535, 0], "and then swelled himself up and": [65535, 0], "then swelled himself up and fetched": [65535, 0], "swelled himself up and fetched a": [65535, 0], "himself up and fetched a succession": [65535, 0], "up and fetched a succession of": [65535, 0], "and fetched a succession of admirable": [65535, 0], "fetched a succession of admirable groans": [65535, 0], "a succession of admirable groans sid": [65535, 0], "succession of admirable groans sid snored": [65535, 0], "of admirable groans sid snored on": [65535, 0], "admirable groans sid snored on tom": [65535, 0], "groans sid snored on tom was": [65535, 0], "sid snored on tom was aggravated": [65535, 0], "snored on tom was aggravated he": [65535, 0], "on tom was aggravated he said": [65535, 0], "tom was aggravated he said sid": [65535, 0], "was aggravated he said sid sid": [65535, 0], "aggravated he said sid sid and": [65535, 0], "he said sid sid and shook": [65535, 0], "said sid sid and shook him": [65535, 0], "sid sid and shook him this": [65535, 0], "sid and shook him this course": [65535, 0], "and shook him this course worked": [65535, 0], "shook him this course worked well": [65535, 0], "him this course worked well and": [65535, 0], "this course worked well and tom": [65535, 0], "course worked well and tom began": [65535, 0], "worked well and tom began to": [65535, 0], "well and tom began to groan": [65535, 0], "and tom began to groan again": [65535, 0], "tom began to groan again sid": [65535, 0], "began to groan again sid yawned": [65535, 0], "to groan again sid yawned stretched": [65535, 0], "groan again sid yawned stretched then": [65535, 0], "again sid yawned stretched then brought": [65535, 0], "sid yawned stretched then brought himself": [65535, 0], "yawned stretched then brought himself up": [65535, 0], "stretched then brought himself up on": [65535, 0], "then brought himself up on his": [65535, 0], "brought himself up on his elbow": [65535, 0], "himself up on his elbow with": [65535, 0], "up on his elbow with a": [65535, 0], "on his elbow with a snort": [65535, 0], "his elbow with a snort and": [65535, 0], "elbow with a snort and began": [65535, 0], "with a snort and began to": [65535, 0], "a snort and began to stare": [65535, 0], "snort and began to stare at": [65535, 0], "and began to stare at tom": [65535, 0], "began to stare at tom tom": [65535, 0], "to stare at tom tom went": [65535, 0], "stare at tom tom went on": [65535, 0], "at tom tom went on groaning": [65535, 0], "tom tom went on groaning sid": [65535, 0], "tom went on groaning sid said": [65535, 0], "went on groaning sid said tom": [65535, 0], "on groaning sid said tom say": [65535, 0], "groaning sid said tom say tom": [65535, 0], "sid said tom say tom no": [65535, 0], "said tom say tom no response": [65535, 0], "tom say tom no response here": [65535, 0], "say tom no response here tom": [65535, 0], "tom no response here tom tom": [65535, 0], "no response here tom tom what": [65535, 0], "response here tom tom what is": [65535, 0], "here tom tom what is the": [65535, 0], "tom tom what is the matter": [65535, 0], "tom what is the matter tom": [65535, 0], "what is the matter tom and": [65535, 0], "is the matter tom and he": [65535, 0], "the matter tom and he shook": [65535, 0], "matter tom and he shook him": [65535, 0], "tom and he shook him and": [65535, 0], "and he shook him and looked": [65535, 0], "he shook him and looked in": [65535, 0], "shook him and looked in his": [65535, 0], "him and looked in his face": [65535, 0], "and looked in his face anxiously": [65535, 0], "looked in his face anxiously tom": [65535, 0], "in his face anxiously tom moaned": [65535, 0], "his face anxiously tom moaned out": [65535, 0], "face anxiously tom moaned out oh": [65535, 0], "anxiously tom moaned out oh don't": [65535, 0], "tom moaned out oh don't sid": [65535, 0], "moaned out oh don't sid don't": [65535, 0], "out oh don't sid don't joggle": [65535, 0], "oh don't sid don't joggle me": [65535, 0], "don't sid don't joggle me why": [65535, 0], "sid don't joggle me why what's": [65535, 0], "don't joggle me why what's the": [65535, 0], "joggle me why what's the matter": [65535, 0], "me why what's the matter tom": [65535, 0], "why what's the matter tom i": [65535, 0], "what's the matter tom i must": [65535, 0], "the matter tom i must call": [65535, 0], "matter tom i must call auntie": [65535, 0], "tom i must call auntie no": [65535, 0], "i must call auntie no never": [65535, 0], "must call auntie no never mind": [65535, 0], "call auntie no never mind it'll": [65535, 0], "auntie no never mind it'll be": [65535, 0], "no never mind it'll be over": [65535, 0], "never mind it'll be over by": [65535, 0], "mind it'll be over by and": [65535, 0], "it'll be over by and by": [65535, 0], "be over by and by maybe": [65535, 0], "over by and by maybe don't": [65535, 0], "by and by maybe don't call": [65535, 0], "and by maybe don't call anybody": [65535, 0], "by maybe don't call anybody but": [65535, 0], "maybe don't call anybody but i": [65535, 0], "don't call anybody but i must": [65535, 0], "call anybody but i must don't": [65535, 0], "anybody but i must don't groan": [65535, 0], "but i must don't groan so": [65535, 0], "i must don't groan so tom": [65535, 0], "must don't groan so tom it's": [65535, 0], "don't groan so tom it's awful": [65535, 0], "groan so tom it's awful how": [65535, 0], "so tom it's awful how long": [65535, 0], "tom it's awful how long you": [65535, 0], "it's awful how long you been": [65535, 0], "awful how long you been this": [65535, 0], "how long you been this way": [65535, 0], "long you been this way hours": [65535, 0], "you been this way hours ouch": [65535, 0], "been this way hours ouch oh": [65535, 0], "this way hours ouch oh don't": [65535, 0], "way hours ouch oh don't stir": [65535, 0], "hours ouch oh don't stir so": [65535, 0], "ouch oh don't stir so sid": [65535, 0], "oh don't stir so sid you'll": [65535, 0], "don't stir so sid you'll kill": [65535, 0], "stir so sid you'll kill me": [65535, 0], "so sid you'll kill me tom": [65535, 0], "sid you'll kill me tom why": [65535, 0], "you'll kill me tom why didn't": [65535, 0], "kill me tom why didn't you": [65535, 0], "me tom why didn't you wake": [65535, 0], "tom why didn't you wake me": [65535, 0], "why didn't you wake me sooner": [65535, 0], "didn't you wake me sooner oh": [65535, 0], "you wake me sooner oh tom": [65535, 0], "wake me sooner oh tom don't": [65535, 0], "me sooner oh tom don't it": [65535, 0], "sooner oh tom don't it makes": [65535, 0], "oh tom don't it makes my": [65535, 0], "tom don't it makes my flesh": [65535, 0], "don't it makes my flesh crawl": [65535, 0], "it makes my flesh crawl to": [65535, 0], "makes my flesh crawl to hear": [65535, 0], "my flesh crawl to hear you": [65535, 0], "flesh crawl to hear you tom": [65535, 0], "crawl to hear you tom what": [65535, 0], "to hear you tom what is": [65535, 0], "hear you tom what is the": [65535, 0], "you tom what is the matter": [65535, 0], "tom what is the matter i": [65535, 0], "what is the matter i forgive": [65535, 0], "is the matter i forgive you": [65535, 0], "the matter i forgive you everything": [65535, 0], "matter i forgive you everything sid": [65535, 0], "i forgive you everything sid groan": [65535, 0], "forgive you everything sid groan everything": [65535, 0], "you everything sid groan everything you've": [65535, 0], "everything sid groan everything you've ever": [65535, 0], "sid groan everything you've ever done": [65535, 0], "groan everything you've ever done to": [65535, 0], "everything you've ever done to me": [65535, 0], "you've ever done to me when": [65535, 0], "ever done to me when i'm": [65535, 0], "done to me when i'm gone": [65535, 0], "to me when i'm gone oh": [65535, 0], "me when i'm gone oh tom": [65535, 0], "when i'm gone oh tom you": [65535, 0], "i'm gone oh tom you ain't": [65535, 0], "gone oh tom you ain't dying": [65535, 0], "oh tom you ain't dying are": [65535, 0], "tom you ain't dying are you": [65535, 0], "you ain't dying are you don't": [65535, 0], "ain't dying are you don't tom": [65535, 0], "dying are you don't tom oh": [65535, 0], "are you don't tom oh don't": [65535, 0], "you don't tom oh don't maybe": [65535, 0], "don't tom oh don't maybe i": [65535, 0], "tom oh don't maybe i forgive": [65535, 0], "oh don't maybe i forgive everybody": [65535, 0], "don't maybe i forgive everybody sid": [65535, 0], "maybe i forgive everybody sid groan": [65535, 0], "i forgive everybody sid groan tell": [65535, 0], "forgive everybody sid groan tell 'em": [65535, 0], "everybody sid groan tell 'em so": [65535, 0], "sid groan tell 'em so sid": [65535, 0], "groan tell 'em so sid and": [65535, 0], "tell 'em so sid and sid": [65535, 0], "'em so sid and sid you": [65535, 0], "so sid and sid you give": [65535, 0], "sid and sid you give my": [65535, 0], "and sid you give my window": [65535, 0], "sid you give my window sash": [65535, 0], "you give my window sash and": [65535, 0], "give my window sash and my": [65535, 0], "my window sash and my cat": [65535, 0], "window sash and my cat with": [65535, 0], "sash and my cat with one": [65535, 0], "and my cat with one eye": [65535, 0], "my cat with one eye to": [65535, 0], "cat with one eye to that": [65535, 0], "with one eye to that new": [65535, 0], "one eye to that new girl": [65535, 0], "eye to that new girl that's": [65535, 0], "to that new girl that's come": [65535, 0], "that new girl that's come to": [65535, 0], "new girl that's come to town": [65535, 0], "girl that's come to town and": [65535, 0], "that's come to town and tell": [65535, 0], "come to town and tell her": [65535, 0], "to town and tell her but": [65535, 0], "town and tell her but sid": [65535, 0], "and tell her but sid had": [65535, 0], "tell her but sid had snatched": [65535, 0], "her but sid had snatched his": [65535, 0], "but sid had snatched his clothes": [65535, 0], "sid had snatched his clothes and": [65535, 0], "had snatched his clothes and gone": [65535, 0], "snatched his clothes and gone tom": [65535, 0], "his clothes and gone tom was": [65535, 0], "clothes and gone tom was suffering": [65535, 0], "and gone tom was suffering in": [65535, 0], "gone tom was suffering in reality": [65535, 0], "tom was suffering in reality now": [65535, 0], "was suffering in reality now so": [65535, 0], "suffering in reality now so handsomely": [65535, 0], "in reality now so handsomely was": [65535, 0], "reality now so handsomely was his": [65535, 0], "now so handsomely was his imagination": [65535, 0], "so handsomely was his imagination working": [65535, 0], "handsomely was his imagination working and": [65535, 0], "was his imagination working and so": [65535, 0], "his imagination working and so his": [65535, 0], "imagination working and so his groans": [65535, 0], "working and so his groans had": [65535, 0], "and so his groans had gathered": [65535, 0], "so his groans had gathered quite": [65535, 0], "his groans had gathered quite a": [65535, 0], "groans had gathered quite a genuine": [65535, 0], "had gathered quite a genuine tone": [65535, 0], "gathered quite a genuine tone sid": [65535, 0], "quite a genuine tone sid flew": [65535, 0], "a genuine tone sid flew down": [65535, 0], "genuine tone sid flew down stairs": [65535, 0], "tone sid flew down stairs and": [65535, 0], "sid flew down stairs and said": [65535, 0], "flew down stairs and said oh": [65535, 0], "down stairs and said oh aunt": [65535, 0], "stairs and said oh aunt polly": [65535, 0], "and said oh aunt polly come": [65535, 0], "said oh aunt polly come tom's": [65535, 0], "oh aunt polly come tom's dying": [65535, 0], "aunt polly come tom's dying dying": [65535, 0], "polly come tom's dying dying yes'm": [65535, 0], "come tom's dying dying yes'm don't": [65535, 0], "tom's dying dying yes'm don't wait": [65535, 0], "dying dying yes'm don't wait come": [65535, 0], "dying yes'm don't wait come quick": [65535, 0], "yes'm don't wait come quick rubbage": [65535, 0], "don't wait come quick rubbage i": [65535, 0], "wait come quick rubbage i don't": [65535, 0], "come quick rubbage i don't believe": [65535, 0], "quick rubbage i don't believe it": [65535, 0], "rubbage i don't believe it but": [65535, 0], "i don't believe it but she": [65535, 0], "don't believe it but she fled": [65535, 0], "believe it but she fled up": [65535, 0], "it but she fled up stairs": [65535, 0], "but she fled up stairs nevertheless": [65535, 0], "she fled up stairs nevertheless with": [65535, 0], "fled up stairs nevertheless with sid": [65535, 0], "up stairs nevertheless with sid and": [65535, 0], "stairs nevertheless with sid and mary": [65535, 0], "nevertheless with sid and mary at": [65535, 0], "with sid and mary at her": [65535, 0], "sid and mary at her heels": [65535, 0], "and mary at her heels and": [65535, 0], "mary at her heels and her": [65535, 0], "at her heels and her face": [65535, 0], "her heels and her face grew": [65535, 0], "heels and her face grew white": [65535, 0], "and her face grew white too": [65535, 0], "her face grew white too and": [65535, 0], "face grew white too and her": [65535, 0], "grew white too and her lip": [65535, 0], "white too and her lip trembled": [65535, 0], "too and her lip trembled when": [65535, 0], "and her lip trembled when she": [65535, 0], "her lip trembled when she reached": [65535, 0], "lip trembled when she reached the": [65535, 0], "trembled when she reached the bedside": [65535, 0], "when she reached the bedside she": [65535, 0], "she reached the bedside she gasped": [65535, 0], "reached the bedside she gasped out": [65535, 0], "the bedside she gasped out you": [65535, 0], "bedside she gasped out you tom": [65535, 0], "she gasped out you tom tom": [65535, 0], "gasped out you tom tom what's": [65535, 0], "out you tom tom what's the": [65535, 0], "you tom tom what's the matter": [65535, 0], "tom tom what's the matter with": [65535, 0], "tom what's the matter with you": [65535, 0], "what's the matter with you oh": [65535, 0], "the matter with you oh auntie": [65535, 0], "matter with you oh auntie i'm": [65535, 0], "with you oh auntie i'm what's": [65535, 0], "you oh auntie i'm what's the": [65535, 0], "oh auntie i'm what's the matter": [65535, 0], "auntie i'm what's the matter with": [65535, 0], "i'm what's the matter with you": [65535, 0], "what's the matter with you what": [65535, 0], "the matter with you what is": [65535, 0], "matter with you what is the": [65535, 0], "with you what is the matter": [65535, 0], "you what is the matter with": [65535, 0], "what is the matter with you": [65535, 0], "is the matter with you child": [65535, 0], "the matter with you child oh": [65535, 0], "matter with you child oh auntie": [65535, 0], "with you child oh auntie my": [65535, 0], "you child oh auntie my sore": [65535, 0], "child oh auntie my sore toe's": [65535, 0], "oh auntie my sore toe's mortified": [65535, 0], "auntie my sore toe's mortified the": [65535, 0], "my sore toe's mortified the old": [65535, 0], "sore toe's mortified the old lady": [65535, 0], "toe's mortified the old lady sank": [65535, 0], "mortified the old lady sank down": [65535, 0], "the old lady sank down into": [65535, 0], "old lady sank down into a": [65535, 0], "lady sank down into a chair": [65535, 0], "sank down into a chair and": [65535, 0], "down into a chair and laughed": [65535, 0], "into a chair and laughed a": [65535, 0], "a chair and laughed a little": [65535, 0], "chair and laughed a little then": [65535, 0], "and laughed a little then cried": [65535, 0], "laughed a little then cried a": [65535, 0], "a little then cried a little": [65535, 0], "little then cried a little then": [65535, 0], "then cried a little then did": [65535, 0], "cried a little then did both": [65535, 0], "a little then did both together": [65535, 0], "little then did both together this": [65535, 0], "then did both together this restored": [65535, 0], "did both together this restored her": [65535, 0], "both together this restored her and": [65535, 0], "together this restored her and she": [65535, 0], "this restored her and she said": [65535, 0], "restored her and she said tom": [65535, 0], "her and she said tom what": [65535, 0], "and she said tom what a": [65535, 0], "she said tom what a turn": [65535, 0], "said tom what a turn you": [65535, 0], "tom what a turn you did": [65535, 0], "what a turn you did give": [65535, 0], "a turn you did give me": [65535, 0], "turn you did give me now": [65535, 0], "you did give me now you": [65535, 0], "did give me now you shut": [65535, 0], "give me now you shut up": [65535, 0], "me now you shut up that": [65535, 0], "now you shut up that nonsense": [65535, 0], "you shut up that nonsense and": [65535, 0], "shut up that nonsense and climb": [65535, 0], "up that nonsense and climb out": [65535, 0], "that nonsense and climb out of": [65535, 0], "nonsense and climb out of this": [65535, 0], "and climb out of this the": [65535, 0], "climb out of this the groans": [65535, 0], "out of this the groans ceased": [65535, 0], "of this the groans ceased and": [65535, 0], "this the groans ceased and the": [65535, 0], "the groans ceased and the pain": [65535, 0], "groans ceased and the pain vanished": [65535, 0], "ceased and the pain vanished from": [65535, 0], "and the pain vanished from the": [65535, 0], "the pain vanished from the toe": [65535, 0], "pain vanished from the toe the": [65535, 0], "vanished from the toe the boy": [65535, 0], "from the toe the boy felt": [65535, 0], "the toe the boy felt a": [65535, 0], "toe the boy felt a little": [65535, 0], "the boy felt a little foolish": [65535, 0], "boy felt a little foolish and": [65535, 0], "felt a little foolish and he": [65535, 0], "a little foolish and he said": [65535, 0], "little foolish and he said aunt": [65535, 0], "foolish and he said aunt polly": [65535, 0], "and he said aunt polly it": [65535, 0], "he said aunt polly it seemed": [65535, 0], "said aunt polly it seemed mortified": [65535, 0], "aunt polly it seemed mortified and": [65535, 0], "polly it seemed mortified and it": [65535, 0], "it seemed mortified and it hurt": [65535, 0], "seemed mortified and it hurt so": [65535, 0], "mortified and it hurt so i": [65535, 0], "and it hurt so i never": [65535, 0], "it hurt so i never minded": [65535, 0], "hurt so i never minded my": [65535, 0], "so i never minded my tooth": [65535, 0], "i never minded my tooth at": [65535, 0], "never minded my tooth at all": [65535, 0], "minded my tooth at all your": [65535, 0], "my tooth at all your tooth": [65535, 0], "tooth at all your tooth indeed": [65535, 0], "at all your tooth indeed what's": [65535, 0], "all your tooth indeed what's the": [65535, 0], "your tooth indeed what's the matter": [65535, 0], "tooth indeed what's the matter with": [65535, 0], "indeed what's the matter with your": [65535, 0], "what's the matter with your tooth": [65535, 0], "the matter with your tooth one": [65535, 0], "matter with your tooth one of": [65535, 0], "with your tooth one of them's": [65535, 0], "your tooth one of them's loose": [65535, 0], "tooth one of them's loose and": [65535, 0], "one of them's loose and it": [65535, 0], "of them's loose and it aches": [65535, 0], "them's loose and it aches perfectly": [65535, 0], "loose and it aches perfectly awful": [65535, 0], "and it aches perfectly awful there": [65535, 0], "it aches perfectly awful there there": [65535, 0], "aches perfectly awful there there now": [65535, 0], "perfectly awful there there now don't": [65535, 0], "awful there there now don't begin": [65535, 0], "there there now don't begin that": [65535, 0], "there now don't begin that groaning": [65535, 0], "now don't begin that groaning again": [65535, 0], "don't begin that groaning again open": [65535, 0], "begin that groaning again open your": [65535, 0], "that groaning again open your mouth": [65535, 0], "groaning again open your mouth well": [65535, 0], "again open your mouth well your": [65535, 0], "open your mouth well your tooth": [65535, 0], "your mouth well your tooth is": [65535, 0], "mouth well your tooth is loose": [65535, 0], "well your tooth is loose but": [65535, 0], "your tooth is loose but you're": [65535, 0], "tooth is loose but you're not": [65535, 0], "is loose but you're not going": [65535, 0], "loose but you're not going to": [65535, 0], "but you're not going to die": [65535, 0], "you're not going to die about": [65535, 0], "not going to die about that": [65535, 0], "going to die about that mary": [65535, 0], "to die about that mary get": [65535, 0], "die about that mary get me": [65535, 0], "about that mary get me a": [65535, 0], "that mary get me a silk": [65535, 0], "mary get me a silk thread": [65535, 0], "get me a silk thread and": [65535, 0], "me a silk thread and a": [65535, 0], "a silk thread and a chunk": [65535, 0], "silk thread and a chunk of": [65535, 0], "thread and a chunk of fire": [65535, 0], "and a chunk of fire out": [65535, 0], "a chunk of fire out of": [65535, 0], "chunk of fire out of the": [65535, 0], "of fire out of the kitchen": [65535, 0], "fire out of the kitchen tom": [65535, 0], "out of the kitchen tom said": [65535, 0], "of the kitchen tom said oh": [65535, 0], "the kitchen tom said oh please": [65535, 0], "kitchen tom said oh please auntie": [65535, 0], "tom said oh please auntie don't": [65535, 0], "said oh please auntie don't pull": [65535, 0], "oh please auntie don't pull it": [65535, 0], "please auntie don't pull it out": [65535, 0], "auntie don't pull it out it": [65535, 0], "don't pull it out it don't": [65535, 0], "pull it out it don't hurt": [65535, 0], "it out it don't hurt any": [65535, 0], "out it don't hurt any more": [65535, 0], "it don't hurt any more i": [65535, 0], "don't hurt any more i wish": [65535, 0], "hurt any more i wish i": [65535, 0], "any more i wish i may": [65535, 0], "more i wish i may never": [65535, 0], "i wish i may never stir": [65535, 0], "wish i may never stir if": [65535, 0], "i may never stir if it": [65535, 0], "may never stir if it does": [65535, 0], "never stir if it does please": [65535, 0], "stir if it does please don't": [65535, 0], "if it does please don't auntie": [65535, 0], "it does please don't auntie i": [65535, 0], "does please don't auntie i don't": [65535, 0], "please don't auntie i don't want": [65535, 0], "don't auntie i don't want to": [65535, 0], "auntie i don't want to stay": [65535, 0], "i don't want to stay home": [65535, 0], "don't want to stay home from": [65535, 0], "want to stay home from school": [65535, 0], "to stay home from school oh": [65535, 0], "stay home from school oh you": [65535, 0], "home from school oh you don't": [65535, 0], "from school oh you don't don't": [65535, 0], "school oh you don't don't you": [65535, 0], "oh you don't don't you so": [65535, 0], "you don't don't you so all": [65535, 0], "don't don't you so all this": [65535, 0], "don't you so all this row": [65535, 0], "you so all this row was": [65535, 0], "so all this row was because": [65535, 0], "all this row was because you": [65535, 0], "this row was because you thought": [65535, 0], "row was because you thought you'd": [65535, 0], "was because you thought you'd get": [65535, 0], "because you thought you'd get to": [65535, 0], "you thought you'd get to stay": [65535, 0], "thought you'd get to stay home": [65535, 0], "you'd get to stay home from": [65535, 0], "get to stay home from school": [65535, 0], "to stay home from school and": [65535, 0], "stay home from school and go": [65535, 0], "home from school and go a": [65535, 0], "from school and go a fishing": [65535, 0], "school and go a fishing tom": [65535, 0], "and go a fishing tom tom": [65535, 0], "go a fishing tom tom i": [65535, 0], "a fishing tom tom i love": [65535, 0], "fishing tom tom i love you": [65535, 0], "tom tom i love you so": [65535, 0], "tom i love you so and": [65535, 0], "i love you so and you": [65535, 0], "love you so and you seem": [65535, 0], "you so and you seem to": [65535, 0], "so and you seem to try": [65535, 0], "and you seem to try every": [65535, 0], "you seem to try every way": [65535, 0], "seem to try every way you": [65535, 0], "to try every way you can": [65535, 0], "try every way you can to": [65535, 0], "every way you can to break": [65535, 0], "way you can to break my": [65535, 0], "you can to break my old": [65535, 0], "can to break my old heart": [65535, 0], "to break my old heart with": [65535, 0], "break my old heart with your": [65535, 0], "my old heart with your outrageousness": [65535, 0], "old heart with your outrageousness by": [65535, 0], "heart with your outrageousness by this": [65535, 0], "with your outrageousness by this time": [65535, 0], "your outrageousness by this time the": [65535, 0], "outrageousness by this time the dental": [65535, 0], "by this time the dental instruments": [65535, 0], "this time the dental instruments were": [65535, 0], "time the dental instruments were ready": [65535, 0], "the dental instruments were ready the": [65535, 0], "dental instruments were ready the old": [65535, 0], "instruments were ready the old lady": [65535, 0], "were ready the old lady made": [65535, 0], "ready the old lady made one": [65535, 0], "the old lady made one end": [65535, 0], "old lady made one end of": [65535, 0], "lady made one end of the": [65535, 0], "made one end of the silk": [65535, 0], "one end of the silk thread": [65535, 0], "end of the silk thread fast": [65535, 0], "of the silk thread fast to": [65535, 0], "the silk thread fast to tom's": [65535, 0], "silk thread fast to tom's tooth": [65535, 0], "thread fast to tom's tooth with": [65535, 0], "fast to tom's tooth with a": [65535, 0], "to tom's tooth with a loop": [65535, 0], "tom's tooth with a loop and": [65535, 0], "tooth with a loop and tied": [65535, 0], "with a loop and tied the": [65535, 0], "a loop and tied the other": [65535, 0], "loop and tied the other to": [65535, 0], "and tied the other to the": [65535, 0], "tied the other to the bedpost": [65535, 0], "the other to the bedpost then": [65535, 0], "other to the bedpost then she": [65535, 0], "to the bedpost then she seized": [65535, 0], "the bedpost then she seized the": [65535, 0], "bedpost then she seized the chunk": [65535, 0], "then she seized the chunk of": [65535, 0], "she seized the chunk of fire": [65535, 0], "seized the chunk of fire and": [65535, 0], "the chunk of fire and suddenly": [65535, 0], "chunk of fire and suddenly thrust": [65535, 0], "of fire and suddenly thrust it": [65535, 0], "fire and suddenly thrust it almost": [65535, 0], "and suddenly thrust it almost into": [65535, 0], "suddenly thrust it almost into the": [65535, 0], "thrust it almost into the boy's": [65535, 0], "it almost into the boy's face": [65535, 0], "almost into the boy's face the": [65535, 0], "into the boy's face the tooth": [65535, 0], "the boy's face the tooth hung": [65535, 0], "boy's face the tooth hung dangling": [65535, 0], "face the tooth hung dangling by": [65535, 0], "the tooth hung dangling by the": [65535, 0], "tooth hung dangling by the bedpost": [65535, 0], "hung dangling by the bedpost now": [65535, 0], "dangling by the bedpost now but": [65535, 0], "by the bedpost now but all": [65535, 0], "the bedpost now but all trials": [65535, 0], "bedpost now but all trials bring": [65535, 0], "now but all trials bring their": [65535, 0], "but all trials bring their compensations": [65535, 0], "all trials bring their compensations as": [65535, 0], "trials bring their compensations as tom": [65535, 0], "bring their compensations as tom wended": [65535, 0], "their compensations as tom wended to": [65535, 0], "compensations as tom wended to school": [65535, 0], "as tom wended to school after": [65535, 0], "tom wended to school after breakfast": [65535, 0], "wended to school after breakfast he": [65535, 0], "to school after breakfast he was": [65535, 0], "school after breakfast he was the": [65535, 0], "after breakfast he was the envy": [65535, 0], "breakfast he was the envy of": [65535, 0], "he was the envy of every": [65535, 0], "was the envy of every boy": [65535, 0], "the envy of every boy he": [65535, 0], "envy of every boy he met": [65535, 0], "of every boy he met because": [65535, 0], "every boy he met because the": [65535, 0], "boy he met because the gap": [65535, 0], "he met because the gap in": [65535, 0], "met because the gap in his": [65535, 0], "because the gap in his upper": [65535, 0], "the gap in his upper row": [65535, 0], "gap in his upper row of": [65535, 0], "in his upper row of teeth": [65535, 0], "his upper row of teeth enabled": [65535, 0], "upper row of teeth enabled him": [65535, 0], "row of teeth enabled him to": [65535, 0], "of teeth enabled him to expectorate": [65535, 0], "teeth enabled him to expectorate in": [65535, 0], "enabled him to expectorate in a": [65535, 0], "him to expectorate in a new": [65535, 0], "to expectorate in a new and": [65535, 0], "expectorate in a new and admirable": [65535, 0], "in a new and admirable way": [65535, 0], "a new and admirable way he": [65535, 0], "new and admirable way he gathered": [65535, 0], "and admirable way he gathered quite": [65535, 0], "admirable way he gathered quite a": [65535, 0], "way he gathered quite a following": [65535, 0], "he gathered quite a following of": [65535, 0], "gathered quite a following of lads": [65535, 0], "quite a following of lads interested": [65535, 0], "a following of lads interested in": [65535, 0], "following of lads interested in the": [65535, 0], "of lads interested in the exhibition": [65535, 0], "lads interested in the exhibition and": [65535, 0], "interested in the exhibition and one": [65535, 0], "in the exhibition and one that": [65535, 0], "the exhibition and one that had": [65535, 0], "exhibition and one that had cut": [65535, 0], "and one that had cut his": [65535, 0], "one that had cut his finger": [65535, 0], "that had cut his finger and": [65535, 0], "had cut his finger and had": [65535, 0], "cut his finger and had been": [65535, 0], "his finger and had been a": [65535, 0], "finger and had been a centre": [65535, 0], "and had been a centre of": [65535, 0], "had been a centre of fascination": [65535, 0], "been a centre of fascination and": [65535, 0], "a centre of fascination and homage": [65535, 0], "centre of fascination and homage up": [65535, 0], "of fascination and homage up to": [65535, 0], "fascination and homage up to this": [65535, 0], "and homage up to this time": [65535, 0], "homage up to this time now": [65535, 0], "up to this time now found": [65535, 0], "to this time now found himself": [65535, 0], "this time now found himself suddenly": [65535, 0], "time now found himself suddenly without": [65535, 0], "now found himself suddenly without an": [65535, 0], "found himself suddenly without an adherent": [65535, 0], "himself suddenly without an adherent and": [65535, 0], "suddenly without an adherent and shorn": [65535, 0], "without an adherent and shorn of": [65535, 0], "an adherent and shorn of his": [65535, 0], "adherent and shorn of his glory": [65535, 0], "and shorn of his glory his": [65535, 0], "shorn of his glory his heart": [65535, 0], "of his glory his heart was": [65535, 0], "his glory his heart was heavy": [65535, 0], "glory his heart was heavy and": [65535, 0], "his heart was heavy and he": [65535, 0], "heart was heavy and he said": [65535, 0], "was heavy and he said with": [65535, 0], "heavy and he said with a": [65535, 0], "and he said with a disdain": [65535, 0], "he said with a disdain which": [65535, 0], "said with a disdain which he": [65535, 0], "with a disdain which he did": [65535, 0], "a disdain which he did not": [65535, 0], "disdain which he did not feel": [65535, 0], "which he did not feel that": [65535, 0], "he did not feel that it": [65535, 0], "did not feel that it wasn't": [65535, 0], "not feel that it wasn't anything": [65535, 0], "feel that it wasn't anything to": [65535, 0], "that it wasn't anything to spit": [65535, 0], "it wasn't anything to spit like": [65535, 0], "wasn't anything to spit like tom": [65535, 0], "anything to spit like tom sawyer": [65535, 0], "to spit like tom sawyer but": [65535, 0], "spit like tom sawyer but another": [65535, 0], "like tom sawyer but another boy": [65535, 0], "tom sawyer but another boy said": [65535, 0], "sawyer but another boy said sour": [65535, 0], "but another boy said sour grapes": [65535, 0], "another boy said sour grapes and": [65535, 0], "boy said sour grapes and he": [65535, 0], "said sour grapes and he wandered": [65535, 0], "sour grapes and he wandered away": [65535, 0], "grapes and he wandered away a": [65535, 0], "and he wandered away a dismantled": [65535, 0], "he wandered away a dismantled hero": [65535, 0], "wandered away a dismantled hero shortly": [65535, 0], "away a dismantled hero shortly tom": [65535, 0], "a dismantled hero shortly tom came": [65535, 0], "dismantled hero shortly tom came upon": [65535, 0], "hero shortly tom came upon the": [65535, 0], "shortly tom came upon the juvenile": [65535, 0], "tom came upon the juvenile pariah": [65535, 0], "came upon the juvenile pariah of": [65535, 0], "upon the juvenile pariah of the": [65535, 0], "the juvenile pariah of the village": [65535, 0], "juvenile pariah of the village huckleberry": [65535, 0], "pariah of the village huckleberry finn": [65535, 0], "of the village huckleberry finn son": [65535, 0], "the village huckleberry finn son of": [65535, 0], "village huckleberry finn son of the": [65535, 0], "huckleberry finn son of the town": [65535, 0], "finn son of the town drunkard": [65535, 0], "son of the town drunkard huckleberry": [65535, 0], "of the town drunkard huckleberry was": [65535, 0], "the town drunkard huckleberry was cordially": [65535, 0], "town drunkard huckleberry was cordially hated": [65535, 0], "drunkard huckleberry was cordially hated and": [65535, 0], "huckleberry was cordially hated and dreaded": [65535, 0], "was cordially hated and dreaded by": [65535, 0], "cordially hated and dreaded by all": [65535, 0], "hated and dreaded by all the": [65535, 0], "and dreaded by all the mothers": [65535, 0], "dreaded by all the mothers of": [65535, 0], "by all the mothers of the": [65535, 0], "all the mothers of the town": [65535, 0], "the mothers of the town because": [65535, 0], "mothers of the town because he": [65535, 0], "of the town because he was": [65535, 0], "the town because he was idle": [65535, 0], "town because he was idle and": [65535, 0], "because he was idle and lawless": [65535, 0], "he was idle and lawless and": [65535, 0], "was idle and lawless and vulgar": [65535, 0], "idle and lawless and vulgar and": [65535, 0], "and lawless and vulgar and bad": [65535, 0], "lawless and vulgar and bad and": [65535, 0], "and vulgar and bad and because": [65535, 0], "vulgar and bad and because all": [65535, 0], "and bad and because all their": [65535, 0], "bad and because all their children": [65535, 0], "and because all their children admired": [65535, 0], "because all their children admired him": [65535, 0], "all their children admired him so": [65535, 0], "their children admired him so and": [65535, 0], "children admired him so and delighted": [65535, 0], "admired him so and delighted in": [65535, 0], "him so and delighted in his": [65535, 0], "so and delighted in his forbidden": [65535, 0], "and delighted in his forbidden society": [65535, 0], "delighted in his forbidden society and": [65535, 0], "in his forbidden society and wished": [65535, 0], "his forbidden society and wished they": [65535, 0], "forbidden society and wished they dared": [65535, 0], "society and wished they dared to": [65535, 0], "and wished they dared to be": [65535, 0], "wished they dared to be like": [65535, 0], "they dared to be like him": [65535, 0], "dared to be like him tom": [65535, 0], "to be like him tom was": [65535, 0], "be like him tom was like": [65535, 0], "like him tom was like the": [65535, 0], "him tom was like the rest": [65535, 0], "tom was like the rest of": [65535, 0], "was like the rest of the": [65535, 0], "like the rest of the respectable": [65535, 0], "the rest of the respectable boys": [65535, 0], "rest of the respectable boys in": [65535, 0], "of the respectable boys in that": [65535, 0], "the respectable boys in that he": [65535, 0], "respectable boys in that he envied": [65535, 0], "boys in that he envied huckleberry": [65535, 0], "in that he envied huckleberry his": [65535, 0], "that he envied huckleberry his gaudy": [65535, 0], "he envied huckleberry his gaudy outcast": [65535, 0], "envied huckleberry his gaudy outcast condition": [65535, 0], "huckleberry his gaudy outcast condition and": [65535, 0], "his gaudy outcast condition and was": [65535, 0], "gaudy outcast condition and was under": [65535, 0], "outcast condition and was under strict": [65535, 0], "condition and was under strict orders": [65535, 0], "and was under strict orders not": [65535, 0], "was under strict orders not to": [65535, 0], "under strict orders not to play": [65535, 0], "strict orders not to play with": [65535, 0], "orders not to play with him": [65535, 0], "not to play with him so": [65535, 0], "to play with him so he": [65535, 0], "play with him so he played": [65535, 0], "with him so he played with": [65535, 0], "him so he played with him": [65535, 0], "so he played with him every": [65535, 0], "he played with him every time": [65535, 0], "played with him every time he": [65535, 0], "with him every time he got": [65535, 0], "him every time he got a": [65535, 0], "every time he got a chance": [65535, 0], "time he got a chance huckleberry": [65535, 0], "he got a chance huckleberry was": [65535, 0], "got a chance huckleberry was always": [65535, 0], "a chance huckleberry was always dressed": [65535, 0], "chance huckleberry was always dressed in": [65535, 0], "huckleberry was always dressed in the": [65535, 0], "was always dressed in the cast": [65535, 0], "always dressed in the cast off": [65535, 0], "dressed in the cast off clothes": [65535, 0], "in the cast off clothes of": [65535, 0], "the cast off clothes of full": [65535, 0], "cast off clothes of full grown": [65535, 0], "off clothes of full grown men": [65535, 0], "clothes of full grown men and": [65535, 0], "of full grown men and they": [65535, 0], "full grown men and they were": [65535, 0], "grown men and they were in": [65535, 0], "men and they were in perennial": [65535, 0], "and they were in perennial bloom": [65535, 0], "they were in perennial bloom and": [65535, 0], "were in perennial bloom and fluttering": [65535, 0], "in perennial bloom and fluttering with": [65535, 0], "perennial bloom and fluttering with rags": [65535, 0], "bloom and fluttering with rags his": [65535, 0], "and fluttering with rags his hat": [65535, 0], "fluttering with rags his hat was": [65535, 0], "with rags his hat was a": [65535, 0], "rags his hat was a vast": [65535, 0], "his hat was a vast ruin": [65535, 0], "hat was a vast ruin with": [65535, 0], "was a vast ruin with a": [65535, 0], "a vast ruin with a wide": [65535, 0], "vast ruin with a wide crescent": [65535, 0], "ruin with a wide crescent lopped": [65535, 0], "with a wide crescent lopped out": [65535, 0], "a wide crescent lopped out of": [65535, 0], "wide crescent lopped out of its": [65535, 0], "crescent lopped out of its brim": [65535, 0], "lopped out of its brim his": [65535, 0], "out of its brim his coat": [65535, 0], "of its brim his coat when": [65535, 0], "its brim his coat when he": [65535, 0], "brim his coat when he wore": [65535, 0], "his coat when he wore one": [65535, 0], "coat when he wore one hung": [65535, 0], "when he wore one hung nearly": [65535, 0], "he wore one hung nearly to": [65535, 0], "wore one hung nearly to his": [65535, 0], "one hung nearly to his heels": [65535, 0], "hung nearly to his heels and": [65535, 0], "nearly to his heels and had": [65535, 0], "to his heels and had the": [65535, 0], "his heels and had the rearward": [65535, 0], "heels and had the rearward buttons": [65535, 0], "and had the rearward buttons far": [65535, 0], "had the rearward buttons far down": [65535, 0], "the rearward buttons far down the": [65535, 0], "rearward buttons far down the back": [65535, 0], "buttons far down the back but": [65535, 0], "far down the back but one": [65535, 0], "down the back but one suspender": [65535, 0], "the back but one suspender supported": [65535, 0], "back but one suspender supported his": [65535, 0], "but one suspender supported his trousers": [65535, 0], "one suspender supported his trousers the": [65535, 0], "suspender supported his trousers the seat": [65535, 0], "supported his trousers the seat of": [65535, 0], "his trousers the seat of the": [65535, 0], "trousers the seat of the trousers": [65535, 0], "the seat of the trousers bagged": [65535, 0], "seat of the trousers bagged low": [65535, 0], "of the trousers bagged low and": [65535, 0], "the trousers bagged low and contained": [65535, 0], "trousers bagged low and contained nothing": [65535, 0], "bagged low and contained nothing the": [65535, 0], "low and contained nothing the fringed": [65535, 0], "and contained nothing the fringed legs": [65535, 0], "contained nothing the fringed legs dragged": [65535, 0], "nothing the fringed legs dragged in": [65535, 0], "the fringed legs dragged in the": [65535, 0], "fringed legs dragged in the dirt": [65535, 0], "legs dragged in the dirt when": [65535, 0], "dragged in the dirt when not": [65535, 0], "in the dirt when not rolled": [65535, 0], "the dirt when not rolled up": [65535, 0], "dirt when not rolled up huckleberry": [65535, 0], "when not rolled up huckleberry came": [65535, 0], "not rolled up huckleberry came and": [65535, 0], "rolled up huckleberry came and went": [65535, 0], "up huckleberry came and went at": [65535, 0], "huckleberry came and went at his": [65535, 0], "came and went at his own": [65535, 0], "and went at his own free": [65535, 0], "went at his own free will": [65535, 0], "at his own free will he": [65535, 0], "his own free will he slept": [65535, 0], "own free will he slept on": [65535, 0], "free will he slept on doorsteps": [65535, 0], "will he slept on doorsteps in": [65535, 0], "he slept on doorsteps in fine": [65535, 0], "slept on doorsteps in fine weather": [65535, 0], "on doorsteps in fine weather and": [65535, 0], "doorsteps in fine weather and in": [65535, 0], "in fine weather and in empty": [65535, 0], "fine weather and in empty hogsheads": [65535, 0], "weather and in empty hogsheads in": [65535, 0], "and in empty hogsheads in wet": [65535, 0], "in empty hogsheads in wet he": [65535, 0], "empty hogsheads in wet he did": [65535, 0], "hogsheads in wet he did not": [65535, 0], "in wet he did not have": [65535, 0], "wet he did not have to": [65535, 0], "he did not have to go": [65535, 0], "did not have to go to": [65535, 0], "not have to go to school": [65535, 0], "have to go to school or": [65535, 0], "to go to school or to": [65535, 0], "go to school or to church": [65535, 0], "to school or to church or": [65535, 0], "school or to church or call": [65535, 0], "or to church or call any": [65535, 0], "to church or call any being": [65535, 0], "church or call any being master": [65535, 0], "or call any being master or": [65535, 0], "call any being master or obey": [65535, 0], "any being master or obey anybody": [65535, 0], "being master or obey anybody he": [65535, 0], "master or obey anybody he could": [65535, 0], "or obey anybody he could go": [65535, 0], "obey anybody he could go fishing": [65535, 0], "anybody he could go fishing or": [65535, 0], "he could go fishing or swimming": [65535, 0], "could go fishing or swimming when": [65535, 0], "go fishing or swimming when and": [65535, 0], "fishing or swimming when and where": [65535, 0], "or swimming when and where he": [65535, 0], "swimming when and where he chose": [65535, 0], "when and where he chose and": [65535, 0], "and where he chose and stay": [65535, 0], "where he chose and stay as": [65535, 0], "he chose and stay as long": [65535, 0], "chose and stay as long as": [65535, 0], "and stay as long as it": [65535, 0], "stay as long as it suited": [65535, 0], "as long as it suited him": [65535, 0], "long as it suited him nobody": [65535, 0], "as it suited him nobody forbade": [65535, 0], "it suited him nobody forbade him": [65535, 0], "suited him nobody forbade him to": [65535, 0], "him nobody forbade him to fight": [65535, 0], "nobody forbade him to fight he": [65535, 0], "forbade him to fight he could": [65535, 0], "him to fight he could sit": [65535, 0], "to fight he could sit up": [65535, 0], "fight he could sit up as": [65535, 0], "he could sit up as late": [65535, 0], "could sit up as late as": [65535, 0], "sit up as late as he": [65535, 0], "up as late as he pleased": [65535, 0], "as late as he pleased he": [65535, 0], "late as he pleased he was": [65535, 0], "as he pleased he was always": [65535, 0], "he pleased he was always the": [65535, 0], "pleased he was always the first": [65535, 0], "he was always the first boy": [65535, 0], "was always the first boy that": [65535, 0], "always the first boy that went": [65535, 0], "the first boy that went barefoot": [65535, 0], "first boy that went barefoot in": [65535, 0], "boy that went barefoot in the": [65535, 0], "that went barefoot in the spring": [65535, 0], "went barefoot in the spring and": [65535, 0], "barefoot in the spring and the": [65535, 0], "in the spring and the last": [65535, 0], "the spring and the last to": [65535, 0], "spring and the last to resume": [65535, 0], "and the last to resume leather": [65535, 0], "the last to resume leather in": [65535, 0], "last to resume leather in the": [65535, 0], "to resume leather in the fall": [65535, 0], "resume leather in the fall he": [65535, 0], "leather in the fall he never": [65535, 0], "in the fall he never had": [65535, 0], "the fall he never had to": [65535, 0], "fall he never had to wash": [65535, 0], "he never had to wash nor": [65535, 0], "never had to wash nor put": [65535, 0], "had to wash nor put on": [65535, 0], "to wash nor put on clean": [65535, 0], "wash nor put on clean clothes": [65535, 0], "nor put on clean clothes he": [65535, 0], "put on clean clothes he could": [65535, 0], "on clean clothes he could swear": [65535, 0], "clean clothes he could swear wonderfully": [65535, 0], "clothes he could swear wonderfully in": [65535, 0], "he could swear wonderfully in a": [65535, 0], "could swear wonderfully in a word": [65535, 0], "swear wonderfully in a word everything": [65535, 0], "wonderfully in a word everything that": [65535, 0], "in a word everything that goes": [65535, 0], "a word everything that goes to": [65535, 0], "word everything that goes to make": [65535, 0], "everything that goes to make life": [65535, 0], "that goes to make life precious": [65535, 0], "goes to make life precious that": [65535, 0], "to make life precious that boy": [65535, 0], "make life precious that boy had": [65535, 0], "life precious that boy had so": [65535, 0], "precious that boy had so thought": [65535, 0], "that boy had so thought every": [65535, 0], "boy had so thought every harassed": [65535, 0], "had so thought every harassed hampered": [65535, 0], "so thought every harassed hampered respectable": [65535, 0], "thought every harassed hampered respectable boy": [65535, 0], "every harassed hampered respectable boy in": [65535, 0], "harassed hampered respectable boy in st": [65535, 0], "hampered respectable boy in st petersburg": [65535, 0], "respectable boy in st petersburg tom": [65535, 0], "boy in st petersburg tom hailed": [65535, 0], "in st petersburg tom hailed the": [65535, 0], "st petersburg tom hailed the romantic": [65535, 0], "petersburg tom hailed the romantic outcast": [65535, 0], "tom hailed the romantic outcast hello": [65535, 0], "hailed the romantic outcast hello huckleberry": [65535, 0], "the romantic outcast hello huckleberry hello": [65535, 0], "romantic outcast hello huckleberry hello yourself": [65535, 0], "outcast hello huckleberry hello yourself and": [65535, 0], "hello huckleberry hello yourself and see": [65535, 0], "huckleberry hello yourself and see how": [65535, 0], "hello yourself and see how you": [65535, 0], "yourself and see how you like": [65535, 0], "and see how you like it": [65535, 0], "see how you like it what's": [65535, 0], "how you like it what's that": [65535, 0], "you like it what's that you": [65535, 0], "like it what's that you got": [65535, 0], "it what's that you got dead": [65535, 0], "what's that you got dead cat": [65535, 0], "that you got dead cat lemme": [65535, 0], "you got dead cat lemme see": [65535, 0], "got dead cat lemme see him": [65535, 0], "dead cat lemme see him huck": [65535, 0], "cat lemme see him huck my": [65535, 0], "lemme see him huck my he's": [65535, 0], "see him huck my he's pretty": [65535, 0], "him huck my he's pretty stiff": [65535, 0], "huck my he's pretty stiff where'd": [65535, 0], "my he's pretty stiff where'd you": [65535, 0], "he's pretty stiff where'd you get": [65535, 0], "pretty stiff where'd you get him": [65535, 0], "stiff where'd you get him bought": [65535, 0], "where'd you get him bought him": [65535, 0], "you get him bought him off'n": [65535, 0], "get him bought him off'n a": [65535, 0], "him bought him off'n a boy": [65535, 0], "bought him off'n a boy what": [65535, 0], "him off'n a boy what did": [65535, 0], "off'n a boy what did you": [65535, 0], "a boy what did you give": [65535, 0], "boy what did you give i": [65535, 0], "what did you give i give": [65535, 0], "did you give i give a": [65535, 0], "you give i give a blue": [65535, 0], "give i give a blue ticket": [65535, 0], "i give a blue ticket and": [65535, 0], "give a blue ticket and a": [65535, 0], "a blue ticket and a bladder": [65535, 0], "blue ticket and a bladder that": [65535, 0], "ticket and a bladder that i": [65535, 0], "and a bladder that i got": [65535, 0], "a bladder that i got at": [65535, 0], "bladder that i got at the": [65535, 0], "that i got at the slaughter": [65535, 0], "i got at the slaughter house": [65535, 0], "got at the slaughter house where'd": [65535, 0], "at the slaughter house where'd you": [65535, 0], "the slaughter house where'd you get": [65535, 0], "slaughter house where'd you get the": [65535, 0], "house where'd you get the blue": [65535, 0], "where'd you get the blue ticket": [65535, 0], "you get the blue ticket bought": [65535, 0], "get the blue ticket bought it": [65535, 0], "the blue ticket bought it off'n": [65535, 0], "blue ticket bought it off'n ben": [65535, 0], "ticket bought it off'n ben rogers": [65535, 0], "bought it off'n ben rogers two": [65535, 0], "it off'n ben rogers two weeks": [65535, 0], "off'n ben rogers two weeks ago": [65535, 0], "ben rogers two weeks ago for": [65535, 0], "rogers two weeks ago for a": [65535, 0], "two weeks ago for a hoop": [65535, 0], "weeks ago for a hoop stick": [65535, 0], "ago for a hoop stick say": [65535, 0], "for a hoop stick say what": [65535, 0], "a hoop stick say what is": [65535, 0], "hoop stick say what is dead": [65535, 0], "stick say what is dead cats": [65535, 0], "say what is dead cats good": [65535, 0], "what is dead cats good for": [65535, 0], "is dead cats good for huck": [65535, 0], "dead cats good for huck good": [65535, 0], "cats good for huck good for": [65535, 0], "good for huck good for cure": [65535, 0], "for huck good for cure warts": [65535, 0], "huck good for cure warts with": [65535, 0], "good for cure warts with no": [65535, 0], "for cure warts with no is": [65535, 0], "cure warts with no is that": [65535, 0], "warts with no is that so": [65535, 0], "with no is that so i": [65535, 0], "no is that so i know": [65535, 0], "is that so i know something": [65535, 0], "that so i know something that's": [65535, 0], "so i know something that's better": [65535, 0], "i know something that's better i": [65535, 0], "know something that's better i bet": [65535, 0], "something that's better i bet you": [65535, 0], "that's better i bet you don't": [65535, 0], "better i bet you don't what": [65535, 0], "i bet you don't what is": [65535, 0], "bet you don't what is it": [65535, 0], "you don't what is it why": [65535, 0], "don't what is it why spunk": [65535, 0], "what is it why spunk water": [65535, 0], "is it why spunk water spunk": [65535, 0], "it why spunk water spunk water": [65535, 0], "why spunk water spunk water i": [65535, 0], "spunk water spunk water i wouldn't": [65535, 0], "water spunk water i wouldn't give": [65535, 0], "spunk water i wouldn't give a": [65535, 0], "water i wouldn't give a dern": [65535, 0], "i wouldn't give a dern for": [65535, 0], "wouldn't give a dern for spunk": [65535, 0], "give a dern for spunk water": [65535, 0], "a dern for spunk water you": [65535, 0], "dern for spunk water you wouldn't": [65535, 0], "for spunk water you wouldn't wouldn't": [65535, 0], "spunk water you wouldn't wouldn't you": [65535, 0], "water you wouldn't wouldn't you d'you": [65535, 0], "you wouldn't wouldn't you d'you ever": [65535, 0], "wouldn't wouldn't you d'you ever try": [65535, 0], "wouldn't you d'you ever try it": [65535, 0], "you d'you ever try it no": [65535, 0], "d'you ever try it no i": [65535, 0], "ever try it no i hain't": [65535, 0], "try it no i hain't but": [65535, 0], "it no i hain't but bob": [65535, 0], "no i hain't but bob tanner": [65535, 0], "i hain't but bob tanner did": [65535, 0], "hain't but bob tanner did who": [65535, 0], "but bob tanner did who told": [65535, 0], "bob tanner did who told you": [65535, 0], "tanner did who told you so": [65535, 0], "did who told you so why": [65535, 0], "who told you so why he": [65535, 0], "told you so why he told": [65535, 0], "you so why he told jeff": [65535, 0], "so why he told jeff thatcher": [65535, 0], "why he told jeff thatcher and": [65535, 0], "he told jeff thatcher and jeff": [65535, 0], "told jeff thatcher and jeff told": [65535, 0], "jeff thatcher and jeff told johnny": [65535, 0], "thatcher and jeff told johnny baker": [65535, 0], "and jeff told johnny baker and": [65535, 0], "jeff told johnny baker and johnny": [65535, 0], "told johnny baker and johnny told": [65535, 0], "johnny baker and johnny told jim": [65535, 0], "baker and johnny told jim hollis": [65535, 0], "and johnny told jim hollis and": [65535, 0], "johnny told jim hollis and jim": [65535, 0], "told jim hollis and jim told": [65535, 0], "jim hollis and jim told ben": [65535, 0], "hollis and jim told ben rogers": [65535, 0], "and jim told ben rogers and": [65535, 0], "jim told ben rogers and ben": [65535, 0], "told ben rogers and ben told": [65535, 0], "ben rogers and ben told a": [65535, 0], "rogers and ben told a nigger": [65535, 0], "and ben told a nigger and": [65535, 0], "ben told a nigger and the": [65535, 0], "told a nigger and the nigger": [65535, 0], "a nigger and the nigger told": [65535, 0], "nigger and the nigger told me": [65535, 0], "and the nigger told me there": [65535, 0], "the nigger told me there now": [65535, 0], "nigger told me there now well": [65535, 0], "told me there now well what": [65535, 0], "me there now well what of": [65535, 0], "there now well what of it": [65535, 0], "now well what of it they'll": [65535, 0], "well what of it they'll all": [65535, 0], "what of it they'll all lie": [65535, 0], "of it they'll all lie leastways": [65535, 0], "it they'll all lie leastways all": [65535, 0], "they'll all lie leastways all but": [65535, 0], "all lie leastways all but the": [65535, 0], "lie leastways all but the nigger": [65535, 0], "leastways all but the nigger i": [65535, 0], "all but the nigger i don't": [65535, 0], "but the nigger i don't know": [65535, 0], "the nigger i don't know him": [65535, 0], "nigger i don't know him but": [65535, 0], "i don't know him but i": [65535, 0], "don't know him but i never": [65535, 0], "know him but i never see": [65535, 0], "him but i never see a": [65535, 0], "but i never see a nigger": [65535, 0], "i never see a nigger that": [65535, 0], "never see a nigger that wouldn't": [65535, 0], "see a nigger that wouldn't lie": [65535, 0], "a nigger that wouldn't lie shucks": [65535, 0], "nigger that wouldn't lie shucks now": [65535, 0], "that wouldn't lie shucks now you": [65535, 0], "wouldn't lie shucks now you tell": [65535, 0], "lie shucks now you tell me": [65535, 0], "shucks now you tell me how": [65535, 0], "now you tell me how bob": [65535, 0], "you tell me how bob tanner": [65535, 0], "tell me how bob tanner done": [65535, 0], "me how bob tanner done it": [65535, 0], "how bob tanner done it huck": [65535, 0], "bob tanner done it huck why": [65535, 0], "tanner done it huck why he": [65535, 0], "done it huck why he took": [65535, 0], "it huck why he took and": [65535, 0], "huck why he took and dipped": [65535, 0], "why he took and dipped his": [65535, 0], "he took and dipped his hand": [65535, 0], "took and dipped his hand in": [65535, 0], "and dipped his hand in a": [65535, 0], "dipped his hand in a rotten": [65535, 0], "his hand in a rotten stump": [65535, 0], "hand in a rotten stump where": [65535, 0], "in a rotten stump where the": [65535, 0], "a rotten stump where the rain": [65535, 0], "rotten stump where the rain water": [65535, 0], "stump where the rain water was": [65535, 0], "where the rain water was in": [65535, 0], "the rain water was in the": [65535, 0], "rain water was in the daytime": [65535, 0], "water was in the daytime certainly": [65535, 0], "was in the daytime certainly with": [65535, 0], "in the daytime certainly with his": [65535, 0], "the daytime certainly with his face": [65535, 0], "daytime certainly with his face to": [65535, 0], "certainly with his face to the": [65535, 0], "with his face to the stump": [65535, 0], "his face to the stump yes": [65535, 0], "face to the stump yes least": [65535, 0], "to the stump yes least i": [65535, 0], "the stump yes least i reckon": [65535, 0], "stump yes least i reckon so": [65535, 0], "yes least i reckon so did": [65535, 0], "least i reckon so did he": [65535, 0], "i reckon so did he say": [65535, 0], "reckon so did he say anything": [65535, 0], "so did he say anything i": [65535, 0], "did he say anything i don't": [65535, 0], "he say anything i don't reckon": [65535, 0], "say anything i don't reckon he": [65535, 0], "anything i don't reckon he did": [65535, 0], "i don't reckon he did i": [65535, 0], "don't reckon he did i don't": [65535, 0], "reckon he did i don't know": [65535, 0], "he did i don't know aha": [65535, 0], "did i don't know aha talk": [65535, 0], "i don't know aha talk about": [65535, 0], "don't know aha talk about trying": [65535, 0], "know aha talk about trying to": [65535, 0], "aha talk about trying to cure": [65535, 0], "talk about trying to cure warts": [65535, 0], "about trying to cure warts with": [65535, 0], "trying to cure warts with spunk": [65535, 0], "to cure warts with spunk water": [65535, 0], "cure warts with spunk water such": [65535, 0], "warts with spunk water such a": [65535, 0], "with spunk water such a blame": [65535, 0], "spunk water such a blame fool": [65535, 0], "water such a blame fool way": [65535, 0], "such a blame fool way as": [65535, 0], "a blame fool way as that": [65535, 0], "blame fool way as that why": [65535, 0], "fool way as that why that": [65535, 0], "way as that why that ain't": [65535, 0], "as that why that ain't a": [65535, 0], "that why that ain't a going": [65535, 0], "why that ain't a going to": [65535, 0], "that ain't a going to do": [65535, 0], "ain't a going to do any": [65535, 0], "a going to do any good": [65535, 0], "going to do any good you": [65535, 0], "to do any good you got": [65535, 0], "do any good you got to": [65535, 0], "any good you got to go": [65535, 0], "good you got to go all": [65535, 0], "you got to go all by": [65535, 0], "got to go all by yourself": [65535, 0], "to go all by yourself to": [65535, 0], "go all by yourself to the": [65535, 0], "all by yourself to the middle": [65535, 0], "by yourself to the middle of": [65535, 0], "yourself to the middle of the": [65535, 0], "to the middle of the woods": [65535, 0], "the middle of the woods where": [65535, 0], "middle of the woods where you": [65535, 0], "of the woods where you know": [65535, 0], "the woods where you know there's": [65535, 0], "woods where you know there's a": [65535, 0], "where you know there's a spunk": [65535, 0], "you know there's a spunk water": [65535, 0], "know there's a spunk water stump": [65535, 0], "there's a spunk water stump and": [65535, 0], "a spunk water stump and just": [65535, 0], "spunk water stump and just as": [65535, 0], "water stump and just as it's": [65535, 0], "stump and just as it's midnight": [65535, 0], "and just as it's midnight you": [65535, 0], "just as it's midnight you back": [65535, 0], "as it's midnight you back up": [65535, 0], "it's midnight you back up against": [65535, 0], "midnight you back up against the": [65535, 0], "you back up against the stump": [65535, 0], "back up against the stump and": [65535, 0], "up against the stump and jam": [65535, 0], "against the stump and jam your": [65535, 0], "the stump and jam your hand": [65535, 0], "stump and jam your hand in": [65535, 0], "and jam your hand in and": [65535, 0], "jam your hand in and say": [65535, 0], "your hand in and say 'barley": [65535, 0], "hand in and say 'barley corn": [65535, 0], "in and say 'barley corn barley": [65535, 0], "and say 'barley corn barley corn": [65535, 0], "say 'barley corn barley corn injun": [65535, 0], "'barley corn barley corn injun meal": [65535, 0], "corn barley corn injun meal shorts": [65535, 0], "barley corn injun meal shorts spunk": [65535, 0], "corn injun meal shorts spunk water": [65535, 0], "injun meal shorts spunk water spunk": [65535, 0], "meal shorts spunk water spunk water": [65535, 0], "shorts spunk water spunk water swaller": [65535, 0], "spunk water spunk water swaller these": [65535, 0], "water spunk water swaller these warts": [65535, 0], "spunk water swaller these warts '": [65535, 0], "water swaller these warts ' and": [65535, 0], "swaller these warts ' and then": [65535, 0], "these warts ' and then walk": [65535, 0], "warts ' and then walk away": [65535, 0], "' and then walk away quick": [65535, 0], "and then walk away quick eleven": [65535, 0], "then walk away quick eleven steps": [65535, 0], "walk away quick eleven steps with": [65535, 0], "away quick eleven steps with your": [65535, 0], "quick eleven steps with your eyes": [65535, 0], "eleven steps with your eyes shut": [65535, 0], "steps with your eyes shut and": [65535, 0], "with your eyes shut and then": [65535, 0], "your eyes shut and then turn": [65535, 0], "eyes shut and then turn around": [65535, 0], "shut and then turn around three": [65535, 0], "and then turn around three times": [65535, 0], "then turn around three times and": [65535, 0], "turn around three times and walk": [65535, 0], "around three times and walk home": [65535, 0], "three times and walk home without": [65535, 0], "times and walk home without speaking": [65535, 0], "and walk home without speaking to": [65535, 0], "walk home without speaking to anybody": [65535, 0], "home without speaking to anybody because": [65535, 0], "without speaking to anybody because if": [65535, 0], "speaking to anybody because if you": [65535, 0], "to anybody because if you speak": [65535, 0], "anybody because if you speak the": [65535, 0], "because if you speak the charm's": [65535, 0], "if you speak the charm's busted": [65535, 0], "you speak the charm's busted well": [65535, 0], "speak the charm's busted well that": [65535, 0], "the charm's busted well that sounds": [65535, 0], "charm's busted well that sounds like": [65535, 0], "busted well that sounds like a": [65535, 0], "well that sounds like a good": [65535, 0], "that sounds like a good way": [65535, 0], "sounds like a good way but": [65535, 0], "like a good way but that": [65535, 0], "a good way but that ain't": [65535, 0], "good way but that ain't the": [65535, 0], "way but that ain't the way": [65535, 0], "but that ain't the way bob": [65535, 0], "that ain't the way bob tanner": [65535, 0], "ain't the way bob tanner done": [65535, 0], "the way bob tanner done no": [65535, 0], "way bob tanner done no sir": [65535, 0], "bob tanner done no sir you": [65535, 0], "tanner done no sir you can": [65535, 0], "done no sir you can bet": [65535, 0], "no sir you can bet he": [65535, 0], "sir you can bet he didn't": [65535, 0], "you can bet he didn't becuz": [65535, 0], "can bet he didn't becuz he's": [65535, 0], "bet he didn't becuz he's the": [65535, 0], "he didn't becuz he's the wartiest": [65535, 0], "didn't becuz he's the wartiest boy": [65535, 0], "becuz he's the wartiest boy in": [65535, 0], "he's the wartiest boy in this": [65535, 0], "the wartiest boy in this town": [65535, 0], "wartiest boy in this town and": [65535, 0], "boy in this town and he": [65535, 0], "in this town and he wouldn't": [65535, 0], "this town and he wouldn't have": [65535, 0], "town and he wouldn't have a": [65535, 0], "and he wouldn't have a wart": [65535, 0], "he wouldn't have a wart on": [65535, 0], "wouldn't have a wart on him": [65535, 0], "have a wart on him if": [65535, 0], "a wart on him if he'd": [65535, 0], "wart on him if he'd knowed": [65535, 0], "on him if he'd knowed how": [65535, 0], "him if he'd knowed how to": [65535, 0], "if he'd knowed how to work": [65535, 0], "he'd knowed how to work spunk": [65535, 0], "knowed how to work spunk water": [65535, 0], "how to work spunk water i've": [65535, 0], "to work spunk water i've took": [65535, 0], "work spunk water i've took off": [65535, 0], "spunk water i've took off thousands": [65535, 0], "water i've took off thousands of": [65535, 0], "i've took off thousands of warts": [65535, 0], "took off thousands of warts off": [65535, 0], "off thousands of warts off of": [65535, 0], "thousands of warts off of my": [65535, 0], "of warts off of my hands": [65535, 0], "warts off of my hands that": [65535, 0], "off of my hands that way": [65535, 0], "of my hands that way huck": [65535, 0], "my hands that way huck i": [65535, 0], "hands that way huck i play": [65535, 0], "that way huck i play with": [65535, 0], "way huck i play with frogs": [65535, 0], "huck i play with frogs so": [65535, 0], "i play with frogs so much": [65535, 0], "play with frogs so much that": [65535, 0], "with frogs so much that i've": [65535, 0], "frogs so much that i've always": [65535, 0], "so much that i've always got": [65535, 0], "much that i've always got considerable": [65535, 0], "that i've always got considerable many": [65535, 0], "i've always got considerable many warts": [65535, 0], "always got considerable many warts sometimes": [65535, 0], "got considerable many warts sometimes i": [65535, 0], "considerable many warts sometimes i take": [65535, 0], "many warts sometimes i take 'em": [65535, 0], "warts sometimes i take 'em off": [65535, 0], "sometimes i take 'em off with": [65535, 0], "i take 'em off with a": [65535, 0], "take 'em off with a bean": [65535, 0], "'em off with a bean yes": [65535, 0], "off with a bean yes bean's": [65535, 0], "with a bean yes bean's good": [65535, 0], "a bean yes bean's good i've": [65535, 0], "bean yes bean's good i've done": [65535, 0], "yes bean's good i've done that": [65535, 0], "bean's good i've done that have": [65535, 0], "good i've done that have you": [65535, 0], "i've done that have you what's": [65535, 0], "done that have you what's your": [65535, 0], "that have you what's your way": [65535, 0], "have you what's your way you": [65535, 0], "you what's your way you take": [65535, 0], "what's your way you take and": [65535, 0], "your way you take and split": [65535, 0], "way you take and split the": [65535, 0], "you take and split the bean": [65535, 0], "take and split the bean and": [65535, 0], "and split the bean and cut": [65535, 0], "split the bean and cut the": [65535, 0], "the bean and cut the wart": [65535, 0], "bean and cut the wart so": [65535, 0], "and cut the wart so as": [65535, 0], "cut the wart so as to": [65535, 0], "the wart so as to get": [65535, 0], "wart so as to get some": [65535, 0], "so as to get some blood": [65535, 0], "as to get some blood and": [65535, 0], "to get some blood and then": [65535, 0], "get some blood and then you": [65535, 0], "some blood and then you put": [65535, 0], "blood and then you put the": [65535, 0], "and then you put the blood": [65535, 0], "then you put the blood on": [65535, 0], "you put the blood on one": [65535, 0], "put the blood on one piece": [65535, 0], "the blood on one piece of": [65535, 0], "blood on one piece of the": [65535, 0], "on one piece of the bean": [65535, 0], "one piece of the bean and": [65535, 0], "piece of the bean and take": [65535, 0], "of the bean and take and": [65535, 0], "the bean and take and dig": [65535, 0], "bean and take and dig a": [65535, 0], "and take and dig a hole": [65535, 0], "take and dig a hole and": [65535, 0], "and dig a hole and bury": [65535, 0], "dig a hole and bury it": [65535, 0], "a hole and bury it 'bout": [65535, 0], "hole and bury it 'bout midnight": [65535, 0], "and bury it 'bout midnight at": [65535, 0], "bury it 'bout midnight at the": [65535, 0], "it 'bout midnight at the crossroads": [65535, 0], "'bout midnight at the crossroads in": [65535, 0], "midnight at the crossroads in the": [65535, 0], "at the crossroads in the dark": [65535, 0], "the crossroads in the dark of": [65535, 0], "crossroads in the dark of the": [65535, 0], "in the dark of the moon": [65535, 0], "the dark of the moon and": [65535, 0], "dark of the moon and then": [65535, 0], "of the moon and then you": [65535, 0], "the moon and then you burn": [65535, 0], "moon and then you burn up": [65535, 0], "and then you burn up the": [65535, 0], "then you burn up the rest": [65535, 0], "you burn up the rest of": [65535, 0], "burn up the rest of the": [65535, 0], "up the rest of the bean": [65535, 0], "the rest of the bean you": [65535, 0], "rest of the bean you see": [65535, 0], "of the bean you see that": [65535, 0], "the bean you see that piece": [65535, 0], "bean you see that piece that's": [65535, 0], "you see that piece that's got": [65535, 0], "see that piece that's got the": [65535, 0], "that piece that's got the blood": [65535, 0], "piece that's got the blood on": [65535, 0], "that's got the blood on it": [65535, 0], "got the blood on it will": [65535, 0], "the blood on it will keep": [65535, 0], "blood on it will keep drawing": [65535, 0], "on it will keep drawing and": [65535, 0], "it will keep drawing and drawing": [65535, 0], "will keep drawing and drawing trying": [65535, 0], "keep drawing and drawing trying to": [65535, 0], "drawing and drawing trying to fetch": [65535, 0], "and drawing trying to fetch the": [65535, 0], "drawing trying to fetch the other": [65535, 0], "trying to fetch the other piece": [65535, 0], "to fetch the other piece to": [65535, 0], "fetch the other piece to it": [65535, 0], "the other piece to it and": [65535, 0], "other piece to it and so": [65535, 0], "piece to it and so that": [65535, 0], "to it and so that helps": [65535, 0], "it and so that helps the": [65535, 0], "and so that helps the blood": [65535, 0], "so that helps the blood to": [65535, 0], "that helps the blood to draw": [65535, 0], "helps the blood to draw the": [65535, 0], "the blood to draw the wart": [65535, 0], "blood to draw the wart and": [65535, 0], "to draw the wart and pretty": [65535, 0], "draw the wart and pretty soon": [65535, 0], "the wart and pretty soon off": [65535, 0], "wart and pretty soon off she": [65535, 0], "and pretty soon off she comes": [65535, 0], "pretty soon off she comes yes": [65535, 0], "soon off she comes yes that's": [65535, 0], "off she comes yes that's it": [65535, 0], "she comes yes that's it huck": [65535, 0], "comes yes that's it huck that's": [65535, 0], "yes that's it huck that's it": [65535, 0], "that's it huck that's it though": [65535, 0], "it huck that's it though when": [65535, 0], "huck that's it though when you're": [65535, 0], "that's it though when you're burying": [65535, 0], "it though when you're burying it": [65535, 0], "though when you're burying it if": [65535, 0], "when you're burying it if you": [65535, 0], "you're burying it if you say": [65535, 0], "burying it if you say 'down": [65535, 0], "it if you say 'down bean": [65535, 0], "if you say 'down bean off": [65535, 0], "you say 'down bean off wart": [65535, 0], "say 'down bean off wart come": [65535, 0], "'down bean off wart come no": [65535, 0], "bean off wart come no more": [65535, 0], "off wart come no more to": [65535, 0], "wart come no more to bother": [65535, 0], "come no more to bother me": [65535, 0], "no more to bother me '": [65535, 0], "more to bother me ' it's": [65535, 0], "to bother me ' it's better": [65535, 0], "bother me ' it's better that's": [65535, 0], "me ' it's better that's the": [65535, 0], "' it's better that's the way": [65535, 0], "it's better that's the way joe": [65535, 0], "better that's the way joe harper": [65535, 0], "that's the way joe harper does": [65535, 0], "the way joe harper does and": [65535, 0], "way joe harper does and he's": [65535, 0], "joe harper does and he's been": [65535, 0], "harper does and he's been nearly": [65535, 0], "does and he's been nearly to": [65535, 0], "and he's been nearly to coonville": [65535, 0], "he's been nearly to coonville and": [65535, 0], "been nearly to coonville and most": [65535, 0], "nearly to coonville and most everywheres": [65535, 0], "to coonville and most everywheres but": [65535, 0], "coonville and most everywheres but say": [65535, 0], "and most everywheres but say how": [65535, 0], "most everywheres but say how do": [65535, 0], "everywheres but say how do you": [65535, 0], "but say how do you cure": [65535, 0], "say how do you cure 'em": [65535, 0], "how do you cure 'em with": [65535, 0], "do you cure 'em with dead": [65535, 0], "you cure 'em with dead cats": [65535, 0], "cure 'em with dead cats why": [65535, 0], "'em with dead cats why you": [65535, 0], "with dead cats why you take": [65535, 0], "dead cats why you take your": [65535, 0], "cats why you take your cat": [65535, 0], "why you take your cat and": [65535, 0], "you take your cat and go": [65535, 0], "take your cat and go and": [65535, 0], "your cat and go and get": [65535, 0], "cat and go and get in": [65535, 0], "and go and get in the": [65535, 0], "go and get in the graveyard": [65535, 0], "and get in the graveyard 'long": [65535, 0], "get in the graveyard 'long about": [65535, 0], "in the graveyard 'long about midnight": [65535, 0], "the graveyard 'long about midnight when": [65535, 0], "graveyard 'long about midnight when somebody": [65535, 0], "'long about midnight when somebody that": [65535, 0], "about midnight when somebody that was": [65535, 0], "midnight when somebody that was wicked": [65535, 0], "when somebody that was wicked has": [65535, 0], "somebody that was wicked has been": [65535, 0], "that was wicked has been buried": [65535, 0], "was wicked has been buried and": [65535, 0], "wicked has been buried and when": [65535, 0], "has been buried and when it's": [65535, 0], "been buried and when it's midnight": [65535, 0], "buried and when it's midnight a": [65535, 0], "and when it's midnight a devil": [65535, 0], "when it's midnight a devil will": [65535, 0], "it's midnight a devil will come": [65535, 0], "midnight a devil will come or": [65535, 0], "a devil will come or maybe": [65535, 0], "devil will come or maybe two": [65535, 0], "will come or maybe two or": [65535, 0], "come or maybe two or three": [65535, 0], "or maybe two or three but": [65535, 0], "maybe two or three but you": [65535, 0], "two or three but you can't": [65535, 0], "or three but you can't see": [65535, 0], "three but you can't see 'em": [65535, 0], "but you can't see 'em you": [65535, 0], "you can't see 'em you can": [65535, 0], "can't see 'em you can only": [65535, 0], "see 'em you can only hear": [65535, 0], "'em you can only hear something": [65535, 0], "you can only hear something like": [65535, 0], "can only hear something like the": [65535, 0], "only hear something like the wind": [65535, 0], "hear something like the wind or": [65535, 0], "something like the wind or maybe": [65535, 0], "like the wind or maybe hear": [65535, 0], "the wind or maybe hear 'em": [65535, 0], "wind or maybe hear 'em talk": [65535, 0], "or maybe hear 'em talk and": [65535, 0], "maybe hear 'em talk and when": [65535, 0], "hear 'em talk and when they're": [65535, 0], "'em talk and when they're taking": [65535, 0], "talk and when they're taking that": [65535, 0], "and when they're taking that feller": [65535, 0], "when they're taking that feller away": [65535, 0], "they're taking that feller away you": [65535, 0], "taking that feller away you heave": [65535, 0], "that feller away you heave your": [65535, 0], "feller away you heave your cat": [65535, 0], "away you heave your cat after": [65535, 0], "you heave your cat after 'em": [65535, 0], "heave your cat after 'em and": [65535, 0], "your cat after 'em and say": [65535, 0], "cat after 'em and say 'devil": [65535, 0], "after 'em and say 'devil follow": [65535, 0], "'em and say 'devil follow corpse": [65535, 0], "and say 'devil follow corpse cat": [65535, 0], "say 'devil follow corpse cat follow": [65535, 0], "'devil follow corpse cat follow devil": [65535, 0], "follow corpse cat follow devil warts": [65535, 0], "corpse cat follow devil warts follow": [65535, 0], "cat follow devil warts follow cat": [65535, 0], "follow devil warts follow cat i'm": [65535, 0], "devil warts follow cat i'm done": [65535, 0], "warts follow cat i'm done with": [65535, 0], "follow cat i'm done with ye": [65535, 0], "cat i'm done with ye '": [65535, 0], "i'm done with ye ' that'll": [65535, 0], "done with ye ' that'll fetch": [65535, 0], "with ye ' that'll fetch any": [65535, 0], "ye ' that'll fetch any wart": [65535, 0], "' that'll fetch any wart sounds": [65535, 0], "that'll fetch any wart sounds right": [65535, 0], "fetch any wart sounds right d'you": [65535, 0], "any wart sounds right d'you ever": [65535, 0], "wart sounds right d'you ever try": [65535, 0], "sounds right d'you ever try it": [65535, 0], "right d'you ever try it huck": [65535, 0], "d'you ever try it huck no": [65535, 0], "ever try it huck no but": [65535, 0], "try it huck no but old": [65535, 0], "it huck no but old mother": [65535, 0], "huck no but old mother hopkins": [65535, 0], "no but old mother hopkins told": [65535, 0], "but old mother hopkins told me": [65535, 0], "old mother hopkins told me well": [65535, 0], "mother hopkins told me well i": [65535, 0], "hopkins told me well i reckon": [65535, 0], "told me well i reckon it's": [65535, 0], "me well i reckon it's so": [65535, 0], "well i reckon it's so then": [65535, 0], "i reckon it's so then becuz": [65535, 0], "reckon it's so then becuz they": [65535, 0], "it's so then becuz they say": [65535, 0], "so then becuz they say she's": [65535, 0], "then becuz they say she's a": [65535, 0], "becuz they say she's a witch": [65535, 0], "they say she's a witch say": [65535, 0], "say she's a witch say why": [65535, 0], "she's a witch say why tom": [65535, 0], "a witch say why tom i": [65535, 0], "witch say why tom i know": [65535, 0], "say why tom i know she": [65535, 0], "why tom i know she is": [65535, 0], "tom i know she is she": [65535, 0], "i know she is she witched": [65535, 0], "know she is she witched pap": [65535, 0], "she is she witched pap pap": [65535, 0], "is she witched pap pap says": [65535, 0], "she witched pap pap says so": [65535, 0], "witched pap pap says so his": [65535, 0], "pap pap says so his own": [65535, 0], "pap says so his own self": [65535, 0], "says so his own self he": [65535, 0], "so his own self he come": [65535, 0], "his own self he come along": [65535, 0], "own self he come along one": [65535, 0], "self he come along one day": [65535, 0], "he come along one day and": [65535, 0], "come along one day and he": [65535, 0], "along one day and he see": [65535, 0], "one day and he see she": [65535, 0], "day and he see she was": [65535, 0], "and he see she was a": [65535, 0], "he see she was a witching": [65535, 0], "see she was a witching him": [65535, 0], "she was a witching him so": [65535, 0], "was a witching him so he": [65535, 0], "a witching him so he took": [65535, 0], "witching him so he took up": [65535, 0], "him so he took up a": [65535, 0], "so he took up a rock": [65535, 0], "he took up a rock and": [65535, 0], "took up a rock and if": [65535, 0], "up a rock and if she": [65535, 0], "a rock and if she hadn't": [65535, 0], "rock and if she hadn't dodged": [65535, 0], "and if she hadn't dodged he'd": [65535, 0], "if she hadn't dodged he'd a": [65535, 0], "she hadn't dodged he'd a got": [65535, 0], "hadn't dodged he'd a got her": [65535, 0], "dodged he'd a got her well": [65535, 0], "he'd a got her well that": [65535, 0], "a got her well that very": [65535, 0], "got her well that very night": [65535, 0], "her well that very night he": [65535, 0], "well that very night he rolled": [65535, 0], "that very night he rolled off'n": [65535, 0], "very night he rolled off'n a": [65535, 0], "night he rolled off'n a shed": [65535, 0], "he rolled off'n a shed wher'": [65535, 0], "rolled off'n a shed wher' he": [65535, 0], "off'n a shed wher' he was": [65535, 0], "a shed wher' he was a": [65535, 0], "shed wher' he was a layin": [65535, 0], "wher' he was a layin drunk": [65535, 0], "he was a layin drunk and": [65535, 0], "was a layin drunk and broke": [65535, 0], "a layin drunk and broke his": [65535, 0], "layin drunk and broke his arm": [65535, 0], "drunk and broke his arm why": [65535, 0], "and broke his arm why that's": [65535, 0], "broke his arm why that's awful": [65535, 0], "his arm why that's awful how": [65535, 0], "arm why that's awful how did": [65535, 0], "why that's awful how did he": [65535, 0], "that's awful how did he know": [65535, 0], "awful how did he know she": [65535, 0], "how did he know she was": [65535, 0], "did he know she was a": [65535, 0], "he know she was a witching": [65535, 0], "know she was a witching him": [65535, 0], "she was a witching him lord": [65535, 0], "was a witching him lord pap": [65535, 0], "a witching him lord pap can": [65535, 0], "witching him lord pap can tell": [65535, 0], "him lord pap can tell easy": [65535, 0], "lord pap can tell easy pap": [65535, 0], "pap can tell easy pap says": [65535, 0], "can tell easy pap says when": [65535, 0], "tell easy pap says when they": [65535, 0], "easy pap says when they keep": [65535, 0], "pap says when they keep looking": [65535, 0], "says when they keep looking at": [65535, 0], "when they keep looking at you": [65535, 0], "they keep looking at you right": [65535, 0], "keep looking at you right stiddy": [65535, 0], "looking at you right stiddy they're": [65535, 0], "at you right stiddy they're a": [65535, 0], "you right stiddy they're a witching": [65535, 0], "right stiddy they're a witching you": [65535, 0], "stiddy they're a witching you specially": [65535, 0], "they're a witching you specially if": [65535, 0], "a witching you specially if they": [65535, 0], "witching you specially if they mumble": [65535, 0], "you specially if they mumble becuz": [65535, 0], "specially if they mumble becuz when": [65535, 0], "if they mumble becuz when they": [65535, 0], "they mumble becuz when they mumble": [65535, 0], "mumble becuz when they mumble they're": [65535, 0], "becuz when they mumble they're saying": [65535, 0], "when they mumble they're saying the": [65535, 0], "they mumble they're saying the lord's": [65535, 0], "mumble they're saying the lord's prayer": [65535, 0], "they're saying the lord's prayer backards": [65535, 0], "saying the lord's prayer backards say": [65535, 0], "the lord's prayer backards say hucky": [65535, 0], "lord's prayer backards say hucky when": [65535, 0], "prayer backards say hucky when you": [65535, 0], "backards say hucky when you going": [65535, 0], "say hucky when you going to": [65535, 0], "hucky when you going to try": [65535, 0], "when you going to try the": [65535, 0], "you going to try the cat": [65535, 0], "going to try the cat to": [65535, 0], "to try the cat to night": [65535, 0], "try the cat to night i": [65535, 0], "the cat to night i reckon": [65535, 0], "cat to night i reckon they'll": [65535, 0], "to night i reckon they'll come": [65535, 0], "night i reckon they'll come after": [65535, 0], "i reckon they'll come after old": [65535, 0], "reckon they'll come after old hoss": [65535, 0], "they'll come after old hoss williams": [65535, 0], "come after old hoss williams to": [65535, 0], "after old hoss williams to night": [65535, 0], "old hoss williams to night but": [65535, 0], "hoss williams to night but they": [65535, 0], "williams to night but they buried": [65535, 0], "to night but they buried him": [65535, 0], "night but they buried him saturday": [65535, 0], "but they buried him saturday didn't": [65535, 0], "they buried him saturday didn't they": [65535, 0], "buried him saturday didn't they get": [65535, 0], "him saturday didn't they get him": [65535, 0], "saturday didn't they get him saturday": [65535, 0], "didn't they get him saturday night": [65535, 0], "they get him saturday night why": [65535, 0], "get him saturday night why how": [65535, 0], "him saturday night why how you": [65535, 0], "saturday night why how you talk": [65535, 0], "night why how you talk how": [65535, 0], "why how you talk how could": [65535, 0], "how you talk how could their": [65535, 0], "you talk how could their charms": [65535, 0], "talk how could their charms work": [65535, 0], "how could their charms work till": [65535, 0], "could their charms work till midnight": [65535, 0], "their charms work till midnight and": [65535, 0], "charms work till midnight and then": [65535, 0], "work till midnight and then it's": [65535, 0], "till midnight and then it's sunday": [65535, 0], "midnight and then it's sunday devils": [65535, 0], "and then it's sunday devils don't": [65535, 0], "then it's sunday devils don't slosh": [65535, 0], "it's sunday devils don't slosh around": [65535, 0], "sunday devils don't slosh around much": [65535, 0], "devils don't slosh around much of": [65535, 0], "don't slosh around much of a": [65535, 0], "slosh around much of a sunday": [65535, 0], "around much of a sunday i": [65535, 0], "much of a sunday i don't": [65535, 0], "of a sunday i don't reckon": [65535, 0], "a sunday i don't reckon i": [65535, 0], "sunday i don't reckon i never": [65535, 0], "i don't reckon i never thought": [65535, 0], "don't reckon i never thought of": [65535, 0], "reckon i never thought of that": [65535, 0], "i never thought of that that's": [65535, 0], "never thought of that that's so": [65535, 0], "thought of that that's so lemme": [65535, 0], "of that that's so lemme go": [65535, 0], "that that's so lemme go with": [65535, 0], "that's so lemme go with you": [65535, 0], "so lemme go with you of": [65535, 0], "lemme go with you of course": [65535, 0], "go with you of course if": [65535, 0], "with you of course if you": [65535, 0], "you of course if you ain't": [65535, 0], "of course if you ain't afeard": [65535, 0], "course if you ain't afeard afeard": [65535, 0], "if you ain't afeard afeard 'tain't": [65535, 0], "you ain't afeard afeard 'tain't likely": [65535, 0], "ain't afeard afeard 'tain't likely will": [65535, 0], "afeard afeard 'tain't likely will you": [65535, 0], "afeard 'tain't likely will you meow": [65535, 0], "'tain't likely will you meow yes": [65535, 0], "likely will you meow yes and": [65535, 0], "will you meow yes and you": [65535, 0], "you meow yes and you meow": [65535, 0], "meow yes and you meow back": [65535, 0], "yes and you meow back if": [65535, 0], "and you meow back if you": [65535, 0], "you meow back if you get": [65535, 0], "meow back if you get a": [65535, 0], "back if you get a chance": [65535, 0], "if you get a chance last": [65535, 0], "you get a chance last time": [65535, 0], "get a chance last time you": [65535, 0], "a chance last time you kep'": [65535, 0], "chance last time you kep' me": [65535, 0], "last time you kep' me a": [65535, 0], "time you kep' me a meowing": [65535, 0], "you kep' me a meowing around": [65535, 0], "kep' me a meowing around till": [65535, 0], "me a meowing around till old": [65535, 0], "a meowing around till old hays": [65535, 0], "meowing around till old hays went": [65535, 0], "around till old hays went to": [65535, 0], "till old hays went to throwing": [65535, 0], "old hays went to throwing rocks": [65535, 0], "hays went to throwing rocks at": [65535, 0], "went to throwing rocks at me": [65535, 0], "to throwing rocks at me and": [65535, 0], "throwing rocks at me and says": [65535, 0], "rocks at me and says 'dern": [65535, 0], "at me and says 'dern that": [65535, 0], "me and says 'dern that cat": [65535, 0], "and says 'dern that cat '": [65535, 0], "says 'dern that cat ' and": [65535, 0], "'dern that cat ' and so": [65535, 0], "that cat ' and so i": [65535, 0], "cat ' and so i hove": [65535, 0], "' and so i hove a": [65535, 0], "and so i hove a brick": [65535, 0], "so i hove a brick through": [65535, 0], "i hove a brick through his": [65535, 0], "hove a brick through his window": [65535, 0], "a brick through his window but": [65535, 0], "brick through his window but don't": [65535, 0], "through his window but don't you": [65535, 0], "his window but don't you tell": [65535, 0], "window but don't you tell i": [65535, 0], "but don't you tell i won't": [65535, 0], "don't you tell i won't i": [65535, 0], "you tell i won't i couldn't": [65535, 0], "tell i won't i couldn't meow": [65535, 0], "i won't i couldn't meow that": [65535, 0], "won't i couldn't meow that night": [65535, 0], "i couldn't meow that night becuz": [65535, 0], "couldn't meow that night becuz auntie": [65535, 0], "meow that night becuz auntie was": [65535, 0], "that night becuz auntie was watching": [65535, 0], "night becuz auntie was watching me": [65535, 0], "becuz auntie was watching me but": [65535, 0], "auntie was watching me but i'll": [65535, 0], "was watching me but i'll meow": [65535, 0], "watching me but i'll meow this": [65535, 0], "me but i'll meow this time": [65535, 0], "but i'll meow this time say": [65535, 0], "i'll meow this time say what's": [65535, 0], "meow this time say what's that": [65535, 0], "this time say what's that nothing": [65535, 0], "time say what's that nothing but": [65535, 0], "say what's that nothing but a": [65535, 0], "what's that nothing but a tick": [65535, 0], "that nothing but a tick where'd": [65535, 0], "nothing but a tick where'd you": [65535, 0], "but a tick where'd you get": [65535, 0], "a tick where'd you get him": [65535, 0], "tick where'd you get him out": [65535, 0], "where'd you get him out in": [65535, 0], "you get him out in the": [65535, 0], "get him out in the woods": [65535, 0], "him out in the woods what'll": [65535, 0], "out in the woods what'll you": [65535, 0], "in the woods what'll you take": [65535, 0], "the woods what'll you take for": [65535, 0], "woods what'll you take for him": [65535, 0], "what'll you take for him i": [65535, 0], "you take for him i don't": [65535, 0], "take for him i don't know": [65535, 0], "for him i don't know i": [65535, 0], "him i don't know i don't": [65535, 0], "i don't know i don't want": [65535, 0], "don't know i don't want to": [65535, 0], "know i don't want to sell": [65535, 0], "i don't want to sell him": [65535, 0], "don't want to sell him all": [65535, 0], "want to sell him all right": [65535, 0], "to sell him all right it's": [65535, 0], "sell him all right it's a": [65535, 0], "him all right it's a mighty": [65535, 0], "all right it's a mighty small": [65535, 0], "right it's a mighty small tick": [65535, 0], "it's a mighty small tick anyway": [65535, 0], "a mighty small tick anyway oh": [65535, 0], "mighty small tick anyway oh anybody": [65535, 0], "small tick anyway oh anybody can": [65535, 0], "tick anyway oh anybody can run": [65535, 0], "anyway oh anybody can run a": [65535, 0], "oh anybody can run a tick": [65535, 0], "anybody can run a tick down": [65535, 0], "can run a tick down that": [65535, 0], "run a tick down that don't": [65535, 0], "a tick down that don't belong": [65535, 0], "tick down that don't belong to": [65535, 0], "down that don't belong to them": [65535, 0], "that don't belong to them i'm": [65535, 0], "don't belong to them i'm satisfied": [65535, 0], "belong to them i'm satisfied with": [65535, 0], "to them i'm satisfied with it": [65535, 0], "them i'm satisfied with it it's": [65535, 0], "i'm satisfied with it it's a": [65535, 0], "satisfied with it it's a good": [65535, 0], "with it it's a good enough": [65535, 0], "it it's a good enough tick": [65535, 0], "it's a good enough tick for": [65535, 0], "a good enough tick for me": [65535, 0], "good enough tick for me sho": [65535, 0], "enough tick for me sho there's": [65535, 0], "tick for me sho there's ticks": [65535, 0], "for me sho there's ticks a": [65535, 0], "me sho there's ticks a plenty": [65535, 0], "sho there's ticks a plenty i": [65535, 0], "there's ticks a plenty i could": [65535, 0], "ticks a plenty i could have": [65535, 0], "a plenty i could have a": [65535, 0], "plenty i could have a thousand": [65535, 0], "i could have a thousand of": [65535, 0], "could have a thousand of 'em": [65535, 0], "have a thousand of 'em if": [65535, 0], "a thousand of 'em if i": [65535, 0], "thousand of 'em if i wanted": [65535, 0], "of 'em if i wanted to": [65535, 0], "'em if i wanted to well": [65535, 0], "if i wanted to well why": [65535, 0], "i wanted to well why don't": [65535, 0], "wanted to well why don't you": [65535, 0], "to well why don't you becuz": [65535, 0], "well why don't you becuz you": [65535, 0], "why don't you becuz you know": [65535, 0], "don't you becuz you know mighty": [65535, 0], "you becuz you know mighty well": [65535, 0], "becuz you know mighty well you": [65535, 0], "you know mighty well you can't": [65535, 0], "know mighty well you can't this": [65535, 0], "mighty well you can't this is": [65535, 0], "well you can't this is a": [65535, 0], "you can't this is a pretty": [65535, 0], "can't this is a pretty early": [65535, 0], "this is a pretty early tick": [65535, 0], "is a pretty early tick i": [65535, 0], "a pretty early tick i reckon": [65535, 0], "pretty early tick i reckon it's": [65535, 0], "early tick i reckon it's the": [65535, 0], "tick i reckon it's the first": [65535, 0], "i reckon it's the first one": [65535, 0], "reckon it's the first one i've": [65535, 0], "it's the first one i've seen": [65535, 0], "the first one i've seen this": [65535, 0], "first one i've seen this year": [65535, 0], "one i've seen this year say": [65535, 0], "i've seen this year say huck": [65535, 0], "seen this year say huck i'll": [65535, 0], "this year say huck i'll give": [65535, 0], "year say huck i'll give you": [65535, 0], "say huck i'll give you my": [65535, 0], "huck i'll give you my tooth": [65535, 0], "i'll give you my tooth for": [65535, 0], "give you my tooth for him": [65535, 0], "you my tooth for him less": [65535, 0], "my tooth for him less see": [65535, 0], "tooth for him less see it": [65535, 0], "for him less see it tom": [65535, 0], "him less see it tom got": [65535, 0], "less see it tom got out": [65535, 0], "see it tom got out a": [65535, 0], "it tom got out a bit": [65535, 0], "tom got out a bit of": [65535, 0], "got out a bit of paper": [65535, 0], "out a bit of paper and": [65535, 0], "a bit of paper and carefully": [65535, 0], "bit of paper and carefully unrolled": [65535, 0], "of paper and carefully unrolled it": [65535, 0], "paper and carefully unrolled it huckleberry": [65535, 0], "and carefully unrolled it huckleberry viewed": [65535, 0], "carefully unrolled it huckleberry viewed it": [65535, 0], "unrolled it huckleberry viewed it wistfully": [65535, 0], "it huckleberry viewed it wistfully the": [65535, 0], "huckleberry viewed it wistfully the temptation": [65535, 0], "viewed it wistfully the temptation was": [65535, 0], "it wistfully the temptation was very": [65535, 0], "wistfully the temptation was very strong": [65535, 0], "the temptation was very strong at": [65535, 0], "temptation was very strong at last": [65535, 0], "was very strong at last he": [65535, 0], "very strong at last he said": [65535, 0], "strong at last he said is": [65535, 0], "at last he said is it": [65535, 0], "last he said is it genuwyne": [65535, 0], "he said is it genuwyne tom": [65535, 0], "said is it genuwyne tom lifted": [65535, 0], "is it genuwyne tom lifted his": [65535, 0], "it genuwyne tom lifted his lip": [65535, 0], "genuwyne tom lifted his lip and": [65535, 0], "tom lifted his lip and showed": [65535, 0], "lifted his lip and showed the": [65535, 0], "his lip and showed the vacancy": [65535, 0], "lip and showed the vacancy well": [65535, 0], "and showed the vacancy well all": [65535, 0], "showed the vacancy well all right": [65535, 0], "the vacancy well all right said": [65535, 0], "vacancy well all right said huckleberry": [65535, 0], "well all right said huckleberry it's": [65535, 0], "all right said huckleberry it's a": [65535, 0], "right said huckleberry it's a trade": [65535, 0], "said huckleberry it's a trade tom": [65535, 0], "huckleberry it's a trade tom enclosed": [65535, 0], "it's a trade tom enclosed the": [65535, 0], "a trade tom enclosed the tick": [65535, 0], "trade tom enclosed the tick in": [65535, 0], "tom enclosed the tick in the": [65535, 0], "enclosed the tick in the percussion": [65535, 0], "the tick in the percussion cap": [65535, 0], "tick in the percussion cap box": [65535, 0], "in the percussion cap box that": [65535, 0], "the percussion cap box that had": [65535, 0], "percussion cap box that had lately": [65535, 0], "cap box that had lately been": [65535, 0], "box that had lately been the": [65535, 0], "that had lately been the pinchbug's": [65535, 0], "had lately been the pinchbug's prison": [65535, 0], "lately been the pinchbug's prison and": [65535, 0], "been the pinchbug's prison and the": [65535, 0], "the pinchbug's prison and the boys": [65535, 0], "pinchbug's prison and the boys separated": [65535, 0], "prison and the boys separated each": [65535, 0], "and the boys separated each feeling": [65535, 0], "the boys separated each feeling wealthier": [65535, 0], "boys separated each feeling wealthier than": [65535, 0], "separated each feeling wealthier than before": [65535, 0], "each feeling wealthier than before when": [65535, 0], "feeling wealthier than before when tom": [65535, 0], "wealthier than before when tom reached": [65535, 0], "than before when tom reached the": [65535, 0], "before when tom reached the little": [65535, 0], "when tom reached the little isolated": [65535, 0], "tom reached the little isolated frame": [65535, 0], "reached the little isolated frame schoolhouse": [65535, 0], "the little isolated frame schoolhouse he": [65535, 0], "little isolated frame schoolhouse he strode": [65535, 0], "isolated frame schoolhouse he strode in": [65535, 0], "frame schoolhouse he strode in briskly": [65535, 0], "schoolhouse he strode in briskly with": [65535, 0], "he strode in briskly with the": [65535, 0], "strode in briskly with the manner": [65535, 0], "in briskly with the manner of": [65535, 0], "briskly with the manner of one": [65535, 0], "with the manner of one who": [65535, 0], "the manner of one who had": [65535, 0], "manner of one who had come": [65535, 0], "of one who had come with": [65535, 0], "one who had come with all": [65535, 0], "who had come with all honest": [65535, 0], "had come with all honest speed": [65535, 0], "come with all honest speed he": [65535, 0], "with all honest speed he hung": [65535, 0], "all honest speed he hung his": [65535, 0], "honest speed he hung his hat": [65535, 0], "speed he hung his hat on": [65535, 0], "he hung his hat on a": [65535, 0], "hung his hat on a peg": [65535, 0], "his hat on a peg and": [65535, 0], "hat on a peg and flung": [65535, 0], "on a peg and flung himself": [65535, 0], "a peg and flung himself into": [65535, 0], "peg and flung himself into his": [65535, 0], "and flung himself into his seat": [65535, 0], "flung himself into his seat with": [65535, 0], "himself into his seat with business": [65535, 0], "into his seat with business like": [65535, 0], "his seat with business like alacrity": [65535, 0], "seat with business like alacrity the": [65535, 0], "with business like alacrity the master": [65535, 0], "business like alacrity the master throned": [65535, 0], "like alacrity the master throned on": [65535, 0], "alacrity the master throned on high": [65535, 0], "the master throned on high in": [65535, 0], "master throned on high in his": [65535, 0], "throned on high in his great": [65535, 0], "on high in his great splint": [65535, 0], "high in his great splint bottom": [65535, 0], "in his great splint bottom arm": [65535, 0], "his great splint bottom arm chair": [65535, 0], "great splint bottom arm chair was": [65535, 0], "splint bottom arm chair was dozing": [65535, 0], "bottom arm chair was dozing lulled": [65535, 0], "arm chair was dozing lulled by": [65535, 0], "chair was dozing lulled by the": [65535, 0], "was dozing lulled by the drowsy": [65535, 0], "dozing lulled by the drowsy hum": [65535, 0], "lulled by the drowsy hum of": [65535, 0], "by the drowsy hum of study": [65535, 0], "the drowsy hum of study the": [65535, 0], "drowsy hum of study the interruption": [65535, 0], "hum of study the interruption roused": [65535, 0], "of study the interruption roused him": [65535, 0], "study the interruption roused him thomas": [65535, 0], "the interruption roused him thomas sawyer": [65535, 0], "interruption roused him thomas sawyer tom": [65535, 0], "roused him thomas sawyer tom knew": [65535, 0], "him thomas sawyer tom knew that": [65535, 0], "thomas sawyer tom knew that when": [65535, 0], "sawyer tom knew that when his": [65535, 0], "tom knew that when his name": [65535, 0], "knew that when his name was": [65535, 0], "that when his name was pronounced": [65535, 0], "when his name was pronounced in": [65535, 0], "his name was pronounced in full": [65535, 0], "name was pronounced in full it": [65535, 0], "was pronounced in full it meant": [65535, 0], "pronounced in full it meant trouble": [65535, 0], "in full it meant trouble sir": [65535, 0], "full it meant trouble sir come": [65535, 0], "it meant trouble sir come up": [65535, 0], "meant trouble sir come up here": [65535, 0], "trouble sir come up here now": [65535, 0], "sir come up here now sir": [65535, 0], "come up here now sir why": [65535, 0], "up here now sir why are": [65535, 0], "here now sir why are you": [65535, 0], "now sir why are you late": [65535, 0], "sir why are you late again": [65535, 0], "why are you late again as": [65535, 0], "are you late again as usual": [65535, 0], "you late again as usual tom": [65535, 0], "late again as usual tom was": [65535, 0], "again as usual tom was about": [65535, 0], "as usual tom was about to": [65535, 0], "usual tom was about to take": [65535, 0], "tom was about to take refuge": [65535, 0], "was about to take refuge in": [65535, 0], "about to take refuge in a": [65535, 0], "to take refuge in a lie": [65535, 0], "take refuge in a lie when": [65535, 0], "refuge in a lie when he": [65535, 0], "in a lie when he saw": [65535, 0], "a lie when he saw two": [65535, 0], "lie when he saw two long": [65535, 0], "when he saw two long tails": [65535, 0], "he saw two long tails of": [65535, 0], "saw two long tails of yellow": [65535, 0], "two long tails of yellow hair": [65535, 0], "long tails of yellow hair hanging": [65535, 0], "tails of yellow hair hanging down": [65535, 0], "of yellow hair hanging down a": [65535, 0], "yellow hair hanging down a back": [65535, 0], "hair hanging down a back that": [65535, 0], "hanging down a back that he": [65535, 0], "down a back that he recognized": [65535, 0], "a back that he recognized by": [65535, 0], "back that he recognized by the": [65535, 0], "that he recognized by the electric": [65535, 0], "he recognized by the electric sympathy": [65535, 0], "recognized by the electric sympathy of": [65535, 0], "by the electric sympathy of love": [65535, 0], "the electric sympathy of love and": [65535, 0], "electric sympathy of love and by": [65535, 0], "sympathy of love and by that": [65535, 0], "of love and by that form": [65535, 0], "love and by that form was": [65535, 0], "and by that form was the": [65535, 0], "by that form was the only": [65535, 0], "that form was the only vacant": [65535, 0], "form was the only vacant place": [65535, 0], "was the only vacant place on": [65535, 0], "the only vacant place on the": [65535, 0], "only vacant place on the girls'": [65535, 0], "vacant place on the girls' side": [65535, 0], "place on the girls' side of": [65535, 0], "on the girls' side of the": [65535, 0], "the girls' side of the school": [65535, 0], "girls' side of the school house": [65535, 0], "side of the school house he": [65535, 0], "of the school house he instantly": [65535, 0], "the school house he instantly said": [65535, 0], "school house he instantly said i": [65535, 0], "house he instantly said i stopped": [65535, 0], "he instantly said i stopped to": [65535, 0], "instantly said i stopped to talk": [65535, 0], "said i stopped to talk with": [65535, 0], "i stopped to talk with huckleberry": [65535, 0], "stopped to talk with huckleberry finn": [65535, 0], "to talk with huckleberry finn the": [65535, 0], "talk with huckleberry finn the master's": [65535, 0], "with huckleberry finn the master's pulse": [65535, 0], "huckleberry finn the master's pulse stood": [65535, 0], "finn the master's pulse stood still": [65535, 0], "the master's pulse stood still and": [65535, 0], "master's pulse stood still and he": [65535, 0], "pulse stood still and he stared": [65535, 0], "stood still and he stared helplessly": [65535, 0], "still and he stared helplessly the": [65535, 0], "and he stared helplessly the buzz": [65535, 0], "he stared helplessly the buzz of": [65535, 0], "stared helplessly the buzz of study": [65535, 0], "helplessly the buzz of study ceased": [65535, 0], "the buzz of study ceased the": [65535, 0], "buzz of study ceased the pupils": [65535, 0], "of study ceased the pupils wondered": [65535, 0], "study ceased the pupils wondered if": [65535, 0], "ceased the pupils wondered if this": [65535, 0], "the pupils wondered if this foolhardy": [65535, 0], "pupils wondered if this foolhardy boy": [65535, 0], "wondered if this foolhardy boy had": [65535, 0], "if this foolhardy boy had lost": [65535, 0], "this foolhardy boy had lost his": [65535, 0], "foolhardy boy had lost his mind": [65535, 0], "boy had lost his mind the": [65535, 0], "had lost his mind the master": [65535, 0], "lost his mind the master said": [65535, 0], "his mind the master said you": [65535, 0], "mind the master said you you": [65535, 0], "the master said you you did": [65535, 0], "master said you you did what": [65535, 0], "said you you did what stopped": [65535, 0], "you you did what stopped to": [65535, 0], "you did what stopped to talk": [65535, 0], "did what stopped to talk with": [65535, 0], "what stopped to talk with huckleberry": [65535, 0], "to talk with huckleberry finn there": [65535, 0], "talk with huckleberry finn there was": [65535, 0], "with huckleberry finn there was no": [65535, 0], "huckleberry finn there was no mistaking": [65535, 0], "finn there was no mistaking the": [65535, 0], "there was no mistaking the words": [65535, 0], "was no mistaking the words thomas": [65535, 0], "no mistaking the words thomas sawyer": [65535, 0], "mistaking the words thomas sawyer this": [65535, 0], "the words thomas sawyer this is": [65535, 0], "words thomas sawyer this is the": [65535, 0], "thomas sawyer this is the most": [65535, 0], "sawyer this is the most astounding": [65535, 0], "this is the most astounding confession": [65535, 0], "is the most astounding confession i": [65535, 0], "the most astounding confession i have": [65535, 0], "most astounding confession i have ever": [65535, 0], "astounding confession i have ever listened": [65535, 0], "confession i have ever listened to": [65535, 0], "i have ever listened to no": [65535, 0], "have ever listened to no mere": [65535, 0], "ever listened to no mere ferule": [65535, 0], "listened to no mere ferule will": [65535, 0], "to no mere ferule will answer": [65535, 0], "no mere ferule will answer for": [65535, 0], "mere ferule will answer for this": [65535, 0], "ferule will answer for this offence": [65535, 0], "will answer for this offence take": [65535, 0], "answer for this offence take off": [65535, 0], "for this offence take off your": [65535, 0], "this offence take off your jacket": [65535, 0], "offence take off your jacket the": [65535, 0], "take off your jacket the master's": [65535, 0], "off your jacket the master's arm": [65535, 0], "your jacket the master's arm performed": [65535, 0], "jacket the master's arm performed until": [65535, 0], "the master's arm performed until it": [65535, 0], "master's arm performed until it was": [65535, 0], "arm performed until it was tired": [65535, 0], "performed until it was tired and": [65535, 0], "until it was tired and the": [65535, 0], "it was tired and the stock": [65535, 0], "was tired and the stock of": [65535, 0], "tired and the stock of switches": [65535, 0], "and the stock of switches notably": [65535, 0], "the stock of switches notably diminished": [65535, 0], "stock of switches notably diminished then": [65535, 0], "of switches notably diminished then the": [65535, 0], "switches notably diminished then the order": [65535, 0], "notably diminished then the order followed": [65535, 0], "diminished then the order followed now": [65535, 0], "then the order followed now sir": [65535, 0], "the order followed now sir go": [65535, 0], "order followed now sir go and": [65535, 0], "followed now sir go and sit": [65535, 0], "now sir go and sit with": [65535, 0], "sir go and sit with the": [65535, 0], "go and sit with the girls": [65535, 0], "and sit with the girls and": [65535, 0], "sit with the girls and let": [65535, 0], "with the girls and let this": [65535, 0], "the girls and let this be": [65535, 0], "girls and let this be a": [65535, 0], "and let this be a warning": [65535, 0], "let this be a warning to": [65535, 0], "this be a warning to you": [65535, 0], "be a warning to you the": [65535, 0], "a warning to you the titter": [65535, 0], "warning to you the titter that": [65535, 0], "to you the titter that rippled": [65535, 0], "you the titter that rippled around": [65535, 0], "the titter that rippled around the": [65535, 0], "titter that rippled around the room": [65535, 0], "that rippled around the room appeared": [65535, 0], "rippled around the room appeared to": [65535, 0], "around the room appeared to abash": [65535, 0], "the room appeared to abash the": [65535, 0], "room appeared to abash the boy": [65535, 0], "appeared to abash the boy but": [65535, 0], "to abash the boy but in": [65535, 0], "abash the boy but in reality": [65535, 0], "the boy but in reality that": [65535, 0], "boy but in reality that result": [65535, 0], "but in reality that result was": [65535, 0], "in reality that result was caused": [65535, 0], "reality that result was caused rather": [65535, 0], "that result was caused rather more": [65535, 0], "result was caused rather more by": [65535, 0], "was caused rather more by his": [65535, 0], "caused rather more by his worshipful": [65535, 0], "rather more by his worshipful awe": [65535, 0], "more by his worshipful awe of": [65535, 0], "by his worshipful awe of his": [65535, 0], "his worshipful awe of his unknown": [65535, 0], "worshipful awe of his unknown idol": [65535, 0], "awe of his unknown idol and": [65535, 0], "of his unknown idol and the": [65535, 0], "his unknown idol and the dread": [65535, 0], "unknown idol and the dread pleasure": [65535, 0], "idol and the dread pleasure that": [65535, 0], "and the dread pleasure that lay": [65535, 0], "the dread pleasure that lay in": [65535, 0], "dread pleasure that lay in his": [65535, 0], "pleasure that lay in his high": [65535, 0], "that lay in his high good": [65535, 0], "lay in his high good fortune": [65535, 0], "in his high good fortune he": [65535, 0], "his high good fortune he sat": [65535, 0], "high good fortune he sat down": [65535, 0], "good fortune he sat down upon": [65535, 0], "fortune he sat down upon the": [65535, 0], "he sat down upon the end": [65535, 0], "sat down upon the end of": [65535, 0], "down upon the end of the": [65535, 0], "upon the end of the pine": [65535, 0], "the end of the pine bench": [65535, 0], "end of the pine bench and": [65535, 0], "of the pine bench and the": [65535, 0], "the pine bench and the girl": [65535, 0], "pine bench and the girl hitched": [65535, 0], "bench and the girl hitched herself": [65535, 0], "and the girl hitched herself away": [65535, 0], "the girl hitched herself away from": [65535, 0], "girl hitched herself away from him": [65535, 0], "hitched herself away from him with": [65535, 0], "herself away from him with a": [65535, 0], "away from him with a toss": [65535, 0], "from him with a toss of": [65535, 0], "him with a toss of her": [65535, 0], "with a toss of her head": [65535, 0], "a toss of her head nudges": [65535, 0], "toss of her head nudges and": [65535, 0], "of her head nudges and winks": [65535, 0], "her head nudges and winks and": [65535, 0], "head nudges and winks and whispers": [65535, 0], "nudges and winks and whispers traversed": [65535, 0], "and winks and whispers traversed the": [65535, 0], "winks and whispers traversed the room": [65535, 0], "and whispers traversed the room but": [65535, 0], "whispers traversed the room but tom": [65535, 0], "traversed the room but tom sat": [65535, 0], "the room but tom sat still": [65535, 0], "room but tom sat still with": [65535, 0], "but tom sat still with his": [65535, 0], "tom sat still with his arms": [65535, 0], "sat still with his arms upon": [65535, 0], "still with his arms upon the": [65535, 0], "with his arms upon the long": [65535, 0], "his arms upon the long low": [65535, 0], "arms upon the long low desk": [65535, 0], "upon the long low desk before": [65535, 0], "the long low desk before him": [65535, 0], "long low desk before him and": [65535, 0], "low desk before him and seemed": [65535, 0], "desk before him and seemed to": [65535, 0], "before him and seemed to study": [65535, 0], "him and seemed to study his": [65535, 0], "and seemed to study his book": [65535, 0], "seemed to study his book by": [65535, 0], "to study his book by and": [65535, 0], "study his book by and by": [65535, 0], "his book by and by attention": [65535, 0], "book by and by attention ceased": [65535, 0], "by and by attention ceased from": [65535, 0], "and by attention ceased from him": [65535, 0], "by attention ceased from him and": [65535, 0], "attention ceased from him and the": [65535, 0], "ceased from him and the accustomed": [65535, 0], "from him and the accustomed school": [65535, 0], "him and the accustomed school murmur": [65535, 0], "and the accustomed school murmur rose": [65535, 0], "the accustomed school murmur rose upon": [65535, 0], "accustomed school murmur rose upon the": [65535, 0], "school murmur rose upon the dull": [65535, 0], "murmur rose upon the dull air": [65535, 0], "rose upon the dull air once": [65535, 0], "upon the dull air once more": [65535, 0], "the dull air once more presently": [65535, 0], "dull air once more presently the": [65535, 0], "air once more presently the boy": [65535, 0], "once more presently the boy began": [65535, 0], "more presently the boy began to": [65535, 0], "presently the boy began to steal": [65535, 0], "the boy began to steal furtive": [65535, 0], "boy began to steal furtive glances": [65535, 0], "began to steal furtive glances at": [65535, 0], "to steal furtive glances at the": [65535, 0], "steal furtive glances at the girl": [65535, 0], "furtive glances at the girl she": [65535, 0], "glances at the girl she observed": [65535, 0], "at the girl she observed it": [65535, 0], "the girl she observed it made": [65535, 0], "girl she observed it made a": [65535, 0], "she observed it made a mouth": [65535, 0], "observed it made a mouth at": [65535, 0], "it made a mouth at him": [65535, 0], "made a mouth at him and": [65535, 0], "a mouth at him and gave": [65535, 0], "mouth at him and gave him": [65535, 0], "at him and gave him the": [65535, 0], "him and gave him the back": [65535, 0], "and gave him the back of": [65535, 0], "gave him the back of her": [65535, 0], "him the back of her head": [65535, 0], "the back of her head for": [65535, 0], "back of her head for the": [65535, 0], "of her head for the space": [65535, 0], "her head for the space of": [65535, 0], "head for the space of a": [65535, 0], "for the space of a minute": [65535, 0], "the space of a minute when": [65535, 0], "space of a minute when she": [65535, 0], "of a minute when she cautiously": [65535, 0], "a minute when she cautiously faced": [65535, 0], "minute when she cautiously faced around": [65535, 0], "when she cautiously faced around again": [65535, 0], "she cautiously faced around again a": [65535, 0], "cautiously faced around again a peach": [65535, 0], "faced around again a peach lay": [65535, 0], "around again a peach lay before": [65535, 0], "again a peach lay before her": [65535, 0], "a peach lay before her she": [65535, 0], "peach lay before her she thrust": [65535, 0], "lay before her she thrust it": [65535, 0], "before her she thrust it away": [65535, 0], "her she thrust it away tom": [65535, 0], "she thrust it away tom gently": [65535, 0], "thrust it away tom gently put": [65535, 0], "it away tom gently put it": [65535, 0], "away tom gently put it back": [65535, 0], "tom gently put it back she": [65535, 0], "gently put it back she thrust": [65535, 0], "put it back she thrust it": [65535, 0], "it back she thrust it away": [65535, 0], "back she thrust it away again": [65535, 0], "she thrust it away again but": [65535, 0], "thrust it away again but with": [65535, 0], "it away again but with less": [65535, 0], "away again but with less animosity": [65535, 0], "again but with less animosity tom": [65535, 0], "but with less animosity tom patiently": [65535, 0], "with less animosity tom patiently returned": [65535, 0], "less animosity tom patiently returned it": [65535, 0], "animosity tom patiently returned it to": [65535, 0], "tom patiently returned it to its": [65535, 0], "patiently returned it to its place": [65535, 0], "returned it to its place then": [65535, 0], "it to its place then she": [65535, 0], "to its place then she let": [65535, 0], "its place then she let it": [65535, 0], "place then she let it remain": [65535, 0], "then she let it remain tom": [65535, 0], "she let it remain tom scrawled": [65535, 0], "let it remain tom scrawled on": [65535, 0], "it remain tom scrawled on his": [65535, 0], "remain tom scrawled on his slate": [65535, 0], "tom scrawled on his slate please": [65535, 0], "scrawled on his slate please take": [65535, 0], "on his slate please take it": [65535, 0], "his slate please take it i": [65535, 0], "slate please take it i got": [65535, 0], "please take it i got more": [65535, 0], "take it i got more the": [65535, 0], "it i got more the girl": [65535, 0], "i got more the girl glanced": [65535, 0], "got more the girl glanced at": [65535, 0], "more the girl glanced at the": [65535, 0], "the girl glanced at the words": [65535, 0], "girl glanced at the words but": [65535, 0], "glanced at the words but made": [65535, 0], "at the words but made no": [65535, 0], "the words but made no sign": [65535, 0], "words but made no sign now": [65535, 0], "but made no sign now the": [65535, 0], "made no sign now the boy": [65535, 0], "no sign now the boy began": [65535, 0], "sign now the boy began to": [65535, 0], "now the boy began to draw": [65535, 0], "the boy began to draw something": [65535, 0], "boy began to draw something on": [65535, 0], "began to draw something on the": [65535, 0], "to draw something on the slate": [65535, 0], "draw something on the slate hiding": [65535, 0], "something on the slate hiding his": [65535, 0], "on the slate hiding his work": [65535, 0], "the slate hiding his work with": [65535, 0], "slate hiding his work with his": [65535, 0], "hiding his work with his left": [65535, 0], "his work with his left hand": [65535, 0], "work with his left hand for": [65535, 0], "with his left hand for a": [65535, 0], "his left hand for a time": [65535, 0], "left hand for a time the": [65535, 0], "hand for a time the girl": [65535, 0], "for a time the girl refused": [65535, 0], "a time the girl refused to": [65535, 0], "time the girl refused to notice": [65535, 0], "the girl refused to notice but": [65535, 0], "girl refused to notice but her": [65535, 0], "refused to notice but her human": [65535, 0], "to notice but her human curiosity": [65535, 0], "notice but her human curiosity presently": [65535, 0], "but her human curiosity presently began": [65535, 0], "her human curiosity presently began to": [65535, 0], "human curiosity presently began to manifest": [65535, 0], "curiosity presently began to manifest itself": [65535, 0], "presently began to manifest itself by": [65535, 0], "began to manifest itself by hardly": [65535, 0], "to manifest itself by hardly perceptible": [65535, 0], "manifest itself by hardly perceptible signs": [65535, 0], "itself by hardly perceptible signs the": [65535, 0], "by hardly perceptible signs the boy": [65535, 0], "hardly perceptible signs the boy worked": [65535, 0], "perceptible signs the boy worked on": [65535, 0], "signs the boy worked on apparently": [65535, 0], "the boy worked on apparently unconscious": [65535, 0], "boy worked on apparently unconscious the": [65535, 0], "worked on apparently unconscious the girl": [65535, 0], "on apparently unconscious the girl made": [65535, 0], "apparently unconscious the girl made a": [65535, 0], "unconscious the girl made a sort": [65535, 0], "the girl made a sort of": [65535, 0], "girl made a sort of noncommittal": [65535, 0], "made a sort of noncommittal attempt": [65535, 0], "a sort of noncommittal attempt to": [65535, 0], "sort of noncommittal attempt to see": [65535, 0], "of noncommittal attempt to see but": [65535, 0], "noncommittal attempt to see but the": [65535, 0], "attempt to see but the boy": [65535, 0], "to see but the boy did": [65535, 0], "see but the boy did not": [65535, 0], "but the boy did not betray": [65535, 0], "the boy did not betray that": [65535, 0], "boy did not betray that he": [65535, 0], "did not betray that he was": [65535, 0], "not betray that he was aware": [65535, 0], "betray that he was aware of": [65535, 0], "that he was aware of it": [65535, 0], "he was aware of it at": [65535, 0], "was aware of it at last": [65535, 0], "aware of it at last she": [65535, 0], "of it at last she gave": [65535, 0], "it at last she gave in": [65535, 0], "at last she gave in and": [65535, 0], "last she gave in and hesitatingly": [65535, 0], "she gave in and hesitatingly whispered": [65535, 0], "gave in and hesitatingly whispered let": [65535, 0], "in and hesitatingly whispered let me": [65535, 0], "and hesitatingly whispered let me see": [65535, 0], "hesitatingly whispered let me see it": [65535, 0], "whispered let me see it tom": [65535, 0], "let me see it tom partly": [65535, 0], "me see it tom partly uncovered": [65535, 0], "see it tom partly uncovered a": [65535, 0], "it tom partly uncovered a dismal": [65535, 0], "tom partly uncovered a dismal caricature": [65535, 0], "partly uncovered a dismal caricature of": [65535, 0], "uncovered a dismal caricature of a": [65535, 0], "a dismal caricature of a house": [65535, 0], "dismal caricature of a house with": [65535, 0], "caricature of a house with two": [65535, 0], "of a house with two gable": [65535, 0], "a house with two gable ends": [65535, 0], "house with two gable ends to": [65535, 0], "with two gable ends to it": [65535, 0], "two gable ends to it and": [65535, 0], "gable ends to it and a": [65535, 0], "ends to it and a corkscrew": [65535, 0], "to it and a corkscrew of": [65535, 0], "it and a corkscrew of smoke": [65535, 0], "and a corkscrew of smoke issuing": [65535, 0], "a corkscrew of smoke issuing from": [65535, 0], "corkscrew of smoke issuing from the": [65535, 0], "of smoke issuing from the chimney": [65535, 0], "smoke issuing from the chimney then": [65535, 0], "issuing from the chimney then the": [65535, 0], "from the chimney then the girl's": [65535, 0], "the chimney then the girl's interest": [65535, 0], "chimney then the girl's interest began": [65535, 0], "then the girl's interest began to": [65535, 0], "the girl's interest began to fasten": [65535, 0], "girl's interest began to fasten itself": [65535, 0], "interest began to fasten itself upon": [65535, 0], "began to fasten itself upon the": [65535, 0], "to fasten itself upon the work": [65535, 0], "fasten itself upon the work and": [65535, 0], "itself upon the work and she": [65535, 0], "upon the work and she forgot": [65535, 0], "the work and she forgot everything": [65535, 0], "work and she forgot everything else": [65535, 0], "and she forgot everything else when": [65535, 0], "she forgot everything else when it": [65535, 0], "forgot everything else when it was": [65535, 0], "everything else when it was finished": [65535, 0], "else when it was finished she": [65535, 0], "when it was finished she gazed": [65535, 0], "it was finished she gazed a": [65535, 0], "was finished she gazed a moment": [65535, 0], "finished she gazed a moment then": [65535, 0], "she gazed a moment then whispered": [65535, 0], "gazed a moment then whispered it's": [65535, 0], "a moment then whispered it's nice": [65535, 0], "moment then whispered it's nice make": [65535, 0], "then whispered it's nice make a": [65535, 0], "whispered it's nice make a man": [65535, 0], "it's nice make a man the": [65535, 0], "nice make a man the artist": [65535, 0], "make a man the artist erected": [65535, 0], "a man the artist erected a": [65535, 0], "man the artist erected a man": [65535, 0], "the artist erected a man in": [65535, 0], "artist erected a man in the": [65535, 0], "erected a man in the front": [65535, 0], "a man in the front yard": [65535, 0], "man in the front yard that": [65535, 0], "in the front yard that resembled": [65535, 0], "the front yard that resembled a": [65535, 0], "front yard that resembled a derrick": [65535, 0], "yard that resembled a derrick he": [65535, 0], "that resembled a derrick he could": [65535, 0], "resembled a derrick he could have": [65535, 0], "a derrick he could have stepped": [65535, 0], "derrick he could have stepped over": [65535, 0], "he could have stepped over the": [65535, 0], "could have stepped over the house": [65535, 0], "have stepped over the house but": [65535, 0], "stepped over the house but the": [65535, 0], "over the house but the girl": [65535, 0], "the house but the girl was": [65535, 0], "house but the girl was not": [65535, 0], "but the girl was not hypercritical": [65535, 0], "the girl was not hypercritical she": [65535, 0], "girl was not hypercritical she was": [65535, 0], "was not hypercritical she was satisfied": [65535, 0], "not hypercritical she was satisfied with": [65535, 0], "hypercritical she was satisfied with the": [65535, 0], "she was satisfied with the monster": [65535, 0], "was satisfied with the monster and": [65535, 0], "satisfied with the monster and whispered": [65535, 0], "with the monster and whispered it's": [65535, 0], "the monster and whispered it's a": [65535, 0], "monster and whispered it's a beautiful": [65535, 0], "and whispered it's a beautiful man": [65535, 0], "whispered it's a beautiful man now": [65535, 0], "it's a beautiful man now make": [65535, 0], "a beautiful man now make me": [65535, 0], "beautiful man now make me coming": [65535, 0], "man now make me coming along": [65535, 0], "now make me coming along tom": [65535, 0], "make me coming along tom drew": [65535, 0], "me coming along tom drew an": [65535, 0], "coming along tom drew an hour": [65535, 0], "along tom drew an hour glass": [65535, 0], "tom drew an hour glass with": [65535, 0], "drew an hour glass with a": [65535, 0], "an hour glass with a full": [65535, 0], "hour glass with a full moon": [65535, 0], "glass with a full moon and": [65535, 0], "with a full moon and straw": [65535, 0], "a full moon and straw limbs": [65535, 0], "full moon and straw limbs to": [65535, 0], "moon and straw limbs to it": [65535, 0], "and straw limbs to it and": [65535, 0], "straw limbs to it and armed": [65535, 0], "limbs to it and armed the": [65535, 0], "to it and armed the spreading": [65535, 0], "it and armed the spreading fingers": [65535, 0], "and armed the spreading fingers with": [65535, 0], "armed the spreading fingers with a": [65535, 0], "the spreading fingers with a portentous": [65535, 0], "spreading fingers with a portentous fan": [65535, 0], "fingers with a portentous fan the": [65535, 0], "with a portentous fan the girl": [65535, 0], "a portentous fan the girl said": [65535, 0], "portentous fan the girl said it's": [65535, 0], "fan the girl said it's ever": [65535, 0], "the girl said it's ever so": [65535, 0], "girl said it's ever so nice": [65535, 0], "said it's ever so nice i": [65535, 0], "it's ever so nice i wish": [65535, 0], "ever so nice i wish i": [65535, 0], "so nice i wish i could": [65535, 0], "nice i wish i could draw": [65535, 0], "i wish i could draw it's": [65535, 0], "wish i could draw it's easy": [65535, 0], "i could draw it's easy whispered": [65535, 0], "could draw it's easy whispered tom": [65535, 0], "draw it's easy whispered tom i'll": [65535, 0], "it's easy whispered tom i'll learn": [65535, 0], "easy whispered tom i'll learn you": [65535, 0], "whispered tom i'll learn you oh": [65535, 0], "tom i'll learn you oh will": [65535, 0], "i'll learn you oh will you": [65535, 0], "learn you oh will you when": [65535, 0], "you oh will you when at": [65535, 0], "oh will you when at noon": [65535, 0], "will you when at noon do": [65535, 0], "you when at noon do you": [65535, 0], "when at noon do you go": [65535, 0], "at noon do you go home": [65535, 0], "noon do you go home to": [65535, 0], "do you go home to dinner": [65535, 0], "you go home to dinner i'll": [65535, 0], "go home to dinner i'll stay": [65535, 0], "home to dinner i'll stay if": [65535, 0], "to dinner i'll stay if you": [65535, 0], "dinner i'll stay if you will": [65535, 0], "i'll stay if you will good": [65535, 0], "stay if you will good that's": [65535, 0], "if you will good that's a": [65535, 0], "you will good that's a whack": [65535, 0], "will good that's a whack what's": [65535, 0], "good that's a whack what's your": [65535, 0], "that's a whack what's your name": [65535, 0], "a whack what's your name becky": [65535, 0], "whack what's your name becky thatcher": [65535, 0], "what's your name becky thatcher what's": [65535, 0], "your name becky thatcher what's yours": [65535, 0], "name becky thatcher what's yours oh": [65535, 0], "becky thatcher what's yours oh i": [65535, 0], "thatcher what's yours oh i know": [65535, 0], "what's yours oh i know it's": [65535, 0], "yours oh i know it's thomas": [65535, 0], "oh i know it's thomas sawyer": [65535, 0], "i know it's thomas sawyer that's": [65535, 0], "know it's thomas sawyer that's the": [65535, 0], "it's thomas sawyer that's the name": [65535, 0], "thomas sawyer that's the name they": [65535, 0], "sawyer that's the name they lick": [65535, 0], "that's the name they lick me": [65535, 0], "the name they lick me by": [65535, 0], "name they lick me by i'm": [65535, 0], "they lick me by i'm tom": [65535, 0], "lick me by i'm tom when": [65535, 0], "me by i'm tom when i'm": [65535, 0], "by i'm tom when i'm good": [65535, 0], "i'm tom when i'm good you": [65535, 0], "tom when i'm good you call": [65535, 0], "when i'm good you call me": [65535, 0], "i'm good you call me tom": [65535, 0], "good you call me tom will": [65535, 0], "you call me tom will you": [65535, 0], "call me tom will you yes": [65535, 0], "me tom will you yes now": [65535, 0], "tom will you yes now tom": [65535, 0], "will you yes now tom began": [65535, 0], "you yes now tom began to": [65535, 0], "yes now tom began to scrawl": [65535, 0], "now tom began to scrawl something": [65535, 0], "tom began to scrawl something on": [65535, 0], "began to scrawl something on the": [65535, 0], "to scrawl something on the slate": [65535, 0], "scrawl something on the slate hiding": [65535, 0], "something on the slate hiding the": [65535, 0], "on the slate hiding the words": [65535, 0], "the slate hiding the words from": [65535, 0], "slate hiding the words from the": [65535, 0], "hiding the words from the girl": [65535, 0], "the words from the girl but": [65535, 0], "words from the girl but she": [65535, 0], "from the girl but she was": [65535, 0], "the girl but she was not": [65535, 0], "girl but she was not backward": [65535, 0], "but she was not backward this": [65535, 0], "she was not backward this time": [65535, 0], "was not backward this time she": [65535, 0], "not backward this time she begged": [65535, 0], "backward this time she begged to": [65535, 0], "this time she begged to see": [65535, 0], "time she begged to see tom": [65535, 0], "she begged to see tom said": [65535, 0], "begged to see tom said oh": [65535, 0], "to see tom said oh it": [65535, 0], "see tom said oh it ain't": [65535, 0], "tom said oh it ain't anything": [65535, 0], "said oh it ain't anything yes": [65535, 0], "oh it ain't anything yes it": [65535, 0], "it ain't anything yes it is": [65535, 0], "ain't anything yes it is no": [65535, 0], "anything yes it is no it": [65535, 0], "yes it is no it ain't": [65535, 0], "it is no it ain't you": [65535, 0], "is no it ain't you don't": [65535, 0], "no it ain't you don't want": [65535, 0], "it ain't you don't want to": [65535, 0], "ain't you don't want to see": [65535, 0], "you don't want to see yes": [65535, 0], "don't want to see yes i": [65535, 0], "want to see yes i do": [65535, 0], "to see yes i do indeed": [65535, 0], "see yes i do indeed i": [65535, 0], "yes i do indeed i do": [65535, 0], "i do indeed i do please": [65535, 0], "do indeed i do please let": [65535, 0], "indeed i do please let me": [65535, 0], "i do please let me you'll": [65535, 0], "do please let me you'll tell": [65535, 0], "please let me you'll tell no": [65535, 0], "let me you'll tell no i": [65535, 0], "me you'll tell no i won't": [65535, 0], "you'll tell no i won't deed": [65535, 0], "tell no i won't deed and": [65535, 0], "no i won't deed and deed": [65535, 0], "i won't deed and deed and": [65535, 0], "won't deed and deed and double": [65535, 0], "deed and deed and double deed": [65535, 0], "and deed and double deed won't": [65535, 0], "deed and double deed won't you": [65535, 0], "and double deed won't you won't": [65535, 0], "double deed won't you won't tell": [65535, 0], "deed won't you won't tell anybody": [65535, 0], "won't you won't tell anybody at": [65535, 0], "you won't tell anybody at all": [65535, 0], "won't tell anybody at all ever": [65535, 0], "tell anybody at all ever as": [65535, 0], "anybody at all ever as long": [65535, 0], "at all ever as long as": [65535, 0], "all ever as long as you": [65535, 0], "ever as long as you live": [65535, 0], "as long as you live no": [65535, 0], "long as you live no i": [65535, 0], "as you live no i won't": [65535, 0], "you live no i won't ever": [65535, 0], "live no i won't ever tell": [65535, 0], "no i won't ever tell anybody": [65535, 0], "i won't ever tell anybody now": [65535, 0], "won't ever tell anybody now let": [65535, 0], "ever tell anybody now let me": [65535, 0], "tell anybody now let me oh": [65535, 0], "anybody now let me oh you": [65535, 0], "now let me oh you don't": [65535, 0], "let me oh you don't want": [65535, 0], "me oh you don't want to": [65535, 0], "oh you don't want to see": [65535, 0], "you don't want to see now": [65535, 0], "don't want to see now that": [65535, 0], "want to see now that you": [65535, 0], "to see now that you treat": [65535, 0], "see now that you treat me": [65535, 0], "now that you treat me so": [65535, 0], "that you treat me so i": [65535, 0], "you treat me so i will": [65535, 0], "treat me so i will see": [65535, 0], "me so i will see and": [65535, 0], "so i will see and she": [65535, 0], "i will see and she put": [65535, 0], "will see and she put her": [65535, 0], "see and she put her small": [65535, 0], "and she put her small hand": [65535, 0], "she put her small hand upon": [65535, 0], "put her small hand upon his": [65535, 0], "her small hand upon his and": [65535, 0], "small hand upon his and a": [65535, 0], "hand upon his and a little": [65535, 0], "upon his and a little scuffle": [65535, 0], "his and a little scuffle ensued": [65535, 0], "and a little scuffle ensued tom": [65535, 0], "a little scuffle ensued tom pretending": [65535, 0], "little scuffle ensued tom pretending to": [65535, 0], "scuffle ensued tom pretending to resist": [65535, 0], "ensued tom pretending to resist in": [65535, 0], "tom pretending to resist in earnest": [65535, 0], "pretending to resist in earnest but": [65535, 0], "to resist in earnest but letting": [65535, 0], "resist in earnest but letting his": [65535, 0], "in earnest but letting his hand": [65535, 0], "earnest but letting his hand slip": [65535, 0], "but letting his hand slip by": [65535, 0], "letting his hand slip by degrees": [65535, 0], "his hand slip by degrees till": [65535, 0], "hand slip by degrees till these": [65535, 0], "slip by degrees till these words": [65535, 0], "by degrees till these words were": [65535, 0], "degrees till these words were revealed": [65535, 0], "till these words were revealed i": [65535, 0], "these words were revealed i love": [65535, 0], "words were revealed i love you": [65535, 0], "were revealed i love you oh": [65535, 0], "revealed i love you oh you": [65535, 0], "i love you oh you bad": [65535, 0], "love you oh you bad thing": [65535, 0], "you oh you bad thing and": [65535, 0], "oh you bad thing and she": [65535, 0], "you bad thing and she hit": [65535, 0], "bad thing and she hit his": [65535, 0], "thing and she hit his hand": [65535, 0], "and she hit his hand a": [65535, 0], "she hit his hand a smart": [65535, 0], "hit his hand a smart rap": [65535, 0], "his hand a smart rap but": [65535, 0], "hand a smart rap but reddened": [65535, 0], "a smart rap but reddened and": [65535, 0], "smart rap but reddened and looked": [65535, 0], "rap but reddened and looked pleased": [65535, 0], "but reddened and looked pleased nevertheless": [65535, 0], "reddened and looked pleased nevertheless just": [65535, 0], "and looked pleased nevertheless just at": [65535, 0], "looked pleased nevertheless just at this": [65535, 0], "pleased nevertheless just at this juncture": [65535, 0], "nevertheless just at this juncture the": [65535, 0], "just at this juncture the boy": [65535, 0], "at this juncture the boy felt": [65535, 0], "this juncture the boy felt a": [65535, 0], "juncture the boy felt a slow": [65535, 0], "the boy felt a slow fateful": [65535, 0], "boy felt a slow fateful grip": [65535, 0], "felt a slow fateful grip closing": [65535, 0], "a slow fateful grip closing on": [65535, 0], "slow fateful grip closing on his": [65535, 0], "fateful grip closing on his ear": [65535, 0], "grip closing on his ear and": [65535, 0], "closing on his ear and a": [65535, 0], "on his ear and a steady": [65535, 0], "his ear and a steady lifting": [65535, 0], "ear and a steady lifting impulse": [65535, 0], "and a steady lifting impulse in": [65535, 0], "a steady lifting impulse in that": [65535, 0], "steady lifting impulse in that vise": [65535, 0], "lifting impulse in that vise he": [65535, 0], "impulse in that vise he was": [65535, 0], "in that vise he was borne": [65535, 0], "that vise he was borne across": [65535, 0], "vise he was borne across the": [65535, 0], "he was borne across the house": [65535, 0], "was borne across the house and": [65535, 0], "borne across the house and deposited": [65535, 0], "across the house and deposited in": [65535, 0], "the house and deposited in his": [65535, 0], "house and deposited in his own": [65535, 0], "and deposited in his own seat": [65535, 0], "deposited in his own seat under": [65535, 0], "in his own seat under a": [65535, 0], "his own seat under a peppering": [65535, 0], "own seat under a peppering fire": [65535, 0], "seat under a peppering fire of": [65535, 0], "under a peppering fire of giggles": [65535, 0], "a peppering fire of giggles from": [65535, 0], "peppering fire of giggles from the": [65535, 0], "fire of giggles from the whole": [65535, 0], "of giggles from the whole school": [65535, 0], "giggles from the whole school then": [65535, 0], "from the whole school then the": [65535, 0], "the whole school then the master": [65535, 0], "whole school then the master stood": [65535, 0], "school then the master stood over": [65535, 0], "then the master stood over him": [65535, 0], "the master stood over him during": [65535, 0], "master stood over him during a": [65535, 0], "stood over him during a few": [65535, 0], "over him during a few awful": [65535, 0], "him during a few awful moments": [65535, 0], "during a few awful moments and": [65535, 0], "a few awful moments and finally": [65535, 0], "few awful moments and finally moved": [65535, 0], "awful moments and finally moved away": [65535, 0], "moments and finally moved away to": [65535, 0], "and finally moved away to his": [65535, 0], "finally moved away to his throne": [65535, 0], "moved away to his throne without": [65535, 0], "away to his throne without saying": [65535, 0], "to his throne without saying a": [65535, 0], "his throne without saying a word": [65535, 0], "throne without saying a word but": [65535, 0], "without saying a word but although": [65535, 0], "saying a word but although tom's": [65535, 0], "a word but although tom's ear": [65535, 0], "word but although tom's ear tingled": [65535, 0], "but although tom's ear tingled his": [65535, 0], "although tom's ear tingled his heart": [65535, 0], "tom's ear tingled his heart was": [65535, 0], "ear tingled his heart was jubilant": [65535, 0], "tingled his heart was jubilant as": [65535, 0], "his heart was jubilant as the": [65535, 0], "heart was jubilant as the school": [65535, 0], "was jubilant as the school quieted": [65535, 0], "jubilant as the school quieted down": [65535, 0], "as the school quieted down tom": [65535, 0], "the school quieted down tom made": [65535, 0], "school quieted down tom made an": [65535, 0], "quieted down tom made an honest": [65535, 0], "down tom made an honest effort": [65535, 0], "tom made an honest effort to": [65535, 0], "made an honest effort to study": [65535, 0], "an honest effort to study but": [65535, 0], "honest effort to study but the": [65535, 0], "effort to study but the turmoil": [65535, 0], "to study but the turmoil within": [65535, 0], "study but the turmoil within him": [65535, 0], "but the turmoil within him was": [65535, 0], "the turmoil within him was too": [65535, 0], "turmoil within him was too great": [65535, 0], "within him was too great in": [65535, 0], "him was too great in turn": [65535, 0], "was too great in turn he": [65535, 0], "too great in turn he took": [65535, 0], "great in turn he took his": [65535, 0], "in turn he took his place": [65535, 0], "turn he took his place in": [65535, 0], "he took his place in the": [65535, 0], "took his place in the reading": [65535, 0], "his place in the reading class": [65535, 0], "place in the reading class and": [65535, 0], "in the reading class and made": [65535, 0], "the reading class and made a": [65535, 0], "reading class and made a botch": [65535, 0], "class and made a botch of": [65535, 0], "and made a botch of it": [65535, 0], "made a botch of it then": [65535, 0], "a botch of it then in": [65535, 0], "botch of it then in the": [65535, 0], "of it then in the geography": [65535, 0], "it then in the geography class": [65535, 0], "then in the geography class and": [65535, 0], "in the geography class and turned": [65535, 0], "the geography class and turned lakes": [65535, 0], "geography class and turned lakes into": [65535, 0], "class and turned lakes into mountains": [65535, 0], "and turned lakes into mountains mountains": [65535, 0], "turned lakes into mountains mountains into": [65535, 0], "lakes into mountains mountains into rivers": [65535, 0], "into mountains mountains into rivers and": [65535, 0], "mountains mountains into rivers and rivers": [65535, 0], "mountains into rivers and rivers into": [65535, 0], "into rivers and rivers into continents": [65535, 0], "rivers and rivers into continents till": [65535, 0], "and rivers into continents till chaos": [65535, 0], "rivers into continents till chaos was": [65535, 0], "into continents till chaos was come": [65535, 0], "continents till chaos was come again": [65535, 0], "till chaos was come again then": [65535, 0], "chaos was come again then in": [65535, 0], "was come again then in the": [65535, 0], "come again then in the spelling": [65535, 0], "again then in the spelling class": [65535, 0], "then in the spelling class and": [65535, 0], "in the spelling class and got": [65535, 0], "the spelling class and got turned": [65535, 0], "spelling class and got turned down": [65535, 0], "class and got turned down by": [65535, 0], "and got turned down by a": [65535, 0], "got turned down by a succession": [65535, 0], "turned down by a succession of": [65535, 0], "down by a succession of mere": [65535, 0], "by a succession of mere baby": [65535, 0], "a succession of mere baby words": [65535, 0], "succession of mere baby words till": [65535, 0], "of mere baby words till he": [65535, 0], "mere baby words till he brought": [65535, 0], "baby words till he brought up": [65535, 0], "words till he brought up at": [65535, 0], "till he brought up at the": [65535, 0], "he brought up at the foot": [65535, 0], "brought up at the foot and": [65535, 0], "up at the foot and yielded": [65535, 0], "at the foot and yielded up": [65535, 0], "the foot and yielded up the": [65535, 0], "foot and yielded up the pewter": [65535, 0], "and yielded up the pewter medal": [65535, 0], "yielded up the pewter medal which": [65535, 0], "up the pewter medal which he": [65535, 0], "the pewter medal which he had": [65535, 0], "pewter medal which he had worn": [65535, 0], "medal which he had worn with": [65535, 0], "which he had worn with ostentation": [65535, 0], "he had worn with ostentation for": [65535, 0], "had worn with ostentation for months": [65535, 0], "monday morning found tom sawyer miserable monday": [65535, 0], "morning found tom sawyer miserable monday morning": [65535, 0], "found tom sawyer miserable monday morning always": [65535, 0], "tom sawyer miserable monday morning always found": [65535, 0], "sawyer miserable monday morning always found him": [65535, 0], "miserable monday morning always found him so": [65535, 0], "monday morning always found him so because": [65535, 0], "morning always found him so because it": [65535, 0], "always found him so because it began": [65535, 0], "found him so because it began another": [65535, 0], "him so because it began another week's": [65535, 0], "so because it began another week's slow": [65535, 0], "because it began another week's slow suffering": [65535, 0], "it began another week's slow suffering in": [65535, 0], "began another week's slow suffering in school": [65535, 0], "another week's slow suffering in school he": [65535, 0], "week's slow suffering in school he generally": [65535, 0], "slow suffering in school he generally began": [65535, 0], "suffering in school he generally began that": [65535, 0], "in school he generally began that day": [65535, 0], "school he generally began that day with": [65535, 0], "he generally began that day with wishing": [65535, 0], "generally began that day with wishing he": [65535, 0], "began that day with wishing he had": [65535, 0], "that day with wishing he had had": [65535, 0], "day with wishing he had had no": [65535, 0], "with wishing he had had no intervening": [65535, 0], "wishing he had had no intervening holiday": [65535, 0], "he had had no intervening holiday it": [65535, 0], "had had no intervening holiday it made": [65535, 0], "had no intervening holiday it made the": [65535, 0], "no intervening holiday it made the going": [65535, 0], "intervening holiday it made the going into": [65535, 0], "holiday it made the going into captivity": [65535, 0], "it made the going into captivity and": [65535, 0], "made the going into captivity and fetters": [65535, 0], "the going into captivity and fetters again": [65535, 0], "going into captivity and fetters again so": [65535, 0], "into captivity and fetters again so much": [65535, 0], "captivity and fetters again so much more": [65535, 0], "and fetters again so much more odious": [65535, 0], "fetters again so much more odious tom": [65535, 0], "again so much more odious tom lay": [65535, 0], "so much more odious tom lay thinking": [65535, 0], "much more odious tom lay thinking presently": [65535, 0], "more odious tom lay thinking presently it": [65535, 0], "odious tom lay thinking presently it occurred": [65535, 0], "tom lay thinking presently it occurred to": [65535, 0], "lay thinking presently it occurred to him": [65535, 0], "thinking presently it occurred to him that": [65535, 0], "presently it occurred to him that he": [65535, 0], "it occurred to him that he wished": [65535, 0], "occurred to him that he wished he": [65535, 0], "to him that he wished he was": [65535, 0], "him that he wished he was sick": [65535, 0], "that he wished he was sick then": [65535, 0], "he wished he was sick then he": [65535, 0], "wished he was sick then he could": [65535, 0], "he was sick then he could stay": [65535, 0], "was sick then he could stay home": [65535, 0], "sick then he could stay home from": [65535, 0], "then he could stay home from school": [65535, 0], "he could stay home from school here": [65535, 0], "could stay home from school here was": [65535, 0], "stay home from school here was a": [65535, 0], "home from school here was a vague": [65535, 0], "from school here was a vague possibility": [65535, 0], "school here was a vague possibility he": [65535, 0], "here was a vague possibility he canvassed": [65535, 0], "was a vague possibility he canvassed his": [65535, 0], "a vague possibility he canvassed his system": [65535, 0], "vague possibility he canvassed his system no": [65535, 0], "possibility he canvassed his system no ailment": [65535, 0], "he canvassed his system no ailment was": [65535, 0], "canvassed his system no ailment was found": [65535, 0], "his system no ailment was found and": [65535, 0], "system no ailment was found and he": [65535, 0], "no ailment was found and he investigated": [65535, 0], "ailment was found and he investigated again": [65535, 0], "was found and he investigated again this": [65535, 0], "found and he investigated again this time": [65535, 0], "and he investigated again this time he": [65535, 0], "he investigated again this time he thought": [65535, 0], "investigated again this time he thought he": [65535, 0], "again this time he thought he could": [65535, 0], "this time he thought he could detect": [65535, 0], "time he thought he could detect colicky": [65535, 0], "he thought he could detect colicky symptoms": [65535, 0], "thought he could detect colicky symptoms and": [65535, 0], "he could detect colicky symptoms and he": [65535, 0], "could detect colicky symptoms and he began": [65535, 0], "detect colicky symptoms and he began to": [65535, 0], "colicky symptoms and he began to encourage": [65535, 0], "symptoms and he began to encourage them": [65535, 0], "and he began to encourage them with": [65535, 0], "he began to encourage them with considerable": [65535, 0], "began to encourage them with considerable hope": [65535, 0], "to encourage them with considerable hope but": [65535, 0], "encourage them with considerable hope but they": [65535, 0], "them with considerable hope but they soon": [65535, 0], "with considerable hope but they soon grew": [65535, 0], "considerable hope but they soon grew feeble": [65535, 0], "hope but they soon grew feeble and": [65535, 0], "but they soon grew feeble and presently": [65535, 0], "they soon grew feeble and presently died": [65535, 0], "soon grew feeble and presently died wholly": [65535, 0], "grew feeble and presently died wholly away": [65535, 0], "feeble and presently died wholly away he": [65535, 0], "and presently died wholly away he reflected": [65535, 0], "presently died wholly away he reflected further": [65535, 0], "died wholly away he reflected further suddenly": [65535, 0], "wholly away he reflected further suddenly he": [65535, 0], "away he reflected further suddenly he discovered": [65535, 0], "he reflected further suddenly he discovered something": [65535, 0], "reflected further suddenly he discovered something one": [65535, 0], "further suddenly he discovered something one of": [65535, 0], "suddenly he discovered something one of his": [65535, 0], "he discovered something one of his upper": [65535, 0], "discovered something one of his upper front": [65535, 0], "something one of his upper front teeth": [65535, 0], "one of his upper front teeth was": [65535, 0], "of his upper front teeth was loose": [65535, 0], "his upper front teeth was loose this": [65535, 0], "upper front teeth was loose this was": [65535, 0], "front teeth was loose this was lucky": [65535, 0], "teeth was loose this was lucky he": [65535, 0], "was loose this was lucky he was": [65535, 0], "loose this was lucky he was about": [65535, 0], "this was lucky he was about to": [65535, 0], "was lucky he was about to begin": [65535, 0], "lucky he was about to begin to": [65535, 0], "he was about to begin to groan": [65535, 0], "was about to begin to groan as": [65535, 0], "about to begin to groan as a": [65535, 0], "to begin to groan as a starter": [65535, 0], "begin to groan as a starter as": [65535, 0], "to groan as a starter as he": [65535, 0], "groan as a starter as he called": [65535, 0], "as a starter as he called it": [65535, 0], "a starter as he called it when": [65535, 0], "starter as he called it when it": [65535, 0], "as he called it when it occurred": [65535, 0], "he called it when it occurred to": [65535, 0], "called it when it occurred to him": [65535, 0], "it when it occurred to him that": [65535, 0], "when it occurred to him that if": [65535, 0], "it occurred to him that if he": [65535, 0], "occurred to him that if he came": [65535, 0], "to him that if he came into": [65535, 0], "him that if he came into court": [65535, 0], "that if he came into court with": [65535, 0], "if he came into court with that": [65535, 0], "he came into court with that argument": [65535, 0], "came into court with that argument his": [65535, 0], "into court with that argument his aunt": [65535, 0], "court with that argument his aunt would": [65535, 0], "with that argument his aunt would pull": [65535, 0], "that argument his aunt would pull it": [65535, 0], "argument his aunt would pull it out": [65535, 0], "his aunt would pull it out and": [65535, 0], "aunt would pull it out and that": [65535, 0], "would pull it out and that would": [65535, 0], "pull it out and that would hurt": [65535, 0], "it out and that would hurt so": [65535, 0], "out and that would hurt so he": [65535, 0], "and that would hurt so he thought": [65535, 0], "that would hurt so he thought he": [65535, 0], "would hurt so he thought he would": [65535, 0], "hurt so he thought he would hold": [65535, 0], "so he thought he would hold the": [65535, 0], "he thought he would hold the tooth": [65535, 0], "thought he would hold the tooth in": [65535, 0], "he would hold the tooth in reserve": [65535, 0], "would hold the tooth in reserve for": [65535, 0], "hold the tooth in reserve for the": [65535, 0], "the tooth in reserve for the present": [65535, 0], "tooth in reserve for the present and": [65535, 0], "in reserve for the present and seek": [65535, 0], "reserve for the present and seek further": [65535, 0], "for the present and seek further nothing": [65535, 0], "the present and seek further nothing offered": [65535, 0], "present and seek further nothing offered for": [65535, 0], "and seek further nothing offered for some": [65535, 0], "seek further nothing offered for some little": [65535, 0], "further nothing offered for some little time": [65535, 0], "nothing offered for some little time and": [65535, 0], "offered for some little time and then": [65535, 0], "for some little time and then he": [65535, 0], "some little time and then he remembered": [65535, 0], "little time and then he remembered hearing": [65535, 0], "time and then he remembered hearing the": [65535, 0], "and then he remembered hearing the doctor": [65535, 0], "then he remembered hearing the doctor tell": [65535, 0], "he remembered hearing the doctor tell about": [65535, 0], "remembered hearing the doctor tell about a": [65535, 0], "hearing the doctor tell about a certain": [65535, 0], "the doctor tell about a certain thing": [65535, 0], "doctor tell about a certain thing that": [65535, 0], "tell about a certain thing that laid": [65535, 0], "about a certain thing that laid up": [65535, 0], "a certain thing that laid up a": [65535, 0], "certain thing that laid up a patient": [65535, 0], "thing that laid up a patient for": [65535, 0], "that laid up a patient for two": [65535, 0], "laid up a patient for two or": [65535, 0], "up a patient for two or three": [65535, 0], "a patient for two or three weeks": [65535, 0], "patient for two or three weeks and": [65535, 0], "for two or three weeks and threatened": [65535, 0], "two or three weeks and threatened to": [65535, 0], "or three weeks and threatened to make": [65535, 0], "three weeks and threatened to make him": [65535, 0], "weeks and threatened to make him lose": [65535, 0], "and threatened to make him lose a": [65535, 0], "threatened to make him lose a finger": [65535, 0], "to make him lose a finger so": [65535, 0], "make him lose a finger so the": [65535, 0], "him lose a finger so the boy": [65535, 0], "lose a finger so the boy eagerly": [65535, 0], "a finger so the boy eagerly drew": [65535, 0], "finger so the boy eagerly drew his": [65535, 0], "so the boy eagerly drew his sore": [65535, 0], "the boy eagerly drew his sore toe": [65535, 0], "boy eagerly drew his sore toe from": [65535, 0], "eagerly drew his sore toe from under": [65535, 0], "drew his sore toe from under the": [65535, 0], "his sore toe from under the sheet": [65535, 0], "sore toe from under the sheet and": [65535, 0], "toe from under the sheet and held": [65535, 0], "from under the sheet and held it": [65535, 0], "under the sheet and held it up": [65535, 0], "the sheet and held it up for": [65535, 0], "sheet and held it up for inspection": [65535, 0], "and held it up for inspection but": [65535, 0], "held it up for inspection but now": [65535, 0], "it up for inspection but now he": [65535, 0], "up for inspection but now he did": [65535, 0], "for inspection but now he did not": [65535, 0], "inspection but now he did not know": [65535, 0], "but now he did not know the": [65535, 0], "now he did not know the necessary": [65535, 0], "he did not know the necessary symptoms": [65535, 0], "did not know the necessary symptoms however": [65535, 0], "not know the necessary symptoms however it": [65535, 0], "know the necessary symptoms however it seemed": [65535, 0], "the necessary symptoms however it seemed well": [65535, 0], "necessary symptoms however it seemed well worth": [65535, 0], "symptoms however it seemed well worth while": [65535, 0], "however it seemed well worth while to": [65535, 0], "it seemed well worth while to chance": [65535, 0], "seemed well worth while to chance it": [65535, 0], "well worth while to chance it so": [65535, 0], "worth while to chance it so he": [65535, 0], "while to chance it so he fell": [65535, 0], "to chance it so he fell to": [65535, 0], "chance it so he fell to groaning": [65535, 0], "it so he fell to groaning with": [65535, 0], "so he fell to groaning with considerable": [65535, 0], "he fell to groaning with considerable spirit": [65535, 0], "fell to groaning with considerable spirit but": [65535, 0], "to groaning with considerable spirit but sid": [65535, 0], "groaning with considerable spirit but sid slept": [65535, 0], "with considerable spirit but sid slept on": [65535, 0], "considerable spirit but sid slept on unconscious": [65535, 0], "spirit but sid slept on unconscious tom": [65535, 0], "but sid slept on unconscious tom groaned": [65535, 0], "sid slept on unconscious tom groaned louder": [65535, 0], "slept on unconscious tom groaned louder and": [65535, 0], "on unconscious tom groaned louder and fancied": [65535, 0], "unconscious tom groaned louder and fancied that": [65535, 0], "tom groaned louder and fancied that he": [65535, 0], "groaned louder and fancied that he began": [65535, 0], "louder and fancied that he began to": [65535, 0], "and fancied that he began to feel": [65535, 0], "fancied that he began to feel pain": [65535, 0], "that he began to feel pain in": [65535, 0], "he began to feel pain in the": [65535, 0], "began to feel pain in the toe": [65535, 0], "to feel pain in the toe no": [65535, 0], "feel pain in the toe no result": [65535, 0], "pain in the toe no result from": [65535, 0], "in the toe no result from sid": [65535, 0], "the toe no result from sid tom": [65535, 0], "toe no result from sid tom was": [65535, 0], "no result from sid tom was panting": [65535, 0], "result from sid tom was panting with": [65535, 0], "from sid tom was panting with his": [65535, 0], "sid tom was panting with his exertions": [65535, 0], "tom was panting with his exertions by": [65535, 0], "was panting with his exertions by this": [65535, 0], "panting with his exertions by this time": [65535, 0], "with his exertions by this time he": [65535, 0], "his exertions by this time he took": [65535, 0], "exertions by this time he took a": [65535, 0], "by this time he took a rest": [65535, 0], "this time he took a rest and": [65535, 0], "time he took a rest and then": [65535, 0], "he took a rest and then swelled": [65535, 0], "took a rest and then swelled himself": [65535, 0], "a rest and then swelled himself up": [65535, 0], "rest and then swelled himself up and": [65535, 0], "and then swelled himself up and fetched": [65535, 0], "then swelled himself up and fetched a": [65535, 0], "swelled himself up and fetched a succession": [65535, 0], "himself up and fetched a succession of": [65535, 0], "up and fetched a succession of admirable": [65535, 0], "and fetched a succession of admirable groans": [65535, 0], "fetched a succession of admirable groans sid": [65535, 0], "a succession of admirable groans sid snored": [65535, 0], "succession of admirable groans sid snored on": [65535, 0], "of admirable groans sid snored on tom": [65535, 0], "admirable groans sid snored on tom was": [65535, 0], "groans sid snored on tom was aggravated": [65535, 0], "sid snored on tom was aggravated he": [65535, 0], "snored on tom was aggravated he said": [65535, 0], "on tom was aggravated he said sid": [65535, 0], "tom was aggravated he said sid sid": [65535, 0], "was aggravated he said sid sid and": [65535, 0], "aggravated he said sid sid and shook": [65535, 0], "he said sid sid and shook him": [65535, 0], "said sid sid and shook him this": [65535, 0], "sid sid and shook him this course": [65535, 0], "sid and shook him this course worked": [65535, 0], "and shook him this course worked well": [65535, 0], "shook him this course worked well and": [65535, 0], "him this course worked well and tom": [65535, 0], "this course worked well and tom began": [65535, 0], "course worked well and tom began to": [65535, 0], "worked well and tom began to groan": [65535, 0], "well and tom began to groan again": [65535, 0], "and tom began to groan again sid": [65535, 0], "tom began to groan again sid yawned": [65535, 0], "began to groan again sid yawned stretched": [65535, 0], "to groan again sid yawned stretched then": [65535, 0], "groan again sid yawned stretched then brought": [65535, 0], "again sid yawned stretched then brought himself": [65535, 0], "sid yawned stretched then brought himself up": [65535, 0], "yawned stretched then brought himself up on": [65535, 0], "stretched then brought himself up on his": [65535, 0], "then brought himself up on his elbow": [65535, 0], "brought himself up on his elbow with": [65535, 0], "himself up on his elbow with a": [65535, 0], "up on his elbow with a snort": [65535, 0], "on his elbow with a snort and": [65535, 0], "his elbow with a snort and began": [65535, 0], "elbow with a snort and began to": [65535, 0], "with a snort and began to stare": [65535, 0], "a snort and began to stare at": [65535, 0], "snort and began to stare at tom": [65535, 0], "and began to stare at tom tom": [65535, 0], "began to stare at tom tom went": [65535, 0], "to stare at tom tom went on": [65535, 0], "stare at tom tom went on groaning": [65535, 0], "at tom tom went on groaning sid": [65535, 0], "tom tom went on groaning sid said": [65535, 0], "tom went on groaning sid said tom": [65535, 0], "went on groaning sid said tom say": [65535, 0], "on groaning sid said tom say tom": [65535, 0], "groaning sid said tom say tom no": [65535, 0], "sid said tom say tom no response": [65535, 0], "said tom say tom no response here": [65535, 0], "tom say tom no response here tom": [65535, 0], "say tom no response here tom tom": [65535, 0], "tom no response here tom tom what": [65535, 0], "no response here tom tom what is": [65535, 0], "response here tom tom what is the": [65535, 0], "here tom tom what is the matter": [65535, 0], "tom tom what is the matter tom": [65535, 0], "tom what is the matter tom and": [65535, 0], "what is the matter tom and he": [65535, 0], "is the matter tom and he shook": [65535, 0], "the matter tom and he shook him": [65535, 0], "matter tom and he shook him and": [65535, 0], "tom and he shook him and looked": [65535, 0], "and he shook him and looked in": [65535, 0], "he shook him and looked in his": [65535, 0], "shook him and looked in his face": [65535, 0], "him and looked in his face anxiously": [65535, 0], "and looked in his face anxiously tom": [65535, 0], "looked in his face anxiously tom moaned": [65535, 0], "in his face anxiously tom moaned out": [65535, 0], "his face anxiously tom moaned out oh": [65535, 0], "face anxiously tom moaned out oh don't": [65535, 0], "anxiously tom moaned out oh don't sid": [65535, 0], "tom moaned out oh don't sid don't": [65535, 0], "moaned out oh don't sid don't joggle": [65535, 0], "out oh don't sid don't joggle me": [65535, 0], "oh don't sid don't joggle me why": [65535, 0], "don't sid don't joggle me why what's": [65535, 0], "sid don't joggle me why what's the": [65535, 0], "don't joggle me why what's the matter": [65535, 0], "joggle me why what's the matter tom": [65535, 0], "me why what's the matter tom i": [65535, 0], "why what's the matter tom i must": [65535, 0], "what's the matter tom i must call": [65535, 0], "the matter tom i must call auntie": [65535, 0], "matter tom i must call auntie no": [65535, 0], "tom i must call auntie no never": [65535, 0], "i must call auntie no never mind": [65535, 0], "must call auntie no never mind it'll": [65535, 0], "call auntie no never mind it'll be": [65535, 0], "auntie no never mind it'll be over": [65535, 0], "no never mind it'll be over by": [65535, 0], "never mind it'll be over by and": [65535, 0], "mind it'll be over by and by": [65535, 0], "it'll be over by and by maybe": [65535, 0], "be over by and by maybe don't": [65535, 0], "over by and by maybe don't call": [65535, 0], "by and by maybe don't call anybody": [65535, 0], "and by maybe don't call anybody but": [65535, 0], "by maybe don't call anybody but i": [65535, 0], "maybe don't call anybody but i must": [65535, 0], "don't call anybody but i must don't": [65535, 0], "call anybody but i must don't groan": [65535, 0], "anybody but i must don't groan so": [65535, 0], "but i must don't groan so tom": [65535, 0], "i must don't groan so tom it's": [65535, 0], "must don't groan so tom it's awful": [65535, 0], "don't groan so tom it's awful how": [65535, 0], "groan so tom it's awful how long": [65535, 0], "so tom it's awful how long you": [65535, 0], "tom it's awful how long you been": [65535, 0], "it's awful how long you been this": [65535, 0], "awful how long you been this way": [65535, 0], "how long you been this way hours": [65535, 0], "long you been this way hours ouch": [65535, 0], "you been this way hours ouch oh": [65535, 0], "been this way hours ouch oh don't": [65535, 0], "this way hours ouch oh don't stir": [65535, 0], "way hours ouch oh don't stir so": [65535, 0], "hours ouch oh don't stir so sid": [65535, 0], "ouch oh don't stir so sid you'll": [65535, 0], "oh don't stir so sid you'll kill": [65535, 0], "don't stir so sid you'll kill me": [65535, 0], "stir so sid you'll kill me tom": [65535, 0], "so sid you'll kill me tom why": [65535, 0], "sid you'll kill me tom why didn't": [65535, 0], "you'll kill me tom why didn't you": [65535, 0], "kill me tom why didn't you wake": [65535, 0], "me tom why didn't you wake me": [65535, 0], "tom why didn't you wake me sooner": [65535, 0], "why didn't you wake me sooner oh": [65535, 0], "didn't you wake me sooner oh tom": [65535, 0], "you wake me sooner oh tom don't": [65535, 0], "wake me sooner oh tom don't it": [65535, 0], "me sooner oh tom don't it makes": [65535, 0], "sooner oh tom don't it makes my": [65535, 0], "oh tom don't it makes my flesh": [65535, 0], "tom don't it makes my flesh crawl": [65535, 0], "don't it makes my flesh crawl to": [65535, 0], "it makes my flesh crawl to hear": [65535, 0], "makes my flesh crawl to hear you": [65535, 0], "my flesh crawl to hear you tom": [65535, 0], "flesh crawl to hear you tom what": [65535, 0], "crawl to hear you tom what is": [65535, 0], "to hear you tom what is the": [65535, 0], "hear you tom what is the matter": [65535, 0], "you tom what is the matter i": [65535, 0], "tom what is the matter i forgive": [65535, 0], "what is the matter i forgive you": [65535, 0], "is the matter i forgive you everything": [65535, 0], "the matter i forgive you everything sid": [65535, 0], "matter i forgive you everything sid groan": [65535, 0], "i forgive you everything sid groan everything": [65535, 0], "forgive you everything sid groan everything you've": [65535, 0], "you everything sid groan everything you've ever": [65535, 0], "everything sid groan everything you've ever done": [65535, 0], "sid groan everything you've ever done to": [65535, 0], "groan everything you've ever done to me": [65535, 0], "everything you've ever done to me when": [65535, 0], "you've ever done to me when i'm": [65535, 0], "ever done to me when i'm gone": [65535, 0], "done to me when i'm gone oh": [65535, 0], "to me when i'm gone oh tom": [65535, 0], "me when i'm gone oh tom you": [65535, 0], "when i'm gone oh tom you ain't": [65535, 0], "i'm gone oh tom you ain't dying": [65535, 0], "gone oh tom you ain't dying are": [65535, 0], "oh tom you ain't dying are you": [65535, 0], "tom you ain't dying are you don't": [65535, 0], "you ain't dying are you don't tom": [65535, 0], "ain't dying are you don't tom oh": [65535, 0], "dying are you don't tom oh don't": [65535, 0], "are you don't tom oh don't maybe": [65535, 0], "you don't tom oh don't maybe i": [65535, 0], "don't tom oh don't maybe i forgive": [65535, 0], "tom oh don't maybe i forgive everybody": [65535, 0], "oh don't maybe i forgive everybody sid": [65535, 0], "don't maybe i forgive everybody sid groan": [65535, 0], "maybe i forgive everybody sid groan tell": [65535, 0], "i forgive everybody sid groan tell 'em": [65535, 0], "forgive everybody sid groan tell 'em so": [65535, 0], "everybody sid groan tell 'em so sid": [65535, 0], "sid groan tell 'em so sid and": [65535, 0], "groan tell 'em so sid and sid": [65535, 0], "tell 'em so sid and sid you": [65535, 0], "'em so sid and sid you give": [65535, 0], "so sid and sid you give my": [65535, 0], "sid and sid you give my window": [65535, 0], "and sid you give my window sash": [65535, 0], "sid you give my window sash and": [65535, 0], "you give my window sash and my": [65535, 0], "give my window sash and my cat": [65535, 0], "my window sash and my cat with": [65535, 0], "window sash and my cat with one": [65535, 0], "sash and my cat with one eye": [65535, 0], "and my cat with one eye to": [65535, 0], "my cat with one eye to that": [65535, 0], "cat with one eye to that new": [65535, 0], "with one eye to that new girl": [65535, 0], "one eye to that new girl that's": [65535, 0], "eye to that new girl that's come": [65535, 0], "to that new girl that's come to": [65535, 0], "that new girl that's come to town": [65535, 0], "new girl that's come to town and": [65535, 0], "girl that's come to town and tell": [65535, 0], "that's come to town and tell her": [65535, 0], "come to town and tell her but": [65535, 0], "to town and tell her but sid": [65535, 0], "town and tell her but sid had": [65535, 0], "and tell her but sid had snatched": [65535, 0], "tell her but sid had snatched his": [65535, 0], "her but sid had snatched his clothes": [65535, 0], "but sid had snatched his clothes and": [65535, 0], "sid had snatched his clothes and gone": [65535, 0], "had snatched his clothes and gone tom": [65535, 0], "snatched his clothes and gone tom was": [65535, 0], "his clothes and gone tom was suffering": [65535, 0], "clothes and gone tom was suffering in": [65535, 0], "and gone tom was suffering in reality": [65535, 0], "gone tom was suffering in reality now": [65535, 0], "tom was suffering in reality now so": [65535, 0], "was suffering in reality now so handsomely": [65535, 0], "suffering in reality now so handsomely was": [65535, 0], "in reality now so handsomely was his": [65535, 0], "reality now so handsomely was his imagination": [65535, 0], "now so handsomely was his imagination working": [65535, 0], "so handsomely was his imagination working and": [65535, 0], "handsomely was his imagination working and so": [65535, 0], "was his imagination working and so his": [65535, 0], "his imagination working and so his groans": [65535, 0], "imagination working and so his groans had": [65535, 0], "working and so his groans had gathered": [65535, 0], "and so his groans had gathered quite": [65535, 0], "so his groans had gathered quite a": [65535, 0], "his groans had gathered quite a genuine": [65535, 0], "groans had gathered quite a genuine tone": [65535, 0], "had gathered quite a genuine tone sid": [65535, 0], "gathered quite a genuine tone sid flew": [65535, 0], "quite a genuine tone sid flew down": [65535, 0], "a genuine tone sid flew down stairs": [65535, 0], "genuine tone sid flew down stairs and": [65535, 0], "tone sid flew down stairs and said": [65535, 0], "sid flew down stairs and said oh": [65535, 0], "flew down stairs and said oh aunt": [65535, 0], "down stairs and said oh aunt polly": [65535, 0], "stairs and said oh aunt polly come": [65535, 0], "and said oh aunt polly come tom's": [65535, 0], "said oh aunt polly come tom's dying": [65535, 0], "oh aunt polly come tom's dying dying": [65535, 0], "aunt polly come tom's dying dying yes'm": [65535, 0], "polly come tom's dying dying yes'm don't": [65535, 0], "come tom's dying dying yes'm don't wait": [65535, 0], "tom's dying dying yes'm don't wait come": [65535, 0], "dying dying yes'm don't wait come quick": [65535, 0], "dying yes'm don't wait come quick rubbage": [65535, 0], "yes'm don't wait come quick rubbage i": [65535, 0], "don't wait come quick rubbage i don't": [65535, 0], "wait come quick rubbage i don't believe": [65535, 0], "come quick rubbage i don't believe it": [65535, 0], "quick rubbage i don't believe it but": [65535, 0], "rubbage i don't believe it but she": [65535, 0], "i don't believe it but she fled": [65535, 0], "don't believe it but she fled up": [65535, 0], "believe it but she fled up stairs": [65535, 0], "it but she fled up stairs nevertheless": [65535, 0], "but she fled up stairs nevertheless with": [65535, 0], "she fled up stairs nevertheless with sid": [65535, 0], "fled up stairs nevertheless with sid and": [65535, 0], "up stairs nevertheless with sid and mary": [65535, 0], "stairs nevertheless with sid and mary at": [65535, 0], "nevertheless with sid and mary at her": [65535, 0], "with sid and mary at her heels": [65535, 0], "sid and mary at her heels and": [65535, 0], "and mary at her heels and her": [65535, 0], "mary at her heels and her face": [65535, 0], "at her heels and her face grew": [65535, 0], "her heels and her face grew white": [65535, 0], "heels and her face grew white too": [65535, 0], "and her face grew white too and": [65535, 0], "her face grew white too and her": [65535, 0], "face grew white too and her lip": [65535, 0], "grew white too and her lip trembled": [65535, 0], "white too and her lip trembled when": [65535, 0], "too and her lip trembled when she": [65535, 0], "and her lip trembled when she reached": [65535, 0], "her lip trembled when she reached the": [65535, 0], "lip trembled when she reached the bedside": [65535, 0], "trembled when she reached the bedside she": [65535, 0], "when she reached the bedside she gasped": [65535, 0], "she reached the bedside she gasped out": [65535, 0], "reached the bedside she gasped out you": [65535, 0], "the bedside she gasped out you tom": [65535, 0], "bedside she gasped out you tom tom": [65535, 0], "she gasped out you tom tom what's": [65535, 0], "gasped out you tom tom what's the": [65535, 0], "out you tom tom what's the matter": [65535, 0], "you tom tom what's the matter with": [65535, 0], "tom tom what's the matter with you": [65535, 0], "tom what's the matter with you oh": [65535, 0], "what's the matter with you oh auntie": [65535, 0], "the matter with you oh auntie i'm": [65535, 0], "matter with you oh auntie i'm what's": [65535, 0], "with you oh auntie i'm what's the": [65535, 0], "you oh auntie i'm what's the matter": [65535, 0], "oh auntie i'm what's the matter with": [65535, 0], "auntie i'm what's the matter with you": [65535, 0], "i'm what's the matter with you what": [65535, 0], "what's the matter with you what is": [65535, 0], "the matter with you what is the": [65535, 0], "matter with you what is the matter": [65535, 0], "with you what is the matter with": [65535, 0], "you what is the matter with you": [65535, 0], "what is the matter with you child": [65535, 0], "is the matter with you child oh": [65535, 0], "the matter with you child oh auntie": [65535, 0], "matter with you child oh auntie my": [65535, 0], "with you child oh auntie my sore": [65535, 0], "you child oh auntie my sore toe's": [65535, 0], "child oh auntie my sore toe's mortified": [65535, 0], "oh auntie my sore toe's mortified the": [65535, 0], "auntie my sore toe's mortified the old": [65535, 0], "my sore toe's mortified the old lady": [65535, 0], "sore toe's mortified the old lady sank": [65535, 0], "toe's mortified the old lady sank down": [65535, 0], "mortified the old lady sank down into": [65535, 0], "the old lady sank down into a": [65535, 0], "old lady sank down into a chair": [65535, 0], "lady sank down into a chair and": [65535, 0], "sank down into a chair and laughed": [65535, 0], "down into a chair and laughed a": [65535, 0], "into a chair and laughed a little": [65535, 0], "a chair and laughed a little then": [65535, 0], "chair and laughed a little then cried": [65535, 0], "and laughed a little then cried a": [65535, 0], "laughed a little then cried a little": [65535, 0], "a little then cried a little then": [65535, 0], "little then cried a little then did": [65535, 0], "then cried a little then did both": [65535, 0], "cried a little then did both together": [65535, 0], "a little then did both together this": [65535, 0], "little then did both together this restored": [65535, 0], "then did both together this restored her": [65535, 0], "did both together this restored her and": [65535, 0], "both together this restored her and she": [65535, 0], "together this restored her and she said": [65535, 0], "this restored her and she said tom": [65535, 0], "restored her and she said tom what": [65535, 0], "her and she said tom what a": [65535, 0], "and she said tom what a turn": [65535, 0], "she said tom what a turn you": [65535, 0], "said tom what a turn you did": [65535, 0], "tom what a turn you did give": [65535, 0], "what a turn you did give me": [65535, 0], "a turn you did give me now": [65535, 0], "turn you did give me now you": [65535, 0], "you did give me now you shut": [65535, 0], "did give me now you shut up": [65535, 0], "give me now you shut up that": [65535, 0], "me now you shut up that nonsense": [65535, 0], "now you shut up that nonsense and": [65535, 0], "you shut up that nonsense and climb": [65535, 0], "shut up that nonsense and climb out": [65535, 0], "up that nonsense and climb out of": [65535, 0], "that nonsense and climb out of this": [65535, 0], "nonsense and climb out of this the": [65535, 0], "and climb out of this the groans": [65535, 0], "climb out of this the groans ceased": [65535, 0], "out of this the groans ceased and": [65535, 0], "of this the groans ceased and the": [65535, 0], "this the groans ceased and the pain": [65535, 0], "the groans ceased and the pain vanished": [65535, 0], "groans ceased and the pain vanished from": [65535, 0], "ceased and the pain vanished from the": [65535, 0], "and the pain vanished from the toe": [65535, 0], "the pain vanished from the toe the": [65535, 0], "pain vanished from the toe the boy": [65535, 0], "vanished from the toe the boy felt": [65535, 0], "from the toe the boy felt a": [65535, 0], "the toe the boy felt a little": [65535, 0], "toe the boy felt a little foolish": [65535, 0], "the boy felt a little foolish and": [65535, 0], "boy felt a little foolish and he": [65535, 0], "felt a little foolish and he said": [65535, 0], "a little foolish and he said aunt": [65535, 0], "little foolish and he said aunt polly": [65535, 0], "foolish and he said aunt polly it": [65535, 0], "and he said aunt polly it seemed": [65535, 0], "he said aunt polly it seemed mortified": [65535, 0], "said aunt polly it seemed mortified and": [65535, 0], "aunt polly it seemed mortified and it": [65535, 0], "polly it seemed mortified and it hurt": [65535, 0], "it seemed mortified and it hurt so": [65535, 0], "seemed mortified and it hurt so i": [65535, 0], "mortified and it hurt so i never": [65535, 0], "and it hurt so i never minded": [65535, 0], "it hurt so i never minded my": [65535, 0], "hurt so i never minded my tooth": [65535, 0], "so i never minded my tooth at": [65535, 0], "i never minded my tooth at all": [65535, 0], "never minded my tooth at all your": [65535, 0], "minded my tooth at all your tooth": [65535, 0], "my tooth at all your tooth indeed": [65535, 0], "tooth at all your tooth indeed what's": [65535, 0], "at all your tooth indeed what's the": [65535, 0], "all your tooth indeed what's the matter": [65535, 0], "your tooth indeed what's the matter with": [65535, 0], "tooth indeed what's the matter with your": [65535, 0], "indeed what's the matter with your tooth": [65535, 0], "what's the matter with your tooth one": [65535, 0], "the matter with your tooth one of": [65535, 0], "matter with your tooth one of them's": [65535, 0], "with your tooth one of them's loose": [65535, 0], "your tooth one of them's loose and": [65535, 0], "tooth one of them's loose and it": [65535, 0], "one of them's loose and it aches": [65535, 0], "of them's loose and it aches perfectly": [65535, 0], "them's loose and it aches perfectly awful": [65535, 0], "loose and it aches perfectly awful there": [65535, 0], "and it aches perfectly awful there there": [65535, 0], "it aches perfectly awful there there now": [65535, 0], "aches perfectly awful there there now don't": [65535, 0], "perfectly awful there there now don't begin": [65535, 0], "awful there there now don't begin that": [65535, 0], "there there now don't begin that groaning": [65535, 0], "there now don't begin that groaning again": [65535, 0], "now don't begin that groaning again open": [65535, 0], "don't begin that groaning again open your": [65535, 0], "begin that groaning again open your mouth": [65535, 0], "that groaning again open your mouth well": [65535, 0], "groaning again open your mouth well your": [65535, 0], "again open your mouth well your tooth": [65535, 0], "open your mouth well your tooth is": [65535, 0], "your mouth well your tooth is loose": [65535, 0], "mouth well your tooth is loose but": [65535, 0], "well your tooth is loose but you're": [65535, 0], "your tooth is loose but you're not": [65535, 0], "tooth is loose but you're not going": [65535, 0], "is loose but you're not going to": [65535, 0], "loose but you're not going to die": [65535, 0], "but you're not going to die about": [65535, 0], "you're not going to die about that": [65535, 0], "not going to die about that mary": [65535, 0], "going to die about that mary get": [65535, 0], "to die about that mary get me": [65535, 0], "die about that mary get me a": [65535, 0], "about that mary get me a silk": [65535, 0], "that mary get me a silk thread": [65535, 0], "mary get me a silk thread and": [65535, 0], "get me a silk thread and a": [65535, 0], "me a silk thread and a chunk": [65535, 0], "a silk thread and a chunk of": [65535, 0], "silk thread and a chunk of fire": [65535, 0], "thread and a chunk of fire out": [65535, 0], "and a chunk of fire out of": [65535, 0], "a chunk of fire out of the": [65535, 0], "chunk of fire out of the kitchen": [65535, 0], "of fire out of the kitchen tom": [65535, 0], "fire out of the kitchen tom said": [65535, 0], "out of the kitchen tom said oh": [65535, 0], "of the kitchen tom said oh please": [65535, 0], "the kitchen tom said oh please auntie": [65535, 0], "kitchen tom said oh please auntie don't": [65535, 0], "tom said oh please auntie don't pull": [65535, 0], "said oh please auntie don't pull it": [65535, 0], "oh please auntie don't pull it out": [65535, 0], "please auntie don't pull it out it": [65535, 0], "auntie don't pull it out it don't": [65535, 0], "don't pull it out it don't hurt": [65535, 0], "pull it out it don't hurt any": [65535, 0], "it out it don't hurt any more": [65535, 0], "out it don't hurt any more i": [65535, 0], "it don't hurt any more i wish": [65535, 0], "don't hurt any more i wish i": [65535, 0], "hurt any more i wish i may": [65535, 0], "any more i wish i may never": [65535, 0], "more i wish i may never stir": [65535, 0], "i wish i may never stir if": [65535, 0], "wish i may never stir if it": [65535, 0], "i may never stir if it does": [65535, 0], "may never stir if it does please": [65535, 0], "never stir if it does please don't": [65535, 0], "stir if it does please don't auntie": [65535, 0], "if it does please don't auntie i": [65535, 0], "it does please don't auntie i don't": [65535, 0], "does please don't auntie i don't want": [65535, 0], "please don't auntie i don't want to": [65535, 0], "don't auntie i don't want to stay": [65535, 0], "auntie i don't want to stay home": [65535, 0], "i don't want to stay home from": [65535, 0], "don't want to stay home from school": [65535, 0], "want to stay home from school oh": [65535, 0], "to stay home from school oh you": [65535, 0], "stay home from school oh you don't": [65535, 0], "home from school oh you don't don't": [65535, 0], "from school oh you don't don't you": [65535, 0], "school oh you don't don't you so": [65535, 0], "oh you don't don't you so all": [65535, 0], "you don't don't you so all this": [65535, 0], "don't don't you so all this row": [65535, 0], "don't you so all this row was": [65535, 0], "you so all this row was because": [65535, 0], "so all this row was because you": [65535, 0], "all this row was because you thought": [65535, 0], "this row was because you thought you'd": [65535, 0], "row was because you thought you'd get": [65535, 0], "was because you thought you'd get to": [65535, 0], "because you thought you'd get to stay": [65535, 0], "you thought you'd get to stay home": [65535, 0], "thought you'd get to stay home from": [65535, 0], "you'd get to stay home from school": [65535, 0], "get to stay home from school and": [65535, 0], "to stay home from school and go": [65535, 0], "stay home from school and go a": [65535, 0], "home from school and go a fishing": [65535, 0], "from school and go a fishing tom": [65535, 0], "school and go a fishing tom tom": [65535, 0], "and go a fishing tom tom i": [65535, 0], "go a fishing tom tom i love": [65535, 0], "a fishing tom tom i love you": [65535, 0], "fishing tom tom i love you so": [65535, 0], "tom tom i love you so and": [65535, 0], "tom i love you so and you": [65535, 0], "i love you so and you seem": [65535, 0], "love you so and you seem to": [65535, 0], "you so and you seem to try": [65535, 0], "so and you seem to try every": [65535, 0], "and you seem to try every way": [65535, 0], "you seem to try every way you": [65535, 0], "seem to try every way you can": [65535, 0], "to try every way you can to": [65535, 0], "try every way you can to break": [65535, 0], "every way you can to break my": [65535, 0], "way you can to break my old": [65535, 0], "you can to break my old heart": [65535, 0], "can to break my old heart with": [65535, 0], "to break my old heart with your": [65535, 0], "break my old heart with your outrageousness": [65535, 0], "my old heart with your outrageousness by": [65535, 0], "old heart with your outrageousness by this": [65535, 0], "heart with your outrageousness by this time": [65535, 0], "with your outrageousness by this time the": [65535, 0], "your outrageousness by this time the dental": [65535, 0], "outrageousness by this time the dental instruments": [65535, 0], "by this time the dental instruments were": [65535, 0], "this time the dental instruments were ready": [65535, 0], "time the dental instruments were ready the": [65535, 0], "the dental instruments were ready the old": [65535, 0], "dental instruments were ready the old lady": [65535, 0], "instruments were ready the old lady made": [65535, 0], "were ready the old lady made one": [65535, 0], "ready the old lady made one end": [65535, 0], "the old lady made one end of": [65535, 0], "old lady made one end of the": [65535, 0], "lady made one end of the silk": [65535, 0], "made one end of the silk thread": [65535, 0], "one end of the silk thread fast": [65535, 0], "end of the silk thread fast to": [65535, 0], "of the silk thread fast to tom's": [65535, 0], "the silk thread fast to tom's tooth": [65535, 0], "silk thread fast to tom's tooth with": [65535, 0], "thread fast to tom's tooth with a": [65535, 0], "fast to tom's tooth with a loop": [65535, 0], "to tom's tooth with a loop and": [65535, 0], "tom's tooth with a loop and tied": [65535, 0], "tooth with a loop and tied the": [65535, 0], "with a loop and tied the other": [65535, 0], "a loop and tied the other to": [65535, 0], "loop and tied the other to the": [65535, 0], "and tied the other to the bedpost": [65535, 0], "tied the other to the bedpost then": [65535, 0], "the other to the bedpost then she": [65535, 0], "other to the bedpost then she seized": [65535, 0], "to the bedpost then she seized the": [65535, 0], "the bedpost then she seized the chunk": [65535, 0], "bedpost then she seized the chunk of": [65535, 0], "then she seized the chunk of fire": [65535, 0], "she seized the chunk of fire and": [65535, 0], "seized the chunk of fire and suddenly": [65535, 0], "the chunk of fire and suddenly thrust": [65535, 0], "chunk of fire and suddenly thrust it": [65535, 0], "of fire and suddenly thrust it almost": [65535, 0], "fire and suddenly thrust it almost into": [65535, 0], "and suddenly thrust it almost into the": [65535, 0], "suddenly thrust it almost into the boy's": [65535, 0], "thrust it almost into the boy's face": [65535, 0], "it almost into the boy's face the": [65535, 0], "almost into the boy's face the tooth": [65535, 0], "into the boy's face the tooth hung": [65535, 0], "the boy's face the tooth hung dangling": [65535, 0], "boy's face the tooth hung dangling by": [65535, 0], "face the tooth hung dangling by the": [65535, 0], "the tooth hung dangling by the bedpost": [65535, 0], "tooth hung dangling by the bedpost now": [65535, 0], "hung dangling by the bedpost now but": [65535, 0], "dangling by the bedpost now but all": [65535, 0], "by the bedpost now but all trials": [65535, 0], "the bedpost now but all trials bring": [65535, 0], "bedpost now but all trials bring their": [65535, 0], "now but all trials bring their compensations": [65535, 0], "but all trials bring their compensations as": [65535, 0], "all trials bring their compensations as tom": [65535, 0], "trials bring their compensations as tom wended": [65535, 0], "bring their compensations as tom wended to": [65535, 0], "their compensations as tom wended to school": [65535, 0], "compensations as tom wended to school after": [65535, 0], "as tom wended to school after breakfast": [65535, 0], "tom wended to school after breakfast he": [65535, 0], "wended to school after breakfast he was": [65535, 0], "to school after breakfast he was the": [65535, 0], "school after breakfast he was the envy": [65535, 0], "after breakfast he was the envy of": [65535, 0], "breakfast he was the envy of every": [65535, 0], "he was the envy of every boy": [65535, 0], "was the envy of every boy he": [65535, 0], "the envy of every boy he met": [65535, 0], "envy of every boy he met because": [65535, 0], "of every boy he met because the": [65535, 0], "every boy he met because the gap": [65535, 0], "boy he met because the gap in": [65535, 0], "he met because the gap in his": [65535, 0], "met because the gap in his upper": [65535, 0], "because the gap in his upper row": [65535, 0], "the gap in his upper row of": [65535, 0], "gap in his upper row of teeth": [65535, 0], "in his upper row of teeth enabled": [65535, 0], "his upper row of teeth enabled him": [65535, 0], "upper row of teeth enabled him to": [65535, 0], "row of teeth enabled him to expectorate": [65535, 0], "of teeth enabled him to expectorate in": [65535, 0], "teeth enabled him to expectorate in a": [65535, 0], "enabled him to expectorate in a new": [65535, 0], "him to expectorate in a new and": [65535, 0], "to expectorate in a new and admirable": [65535, 0], "expectorate in a new and admirable way": [65535, 0], "in a new and admirable way he": [65535, 0], "a new and admirable way he gathered": [65535, 0], "new and admirable way he gathered quite": [65535, 0], "and admirable way he gathered quite a": [65535, 0], "admirable way he gathered quite a following": [65535, 0], "way he gathered quite a following of": [65535, 0], "he gathered quite a following of lads": [65535, 0], "gathered quite a following of lads interested": [65535, 0], "quite a following of lads interested in": [65535, 0], "a following of lads interested in the": [65535, 0], "following of lads interested in the exhibition": [65535, 0], "of lads interested in the exhibition and": [65535, 0], "lads interested in the exhibition and one": [65535, 0], "interested in the exhibition and one that": [65535, 0], "in the exhibition and one that had": [65535, 0], "the exhibition and one that had cut": [65535, 0], "exhibition and one that had cut his": [65535, 0], "and one that had cut his finger": [65535, 0], "one that had cut his finger and": [65535, 0], "that had cut his finger and had": [65535, 0], "had cut his finger and had been": [65535, 0], "cut his finger and had been a": [65535, 0], "his finger and had been a centre": [65535, 0], "finger and had been a centre of": [65535, 0], "and had been a centre of fascination": [65535, 0], "had been a centre of fascination and": [65535, 0], "been a centre of fascination and homage": [65535, 0], "a centre of fascination and homage up": [65535, 0], "centre of fascination and homage up to": [65535, 0], "of fascination and homage up to this": [65535, 0], "fascination and homage up to this time": [65535, 0], "and homage up to this time now": [65535, 0], "homage up to this time now found": [65535, 0], "up to this time now found himself": [65535, 0], "to this time now found himself suddenly": [65535, 0], "this time now found himself suddenly without": [65535, 0], "time now found himself suddenly without an": [65535, 0], "now found himself suddenly without an adherent": [65535, 0], "found himself suddenly without an adherent and": [65535, 0], "himself suddenly without an adherent and shorn": [65535, 0], "suddenly without an adherent and shorn of": [65535, 0], "without an adherent and shorn of his": [65535, 0], "an adherent and shorn of his glory": [65535, 0], "adherent and shorn of his glory his": [65535, 0], "and shorn of his glory his heart": [65535, 0], "shorn of his glory his heart was": [65535, 0], "of his glory his heart was heavy": [65535, 0], "his glory his heart was heavy and": [65535, 0], "glory his heart was heavy and he": [65535, 0], "his heart was heavy and he said": [65535, 0], "heart was heavy and he said with": [65535, 0], "was heavy and he said with a": [65535, 0], "heavy and he said with a disdain": [65535, 0], "and he said with a disdain which": [65535, 0], "he said with a disdain which he": [65535, 0], "said with a disdain which he did": [65535, 0], "with a disdain which he did not": [65535, 0], "a disdain which he did not feel": [65535, 0], "disdain which he did not feel that": [65535, 0], "which he did not feel that it": [65535, 0], "he did not feel that it wasn't": [65535, 0], "did not feel that it wasn't anything": [65535, 0], "not feel that it wasn't anything to": [65535, 0], "feel that it wasn't anything to spit": [65535, 0], "that it wasn't anything to spit like": [65535, 0], "it wasn't anything to spit like tom": [65535, 0], "wasn't anything to spit like tom sawyer": [65535, 0], "anything to spit like tom sawyer but": [65535, 0], "to spit like tom sawyer but another": [65535, 0], "spit like tom sawyer but another boy": [65535, 0], "like tom sawyer but another boy said": [65535, 0], "tom sawyer but another boy said sour": [65535, 0], "sawyer but another boy said sour grapes": [65535, 0], "but another boy said sour grapes and": [65535, 0], "another boy said sour grapes and he": [65535, 0], "boy said sour grapes and he wandered": [65535, 0], "said sour grapes and he wandered away": [65535, 0], "sour grapes and he wandered away a": [65535, 0], "grapes and he wandered away a dismantled": [65535, 0], "and he wandered away a dismantled hero": [65535, 0], "he wandered away a dismantled hero shortly": [65535, 0], "wandered away a dismantled hero shortly tom": [65535, 0], "away a dismantled hero shortly tom came": [65535, 0], "a dismantled hero shortly tom came upon": [65535, 0], "dismantled hero shortly tom came upon the": [65535, 0], "hero shortly tom came upon the juvenile": [65535, 0], "shortly tom came upon the juvenile pariah": [65535, 0], "tom came upon the juvenile pariah of": [65535, 0], "came upon the juvenile pariah of the": [65535, 0], "upon the juvenile pariah of the village": [65535, 0], "the juvenile pariah of the village huckleberry": [65535, 0], "juvenile pariah of the village huckleberry finn": [65535, 0], "pariah of the village huckleberry finn son": [65535, 0], "of the village huckleberry finn son of": [65535, 0], "the village huckleberry finn son of the": [65535, 0], "village huckleberry finn son of the town": [65535, 0], "huckleberry finn son of the town drunkard": [65535, 0], "finn son of the town drunkard huckleberry": [65535, 0], "son of the town drunkard huckleberry was": [65535, 0], "of the town drunkard huckleberry was cordially": [65535, 0], "the town drunkard huckleberry was cordially hated": [65535, 0], "town drunkard huckleberry was cordially hated and": [65535, 0], "drunkard huckleberry was cordially hated and dreaded": [65535, 0], "huckleberry was cordially hated and dreaded by": [65535, 0], "was cordially hated and dreaded by all": [65535, 0], "cordially hated and dreaded by all the": [65535, 0], "hated and dreaded by all the mothers": [65535, 0], "and dreaded by all the mothers of": [65535, 0], "dreaded by all the mothers of the": [65535, 0], "by all the mothers of the town": [65535, 0], "all the mothers of the town because": [65535, 0], "the mothers of the town because he": [65535, 0], "mothers of the town because he was": [65535, 0], "of the town because he was idle": [65535, 0], "the town because he was idle and": [65535, 0], "town because he was idle and lawless": [65535, 0], "because he was idle and lawless and": [65535, 0], "he was idle and lawless and vulgar": [65535, 0], "was idle and lawless and vulgar and": [65535, 0], "idle and lawless and vulgar and bad": [65535, 0], "and lawless and vulgar and bad and": [65535, 0], "lawless and vulgar and bad and because": [65535, 0], "and vulgar and bad and because all": [65535, 0], "vulgar and bad and because all their": [65535, 0], "and bad and because all their children": [65535, 0], "bad and because all their children admired": [65535, 0], "and because all their children admired him": [65535, 0], "because all their children admired him so": [65535, 0], "all their children admired him so and": [65535, 0], "their children admired him so and delighted": [65535, 0], "children admired him so and delighted in": [65535, 0], "admired him so and delighted in his": [65535, 0], "him so and delighted in his forbidden": [65535, 0], "so and delighted in his forbidden society": [65535, 0], "and delighted in his forbidden society and": [65535, 0], "delighted in his forbidden society and wished": [65535, 0], "in his forbidden society and wished they": [65535, 0], "his forbidden society and wished they dared": [65535, 0], "forbidden society and wished they dared to": [65535, 0], "society and wished they dared to be": [65535, 0], "and wished they dared to be like": [65535, 0], "wished they dared to be like him": [65535, 0], "they dared to be like him tom": [65535, 0], "dared to be like him tom was": [65535, 0], "to be like him tom was like": [65535, 0], "be like him tom was like the": [65535, 0], "like him tom was like the rest": [65535, 0], "him tom was like the rest of": [65535, 0], "tom was like the rest of the": [65535, 0], "was like the rest of the respectable": [65535, 0], "like the rest of the respectable boys": [65535, 0], "the rest of the respectable boys in": [65535, 0], "rest of the respectable boys in that": [65535, 0], "of the respectable boys in that he": [65535, 0], "the respectable boys in that he envied": [65535, 0], "respectable boys in that he envied huckleberry": [65535, 0], "boys in that he envied huckleberry his": [65535, 0], "in that he envied huckleberry his gaudy": [65535, 0], "that he envied huckleberry his gaudy outcast": [65535, 0], "he envied huckleberry his gaudy outcast condition": [65535, 0], "envied huckleberry his gaudy outcast condition and": [65535, 0], "huckleberry his gaudy outcast condition and was": [65535, 0], "his gaudy outcast condition and was under": [65535, 0], "gaudy outcast condition and was under strict": [65535, 0], "outcast condition and was under strict orders": [65535, 0], "condition and was under strict orders not": [65535, 0], "and was under strict orders not to": [65535, 0], "was under strict orders not to play": [65535, 0], "under strict orders not to play with": [65535, 0], "strict orders not to play with him": [65535, 0], "orders not to play with him so": [65535, 0], "not to play with him so he": [65535, 0], "to play with him so he played": [65535, 0], "play with him so he played with": [65535, 0], "with him so he played with him": [65535, 0], "him so he played with him every": [65535, 0], "so he played with him every time": [65535, 0], "he played with him every time he": [65535, 0], "played with him every time he got": [65535, 0], "with him every time he got a": [65535, 0], "him every time he got a chance": [65535, 0], "every time he got a chance huckleberry": [65535, 0], "time he got a chance huckleberry was": [65535, 0], "he got a chance huckleberry was always": [65535, 0], "got a chance huckleberry was always dressed": [65535, 0], "a chance huckleberry was always dressed in": [65535, 0], "chance huckleberry was always dressed in the": [65535, 0], "huckleberry was always dressed in the cast": [65535, 0], "was always dressed in the cast off": [65535, 0], "always dressed in the cast off clothes": [65535, 0], "dressed in the cast off clothes of": [65535, 0], "in the cast off clothes of full": [65535, 0], "the cast off clothes of full grown": [65535, 0], "cast off clothes of full grown men": [65535, 0], "off clothes of full grown men and": [65535, 0], "clothes of full grown men and they": [65535, 0], "of full grown men and they were": [65535, 0], "full grown men and they were in": [65535, 0], "grown men and they were in perennial": [65535, 0], "men and they were in perennial bloom": [65535, 0], "and they were in perennial bloom and": [65535, 0], "they were in perennial bloom and fluttering": [65535, 0], "were in perennial bloom and fluttering with": [65535, 0], "in perennial bloom and fluttering with rags": [65535, 0], "perennial bloom and fluttering with rags his": [65535, 0], "bloom and fluttering with rags his hat": [65535, 0], "and fluttering with rags his hat was": [65535, 0], "fluttering with rags his hat was a": [65535, 0], "with rags his hat was a vast": [65535, 0], "rags his hat was a vast ruin": [65535, 0], "his hat was a vast ruin with": [65535, 0], "hat was a vast ruin with a": [65535, 0], "was a vast ruin with a wide": [65535, 0], "a vast ruin with a wide crescent": [65535, 0], "vast ruin with a wide crescent lopped": [65535, 0], "ruin with a wide crescent lopped out": [65535, 0], "with a wide crescent lopped out of": [65535, 0], "a wide crescent lopped out of its": [65535, 0], "wide crescent lopped out of its brim": [65535, 0], "crescent lopped out of its brim his": [65535, 0], "lopped out of its brim his coat": [65535, 0], "out of its brim his coat when": [65535, 0], "of its brim his coat when he": [65535, 0], "its brim his coat when he wore": [65535, 0], "brim his coat when he wore one": [65535, 0], "his coat when he wore one hung": [65535, 0], "coat when he wore one hung nearly": [65535, 0], "when he wore one hung nearly to": [65535, 0], "he wore one hung nearly to his": [65535, 0], "wore one hung nearly to his heels": [65535, 0], "one hung nearly to his heels and": [65535, 0], "hung nearly to his heels and had": [65535, 0], "nearly to his heels and had the": [65535, 0], "to his heels and had the rearward": [65535, 0], "his heels and had the rearward buttons": [65535, 0], "heels and had the rearward buttons far": [65535, 0], "and had the rearward buttons far down": [65535, 0], "had the rearward buttons far down the": [65535, 0], "the rearward buttons far down the back": [65535, 0], "rearward buttons far down the back but": [65535, 0], "buttons far down the back but one": [65535, 0], "far down the back but one suspender": [65535, 0], "down the back but one suspender supported": [65535, 0], "the back but one suspender supported his": [65535, 0], "back but one suspender supported his trousers": [65535, 0], "but one suspender supported his trousers the": [65535, 0], "one suspender supported his trousers the seat": [65535, 0], "suspender supported his trousers the seat of": [65535, 0], "supported his trousers the seat of the": [65535, 0], "his trousers the seat of the trousers": [65535, 0], "trousers the seat of the trousers bagged": [65535, 0], "the seat of the trousers bagged low": [65535, 0], "seat of the trousers bagged low and": [65535, 0], "of the trousers bagged low and contained": [65535, 0], "the trousers bagged low and contained nothing": [65535, 0], "trousers bagged low and contained nothing the": [65535, 0], "bagged low and contained nothing the fringed": [65535, 0], "low and contained nothing the fringed legs": [65535, 0], "and contained nothing the fringed legs dragged": [65535, 0], "contained nothing the fringed legs dragged in": [65535, 0], "nothing the fringed legs dragged in the": [65535, 0], "the fringed legs dragged in the dirt": [65535, 0], "fringed legs dragged in the dirt when": [65535, 0], "legs dragged in the dirt when not": [65535, 0], "dragged in the dirt when not rolled": [65535, 0], "in the dirt when not rolled up": [65535, 0], "the dirt when not rolled up huckleberry": [65535, 0], "dirt when not rolled up huckleberry came": [65535, 0], "when not rolled up huckleberry came and": [65535, 0], "not rolled up huckleberry came and went": [65535, 0], "rolled up huckleberry came and went at": [65535, 0], "up huckleberry came and went at his": [65535, 0], "huckleberry came and went at his own": [65535, 0], "came and went at his own free": [65535, 0], "and went at his own free will": [65535, 0], "went at his own free will he": [65535, 0], "at his own free will he slept": [65535, 0], "his own free will he slept on": [65535, 0], "own free will he slept on doorsteps": [65535, 0], "free will he slept on doorsteps in": [65535, 0], "will he slept on doorsteps in fine": [65535, 0], "he slept on doorsteps in fine weather": [65535, 0], "slept on doorsteps in fine weather and": [65535, 0], "on doorsteps in fine weather and in": [65535, 0], "doorsteps in fine weather and in empty": [65535, 0], "in fine weather and in empty hogsheads": [65535, 0], "fine weather and in empty hogsheads in": [65535, 0], "weather and in empty hogsheads in wet": [65535, 0], "and in empty hogsheads in wet he": [65535, 0], "in empty hogsheads in wet he did": [65535, 0], "empty hogsheads in wet he did not": [65535, 0], "hogsheads in wet he did not have": [65535, 0], "in wet he did not have to": [65535, 0], "wet he did not have to go": [65535, 0], "he did not have to go to": [65535, 0], "did not have to go to school": [65535, 0], "not have to go to school or": [65535, 0], "have to go to school or to": [65535, 0], "to go to school or to church": [65535, 0], "go to school or to church or": [65535, 0], "to school or to church or call": [65535, 0], "school or to church or call any": [65535, 0], "or to church or call any being": [65535, 0], "to church or call any being master": [65535, 0], "church or call any being master or": [65535, 0], "or call any being master or obey": [65535, 0], "call any being master or obey anybody": [65535, 0], "any being master or obey anybody he": [65535, 0], "being master or obey anybody he could": [65535, 0], "master or obey anybody he could go": [65535, 0], "or obey anybody he could go fishing": [65535, 0], "obey anybody he could go fishing or": [65535, 0], "anybody he could go fishing or swimming": [65535, 0], "he could go fishing or swimming when": [65535, 0], "could go fishing or swimming when and": [65535, 0], "go fishing or swimming when and where": [65535, 0], "fishing or swimming when and where he": [65535, 0], "or swimming when and where he chose": [65535, 0], "swimming when and where he chose and": [65535, 0], "when and where he chose and stay": [65535, 0], "and where he chose and stay as": [65535, 0], "where he chose and stay as long": [65535, 0], "he chose and stay as long as": [65535, 0], "chose and stay as long as it": [65535, 0], "and stay as long as it suited": [65535, 0], "stay as long as it suited him": [65535, 0], "as long as it suited him nobody": [65535, 0], "long as it suited him nobody forbade": [65535, 0], "as it suited him nobody forbade him": [65535, 0], "it suited him nobody forbade him to": [65535, 0], "suited him nobody forbade him to fight": [65535, 0], "him nobody forbade him to fight he": [65535, 0], "nobody forbade him to fight he could": [65535, 0], "forbade him to fight he could sit": [65535, 0], "him to fight he could sit up": [65535, 0], "to fight he could sit up as": [65535, 0], "fight he could sit up as late": [65535, 0], "he could sit up as late as": [65535, 0], "could sit up as late as he": [65535, 0], "sit up as late as he pleased": [65535, 0], "up as late as he pleased he": [65535, 0], "as late as he pleased he was": [65535, 0], "late as he pleased he was always": [65535, 0], "as he pleased he was always the": [65535, 0], "he pleased he was always the first": [65535, 0], "pleased he was always the first boy": [65535, 0], "he was always the first boy that": [65535, 0], "was always the first boy that went": [65535, 0], "always the first boy that went barefoot": [65535, 0], "the first boy that went barefoot in": [65535, 0], "first boy that went barefoot in the": [65535, 0], "boy that went barefoot in the spring": [65535, 0], "that went barefoot in the spring and": [65535, 0], "went barefoot in the spring and the": [65535, 0], "barefoot in the spring and the last": [65535, 0], "in the spring and the last to": [65535, 0], "the spring and the last to resume": [65535, 0], "spring and the last to resume leather": [65535, 0], "and the last to resume leather in": [65535, 0], "the last to resume leather in the": [65535, 0], "last to resume leather in the fall": [65535, 0], "to resume leather in the fall he": [65535, 0], "resume leather in the fall he never": [65535, 0], "leather in the fall he never had": [65535, 0], "in the fall he never had to": [65535, 0], "the fall he never had to wash": [65535, 0], "fall he never had to wash nor": [65535, 0], "he never had to wash nor put": [65535, 0], "never had to wash nor put on": [65535, 0], "had to wash nor put on clean": [65535, 0], "to wash nor put on clean clothes": [65535, 0], "wash nor put on clean clothes he": [65535, 0], "nor put on clean clothes he could": [65535, 0], "put on clean clothes he could swear": [65535, 0], "on clean clothes he could swear wonderfully": [65535, 0], "clean clothes he could swear wonderfully in": [65535, 0], "clothes he could swear wonderfully in a": [65535, 0], "he could swear wonderfully in a word": [65535, 0], "could swear wonderfully in a word everything": [65535, 0], "swear wonderfully in a word everything that": [65535, 0], "wonderfully in a word everything that goes": [65535, 0], "in a word everything that goes to": [65535, 0], "a word everything that goes to make": [65535, 0], "word everything that goes to make life": [65535, 0], "everything that goes to make life precious": [65535, 0], "that goes to make life precious that": [65535, 0], "goes to make life precious that boy": [65535, 0], "to make life precious that boy had": [65535, 0], "make life precious that boy had so": [65535, 0], "life precious that boy had so thought": [65535, 0], "precious that boy had so thought every": [65535, 0], "that boy had so thought every harassed": [65535, 0], "boy had so thought every harassed hampered": [65535, 0], "had so thought every harassed hampered respectable": [65535, 0], "so thought every harassed hampered respectable boy": [65535, 0], "thought every harassed hampered respectable boy in": [65535, 0], "every harassed hampered respectable boy in st": [65535, 0], "harassed hampered respectable boy in st petersburg": [65535, 0], "hampered respectable boy in st petersburg tom": [65535, 0], "respectable boy in st petersburg tom hailed": [65535, 0], "boy in st petersburg tom hailed the": [65535, 0], "in st petersburg tom hailed the romantic": [65535, 0], "st petersburg tom hailed the romantic outcast": [65535, 0], "petersburg tom hailed the romantic outcast hello": [65535, 0], "tom hailed the romantic outcast hello huckleberry": [65535, 0], "hailed the romantic outcast hello huckleberry hello": [65535, 0], "the romantic outcast hello huckleberry hello yourself": [65535, 0], "romantic outcast hello huckleberry hello yourself and": [65535, 0], "outcast hello huckleberry hello yourself and see": [65535, 0], "hello huckleberry hello yourself and see how": [65535, 0], "huckleberry hello yourself and see how you": [65535, 0], "hello yourself and see how you like": [65535, 0], "yourself and see how you like it": [65535, 0], "and see how you like it what's": [65535, 0], "see how you like it what's that": [65535, 0], "how you like it what's that you": [65535, 0], "you like it what's that you got": [65535, 0], "like it what's that you got dead": [65535, 0], "it what's that you got dead cat": [65535, 0], "what's that you got dead cat lemme": [65535, 0], "that you got dead cat lemme see": [65535, 0], "you got dead cat lemme see him": [65535, 0], "got dead cat lemme see him huck": [65535, 0], "dead cat lemme see him huck my": [65535, 0], "cat lemme see him huck my he's": [65535, 0], "lemme see him huck my he's pretty": [65535, 0], "see him huck my he's pretty stiff": [65535, 0], "him huck my he's pretty stiff where'd": [65535, 0], "huck my he's pretty stiff where'd you": [65535, 0], "my he's pretty stiff where'd you get": [65535, 0], "he's pretty stiff where'd you get him": [65535, 0], "pretty stiff where'd you get him bought": [65535, 0], "stiff where'd you get him bought him": [65535, 0], "where'd you get him bought him off'n": [65535, 0], "you get him bought him off'n a": [65535, 0], "get him bought him off'n a boy": [65535, 0], "him bought him off'n a boy what": [65535, 0], "bought him off'n a boy what did": [65535, 0], "him off'n a boy what did you": [65535, 0], "off'n a boy what did you give": [65535, 0], "a boy what did you give i": [65535, 0], "boy what did you give i give": [65535, 0], "what did you give i give a": [65535, 0], "did you give i give a blue": [65535, 0], "you give i give a blue ticket": [65535, 0], "give i give a blue ticket and": [65535, 0], "i give a blue ticket and a": [65535, 0], "give a blue ticket and a bladder": [65535, 0], "a blue ticket and a bladder that": [65535, 0], "blue ticket and a bladder that i": [65535, 0], "ticket and a bladder that i got": [65535, 0], "and a bladder that i got at": [65535, 0], "a bladder that i got at the": [65535, 0], "bladder that i got at the slaughter": [65535, 0], "that i got at the slaughter house": [65535, 0], "i got at the slaughter house where'd": [65535, 0], "got at the slaughter house where'd you": [65535, 0], "at the slaughter house where'd you get": [65535, 0], "the slaughter house where'd you get the": [65535, 0], "slaughter house where'd you get the blue": [65535, 0], "house where'd you get the blue ticket": [65535, 0], "where'd you get the blue ticket bought": [65535, 0], "you get the blue ticket bought it": [65535, 0], "get the blue ticket bought it off'n": [65535, 0], "the blue ticket bought it off'n ben": [65535, 0], "blue ticket bought it off'n ben rogers": [65535, 0], "ticket bought it off'n ben rogers two": [65535, 0], "bought it off'n ben rogers two weeks": [65535, 0], "it off'n ben rogers two weeks ago": [65535, 0], "off'n ben rogers two weeks ago for": [65535, 0], "ben rogers two weeks ago for a": [65535, 0], "rogers two weeks ago for a hoop": [65535, 0], "two weeks ago for a hoop stick": [65535, 0], "weeks ago for a hoop stick say": [65535, 0], "ago for a hoop stick say what": [65535, 0], "for a hoop stick say what is": [65535, 0], "a hoop stick say what is dead": [65535, 0], "hoop stick say what is dead cats": [65535, 0], "stick say what is dead cats good": [65535, 0], "say what is dead cats good for": [65535, 0], "what is dead cats good for huck": [65535, 0], "is dead cats good for huck good": [65535, 0], "dead cats good for huck good for": [65535, 0], "cats good for huck good for cure": [65535, 0], "good for huck good for cure warts": [65535, 0], "for huck good for cure warts with": [65535, 0], "huck good for cure warts with no": [65535, 0], "good for cure warts with no is": [65535, 0], "for cure warts with no is that": [65535, 0], "cure warts with no is that so": [65535, 0], "warts with no is that so i": [65535, 0], "with no is that so i know": [65535, 0], "no is that so i know something": [65535, 0], "is that so i know something that's": [65535, 0], "that so i know something that's better": [65535, 0], "so i know something that's better i": [65535, 0], "i know something that's better i bet": [65535, 0], "know something that's better i bet you": [65535, 0], "something that's better i bet you don't": [65535, 0], "that's better i bet you don't what": [65535, 0], "better i bet you don't what is": [65535, 0], "i bet you don't what is it": [65535, 0], "bet you don't what is it why": [65535, 0], "you don't what is it why spunk": [65535, 0], "don't what is it why spunk water": [65535, 0], "what is it why spunk water spunk": [65535, 0], "is it why spunk water spunk water": [65535, 0], "it why spunk water spunk water i": [65535, 0], "why spunk water spunk water i wouldn't": [65535, 0], "spunk water spunk water i wouldn't give": [65535, 0], "water spunk water i wouldn't give a": [65535, 0], "spunk water i wouldn't give a dern": [65535, 0], "water i wouldn't give a dern for": [65535, 0], "i wouldn't give a dern for spunk": [65535, 0], "wouldn't give a dern for spunk water": [65535, 0], "give a dern for spunk water you": [65535, 0], "a dern for spunk water you wouldn't": [65535, 0], "dern for spunk water you wouldn't wouldn't": [65535, 0], "for spunk water you wouldn't wouldn't you": [65535, 0], "spunk water you wouldn't wouldn't you d'you": [65535, 0], "water you wouldn't wouldn't you d'you ever": [65535, 0], "you wouldn't wouldn't you d'you ever try": [65535, 0], "wouldn't wouldn't you d'you ever try it": [65535, 0], "wouldn't you d'you ever try it no": [65535, 0], "you d'you ever try it no i": [65535, 0], "d'you ever try it no i hain't": [65535, 0], "ever try it no i hain't but": [65535, 0], "try it no i hain't but bob": [65535, 0], "it no i hain't but bob tanner": [65535, 0], "no i hain't but bob tanner did": [65535, 0], "i hain't but bob tanner did who": [65535, 0], "hain't but bob tanner did who told": [65535, 0], "but bob tanner did who told you": [65535, 0], "bob tanner did who told you so": [65535, 0], "tanner did who told you so why": [65535, 0], "did who told you so why he": [65535, 0], "who told you so why he told": [65535, 0], "told you so why he told jeff": [65535, 0], "you so why he told jeff thatcher": [65535, 0], "so why he told jeff thatcher and": [65535, 0], "why he told jeff thatcher and jeff": [65535, 0], "he told jeff thatcher and jeff told": [65535, 0], "told jeff thatcher and jeff told johnny": [65535, 0], "jeff thatcher and jeff told johnny baker": [65535, 0], "thatcher and jeff told johnny baker and": [65535, 0], "and jeff told johnny baker and johnny": [65535, 0], "jeff told johnny baker and johnny told": [65535, 0], "told johnny baker and johnny told jim": [65535, 0], "johnny baker and johnny told jim hollis": [65535, 0], "baker and johnny told jim hollis and": [65535, 0], "and johnny told jim hollis and jim": [65535, 0], "johnny told jim hollis and jim told": [65535, 0], "told jim hollis and jim told ben": [65535, 0], "jim hollis and jim told ben rogers": [65535, 0], "hollis and jim told ben rogers and": [65535, 0], "and jim told ben rogers and ben": [65535, 0], "jim told ben rogers and ben told": [65535, 0], "told ben rogers and ben told a": [65535, 0], "ben rogers and ben told a nigger": [65535, 0], "rogers and ben told a nigger and": [65535, 0], "and ben told a nigger and the": [65535, 0], "ben told a nigger and the nigger": [65535, 0], "told a nigger and the nigger told": [65535, 0], "a nigger and the nigger told me": [65535, 0], "nigger and the nigger told me there": [65535, 0], "and the nigger told me there now": [65535, 0], "the nigger told me there now well": [65535, 0], "nigger told me there now well what": [65535, 0], "told me there now well what of": [65535, 0], "me there now well what of it": [65535, 0], "there now well what of it they'll": [65535, 0], "now well what of it they'll all": [65535, 0], "well what of it they'll all lie": [65535, 0], "what of it they'll all lie leastways": [65535, 0], "of it they'll all lie leastways all": [65535, 0], "it they'll all lie leastways all but": [65535, 0], "they'll all lie leastways all but the": [65535, 0], "all lie leastways all but the nigger": [65535, 0], "lie leastways all but the nigger i": [65535, 0], "leastways all but the nigger i don't": [65535, 0], "all but the nigger i don't know": [65535, 0], "but the nigger i don't know him": [65535, 0], "the nigger i don't know him but": [65535, 0], "nigger i don't know him but i": [65535, 0], "i don't know him but i never": [65535, 0], "don't know him but i never see": [65535, 0], "know him but i never see a": [65535, 0], "him but i never see a nigger": [65535, 0], "but i never see a nigger that": [65535, 0], "i never see a nigger that wouldn't": [65535, 0], "never see a nigger that wouldn't lie": [65535, 0], "see a nigger that wouldn't lie shucks": [65535, 0], "a nigger that wouldn't lie shucks now": [65535, 0], "nigger that wouldn't lie shucks now you": [65535, 0], "that wouldn't lie shucks now you tell": [65535, 0], "wouldn't lie shucks now you tell me": [65535, 0], "lie shucks now you tell me how": [65535, 0], "shucks now you tell me how bob": [65535, 0], "now you tell me how bob tanner": [65535, 0], "you tell me how bob tanner done": [65535, 0], "tell me how bob tanner done it": [65535, 0], "me how bob tanner done it huck": [65535, 0], "how bob tanner done it huck why": [65535, 0], "bob tanner done it huck why he": [65535, 0], "tanner done it huck why he took": [65535, 0], "done it huck why he took and": [65535, 0], "it huck why he took and dipped": [65535, 0], "huck why he took and dipped his": [65535, 0], "why he took and dipped his hand": [65535, 0], "he took and dipped his hand in": [65535, 0], "took and dipped his hand in a": [65535, 0], "and dipped his hand in a rotten": [65535, 0], "dipped his hand in a rotten stump": [65535, 0], "his hand in a rotten stump where": [65535, 0], "hand in a rotten stump where the": [65535, 0], "in a rotten stump where the rain": [65535, 0], "a rotten stump where the rain water": [65535, 0], "rotten stump where the rain water was": [65535, 0], "stump where the rain water was in": [65535, 0], "where the rain water was in the": [65535, 0], "the rain water was in the daytime": [65535, 0], "rain water was in the daytime certainly": [65535, 0], "water was in the daytime certainly with": [65535, 0], "was in the daytime certainly with his": [65535, 0], "in the daytime certainly with his face": [65535, 0], "the daytime certainly with his face to": [65535, 0], "daytime certainly with his face to the": [65535, 0], "certainly with his face to the stump": [65535, 0], "with his face to the stump yes": [65535, 0], "his face to the stump yes least": [65535, 0], "face to the stump yes least i": [65535, 0], "to the stump yes least i reckon": [65535, 0], "the stump yes least i reckon so": [65535, 0], "stump yes least i reckon so did": [65535, 0], "yes least i reckon so did he": [65535, 0], "least i reckon so did he say": [65535, 0], "i reckon so did he say anything": [65535, 0], "reckon so did he say anything i": [65535, 0], "so did he say anything i don't": [65535, 0], "did he say anything i don't reckon": [65535, 0], "he say anything i don't reckon he": [65535, 0], "say anything i don't reckon he did": [65535, 0], "anything i don't reckon he did i": [65535, 0], "i don't reckon he did i don't": [65535, 0], "don't reckon he did i don't know": [65535, 0], "reckon he did i don't know aha": [65535, 0], "he did i don't know aha talk": [65535, 0], "did i don't know aha talk about": [65535, 0], "i don't know aha talk about trying": [65535, 0], "don't know aha talk about trying to": [65535, 0], "know aha talk about trying to cure": [65535, 0], "aha talk about trying to cure warts": [65535, 0], "talk about trying to cure warts with": [65535, 0], "about trying to cure warts with spunk": [65535, 0], "trying to cure warts with spunk water": [65535, 0], "to cure warts with spunk water such": [65535, 0], "cure warts with spunk water such a": [65535, 0], "warts with spunk water such a blame": [65535, 0], "with spunk water such a blame fool": [65535, 0], "spunk water such a blame fool way": [65535, 0], "water such a blame fool way as": [65535, 0], "such a blame fool way as that": [65535, 0], "a blame fool way as that why": [65535, 0], "blame fool way as that why that": [65535, 0], "fool way as that why that ain't": [65535, 0], "way as that why that ain't a": [65535, 0], "as that why that ain't a going": [65535, 0], "that why that ain't a going to": [65535, 0], "why that ain't a going to do": [65535, 0], "that ain't a going to do any": [65535, 0], "ain't a going to do any good": [65535, 0], "a going to do any good you": [65535, 0], "going to do any good you got": [65535, 0], "to do any good you got to": [65535, 0], "do any good you got to go": [65535, 0], "any good you got to go all": [65535, 0], "good you got to go all by": [65535, 0], "you got to go all by yourself": [65535, 0], "got to go all by yourself to": [65535, 0], "to go all by yourself to the": [65535, 0], "go all by yourself to the middle": [65535, 0], "all by yourself to the middle of": [65535, 0], "by yourself to the middle of the": [65535, 0], "yourself to the middle of the woods": [65535, 0], "to the middle of the woods where": [65535, 0], "the middle of the woods where you": [65535, 0], "middle of the woods where you know": [65535, 0], "of the woods where you know there's": [65535, 0], "the woods where you know there's a": [65535, 0], "woods where you know there's a spunk": [65535, 0], "where you know there's a spunk water": [65535, 0], "you know there's a spunk water stump": [65535, 0], "know there's a spunk water stump and": [65535, 0], "there's a spunk water stump and just": [65535, 0], "a spunk water stump and just as": [65535, 0], "spunk water stump and just as it's": [65535, 0], "water stump and just as it's midnight": [65535, 0], "stump and just as it's midnight you": [65535, 0], "and just as it's midnight you back": [65535, 0], "just as it's midnight you back up": [65535, 0], "as it's midnight you back up against": [65535, 0], "it's midnight you back up against the": [65535, 0], "midnight you back up against the stump": [65535, 0], "you back up against the stump and": [65535, 0], "back up against the stump and jam": [65535, 0], "up against the stump and jam your": [65535, 0], "against the stump and jam your hand": [65535, 0], "the stump and jam your hand in": [65535, 0], "stump and jam your hand in and": [65535, 0], "and jam your hand in and say": [65535, 0], "jam your hand in and say 'barley": [65535, 0], "your hand in and say 'barley corn": [65535, 0], "hand in and say 'barley corn barley": [65535, 0], "in and say 'barley corn barley corn": [65535, 0], "and say 'barley corn barley corn injun": [65535, 0], "say 'barley corn barley corn injun meal": [65535, 0], "'barley corn barley corn injun meal shorts": [65535, 0], "corn barley corn injun meal shorts spunk": [65535, 0], "barley corn injun meal shorts spunk water": [65535, 0], "corn injun meal shorts spunk water spunk": [65535, 0], "injun meal shorts spunk water spunk water": [65535, 0], "meal shorts spunk water spunk water swaller": [65535, 0], "shorts spunk water spunk water swaller these": [65535, 0], "spunk water spunk water swaller these warts": [65535, 0], "water spunk water swaller these warts '": [65535, 0], "spunk water swaller these warts ' and": [65535, 0], "water swaller these warts ' and then": [65535, 0], "swaller these warts ' and then walk": [65535, 0], "these warts ' and then walk away": [65535, 0], "warts ' and then walk away quick": [65535, 0], "' and then walk away quick eleven": [65535, 0], "and then walk away quick eleven steps": [65535, 0], "then walk away quick eleven steps with": [65535, 0], "walk away quick eleven steps with your": [65535, 0], "away quick eleven steps with your eyes": [65535, 0], "quick eleven steps with your eyes shut": [65535, 0], "eleven steps with your eyes shut and": [65535, 0], "steps with your eyes shut and then": [65535, 0], "with your eyes shut and then turn": [65535, 0], "your eyes shut and then turn around": [65535, 0], "eyes shut and then turn around three": [65535, 0], "shut and then turn around three times": [65535, 0], "and then turn around three times and": [65535, 0], "then turn around three times and walk": [65535, 0], "turn around three times and walk home": [65535, 0], "around three times and walk home without": [65535, 0], "three times and walk home without speaking": [65535, 0], "times and walk home without speaking to": [65535, 0], "and walk home without speaking to anybody": [65535, 0], "walk home without speaking to anybody because": [65535, 0], "home without speaking to anybody because if": [65535, 0], "without speaking to anybody because if you": [65535, 0], "speaking to anybody because if you speak": [65535, 0], "to anybody because if you speak the": [65535, 0], "anybody because if you speak the charm's": [65535, 0], "because if you speak the charm's busted": [65535, 0], "if you speak the charm's busted well": [65535, 0], "you speak the charm's busted well that": [65535, 0], "speak the charm's busted well that sounds": [65535, 0], "the charm's busted well that sounds like": [65535, 0], "charm's busted well that sounds like a": [65535, 0], "busted well that sounds like a good": [65535, 0], "well that sounds like a good way": [65535, 0], "that sounds like a good way but": [65535, 0], "sounds like a good way but that": [65535, 0], "like a good way but that ain't": [65535, 0], "a good way but that ain't the": [65535, 0], "good way but that ain't the way": [65535, 0], "way but that ain't the way bob": [65535, 0], "but that ain't the way bob tanner": [65535, 0], "that ain't the way bob tanner done": [65535, 0], "ain't the way bob tanner done no": [65535, 0], "the way bob tanner done no sir": [65535, 0], "way bob tanner done no sir you": [65535, 0], "bob tanner done no sir you can": [65535, 0], "tanner done no sir you can bet": [65535, 0], "done no sir you can bet he": [65535, 0], "no sir you can bet he didn't": [65535, 0], "sir you can bet he didn't becuz": [65535, 0], "you can bet he didn't becuz he's": [65535, 0], "can bet he didn't becuz he's the": [65535, 0], "bet he didn't becuz he's the wartiest": [65535, 0], "he didn't becuz he's the wartiest boy": [65535, 0], "didn't becuz he's the wartiest boy in": [65535, 0], "becuz he's the wartiest boy in this": [65535, 0], "he's the wartiest boy in this town": [65535, 0], "the wartiest boy in this town and": [65535, 0], "wartiest boy in this town and he": [65535, 0], "boy in this town and he wouldn't": [65535, 0], "in this town and he wouldn't have": [65535, 0], "this town and he wouldn't have a": [65535, 0], "town and he wouldn't have a wart": [65535, 0], "and he wouldn't have a wart on": [65535, 0], "he wouldn't have a wart on him": [65535, 0], "wouldn't have a wart on him if": [65535, 0], "have a wart on him if he'd": [65535, 0], "a wart on him if he'd knowed": [65535, 0], "wart on him if he'd knowed how": [65535, 0], "on him if he'd knowed how to": [65535, 0], "him if he'd knowed how to work": [65535, 0], "if he'd knowed how to work spunk": [65535, 0], "he'd knowed how to work spunk water": [65535, 0], "knowed how to work spunk water i've": [65535, 0], "how to work spunk water i've took": [65535, 0], "to work spunk water i've took off": [65535, 0], "work spunk water i've took off thousands": [65535, 0], "spunk water i've took off thousands of": [65535, 0], "water i've took off thousands of warts": [65535, 0], "i've took off thousands of warts off": [65535, 0], "took off thousands of warts off of": [65535, 0], "off thousands of warts off of my": [65535, 0], "thousands of warts off of my hands": [65535, 0], "of warts off of my hands that": [65535, 0], "warts off of my hands that way": [65535, 0], "off of my hands that way huck": [65535, 0], "of my hands that way huck i": [65535, 0], "my hands that way huck i play": [65535, 0], "hands that way huck i play with": [65535, 0], "that way huck i play with frogs": [65535, 0], "way huck i play with frogs so": [65535, 0], "huck i play with frogs so much": [65535, 0], "i play with frogs so much that": [65535, 0], "play with frogs so much that i've": [65535, 0], "with frogs so much that i've always": [65535, 0], "frogs so much that i've always got": [65535, 0], "so much that i've always got considerable": [65535, 0], "much that i've always got considerable many": [65535, 0], "that i've always got considerable many warts": [65535, 0], "i've always got considerable many warts sometimes": [65535, 0], "always got considerable many warts sometimes i": [65535, 0], "got considerable many warts sometimes i take": [65535, 0], "considerable many warts sometimes i take 'em": [65535, 0], "many warts sometimes i take 'em off": [65535, 0], "warts sometimes i take 'em off with": [65535, 0], "sometimes i take 'em off with a": [65535, 0], "i take 'em off with a bean": [65535, 0], "take 'em off with a bean yes": [65535, 0], "'em off with a bean yes bean's": [65535, 0], "off with a bean yes bean's good": [65535, 0], "with a bean yes bean's good i've": [65535, 0], "a bean yes bean's good i've done": [65535, 0], "bean yes bean's good i've done that": [65535, 0], "yes bean's good i've done that have": [65535, 0], "bean's good i've done that have you": [65535, 0], "good i've done that have you what's": [65535, 0], "i've done that have you what's your": [65535, 0], "done that have you what's your way": [65535, 0], "that have you what's your way you": [65535, 0], "have you what's your way you take": [65535, 0], "you what's your way you take and": [65535, 0], "what's your way you take and split": [65535, 0], "your way you take and split the": [65535, 0], "way you take and split the bean": [65535, 0], "you take and split the bean and": [65535, 0], "take and split the bean and cut": [65535, 0], "and split the bean and cut the": [65535, 0], "split the bean and cut the wart": [65535, 0], "the bean and cut the wart so": [65535, 0], "bean and cut the wart so as": [65535, 0], "and cut the wart so as to": [65535, 0], "cut the wart so as to get": [65535, 0], "the wart so as to get some": [65535, 0], "wart so as to get some blood": [65535, 0], "so as to get some blood and": [65535, 0], "as to get some blood and then": [65535, 0], "to get some blood and then you": [65535, 0], "get some blood and then you put": [65535, 0], "some blood and then you put the": [65535, 0], "blood and then you put the blood": [65535, 0], "and then you put the blood on": [65535, 0], "then you put the blood on one": [65535, 0], "you put the blood on one piece": [65535, 0], "put the blood on one piece of": [65535, 0], "the blood on one piece of the": [65535, 0], "blood on one piece of the bean": [65535, 0], "on one piece of the bean and": [65535, 0], "one piece of the bean and take": [65535, 0], "piece of the bean and take and": [65535, 0], "of the bean and take and dig": [65535, 0], "the bean and take and dig a": [65535, 0], "bean and take and dig a hole": [65535, 0], "and take and dig a hole and": [65535, 0], "take and dig a hole and bury": [65535, 0], "and dig a hole and bury it": [65535, 0], "dig a hole and bury it 'bout": [65535, 0], "a hole and bury it 'bout midnight": [65535, 0], "hole and bury it 'bout midnight at": [65535, 0], "and bury it 'bout midnight at the": [65535, 0], "bury it 'bout midnight at the crossroads": [65535, 0], "it 'bout midnight at the crossroads in": [65535, 0], "'bout midnight at the crossroads in the": [65535, 0], "midnight at the crossroads in the dark": [65535, 0], "at the crossroads in the dark of": [65535, 0], "the crossroads in the dark of the": [65535, 0], "crossroads in the dark of the moon": [65535, 0], "in the dark of the moon and": [65535, 0], "the dark of the moon and then": [65535, 0], "dark of the moon and then you": [65535, 0], "of the moon and then you burn": [65535, 0], "the moon and then you burn up": [65535, 0], "moon and then you burn up the": [65535, 0], "and then you burn up the rest": [65535, 0], "then you burn up the rest of": [65535, 0], "you burn up the rest of the": [65535, 0], "burn up the rest of the bean": [65535, 0], "up the rest of the bean you": [65535, 0], "the rest of the bean you see": [65535, 0], "rest of the bean you see that": [65535, 0], "of the bean you see that piece": [65535, 0], "the bean you see that piece that's": [65535, 0], "bean you see that piece that's got": [65535, 0], "you see that piece that's got the": [65535, 0], "see that piece that's got the blood": [65535, 0], "that piece that's got the blood on": [65535, 0], "piece that's got the blood on it": [65535, 0], "that's got the blood on it will": [65535, 0], "got the blood on it will keep": [65535, 0], "the blood on it will keep drawing": [65535, 0], "blood on it will keep drawing and": [65535, 0], "on it will keep drawing and drawing": [65535, 0], "it will keep drawing and drawing trying": [65535, 0], "will keep drawing and drawing trying to": [65535, 0], "keep drawing and drawing trying to fetch": [65535, 0], "drawing and drawing trying to fetch the": [65535, 0], "and drawing trying to fetch the other": [65535, 0], "drawing trying to fetch the other piece": [65535, 0], "trying to fetch the other piece to": [65535, 0], "to fetch the other piece to it": [65535, 0], "fetch the other piece to it and": [65535, 0], "the other piece to it and so": [65535, 0], "other piece to it and so that": [65535, 0], "piece to it and so that helps": [65535, 0], "to it and so that helps the": [65535, 0], "it and so that helps the blood": [65535, 0], "and so that helps the blood to": [65535, 0], "so that helps the blood to draw": [65535, 0], "that helps the blood to draw the": [65535, 0], "helps the blood to draw the wart": [65535, 0], "the blood to draw the wart and": [65535, 0], "blood to draw the wart and pretty": [65535, 0], "to draw the wart and pretty soon": [65535, 0], "draw the wart and pretty soon off": [65535, 0], "the wart and pretty soon off she": [65535, 0], "wart and pretty soon off she comes": [65535, 0], "and pretty soon off she comes yes": [65535, 0], "pretty soon off she comes yes that's": [65535, 0], "soon off she comes yes that's it": [65535, 0], "off she comes yes that's it huck": [65535, 0], "she comes yes that's it huck that's": [65535, 0], "comes yes that's it huck that's it": [65535, 0], "yes that's it huck that's it though": [65535, 0], "that's it huck that's it though when": [65535, 0], "it huck that's it though when you're": [65535, 0], "huck that's it though when you're burying": [65535, 0], "that's it though when you're burying it": [65535, 0], "it though when you're burying it if": [65535, 0], "though when you're burying it if you": [65535, 0], "when you're burying it if you say": [65535, 0], "you're burying it if you say 'down": [65535, 0], "burying it if you say 'down bean": [65535, 0], "it if you say 'down bean off": [65535, 0], "if you say 'down bean off wart": [65535, 0], "you say 'down bean off wart come": [65535, 0], "say 'down bean off wart come no": [65535, 0], "'down bean off wart come no more": [65535, 0], "bean off wart come no more to": [65535, 0], "off wart come no more to bother": [65535, 0], "wart come no more to bother me": [65535, 0], "come no more to bother me '": [65535, 0], "no more to bother me ' it's": [65535, 0], "more to bother me ' it's better": [65535, 0], "to bother me ' it's better that's": [65535, 0], "bother me ' it's better that's the": [65535, 0], "me ' it's better that's the way": [65535, 0], "' it's better that's the way joe": [65535, 0], "it's better that's the way joe harper": [65535, 0], "better that's the way joe harper does": [65535, 0], "that's the way joe harper does and": [65535, 0], "the way joe harper does and he's": [65535, 0], "way joe harper does and he's been": [65535, 0], "joe harper does and he's been nearly": [65535, 0], "harper does and he's been nearly to": [65535, 0], "does and he's been nearly to coonville": [65535, 0], "and he's been nearly to coonville and": [65535, 0], "he's been nearly to coonville and most": [65535, 0], "been nearly to coonville and most everywheres": [65535, 0], "nearly to coonville and most everywheres but": [65535, 0], "to coonville and most everywheres but say": [65535, 0], "coonville and most everywheres but say how": [65535, 0], "and most everywheres but say how do": [65535, 0], "most everywheres but say how do you": [65535, 0], "everywheres but say how do you cure": [65535, 0], "but say how do you cure 'em": [65535, 0], "say how do you cure 'em with": [65535, 0], "how do you cure 'em with dead": [65535, 0], "do you cure 'em with dead cats": [65535, 0], "you cure 'em with dead cats why": [65535, 0], "cure 'em with dead cats why you": [65535, 0], "'em with dead cats why you take": [65535, 0], "with dead cats why you take your": [65535, 0], "dead cats why you take your cat": [65535, 0], "cats why you take your cat and": [65535, 0], "why you take your cat and go": [65535, 0], "you take your cat and go and": [65535, 0], "take your cat and go and get": [65535, 0], "your cat and go and get in": [65535, 0], "cat and go and get in the": [65535, 0], "and go and get in the graveyard": [65535, 0], "go and get in the graveyard 'long": [65535, 0], "and get in the graveyard 'long about": [65535, 0], "get in the graveyard 'long about midnight": [65535, 0], "in the graveyard 'long about midnight when": [65535, 0], "the graveyard 'long about midnight when somebody": [65535, 0], "graveyard 'long about midnight when somebody that": [65535, 0], "'long about midnight when somebody that was": [65535, 0], "about midnight when somebody that was wicked": [65535, 0], "midnight when somebody that was wicked has": [65535, 0], "when somebody that was wicked has been": [65535, 0], "somebody that was wicked has been buried": [65535, 0], "that was wicked has been buried and": [65535, 0], "was wicked has been buried and when": [65535, 0], "wicked has been buried and when it's": [65535, 0], "has been buried and when it's midnight": [65535, 0], "been buried and when it's midnight a": [65535, 0], "buried and when it's midnight a devil": [65535, 0], "and when it's midnight a devil will": [65535, 0], "when it's midnight a devil will come": [65535, 0], "it's midnight a devil will come or": [65535, 0], "midnight a devil will come or maybe": [65535, 0], "a devil will come or maybe two": [65535, 0], "devil will come or maybe two or": [65535, 0], "will come or maybe two or three": [65535, 0], "come or maybe two or three but": [65535, 0], "or maybe two or three but you": [65535, 0], "maybe two or three but you can't": [65535, 0], "two or three but you can't see": [65535, 0], "or three but you can't see 'em": [65535, 0], "three but you can't see 'em you": [65535, 0], "but you can't see 'em you can": [65535, 0], "you can't see 'em you can only": [65535, 0], "can't see 'em you can only hear": [65535, 0], "see 'em you can only hear something": [65535, 0], "'em you can only hear something like": [65535, 0], "you can only hear something like the": [65535, 0], "can only hear something like the wind": [65535, 0], "only hear something like the wind or": [65535, 0], "hear something like the wind or maybe": [65535, 0], "something like the wind or maybe hear": [65535, 0], "like the wind or maybe hear 'em": [65535, 0], "the wind or maybe hear 'em talk": [65535, 0], "wind or maybe hear 'em talk and": [65535, 0], "or maybe hear 'em talk and when": [65535, 0], "maybe hear 'em talk and when they're": [65535, 0], "hear 'em talk and when they're taking": [65535, 0], "'em talk and when they're taking that": [65535, 0], "talk and when they're taking that feller": [65535, 0], "and when they're taking that feller away": [65535, 0], "when they're taking that feller away you": [65535, 0], "they're taking that feller away you heave": [65535, 0], "taking that feller away you heave your": [65535, 0], "that feller away you heave your cat": [65535, 0], "feller away you heave your cat after": [65535, 0], "away you heave your cat after 'em": [65535, 0], "you heave your cat after 'em and": [65535, 0], "heave your cat after 'em and say": [65535, 0], "your cat after 'em and say 'devil": [65535, 0], "cat after 'em and say 'devil follow": [65535, 0], "after 'em and say 'devil follow corpse": [65535, 0], "'em and say 'devil follow corpse cat": [65535, 0], "and say 'devil follow corpse cat follow": [65535, 0], "say 'devil follow corpse cat follow devil": [65535, 0], "'devil follow corpse cat follow devil warts": [65535, 0], "follow corpse cat follow devil warts follow": [65535, 0], "corpse cat follow devil warts follow cat": [65535, 0], "cat follow devil warts follow cat i'm": [65535, 0], "follow devil warts follow cat i'm done": [65535, 0], "devil warts follow cat i'm done with": [65535, 0], "warts follow cat i'm done with ye": [65535, 0], "follow cat i'm done with ye '": [65535, 0], "cat i'm done with ye ' that'll": [65535, 0], "i'm done with ye ' that'll fetch": [65535, 0], "done with ye ' that'll fetch any": [65535, 0], "with ye ' that'll fetch any wart": [65535, 0], "ye ' that'll fetch any wart sounds": [65535, 0], "' that'll fetch any wart sounds right": [65535, 0], "that'll fetch any wart sounds right d'you": [65535, 0], "fetch any wart sounds right d'you ever": [65535, 0], "any wart sounds right d'you ever try": [65535, 0], "wart sounds right d'you ever try it": [65535, 0], "sounds right d'you ever try it huck": [65535, 0], "right d'you ever try it huck no": [65535, 0], "d'you ever try it huck no but": [65535, 0], "ever try it huck no but old": [65535, 0], "try it huck no but old mother": [65535, 0], "it huck no but old mother hopkins": [65535, 0], "huck no but old mother hopkins told": [65535, 0], "no but old mother hopkins told me": [65535, 0], "but old mother hopkins told me well": [65535, 0], "old mother hopkins told me well i": [65535, 0], "mother hopkins told me well i reckon": [65535, 0], "hopkins told me well i reckon it's": [65535, 0], "told me well i reckon it's so": [65535, 0], "me well i reckon it's so then": [65535, 0], "well i reckon it's so then becuz": [65535, 0], "i reckon it's so then becuz they": [65535, 0], "reckon it's so then becuz they say": [65535, 0], "it's so then becuz they say she's": [65535, 0], "so then becuz they say she's a": [65535, 0], "then becuz they say she's a witch": [65535, 0], "becuz they say she's a witch say": [65535, 0], "they say she's a witch say why": [65535, 0], "say she's a witch say why tom": [65535, 0], "she's a witch say why tom i": [65535, 0], "a witch say why tom i know": [65535, 0], "witch say why tom i know she": [65535, 0], "say why tom i know she is": [65535, 0], "why tom i know she is she": [65535, 0], "tom i know she is she witched": [65535, 0], "i know she is she witched pap": [65535, 0], "know she is she witched pap pap": [65535, 0], "she is she witched pap pap says": [65535, 0], "is she witched pap pap says so": [65535, 0], "she witched pap pap says so his": [65535, 0], "witched pap pap says so his own": [65535, 0], "pap pap says so his own self": [65535, 0], "pap says so his own self he": [65535, 0], "says so his own self he come": [65535, 0], "so his own self he come along": [65535, 0], "his own self he come along one": [65535, 0], "own self he come along one day": [65535, 0], "self he come along one day and": [65535, 0], "he come along one day and he": [65535, 0], "come along one day and he see": [65535, 0], "along one day and he see she": [65535, 0], "one day and he see she was": [65535, 0], "day and he see she was a": [65535, 0], "and he see she was a witching": [65535, 0], "he see she was a witching him": [65535, 0], "see she was a witching him so": [65535, 0], "she was a witching him so he": [65535, 0], "was a witching him so he took": [65535, 0], "a witching him so he took up": [65535, 0], "witching him so he took up a": [65535, 0], "him so he took up a rock": [65535, 0], "so he took up a rock and": [65535, 0], "he took up a rock and if": [65535, 0], "took up a rock and if she": [65535, 0], "up a rock and if she hadn't": [65535, 0], "a rock and if she hadn't dodged": [65535, 0], "rock and if she hadn't dodged he'd": [65535, 0], "and if she hadn't dodged he'd a": [65535, 0], "if she hadn't dodged he'd a got": [65535, 0], "she hadn't dodged he'd a got her": [65535, 0], "hadn't dodged he'd a got her well": [65535, 0], "dodged he'd a got her well that": [65535, 0], "he'd a got her well that very": [65535, 0], "a got her well that very night": [65535, 0], "got her well that very night he": [65535, 0], "her well that very night he rolled": [65535, 0], "well that very night he rolled off'n": [65535, 0], "that very night he rolled off'n a": [65535, 0], "very night he rolled off'n a shed": [65535, 0], "night he rolled off'n a shed wher'": [65535, 0], "he rolled off'n a shed wher' he": [65535, 0], "rolled off'n a shed wher' he was": [65535, 0], "off'n a shed wher' he was a": [65535, 0], "a shed wher' he was a layin": [65535, 0], "shed wher' he was a layin drunk": [65535, 0], "wher' he was a layin drunk and": [65535, 0], "he was a layin drunk and broke": [65535, 0], "was a layin drunk and broke his": [65535, 0], "a layin drunk and broke his arm": [65535, 0], "layin drunk and broke his arm why": [65535, 0], "drunk and broke his arm why that's": [65535, 0], "and broke his arm why that's awful": [65535, 0], "broke his arm why that's awful how": [65535, 0], "his arm why that's awful how did": [65535, 0], "arm why that's awful how did he": [65535, 0], "why that's awful how did he know": [65535, 0], "that's awful how did he know she": [65535, 0], "awful how did he know she was": [65535, 0], "how did he know she was a": [65535, 0], "did he know she was a witching": [65535, 0], "he know she was a witching him": [65535, 0], "know she was a witching him lord": [65535, 0], "she was a witching him lord pap": [65535, 0], "was a witching him lord pap can": [65535, 0], "a witching him lord pap can tell": [65535, 0], "witching him lord pap can tell easy": [65535, 0], "him lord pap can tell easy pap": [65535, 0], "lord pap can tell easy pap says": [65535, 0], "pap can tell easy pap says when": [65535, 0], "can tell easy pap says when they": [65535, 0], "tell easy pap says when they keep": [65535, 0], "easy pap says when they keep looking": [65535, 0], "pap says when they keep looking at": [65535, 0], "says when they keep looking at you": [65535, 0], "when they keep looking at you right": [65535, 0], "they keep looking at you right stiddy": [65535, 0], "keep looking at you right stiddy they're": [65535, 0], "looking at you right stiddy they're a": [65535, 0], "at you right stiddy they're a witching": [65535, 0], "you right stiddy they're a witching you": [65535, 0], "right stiddy they're a witching you specially": [65535, 0], "stiddy they're a witching you specially if": [65535, 0], "they're a witching you specially if they": [65535, 0], "a witching you specially if they mumble": [65535, 0], "witching you specially if they mumble becuz": [65535, 0], "you specially if they mumble becuz when": [65535, 0], "specially if they mumble becuz when they": [65535, 0], "if they mumble becuz when they mumble": [65535, 0], "they mumble becuz when they mumble they're": [65535, 0], "mumble becuz when they mumble they're saying": [65535, 0], "becuz when they mumble they're saying the": [65535, 0], "when they mumble they're saying the lord's": [65535, 0], "they mumble they're saying the lord's prayer": [65535, 0], "mumble they're saying the lord's prayer backards": [65535, 0], "they're saying the lord's prayer backards say": [65535, 0], "saying the lord's prayer backards say hucky": [65535, 0], "the lord's prayer backards say hucky when": [65535, 0], "lord's prayer backards say hucky when you": [65535, 0], "prayer backards say hucky when you going": [65535, 0], "backards say hucky when you going to": [65535, 0], "say hucky when you going to try": [65535, 0], "hucky when you going to try the": [65535, 0], "when you going to try the cat": [65535, 0], "you going to try the cat to": [65535, 0], "going to try the cat to night": [65535, 0], "to try the cat to night i": [65535, 0], "try the cat to night i reckon": [65535, 0], "the cat to night i reckon they'll": [65535, 0], "cat to night i reckon they'll come": [65535, 0], "to night i reckon they'll come after": [65535, 0], "night i reckon they'll come after old": [65535, 0], "i reckon they'll come after old hoss": [65535, 0], "reckon they'll come after old hoss williams": [65535, 0], "they'll come after old hoss williams to": [65535, 0], "come after old hoss williams to night": [65535, 0], "after old hoss williams to night but": [65535, 0], "old hoss williams to night but they": [65535, 0], "hoss williams to night but they buried": [65535, 0], "williams to night but they buried him": [65535, 0], "to night but they buried him saturday": [65535, 0], "night but they buried him saturday didn't": [65535, 0], "but they buried him saturday didn't they": [65535, 0], "they buried him saturday didn't they get": [65535, 0], "buried him saturday didn't they get him": [65535, 0], "him saturday didn't they get him saturday": [65535, 0], "saturday didn't they get him saturday night": [65535, 0], "didn't they get him saturday night why": [65535, 0], "they get him saturday night why how": [65535, 0], "get him saturday night why how you": [65535, 0], "him saturday night why how you talk": [65535, 0], "saturday night why how you talk how": [65535, 0], "night why how you talk how could": [65535, 0], "why how you talk how could their": [65535, 0], "how you talk how could their charms": [65535, 0], "you talk how could their charms work": [65535, 0], "talk how could their charms work till": [65535, 0], "how could their charms work till midnight": [65535, 0], "could their charms work till midnight and": [65535, 0], "their charms work till midnight and then": [65535, 0], "charms work till midnight and then it's": [65535, 0], "work till midnight and then it's sunday": [65535, 0], "till midnight and then it's sunday devils": [65535, 0], "midnight and then it's sunday devils don't": [65535, 0], "and then it's sunday devils don't slosh": [65535, 0], "then it's sunday devils don't slosh around": [65535, 0], "it's sunday devils don't slosh around much": [65535, 0], "sunday devils don't slosh around much of": [65535, 0], "devils don't slosh around much of a": [65535, 0], "don't slosh around much of a sunday": [65535, 0], "slosh around much of a sunday i": [65535, 0], "around much of a sunday i don't": [65535, 0], "much of a sunday i don't reckon": [65535, 0], "of a sunday i don't reckon i": [65535, 0], "a sunday i don't reckon i never": [65535, 0], "sunday i don't reckon i never thought": [65535, 0], "i don't reckon i never thought of": [65535, 0], "don't reckon i never thought of that": [65535, 0], "reckon i never thought of that that's": [65535, 0], "i never thought of that that's so": [65535, 0], "never thought of that that's so lemme": [65535, 0], "thought of that that's so lemme go": [65535, 0], "of that that's so lemme go with": [65535, 0], "that that's so lemme go with you": [65535, 0], "that's so lemme go with you of": [65535, 0], "so lemme go with you of course": [65535, 0], "lemme go with you of course if": [65535, 0], "go with you of course if you": [65535, 0], "with you of course if you ain't": [65535, 0], "you of course if you ain't afeard": [65535, 0], "of course if you ain't afeard afeard": [65535, 0], "course if you ain't afeard afeard 'tain't": [65535, 0], "if you ain't afeard afeard 'tain't likely": [65535, 0], "you ain't afeard afeard 'tain't likely will": [65535, 0], "ain't afeard afeard 'tain't likely will you": [65535, 0], "afeard afeard 'tain't likely will you meow": [65535, 0], "afeard 'tain't likely will you meow yes": [65535, 0], "'tain't likely will you meow yes and": [65535, 0], "likely will you meow yes and you": [65535, 0], "will you meow yes and you meow": [65535, 0], "you meow yes and you meow back": [65535, 0], "meow yes and you meow back if": [65535, 0], "yes and you meow back if you": [65535, 0], "and you meow back if you get": [65535, 0], "you meow back if you get a": [65535, 0], "meow back if you get a chance": [65535, 0], "back if you get a chance last": [65535, 0], "if you get a chance last time": [65535, 0], "you get a chance last time you": [65535, 0], "get a chance last time you kep'": [65535, 0], "a chance last time you kep' me": [65535, 0], "chance last time you kep' me a": [65535, 0], "last time you kep' me a meowing": [65535, 0], "time you kep' me a meowing around": [65535, 0], "you kep' me a meowing around till": [65535, 0], "kep' me a meowing around till old": [65535, 0], "me a meowing around till old hays": [65535, 0], "a meowing around till old hays went": [65535, 0], "meowing around till old hays went to": [65535, 0], "around till old hays went to throwing": [65535, 0], "till old hays went to throwing rocks": [65535, 0], "old hays went to throwing rocks at": [65535, 0], "hays went to throwing rocks at me": [65535, 0], "went to throwing rocks at me and": [65535, 0], "to throwing rocks at me and says": [65535, 0], "throwing rocks at me and says 'dern": [65535, 0], "rocks at me and says 'dern that": [65535, 0], "at me and says 'dern that cat": [65535, 0], "me and says 'dern that cat '": [65535, 0], "and says 'dern that cat ' and": [65535, 0], "says 'dern that cat ' and so": [65535, 0], "'dern that cat ' and so i": [65535, 0], "that cat ' and so i hove": [65535, 0], "cat ' and so i hove a": [65535, 0], "' and so i hove a brick": [65535, 0], "and so i hove a brick through": [65535, 0], "so i hove a brick through his": [65535, 0], "i hove a brick through his window": [65535, 0], "hove a brick through his window but": [65535, 0], "a brick through his window but don't": [65535, 0], "brick through his window but don't you": [65535, 0], "through his window but don't you tell": [65535, 0], "his window but don't you tell i": [65535, 0], "window but don't you tell i won't": [65535, 0], "but don't you tell i won't i": [65535, 0], "don't you tell i won't i couldn't": [65535, 0], "you tell i won't i couldn't meow": [65535, 0], "tell i won't i couldn't meow that": [65535, 0], "i won't i couldn't meow that night": [65535, 0], "won't i couldn't meow that night becuz": [65535, 0], "i couldn't meow that night becuz auntie": [65535, 0], "couldn't meow that night becuz auntie was": [65535, 0], "meow that night becuz auntie was watching": [65535, 0], "that night becuz auntie was watching me": [65535, 0], "night becuz auntie was watching me but": [65535, 0], "becuz auntie was watching me but i'll": [65535, 0], "auntie was watching me but i'll meow": [65535, 0], "was watching me but i'll meow this": [65535, 0], "watching me but i'll meow this time": [65535, 0], "me but i'll meow this time say": [65535, 0], "but i'll meow this time say what's": [65535, 0], "i'll meow this time say what's that": [65535, 0], "meow this time say what's that nothing": [65535, 0], "this time say what's that nothing but": [65535, 0], "time say what's that nothing but a": [65535, 0], "say what's that nothing but a tick": [65535, 0], "what's that nothing but a tick where'd": [65535, 0], "that nothing but a tick where'd you": [65535, 0], "nothing but a tick where'd you get": [65535, 0], "but a tick where'd you get him": [65535, 0], "a tick where'd you get him out": [65535, 0], "tick where'd you get him out in": [65535, 0], "where'd you get him out in the": [65535, 0], "you get him out in the woods": [65535, 0], "get him out in the woods what'll": [65535, 0], "him out in the woods what'll you": [65535, 0], "out in the woods what'll you take": [65535, 0], "in the woods what'll you take for": [65535, 0], "the woods what'll you take for him": [65535, 0], "woods what'll you take for him i": [65535, 0], "what'll you take for him i don't": [65535, 0], "you take for him i don't know": [65535, 0], "take for him i don't know i": [65535, 0], "for him i don't know i don't": [65535, 0], "him i don't know i don't want": [65535, 0], "i don't know i don't want to": [65535, 0], "don't know i don't want to sell": [65535, 0], "know i don't want to sell him": [65535, 0], "i don't want to sell him all": [65535, 0], "don't want to sell him all right": [65535, 0], "want to sell him all right it's": [65535, 0], "to sell him all right it's a": [65535, 0], "sell him all right it's a mighty": [65535, 0], "him all right it's a mighty small": [65535, 0], "all right it's a mighty small tick": [65535, 0], "right it's a mighty small tick anyway": [65535, 0], "it's a mighty small tick anyway oh": [65535, 0], "a mighty small tick anyway oh anybody": [65535, 0], "mighty small tick anyway oh anybody can": [65535, 0], "small tick anyway oh anybody can run": [65535, 0], "tick anyway oh anybody can run a": [65535, 0], "anyway oh anybody can run a tick": [65535, 0], "oh anybody can run a tick down": [65535, 0], "anybody can run a tick down that": [65535, 0], "can run a tick down that don't": [65535, 0], "run a tick down that don't belong": [65535, 0], "a tick down that don't belong to": [65535, 0], "tick down that don't belong to them": [65535, 0], "down that don't belong to them i'm": [65535, 0], "that don't belong to them i'm satisfied": [65535, 0], "don't belong to them i'm satisfied with": [65535, 0], "belong to them i'm satisfied with it": [65535, 0], "to them i'm satisfied with it it's": [65535, 0], "them i'm satisfied with it it's a": [65535, 0], "i'm satisfied with it it's a good": [65535, 0], "satisfied with it it's a good enough": [65535, 0], "with it it's a good enough tick": [65535, 0], "it it's a good enough tick for": [65535, 0], "it's a good enough tick for me": [65535, 0], "a good enough tick for me sho": [65535, 0], "good enough tick for me sho there's": [65535, 0], "enough tick for me sho there's ticks": [65535, 0], "tick for me sho there's ticks a": [65535, 0], "for me sho there's ticks a plenty": [65535, 0], "me sho there's ticks a plenty i": [65535, 0], "sho there's ticks a plenty i could": [65535, 0], "there's ticks a plenty i could have": [65535, 0], "ticks a plenty i could have a": [65535, 0], "a plenty i could have a thousand": [65535, 0], "plenty i could have a thousand of": [65535, 0], "i could have a thousand of 'em": [65535, 0], "could have a thousand of 'em if": [65535, 0], "have a thousand of 'em if i": [65535, 0], "a thousand of 'em if i wanted": [65535, 0], "thousand of 'em if i wanted to": [65535, 0], "of 'em if i wanted to well": [65535, 0], "'em if i wanted to well why": [65535, 0], "if i wanted to well why don't": [65535, 0], "i wanted to well why don't you": [65535, 0], "wanted to well why don't you becuz": [65535, 0], "to well why don't you becuz you": [65535, 0], "well why don't you becuz you know": [65535, 0], "why don't you becuz you know mighty": [65535, 0], "don't you becuz you know mighty well": [65535, 0], "you becuz you know mighty well you": [65535, 0], "becuz you know mighty well you can't": [65535, 0], "you know mighty well you can't this": [65535, 0], "know mighty well you can't this is": [65535, 0], "mighty well you can't this is a": [65535, 0], "well you can't this is a pretty": [65535, 0], "you can't this is a pretty early": [65535, 0], "can't this is a pretty early tick": [65535, 0], "this is a pretty early tick i": [65535, 0], "is a pretty early tick i reckon": [65535, 0], "a pretty early tick i reckon it's": [65535, 0], "pretty early tick i reckon it's the": [65535, 0], "early tick i reckon it's the first": [65535, 0], "tick i reckon it's the first one": [65535, 0], "i reckon it's the first one i've": [65535, 0], "reckon it's the first one i've seen": [65535, 0], "it's the first one i've seen this": [65535, 0], "the first one i've seen this year": [65535, 0], "first one i've seen this year say": [65535, 0], "one i've seen this year say huck": [65535, 0], "i've seen this year say huck i'll": [65535, 0], "seen this year say huck i'll give": [65535, 0], "this year say huck i'll give you": [65535, 0], "year say huck i'll give you my": [65535, 0], "say huck i'll give you my tooth": [65535, 0], "huck i'll give you my tooth for": [65535, 0], "i'll give you my tooth for him": [65535, 0], "give you my tooth for him less": [65535, 0], "you my tooth for him less see": [65535, 0], "my tooth for him less see it": [65535, 0], "tooth for him less see it tom": [65535, 0], "for him less see it tom got": [65535, 0], "him less see it tom got out": [65535, 0], "less see it tom got out a": [65535, 0], "see it tom got out a bit": [65535, 0], "it tom got out a bit of": [65535, 0], "tom got out a bit of paper": [65535, 0], "got out a bit of paper and": [65535, 0], "out a bit of paper and carefully": [65535, 0], "a bit of paper and carefully unrolled": [65535, 0], "bit of paper and carefully unrolled it": [65535, 0], "of paper and carefully unrolled it huckleberry": [65535, 0], "paper and carefully unrolled it huckleberry viewed": [65535, 0], "and carefully unrolled it huckleberry viewed it": [65535, 0], "carefully unrolled it huckleberry viewed it wistfully": [65535, 0], "unrolled it huckleberry viewed it wistfully the": [65535, 0], "it huckleberry viewed it wistfully the temptation": [65535, 0], "huckleberry viewed it wistfully the temptation was": [65535, 0], "viewed it wistfully the temptation was very": [65535, 0], "it wistfully the temptation was very strong": [65535, 0], "wistfully the temptation was very strong at": [65535, 0], "the temptation was very strong at last": [65535, 0], "temptation was very strong at last he": [65535, 0], "was very strong at last he said": [65535, 0], "very strong at last he said is": [65535, 0], "strong at last he said is it": [65535, 0], "at last he said is it genuwyne": [65535, 0], "last he said is it genuwyne tom": [65535, 0], "he said is it genuwyne tom lifted": [65535, 0], "said is it genuwyne tom lifted his": [65535, 0], "is it genuwyne tom lifted his lip": [65535, 0], "it genuwyne tom lifted his lip and": [65535, 0], "genuwyne tom lifted his lip and showed": [65535, 0], "tom lifted his lip and showed the": [65535, 0], "lifted his lip and showed the vacancy": [65535, 0], "his lip and showed the vacancy well": [65535, 0], "lip and showed the vacancy well all": [65535, 0], "and showed the vacancy well all right": [65535, 0], "showed the vacancy well all right said": [65535, 0], "the vacancy well all right said huckleberry": [65535, 0], "vacancy well all right said huckleberry it's": [65535, 0], "well all right said huckleberry it's a": [65535, 0], "all right said huckleberry it's a trade": [65535, 0], "right said huckleberry it's a trade tom": [65535, 0], "said huckleberry it's a trade tom enclosed": [65535, 0], "huckleberry it's a trade tom enclosed the": [65535, 0], "it's a trade tom enclosed the tick": [65535, 0], "a trade tom enclosed the tick in": [65535, 0], "trade tom enclosed the tick in the": [65535, 0], "tom enclosed the tick in the percussion": [65535, 0], "enclosed the tick in the percussion cap": [65535, 0], "the tick in the percussion cap box": [65535, 0], "tick in the percussion cap box that": [65535, 0], "in the percussion cap box that had": [65535, 0], "the percussion cap box that had lately": [65535, 0], "percussion cap box that had lately been": [65535, 0], "cap box that had lately been the": [65535, 0], "box that had lately been the pinchbug's": [65535, 0], "that had lately been the pinchbug's prison": [65535, 0], "had lately been the pinchbug's prison and": [65535, 0], "lately been the pinchbug's prison and the": [65535, 0], "been the pinchbug's prison and the boys": [65535, 0], "the pinchbug's prison and the boys separated": [65535, 0], "pinchbug's prison and the boys separated each": [65535, 0], "prison and the boys separated each feeling": [65535, 0], "and the boys separated each feeling wealthier": [65535, 0], "the boys separated each feeling wealthier than": [65535, 0], "boys separated each feeling wealthier than before": [65535, 0], "separated each feeling wealthier than before when": [65535, 0], "each feeling wealthier than before when tom": [65535, 0], "feeling wealthier than before when tom reached": [65535, 0], "wealthier than before when tom reached the": [65535, 0], "than before when tom reached the little": [65535, 0], "before when tom reached the little isolated": [65535, 0], "when tom reached the little isolated frame": [65535, 0], "tom reached the little isolated frame schoolhouse": [65535, 0], "reached the little isolated frame schoolhouse he": [65535, 0], "the little isolated frame schoolhouse he strode": [65535, 0], "little isolated frame schoolhouse he strode in": [65535, 0], "isolated frame schoolhouse he strode in briskly": [65535, 0], "frame schoolhouse he strode in briskly with": [65535, 0], "schoolhouse he strode in briskly with the": [65535, 0], "he strode in briskly with the manner": [65535, 0], "strode in briskly with the manner of": [65535, 0], "in briskly with the manner of one": [65535, 0], "briskly with the manner of one who": [65535, 0], "with the manner of one who had": [65535, 0], "the manner of one who had come": [65535, 0], "manner of one who had come with": [65535, 0], "of one who had come with all": [65535, 0], "one who had come with all honest": [65535, 0], "who had come with all honest speed": [65535, 0], "had come with all honest speed he": [65535, 0], "come with all honest speed he hung": [65535, 0], "with all honest speed he hung his": [65535, 0], "all honest speed he hung his hat": [65535, 0], "honest speed he hung his hat on": [65535, 0], "speed he hung his hat on a": [65535, 0], "he hung his hat on a peg": [65535, 0], "hung his hat on a peg and": [65535, 0], "his hat on a peg and flung": [65535, 0], "hat on a peg and flung himself": [65535, 0], "on a peg and flung himself into": [65535, 0], "a peg and flung himself into his": [65535, 0], "peg and flung himself into his seat": [65535, 0], "and flung himself into his seat with": [65535, 0], "flung himself into his seat with business": [65535, 0], "himself into his seat with business like": [65535, 0], "into his seat with business like alacrity": [65535, 0], "his seat with business like alacrity the": [65535, 0], "seat with business like alacrity the master": [65535, 0], "with business like alacrity the master throned": [65535, 0], "business like alacrity the master throned on": [65535, 0], "like alacrity the master throned on high": [65535, 0], "alacrity the master throned on high in": [65535, 0], "the master throned on high in his": [65535, 0], "master throned on high in his great": [65535, 0], "throned on high in his great splint": [65535, 0], "on high in his great splint bottom": [65535, 0], "high in his great splint bottom arm": [65535, 0], "in his great splint bottom arm chair": [65535, 0], "his great splint bottom arm chair was": [65535, 0], "great splint bottom arm chair was dozing": [65535, 0], "splint bottom arm chair was dozing lulled": [65535, 0], "bottom arm chair was dozing lulled by": [65535, 0], "arm chair was dozing lulled by the": [65535, 0], "chair was dozing lulled by the drowsy": [65535, 0], "was dozing lulled by the drowsy hum": [65535, 0], "dozing lulled by the drowsy hum of": [65535, 0], "lulled by the drowsy hum of study": [65535, 0], "by the drowsy hum of study the": [65535, 0], "the drowsy hum of study the interruption": [65535, 0], "drowsy hum of study the interruption roused": [65535, 0], "hum of study the interruption roused him": [65535, 0], "of study the interruption roused him thomas": [65535, 0], "study the interruption roused him thomas sawyer": [65535, 0], "the interruption roused him thomas sawyer tom": [65535, 0], "interruption roused him thomas sawyer tom knew": [65535, 0], "roused him thomas sawyer tom knew that": [65535, 0], "him thomas sawyer tom knew that when": [65535, 0], "thomas sawyer tom knew that when his": [65535, 0], "sawyer tom knew that when his name": [65535, 0], "tom knew that when his name was": [65535, 0], "knew that when his name was pronounced": [65535, 0], "that when his name was pronounced in": [65535, 0], "when his name was pronounced in full": [65535, 0], "his name was pronounced in full it": [65535, 0], "name was pronounced in full it meant": [65535, 0], "was pronounced in full it meant trouble": [65535, 0], "pronounced in full it meant trouble sir": [65535, 0], "in full it meant trouble sir come": [65535, 0], "full it meant trouble sir come up": [65535, 0], "it meant trouble sir come up here": [65535, 0], "meant trouble sir come up here now": [65535, 0], "trouble sir come up here now sir": [65535, 0], "sir come up here now sir why": [65535, 0], "come up here now sir why are": [65535, 0], "up here now sir why are you": [65535, 0], "here now sir why are you late": [65535, 0], "now sir why are you late again": [65535, 0], "sir why are you late again as": [65535, 0], "why are you late again as usual": [65535, 0], "are you late again as usual tom": [65535, 0], "you late again as usual tom was": [65535, 0], "late again as usual tom was about": [65535, 0], "again as usual tom was about to": [65535, 0], "as usual tom was about to take": [65535, 0], "usual tom was about to take refuge": [65535, 0], "tom was about to take refuge in": [65535, 0], "was about to take refuge in a": [65535, 0], "about to take refuge in a lie": [65535, 0], "to take refuge in a lie when": [65535, 0], "take refuge in a lie when he": [65535, 0], "refuge in a lie when he saw": [65535, 0], "in a lie when he saw two": [65535, 0], "a lie when he saw two long": [65535, 0], "lie when he saw two long tails": [65535, 0], "when he saw two long tails of": [65535, 0], "he saw two long tails of yellow": [65535, 0], "saw two long tails of yellow hair": [65535, 0], "two long tails of yellow hair hanging": [65535, 0], "long tails of yellow hair hanging down": [65535, 0], "tails of yellow hair hanging down a": [65535, 0], "of yellow hair hanging down a back": [65535, 0], "yellow hair hanging down a back that": [65535, 0], "hair hanging down a back that he": [65535, 0], "hanging down a back that he recognized": [65535, 0], "down a back that he recognized by": [65535, 0], "a back that he recognized by the": [65535, 0], "back that he recognized by the electric": [65535, 0], "that he recognized by the electric sympathy": [65535, 0], "he recognized by the electric sympathy of": [65535, 0], "recognized by the electric sympathy of love": [65535, 0], "by the electric sympathy of love and": [65535, 0], "the electric sympathy of love and by": [65535, 0], "electric sympathy of love and by that": [65535, 0], "sympathy of love and by that form": [65535, 0], "of love and by that form was": [65535, 0], "love and by that form was the": [65535, 0], "and by that form was the only": [65535, 0], "by that form was the only vacant": [65535, 0], "that form was the only vacant place": [65535, 0], "form was the only vacant place on": [65535, 0], "was the only vacant place on the": [65535, 0], "the only vacant place on the girls'": [65535, 0], "only vacant place on the girls' side": [65535, 0], "vacant place on the girls' side of": [65535, 0], "place on the girls' side of the": [65535, 0], "on the girls' side of the school": [65535, 0], "the girls' side of the school house": [65535, 0], "girls' side of the school house he": [65535, 0], "side of the school house he instantly": [65535, 0], "of the school house he instantly said": [65535, 0], "the school house he instantly said i": [65535, 0], "school house he instantly said i stopped": [65535, 0], "house he instantly said i stopped to": [65535, 0], "he instantly said i stopped to talk": [65535, 0], "instantly said i stopped to talk with": [65535, 0], "said i stopped to talk with huckleberry": [65535, 0], "i stopped to talk with huckleberry finn": [65535, 0], "stopped to talk with huckleberry finn the": [65535, 0], "to talk with huckleberry finn the master's": [65535, 0], "talk with huckleberry finn the master's pulse": [65535, 0], "with huckleberry finn the master's pulse stood": [65535, 0], "huckleberry finn the master's pulse stood still": [65535, 0], "finn the master's pulse stood still and": [65535, 0], "the master's pulse stood still and he": [65535, 0], "master's pulse stood still and he stared": [65535, 0], "pulse stood still and he stared helplessly": [65535, 0], "stood still and he stared helplessly the": [65535, 0], "still and he stared helplessly the buzz": [65535, 0], "and he stared helplessly the buzz of": [65535, 0], "he stared helplessly the buzz of study": [65535, 0], "stared helplessly the buzz of study ceased": [65535, 0], "helplessly the buzz of study ceased the": [65535, 0], "the buzz of study ceased the pupils": [65535, 0], "buzz of study ceased the pupils wondered": [65535, 0], "of study ceased the pupils wondered if": [65535, 0], "study ceased the pupils wondered if this": [65535, 0], "ceased the pupils wondered if this foolhardy": [65535, 0], "the pupils wondered if this foolhardy boy": [65535, 0], "pupils wondered if this foolhardy boy had": [65535, 0], "wondered if this foolhardy boy had lost": [65535, 0], "if this foolhardy boy had lost his": [65535, 0], "this foolhardy boy had lost his mind": [65535, 0], "foolhardy boy had lost his mind the": [65535, 0], "boy had lost his mind the master": [65535, 0], "had lost his mind the master said": [65535, 0], "lost his mind the master said you": [65535, 0], "his mind the master said you you": [65535, 0], "mind the master said you you did": [65535, 0], "the master said you you did what": [65535, 0], "master said you you did what stopped": [65535, 0], "said you you did what stopped to": [65535, 0], "you you did what stopped to talk": [65535, 0], "you did what stopped to talk with": [65535, 0], "did what stopped to talk with huckleberry": [65535, 0], "what stopped to talk with huckleberry finn": [65535, 0], "stopped to talk with huckleberry finn there": [65535, 0], "to talk with huckleberry finn there was": [65535, 0], "talk with huckleberry finn there was no": [65535, 0], "with huckleberry finn there was no mistaking": [65535, 0], "huckleberry finn there was no mistaking the": [65535, 0], "finn there was no mistaking the words": [65535, 0], "there was no mistaking the words thomas": [65535, 0], "was no mistaking the words thomas sawyer": [65535, 0], "no mistaking the words thomas sawyer this": [65535, 0], "mistaking the words thomas sawyer this is": [65535, 0], "the words thomas sawyer this is the": [65535, 0], "words thomas sawyer this is the most": [65535, 0], "thomas sawyer this is the most astounding": [65535, 0], "sawyer this is the most astounding confession": [65535, 0], "this is the most astounding confession i": [65535, 0], "is the most astounding confession i have": [65535, 0], "the most astounding confession i have ever": [65535, 0], "most astounding confession i have ever listened": [65535, 0], "astounding confession i have ever listened to": [65535, 0], "confession i have ever listened to no": [65535, 0], "i have ever listened to no mere": [65535, 0], "have ever listened to no mere ferule": [65535, 0], "ever listened to no mere ferule will": [65535, 0], "listened to no mere ferule will answer": [65535, 0], "to no mere ferule will answer for": [65535, 0], "no mere ferule will answer for this": [65535, 0], "mere ferule will answer for this offence": [65535, 0], "ferule will answer for this offence take": [65535, 0], "will answer for this offence take off": [65535, 0], "answer for this offence take off your": [65535, 0], "for this offence take off your jacket": [65535, 0], "this offence take off your jacket the": [65535, 0], "offence take off your jacket the master's": [65535, 0], "take off your jacket the master's arm": [65535, 0], "off your jacket the master's arm performed": [65535, 0], "your jacket the master's arm performed until": [65535, 0], "jacket the master's arm performed until it": [65535, 0], "the master's arm performed until it was": [65535, 0], "master's arm performed until it was tired": [65535, 0], "arm performed until it was tired and": [65535, 0], "performed until it was tired and the": [65535, 0], "until it was tired and the stock": [65535, 0], "it was tired and the stock of": [65535, 0], "was tired and the stock of switches": [65535, 0], "tired and the stock of switches notably": [65535, 0], "and the stock of switches notably diminished": [65535, 0], "the stock of switches notably diminished then": [65535, 0], "stock of switches notably diminished then the": [65535, 0], "of switches notably diminished then the order": [65535, 0], "switches notably diminished then the order followed": [65535, 0], "notably diminished then the order followed now": [65535, 0], "diminished then the order followed now sir": [65535, 0], "then the order followed now sir go": [65535, 0], "the order followed now sir go and": [65535, 0], "order followed now sir go and sit": [65535, 0], "followed now sir go and sit with": [65535, 0], "now sir go and sit with the": [65535, 0], "sir go and sit with the girls": [65535, 0], "go and sit with the girls and": [65535, 0], "and sit with the girls and let": [65535, 0], "sit with the girls and let this": [65535, 0], "with the girls and let this be": [65535, 0], "the girls and let this be a": [65535, 0], "girls and let this be a warning": [65535, 0], "and let this be a warning to": [65535, 0], "let this be a warning to you": [65535, 0], "this be a warning to you the": [65535, 0], "be a warning to you the titter": [65535, 0], "a warning to you the titter that": [65535, 0], "warning to you the titter that rippled": [65535, 0], "to you the titter that rippled around": [65535, 0], "you the titter that rippled around the": [65535, 0], "the titter that rippled around the room": [65535, 0], "titter that rippled around the room appeared": [65535, 0], "that rippled around the room appeared to": [65535, 0], "rippled around the room appeared to abash": [65535, 0], "around the room appeared to abash the": [65535, 0], "the room appeared to abash the boy": [65535, 0], "room appeared to abash the boy but": [65535, 0], "appeared to abash the boy but in": [65535, 0], "to abash the boy but in reality": [65535, 0], "abash the boy but in reality that": [65535, 0], "the boy but in reality that result": [65535, 0], "boy but in reality that result was": [65535, 0], "but in reality that result was caused": [65535, 0], "in reality that result was caused rather": [65535, 0], "reality that result was caused rather more": [65535, 0], "that result was caused rather more by": [65535, 0], "result was caused rather more by his": [65535, 0], "was caused rather more by his worshipful": [65535, 0], "caused rather more by his worshipful awe": [65535, 0], "rather more by his worshipful awe of": [65535, 0], "more by his worshipful awe of his": [65535, 0], "by his worshipful awe of his unknown": [65535, 0], "his worshipful awe of his unknown idol": [65535, 0], "worshipful awe of his unknown idol and": [65535, 0], "awe of his unknown idol and the": [65535, 0], "of his unknown idol and the dread": [65535, 0], "his unknown idol and the dread pleasure": [65535, 0], "unknown idol and the dread pleasure that": [65535, 0], "idol and the dread pleasure that lay": [65535, 0], "and the dread pleasure that lay in": [65535, 0], "the dread pleasure that lay in his": [65535, 0], "dread pleasure that lay in his high": [65535, 0], "pleasure that lay in his high good": [65535, 0], "that lay in his high good fortune": [65535, 0], "lay in his high good fortune he": [65535, 0], "in his high good fortune he sat": [65535, 0], "his high good fortune he sat down": [65535, 0], "high good fortune he sat down upon": [65535, 0], "good fortune he sat down upon the": [65535, 0], "fortune he sat down upon the end": [65535, 0], "he sat down upon the end of": [65535, 0], "sat down upon the end of the": [65535, 0], "down upon the end of the pine": [65535, 0], "upon the end of the pine bench": [65535, 0], "the end of the pine bench and": [65535, 0], "end of the pine bench and the": [65535, 0], "of the pine bench and the girl": [65535, 0], "the pine bench and the girl hitched": [65535, 0], "pine bench and the girl hitched herself": [65535, 0], "bench and the girl hitched herself away": [65535, 0], "and the girl hitched herself away from": [65535, 0], "the girl hitched herself away from him": [65535, 0], "girl hitched herself away from him with": [65535, 0], "hitched herself away from him with a": [65535, 0], "herself away from him with a toss": [65535, 0], "away from him with a toss of": [65535, 0], "from him with a toss of her": [65535, 0], "him with a toss of her head": [65535, 0], "with a toss of her head nudges": [65535, 0], "a toss of her head nudges and": [65535, 0], "toss of her head nudges and winks": [65535, 0], "of her head nudges and winks and": [65535, 0], "her head nudges and winks and whispers": [65535, 0], "head nudges and winks and whispers traversed": [65535, 0], "nudges and winks and whispers traversed the": [65535, 0], "and winks and whispers traversed the room": [65535, 0], "winks and whispers traversed the room but": [65535, 0], "and whispers traversed the room but tom": [65535, 0], "whispers traversed the room but tom sat": [65535, 0], "traversed the room but tom sat still": [65535, 0], "the room but tom sat still with": [65535, 0], "room but tom sat still with his": [65535, 0], "but tom sat still with his arms": [65535, 0], "tom sat still with his arms upon": [65535, 0], "sat still with his arms upon the": [65535, 0], "still with his arms upon the long": [65535, 0], "with his arms upon the long low": [65535, 0], "his arms upon the long low desk": [65535, 0], "arms upon the long low desk before": [65535, 0], "upon the long low desk before him": [65535, 0], "the long low desk before him and": [65535, 0], "long low desk before him and seemed": [65535, 0], "low desk before him and seemed to": [65535, 0], "desk before him and seemed to study": [65535, 0], "before him and seemed to study his": [65535, 0], "him and seemed to study his book": [65535, 0], "and seemed to study his book by": [65535, 0], "seemed to study his book by and": [65535, 0], "to study his book by and by": [65535, 0], "study his book by and by attention": [65535, 0], "his book by and by attention ceased": [65535, 0], "book by and by attention ceased from": [65535, 0], "by and by attention ceased from him": [65535, 0], "and by attention ceased from him and": [65535, 0], "by attention ceased from him and the": [65535, 0], "attention ceased from him and the accustomed": [65535, 0], "ceased from him and the accustomed school": [65535, 0], "from him and the accustomed school murmur": [65535, 0], "him and the accustomed school murmur rose": [65535, 0], "and the accustomed school murmur rose upon": [65535, 0], "the accustomed school murmur rose upon the": [65535, 0], "accustomed school murmur rose upon the dull": [65535, 0], "school murmur rose upon the dull air": [65535, 0], "murmur rose upon the dull air once": [65535, 0], "rose upon the dull air once more": [65535, 0], "upon the dull air once more presently": [65535, 0], "the dull air once more presently the": [65535, 0], "dull air once more presently the boy": [65535, 0], "air once more presently the boy began": [65535, 0], "once more presently the boy began to": [65535, 0], "more presently the boy began to steal": [65535, 0], "presently the boy began to steal furtive": [65535, 0], "the boy began to steal furtive glances": [65535, 0], "boy began to steal furtive glances at": [65535, 0], "began to steal furtive glances at the": [65535, 0], "to steal furtive glances at the girl": [65535, 0], "steal furtive glances at the girl she": [65535, 0], "furtive glances at the girl she observed": [65535, 0], "glances at the girl she observed it": [65535, 0], "at the girl she observed it made": [65535, 0], "the girl she observed it made a": [65535, 0], "girl she observed it made a mouth": [65535, 0], "she observed it made a mouth at": [65535, 0], "observed it made a mouth at him": [65535, 0], "it made a mouth at him and": [65535, 0], "made a mouth at him and gave": [65535, 0], "a mouth at him and gave him": [65535, 0], "mouth at him and gave him the": [65535, 0], "at him and gave him the back": [65535, 0], "him and gave him the back of": [65535, 0], "and gave him the back of her": [65535, 0], "gave him the back of her head": [65535, 0], "him the back of her head for": [65535, 0], "the back of her head for the": [65535, 0], "back of her head for the space": [65535, 0], "of her head for the space of": [65535, 0], "her head for the space of a": [65535, 0], "head for the space of a minute": [65535, 0], "for the space of a minute when": [65535, 0], "the space of a minute when she": [65535, 0], "space of a minute when she cautiously": [65535, 0], "of a minute when she cautiously faced": [65535, 0], "a minute when she cautiously faced around": [65535, 0], "minute when she cautiously faced around again": [65535, 0], "when she cautiously faced around again a": [65535, 0], "she cautiously faced around again a peach": [65535, 0], "cautiously faced around again a peach lay": [65535, 0], "faced around again a peach lay before": [65535, 0], "around again a peach lay before her": [65535, 0], "again a peach lay before her she": [65535, 0], "a peach lay before her she thrust": [65535, 0], "peach lay before her she thrust it": [65535, 0], "lay before her she thrust it away": [65535, 0], "before her she thrust it away tom": [65535, 0], "her she thrust it away tom gently": [65535, 0], "she thrust it away tom gently put": [65535, 0], "thrust it away tom gently put it": [65535, 0], "it away tom gently put it back": [65535, 0], "away tom gently put it back she": [65535, 0], "tom gently put it back she thrust": [65535, 0], "gently put it back she thrust it": [65535, 0], "put it back she thrust it away": [65535, 0], "it back she thrust it away again": [65535, 0], "back she thrust it away again but": [65535, 0], "she thrust it away again but with": [65535, 0], "thrust it away again but with less": [65535, 0], "it away again but with less animosity": [65535, 0], "away again but with less animosity tom": [65535, 0], "again but with less animosity tom patiently": [65535, 0], "but with less animosity tom patiently returned": [65535, 0], "with less animosity tom patiently returned it": [65535, 0], "less animosity tom patiently returned it to": [65535, 0], "animosity tom patiently returned it to its": [65535, 0], "tom patiently returned it to its place": [65535, 0], "patiently returned it to its place then": [65535, 0], "returned it to its place then she": [65535, 0], "it to its place then she let": [65535, 0], "to its place then she let it": [65535, 0], "its place then she let it remain": [65535, 0], "place then she let it remain tom": [65535, 0], "then she let it remain tom scrawled": [65535, 0], "she let it remain tom scrawled on": [65535, 0], "let it remain tom scrawled on his": [65535, 0], "it remain tom scrawled on his slate": [65535, 0], "remain tom scrawled on his slate please": [65535, 0], "tom scrawled on his slate please take": [65535, 0], "scrawled on his slate please take it": [65535, 0], "on his slate please take it i": [65535, 0], "his slate please take it i got": [65535, 0], "slate please take it i got more": [65535, 0], "please take it i got more the": [65535, 0], "take it i got more the girl": [65535, 0], "it i got more the girl glanced": [65535, 0], "i got more the girl glanced at": [65535, 0], "got more the girl glanced at the": [65535, 0], "more the girl glanced at the words": [65535, 0], "the girl glanced at the words but": [65535, 0], "girl glanced at the words but made": [65535, 0], "glanced at the words but made no": [65535, 0], "at the words but made no sign": [65535, 0], "the words but made no sign now": [65535, 0], "words but made no sign now the": [65535, 0], "but made no sign now the boy": [65535, 0], "made no sign now the boy began": [65535, 0], "no sign now the boy began to": [65535, 0], "sign now the boy began to draw": [65535, 0], "now the boy began to draw something": [65535, 0], "the boy began to draw something on": [65535, 0], "boy began to draw something on the": [65535, 0], "began to draw something on the slate": [65535, 0], "to draw something on the slate hiding": [65535, 0], "draw something on the slate hiding his": [65535, 0], "something on the slate hiding his work": [65535, 0], "on the slate hiding his work with": [65535, 0], "the slate hiding his work with his": [65535, 0], "slate hiding his work with his left": [65535, 0], "hiding his work with his left hand": [65535, 0], "his work with his left hand for": [65535, 0], "work with his left hand for a": [65535, 0], "with his left hand for a time": [65535, 0], "his left hand for a time the": [65535, 0], "left hand for a time the girl": [65535, 0], "hand for a time the girl refused": [65535, 0], "for a time the girl refused to": [65535, 0], "a time the girl refused to notice": [65535, 0], "time the girl refused to notice but": [65535, 0], "the girl refused to notice but her": [65535, 0], "girl refused to notice but her human": [65535, 0], "refused to notice but her human curiosity": [65535, 0], "to notice but her human curiosity presently": [65535, 0], "notice but her human curiosity presently began": [65535, 0], "but her human curiosity presently began to": [65535, 0], "her human curiosity presently began to manifest": [65535, 0], "human curiosity presently began to manifest itself": [65535, 0], "curiosity presently began to manifest itself by": [65535, 0], "presently began to manifest itself by hardly": [65535, 0], "began to manifest itself by hardly perceptible": [65535, 0], "to manifest itself by hardly perceptible signs": [65535, 0], "manifest itself by hardly perceptible signs the": [65535, 0], "itself by hardly perceptible signs the boy": [65535, 0], "by hardly perceptible signs the boy worked": [65535, 0], "hardly perceptible signs the boy worked on": [65535, 0], "perceptible signs the boy worked on apparently": [65535, 0], "signs the boy worked on apparently unconscious": [65535, 0], "the boy worked on apparently unconscious the": [65535, 0], "boy worked on apparently unconscious the girl": [65535, 0], "worked on apparently unconscious the girl made": [65535, 0], "on apparently unconscious the girl made a": [65535, 0], "apparently unconscious the girl made a sort": [65535, 0], "unconscious the girl made a sort of": [65535, 0], "the girl made a sort of noncommittal": [65535, 0], "girl made a sort of noncommittal attempt": [65535, 0], "made a sort of noncommittal attempt to": [65535, 0], "a sort of noncommittal attempt to see": [65535, 0], "sort of noncommittal attempt to see but": [65535, 0], "of noncommittal attempt to see but the": [65535, 0], "noncommittal attempt to see but the boy": [65535, 0], "attempt to see but the boy did": [65535, 0], "to see but the boy did not": [65535, 0], "see but the boy did not betray": [65535, 0], "but the boy did not betray that": [65535, 0], "the boy did not betray that he": [65535, 0], "boy did not betray that he was": [65535, 0], "did not betray that he was aware": [65535, 0], "not betray that he was aware of": [65535, 0], "betray that he was aware of it": [65535, 0], "that he was aware of it at": [65535, 0], "he was aware of it at last": [65535, 0], "was aware of it at last she": [65535, 0], "aware of it at last she gave": [65535, 0], "of it at last she gave in": [65535, 0], "it at last she gave in and": [65535, 0], "at last she gave in and hesitatingly": [65535, 0], "last she gave in and hesitatingly whispered": [65535, 0], "she gave in and hesitatingly whispered let": [65535, 0], "gave in and hesitatingly whispered let me": [65535, 0], "in and hesitatingly whispered let me see": [65535, 0], "and hesitatingly whispered let me see it": [65535, 0], "hesitatingly whispered let me see it tom": [65535, 0], "whispered let me see it tom partly": [65535, 0], "let me see it tom partly uncovered": [65535, 0], "me see it tom partly uncovered a": [65535, 0], "see it tom partly uncovered a dismal": [65535, 0], "it tom partly uncovered a dismal caricature": [65535, 0], "tom partly uncovered a dismal caricature of": [65535, 0], "partly uncovered a dismal caricature of a": [65535, 0], "uncovered a dismal caricature of a house": [65535, 0], "a dismal caricature of a house with": [65535, 0], "dismal caricature of a house with two": [65535, 0], "caricature of a house with two gable": [65535, 0], "of a house with two gable ends": [65535, 0], "a house with two gable ends to": [65535, 0], "house with two gable ends to it": [65535, 0], "with two gable ends to it and": [65535, 0], "two gable ends to it and a": [65535, 0], "gable ends to it and a corkscrew": [65535, 0], "ends to it and a corkscrew of": [65535, 0], "to it and a corkscrew of smoke": [65535, 0], "it and a corkscrew of smoke issuing": [65535, 0], "and a corkscrew of smoke issuing from": [65535, 0], "a corkscrew of smoke issuing from the": [65535, 0], "corkscrew of smoke issuing from the chimney": [65535, 0], "of smoke issuing from the chimney then": [65535, 0], "smoke issuing from the chimney then the": [65535, 0], "issuing from the chimney then the girl's": [65535, 0], "from the chimney then the girl's interest": [65535, 0], "the chimney then the girl's interest began": [65535, 0], "chimney then the girl's interest began to": [65535, 0], "then the girl's interest began to fasten": [65535, 0], "the girl's interest began to fasten itself": [65535, 0], "girl's interest began to fasten itself upon": [65535, 0], "interest began to fasten itself upon the": [65535, 0], "began to fasten itself upon the work": [65535, 0], "to fasten itself upon the work and": [65535, 0], "fasten itself upon the work and she": [65535, 0], "itself upon the work and she forgot": [65535, 0], "upon the work and she forgot everything": [65535, 0], "the work and she forgot everything else": [65535, 0], "work and she forgot everything else when": [65535, 0], "and she forgot everything else when it": [65535, 0], "she forgot everything else when it was": [65535, 0], "forgot everything else when it was finished": [65535, 0], "everything else when it was finished she": [65535, 0], "else when it was finished she gazed": [65535, 0], "when it was finished she gazed a": [65535, 0], "it was finished she gazed a moment": [65535, 0], "was finished she gazed a moment then": [65535, 0], "finished she gazed a moment then whispered": [65535, 0], "she gazed a moment then whispered it's": [65535, 0], "gazed a moment then whispered it's nice": [65535, 0], "a moment then whispered it's nice make": [65535, 0], "moment then whispered it's nice make a": [65535, 0], "then whispered it's nice make a man": [65535, 0], "whispered it's nice make a man the": [65535, 0], "it's nice make a man the artist": [65535, 0], "nice make a man the artist erected": [65535, 0], "make a man the artist erected a": [65535, 0], "a man the artist erected a man": [65535, 0], "man the artist erected a man in": [65535, 0], "the artist erected a man in the": [65535, 0], "artist erected a man in the front": [65535, 0], "erected a man in the front yard": [65535, 0], "a man in the front yard that": [65535, 0], "man in the front yard that resembled": [65535, 0], "in the front yard that resembled a": [65535, 0], "the front yard that resembled a derrick": [65535, 0], "front yard that resembled a derrick he": [65535, 0], "yard that resembled a derrick he could": [65535, 0], "that resembled a derrick he could have": [65535, 0], "resembled a derrick he could have stepped": [65535, 0], "a derrick he could have stepped over": [65535, 0], "derrick he could have stepped over the": [65535, 0], "he could have stepped over the house": [65535, 0], "could have stepped over the house but": [65535, 0], "have stepped over the house but the": [65535, 0], "stepped over the house but the girl": [65535, 0], "over the house but the girl was": [65535, 0], "the house but the girl was not": [65535, 0], "house but the girl was not hypercritical": [65535, 0], "but the girl was not hypercritical she": [65535, 0], "the girl was not hypercritical she was": [65535, 0], "girl was not hypercritical she was satisfied": [65535, 0], "was not hypercritical she was satisfied with": [65535, 0], "not hypercritical she was satisfied with the": [65535, 0], "hypercritical she was satisfied with the monster": [65535, 0], "she was satisfied with the monster and": [65535, 0], "was satisfied with the monster and whispered": [65535, 0], "satisfied with the monster and whispered it's": [65535, 0], "with the monster and whispered it's a": [65535, 0], "the monster and whispered it's a beautiful": [65535, 0], "monster and whispered it's a beautiful man": [65535, 0], "and whispered it's a beautiful man now": [65535, 0], "whispered it's a beautiful man now make": [65535, 0], "it's a beautiful man now make me": [65535, 0], "a beautiful man now make me coming": [65535, 0], "beautiful man now make me coming along": [65535, 0], "man now make me coming along tom": [65535, 0], "now make me coming along tom drew": [65535, 0], "make me coming along tom drew an": [65535, 0], "me coming along tom drew an hour": [65535, 0], "coming along tom drew an hour glass": [65535, 0], "along tom drew an hour glass with": [65535, 0], "tom drew an hour glass with a": [65535, 0], "drew an hour glass with a full": [65535, 0], "an hour glass with a full moon": [65535, 0], "hour glass with a full moon and": [65535, 0], "glass with a full moon and straw": [65535, 0], "with a full moon and straw limbs": [65535, 0], "a full moon and straw limbs to": [65535, 0], "full moon and straw limbs to it": [65535, 0], "moon and straw limbs to it and": [65535, 0], "and straw limbs to it and armed": [65535, 0], "straw limbs to it and armed the": [65535, 0], "limbs to it and armed the spreading": [65535, 0], "to it and armed the spreading fingers": [65535, 0], "it and armed the spreading fingers with": [65535, 0], "and armed the spreading fingers with a": [65535, 0], "armed the spreading fingers with a portentous": [65535, 0], "the spreading fingers with a portentous fan": [65535, 0], "spreading fingers with a portentous fan the": [65535, 0], "fingers with a portentous fan the girl": [65535, 0], "with a portentous fan the girl said": [65535, 0], "a portentous fan the girl said it's": [65535, 0], "portentous fan the girl said it's ever": [65535, 0], "fan the girl said it's ever so": [65535, 0], "the girl said it's ever so nice": [65535, 0], "girl said it's ever so nice i": [65535, 0], "said it's ever so nice i wish": [65535, 0], "it's ever so nice i wish i": [65535, 0], "ever so nice i wish i could": [65535, 0], "so nice i wish i could draw": [65535, 0], "nice i wish i could draw it's": [65535, 0], "i wish i could draw it's easy": [65535, 0], "wish i could draw it's easy whispered": [65535, 0], "i could draw it's easy whispered tom": [65535, 0], "could draw it's easy whispered tom i'll": [65535, 0], "draw it's easy whispered tom i'll learn": [65535, 0], "it's easy whispered tom i'll learn you": [65535, 0], "easy whispered tom i'll learn you oh": [65535, 0], "whispered tom i'll learn you oh will": [65535, 0], "tom i'll learn you oh will you": [65535, 0], "i'll learn you oh will you when": [65535, 0], "learn you oh will you when at": [65535, 0], "you oh will you when at noon": [65535, 0], "oh will you when at noon do": [65535, 0], "will you when at noon do you": [65535, 0], "you when at noon do you go": [65535, 0], "when at noon do you go home": [65535, 0], "at noon do you go home to": [65535, 0], "noon do you go home to dinner": [65535, 0], "do you go home to dinner i'll": [65535, 0], "you go home to dinner i'll stay": [65535, 0], "go home to dinner i'll stay if": [65535, 0], "home to dinner i'll stay if you": [65535, 0], "to dinner i'll stay if you will": [65535, 0], "dinner i'll stay if you will good": [65535, 0], "i'll stay if you will good that's": [65535, 0], "stay if you will good that's a": [65535, 0], "if you will good that's a whack": [65535, 0], "you will good that's a whack what's": [65535, 0], "will good that's a whack what's your": [65535, 0], "good that's a whack what's your name": [65535, 0], "that's a whack what's your name becky": [65535, 0], "a whack what's your name becky thatcher": [65535, 0], "whack what's your name becky thatcher what's": [65535, 0], "what's your name becky thatcher what's yours": [65535, 0], "your name becky thatcher what's yours oh": [65535, 0], "name becky thatcher what's yours oh i": [65535, 0], "becky thatcher what's yours oh i know": [65535, 0], "thatcher what's yours oh i know it's": [65535, 0], "what's yours oh i know it's thomas": [65535, 0], "yours oh i know it's thomas sawyer": [65535, 0], "oh i know it's thomas sawyer that's": [65535, 0], "i know it's thomas sawyer that's the": [65535, 0], "know it's thomas sawyer that's the name": [65535, 0], "it's thomas sawyer that's the name they": [65535, 0], "thomas sawyer that's the name they lick": [65535, 0], "sawyer that's the name they lick me": [65535, 0], "that's the name they lick me by": [65535, 0], "the name they lick me by i'm": [65535, 0], "name they lick me by i'm tom": [65535, 0], "they lick me by i'm tom when": [65535, 0], "lick me by i'm tom when i'm": [65535, 0], "me by i'm tom when i'm good": [65535, 0], "by i'm tom when i'm good you": [65535, 0], "i'm tom when i'm good you call": [65535, 0], "tom when i'm good you call me": [65535, 0], "when i'm good you call me tom": [65535, 0], "i'm good you call me tom will": [65535, 0], "good you call me tom will you": [65535, 0], "you call me tom will you yes": [65535, 0], "call me tom will you yes now": [65535, 0], "me tom will you yes now tom": [65535, 0], "tom will you yes now tom began": [65535, 0], "will you yes now tom began to": [65535, 0], "you yes now tom began to scrawl": [65535, 0], "yes now tom began to scrawl something": [65535, 0], "now tom began to scrawl something on": [65535, 0], "tom began to scrawl something on the": [65535, 0], "began to scrawl something on the slate": [65535, 0], "to scrawl something on the slate hiding": [65535, 0], "scrawl something on the slate hiding the": [65535, 0], "something on the slate hiding the words": [65535, 0], "on the slate hiding the words from": [65535, 0], "the slate hiding the words from the": [65535, 0], "slate hiding the words from the girl": [65535, 0], "hiding the words from the girl but": [65535, 0], "the words from the girl but she": [65535, 0], "words from the girl but she was": [65535, 0], "from the girl but she was not": [65535, 0], "the girl but she was not backward": [65535, 0], "girl but she was not backward this": [65535, 0], "but she was not backward this time": [65535, 0], "she was not backward this time she": [65535, 0], "was not backward this time she begged": [65535, 0], "not backward this time she begged to": [65535, 0], "backward this time she begged to see": [65535, 0], "this time she begged to see tom": [65535, 0], "time she begged to see tom said": [65535, 0], "she begged to see tom said oh": [65535, 0], "begged to see tom said oh it": [65535, 0], "to see tom said oh it ain't": [65535, 0], "see tom said oh it ain't anything": [65535, 0], "tom said oh it ain't anything yes": [65535, 0], "said oh it ain't anything yes it": [65535, 0], "oh it ain't anything yes it is": [65535, 0], "it ain't anything yes it is no": [65535, 0], "ain't anything yes it is no it": [65535, 0], "anything yes it is no it ain't": [65535, 0], "yes it is no it ain't you": [65535, 0], "it is no it ain't you don't": [65535, 0], "is no it ain't you don't want": [65535, 0], "no it ain't you don't want to": [65535, 0], "it ain't you don't want to see": [65535, 0], "ain't you don't want to see yes": [65535, 0], "you don't want to see yes i": [65535, 0], "don't want to see yes i do": [65535, 0], "want to see yes i do indeed": [65535, 0], "to see yes i do indeed i": [65535, 0], "see yes i do indeed i do": [65535, 0], "yes i do indeed i do please": [65535, 0], "i do indeed i do please let": [65535, 0], "do indeed i do please let me": [65535, 0], "indeed i do please let me you'll": [65535, 0], "i do please let me you'll tell": [65535, 0], "do please let me you'll tell no": [65535, 0], "please let me you'll tell no i": [65535, 0], "let me you'll tell no i won't": [65535, 0], "me you'll tell no i won't deed": [65535, 0], "you'll tell no i won't deed and": [65535, 0], "tell no i won't deed and deed": [65535, 0], "no i won't deed and deed and": [65535, 0], "i won't deed and deed and double": [65535, 0], "won't deed and deed and double deed": [65535, 0], "deed and deed and double deed won't": [65535, 0], "and deed and double deed won't you": [65535, 0], "deed and double deed won't you won't": [65535, 0], "and double deed won't you won't tell": [65535, 0], "double deed won't you won't tell anybody": [65535, 0], "deed won't you won't tell anybody at": [65535, 0], "won't you won't tell anybody at all": [65535, 0], "you won't tell anybody at all ever": [65535, 0], "won't tell anybody at all ever as": [65535, 0], "tell anybody at all ever as long": [65535, 0], "anybody at all ever as long as": [65535, 0], "at all ever as long as you": [65535, 0], "all ever as long as you live": [65535, 0], "ever as long as you live no": [65535, 0], "as long as you live no i": [65535, 0], "long as you live no i won't": [65535, 0], "as you live no i won't ever": [65535, 0], "you live no i won't ever tell": [65535, 0], "live no i won't ever tell anybody": [65535, 0], "no i won't ever tell anybody now": [65535, 0], "i won't ever tell anybody now let": [65535, 0], "won't ever tell anybody now let me": [65535, 0], "ever tell anybody now let me oh": [65535, 0], "tell anybody now let me oh you": [65535, 0], "anybody now let me oh you don't": [65535, 0], "now let me oh you don't want": [65535, 0], "let me oh you don't want to": [65535, 0], "me oh you don't want to see": [65535, 0], "oh you don't want to see now": [65535, 0], "you don't want to see now that": [65535, 0], "don't want to see now that you": [65535, 0], "want to see now that you treat": [65535, 0], "to see now that you treat me": [65535, 0], "see now that you treat me so": [65535, 0], "now that you treat me so i": [65535, 0], "that you treat me so i will": [65535, 0], "you treat me so i will see": [65535, 0], "treat me so i will see and": [65535, 0], "me so i will see and she": [65535, 0], "so i will see and she put": [65535, 0], "i will see and she put her": [65535, 0], "will see and she put her small": [65535, 0], "see and she put her small hand": [65535, 0], "and she put her small hand upon": [65535, 0], "she put her small hand upon his": [65535, 0], "put her small hand upon his and": [65535, 0], "her small hand upon his and a": [65535, 0], "small hand upon his and a little": [65535, 0], "hand upon his and a little scuffle": [65535, 0], "upon his and a little scuffle ensued": [65535, 0], "his and a little scuffle ensued tom": [65535, 0], "and a little scuffle ensued tom pretending": [65535, 0], "a little scuffle ensued tom pretending to": [65535, 0], "little scuffle ensued tom pretending to resist": [65535, 0], "scuffle ensued tom pretending to resist in": [65535, 0], "ensued tom pretending to resist in earnest": [65535, 0], "tom pretending to resist in earnest but": [65535, 0], "pretending to resist in earnest but letting": [65535, 0], "to resist in earnest but letting his": [65535, 0], "resist in earnest but letting his hand": [65535, 0], "in earnest but letting his hand slip": [65535, 0], "earnest but letting his hand slip by": [65535, 0], "but letting his hand slip by degrees": [65535, 0], "letting his hand slip by degrees till": [65535, 0], "his hand slip by degrees till these": [65535, 0], "hand slip by degrees till these words": [65535, 0], "slip by degrees till these words were": [65535, 0], "by degrees till these words were revealed": [65535, 0], "degrees till these words were revealed i": [65535, 0], "till these words were revealed i love": [65535, 0], "these words were revealed i love you": [65535, 0], "words were revealed i love you oh": [65535, 0], "were revealed i love you oh you": [65535, 0], "revealed i love you oh you bad": [65535, 0], "i love you oh you bad thing": [65535, 0], "love you oh you bad thing and": [65535, 0], "you oh you bad thing and she": [65535, 0], "oh you bad thing and she hit": [65535, 0], "you bad thing and she hit his": [65535, 0], "bad thing and she hit his hand": [65535, 0], "thing and she hit his hand a": [65535, 0], "and she hit his hand a smart": [65535, 0], "she hit his hand a smart rap": [65535, 0], "hit his hand a smart rap but": [65535, 0], "his hand a smart rap but reddened": [65535, 0], "hand a smart rap but reddened and": [65535, 0], "a smart rap but reddened and looked": [65535, 0], "smart rap but reddened and looked pleased": [65535, 0], "rap but reddened and looked pleased nevertheless": [65535, 0], "but reddened and looked pleased nevertheless just": [65535, 0], "reddened and looked pleased nevertheless just at": [65535, 0], "and looked pleased nevertheless just at this": [65535, 0], "looked pleased nevertheless just at this juncture": [65535, 0], "pleased nevertheless just at this juncture the": [65535, 0], "nevertheless just at this juncture the boy": [65535, 0], "just at this juncture the boy felt": [65535, 0], "at this juncture the boy felt a": [65535, 0], "this juncture the boy felt a slow": [65535, 0], "juncture the boy felt a slow fateful": [65535, 0], "the boy felt a slow fateful grip": [65535, 0], "boy felt a slow fateful grip closing": [65535, 0], "felt a slow fateful grip closing on": [65535, 0], "a slow fateful grip closing on his": [65535, 0], "slow fateful grip closing on his ear": [65535, 0], "fateful grip closing on his ear and": [65535, 0], "grip closing on his ear and a": [65535, 0], "closing on his ear and a steady": [65535, 0], "on his ear and a steady lifting": [65535, 0], "his ear and a steady lifting impulse": [65535, 0], "ear and a steady lifting impulse in": [65535, 0], "and a steady lifting impulse in that": [65535, 0], "a steady lifting impulse in that vise": [65535, 0], "steady lifting impulse in that vise he": [65535, 0], "lifting impulse in that vise he was": [65535, 0], "impulse in that vise he was borne": [65535, 0], "in that vise he was borne across": [65535, 0], "that vise he was borne across the": [65535, 0], "vise he was borne across the house": [65535, 0], "he was borne across the house and": [65535, 0], "was borne across the house and deposited": [65535, 0], "borne across the house and deposited in": [65535, 0], "across the house and deposited in his": [65535, 0], "the house and deposited in his own": [65535, 0], "house and deposited in his own seat": [65535, 0], "and deposited in his own seat under": [65535, 0], "deposited in his own seat under a": [65535, 0], "in his own seat under a peppering": [65535, 0], "his own seat under a peppering fire": [65535, 0], "own seat under a peppering fire of": [65535, 0], "seat under a peppering fire of giggles": [65535, 0], "under a peppering fire of giggles from": [65535, 0], "a peppering fire of giggles from the": [65535, 0], "peppering fire of giggles from the whole": [65535, 0], "fire of giggles from the whole school": [65535, 0], "of giggles from the whole school then": [65535, 0], "giggles from the whole school then the": [65535, 0], "from the whole school then the master": [65535, 0], "the whole school then the master stood": [65535, 0], "whole school then the master stood over": [65535, 0], "school then the master stood over him": [65535, 0], "then the master stood over him during": [65535, 0], "the master stood over him during a": [65535, 0], "master stood over him during a few": [65535, 0], "stood over him during a few awful": [65535, 0], "over him during a few awful moments": [65535, 0], "him during a few awful moments and": [65535, 0], "during a few awful moments and finally": [65535, 0], "a few awful moments and finally moved": [65535, 0], "few awful moments and finally moved away": [65535, 0], "awful moments and finally moved away to": [65535, 0], "moments and finally moved away to his": [65535, 0], "and finally moved away to his throne": [65535, 0], "finally moved away to his throne without": [65535, 0], "moved away to his throne without saying": [65535, 0], "away to his throne without saying a": [65535, 0], "to his throne without saying a word": [65535, 0], "his throne without saying a word but": [65535, 0], "throne without saying a word but although": [65535, 0], "without saying a word but although tom's": [65535, 0], "saying a word but although tom's ear": [65535, 0], "a word but although tom's ear tingled": [65535, 0], "word but although tom's ear tingled his": [65535, 0], "but although tom's ear tingled his heart": [65535, 0], "although tom's ear tingled his heart was": [65535, 0], "tom's ear tingled his heart was jubilant": [65535, 0], "ear tingled his heart was jubilant as": [65535, 0], "tingled his heart was jubilant as the": [65535, 0], "his heart was jubilant as the school": [65535, 0], "heart was jubilant as the school quieted": [65535, 0], "was jubilant as the school quieted down": [65535, 0], "jubilant as the school quieted down tom": [65535, 0], "as the school quieted down tom made": [65535, 0], "the school quieted down tom made an": [65535, 0], "school quieted down tom made an honest": [65535, 0], "quieted down tom made an honest effort": [65535, 0], "down tom made an honest effort to": [65535, 0], "tom made an honest effort to study": [65535, 0], "made an honest effort to study but": [65535, 0], "an honest effort to study but the": [65535, 0], "honest effort to study but the turmoil": [65535, 0], "effort to study but the turmoil within": [65535, 0], "to study but the turmoil within him": [65535, 0], "study but the turmoil within him was": [65535, 0], "but the turmoil within him was too": [65535, 0], "the turmoil within him was too great": [65535, 0], "turmoil within him was too great in": [65535, 0], "within him was too great in turn": [65535, 0], "him was too great in turn he": [65535, 0], "was too great in turn he took": [65535, 0], "too great in turn he took his": [65535, 0], "great in turn he took his place": [65535, 0], "in turn he took his place in": [65535, 0], "turn he took his place in the": [65535, 0], "he took his place in the reading": [65535, 0], "took his place in the reading class": [65535, 0], "his place in the reading class and": [65535, 0], "place in the reading class and made": [65535, 0], "in the reading class and made a": [65535, 0], "the reading class and made a botch": [65535, 0], "reading class and made a botch of": [65535, 0], "class and made a botch of it": [65535, 0], "and made a botch of it then": [65535, 0], "made a botch of it then in": [65535, 0], "a botch of it then in the": [65535, 0], "botch of it then in the geography": [65535, 0], "of it then in the geography class": [65535, 0], "it then in the geography class and": [65535, 0], "then in the geography class and turned": [65535, 0], "in the geography class and turned lakes": [65535, 0], "the geography class and turned lakes into": [65535, 0], "geography class and turned lakes into mountains": [65535, 0], "class and turned lakes into mountains mountains": [65535, 0], "and turned lakes into mountains mountains into": [65535, 0], "turned lakes into mountains mountains into rivers": [65535, 0], "lakes into mountains mountains into rivers and": [65535, 0], "into mountains mountains into rivers and rivers": [65535, 0], "mountains mountains into rivers and rivers into": [65535, 0], "mountains into rivers and rivers into continents": [65535, 0], "into rivers and rivers into continents till": [65535, 0], "rivers and rivers into continents till chaos": [65535, 0], "and rivers into continents till chaos was": [65535, 0], "rivers into continents till chaos was come": [65535, 0], "into continents till chaos was come again": [65535, 0], "continents till chaos was come again then": [65535, 0], "till chaos was come again then in": [65535, 0], "chaos was come again then in the": [65535, 0], "was come again then in the spelling": [65535, 0], "come again then in the spelling class": [65535, 0], "again then in the spelling class and": [65535, 0], "then in the spelling class and got": [65535, 0], "in the spelling class and got turned": [65535, 0], "the spelling class and got turned down": [65535, 0], "spelling class and got turned down by": [65535, 0], "class and got turned down by a": [65535, 0], "and got turned down by a succession": [65535, 0], "got turned down by a succession of": [65535, 0], "turned down by a succession of mere": [65535, 0], "down by a succession of mere baby": [65535, 0], "by a succession of mere baby words": [65535, 0], "a succession of mere baby words till": [65535, 0], "succession of mere baby words till he": [65535, 0], "of mere baby words till he brought": [65535, 0], "mere baby words till he brought up": [65535, 0], "baby words till he brought up at": [65535, 0], "words till he brought up at the": [65535, 0], "till he brought up at the foot": [65535, 0], "he brought up at the foot and": [65535, 0], "brought up at the foot and yielded": [65535, 0], "up at the foot and yielded up": [65535, 0], "at the foot and yielded up the": [65535, 0], "the foot and yielded up the pewter": [65535, 0], "foot and yielded up the pewter medal": [65535, 0], "and yielded up the pewter medal which": [65535, 0], "yielded up the pewter medal which he": [65535, 0], "up the pewter medal which he had": [65535, 0], "the pewter medal which he had worn": [65535, 0], "pewter medal which he had worn with": [65535, 0], "medal which he had worn with ostentation": [65535, 0], "which he had worn with ostentation for": [65535, 0], "he had worn with ostentation for months": [65535, 0], "monday morning found tom sawyer miserable monday morning": [65535, 0], "morning found tom sawyer miserable monday morning always": [65535, 0], "found tom sawyer miserable monday morning always found": [65535, 0], "tom sawyer miserable monday morning always found him": [65535, 0], "sawyer miserable monday morning always found him so": [65535, 0], "miserable monday morning always found him so because": [65535, 0], "monday morning always found him so because it": [65535, 0], "morning always found him so because it began": [65535, 0], "always found him so because it began another": [65535, 0], "found him so because it began another week's": [65535, 0], "him so because it began another week's slow": [65535, 0], "so because it began another week's slow suffering": [65535, 0], "because it began another week's slow suffering in": [65535, 0], "it began another week's slow suffering in school": [65535, 0], "began another week's slow suffering in school he": [65535, 0], "another week's slow suffering in school he generally": [65535, 0], "week's slow suffering in school he generally began": [65535, 0], "slow suffering in school he generally began that": [65535, 0], "suffering in school he generally began that day": [65535, 0], "in school he generally began that day with": [65535, 0], "school he generally began that day with wishing": [65535, 0], "he generally began that day with wishing he": [65535, 0], "generally began that day with wishing he had": [65535, 0], "began that day with wishing he had had": [65535, 0], "that day with wishing he had had no": [65535, 0], "day with wishing he had had no intervening": [65535, 0], "with wishing he had had no intervening holiday": [65535, 0], "wishing he had had no intervening holiday it": [65535, 0], "he had had no intervening holiday it made": [65535, 0], "had had no intervening holiday it made the": [65535, 0], "had no intervening holiday it made the going": [65535, 0], "no intervening holiday it made the going into": [65535, 0], "intervening holiday it made the going into captivity": [65535, 0], "holiday it made the going into captivity and": [65535, 0], "it made the going into captivity and fetters": [65535, 0], "made the going into captivity and fetters again": [65535, 0], "the going into captivity and fetters again so": [65535, 0], "going into captivity and fetters again so much": [65535, 0], "into captivity and fetters again so much more": [65535, 0], "captivity and fetters again so much more odious": [65535, 0], "and fetters again so much more odious tom": [65535, 0], "fetters again so much more odious tom lay": [65535, 0], "again so much more odious tom lay thinking": [65535, 0], "so much more odious tom lay thinking presently": [65535, 0], "much more odious tom lay thinking presently it": [65535, 0], "more odious tom lay thinking presently it occurred": [65535, 0], "odious tom lay thinking presently it occurred to": [65535, 0], "tom lay thinking presently it occurred to him": [65535, 0], "lay thinking presently it occurred to him that": [65535, 0], "thinking presently it occurred to him that he": [65535, 0], "presently it occurred to him that he wished": [65535, 0], "it occurred to him that he wished he": [65535, 0], "occurred to him that he wished he was": [65535, 0], "to him that he wished he was sick": [65535, 0], "him that he wished he was sick then": [65535, 0], "that he wished he was sick then he": [65535, 0], "he wished he was sick then he could": [65535, 0], "wished he was sick then he could stay": [65535, 0], "he was sick then he could stay home": [65535, 0], "was sick then he could stay home from": [65535, 0], "sick then he could stay home from school": [65535, 0], "then he could stay home from school here": [65535, 0], "he could stay home from school here was": [65535, 0], "could stay home from school here was a": [65535, 0], "stay home from school here was a vague": [65535, 0], "home from school here was a vague possibility": [65535, 0], "from school here was a vague possibility he": [65535, 0], "school here was a vague possibility he canvassed": [65535, 0], "here was a vague possibility he canvassed his": [65535, 0], "was a vague possibility he canvassed his system": [65535, 0], "a vague possibility he canvassed his system no": [65535, 0], "vague possibility he canvassed his system no ailment": [65535, 0], "possibility he canvassed his system no ailment was": [65535, 0], "he canvassed his system no ailment was found": [65535, 0], "canvassed his system no ailment was found and": [65535, 0], "his system no ailment was found and he": [65535, 0], "system no ailment was found and he investigated": [65535, 0], "no ailment was found and he investigated again": [65535, 0], "ailment was found and he investigated again this": [65535, 0], "was found and he investigated again this time": [65535, 0], "found and he investigated again this time he": [65535, 0], "and he investigated again this time he thought": [65535, 0], "he investigated again this time he thought he": [65535, 0], "investigated again this time he thought he could": [65535, 0], "again this time he thought he could detect": [65535, 0], "this time he thought he could detect colicky": [65535, 0], "time he thought he could detect colicky symptoms": [65535, 0], "he thought he could detect colicky symptoms and": [65535, 0], "thought he could detect colicky symptoms and he": [65535, 0], "he could detect colicky symptoms and he began": [65535, 0], "could detect colicky symptoms and he began to": [65535, 0], "detect colicky symptoms and he began to encourage": [65535, 0], "colicky symptoms and he began to encourage them": [65535, 0], "symptoms and he began to encourage them with": [65535, 0], "and he began to encourage them with considerable": [65535, 0], "he began to encourage them with considerable hope": [65535, 0], "began to encourage them with considerable hope but": [65535, 0], "to encourage them with considerable hope but they": [65535, 0], "encourage them with considerable hope but they soon": [65535, 0], "them with considerable hope but they soon grew": [65535, 0], "with considerable hope but they soon grew feeble": [65535, 0], "considerable hope but they soon grew feeble and": [65535, 0], "hope but they soon grew feeble and presently": [65535, 0], "but they soon grew feeble and presently died": [65535, 0], "they soon grew feeble and presently died wholly": [65535, 0], "soon grew feeble and presently died wholly away": [65535, 0], "grew feeble and presently died wholly away he": [65535, 0], "feeble and presently died wholly away he reflected": [65535, 0], "and presently died wholly away he reflected further": [65535, 0], "presently died wholly away he reflected further suddenly": [65535, 0], "died wholly away he reflected further suddenly he": [65535, 0], "wholly away he reflected further suddenly he discovered": [65535, 0], "away he reflected further suddenly he discovered something": [65535, 0], "he reflected further suddenly he discovered something one": [65535, 0], "reflected further suddenly he discovered something one of": [65535, 0], "further suddenly he discovered something one of his": [65535, 0], "suddenly he discovered something one of his upper": [65535, 0], "he discovered something one of his upper front": [65535, 0], "discovered something one of his upper front teeth": [65535, 0], "something one of his upper front teeth was": [65535, 0], "one of his upper front teeth was loose": [65535, 0], "of his upper front teeth was loose this": [65535, 0], "his upper front teeth was loose this was": [65535, 0], "upper front teeth was loose this was lucky": [65535, 0], "front teeth was loose this was lucky he": [65535, 0], "teeth was loose this was lucky he was": [65535, 0], "was loose this was lucky he was about": [65535, 0], "loose this was lucky he was about to": [65535, 0], "this was lucky he was about to begin": [65535, 0], "was lucky he was about to begin to": [65535, 0], "lucky he was about to begin to groan": [65535, 0], "he was about to begin to groan as": [65535, 0], "was about to begin to groan as a": [65535, 0], "about to begin to groan as a starter": [65535, 0], "to begin to groan as a starter as": [65535, 0], "begin to groan as a starter as he": [65535, 0], "to groan as a starter as he called": [65535, 0], "groan as a starter as he called it": [65535, 0], "as a starter as he called it when": [65535, 0], "a starter as he called it when it": [65535, 0], "starter as he called it when it occurred": [65535, 0], "as he called it when it occurred to": [65535, 0], "he called it when it occurred to him": [65535, 0], "called it when it occurred to him that": [65535, 0], "it when it occurred to him that if": [65535, 0], "when it occurred to him that if he": [65535, 0], "it occurred to him that if he came": [65535, 0], "occurred to him that if he came into": [65535, 0], "to him that if he came into court": [65535, 0], "him that if he came into court with": [65535, 0], "that if he came into court with that": [65535, 0], "if he came into court with that argument": [65535, 0], "he came into court with that argument his": [65535, 0], "came into court with that argument his aunt": [65535, 0], "into court with that argument his aunt would": [65535, 0], "court with that argument his aunt would pull": [65535, 0], "with that argument his aunt would pull it": [65535, 0], "that argument his aunt would pull it out": [65535, 0], "argument his aunt would pull it out and": [65535, 0], "his aunt would pull it out and that": [65535, 0], "aunt would pull it out and that would": [65535, 0], "would pull it out and that would hurt": [65535, 0], "pull it out and that would hurt so": [65535, 0], "it out and that would hurt so he": [65535, 0], "out and that would hurt so he thought": [65535, 0], "and that would hurt so he thought he": [65535, 0], "that would hurt so he thought he would": [65535, 0], "would hurt so he thought he would hold": [65535, 0], "hurt so he thought he would hold the": [65535, 0], "so he thought he would hold the tooth": [65535, 0], "he thought he would hold the tooth in": [65535, 0], "thought he would hold the tooth in reserve": [65535, 0], "he would hold the tooth in reserve for": [65535, 0], "would hold the tooth in reserve for the": [65535, 0], "hold the tooth in reserve for the present": [65535, 0], "the tooth in reserve for the present and": [65535, 0], "tooth in reserve for the present and seek": [65535, 0], "in reserve for the present and seek further": [65535, 0], "reserve for the present and seek further nothing": [65535, 0], "for the present and seek further nothing offered": [65535, 0], "the present and seek further nothing offered for": [65535, 0], "present and seek further nothing offered for some": [65535, 0], "and seek further nothing offered for some little": [65535, 0], "seek further nothing offered for some little time": [65535, 0], "further nothing offered for some little time and": [65535, 0], "nothing offered for some little time and then": [65535, 0], "offered for some little time and then he": [65535, 0], "for some little time and then he remembered": [65535, 0], "some little time and then he remembered hearing": [65535, 0], "little time and then he remembered hearing the": [65535, 0], "time and then he remembered hearing the doctor": [65535, 0], "and then he remembered hearing the doctor tell": [65535, 0], "then he remembered hearing the doctor tell about": [65535, 0], "he remembered hearing the doctor tell about a": [65535, 0], "remembered hearing the doctor tell about a certain": [65535, 0], "hearing the doctor tell about a certain thing": [65535, 0], "the doctor tell about a certain thing that": [65535, 0], "doctor tell about a certain thing that laid": [65535, 0], "tell about a certain thing that laid up": [65535, 0], "about a certain thing that laid up a": [65535, 0], "a certain thing that laid up a patient": [65535, 0], "certain thing that laid up a patient for": [65535, 0], "thing that laid up a patient for two": [65535, 0], "that laid up a patient for two or": [65535, 0], "laid up a patient for two or three": [65535, 0], "up a patient for two or three weeks": [65535, 0], "a patient for two or three weeks and": [65535, 0], "patient for two or three weeks and threatened": [65535, 0], "for two or three weeks and threatened to": [65535, 0], "two or three weeks and threatened to make": [65535, 0], "or three weeks and threatened to make him": [65535, 0], "three weeks and threatened to make him lose": [65535, 0], "weeks and threatened to make him lose a": [65535, 0], "and threatened to make him lose a finger": [65535, 0], "threatened to make him lose a finger so": [65535, 0], "to make him lose a finger so the": [65535, 0], "make him lose a finger so the boy": [65535, 0], "him lose a finger so the boy eagerly": [65535, 0], "lose a finger so the boy eagerly drew": [65535, 0], "a finger so the boy eagerly drew his": [65535, 0], "finger so the boy eagerly drew his sore": [65535, 0], "so the boy eagerly drew his sore toe": [65535, 0], "the boy eagerly drew his sore toe from": [65535, 0], "boy eagerly drew his sore toe from under": [65535, 0], "eagerly drew his sore toe from under the": [65535, 0], "drew his sore toe from under the sheet": [65535, 0], "his sore toe from under the sheet and": [65535, 0], "sore toe from under the sheet and held": [65535, 0], "toe from under the sheet and held it": [65535, 0], "from under the sheet and held it up": [65535, 0], "under the sheet and held it up for": [65535, 0], "the sheet and held it up for inspection": [65535, 0], "sheet and held it up for inspection but": [65535, 0], "and held it up for inspection but now": [65535, 0], "held it up for inspection but now he": [65535, 0], "it up for inspection but now he did": [65535, 0], "up for inspection but now he did not": [65535, 0], "for inspection but now he did not know": [65535, 0], "inspection but now he did not know the": [65535, 0], "but now he did not know the necessary": [65535, 0], "now he did not know the necessary symptoms": [65535, 0], "he did not know the necessary symptoms however": [65535, 0], "did not know the necessary symptoms however it": [65535, 0], "not know the necessary symptoms however it seemed": [65535, 0], "know the necessary symptoms however it seemed well": [65535, 0], "the necessary symptoms however it seemed well worth": [65535, 0], "necessary symptoms however it seemed well worth while": [65535, 0], "symptoms however it seemed well worth while to": [65535, 0], "however it seemed well worth while to chance": [65535, 0], "it seemed well worth while to chance it": [65535, 0], "seemed well worth while to chance it so": [65535, 0], "well worth while to chance it so he": [65535, 0], "worth while to chance it so he fell": [65535, 0], "while to chance it so he fell to": [65535, 0], "to chance it so he fell to groaning": [65535, 0], "chance it so he fell to groaning with": [65535, 0], "it so he fell to groaning with considerable": [65535, 0], "so he fell to groaning with considerable spirit": [65535, 0], "he fell to groaning with considerable spirit but": [65535, 0], "fell to groaning with considerable spirit but sid": [65535, 0], "to groaning with considerable spirit but sid slept": [65535, 0], "groaning with considerable spirit but sid slept on": [65535, 0], "with considerable spirit but sid slept on unconscious": [65535, 0], "considerable spirit but sid slept on unconscious tom": [65535, 0], "spirit but sid slept on unconscious tom groaned": [65535, 0], "but sid slept on unconscious tom groaned louder": [65535, 0], "sid slept on unconscious tom groaned louder and": [65535, 0], "slept on unconscious tom groaned louder and fancied": [65535, 0], "on unconscious tom groaned louder and fancied that": [65535, 0], "unconscious tom groaned louder and fancied that he": [65535, 0], "tom groaned louder and fancied that he began": [65535, 0], "groaned louder and fancied that he began to": [65535, 0], "louder and fancied that he began to feel": [65535, 0], "and fancied that he began to feel pain": [65535, 0], "fancied that he began to feel pain in": [65535, 0], "that he began to feel pain in the": [65535, 0], "he began to feel pain in the toe": [65535, 0], "began to feel pain in the toe no": [65535, 0], "to feel pain in the toe no result": [65535, 0], "feel pain in the toe no result from": [65535, 0], "pain in the toe no result from sid": [65535, 0], "in the toe no result from sid tom": [65535, 0], "the toe no result from sid tom was": [65535, 0], "toe no result from sid tom was panting": [65535, 0], "no result from sid tom was panting with": [65535, 0], "result from sid tom was panting with his": [65535, 0], "from sid tom was panting with his exertions": [65535, 0], "sid tom was panting with his exertions by": [65535, 0], "tom was panting with his exertions by this": [65535, 0], "was panting with his exertions by this time": [65535, 0], "panting with his exertions by this time he": [65535, 0], "with his exertions by this time he took": [65535, 0], "his exertions by this time he took a": [65535, 0], "exertions by this time he took a rest": [65535, 0], "by this time he took a rest and": [65535, 0], "this time he took a rest and then": [65535, 0], "time he took a rest and then swelled": [65535, 0], "he took a rest and then swelled himself": [65535, 0], "took a rest and then swelled himself up": [65535, 0], "a rest and then swelled himself up and": [65535, 0], "rest and then swelled himself up and fetched": [65535, 0], "and then swelled himself up and fetched a": [65535, 0], "then swelled himself up and fetched a succession": [65535, 0], "swelled himself up and fetched a succession of": [65535, 0], "himself up and fetched a succession of admirable": [65535, 0], "up and fetched a succession of admirable groans": [65535, 0], "and fetched a succession of admirable groans sid": [65535, 0], "fetched a succession of admirable groans sid snored": [65535, 0], "a succession of admirable groans sid snored on": [65535, 0], "succession of admirable groans sid snored on tom": [65535, 0], "of admirable groans sid snored on tom was": [65535, 0], "admirable groans sid snored on tom was aggravated": [65535, 0], "groans sid snored on tom was aggravated he": [65535, 0], "sid snored on tom was aggravated he said": [65535, 0], "snored on tom was aggravated he said sid": [65535, 0], "on tom was aggravated he said sid sid": [65535, 0], "tom was aggravated he said sid sid and": [65535, 0], "was aggravated he said sid sid and shook": [65535, 0], "aggravated he said sid sid and shook him": [65535, 0], "he said sid sid and shook him this": [65535, 0], "said sid sid and shook him this course": [65535, 0], "sid sid and shook him this course worked": [65535, 0], "sid and shook him this course worked well": [65535, 0], "and shook him this course worked well and": [65535, 0], "shook him this course worked well and tom": [65535, 0], "him this course worked well and tom began": [65535, 0], "this course worked well and tom began to": [65535, 0], "course worked well and tom began to groan": [65535, 0], "worked well and tom began to groan again": [65535, 0], "well and tom began to groan again sid": [65535, 0], "and tom began to groan again sid yawned": [65535, 0], "tom began to groan again sid yawned stretched": [65535, 0], "began to groan again sid yawned stretched then": [65535, 0], "to groan again sid yawned stretched then brought": [65535, 0], "groan again sid yawned stretched then brought himself": [65535, 0], "again sid yawned stretched then brought himself up": [65535, 0], "sid yawned stretched then brought himself up on": [65535, 0], "yawned stretched then brought himself up on his": [65535, 0], "stretched then brought himself up on his elbow": [65535, 0], "then brought himself up on his elbow with": [65535, 0], "brought himself up on his elbow with a": [65535, 0], "himself up on his elbow with a snort": [65535, 0], "up on his elbow with a snort and": [65535, 0], "on his elbow with a snort and began": [65535, 0], "his elbow with a snort and began to": [65535, 0], "elbow with a snort and began to stare": [65535, 0], "with a snort and began to stare at": [65535, 0], "a snort and began to stare at tom": [65535, 0], "snort and began to stare at tom tom": [65535, 0], "and began to stare at tom tom went": [65535, 0], "began to stare at tom tom went on": [65535, 0], "to stare at tom tom went on groaning": [65535, 0], "stare at tom tom went on groaning sid": [65535, 0], "at tom tom went on groaning sid said": [65535, 0], "tom tom went on groaning sid said tom": [65535, 0], "tom went on groaning sid said tom say": [65535, 0], "went on groaning sid said tom say tom": [65535, 0], "on groaning sid said tom say tom no": [65535, 0], "groaning sid said tom say tom no response": [65535, 0], "sid said tom say tom no response here": [65535, 0], "said tom say tom no response here tom": [65535, 0], "tom say tom no response here tom tom": [65535, 0], "say tom no response here tom tom what": [65535, 0], "tom no response here tom tom what is": [65535, 0], "no response here tom tom what is the": [65535, 0], "response here tom tom what is the matter": [65535, 0], "here tom tom what is the matter tom": [65535, 0], "tom tom what is the matter tom and": [65535, 0], "tom what is the matter tom and he": [65535, 0], "what is the matter tom and he shook": [65535, 0], "is the matter tom and he shook him": [65535, 0], "the matter tom and he shook him and": [65535, 0], "matter tom and he shook him and looked": [65535, 0], "tom and he shook him and looked in": [65535, 0], "and he shook him and looked in his": [65535, 0], "he shook him and looked in his face": [65535, 0], "shook him and looked in his face anxiously": [65535, 0], "him and looked in his face anxiously tom": [65535, 0], "and looked in his face anxiously tom moaned": [65535, 0], "looked in his face anxiously tom moaned out": [65535, 0], "in his face anxiously tom moaned out oh": [65535, 0], "his face anxiously tom moaned out oh don't": [65535, 0], "face anxiously tom moaned out oh don't sid": [65535, 0], "anxiously tom moaned out oh don't sid don't": [65535, 0], "tom moaned out oh don't sid don't joggle": [65535, 0], "moaned out oh don't sid don't joggle me": [65535, 0], "out oh don't sid don't joggle me why": [65535, 0], "oh don't sid don't joggle me why what's": [65535, 0], "don't sid don't joggle me why what's the": [65535, 0], "sid don't joggle me why what's the matter": [65535, 0], "don't joggle me why what's the matter tom": [65535, 0], "joggle me why what's the matter tom i": [65535, 0], "me why what's the matter tom i must": [65535, 0], "why what's the matter tom i must call": [65535, 0], "what's the matter tom i must call auntie": [65535, 0], "the matter tom i must call auntie no": [65535, 0], "matter tom i must call auntie no never": [65535, 0], "tom i must call auntie no never mind": [65535, 0], "i must call auntie no never mind it'll": [65535, 0], "must call auntie no never mind it'll be": [65535, 0], "call auntie no never mind it'll be over": [65535, 0], "auntie no never mind it'll be over by": [65535, 0], "no never mind it'll be over by and": [65535, 0], "never mind it'll be over by and by": [65535, 0], "mind it'll be over by and by maybe": [65535, 0], "it'll be over by and by maybe don't": [65535, 0], "be over by and by maybe don't call": [65535, 0], "over by and by maybe don't call anybody": [65535, 0], "by and by maybe don't call anybody but": [65535, 0], "and by maybe don't call anybody but i": [65535, 0], "by maybe don't call anybody but i must": [65535, 0], "maybe don't call anybody but i must don't": [65535, 0], "don't call anybody but i must don't groan": [65535, 0], "call anybody but i must don't groan so": [65535, 0], "anybody but i must don't groan so tom": [65535, 0], "but i must don't groan so tom it's": [65535, 0], "i must don't groan so tom it's awful": [65535, 0], "must don't groan so tom it's awful how": [65535, 0], "don't groan so tom it's awful how long": [65535, 0], "groan so tom it's awful how long you": [65535, 0], "so tom it's awful how long you been": [65535, 0], "tom it's awful how long you been this": [65535, 0], "it's awful how long you been this way": [65535, 0], "awful how long you been this way hours": [65535, 0], "how long you been this way hours ouch": [65535, 0], "long you been this way hours ouch oh": [65535, 0], "you been this way hours ouch oh don't": [65535, 0], "been this way hours ouch oh don't stir": [65535, 0], "this way hours ouch oh don't stir so": [65535, 0], "way hours ouch oh don't stir so sid": [65535, 0], "hours ouch oh don't stir so sid you'll": [65535, 0], "ouch oh don't stir so sid you'll kill": [65535, 0], "oh don't stir so sid you'll kill me": [65535, 0], "don't stir so sid you'll kill me tom": [65535, 0], "stir so sid you'll kill me tom why": [65535, 0], "so sid you'll kill me tom why didn't": [65535, 0], "sid you'll kill me tom why didn't you": [65535, 0], "you'll kill me tom why didn't you wake": [65535, 0], "kill me tom why didn't you wake me": [65535, 0], "me tom why didn't you wake me sooner": [65535, 0], "tom why didn't you wake me sooner oh": [65535, 0], "why didn't you wake me sooner oh tom": [65535, 0], "didn't you wake me sooner oh tom don't": [65535, 0], "you wake me sooner oh tom don't it": [65535, 0], "wake me sooner oh tom don't it makes": [65535, 0], "me sooner oh tom don't it makes my": [65535, 0], "sooner oh tom don't it makes my flesh": [65535, 0], "oh tom don't it makes my flesh crawl": [65535, 0], "tom don't it makes my flesh crawl to": [65535, 0], "don't it makes my flesh crawl to hear": [65535, 0], "it makes my flesh crawl to hear you": [65535, 0], "makes my flesh crawl to hear you tom": [65535, 0], "my flesh crawl to hear you tom what": [65535, 0], "flesh crawl to hear you tom what is": [65535, 0], "crawl to hear you tom what is the": [65535, 0], "to hear you tom what is the matter": [65535, 0], "hear you tom what is the matter i": [65535, 0], "you tom what is the matter i forgive": [65535, 0], "tom what is the matter i forgive you": [65535, 0], "what is the matter i forgive you everything": [65535, 0], "is the matter i forgive you everything sid": [65535, 0], "the matter i forgive you everything sid groan": [65535, 0], "matter i forgive you everything sid groan everything": [65535, 0], "i forgive you everything sid groan everything you've": [65535, 0], "forgive you everything sid groan everything you've ever": [65535, 0], "you everything sid groan everything you've ever done": [65535, 0], "everything sid groan everything you've ever done to": [65535, 0], "sid groan everything you've ever done to me": [65535, 0], "groan everything you've ever done to me when": [65535, 0], "everything you've ever done to me when i'm": [65535, 0], "you've ever done to me when i'm gone": [65535, 0], "ever done to me when i'm gone oh": [65535, 0], "done to me when i'm gone oh tom": [65535, 0], "to me when i'm gone oh tom you": [65535, 0], "me when i'm gone oh tom you ain't": [65535, 0], "when i'm gone oh tom you ain't dying": [65535, 0], "i'm gone oh tom you ain't dying are": [65535, 0], "gone oh tom you ain't dying are you": [65535, 0], "oh tom you ain't dying are you don't": [65535, 0], "tom you ain't dying are you don't tom": [65535, 0], "you ain't dying are you don't tom oh": [65535, 0], "ain't dying are you don't tom oh don't": [65535, 0], "dying are you don't tom oh don't maybe": [65535, 0], "are you don't tom oh don't maybe i": [65535, 0], "you don't tom oh don't maybe i forgive": [65535, 0], "don't tom oh don't maybe i forgive everybody": [65535, 0], "tom oh don't maybe i forgive everybody sid": [65535, 0], "oh don't maybe i forgive everybody sid groan": [65535, 0], "don't maybe i forgive everybody sid groan tell": [65535, 0], "maybe i forgive everybody sid groan tell 'em": [65535, 0], "i forgive everybody sid groan tell 'em so": [65535, 0], "forgive everybody sid groan tell 'em so sid": [65535, 0], "everybody sid groan tell 'em so sid and": [65535, 0], "sid groan tell 'em so sid and sid": [65535, 0], "groan tell 'em so sid and sid you": [65535, 0], "tell 'em so sid and sid you give": [65535, 0], "'em so sid and sid you give my": [65535, 0], "so sid and sid you give my window": [65535, 0], "sid and sid you give my window sash": [65535, 0], "and sid you give my window sash and": [65535, 0], "sid you give my window sash and my": [65535, 0], "you give my window sash and my cat": [65535, 0], "give my window sash and my cat with": [65535, 0], "my window sash and my cat with one": [65535, 0], "window sash and my cat with one eye": [65535, 0], "sash and my cat with one eye to": [65535, 0], "and my cat with one eye to that": [65535, 0], "my cat with one eye to that new": [65535, 0], "cat with one eye to that new girl": [65535, 0], "with one eye to that new girl that's": [65535, 0], "one eye to that new girl that's come": [65535, 0], "eye to that new girl that's come to": [65535, 0], "to that new girl that's come to town": [65535, 0], "that new girl that's come to town and": [65535, 0], "new girl that's come to town and tell": [65535, 0], "girl that's come to town and tell her": [65535, 0], "that's come to town and tell her but": [65535, 0], "come to town and tell her but sid": [65535, 0], "to town and tell her but sid had": [65535, 0], "town and tell her but sid had snatched": [65535, 0], "and tell her but sid had snatched his": [65535, 0], "tell her but sid had snatched his clothes": [65535, 0], "her but sid had snatched his clothes and": [65535, 0], "but sid had snatched his clothes and gone": [65535, 0], "sid had snatched his clothes and gone tom": [65535, 0], "had snatched his clothes and gone tom was": [65535, 0], "snatched his clothes and gone tom was suffering": [65535, 0], "his clothes and gone tom was suffering in": [65535, 0], "clothes and gone tom was suffering in reality": [65535, 0], "and gone tom was suffering in reality now": [65535, 0], "gone tom was suffering in reality now so": [65535, 0], "tom was suffering in reality now so handsomely": [65535, 0], "was suffering in reality now so handsomely was": [65535, 0], "suffering in reality now so handsomely was his": [65535, 0], "in reality now so handsomely was his imagination": [65535, 0], "reality now so handsomely was his imagination working": [65535, 0], "now so handsomely was his imagination working and": [65535, 0], "so handsomely was his imagination working and so": [65535, 0], "handsomely was his imagination working and so his": [65535, 0], "was his imagination working and so his groans": [65535, 0], "his imagination working and so his groans had": [65535, 0], "imagination working and so his groans had gathered": [65535, 0], "working and so his groans had gathered quite": [65535, 0], "and so his groans had gathered quite a": [65535, 0], "so his groans had gathered quite a genuine": [65535, 0], "his groans had gathered quite a genuine tone": [65535, 0], "groans had gathered quite a genuine tone sid": [65535, 0], "had gathered quite a genuine tone sid flew": [65535, 0], "gathered quite a genuine tone sid flew down": [65535, 0], "quite a genuine tone sid flew down stairs": [65535, 0], "a genuine tone sid flew down stairs and": [65535, 0], "genuine tone sid flew down stairs and said": [65535, 0], "tone sid flew down stairs and said oh": [65535, 0], "sid flew down stairs and said oh aunt": [65535, 0], "flew down stairs and said oh aunt polly": [65535, 0], "down stairs and said oh aunt polly come": [65535, 0], "stairs and said oh aunt polly come tom's": [65535, 0], "and said oh aunt polly come tom's dying": [65535, 0], "said oh aunt polly come tom's dying dying": [65535, 0], "oh aunt polly come tom's dying dying yes'm": [65535, 0], "aunt polly come tom's dying dying yes'm don't": [65535, 0], "polly come tom's dying dying yes'm don't wait": [65535, 0], "come tom's dying dying yes'm don't wait come": [65535, 0], "tom's dying dying yes'm don't wait come quick": [65535, 0], "dying dying yes'm don't wait come quick rubbage": [65535, 0], "dying yes'm don't wait come quick rubbage i": [65535, 0], "yes'm don't wait come quick rubbage i don't": [65535, 0], "don't wait come quick rubbage i don't believe": [65535, 0], "wait come quick rubbage i don't believe it": [65535, 0], "come quick rubbage i don't believe it but": [65535, 0], "quick rubbage i don't believe it but she": [65535, 0], "rubbage i don't believe it but she fled": [65535, 0], "i don't believe it but she fled up": [65535, 0], "don't believe it but she fled up stairs": [65535, 0], "believe it but she fled up stairs nevertheless": [65535, 0], "it but she fled up stairs nevertheless with": [65535, 0], "but she fled up stairs nevertheless with sid": [65535, 0], "she fled up stairs nevertheless with sid and": [65535, 0], "fled up stairs nevertheless with sid and mary": [65535, 0], "up stairs nevertheless with sid and mary at": [65535, 0], "stairs nevertheless with sid and mary at her": [65535, 0], "nevertheless with sid and mary at her heels": [65535, 0], "with sid and mary at her heels and": [65535, 0], "sid and mary at her heels and her": [65535, 0], "and mary at her heels and her face": [65535, 0], "mary at her heels and her face grew": [65535, 0], "at her heels and her face grew white": [65535, 0], "her heels and her face grew white too": [65535, 0], "heels and her face grew white too and": [65535, 0], "and her face grew white too and her": [65535, 0], "her face grew white too and her lip": [65535, 0], "face grew white too and her lip trembled": [65535, 0], "grew white too and her lip trembled when": [65535, 0], "white too and her lip trembled when she": [65535, 0], "too and her lip trembled when she reached": [65535, 0], "and her lip trembled when she reached the": [65535, 0], "her lip trembled when she reached the bedside": [65535, 0], "lip trembled when she reached the bedside she": [65535, 0], "trembled when she reached the bedside she gasped": [65535, 0], "when she reached the bedside she gasped out": [65535, 0], "she reached the bedside she gasped out you": [65535, 0], "reached the bedside she gasped out you tom": [65535, 0], "the bedside she gasped out you tom tom": [65535, 0], "bedside she gasped out you tom tom what's": [65535, 0], "she gasped out you tom tom what's the": [65535, 0], "gasped out you tom tom what's the matter": [65535, 0], "out you tom tom what's the matter with": [65535, 0], "you tom tom what's the matter with you": [65535, 0], "tom tom what's the matter with you oh": [65535, 0], "tom what's the matter with you oh auntie": [65535, 0], "what's the matter with you oh auntie i'm": [65535, 0], "the matter with you oh auntie i'm what's": [65535, 0], "matter with you oh auntie i'm what's the": [65535, 0], "with you oh auntie i'm what's the matter": [65535, 0], "you oh auntie i'm what's the matter with": [65535, 0], "oh auntie i'm what's the matter with you": [65535, 0], "auntie i'm what's the matter with you what": [65535, 0], "i'm what's the matter with you what is": [65535, 0], "what's the matter with you what is the": [65535, 0], "the matter with you what is the matter": [65535, 0], "matter with you what is the matter with": [65535, 0], "with you what is the matter with you": [65535, 0], "you what is the matter with you child": [65535, 0], "what is the matter with you child oh": [65535, 0], "is the matter with you child oh auntie": [65535, 0], "the matter with you child oh auntie my": [65535, 0], "matter with you child oh auntie my sore": [65535, 0], "with you child oh auntie my sore toe's": [65535, 0], "you child oh auntie my sore toe's mortified": [65535, 0], "child oh auntie my sore toe's mortified the": [65535, 0], "oh auntie my sore toe's mortified the old": [65535, 0], "auntie my sore toe's mortified the old lady": [65535, 0], "my sore toe's mortified the old lady sank": [65535, 0], "sore toe's mortified the old lady sank down": [65535, 0], "toe's mortified the old lady sank down into": [65535, 0], "mortified the old lady sank down into a": [65535, 0], "the old lady sank down into a chair": [65535, 0], "old lady sank down into a chair and": [65535, 0], "lady sank down into a chair and laughed": [65535, 0], "sank down into a chair and laughed a": [65535, 0], "down into a chair and laughed a little": [65535, 0], "into a chair and laughed a little then": [65535, 0], "a chair and laughed a little then cried": [65535, 0], "chair and laughed a little then cried a": [65535, 0], "and laughed a little then cried a little": [65535, 0], "laughed a little then cried a little then": [65535, 0], "a little then cried a little then did": [65535, 0], "little then cried a little then did both": [65535, 0], "then cried a little then did both together": [65535, 0], "cried a little then did both together this": [65535, 0], "a little then did both together this restored": [65535, 0], "little then did both together this restored her": [65535, 0], "then did both together this restored her and": [65535, 0], "did both together this restored her and she": [65535, 0], "both together this restored her and she said": [65535, 0], "together this restored her and she said tom": [65535, 0], "this restored her and she said tom what": [65535, 0], "restored her and she said tom what a": [65535, 0], "her and she said tom what a turn": [65535, 0], "and she said tom what a turn you": [65535, 0], "she said tom what a turn you did": [65535, 0], "said tom what a turn you did give": [65535, 0], "tom what a turn you did give me": [65535, 0], "what a turn you did give me now": [65535, 0], "a turn you did give me now you": [65535, 0], "turn you did give me now you shut": [65535, 0], "you did give me now you shut up": [65535, 0], "did give me now you shut up that": [65535, 0], "give me now you shut up that nonsense": [65535, 0], "me now you shut up that nonsense and": [65535, 0], "now you shut up that nonsense and climb": [65535, 0], "you shut up that nonsense and climb out": [65535, 0], "shut up that nonsense and climb out of": [65535, 0], "up that nonsense and climb out of this": [65535, 0], "that nonsense and climb out of this the": [65535, 0], "nonsense and climb out of this the groans": [65535, 0], "and climb out of this the groans ceased": [65535, 0], "climb out of this the groans ceased and": [65535, 0], "out of this the groans ceased and the": [65535, 0], "of this the groans ceased and the pain": [65535, 0], "this the groans ceased and the pain vanished": [65535, 0], "the groans ceased and the pain vanished from": [65535, 0], "groans ceased and the pain vanished from the": [65535, 0], "ceased and the pain vanished from the toe": [65535, 0], "and the pain vanished from the toe the": [65535, 0], "the pain vanished from the toe the boy": [65535, 0], "pain vanished from the toe the boy felt": [65535, 0], "vanished from the toe the boy felt a": [65535, 0], "from the toe the boy felt a little": [65535, 0], "the toe the boy felt a little foolish": [65535, 0], "toe the boy felt a little foolish and": [65535, 0], "the boy felt a little foolish and he": [65535, 0], "boy felt a little foolish and he said": [65535, 0], "felt a little foolish and he said aunt": [65535, 0], "a little foolish and he said aunt polly": [65535, 0], "little foolish and he said aunt polly it": [65535, 0], "foolish and he said aunt polly it seemed": [65535, 0], "and he said aunt polly it seemed mortified": [65535, 0], "he said aunt polly it seemed mortified and": [65535, 0], "said aunt polly it seemed mortified and it": [65535, 0], "aunt polly it seemed mortified and it hurt": [65535, 0], "polly it seemed mortified and it hurt so": [65535, 0], "it seemed mortified and it hurt so i": [65535, 0], "seemed mortified and it hurt so i never": [65535, 0], "mortified and it hurt so i never minded": [65535, 0], "and it hurt so i never minded my": [65535, 0], "it hurt so i never minded my tooth": [65535, 0], "hurt so i never minded my tooth at": [65535, 0], "so i never minded my tooth at all": [65535, 0], "i never minded my tooth at all your": [65535, 0], "never minded my tooth at all your tooth": [65535, 0], "minded my tooth at all your tooth indeed": [65535, 0], "my tooth at all your tooth indeed what's": [65535, 0], "tooth at all your tooth indeed what's the": [65535, 0], "at all your tooth indeed what's the matter": [65535, 0], "all your tooth indeed what's the matter with": [65535, 0], "your tooth indeed what's the matter with your": [65535, 0], "tooth indeed what's the matter with your tooth": [65535, 0], "indeed what's the matter with your tooth one": [65535, 0], "what's the matter with your tooth one of": [65535, 0], "the matter with your tooth one of them's": [65535, 0], "matter with your tooth one of them's loose": [65535, 0], "with your tooth one of them's loose and": [65535, 0], "your tooth one of them's loose and it": [65535, 0], "tooth one of them's loose and it aches": [65535, 0], "one of them's loose and it aches perfectly": [65535, 0], "of them's loose and it aches perfectly awful": [65535, 0], "them's loose and it aches perfectly awful there": [65535, 0], "loose and it aches perfectly awful there there": [65535, 0], "and it aches perfectly awful there there now": [65535, 0], "it aches perfectly awful there there now don't": [65535, 0], "aches perfectly awful there there now don't begin": [65535, 0], "perfectly awful there there now don't begin that": [65535, 0], "awful there there now don't begin that groaning": [65535, 0], "there there now don't begin that groaning again": [65535, 0], "there now don't begin that groaning again open": [65535, 0], "now don't begin that groaning again open your": [65535, 0], "don't begin that groaning again open your mouth": [65535, 0], "begin that groaning again open your mouth well": [65535, 0], "that groaning again open your mouth well your": [65535, 0], "groaning again open your mouth well your tooth": [65535, 0], "again open your mouth well your tooth is": [65535, 0], "open your mouth well your tooth is loose": [65535, 0], "your mouth well your tooth is loose but": [65535, 0], "mouth well your tooth is loose but you're": [65535, 0], "well your tooth is loose but you're not": [65535, 0], "your tooth is loose but you're not going": [65535, 0], "tooth is loose but you're not going to": [65535, 0], "is loose but you're not going to die": [65535, 0], "loose but you're not going to die about": [65535, 0], "but you're not going to die about that": [65535, 0], "you're not going to die about that mary": [65535, 0], "not going to die about that mary get": [65535, 0], "going to die about that mary get me": [65535, 0], "to die about that mary get me a": [65535, 0], "die about that mary get me a silk": [65535, 0], "about that mary get me a silk thread": [65535, 0], "that mary get me a silk thread and": [65535, 0], "mary get me a silk thread and a": [65535, 0], "get me a silk thread and a chunk": [65535, 0], "me a silk thread and a chunk of": [65535, 0], "a silk thread and a chunk of fire": [65535, 0], "silk thread and a chunk of fire out": [65535, 0], "thread and a chunk of fire out of": [65535, 0], "and a chunk of fire out of the": [65535, 0], "a chunk of fire out of the kitchen": [65535, 0], "chunk of fire out of the kitchen tom": [65535, 0], "of fire out of the kitchen tom said": [65535, 0], "fire out of the kitchen tom said oh": [65535, 0], "out of the kitchen tom said oh please": [65535, 0], "of the kitchen tom said oh please auntie": [65535, 0], "the kitchen tom said oh please auntie don't": [65535, 0], "kitchen tom said oh please auntie don't pull": [65535, 0], "tom said oh please auntie don't pull it": [65535, 0], "said oh please auntie don't pull it out": [65535, 0], "oh please auntie don't pull it out it": [65535, 0], "please auntie don't pull it out it don't": [65535, 0], "auntie don't pull it out it don't hurt": [65535, 0], "don't pull it out it don't hurt any": [65535, 0], "pull it out it don't hurt any more": [65535, 0], "it out it don't hurt any more i": [65535, 0], "out it don't hurt any more i wish": [65535, 0], "it don't hurt any more i wish i": [65535, 0], "don't hurt any more i wish i may": [65535, 0], "hurt any more i wish i may never": [65535, 0], "any more i wish i may never stir": [65535, 0], "more i wish i may never stir if": [65535, 0], "i wish i may never stir if it": [65535, 0], "wish i may never stir if it does": [65535, 0], "i may never stir if it does please": [65535, 0], "may never stir if it does please don't": [65535, 0], "never stir if it does please don't auntie": [65535, 0], "stir if it does please don't auntie i": [65535, 0], "if it does please don't auntie i don't": [65535, 0], "it does please don't auntie i don't want": [65535, 0], "does please don't auntie i don't want to": [65535, 0], "please don't auntie i don't want to stay": [65535, 0], "don't auntie i don't want to stay home": [65535, 0], "auntie i don't want to stay home from": [65535, 0], "i don't want to stay home from school": [65535, 0], "don't want to stay home from school oh": [65535, 0], "want to stay home from school oh you": [65535, 0], "to stay home from school oh you don't": [65535, 0], "stay home from school oh you don't don't": [65535, 0], "home from school oh you don't don't you": [65535, 0], "from school oh you don't don't you so": [65535, 0], "school oh you don't don't you so all": [65535, 0], "oh you don't don't you so all this": [65535, 0], "you don't don't you so all this row": [65535, 0], "don't don't you so all this row was": [65535, 0], "don't you so all this row was because": [65535, 0], "you so all this row was because you": [65535, 0], "so all this row was because you thought": [65535, 0], "all this row was because you thought you'd": [65535, 0], "this row was because you thought you'd get": [65535, 0], "row was because you thought you'd get to": [65535, 0], "was because you thought you'd get to stay": [65535, 0], "because you thought you'd get to stay home": [65535, 0], "you thought you'd get to stay home from": [65535, 0], "thought you'd get to stay home from school": [65535, 0], "you'd get to stay home from school and": [65535, 0], "get to stay home from school and go": [65535, 0], "to stay home from school and go a": [65535, 0], "stay home from school and go a fishing": [65535, 0], "home from school and go a fishing tom": [65535, 0], "from school and go a fishing tom tom": [65535, 0], "school and go a fishing tom tom i": [65535, 0], "and go a fishing tom tom i love": [65535, 0], "go a fishing tom tom i love you": [65535, 0], "a fishing tom tom i love you so": [65535, 0], "fishing tom tom i love you so and": [65535, 0], "tom tom i love you so and you": [65535, 0], "tom i love you so and you seem": [65535, 0], "i love you so and you seem to": [65535, 0], "love you so and you seem to try": [65535, 0], "you so and you seem to try every": [65535, 0], "so and you seem to try every way": [65535, 0], "and you seem to try every way you": [65535, 0], "you seem to try every way you can": [65535, 0], "seem to try every way you can to": [65535, 0], "to try every way you can to break": [65535, 0], "try every way you can to break my": [65535, 0], "every way you can to break my old": [65535, 0], "way you can to break my old heart": [65535, 0], "you can to break my old heart with": [65535, 0], "can to break my old heart with your": [65535, 0], "to break my old heart with your outrageousness": [65535, 0], "break my old heart with your outrageousness by": [65535, 0], "my old heart with your outrageousness by this": [65535, 0], "old heart with your outrageousness by this time": [65535, 0], "heart with your outrageousness by this time the": [65535, 0], "with your outrageousness by this time the dental": [65535, 0], "your outrageousness by this time the dental instruments": [65535, 0], "outrageousness by this time the dental instruments were": [65535, 0], "by this time the dental instruments were ready": [65535, 0], "this time the dental instruments were ready the": [65535, 0], "time the dental instruments were ready the old": [65535, 0], "the dental instruments were ready the old lady": [65535, 0], "dental instruments were ready the old lady made": [65535, 0], "instruments were ready the old lady made one": [65535, 0], "were ready the old lady made one end": [65535, 0], "ready the old lady made one end of": [65535, 0], "the old lady made one end of the": [65535, 0], "old lady made one end of the silk": [65535, 0], "lady made one end of the silk thread": [65535, 0], "made one end of the silk thread fast": [65535, 0], "one end of the silk thread fast to": [65535, 0], "end of the silk thread fast to tom's": [65535, 0], "of the silk thread fast to tom's tooth": [65535, 0], "the silk thread fast to tom's tooth with": [65535, 0], "silk thread fast to tom's tooth with a": [65535, 0], "thread fast to tom's tooth with a loop": [65535, 0], "fast to tom's tooth with a loop and": [65535, 0], "to tom's tooth with a loop and tied": [65535, 0], "tom's tooth with a loop and tied the": [65535, 0], "tooth with a loop and tied the other": [65535, 0], "with a loop and tied the other to": [65535, 0], "a loop and tied the other to the": [65535, 0], "loop and tied the other to the bedpost": [65535, 0], "and tied the other to the bedpost then": [65535, 0], "tied the other to the bedpost then she": [65535, 0], "the other to the bedpost then she seized": [65535, 0], "other to the bedpost then she seized the": [65535, 0], "to the bedpost then she seized the chunk": [65535, 0], "the bedpost then she seized the chunk of": [65535, 0], "bedpost then she seized the chunk of fire": [65535, 0], "then she seized the chunk of fire and": [65535, 0], "she seized the chunk of fire and suddenly": [65535, 0], "seized the chunk of fire and suddenly thrust": [65535, 0], "the chunk of fire and suddenly thrust it": [65535, 0], "chunk of fire and suddenly thrust it almost": [65535, 0], "of fire and suddenly thrust it almost into": [65535, 0], "fire and suddenly thrust it almost into the": [65535, 0], "and suddenly thrust it almost into the boy's": [65535, 0], "suddenly thrust it almost into the boy's face": [65535, 0], "thrust it almost into the boy's face the": [65535, 0], "it almost into the boy's face the tooth": [65535, 0], "almost into the boy's face the tooth hung": [65535, 0], "into the boy's face the tooth hung dangling": [65535, 0], "the boy's face the tooth hung dangling by": [65535, 0], "boy's face the tooth hung dangling by the": [65535, 0], "face the tooth hung dangling by the bedpost": [65535, 0], "the tooth hung dangling by the bedpost now": [65535, 0], "tooth hung dangling by the bedpost now but": [65535, 0], "hung dangling by the bedpost now but all": [65535, 0], "dangling by the bedpost now but all trials": [65535, 0], "by the bedpost now but all trials bring": [65535, 0], "the bedpost now but all trials bring their": [65535, 0], "bedpost now but all trials bring their compensations": [65535, 0], "now but all trials bring their compensations as": [65535, 0], "but all trials bring their compensations as tom": [65535, 0], "all trials bring their compensations as tom wended": [65535, 0], "trials bring their compensations as tom wended to": [65535, 0], "bring their compensations as tom wended to school": [65535, 0], "their compensations as tom wended to school after": [65535, 0], "compensations as tom wended to school after breakfast": [65535, 0], "as tom wended to school after breakfast he": [65535, 0], "tom wended to school after breakfast he was": [65535, 0], "wended to school after breakfast he was the": [65535, 0], "to school after breakfast he was the envy": [65535, 0], "school after breakfast he was the envy of": [65535, 0], "after breakfast he was the envy of every": [65535, 0], "breakfast he was the envy of every boy": [65535, 0], "he was the envy of every boy he": [65535, 0], "was the envy of every boy he met": [65535, 0], "the envy of every boy he met because": [65535, 0], "envy of every boy he met because the": [65535, 0], "of every boy he met because the gap": [65535, 0], "every boy he met because the gap in": [65535, 0], "boy he met because the gap in his": [65535, 0], "he met because the gap in his upper": [65535, 0], "met because the gap in his upper row": [65535, 0], "because the gap in his upper row of": [65535, 0], "the gap in his upper row of teeth": [65535, 0], "gap in his upper row of teeth enabled": [65535, 0], "in his upper row of teeth enabled him": [65535, 0], "his upper row of teeth enabled him to": [65535, 0], "upper row of teeth enabled him to expectorate": [65535, 0], "row of teeth enabled him to expectorate in": [65535, 0], "of teeth enabled him to expectorate in a": [65535, 0], "teeth enabled him to expectorate in a new": [65535, 0], "enabled him to expectorate in a new and": [65535, 0], "him to expectorate in a new and admirable": [65535, 0], "to expectorate in a new and admirable way": [65535, 0], "expectorate in a new and admirable way he": [65535, 0], "in a new and admirable way he gathered": [65535, 0], "a new and admirable way he gathered quite": [65535, 0], "new and admirable way he gathered quite a": [65535, 0], "and admirable way he gathered quite a following": [65535, 0], "admirable way he gathered quite a following of": [65535, 0], "way he gathered quite a following of lads": [65535, 0], "he gathered quite a following of lads interested": [65535, 0], "gathered quite a following of lads interested in": [65535, 0], "quite a following of lads interested in the": [65535, 0], "a following of lads interested in the exhibition": [65535, 0], "following of lads interested in the exhibition and": [65535, 0], "of lads interested in the exhibition and one": [65535, 0], "lads interested in the exhibition and one that": [65535, 0], "interested in the exhibition and one that had": [65535, 0], "in the exhibition and one that had cut": [65535, 0], "the exhibition and one that had cut his": [65535, 0], "exhibition and one that had cut his finger": [65535, 0], "and one that had cut his finger and": [65535, 0], "one that had cut his finger and had": [65535, 0], "that had cut his finger and had been": [65535, 0], "had cut his finger and had been a": [65535, 0], "cut his finger and had been a centre": [65535, 0], "his finger and had been a centre of": [65535, 0], "finger and had been a centre of fascination": [65535, 0], "and had been a centre of fascination and": [65535, 0], "had been a centre of fascination and homage": [65535, 0], "been a centre of fascination and homage up": [65535, 0], "a centre of fascination and homage up to": [65535, 0], "centre of fascination and homage up to this": [65535, 0], "of fascination and homage up to this time": [65535, 0], "fascination and homage up to this time now": [65535, 0], "and homage up to this time now found": [65535, 0], "homage up to this time now found himself": [65535, 0], "up to this time now found himself suddenly": [65535, 0], "to this time now found himself suddenly without": [65535, 0], "this time now found himself suddenly without an": [65535, 0], "time now found himself suddenly without an adherent": [65535, 0], "now found himself suddenly without an adherent and": [65535, 0], "found himself suddenly without an adherent and shorn": [65535, 0], "himself suddenly without an adherent and shorn of": [65535, 0], "suddenly without an adherent and shorn of his": [65535, 0], "without an adherent and shorn of his glory": [65535, 0], "an adherent and shorn of his glory his": [65535, 0], "adherent and shorn of his glory his heart": [65535, 0], "and shorn of his glory his heart was": [65535, 0], "shorn of his glory his heart was heavy": [65535, 0], "of his glory his heart was heavy and": [65535, 0], "his glory his heart was heavy and he": [65535, 0], "glory his heart was heavy and he said": [65535, 0], "his heart was heavy and he said with": [65535, 0], "heart was heavy and he said with a": [65535, 0], "was heavy and he said with a disdain": [65535, 0], "heavy and he said with a disdain which": [65535, 0], "and he said with a disdain which he": [65535, 0], "he said with a disdain which he did": [65535, 0], "said with a disdain which he did not": [65535, 0], "with a disdain which he did not feel": [65535, 0], "a disdain which he did not feel that": [65535, 0], "disdain which he did not feel that it": [65535, 0], "which he did not feel that it wasn't": [65535, 0], "he did not feel that it wasn't anything": [65535, 0], "did not feel that it wasn't anything to": [65535, 0], "not feel that it wasn't anything to spit": [65535, 0], "feel that it wasn't anything to spit like": [65535, 0], "that it wasn't anything to spit like tom": [65535, 0], "it wasn't anything to spit like tom sawyer": [65535, 0], "wasn't anything to spit like tom sawyer but": [65535, 0], "anything to spit like tom sawyer but another": [65535, 0], "to spit like tom sawyer but another boy": [65535, 0], "spit like tom sawyer but another boy said": [65535, 0], "like tom sawyer but another boy said sour": [65535, 0], "tom sawyer but another boy said sour grapes": [65535, 0], "sawyer but another boy said sour grapes and": [65535, 0], "but another boy said sour grapes and he": [65535, 0], "another boy said sour grapes and he wandered": [65535, 0], "boy said sour grapes and he wandered away": [65535, 0], "said sour grapes and he wandered away a": [65535, 0], "sour grapes and he wandered away a dismantled": [65535, 0], "grapes and he wandered away a dismantled hero": [65535, 0], "and he wandered away a dismantled hero shortly": [65535, 0], "he wandered away a dismantled hero shortly tom": [65535, 0], "wandered away a dismantled hero shortly tom came": [65535, 0], "away a dismantled hero shortly tom came upon": [65535, 0], "a dismantled hero shortly tom came upon the": [65535, 0], "dismantled hero shortly tom came upon the juvenile": [65535, 0], "hero shortly tom came upon the juvenile pariah": [65535, 0], "shortly tom came upon the juvenile pariah of": [65535, 0], "tom came upon the juvenile pariah of the": [65535, 0], "came upon the juvenile pariah of the village": [65535, 0], "upon the juvenile pariah of the village huckleberry": [65535, 0], "the juvenile pariah of the village huckleberry finn": [65535, 0], "juvenile pariah of the village huckleberry finn son": [65535, 0], "pariah of the village huckleberry finn son of": [65535, 0], "of the village huckleberry finn son of the": [65535, 0], "the village huckleberry finn son of the town": [65535, 0], "village huckleberry finn son of the town drunkard": [65535, 0], "huckleberry finn son of the town drunkard huckleberry": [65535, 0], "finn son of the town drunkard huckleberry was": [65535, 0], "son of the town drunkard huckleberry was cordially": [65535, 0], "of the town drunkard huckleberry was cordially hated": [65535, 0], "the town drunkard huckleberry was cordially hated and": [65535, 0], "town drunkard huckleberry was cordially hated and dreaded": [65535, 0], "drunkard huckleberry was cordially hated and dreaded by": [65535, 0], "huckleberry was cordially hated and dreaded by all": [65535, 0], "was cordially hated and dreaded by all the": [65535, 0], "cordially hated and dreaded by all the mothers": [65535, 0], "hated and dreaded by all the mothers of": [65535, 0], "and dreaded by all the mothers of the": [65535, 0], "dreaded by all the mothers of the town": [65535, 0], "by all the mothers of the town because": [65535, 0], "all the mothers of the town because he": [65535, 0], "the mothers of the town because he was": [65535, 0], "mothers of the town because he was idle": [65535, 0], "of the town because he was idle and": [65535, 0], "the town because he was idle and lawless": [65535, 0], "town because he was idle and lawless and": [65535, 0], "because he was idle and lawless and vulgar": [65535, 0], "he was idle and lawless and vulgar and": [65535, 0], "was idle and lawless and vulgar and bad": [65535, 0], "idle and lawless and vulgar and bad and": [65535, 0], "and lawless and vulgar and bad and because": [65535, 0], "lawless and vulgar and bad and because all": [65535, 0], "and vulgar and bad and because all their": [65535, 0], "vulgar and bad and because all their children": [65535, 0], "and bad and because all their children admired": [65535, 0], "bad and because all their children admired him": [65535, 0], "and because all their children admired him so": [65535, 0], "because all their children admired him so and": [65535, 0], "all their children admired him so and delighted": [65535, 0], "their children admired him so and delighted in": [65535, 0], "children admired him so and delighted in his": [65535, 0], "admired him so and delighted in his forbidden": [65535, 0], "him so and delighted in his forbidden society": [65535, 0], "so and delighted in his forbidden society and": [65535, 0], "and delighted in his forbidden society and wished": [65535, 0], "delighted in his forbidden society and wished they": [65535, 0], "in his forbidden society and wished they dared": [65535, 0], "his forbidden society and wished they dared to": [65535, 0], "forbidden society and wished they dared to be": [65535, 0], "society and wished they dared to be like": [65535, 0], "and wished they dared to be like him": [65535, 0], "wished they dared to be like him tom": [65535, 0], "they dared to be like him tom was": [65535, 0], "dared to be like him tom was like": [65535, 0], "to be like him tom was like the": [65535, 0], "be like him tom was like the rest": [65535, 0], "like him tom was like the rest of": [65535, 0], "him tom was like the rest of the": [65535, 0], "tom was like the rest of the respectable": [65535, 0], "was like the rest of the respectable boys": [65535, 0], "like the rest of the respectable boys in": [65535, 0], "the rest of the respectable boys in that": [65535, 0], "rest of the respectable boys in that he": [65535, 0], "of the respectable boys in that he envied": [65535, 0], "the respectable boys in that he envied huckleberry": [65535, 0], "respectable boys in that he envied huckleberry his": [65535, 0], "boys in that he envied huckleberry his gaudy": [65535, 0], "in that he envied huckleberry his gaudy outcast": [65535, 0], "that he envied huckleberry his gaudy outcast condition": [65535, 0], "he envied huckleberry his gaudy outcast condition and": [65535, 0], "envied huckleberry his gaudy outcast condition and was": [65535, 0], "huckleberry his gaudy outcast condition and was under": [65535, 0], "his gaudy outcast condition and was under strict": [65535, 0], "gaudy outcast condition and was under strict orders": [65535, 0], "outcast condition and was under strict orders not": [65535, 0], "condition and was under strict orders not to": [65535, 0], "and was under strict orders not to play": [65535, 0], "was under strict orders not to play with": [65535, 0], "under strict orders not to play with him": [65535, 0], "strict orders not to play with him so": [65535, 0], "orders not to play with him so he": [65535, 0], "not to play with him so he played": [65535, 0], "to play with him so he played with": [65535, 0], "play with him so he played with him": [65535, 0], "with him so he played with him every": [65535, 0], "him so he played with him every time": [65535, 0], "so he played with him every time he": [65535, 0], "he played with him every time he got": [65535, 0], "played with him every time he got a": [65535, 0], "with him every time he got a chance": [65535, 0], "him every time he got a chance huckleberry": [65535, 0], "every time he got a chance huckleberry was": [65535, 0], "time he got a chance huckleberry was always": [65535, 0], "he got a chance huckleberry was always dressed": [65535, 0], "got a chance huckleberry was always dressed in": [65535, 0], "a chance huckleberry was always dressed in the": [65535, 0], "chance huckleberry was always dressed in the cast": [65535, 0], "huckleberry was always dressed in the cast off": [65535, 0], "was always dressed in the cast off clothes": [65535, 0], "always dressed in the cast off clothes of": [65535, 0], "dressed in the cast off clothes of full": [65535, 0], "in the cast off clothes of full grown": [65535, 0], "the cast off clothes of full grown men": [65535, 0], "cast off clothes of full grown men and": [65535, 0], "off clothes of full grown men and they": [65535, 0], "clothes of full grown men and they were": [65535, 0], "of full grown men and they were in": [65535, 0], "full grown men and they were in perennial": [65535, 0], "grown men and they were in perennial bloom": [65535, 0], "men and they were in perennial bloom and": [65535, 0], "and they were in perennial bloom and fluttering": [65535, 0], "they were in perennial bloom and fluttering with": [65535, 0], "were in perennial bloom and fluttering with rags": [65535, 0], "in perennial bloom and fluttering with rags his": [65535, 0], "perennial bloom and fluttering with rags his hat": [65535, 0], "bloom and fluttering with rags his hat was": [65535, 0], "and fluttering with rags his hat was a": [65535, 0], "fluttering with rags his hat was a vast": [65535, 0], "with rags his hat was a vast ruin": [65535, 0], "rags his hat was a vast ruin with": [65535, 0], "his hat was a vast ruin with a": [65535, 0], "hat was a vast ruin with a wide": [65535, 0], "was a vast ruin with a wide crescent": [65535, 0], "a vast ruin with a wide crescent lopped": [65535, 0], "vast ruin with a wide crescent lopped out": [65535, 0], "ruin with a wide crescent lopped out of": [65535, 0], "with a wide crescent lopped out of its": [65535, 0], "a wide crescent lopped out of its brim": [65535, 0], "wide crescent lopped out of its brim his": [65535, 0], "crescent lopped out of its brim his coat": [65535, 0], "lopped out of its brim his coat when": [65535, 0], "out of its brim his coat when he": [65535, 0], "of its brim his coat when he wore": [65535, 0], "its brim his coat when he wore one": [65535, 0], "brim his coat when he wore one hung": [65535, 0], "his coat when he wore one hung nearly": [65535, 0], "coat when he wore one hung nearly to": [65535, 0], "when he wore one hung nearly to his": [65535, 0], "he wore one hung nearly to his heels": [65535, 0], "wore one hung nearly to his heels and": [65535, 0], "one hung nearly to his heels and had": [65535, 0], "hung nearly to his heels and had the": [65535, 0], "nearly to his heels and had the rearward": [65535, 0], "to his heels and had the rearward buttons": [65535, 0], "his heels and had the rearward buttons far": [65535, 0], "heels and had the rearward buttons far down": [65535, 0], "and had the rearward buttons far down the": [65535, 0], "had the rearward buttons far down the back": [65535, 0], "the rearward buttons far down the back but": [65535, 0], "rearward buttons far down the back but one": [65535, 0], "buttons far down the back but one suspender": [65535, 0], "far down the back but one suspender supported": [65535, 0], "down the back but one suspender supported his": [65535, 0], "the back but one suspender supported his trousers": [65535, 0], "back but one suspender supported his trousers the": [65535, 0], "but one suspender supported his trousers the seat": [65535, 0], "one suspender supported his trousers the seat of": [65535, 0], "suspender supported his trousers the seat of the": [65535, 0], "supported his trousers the seat of the trousers": [65535, 0], "his trousers the seat of the trousers bagged": [65535, 0], "trousers the seat of the trousers bagged low": [65535, 0], "the seat of the trousers bagged low and": [65535, 0], "seat of the trousers bagged low and contained": [65535, 0], "of the trousers bagged low and contained nothing": [65535, 0], "the trousers bagged low and contained nothing the": [65535, 0], "trousers bagged low and contained nothing the fringed": [65535, 0], "bagged low and contained nothing the fringed legs": [65535, 0], "low and contained nothing the fringed legs dragged": [65535, 0], "and contained nothing the fringed legs dragged in": [65535, 0], "contained nothing the fringed legs dragged in the": [65535, 0], "nothing the fringed legs dragged in the dirt": [65535, 0], "the fringed legs dragged in the dirt when": [65535, 0], "fringed legs dragged in the dirt when not": [65535, 0], "legs dragged in the dirt when not rolled": [65535, 0], "dragged in the dirt when not rolled up": [65535, 0], "in the dirt when not rolled up huckleberry": [65535, 0], "the dirt when not rolled up huckleberry came": [65535, 0], "dirt when not rolled up huckleberry came and": [65535, 0], "when not rolled up huckleberry came and went": [65535, 0], "not rolled up huckleberry came and went at": [65535, 0], "rolled up huckleberry came and went at his": [65535, 0], "up huckleberry came and went at his own": [65535, 0], "huckleberry came and went at his own free": [65535, 0], "came and went at his own free will": [65535, 0], "and went at his own free will he": [65535, 0], "went at his own free will he slept": [65535, 0], "at his own free will he slept on": [65535, 0], "his own free will he slept on doorsteps": [65535, 0], "own free will he slept on doorsteps in": [65535, 0], "free will he slept on doorsteps in fine": [65535, 0], "will he slept on doorsteps in fine weather": [65535, 0], "he slept on doorsteps in fine weather and": [65535, 0], "slept on doorsteps in fine weather and in": [65535, 0], "on doorsteps in fine weather and in empty": [65535, 0], "doorsteps in fine weather and in empty hogsheads": [65535, 0], "in fine weather and in empty hogsheads in": [65535, 0], "fine weather and in empty hogsheads in wet": [65535, 0], "weather and in empty hogsheads in wet he": [65535, 0], "and in empty hogsheads in wet he did": [65535, 0], "in empty hogsheads in wet he did not": [65535, 0], "empty hogsheads in wet he did not have": [65535, 0], "hogsheads in wet he did not have to": [65535, 0], "in wet he did not have to go": [65535, 0], "wet he did not have to go to": [65535, 0], "he did not have to go to school": [65535, 0], "did not have to go to school or": [65535, 0], "not have to go to school or to": [65535, 0], "have to go to school or to church": [65535, 0], "to go to school or to church or": [65535, 0], "go to school or to church or call": [65535, 0], "to school or to church or call any": [65535, 0], "school or to church or call any being": [65535, 0], "or to church or call any being master": [65535, 0], "to church or call any being master or": [65535, 0], "church or call any being master or obey": [65535, 0], "or call any being master or obey anybody": [65535, 0], "call any being master or obey anybody he": [65535, 0], "any being master or obey anybody he could": [65535, 0], "being master or obey anybody he could go": [65535, 0], "master or obey anybody he could go fishing": [65535, 0], "or obey anybody he could go fishing or": [65535, 0], "obey anybody he could go fishing or swimming": [65535, 0], "anybody he could go fishing or swimming when": [65535, 0], "he could go fishing or swimming when and": [65535, 0], "could go fishing or swimming when and where": [65535, 0], "go fishing or swimming when and where he": [65535, 0], "fishing or swimming when and where he chose": [65535, 0], "or swimming when and where he chose and": [65535, 0], "swimming when and where he chose and stay": [65535, 0], "when and where he chose and stay as": [65535, 0], "and where he chose and stay as long": [65535, 0], "where he chose and stay as long as": [65535, 0], "he chose and stay as long as it": [65535, 0], "chose and stay as long as it suited": [65535, 0], "and stay as long as it suited him": [65535, 0], "stay as long as it suited him nobody": [65535, 0], "as long as it suited him nobody forbade": [65535, 0], "long as it suited him nobody forbade him": [65535, 0], "as it suited him nobody forbade him to": [65535, 0], "it suited him nobody forbade him to fight": [65535, 0], "suited him nobody forbade him to fight he": [65535, 0], "him nobody forbade him to fight he could": [65535, 0], "nobody forbade him to fight he could sit": [65535, 0], "forbade him to fight he could sit up": [65535, 0], "him to fight he could sit up as": [65535, 0], "to fight he could sit up as late": [65535, 0], "fight he could sit up as late as": [65535, 0], "he could sit up as late as he": [65535, 0], "could sit up as late as he pleased": [65535, 0], "sit up as late as he pleased he": [65535, 0], "up as late as he pleased he was": [65535, 0], "as late as he pleased he was always": [65535, 0], "late as he pleased he was always the": [65535, 0], "as he pleased he was always the first": [65535, 0], "he pleased he was always the first boy": [65535, 0], "pleased he was always the first boy that": [65535, 0], "he was always the first boy that went": [65535, 0], "was always the first boy that went barefoot": [65535, 0], "always the first boy that went barefoot in": [65535, 0], "the first boy that went barefoot in the": [65535, 0], "first boy that went barefoot in the spring": [65535, 0], "boy that went barefoot in the spring and": [65535, 0], "that went barefoot in the spring and the": [65535, 0], "went barefoot in the spring and the last": [65535, 0], "barefoot in the spring and the last to": [65535, 0], "in the spring and the last to resume": [65535, 0], "the spring and the last to resume leather": [65535, 0], "spring and the last to resume leather in": [65535, 0], "and the last to resume leather in the": [65535, 0], "the last to resume leather in the fall": [65535, 0], "last to resume leather in the fall he": [65535, 0], "to resume leather in the fall he never": [65535, 0], "resume leather in the fall he never had": [65535, 0], "leather in the fall he never had to": [65535, 0], "in the fall he never had to wash": [65535, 0], "the fall he never had to wash nor": [65535, 0], "fall he never had to wash nor put": [65535, 0], "he never had to wash nor put on": [65535, 0], "never had to wash nor put on clean": [65535, 0], "had to wash nor put on clean clothes": [65535, 0], "to wash nor put on clean clothes he": [65535, 0], "wash nor put on clean clothes he could": [65535, 0], "nor put on clean clothes he could swear": [65535, 0], "put on clean clothes he could swear wonderfully": [65535, 0], "on clean clothes he could swear wonderfully in": [65535, 0], "clean clothes he could swear wonderfully in a": [65535, 0], "clothes he could swear wonderfully in a word": [65535, 0], "he could swear wonderfully in a word everything": [65535, 0], "could swear wonderfully in a word everything that": [65535, 0], "swear wonderfully in a word everything that goes": [65535, 0], "wonderfully in a word everything that goes to": [65535, 0], "in a word everything that goes to make": [65535, 0], "a word everything that goes to make life": [65535, 0], "word everything that goes to make life precious": [65535, 0], "everything that goes to make life precious that": [65535, 0], "that goes to make life precious that boy": [65535, 0], "goes to make life precious that boy had": [65535, 0], "to make life precious that boy had so": [65535, 0], "make life precious that boy had so thought": [65535, 0], "life precious that boy had so thought every": [65535, 0], "precious that boy had so thought every harassed": [65535, 0], "that boy had so thought every harassed hampered": [65535, 0], "boy had so thought every harassed hampered respectable": [65535, 0], "had so thought every harassed hampered respectable boy": [65535, 0], "so thought every harassed hampered respectable boy in": [65535, 0], "thought every harassed hampered respectable boy in st": [65535, 0], "every harassed hampered respectable boy in st petersburg": [65535, 0], "harassed hampered respectable boy in st petersburg tom": [65535, 0], "hampered respectable boy in st petersburg tom hailed": [65535, 0], "respectable boy in st petersburg tom hailed the": [65535, 0], "boy in st petersburg tom hailed the romantic": [65535, 0], "in st petersburg tom hailed the romantic outcast": [65535, 0], "st petersburg tom hailed the romantic outcast hello": [65535, 0], "petersburg tom hailed the romantic outcast hello huckleberry": [65535, 0], "tom hailed the romantic outcast hello huckleberry hello": [65535, 0], "hailed the romantic outcast hello huckleberry hello yourself": [65535, 0], "the romantic outcast hello huckleberry hello yourself and": [65535, 0], "romantic outcast hello huckleberry hello yourself and see": [65535, 0], "outcast hello huckleberry hello yourself and see how": [65535, 0], "hello huckleberry hello yourself and see how you": [65535, 0], "huckleberry hello yourself and see how you like": [65535, 0], "hello yourself and see how you like it": [65535, 0], "yourself and see how you like it what's": [65535, 0], "and see how you like it what's that": [65535, 0], "see how you like it what's that you": [65535, 0], "how you like it what's that you got": [65535, 0], "you like it what's that you got dead": [65535, 0], "like it what's that you got dead cat": [65535, 0], "it what's that you got dead cat lemme": [65535, 0], "what's that you got dead cat lemme see": [65535, 0], "that you got dead cat lemme see him": [65535, 0], "you got dead cat lemme see him huck": [65535, 0], "got dead cat lemme see him huck my": [65535, 0], "dead cat lemme see him huck my he's": [65535, 0], "cat lemme see him huck my he's pretty": [65535, 0], "lemme see him huck my he's pretty stiff": [65535, 0], "see him huck my he's pretty stiff where'd": [65535, 0], "him huck my he's pretty stiff where'd you": [65535, 0], "huck my he's pretty stiff where'd you get": [65535, 0], "my he's pretty stiff where'd you get him": [65535, 0], "he's pretty stiff where'd you get him bought": [65535, 0], "pretty stiff where'd you get him bought him": [65535, 0], "stiff where'd you get him bought him off'n": [65535, 0], "where'd you get him bought him off'n a": [65535, 0], "you get him bought him off'n a boy": [65535, 0], "get him bought him off'n a boy what": [65535, 0], "him bought him off'n a boy what did": [65535, 0], "bought him off'n a boy what did you": [65535, 0], "him off'n a boy what did you give": [65535, 0], "off'n a boy what did you give i": [65535, 0], "a boy what did you give i give": [65535, 0], "boy what did you give i give a": [65535, 0], "what did you give i give a blue": [65535, 0], "did you give i give a blue ticket": [65535, 0], "you give i give a blue ticket and": [65535, 0], "give i give a blue ticket and a": [65535, 0], "i give a blue ticket and a bladder": [65535, 0], "give a blue ticket and a bladder that": [65535, 0], "a blue ticket and a bladder that i": [65535, 0], "blue ticket and a bladder that i got": [65535, 0], "ticket and a bladder that i got at": [65535, 0], "and a bladder that i got at the": [65535, 0], "a bladder that i got at the slaughter": [65535, 0], "bladder that i got at the slaughter house": [65535, 0], "that i got at the slaughter house where'd": [65535, 0], "i got at the slaughter house where'd you": [65535, 0], "got at the slaughter house where'd you get": [65535, 0], "at the slaughter house where'd you get the": [65535, 0], "the slaughter house where'd you get the blue": [65535, 0], "slaughter house where'd you get the blue ticket": [65535, 0], "house where'd you get the blue ticket bought": [65535, 0], "where'd you get the blue ticket bought it": [65535, 0], "you get the blue ticket bought it off'n": [65535, 0], "get the blue ticket bought it off'n ben": [65535, 0], "the blue ticket bought it off'n ben rogers": [65535, 0], "blue ticket bought it off'n ben rogers two": [65535, 0], "ticket bought it off'n ben rogers two weeks": [65535, 0], "bought it off'n ben rogers two weeks ago": [65535, 0], "it off'n ben rogers two weeks ago for": [65535, 0], "off'n ben rogers two weeks ago for a": [65535, 0], "ben rogers two weeks ago for a hoop": [65535, 0], "rogers two weeks ago for a hoop stick": [65535, 0], "two weeks ago for a hoop stick say": [65535, 0], "weeks ago for a hoop stick say what": [65535, 0], "ago for a hoop stick say what is": [65535, 0], "for a hoop stick say what is dead": [65535, 0], "a hoop stick say what is dead cats": [65535, 0], "hoop stick say what is dead cats good": [65535, 0], "stick say what is dead cats good for": [65535, 0], "say what is dead cats good for huck": [65535, 0], "what is dead cats good for huck good": [65535, 0], "is dead cats good for huck good for": [65535, 0], "dead cats good for huck good for cure": [65535, 0], "cats good for huck good for cure warts": [65535, 0], "good for huck good for cure warts with": [65535, 0], "for huck good for cure warts with no": [65535, 0], "huck good for cure warts with no is": [65535, 0], "good for cure warts with no is that": [65535, 0], "for cure warts with no is that so": [65535, 0], "cure warts with no is that so i": [65535, 0], "warts with no is that so i know": [65535, 0], "with no is that so i know something": [65535, 0], "no is that so i know something that's": [65535, 0], "is that so i know something that's better": [65535, 0], "that so i know something that's better i": [65535, 0], "so i know something that's better i bet": [65535, 0], "i know something that's better i bet you": [65535, 0], "know something that's better i bet you don't": [65535, 0], "something that's better i bet you don't what": [65535, 0], "that's better i bet you don't what is": [65535, 0], "better i bet you don't what is it": [65535, 0], "i bet you don't what is it why": [65535, 0], "bet you don't what is it why spunk": [65535, 0], "you don't what is it why spunk water": [65535, 0], "don't what is it why spunk water spunk": [65535, 0], "what is it why spunk water spunk water": [65535, 0], "is it why spunk water spunk water i": [65535, 0], "it why spunk water spunk water i wouldn't": [65535, 0], "why spunk water spunk water i wouldn't give": [65535, 0], "spunk water spunk water i wouldn't give a": [65535, 0], "water spunk water i wouldn't give a dern": [65535, 0], "spunk water i wouldn't give a dern for": [65535, 0], "water i wouldn't give a dern for spunk": [65535, 0], "i wouldn't give a dern for spunk water": [65535, 0], "wouldn't give a dern for spunk water you": [65535, 0], "give a dern for spunk water you wouldn't": [65535, 0], "a dern for spunk water you wouldn't wouldn't": [65535, 0], "dern for spunk water you wouldn't wouldn't you": [65535, 0], "for spunk water you wouldn't wouldn't you d'you": [65535, 0], "spunk water you wouldn't wouldn't you d'you ever": [65535, 0], "water you wouldn't wouldn't you d'you ever try": [65535, 0], "you wouldn't wouldn't you d'you ever try it": [65535, 0], "wouldn't wouldn't you d'you ever try it no": [65535, 0], "wouldn't you d'you ever try it no i": [65535, 0], "you d'you ever try it no i hain't": [65535, 0], "d'you ever try it no i hain't but": [65535, 0], "ever try it no i hain't but bob": [65535, 0], "try it no i hain't but bob tanner": [65535, 0], "it no i hain't but bob tanner did": [65535, 0], "no i hain't but bob tanner did who": [65535, 0], "i hain't but bob tanner did who told": [65535, 0], "hain't but bob tanner did who told you": [65535, 0], "but bob tanner did who told you so": [65535, 0], "bob tanner did who told you so why": [65535, 0], "tanner did who told you so why he": [65535, 0], "did who told you so why he told": [65535, 0], "who told you so why he told jeff": [65535, 0], "told you so why he told jeff thatcher": [65535, 0], "you so why he told jeff thatcher and": [65535, 0], "so why he told jeff thatcher and jeff": [65535, 0], "why he told jeff thatcher and jeff told": [65535, 0], "he told jeff thatcher and jeff told johnny": [65535, 0], "told jeff thatcher and jeff told johnny baker": [65535, 0], "jeff thatcher and jeff told johnny baker and": [65535, 0], "thatcher and jeff told johnny baker and johnny": [65535, 0], "and jeff told johnny baker and johnny told": [65535, 0], "jeff told johnny baker and johnny told jim": [65535, 0], "told johnny baker and johnny told jim hollis": [65535, 0], "johnny baker and johnny told jim hollis and": [65535, 0], "baker and johnny told jim hollis and jim": [65535, 0], "and johnny told jim hollis and jim told": [65535, 0], "johnny told jim hollis and jim told ben": [65535, 0], "told jim hollis and jim told ben rogers": [65535, 0], "jim hollis and jim told ben rogers and": [65535, 0], "hollis and jim told ben rogers and ben": [65535, 0], "and jim told ben rogers and ben told": [65535, 0], "jim told ben rogers and ben told a": [65535, 0], "told ben rogers and ben told a nigger": [65535, 0], "ben rogers and ben told a nigger and": [65535, 0], "rogers and ben told a nigger and the": [65535, 0], "and ben told a nigger and the nigger": [65535, 0], "ben told a nigger and the nigger told": [65535, 0], "told a nigger and the nigger told me": [65535, 0], "a nigger and the nigger told me there": [65535, 0], "nigger and the nigger told me there now": [65535, 0], "and the nigger told me there now well": [65535, 0], "the nigger told me there now well what": [65535, 0], "nigger told me there now well what of": [65535, 0], "told me there now well what of it": [65535, 0], "me there now well what of it they'll": [65535, 0], "there now well what of it they'll all": [65535, 0], "now well what of it they'll all lie": [65535, 0], "well what of it they'll all lie leastways": [65535, 0], "what of it they'll all lie leastways all": [65535, 0], "of it they'll all lie leastways all but": [65535, 0], "it they'll all lie leastways all but the": [65535, 0], "they'll all lie leastways all but the nigger": [65535, 0], "all lie leastways all but the nigger i": [65535, 0], "lie leastways all but the nigger i don't": [65535, 0], "leastways all but the nigger i don't know": [65535, 0], "all but the nigger i don't know him": [65535, 0], "but the nigger i don't know him but": [65535, 0], "the nigger i don't know him but i": [65535, 0], "nigger i don't know him but i never": [65535, 0], "i don't know him but i never see": [65535, 0], "don't know him but i never see a": [65535, 0], "know him but i never see a nigger": [65535, 0], "him but i never see a nigger that": [65535, 0], "but i never see a nigger that wouldn't": [65535, 0], "i never see a nigger that wouldn't lie": [65535, 0], "never see a nigger that wouldn't lie shucks": [65535, 0], "see a nigger that wouldn't lie shucks now": [65535, 0], "a nigger that wouldn't lie shucks now you": [65535, 0], "nigger that wouldn't lie shucks now you tell": [65535, 0], "that wouldn't lie shucks now you tell me": [65535, 0], "wouldn't lie shucks now you tell me how": [65535, 0], "lie shucks now you tell me how bob": [65535, 0], "shucks now you tell me how bob tanner": [65535, 0], "now you tell me how bob tanner done": [65535, 0], "you tell me how bob tanner done it": [65535, 0], "tell me how bob tanner done it huck": [65535, 0], "me how bob tanner done it huck why": [65535, 0], "how bob tanner done it huck why he": [65535, 0], "bob tanner done it huck why he took": [65535, 0], "tanner done it huck why he took and": [65535, 0], "done it huck why he took and dipped": [65535, 0], "it huck why he took and dipped his": [65535, 0], "huck why he took and dipped his hand": [65535, 0], "why he took and dipped his hand in": [65535, 0], "he took and dipped his hand in a": [65535, 0], "took and dipped his hand in a rotten": [65535, 0], "and dipped his hand in a rotten stump": [65535, 0], "dipped his hand in a rotten stump where": [65535, 0], "his hand in a rotten stump where the": [65535, 0], "hand in a rotten stump where the rain": [65535, 0], "in a rotten stump where the rain water": [65535, 0], "a rotten stump where the rain water was": [65535, 0], "rotten stump where the rain water was in": [65535, 0], "stump where the rain water was in the": [65535, 0], "where the rain water was in the daytime": [65535, 0], "the rain water was in the daytime certainly": [65535, 0], "rain water was in the daytime certainly with": [65535, 0], "water was in the daytime certainly with his": [65535, 0], "was in the daytime certainly with his face": [65535, 0], "in the daytime certainly with his face to": [65535, 0], "the daytime certainly with his face to the": [65535, 0], "daytime certainly with his face to the stump": [65535, 0], "certainly with his face to the stump yes": [65535, 0], "with his face to the stump yes least": [65535, 0], "his face to the stump yes least i": [65535, 0], "face to the stump yes least i reckon": [65535, 0], "to the stump yes least i reckon so": [65535, 0], "the stump yes least i reckon so did": [65535, 0], "stump yes least i reckon so did he": [65535, 0], "yes least i reckon so did he say": [65535, 0], "least i reckon so did he say anything": [65535, 0], "i reckon so did he say anything i": [65535, 0], "reckon so did he say anything i don't": [65535, 0], "so did he say anything i don't reckon": [65535, 0], "did he say anything i don't reckon he": [65535, 0], "he say anything i don't reckon he did": [65535, 0], "say anything i don't reckon he did i": [65535, 0], "anything i don't reckon he did i don't": [65535, 0], "i don't reckon he did i don't know": [65535, 0], "don't reckon he did i don't know aha": [65535, 0], "reckon he did i don't know aha talk": [65535, 0], "he did i don't know aha talk about": [65535, 0], "did i don't know aha talk about trying": [65535, 0], "i don't know aha talk about trying to": [65535, 0], "don't know aha talk about trying to cure": [65535, 0], "know aha talk about trying to cure warts": [65535, 0], "aha talk about trying to cure warts with": [65535, 0], "talk about trying to cure warts with spunk": [65535, 0], "about trying to cure warts with spunk water": [65535, 0], "trying to cure warts with spunk water such": [65535, 0], "to cure warts with spunk water such a": [65535, 0], "cure warts with spunk water such a blame": [65535, 0], "warts with spunk water such a blame fool": [65535, 0], "with spunk water such a blame fool way": [65535, 0], "spunk water such a blame fool way as": [65535, 0], "water such a blame fool way as that": [65535, 0], "such a blame fool way as that why": [65535, 0], "a blame fool way as that why that": [65535, 0], "blame fool way as that why that ain't": [65535, 0], "fool way as that why that ain't a": [65535, 0], "way as that why that ain't a going": [65535, 0], "as that why that ain't a going to": [65535, 0], "that why that ain't a going to do": [65535, 0], "why that ain't a going to do any": [65535, 0], "that ain't a going to do any good": [65535, 0], "ain't a going to do any good you": [65535, 0], "a going to do any good you got": [65535, 0], "going to do any good you got to": [65535, 0], "to do any good you got to go": [65535, 0], "do any good you got to go all": [65535, 0], "any good you got to go all by": [65535, 0], "good you got to go all by yourself": [65535, 0], "you got to go all by yourself to": [65535, 0], "got to go all by yourself to the": [65535, 0], "to go all by yourself to the middle": [65535, 0], "go all by yourself to the middle of": [65535, 0], "all by yourself to the middle of the": [65535, 0], "by yourself to the middle of the woods": [65535, 0], "yourself to the middle of the woods where": [65535, 0], "to the middle of the woods where you": [65535, 0], "the middle of the woods where you know": [65535, 0], "middle of the woods where you know there's": [65535, 0], "of the woods where you know there's a": [65535, 0], "the woods where you know there's a spunk": [65535, 0], "woods where you know there's a spunk water": [65535, 0], "where you know there's a spunk water stump": [65535, 0], "you know there's a spunk water stump and": [65535, 0], "know there's a spunk water stump and just": [65535, 0], "there's a spunk water stump and just as": [65535, 0], "a spunk water stump and just as it's": [65535, 0], "spunk water stump and just as it's midnight": [65535, 0], "water stump and just as it's midnight you": [65535, 0], "stump and just as it's midnight you back": [65535, 0], "and just as it's midnight you back up": [65535, 0], "just as it's midnight you back up against": [65535, 0], "as it's midnight you back up against the": [65535, 0], "it's midnight you back up against the stump": [65535, 0], "midnight you back up against the stump and": [65535, 0], "you back up against the stump and jam": [65535, 0], "back up against the stump and jam your": [65535, 0], "up against the stump and jam your hand": [65535, 0], "against the stump and jam your hand in": [65535, 0], "the stump and jam your hand in and": [65535, 0], "stump and jam your hand in and say": [65535, 0], "and jam your hand in and say 'barley": [65535, 0], "jam your hand in and say 'barley corn": [65535, 0], "your hand in and say 'barley corn barley": [65535, 0], "hand in and say 'barley corn barley corn": [65535, 0], "in and say 'barley corn barley corn injun": [65535, 0], "and say 'barley corn barley corn injun meal": [65535, 0], "say 'barley corn barley corn injun meal shorts": [65535, 0], "'barley corn barley corn injun meal shorts spunk": [65535, 0], "corn barley corn injun meal shorts spunk water": [65535, 0], "barley corn injun meal shorts spunk water spunk": [65535, 0], "corn injun meal shorts spunk water spunk water": [65535, 0], "injun meal shorts spunk water spunk water swaller": [65535, 0], "meal shorts spunk water spunk water swaller these": [65535, 0], "shorts spunk water spunk water swaller these warts": [65535, 0], "spunk water spunk water swaller these warts '": [65535, 0], "water spunk water swaller these warts ' and": [65535, 0], "spunk water swaller these warts ' and then": [65535, 0], "water swaller these warts ' and then walk": [65535, 0], "swaller these warts ' and then walk away": [65535, 0], "these warts ' and then walk away quick": [65535, 0], "warts ' and then walk away quick eleven": [65535, 0], "' and then walk away quick eleven steps": [65535, 0], "and then walk away quick eleven steps with": [65535, 0], "then walk away quick eleven steps with your": [65535, 0], "walk away quick eleven steps with your eyes": [65535, 0], "away quick eleven steps with your eyes shut": [65535, 0], "quick eleven steps with your eyes shut and": [65535, 0], "eleven steps with your eyes shut and then": [65535, 0], "steps with your eyes shut and then turn": [65535, 0], "with your eyes shut and then turn around": [65535, 0], "your eyes shut and then turn around three": [65535, 0], "eyes shut and then turn around three times": [65535, 0], "shut and then turn around three times and": [65535, 0], "and then turn around three times and walk": [65535, 0], "then turn around three times and walk home": [65535, 0], "turn around three times and walk home without": [65535, 0], "around three times and walk home without speaking": [65535, 0], "three times and walk home without speaking to": [65535, 0], "times and walk home without speaking to anybody": [65535, 0], "and walk home without speaking to anybody because": [65535, 0], "walk home without speaking to anybody because if": [65535, 0], "home without speaking to anybody because if you": [65535, 0], "without speaking to anybody because if you speak": [65535, 0], "speaking to anybody because if you speak the": [65535, 0], "to anybody because if you speak the charm's": [65535, 0], "anybody because if you speak the charm's busted": [65535, 0], "because if you speak the charm's busted well": [65535, 0], "if you speak the charm's busted well that": [65535, 0], "you speak the charm's busted well that sounds": [65535, 0], "speak the charm's busted well that sounds like": [65535, 0], "the charm's busted well that sounds like a": [65535, 0], "charm's busted well that sounds like a good": [65535, 0], "busted well that sounds like a good way": [65535, 0], "well that sounds like a good way but": [65535, 0], "that sounds like a good way but that": [65535, 0], "sounds like a good way but that ain't": [65535, 0], "like a good way but that ain't the": [65535, 0], "a good way but that ain't the way": [65535, 0], "good way but that ain't the way bob": [65535, 0], "way but that ain't the way bob tanner": [65535, 0], "but that ain't the way bob tanner done": [65535, 0], "that ain't the way bob tanner done no": [65535, 0], "ain't the way bob tanner done no sir": [65535, 0], "the way bob tanner done no sir you": [65535, 0], "way bob tanner done no sir you can": [65535, 0], "bob tanner done no sir you can bet": [65535, 0], "tanner done no sir you can bet he": [65535, 0], "done no sir you can bet he didn't": [65535, 0], "no sir you can bet he didn't becuz": [65535, 0], "sir you can bet he didn't becuz he's": [65535, 0], "you can bet he didn't becuz he's the": [65535, 0], "can bet he didn't becuz he's the wartiest": [65535, 0], "bet he didn't becuz he's the wartiest boy": [65535, 0], "he didn't becuz he's the wartiest boy in": [65535, 0], "didn't becuz he's the wartiest boy in this": [65535, 0], "becuz he's the wartiest boy in this town": [65535, 0], "he's the wartiest boy in this town and": [65535, 0], "the wartiest boy in this town and he": [65535, 0], "wartiest boy in this town and he wouldn't": [65535, 0], "boy in this town and he wouldn't have": [65535, 0], "in this town and he wouldn't have a": [65535, 0], "this town and he wouldn't have a wart": [65535, 0], "town and he wouldn't have a wart on": [65535, 0], "and he wouldn't have a wart on him": [65535, 0], "he wouldn't have a wart on him if": [65535, 0], "wouldn't have a wart on him if he'd": [65535, 0], "have a wart on him if he'd knowed": [65535, 0], "a wart on him if he'd knowed how": [65535, 0], "wart on him if he'd knowed how to": [65535, 0], "on him if he'd knowed how to work": [65535, 0], "him if he'd knowed how to work spunk": [65535, 0], "if he'd knowed how to work spunk water": [65535, 0], "he'd knowed how to work spunk water i've": [65535, 0], "knowed how to work spunk water i've took": [65535, 0], "how to work spunk water i've took off": [65535, 0], "to work spunk water i've took off thousands": [65535, 0], "work spunk water i've took off thousands of": [65535, 0], "spunk water i've took off thousands of warts": [65535, 0], "water i've took off thousands of warts off": [65535, 0], "i've took off thousands of warts off of": [65535, 0], "took off thousands of warts off of my": [65535, 0], "off thousands of warts off of my hands": [65535, 0], "thousands of warts off of my hands that": [65535, 0], "of warts off of my hands that way": [65535, 0], "warts off of my hands that way huck": [65535, 0], "off of my hands that way huck i": [65535, 0], "of my hands that way huck i play": [65535, 0], "my hands that way huck i play with": [65535, 0], "hands that way huck i play with frogs": [65535, 0], "that way huck i play with frogs so": [65535, 0], "way huck i play with frogs so much": [65535, 0], "huck i play with frogs so much that": [65535, 0], "i play with frogs so much that i've": [65535, 0], "play with frogs so much that i've always": [65535, 0], "with frogs so much that i've always got": [65535, 0], "frogs so much that i've always got considerable": [65535, 0], "so much that i've always got considerable many": [65535, 0], "much that i've always got considerable many warts": [65535, 0], "that i've always got considerable many warts sometimes": [65535, 0], "i've always got considerable many warts sometimes i": [65535, 0], "always got considerable many warts sometimes i take": [65535, 0], "got considerable many warts sometimes i take 'em": [65535, 0], "considerable many warts sometimes i take 'em off": [65535, 0], "many warts sometimes i take 'em off with": [65535, 0], "warts sometimes i take 'em off with a": [65535, 0], "sometimes i take 'em off with a bean": [65535, 0], "i take 'em off with a bean yes": [65535, 0], "take 'em off with a bean yes bean's": [65535, 0], "'em off with a bean yes bean's good": [65535, 0], "off with a bean yes bean's good i've": [65535, 0], "with a bean yes bean's good i've done": [65535, 0], "a bean yes bean's good i've done that": [65535, 0], "bean yes bean's good i've done that have": [65535, 0], "yes bean's good i've done that have you": [65535, 0], "bean's good i've done that have you what's": [65535, 0], "good i've done that have you what's your": [65535, 0], "i've done that have you what's your way": [65535, 0], "done that have you what's your way you": [65535, 0], "that have you what's your way you take": [65535, 0], "have you what's your way you take and": [65535, 0], "you what's your way you take and split": [65535, 0], "what's your way you take and split the": [65535, 0], "your way you take and split the bean": [65535, 0], "way you take and split the bean and": [65535, 0], "you take and split the bean and cut": [65535, 0], "take and split the bean and cut the": [65535, 0], "and split the bean and cut the wart": [65535, 0], "split the bean and cut the wart so": [65535, 0], "the bean and cut the wart so as": [65535, 0], "bean and cut the wart so as to": [65535, 0], "and cut the wart so as to get": [65535, 0], "cut the wart so as to get some": [65535, 0], "the wart so as to get some blood": [65535, 0], "wart so as to get some blood and": [65535, 0], "so as to get some blood and then": [65535, 0], "as to get some blood and then you": [65535, 0], "to get some blood and then you put": [65535, 0], "get some blood and then you put the": [65535, 0], "some blood and then you put the blood": [65535, 0], "blood and then you put the blood on": [65535, 0], "and then you put the blood on one": [65535, 0], "then you put the blood on one piece": [65535, 0], "you put the blood on one piece of": [65535, 0], "put the blood on one piece of the": [65535, 0], "the blood on one piece of the bean": [65535, 0], "blood on one piece of the bean and": [65535, 0], "on one piece of the bean and take": [65535, 0], "one piece of the bean and take and": [65535, 0], "piece of the bean and take and dig": [65535, 0], "of the bean and take and dig a": [65535, 0], "the bean and take and dig a hole": [65535, 0], "bean and take and dig a hole and": [65535, 0], "and take and dig a hole and bury": [65535, 0], "take and dig a hole and bury it": [65535, 0], "and dig a hole and bury it 'bout": [65535, 0], "dig a hole and bury it 'bout midnight": [65535, 0], "a hole and bury it 'bout midnight at": [65535, 0], "hole and bury it 'bout midnight at the": [65535, 0], "and bury it 'bout midnight at the crossroads": [65535, 0], "bury it 'bout midnight at the crossroads in": [65535, 0], "it 'bout midnight at the crossroads in the": [65535, 0], "'bout midnight at the crossroads in the dark": [65535, 0], "midnight at the crossroads in the dark of": [65535, 0], "at the crossroads in the dark of the": [65535, 0], "the crossroads in the dark of the moon": [65535, 0], "crossroads in the dark of the moon and": [65535, 0], "in the dark of the moon and then": [65535, 0], "the dark of the moon and then you": [65535, 0], "dark of the moon and then you burn": [65535, 0], "of the moon and then you burn up": [65535, 0], "the moon and then you burn up the": [65535, 0], "moon and then you burn up the rest": [65535, 0], "and then you burn up the rest of": [65535, 0], "then you burn up the rest of the": [65535, 0], "you burn up the rest of the bean": [65535, 0], "burn up the rest of the bean you": [65535, 0], "up the rest of the bean you see": [65535, 0], "the rest of the bean you see that": [65535, 0], "rest of the bean you see that piece": [65535, 0], "of the bean you see that piece that's": [65535, 0], "the bean you see that piece that's got": [65535, 0], "bean you see that piece that's got the": [65535, 0], "you see that piece that's got the blood": [65535, 0], "see that piece that's got the blood on": [65535, 0], "that piece that's got the blood on it": [65535, 0], "piece that's got the blood on it will": [65535, 0], "that's got the blood on it will keep": [65535, 0], "got the blood on it will keep drawing": [65535, 0], "the blood on it will keep drawing and": [65535, 0], "blood on it will keep drawing and drawing": [65535, 0], "on it will keep drawing and drawing trying": [65535, 0], "it will keep drawing and drawing trying to": [65535, 0], "will keep drawing and drawing trying to fetch": [65535, 0], "keep drawing and drawing trying to fetch the": [65535, 0], "drawing and drawing trying to fetch the other": [65535, 0], "and drawing trying to fetch the other piece": [65535, 0], "drawing trying to fetch the other piece to": [65535, 0], "trying to fetch the other piece to it": [65535, 0], "to fetch the other piece to it and": [65535, 0], "fetch the other piece to it and so": [65535, 0], "the other piece to it and so that": [65535, 0], "other piece to it and so that helps": [65535, 0], "piece to it and so that helps the": [65535, 0], "to it and so that helps the blood": [65535, 0], "it and so that helps the blood to": [65535, 0], "and so that helps the blood to draw": [65535, 0], "so that helps the blood to draw the": [65535, 0], "that helps the blood to draw the wart": [65535, 0], "helps the blood to draw the wart and": [65535, 0], "the blood to draw the wart and pretty": [65535, 0], "blood to draw the wart and pretty soon": [65535, 0], "to draw the wart and pretty soon off": [65535, 0], "draw the wart and pretty soon off she": [65535, 0], "the wart and pretty soon off she comes": [65535, 0], "wart and pretty soon off she comes yes": [65535, 0], "and pretty soon off she comes yes that's": [65535, 0], "pretty soon off she comes yes that's it": [65535, 0], "soon off she comes yes that's it huck": [65535, 0], "off she comes yes that's it huck that's": [65535, 0], "she comes yes that's it huck that's it": [65535, 0], "comes yes that's it huck that's it though": [65535, 0], "yes that's it huck that's it though when": [65535, 0], "that's it huck that's it though when you're": [65535, 0], "it huck that's it though when you're burying": [65535, 0], "huck that's it though when you're burying it": [65535, 0], "that's it though when you're burying it if": [65535, 0], "it though when you're burying it if you": [65535, 0], "though when you're burying it if you say": [65535, 0], "when you're burying it if you say 'down": [65535, 0], "you're burying it if you say 'down bean": [65535, 0], "burying it if you say 'down bean off": [65535, 0], "it if you say 'down bean off wart": [65535, 0], "if you say 'down bean off wart come": [65535, 0], "you say 'down bean off wart come no": [65535, 0], "say 'down bean off wart come no more": [65535, 0], "'down bean off wart come no more to": [65535, 0], "bean off wart come no more to bother": [65535, 0], "off wart come no more to bother me": [65535, 0], "wart come no more to bother me '": [65535, 0], "come no more to bother me ' it's": [65535, 0], "no more to bother me ' it's better": [65535, 0], "more to bother me ' it's better that's": [65535, 0], "to bother me ' it's better that's the": [65535, 0], "bother me ' it's better that's the way": [65535, 0], "me ' it's better that's the way joe": [65535, 0], "' it's better that's the way joe harper": [65535, 0], "it's better that's the way joe harper does": [65535, 0], "better that's the way joe harper does and": [65535, 0], "that's the way joe harper does and he's": [65535, 0], "the way joe harper does and he's been": [65535, 0], "way joe harper does and he's been nearly": [65535, 0], "joe harper does and he's been nearly to": [65535, 0], "harper does and he's been nearly to coonville": [65535, 0], "does and he's been nearly to coonville and": [65535, 0], "and he's been nearly to coonville and most": [65535, 0], "he's been nearly to coonville and most everywheres": [65535, 0], "been nearly to coonville and most everywheres but": [65535, 0], "nearly to coonville and most everywheres but say": [65535, 0], "to coonville and most everywheres but say how": [65535, 0], "coonville and most everywheres but say how do": [65535, 0], "and most everywheres but say how do you": [65535, 0], "most everywheres but say how do you cure": [65535, 0], "everywheres but say how do you cure 'em": [65535, 0], "but say how do you cure 'em with": [65535, 0], "say how do you cure 'em with dead": [65535, 0], "how do you cure 'em with dead cats": [65535, 0], "do you cure 'em with dead cats why": [65535, 0], "you cure 'em with dead cats why you": [65535, 0], "cure 'em with dead cats why you take": [65535, 0], "'em with dead cats why you take your": [65535, 0], "with dead cats why you take your cat": [65535, 0], "dead cats why you take your cat and": [65535, 0], "cats why you take your cat and go": [65535, 0], "why you take your cat and go and": [65535, 0], "you take your cat and go and get": [65535, 0], "take your cat and go and get in": [65535, 0], "your cat and go and get in the": [65535, 0], "cat and go and get in the graveyard": [65535, 0], "and go and get in the graveyard 'long": [65535, 0], "go and get in the graveyard 'long about": [65535, 0], "and get in the graveyard 'long about midnight": [65535, 0], "get in the graveyard 'long about midnight when": [65535, 0], "in the graveyard 'long about midnight when somebody": [65535, 0], "the graveyard 'long about midnight when somebody that": [65535, 0], "graveyard 'long about midnight when somebody that was": [65535, 0], "'long about midnight when somebody that was wicked": [65535, 0], "about midnight when somebody that was wicked has": [65535, 0], "midnight when somebody that was wicked has been": [65535, 0], "when somebody that was wicked has been buried": [65535, 0], "somebody that was wicked has been buried and": [65535, 0], "that was wicked has been buried and when": [65535, 0], "was wicked has been buried and when it's": [65535, 0], "wicked has been buried and when it's midnight": [65535, 0], "has been buried and when it's midnight a": [65535, 0], "been buried and when it's midnight a devil": [65535, 0], "buried and when it's midnight a devil will": [65535, 0], "and when it's midnight a devil will come": [65535, 0], "when it's midnight a devil will come or": [65535, 0], "it's midnight a devil will come or maybe": [65535, 0], "midnight a devil will come or maybe two": [65535, 0], "a devil will come or maybe two or": [65535, 0], "devil will come or maybe two or three": [65535, 0], "will come or maybe two or three but": [65535, 0], "come or maybe two or three but you": [65535, 0], "or maybe two or three but you can't": [65535, 0], "maybe two or three but you can't see": [65535, 0], "two or three but you can't see 'em": [65535, 0], "or three but you can't see 'em you": [65535, 0], "three but you can't see 'em you can": [65535, 0], "but you can't see 'em you can only": [65535, 0], "you can't see 'em you can only hear": [65535, 0], "can't see 'em you can only hear something": [65535, 0], "see 'em you can only hear something like": [65535, 0], "'em you can only hear something like the": [65535, 0], "you can only hear something like the wind": [65535, 0], "can only hear something like the wind or": [65535, 0], "only hear something like the wind or maybe": [65535, 0], "hear something like the wind or maybe hear": [65535, 0], "something like the wind or maybe hear 'em": [65535, 0], "like the wind or maybe hear 'em talk": [65535, 0], "the wind or maybe hear 'em talk and": [65535, 0], "wind or maybe hear 'em talk and when": [65535, 0], "or maybe hear 'em talk and when they're": [65535, 0], "maybe hear 'em talk and when they're taking": [65535, 0], "hear 'em talk and when they're taking that": [65535, 0], "'em talk and when they're taking that feller": [65535, 0], "talk and when they're taking that feller away": [65535, 0], "and when they're taking that feller away you": [65535, 0], "when they're taking that feller away you heave": [65535, 0], "they're taking that feller away you heave your": [65535, 0], "taking that feller away you heave your cat": [65535, 0], "that feller away you heave your cat after": [65535, 0], "feller away you heave your cat after 'em": [65535, 0], "away you heave your cat after 'em and": [65535, 0], "you heave your cat after 'em and say": [65535, 0], "heave your cat after 'em and say 'devil": [65535, 0], "your cat after 'em and say 'devil follow": [65535, 0], "cat after 'em and say 'devil follow corpse": [65535, 0], "after 'em and say 'devil follow corpse cat": [65535, 0], "'em and say 'devil follow corpse cat follow": [65535, 0], "and say 'devil follow corpse cat follow devil": [65535, 0], "say 'devil follow corpse cat follow devil warts": [65535, 0], "'devil follow corpse cat follow devil warts follow": [65535, 0], "follow corpse cat follow devil warts follow cat": [65535, 0], "corpse cat follow devil warts follow cat i'm": [65535, 0], "cat follow devil warts follow cat i'm done": [65535, 0], "follow devil warts follow cat i'm done with": [65535, 0], "devil warts follow cat i'm done with ye": [65535, 0], "warts follow cat i'm done with ye '": [65535, 0], "follow cat i'm done with ye ' that'll": [65535, 0], "cat i'm done with ye ' that'll fetch": [65535, 0], "i'm done with ye ' that'll fetch any": [65535, 0], "done with ye ' that'll fetch any wart": [65535, 0], "with ye ' that'll fetch any wart sounds": [65535, 0], "ye ' that'll fetch any wart sounds right": [65535, 0], "' that'll fetch any wart sounds right d'you": [65535, 0], "that'll fetch any wart sounds right d'you ever": [65535, 0], "fetch any wart sounds right d'you ever try": [65535, 0], "any wart sounds right d'you ever try it": [65535, 0], "wart sounds right d'you ever try it huck": [65535, 0], "sounds right d'you ever try it huck no": [65535, 0], "right d'you ever try it huck no but": [65535, 0], "d'you ever try it huck no but old": [65535, 0], "ever try it huck no but old mother": [65535, 0], "try it huck no but old mother hopkins": [65535, 0], "it huck no but old mother hopkins told": [65535, 0], "huck no but old mother hopkins told me": [65535, 0], "no but old mother hopkins told me well": [65535, 0], "but old mother hopkins told me well i": [65535, 0], "old mother hopkins told me well i reckon": [65535, 0], "mother hopkins told me well i reckon it's": [65535, 0], "hopkins told me well i reckon it's so": [65535, 0], "told me well i reckon it's so then": [65535, 0], "me well i reckon it's so then becuz": [65535, 0], "well i reckon it's so then becuz they": [65535, 0], "i reckon it's so then becuz they say": [65535, 0], "reckon it's so then becuz they say she's": [65535, 0], "it's so then becuz they say she's a": [65535, 0], "so then becuz they say she's a witch": [65535, 0], "then becuz they say she's a witch say": [65535, 0], "becuz they say she's a witch say why": [65535, 0], "they say she's a witch say why tom": [65535, 0], "say she's a witch say why tom i": [65535, 0], "she's a witch say why tom i know": [65535, 0], "a witch say why tom i know she": [65535, 0], "witch say why tom i know she is": [65535, 0], "say why tom i know she is she": [65535, 0], "why tom i know she is she witched": [65535, 0], "tom i know she is she witched pap": [65535, 0], "i know she is she witched pap pap": [65535, 0], "know she is she witched pap pap says": [65535, 0], "she is she witched pap pap says so": [65535, 0], "is she witched pap pap says so his": [65535, 0], "she witched pap pap says so his own": [65535, 0], "witched pap pap says so his own self": [65535, 0], "pap pap says so his own self he": [65535, 0], "pap says so his own self he come": [65535, 0], "says so his own self he come along": [65535, 0], "so his own self he come along one": [65535, 0], "his own self he come along one day": [65535, 0], "own self he come along one day and": [65535, 0], "self he come along one day and he": [65535, 0], "he come along one day and he see": [65535, 0], "come along one day and he see she": [65535, 0], "along one day and he see she was": [65535, 0], "one day and he see she was a": [65535, 0], "day and he see she was a witching": [65535, 0], "and he see she was a witching him": [65535, 0], "he see she was a witching him so": [65535, 0], "see she was a witching him so he": [65535, 0], "she was a witching him so he took": [65535, 0], "was a witching him so he took up": [65535, 0], "a witching him so he took up a": [65535, 0], "witching him so he took up a rock": [65535, 0], "him so he took up a rock and": [65535, 0], "so he took up a rock and if": [65535, 0], "he took up a rock and if she": [65535, 0], "took up a rock and if she hadn't": [65535, 0], "up a rock and if she hadn't dodged": [65535, 0], "a rock and if she hadn't dodged he'd": [65535, 0], "rock and if she hadn't dodged he'd a": [65535, 0], "and if she hadn't dodged he'd a got": [65535, 0], "if she hadn't dodged he'd a got her": [65535, 0], "she hadn't dodged he'd a got her well": [65535, 0], "hadn't dodged he'd a got her well that": [65535, 0], "dodged he'd a got her well that very": [65535, 0], "he'd a got her well that very night": [65535, 0], "a got her well that very night he": [65535, 0], "got her well that very night he rolled": [65535, 0], "her well that very night he rolled off'n": [65535, 0], "well that very night he rolled off'n a": [65535, 0], "that very night he rolled off'n a shed": [65535, 0], "very night he rolled off'n a shed wher'": [65535, 0], "night he rolled off'n a shed wher' he": [65535, 0], "he rolled off'n a shed wher' he was": [65535, 0], "rolled off'n a shed wher' he was a": [65535, 0], "off'n a shed wher' he was a layin": [65535, 0], "a shed wher' he was a layin drunk": [65535, 0], "shed wher' he was a layin drunk and": [65535, 0], "wher' he was a layin drunk and broke": [65535, 0], "he was a layin drunk and broke his": [65535, 0], "was a layin drunk and broke his arm": [65535, 0], "a layin drunk and broke his arm why": [65535, 0], "layin drunk and broke his arm why that's": [65535, 0], "drunk and broke his arm why that's awful": [65535, 0], "and broke his arm why that's awful how": [65535, 0], "broke his arm why that's awful how did": [65535, 0], "his arm why that's awful how did he": [65535, 0], "arm why that's awful how did he know": [65535, 0], "why that's awful how did he know she": [65535, 0], "that's awful how did he know she was": [65535, 0], "awful how did he know she was a": [65535, 0], "how did he know she was a witching": [65535, 0], "did he know she was a witching him": [65535, 0], "he know she was a witching him lord": [65535, 0], "know she was a witching him lord pap": [65535, 0], "she was a witching him lord pap can": [65535, 0], "was a witching him lord pap can tell": [65535, 0], "a witching him lord pap can tell easy": [65535, 0], "witching him lord pap can tell easy pap": [65535, 0], "him lord pap can tell easy pap says": [65535, 0], "lord pap can tell easy pap says when": [65535, 0], "pap can tell easy pap says when they": [65535, 0], "can tell easy pap says when they keep": [65535, 0], "tell easy pap says when they keep looking": [65535, 0], "easy pap says when they keep looking at": [65535, 0], "pap says when they keep looking at you": [65535, 0], "says when they keep looking at you right": [65535, 0], "when they keep looking at you right stiddy": [65535, 0], "they keep looking at you right stiddy they're": [65535, 0], "keep looking at you right stiddy they're a": [65535, 0], "looking at you right stiddy they're a witching": [65535, 0], "at you right stiddy they're a witching you": [65535, 0], "you right stiddy they're a witching you specially": [65535, 0], "right stiddy they're a witching you specially if": [65535, 0], "stiddy they're a witching you specially if they": [65535, 0], "they're a witching you specially if they mumble": [65535, 0], "a witching you specially if they mumble becuz": [65535, 0], "witching you specially if they mumble becuz when": [65535, 0], "you specially if they mumble becuz when they": [65535, 0], "specially if they mumble becuz when they mumble": [65535, 0], "if they mumble becuz when they mumble they're": [65535, 0], "they mumble becuz when they mumble they're saying": [65535, 0], "mumble becuz when they mumble they're saying the": [65535, 0], "becuz when they mumble they're saying the lord's": [65535, 0], "when they mumble they're saying the lord's prayer": [65535, 0], "they mumble they're saying the lord's prayer backards": [65535, 0], "mumble they're saying the lord's prayer backards say": [65535, 0], "they're saying the lord's prayer backards say hucky": [65535, 0], "saying the lord's prayer backards say hucky when": [65535, 0], "the lord's prayer backards say hucky when you": [65535, 0], "lord's prayer backards say hucky when you going": [65535, 0], "prayer backards say hucky when you going to": [65535, 0], "backards say hucky when you going to try": [65535, 0], "say hucky when you going to try the": [65535, 0], "hucky when you going to try the cat": [65535, 0], "when you going to try the cat to": [65535, 0], "you going to try the cat to night": [65535, 0], "going to try the cat to night i": [65535, 0], "to try the cat to night i reckon": [65535, 0], "try the cat to night i reckon they'll": [65535, 0], "the cat to night i reckon they'll come": [65535, 0], "cat to night i reckon they'll come after": [65535, 0], "to night i reckon they'll come after old": [65535, 0], "night i reckon they'll come after old hoss": [65535, 0], "i reckon they'll come after old hoss williams": [65535, 0], "reckon they'll come after old hoss williams to": [65535, 0], "they'll come after old hoss williams to night": [65535, 0], "come after old hoss williams to night but": [65535, 0], "after old hoss williams to night but they": [65535, 0], "old hoss williams to night but they buried": [65535, 0], "hoss williams to night but they buried him": [65535, 0], "williams to night but they buried him saturday": [65535, 0], "to night but they buried him saturday didn't": [65535, 0], "night but they buried him saturday didn't they": [65535, 0], "but they buried him saturday didn't they get": [65535, 0], "they buried him saturday didn't they get him": [65535, 0], "buried him saturday didn't they get him saturday": [65535, 0], "him saturday didn't they get him saturday night": [65535, 0], "saturday didn't they get him saturday night why": [65535, 0], "didn't they get him saturday night why how": [65535, 0], "they get him saturday night why how you": [65535, 0], "get him saturday night why how you talk": [65535, 0], "him saturday night why how you talk how": [65535, 0], "saturday night why how you talk how could": [65535, 0], "night why how you talk how could their": [65535, 0], "why how you talk how could their charms": [65535, 0], "how you talk how could their charms work": [65535, 0], "you talk how could their charms work till": [65535, 0], "talk how could their charms work till midnight": [65535, 0], "how could their charms work till midnight and": [65535, 0], "could their charms work till midnight and then": [65535, 0], "their charms work till midnight and then it's": [65535, 0], "charms work till midnight and then it's sunday": [65535, 0], "work till midnight and then it's sunday devils": [65535, 0], "till midnight and then it's sunday devils don't": [65535, 0], "midnight and then it's sunday devils don't slosh": [65535, 0], "and then it's sunday devils don't slosh around": [65535, 0], "then it's sunday devils don't slosh around much": [65535, 0], "it's sunday devils don't slosh around much of": [65535, 0], "sunday devils don't slosh around much of a": [65535, 0], "devils don't slosh around much of a sunday": [65535, 0], "don't slosh around much of a sunday i": [65535, 0], "slosh around much of a sunday i don't": [65535, 0], "around much of a sunday i don't reckon": [65535, 0], "much of a sunday i don't reckon i": [65535, 0], "of a sunday i don't reckon i never": [65535, 0], "a sunday i don't reckon i never thought": [65535, 0], "sunday i don't reckon i never thought of": [65535, 0], "i don't reckon i never thought of that": [65535, 0], "don't reckon i never thought of that that's": [65535, 0], "reckon i never thought of that that's so": [65535, 0], "i never thought of that that's so lemme": [65535, 0], "never thought of that that's so lemme go": [65535, 0], "thought of that that's so lemme go with": [65535, 0], "of that that's so lemme go with you": [65535, 0], "that that's so lemme go with you of": [65535, 0], "that's so lemme go with you of course": [65535, 0], "so lemme go with you of course if": [65535, 0], "lemme go with you of course if you": [65535, 0], "go with you of course if you ain't": [65535, 0], "with you of course if you ain't afeard": [65535, 0], "you of course if you ain't afeard afeard": [65535, 0], "of course if you ain't afeard afeard 'tain't": [65535, 0], "course if you ain't afeard afeard 'tain't likely": [65535, 0], "if you ain't afeard afeard 'tain't likely will": [65535, 0], "you ain't afeard afeard 'tain't likely will you": [65535, 0], "ain't afeard afeard 'tain't likely will you meow": [65535, 0], "afeard afeard 'tain't likely will you meow yes": [65535, 0], "afeard 'tain't likely will you meow yes and": [65535, 0], "'tain't likely will you meow yes and you": [65535, 0], "likely will you meow yes and you meow": [65535, 0], "will you meow yes and you meow back": [65535, 0], "you meow yes and you meow back if": [65535, 0], "meow yes and you meow back if you": [65535, 0], "yes and you meow back if you get": [65535, 0], "and you meow back if you get a": [65535, 0], "you meow back if you get a chance": [65535, 0], "meow back if you get a chance last": [65535, 0], "back if you get a chance last time": [65535, 0], "if you get a chance last time you": [65535, 0], "you get a chance last time you kep'": [65535, 0], "get a chance last time you kep' me": [65535, 0], "a chance last time you kep' me a": [65535, 0], "chance last time you kep' me a meowing": [65535, 0], "last time you kep' me a meowing around": [65535, 0], "time you kep' me a meowing around till": [65535, 0], "you kep' me a meowing around till old": [65535, 0], "kep' me a meowing around till old hays": [65535, 0], "me a meowing around till old hays went": [65535, 0], "a meowing around till old hays went to": [65535, 0], "meowing around till old hays went to throwing": [65535, 0], "around till old hays went to throwing rocks": [65535, 0], "till old hays went to throwing rocks at": [65535, 0], "old hays went to throwing rocks at me": [65535, 0], "hays went to throwing rocks at me and": [65535, 0], "went to throwing rocks at me and says": [65535, 0], "to throwing rocks at me and says 'dern": [65535, 0], "throwing rocks at me and says 'dern that": [65535, 0], "rocks at me and says 'dern that cat": [65535, 0], "at me and says 'dern that cat '": [65535, 0], "me and says 'dern that cat ' and": [65535, 0], "and says 'dern that cat ' and so": [65535, 0], "says 'dern that cat ' and so i": [65535, 0], "'dern that cat ' and so i hove": [65535, 0], "that cat ' and so i hove a": [65535, 0], "cat ' and so i hove a brick": [65535, 0], "' and so i hove a brick through": [65535, 0], "and so i hove a brick through his": [65535, 0], "so i hove a brick through his window": [65535, 0], "i hove a brick through his window but": [65535, 0], "hove a brick through his window but don't": [65535, 0], "a brick through his window but don't you": [65535, 0], "brick through his window but don't you tell": [65535, 0], "through his window but don't you tell i": [65535, 0], "his window but don't you tell i won't": [65535, 0], "window but don't you tell i won't i": [65535, 0], "but don't you tell i won't i couldn't": [65535, 0], "don't you tell i won't i couldn't meow": [65535, 0], "you tell i won't i couldn't meow that": [65535, 0], "tell i won't i couldn't meow that night": [65535, 0], "i won't i couldn't meow that night becuz": [65535, 0], "won't i couldn't meow that night becuz auntie": [65535, 0], "i couldn't meow that night becuz auntie was": [65535, 0], "couldn't meow that night becuz auntie was watching": [65535, 0], "meow that night becuz auntie was watching me": [65535, 0], "that night becuz auntie was watching me but": [65535, 0], "night becuz auntie was watching me but i'll": [65535, 0], "becuz auntie was watching me but i'll meow": [65535, 0], "auntie was watching me but i'll meow this": [65535, 0], "was watching me but i'll meow this time": [65535, 0], "watching me but i'll meow this time say": [65535, 0], "me but i'll meow this time say what's": [65535, 0], "but i'll meow this time say what's that": [65535, 0], "i'll meow this time say what's that nothing": [65535, 0], "meow this time say what's that nothing but": [65535, 0], "this time say what's that nothing but a": [65535, 0], "time say what's that nothing but a tick": [65535, 0], "say what's that nothing but a tick where'd": [65535, 0], "what's that nothing but a tick where'd you": [65535, 0], "that nothing but a tick where'd you get": [65535, 0], "nothing but a tick where'd you get him": [65535, 0], "but a tick where'd you get him out": [65535, 0], "a tick where'd you get him out in": [65535, 0], "tick where'd you get him out in the": [65535, 0], "where'd you get him out in the woods": [65535, 0], "you get him out in the woods what'll": [65535, 0], "get him out in the woods what'll you": [65535, 0], "him out in the woods what'll you take": [65535, 0], "out in the woods what'll you take for": [65535, 0], "in the woods what'll you take for him": [65535, 0], "the woods what'll you take for him i": [65535, 0], "woods what'll you take for him i don't": [65535, 0], "what'll you take for him i don't know": [65535, 0], "you take for him i don't know i": [65535, 0], "take for him i don't know i don't": [65535, 0], "for him i don't know i don't want": [65535, 0], "him i don't know i don't want to": [65535, 0], "i don't know i don't want to sell": [65535, 0], "don't know i don't want to sell him": [65535, 0], "know i don't want to sell him all": [65535, 0], "i don't want to sell him all right": [65535, 0], "don't want to sell him all right it's": [65535, 0], "want to sell him all right it's a": [65535, 0], "to sell him all right it's a mighty": [65535, 0], "sell him all right it's a mighty small": [65535, 0], "him all right it's a mighty small tick": [65535, 0], "all right it's a mighty small tick anyway": [65535, 0], "right it's a mighty small tick anyway oh": [65535, 0], "it's a mighty small tick anyway oh anybody": [65535, 0], "a mighty small tick anyway oh anybody can": [65535, 0], "mighty small tick anyway oh anybody can run": [65535, 0], "small tick anyway oh anybody can run a": [65535, 0], "tick anyway oh anybody can run a tick": [65535, 0], "anyway oh anybody can run a tick down": [65535, 0], "oh anybody can run a tick down that": [65535, 0], "anybody can run a tick down that don't": [65535, 0], "can run a tick down that don't belong": [65535, 0], "run a tick down that don't belong to": [65535, 0], "a tick down that don't belong to them": [65535, 0], "tick down that don't belong to them i'm": [65535, 0], "down that don't belong to them i'm satisfied": [65535, 0], "that don't belong to them i'm satisfied with": [65535, 0], "don't belong to them i'm satisfied with it": [65535, 0], "belong to them i'm satisfied with it it's": [65535, 0], "to them i'm satisfied with it it's a": [65535, 0], "them i'm satisfied with it it's a good": [65535, 0], "i'm satisfied with it it's a good enough": [65535, 0], "satisfied with it it's a good enough tick": [65535, 0], "with it it's a good enough tick for": [65535, 0], "it it's a good enough tick for me": [65535, 0], "it's a good enough tick for me sho": [65535, 0], "a good enough tick for me sho there's": [65535, 0], "good enough tick for me sho there's ticks": [65535, 0], "enough tick for me sho there's ticks a": [65535, 0], "tick for me sho there's ticks a plenty": [65535, 0], "for me sho there's ticks a plenty i": [65535, 0], "me sho there's ticks a plenty i could": [65535, 0], "sho there's ticks a plenty i could have": [65535, 0], "there's ticks a plenty i could have a": [65535, 0], "ticks a plenty i could have a thousand": [65535, 0], "a plenty i could have a thousand of": [65535, 0], "plenty i could have a thousand of 'em": [65535, 0], "i could have a thousand of 'em if": [65535, 0], "could have a thousand of 'em if i": [65535, 0], "have a thousand of 'em if i wanted": [65535, 0], "a thousand of 'em if i wanted to": [65535, 0], "thousand of 'em if i wanted to well": [65535, 0], "of 'em if i wanted to well why": [65535, 0], "'em if i wanted to well why don't": [65535, 0], "if i wanted to well why don't you": [65535, 0], "i wanted to well why don't you becuz": [65535, 0], "wanted to well why don't you becuz you": [65535, 0], "to well why don't you becuz you know": [65535, 0], "well why don't you becuz you know mighty": [65535, 0], "why don't you becuz you know mighty well": [65535, 0], "don't you becuz you know mighty well you": [65535, 0], "you becuz you know mighty well you can't": [65535, 0], "becuz you know mighty well you can't this": [65535, 0], "you know mighty well you can't this is": [65535, 0], "know mighty well you can't this is a": [65535, 0], "mighty well you can't this is a pretty": [65535, 0], "well you can't this is a pretty early": [65535, 0], "you can't this is a pretty early tick": [65535, 0], "can't this is a pretty early tick i": [65535, 0], "this is a pretty early tick i reckon": [65535, 0], "is a pretty early tick i reckon it's": [65535, 0], "a pretty early tick i reckon it's the": [65535, 0], "pretty early tick i reckon it's the first": [65535, 0], "early tick i reckon it's the first one": [65535, 0], "tick i reckon it's the first one i've": [65535, 0], "i reckon it's the first one i've seen": [65535, 0], "reckon it's the first one i've seen this": [65535, 0], "it's the first one i've seen this year": [65535, 0], "the first one i've seen this year say": [65535, 0], "first one i've seen this year say huck": [65535, 0], "one i've seen this year say huck i'll": [65535, 0], "i've seen this year say huck i'll give": [65535, 0], "seen this year say huck i'll give you": [65535, 0], "this year say huck i'll give you my": [65535, 0], "year say huck i'll give you my tooth": [65535, 0], "say huck i'll give you my tooth for": [65535, 0], "huck i'll give you my tooth for him": [65535, 0], "i'll give you my tooth for him less": [65535, 0], "give you my tooth for him less see": [65535, 0], "you my tooth for him less see it": [65535, 0], "my tooth for him less see it tom": [65535, 0], "tooth for him less see it tom got": [65535, 0], "for him less see it tom got out": [65535, 0], "him less see it tom got out a": [65535, 0], "less see it tom got out a bit": [65535, 0], "see it tom got out a bit of": [65535, 0], "it tom got out a bit of paper": [65535, 0], "tom got out a bit of paper and": [65535, 0], "got out a bit of paper and carefully": [65535, 0], "out a bit of paper and carefully unrolled": [65535, 0], "a bit of paper and carefully unrolled it": [65535, 0], "bit of paper and carefully unrolled it huckleberry": [65535, 0], "of paper and carefully unrolled it huckleberry viewed": [65535, 0], "paper and carefully unrolled it huckleberry viewed it": [65535, 0], "and carefully unrolled it huckleberry viewed it wistfully": [65535, 0], "carefully unrolled it huckleberry viewed it wistfully the": [65535, 0], "unrolled it huckleberry viewed it wistfully the temptation": [65535, 0], "it huckleberry viewed it wistfully the temptation was": [65535, 0], "huckleberry viewed it wistfully the temptation was very": [65535, 0], "viewed it wistfully the temptation was very strong": [65535, 0], "it wistfully the temptation was very strong at": [65535, 0], "wistfully the temptation was very strong at last": [65535, 0], "the temptation was very strong at last he": [65535, 0], "temptation was very strong at last he said": [65535, 0], "was very strong at last he said is": [65535, 0], "very strong at last he said is it": [65535, 0], "strong at last he said is it genuwyne": [65535, 0], "at last he said is it genuwyne tom": [65535, 0], "last he said is it genuwyne tom lifted": [65535, 0], "he said is it genuwyne tom lifted his": [65535, 0], "said is it genuwyne tom lifted his lip": [65535, 0], "is it genuwyne tom lifted his lip and": [65535, 0], "it genuwyne tom lifted his lip and showed": [65535, 0], "genuwyne tom lifted his lip and showed the": [65535, 0], "tom lifted his lip and showed the vacancy": [65535, 0], "lifted his lip and showed the vacancy well": [65535, 0], "his lip and showed the vacancy well all": [65535, 0], "lip and showed the vacancy well all right": [65535, 0], "and showed the vacancy well all right said": [65535, 0], "showed the vacancy well all right said huckleberry": [65535, 0], "the vacancy well all right said huckleberry it's": [65535, 0], "vacancy well all right said huckleberry it's a": [65535, 0], "well all right said huckleberry it's a trade": [65535, 0], "all right said huckleberry it's a trade tom": [65535, 0], "right said huckleberry it's a trade tom enclosed": [65535, 0], "said huckleberry it's a trade tom enclosed the": [65535, 0], "huckleberry it's a trade tom enclosed the tick": [65535, 0], "it's a trade tom enclosed the tick in": [65535, 0], "a trade tom enclosed the tick in the": [65535, 0], "trade tom enclosed the tick in the percussion": [65535, 0], "tom enclosed the tick in the percussion cap": [65535, 0], "enclosed the tick in the percussion cap box": [65535, 0], "the tick in the percussion cap box that": [65535, 0], "tick in the percussion cap box that had": [65535, 0], "in the percussion cap box that had lately": [65535, 0], "the percussion cap box that had lately been": [65535, 0], "percussion cap box that had lately been the": [65535, 0], "cap box that had lately been the pinchbug's": [65535, 0], "box that had lately been the pinchbug's prison": [65535, 0], "that had lately been the pinchbug's prison and": [65535, 0], "had lately been the pinchbug's prison and the": [65535, 0], "lately been the pinchbug's prison and the boys": [65535, 0], "been the pinchbug's prison and the boys separated": [65535, 0], "the pinchbug's prison and the boys separated each": [65535, 0], "pinchbug's prison and the boys separated each feeling": [65535, 0], "prison and the boys separated each feeling wealthier": [65535, 0], "and the boys separated each feeling wealthier than": [65535, 0], "the boys separated each feeling wealthier than before": [65535, 0], "boys separated each feeling wealthier than before when": [65535, 0], "separated each feeling wealthier than before when tom": [65535, 0], "each feeling wealthier than before when tom reached": [65535, 0], "feeling wealthier than before when tom reached the": [65535, 0], "wealthier than before when tom reached the little": [65535, 0], "than before when tom reached the little isolated": [65535, 0], "before when tom reached the little isolated frame": [65535, 0], "when tom reached the little isolated frame schoolhouse": [65535, 0], "tom reached the little isolated frame schoolhouse he": [65535, 0], "reached the little isolated frame schoolhouse he strode": [65535, 0], "the little isolated frame schoolhouse he strode in": [65535, 0], "little isolated frame schoolhouse he strode in briskly": [65535, 0], "isolated frame schoolhouse he strode in briskly with": [65535, 0], "frame schoolhouse he strode in briskly with the": [65535, 0], "schoolhouse he strode in briskly with the manner": [65535, 0], "he strode in briskly with the manner of": [65535, 0], "strode in briskly with the manner of one": [65535, 0], "in briskly with the manner of one who": [65535, 0], "briskly with the manner of one who had": [65535, 0], "with the manner of one who had come": [65535, 0], "the manner of one who had come with": [65535, 0], "manner of one who had come with all": [65535, 0], "of one who had come with all honest": [65535, 0], "one who had come with all honest speed": [65535, 0], "who had come with all honest speed he": [65535, 0], "had come with all honest speed he hung": [65535, 0], "come with all honest speed he hung his": [65535, 0], "with all honest speed he hung his hat": [65535, 0], "all honest speed he hung his hat on": [65535, 0], "honest speed he hung his hat on a": [65535, 0], "speed he hung his hat on a peg": [65535, 0], "he hung his hat on a peg and": [65535, 0], "hung his hat on a peg and flung": [65535, 0], "his hat on a peg and flung himself": [65535, 0], "hat on a peg and flung himself into": [65535, 0], "on a peg and flung himself into his": [65535, 0], "a peg and flung himself into his seat": [65535, 0], "peg and flung himself into his seat with": [65535, 0], "and flung himself into his seat with business": [65535, 0], "flung himself into his seat with business like": [65535, 0], "himself into his seat with business like alacrity": [65535, 0], "into his seat with business like alacrity the": [65535, 0], "his seat with business like alacrity the master": [65535, 0], "seat with business like alacrity the master throned": [65535, 0], "with business like alacrity the master throned on": [65535, 0], "business like alacrity the master throned on high": [65535, 0], "like alacrity the master throned on high in": [65535, 0], "alacrity the master throned on high in his": [65535, 0], "the master throned on high in his great": [65535, 0], "master throned on high in his great splint": [65535, 0], "throned on high in his great splint bottom": [65535, 0], "on high in his great splint bottom arm": [65535, 0], "high in his great splint bottom arm chair": [65535, 0], "in his great splint bottom arm chair was": [65535, 0], "his great splint bottom arm chair was dozing": [65535, 0], "great splint bottom arm chair was dozing lulled": [65535, 0], "splint bottom arm chair was dozing lulled by": [65535, 0], "bottom arm chair was dozing lulled by the": [65535, 0], "arm chair was dozing lulled by the drowsy": [65535, 0], "chair was dozing lulled by the drowsy hum": [65535, 0], "was dozing lulled by the drowsy hum of": [65535, 0], "dozing lulled by the drowsy hum of study": [65535, 0], "lulled by the drowsy hum of study the": [65535, 0], "by the drowsy hum of study the interruption": [65535, 0], "the drowsy hum of study the interruption roused": [65535, 0], "drowsy hum of study the interruption roused him": [65535, 0], "hum of study the interruption roused him thomas": [65535, 0], "of study the interruption roused him thomas sawyer": [65535, 0], "study the interruption roused him thomas sawyer tom": [65535, 0], "the interruption roused him thomas sawyer tom knew": [65535, 0], "interruption roused him thomas sawyer tom knew that": [65535, 0], "roused him thomas sawyer tom knew that when": [65535, 0], "him thomas sawyer tom knew that when his": [65535, 0], "thomas sawyer tom knew that when his name": [65535, 0], "sawyer tom knew that when his name was": [65535, 0], "tom knew that when his name was pronounced": [65535, 0], "knew that when his name was pronounced in": [65535, 0], "that when his name was pronounced in full": [65535, 0], "when his name was pronounced in full it": [65535, 0], "his name was pronounced in full it meant": [65535, 0], "name was pronounced in full it meant trouble": [65535, 0], "was pronounced in full it meant trouble sir": [65535, 0], "pronounced in full it meant trouble sir come": [65535, 0], "in full it meant trouble sir come up": [65535, 0], "full it meant trouble sir come up here": [65535, 0], "it meant trouble sir come up here now": [65535, 0], "meant trouble sir come up here now sir": [65535, 0], "trouble sir come up here now sir why": [65535, 0], "sir come up here now sir why are": [65535, 0], "come up here now sir why are you": [65535, 0], "up here now sir why are you late": [65535, 0], "here now sir why are you late again": [65535, 0], "now sir why are you late again as": [65535, 0], "sir why are you late again as usual": [65535, 0], "why are you late again as usual tom": [65535, 0], "are you late again as usual tom was": [65535, 0], "you late again as usual tom was about": [65535, 0], "late again as usual tom was about to": [65535, 0], "again as usual tom was about to take": [65535, 0], "as usual tom was about to take refuge": [65535, 0], "usual tom was about to take refuge in": [65535, 0], "tom was about to take refuge in a": [65535, 0], "was about to take refuge in a lie": [65535, 0], "about to take refuge in a lie when": [65535, 0], "to take refuge in a lie when he": [65535, 0], "take refuge in a lie when he saw": [65535, 0], "refuge in a lie when he saw two": [65535, 0], "in a lie when he saw two long": [65535, 0], "a lie when he saw two long tails": [65535, 0], "lie when he saw two long tails of": [65535, 0], "when he saw two long tails of yellow": [65535, 0], "he saw two long tails of yellow hair": [65535, 0], "saw two long tails of yellow hair hanging": [65535, 0], "two long tails of yellow hair hanging down": [65535, 0], "long tails of yellow hair hanging down a": [65535, 0], "tails of yellow hair hanging down a back": [65535, 0], "of yellow hair hanging down a back that": [65535, 0], "yellow hair hanging down a back that he": [65535, 0], "hair hanging down a back that he recognized": [65535, 0], "hanging down a back that he recognized by": [65535, 0], "down a back that he recognized by the": [65535, 0], "a back that he recognized by the electric": [65535, 0], "back that he recognized by the electric sympathy": [65535, 0], "that he recognized by the electric sympathy of": [65535, 0], "he recognized by the electric sympathy of love": [65535, 0], "recognized by the electric sympathy of love and": [65535, 0], "by the electric sympathy of love and by": [65535, 0], "the electric sympathy of love and by that": [65535, 0], "electric sympathy of love and by that form": [65535, 0], "sympathy of love and by that form was": [65535, 0], "of love and by that form was the": [65535, 0], "love and by that form was the only": [65535, 0], "and by that form was the only vacant": [65535, 0], "by that form was the only vacant place": [65535, 0], "that form was the only vacant place on": [65535, 0], "form was the only vacant place on the": [65535, 0], "was the only vacant place on the girls'": [65535, 0], "the only vacant place on the girls' side": [65535, 0], "only vacant place on the girls' side of": [65535, 0], "vacant place on the girls' side of the": [65535, 0], "place on the girls' side of the school": [65535, 0], "on the girls' side of the school house": [65535, 0], "the girls' side of the school house he": [65535, 0], "girls' side of the school house he instantly": [65535, 0], "side of the school house he instantly said": [65535, 0], "of the school house he instantly said i": [65535, 0], "the school house he instantly said i stopped": [65535, 0], "school house he instantly said i stopped to": [65535, 0], "house he instantly said i stopped to talk": [65535, 0], "he instantly said i stopped to talk with": [65535, 0], "instantly said i stopped to talk with huckleberry": [65535, 0], "said i stopped to talk with huckleberry finn": [65535, 0], "i stopped to talk with huckleberry finn the": [65535, 0], "stopped to talk with huckleberry finn the master's": [65535, 0], "to talk with huckleberry finn the master's pulse": [65535, 0], "talk with huckleberry finn the master's pulse stood": [65535, 0], "with huckleberry finn the master's pulse stood still": [65535, 0], "huckleberry finn the master's pulse stood still and": [65535, 0], "finn the master's pulse stood still and he": [65535, 0], "the master's pulse stood still and he stared": [65535, 0], "master's pulse stood still and he stared helplessly": [65535, 0], "pulse stood still and he stared helplessly the": [65535, 0], "stood still and he stared helplessly the buzz": [65535, 0], "still and he stared helplessly the buzz of": [65535, 0], "and he stared helplessly the buzz of study": [65535, 0], "he stared helplessly the buzz of study ceased": [65535, 0], "stared helplessly the buzz of study ceased the": [65535, 0], "helplessly the buzz of study ceased the pupils": [65535, 0], "the buzz of study ceased the pupils wondered": [65535, 0], "buzz of study ceased the pupils wondered if": [65535, 0], "of study ceased the pupils wondered if this": [65535, 0], "study ceased the pupils wondered if this foolhardy": [65535, 0], "ceased the pupils wondered if this foolhardy boy": [65535, 0], "the pupils wondered if this foolhardy boy had": [65535, 0], "pupils wondered if this foolhardy boy had lost": [65535, 0], "wondered if this foolhardy boy had lost his": [65535, 0], "if this foolhardy boy had lost his mind": [65535, 0], "this foolhardy boy had lost his mind the": [65535, 0], "foolhardy boy had lost his mind the master": [65535, 0], "boy had lost his mind the master said": [65535, 0], "had lost his mind the master said you": [65535, 0], "lost his mind the master said you you": [65535, 0], "his mind the master said you you did": [65535, 0], "mind the master said you you did what": [65535, 0], "the master said you you did what stopped": [65535, 0], "master said you you did what stopped to": [65535, 0], "said you you did what stopped to talk": [65535, 0], "you you did what stopped to talk with": [65535, 0], "you did what stopped to talk with huckleberry": [65535, 0], "did what stopped to talk with huckleberry finn": [65535, 0], "what stopped to talk with huckleberry finn there": [65535, 0], "stopped to talk with huckleberry finn there was": [65535, 0], "to talk with huckleberry finn there was no": [65535, 0], "talk with huckleberry finn there was no mistaking": [65535, 0], "with huckleberry finn there was no mistaking the": [65535, 0], "huckleberry finn there was no mistaking the words": [65535, 0], "finn there was no mistaking the words thomas": [65535, 0], "there was no mistaking the words thomas sawyer": [65535, 0], "was no mistaking the words thomas sawyer this": [65535, 0], "no mistaking the words thomas sawyer this is": [65535, 0], "mistaking the words thomas sawyer this is the": [65535, 0], "the words thomas sawyer this is the most": [65535, 0], "words thomas sawyer this is the most astounding": [65535, 0], "thomas sawyer this is the most astounding confession": [65535, 0], "sawyer this is the most astounding confession i": [65535, 0], "this is the most astounding confession i have": [65535, 0], "is the most astounding confession i have ever": [65535, 0], "the most astounding confession i have ever listened": [65535, 0], "most astounding confession i have ever listened to": [65535, 0], "astounding confession i have ever listened to no": [65535, 0], "confession i have ever listened to no mere": [65535, 0], "i have ever listened to no mere ferule": [65535, 0], "have ever listened to no mere ferule will": [65535, 0], "ever listened to no mere ferule will answer": [65535, 0], "listened to no mere ferule will answer for": [65535, 0], "to no mere ferule will answer for this": [65535, 0], "no mere ferule will answer for this offence": [65535, 0], "mere ferule will answer for this offence take": [65535, 0], "ferule will answer for this offence take off": [65535, 0], "will answer for this offence take off your": [65535, 0], "answer for this offence take off your jacket": [65535, 0], "for this offence take off your jacket the": [65535, 0], "this offence take off your jacket the master's": [65535, 0], "offence take off your jacket the master's arm": [65535, 0], "take off your jacket the master's arm performed": [65535, 0], "off your jacket the master's arm performed until": [65535, 0], "your jacket the master's arm performed until it": [65535, 0], "jacket the master's arm performed until it was": [65535, 0], "the master's arm performed until it was tired": [65535, 0], "master's arm performed until it was tired and": [65535, 0], "arm performed until it was tired and the": [65535, 0], "performed until it was tired and the stock": [65535, 0], "until it was tired and the stock of": [65535, 0], "it was tired and the stock of switches": [65535, 0], "was tired and the stock of switches notably": [65535, 0], "tired and the stock of switches notably diminished": [65535, 0], "and the stock of switches notably diminished then": [65535, 0], "the stock of switches notably diminished then the": [65535, 0], "stock of switches notably diminished then the order": [65535, 0], "of switches notably diminished then the order followed": [65535, 0], "switches notably diminished then the order followed now": [65535, 0], "notably diminished then the order followed now sir": [65535, 0], "diminished then the order followed now sir go": [65535, 0], "then the order followed now sir go and": [65535, 0], "the order followed now sir go and sit": [65535, 0], "order followed now sir go and sit with": [65535, 0], "followed now sir go and sit with the": [65535, 0], "now sir go and sit with the girls": [65535, 0], "sir go and sit with the girls and": [65535, 0], "go and sit with the girls and let": [65535, 0], "and sit with the girls and let this": [65535, 0], "sit with the girls and let this be": [65535, 0], "with the girls and let this be a": [65535, 0], "the girls and let this be a warning": [65535, 0], "girls and let this be a warning to": [65535, 0], "and let this be a warning to you": [65535, 0], "let this be a warning to you the": [65535, 0], "this be a warning to you the titter": [65535, 0], "be a warning to you the titter that": [65535, 0], "a warning to you the titter that rippled": [65535, 0], "warning to you the titter that rippled around": [65535, 0], "to you the titter that rippled around the": [65535, 0], "you the titter that rippled around the room": [65535, 0], "the titter that rippled around the room appeared": [65535, 0], "titter that rippled around the room appeared to": [65535, 0], "that rippled around the room appeared to abash": [65535, 0], "rippled around the room appeared to abash the": [65535, 0], "around the room appeared to abash the boy": [65535, 0], "the room appeared to abash the boy but": [65535, 0], "room appeared to abash the boy but in": [65535, 0], "appeared to abash the boy but in reality": [65535, 0], "to abash the boy but in reality that": [65535, 0], "abash the boy but in reality that result": [65535, 0], "the boy but in reality that result was": [65535, 0], "boy but in reality that result was caused": [65535, 0], "but in reality that result was caused rather": [65535, 0], "in reality that result was caused rather more": [65535, 0], "reality that result was caused rather more by": [65535, 0], "that result was caused rather more by his": [65535, 0], "result was caused rather more by his worshipful": [65535, 0], "was caused rather more by his worshipful awe": [65535, 0], "caused rather more by his worshipful awe of": [65535, 0], "rather more by his worshipful awe of his": [65535, 0], "more by his worshipful awe of his unknown": [65535, 0], "by his worshipful awe of his unknown idol": [65535, 0], "his worshipful awe of his unknown idol and": [65535, 0], "worshipful awe of his unknown idol and the": [65535, 0], "awe of his unknown idol and the dread": [65535, 0], "of his unknown idol and the dread pleasure": [65535, 0], "his unknown idol and the dread pleasure that": [65535, 0], "unknown idol and the dread pleasure that lay": [65535, 0], "idol and the dread pleasure that lay in": [65535, 0], "and the dread pleasure that lay in his": [65535, 0], "the dread pleasure that lay in his high": [65535, 0], "dread pleasure that lay in his high good": [65535, 0], "pleasure that lay in his high good fortune": [65535, 0], "that lay in his high good fortune he": [65535, 0], "lay in his high good fortune he sat": [65535, 0], "in his high good fortune he sat down": [65535, 0], "his high good fortune he sat down upon": [65535, 0], "high good fortune he sat down upon the": [65535, 0], "good fortune he sat down upon the end": [65535, 0], "fortune he sat down upon the end of": [65535, 0], "he sat down upon the end of the": [65535, 0], "sat down upon the end of the pine": [65535, 0], "down upon the end of the pine bench": [65535, 0], "upon the end of the pine bench and": [65535, 0], "the end of the pine bench and the": [65535, 0], "end of the pine bench and the girl": [65535, 0], "of the pine bench and the girl hitched": [65535, 0], "the pine bench and the girl hitched herself": [65535, 0], "pine bench and the girl hitched herself away": [65535, 0], "bench and the girl hitched herself away from": [65535, 0], "and the girl hitched herself away from him": [65535, 0], "the girl hitched herself away from him with": [65535, 0], "girl hitched herself away from him with a": [65535, 0], "hitched herself away from him with a toss": [65535, 0], "herself away from him with a toss of": [65535, 0], "away from him with a toss of her": [65535, 0], "from him with a toss of her head": [65535, 0], "him with a toss of her head nudges": [65535, 0], "with a toss of her head nudges and": [65535, 0], "a toss of her head nudges and winks": [65535, 0], "toss of her head nudges and winks and": [65535, 0], "of her head nudges and winks and whispers": [65535, 0], "her head nudges and winks and whispers traversed": [65535, 0], "head nudges and winks and whispers traversed the": [65535, 0], "nudges and winks and whispers traversed the room": [65535, 0], "and winks and whispers traversed the room but": [65535, 0], "winks and whispers traversed the room but tom": [65535, 0], "and whispers traversed the room but tom sat": [65535, 0], "whispers traversed the room but tom sat still": [65535, 0], "traversed the room but tom sat still with": [65535, 0], "the room but tom sat still with his": [65535, 0], "room but tom sat still with his arms": [65535, 0], "but tom sat still with his arms upon": [65535, 0], "tom sat still with his arms upon the": [65535, 0], "sat still with his arms upon the long": [65535, 0], "still with his arms upon the long low": [65535, 0], "with his arms upon the long low desk": [65535, 0], "his arms upon the long low desk before": [65535, 0], "arms upon the long low desk before him": [65535, 0], "upon the long low desk before him and": [65535, 0], "the long low desk before him and seemed": [65535, 0], "long low desk before him and seemed to": [65535, 0], "low desk before him and seemed to study": [65535, 0], "desk before him and seemed to study his": [65535, 0], "before him and seemed to study his book": [65535, 0], "him and seemed to study his book by": [65535, 0], "and seemed to study his book by and": [65535, 0], "seemed to study his book by and by": [65535, 0], "to study his book by and by attention": [65535, 0], "study his book by and by attention ceased": [65535, 0], "his book by and by attention ceased from": [65535, 0], "book by and by attention ceased from him": [65535, 0], "by and by attention ceased from him and": [65535, 0], "and by attention ceased from him and the": [65535, 0], "by attention ceased from him and the accustomed": [65535, 0], "attention ceased from him and the accustomed school": [65535, 0], "ceased from him and the accustomed school murmur": [65535, 0], "from him and the accustomed school murmur rose": [65535, 0], "him and the accustomed school murmur rose upon": [65535, 0], "and the accustomed school murmur rose upon the": [65535, 0], "the accustomed school murmur rose upon the dull": [65535, 0], "accustomed school murmur rose upon the dull air": [65535, 0], "school murmur rose upon the dull air once": [65535, 0], "murmur rose upon the dull air once more": [65535, 0], "rose upon the dull air once more presently": [65535, 0], "upon the dull air once more presently the": [65535, 0], "the dull air once more presently the boy": [65535, 0], "dull air once more presently the boy began": [65535, 0], "air once more presently the boy began to": [65535, 0], "once more presently the boy began to steal": [65535, 0], "more presently the boy began to steal furtive": [65535, 0], "presently the boy began to steal furtive glances": [65535, 0], "the boy began to steal furtive glances at": [65535, 0], "boy began to steal furtive glances at the": [65535, 0], "began to steal furtive glances at the girl": [65535, 0], "to steal furtive glances at the girl she": [65535, 0], "steal furtive glances at the girl she observed": [65535, 0], "furtive glances at the girl she observed it": [65535, 0], "glances at the girl she observed it made": [65535, 0], "at the girl she observed it made a": [65535, 0], "the girl she observed it made a mouth": [65535, 0], "girl she observed it made a mouth at": [65535, 0], "she observed it made a mouth at him": [65535, 0], "observed it made a mouth at him and": [65535, 0], "it made a mouth at him and gave": [65535, 0], "made a mouth at him and gave him": [65535, 0], "a mouth at him and gave him the": [65535, 0], "mouth at him and gave him the back": [65535, 0], "at him and gave him the back of": [65535, 0], "him and gave him the back of her": [65535, 0], "and gave him the back of her head": [65535, 0], "gave him the back of her head for": [65535, 0], "him the back of her head for the": [65535, 0], "the back of her head for the space": [65535, 0], "back of her head for the space of": [65535, 0], "of her head for the space of a": [65535, 0], "her head for the space of a minute": [65535, 0], "head for the space of a minute when": [65535, 0], "for the space of a minute when she": [65535, 0], "the space of a minute when she cautiously": [65535, 0], "space of a minute when she cautiously faced": [65535, 0], "of a minute when she cautiously faced around": [65535, 0], "a minute when she cautiously faced around again": [65535, 0], "minute when she cautiously faced around again a": [65535, 0], "when she cautiously faced around again a peach": [65535, 0], "she cautiously faced around again a peach lay": [65535, 0], "cautiously faced around again a peach lay before": [65535, 0], "faced around again a peach lay before her": [65535, 0], "around again a peach lay before her she": [65535, 0], "again a peach lay before her she thrust": [65535, 0], "a peach lay before her she thrust it": [65535, 0], "peach lay before her she thrust it away": [65535, 0], "lay before her she thrust it away tom": [65535, 0], "before her she thrust it away tom gently": [65535, 0], "her she thrust it away tom gently put": [65535, 0], "she thrust it away tom gently put it": [65535, 0], "thrust it away tom gently put it back": [65535, 0], "it away tom gently put it back she": [65535, 0], "away tom gently put it back she thrust": [65535, 0], "tom gently put it back she thrust it": [65535, 0], "gently put it back she thrust it away": [65535, 0], "put it back she thrust it away again": [65535, 0], "it back she thrust it away again but": [65535, 0], "back she thrust it away again but with": [65535, 0], "she thrust it away again but with less": [65535, 0], "thrust it away again but with less animosity": [65535, 0], "it away again but with less animosity tom": [65535, 0], "away again but with less animosity tom patiently": [65535, 0], "again but with less animosity tom patiently returned": [65535, 0], "but with less animosity tom patiently returned it": [65535, 0], "with less animosity tom patiently returned it to": [65535, 0], "less animosity tom patiently returned it to its": [65535, 0], "animosity tom patiently returned it to its place": [65535, 0], "tom patiently returned it to its place then": [65535, 0], "patiently returned it to its place then she": [65535, 0], "returned it to its place then she let": [65535, 0], "it to its place then she let it": [65535, 0], "to its place then she let it remain": [65535, 0], "its place then she let it remain tom": [65535, 0], "place then she let it remain tom scrawled": [65535, 0], "then she let it remain tom scrawled on": [65535, 0], "she let it remain tom scrawled on his": [65535, 0], "let it remain tom scrawled on his slate": [65535, 0], "it remain tom scrawled on his slate please": [65535, 0], "remain tom scrawled on his slate please take": [65535, 0], "tom scrawled on his slate please take it": [65535, 0], "scrawled on his slate please take it i": [65535, 0], "on his slate please take it i got": [65535, 0], "his slate please take it i got more": [65535, 0], "slate please take it i got more the": [65535, 0], "please take it i got more the girl": [65535, 0], "take it i got more the girl glanced": [65535, 0], "it i got more the girl glanced at": [65535, 0], "i got more the girl glanced at the": [65535, 0], "got more the girl glanced at the words": [65535, 0], "more the girl glanced at the words but": [65535, 0], "the girl glanced at the words but made": [65535, 0], "girl glanced at the words but made no": [65535, 0], "glanced at the words but made no sign": [65535, 0], "at the words but made no sign now": [65535, 0], "the words but made no sign now the": [65535, 0], "words but made no sign now the boy": [65535, 0], "but made no sign now the boy began": [65535, 0], "made no sign now the boy began to": [65535, 0], "no sign now the boy began to draw": [65535, 0], "sign now the boy began to draw something": [65535, 0], "now the boy began to draw something on": [65535, 0], "the boy began to draw something on the": [65535, 0], "boy began to draw something on the slate": [65535, 0], "began to draw something on the slate hiding": [65535, 0], "to draw something on the slate hiding his": [65535, 0], "draw something on the slate hiding his work": [65535, 0], "something on the slate hiding his work with": [65535, 0], "on the slate hiding his work with his": [65535, 0], "the slate hiding his work with his left": [65535, 0], "slate hiding his work with his left hand": [65535, 0], "hiding his work with his left hand for": [65535, 0], "his work with his left hand for a": [65535, 0], "work with his left hand for a time": [65535, 0], "with his left hand for a time the": [65535, 0], "his left hand for a time the girl": [65535, 0], "left hand for a time the girl refused": [65535, 0], "hand for a time the girl refused to": [65535, 0], "for a time the girl refused to notice": [65535, 0], "a time the girl refused to notice but": [65535, 0], "time the girl refused to notice but her": [65535, 0], "the girl refused to notice but her human": [65535, 0], "girl refused to notice but her human curiosity": [65535, 0], "refused to notice but her human curiosity presently": [65535, 0], "to notice but her human curiosity presently began": [65535, 0], "notice but her human curiosity presently began to": [65535, 0], "but her human curiosity presently began to manifest": [65535, 0], "her human curiosity presently began to manifest itself": [65535, 0], "human curiosity presently began to manifest itself by": [65535, 0], "curiosity presently began to manifest itself by hardly": [65535, 0], "presently began to manifest itself by hardly perceptible": [65535, 0], "began to manifest itself by hardly perceptible signs": [65535, 0], "to manifest itself by hardly perceptible signs the": [65535, 0], "manifest itself by hardly perceptible signs the boy": [65535, 0], "itself by hardly perceptible signs the boy worked": [65535, 0], "by hardly perceptible signs the boy worked on": [65535, 0], "hardly perceptible signs the boy worked on apparently": [65535, 0], "perceptible signs the boy worked on apparently unconscious": [65535, 0], "signs the boy worked on apparently unconscious the": [65535, 0], "the boy worked on apparently unconscious the girl": [65535, 0], "boy worked on apparently unconscious the girl made": [65535, 0], "worked on apparently unconscious the girl made a": [65535, 0], "on apparently unconscious the girl made a sort": [65535, 0], "apparently unconscious the girl made a sort of": [65535, 0], "unconscious the girl made a sort of noncommittal": [65535, 0], "the girl made a sort of noncommittal attempt": [65535, 0], "girl made a sort of noncommittal attempt to": [65535, 0], "made a sort of noncommittal attempt to see": [65535, 0], "a sort of noncommittal attempt to see but": [65535, 0], "sort of noncommittal attempt to see but the": [65535, 0], "of noncommittal attempt to see but the boy": [65535, 0], "noncommittal attempt to see but the boy did": [65535, 0], "attempt to see but the boy did not": [65535, 0], "to see but the boy did not betray": [65535, 0], "see but the boy did not betray that": [65535, 0], "but the boy did not betray that he": [65535, 0], "the boy did not betray that he was": [65535, 0], "boy did not betray that he was aware": [65535, 0], "did not betray that he was aware of": [65535, 0], "not betray that he was aware of it": [65535, 0], "betray that he was aware of it at": [65535, 0], "that he was aware of it at last": [65535, 0], "he was aware of it at last she": [65535, 0], "was aware of it at last she gave": [65535, 0], "aware of it at last she gave in": [65535, 0], "of it at last she gave in and": [65535, 0], "it at last she gave in and hesitatingly": [65535, 0], "at last she gave in and hesitatingly whispered": [65535, 0], "last she gave in and hesitatingly whispered let": [65535, 0], "she gave in and hesitatingly whispered let me": [65535, 0], "gave in and hesitatingly whispered let me see": [65535, 0], "in and hesitatingly whispered let me see it": [65535, 0], "and hesitatingly whispered let me see it tom": [65535, 0], "hesitatingly whispered let me see it tom partly": [65535, 0], "whispered let me see it tom partly uncovered": [65535, 0], "let me see it tom partly uncovered a": [65535, 0], "me see it tom partly uncovered a dismal": [65535, 0], "see it tom partly uncovered a dismal caricature": [65535, 0], "it tom partly uncovered a dismal caricature of": [65535, 0], "tom partly uncovered a dismal caricature of a": [65535, 0], "partly uncovered a dismal caricature of a house": [65535, 0], "uncovered a dismal caricature of a house with": [65535, 0], "a dismal caricature of a house with two": [65535, 0], "dismal caricature of a house with two gable": [65535, 0], "caricature of a house with two gable ends": [65535, 0], "of a house with two gable ends to": [65535, 0], "a house with two gable ends to it": [65535, 0], "house with two gable ends to it and": [65535, 0], "with two gable ends to it and a": [65535, 0], "two gable ends to it and a corkscrew": [65535, 0], "gable ends to it and a corkscrew of": [65535, 0], "ends to it and a corkscrew of smoke": [65535, 0], "to it and a corkscrew of smoke issuing": [65535, 0], "it and a corkscrew of smoke issuing from": [65535, 0], "and a corkscrew of smoke issuing from the": [65535, 0], "a corkscrew of smoke issuing from the chimney": [65535, 0], "corkscrew of smoke issuing from the chimney then": [65535, 0], "of smoke issuing from the chimney then the": [65535, 0], "smoke issuing from the chimney then the girl's": [65535, 0], "issuing from the chimney then the girl's interest": [65535, 0], "from the chimney then the girl's interest began": [65535, 0], "the chimney then the girl's interest began to": [65535, 0], "chimney then the girl's interest began to fasten": [65535, 0], "then the girl's interest began to fasten itself": [65535, 0], "the girl's interest began to fasten itself upon": [65535, 0], "girl's interest began to fasten itself upon the": [65535, 0], "interest began to fasten itself upon the work": [65535, 0], "began to fasten itself upon the work and": [65535, 0], "to fasten itself upon the work and she": [65535, 0], "fasten itself upon the work and she forgot": [65535, 0], "itself upon the work and she forgot everything": [65535, 0], "upon the work and she forgot everything else": [65535, 0], "the work and she forgot everything else when": [65535, 0], "work and she forgot everything else when it": [65535, 0], "and she forgot everything else when it was": [65535, 0], "she forgot everything else when it was finished": [65535, 0], "forgot everything else when it was finished she": [65535, 0], "everything else when it was finished she gazed": [65535, 0], "else when it was finished she gazed a": [65535, 0], "when it was finished she gazed a moment": [65535, 0], "it was finished she gazed a moment then": [65535, 0], "was finished she gazed a moment then whispered": [65535, 0], "finished she gazed a moment then whispered it's": [65535, 0], "she gazed a moment then whispered it's nice": [65535, 0], "gazed a moment then whispered it's nice make": [65535, 0], "a moment then whispered it's nice make a": [65535, 0], "moment then whispered it's nice make a man": [65535, 0], "then whispered it's nice make a man the": [65535, 0], "whispered it's nice make a man the artist": [65535, 0], "it's nice make a man the artist erected": [65535, 0], "nice make a man the artist erected a": [65535, 0], "make a man the artist erected a man": [65535, 0], "a man the artist erected a man in": [65535, 0], "man the artist erected a man in the": [65535, 0], "the artist erected a man in the front": [65535, 0], "artist erected a man in the front yard": [65535, 0], "erected a man in the front yard that": [65535, 0], "a man in the front yard that resembled": [65535, 0], "man in the front yard that resembled a": [65535, 0], "in the front yard that resembled a derrick": [65535, 0], "the front yard that resembled a derrick he": [65535, 0], "front yard that resembled a derrick he could": [65535, 0], "yard that resembled a derrick he could have": [65535, 0], "that resembled a derrick he could have stepped": [65535, 0], "resembled a derrick he could have stepped over": [65535, 0], "a derrick he could have stepped over the": [65535, 0], "derrick he could have stepped over the house": [65535, 0], "he could have stepped over the house but": [65535, 0], "could have stepped over the house but the": [65535, 0], "have stepped over the house but the girl": [65535, 0], "stepped over the house but the girl was": [65535, 0], "over the house but the girl was not": [65535, 0], "the house but the girl was not hypercritical": [65535, 0], "house but the girl was not hypercritical she": [65535, 0], "but the girl was not hypercritical she was": [65535, 0], "the girl was not hypercritical she was satisfied": [65535, 0], "girl was not hypercritical she was satisfied with": [65535, 0], "was not hypercritical she was satisfied with the": [65535, 0], "not hypercritical she was satisfied with the monster": [65535, 0], "hypercritical she was satisfied with the monster and": [65535, 0], "she was satisfied with the monster and whispered": [65535, 0], "was satisfied with the monster and whispered it's": [65535, 0], "satisfied with the monster and whispered it's a": [65535, 0], "with the monster and whispered it's a beautiful": [65535, 0], "the monster and whispered it's a beautiful man": [65535, 0], "monster and whispered it's a beautiful man now": [65535, 0], "and whispered it's a beautiful man now make": [65535, 0], "whispered it's a beautiful man now make me": [65535, 0], "it's a beautiful man now make me coming": [65535, 0], "a beautiful man now make me coming along": [65535, 0], "beautiful man now make me coming along tom": [65535, 0], "man now make me coming along tom drew": [65535, 0], "now make me coming along tom drew an": [65535, 0], "make me coming along tom drew an hour": [65535, 0], "me coming along tom drew an hour glass": [65535, 0], "coming along tom drew an hour glass with": [65535, 0], "along tom drew an hour glass with a": [65535, 0], "tom drew an hour glass with a full": [65535, 0], "drew an hour glass with a full moon": [65535, 0], "an hour glass with a full moon and": [65535, 0], "hour glass with a full moon and straw": [65535, 0], "glass with a full moon and straw limbs": [65535, 0], "with a full moon and straw limbs to": [65535, 0], "a full moon and straw limbs to it": [65535, 0], "full moon and straw limbs to it and": [65535, 0], "moon and straw limbs to it and armed": [65535, 0], "and straw limbs to it and armed the": [65535, 0], "straw limbs to it and armed the spreading": [65535, 0], "limbs to it and armed the spreading fingers": [65535, 0], "to it and armed the spreading fingers with": [65535, 0], "it and armed the spreading fingers with a": [65535, 0], "and armed the spreading fingers with a portentous": [65535, 0], "armed the spreading fingers with a portentous fan": [65535, 0], "the spreading fingers with a portentous fan the": [65535, 0], "spreading fingers with a portentous fan the girl": [65535, 0], "fingers with a portentous fan the girl said": [65535, 0], "with a portentous fan the girl said it's": [65535, 0], "a portentous fan the girl said it's ever": [65535, 0], "portentous fan the girl said it's ever so": [65535, 0], "fan the girl said it's ever so nice": [65535, 0], "the girl said it's ever so nice i": [65535, 0], "girl said it's ever so nice i wish": [65535, 0], "said it's ever so nice i wish i": [65535, 0], "it's ever so nice i wish i could": [65535, 0], "ever so nice i wish i could draw": [65535, 0], "so nice i wish i could draw it's": [65535, 0], "nice i wish i could draw it's easy": [65535, 0], "i wish i could draw it's easy whispered": [65535, 0], "wish i could draw it's easy whispered tom": [65535, 0], "i could draw it's easy whispered tom i'll": [65535, 0], "could draw it's easy whispered tom i'll learn": [65535, 0], "draw it's easy whispered tom i'll learn you": [65535, 0], "it's easy whispered tom i'll learn you oh": [65535, 0], "easy whispered tom i'll learn you oh will": [65535, 0], "whispered tom i'll learn you oh will you": [65535, 0], "tom i'll learn you oh will you when": [65535, 0], "i'll learn you oh will you when at": [65535, 0], "learn you oh will you when at noon": [65535, 0], "you oh will you when at noon do": [65535, 0], "oh will you when at noon do you": [65535, 0], "will you when at noon do you go": [65535, 0], "you when at noon do you go home": [65535, 0], "when at noon do you go home to": [65535, 0], "at noon do you go home to dinner": [65535, 0], "noon do you go home to dinner i'll": [65535, 0], "do you go home to dinner i'll stay": [65535, 0], "you go home to dinner i'll stay if": [65535, 0], "go home to dinner i'll stay if you": [65535, 0], "home to dinner i'll stay if you will": [65535, 0], "to dinner i'll stay if you will good": [65535, 0], "dinner i'll stay if you will good that's": [65535, 0], "i'll stay if you will good that's a": [65535, 0], "stay if you will good that's a whack": [65535, 0], "if you will good that's a whack what's": [65535, 0], "you will good that's a whack what's your": [65535, 0], "will good that's a whack what's your name": [65535, 0], "good that's a whack what's your name becky": [65535, 0], "that's a whack what's your name becky thatcher": [65535, 0], "a whack what's your name becky thatcher what's": [65535, 0], "whack what's your name becky thatcher what's yours": [65535, 0], "what's your name becky thatcher what's yours oh": [65535, 0], "your name becky thatcher what's yours oh i": [65535, 0], "name becky thatcher what's yours oh i know": [65535, 0], "becky thatcher what's yours oh i know it's": [65535, 0], "thatcher what's yours oh i know it's thomas": [65535, 0], "what's yours oh i know it's thomas sawyer": [65535, 0], "yours oh i know it's thomas sawyer that's": [65535, 0], "oh i know it's thomas sawyer that's the": [65535, 0], "i know it's thomas sawyer that's the name": [65535, 0], "know it's thomas sawyer that's the name they": [65535, 0], "it's thomas sawyer that's the name they lick": [65535, 0], "thomas sawyer that's the name they lick me": [65535, 0], "sawyer that's the name they lick me by": [65535, 0], "that's the name they lick me by i'm": [65535, 0], "the name they lick me by i'm tom": [65535, 0], "name they lick me by i'm tom when": [65535, 0], "they lick me by i'm tom when i'm": [65535, 0], "lick me by i'm tom when i'm good": [65535, 0], "me by i'm tom when i'm good you": [65535, 0], "by i'm tom when i'm good you call": [65535, 0], "i'm tom when i'm good you call me": [65535, 0], "tom when i'm good you call me tom": [65535, 0], "when i'm good you call me tom will": [65535, 0], "i'm good you call me tom will you": [65535, 0], "good you call me tom will you yes": [65535, 0], "you call me tom will you yes now": [65535, 0], "call me tom will you yes now tom": [65535, 0], "me tom will you yes now tom began": [65535, 0], "tom will you yes now tom began to": [65535, 0], "will you yes now tom began to scrawl": [65535, 0], "you yes now tom began to scrawl something": [65535, 0], "yes now tom began to scrawl something on": [65535, 0], "now tom began to scrawl something on the": [65535, 0], "tom began to scrawl something on the slate": [65535, 0], "began to scrawl something on the slate hiding": [65535, 0], "to scrawl something on the slate hiding the": [65535, 0], "scrawl something on the slate hiding the words": [65535, 0], "something on the slate hiding the words from": [65535, 0], "on the slate hiding the words from the": [65535, 0], "the slate hiding the words from the girl": [65535, 0], "slate hiding the words from the girl but": [65535, 0], "hiding the words from the girl but she": [65535, 0], "the words from the girl but she was": [65535, 0], "words from the girl but she was not": [65535, 0], "from the girl but she was not backward": [65535, 0], "the girl but she was not backward this": [65535, 0], "girl but she was not backward this time": [65535, 0], "but she was not backward this time she": [65535, 0], "she was not backward this time she begged": [65535, 0], "was not backward this time she begged to": [65535, 0], "not backward this time she begged to see": [65535, 0], "backward this time she begged to see tom": [65535, 0], "this time she begged to see tom said": [65535, 0], "time she begged to see tom said oh": [65535, 0], "she begged to see tom said oh it": [65535, 0], "begged to see tom said oh it ain't": [65535, 0], "to see tom said oh it ain't anything": [65535, 0], "see tom said oh it ain't anything yes": [65535, 0], "tom said oh it ain't anything yes it": [65535, 0], "said oh it ain't anything yes it is": [65535, 0], "oh it ain't anything yes it is no": [65535, 0], "it ain't anything yes it is no it": [65535, 0], "ain't anything yes it is no it ain't": [65535, 0], "anything yes it is no it ain't you": [65535, 0], "yes it is no it ain't you don't": [65535, 0], "it is no it ain't you don't want": [65535, 0], "is no it ain't you don't want to": [65535, 0], "no it ain't you don't want to see": [65535, 0], "it ain't you don't want to see yes": [65535, 0], "ain't you don't want to see yes i": [65535, 0], "you don't want to see yes i do": [65535, 0], "don't want to see yes i do indeed": [65535, 0], "want to see yes i do indeed i": [65535, 0], "to see yes i do indeed i do": [65535, 0], "see yes i do indeed i do please": [65535, 0], "yes i do indeed i do please let": [65535, 0], "i do indeed i do please let me": [65535, 0], "do indeed i do please let me you'll": [65535, 0], "indeed i do please let me you'll tell": [65535, 0], "i do please let me you'll tell no": [65535, 0], "do please let me you'll tell no i": [65535, 0], "please let me you'll tell no i won't": [65535, 0], "let me you'll tell no i won't deed": [65535, 0], "me you'll tell no i won't deed and": [65535, 0], "you'll tell no i won't deed and deed": [65535, 0], "tell no i won't deed and deed and": [65535, 0], "no i won't deed and deed and double": [65535, 0], "i won't deed and deed and double deed": [65535, 0], "won't deed and deed and double deed won't": [65535, 0], "deed and deed and double deed won't you": [65535, 0], "and deed and double deed won't you won't": [65535, 0], "deed and double deed won't you won't tell": [65535, 0], "and double deed won't you won't tell anybody": [65535, 0], "double deed won't you won't tell anybody at": [65535, 0], "deed won't you won't tell anybody at all": [65535, 0], "won't you won't tell anybody at all ever": [65535, 0], "you won't tell anybody at all ever as": [65535, 0], "won't tell anybody at all ever as long": [65535, 0], "tell anybody at all ever as long as": [65535, 0], "anybody at all ever as long as you": [65535, 0], "at all ever as long as you live": [65535, 0], "all ever as long as you live no": [65535, 0], "ever as long as you live no i": [65535, 0], "as long as you live no i won't": [65535, 0], "long as you live no i won't ever": [65535, 0], "as you live no i won't ever tell": [65535, 0], "you live no i won't ever tell anybody": [65535, 0], "live no i won't ever tell anybody now": [65535, 0], "no i won't ever tell anybody now let": [65535, 0], "i won't ever tell anybody now let me": [65535, 0], "won't ever tell anybody now let me oh": [65535, 0], "ever tell anybody now let me oh you": [65535, 0], "tell anybody now let me oh you don't": [65535, 0], "anybody now let me oh you don't want": [65535, 0], "now let me oh you don't want to": [65535, 0], "let me oh you don't want to see": [65535, 0], "me oh you don't want to see now": [65535, 0], "oh you don't want to see now that": [65535, 0], "you don't want to see now that you": [65535, 0], "don't want to see now that you treat": [65535, 0], "want to see now that you treat me": [65535, 0], "to see now that you treat me so": [65535, 0], "see now that you treat me so i": [65535, 0], "now that you treat me so i will": [65535, 0], "that you treat me so i will see": [65535, 0], "you treat me so i will see and": [65535, 0], "treat me so i will see and she": [65535, 0], "me so i will see and she put": [65535, 0], "so i will see and she put her": [65535, 0], "i will see and she put her small": [65535, 0], "will see and she put her small hand": [65535, 0], "see and she put her small hand upon": [65535, 0], "and she put her small hand upon his": [65535, 0], "she put her small hand upon his and": [65535, 0], "put her small hand upon his and a": [65535, 0], "her small hand upon his and a little": [65535, 0], "small hand upon his and a little scuffle": [65535, 0], "hand upon his and a little scuffle ensued": [65535, 0], "upon his and a little scuffle ensued tom": [65535, 0], "his and a little scuffle ensued tom pretending": [65535, 0], "and a little scuffle ensued tom pretending to": [65535, 0], "a little scuffle ensued tom pretending to resist": [65535, 0], "little scuffle ensued tom pretending to resist in": [65535, 0], "scuffle ensued tom pretending to resist in earnest": [65535, 0], "ensued tom pretending to resist in earnest but": [65535, 0], "tom pretending to resist in earnest but letting": [65535, 0], "pretending to resist in earnest but letting his": [65535, 0], "to resist in earnest but letting his hand": [65535, 0], "resist in earnest but letting his hand slip": [65535, 0], "in earnest but letting his hand slip by": [65535, 0], "earnest but letting his hand slip by degrees": [65535, 0], "but letting his hand slip by degrees till": [65535, 0], "letting his hand slip by degrees till these": [65535, 0], "his hand slip by degrees till these words": [65535, 0], "hand slip by degrees till these words were": [65535, 0], "slip by degrees till these words were revealed": [65535, 0], "by degrees till these words were revealed i": [65535, 0], "degrees till these words were revealed i love": [65535, 0], "till these words were revealed i love you": [65535, 0], "these words were revealed i love you oh": [65535, 0], "words were revealed i love you oh you": [65535, 0], "were revealed i love you oh you bad": [65535, 0], "revealed i love you oh you bad thing": [65535, 0], "i love you oh you bad thing and": [65535, 0], "love you oh you bad thing and she": [65535, 0], "you oh you bad thing and she hit": [65535, 0], "oh you bad thing and she hit his": [65535, 0], "you bad thing and she hit his hand": [65535, 0], "bad thing and she hit his hand a": [65535, 0], "thing and she hit his hand a smart": [65535, 0], "and she hit his hand a smart rap": [65535, 0], "she hit his hand a smart rap but": [65535, 0], "hit his hand a smart rap but reddened": [65535, 0], "his hand a smart rap but reddened and": [65535, 0], "hand a smart rap but reddened and looked": [65535, 0], "a smart rap but reddened and looked pleased": [65535, 0], "smart rap but reddened and looked pleased nevertheless": [65535, 0], "rap but reddened and looked pleased nevertheless just": [65535, 0], "but reddened and looked pleased nevertheless just at": [65535, 0], "reddened and looked pleased nevertheless just at this": [65535, 0], "and looked pleased nevertheless just at this juncture": [65535, 0], "looked pleased nevertheless just at this juncture the": [65535, 0], "pleased nevertheless just at this juncture the boy": [65535, 0], "nevertheless just at this juncture the boy felt": [65535, 0], "just at this juncture the boy felt a": [65535, 0], "at this juncture the boy felt a slow": [65535, 0], "this juncture the boy felt a slow fateful": [65535, 0], "juncture the boy felt a slow fateful grip": [65535, 0], "the boy felt a slow fateful grip closing": [65535, 0], "boy felt a slow fateful grip closing on": [65535, 0], "felt a slow fateful grip closing on his": [65535, 0], "a slow fateful grip closing on his ear": [65535, 0], "slow fateful grip closing on his ear and": [65535, 0], "fateful grip closing on his ear and a": [65535, 0], "grip closing on his ear and a steady": [65535, 0], "closing on his ear and a steady lifting": [65535, 0], "on his ear and a steady lifting impulse": [65535, 0], "his ear and a steady lifting impulse in": [65535, 0], "ear and a steady lifting impulse in that": [65535, 0], "and a steady lifting impulse in that vise": [65535, 0], "a steady lifting impulse in that vise he": [65535, 0], "steady lifting impulse in that vise he was": [65535, 0], "lifting impulse in that vise he was borne": [65535, 0], "impulse in that vise he was borne across": [65535, 0], "in that vise he was borne across the": [65535, 0], "that vise he was borne across the house": [65535, 0], "vise he was borne across the house and": [65535, 0], "he was borne across the house and deposited": [65535, 0], "was borne across the house and deposited in": [65535, 0], "borne across the house and deposited in his": [65535, 0], "across the house and deposited in his own": [65535, 0], "the house and deposited in his own seat": [65535, 0], "house and deposited in his own seat under": [65535, 0], "and deposited in his own seat under a": [65535, 0], "deposited in his own seat under a peppering": [65535, 0], "in his own seat under a peppering fire": [65535, 0], "his own seat under a peppering fire of": [65535, 0], "own seat under a peppering fire of giggles": [65535, 0], "seat under a peppering fire of giggles from": [65535, 0], "under a peppering fire of giggles from the": [65535, 0], "a peppering fire of giggles from the whole": [65535, 0], "peppering fire of giggles from the whole school": [65535, 0], "fire of giggles from the whole school then": [65535, 0], "of giggles from the whole school then the": [65535, 0], "giggles from the whole school then the master": [65535, 0], "from the whole school then the master stood": [65535, 0], "the whole school then the master stood over": [65535, 0], "whole school then the master stood over him": [65535, 0], "school then the master stood over him during": [65535, 0], "then the master stood over him during a": [65535, 0], "the master stood over him during a few": [65535, 0], "master stood over him during a few awful": [65535, 0], "stood over him during a few awful moments": [65535, 0], "over him during a few awful moments and": [65535, 0], "him during a few awful moments and finally": [65535, 0], "during a few awful moments and finally moved": [65535, 0], "a few awful moments and finally moved away": [65535, 0], "few awful moments and finally moved away to": [65535, 0], "awful moments and finally moved away to his": [65535, 0], "moments and finally moved away to his throne": [65535, 0], "and finally moved away to his throne without": [65535, 0], "finally moved away to his throne without saying": [65535, 0], "moved away to his throne without saying a": [65535, 0], "away to his throne without saying a word": [65535, 0], "to his throne without saying a word but": [65535, 0], "his throne without saying a word but although": [65535, 0], "throne without saying a word but although tom's": [65535, 0], "without saying a word but although tom's ear": [65535, 0], "saying a word but although tom's ear tingled": [65535, 0], "a word but although tom's ear tingled his": [65535, 0], "word but although tom's ear tingled his heart": [65535, 0], "but although tom's ear tingled his heart was": [65535, 0], "although tom's ear tingled his heart was jubilant": [65535, 0], "tom's ear tingled his heart was jubilant as": [65535, 0], "ear tingled his heart was jubilant as the": [65535, 0], "tingled his heart was jubilant as the school": [65535, 0], "his heart was jubilant as the school quieted": [65535, 0], "heart was jubilant as the school quieted down": [65535, 0], "was jubilant as the school quieted down tom": [65535, 0], "jubilant as the school quieted down tom made": [65535, 0], "as the school quieted down tom made an": [65535, 0], "the school quieted down tom made an honest": [65535, 0], "school quieted down tom made an honest effort": [65535, 0], "quieted down tom made an honest effort to": [65535, 0], "down tom made an honest effort to study": [65535, 0], "tom made an honest effort to study but": [65535, 0], "made an honest effort to study but the": [65535, 0], "an honest effort to study but the turmoil": [65535, 0], "honest effort to study but the turmoil within": [65535, 0], "effort to study but the turmoil within him": [65535, 0], "to study but the turmoil within him was": [65535, 0], "study but the turmoil within him was too": [65535, 0], "but the turmoil within him was too great": [65535, 0], "the turmoil within him was too great in": [65535, 0], "turmoil within him was too great in turn": [65535, 0], "within him was too great in turn he": [65535, 0], "him was too great in turn he took": [65535, 0], "was too great in turn he took his": [65535, 0], "too great in turn he took his place": [65535, 0], "great in turn he took his place in": [65535, 0], "in turn he took his place in the": [65535, 0], "turn he took his place in the reading": [65535, 0], "he took his place in the reading class": [65535, 0], "took his place in the reading class and": [65535, 0], "his place in the reading class and made": [65535, 0], "place in the reading class and made a": [65535, 0], "in the reading class and made a botch": [65535, 0], "the reading class and made a botch of": [65535, 0], "reading class and made a botch of it": [65535, 0], "class and made a botch of it then": [65535, 0], "and made a botch of it then in": [65535, 0], "made a botch of it then in the": [65535, 0], "a botch of it then in the geography": [65535, 0], "botch of it then in the geography class": [65535, 0], "of it then in the geography class and": [65535, 0], "it then in the geography class and turned": [65535, 0], "then in the geography class and turned lakes": [65535, 0], "in the geography class and turned lakes into": [65535, 0], "the geography class and turned lakes into mountains": [65535, 0], "geography class and turned lakes into mountains mountains": [65535, 0], "class and turned lakes into mountains mountains into": [65535, 0], "and turned lakes into mountains mountains into rivers": [65535, 0], "turned lakes into mountains mountains into rivers and": [65535, 0], "lakes into mountains mountains into rivers and rivers": [65535, 0], "into mountains mountains into rivers and rivers into": [65535, 0], "mountains mountains into rivers and rivers into continents": [65535, 0], "mountains into rivers and rivers into continents till": [65535, 0], "into rivers and rivers into continents till chaos": [65535, 0], "rivers and rivers into continents till chaos was": [65535, 0], "and rivers into continents till chaos was come": [65535, 0], "rivers into continents till chaos was come again": [65535, 0], "into continents till chaos was come again then": [65535, 0], "continents till chaos was come again then in": [65535, 0], "till chaos was come again then in the": [65535, 0], "chaos was come again then in the spelling": [65535, 0], "was come again then in the spelling class": [65535, 0], "come again then in the spelling class and": [65535, 0], "again then in the spelling class and got": [65535, 0], "then in the spelling class and got turned": [65535, 0], "in the spelling class and got turned down": [65535, 0], "the spelling class and got turned down by": [65535, 0], "spelling class and got turned down by a": [65535, 0], "class and got turned down by a succession": [65535, 0], "and got turned down by a succession of": [65535, 0], "got turned down by a succession of mere": [65535, 0], "turned down by a succession of mere baby": [65535, 0], "down by a succession of mere baby words": [65535, 0], "by a succession of mere baby words till": [65535, 0], "a succession of mere baby words till he": [65535, 0], "succession of mere baby words till he brought": [65535, 0], "of mere baby words till he brought up": [65535, 0], "mere baby words till he brought up at": [65535, 0], "baby words till he brought up at the": [65535, 0], "words till he brought up at the foot": [65535, 0], "till he brought up at the foot and": [65535, 0], "he brought up at the foot and yielded": [65535, 0], "brought up at the foot and yielded up": [65535, 0], "up at the foot and yielded up the": [65535, 0], "at the foot and yielded up the pewter": [65535, 0], "the foot and yielded up the pewter medal": [65535, 0], "foot and yielded up the pewter medal which": [65535, 0], "and yielded up the pewter medal which he": [65535, 0], "yielded up the pewter medal which he had": [65535, 0], "up the pewter medal which he had worn": [65535, 0], "the pewter medal which he had worn with": [65535, 0], "pewter medal which he had worn with ostentation": [65535, 0], "medal which he had worn with ostentation for": [65535, 0], "which he had worn with ostentation for months": [65535, 0], "monday morning found tom sawyer miserable monday morning always": [65535, 0], "morning found tom sawyer miserable monday morning always found": [65535, 0], "found tom sawyer miserable monday morning always found him": [65535, 0], "tom sawyer miserable monday morning always found him so": [65535, 0], "sawyer miserable monday morning always found him so because": [65535, 0], "miserable monday morning always found him so because it": [65535, 0], "monday morning always found him so because it began": [65535, 0], "morning always found him so because it began another": [65535, 0], "always found him so because it began another week's": [65535, 0], "found him so because it began another week's slow": [65535, 0], "him so because it began another week's slow suffering": [65535, 0], "so because it began another week's slow suffering in": [65535, 0], "because it began another week's slow suffering in school": [65535, 0], "it began another week's slow suffering in school he": [65535, 0], "began another week's slow suffering in school he generally": [65535, 0], "another week's slow suffering in school he generally began": [65535, 0], "week's slow suffering in school he generally began that": [65535, 0], "slow suffering in school he generally began that day": [65535, 0], "suffering in school he generally began that day with": [65535, 0], "in school he generally began that day with wishing": [65535, 0], "school he generally began that day with wishing he": [65535, 0], "he generally began that day with wishing he had": [65535, 0], "generally began that day with wishing he had had": [65535, 0], "began that day with wishing he had had no": [65535, 0], "that day with wishing he had had no intervening": [65535, 0], "day with wishing he had had no intervening holiday": [65535, 0], "with wishing he had had no intervening holiday it": [65535, 0], "wishing he had had no intervening holiday it made": [65535, 0], "he had had no intervening holiday it made the": [65535, 0], "had had no intervening holiday it made the going": [65535, 0], "had no intervening holiday it made the going into": [65535, 0], "no intervening holiday it made the going into captivity": [65535, 0], "intervening holiday it made the going into captivity and": [65535, 0], "holiday it made the going into captivity and fetters": [65535, 0], "it made the going into captivity and fetters again": [65535, 0], "made the going into captivity and fetters again so": [65535, 0], "the going into captivity and fetters again so much": [65535, 0], "going into captivity and fetters again so much more": [65535, 0], "into captivity and fetters again so much more odious": [65535, 0], "captivity and fetters again so much more odious tom": [65535, 0], "and fetters again so much more odious tom lay": [65535, 0], "fetters again so much more odious tom lay thinking": [65535, 0], "again so much more odious tom lay thinking presently": [65535, 0], "so much more odious tom lay thinking presently it": [65535, 0], "much more odious tom lay thinking presently it occurred": [65535, 0], "more odious tom lay thinking presently it occurred to": [65535, 0], "odious tom lay thinking presently it occurred to him": [65535, 0], "tom lay thinking presently it occurred to him that": [65535, 0], "lay thinking presently it occurred to him that he": [65535, 0], "thinking presently it occurred to him that he wished": [65535, 0], "presently it occurred to him that he wished he": [65535, 0], "it occurred to him that he wished he was": [65535, 0], "occurred to him that he wished he was sick": [65535, 0], "to him that he wished he was sick then": [65535, 0], "him that he wished he was sick then he": [65535, 0], "that he wished he was sick then he could": [65535, 0], "he wished he was sick then he could stay": [65535, 0], "wished he was sick then he could stay home": [65535, 0], "he was sick then he could stay home from": [65535, 0], "was sick then he could stay home from school": [65535, 0], "sick then he could stay home from school here": [65535, 0], "then he could stay home from school here was": [65535, 0], "he could stay home from school here was a": [65535, 0], "could stay home from school here was a vague": [65535, 0], "stay home from school here was a vague possibility": [65535, 0], "home from school here was a vague possibility he": [65535, 0], "from school here was a vague possibility he canvassed": [65535, 0], "school here was a vague possibility he canvassed his": [65535, 0], "here was a vague possibility he canvassed his system": [65535, 0], "was a vague possibility he canvassed his system no": [65535, 0], "a vague possibility he canvassed his system no ailment": [65535, 0], "vague possibility he canvassed his system no ailment was": [65535, 0], "possibility he canvassed his system no ailment was found": [65535, 0], "he canvassed his system no ailment was found and": [65535, 0], "canvassed his system no ailment was found and he": [65535, 0], "his system no ailment was found and he investigated": [65535, 0], "system no ailment was found and he investigated again": [65535, 0], "no ailment was found and he investigated again this": [65535, 0], "ailment was found and he investigated again this time": [65535, 0], "was found and he investigated again this time he": [65535, 0], "found and he investigated again this time he thought": [65535, 0], "and he investigated again this time he thought he": [65535, 0], "he investigated again this time he thought he could": [65535, 0], "investigated again this time he thought he could detect": [65535, 0], "again this time he thought he could detect colicky": [65535, 0], "this time he thought he could detect colicky symptoms": [65535, 0], "time he thought he could detect colicky symptoms and": [65535, 0], "he thought he could detect colicky symptoms and he": [65535, 0], "thought he could detect colicky symptoms and he began": [65535, 0], "he could detect colicky symptoms and he began to": [65535, 0], "could detect colicky symptoms and he began to encourage": [65535, 0], "detect colicky symptoms and he began to encourage them": [65535, 0], "colicky symptoms and he began to encourage them with": [65535, 0], "symptoms and he began to encourage them with considerable": [65535, 0], "and he began to encourage them with considerable hope": [65535, 0], "he began to encourage them with considerable hope but": [65535, 0], "began to encourage them with considerable hope but they": [65535, 0], "to encourage them with considerable hope but they soon": [65535, 0], "encourage them with considerable hope but they soon grew": [65535, 0], "them with considerable hope but they soon grew feeble": [65535, 0], "with considerable hope but they soon grew feeble and": [65535, 0], "considerable hope but they soon grew feeble and presently": [65535, 0], "hope but they soon grew feeble and presently died": [65535, 0], "but they soon grew feeble and presently died wholly": [65535, 0], "they soon grew feeble and presently died wholly away": [65535, 0], "soon grew feeble and presently died wholly away he": [65535, 0], "grew feeble and presently died wholly away he reflected": [65535, 0], "feeble and presently died wholly away he reflected further": [65535, 0], "and presently died wholly away he reflected further suddenly": [65535, 0], "presently died wholly away he reflected further suddenly he": [65535, 0], "died wholly away he reflected further suddenly he discovered": [65535, 0], "wholly away he reflected further suddenly he discovered something": [65535, 0], "away he reflected further suddenly he discovered something one": [65535, 0], "he reflected further suddenly he discovered something one of": [65535, 0], "reflected further suddenly he discovered something one of his": [65535, 0], "further suddenly he discovered something one of his upper": [65535, 0], "suddenly he discovered something one of his upper front": [65535, 0], "he discovered something one of his upper front teeth": [65535, 0], "discovered something one of his upper front teeth was": [65535, 0], "something one of his upper front teeth was loose": [65535, 0], "one of his upper front teeth was loose this": [65535, 0], "of his upper front teeth was loose this was": [65535, 0], "his upper front teeth was loose this was lucky": [65535, 0], "upper front teeth was loose this was lucky he": [65535, 0], "front teeth was loose this was lucky he was": [65535, 0], "teeth was loose this was lucky he was about": [65535, 0], "was loose this was lucky he was about to": [65535, 0], "loose this was lucky he was about to begin": [65535, 0], "this was lucky he was about to begin to": [65535, 0], "was lucky he was about to begin to groan": [65535, 0], "lucky he was about to begin to groan as": [65535, 0], "he was about to begin to groan as a": [65535, 0], "was about to begin to groan as a starter": [65535, 0], "about to begin to groan as a starter as": [65535, 0], "to begin to groan as a starter as he": [65535, 0], "begin to groan as a starter as he called": [65535, 0], "to groan as a starter as he called it": [65535, 0], "groan as a starter as he called it when": [65535, 0], "as a starter as he called it when it": [65535, 0], "a starter as he called it when it occurred": [65535, 0], "starter as he called it when it occurred to": [65535, 0], "as he called it when it occurred to him": [65535, 0], "he called it when it occurred to him that": [65535, 0], "called it when it occurred to him that if": [65535, 0], "it when it occurred to him that if he": [65535, 0], "when it occurred to him that if he came": [65535, 0], "it occurred to him that if he came into": [65535, 0], "occurred to him that if he came into court": [65535, 0], "to him that if he came into court with": [65535, 0], "him that if he came into court with that": [65535, 0], "that if he came into court with that argument": [65535, 0], "if he came into court with that argument his": [65535, 0], "he came into court with that argument his aunt": [65535, 0], "came into court with that argument his aunt would": [65535, 0], "into court with that argument his aunt would pull": [65535, 0], "court with that argument his aunt would pull it": [65535, 0], "with that argument his aunt would pull it out": [65535, 0], "that argument his aunt would pull it out and": [65535, 0], "argument his aunt would pull it out and that": [65535, 0], "his aunt would pull it out and that would": [65535, 0], "aunt would pull it out and that would hurt": [65535, 0], "would pull it out and that would hurt so": [65535, 0], "pull it out and that would hurt so he": [65535, 0], "it out and that would hurt so he thought": [65535, 0], "out and that would hurt so he thought he": [65535, 0], "and that would hurt so he thought he would": [65535, 0], "that would hurt so he thought he would hold": [65535, 0], "would hurt so he thought he would hold the": [65535, 0], "hurt so he thought he would hold the tooth": [65535, 0], "so he thought he would hold the tooth in": [65535, 0], "he thought he would hold the tooth in reserve": [65535, 0], "thought he would hold the tooth in reserve for": [65535, 0], "he would hold the tooth in reserve for the": [65535, 0], "would hold the tooth in reserve for the present": [65535, 0], "hold the tooth in reserve for the present and": [65535, 0], "the tooth in reserve for the present and seek": [65535, 0], "tooth in reserve for the present and seek further": [65535, 0], "in reserve for the present and seek further nothing": [65535, 0], "reserve for the present and seek further nothing offered": [65535, 0], "for the present and seek further nothing offered for": [65535, 0], "the present and seek further nothing offered for some": [65535, 0], "present and seek further nothing offered for some little": [65535, 0], "and seek further nothing offered for some little time": [65535, 0], "seek further nothing offered for some little time and": [65535, 0], "further nothing offered for some little time and then": [65535, 0], "nothing offered for some little time and then he": [65535, 0], "offered for some little time and then he remembered": [65535, 0], "for some little time and then he remembered hearing": [65535, 0], "some little time and then he remembered hearing the": [65535, 0], "little time and then he remembered hearing the doctor": [65535, 0], "time and then he remembered hearing the doctor tell": [65535, 0], "and then he remembered hearing the doctor tell about": [65535, 0], "then he remembered hearing the doctor tell about a": [65535, 0], "he remembered hearing the doctor tell about a certain": [65535, 0], "remembered hearing the doctor tell about a certain thing": [65535, 0], "hearing the doctor tell about a certain thing that": [65535, 0], "the doctor tell about a certain thing that laid": [65535, 0], "doctor tell about a certain thing that laid up": [65535, 0], "tell about a certain thing that laid up a": [65535, 0], "about a certain thing that laid up a patient": [65535, 0], "a certain thing that laid up a patient for": [65535, 0], "certain thing that laid up a patient for two": [65535, 0], "thing that laid up a patient for two or": [65535, 0], "that laid up a patient for two or three": [65535, 0], "laid up a patient for two or three weeks": [65535, 0], "up a patient for two or three weeks and": [65535, 0], "a patient for two or three weeks and threatened": [65535, 0], "patient for two or three weeks and threatened to": [65535, 0], "for two or three weeks and threatened to make": [65535, 0], "two or three weeks and threatened to make him": [65535, 0], "or three weeks and threatened to make him lose": [65535, 0], "three weeks and threatened to make him lose a": [65535, 0], "weeks and threatened to make him lose a finger": [65535, 0], "and threatened to make him lose a finger so": [65535, 0], "threatened to make him lose a finger so the": [65535, 0], "to make him lose a finger so the boy": [65535, 0], "make him lose a finger so the boy eagerly": [65535, 0], "him lose a finger so the boy eagerly drew": [65535, 0], "lose a finger so the boy eagerly drew his": [65535, 0], "a finger so the boy eagerly drew his sore": [65535, 0], "finger so the boy eagerly drew his sore toe": [65535, 0], "so the boy eagerly drew his sore toe from": [65535, 0], "the boy eagerly drew his sore toe from under": [65535, 0], "boy eagerly drew his sore toe from under the": [65535, 0], "eagerly drew his sore toe from under the sheet": [65535, 0], "drew his sore toe from under the sheet and": [65535, 0], "his sore toe from under the sheet and held": [65535, 0], "sore toe from under the sheet and held it": [65535, 0], "toe from under the sheet and held it up": [65535, 0], "from under the sheet and held it up for": [65535, 0], "under the sheet and held it up for inspection": [65535, 0], "the sheet and held it up for inspection but": [65535, 0], "sheet and held it up for inspection but now": [65535, 0], "and held it up for inspection but now he": [65535, 0], "held it up for inspection but now he did": [65535, 0], "it up for inspection but now he did not": [65535, 0], "up for inspection but now he did not know": [65535, 0], "for inspection but now he did not know the": [65535, 0], "inspection but now he did not know the necessary": [65535, 0], "but now he did not know the necessary symptoms": [65535, 0], "now he did not know the necessary symptoms however": [65535, 0], "he did not know the necessary symptoms however it": [65535, 0], "did not know the necessary symptoms however it seemed": [65535, 0], "not know the necessary symptoms however it seemed well": [65535, 0], "know the necessary symptoms however it seemed well worth": [65535, 0], "the necessary symptoms however it seemed well worth while": [65535, 0], "necessary symptoms however it seemed well worth while to": [65535, 0], "symptoms however it seemed well worth while to chance": [65535, 0], "however it seemed well worth while to chance it": [65535, 0], "it seemed well worth while to chance it so": [65535, 0], "seemed well worth while to chance it so he": [65535, 0], "well worth while to chance it so he fell": [65535, 0], "worth while to chance it so he fell to": [65535, 0], "while to chance it so he fell to groaning": [65535, 0], "to chance it so he fell to groaning with": [65535, 0], "chance it so he fell to groaning with considerable": [65535, 0], "it so he fell to groaning with considerable spirit": [65535, 0], "so he fell to groaning with considerable spirit but": [65535, 0], "he fell to groaning with considerable spirit but sid": [65535, 0], "fell to groaning with considerable spirit but sid slept": [65535, 0], "to groaning with considerable spirit but sid slept on": [65535, 0], "groaning with considerable spirit but sid slept on unconscious": [65535, 0], "with considerable spirit but sid slept on unconscious tom": [65535, 0], "considerable spirit but sid slept on unconscious tom groaned": [65535, 0], "spirit but sid slept on unconscious tom groaned louder": [65535, 0], "but sid slept on unconscious tom groaned louder and": [65535, 0], "sid slept on unconscious tom groaned louder and fancied": [65535, 0], "slept on unconscious tom groaned louder and fancied that": [65535, 0], "on unconscious tom groaned louder and fancied that he": [65535, 0], "unconscious tom groaned louder and fancied that he began": [65535, 0], "tom groaned louder and fancied that he began to": [65535, 0], "groaned louder and fancied that he began to feel": [65535, 0], "louder and fancied that he began to feel pain": [65535, 0], "and fancied that he began to feel pain in": [65535, 0], "fancied that he began to feel pain in the": [65535, 0], "that he began to feel pain in the toe": [65535, 0], "he began to feel pain in the toe no": [65535, 0], "began to feel pain in the toe no result": [65535, 0], "to feel pain in the toe no result from": [65535, 0], "feel pain in the toe no result from sid": [65535, 0], "pain in the toe no result from sid tom": [65535, 0], "in the toe no result from sid tom was": [65535, 0], "the toe no result from sid tom was panting": [65535, 0], "toe no result from sid tom was panting with": [65535, 0], "no result from sid tom was panting with his": [65535, 0], "result from sid tom was panting with his exertions": [65535, 0], "from sid tom was panting with his exertions by": [65535, 0], "sid tom was panting with his exertions by this": [65535, 0], "tom was panting with his exertions by this time": [65535, 0], "was panting with his exertions by this time he": [65535, 0], "panting with his exertions by this time he took": [65535, 0], "with his exertions by this time he took a": [65535, 0], "his exertions by this time he took a rest": [65535, 0], "exertions by this time he took a rest and": [65535, 0], "by this time he took a rest and then": [65535, 0], "this time he took a rest and then swelled": [65535, 0], "time he took a rest and then swelled himself": [65535, 0], "he took a rest and then swelled himself up": [65535, 0], "took a rest and then swelled himself up and": [65535, 0], "a rest and then swelled himself up and fetched": [65535, 0], "rest and then swelled himself up and fetched a": [65535, 0], "and then swelled himself up and fetched a succession": [65535, 0], "then swelled himself up and fetched a succession of": [65535, 0], "swelled himself up and fetched a succession of admirable": [65535, 0], "himself up and fetched a succession of admirable groans": [65535, 0], "up and fetched a succession of admirable groans sid": [65535, 0], "and fetched a succession of admirable groans sid snored": [65535, 0], "fetched a succession of admirable groans sid snored on": [65535, 0], "a succession of admirable groans sid snored on tom": [65535, 0], "succession of admirable groans sid snored on tom was": [65535, 0], "of admirable groans sid snored on tom was aggravated": [65535, 0], "admirable groans sid snored on tom was aggravated he": [65535, 0], "groans sid snored on tom was aggravated he said": [65535, 0], "sid snored on tom was aggravated he said sid": [65535, 0], "snored on tom was aggravated he said sid sid": [65535, 0], "on tom was aggravated he said sid sid and": [65535, 0], "tom was aggravated he said sid sid and shook": [65535, 0], "was aggravated he said sid sid and shook him": [65535, 0], "aggravated he said sid sid and shook him this": [65535, 0], "he said sid sid and shook him this course": [65535, 0], "said sid sid and shook him this course worked": [65535, 0], "sid sid and shook him this course worked well": [65535, 0], "sid and shook him this course worked well and": [65535, 0], "and shook him this course worked well and tom": [65535, 0], "shook him this course worked well and tom began": [65535, 0], "him this course worked well and tom began to": [65535, 0], "this course worked well and tom began to groan": [65535, 0], "course worked well and tom began to groan again": [65535, 0], "worked well and tom began to groan again sid": [65535, 0], "well and tom began to groan again sid yawned": [65535, 0], "and tom began to groan again sid yawned stretched": [65535, 0], "tom began to groan again sid yawned stretched then": [65535, 0], "began to groan again sid yawned stretched then brought": [65535, 0], "to groan again sid yawned stretched then brought himself": [65535, 0], "groan again sid yawned stretched then brought himself up": [65535, 0], "again sid yawned stretched then brought himself up on": [65535, 0], "sid yawned stretched then brought himself up on his": [65535, 0], "yawned stretched then brought himself up on his elbow": [65535, 0], "stretched then brought himself up on his elbow with": [65535, 0], "then brought himself up on his elbow with a": [65535, 0], "brought himself up on his elbow with a snort": [65535, 0], "himself up on his elbow with a snort and": [65535, 0], "up on his elbow with a snort and began": [65535, 0], "on his elbow with a snort and began to": [65535, 0], "his elbow with a snort and began to stare": [65535, 0], "elbow with a snort and began to stare at": [65535, 0], "with a snort and began to stare at tom": [65535, 0], "a snort and began to stare at tom tom": [65535, 0], "snort and began to stare at tom tom went": [65535, 0], "and began to stare at tom tom went on": [65535, 0], "began to stare at tom tom went on groaning": [65535, 0], "to stare at tom tom went on groaning sid": [65535, 0], "stare at tom tom went on groaning sid said": [65535, 0], "at tom tom went on groaning sid said tom": [65535, 0], "tom tom went on groaning sid said tom say": [65535, 0], "tom went on groaning sid said tom say tom": [65535, 0], "went on groaning sid said tom say tom no": [65535, 0], "on groaning sid said tom say tom no response": [65535, 0], "groaning sid said tom say tom no response here": [65535, 0], "sid said tom say tom no response here tom": [65535, 0], "said tom say tom no response here tom tom": [65535, 0], "tom say tom no response here tom tom what": [65535, 0], "say tom no response here tom tom what is": [65535, 0], "tom no response here tom tom what is the": [65535, 0], "no response here tom tom what is the matter": [65535, 0], "response here tom tom what is the matter tom": [65535, 0], "here tom tom what is the matter tom and": [65535, 0], "tom tom what is the matter tom and he": [65535, 0], "tom what is the matter tom and he shook": [65535, 0], "what is the matter tom and he shook him": [65535, 0], "is the matter tom and he shook him and": [65535, 0], "the matter tom and he shook him and looked": [65535, 0], "matter tom and he shook him and looked in": [65535, 0], "tom and he shook him and looked in his": [65535, 0], "and he shook him and looked in his face": [65535, 0], "he shook him and looked in his face anxiously": [65535, 0], "shook him and looked in his face anxiously tom": [65535, 0], "him and looked in his face anxiously tom moaned": [65535, 0], "and looked in his face anxiously tom moaned out": [65535, 0], "looked in his face anxiously tom moaned out oh": [65535, 0], "in his face anxiously tom moaned out oh don't": [65535, 0], "his face anxiously tom moaned out oh don't sid": [65535, 0], "face anxiously tom moaned out oh don't sid don't": [65535, 0], "anxiously tom moaned out oh don't sid don't joggle": [65535, 0], "tom moaned out oh don't sid don't joggle me": [65535, 0], "moaned out oh don't sid don't joggle me why": [65535, 0], "out oh don't sid don't joggle me why what's": [65535, 0], "oh don't sid don't joggle me why what's the": [65535, 0], "don't sid don't joggle me why what's the matter": [65535, 0], "sid don't joggle me why what's the matter tom": [65535, 0], "don't joggle me why what's the matter tom i": [65535, 0], "joggle me why what's the matter tom i must": [65535, 0], "me why what's the matter tom i must call": [65535, 0], "why what's the matter tom i must call auntie": [65535, 0], "what's the matter tom i must call auntie no": [65535, 0], "the matter tom i must call auntie no never": [65535, 0], "matter tom i must call auntie no never mind": [65535, 0], "tom i must call auntie no never mind it'll": [65535, 0], "i must call auntie no never mind it'll be": [65535, 0], "must call auntie no never mind it'll be over": [65535, 0], "call auntie no never mind it'll be over by": [65535, 0], "auntie no never mind it'll be over by and": [65535, 0], "no never mind it'll be over by and by": [65535, 0], "never mind it'll be over by and by maybe": [65535, 0], "mind it'll be over by and by maybe don't": [65535, 0], "it'll be over by and by maybe don't call": [65535, 0], "be over by and by maybe don't call anybody": [65535, 0], "over by and by maybe don't call anybody but": [65535, 0], "by and by maybe don't call anybody but i": [65535, 0], "and by maybe don't call anybody but i must": [65535, 0], "by maybe don't call anybody but i must don't": [65535, 0], "maybe don't call anybody but i must don't groan": [65535, 0], "don't call anybody but i must don't groan so": [65535, 0], "call anybody but i must don't groan so tom": [65535, 0], "anybody but i must don't groan so tom it's": [65535, 0], "but i must don't groan so tom it's awful": [65535, 0], "i must don't groan so tom it's awful how": [65535, 0], "must don't groan so tom it's awful how long": [65535, 0], "don't groan so tom it's awful how long you": [65535, 0], "groan so tom it's awful how long you been": [65535, 0], "so tom it's awful how long you been this": [65535, 0], "tom it's awful how long you been this way": [65535, 0], "it's awful how long you been this way hours": [65535, 0], "awful how long you been this way hours ouch": [65535, 0], "how long you been this way hours ouch oh": [65535, 0], "long you been this way hours ouch oh don't": [65535, 0], "you been this way hours ouch oh don't stir": [65535, 0], "been this way hours ouch oh don't stir so": [65535, 0], "this way hours ouch oh don't stir so sid": [65535, 0], "way hours ouch oh don't stir so sid you'll": [65535, 0], "hours ouch oh don't stir so sid you'll kill": [65535, 0], "ouch oh don't stir so sid you'll kill me": [65535, 0], "oh don't stir so sid you'll kill me tom": [65535, 0], "don't stir so sid you'll kill me tom why": [65535, 0], "stir so sid you'll kill me tom why didn't": [65535, 0], "so sid you'll kill me tom why didn't you": [65535, 0], "sid you'll kill me tom why didn't you wake": [65535, 0], "you'll kill me tom why didn't you wake me": [65535, 0], "kill me tom why didn't you wake me sooner": [65535, 0], "me tom why didn't you wake me sooner oh": [65535, 0], "tom why didn't you wake me sooner oh tom": [65535, 0], "why didn't you wake me sooner oh tom don't": [65535, 0], "didn't you wake me sooner oh tom don't it": [65535, 0], "you wake me sooner oh tom don't it makes": [65535, 0], "wake me sooner oh tom don't it makes my": [65535, 0], "me sooner oh tom don't it makes my flesh": [65535, 0], "sooner oh tom don't it makes my flesh crawl": [65535, 0], "oh tom don't it makes my flesh crawl to": [65535, 0], "tom don't it makes my flesh crawl to hear": [65535, 0], "don't it makes my flesh crawl to hear you": [65535, 0], "it makes my flesh crawl to hear you tom": [65535, 0], "makes my flesh crawl to hear you tom what": [65535, 0], "my flesh crawl to hear you tom what is": [65535, 0], "flesh crawl to hear you tom what is the": [65535, 0], "crawl to hear you tom what is the matter": [65535, 0], "to hear you tom what is the matter i": [65535, 0], "hear you tom what is the matter i forgive": [65535, 0], "you tom what is the matter i forgive you": [65535, 0], "tom what is the matter i forgive you everything": [65535, 0], "what is the matter i forgive you everything sid": [65535, 0], "is the matter i forgive you everything sid groan": [65535, 0], "the matter i forgive you everything sid groan everything": [65535, 0], "matter i forgive you everything sid groan everything you've": [65535, 0], "i forgive you everything sid groan everything you've ever": [65535, 0], "forgive you everything sid groan everything you've ever done": [65535, 0], "you everything sid groan everything you've ever done to": [65535, 0], "everything sid groan everything you've ever done to me": [65535, 0], "sid groan everything you've ever done to me when": [65535, 0], "groan everything you've ever done to me when i'm": [65535, 0], "everything you've ever done to me when i'm gone": [65535, 0], "you've ever done to me when i'm gone oh": [65535, 0], "ever done to me when i'm gone oh tom": [65535, 0], "done to me when i'm gone oh tom you": [65535, 0], "to me when i'm gone oh tom you ain't": [65535, 0], "me when i'm gone oh tom you ain't dying": [65535, 0], "when i'm gone oh tom you ain't dying are": [65535, 0], "i'm gone oh tom you ain't dying are you": [65535, 0], "gone oh tom you ain't dying are you don't": [65535, 0], "oh tom you ain't dying are you don't tom": [65535, 0], "tom you ain't dying are you don't tom oh": [65535, 0], "you ain't dying are you don't tom oh don't": [65535, 0], "ain't dying are you don't tom oh don't maybe": [65535, 0], "dying are you don't tom oh don't maybe i": [65535, 0], "are you don't tom oh don't maybe i forgive": [65535, 0], "you don't tom oh don't maybe i forgive everybody": [65535, 0], "don't tom oh don't maybe i forgive everybody sid": [65535, 0], "tom oh don't maybe i forgive everybody sid groan": [65535, 0], "oh don't maybe i forgive everybody sid groan tell": [65535, 0], "don't maybe i forgive everybody sid groan tell 'em": [65535, 0], "maybe i forgive everybody sid groan tell 'em so": [65535, 0], "i forgive everybody sid groan tell 'em so sid": [65535, 0], "forgive everybody sid groan tell 'em so sid and": [65535, 0], "everybody sid groan tell 'em so sid and sid": [65535, 0], "sid groan tell 'em so sid and sid you": [65535, 0], "groan tell 'em so sid and sid you give": [65535, 0], "tell 'em so sid and sid you give my": [65535, 0], "'em so sid and sid you give my window": [65535, 0], "so sid and sid you give my window sash": [65535, 0], "sid and sid you give my window sash and": [65535, 0], "and sid you give my window sash and my": [65535, 0], "sid you give my window sash and my cat": [65535, 0], "you give my window sash and my cat with": [65535, 0], "give my window sash and my cat with one": [65535, 0], "my window sash and my cat with one eye": [65535, 0], "window sash and my cat with one eye to": [65535, 0], "sash and my cat with one eye to that": [65535, 0], "and my cat with one eye to that new": [65535, 0], "my cat with one eye to that new girl": [65535, 0], "cat with one eye to that new girl that's": [65535, 0], "with one eye to that new girl that's come": [65535, 0], "one eye to that new girl that's come to": [65535, 0], "eye to that new girl that's come to town": [65535, 0], "to that new girl that's come to town and": [65535, 0], "that new girl that's come to town and tell": [65535, 0], "new girl that's come to town and tell her": [65535, 0], "girl that's come to town and tell her but": [65535, 0], "that's come to town and tell her but sid": [65535, 0], "come to town and tell her but sid had": [65535, 0], "to town and tell her but sid had snatched": [65535, 0], "town and tell her but sid had snatched his": [65535, 0], "and tell her but sid had snatched his clothes": [65535, 0], "tell her but sid had snatched his clothes and": [65535, 0], "her but sid had snatched his clothes and gone": [65535, 0], "but sid had snatched his clothes and gone tom": [65535, 0], "sid had snatched his clothes and gone tom was": [65535, 0], "had snatched his clothes and gone tom was suffering": [65535, 0], "snatched his clothes and gone tom was suffering in": [65535, 0], "his clothes and gone tom was suffering in reality": [65535, 0], "clothes and gone tom was suffering in reality now": [65535, 0], "and gone tom was suffering in reality now so": [65535, 0], "gone tom was suffering in reality now so handsomely": [65535, 0], "tom was suffering in reality now so handsomely was": [65535, 0], "was suffering in reality now so handsomely was his": [65535, 0], "suffering in reality now so handsomely was his imagination": [65535, 0], "in reality now so handsomely was his imagination working": [65535, 0], "reality now so handsomely was his imagination working and": [65535, 0], "now so handsomely was his imagination working and so": [65535, 0], "so handsomely was his imagination working and so his": [65535, 0], "handsomely was his imagination working and so his groans": [65535, 0], "was his imagination working and so his groans had": [65535, 0], "his imagination working and so his groans had gathered": [65535, 0], "imagination working and so his groans had gathered quite": [65535, 0], "working and so his groans had gathered quite a": [65535, 0], "and so his groans had gathered quite a genuine": [65535, 0], "so his groans had gathered quite a genuine tone": [65535, 0], "his groans had gathered quite a genuine tone sid": [65535, 0], "groans had gathered quite a genuine tone sid flew": [65535, 0], "had gathered quite a genuine tone sid flew down": [65535, 0], "gathered quite a genuine tone sid flew down stairs": [65535, 0], "quite a genuine tone sid flew down stairs and": [65535, 0], "a genuine tone sid flew down stairs and said": [65535, 0], "genuine tone sid flew down stairs and said oh": [65535, 0], "tone sid flew down stairs and said oh aunt": [65535, 0], "sid flew down stairs and said oh aunt polly": [65535, 0], "flew down stairs and said oh aunt polly come": [65535, 0], "down stairs and said oh aunt polly come tom's": [65535, 0], "stairs and said oh aunt polly come tom's dying": [65535, 0], "and said oh aunt polly come tom's dying dying": [65535, 0], "said oh aunt polly come tom's dying dying yes'm": [65535, 0], "oh aunt polly come tom's dying dying yes'm don't": [65535, 0], "aunt polly come tom's dying dying yes'm don't wait": [65535, 0], "polly come tom's dying dying yes'm don't wait come": [65535, 0], "come tom's dying dying yes'm don't wait come quick": [65535, 0], "tom's dying dying yes'm don't wait come quick rubbage": [65535, 0], "dying dying yes'm don't wait come quick rubbage i": [65535, 0], "dying yes'm don't wait come quick rubbage i don't": [65535, 0], "yes'm don't wait come quick rubbage i don't believe": [65535, 0], "don't wait come quick rubbage i don't believe it": [65535, 0], "wait come quick rubbage i don't believe it but": [65535, 0], "come quick rubbage i don't believe it but she": [65535, 0], "quick rubbage i don't believe it but she fled": [65535, 0], "rubbage i don't believe it but she fled up": [65535, 0], "i don't believe it but she fled up stairs": [65535, 0], "don't believe it but she fled up stairs nevertheless": [65535, 0], "believe it but she fled up stairs nevertheless with": [65535, 0], "it but she fled up stairs nevertheless with sid": [65535, 0], "but she fled up stairs nevertheless with sid and": [65535, 0], "she fled up stairs nevertheless with sid and mary": [65535, 0], "fled up stairs nevertheless with sid and mary at": [65535, 0], "up stairs nevertheless with sid and mary at her": [65535, 0], "stairs nevertheless with sid and mary at her heels": [65535, 0], "nevertheless with sid and mary at her heels and": [65535, 0], "with sid and mary at her heels and her": [65535, 0], "sid and mary at her heels and her face": [65535, 0], "and mary at her heels and her face grew": [65535, 0], "mary at her heels and her face grew white": [65535, 0], "at her heels and her face grew white too": [65535, 0], "her heels and her face grew white too and": [65535, 0], "heels and her face grew white too and her": [65535, 0], "and her face grew white too and her lip": [65535, 0], "her face grew white too and her lip trembled": [65535, 0], "face grew white too and her lip trembled when": [65535, 0], "grew white too and her lip trembled when she": [65535, 0], "white too and her lip trembled when she reached": [65535, 0], "too and her lip trembled when she reached the": [65535, 0], "and her lip trembled when she reached the bedside": [65535, 0], "her lip trembled when she reached the bedside she": [65535, 0], "lip trembled when she reached the bedside she gasped": [65535, 0], "trembled when she reached the bedside she gasped out": [65535, 0], "when she reached the bedside she gasped out you": [65535, 0], "she reached the bedside she gasped out you tom": [65535, 0], "reached the bedside she gasped out you tom tom": [65535, 0], "the bedside she gasped out you tom tom what's": [65535, 0], "bedside she gasped out you tom tom what's the": [65535, 0], "she gasped out you tom tom what's the matter": [65535, 0], "gasped out you tom tom what's the matter with": [65535, 0], "out you tom tom what's the matter with you": [65535, 0], "you tom tom what's the matter with you oh": [65535, 0], "tom tom what's the matter with you oh auntie": [65535, 0], "tom what's the matter with you oh auntie i'm": [65535, 0], "what's the matter with you oh auntie i'm what's": [65535, 0], "the matter with you oh auntie i'm what's the": [65535, 0], "matter with you oh auntie i'm what's the matter": [65535, 0], "with you oh auntie i'm what's the matter with": [65535, 0], "you oh auntie i'm what's the matter with you": [65535, 0], "oh auntie i'm what's the matter with you what": [65535, 0], "auntie i'm what's the matter with you what is": [65535, 0], "i'm what's the matter with you what is the": [65535, 0], "what's the matter with you what is the matter": [65535, 0], "the matter with you what is the matter with": [65535, 0], "matter with you what is the matter with you": [65535, 0], "with you what is the matter with you child": [65535, 0], "you what is the matter with you child oh": [65535, 0], "what is the matter with you child oh auntie": [65535, 0], "is the matter with you child oh auntie my": [65535, 0], "the matter with you child oh auntie my sore": [65535, 0], "matter with you child oh auntie my sore toe's": [65535, 0], "with you child oh auntie my sore toe's mortified": [65535, 0], "you child oh auntie my sore toe's mortified the": [65535, 0], "child oh auntie my sore toe's mortified the old": [65535, 0], "oh auntie my sore toe's mortified the old lady": [65535, 0], "auntie my sore toe's mortified the old lady sank": [65535, 0], "my sore toe's mortified the old lady sank down": [65535, 0], "sore toe's mortified the old lady sank down into": [65535, 0], "toe's mortified the old lady sank down into a": [65535, 0], "mortified the old lady sank down into a chair": [65535, 0], "the old lady sank down into a chair and": [65535, 0], "old lady sank down into a chair and laughed": [65535, 0], "lady sank down into a chair and laughed a": [65535, 0], "sank down into a chair and laughed a little": [65535, 0], "down into a chair and laughed a little then": [65535, 0], "into a chair and laughed a little then cried": [65535, 0], "a chair and laughed a little then cried a": [65535, 0], "chair and laughed a little then cried a little": [65535, 0], "and laughed a little then cried a little then": [65535, 0], "laughed a little then cried a little then did": [65535, 0], "a little then cried a little then did both": [65535, 0], "little then cried a little then did both together": [65535, 0], "then cried a little then did both together this": [65535, 0], "cried a little then did both together this restored": [65535, 0], "a little then did both together this restored her": [65535, 0], "little then did both together this restored her and": [65535, 0], "then did both together this restored her and she": [65535, 0], "did both together this restored her and she said": [65535, 0], "both together this restored her and she said tom": [65535, 0], "together this restored her and she said tom what": [65535, 0], "this restored her and she said tom what a": [65535, 0], "restored her and she said tom what a turn": [65535, 0], "her and she said tom what a turn you": [65535, 0], "and she said tom what a turn you did": [65535, 0], "she said tom what a turn you did give": [65535, 0], "said tom what a turn you did give me": [65535, 0], "tom what a turn you did give me now": [65535, 0], "what a turn you did give me now you": [65535, 0], "a turn you did give me now you shut": [65535, 0], "turn you did give me now you shut up": [65535, 0], "you did give me now you shut up that": [65535, 0], "did give me now you shut up that nonsense": [65535, 0], "give me now you shut up that nonsense and": [65535, 0], "me now you shut up that nonsense and climb": [65535, 0], "now you shut up that nonsense and climb out": [65535, 0], "you shut up that nonsense and climb out of": [65535, 0], "shut up that nonsense and climb out of this": [65535, 0], "up that nonsense and climb out of this the": [65535, 0], "that nonsense and climb out of this the groans": [65535, 0], "nonsense and climb out of this the groans ceased": [65535, 0], "and climb out of this the groans ceased and": [65535, 0], "climb out of this the groans ceased and the": [65535, 0], "out of this the groans ceased and the pain": [65535, 0], "of this the groans ceased and the pain vanished": [65535, 0], "this the groans ceased and the pain vanished from": [65535, 0], "the groans ceased and the pain vanished from the": [65535, 0], "groans ceased and the pain vanished from the toe": [65535, 0], "ceased and the pain vanished from the toe the": [65535, 0], "and the pain vanished from the toe the boy": [65535, 0], "the pain vanished from the toe the boy felt": [65535, 0], "pain vanished from the toe the boy felt a": [65535, 0], "vanished from the toe the boy felt a little": [65535, 0], "from the toe the boy felt a little foolish": [65535, 0], "the toe the boy felt a little foolish and": [65535, 0], "toe the boy felt a little foolish and he": [65535, 0], "the boy felt a little foolish and he said": [65535, 0], "boy felt a little foolish and he said aunt": [65535, 0], "felt a little foolish and he said aunt polly": [65535, 0], "a little foolish and he said aunt polly it": [65535, 0], "little foolish and he said aunt polly it seemed": [65535, 0], "foolish and he said aunt polly it seemed mortified": [65535, 0], "and he said aunt polly it seemed mortified and": [65535, 0], "he said aunt polly it seemed mortified and it": [65535, 0], "said aunt polly it seemed mortified and it hurt": [65535, 0], "aunt polly it seemed mortified and it hurt so": [65535, 0], "polly it seemed mortified and it hurt so i": [65535, 0], "it seemed mortified and it hurt so i never": [65535, 0], "seemed mortified and it hurt so i never minded": [65535, 0], "mortified and it hurt so i never minded my": [65535, 0], "and it hurt so i never minded my tooth": [65535, 0], "it hurt so i never minded my tooth at": [65535, 0], "hurt so i never minded my tooth at all": [65535, 0], "so i never minded my tooth at all your": [65535, 0], "i never minded my tooth at all your tooth": [65535, 0], "never minded my tooth at all your tooth indeed": [65535, 0], "minded my tooth at all your tooth indeed what's": [65535, 0], "my tooth at all your tooth indeed what's the": [65535, 0], "tooth at all your tooth indeed what's the matter": [65535, 0], "at all your tooth indeed what's the matter with": [65535, 0], "all your tooth indeed what's the matter with your": [65535, 0], "your tooth indeed what's the matter with your tooth": [65535, 0], "tooth indeed what's the matter with your tooth one": [65535, 0], "indeed what's the matter with your tooth one of": [65535, 0], "what's the matter with your tooth one of them's": [65535, 0], "the matter with your tooth one of them's loose": [65535, 0], "matter with your tooth one of them's loose and": [65535, 0], "with your tooth one of them's loose and it": [65535, 0], "your tooth one of them's loose and it aches": [65535, 0], "tooth one of them's loose and it aches perfectly": [65535, 0], "one of them's loose and it aches perfectly awful": [65535, 0], "of them's loose and it aches perfectly awful there": [65535, 0], "them's loose and it aches perfectly awful there there": [65535, 0], "loose and it aches perfectly awful there there now": [65535, 0], "and it aches perfectly awful there there now don't": [65535, 0], "it aches perfectly awful there there now don't begin": [65535, 0], "aches perfectly awful there there now don't begin that": [65535, 0], "perfectly awful there there now don't begin that groaning": [65535, 0], "awful there there now don't begin that groaning again": [65535, 0], "there there now don't begin that groaning again open": [65535, 0], "there now don't begin that groaning again open your": [65535, 0], "now don't begin that groaning again open your mouth": [65535, 0], "don't begin that groaning again open your mouth well": [65535, 0], "begin that groaning again open your mouth well your": [65535, 0], "that groaning again open your mouth well your tooth": [65535, 0], "groaning again open your mouth well your tooth is": [65535, 0], "again open your mouth well your tooth is loose": [65535, 0], "open your mouth well your tooth is loose but": [65535, 0], "your mouth well your tooth is loose but you're": [65535, 0], "mouth well your tooth is loose but you're not": [65535, 0], "well your tooth is loose but you're not going": [65535, 0], "your tooth is loose but you're not going to": [65535, 0], "tooth is loose but you're not going to die": [65535, 0], "is loose but you're not going to die about": [65535, 0], "loose but you're not going to die about that": [65535, 0], "but you're not going to die about that mary": [65535, 0], "you're not going to die about that mary get": [65535, 0], "not going to die about that mary get me": [65535, 0], "going to die about that mary get me a": [65535, 0], "to die about that mary get me a silk": [65535, 0], "die about that mary get me a silk thread": [65535, 0], "about that mary get me a silk thread and": [65535, 0], "that mary get me a silk thread and a": [65535, 0], "mary get me a silk thread and a chunk": [65535, 0], "get me a silk thread and a chunk of": [65535, 0], "me a silk thread and a chunk of fire": [65535, 0], "a silk thread and a chunk of fire out": [65535, 0], "silk thread and a chunk of fire out of": [65535, 0], "thread and a chunk of fire out of the": [65535, 0], "and a chunk of fire out of the kitchen": [65535, 0], "a chunk of fire out of the kitchen tom": [65535, 0], "chunk of fire out of the kitchen tom said": [65535, 0], "of fire out of the kitchen tom said oh": [65535, 0], "fire out of the kitchen tom said oh please": [65535, 0], "out of the kitchen tom said oh please auntie": [65535, 0], "of the kitchen tom said oh please auntie don't": [65535, 0], "the kitchen tom said oh please auntie don't pull": [65535, 0], "kitchen tom said oh please auntie don't pull it": [65535, 0], "tom said oh please auntie don't pull it out": [65535, 0], "said oh please auntie don't pull it out it": [65535, 0], "oh please auntie don't pull it out it don't": [65535, 0], "please auntie don't pull it out it don't hurt": [65535, 0], "auntie don't pull it out it don't hurt any": [65535, 0], "don't pull it out it don't hurt any more": [65535, 0], "pull it out it don't hurt any more i": [65535, 0], "it out it don't hurt any more i wish": [65535, 0], "out it don't hurt any more i wish i": [65535, 0], "it don't hurt any more i wish i may": [65535, 0], "don't hurt any more i wish i may never": [65535, 0], "hurt any more i wish i may never stir": [65535, 0], "any more i wish i may never stir if": [65535, 0], "more i wish i may never stir if it": [65535, 0], "i wish i may never stir if it does": [65535, 0], "wish i may never stir if it does please": [65535, 0], "i may never stir if it does please don't": [65535, 0], "may never stir if it does please don't auntie": [65535, 0], "never stir if it does please don't auntie i": [65535, 0], "stir if it does please don't auntie i don't": [65535, 0], "if it does please don't auntie i don't want": [65535, 0], "it does please don't auntie i don't want to": [65535, 0], "does please don't auntie i don't want to stay": [65535, 0], "please don't auntie i don't want to stay home": [65535, 0], "don't auntie i don't want to stay home from": [65535, 0], "auntie i don't want to stay home from school": [65535, 0], "i don't want to stay home from school oh": [65535, 0], "don't want to stay home from school oh you": [65535, 0], "want to stay home from school oh you don't": [65535, 0], "to stay home from school oh you don't don't": [65535, 0], "stay home from school oh you don't don't you": [65535, 0], "home from school oh you don't don't you so": [65535, 0], "from school oh you don't don't you so all": [65535, 0], "school oh you don't don't you so all this": [65535, 0], "oh you don't don't you so all this row": [65535, 0], "you don't don't you so all this row was": [65535, 0], "don't don't you so all this row was because": [65535, 0], "don't you so all this row was because you": [65535, 0], "you so all this row was because you thought": [65535, 0], "so all this row was because you thought you'd": [65535, 0], "all this row was because you thought you'd get": [65535, 0], "this row was because you thought you'd get to": [65535, 0], "row was because you thought you'd get to stay": [65535, 0], "was because you thought you'd get to stay home": [65535, 0], "because you thought you'd get to stay home from": [65535, 0], "you thought you'd get to stay home from school": [65535, 0], "thought you'd get to stay home from school and": [65535, 0], "you'd get to stay home from school and go": [65535, 0], "get to stay home from school and go a": [65535, 0], "to stay home from school and go a fishing": [65535, 0], "stay home from school and go a fishing tom": [65535, 0], "home from school and go a fishing tom tom": [65535, 0], "from school and go a fishing tom tom i": [65535, 0], "school and go a fishing tom tom i love": [65535, 0], "and go a fishing tom tom i love you": [65535, 0], "go a fishing tom tom i love you so": [65535, 0], "a fishing tom tom i love you so and": [65535, 0], "fishing tom tom i love you so and you": [65535, 0], "tom tom i love you so and you seem": [65535, 0], "tom i love you so and you seem to": [65535, 0], "i love you so and you seem to try": [65535, 0], "love you so and you seem to try every": [65535, 0], "you so and you seem to try every way": [65535, 0], "so and you seem to try every way you": [65535, 0], "and you seem to try every way you can": [65535, 0], "you seem to try every way you can to": [65535, 0], "seem to try every way you can to break": [65535, 0], "to try every way you can to break my": [65535, 0], "try every way you can to break my old": [65535, 0], "every way you can to break my old heart": [65535, 0], "way you can to break my old heart with": [65535, 0], "you can to break my old heart with your": [65535, 0], "can to break my old heart with your outrageousness": [65535, 0], "to break my old heart with your outrageousness by": [65535, 0], "break my old heart with your outrageousness by this": [65535, 0], "my old heart with your outrageousness by this time": [65535, 0], "old heart with your outrageousness by this time the": [65535, 0], "heart with your outrageousness by this time the dental": [65535, 0], "with your outrageousness by this time the dental instruments": [65535, 0], "your outrageousness by this time the dental instruments were": [65535, 0], "outrageousness by this time the dental instruments were ready": [65535, 0], "by this time the dental instruments were ready the": [65535, 0], "this time the dental instruments were ready the old": [65535, 0], "time the dental instruments were ready the old lady": [65535, 0], "the dental instruments were ready the old lady made": [65535, 0], "dental instruments were ready the old lady made one": [65535, 0], "instruments were ready the old lady made one end": [65535, 0], "were ready the old lady made one end of": [65535, 0], "ready the old lady made one end of the": [65535, 0], "the old lady made one end of the silk": [65535, 0], "old lady made one end of the silk thread": [65535, 0], "lady made one end of the silk thread fast": [65535, 0], "made one end of the silk thread fast to": [65535, 0], "one end of the silk thread fast to tom's": [65535, 0], "end of the silk thread fast to tom's tooth": [65535, 0], "of the silk thread fast to tom's tooth with": [65535, 0], "the silk thread fast to tom's tooth with a": [65535, 0], "silk thread fast to tom's tooth with a loop": [65535, 0], "thread fast to tom's tooth with a loop and": [65535, 0], "fast to tom's tooth with a loop and tied": [65535, 0], "to tom's tooth with a loop and tied the": [65535, 0], "tom's tooth with a loop and tied the other": [65535, 0], "tooth with a loop and tied the other to": [65535, 0], "with a loop and tied the other to the": [65535, 0], "a loop and tied the other to the bedpost": [65535, 0], "loop and tied the other to the bedpost then": [65535, 0], "and tied the other to the bedpost then she": [65535, 0], "tied the other to the bedpost then she seized": [65535, 0], "the other to the bedpost then she seized the": [65535, 0], "other to the bedpost then she seized the chunk": [65535, 0], "to the bedpost then she seized the chunk of": [65535, 0], "the bedpost then she seized the chunk of fire": [65535, 0], "bedpost then she seized the chunk of fire and": [65535, 0], "then she seized the chunk of fire and suddenly": [65535, 0], "she seized the chunk of fire and suddenly thrust": [65535, 0], "seized the chunk of fire and suddenly thrust it": [65535, 0], "the chunk of fire and suddenly thrust it almost": [65535, 0], "chunk of fire and suddenly thrust it almost into": [65535, 0], "of fire and suddenly thrust it almost into the": [65535, 0], "fire and suddenly thrust it almost into the boy's": [65535, 0], "and suddenly thrust it almost into the boy's face": [65535, 0], "suddenly thrust it almost into the boy's face the": [65535, 0], "thrust it almost into the boy's face the tooth": [65535, 0], "it almost into the boy's face the tooth hung": [65535, 0], "almost into the boy's face the tooth hung dangling": [65535, 0], "into the boy's face the tooth hung dangling by": [65535, 0], "the boy's face the tooth hung dangling by the": [65535, 0], "boy's face the tooth hung dangling by the bedpost": [65535, 0], "face the tooth hung dangling by the bedpost now": [65535, 0], "the tooth hung dangling by the bedpost now but": [65535, 0], "tooth hung dangling by the bedpost now but all": [65535, 0], "hung dangling by the bedpost now but all trials": [65535, 0], "dangling by the bedpost now but all trials bring": [65535, 0], "by the bedpost now but all trials bring their": [65535, 0], "the bedpost now but all trials bring their compensations": [65535, 0], "bedpost now but all trials bring their compensations as": [65535, 0], "now but all trials bring their compensations as tom": [65535, 0], "but all trials bring their compensations as tom wended": [65535, 0], "all trials bring their compensations as tom wended to": [65535, 0], "trials bring their compensations as tom wended to school": [65535, 0], "bring their compensations as tom wended to school after": [65535, 0], "their compensations as tom wended to school after breakfast": [65535, 0], "compensations as tom wended to school after breakfast he": [65535, 0], "as tom wended to school after breakfast he was": [65535, 0], "tom wended to school after breakfast he was the": [65535, 0], "wended to school after breakfast he was the envy": [65535, 0], "to school after breakfast he was the envy of": [65535, 0], "school after breakfast he was the envy of every": [65535, 0], "after breakfast he was the envy of every boy": [65535, 0], "breakfast he was the envy of every boy he": [65535, 0], "he was the envy of every boy he met": [65535, 0], "was the envy of every boy he met because": [65535, 0], "the envy of every boy he met because the": [65535, 0], "envy of every boy he met because the gap": [65535, 0], "of every boy he met because the gap in": [65535, 0], "every boy he met because the gap in his": [65535, 0], "boy he met because the gap in his upper": [65535, 0], "he met because the gap in his upper row": [65535, 0], "met because the gap in his upper row of": [65535, 0], "because the gap in his upper row of teeth": [65535, 0], "the gap in his upper row of teeth enabled": [65535, 0], "gap in his upper row of teeth enabled him": [65535, 0], "in his upper row of teeth enabled him to": [65535, 0], "his upper row of teeth enabled him to expectorate": [65535, 0], "upper row of teeth enabled him to expectorate in": [65535, 0], "row of teeth enabled him to expectorate in a": [65535, 0], "of teeth enabled him to expectorate in a new": [65535, 0], "teeth enabled him to expectorate in a new and": [65535, 0], "enabled him to expectorate in a new and admirable": [65535, 0], "him to expectorate in a new and admirable way": [65535, 0], "to expectorate in a new and admirable way he": [65535, 0], "expectorate in a new and admirable way he gathered": [65535, 0], "in a new and admirable way he gathered quite": [65535, 0], "a new and admirable way he gathered quite a": [65535, 0], "new and admirable way he gathered quite a following": [65535, 0], "and admirable way he gathered quite a following of": [65535, 0], "admirable way he gathered quite a following of lads": [65535, 0], "way he gathered quite a following of lads interested": [65535, 0], "he gathered quite a following of lads interested in": [65535, 0], "gathered quite a following of lads interested in the": [65535, 0], "quite a following of lads interested in the exhibition": [65535, 0], "a following of lads interested in the exhibition and": [65535, 0], "following of lads interested in the exhibition and one": [65535, 0], "of lads interested in the exhibition and one that": [65535, 0], "lads interested in the exhibition and one that had": [65535, 0], "interested in the exhibition and one that had cut": [65535, 0], "in the exhibition and one that had cut his": [65535, 0], "the exhibition and one that had cut his finger": [65535, 0], "exhibition and one that had cut his finger and": [65535, 0], "and one that had cut his finger and had": [65535, 0], "one that had cut his finger and had been": [65535, 0], "that had cut his finger and had been a": [65535, 0], "had cut his finger and had been a centre": [65535, 0], "cut his finger and had been a centre of": [65535, 0], "his finger and had been a centre of fascination": [65535, 0], "finger and had been a centre of fascination and": [65535, 0], "and had been a centre of fascination and homage": [65535, 0], "had been a centre of fascination and homage up": [65535, 0], "been a centre of fascination and homage up to": [65535, 0], "a centre of fascination and homage up to this": [65535, 0], "centre of fascination and homage up to this time": [65535, 0], "of fascination and homage up to this time now": [65535, 0], "fascination and homage up to this time now found": [65535, 0], "and homage up to this time now found himself": [65535, 0], "homage up to this time now found himself suddenly": [65535, 0], "up to this time now found himself suddenly without": [65535, 0], "to this time now found himself suddenly without an": [65535, 0], "this time now found himself suddenly without an adherent": [65535, 0], "time now found himself suddenly without an adherent and": [65535, 0], "now found himself suddenly without an adherent and shorn": [65535, 0], "found himself suddenly without an adherent and shorn of": [65535, 0], "himself suddenly without an adherent and shorn of his": [65535, 0], "suddenly without an adherent and shorn of his glory": [65535, 0], "without an adherent and shorn of his glory his": [65535, 0], "an adherent and shorn of his glory his heart": [65535, 0], "adherent and shorn of his glory his heart was": [65535, 0], "and shorn of his glory his heart was heavy": [65535, 0], "shorn of his glory his heart was heavy and": [65535, 0], "of his glory his heart was heavy and he": [65535, 0], "his glory his heart was heavy and he said": [65535, 0], "glory his heart was heavy and he said with": [65535, 0], "his heart was heavy and he said with a": [65535, 0], "heart was heavy and he said with a disdain": [65535, 0], "was heavy and he said with a disdain which": [65535, 0], "heavy and he said with a disdain which he": [65535, 0], "and he said with a disdain which he did": [65535, 0], "he said with a disdain which he did not": [65535, 0], "said with a disdain which he did not feel": [65535, 0], "with a disdain which he did not feel that": [65535, 0], "a disdain which he did not feel that it": [65535, 0], "disdain which he did not feel that it wasn't": [65535, 0], "which he did not feel that it wasn't anything": [65535, 0], "he did not feel that it wasn't anything to": [65535, 0], "did not feel that it wasn't anything to spit": [65535, 0], "not feel that it wasn't anything to spit like": [65535, 0], "feel that it wasn't anything to spit like tom": [65535, 0], "that it wasn't anything to spit like tom sawyer": [65535, 0], "it wasn't anything to spit like tom sawyer but": [65535, 0], "wasn't anything to spit like tom sawyer but another": [65535, 0], "anything to spit like tom sawyer but another boy": [65535, 0], "to spit like tom sawyer but another boy said": [65535, 0], "spit like tom sawyer but another boy said sour": [65535, 0], "like tom sawyer but another boy said sour grapes": [65535, 0], "tom sawyer but another boy said sour grapes and": [65535, 0], "sawyer but another boy said sour grapes and he": [65535, 0], "but another boy said sour grapes and he wandered": [65535, 0], "another boy said sour grapes and he wandered away": [65535, 0], "boy said sour grapes and he wandered away a": [65535, 0], "said sour grapes and he wandered away a dismantled": [65535, 0], "sour grapes and he wandered away a dismantled hero": [65535, 0], "grapes and he wandered away a dismantled hero shortly": [65535, 0], "and he wandered away a dismantled hero shortly tom": [65535, 0], "he wandered away a dismantled hero shortly tom came": [65535, 0], "wandered away a dismantled hero shortly tom came upon": [65535, 0], "away a dismantled hero shortly tom came upon the": [65535, 0], "a dismantled hero shortly tom came upon the juvenile": [65535, 0], "dismantled hero shortly tom came upon the juvenile pariah": [65535, 0], "hero shortly tom came upon the juvenile pariah of": [65535, 0], "shortly tom came upon the juvenile pariah of the": [65535, 0], "tom came upon the juvenile pariah of the village": [65535, 0], "came upon the juvenile pariah of the village huckleberry": [65535, 0], "upon the juvenile pariah of the village huckleberry finn": [65535, 0], "the juvenile pariah of the village huckleberry finn son": [65535, 0], "juvenile pariah of the village huckleberry finn son of": [65535, 0], "pariah of the village huckleberry finn son of the": [65535, 0], "of the village huckleberry finn son of the town": [65535, 0], "the village huckleberry finn son of the town drunkard": [65535, 0], "village huckleberry finn son of the town drunkard huckleberry": [65535, 0], "huckleberry finn son of the town drunkard huckleberry was": [65535, 0], "finn son of the town drunkard huckleberry was cordially": [65535, 0], "son of the town drunkard huckleberry was cordially hated": [65535, 0], "of the town drunkard huckleberry was cordially hated and": [65535, 0], "the town drunkard huckleberry was cordially hated and dreaded": [65535, 0], "town drunkard huckleberry was cordially hated and dreaded by": [65535, 0], "drunkard huckleberry was cordially hated and dreaded by all": [65535, 0], "huckleberry was cordially hated and dreaded by all the": [65535, 0], "was cordially hated and dreaded by all the mothers": [65535, 0], "cordially hated and dreaded by all the mothers of": [65535, 0], "hated and dreaded by all the mothers of the": [65535, 0], "and dreaded by all the mothers of the town": [65535, 0], "dreaded by all the mothers of the town because": [65535, 0], "by all the mothers of the town because he": [65535, 0], "all the mothers of the town because he was": [65535, 0], "the mothers of the town because he was idle": [65535, 0], "mothers of the town because he was idle and": [65535, 0], "of the town because he was idle and lawless": [65535, 0], "the town because he was idle and lawless and": [65535, 0], "town because he was idle and lawless and vulgar": [65535, 0], "because he was idle and lawless and vulgar and": [65535, 0], "he was idle and lawless and vulgar and bad": [65535, 0], "was idle and lawless and vulgar and bad and": [65535, 0], "idle and lawless and vulgar and bad and because": [65535, 0], "and lawless and vulgar and bad and because all": [65535, 0], "lawless and vulgar and bad and because all their": [65535, 0], "and vulgar and bad and because all their children": [65535, 0], "vulgar and bad and because all their children admired": [65535, 0], "and bad and because all their children admired him": [65535, 0], "bad and because all their children admired him so": [65535, 0], "and because all their children admired him so and": [65535, 0], "because all their children admired him so and delighted": [65535, 0], "all their children admired him so and delighted in": [65535, 0], "their children admired him so and delighted in his": [65535, 0], "children admired him so and delighted in his forbidden": [65535, 0], "admired him so and delighted in his forbidden society": [65535, 0], "him so and delighted in his forbidden society and": [65535, 0], "so and delighted in his forbidden society and wished": [65535, 0], "and delighted in his forbidden society and wished they": [65535, 0], "delighted in his forbidden society and wished they dared": [65535, 0], "in his forbidden society and wished they dared to": [65535, 0], "his forbidden society and wished they dared to be": [65535, 0], "forbidden society and wished they dared to be like": [65535, 0], "society and wished they dared to be like him": [65535, 0], "and wished they dared to be like him tom": [65535, 0], "wished they dared to be like him tom was": [65535, 0], "they dared to be like him tom was like": [65535, 0], "dared to be like him tom was like the": [65535, 0], "to be like him tom was like the rest": [65535, 0], "be like him tom was like the rest of": [65535, 0], "like him tom was like the rest of the": [65535, 0], "him tom was like the rest of the respectable": [65535, 0], "tom was like the rest of the respectable boys": [65535, 0], "was like the rest of the respectable boys in": [65535, 0], "like the rest of the respectable boys in that": [65535, 0], "the rest of the respectable boys in that he": [65535, 0], "rest of the respectable boys in that he envied": [65535, 0], "of the respectable boys in that he envied huckleberry": [65535, 0], "the respectable boys in that he envied huckleberry his": [65535, 0], "respectable boys in that he envied huckleberry his gaudy": [65535, 0], "boys in that he envied huckleberry his gaudy outcast": [65535, 0], "in that he envied huckleberry his gaudy outcast condition": [65535, 0], "that he envied huckleberry his gaudy outcast condition and": [65535, 0], "he envied huckleberry his gaudy outcast condition and was": [65535, 0], "envied huckleberry his gaudy outcast condition and was under": [65535, 0], "huckleberry his gaudy outcast condition and was under strict": [65535, 0], "his gaudy outcast condition and was under strict orders": [65535, 0], "gaudy outcast condition and was under strict orders not": [65535, 0], "outcast condition and was under strict orders not to": [65535, 0], "condition and was under strict orders not to play": [65535, 0], "and was under strict orders not to play with": [65535, 0], "was under strict orders not to play with him": [65535, 0], "under strict orders not to play with him so": [65535, 0], "strict orders not to play with him so he": [65535, 0], "orders not to play with him so he played": [65535, 0], "not to play with him so he played with": [65535, 0], "to play with him so he played with him": [65535, 0], "play with him so he played with him every": [65535, 0], "with him so he played with him every time": [65535, 0], "him so he played with him every time he": [65535, 0], "so he played with him every time he got": [65535, 0], "he played with him every time he got a": [65535, 0], "played with him every time he got a chance": [65535, 0], "with him every time he got a chance huckleberry": [65535, 0], "him every time he got a chance huckleberry was": [65535, 0], "every time he got a chance huckleberry was always": [65535, 0], "time he got a chance huckleberry was always dressed": [65535, 0], "he got a chance huckleberry was always dressed in": [65535, 0], "got a chance huckleberry was always dressed in the": [65535, 0], "a chance huckleberry was always dressed in the cast": [65535, 0], "chance huckleberry was always dressed in the cast off": [65535, 0], "huckleberry was always dressed in the cast off clothes": [65535, 0], "was always dressed in the cast off clothes of": [65535, 0], "always dressed in the cast off clothes of full": [65535, 0], "dressed in the cast off clothes of full grown": [65535, 0], "in the cast off clothes of full grown men": [65535, 0], "the cast off clothes of full grown men and": [65535, 0], "cast off clothes of full grown men and they": [65535, 0], "off clothes of full grown men and they were": [65535, 0], "clothes of full grown men and they were in": [65535, 0], "of full grown men and they were in perennial": [65535, 0], "full grown men and they were in perennial bloom": [65535, 0], "grown men and they were in perennial bloom and": [65535, 0], "men and they were in perennial bloom and fluttering": [65535, 0], "and they were in perennial bloom and fluttering with": [65535, 0], "they were in perennial bloom and fluttering with rags": [65535, 0], "were in perennial bloom and fluttering with rags his": [65535, 0], "in perennial bloom and fluttering with rags his hat": [65535, 0], "perennial bloom and fluttering with rags his hat was": [65535, 0], "bloom and fluttering with rags his hat was a": [65535, 0], "and fluttering with rags his hat was a vast": [65535, 0], "fluttering with rags his hat was a vast ruin": [65535, 0], "with rags his hat was a vast ruin with": [65535, 0], "rags his hat was a vast ruin with a": [65535, 0], "his hat was a vast ruin with a wide": [65535, 0], "hat was a vast ruin with a wide crescent": [65535, 0], "was a vast ruin with a wide crescent lopped": [65535, 0], "a vast ruin with a wide crescent lopped out": [65535, 0], "vast ruin with a wide crescent lopped out of": [65535, 0], "ruin with a wide crescent lopped out of its": [65535, 0], "with a wide crescent lopped out of its brim": [65535, 0], "a wide crescent lopped out of its brim his": [65535, 0], "wide crescent lopped out of its brim his coat": [65535, 0], "crescent lopped out of its brim his coat when": [65535, 0], "lopped out of its brim his coat when he": [65535, 0], "out of its brim his coat when he wore": [65535, 0], "of its brim his coat when he wore one": [65535, 0], "its brim his coat when he wore one hung": [65535, 0], "brim his coat when he wore one hung nearly": [65535, 0], "his coat when he wore one hung nearly to": [65535, 0], "coat when he wore one hung nearly to his": [65535, 0], "when he wore one hung nearly to his heels": [65535, 0], "he wore one hung nearly to his heels and": [65535, 0], "wore one hung nearly to his heels and had": [65535, 0], "one hung nearly to his heels and had the": [65535, 0], "hung nearly to his heels and had the rearward": [65535, 0], "nearly to his heels and had the rearward buttons": [65535, 0], "to his heels and had the rearward buttons far": [65535, 0], "his heels and had the rearward buttons far down": [65535, 0], "heels and had the rearward buttons far down the": [65535, 0], "and had the rearward buttons far down the back": [65535, 0], "had the rearward buttons far down the back but": [65535, 0], "the rearward buttons far down the back but one": [65535, 0], "rearward buttons far down the back but one suspender": [65535, 0], "buttons far down the back but one suspender supported": [65535, 0], "far down the back but one suspender supported his": [65535, 0], "down the back but one suspender supported his trousers": [65535, 0], "the back but one suspender supported his trousers the": [65535, 0], "back but one suspender supported his trousers the seat": [65535, 0], "but one suspender supported his trousers the seat of": [65535, 0], "one suspender supported his trousers the seat of the": [65535, 0], "suspender supported his trousers the seat of the trousers": [65535, 0], "supported his trousers the seat of the trousers bagged": [65535, 0], "his trousers the seat of the trousers bagged low": [65535, 0], "trousers the seat of the trousers bagged low and": [65535, 0], "the seat of the trousers bagged low and contained": [65535, 0], "seat of the trousers bagged low and contained nothing": [65535, 0], "of the trousers bagged low and contained nothing the": [65535, 0], "the trousers bagged low and contained nothing the fringed": [65535, 0], "trousers bagged low and contained nothing the fringed legs": [65535, 0], "bagged low and contained nothing the fringed legs dragged": [65535, 0], "low and contained nothing the fringed legs dragged in": [65535, 0], "and contained nothing the fringed legs dragged in the": [65535, 0], "contained nothing the fringed legs dragged in the dirt": [65535, 0], "nothing the fringed legs dragged in the dirt when": [65535, 0], "the fringed legs dragged in the dirt when not": [65535, 0], "fringed legs dragged in the dirt when not rolled": [65535, 0], "legs dragged in the dirt when not rolled up": [65535, 0], "dragged in the dirt when not rolled up huckleberry": [65535, 0], "in the dirt when not rolled up huckleberry came": [65535, 0], "the dirt when not rolled up huckleberry came and": [65535, 0], "dirt when not rolled up huckleberry came and went": [65535, 0], "when not rolled up huckleberry came and went at": [65535, 0], "not rolled up huckleberry came and went at his": [65535, 0], "rolled up huckleberry came and went at his own": [65535, 0], "up huckleberry came and went at his own free": [65535, 0], "huckleberry came and went at his own free will": [65535, 0], "came and went at his own free will he": [65535, 0], "and went at his own free will he slept": [65535, 0], "went at his own free will he slept on": [65535, 0], "at his own free will he slept on doorsteps": [65535, 0], "his own free will he slept on doorsteps in": [65535, 0], "own free will he slept on doorsteps in fine": [65535, 0], "free will he slept on doorsteps in fine weather": [65535, 0], "will he slept on doorsteps in fine weather and": [65535, 0], "he slept on doorsteps in fine weather and in": [65535, 0], "slept on doorsteps in fine weather and in empty": [65535, 0], "on doorsteps in fine weather and in empty hogsheads": [65535, 0], "doorsteps in fine weather and in empty hogsheads in": [65535, 0], "in fine weather and in empty hogsheads in wet": [65535, 0], "fine weather and in empty hogsheads in wet he": [65535, 0], "weather and in empty hogsheads in wet he did": [65535, 0], "and in empty hogsheads in wet he did not": [65535, 0], "in empty hogsheads in wet he did not have": [65535, 0], "empty hogsheads in wet he did not have to": [65535, 0], "hogsheads in wet he did not have to go": [65535, 0], "in wet he did not have to go to": [65535, 0], "wet he did not have to go to school": [65535, 0], "he did not have to go to school or": [65535, 0], "did not have to go to school or to": [65535, 0], "not have to go to school or to church": [65535, 0], "have to go to school or to church or": [65535, 0], "to go to school or to church or call": [65535, 0], "go to school or to church or call any": [65535, 0], "to school or to church or call any being": [65535, 0], "school or to church or call any being master": [65535, 0], "or to church or call any being master or": [65535, 0], "to church or call any being master or obey": [65535, 0], "church or call any being master or obey anybody": [65535, 0], "or call any being master or obey anybody he": [65535, 0], "call any being master or obey anybody he could": [65535, 0], "any being master or obey anybody he could go": [65535, 0], "being master or obey anybody he could go fishing": [65535, 0], "master or obey anybody he could go fishing or": [65535, 0], "or obey anybody he could go fishing or swimming": [65535, 0], "obey anybody he could go fishing or swimming when": [65535, 0], "anybody he could go fishing or swimming when and": [65535, 0], "he could go fishing or swimming when and where": [65535, 0], "could go fishing or swimming when and where he": [65535, 0], "go fishing or swimming when and where he chose": [65535, 0], "fishing or swimming when and where he chose and": [65535, 0], "or swimming when and where he chose and stay": [65535, 0], "swimming when and where he chose and stay as": [65535, 0], "when and where he chose and stay as long": [65535, 0], "and where he chose and stay as long as": [65535, 0], "where he chose and stay as long as it": [65535, 0], "he chose and stay as long as it suited": [65535, 0], "chose and stay as long as it suited him": [65535, 0], "and stay as long as it suited him nobody": [65535, 0], "stay as long as it suited him nobody forbade": [65535, 0], "as long as it suited him nobody forbade him": [65535, 0], "long as it suited him nobody forbade him to": [65535, 0], "as it suited him nobody forbade him to fight": [65535, 0], "it suited him nobody forbade him to fight he": [65535, 0], "suited him nobody forbade him to fight he could": [65535, 0], "him nobody forbade him to fight he could sit": [65535, 0], "nobody forbade him to fight he could sit up": [65535, 0], "forbade him to fight he could sit up as": [65535, 0], "him to fight he could sit up as late": [65535, 0], "to fight he could sit up as late as": [65535, 0], "fight he could sit up as late as he": [65535, 0], "he could sit up as late as he pleased": [65535, 0], "could sit up as late as he pleased he": [65535, 0], "sit up as late as he pleased he was": [65535, 0], "up as late as he pleased he was always": [65535, 0], "as late as he pleased he was always the": [65535, 0], "late as he pleased he was always the first": [65535, 0], "as he pleased he was always the first boy": [65535, 0], "he pleased he was always the first boy that": [65535, 0], "pleased he was always the first boy that went": [65535, 0], "he was always the first boy that went barefoot": [65535, 0], "was always the first boy that went barefoot in": [65535, 0], "always the first boy that went barefoot in the": [65535, 0], "the first boy that went barefoot in the spring": [65535, 0], "first boy that went barefoot in the spring and": [65535, 0], "boy that went barefoot in the spring and the": [65535, 0], "that went barefoot in the spring and the last": [65535, 0], "went barefoot in the spring and the last to": [65535, 0], "barefoot in the spring and the last to resume": [65535, 0], "in the spring and the last to resume leather": [65535, 0], "the spring and the last to resume leather in": [65535, 0], "spring and the last to resume leather in the": [65535, 0], "and the last to resume leather in the fall": [65535, 0], "the last to resume leather in the fall he": [65535, 0], "last to resume leather in the fall he never": [65535, 0], "to resume leather in the fall he never had": [65535, 0], "resume leather in the fall he never had to": [65535, 0], "leather in the fall he never had to wash": [65535, 0], "in the fall he never had to wash nor": [65535, 0], "the fall he never had to wash nor put": [65535, 0], "fall he never had to wash nor put on": [65535, 0], "he never had to wash nor put on clean": [65535, 0], "never had to wash nor put on clean clothes": [65535, 0], "had to wash nor put on clean clothes he": [65535, 0], "to wash nor put on clean clothes he could": [65535, 0], "wash nor put on clean clothes he could swear": [65535, 0], "nor put on clean clothes he could swear wonderfully": [65535, 0], "put on clean clothes he could swear wonderfully in": [65535, 0], "on clean clothes he could swear wonderfully in a": [65535, 0], "clean clothes he could swear wonderfully in a word": [65535, 0], "clothes he could swear wonderfully in a word everything": [65535, 0], "he could swear wonderfully in a word everything that": [65535, 0], "could swear wonderfully in a word everything that goes": [65535, 0], "swear wonderfully in a word everything that goes to": [65535, 0], "wonderfully in a word everything that goes to make": [65535, 0], "in a word everything that goes to make life": [65535, 0], "a word everything that goes to make life precious": [65535, 0], "word everything that goes to make life precious that": [65535, 0], "everything that goes to make life precious that boy": [65535, 0], "that goes to make life precious that boy had": [65535, 0], "goes to make life precious that boy had so": [65535, 0], "to make life precious that boy had so thought": [65535, 0], "make life precious that boy had so thought every": [65535, 0], "life precious that boy had so thought every harassed": [65535, 0], "precious that boy had so thought every harassed hampered": [65535, 0], "that boy had so thought every harassed hampered respectable": [65535, 0], "boy had so thought every harassed hampered respectable boy": [65535, 0], "had so thought every harassed hampered respectable boy in": [65535, 0], "so thought every harassed hampered respectable boy in st": [65535, 0], "thought every harassed hampered respectable boy in st petersburg": [65535, 0], "every harassed hampered respectable boy in st petersburg tom": [65535, 0], "harassed hampered respectable boy in st petersburg tom hailed": [65535, 0], "hampered respectable boy in st petersburg tom hailed the": [65535, 0], "respectable boy in st petersburg tom hailed the romantic": [65535, 0], "boy in st petersburg tom hailed the romantic outcast": [65535, 0], "in st petersburg tom hailed the romantic outcast hello": [65535, 0], "st petersburg tom hailed the romantic outcast hello huckleberry": [65535, 0], "petersburg tom hailed the romantic outcast hello huckleberry hello": [65535, 0], "tom hailed the romantic outcast hello huckleberry hello yourself": [65535, 0], "hailed the romantic outcast hello huckleberry hello yourself and": [65535, 0], "the romantic outcast hello huckleberry hello yourself and see": [65535, 0], "romantic outcast hello huckleberry hello yourself and see how": [65535, 0], "outcast hello huckleberry hello yourself and see how you": [65535, 0], "hello huckleberry hello yourself and see how you like": [65535, 0], "huckleberry hello yourself and see how you like it": [65535, 0], "hello yourself and see how you like it what's": [65535, 0], "yourself and see how you like it what's that": [65535, 0], "and see how you like it what's that you": [65535, 0], "see how you like it what's that you got": [65535, 0], "how you like it what's that you got dead": [65535, 0], "you like it what's that you got dead cat": [65535, 0], "like it what's that you got dead cat lemme": [65535, 0], "it what's that you got dead cat lemme see": [65535, 0], "what's that you got dead cat lemme see him": [65535, 0], "that you got dead cat lemme see him huck": [65535, 0], "you got dead cat lemme see him huck my": [65535, 0], "got dead cat lemme see him huck my he's": [65535, 0], "dead cat lemme see him huck my he's pretty": [65535, 0], "cat lemme see him huck my he's pretty stiff": [65535, 0], "lemme see him huck my he's pretty stiff where'd": [65535, 0], "see him huck my he's pretty stiff where'd you": [65535, 0], "him huck my he's pretty stiff where'd you get": [65535, 0], "huck my he's pretty stiff where'd you get him": [65535, 0], "my he's pretty stiff where'd you get him bought": [65535, 0], "he's pretty stiff where'd you get him bought him": [65535, 0], "pretty stiff where'd you get him bought him off'n": [65535, 0], "stiff where'd you get him bought him off'n a": [65535, 0], "where'd you get him bought him off'n a boy": [65535, 0], "you get him bought him off'n a boy what": [65535, 0], "get him bought him off'n a boy what did": [65535, 0], "him bought him off'n a boy what did you": [65535, 0], "bought him off'n a boy what did you give": [65535, 0], "him off'n a boy what did you give i": [65535, 0], "off'n a boy what did you give i give": [65535, 0], "a boy what did you give i give a": [65535, 0], "boy what did you give i give a blue": [65535, 0], "what did you give i give a blue ticket": [65535, 0], "did you give i give a blue ticket and": [65535, 0], "you give i give a blue ticket and a": [65535, 0], "give i give a blue ticket and a bladder": [65535, 0], "i give a blue ticket and a bladder that": [65535, 0], "give a blue ticket and a bladder that i": [65535, 0], "a blue ticket and a bladder that i got": [65535, 0], "blue ticket and a bladder that i got at": [65535, 0], "ticket and a bladder that i got at the": [65535, 0], "and a bladder that i got at the slaughter": [65535, 0], "a bladder that i got at the slaughter house": [65535, 0], "bladder that i got at the slaughter house where'd": [65535, 0], "that i got at the slaughter house where'd you": [65535, 0], "i got at the slaughter house where'd you get": [65535, 0], "got at the slaughter house where'd you get the": [65535, 0], "at the slaughter house where'd you get the blue": [65535, 0], "the slaughter house where'd you get the blue ticket": [65535, 0], "slaughter house where'd you get the blue ticket bought": [65535, 0], "house where'd you get the blue ticket bought it": [65535, 0], "where'd you get the blue ticket bought it off'n": [65535, 0], "you get the blue ticket bought it off'n ben": [65535, 0], "get the blue ticket bought it off'n ben rogers": [65535, 0], "the blue ticket bought it off'n ben rogers two": [65535, 0], "blue ticket bought it off'n ben rogers two weeks": [65535, 0], "ticket bought it off'n ben rogers two weeks ago": [65535, 0], "bought it off'n ben rogers two weeks ago for": [65535, 0], "it off'n ben rogers two weeks ago for a": [65535, 0], "off'n ben rogers two weeks ago for a hoop": [65535, 0], "ben rogers two weeks ago for a hoop stick": [65535, 0], "rogers two weeks ago for a hoop stick say": [65535, 0], "two weeks ago for a hoop stick say what": [65535, 0], "weeks ago for a hoop stick say what is": [65535, 0], "ago for a hoop stick say what is dead": [65535, 0], "for a hoop stick say what is dead cats": [65535, 0], "a hoop stick say what is dead cats good": [65535, 0], "hoop stick say what is dead cats good for": [65535, 0], "stick say what is dead cats good for huck": [65535, 0], "say what is dead cats good for huck good": [65535, 0], "what is dead cats good for huck good for": [65535, 0], "is dead cats good for huck good for cure": [65535, 0], "dead cats good for huck good for cure warts": [65535, 0], "cats good for huck good for cure warts with": [65535, 0], "good for huck good for cure warts with no": [65535, 0], "for huck good for cure warts with no is": [65535, 0], "huck good for cure warts with no is that": [65535, 0], "good for cure warts with no is that so": [65535, 0], "for cure warts with no is that so i": [65535, 0], "cure warts with no is that so i know": [65535, 0], "warts with no is that so i know something": [65535, 0], "with no is that so i know something that's": [65535, 0], "no is that so i know something that's better": [65535, 0], "is that so i know something that's better i": [65535, 0], "that so i know something that's better i bet": [65535, 0], "so i know something that's better i bet you": [65535, 0], "i know something that's better i bet you don't": [65535, 0], "know something that's better i bet you don't what": [65535, 0], "something that's better i bet you don't what is": [65535, 0], "that's better i bet you don't what is it": [65535, 0], "better i bet you don't what is it why": [65535, 0], "i bet you don't what is it why spunk": [65535, 0], "bet you don't what is it why spunk water": [65535, 0], "you don't what is it why spunk water spunk": [65535, 0], "don't what is it why spunk water spunk water": [65535, 0], "what is it why spunk water spunk water i": [65535, 0], "is it why spunk water spunk water i wouldn't": [65535, 0], "it why spunk water spunk water i wouldn't give": [65535, 0], "why spunk water spunk water i wouldn't give a": [65535, 0], "spunk water spunk water i wouldn't give a dern": [65535, 0], "water spunk water i wouldn't give a dern for": [65535, 0], "spunk water i wouldn't give a dern for spunk": [65535, 0], "water i wouldn't give a dern for spunk water": [65535, 0], "i wouldn't give a dern for spunk water you": [65535, 0], "wouldn't give a dern for spunk water you wouldn't": [65535, 0], "give a dern for spunk water you wouldn't wouldn't": [65535, 0], "a dern for spunk water you wouldn't wouldn't you": [65535, 0], "dern for spunk water you wouldn't wouldn't you d'you": [65535, 0], "for spunk water you wouldn't wouldn't you d'you ever": [65535, 0], "spunk water you wouldn't wouldn't you d'you ever try": [65535, 0], "water you wouldn't wouldn't you d'you ever try it": [65535, 0], "you wouldn't wouldn't you d'you ever try it no": [65535, 0], "wouldn't wouldn't you d'you ever try it no i": [65535, 0], "wouldn't you d'you ever try it no i hain't": [65535, 0], "you d'you ever try it no i hain't but": [65535, 0], "d'you ever try it no i hain't but bob": [65535, 0], "ever try it no i hain't but bob tanner": [65535, 0], "try it no i hain't but bob tanner did": [65535, 0], "it no i hain't but bob tanner did who": [65535, 0], "no i hain't but bob tanner did who told": [65535, 0], "i hain't but bob tanner did who told you": [65535, 0], "hain't but bob tanner did who told you so": [65535, 0], "but bob tanner did who told you so why": [65535, 0], "bob tanner did who told you so why he": [65535, 0], "tanner did who told you so why he told": [65535, 0], "did who told you so why he told jeff": [65535, 0], "who told you so why he told jeff thatcher": [65535, 0], "told you so why he told jeff thatcher and": [65535, 0], "you so why he told jeff thatcher and jeff": [65535, 0], "so why he told jeff thatcher and jeff told": [65535, 0], "why he told jeff thatcher and jeff told johnny": [65535, 0], "he told jeff thatcher and jeff told johnny baker": [65535, 0], "told jeff thatcher and jeff told johnny baker and": [65535, 0], "jeff thatcher and jeff told johnny baker and johnny": [65535, 0], "thatcher and jeff told johnny baker and johnny told": [65535, 0], "and jeff told johnny baker and johnny told jim": [65535, 0], "jeff told johnny baker and johnny told jim hollis": [65535, 0], "told johnny baker and johnny told jim hollis and": [65535, 0], "johnny baker and johnny told jim hollis and jim": [65535, 0], "baker and johnny told jim hollis and jim told": [65535, 0], "and johnny told jim hollis and jim told ben": [65535, 0], "johnny told jim hollis and jim told ben rogers": [65535, 0], "told jim hollis and jim told ben rogers and": [65535, 0], "jim hollis and jim told ben rogers and ben": [65535, 0], "hollis and jim told ben rogers and ben told": [65535, 0], "and jim told ben rogers and ben told a": [65535, 0], "jim told ben rogers and ben told a nigger": [65535, 0], "told ben rogers and ben told a nigger and": [65535, 0], "ben rogers and ben told a nigger and the": [65535, 0], "rogers and ben told a nigger and the nigger": [65535, 0], "and ben told a nigger and the nigger told": [65535, 0], "ben told a nigger and the nigger told me": [65535, 0], "told a nigger and the nigger told me there": [65535, 0], "a nigger and the nigger told me there now": [65535, 0], "nigger and the nigger told me there now well": [65535, 0], "and the nigger told me there now well what": [65535, 0], "the nigger told me there now well what of": [65535, 0], "nigger told me there now well what of it": [65535, 0], "told me there now well what of it they'll": [65535, 0], "me there now well what of it they'll all": [65535, 0], "there now well what of it they'll all lie": [65535, 0], "now well what of it they'll all lie leastways": [65535, 0], "well what of it they'll all lie leastways all": [65535, 0], "what of it they'll all lie leastways all but": [65535, 0], "of it they'll all lie leastways all but the": [65535, 0], "it they'll all lie leastways all but the nigger": [65535, 0], "they'll all lie leastways all but the nigger i": [65535, 0], "all lie leastways all but the nigger i don't": [65535, 0], "lie leastways all but the nigger i don't know": [65535, 0], "leastways all but the nigger i don't know him": [65535, 0], "all but the nigger i don't know him but": [65535, 0], "but the nigger i don't know him but i": [65535, 0], "the nigger i don't know him but i never": [65535, 0], "nigger i don't know him but i never see": [65535, 0], "i don't know him but i never see a": [65535, 0], "don't know him but i never see a nigger": [65535, 0], "know him but i never see a nigger that": [65535, 0], "him but i never see a nigger that wouldn't": [65535, 0], "but i never see a nigger that wouldn't lie": [65535, 0], "i never see a nigger that wouldn't lie shucks": [65535, 0], "never see a nigger that wouldn't lie shucks now": [65535, 0], "see a nigger that wouldn't lie shucks now you": [65535, 0], "a nigger that wouldn't lie shucks now you tell": [65535, 0], "nigger that wouldn't lie shucks now you tell me": [65535, 0], "that wouldn't lie shucks now you tell me how": [65535, 0], "wouldn't lie shucks now you tell me how bob": [65535, 0], "lie shucks now you tell me how bob tanner": [65535, 0], "shucks now you tell me how bob tanner done": [65535, 0], "now you tell me how bob tanner done it": [65535, 0], "you tell me how bob tanner done it huck": [65535, 0], "tell me how bob tanner done it huck why": [65535, 0], "me how bob tanner done it huck why he": [65535, 0], "how bob tanner done it huck why he took": [65535, 0], "bob tanner done it huck why he took and": [65535, 0], "tanner done it huck why he took and dipped": [65535, 0], "done it huck why he took and dipped his": [65535, 0], "it huck why he took and dipped his hand": [65535, 0], "huck why he took and dipped his hand in": [65535, 0], "why he took and dipped his hand in a": [65535, 0], "he took and dipped his hand in a rotten": [65535, 0], "took and dipped his hand in a rotten stump": [65535, 0], "and dipped his hand in a rotten stump where": [65535, 0], "dipped his hand in a rotten stump where the": [65535, 0], "his hand in a rotten stump where the rain": [65535, 0], "hand in a rotten stump where the rain water": [65535, 0], "in a rotten stump where the rain water was": [65535, 0], "a rotten stump where the rain water was in": [65535, 0], "rotten stump where the rain water was in the": [65535, 0], "stump where the rain water was in the daytime": [65535, 0], "where the rain water was in the daytime certainly": [65535, 0], "the rain water was in the daytime certainly with": [65535, 0], "rain water was in the daytime certainly with his": [65535, 0], "water was in the daytime certainly with his face": [65535, 0], "was in the daytime certainly with his face to": [65535, 0], "in the daytime certainly with his face to the": [65535, 0], "the daytime certainly with his face to the stump": [65535, 0], "daytime certainly with his face to the stump yes": [65535, 0], "certainly with his face to the stump yes least": [65535, 0], "with his face to the stump yes least i": [65535, 0], "his face to the stump yes least i reckon": [65535, 0], "face to the stump yes least i reckon so": [65535, 0], "to the stump yes least i reckon so did": [65535, 0], "the stump yes least i reckon so did he": [65535, 0], "stump yes least i reckon so did he say": [65535, 0], "yes least i reckon so did he say anything": [65535, 0], "least i reckon so did he say anything i": [65535, 0], "i reckon so did he say anything i don't": [65535, 0], "reckon so did he say anything i don't reckon": [65535, 0], "so did he say anything i don't reckon he": [65535, 0], "did he say anything i don't reckon he did": [65535, 0], "he say anything i don't reckon he did i": [65535, 0], "say anything i don't reckon he did i don't": [65535, 0], "anything i don't reckon he did i don't know": [65535, 0], "i don't reckon he did i don't know aha": [65535, 0], "don't reckon he did i don't know aha talk": [65535, 0], "reckon he did i don't know aha talk about": [65535, 0], "he did i don't know aha talk about trying": [65535, 0], "did i don't know aha talk about trying to": [65535, 0], "i don't know aha talk about trying to cure": [65535, 0], "don't know aha talk about trying to cure warts": [65535, 0], "know aha talk about trying to cure warts with": [65535, 0], "aha talk about trying to cure warts with spunk": [65535, 0], "talk about trying to cure warts with spunk water": [65535, 0], "about trying to cure warts with spunk water such": [65535, 0], "trying to cure warts with spunk water such a": [65535, 0], "to cure warts with spunk water such a blame": [65535, 0], "cure warts with spunk water such a blame fool": [65535, 0], "warts with spunk water such a blame fool way": [65535, 0], "with spunk water such a blame fool way as": [65535, 0], "spunk water such a blame fool way as that": [65535, 0], "water such a blame fool way as that why": [65535, 0], "such a blame fool way as that why that": [65535, 0], "a blame fool way as that why that ain't": [65535, 0], "blame fool way as that why that ain't a": [65535, 0], "fool way as that why that ain't a going": [65535, 0], "way as that why that ain't a going to": [65535, 0], "as that why that ain't a going to do": [65535, 0], "that why that ain't a going to do any": [65535, 0], "why that ain't a going to do any good": [65535, 0], "that ain't a going to do any good you": [65535, 0], "ain't a going to do any good you got": [65535, 0], "a going to do any good you got to": [65535, 0], "going to do any good you got to go": [65535, 0], "to do any good you got to go all": [65535, 0], "do any good you got to go all by": [65535, 0], "any good you got to go all by yourself": [65535, 0], "good you got to go all by yourself to": [65535, 0], "you got to go all by yourself to the": [65535, 0], "got to go all by yourself to the middle": [65535, 0], "to go all by yourself to the middle of": [65535, 0], "go all by yourself to the middle of the": [65535, 0], "all by yourself to the middle of the woods": [65535, 0], "by yourself to the middle of the woods where": [65535, 0], "yourself to the middle of the woods where you": [65535, 0], "to the middle of the woods where you know": [65535, 0], "the middle of the woods where you know there's": [65535, 0], "middle of the woods where you know there's a": [65535, 0], "of the woods where you know there's a spunk": [65535, 0], "the woods where you know there's a spunk water": [65535, 0], "woods where you know there's a spunk water stump": [65535, 0], "where you know there's a spunk water stump and": [65535, 0], "you know there's a spunk water stump and just": [65535, 0], "know there's a spunk water stump and just as": [65535, 0], "there's a spunk water stump and just as it's": [65535, 0], "a spunk water stump and just as it's midnight": [65535, 0], "spunk water stump and just as it's midnight you": [65535, 0], "water stump and just as it's midnight you back": [65535, 0], "stump and just as it's midnight you back up": [65535, 0], "and just as it's midnight you back up against": [65535, 0], "just as it's midnight you back up against the": [65535, 0], "as it's midnight you back up against the stump": [65535, 0], "it's midnight you back up against the stump and": [65535, 0], "midnight you back up against the stump and jam": [65535, 0], "you back up against the stump and jam your": [65535, 0], "back up against the stump and jam your hand": [65535, 0], "up against the stump and jam your hand in": [65535, 0], "against the stump and jam your hand in and": [65535, 0], "the stump and jam your hand in and say": [65535, 0], "stump and jam your hand in and say 'barley": [65535, 0], "and jam your hand in and say 'barley corn": [65535, 0], "jam your hand in and say 'barley corn barley": [65535, 0], "your hand in and say 'barley corn barley corn": [65535, 0], "hand in and say 'barley corn barley corn injun": [65535, 0], "in and say 'barley corn barley corn injun meal": [65535, 0], "and say 'barley corn barley corn injun meal shorts": [65535, 0], "say 'barley corn barley corn injun meal shorts spunk": [65535, 0], "'barley corn barley corn injun meal shorts spunk water": [65535, 0], "corn barley corn injun meal shorts spunk water spunk": [65535, 0], "barley corn injun meal shorts spunk water spunk water": [65535, 0], "corn injun meal shorts spunk water spunk water swaller": [65535, 0], "injun meal shorts spunk water spunk water swaller these": [65535, 0], "meal shorts spunk water spunk water swaller these warts": [65535, 0], "shorts spunk water spunk water swaller these warts '": [65535, 0], "spunk water spunk water swaller these warts ' and": [65535, 0], "water spunk water swaller these warts ' and then": [65535, 0], "spunk water swaller these warts ' and then walk": [65535, 0], "water swaller these warts ' and then walk away": [65535, 0], "swaller these warts ' and then walk away quick": [65535, 0], "these warts ' and then walk away quick eleven": [65535, 0], "warts ' and then walk away quick eleven steps": [65535, 0], "' and then walk away quick eleven steps with": [65535, 0], "and then walk away quick eleven steps with your": [65535, 0], "then walk away quick eleven steps with your eyes": [65535, 0], "walk away quick eleven steps with your eyes shut": [65535, 0], "away quick eleven steps with your eyes shut and": [65535, 0], "quick eleven steps with your eyes shut and then": [65535, 0], "eleven steps with your eyes shut and then turn": [65535, 0], "steps with your eyes shut and then turn around": [65535, 0], "with your eyes shut and then turn around three": [65535, 0], "your eyes shut and then turn around three times": [65535, 0], "eyes shut and then turn around three times and": [65535, 0], "shut and then turn around three times and walk": [65535, 0], "and then turn around three times and walk home": [65535, 0], "then turn around three times and walk home without": [65535, 0], "turn around three times and walk home without speaking": [65535, 0], "around three times and walk home without speaking to": [65535, 0], "three times and walk home without speaking to anybody": [65535, 0], "times and walk home without speaking to anybody because": [65535, 0], "and walk home without speaking to anybody because if": [65535, 0], "walk home without speaking to anybody because if you": [65535, 0], "home without speaking to anybody because if you speak": [65535, 0], "without speaking to anybody because if you speak the": [65535, 0], "speaking to anybody because if you speak the charm's": [65535, 0], "to anybody because if you speak the charm's busted": [65535, 0], "anybody because if you speak the charm's busted well": [65535, 0], "because if you speak the charm's busted well that": [65535, 0], "if you speak the charm's busted well that sounds": [65535, 0], "you speak the charm's busted well that sounds like": [65535, 0], "speak the charm's busted well that sounds like a": [65535, 0], "the charm's busted well that sounds like a good": [65535, 0], "charm's busted well that sounds like a good way": [65535, 0], "busted well that sounds like a good way but": [65535, 0], "well that sounds like a good way but that": [65535, 0], "that sounds like a good way but that ain't": [65535, 0], "sounds like a good way but that ain't the": [65535, 0], "like a good way but that ain't the way": [65535, 0], "a good way but that ain't the way bob": [65535, 0], "good way but that ain't the way bob tanner": [65535, 0], "way but that ain't the way bob tanner done": [65535, 0], "but that ain't the way bob tanner done no": [65535, 0], "that ain't the way bob tanner done no sir": [65535, 0], "ain't the way bob tanner done no sir you": [65535, 0], "the way bob tanner done no sir you can": [65535, 0], "way bob tanner done no sir you can bet": [65535, 0], "bob tanner done no sir you can bet he": [65535, 0], "tanner done no sir you can bet he didn't": [65535, 0], "done no sir you can bet he didn't becuz": [65535, 0], "no sir you can bet he didn't becuz he's": [65535, 0], "sir you can bet he didn't becuz he's the": [65535, 0], "you can bet he didn't becuz he's the wartiest": [65535, 0], "can bet he didn't becuz he's the wartiest boy": [65535, 0], "bet he didn't becuz he's the wartiest boy in": [65535, 0], "he didn't becuz he's the wartiest boy in this": [65535, 0], "didn't becuz he's the wartiest boy in this town": [65535, 0], "becuz he's the wartiest boy in this town and": [65535, 0], "he's the wartiest boy in this town and he": [65535, 0], "the wartiest boy in this town and he wouldn't": [65535, 0], "wartiest boy in this town and he wouldn't have": [65535, 0], "boy in this town and he wouldn't have a": [65535, 0], "in this town and he wouldn't have a wart": [65535, 0], "this town and he wouldn't have a wart on": [65535, 0], "town and he wouldn't have a wart on him": [65535, 0], "and he wouldn't have a wart on him if": [65535, 0], "he wouldn't have a wart on him if he'd": [65535, 0], "wouldn't have a wart on him if he'd knowed": [65535, 0], "have a wart on him if he'd knowed how": [65535, 0], "a wart on him if he'd knowed how to": [65535, 0], "wart on him if he'd knowed how to work": [65535, 0], "on him if he'd knowed how to work spunk": [65535, 0], "him if he'd knowed how to work spunk water": [65535, 0], "if he'd knowed how to work spunk water i've": [65535, 0], "he'd knowed how to work spunk water i've took": [65535, 0], "knowed how to work spunk water i've took off": [65535, 0], "how to work spunk water i've took off thousands": [65535, 0], "to work spunk water i've took off thousands of": [65535, 0], "work spunk water i've took off thousands of warts": [65535, 0], "spunk water i've took off thousands of warts off": [65535, 0], "water i've took off thousands of warts off of": [65535, 0], "i've took off thousands of warts off of my": [65535, 0], "took off thousands of warts off of my hands": [65535, 0], "off thousands of warts off of my hands that": [65535, 0], "thousands of warts off of my hands that way": [65535, 0], "of warts off of my hands that way huck": [65535, 0], "warts off of my hands that way huck i": [65535, 0], "off of my hands that way huck i play": [65535, 0], "of my hands that way huck i play with": [65535, 0], "my hands that way huck i play with frogs": [65535, 0], "hands that way huck i play with frogs so": [65535, 0], "that way huck i play with frogs so much": [65535, 0], "way huck i play with frogs so much that": [65535, 0], "huck i play with frogs so much that i've": [65535, 0], "i play with frogs so much that i've always": [65535, 0], "play with frogs so much that i've always got": [65535, 0], "with frogs so much that i've always got considerable": [65535, 0], "frogs so much that i've always got considerable many": [65535, 0], "so much that i've always got considerable many warts": [65535, 0], "much that i've always got considerable many warts sometimes": [65535, 0], "that i've always got considerable many warts sometimes i": [65535, 0], "i've always got considerable many warts sometimes i take": [65535, 0], "always got considerable many warts sometimes i take 'em": [65535, 0], "got considerable many warts sometimes i take 'em off": [65535, 0], "considerable many warts sometimes i take 'em off with": [65535, 0], "many warts sometimes i take 'em off with a": [65535, 0], "warts sometimes i take 'em off with a bean": [65535, 0], "sometimes i take 'em off with a bean yes": [65535, 0], "i take 'em off with a bean yes bean's": [65535, 0], "take 'em off with a bean yes bean's good": [65535, 0], "'em off with a bean yes bean's good i've": [65535, 0], "off with a bean yes bean's good i've done": [65535, 0], "with a bean yes bean's good i've done that": [65535, 0], "a bean yes bean's good i've done that have": [65535, 0], "bean yes bean's good i've done that have you": [65535, 0], "yes bean's good i've done that have you what's": [65535, 0], "bean's good i've done that have you what's your": [65535, 0], "good i've done that have you what's your way": [65535, 0], "i've done that have you what's your way you": [65535, 0], "done that have you what's your way you take": [65535, 0], "that have you what's your way you take and": [65535, 0], "have you what's your way you take and split": [65535, 0], "you what's your way you take and split the": [65535, 0], "what's your way you take and split the bean": [65535, 0], "your way you take and split the bean and": [65535, 0], "way you take and split the bean and cut": [65535, 0], "you take and split the bean and cut the": [65535, 0], "take and split the bean and cut the wart": [65535, 0], "and split the bean and cut the wart so": [65535, 0], "split the bean and cut the wart so as": [65535, 0], "the bean and cut the wart so as to": [65535, 0], "bean and cut the wart so as to get": [65535, 0], "and cut the wart so as to get some": [65535, 0], "cut the wart so as to get some blood": [65535, 0], "the wart so as to get some blood and": [65535, 0], "wart so as to get some blood and then": [65535, 0], "so as to get some blood and then you": [65535, 0], "as to get some blood and then you put": [65535, 0], "to get some blood and then you put the": [65535, 0], "get some blood and then you put the blood": [65535, 0], "some blood and then you put the blood on": [65535, 0], "blood and then you put the blood on one": [65535, 0], "and then you put the blood on one piece": [65535, 0], "then you put the blood on one piece of": [65535, 0], "you put the blood on one piece of the": [65535, 0], "put the blood on one piece of the bean": [65535, 0], "the blood on one piece of the bean and": [65535, 0], "blood on one piece of the bean and take": [65535, 0], "on one piece of the bean and take and": [65535, 0], "one piece of the bean and take and dig": [65535, 0], "piece of the bean and take and dig a": [65535, 0], "of the bean and take and dig a hole": [65535, 0], "the bean and take and dig a hole and": [65535, 0], "bean and take and dig a hole and bury": [65535, 0], "and take and dig a hole and bury it": [65535, 0], "take and dig a hole and bury it 'bout": [65535, 0], "and dig a hole and bury it 'bout midnight": [65535, 0], "dig a hole and bury it 'bout midnight at": [65535, 0], "a hole and bury it 'bout midnight at the": [65535, 0], "hole and bury it 'bout midnight at the crossroads": [65535, 0], "and bury it 'bout midnight at the crossroads in": [65535, 0], "bury it 'bout midnight at the crossroads in the": [65535, 0], "it 'bout midnight at the crossroads in the dark": [65535, 0], "'bout midnight at the crossroads in the dark of": [65535, 0], "midnight at the crossroads in the dark of the": [65535, 0], "at the crossroads in the dark of the moon": [65535, 0], "the crossroads in the dark of the moon and": [65535, 0], "crossroads in the dark of the moon and then": [65535, 0], "in the dark of the moon and then you": [65535, 0], "the dark of the moon and then you burn": [65535, 0], "dark of the moon and then you burn up": [65535, 0], "of the moon and then you burn up the": [65535, 0], "the moon and then you burn up the rest": [65535, 0], "moon and then you burn up the rest of": [65535, 0], "and then you burn up the rest of the": [65535, 0], "then you burn up the rest of the bean": [65535, 0], "you burn up the rest of the bean you": [65535, 0], "burn up the rest of the bean you see": [65535, 0], "up the rest of the bean you see that": [65535, 0], "the rest of the bean you see that piece": [65535, 0], "rest of the bean you see that piece that's": [65535, 0], "of the bean you see that piece that's got": [65535, 0], "the bean you see that piece that's got the": [65535, 0], "bean you see that piece that's got the blood": [65535, 0], "you see that piece that's got the blood on": [65535, 0], "see that piece that's got the blood on it": [65535, 0], "that piece that's got the blood on it will": [65535, 0], "piece that's got the blood on it will keep": [65535, 0], "that's got the blood on it will keep drawing": [65535, 0], "got the blood on it will keep drawing and": [65535, 0], "the blood on it will keep drawing and drawing": [65535, 0], "blood on it will keep drawing and drawing trying": [65535, 0], "on it will keep drawing and drawing trying to": [65535, 0], "it will keep drawing and drawing trying to fetch": [65535, 0], "will keep drawing and drawing trying to fetch the": [65535, 0], "keep drawing and drawing trying to fetch the other": [65535, 0], "drawing and drawing trying to fetch the other piece": [65535, 0], "and drawing trying to fetch the other piece to": [65535, 0], "drawing trying to fetch the other piece to it": [65535, 0], "trying to fetch the other piece to it and": [65535, 0], "to fetch the other piece to it and so": [65535, 0], "fetch the other piece to it and so that": [65535, 0], "the other piece to it and so that helps": [65535, 0], "other piece to it and so that helps the": [65535, 0], "piece to it and so that helps the blood": [65535, 0], "to it and so that helps the blood to": [65535, 0], "it and so that helps the blood to draw": [65535, 0], "and so that helps the blood to draw the": [65535, 0], "so that helps the blood to draw the wart": [65535, 0], "that helps the blood to draw the wart and": [65535, 0], "helps the blood to draw the wart and pretty": [65535, 0], "the blood to draw the wart and pretty soon": [65535, 0], "blood to draw the wart and pretty soon off": [65535, 0], "to draw the wart and pretty soon off she": [65535, 0], "draw the wart and pretty soon off she comes": [65535, 0], "the wart and pretty soon off she comes yes": [65535, 0], "wart and pretty soon off she comes yes that's": [65535, 0], "and pretty soon off she comes yes that's it": [65535, 0], "pretty soon off she comes yes that's it huck": [65535, 0], "soon off she comes yes that's it huck that's": [65535, 0], "off she comes yes that's it huck that's it": [65535, 0], "she comes yes that's it huck that's it though": [65535, 0], "comes yes that's it huck that's it though when": [65535, 0], "yes that's it huck that's it though when you're": [65535, 0], "that's it huck that's it though when you're burying": [65535, 0], "it huck that's it though when you're burying it": [65535, 0], "huck that's it though when you're burying it if": [65535, 0], "that's it though when you're burying it if you": [65535, 0], "it though when you're burying it if you say": [65535, 0], "though when you're burying it if you say 'down": [65535, 0], "when you're burying it if you say 'down bean": [65535, 0], "you're burying it if you say 'down bean off": [65535, 0], "burying it if you say 'down bean off wart": [65535, 0], "it if you say 'down bean off wart come": [65535, 0], "if you say 'down bean off wart come no": [65535, 0], "you say 'down bean off wart come no more": [65535, 0], "say 'down bean off wart come no more to": [65535, 0], "'down bean off wart come no more to bother": [65535, 0], "bean off wart come no more to bother me": [65535, 0], "off wart come no more to bother me '": [65535, 0], "wart come no more to bother me ' it's": [65535, 0], "come no more to bother me ' it's better": [65535, 0], "no more to bother me ' it's better that's": [65535, 0], "more to bother me ' it's better that's the": [65535, 0], "to bother me ' it's better that's the way": [65535, 0], "bother me ' it's better that's the way joe": [65535, 0], "me ' it's better that's the way joe harper": [65535, 0], "' it's better that's the way joe harper does": [65535, 0], "it's better that's the way joe harper does and": [65535, 0], "better that's the way joe harper does and he's": [65535, 0], "that's the way joe harper does and he's been": [65535, 0], "the way joe harper does and he's been nearly": [65535, 0], "way joe harper does and he's been nearly to": [65535, 0], "joe harper does and he's been nearly to coonville": [65535, 0], "harper does and he's been nearly to coonville and": [65535, 0], "does and he's been nearly to coonville and most": [65535, 0], "and he's been nearly to coonville and most everywheres": [65535, 0], "he's been nearly to coonville and most everywheres but": [65535, 0], "been nearly to coonville and most everywheres but say": [65535, 0], "nearly to coonville and most everywheres but say how": [65535, 0], "to coonville and most everywheres but say how do": [65535, 0], "coonville and most everywheres but say how do you": [65535, 0], "and most everywheres but say how do you cure": [65535, 0], "most everywheres but say how do you cure 'em": [65535, 0], "everywheres but say how do you cure 'em with": [65535, 0], "but say how do you cure 'em with dead": [65535, 0], "say how do you cure 'em with dead cats": [65535, 0], "how do you cure 'em with dead cats why": [65535, 0], "do you cure 'em with dead cats why you": [65535, 0], "you cure 'em with dead cats why you take": [65535, 0], "cure 'em with dead cats why you take your": [65535, 0], "'em with dead cats why you take your cat": [65535, 0], "with dead cats why you take your cat and": [65535, 0], "dead cats why you take your cat and go": [65535, 0], "cats why you take your cat and go and": [65535, 0], "why you take your cat and go and get": [65535, 0], "you take your cat and go and get in": [65535, 0], "take your cat and go and get in the": [65535, 0], "your cat and go and get in the graveyard": [65535, 0], "cat and go and get in the graveyard 'long": [65535, 0], "and go and get in the graveyard 'long about": [65535, 0], "go and get in the graveyard 'long about midnight": [65535, 0], "and get in the graveyard 'long about midnight when": [65535, 0], "get in the graveyard 'long about midnight when somebody": [65535, 0], "in the graveyard 'long about midnight when somebody that": [65535, 0], "the graveyard 'long about midnight when somebody that was": [65535, 0], "graveyard 'long about midnight when somebody that was wicked": [65535, 0], "'long about midnight when somebody that was wicked has": [65535, 0], "about midnight when somebody that was wicked has been": [65535, 0], "midnight when somebody that was wicked has been buried": [65535, 0], "when somebody that was wicked has been buried and": [65535, 0], "somebody that was wicked has been buried and when": [65535, 0], "that was wicked has been buried and when it's": [65535, 0], "was wicked has been buried and when it's midnight": [65535, 0], "wicked has been buried and when it's midnight a": [65535, 0], "has been buried and when it's midnight a devil": [65535, 0], "been buried and when it's midnight a devil will": [65535, 0], "buried and when it's midnight a devil will come": [65535, 0], "and when it's midnight a devil will come or": [65535, 0], "when it's midnight a devil will come or maybe": [65535, 0], "it's midnight a devil will come or maybe two": [65535, 0], "midnight a devil will come or maybe two or": [65535, 0], "a devil will come or maybe two or three": [65535, 0], "devil will come or maybe two or three but": [65535, 0], "will come or maybe two or three but you": [65535, 0], "come or maybe two or three but you can't": [65535, 0], "or maybe two or three but you can't see": [65535, 0], "maybe two or three but you can't see 'em": [65535, 0], "two or three but you can't see 'em you": [65535, 0], "or three but you can't see 'em you can": [65535, 0], "three but you can't see 'em you can only": [65535, 0], "but you can't see 'em you can only hear": [65535, 0], "you can't see 'em you can only hear something": [65535, 0], "can't see 'em you can only hear something like": [65535, 0], "see 'em you can only hear something like the": [65535, 0], "'em you can only hear something like the wind": [65535, 0], "you can only hear something like the wind or": [65535, 0], "can only hear something like the wind or maybe": [65535, 0], "only hear something like the wind or maybe hear": [65535, 0], "hear something like the wind or maybe hear 'em": [65535, 0], "something like the wind or maybe hear 'em talk": [65535, 0], "like the wind or maybe hear 'em talk and": [65535, 0], "the wind or maybe hear 'em talk and when": [65535, 0], "wind or maybe hear 'em talk and when they're": [65535, 0], "or maybe hear 'em talk and when they're taking": [65535, 0], "maybe hear 'em talk and when they're taking that": [65535, 0], "hear 'em talk and when they're taking that feller": [65535, 0], "'em talk and when they're taking that feller away": [65535, 0], "talk and when they're taking that feller away you": [65535, 0], "and when they're taking that feller away you heave": [65535, 0], "when they're taking that feller away you heave your": [65535, 0], "they're taking that feller away you heave your cat": [65535, 0], "taking that feller away you heave your cat after": [65535, 0], "that feller away you heave your cat after 'em": [65535, 0], "feller away you heave your cat after 'em and": [65535, 0], "away you heave your cat after 'em and say": [65535, 0], "you heave your cat after 'em and say 'devil": [65535, 0], "heave your cat after 'em and say 'devil follow": [65535, 0], "your cat after 'em and say 'devil follow corpse": [65535, 0], "cat after 'em and say 'devil follow corpse cat": [65535, 0], "after 'em and say 'devil follow corpse cat follow": [65535, 0], "'em and say 'devil follow corpse cat follow devil": [65535, 0], "and say 'devil follow corpse cat follow devil warts": [65535, 0], "say 'devil follow corpse cat follow devil warts follow": [65535, 0], "'devil follow corpse cat follow devil warts follow cat": [65535, 0], "follow corpse cat follow devil warts follow cat i'm": [65535, 0], "corpse cat follow devil warts follow cat i'm done": [65535, 0], "cat follow devil warts follow cat i'm done with": [65535, 0], "follow devil warts follow cat i'm done with ye": [65535, 0], "devil warts follow cat i'm done with ye '": [65535, 0], "warts follow cat i'm done with ye ' that'll": [65535, 0], "follow cat i'm done with ye ' that'll fetch": [65535, 0], "cat i'm done with ye ' that'll fetch any": [65535, 0], "i'm done with ye ' that'll fetch any wart": [65535, 0], "done with ye ' that'll fetch any wart sounds": [65535, 0], "with ye ' that'll fetch any wart sounds right": [65535, 0], "ye ' that'll fetch any wart sounds right d'you": [65535, 0], "' that'll fetch any wart sounds right d'you ever": [65535, 0], "that'll fetch any wart sounds right d'you ever try": [65535, 0], "fetch any wart sounds right d'you ever try it": [65535, 0], "any wart sounds right d'you ever try it huck": [65535, 0], "wart sounds right d'you ever try it huck no": [65535, 0], "sounds right d'you ever try it huck no but": [65535, 0], "right d'you ever try it huck no but old": [65535, 0], "d'you ever try it huck no but old mother": [65535, 0], "ever try it huck no but old mother hopkins": [65535, 0], "try it huck no but old mother hopkins told": [65535, 0], "it huck no but old mother hopkins told me": [65535, 0], "huck no but old mother hopkins told me well": [65535, 0], "no but old mother hopkins told me well i": [65535, 0], "but old mother hopkins told me well i reckon": [65535, 0], "old mother hopkins told me well i reckon it's": [65535, 0], "mother hopkins told me well i reckon it's so": [65535, 0], "hopkins told me well i reckon it's so then": [65535, 0], "told me well i reckon it's so then becuz": [65535, 0], "me well i reckon it's so then becuz they": [65535, 0], "well i reckon it's so then becuz they say": [65535, 0], "i reckon it's so then becuz they say she's": [65535, 0], "reckon it's so then becuz they say she's a": [65535, 0], "it's so then becuz they say she's a witch": [65535, 0], "so then becuz they say she's a witch say": [65535, 0], "then becuz they say she's a witch say why": [65535, 0], "becuz they say she's a witch say why tom": [65535, 0], "they say she's a witch say why tom i": [65535, 0], "say she's a witch say why tom i know": [65535, 0], "she's a witch say why tom i know she": [65535, 0], "a witch say why tom i know she is": [65535, 0], "witch say why tom i know she is she": [65535, 0], "say why tom i know she is she witched": [65535, 0], "why tom i know she is she witched pap": [65535, 0], "tom i know she is she witched pap pap": [65535, 0], "i know she is she witched pap pap says": [65535, 0], "know she is she witched pap pap says so": [65535, 0], "she is she witched pap pap says so his": [65535, 0], "is she witched pap pap says so his own": [65535, 0], "she witched pap pap says so his own self": [65535, 0], "witched pap pap says so his own self he": [65535, 0], "pap pap says so his own self he come": [65535, 0], "pap says so his own self he come along": [65535, 0], "says so his own self he come along one": [65535, 0], "so his own self he come along one day": [65535, 0], "his own self he come along one day and": [65535, 0], "own self he come along one day and he": [65535, 0], "self he come along one day and he see": [65535, 0], "he come along one day and he see she": [65535, 0], "come along one day and he see she was": [65535, 0], "along one day and he see she was a": [65535, 0], "one day and he see she was a witching": [65535, 0], "day and he see she was a witching him": [65535, 0], "and he see she was a witching him so": [65535, 0], "he see she was a witching him so he": [65535, 0], "see she was a witching him so he took": [65535, 0], "she was a witching him so he took up": [65535, 0], "was a witching him so he took up a": [65535, 0], "a witching him so he took up a rock": [65535, 0], "witching him so he took up a rock and": [65535, 0], "him so he took up a rock and if": [65535, 0], "so he took up a rock and if she": [65535, 0], "he took up a rock and if she hadn't": [65535, 0], "took up a rock and if she hadn't dodged": [65535, 0], "up a rock and if she hadn't dodged he'd": [65535, 0], "a rock and if she hadn't dodged he'd a": [65535, 0], "rock and if she hadn't dodged he'd a got": [65535, 0], "and if she hadn't dodged he'd a got her": [65535, 0], "if she hadn't dodged he'd a got her well": [65535, 0], "she hadn't dodged he'd a got her well that": [65535, 0], "hadn't dodged he'd a got her well that very": [65535, 0], "dodged he'd a got her well that very night": [65535, 0], "he'd a got her well that very night he": [65535, 0], "a got her well that very night he rolled": [65535, 0], "got her well that very night he rolled off'n": [65535, 0], "her well that very night he rolled off'n a": [65535, 0], "well that very night he rolled off'n a shed": [65535, 0], "that very night he rolled off'n a shed wher'": [65535, 0], "very night he rolled off'n a shed wher' he": [65535, 0], "night he rolled off'n a shed wher' he was": [65535, 0], "he rolled off'n a shed wher' he was a": [65535, 0], "rolled off'n a shed wher' he was a layin": [65535, 0], "off'n a shed wher' he was a layin drunk": [65535, 0], "a shed wher' he was a layin drunk and": [65535, 0], "shed wher' he was a layin drunk and broke": [65535, 0], "wher' he was a layin drunk and broke his": [65535, 0], "he was a layin drunk and broke his arm": [65535, 0], "was a layin drunk and broke his arm why": [65535, 0], "a layin drunk and broke his arm why that's": [65535, 0], "layin drunk and broke his arm why that's awful": [65535, 0], "drunk and broke his arm why that's awful how": [65535, 0], "and broke his arm why that's awful how did": [65535, 0], "broke his arm why that's awful how did he": [65535, 0], "his arm why that's awful how did he know": [65535, 0], "arm why that's awful how did he know she": [65535, 0], "why that's awful how did he know she was": [65535, 0], "that's awful how did he know she was a": [65535, 0], "awful how did he know she was a witching": [65535, 0], "how did he know she was a witching him": [65535, 0], "did he know she was a witching him lord": [65535, 0], "he know she was a witching him lord pap": [65535, 0], "know she was a witching him lord pap can": [65535, 0], "she was a witching him lord pap can tell": [65535, 0], "was a witching him lord pap can tell easy": [65535, 0], "a witching him lord pap can tell easy pap": [65535, 0], "witching him lord pap can tell easy pap says": [65535, 0], "him lord pap can tell easy pap says when": [65535, 0], "lord pap can tell easy pap says when they": [65535, 0], "pap can tell easy pap says when they keep": [65535, 0], "can tell easy pap says when they keep looking": [65535, 0], "tell easy pap says when they keep looking at": [65535, 0], "easy pap says when they keep looking at you": [65535, 0], "pap says when they keep looking at you right": [65535, 0], "says when they keep looking at you right stiddy": [65535, 0], "when they keep looking at you right stiddy they're": [65535, 0], "they keep looking at you right stiddy they're a": [65535, 0], "keep looking at you right stiddy they're a witching": [65535, 0], "looking at you right stiddy they're a witching you": [65535, 0], "at you right stiddy they're a witching you specially": [65535, 0], "you right stiddy they're a witching you specially if": [65535, 0], "right stiddy they're a witching you specially if they": [65535, 0], "stiddy they're a witching you specially if they mumble": [65535, 0], "they're a witching you specially if they mumble becuz": [65535, 0], "a witching you specially if they mumble becuz when": [65535, 0], "witching you specially if they mumble becuz when they": [65535, 0], "you specially if they mumble becuz when they mumble": [65535, 0], "specially if they mumble becuz when they mumble they're": [65535, 0], "if they mumble becuz when they mumble they're saying": [65535, 0], "they mumble becuz when they mumble they're saying the": [65535, 0], "mumble becuz when they mumble they're saying the lord's": [65535, 0], "becuz when they mumble they're saying the lord's prayer": [65535, 0], "when they mumble they're saying the lord's prayer backards": [65535, 0], "they mumble they're saying the lord's prayer backards say": [65535, 0], "mumble they're saying the lord's prayer backards say hucky": [65535, 0], "they're saying the lord's prayer backards say hucky when": [65535, 0], "saying the lord's prayer backards say hucky when you": [65535, 0], "the lord's prayer backards say hucky when you going": [65535, 0], "lord's prayer backards say hucky when you going to": [65535, 0], "prayer backards say hucky when you going to try": [65535, 0], "backards say hucky when you going to try the": [65535, 0], "say hucky when you going to try the cat": [65535, 0], "hucky when you going to try the cat to": [65535, 0], "when you going to try the cat to night": [65535, 0], "you going to try the cat to night i": [65535, 0], "going to try the cat to night i reckon": [65535, 0], "to try the cat to night i reckon they'll": [65535, 0], "try the cat to night i reckon they'll come": [65535, 0], "the cat to night i reckon they'll come after": [65535, 0], "cat to night i reckon they'll come after old": [65535, 0], "to night i reckon they'll come after old hoss": [65535, 0], "night i reckon they'll come after old hoss williams": [65535, 0], "i reckon they'll come after old hoss williams to": [65535, 0], "reckon they'll come after old hoss williams to night": [65535, 0], "they'll come after old hoss williams to night but": [65535, 0], "come after old hoss williams to night but they": [65535, 0], "after old hoss williams to night but they buried": [65535, 0], "old hoss williams to night but they buried him": [65535, 0], "hoss williams to night but they buried him saturday": [65535, 0], "williams to night but they buried him saturday didn't": [65535, 0], "to night but they buried him saturday didn't they": [65535, 0], "night but they buried him saturday didn't they get": [65535, 0], "but they buried him saturday didn't they get him": [65535, 0], "they buried him saturday didn't they get him saturday": [65535, 0], "buried him saturday didn't they get him saturday night": [65535, 0], "him saturday didn't they get him saturday night why": [65535, 0], "saturday didn't they get him saturday night why how": [65535, 0], "didn't they get him saturday night why how you": [65535, 0], "they get him saturday night why how you talk": [65535, 0], "get him saturday night why how you talk how": [65535, 0], "him saturday night why how you talk how could": [65535, 0], "saturday night why how you talk how could their": [65535, 0], "night why how you talk how could their charms": [65535, 0], "why how you talk how could their charms work": [65535, 0], "how you talk how could their charms work till": [65535, 0], "you talk how could their charms work till midnight": [65535, 0], "talk how could their charms work till midnight and": [65535, 0], "how could their charms work till midnight and then": [65535, 0], "could their charms work till midnight and then it's": [65535, 0], "their charms work till midnight and then it's sunday": [65535, 0], "charms work till midnight and then it's sunday devils": [65535, 0], "work till midnight and then it's sunday devils don't": [65535, 0], "till midnight and then it's sunday devils don't slosh": [65535, 0], "midnight and then it's sunday devils don't slosh around": [65535, 0], "and then it's sunday devils don't slosh around much": [65535, 0], "then it's sunday devils don't slosh around much of": [65535, 0], "it's sunday devils don't slosh around much of a": [65535, 0], "sunday devils don't slosh around much of a sunday": [65535, 0], "devils don't slosh around much of a sunday i": [65535, 0], "don't slosh around much of a sunday i don't": [65535, 0], "slosh around much of a sunday i don't reckon": [65535, 0], "around much of a sunday i don't reckon i": [65535, 0], "much of a sunday i don't reckon i never": [65535, 0], "of a sunday i don't reckon i never thought": [65535, 0], "a sunday i don't reckon i never thought of": [65535, 0], "sunday i don't reckon i never thought of that": [65535, 0], "i don't reckon i never thought of that that's": [65535, 0], "don't reckon i never thought of that that's so": [65535, 0], "reckon i never thought of that that's so lemme": [65535, 0], "i never thought of that that's so lemme go": [65535, 0], "never thought of that that's so lemme go with": [65535, 0], "thought of that that's so lemme go with you": [65535, 0], "of that that's so lemme go with you of": [65535, 0], "that that's so lemme go with you of course": [65535, 0], "that's so lemme go with you of course if": [65535, 0], "so lemme go with you of course if you": [65535, 0], "lemme go with you of course if you ain't": [65535, 0], "go with you of course if you ain't afeard": [65535, 0], "with you of course if you ain't afeard afeard": [65535, 0], "you of course if you ain't afeard afeard 'tain't": [65535, 0], "of course if you ain't afeard afeard 'tain't likely": [65535, 0], "course if you ain't afeard afeard 'tain't likely will": [65535, 0], "if you ain't afeard afeard 'tain't likely will you": [65535, 0], "you ain't afeard afeard 'tain't likely will you meow": [65535, 0], "ain't afeard afeard 'tain't likely will you meow yes": [65535, 0], "afeard afeard 'tain't likely will you meow yes and": [65535, 0], "afeard 'tain't likely will you meow yes and you": [65535, 0], "'tain't likely will you meow yes and you meow": [65535, 0], "likely will you meow yes and you meow back": [65535, 0], "will you meow yes and you meow back if": [65535, 0], "you meow yes and you meow back if you": [65535, 0], "meow yes and you meow back if you get": [65535, 0], "yes and you meow back if you get a": [65535, 0], "and you meow back if you get a chance": [65535, 0], "you meow back if you get a chance last": [65535, 0], "meow back if you get a chance last time": [65535, 0], "back if you get a chance last time you": [65535, 0], "if you get a chance last time you kep'": [65535, 0], "you get a chance last time you kep' me": [65535, 0], "get a chance last time you kep' me a": [65535, 0], "a chance last time you kep' me a meowing": [65535, 0], "chance last time you kep' me a meowing around": [65535, 0], "last time you kep' me a meowing around till": [65535, 0], "time you kep' me a meowing around till old": [65535, 0], "you kep' me a meowing around till old hays": [65535, 0], "kep' me a meowing around till old hays went": [65535, 0], "me a meowing around till old hays went to": [65535, 0], "a meowing around till old hays went to throwing": [65535, 0], "meowing around till old hays went to throwing rocks": [65535, 0], "around till old hays went to throwing rocks at": [65535, 0], "till old hays went to throwing rocks at me": [65535, 0], "old hays went to throwing rocks at me and": [65535, 0], "hays went to throwing rocks at me and says": [65535, 0], "went to throwing rocks at me and says 'dern": [65535, 0], "to throwing rocks at me and says 'dern that": [65535, 0], "throwing rocks at me and says 'dern that cat": [65535, 0], "rocks at me and says 'dern that cat '": [65535, 0], "at me and says 'dern that cat ' and": [65535, 0], "me and says 'dern that cat ' and so": [65535, 0], "and says 'dern that cat ' and so i": [65535, 0], "says 'dern that cat ' and so i hove": [65535, 0], "'dern that cat ' and so i hove a": [65535, 0], "that cat ' and so i hove a brick": [65535, 0], "cat ' and so i hove a brick through": [65535, 0], "' and so i hove a brick through his": [65535, 0], "and so i hove a brick through his window": [65535, 0], "so i hove a brick through his window but": [65535, 0], "i hove a brick through his window but don't": [65535, 0], "hove a brick through his window but don't you": [65535, 0], "a brick through his window but don't you tell": [65535, 0], "brick through his window but don't you tell i": [65535, 0], "through his window but don't you tell i won't": [65535, 0], "his window but don't you tell i won't i": [65535, 0], "window but don't you tell i won't i couldn't": [65535, 0], "but don't you tell i won't i couldn't meow": [65535, 0], "don't you tell i won't i couldn't meow that": [65535, 0], "you tell i won't i couldn't meow that night": [65535, 0], "tell i won't i couldn't meow that night becuz": [65535, 0], "i won't i couldn't meow that night becuz auntie": [65535, 0], "won't i couldn't meow that night becuz auntie was": [65535, 0], "i couldn't meow that night becuz auntie was watching": [65535, 0], "couldn't meow that night becuz auntie was watching me": [65535, 0], "meow that night becuz auntie was watching me but": [65535, 0], "that night becuz auntie was watching me but i'll": [65535, 0], "night becuz auntie was watching me but i'll meow": [65535, 0], "becuz auntie was watching me but i'll meow this": [65535, 0], "auntie was watching me but i'll meow this time": [65535, 0], "was watching me but i'll meow this time say": [65535, 0], "watching me but i'll meow this time say what's": [65535, 0], "me but i'll meow this time say what's that": [65535, 0], "but i'll meow this time say what's that nothing": [65535, 0], "i'll meow this time say what's that nothing but": [65535, 0], "meow this time say what's that nothing but a": [65535, 0], "this time say what's that nothing but a tick": [65535, 0], "time say what's that nothing but a tick where'd": [65535, 0], "say what's that nothing but a tick where'd you": [65535, 0], "what's that nothing but a tick where'd you get": [65535, 0], "that nothing but a tick where'd you get him": [65535, 0], "nothing but a tick where'd you get him out": [65535, 0], "but a tick where'd you get him out in": [65535, 0], "a tick where'd you get him out in the": [65535, 0], "tick where'd you get him out in the woods": [65535, 0], "where'd you get him out in the woods what'll": [65535, 0], "you get him out in the woods what'll you": [65535, 0], "get him out in the woods what'll you take": [65535, 0], "him out in the woods what'll you take for": [65535, 0], "out in the woods what'll you take for him": [65535, 0], "in the woods what'll you take for him i": [65535, 0], "the woods what'll you take for him i don't": [65535, 0], "woods what'll you take for him i don't know": [65535, 0], "what'll you take for him i don't know i": [65535, 0], "you take for him i don't know i don't": [65535, 0], "take for him i don't know i don't want": [65535, 0], "for him i don't know i don't want to": [65535, 0], "him i don't know i don't want to sell": [65535, 0], "i don't know i don't want to sell him": [65535, 0], "don't know i don't want to sell him all": [65535, 0], "know i don't want to sell him all right": [65535, 0], "i don't want to sell him all right it's": [65535, 0], "don't want to sell him all right it's a": [65535, 0], "want to sell him all right it's a mighty": [65535, 0], "to sell him all right it's a mighty small": [65535, 0], "sell him all right it's a mighty small tick": [65535, 0], "him all right it's a mighty small tick anyway": [65535, 0], "all right it's a mighty small tick anyway oh": [65535, 0], "right it's a mighty small tick anyway oh anybody": [65535, 0], "it's a mighty small tick anyway oh anybody can": [65535, 0], "a mighty small tick anyway oh anybody can run": [65535, 0], "mighty small tick anyway oh anybody can run a": [65535, 0], "small tick anyway oh anybody can run a tick": [65535, 0], "tick anyway oh anybody can run a tick down": [65535, 0], "anyway oh anybody can run a tick down that": [65535, 0], "oh anybody can run a tick down that don't": [65535, 0], "anybody can run a tick down that don't belong": [65535, 0], "can run a tick down that don't belong to": [65535, 0], "run a tick down that don't belong to them": [65535, 0], "a tick down that don't belong to them i'm": [65535, 0], "tick down that don't belong to them i'm satisfied": [65535, 0], "down that don't belong to them i'm satisfied with": [65535, 0], "that don't belong to them i'm satisfied with it": [65535, 0], "don't belong to them i'm satisfied with it it's": [65535, 0], "belong to them i'm satisfied with it it's a": [65535, 0], "to them i'm satisfied with it it's a good": [65535, 0], "them i'm satisfied with it it's a good enough": [65535, 0], "i'm satisfied with it it's a good enough tick": [65535, 0], "satisfied with it it's a good enough tick for": [65535, 0], "with it it's a good enough tick for me": [65535, 0], "it it's a good enough tick for me sho": [65535, 0], "it's a good enough tick for me sho there's": [65535, 0], "a good enough tick for me sho there's ticks": [65535, 0], "good enough tick for me sho there's ticks a": [65535, 0], "enough tick for me sho there's ticks a plenty": [65535, 0], "tick for me sho there's ticks a plenty i": [65535, 0], "for me sho there's ticks a plenty i could": [65535, 0], "me sho there's ticks a plenty i could have": [65535, 0], "sho there's ticks a plenty i could have a": [65535, 0], "there's ticks a plenty i could have a thousand": [65535, 0], "ticks a plenty i could have a thousand of": [65535, 0], "a plenty i could have a thousand of 'em": [65535, 0], "plenty i could have a thousand of 'em if": [65535, 0], "i could have a thousand of 'em if i": [65535, 0], "could have a thousand of 'em if i wanted": [65535, 0], "have a thousand of 'em if i wanted to": [65535, 0], "a thousand of 'em if i wanted to well": [65535, 0], "thousand of 'em if i wanted to well why": [65535, 0], "of 'em if i wanted to well why don't": [65535, 0], "'em if i wanted to well why don't you": [65535, 0], "if i wanted to well why don't you becuz": [65535, 0], "i wanted to well why don't you becuz you": [65535, 0], "wanted to well why don't you becuz you know": [65535, 0], "to well why don't you becuz you know mighty": [65535, 0], "well why don't you becuz you know mighty well": [65535, 0], "why don't you becuz you know mighty well you": [65535, 0], "don't you becuz you know mighty well you can't": [65535, 0], "you becuz you know mighty well you can't this": [65535, 0], "becuz you know mighty well you can't this is": [65535, 0], "you know mighty well you can't this is a": [65535, 0], "know mighty well you can't this is a pretty": [65535, 0], "mighty well you can't this is a pretty early": [65535, 0], "well you can't this is a pretty early tick": [65535, 0], "you can't this is a pretty early tick i": [65535, 0], "can't this is a pretty early tick i reckon": [65535, 0], "this is a pretty early tick i reckon it's": [65535, 0], "is a pretty early tick i reckon it's the": [65535, 0], "a pretty early tick i reckon it's the first": [65535, 0], "pretty early tick i reckon it's the first one": [65535, 0], "early tick i reckon it's the first one i've": [65535, 0], "tick i reckon it's the first one i've seen": [65535, 0], "i reckon it's the first one i've seen this": [65535, 0], "reckon it's the first one i've seen this year": [65535, 0], "it's the first one i've seen this year say": [65535, 0], "the first one i've seen this year say huck": [65535, 0], "first one i've seen this year say huck i'll": [65535, 0], "one i've seen this year say huck i'll give": [65535, 0], "i've seen this year say huck i'll give you": [65535, 0], "seen this year say huck i'll give you my": [65535, 0], "this year say huck i'll give you my tooth": [65535, 0], "year say huck i'll give you my tooth for": [65535, 0], "say huck i'll give you my tooth for him": [65535, 0], "huck i'll give you my tooth for him less": [65535, 0], "i'll give you my tooth for him less see": [65535, 0], "give you my tooth for him less see it": [65535, 0], "you my tooth for him less see it tom": [65535, 0], "my tooth for him less see it tom got": [65535, 0], "tooth for him less see it tom got out": [65535, 0], "for him less see it tom got out a": [65535, 0], "him less see it tom got out a bit": [65535, 0], "less see it tom got out a bit of": [65535, 0], "see it tom got out a bit of paper": [65535, 0], "it tom got out a bit of paper and": [65535, 0], "tom got out a bit of paper and carefully": [65535, 0], "got out a bit of paper and carefully unrolled": [65535, 0], "out a bit of paper and carefully unrolled it": [65535, 0], "a bit of paper and carefully unrolled it huckleberry": [65535, 0], "bit of paper and carefully unrolled it huckleberry viewed": [65535, 0], "of paper and carefully unrolled it huckleberry viewed it": [65535, 0], "paper and carefully unrolled it huckleberry viewed it wistfully": [65535, 0], "and carefully unrolled it huckleberry viewed it wistfully the": [65535, 0], "carefully unrolled it huckleberry viewed it wistfully the temptation": [65535, 0], "unrolled it huckleberry viewed it wistfully the temptation was": [65535, 0], "it huckleberry viewed it wistfully the temptation was very": [65535, 0], "huckleberry viewed it wistfully the temptation was very strong": [65535, 0], "viewed it wistfully the temptation was very strong at": [65535, 0], "it wistfully the temptation was very strong at last": [65535, 0], "wistfully the temptation was very strong at last he": [65535, 0], "the temptation was very strong at last he said": [65535, 0], "temptation was very strong at last he said is": [65535, 0], "was very strong at last he said is it": [65535, 0], "very strong at last he said is it genuwyne": [65535, 0], "strong at last he said is it genuwyne tom": [65535, 0], "at last he said is it genuwyne tom lifted": [65535, 0], "last he said is it genuwyne tom lifted his": [65535, 0], "he said is it genuwyne tom lifted his lip": [65535, 0], "said is it genuwyne tom lifted his lip and": [65535, 0], "is it genuwyne tom lifted his lip and showed": [65535, 0], "it genuwyne tom lifted his lip and showed the": [65535, 0], "genuwyne tom lifted his lip and showed the vacancy": [65535, 0], "tom lifted his lip and showed the vacancy well": [65535, 0], "lifted his lip and showed the vacancy well all": [65535, 0], "his lip and showed the vacancy well all right": [65535, 0], "lip and showed the vacancy well all right said": [65535, 0], "and showed the vacancy well all right said huckleberry": [65535, 0], "showed the vacancy well all right said huckleberry it's": [65535, 0], "the vacancy well all right said huckleberry it's a": [65535, 0], "vacancy well all right said huckleberry it's a trade": [65535, 0], "well all right said huckleberry it's a trade tom": [65535, 0], "all right said huckleberry it's a trade tom enclosed": [65535, 0], "right said huckleberry it's a trade tom enclosed the": [65535, 0], "said huckleberry it's a trade tom enclosed the tick": [65535, 0], "huckleberry it's a trade tom enclosed the tick in": [65535, 0], "it's a trade tom enclosed the tick in the": [65535, 0], "a trade tom enclosed the tick in the percussion": [65535, 0], "trade tom enclosed the tick in the percussion cap": [65535, 0], "tom enclosed the tick in the percussion cap box": [65535, 0], "enclosed the tick in the percussion cap box that": [65535, 0], "the tick in the percussion cap box that had": [65535, 0], "tick in the percussion cap box that had lately": [65535, 0], "in the percussion cap box that had lately been": [65535, 0], "the percussion cap box that had lately been the": [65535, 0], "percussion cap box that had lately been the pinchbug's": [65535, 0], "cap box that had lately been the pinchbug's prison": [65535, 0], "box that had lately been the pinchbug's prison and": [65535, 0], "that had lately been the pinchbug's prison and the": [65535, 0], "had lately been the pinchbug's prison and the boys": [65535, 0], "lately been the pinchbug's prison and the boys separated": [65535, 0], "been the pinchbug's prison and the boys separated each": [65535, 0], "the pinchbug's prison and the boys separated each feeling": [65535, 0], "pinchbug's prison and the boys separated each feeling wealthier": [65535, 0], "prison and the boys separated each feeling wealthier than": [65535, 0], "and the boys separated each feeling wealthier than before": [65535, 0], "the boys separated each feeling wealthier than before when": [65535, 0], "boys separated each feeling wealthier than before when tom": [65535, 0], "separated each feeling wealthier than before when tom reached": [65535, 0], "each feeling wealthier than before when tom reached the": [65535, 0], "feeling wealthier than before when tom reached the little": [65535, 0], "wealthier than before when tom reached the little isolated": [65535, 0], "than before when tom reached the little isolated frame": [65535, 0], "before when tom reached the little isolated frame schoolhouse": [65535, 0], "when tom reached the little isolated frame schoolhouse he": [65535, 0], "tom reached the little isolated frame schoolhouse he strode": [65535, 0], "reached the little isolated frame schoolhouse he strode in": [65535, 0], "the little isolated frame schoolhouse he strode in briskly": [65535, 0], "little isolated frame schoolhouse he strode in briskly with": [65535, 0], "isolated frame schoolhouse he strode in briskly with the": [65535, 0], "frame schoolhouse he strode in briskly with the manner": [65535, 0], "schoolhouse he strode in briskly with the manner of": [65535, 0], "he strode in briskly with the manner of one": [65535, 0], "strode in briskly with the manner of one who": [65535, 0], "in briskly with the manner of one who had": [65535, 0], "briskly with the manner of one who had come": [65535, 0], "with the manner of one who had come with": [65535, 0], "the manner of one who had come with all": [65535, 0], "manner of one who had come with all honest": [65535, 0], "of one who had come with all honest speed": [65535, 0], "one who had come with all honest speed he": [65535, 0], "who had come with all honest speed he hung": [65535, 0], "had come with all honest speed he hung his": [65535, 0], "come with all honest speed he hung his hat": [65535, 0], "with all honest speed he hung his hat on": [65535, 0], "all honest speed he hung his hat on a": [65535, 0], "honest speed he hung his hat on a peg": [65535, 0], "speed he hung his hat on a peg and": [65535, 0], "he hung his hat on a peg and flung": [65535, 0], "hung his hat on a peg and flung himself": [65535, 0], "his hat on a peg and flung himself into": [65535, 0], "hat on a peg and flung himself into his": [65535, 0], "on a peg and flung himself into his seat": [65535, 0], "a peg and flung himself into his seat with": [65535, 0], "peg and flung himself into his seat with business": [65535, 0], "and flung himself into his seat with business like": [65535, 0], "flung himself into his seat with business like alacrity": [65535, 0], "himself into his seat with business like alacrity the": [65535, 0], "into his seat with business like alacrity the master": [65535, 0], "his seat with business like alacrity the master throned": [65535, 0], "seat with business like alacrity the master throned on": [65535, 0], "with business like alacrity the master throned on high": [65535, 0], "business like alacrity the master throned on high in": [65535, 0], "like alacrity the master throned on high in his": [65535, 0], "alacrity the master throned on high in his great": [65535, 0], "the master throned on high in his great splint": [65535, 0], "master throned on high in his great splint bottom": [65535, 0], "throned on high in his great splint bottom arm": [65535, 0], "on high in his great splint bottom arm chair": [65535, 0], "high in his great splint bottom arm chair was": [65535, 0], "in his great splint bottom arm chair was dozing": [65535, 0], "his great splint bottom arm chair was dozing lulled": [65535, 0], "great splint bottom arm chair was dozing lulled by": [65535, 0], "splint bottom arm chair was dozing lulled by the": [65535, 0], "bottom arm chair was dozing lulled by the drowsy": [65535, 0], "arm chair was dozing lulled by the drowsy hum": [65535, 0], "chair was dozing lulled by the drowsy hum of": [65535, 0], "was dozing lulled by the drowsy hum of study": [65535, 0], "dozing lulled by the drowsy hum of study the": [65535, 0], "lulled by the drowsy hum of study the interruption": [65535, 0], "by the drowsy hum of study the interruption roused": [65535, 0], "the drowsy hum of study the interruption roused him": [65535, 0], "drowsy hum of study the interruption roused him thomas": [65535, 0], "hum of study the interruption roused him thomas sawyer": [65535, 0], "of study the interruption roused him thomas sawyer tom": [65535, 0], "study the interruption roused him thomas sawyer tom knew": [65535, 0], "the interruption roused him thomas sawyer tom knew that": [65535, 0], "interruption roused him thomas sawyer tom knew that when": [65535, 0], "roused him thomas sawyer tom knew that when his": [65535, 0], "him thomas sawyer tom knew that when his name": [65535, 0], "thomas sawyer tom knew that when his name was": [65535, 0], "sawyer tom knew that when his name was pronounced": [65535, 0], "tom knew that when his name was pronounced in": [65535, 0], "knew that when his name was pronounced in full": [65535, 0], "that when his name was pronounced in full it": [65535, 0], "when his name was pronounced in full it meant": [65535, 0], "his name was pronounced in full it meant trouble": [65535, 0], "name was pronounced in full it meant trouble sir": [65535, 0], "was pronounced in full it meant trouble sir come": [65535, 0], "pronounced in full it meant trouble sir come up": [65535, 0], "in full it meant trouble sir come up here": [65535, 0], "full it meant trouble sir come up here now": [65535, 0], "it meant trouble sir come up here now sir": [65535, 0], "meant trouble sir come up here now sir why": [65535, 0], "trouble sir come up here now sir why are": [65535, 0], "sir come up here now sir why are you": [65535, 0], "come up here now sir why are you late": [65535, 0], "up here now sir why are you late again": [65535, 0], "here now sir why are you late again as": [65535, 0], "now sir why are you late again as usual": [65535, 0], "sir why are you late again as usual tom": [65535, 0], "why are you late again as usual tom was": [65535, 0], "are you late again as usual tom was about": [65535, 0], "you late again as usual tom was about to": [65535, 0], "late again as usual tom was about to take": [65535, 0], "again as usual tom was about to take refuge": [65535, 0], "as usual tom was about to take refuge in": [65535, 0], "usual tom was about to take refuge in a": [65535, 0], "tom was about to take refuge in a lie": [65535, 0], "was about to take refuge in a lie when": [65535, 0], "about to take refuge in a lie when he": [65535, 0], "to take refuge in a lie when he saw": [65535, 0], "take refuge in a lie when he saw two": [65535, 0], "refuge in a lie when he saw two long": [65535, 0], "in a lie when he saw two long tails": [65535, 0], "a lie when he saw two long tails of": [65535, 0], "lie when he saw two long tails of yellow": [65535, 0], "when he saw two long tails of yellow hair": [65535, 0], "he saw two long tails of yellow hair hanging": [65535, 0], "saw two long tails of yellow hair hanging down": [65535, 0], "two long tails of yellow hair hanging down a": [65535, 0], "long tails of yellow hair hanging down a back": [65535, 0], "tails of yellow hair hanging down a back that": [65535, 0], "of yellow hair hanging down a back that he": [65535, 0], "yellow hair hanging down a back that he recognized": [65535, 0], "hair hanging down a back that he recognized by": [65535, 0], "hanging down a back that he recognized by the": [65535, 0], "down a back that he recognized by the electric": [65535, 0], "a back that he recognized by the electric sympathy": [65535, 0], "back that he recognized by the electric sympathy of": [65535, 0], "that he recognized by the electric sympathy of love": [65535, 0], "he recognized by the electric sympathy of love and": [65535, 0], "recognized by the electric sympathy of love and by": [65535, 0], "by the electric sympathy of love and by that": [65535, 0], "the electric sympathy of love and by that form": [65535, 0], "electric sympathy of love and by that form was": [65535, 0], "sympathy of love and by that form was the": [65535, 0], "of love and by that form was the only": [65535, 0], "love and by that form was the only vacant": [65535, 0], "and by that form was the only vacant place": [65535, 0], "by that form was the only vacant place on": [65535, 0], "that form was the only vacant place on the": [65535, 0], "form was the only vacant place on the girls'": [65535, 0], "was the only vacant place on the girls' side": [65535, 0], "the only vacant place on the girls' side of": [65535, 0], "only vacant place on the girls' side of the": [65535, 0], "vacant place on the girls' side of the school": [65535, 0], "place on the girls' side of the school house": [65535, 0], "on the girls' side of the school house he": [65535, 0], "the girls' side of the school house he instantly": [65535, 0], "girls' side of the school house he instantly said": [65535, 0], "side of the school house he instantly said i": [65535, 0], "of the school house he instantly said i stopped": [65535, 0], "the school house he instantly said i stopped to": [65535, 0], "school house he instantly said i stopped to talk": [65535, 0], "house he instantly said i stopped to talk with": [65535, 0], "he instantly said i stopped to talk with huckleberry": [65535, 0], "instantly said i stopped to talk with huckleberry finn": [65535, 0], "said i stopped to talk with huckleberry finn the": [65535, 0], "i stopped to talk with huckleberry finn the master's": [65535, 0], "stopped to talk with huckleberry finn the master's pulse": [65535, 0], "to talk with huckleberry finn the master's pulse stood": [65535, 0], "talk with huckleberry finn the master's pulse stood still": [65535, 0], "with huckleberry finn the master's pulse stood still and": [65535, 0], "huckleberry finn the master's pulse stood still and he": [65535, 0], "finn the master's pulse stood still and he stared": [65535, 0], "the master's pulse stood still and he stared helplessly": [65535, 0], "master's pulse stood still and he stared helplessly the": [65535, 0], "pulse stood still and he stared helplessly the buzz": [65535, 0], "stood still and he stared helplessly the buzz of": [65535, 0], "still and he stared helplessly the buzz of study": [65535, 0], "and he stared helplessly the buzz of study ceased": [65535, 0], "he stared helplessly the buzz of study ceased the": [65535, 0], "stared helplessly the buzz of study ceased the pupils": [65535, 0], "helplessly the buzz of study ceased the pupils wondered": [65535, 0], "the buzz of study ceased the pupils wondered if": [65535, 0], "buzz of study ceased the pupils wondered if this": [65535, 0], "of study ceased the pupils wondered if this foolhardy": [65535, 0], "study ceased the pupils wondered if this foolhardy boy": [65535, 0], "ceased the pupils wondered if this foolhardy boy had": [65535, 0], "the pupils wondered if this foolhardy boy had lost": [65535, 0], "pupils wondered if this foolhardy boy had lost his": [65535, 0], "wondered if this foolhardy boy had lost his mind": [65535, 0], "if this foolhardy boy had lost his mind the": [65535, 0], "this foolhardy boy had lost his mind the master": [65535, 0], "foolhardy boy had lost his mind the master said": [65535, 0], "boy had lost his mind the master said you": [65535, 0], "had lost his mind the master said you you": [65535, 0], "lost his mind the master said you you did": [65535, 0], "his mind the master said you you did what": [65535, 0], "mind the master said you you did what stopped": [65535, 0], "the master said you you did what stopped to": [65535, 0], "master said you you did what stopped to talk": [65535, 0], "said you you did what stopped to talk with": [65535, 0], "you you did what stopped to talk with huckleberry": [65535, 0], "you did what stopped to talk with huckleberry finn": [65535, 0], "did what stopped to talk with huckleberry finn there": [65535, 0], "what stopped to talk with huckleberry finn there was": [65535, 0], "stopped to talk with huckleberry finn there was no": [65535, 0], "to talk with huckleberry finn there was no mistaking": [65535, 0], "talk with huckleberry finn there was no mistaking the": [65535, 0], "with huckleberry finn there was no mistaking the words": [65535, 0], "huckleberry finn there was no mistaking the words thomas": [65535, 0], "finn there was no mistaking the words thomas sawyer": [65535, 0], "there was no mistaking the words thomas sawyer this": [65535, 0], "was no mistaking the words thomas sawyer this is": [65535, 0], "no mistaking the words thomas sawyer this is the": [65535, 0], "mistaking the words thomas sawyer this is the most": [65535, 0], "the words thomas sawyer this is the most astounding": [65535, 0], "words thomas sawyer this is the most astounding confession": [65535, 0], "thomas sawyer this is the most astounding confession i": [65535, 0], "sawyer this is the most astounding confession i have": [65535, 0], "this is the most astounding confession i have ever": [65535, 0], "is the most astounding confession i have ever listened": [65535, 0], "the most astounding confession i have ever listened to": [65535, 0], "most astounding confession i have ever listened to no": [65535, 0], "astounding confession i have ever listened to no mere": [65535, 0], "confession i have ever listened to no mere ferule": [65535, 0], "i have ever listened to no mere ferule will": [65535, 0], "have ever listened to no mere ferule will answer": [65535, 0], "ever listened to no mere ferule will answer for": [65535, 0], "listened to no mere ferule will answer for this": [65535, 0], "to no mere ferule will answer for this offence": [65535, 0], "no mere ferule will answer for this offence take": [65535, 0], "mere ferule will answer for this offence take off": [65535, 0], "ferule will answer for this offence take off your": [65535, 0], "will answer for this offence take off your jacket": [65535, 0], "answer for this offence take off your jacket the": [65535, 0], "for this offence take off your jacket the master's": [65535, 0], "this offence take off your jacket the master's arm": [65535, 0], "offence take off your jacket the master's arm performed": [65535, 0], "take off your jacket the master's arm performed until": [65535, 0], "off your jacket the master's arm performed until it": [65535, 0], "your jacket the master's arm performed until it was": [65535, 0], "jacket the master's arm performed until it was tired": [65535, 0], "the master's arm performed until it was tired and": [65535, 0], "master's arm performed until it was tired and the": [65535, 0], "arm performed until it was tired and the stock": [65535, 0], "performed until it was tired and the stock of": [65535, 0], "until it was tired and the stock of switches": [65535, 0], "it was tired and the stock of switches notably": [65535, 0], "was tired and the stock of switches notably diminished": [65535, 0], "tired and the stock of switches notably diminished then": [65535, 0], "and the stock of switches notably diminished then the": [65535, 0], "the stock of switches notably diminished then the order": [65535, 0], "stock of switches notably diminished then the order followed": [65535, 0], "of switches notably diminished then the order followed now": [65535, 0], "switches notably diminished then the order followed now sir": [65535, 0], "notably diminished then the order followed now sir go": [65535, 0], "diminished then the order followed now sir go and": [65535, 0], "then the order followed now sir go and sit": [65535, 0], "the order followed now sir go and sit with": [65535, 0], "order followed now sir go and sit with the": [65535, 0], "followed now sir go and sit with the girls": [65535, 0], "now sir go and sit with the girls and": [65535, 0], "sir go and sit with the girls and let": [65535, 0], "go and sit with the girls and let this": [65535, 0], "and sit with the girls and let this be": [65535, 0], "sit with the girls and let this be a": [65535, 0], "with the girls and let this be a warning": [65535, 0], "the girls and let this be a warning to": [65535, 0], "girls and let this be a warning to you": [65535, 0], "and let this be a warning to you the": [65535, 0], "let this be a warning to you the titter": [65535, 0], "this be a warning to you the titter that": [65535, 0], "be a warning to you the titter that rippled": [65535, 0], "a warning to you the titter that rippled around": [65535, 0], "warning to you the titter that rippled around the": [65535, 0], "to you the titter that rippled around the room": [65535, 0], "you the titter that rippled around the room appeared": [65535, 0], "the titter that rippled around the room appeared to": [65535, 0], "titter that rippled around the room appeared to abash": [65535, 0], "that rippled around the room appeared to abash the": [65535, 0], "rippled around the room appeared to abash the boy": [65535, 0], "around the room appeared to abash the boy but": [65535, 0], "the room appeared to abash the boy but in": [65535, 0], "room appeared to abash the boy but in reality": [65535, 0], "appeared to abash the boy but in reality that": [65535, 0], "to abash the boy but in reality that result": [65535, 0], "abash the boy but in reality that result was": [65535, 0], "the boy but in reality that result was caused": [65535, 0], "boy but in reality that result was caused rather": [65535, 0], "but in reality that result was caused rather more": [65535, 0], "in reality that result was caused rather more by": [65535, 0], "reality that result was caused rather more by his": [65535, 0], "that result was caused rather more by his worshipful": [65535, 0], "result was caused rather more by his worshipful awe": [65535, 0], "was caused rather more by his worshipful awe of": [65535, 0], "caused rather more by his worshipful awe of his": [65535, 0], "rather more by his worshipful awe of his unknown": [65535, 0], "more by his worshipful awe of his unknown idol": [65535, 0], "by his worshipful awe of his unknown idol and": [65535, 0], "his worshipful awe of his unknown idol and the": [65535, 0], "worshipful awe of his unknown idol and the dread": [65535, 0], "awe of his unknown idol and the dread pleasure": [65535, 0], "of his unknown idol and the dread pleasure that": [65535, 0], "his unknown idol and the dread pleasure that lay": [65535, 0], "unknown idol and the dread pleasure that lay in": [65535, 0], "idol and the dread pleasure that lay in his": [65535, 0], "and the dread pleasure that lay in his high": [65535, 0], "the dread pleasure that lay in his high good": [65535, 0], "dread pleasure that lay in his high good fortune": [65535, 0], "pleasure that lay in his high good fortune he": [65535, 0], "that lay in his high good fortune he sat": [65535, 0], "lay in his high good fortune he sat down": [65535, 0], "in his high good fortune he sat down upon": [65535, 0], "his high good fortune he sat down upon the": [65535, 0], "high good fortune he sat down upon the end": [65535, 0], "good fortune he sat down upon the end of": [65535, 0], "fortune he sat down upon the end of the": [65535, 0], "he sat down upon the end of the pine": [65535, 0], "sat down upon the end of the pine bench": [65535, 0], "down upon the end of the pine bench and": [65535, 0], "upon the end of the pine bench and the": [65535, 0], "the end of the pine bench and the girl": [65535, 0], "end of the pine bench and the girl hitched": [65535, 0], "of the pine bench and the girl hitched herself": [65535, 0], "the pine bench and the girl hitched herself away": [65535, 0], "pine bench and the girl hitched herself away from": [65535, 0], "bench and the girl hitched herself away from him": [65535, 0], "and the girl hitched herself away from him with": [65535, 0], "the girl hitched herself away from him with a": [65535, 0], "girl hitched herself away from him with a toss": [65535, 0], "hitched herself away from him with a toss of": [65535, 0], "herself away from him with a toss of her": [65535, 0], "away from him with a toss of her head": [65535, 0], "from him with a toss of her head nudges": [65535, 0], "him with a toss of her head nudges and": [65535, 0], "with a toss of her head nudges and winks": [65535, 0], "a toss of her head nudges and winks and": [65535, 0], "toss of her head nudges and winks and whispers": [65535, 0], "of her head nudges and winks and whispers traversed": [65535, 0], "her head nudges and winks and whispers traversed the": [65535, 0], "head nudges and winks and whispers traversed the room": [65535, 0], "nudges and winks and whispers traversed the room but": [65535, 0], "and winks and whispers traversed the room but tom": [65535, 0], "winks and whispers traversed the room but tom sat": [65535, 0], "and whispers traversed the room but tom sat still": [65535, 0], "whispers traversed the room but tom sat still with": [65535, 0], "traversed the room but tom sat still with his": [65535, 0], "the room but tom sat still with his arms": [65535, 0], "room but tom sat still with his arms upon": [65535, 0], "but tom sat still with his arms upon the": [65535, 0], "tom sat still with his arms upon the long": [65535, 0], "sat still with his arms upon the long low": [65535, 0], "still with his arms upon the long low desk": [65535, 0], "with his arms upon the long low desk before": [65535, 0], "his arms upon the long low desk before him": [65535, 0], "arms upon the long low desk before him and": [65535, 0], "upon the long low desk before him and seemed": [65535, 0], "the long low desk before him and seemed to": [65535, 0], "long low desk before him and seemed to study": [65535, 0], "low desk before him and seemed to study his": [65535, 0], "desk before him and seemed to study his book": [65535, 0], "before him and seemed to study his book by": [65535, 0], "him and seemed to study his book by and": [65535, 0], "and seemed to study his book by and by": [65535, 0], "seemed to study his book by and by attention": [65535, 0], "to study his book by and by attention ceased": [65535, 0], "study his book by and by attention ceased from": [65535, 0], "his book by and by attention ceased from him": [65535, 0], "book by and by attention ceased from him and": [65535, 0], "by and by attention ceased from him and the": [65535, 0], "and by attention ceased from him and the accustomed": [65535, 0], "by attention ceased from him and the accustomed school": [65535, 0], "attention ceased from him and the accustomed school murmur": [65535, 0], "ceased from him and the accustomed school murmur rose": [65535, 0], "from him and the accustomed school murmur rose upon": [65535, 0], "him and the accustomed school murmur rose upon the": [65535, 0], "and the accustomed school murmur rose upon the dull": [65535, 0], "the accustomed school murmur rose upon the dull air": [65535, 0], "accustomed school murmur rose upon the dull air once": [65535, 0], "school murmur rose upon the dull air once more": [65535, 0], "murmur rose upon the dull air once more presently": [65535, 0], "rose upon the dull air once more presently the": [65535, 0], "upon the dull air once more presently the boy": [65535, 0], "the dull air once more presently the boy began": [65535, 0], "dull air once more presently the boy began to": [65535, 0], "air once more presently the boy began to steal": [65535, 0], "once more presently the boy began to steal furtive": [65535, 0], "more presently the boy began to steal furtive glances": [65535, 0], "presently the boy began to steal furtive glances at": [65535, 0], "the boy began to steal furtive glances at the": [65535, 0], "boy began to steal furtive glances at the girl": [65535, 0], "began to steal furtive glances at the girl she": [65535, 0], "to steal furtive glances at the girl she observed": [65535, 0], "steal furtive glances at the girl she observed it": [65535, 0], "furtive glances at the girl she observed it made": [65535, 0], "glances at the girl she observed it made a": [65535, 0], "at the girl she observed it made a mouth": [65535, 0], "the girl she observed it made a mouth at": [65535, 0], "girl she observed it made a mouth at him": [65535, 0], "she observed it made a mouth at him and": [65535, 0], "observed it made a mouth at him and gave": [65535, 0], "it made a mouth at him and gave him": [65535, 0], "made a mouth at him and gave him the": [65535, 0], "a mouth at him and gave him the back": [65535, 0], "mouth at him and gave him the back of": [65535, 0], "at him and gave him the back of her": [65535, 0], "him and gave him the back of her head": [65535, 0], "and gave him the back of her head for": [65535, 0], "gave him the back of her head for the": [65535, 0], "him the back of her head for the space": [65535, 0], "the back of her head for the space of": [65535, 0], "back of her head for the space of a": [65535, 0], "of her head for the space of a minute": [65535, 0], "her head for the space of a minute when": [65535, 0], "head for the space of a minute when she": [65535, 0], "for the space of a minute when she cautiously": [65535, 0], "the space of a minute when she cautiously faced": [65535, 0], "space of a minute when she cautiously faced around": [65535, 0], "of a minute when she cautiously faced around again": [65535, 0], "a minute when she cautiously faced around again a": [65535, 0], "minute when she cautiously faced around again a peach": [65535, 0], "when she cautiously faced around again a peach lay": [65535, 0], "she cautiously faced around again a peach lay before": [65535, 0], "cautiously faced around again a peach lay before her": [65535, 0], "faced around again a peach lay before her she": [65535, 0], "around again a peach lay before her she thrust": [65535, 0], "again a peach lay before her she thrust it": [65535, 0], "a peach lay before her she thrust it away": [65535, 0], "peach lay before her she thrust it away tom": [65535, 0], "lay before her she thrust it away tom gently": [65535, 0], "before her she thrust it away tom gently put": [65535, 0], "her she thrust it away tom gently put it": [65535, 0], "she thrust it away tom gently put it back": [65535, 0], "thrust it away tom gently put it back she": [65535, 0], "it away tom gently put it back she thrust": [65535, 0], "away tom gently put it back she thrust it": [65535, 0], "tom gently put it back she thrust it away": [65535, 0], "gently put it back she thrust it away again": [65535, 0], "put it back she thrust it away again but": [65535, 0], "it back she thrust it away again but with": [65535, 0], "back she thrust it away again but with less": [65535, 0], "she thrust it away again but with less animosity": [65535, 0], "thrust it away again but with less animosity tom": [65535, 0], "it away again but with less animosity tom patiently": [65535, 0], "away again but with less animosity tom patiently returned": [65535, 0], "again but with less animosity tom patiently returned it": [65535, 0], "but with less animosity tom patiently returned it to": [65535, 0], "with less animosity tom patiently returned it to its": [65535, 0], "less animosity tom patiently returned it to its place": [65535, 0], "animosity tom patiently returned it to its place then": [65535, 0], "tom patiently returned it to its place then she": [65535, 0], "patiently returned it to its place then she let": [65535, 0], "returned it to its place then she let it": [65535, 0], "it to its place then she let it remain": [65535, 0], "to its place then she let it remain tom": [65535, 0], "its place then she let it remain tom scrawled": [65535, 0], "place then she let it remain tom scrawled on": [65535, 0], "then she let it remain tom scrawled on his": [65535, 0], "she let it remain tom scrawled on his slate": [65535, 0], "let it remain tom scrawled on his slate please": [65535, 0], "it remain tom scrawled on his slate please take": [65535, 0], "remain tom scrawled on his slate please take it": [65535, 0], "tom scrawled on his slate please take it i": [65535, 0], "scrawled on his slate please take it i got": [65535, 0], "on his slate please take it i got more": [65535, 0], "his slate please take it i got more the": [65535, 0], "slate please take it i got more the girl": [65535, 0], "please take it i got more the girl glanced": [65535, 0], "take it i got more the girl glanced at": [65535, 0], "it i got more the girl glanced at the": [65535, 0], "i got more the girl glanced at the words": [65535, 0], "got more the girl glanced at the words but": [65535, 0], "more the girl glanced at the words but made": [65535, 0], "the girl glanced at the words but made no": [65535, 0], "girl glanced at the words but made no sign": [65535, 0], "glanced at the words but made no sign now": [65535, 0], "at the words but made no sign now the": [65535, 0], "the words but made no sign now the boy": [65535, 0], "words but made no sign now the boy began": [65535, 0], "but made no sign now the boy began to": [65535, 0], "made no sign now the boy began to draw": [65535, 0], "no sign now the boy began to draw something": [65535, 0], "sign now the boy began to draw something on": [65535, 0], "now the boy began to draw something on the": [65535, 0], "the boy began to draw something on the slate": [65535, 0], "boy began to draw something on the slate hiding": [65535, 0], "began to draw something on the slate hiding his": [65535, 0], "to draw something on the slate hiding his work": [65535, 0], "draw something on the slate hiding his work with": [65535, 0], "something on the slate hiding his work with his": [65535, 0], "on the slate hiding his work with his left": [65535, 0], "the slate hiding his work with his left hand": [65535, 0], "slate hiding his work with his left hand for": [65535, 0], "hiding his work with his left hand for a": [65535, 0], "his work with his left hand for a time": [65535, 0], "work with his left hand for a time the": [65535, 0], "with his left hand for a time the girl": [65535, 0], "his left hand for a time the girl refused": [65535, 0], "left hand for a time the girl refused to": [65535, 0], "hand for a time the girl refused to notice": [65535, 0], "for a time the girl refused to notice but": [65535, 0], "a time the girl refused to notice but her": [65535, 0], "time the girl refused to notice but her human": [65535, 0], "the girl refused to notice but her human curiosity": [65535, 0], "girl refused to notice but her human curiosity presently": [65535, 0], "refused to notice but her human curiosity presently began": [65535, 0], "to notice but her human curiosity presently began to": [65535, 0], "notice but her human curiosity presently began to manifest": [65535, 0], "but her human curiosity presently began to manifest itself": [65535, 0], "her human curiosity presently began to manifest itself by": [65535, 0], "human curiosity presently began to manifest itself by hardly": [65535, 0], "curiosity presently began to manifest itself by hardly perceptible": [65535, 0], "presently began to manifest itself by hardly perceptible signs": [65535, 0], "began to manifest itself by hardly perceptible signs the": [65535, 0], "to manifest itself by hardly perceptible signs the boy": [65535, 0], "manifest itself by hardly perceptible signs the boy worked": [65535, 0], "itself by hardly perceptible signs the boy worked on": [65535, 0], "by hardly perceptible signs the boy worked on apparently": [65535, 0], "hardly perceptible signs the boy worked on apparently unconscious": [65535, 0], "perceptible signs the boy worked on apparently unconscious the": [65535, 0], "signs the boy worked on apparently unconscious the girl": [65535, 0], "the boy worked on apparently unconscious the girl made": [65535, 0], "boy worked on apparently unconscious the girl made a": [65535, 0], "worked on apparently unconscious the girl made a sort": [65535, 0], "on apparently unconscious the girl made a sort of": [65535, 0], "apparently unconscious the girl made a sort of noncommittal": [65535, 0], "unconscious the girl made a sort of noncommittal attempt": [65535, 0], "the girl made a sort of noncommittal attempt to": [65535, 0], "girl made a sort of noncommittal attempt to see": [65535, 0], "made a sort of noncommittal attempt to see but": [65535, 0], "a sort of noncommittal attempt to see but the": [65535, 0], "sort of noncommittal attempt to see but the boy": [65535, 0], "of noncommittal attempt to see but the boy did": [65535, 0], "noncommittal attempt to see but the boy did not": [65535, 0], "attempt to see but the boy did not betray": [65535, 0], "to see but the boy did not betray that": [65535, 0], "see but the boy did not betray that he": [65535, 0], "but the boy did not betray that he was": [65535, 0], "the boy did not betray that he was aware": [65535, 0], "boy did not betray that he was aware of": [65535, 0], "did not betray that he was aware of it": [65535, 0], "not betray that he was aware of it at": [65535, 0], "betray that he was aware of it at last": [65535, 0], "that he was aware of it at last she": [65535, 0], "he was aware of it at last she gave": [65535, 0], "was aware of it at last she gave in": [65535, 0], "aware of it at last she gave in and": [65535, 0], "of it at last she gave in and hesitatingly": [65535, 0], "it at last she gave in and hesitatingly whispered": [65535, 0], "at last she gave in and hesitatingly whispered let": [65535, 0], "last she gave in and hesitatingly whispered let me": [65535, 0], "she gave in and hesitatingly whispered let me see": [65535, 0], "gave in and hesitatingly whispered let me see it": [65535, 0], "in and hesitatingly whispered let me see it tom": [65535, 0], "and hesitatingly whispered let me see it tom partly": [65535, 0], "hesitatingly whispered let me see it tom partly uncovered": [65535, 0], "whispered let me see it tom partly uncovered a": [65535, 0], "let me see it tom partly uncovered a dismal": [65535, 0], "me see it tom partly uncovered a dismal caricature": [65535, 0], "see it tom partly uncovered a dismal caricature of": [65535, 0], "it tom partly uncovered a dismal caricature of a": [65535, 0], "tom partly uncovered a dismal caricature of a house": [65535, 0], "partly uncovered a dismal caricature of a house with": [65535, 0], "uncovered a dismal caricature of a house with two": [65535, 0], "a dismal caricature of a house with two gable": [65535, 0], "dismal caricature of a house with two gable ends": [65535, 0], "caricature of a house with two gable ends to": [65535, 0], "of a house with two gable ends to it": [65535, 0], "a house with two gable ends to it and": [65535, 0], "house with two gable ends to it and a": [65535, 0], "with two gable ends to it and a corkscrew": [65535, 0], "two gable ends to it and a corkscrew of": [65535, 0], "gable ends to it and a corkscrew of smoke": [65535, 0], "ends to it and a corkscrew of smoke issuing": [65535, 0], "to it and a corkscrew of smoke issuing from": [65535, 0], "it and a corkscrew of smoke issuing from the": [65535, 0], "and a corkscrew of smoke issuing from the chimney": [65535, 0], "a corkscrew of smoke issuing from the chimney then": [65535, 0], "corkscrew of smoke issuing from the chimney then the": [65535, 0], "of smoke issuing from the chimney then the girl's": [65535, 0], "smoke issuing from the chimney then the girl's interest": [65535, 0], "issuing from the chimney then the girl's interest began": [65535, 0], "from the chimney then the girl's interest began to": [65535, 0], "the chimney then the girl's interest began to fasten": [65535, 0], "chimney then the girl's interest began to fasten itself": [65535, 0], "then the girl's interest began to fasten itself upon": [65535, 0], "the girl's interest began to fasten itself upon the": [65535, 0], "girl's interest began to fasten itself upon the work": [65535, 0], "interest began to fasten itself upon the work and": [65535, 0], "began to fasten itself upon the work and she": [65535, 0], "to fasten itself upon the work and she forgot": [65535, 0], "fasten itself upon the work and she forgot everything": [65535, 0], "itself upon the work and she forgot everything else": [65535, 0], "upon the work and she forgot everything else when": [65535, 0], "the work and she forgot everything else when it": [65535, 0], "work and she forgot everything else when it was": [65535, 0], "and she forgot everything else when it was finished": [65535, 0], "she forgot everything else when it was finished she": [65535, 0], "forgot everything else when it was finished she gazed": [65535, 0], "everything else when it was finished she gazed a": [65535, 0], "else when it was finished she gazed a moment": [65535, 0], "when it was finished she gazed a moment then": [65535, 0], "it was finished she gazed a moment then whispered": [65535, 0], "was finished she gazed a moment then whispered it's": [65535, 0], "finished she gazed a moment then whispered it's nice": [65535, 0], "she gazed a moment then whispered it's nice make": [65535, 0], "gazed a moment then whispered it's nice make a": [65535, 0], "a moment then whispered it's nice make a man": [65535, 0], "moment then whispered it's nice make a man the": [65535, 0], "then whispered it's nice make a man the artist": [65535, 0], "whispered it's nice make a man the artist erected": [65535, 0], "it's nice make a man the artist erected a": [65535, 0], "nice make a man the artist erected a man": [65535, 0], "make a man the artist erected a man in": [65535, 0], "a man the artist erected a man in the": [65535, 0], "man the artist erected a man in the front": [65535, 0], "the artist erected a man in the front yard": [65535, 0], "artist erected a man in the front yard that": [65535, 0], "erected a man in the front yard that resembled": [65535, 0], "a man in the front yard that resembled a": [65535, 0], "man in the front yard that resembled a derrick": [65535, 0], "in the front yard that resembled a derrick he": [65535, 0], "the front yard that resembled a derrick he could": [65535, 0], "front yard that resembled a derrick he could have": [65535, 0], "yard that resembled a derrick he could have stepped": [65535, 0], "that resembled a derrick he could have stepped over": [65535, 0], "resembled a derrick he could have stepped over the": [65535, 0], "a derrick he could have stepped over the house": [65535, 0], "derrick he could have stepped over the house but": [65535, 0], "he could have stepped over the house but the": [65535, 0], "could have stepped over the house but the girl": [65535, 0], "have stepped over the house but the girl was": [65535, 0], "stepped over the house but the girl was not": [65535, 0], "over the house but the girl was not hypercritical": [65535, 0], "the house but the girl was not hypercritical she": [65535, 0], "house but the girl was not hypercritical she was": [65535, 0], "but the girl was not hypercritical she was satisfied": [65535, 0], "the girl was not hypercritical she was satisfied with": [65535, 0], "girl was not hypercritical she was satisfied with the": [65535, 0], "was not hypercritical she was satisfied with the monster": [65535, 0], "not hypercritical she was satisfied with the monster and": [65535, 0], "hypercritical she was satisfied with the monster and whispered": [65535, 0], "she was satisfied with the monster and whispered it's": [65535, 0], "was satisfied with the monster and whispered it's a": [65535, 0], "satisfied with the monster and whispered it's a beautiful": [65535, 0], "with the monster and whispered it's a beautiful man": [65535, 0], "the monster and whispered it's a beautiful man now": [65535, 0], "monster and whispered it's a beautiful man now make": [65535, 0], "and whispered it's a beautiful man now make me": [65535, 0], "whispered it's a beautiful man now make me coming": [65535, 0], "it's a beautiful man now make me coming along": [65535, 0], "a beautiful man now make me coming along tom": [65535, 0], "beautiful man now make me coming along tom drew": [65535, 0], "man now make me coming along tom drew an": [65535, 0], "now make me coming along tom drew an hour": [65535, 0], "make me coming along tom drew an hour glass": [65535, 0], "me coming along tom drew an hour glass with": [65535, 0], "coming along tom drew an hour glass with a": [65535, 0], "along tom drew an hour glass with a full": [65535, 0], "tom drew an hour glass with a full moon": [65535, 0], "drew an hour glass with a full moon and": [65535, 0], "an hour glass with a full moon and straw": [65535, 0], "hour glass with a full moon and straw limbs": [65535, 0], "glass with a full moon and straw limbs to": [65535, 0], "with a full moon and straw limbs to it": [65535, 0], "a full moon and straw limbs to it and": [65535, 0], "full moon and straw limbs to it and armed": [65535, 0], "moon and straw limbs to it and armed the": [65535, 0], "and straw limbs to it and armed the spreading": [65535, 0], "straw limbs to it and armed the spreading fingers": [65535, 0], "limbs to it and armed the spreading fingers with": [65535, 0], "to it and armed the spreading fingers with a": [65535, 0], "it and armed the spreading fingers with a portentous": [65535, 0], "and armed the spreading fingers with a portentous fan": [65535, 0], "armed the spreading fingers with a portentous fan the": [65535, 0], "the spreading fingers with a portentous fan the girl": [65535, 0], "spreading fingers with a portentous fan the girl said": [65535, 0], "fingers with a portentous fan the girl said it's": [65535, 0], "with a portentous fan the girl said it's ever": [65535, 0], "a portentous fan the girl said it's ever so": [65535, 0], "portentous fan the girl said it's ever so nice": [65535, 0], "fan the girl said it's ever so nice i": [65535, 0], "the girl said it's ever so nice i wish": [65535, 0], "girl said it's ever so nice i wish i": [65535, 0], "said it's ever so nice i wish i could": [65535, 0], "it's ever so nice i wish i could draw": [65535, 0], "ever so nice i wish i could draw it's": [65535, 0], "so nice i wish i could draw it's easy": [65535, 0], "nice i wish i could draw it's easy whispered": [65535, 0], "i wish i could draw it's easy whispered tom": [65535, 0], "wish i could draw it's easy whispered tom i'll": [65535, 0], "i could draw it's easy whispered tom i'll learn": [65535, 0], "could draw it's easy whispered tom i'll learn you": [65535, 0], "draw it's easy whispered tom i'll learn you oh": [65535, 0], "it's easy whispered tom i'll learn you oh will": [65535, 0], "easy whispered tom i'll learn you oh will you": [65535, 0], "whispered tom i'll learn you oh will you when": [65535, 0], "tom i'll learn you oh will you when at": [65535, 0], "i'll learn you oh will you when at noon": [65535, 0], "learn you oh will you when at noon do": [65535, 0], "you oh will you when at noon do you": [65535, 0], "oh will you when at noon do you go": [65535, 0], "will you when at noon do you go home": [65535, 0], "you when at noon do you go home to": [65535, 0], "when at noon do you go home to dinner": [65535, 0], "at noon do you go home to dinner i'll": [65535, 0], "noon do you go home to dinner i'll stay": [65535, 0], "do you go home to dinner i'll stay if": [65535, 0], "you go home to dinner i'll stay if you": [65535, 0], "go home to dinner i'll stay if you will": [65535, 0], "home to dinner i'll stay if you will good": [65535, 0], "to dinner i'll stay if you will good that's": [65535, 0], "dinner i'll stay if you will good that's a": [65535, 0], "i'll stay if you will good that's a whack": [65535, 0], "stay if you will good that's a whack what's": [65535, 0], "if you will good that's a whack what's your": [65535, 0], "you will good that's a whack what's your name": [65535, 0], "will good that's a whack what's your name becky": [65535, 0], "good that's a whack what's your name becky thatcher": [65535, 0], "that's a whack what's your name becky thatcher what's": [65535, 0], "a whack what's your name becky thatcher what's yours": [65535, 0], "whack what's your name becky thatcher what's yours oh": [65535, 0], "what's your name becky thatcher what's yours oh i": [65535, 0], "your name becky thatcher what's yours oh i know": [65535, 0], "name becky thatcher what's yours oh i know it's": [65535, 0], "becky thatcher what's yours oh i know it's thomas": [65535, 0], "thatcher what's yours oh i know it's thomas sawyer": [65535, 0], "what's yours oh i know it's thomas sawyer that's": [65535, 0], "yours oh i know it's thomas sawyer that's the": [65535, 0], "oh i know it's thomas sawyer that's the name": [65535, 0], "i know it's thomas sawyer that's the name they": [65535, 0], "know it's thomas sawyer that's the name they lick": [65535, 0], "it's thomas sawyer that's the name they lick me": [65535, 0], "thomas sawyer that's the name they lick me by": [65535, 0], "sawyer that's the name they lick me by i'm": [65535, 0], "that's the name they lick me by i'm tom": [65535, 0], "the name they lick me by i'm tom when": [65535, 0], "name they lick me by i'm tom when i'm": [65535, 0], "they lick me by i'm tom when i'm good": [65535, 0], "lick me by i'm tom when i'm good you": [65535, 0], "me by i'm tom when i'm good you call": [65535, 0], "by i'm tom when i'm good you call me": [65535, 0], "i'm tom when i'm good you call me tom": [65535, 0], "tom when i'm good you call me tom will": [65535, 0], "when i'm good you call me tom will you": [65535, 0], "i'm good you call me tom will you yes": [65535, 0], "good you call me tom will you yes now": [65535, 0], "you call me tom will you yes now tom": [65535, 0], "call me tom will you yes now tom began": [65535, 0], "me tom will you yes now tom began to": [65535, 0], "tom will you yes now tom began to scrawl": [65535, 0], "will you yes now tom began to scrawl something": [65535, 0], "you yes now tom began to scrawl something on": [65535, 0], "yes now tom began to scrawl something on the": [65535, 0], "now tom began to scrawl something on the slate": [65535, 0], "tom began to scrawl something on the slate hiding": [65535, 0], "began to scrawl something on the slate hiding the": [65535, 0], "to scrawl something on the slate hiding the words": [65535, 0], "scrawl something on the slate hiding the words from": [65535, 0], "something on the slate hiding the words from the": [65535, 0], "on the slate hiding the words from the girl": [65535, 0], "the slate hiding the words from the girl but": [65535, 0], "slate hiding the words from the girl but she": [65535, 0], "hiding the words from the girl but she was": [65535, 0], "the words from the girl but she was not": [65535, 0], "words from the girl but she was not backward": [65535, 0], "from the girl but she was not backward this": [65535, 0], "the girl but she was not backward this time": [65535, 0], "girl but she was not backward this time she": [65535, 0], "but she was not backward this time she begged": [65535, 0], "she was not backward this time she begged to": [65535, 0], "was not backward this time she begged to see": [65535, 0], "not backward this time she begged to see tom": [65535, 0], "backward this time she begged to see tom said": [65535, 0], "this time she begged to see tom said oh": [65535, 0], "time she begged to see tom said oh it": [65535, 0], "she begged to see tom said oh it ain't": [65535, 0], "begged to see tom said oh it ain't anything": [65535, 0], "to see tom said oh it ain't anything yes": [65535, 0], "see tom said oh it ain't anything yes it": [65535, 0], "tom said oh it ain't anything yes it is": [65535, 0], "said oh it ain't anything yes it is no": [65535, 0], "oh it ain't anything yes it is no it": [65535, 0], "it ain't anything yes it is no it ain't": [65535, 0], "ain't anything yes it is no it ain't you": [65535, 0], "anything yes it is no it ain't you don't": [65535, 0], "yes it is no it ain't you don't want": [65535, 0], "it is no it ain't you don't want to": [65535, 0], "is no it ain't you don't want to see": [65535, 0], "no it ain't you don't want to see yes": [65535, 0], "it ain't you don't want to see yes i": [65535, 0], "ain't you don't want to see yes i do": [65535, 0], "you don't want to see yes i do indeed": [65535, 0], "don't want to see yes i do indeed i": [65535, 0], "want to see yes i do indeed i do": [65535, 0], "to see yes i do indeed i do please": [65535, 0], "see yes i do indeed i do please let": [65535, 0], "yes i do indeed i do please let me": [65535, 0], "i do indeed i do please let me you'll": [65535, 0], "do indeed i do please let me you'll tell": [65535, 0], "indeed i do please let me you'll tell no": [65535, 0], "i do please let me you'll tell no i": [65535, 0], "do please let me you'll tell no i won't": [65535, 0], "please let me you'll tell no i won't deed": [65535, 0], "let me you'll tell no i won't deed and": [65535, 0], "me you'll tell no i won't deed and deed": [65535, 0], "you'll tell no i won't deed and deed and": [65535, 0], "tell no i won't deed and deed and double": [65535, 0], "no i won't deed and deed and double deed": [65535, 0], "i won't deed and deed and double deed won't": [65535, 0], "won't deed and deed and double deed won't you": [65535, 0], "deed and deed and double deed won't you won't": [65535, 0], "and deed and double deed won't you won't tell": [65535, 0], "deed and double deed won't you won't tell anybody": [65535, 0], "and double deed won't you won't tell anybody at": [65535, 0], "double deed won't you won't tell anybody at all": [65535, 0], "deed won't you won't tell anybody at all ever": [65535, 0], "won't you won't tell anybody at all ever as": [65535, 0], "you won't tell anybody at all ever as long": [65535, 0], "won't tell anybody at all ever as long as": [65535, 0], "tell anybody at all ever as long as you": [65535, 0], "anybody at all ever as long as you live": [65535, 0], "at all ever as long as you live no": [65535, 0], "all ever as long as you live no i": [65535, 0], "ever as long as you live no i won't": [65535, 0], "as long as you live no i won't ever": [65535, 0], "long as you live no i won't ever tell": [65535, 0], "as you live no i won't ever tell anybody": [65535, 0], "you live no i won't ever tell anybody now": [65535, 0], "live no i won't ever tell anybody now let": [65535, 0], "no i won't ever tell anybody now let me": [65535, 0], "i won't ever tell anybody now let me oh": [65535, 0], "won't ever tell anybody now let me oh you": [65535, 0], "ever tell anybody now let me oh you don't": [65535, 0], "tell anybody now let me oh you don't want": [65535, 0], "anybody now let me oh you don't want to": [65535, 0], "now let me oh you don't want to see": [65535, 0], "let me oh you don't want to see now": [65535, 0], "me oh you don't want to see now that": [65535, 0], "oh you don't want to see now that you": [65535, 0], "you don't want to see now that you treat": [65535, 0], "don't want to see now that you treat me": [65535, 0], "want to see now that you treat me so": [65535, 0], "to see now that you treat me so i": [65535, 0], "see now that you treat me so i will": [65535, 0], "now that you treat me so i will see": [65535, 0], "that you treat me so i will see and": [65535, 0], "you treat me so i will see and she": [65535, 0], "treat me so i will see and she put": [65535, 0], "me so i will see and she put her": [65535, 0], "so i will see and she put her small": [65535, 0], "i will see and she put her small hand": [65535, 0], "will see and she put her small hand upon": [65535, 0], "see and she put her small hand upon his": [65535, 0], "and she put her small hand upon his and": [65535, 0], "she put her small hand upon his and a": [65535, 0], "put her small hand upon his and a little": [65535, 0], "her small hand upon his and a little scuffle": [65535, 0], "small hand upon his and a little scuffle ensued": [65535, 0], "hand upon his and a little scuffle ensued tom": [65535, 0], "upon his and a little scuffle ensued tom pretending": [65535, 0], "his and a little scuffle ensued tom pretending to": [65535, 0], "and a little scuffle ensued tom pretending to resist": [65535, 0], "a little scuffle ensued tom pretending to resist in": [65535, 0], "little scuffle ensued tom pretending to resist in earnest": [65535, 0], "scuffle ensued tom pretending to resist in earnest but": [65535, 0], "ensued tom pretending to resist in earnest but letting": [65535, 0], "tom pretending to resist in earnest but letting his": [65535, 0], "pretending to resist in earnest but letting his hand": [65535, 0], "to resist in earnest but letting his hand slip": [65535, 0], "resist in earnest but letting his hand slip by": [65535, 0], "in earnest but letting his hand slip by degrees": [65535, 0], "earnest but letting his hand slip by degrees till": [65535, 0], "but letting his hand slip by degrees till these": [65535, 0], "letting his hand slip by degrees till these words": [65535, 0], "his hand slip by degrees till these words were": [65535, 0], "hand slip by degrees till these words were revealed": [65535, 0], "slip by degrees till these words were revealed i": [65535, 0], "by degrees till these words were revealed i love": [65535, 0], "degrees till these words were revealed i love you": [65535, 0], "till these words were revealed i love you oh": [65535, 0], "these words were revealed i love you oh you": [65535, 0], "words were revealed i love you oh you bad": [65535, 0], "were revealed i love you oh you bad thing": [65535, 0], "revealed i love you oh you bad thing and": [65535, 0], "i love you oh you bad thing and she": [65535, 0], "love you oh you bad thing and she hit": [65535, 0], "you oh you bad thing and she hit his": [65535, 0], "oh you bad thing and she hit his hand": [65535, 0], "you bad thing and she hit his hand a": [65535, 0], "bad thing and she hit his hand a smart": [65535, 0], "thing and she hit his hand a smart rap": [65535, 0], "and she hit his hand a smart rap but": [65535, 0], "she hit his hand a smart rap but reddened": [65535, 0], "hit his hand a smart rap but reddened and": [65535, 0], "his hand a smart rap but reddened and looked": [65535, 0], "hand a smart rap but reddened and looked pleased": [65535, 0], "a smart rap but reddened and looked pleased nevertheless": [65535, 0], "smart rap but reddened and looked pleased nevertheless just": [65535, 0], "rap but reddened and looked pleased nevertheless just at": [65535, 0], "but reddened and looked pleased nevertheless just at this": [65535, 0], "reddened and looked pleased nevertheless just at this juncture": [65535, 0], "and looked pleased nevertheless just at this juncture the": [65535, 0], "looked pleased nevertheless just at this juncture the boy": [65535, 0], "pleased nevertheless just at this juncture the boy felt": [65535, 0], "nevertheless just at this juncture the boy felt a": [65535, 0], "just at this juncture the boy felt a slow": [65535, 0], "at this juncture the boy felt a slow fateful": [65535, 0], "this juncture the boy felt a slow fateful grip": [65535, 0], "juncture the boy felt a slow fateful grip closing": [65535, 0], "the boy felt a slow fateful grip closing on": [65535, 0], "boy felt a slow fateful grip closing on his": [65535, 0], "felt a slow fateful grip closing on his ear": [65535, 0], "a slow fateful grip closing on his ear and": [65535, 0], "slow fateful grip closing on his ear and a": [65535, 0], "fateful grip closing on his ear and a steady": [65535, 0], "grip closing on his ear and a steady lifting": [65535, 0], "closing on his ear and a steady lifting impulse": [65535, 0], "on his ear and a steady lifting impulse in": [65535, 0], "his ear and a steady lifting impulse in that": [65535, 0], "ear and a steady lifting impulse in that vise": [65535, 0], "and a steady lifting impulse in that vise he": [65535, 0], "a steady lifting impulse in that vise he was": [65535, 0], "steady lifting impulse in that vise he was borne": [65535, 0], "lifting impulse in that vise he was borne across": [65535, 0], "impulse in that vise he was borne across the": [65535, 0], "in that vise he was borne across the house": [65535, 0], "that vise he was borne across the house and": [65535, 0], "vise he was borne across the house and deposited": [65535, 0], "he was borne across the house and deposited in": [65535, 0], "was borne across the house and deposited in his": [65535, 0], "borne across the house and deposited in his own": [65535, 0], "across the house and deposited in his own seat": [65535, 0], "the house and deposited in his own seat under": [65535, 0], "house and deposited in his own seat under a": [65535, 0], "and deposited in his own seat under a peppering": [65535, 0], "deposited in his own seat under a peppering fire": [65535, 0], "in his own seat under a peppering fire of": [65535, 0], "his own seat under a peppering fire of giggles": [65535, 0], "own seat under a peppering fire of giggles from": [65535, 0], "seat under a peppering fire of giggles from the": [65535, 0], "under a peppering fire of giggles from the whole": [65535, 0], "a peppering fire of giggles from the whole school": [65535, 0], "peppering fire of giggles from the whole school then": [65535, 0], "fire of giggles from the whole school then the": [65535, 0], "of giggles from the whole school then the master": [65535, 0], "giggles from the whole school then the master stood": [65535, 0], "from the whole school then the master stood over": [65535, 0], "the whole school then the master stood over him": [65535, 0], "whole school then the master stood over him during": [65535, 0], "school then the master stood over him during a": [65535, 0], "then the master stood over him during a few": [65535, 0], "the master stood over him during a few awful": [65535, 0], "master stood over him during a few awful moments": [65535, 0], "stood over him during a few awful moments and": [65535, 0], "over him during a few awful moments and finally": [65535, 0], "him during a few awful moments and finally moved": [65535, 0], "during a few awful moments and finally moved away": [65535, 0], "a few awful moments and finally moved away to": [65535, 0], "few awful moments and finally moved away to his": [65535, 0], "awful moments and finally moved away to his throne": [65535, 0], "moments and finally moved away to his throne without": [65535, 0], "and finally moved away to his throne without saying": [65535, 0], "finally moved away to his throne without saying a": [65535, 0], "moved away to his throne without saying a word": [65535, 0], "away to his throne without saying a word but": [65535, 0], "to his throne without saying a word but although": [65535, 0], "his throne without saying a word but although tom's": [65535, 0], "throne without saying a word but although tom's ear": [65535, 0], "without saying a word but although tom's ear tingled": [65535, 0], "saying a word but although tom's ear tingled his": [65535, 0], "a word but although tom's ear tingled his heart": [65535, 0], "word but although tom's ear tingled his heart was": [65535, 0], "but although tom's ear tingled his heart was jubilant": [65535, 0], "although tom's ear tingled his heart was jubilant as": [65535, 0], "tom's ear tingled his heart was jubilant as the": [65535, 0], "ear tingled his heart was jubilant as the school": [65535, 0], "tingled his heart was jubilant as the school quieted": [65535, 0], "his heart was jubilant as the school quieted down": [65535, 0], "heart was jubilant as the school quieted down tom": [65535, 0], "was jubilant as the school quieted down tom made": [65535, 0], "jubilant as the school quieted down tom made an": [65535, 0], "as the school quieted down tom made an honest": [65535, 0], "the school quieted down tom made an honest effort": [65535, 0], "school quieted down tom made an honest effort to": [65535, 0], "quieted down tom made an honest effort to study": [65535, 0], "down tom made an honest effort to study but": [65535, 0], "tom made an honest effort to study but the": [65535, 0], "made an honest effort to study but the turmoil": [65535, 0], "an honest effort to study but the turmoil within": [65535, 0], "honest effort to study but the turmoil within him": [65535, 0], "effort to study but the turmoil within him was": [65535, 0], "to study but the turmoil within him was too": [65535, 0], "study but the turmoil within him was too great": [65535, 0], "but the turmoil within him was too great in": [65535, 0], "the turmoil within him was too great in turn": [65535, 0], "turmoil within him was too great in turn he": [65535, 0], "within him was too great in turn he took": [65535, 0], "him was too great in turn he took his": [65535, 0], "was too great in turn he took his place": [65535, 0], "too great in turn he took his place in": [65535, 0], "great in turn he took his place in the": [65535, 0], "in turn he took his place in the reading": [65535, 0], "turn he took his place in the reading class": [65535, 0], "he took his place in the reading class and": [65535, 0], "took his place in the reading class and made": [65535, 0], "his place in the reading class and made a": [65535, 0], "place in the reading class and made a botch": [65535, 0], "in the reading class and made a botch of": [65535, 0], "the reading class and made a botch of it": [65535, 0], "reading class and made a botch of it then": [65535, 0], "class and made a botch of it then in": [65535, 0], "and made a botch of it then in the": [65535, 0], "made a botch of it then in the geography": [65535, 0], "a botch of it then in the geography class": [65535, 0], "botch of it then in the geography class and": [65535, 0], "of it then in the geography class and turned": [65535, 0], "it then in the geography class and turned lakes": [65535, 0], "then in the geography class and turned lakes into": [65535, 0], "in the geography class and turned lakes into mountains": [65535, 0], "the geography class and turned lakes into mountains mountains": [65535, 0], "geography class and turned lakes into mountains mountains into": [65535, 0], "class and turned lakes into mountains mountains into rivers": [65535, 0], "and turned lakes into mountains mountains into rivers and": [65535, 0], "turned lakes into mountains mountains into rivers and rivers": [65535, 0], "lakes into mountains mountains into rivers and rivers into": [65535, 0], "into mountains mountains into rivers and rivers into continents": [65535, 0], "mountains mountains into rivers and rivers into continents till": [65535, 0], "mountains into rivers and rivers into continents till chaos": [65535, 0], "into rivers and rivers into continents till chaos was": [65535, 0], "rivers and rivers into continents till chaos was come": [65535, 0], "and rivers into continents till chaos was come again": [65535, 0], "rivers into continents till chaos was come again then": [65535, 0], "into continents till chaos was come again then in": [65535, 0], "continents till chaos was come again then in the": [65535, 0], "till chaos was come again then in the spelling": [65535, 0], "chaos was come again then in the spelling class": [65535, 0], "was come again then in the spelling class and": [65535, 0], "come again then in the spelling class and got": [65535, 0], "again then in the spelling class and got turned": [65535, 0], "then in the spelling class and got turned down": [65535, 0], "in the spelling class and got turned down by": [65535, 0], "the spelling class and got turned down by a": [65535, 0], "spelling class and got turned down by a succession": [65535, 0], "class and got turned down by a succession of": [65535, 0], "and got turned down by a succession of mere": [65535, 0], "got turned down by a succession of mere baby": [65535, 0], "turned down by a succession of mere baby words": [65535, 0], "down by a succession of mere baby words till": [65535, 0], "by a succession of mere baby words till he": [65535, 0], "a succession of mere baby words till he brought": [65535, 0], "succession of mere baby words till he brought up": [65535, 0], "of mere baby words till he brought up at": [65535, 0], "mere baby words till he brought up at the": [65535, 0], "baby words till he brought up at the foot": [65535, 0], "words till he brought up at the foot and": [65535, 0], "till he brought up at the foot and yielded": [65535, 0], "he brought up at the foot and yielded up": [65535, 0], "brought up at the foot and yielded up the": [65535, 0], "up at the foot and yielded up the pewter": [65535, 0], "at the foot and yielded up the pewter medal": [65535, 0], "the foot and yielded up the pewter medal which": [65535, 0], "foot and yielded up the pewter medal which he": [65535, 0], "and yielded up the pewter medal which he had": [65535, 0], "yielded up the pewter medal which he had worn": [65535, 0], "up the pewter medal which he had worn with": [65535, 0], "the pewter medal which he had worn with ostentation": [65535, 0], "pewter medal which he had worn with ostentation for": [65535, 0], "medal which he had worn with ostentation for months": [65535, 0], "monday morning found tom sawyer miserable monday morning always found": [65535, 0], "morning found tom sawyer miserable monday morning always found him": [65535, 0], "found tom sawyer miserable monday morning always found him so": [65535, 0], "tom sawyer miserable monday morning always found him so because": [65535, 0], "sawyer miserable monday morning always found him so because it": [65535, 0], "miserable monday morning always found him so because it began": [65535, 0], "monday morning always found him so because it began another": [65535, 0], "morning always found him so because it began another week's": [65535, 0], "always found him so because it began another week's slow": [65535, 0], "found him so because it began another week's slow suffering": [65535, 0], "him so because it began another week's slow suffering in": [65535, 0], "so because it began another week's slow suffering in school": [65535, 0], "because it began another week's slow suffering in school he": [65535, 0], "it began another week's slow suffering in school he generally": [65535, 0], "began another week's slow suffering in school he generally began": [65535, 0], "another week's slow suffering in school he generally began that": [65535, 0], "week's slow suffering in school he generally began that day": [65535, 0], "slow suffering in school he generally began that day with": [65535, 0], "suffering in school he generally began that day with wishing": [65535, 0], "in school he generally began that day with wishing he": [65535, 0], "school he generally began that day with wishing he had": [65535, 0], "he generally began that day with wishing he had had": [65535, 0], "generally began that day with wishing he had had no": [65535, 0], "began that day with wishing he had had no intervening": [65535, 0], "that day with wishing he had had no intervening holiday": [65535, 0], "day with wishing he had had no intervening holiday it": [65535, 0], "with wishing he had had no intervening holiday it made": [65535, 0], "wishing he had had no intervening holiday it made the": [65535, 0], "he had had no intervening holiday it made the going": [65535, 0], "had had no intervening holiday it made the going into": [65535, 0], "had no intervening holiday it made the going into captivity": [65535, 0], "no intervening holiday it made the going into captivity and": [65535, 0], "intervening holiday it made the going into captivity and fetters": [65535, 0], "holiday it made the going into captivity and fetters again": [65535, 0], "it made the going into captivity and fetters again so": [65535, 0], "made the going into captivity and fetters again so much": [65535, 0], "the going into captivity and fetters again so much more": [65535, 0], "going into captivity and fetters again so much more odious": [65535, 0], "into captivity and fetters again so much more odious tom": [65535, 0], "captivity and fetters again so much more odious tom lay": [65535, 0], "and fetters again so much more odious tom lay thinking": [65535, 0], "fetters again so much more odious tom lay thinking presently": [65535, 0], "again so much more odious tom lay thinking presently it": [65535, 0], "so much more odious tom lay thinking presently it occurred": [65535, 0], "much more odious tom lay thinking presently it occurred to": [65535, 0], "more odious tom lay thinking presently it occurred to him": [65535, 0], "odious tom lay thinking presently it occurred to him that": [65535, 0], "tom lay thinking presently it occurred to him that he": [65535, 0], "lay thinking presently it occurred to him that he wished": [65535, 0], "thinking presently it occurred to him that he wished he": [65535, 0], "presently it occurred to him that he wished he was": [65535, 0], "it occurred to him that he wished he was sick": [65535, 0], "occurred to him that he wished he was sick then": [65535, 0], "to him that he wished he was sick then he": [65535, 0], "him that he wished he was sick then he could": [65535, 0], "that he wished he was sick then he could stay": [65535, 0], "he wished he was sick then he could stay home": [65535, 0], "wished he was sick then he could stay home from": [65535, 0], "he was sick then he could stay home from school": [65535, 0], "was sick then he could stay home from school here": [65535, 0], "sick then he could stay home from school here was": [65535, 0], "then he could stay home from school here was a": [65535, 0], "he could stay home from school here was a vague": [65535, 0], "could stay home from school here was a vague possibility": [65535, 0], "stay home from school here was a vague possibility he": [65535, 0], "home from school here was a vague possibility he canvassed": [65535, 0], "from school here was a vague possibility he canvassed his": [65535, 0], "school here was a vague possibility he canvassed his system": [65535, 0], "here was a vague possibility he canvassed his system no": [65535, 0], "was a vague possibility he canvassed his system no ailment": [65535, 0], "a vague possibility he canvassed his system no ailment was": [65535, 0], "vague possibility he canvassed his system no ailment was found": [65535, 0], "possibility he canvassed his system no ailment was found and": [65535, 0], "he canvassed his system no ailment was found and he": [65535, 0], "canvassed his system no ailment was found and he investigated": [65535, 0], "his system no ailment was found and he investigated again": [65535, 0], "system no ailment was found and he investigated again this": [65535, 0], "no ailment was found and he investigated again this time": [65535, 0], "ailment was found and he investigated again this time he": [65535, 0], "was found and he investigated again this time he thought": [65535, 0], "found and he investigated again this time he thought he": [65535, 0], "and he investigated again this time he thought he could": [65535, 0], "he investigated again this time he thought he could detect": [65535, 0], "investigated again this time he thought he could detect colicky": [65535, 0], "again this time he thought he could detect colicky symptoms": [65535, 0], "this time he thought he could detect colicky symptoms and": [65535, 0], "time he thought he could detect colicky symptoms and he": [65535, 0], "he thought he could detect colicky symptoms and he began": [65535, 0], "thought he could detect colicky symptoms and he began to": [65535, 0], "he could detect colicky symptoms and he began to encourage": [65535, 0], "could detect colicky symptoms and he began to encourage them": [65535, 0], "detect colicky symptoms and he began to encourage them with": [65535, 0], "colicky symptoms and he began to encourage them with considerable": [65535, 0], "symptoms and he began to encourage them with considerable hope": [65535, 0], "and he began to encourage them with considerable hope but": [65535, 0], "he began to encourage them with considerable hope but they": [65535, 0], "began to encourage them with considerable hope but they soon": [65535, 0], "to encourage them with considerable hope but they soon grew": [65535, 0], "encourage them with considerable hope but they soon grew feeble": [65535, 0], "them with considerable hope but they soon grew feeble and": [65535, 0], "with considerable hope but they soon grew feeble and presently": [65535, 0], "considerable hope but they soon grew feeble and presently died": [65535, 0], "hope but they soon grew feeble and presently died wholly": [65535, 0], "but they soon grew feeble and presently died wholly away": [65535, 0], "they soon grew feeble and presently died wholly away he": [65535, 0], "soon grew feeble and presently died wholly away he reflected": [65535, 0], "grew feeble and presently died wholly away he reflected further": [65535, 0], "feeble and presently died wholly away he reflected further suddenly": [65535, 0], "and presently died wholly away he reflected further suddenly he": [65535, 0], "presently died wholly away he reflected further suddenly he discovered": [65535, 0], "died wholly away he reflected further suddenly he discovered something": [65535, 0], "wholly away he reflected further suddenly he discovered something one": [65535, 0], "away he reflected further suddenly he discovered something one of": [65535, 0], "he reflected further suddenly he discovered something one of his": [65535, 0], "reflected further suddenly he discovered something one of his upper": [65535, 0], "further suddenly he discovered something one of his upper front": [65535, 0], "suddenly he discovered something one of his upper front teeth": [65535, 0], "he discovered something one of his upper front teeth was": [65535, 0], "discovered something one of his upper front teeth was loose": [65535, 0], "something one of his upper front teeth was loose this": [65535, 0], "one of his upper front teeth was loose this was": [65535, 0], "of his upper front teeth was loose this was lucky": [65535, 0], "his upper front teeth was loose this was lucky he": [65535, 0], "upper front teeth was loose this was lucky he was": [65535, 0], "front teeth was loose this was lucky he was about": [65535, 0], "teeth was loose this was lucky he was about to": [65535, 0], "was loose this was lucky he was about to begin": [65535, 0], "loose this was lucky he was about to begin to": [65535, 0], "this was lucky he was about to begin to groan": [65535, 0], "was lucky he was about to begin to groan as": [65535, 0], "lucky he was about to begin to groan as a": [65535, 0], "he was about to begin to groan as a starter": [65535, 0], "was about to begin to groan as a starter as": [65535, 0], "about to begin to groan as a starter as he": [65535, 0], "to begin to groan as a starter as he called": [65535, 0], "begin to groan as a starter as he called it": [65535, 0], "to groan as a starter as he called it when": [65535, 0], "groan as a starter as he called it when it": [65535, 0], "as a starter as he called it when it occurred": [65535, 0], "a starter as he called it when it occurred to": [65535, 0], "starter as he called it when it occurred to him": [65535, 0], "as he called it when it occurred to him that": [65535, 0], "he called it when it occurred to him that if": [65535, 0], "called it when it occurred to him that if he": [65535, 0], "it when it occurred to him that if he came": [65535, 0], "when it occurred to him that if he came into": [65535, 0], "it occurred to him that if he came into court": [65535, 0], "occurred to him that if he came into court with": [65535, 0], "to him that if he came into court with that": [65535, 0], "him that if he came into court with that argument": [65535, 0], "that if he came into court with that argument his": [65535, 0], "if he came into court with that argument his aunt": [65535, 0], "he came into court with that argument his aunt would": [65535, 0], "came into court with that argument his aunt would pull": [65535, 0], "into court with that argument his aunt would pull it": [65535, 0], "court with that argument his aunt would pull it out": [65535, 0], "with that argument his aunt would pull it out and": [65535, 0], "that argument his aunt would pull it out and that": [65535, 0], "argument his aunt would pull it out and that would": [65535, 0], "his aunt would pull it out and that would hurt": [65535, 0], "aunt would pull it out and that would hurt so": [65535, 0], "would pull it out and that would hurt so he": [65535, 0], "pull it out and that would hurt so he thought": [65535, 0], "it out and that would hurt so he thought he": [65535, 0], "out and that would hurt so he thought he would": [65535, 0], "and that would hurt so he thought he would hold": [65535, 0], "that would hurt so he thought he would hold the": [65535, 0], "would hurt so he thought he would hold the tooth": [65535, 0], "hurt so he thought he would hold the tooth in": [65535, 0], "so he thought he would hold the tooth in reserve": [65535, 0], "he thought he would hold the tooth in reserve for": [65535, 0], "thought he would hold the tooth in reserve for the": [65535, 0], "he would hold the tooth in reserve for the present": [65535, 0], "would hold the tooth in reserve for the present and": [65535, 0], "hold the tooth in reserve for the present and seek": [65535, 0], "the tooth in reserve for the present and seek further": [65535, 0], "tooth in reserve for the present and seek further nothing": [65535, 0], "in reserve for the present and seek further nothing offered": [65535, 0], "reserve for the present and seek further nothing offered for": [65535, 0], "for the present and seek further nothing offered for some": [65535, 0], "the present and seek further nothing offered for some little": [65535, 0], "present and seek further nothing offered for some little time": [65535, 0], "and seek further nothing offered for some little time and": [65535, 0], "seek further nothing offered for some little time and then": [65535, 0], "further nothing offered for some little time and then he": [65535, 0], "nothing offered for some little time and then he remembered": [65535, 0], "offered for some little time and then he remembered hearing": [65535, 0], "for some little time and then he remembered hearing the": [65535, 0], "some little time and then he remembered hearing the doctor": [65535, 0], "little time and then he remembered hearing the doctor tell": [65535, 0], "time and then he remembered hearing the doctor tell about": [65535, 0], "and then he remembered hearing the doctor tell about a": [65535, 0], "then he remembered hearing the doctor tell about a certain": [65535, 0], "he remembered hearing the doctor tell about a certain thing": [65535, 0], "remembered hearing the doctor tell about a certain thing that": [65535, 0], "hearing the doctor tell about a certain thing that laid": [65535, 0], "the doctor tell about a certain thing that laid up": [65535, 0], "doctor tell about a certain thing that laid up a": [65535, 0], "tell about a certain thing that laid up a patient": [65535, 0], "about a certain thing that laid up a patient for": [65535, 0], "a certain thing that laid up a patient for two": [65535, 0], "certain thing that laid up a patient for two or": [65535, 0], "thing that laid up a patient for two or three": [65535, 0], "that laid up a patient for two or three weeks": [65535, 0], "laid up a patient for two or three weeks and": [65535, 0], "up a patient for two or three weeks and threatened": [65535, 0], "a patient for two or three weeks and threatened to": [65535, 0], "patient for two or three weeks and threatened to make": [65535, 0], "for two or three weeks and threatened to make him": [65535, 0], "two or three weeks and threatened to make him lose": [65535, 0], "or three weeks and threatened to make him lose a": [65535, 0], "three weeks and threatened to make him lose a finger": [65535, 0], "weeks and threatened to make him lose a finger so": [65535, 0], "and threatened to make him lose a finger so the": [65535, 0], "threatened to make him lose a finger so the boy": [65535, 0], "to make him lose a finger so the boy eagerly": [65535, 0], "make him lose a finger so the boy eagerly drew": [65535, 0], "him lose a finger so the boy eagerly drew his": [65535, 0], "lose a finger so the boy eagerly drew his sore": [65535, 0], "a finger so the boy eagerly drew his sore toe": [65535, 0], "finger so the boy eagerly drew his sore toe from": [65535, 0], "so the boy eagerly drew his sore toe from under": [65535, 0], "the boy eagerly drew his sore toe from under the": [65535, 0], "boy eagerly drew his sore toe from under the sheet": [65535, 0], "eagerly drew his sore toe from under the sheet and": [65535, 0], "drew his sore toe from under the sheet and held": [65535, 0], "his sore toe from under the sheet and held it": [65535, 0], "sore toe from under the sheet and held it up": [65535, 0], "toe from under the sheet and held it up for": [65535, 0], "from under the sheet and held it up for inspection": [65535, 0], "under the sheet and held it up for inspection but": [65535, 0], "the sheet and held it up for inspection but now": [65535, 0], "sheet and held it up for inspection but now he": [65535, 0], "and held it up for inspection but now he did": [65535, 0], "held it up for inspection but now he did not": [65535, 0], "it up for inspection but now he did not know": [65535, 0], "up for inspection but now he did not know the": [65535, 0], "for inspection but now he did not know the necessary": [65535, 0], "inspection but now he did not know the necessary symptoms": [65535, 0], "but now he did not know the necessary symptoms however": [65535, 0], "now he did not know the necessary symptoms however it": [65535, 0], "he did not know the necessary symptoms however it seemed": [65535, 0], "did not know the necessary symptoms however it seemed well": [65535, 0], "not know the necessary symptoms however it seemed well worth": [65535, 0], "know the necessary symptoms however it seemed well worth while": [65535, 0], "the necessary symptoms however it seemed well worth while to": [65535, 0], "necessary symptoms however it seemed well worth while to chance": [65535, 0], "symptoms however it seemed well worth while to chance it": [65535, 0], "however it seemed well worth while to chance it so": [65535, 0], "it seemed well worth while to chance it so he": [65535, 0], "seemed well worth while to chance it so he fell": [65535, 0], "well worth while to chance it so he fell to": [65535, 0], "worth while to chance it so he fell to groaning": [65535, 0], "while to chance it so he fell to groaning with": [65535, 0], "to chance it so he fell to groaning with considerable": [65535, 0], "chance it so he fell to groaning with considerable spirit": [65535, 0], "it so he fell to groaning with considerable spirit but": [65535, 0], "so he fell to groaning with considerable spirit but sid": [65535, 0], "he fell to groaning with considerable spirit but sid slept": [65535, 0], "fell to groaning with considerable spirit but sid slept on": [65535, 0], "to groaning with considerable spirit but sid slept on unconscious": [65535, 0], "groaning with considerable spirit but sid slept on unconscious tom": [65535, 0], "with considerable spirit but sid slept on unconscious tom groaned": [65535, 0], "considerable spirit but sid slept on unconscious tom groaned louder": [65535, 0], "spirit but sid slept on unconscious tom groaned louder and": [65535, 0], "but sid slept on unconscious tom groaned louder and fancied": [65535, 0], "sid slept on unconscious tom groaned louder and fancied that": [65535, 0], "slept on unconscious tom groaned louder and fancied that he": [65535, 0], "on unconscious tom groaned louder and fancied that he began": [65535, 0], "unconscious tom groaned louder and fancied that he began to": [65535, 0], "tom groaned louder and fancied that he began to feel": [65535, 0], "groaned louder and fancied that he began to feel pain": [65535, 0], "louder and fancied that he began to feel pain in": [65535, 0], "and fancied that he began to feel pain in the": [65535, 0], "fancied that he began to feel pain in the toe": [65535, 0], "that he began to feel pain in the toe no": [65535, 0], "he began to feel pain in the toe no result": [65535, 0], "began to feel pain in the toe no result from": [65535, 0], "to feel pain in the toe no result from sid": [65535, 0], "feel pain in the toe no result from sid tom": [65535, 0], "pain in the toe no result from sid tom was": [65535, 0], "in the toe no result from sid tom was panting": [65535, 0], "the toe no result from sid tom was panting with": [65535, 0], "toe no result from sid tom was panting with his": [65535, 0], "no result from sid tom was panting with his exertions": [65535, 0], "result from sid tom was panting with his exertions by": [65535, 0], "from sid tom was panting with his exertions by this": [65535, 0], "sid tom was panting with his exertions by this time": [65535, 0], "tom was panting with his exertions by this time he": [65535, 0], "was panting with his exertions by this time he took": [65535, 0], "panting with his exertions by this time he took a": [65535, 0], "with his exertions by this time he took a rest": [65535, 0], "his exertions by this time he took a rest and": [65535, 0], "exertions by this time he took a rest and then": [65535, 0], "by this time he took a rest and then swelled": [65535, 0], "this time he took a rest and then swelled himself": [65535, 0], "time he took a rest and then swelled himself up": [65535, 0], "he took a rest and then swelled himself up and": [65535, 0], "took a rest and then swelled himself up and fetched": [65535, 0], "a rest and then swelled himself up and fetched a": [65535, 0], "rest and then swelled himself up and fetched a succession": [65535, 0], "and then swelled himself up and fetched a succession of": [65535, 0], "then swelled himself up and fetched a succession of admirable": [65535, 0], "swelled himself up and fetched a succession of admirable groans": [65535, 0], "himself up and fetched a succession of admirable groans sid": [65535, 0], "up and fetched a succession of admirable groans sid snored": [65535, 0], "and fetched a succession of admirable groans sid snored on": [65535, 0], "fetched a succession of admirable groans sid snored on tom": [65535, 0], "a succession of admirable groans sid snored on tom was": [65535, 0], "succession of admirable groans sid snored on tom was aggravated": [65535, 0], "of admirable groans sid snored on tom was aggravated he": [65535, 0], "admirable groans sid snored on tom was aggravated he said": [65535, 0], "groans sid snored on tom was aggravated he said sid": [65535, 0], "sid snored on tom was aggravated he said sid sid": [65535, 0], "snored on tom was aggravated he said sid sid and": [65535, 0], "on tom was aggravated he said sid sid and shook": [65535, 0], "tom was aggravated he said sid sid and shook him": [65535, 0], "was aggravated he said sid sid and shook him this": [65535, 0], "aggravated he said sid sid and shook him this course": [65535, 0], "he said sid sid and shook him this course worked": [65535, 0], "said sid sid and shook him this course worked well": [65535, 0], "sid sid and shook him this course worked well and": [65535, 0], "sid and shook him this course worked well and tom": [65535, 0], "and shook him this course worked well and tom began": [65535, 0], "shook him this course worked well and tom began to": [65535, 0], "him this course worked well and tom began to groan": [65535, 0], "this course worked well and tom began to groan again": [65535, 0], "course worked well and tom began to groan again sid": [65535, 0], "worked well and tom began to groan again sid yawned": [65535, 0], "well and tom began to groan again sid yawned stretched": [65535, 0], "and tom began to groan again sid yawned stretched then": [65535, 0], "tom began to groan again sid yawned stretched then brought": [65535, 0], "began to groan again sid yawned stretched then brought himself": [65535, 0], "to groan again sid yawned stretched then brought himself up": [65535, 0], "groan again sid yawned stretched then brought himself up on": [65535, 0], "again sid yawned stretched then brought himself up on his": [65535, 0], "sid yawned stretched then brought himself up on his elbow": [65535, 0], "yawned stretched then brought himself up on his elbow with": [65535, 0], "stretched then brought himself up on his elbow with a": [65535, 0], "then brought himself up on his elbow with a snort": [65535, 0], "brought himself up on his elbow with a snort and": [65535, 0], "himself up on his elbow with a snort and began": [65535, 0], "up on his elbow with a snort and began to": [65535, 0], "on his elbow with a snort and began to stare": [65535, 0], "his elbow with a snort and began to stare at": [65535, 0], "elbow with a snort and began to stare at tom": [65535, 0], "with a snort and began to stare at tom tom": [65535, 0], "a snort and began to stare at tom tom went": [65535, 0], "snort and began to stare at tom tom went on": [65535, 0], "and began to stare at tom tom went on groaning": [65535, 0], "began to stare at tom tom went on groaning sid": [65535, 0], "to stare at tom tom went on groaning sid said": [65535, 0], "stare at tom tom went on groaning sid said tom": [65535, 0], "at tom tom went on groaning sid said tom say": [65535, 0], "tom tom went on groaning sid said tom say tom": [65535, 0], "tom went on groaning sid said tom say tom no": [65535, 0], "went on groaning sid said tom say tom no response": [65535, 0], "on groaning sid said tom say tom no response here": [65535, 0], "groaning sid said tom say tom no response here tom": [65535, 0], "sid said tom say tom no response here tom tom": [65535, 0], "said tom say tom no response here tom tom what": [65535, 0], "tom say tom no response here tom tom what is": [65535, 0], "say tom no response here tom tom what is the": [65535, 0], "tom no response here tom tom what is the matter": [65535, 0], "no response here tom tom what is the matter tom": [65535, 0], "response here tom tom what is the matter tom and": [65535, 0], "here tom tom what is the matter tom and he": [65535, 0], "tom tom what is the matter tom and he shook": [65535, 0], "tom what is the matter tom and he shook him": [65535, 0], "what is the matter tom and he shook him and": [65535, 0], "is the matter tom and he shook him and looked": [65535, 0], "the matter tom and he shook him and looked in": [65535, 0], "matter tom and he shook him and looked in his": [65535, 0], "tom and he shook him and looked in his face": [65535, 0], "and he shook him and looked in his face anxiously": [65535, 0], "he shook him and looked in his face anxiously tom": [65535, 0], "shook him and looked in his face anxiously tom moaned": [65535, 0], "him and looked in his face anxiously tom moaned out": [65535, 0], "and looked in his face anxiously tom moaned out oh": [65535, 0], "looked in his face anxiously tom moaned out oh don't": [65535, 0], "in his face anxiously tom moaned out oh don't sid": [65535, 0], "his face anxiously tom moaned out oh don't sid don't": [65535, 0], "face anxiously tom moaned out oh don't sid don't joggle": [65535, 0], "anxiously tom moaned out oh don't sid don't joggle me": [65535, 0], "tom moaned out oh don't sid don't joggle me why": [65535, 0], "moaned out oh don't sid don't joggle me why what's": [65535, 0], "out oh don't sid don't joggle me why what's the": [65535, 0], "oh don't sid don't joggle me why what's the matter": [65535, 0], "don't sid don't joggle me why what's the matter tom": [65535, 0], "sid don't joggle me why what's the matter tom i": [65535, 0], "don't joggle me why what's the matter tom i must": [65535, 0], "joggle me why what's the matter tom i must call": [65535, 0], "me why what's the matter tom i must call auntie": [65535, 0], "why what's the matter tom i must call auntie no": [65535, 0], "what's the matter tom i must call auntie no never": [65535, 0], "the matter tom i must call auntie no never mind": [65535, 0], "matter tom i must call auntie no never mind it'll": [65535, 0], "tom i must call auntie no never mind it'll be": [65535, 0], "i must call auntie no never mind it'll be over": [65535, 0], "must call auntie no never mind it'll be over by": [65535, 0], "call auntie no never mind it'll be over by and": [65535, 0], "auntie no never mind it'll be over by and by": [65535, 0], "no never mind it'll be over by and by maybe": [65535, 0], "never mind it'll be over by and by maybe don't": [65535, 0], "mind it'll be over by and by maybe don't call": [65535, 0], "it'll be over by and by maybe don't call anybody": [65535, 0], "be over by and by maybe don't call anybody but": [65535, 0], "over by and by maybe don't call anybody but i": [65535, 0], "by and by maybe don't call anybody but i must": [65535, 0], "and by maybe don't call anybody but i must don't": [65535, 0], "by maybe don't call anybody but i must don't groan": [65535, 0], "maybe don't call anybody but i must don't groan so": [65535, 0], "don't call anybody but i must don't groan so tom": [65535, 0], "call anybody but i must don't groan so tom it's": [65535, 0], "anybody but i must don't groan so tom it's awful": [65535, 0], "but i must don't groan so tom it's awful how": [65535, 0], "i must don't groan so tom it's awful how long": [65535, 0], "must don't groan so tom it's awful how long you": [65535, 0], "don't groan so tom it's awful how long you been": [65535, 0], "groan so tom it's awful how long you been this": [65535, 0], "so tom it's awful how long you been this way": [65535, 0], "tom it's awful how long you been this way hours": [65535, 0], "it's awful how long you been this way hours ouch": [65535, 0], "awful how long you been this way hours ouch oh": [65535, 0], "how long you been this way hours ouch oh don't": [65535, 0], "long you been this way hours ouch oh don't stir": [65535, 0], "you been this way hours ouch oh don't stir so": [65535, 0], "been this way hours ouch oh don't stir so sid": [65535, 0], "this way hours ouch oh don't stir so sid you'll": [65535, 0], "way hours ouch oh don't stir so sid you'll kill": [65535, 0], "hours ouch oh don't stir so sid you'll kill me": [65535, 0], "ouch oh don't stir so sid you'll kill me tom": [65535, 0], "oh don't stir so sid you'll kill me tom why": [65535, 0], "don't stir so sid you'll kill me tom why didn't": [65535, 0], "stir so sid you'll kill me tom why didn't you": [65535, 0], "so sid you'll kill me tom why didn't you wake": [65535, 0], "sid you'll kill me tom why didn't you wake me": [65535, 0], "you'll kill me tom why didn't you wake me sooner": [65535, 0], "kill me tom why didn't you wake me sooner oh": [65535, 0], "me tom why didn't you wake me sooner oh tom": [65535, 0], "tom why didn't you wake me sooner oh tom don't": [65535, 0], "why didn't you wake me sooner oh tom don't it": [65535, 0], "didn't you wake me sooner oh tom don't it makes": [65535, 0], "you wake me sooner oh tom don't it makes my": [65535, 0], "wake me sooner oh tom don't it makes my flesh": [65535, 0], "me sooner oh tom don't it makes my flesh crawl": [65535, 0], "sooner oh tom don't it makes my flesh crawl to": [65535, 0], "oh tom don't it makes my flesh crawl to hear": [65535, 0], "tom don't it makes my flesh crawl to hear you": [65535, 0], "don't it makes my flesh crawl to hear you tom": [65535, 0], "it makes my flesh crawl to hear you tom what": [65535, 0], "makes my flesh crawl to hear you tom what is": [65535, 0], "my flesh crawl to hear you tom what is the": [65535, 0], "flesh crawl to hear you tom what is the matter": [65535, 0], "crawl to hear you tom what is the matter i": [65535, 0], "to hear you tom what is the matter i forgive": [65535, 0], "hear you tom what is the matter i forgive you": [65535, 0], "you tom what is the matter i forgive you everything": [65535, 0], "tom what is the matter i forgive you everything sid": [65535, 0], "what is the matter i forgive you everything sid groan": [65535, 0], "is the matter i forgive you everything sid groan everything": [65535, 0], "the matter i forgive you everything sid groan everything you've": [65535, 0], "matter i forgive you everything sid groan everything you've ever": [65535, 0], "i forgive you everything sid groan everything you've ever done": [65535, 0], "forgive you everything sid groan everything you've ever done to": [65535, 0], "you everything sid groan everything you've ever done to me": [65535, 0], "everything sid groan everything you've ever done to me when": [65535, 0], "sid groan everything you've ever done to me when i'm": [65535, 0], "groan everything you've ever done to me when i'm gone": [65535, 0], "everything you've ever done to me when i'm gone oh": [65535, 0], "you've ever done to me when i'm gone oh tom": [65535, 0], "ever done to me when i'm gone oh tom you": [65535, 0], "done to me when i'm gone oh tom you ain't": [65535, 0], "to me when i'm gone oh tom you ain't dying": [65535, 0], "me when i'm gone oh tom you ain't dying are": [65535, 0], "when i'm gone oh tom you ain't dying are you": [65535, 0], "i'm gone oh tom you ain't dying are you don't": [65535, 0], "gone oh tom you ain't dying are you don't tom": [65535, 0], "oh tom you ain't dying are you don't tom oh": [65535, 0], "tom you ain't dying are you don't tom oh don't": [65535, 0], "you ain't dying are you don't tom oh don't maybe": [65535, 0], "ain't dying are you don't tom oh don't maybe i": [65535, 0], "dying are you don't tom oh don't maybe i forgive": [65535, 0], "are you don't tom oh don't maybe i forgive everybody": [65535, 0], "you don't tom oh don't maybe i forgive everybody sid": [65535, 0], "don't tom oh don't maybe i forgive everybody sid groan": [65535, 0], "tom oh don't maybe i forgive everybody sid groan tell": [65535, 0], "oh don't maybe i forgive everybody sid groan tell 'em": [65535, 0], "don't maybe i forgive everybody sid groan tell 'em so": [65535, 0], "maybe i forgive everybody sid groan tell 'em so sid": [65535, 0], "i forgive everybody sid groan tell 'em so sid and": [65535, 0], "forgive everybody sid groan tell 'em so sid and sid": [65535, 0], "everybody sid groan tell 'em so sid and sid you": [65535, 0], "sid groan tell 'em so sid and sid you give": [65535, 0], "groan tell 'em so sid and sid you give my": [65535, 0], "tell 'em so sid and sid you give my window": [65535, 0], "'em so sid and sid you give my window sash": [65535, 0], "so sid and sid you give my window sash and": [65535, 0], "sid and sid you give my window sash and my": [65535, 0], "and sid you give my window sash and my cat": [65535, 0], "sid you give my window sash and my cat with": [65535, 0], "you give my window sash and my cat with one": [65535, 0], "give my window sash and my cat with one eye": [65535, 0], "my window sash and my cat with one eye to": [65535, 0], "window sash and my cat with one eye to that": [65535, 0], "sash and my cat with one eye to that new": [65535, 0], "and my cat with one eye to that new girl": [65535, 0], "my cat with one eye to that new girl that's": [65535, 0], "cat with one eye to that new girl that's come": [65535, 0], "with one eye to that new girl that's come to": [65535, 0], "one eye to that new girl that's come to town": [65535, 0], "eye to that new girl that's come to town and": [65535, 0], "to that new girl that's come to town and tell": [65535, 0], "that new girl that's come to town and tell her": [65535, 0], "new girl that's come to town and tell her but": [65535, 0], "girl that's come to town and tell her but sid": [65535, 0], "that's come to town and tell her but sid had": [65535, 0], "come to town and tell her but sid had snatched": [65535, 0], "to town and tell her but sid had snatched his": [65535, 0], "town and tell her but sid had snatched his clothes": [65535, 0], "and tell her but sid had snatched his clothes and": [65535, 0], "tell her but sid had snatched his clothes and gone": [65535, 0], "her but sid had snatched his clothes and gone tom": [65535, 0], "but sid had snatched his clothes and gone tom was": [65535, 0], "sid had snatched his clothes and gone tom was suffering": [65535, 0], "had snatched his clothes and gone tom was suffering in": [65535, 0], "snatched his clothes and gone tom was suffering in reality": [65535, 0], "his clothes and gone tom was suffering in reality now": [65535, 0], "clothes and gone tom was suffering in reality now so": [65535, 0], "and gone tom was suffering in reality now so handsomely": [65535, 0], "gone tom was suffering in reality now so handsomely was": [65535, 0], "tom was suffering in reality now so handsomely was his": [65535, 0], "was suffering in reality now so handsomely was his imagination": [65535, 0], "suffering in reality now so handsomely was his imagination working": [65535, 0], "in reality now so handsomely was his imagination working and": [65535, 0], "reality now so handsomely was his imagination working and so": [65535, 0], "now so handsomely was his imagination working and so his": [65535, 0], "so handsomely was his imagination working and so his groans": [65535, 0], "handsomely was his imagination working and so his groans had": [65535, 0], "was his imagination working and so his groans had gathered": [65535, 0], "his imagination working and so his groans had gathered quite": [65535, 0], "imagination working and so his groans had gathered quite a": [65535, 0], "working and so his groans had gathered quite a genuine": [65535, 0], "and so his groans had gathered quite a genuine tone": [65535, 0], "so his groans had gathered quite a genuine tone sid": [65535, 0], "his groans had gathered quite a genuine tone sid flew": [65535, 0], "groans had gathered quite a genuine tone sid flew down": [65535, 0], "had gathered quite a genuine tone sid flew down stairs": [65535, 0], "gathered quite a genuine tone sid flew down stairs and": [65535, 0], "quite a genuine tone sid flew down stairs and said": [65535, 0], "a genuine tone sid flew down stairs and said oh": [65535, 0], "genuine tone sid flew down stairs and said oh aunt": [65535, 0], "tone sid flew down stairs and said oh aunt polly": [65535, 0], "sid flew down stairs and said oh aunt polly come": [65535, 0], "flew down stairs and said oh aunt polly come tom's": [65535, 0], "down stairs and said oh aunt polly come tom's dying": [65535, 0], "stairs and said oh aunt polly come tom's dying dying": [65535, 0], "and said oh aunt polly come tom's dying dying yes'm": [65535, 0], "said oh aunt polly come tom's dying dying yes'm don't": [65535, 0], "oh aunt polly come tom's dying dying yes'm don't wait": [65535, 0], "aunt polly come tom's dying dying yes'm don't wait come": [65535, 0], "polly come tom's dying dying yes'm don't wait come quick": [65535, 0], "come tom's dying dying yes'm don't wait come quick rubbage": [65535, 0], "tom's dying dying yes'm don't wait come quick rubbage i": [65535, 0], "dying dying yes'm don't wait come quick rubbage i don't": [65535, 0], "dying yes'm don't wait come quick rubbage i don't believe": [65535, 0], "yes'm don't wait come quick rubbage i don't believe it": [65535, 0], "don't wait come quick rubbage i don't believe it but": [65535, 0], "wait come quick rubbage i don't believe it but she": [65535, 0], "come quick rubbage i don't believe it but she fled": [65535, 0], "quick rubbage i don't believe it but she fled up": [65535, 0], "rubbage i don't believe it but she fled up stairs": [65535, 0], "i don't believe it but she fled up stairs nevertheless": [65535, 0], "don't believe it but she fled up stairs nevertheless with": [65535, 0], "believe it but she fled up stairs nevertheless with sid": [65535, 0], "it but she fled up stairs nevertheless with sid and": [65535, 0], "but she fled up stairs nevertheless with sid and mary": [65535, 0], "she fled up stairs nevertheless with sid and mary at": [65535, 0], "fled up stairs nevertheless with sid and mary at her": [65535, 0], "up stairs nevertheless with sid and mary at her heels": [65535, 0], "stairs nevertheless with sid and mary at her heels and": [65535, 0], "nevertheless with sid and mary at her heels and her": [65535, 0], "with sid and mary at her heels and her face": [65535, 0], "sid and mary at her heels and her face grew": [65535, 0], "and mary at her heels and her face grew white": [65535, 0], "mary at her heels and her face grew white too": [65535, 0], "at her heels and her face grew white too and": [65535, 0], "her heels and her face grew white too and her": [65535, 0], "heels and her face grew white too and her lip": [65535, 0], "and her face grew white too and her lip trembled": [65535, 0], "her face grew white too and her lip trembled when": [65535, 0], "face grew white too and her lip trembled when she": [65535, 0], "grew white too and her lip trembled when she reached": [65535, 0], "white too and her lip trembled when she reached the": [65535, 0], "too and her lip trembled when she reached the bedside": [65535, 0], "and her lip trembled when she reached the bedside she": [65535, 0], "her lip trembled when she reached the bedside she gasped": [65535, 0], "lip trembled when she reached the bedside she gasped out": [65535, 0], "trembled when she reached the bedside she gasped out you": [65535, 0], "when she reached the bedside she gasped out you tom": [65535, 0], "she reached the bedside she gasped out you tom tom": [65535, 0], "reached the bedside she gasped out you tom tom what's": [65535, 0], "the bedside she gasped out you tom tom what's the": [65535, 0], "bedside she gasped out you tom tom what's the matter": [65535, 0], "she gasped out you tom tom what's the matter with": [65535, 0], "gasped out you tom tom what's the matter with you": [65535, 0], "out you tom tom what's the matter with you oh": [65535, 0], "you tom tom what's the matter with you oh auntie": [65535, 0], "tom tom what's the matter with you oh auntie i'm": [65535, 0], "tom what's the matter with you oh auntie i'm what's": [65535, 0], "what's the matter with you oh auntie i'm what's the": [65535, 0], "the matter with you oh auntie i'm what's the matter": [65535, 0], "matter with you oh auntie i'm what's the matter with": [65535, 0], "with you oh auntie i'm what's the matter with you": [65535, 0], "you oh auntie i'm what's the matter with you what": [65535, 0], "oh auntie i'm what's the matter with you what is": [65535, 0], "auntie i'm what's the matter with you what is the": [65535, 0], "i'm what's the matter with you what is the matter": [65535, 0], "what's the matter with you what is the matter with": [65535, 0], "the matter with you what is the matter with you": [65535, 0], "matter with you what is the matter with you child": [65535, 0], "with you what is the matter with you child oh": [65535, 0], "you what is the matter with you child oh auntie": [65535, 0], "what is the matter with you child oh auntie my": [65535, 0], "is the matter with you child oh auntie my sore": [65535, 0], "the matter with you child oh auntie my sore toe's": [65535, 0], "matter with you child oh auntie my sore toe's mortified": [65535, 0], "with you child oh auntie my sore toe's mortified the": [65535, 0], "you child oh auntie my sore toe's mortified the old": [65535, 0], "child oh auntie my sore toe's mortified the old lady": [65535, 0], "oh auntie my sore toe's mortified the old lady sank": [65535, 0], "auntie my sore toe's mortified the old lady sank down": [65535, 0], "my sore toe's mortified the old lady sank down into": [65535, 0], "sore toe's mortified the old lady sank down into a": [65535, 0], "toe's mortified the old lady sank down into a chair": [65535, 0], "mortified the old lady sank down into a chair and": [65535, 0], "the old lady sank down into a chair and laughed": [65535, 0], "old lady sank down into a chair and laughed a": [65535, 0], "lady sank down into a chair and laughed a little": [65535, 0], "sank down into a chair and laughed a little then": [65535, 0], "down into a chair and laughed a little then cried": [65535, 0], "into a chair and laughed a little then cried a": [65535, 0], "a chair and laughed a little then cried a little": [65535, 0], "chair and laughed a little then cried a little then": [65535, 0], "and laughed a little then cried a little then did": [65535, 0], "laughed a little then cried a little then did both": [65535, 0], "a little then cried a little then did both together": [65535, 0], "little then cried a little then did both together this": [65535, 0], "then cried a little then did both together this restored": [65535, 0], "cried a little then did both together this restored her": [65535, 0], "a little then did both together this restored her and": [65535, 0], "little then did both together this restored her and she": [65535, 0], "then did both together this restored her and she said": [65535, 0], "did both together this restored her and she said tom": [65535, 0], "both together this restored her and she said tom what": [65535, 0], "together this restored her and she said tom what a": [65535, 0], "this restored her and she said tom what a turn": [65535, 0], "restored her and she said tom what a turn you": [65535, 0], "her and she said tom what a turn you did": [65535, 0], "and she said tom what a turn you did give": [65535, 0], "she said tom what a turn you did give me": [65535, 0], "said tom what a turn you did give me now": [65535, 0], "tom what a turn you did give me now you": [65535, 0], "what a turn you did give me now you shut": [65535, 0], "a turn you did give me now you shut up": [65535, 0], "turn you did give me now you shut up that": [65535, 0], "you did give me now you shut up that nonsense": [65535, 0], "did give me now you shut up that nonsense and": [65535, 0], "give me now you shut up that nonsense and climb": [65535, 0], "me now you shut up that nonsense and climb out": [65535, 0], "now you shut up that nonsense and climb out of": [65535, 0], "you shut up that nonsense and climb out of this": [65535, 0], "shut up that nonsense and climb out of this the": [65535, 0], "up that nonsense and climb out of this the groans": [65535, 0], "that nonsense and climb out of this the groans ceased": [65535, 0], "nonsense and climb out of this the groans ceased and": [65535, 0], "and climb out of this the groans ceased and the": [65535, 0], "climb out of this the groans ceased and the pain": [65535, 0], "out of this the groans ceased and the pain vanished": [65535, 0], "of this the groans ceased and the pain vanished from": [65535, 0], "this the groans ceased and the pain vanished from the": [65535, 0], "the groans ceased and the pain vanished from the toe": [65535, 0], "groans ceased and the pain vanished from the toe the": [65535, 0], "ceased and the pain vanished from the toe the boy": [65535, 0], "and the pain vanished from the toe the boy felt": [65535, 0], "the pain vanished from the toe the boy felt a": [65535, 0], "pain vanished from the toe the boy felt a little": [65535, 0], "vanished from the toe the boy felt a little foolish": [65535, 0], "from the toe the boy felt a little foolish and": [65535, 0], "the toe the boy felt a little foolish and he": [65535, 0], "toe the boy felt a little foolish and he said": [65535, 0], "the boy felt a little foolish and he said aunt": [65535, 0], "boy felt a little foolish and he said aunt polly": [65535, 0], "felt a little foolish and he said aunt polly it": [65535, 0], "a little foolish and he said aunt polly it seemed": [65535, 0], "little foolish and he said aunt polly it seemed mortified": [65535, 0], "foolish and he said aunt polly it seemed mortified and": [65535, 0], "and he said aunt polly it seemed mortified and it": [65535, 0], "he said aunt polly it seemed mortified and it hurt": [65535, 0], "said aunt polly it seemed mortified and it hurt so": [65535, 0], "aunt polly it seemed mortified and it hurt so i": [65535, 0], "polly it seemed mortified and it hurt so i never": [65535, 0], "it seemed mortified and it hurt so i never minded": [65535, 0], "seemed mortified and it hurt so i never minded my": [65535, 0], "mortified and it hurt so i never minded my tooth": [65535, 0], "and it hurt so i never minded my tooth at": [65535, 0], "it hurt so i never minded my tooth at all": [65535, 0], "hurt so i never minded my tooth at all your": [65535, 0], "so i never minded my tooth at all your tooth": [65535, 0], "i never minded my tooth at all your tooth indeed": [65535, 0], "never minded my tooth at all your tooth indeed what's": [65535, 0], "minded my tooth at all your tooth indeed what's the": [65535, 0], "my tooth at all your tooth indeed what's the matter": [65535, 0], "tooth at all your tooth indeed what's the matter with": [65535, 0], "at all your tooth indeed what's the matter with your": [65535, 0], "all your tooth indeed what's the matter with your tooth": [65535, 0], "your tooth indeed what's the matter with your tooth one": [65535, 0], "tooth indeed what's the matter with your tooth one of": [65535, 0], "indeed what's the matter with your tooth one of them's": [65535, 0], "what's the matter with your tooth one of them's loose": [65535, 0], "the matter with your tooth one of them's loose and": [65535, 0], "matter with your tooth one of them's loose and it": [65535, 0], "with your tooth one of them's loose and it aches": [65535, 0], "your tooth one of them's loose and it aches perfectly": [65535, 0], "tooth one of them's loose and it aches perfectly awful": [65535, 0], "one of them's loose and it aches perfectly awful there": [65535, 0], "of them's loose and it aches perfectly awful there there": [65535, 0], "them's loose and it aches perfectly awful there there now": [65535, 0], "loose and it aches perfectly awful there there now don't": [65535, 0], "and it aches perfectly awful there there now don't begin": [65535, 0], "it aches perfectly awful there there now don't begin that": [65535, 0], "aches perfectly awful there there now don't begin that groaning": [65535, 0], "perfectly awful there there now don't begin that groaning again": [65535, 0], "awful there there now don't begin that groaning again open": [65535, 0], "there there now don't begin that groaning again open your": [65535, 0], "there now don't begin that groaning again open your mouth": [65535, 0], "now don't begin that groaning again open your mouth well": [65535, 0], "don't begin that groaning again open your mouth well your": [65535, 0], "begin that groaning again open your mouth well your tooth": [65535, 0], "that groaning again open your mouth well your tooth is": [65535, 0], "groaning again open your mouth well your tooth is loose": [65535, 0], "again open your mouth well your tooth is loose but": [65535, 0], "open your mouth well your tooth is loose but you're": [65535, 0], "your mouth well your tooth is loose but you're not": [65535, 0], "mouth well your tooth is loose but you're not going": [65535, 0], "well your tooth is loose but you're not going to": [65535, 0], "your tooth is loose but you're not going to die": [65535, 0], "tooth is loose but you're not going to die about": [65535, 0], "is loose but you're not going to die about that": [65535, 0], "loose but you're not going to die about that mary": [65535, 0], "but you're not going to die about that mary get": [65535, 0], "you're not going to die about that mary get me": [65535, 0], "not going to die about that mary get me a": [65535, 0], "going to die about that mary get me a silk": [65535, 0], "to die about that mary get me a silk thread": [65535, 0], "die about that mary get me a silk thread and": [65535, 0], "about that mary get me a silk thread and a": [65535, 0], "that mary get me a silk thread and a chunk": [65535, 0], "mary get me a silk thread and a chunk of": [65535, 0], "get me a silk thread and a chunk of fire": [65535, 0], "me a silk thread and a chunk of fire out": [65535, 0], "a silk thread and a chunk of fire out of": [65535, 0], "silk thread and a chunk of fire out of the": [65535, 0], "thread and a chunk of fire out of the kitchen": [65535, 0], "and a chunk of fire out of the kitchen tom": [65535, 0], "a chunk of fire out of the kitchen tom said": [65535, 0], "chunk of fire out of the kitchen tom said oh": [65535, 0], "of fire out of the kitchen tom said oh please": [65535, 0], "fire out of the kitchen tom said oh please auntie": [65535, 0], "out of the kitchen tom said oh please auntie don't": [65535, 0], "of the kitchen tom said oh please auntie don't pull": [65535, 0], "the kitchen tom said oh please auntie don't pull it": [65535, 0], "kitchen tom said oh please auntie don't pull it out": [65535, 0], "tom said oh please auntie don't pull it out it": [65535, 0], "said oh please auntie don't pull it out it don't": [65535, 0], "oh please auntie don't pull it out it don't hurt": [65535, 0], "please auntie don't pull it out it don't hurt any": [65535, 0], "auntie don't pull it out it don't hurt any more": [65535, 0], "don't pull it out it don't hurt any more i": [65535, 0], "pull it out it don't hurt any more i wish": [65535, 0], "it out it don't hurt any more i wish i": [65535, 0], "out it don't hurt any more i wish i may": [65535, 0], "it don't hurt any more i wish i may never": [65535, 0], "don't hurt any more i wish i may never stir": [65535, 0], "hurt any more i wish i may never stir if": [65535, 0], "any more i wish i may never stir if it": [65535, 0], "more i wish i may never stir if it does": [65535, 0], "i wish i may never stir if it does please": [65535, 0], "wish i may never stir if it does please don't": [65535, 0], "i may never stir if it does please don't auntie": [65535, 0], "may never stir if it does please don't auntie i": [65535, 0], "never stir if it does please don't auntie i don't": [65535, 0], "stir if it does please don't auntie i don't want": [65535, 0], "if it does please don't auntie i don't want to": [65535, 0], "it does please don't auntie i don't want to stay": [65535, 0], "does please don't auntie i don't want to stay home": [65535, 0], "please don't auntie i don't want to stay home from": [65535, 0], "don't auntie i don't want to stay home from school": [65535, 0], "auntie i don't want to stay home from school oh": [65535, 0], "i don't want to stay home from school oh you": [65535, 0], "don't want to stay home from school oh you don't": [65535, 0], "want to stay home from school oh you don't don't": [65535, 0], "to stay home from school oh you don't don't you": [65535, 0], "stay home from school oh you don't don't you so": [65535, 0], "home from school oh you don't don't you so all": [65535, 0], "from school oh you don't don't you so all this": [65535, 0], "school oh you don't don't you so all this row": [65535, 0], "oh you don't don't you so all this row was": [65535, 0], "you don't don't you so all this row was because": [65535, 0], "don't don't you so all this row was because you": [65535, 0], "don't you so all this row was because you thought": [65535, 0], "you so all this row was because you thought you'd": [65535, 0], "so all this row was because you thought you'd get": [65535, 0], "all this row was because you thought you'd get to": [65535, 0], "this row was because you thought you'd get to stay": [65535, 0], "row was because you thought you'd get to stay home": [65535, 0], "was because you thought you'd get to stay home from": [65535, 0], "because you thought you'd get to stay home from school": [65535, 0], "you thought you'd get to stay home from school and": [65535, 0], "thought you'd get to stay home from school and go": [65535, 0], "you'd get to stay home from school and go a": [65535, 0], "get to stay home from school and go a fishing": [65535, 0], "to stay home from school and go a fishing tom": [65535, 0], "stay home from school and go a fishing tom tom": [65535, 0], "home from school and go a fishing tom tom i": [65535, 0], "from school and go a fishing tom tom i love": [65535, 0], "school and go a fishing tom tom i love you": [65535, 0], "and go a fishing tom tom i love you so": [65535, 0], "go a fishing tom tom i love you so and": [65535, 0], "a fishing tom tom i love you so and you": [65535, 0], "fishing tom tom i love you so and you seem": [65535, 0], "tom tom i love you so and you seem to": [65535, 0], "tom i love you so and you seem to try": [65535, 0], "i love you so and you seem to try every": [65535, 0], "love you so and you seem to try every way": [65535, 0], "you so and you seem to try every way you": [65535, 0], "so and you seem to try every way you can": [65535, 0], "and you seem to try every way you can to": [65535, 0], "you seem to try every way you can to break": [65535, 0], "seem to try every way you can to break my": [65535, 0], "to try every way you can to break my old": [65535, 0], "try every way you can to break my old heart": [65535, 0], "every way you can to break my old heart with": [65535, 0], "way you can to break my old heart with your": [65535, 0], "you can to break my old heart with your outrageousness": [65535, 0], "can to break my old heart with your outrageousness by": [65535, 0], "to break my old heart with your outrageousness by this": [65535, 0], "break my old heart with your outrageousness by this time": [65535, 0], "my old heart with your outrageousness by this time the": [65535, 0], "old heart with your outrageousness by this time the dental": [65535, 0], "heart with your outrageousness by this time the dental instruments": [65535, 0], "with your outrageousness by this time the dental instruments were": [65535, 0], "your outrageousness by this time the dental instruments were ready": [65535, 0], "outrageousness by this time the dental instruments were ready the": [65535, 0], "by this time the dental instruments were ready the old": [65535, 0], "this time the dental instruments were ready the old lady": [65535, 0], "time the dental instruments were ready the old lady made": [65535, 0], "the dental instruments were ready the old lady made one": [65535, 0], "dental instruments were ready the old lady made one end": [65535, 0], "instruments were ready the old lady made one end of": [65535, 0], "were ready the old lady made one end of the": [65535, 0], "ready the old lady made one end of the silk": [65535, 0], "the old lady made one end of the silk thread": [65535, 0], "old lady made one end of the silk thread fast": [65535, 0], "lady made one end of the silk thread fast to": [65535, 0], "made one end of the silk thread fast to tom's": [65535, 0], "one end of the silk thread fast to tom's tooth": [65535, 0], "end of the silk thread fast to tom's tooth with": [65535, 0], "of the silk thread fast to tom's tooth with a": [65535, 0], "the silk thread fast to tom's tooth with a loop": [65535, 0], "silk thread fast to tom's tooth with a loop and": [65535, 0], "thread fast to tom's tooth with a loop and tied": [65535, 0], "fast to tom's tooth with a loop and tied the": [65535, 0], "to tom's tooth with a loop and tied the other": [65535, 0], "tom's tooth with a loop and tied the other to": [65535, 0], "tooth with a loop and tied the other to the": [65535, 0], "with a loop and tied the other to the bedpost": [65535, 0], "a loop and tied the other to the bedpost then": [65535, 0], "loop and tied the other to the bedpost then she": [65535, 0], "and tied the other to the bedpost then she seized": [65535, 0], "tied the other to the bedpost then she seized the": [65535, 0], "the other to the bedpost then she seized the chunk": [65535, 0], "other to the bedpost then she seized the chunk of": [65535, 0], "to the bedpost then she seized the chunk of fire": [65535, 0], "the bedpost then she seized the chunk of fire and": [65535, 0], "bedpost then she seized the chunk of fire and suddenly": [65535, 0], "then she seized the chunk of fire and suddenly thrust": [65535, 0], "she seized the chunk of fire and suddenly thrust it": [65535, 0], "seized the chunk of fire and suddenly thrust it almost": [65535, 0], "the chunk of fire and suddenly thrust it almost into": [65535, 0], "chunk of fire and suddenly thrust it almost into the": [65535, 0], "of fire and suddenly thrust it almost into the boy's": [65535, 0], "fire and suddenly thrust it almost into the boy's face": [65535, 0], "and suddenly thrust it almost into the boy's face the": [65535, 0], "suddenly thrust it almost into the boy's face the tooth": [65535, 0], "thrust it almost into the boy's face the tooth hung": [65535, 0], "it almost into the boy's face the tooth hung dangling": [65535, 0], "almost into the boy's face the tooth hung dangling by": [65535, 0], "into the boy's face the tooth hung dangling by the": [65535, 0], "the boy's face the tooth hung dangling by the bedpost": [65535, 0], "boy's face the tooth hung dangling by the bedpost now": [65535, 0], "face the tooth hung dangling by the bedpost now but": [65535, 0], "the tooth hung dangling by the bedpost now but all": [65535, 0], "tooth hung dangling by the bedpost now but all trials": [65535, 0], "hung dangling by the bedpost now but all trials bring": [65535, 0], "dangling by the bedpost now but all trials bring their": [65535, 0], "by the bedpost now but all trials bring their compensations": [65535, 0], "the bedpost now but all trials bring their compensations as": [65535, 0], "bedpost now but all trials bring their compensations as tom": [65535, 0], "now but all trials bring their compensations as tom wended": [65535, 0], "but all trials bring their compensations as tom wended to": [65535, 0], "all trials bring their compensations as tom wended to school": [65535, 0], "trials bring their compensations as tom wended to school after": [65535, 0], "bring their compensations as tom wended to school after breakfast": [65535, 0], "their compensations as tom wended to school after breakfast he": [65535, 0], "compensations as tom wended to school after breakfast he was": [65535, 0], "as tom wended to school after breakfast he was the": [65535, 0], "tom wended to school after breakfast he was the envy": [65535, 0], "wended to school after breakfast he was the envy of": [65535, 0], "to school after breakfast he was the envy of every": [65535, 0], "school after breakfast he was the envy of every boy": [65535, 0], "after breakfast he was the envy of every boy he": [65535, 0], "breakfast he was the envy of every boy he met": [65535, 0], "he was the envy of every boy he met because": [65535, 0], "was the envy of every boy he met because the": [65535, 0], "the envy of every boy he met because the gap": [65535, 0], "envy of every boy he met because the gap in": [65535, 0], "of every boy he met because the gap in his": [65535, 0], "every boy he met because the gap in his upper": [65535, 0], "boy he met because the gap in his upper row": [65535, 0], "he met because the gap in his upper row of": [65535, 0], "met because the gap in his upper row of teeth": [65535, 0], "because the gap in his upper row of teeth enabled": [65535, 0], "the gap in his upper row of teeth enabled him": [65535, 0], "gap in his upper row of teeth enabled him to": [65535, 0], "in his upper row of teeth enabled him to expectorate": [65535, 0], "his upper row of teeth enabled him to expectorate in": [65535, 0], "upper row of teeth enabled him to expectorate in a": [65535, 0], "row of teeth enabled him to expectorate in a new": [65535, 0], "of teeth enabled him to expectorate in a new and": [65535, 0], "teeth enabled him to expectorate in a new and admirable": [65535, 0], "enabled him to expectorate in a new and admirable way": [65535, 0], "him to expectorate in a new and admirable way he": [65535, 0], "to expectorate in a new and admirable way he gathered": [65535, 0], "expectorate in a new and admirable way he gathered quite": [65535, 0], "in a new and admirable way he gathered quite a": [65535, 0], "a new and admirable way he gathered quite a following": [65535, 0], "new and admirable way he gathered quite a following of": [65535, 0], "and admirable way he gathered quite a following of lads": [65535, 0], "admirable way he gathered quite a following of lads interested": [65535, 0], "way he gathered quite a following of lads interested in": [65535, 0], "he gathered quite a following of lads interested in the": [65535, 0], "gathered quite a following of lads interested in the exhibition": [65535, 0], "quite a following of lads interested in the exhibition and": [65535, 0], "a following of lads interested in the exhibition and one": [65535, 0], "following of lads interested in the exhibition and one that": [65535, 0], "of lads interested in the exhibition and one that had": [65535, 0], "lads interested in the exhibition and one that had cut": [65535, 0], "interested in the exhibition and one that had cut his": [65535, 0], "in the exhibition and one that had cut his finger": [65535, 0], "the exhibition and one that had cut his finger and": [65535, 0], "exhibition and one that had cut his finger and had": [65535, 0], "and one that had cut his finger and had been": [65535, 0], "one that had cut his finger and had been a": [65535, 0], "that had cut his finger and had been a centre": [65535, 0], "had cut his finger and had been a centre of": [65535, 0], "cut his finger and had been a centre of fascination": [65535, 0], "his finger and had been a centre of fascination and": [65535, 0], "finger and had been a centre of fascination and homage": [65535, 0], "and had been a centre of fascination and homage up": [65535, 0], "had been a centre of fascination and homage up to": [65535, 0], "been a centre of fascination and homage up to this": [65535, 0], "a centre of fascination and homage up to this time": [65535, 0], "centre of fascination and homage up to this time now": [65535, 0], "of fascination and homage up to this time now found": [65535, 0], "fascination and homage up to this time now found himself": [65535, 0], "and homage up to this time now found himself suddenly": [65535, 0], "homage up to this time now found himself suddenly without": [65535, 0], "up to this time now found himself suddenly without an": [65535, 0], "to this time now found himself suddenly without an adherent": [65535, 0], "this time now found himself suddenly without an adherent and": [65535, 0], "time now found himself suddenly without an adherent and shorn": [65535, 0], "now found himself suddenly without an adherent and shorn of": [65535, 0], "found himself suddenly without an adherent and shorn of his": [65535, 0], "himself suddenly without an adherent and shorn of his glory": [65535, 0], "suddenly without an adherent and shorn of his glory his": [65535, 0], "without an adherent and shorn of his glory his heart": [65535, 0], "an adherent and shorn of his glory his heart was": [65535, 0], "adherent and shorn of his glory his heart was heavy": [65535, 0], "and shorn of his glory his heart was heavy and": [65535, 0], "shorn of his glory his heart was heavy and he": [65535, 0], "of his glory his heart was heavy and he said": [65535, 0], "his glory his heart was heavy and he said with": [65535, 0], "glory his heart was heavy and he said with a": [65535, 0], "his heart was heavy and he said with a disdain": [65535, 0], "heart was heavy and he said with a disdain which": [65535, 0], "was heavy and he said with a disdain which he": [65535, 0], "heavy and he said with a disdain which he did": [65535, 0], "and he said with a disdain which he did not": [65535, 0], "he said with a disdain which he did not feel": [65535, 0], "said with a disdain which he did not feel that": [65535, 0], "with a disdain which he did not feel that it": [65535, 0], "a disdain which he did not feel that it wasn't": [65535, 0], "disdain which he did not feel that it wasn't anything": [65535, 0], "which he did not feel that it wasn't anything to": [65535, 0], "he did not feel that it wasn't anything to spit": [65535, 0], "did not feel that it wasn't anything to spit like": [65535, 0], "not feel that it wasn't anything to spit like tom": [65535, 0], "feel that it wasn't anything to spit like tom sawyer": [65535, 0], "that it wasn't anything to spit like tom sawyer but": [65535, 0], "it wasn't anything to spit like tom sawyer but another": [65535, 0], "wasn't anything to spit like tom sawyer but another boy": [65535, 0], "anything to spit like tom sawyer but another boy said": [65535, 0], "to spit like tom sawyer but another boy said sour": [65535, 0], "spit like tom sawyer but another boy said sour grapes": [65535, 0], "like tom sawyer but another boy said sour grapes and": [65535, 0], "tom sawyer but another boy said sour grapes and he": [65535, 0], "sawyer but another boy said sour grapes and he wandered": [65535, 0], "but another boy said sour grapes and he wandered away": [65535, 0], "another boy said sour grapes and he wandered away a": [65535, 0], "boy said sour grapes and he wandered away a dismantled": [65535, 0], "said sour grapes and he wandered away a dismantled hero": [65535, 0], "sour grapes and he wandered away a dismantled hero shortly": [65535, 0], "grapes and he wandered away a dismantled hero shortly tom": [65535, 0], "and he wandered away a dismantled hero shortly tom came": [65535, 0], "he wandered away a dismantled hero shortly tom came upon": [65535, 0], "wandered away a dismantled hero shortly tom came upon the": [65535, 0], "away a dismantled hero shortly tom came upon the juvenile": [65535, 0], "a dismantled hero shortly tom came upon the juvenile pariah": [65535, 0], "dismantled hero shortly tom came upon the juvenile pariah of": [65535, 0], "hero shortly tom came upon the juvenile pariah of the": [65535, 0], "shortly tom came upon the juvenile pariah of the village": [65535, 0], "tom came upon the juvenile pariah of the village huckleberry": [65535, 0], "came upon the juvenile pariah of the village huckleberry finn": [65535, 0], "upon the juvenile pariah of the village huckleberry finn son": [65535, 0], "the juvenile pariah of the village huckleberry finn son of": [65535, 0], "juvenile pariah of the village huckleberry finn son of the": [65535, 0], "pariah of the village huckleberry finn son of the town": [65535, 0], "of the village huckleberry finn son of the town drunkard": [65535, 0], "the village huckleberry finn son of the town drunkard huckleberry": [65535, 0], "village huckleberry finn son of the town drunkard huckleberry was": [65535, 0], "huckleberry finn son of the town drunkard huckleberry was cordially": [65535, 0], "finn son of the town drunkard huckleberry was cordially hated": [65535, 0], "son of the town drunkard huckleberry was cordially hated and": [65535, 0], "of the town drunkard huckleberry was cordially hated and dreaded": [65535, 0], "the town drunkard huckleberry was cordially hated and dreaded by": [65535, 0], "town drunkard huckleberry was cordially hated and dreaded by all": [65535, 0], "drunkard huckleberry was cordially hated and dreaded by all the": [65535, 0], "huckleberry was cordially hated and dreaded by all the mothers": [65535, 0], "was cordially hated and dreaded by all the mothers of": [65535, 0], "cordially hated and dreaded by all the mothers of the": [65535, 0], "hated and dreaded by all the mothers of the town": [65535, 0], "and dreaded by all the mothers of the town because": [65535, 0], "dreaded by all the mothers of the town because he": [65535, 0], "by all the mothers of the town because he was": [65535, 0], "all the mothers of the town because he was idle": [65535, 0], "the mothers of the town because he was idle and": [65535, 0], "mothers of the town because he was idle and lawless": [65535, 0], "of the town because he was idle and lawless and": [65535, 0], "the town because he was idle and lawless and vulgar": [65535, 0], "town because he was idle and lawless and vulgar and": [65535, 0], "because he was idle and lawless and vulgar and bad": [65535, 0], "he was idle and lawless and vulgar and bad and": [65535, 0], "was idle and lawless and vulgar and bad and because": [65535, 0], "idle and lawless and vulgar and bad and because all": [65535, 0], "and lawless and vulgar and bad and because all their": [65535, 0], "lawless and vulgar and bad and because all their children": [65535, 0], "and vulgar and bad and because all their children admired": [65535, 0], "vulgar and bad and because all their children admired him": [65535, 0], "and bad and because all their children admired him so": [65535, 0], "bad and because all their children admired him so and": [65535, 0], "and because all their children admired him so and delighted": [65535, 0], "because all their children admired him so and delighted in": [65535, 0], "all their children admired him so and delighted in his": [65535, 0], "their children admired him so and delighted in his forbidden": [65535, 0], "children admired him so and delighted in his forbidden society": [65535, 0], "admired him so and delighted in his forbidden society and": [65535, 0], "him so and delighted in his forbidden society and wished": [65535, 0], "so and delighted in his forbidden society and wished they": [65535, 0], "and delighted in his forbidden society and wished they dared": [65535, 0], "delighted in his forbidden society and wished they dared to": [65535, 0], "in his forbidden society and wished they dared to be": [65535, 0], "his forbidden society and wished they dared to be like": [65535, 0], "forbidden society and wished they dared to be like him": [65535, 0], "society and wished they dared to be like him tom": [65535, 0], "and wished they dared to be like him tom was": [65535, 0], "wished they dared to be like him tom was like": [65535, 0], "they dared to be like him tom was like the": [65535, 0], "dared to be like him tom was like the rest": [65535, 0], "to be like him tom was like the rest of": [65535, 0], "be like him tom was like the rest of the": [65535, 0], "like him tom was like the rest of the respectable": [65535, 0], "him tom was like the rest of the respectable boys": [65535, 0], "tom was like the rest of the respectable boys in": [65535, 0], "was like the rest of the respectable boys in that": [65535, 0], "like the rest of the respectable boys in that he": [65535, 0], "the rest of the respectable boys in that he envied": [65535, 0], "rest of the respectable boys in that he envied huckleberry": [65535, 0], "of the respectable boys in that he envied huckleberry his": [65535, 0], "the respectable boys in that he envied huckleberry his gaudy": [65535, 0], "respectable boys in that he envied huckleberry his gaudy outcast": [65535, 0], "boys in that he envied huckleberry his gaudy outcast condition": [65535, 0], "in that he envied huckleberry his gaudy outcast condition and": [65535, 0], "that he envied huckleberry his gaudy outcast condition and was": [65535, 0], "he envied huckleberry his gaudy outcast condition and was under": [65535, 0], "envied huckleberry his gaudy outcast condition and was under strict": [65535, 0], "huckleberry his gaudy outcast condition and was under strict orders": [65535, 0], "his gaudy outcast condition and was under strict orders not": [65535, 0], "gaudy outcast condition and was under strict orders not to": [65535, 0], "outcast condition and was under strict orders not to play": [65535, 0], "condition and was under strict orders not to play with": [65535, 0], "and was under strict orders not to play with him": [65535, 0], "was under strict orders not to play with him so": [65535, 0], "under strict orders not to play with him so he": [65535, 0], "strict orders not to play with him so he played": [65535, 0], "orders not to play with him so he played with": [65535, 0], "not to play with him so he played with him": [65535, 0], "to play with him so he played with him every": [65535, 0], "play with him so he played with him every time": [65535, 0], "with him so he played with him every time he": [65535, 0], "him so he played with him every time he got": [65535, 0], "so he played with him every time he got a": [65535, 0], "he played with him every time he got a chance": [65535, 0], "played with him every time he got a chance huckleberry": [65535, 0], "with him every time he got a chance huckleberry was": [65535, 0], "him every time he got a chance huckleberry was always": [65535, 0], "every time he got a chance huckleberry was always dressed": [65535, 0], "time he got a chance huckleberry was always dressed in": [65535, 0], "he got a chance huckleberry was always dressed in the": [65535, 0], "got a chance huckleberry was always dressed in the cast": [65535, 0], "a chance huckleberry was always dressed in the cast off": [65535, 0], "chance huckleberry was always dressed in the cast off clothes": [65535, 0], "huckleberry was always dressed in the cast off clothes of": [65535, 0], "was always dressed in the cast off clothes of full": [65535, 0], "always dressed in the cast off clothes of full grown": [65535, 0], "dressed in the cast off clothes of full grown men": [65535, 0], "in the cast off clothes of full grown men and": [65535, 0], "the cast off clothes of full grown men and they": [65535, 0], "cast off clothes of full grown men and they were": [65535, 0], "off clothes of full grown men and they were in": [65535, 0], "clothes of full grown men and they were in perennial": [65535, 0], "of full grown men and they were in perennial bloom": [65535, 0], "full grown men and they were in perennial bloom and": [65535, 0], "grown men and they were in perennial bloom and fluttering": [65535, 0], "men and they were in perennial bloom and fluttering with": [65535, 0], "and they were in perennial bloom and fluttering with rags": [65535, 0], "they were in perennial bloom and fluttering with rags his": [65535, 0], "were in perennial bloom and fluttering with rags his hat": [65535, 0], "in perennial bloom and fluttering with rags his hat was": [65535, 0], "perennial bloom and fluttering with rags his hat was a": [65535, 0], "bloom and fluttering with rags his hat was a vast": [65535, 0], "and fluttering with rags his hat was a vast ruin": [65535, 0], "fluttering with rags his hat was a vast ruin with": [65535, 0], "with rags his hat was a vast ruin with a": [65535, 0], "rags his hat was a vast ruin with a wide": [65535, 0], "his hat was a vast ruin with a wide crescent": [65535, 0], "hat was a vast ruin with a wide crescent lopped": [65535, 0], "was a vast ruin with a wide crescent lopped out": [65535, 0], "a vast ruin with a wide crescent lopped out of": [65535, 0], "vast ruin with a wide crescent lopped out of its": [65535, 0], "ruin with a wide crescent lopped out of its brim": [65535, 0], "with a wide crescent lopped out of its brim his": [65535, 0], "a wide crescent lopped out of its brim his coat": [65535, 0], "wide crescent lopped out of its brim his coat when": [65535, 0], "crescent lopped out of its brim his coat when he": [65535, 0], "lopped out of its brim his coat when he wore": [65535, 0], "out of its brim his coat when he wore one": [65535, 0], "of its brim his coat when he wore one hung": [65535, 0], "its brim his coat when he wore one hung nearly": [65535, 0], "brim his coat when he wore one hung nearly to": [65535, 0], "his coat when he wore one hung nearly to his": [65535, 0], "coat when he wore one hung nearly to his heels": [65535, 0], "when he wore one hung nearly to his heels and": [65535, 0], "he wore one hung nearly to his heels and had": [65535, 0], "wore one hung nearly to his heels and had the": [65535, 0], "one hung nearly to his heels and had the rearward": [65535, 0], "hung nearly to his heels and had the rearward buttons": [65535, 0], "nearly to his heels and had the rearward buttons far": [65535, 0], "to his heels and had the rearward buttons far down": [65535, 0], "his heels and had the rearward buttons far down the": [65535, 0], "heels and had the rearward buttons far down the back": [65535, 0], "and had the rearward buttons far down the back but": [65535, 0], "had the rearward buttons far down the back but one": [65535, 0], "the rearward buttons far down the back but one suspender": [65535, 0], "rearward buttons far down the back but one suspender supported": [65535, 0], "buttons far down the back but one suspender supported his": [65535, 0], "far down the back but one suspender supported his trousers": [65535, 0], "down the back but one suspender supported his trousers the": [65535, 0], "the back but one suspender supported his trousers the seat": [65535, 0], "back but one suspender supported his trousers the seat of": [65535, 0], "but one suspender supported his trousers the seat of the": [65535, 0], "one suspender supported his trousers the seat of the trousers": [65535, 0], "suspender supported his trousers the seat of the trousers bagged": [65535, 0], "supported his trousers the seat of the trousers bagged low": [65535, 0], "his trousers the seat of the trousers bagged low and": [65535, 0], "trousers the seat of the trousers bagged low and contained": [65535, 0], "the seat of the trousers bagged low and contained nothing": [65535, 0], "seat of the trousers bagged low and contained nothing the": [65535, 0], "of the trousers bagged low and contained nothing the fringed": [65535, 0], "the trousers bagged low and contained nothing the fringed legs": [65535, 0], "trousers bagged low and contained nothing the fringed legs dragged": [65535, 0], "bagged low and contained nothing the fringed legs dragged in": [65535, 0], "low and contained nothing the fringed legs dragged in the": [65535, 0], "and contained nothing the fringed legs dragged in the dirt": [65535, 0], "contained nothing the fringed legs dragged in the dirt when": [65535, 0], "nothing the fringed legs dragged in the dirt when not": [65535, 0], "the fringed legs dragged in the dirt when not rolled": [65535, 0], "fringed legs dragged in the dirt when not rolled up": [65535, 0], "legs dragged in the dirt when not rolled up huckleberry": [65535, 0], "dragged in the dirt when not rolled up huckleberry came": [65535, 0], "in the dirt when not rolled up huckleberry came and": [65535, 0], "the dirt when not rolled up huckleberry came and went": [65535, 0], "dirt when not rolled up huckleberry came and went at": [65535, 0], "when not rolled up huckleberry came and went at his": [65535, 0], "not rolled up huckleberry came and went at his own": [65535, 0], "rolled up huckleberry came and went at his own free": [65535, 0], "up huckleberry came and went at his own free will": [65535, 0], "huckleberry came and went at his own free will he": [65535, 0], "came and went at his own free will he slept": [65535, 0], "and went at his own free will he slept on": [65535, 0], "went at his own free will he slept on doorsteps": [65535, 0], "at his own free will he slept on doorsteps in": [65535, 0], "his own free will he slept on doorsteps in fine": [65535, 0], "own free will he slept on doorsteps in fine weather": [65535, 0], "free will he slept on doorsteps in fine weather and": [65535, 0], "will he slept on doorsteps in fine weather and in": [65535, 0], "he slept on doorsteps in fine weather and in empty": [65535, 0], "slept on doorsteps in fine weather and in empty hogsheads": [65535, 0], "on doorsteps in fine weather and in empty hogsheads in": [65535, 0], "doorsteps in fine weather and in empty hogsheads in wet": [65535, 0], "in fine weather and in empty hogsheads in wet he": [65535, 0], "fine weather and in empty hogsheads in wet he did": [65535, 0], "weather and in empty hogsheads in wet he did not": [65535, 0], "and in empty hogsheads in wet he did not have": [65535, 0], "in empty hogsheads in wet he did not have to": [65535, 0], "empty hogsheads in wet he did not have to go": [65535, 0], "hogsheads in wet he did not have to go to": [65535, 0], "in wet he did not have to go to school": [65535, 0], "wet he did not have to go to school or": [65535, 0], "he did not have to go to school or to": [65535, 0], "did not have to go to school or to church": [65535, 0], "not have to go to school or to church or": [65535, 0], "have to go to school or to church or call": [65535, 0], "to go to school or to church or call any": [65535, 0], "go to school or to church or call any being": [65535, 0], "to school or to church or call any being master": [65535, 0], "school or to church or call any being master or": [65535, 0], "or to church or call any being master or obey": [65535, 0], "to church or call any being master or obey anybody": [65535, 0], "church or call any being master or obey anybody he": [65535, 0], "or call any being master or obey anybody he could": [65535, 0], "call any being master or obey anybody he could go": [65535, 0], "any being master or obey anybody he could go fishing": [65535, 0], "being master or obey anybody he could go fishing or": [65535, 0], "master or obey anybody he could go fishing or swimming": [65535, 0], "or obey anybody he could go fishing or swimming when": [65535, 0], "obey anybody he could go fishing or swimming when and": [65535, 0], "anybody he could go fishing or swimming when and where": [65535, 0], "he could go fishing or swimming when and where he": [65535, 0], "could go fishing or swimming when and where he chose": [65535, 0], "go fishing or swimming when and where he chose and": [65535, 0], "fishing or swimming when and where he chose and stay": [65535, 0], "or swimming when and where he chose and stay as": [65535, 0], "swimming when and where he chose and stay as long": [65535, 0], "when and where he chose and stay as long as": [65535, 0], "and where he chose and stay as long as it": [65535, 0], "where he chose and stay as long as it suited": [65535, 0], "he chose and stay as long as it suited him": [65535, 0], "chose and stay as long as it suited him nobody": [65535, 0], "and stay as long as it suited him nobody forbade": [65535, 0], "stay as long as it suited him nobody forbade him": [65535, 0], "as long as it suited him nobody forbade him to": [65535, 0], "long as it suited him nobody forbade him to fight": [65535, 0], "as it suited him nobody forbade him to fight he": [65535, 0], "it suited him nobody forbade him to fight he could": [65535, 0], "suited him nobody forbade him to fight he could sit": [65535, 0], "him nobody forbade him to fight he could sit up": [65535, 0], "nobody forbade him to fight he could sit up as": [65535, 0], "forbade him to fight he could sit up as late": [65535, 0], "him to fight he could sit up as late as": [65535, 0], "to fight he could sit up as late as he": [65535, 0], "fight he could sit up as late as he pleased": [65535, 0], "he could sit up as late as he pleased he": [65535, 0], "could sit up as late as he pleased he was": [65535, 0], "sit up as late as he pleased he was always": [65535, 0], "up as late as he pleased he was always the": [65535, 0], "as late as he pleased he was always the first": [65535, 0], "late as he pleased he was always the first boy": [65535, 0], "as he pleased he was always the first boy that": [65535, 0], "he pleased he was always the first boy that went": [65535, 0], "pleased he was always the first boy that went barefoot": [65535, 0], "he was always the first boy that went barefoot in": [65535, 0], "was always the first boy that went barefoot in the": [65535, 0], "always the first boy that went barefoot in the spring": [65535, 0], "the first boy that went barefoot in the spring and": [65535, 0], "first boy that went barefoot in the spring and the": [65535, 0], "boy that went barefoot in the spring and the last": [65535, 0], "that went barefoot in the spring and the last to": [65535, 0], "went barefoot in the spring and the last to resume": [65535, 0], "barefoot in the spring and the last to resume leather": [65535, 0], "in the spring and the last to resume leather in": [65535, 0], "the spring and the last to resume leather in the": [65535, 0], "spring and the last to resume leather in the fall": [65535, 0], "and the last to resume leather in the fall he": [65535, 0], "the last to resume leather in the fall he never": [65535, 0], "last to resume leather in the fall he never had": [65535, 0], "to resume leather in the fall he never had to": [65535, 0], "resume leather in the fall he never had to wash": [65535, 0], "leather in the fall he never had to wash nor": [65535, 0], "in the fall he never had to wash nor put": [65535, 0], "the fall he never had to wash nor put on": [65535, 0], "fall he never had to wash nor put on clean": [65535, 0], "he never had to wash nor put on clean clothes": [65535, 0], "never had to wash nor put on clean clothes he": [65535, 0], "had to wash nor put on clean clothes he could": [65535, 0], "to wash nor put on clean clothes he could swear": [65535, 0], "wash nor put on clean clothes he could swear wonderfully": [65535, 0], "nor put on clean clothes he could swear wonderfully in": [65535, 0], "put on clean clothes he could swear wonderfully in a": [65535, 0], "on clean clothes he could swear wonderfully in a word": [65535, 0], "clean clothes he could swear wonderfully in a word everything": [65535, 0], "clothes he could swear wonderfully in a word everything that": [65535, 0], "he could swear wonderfully in a word everything that goes": [65535, 0], "could swear wonderfully in a word everything that goes to": [65535, 0], "swear wonderfully in a word everything that goes to make": [65535, 0], "wonderfully in a word everything that goes to make life": [65535, 0], "in a word everything that goes to make life precious": [65535, 0], "a word everything that goes to make life precious that": [65535, 0], "word everything that goes to make life precious that boy": [65535, 0], "everything that goes to make life precious that boy had": [65535, 0], "that goes to make life precious that boy had so": [65535, 0], "goes to make life precious that boy had so thought": [65535, 0], "to make life precious that boy had so thought every": [65535, 0], "make life precious that boy had so thought every harassed": [65535, 0], "life precious that boy had so thought every harassed hampered": [65535, 0], "precious that boy had so thought every harassed hampered respectable": [65535, 0], "that boy had so thought every harassed hampered respectable boy": [65535, 0], "boy had so thought every harassed hampered respectable boy in": [65535, 0], "had so thought every harassed hampered respectable boy in st": [65535, 0], "so thought every harassed hampered respectable boy in st petersburg": [65535, 0], "thought every harassed hampered respectable boy in st petersburg tom": [65535, 0], "every harassed hampered respectable boy in st petersburg tom hailed": [65535, 0], "harassed hampered respectable boy in st petersburg tom hailed the": [65535, 0], "hampered respectable boy in st petersburg tom hailed the romantic": [65535, 0], "respectable boy in st petersburg tom hailed the romantic outcast": [65535, 0], "boy in st petersburg tom hailed the romantic outcast hello": [65535, 0], "in st petersburg tom hailed the romantic outcast hello huckleberry": [65535, 0], "st petersburg tom hailed the romantic outcast hello huckleberry hello": [65535, 0], "petersburg tom hailed the romantic outcast hello huckleberry hello yourself": [65535, 0], "tom hailed the romantic outcast hello huckleberry hello yourself and": [65535, 0], "hailed the romantic outcast hello huckleberry hello yourself and see": [65535, 0], "the romantic outcast hello huckleberry hello yourself and see how": [65535, 0], "romantic outcast hello huckleberry hello yourself and see how you": [65535, 0], "outcast hello huckleberry hello yourself and see how you like": [65535, 0], "hello huckleberry hello yourself and see how you like it": [65535, 0], "huckleberry hello yourself and see how you like it what's": [65535, 0], "hello yourself and see how you like it what's that": [65535, 0], "yourself and see how you like it what's that you": [65535, 0], "and see how you like it what's that you got": [65535, 0], "see how you like it what's that you got dead": [65535, 0], "how you like it what's that you got dead cat": [65535, 0], "you like it what's that you got dead cat lemme": [65535, 0], "like it what's that you got dead cat lemme see": [65535, 0], "it what's that you got dead cat lemme see him": [65535, 0], "what's that you got dead cat lemme see him huck": [65535, 0], "that you got dead cat lemme see him huck my": [65535, 0], "you got dead cat lemme see him huck my he's": [65535, 0], "got dead cat lemme see him huck my he's pretty": [65535, 0], "dead cat lemme see him huck my he's pretty stiff": [65535, 0], "cat lemme see him huck my he's pretty stiff where'd": [65535, 0], "lemme see him huck my he's pretty stiff where'd you": [65535, 0], "see him huck my he's pretty stiff where'd you get": [65535, 0], "him huck my he's pretty stiff where'd you get him": [65535, 0], "huck my he's pretty stiff where'd you get him bought": [65535, 0], "my he's pretty stiff where'd you get him bought him": [65535, 0], "he's pretty stiff where'd you get him bought him off'n": [65535, 0], "pretty stiff where'd you get him bought him off'n a": [65535, 0], "stiff where'd you get him bought him off'n a boy": [65535, 0], "where'd you get him bought him off'n a boy what": [65535, 0], "you get him bought him off'n a boy what did": [65535, 0], "get him bought him off'n a boy what did you": [65535, 0], "him bought him off'n a boy what did you give": [65535, 0], "bought him off'n a boy what did you give i": [65535, 0], "him off'n a boy what did you give i give": [65535, 0], "off'n a boy what did you give i give a": [65535, 0], "a boy what did you give i give a blue": [65535, 0], "boy what did you give i give a blue ticket": [65535, 0], "what did you give i give a blue ticket and": [65535, 0], "did you give i give a blue ticket and a": [65535, 0], "you give i give a blue ticket and a bladder": [65535, 0], "give i give a blue ticket and a bladder that": [65535, 0], "i give a blue ticket and a bladder that i": [65535, 0], "give a blue ticket and a bladder that i got": [65535, 0], "a blue ticket and a bladder that i got at": [65535, 0], "blue ticket and a bladder that i got at the": [65535, 0], "ticket and a bladder that i got at the slaughter": [65535, 0], "and a bladder that i got at the slaughter house": [65535, 0], "a bladder that i got at the slaughter house where'd": [65535, 0], "bladder that i got at the slaughter house where'd you": [65535, 0], "that i got at the slaughter house where'd you get": [65535, 0], "i got at the slaughter house where'd you get the": [65535, 0], "got at the slaughter house where'd you get the blue": [65535, 0], "at the slaughter house where'd you get the blue ticket": [65535, 0], "the slaughter house where'd you get the blue ticket bought": [65535, 0], "slaughter house where'd you get the blue ticket bought it": [65535, 0], "house where'd you get the blue ticket bought it off'n": [65535, 0], "where'd you get the blue ticket bought it off'n ben": [65535, 0], "you get the blue ticket bought it off'n ben rogers": [65535, 0], "get the blue ticket bought it off'n ben rogers two": [65535, 0], "the blue ticket bought it off'n ben rogers two weeks": [65535, 0], "blue ticket bought it off'n ben rogers two weeks ago": [65535, 0], "ticket bought it off'n ben rogers two weeks ago for": [65535, 0], "bought it off'n ben rogers two weeks ago for a": [65535, 0], "it off'n ben rogers two weeks ago for a hoop": [65535, 0], "off'n ben rogers two weeks ago for a hoop stick": [65535, 0], "ben rogers two weeks ago for a hoop stick say": [65535, 0], "rogers two weeks ago for a hoop stick say what": [65535, 0], "two weeks ago for a hoop stick say what is": [65535, 0], "weeks ago for a hoop stick say what is dead": [65535, 0], "ago for a hoop stick say what is dead cats": [65535, 0], "for a hoop stick say what is dead cats good": [65535, 0], "a hoop stick say what is dead cats good for": [65535, 0], "hoop stick say what is dead cats good for huck": [65535, 0], "stick say what is dead cats good for huck good": [65535, 0], "say what is dead cats good for huck good for": [65535, 0], "what is dead cats good for huck good for cure": [65535, 0], "is dead cats good for huck good for cure warts": [65535, 0], "dead cats good for huck good for cure warts with": [65535, 0], "cats good for huck good for cure warts with no": [65535, 0], "good for huck good for cure warts with no is": [65535, 0], "for huck good for cure warts with no is that": [65535, 0], "huck good for cure warts with no is that so": [65535, 0], "good for cure warts with no is that so i": [65535, 0], "for cure warts with no is that so i know": [65535, 0], "cure warts with no is that so i know something": [65535, 0], "warts with no is that so i know something that's": [65535, 0], "with no is that so i know something that's better": [65535, 0], "no is that so i know something that's better i": [65535, 0], "is that so i know something that's better i bet": [65535, 0], "that so i know something that's better i bet you": [65535, 0], "so i know something that's better i bet you don't": [65535, 0], "i know something that's better i bet you don't what": [65535, 0], "know something that's better i bet you don't what is": [65535, 0], "something that's better i bet you don't what is it": [65535, 0], "that's better i bet you don't what is it why": [65535, 0], "better i bet you don't what is it why spunk": [65535, 0], "i bet you don't what is it why spunk water": [65535, 0], "bet you don't what is it why spunk water spunk": [65535, 0], "you don't what is it why spunk water spunk water": [65535, 0], "don't what is it why spunk water spunk water i": [65535, 0], "what is it why spunk water spunk water i wouldn't": [65535, 0], "is it why spunk water spunk water i wouldn't give": [65535, 0], "it why spunk water spunk water i wouldn't give a": [65535, 0], "why spunk water spunk water i wouldn't give a dern": [65535, 0], "spunk water spunk water i wouldn't give a dern for": [65535, 0], "water spunk water i wouldn't give a dern for spunk": [65535, 0], "spunk water i wouldn't give a dern for spunk water": [65535, 0], "water i wouldn't give a dern for spunk water you": [65535, 0], "i wouldn't give a dern for spunk water you wouldn't": [65535, 0], "wouldn't give a dern for spunk water you wouldn't wouldn't": [65535, 0], "give a dern for spunk water you wouldn't wouldn't you": [65535, 0], "a dern for spunk water you wouldn't wouldn't you d'you": [65535, 0], "dern for spunk water you wouldn't wouldn't you d'you ever": [65535, 0], "for spunk water you wouldn't wouldn't you d'you ever try": [65535, 0], "spunk water you wouldn't wouldn't you d'you ever try it": [65535, 0], "water you wouldn't wouldn't you d'you ever try it no": [65535, 0], "you wouldn't wouldn't you d'you ever try it no i": [65535, 0], "wouldn't wouldn't you d'you ever try it no i hain't": [65535, 0], "wouldn't you d'you ever try it no i hain't but": [65535, 0], "you d'you ever try it no i hain't but bob": [65535, 0], "d'you ever try it no i hain't but bob tanner": [65535, 0], "ever try it no i hain't but bob tanner did": [65535, 0], "try it no i hain't but bob tanner did who": [65535, 0], "it no i hain't but bob tanner did who told": [65535, 0], "no i hain't but bob tanner did who told you": [65535, 0], "i hain't but bob tanner did who told you so": [65535, 0], "hain't but bob tanner did who told you so why": [65535, 0], "but bob tanner did who told you so why he": [65535, 0], "bob tanner did who told you so why he told": [65535, 0], "tanner did who told you so why he told jeff": [65535, 0], "did who told you so why he told jeff thatcher": [65535, 0], "who told you so why he told jeff thatcher and": [65535, 0], "told you so why he told jeff thatcher and jeff": [65535, 0], "you so why he told jeff thatcher and jeff told": [65535, 0], "so why he told jeff thatcher and jeff told johnny": [65535, 0], "why he told jeff thatcher and jeff told johnny baker": [65535, 0], "he told jeff thatcher and jeff told johnny baker and": [65535, 0], "told jeff thatcher and jeff told johnny baker and johnny": [65535, 0], "jeff thatcher and jeff told johnny baker and johnny told": [65535, 0], "thatcher and jeff told johnny baker and johnny told jim": [65535, 0], "and jeff told johnny baker and johnny told jim hollis": [65535, 0], "jeff told johnny baker and johnny told jim hollis and": [65535, 0], "told johnny baker and johnny told jim hollis and jim": [65535, 0], "johnny baker and johnny told jim hollis and jim told": [65535, 0], "baker and johnny told jim hollis and jim told ben": [65535, 0], "and johnny told jim hollis and jim told ben rogers": [65535, 0], "johnny told jim hollis and jim told ben rogers and": [65535, 0], "told jim hollis and jim told ben rogers and ben": [65535, 0], "jim hollis and jim told ben rogers and ben told": [65535, 0], "hollis and jim told ben rogers and ben told a": [65535, 0], "and jim told ben rogers and ben told a nigger": [65535, 0], "jim told ben rogers and ben told a nigger and": [65535, 0], "told ben rogers and ben told a nigger and the": [65535, 0], "ben rogers and ben told a nigger and the nigger": [65535, 0], "rogers and ben told a nigger and the nigger told": [65535, 0], "and ben told a nigger and the nigger told me": [65535, 0], "ben told a nigger and the nigger told me there": [65535, 0], "told a nigger and the nigger told me there now": [65535, 0], "a nigger and the nigger told me there now well": [65535, 0], "nigger and the nigger told me there now well what": [65535, 0], "and the nigger told me there now well what of": [65535, 0], "the nigger told me there now well what of it": [65535, 0], "nigger told me there now well what of it they'll": [65535, 0], "told me there now well what of it they'll all": [65535, 0], "me there now well what of it they'll all lie": [65535, 0], "there now well what of it they'll all lie leastways": [65535, 0], "now well what of it they'll all lie leastways all": [65535, 0], "well what of it they'll all lie leastways all but": [65535, 0], "what of it they'll all lie leastways all but the": [65535, 0], "of it they'll all lie leastways all but the nigger": [65535, 0], "it they'll all lie leastways all but the nigger i": [65535, 0], "they'll all lie leastways all but the nigger i don't": [65535, 0], "all lie leastways all but the nigger i don't know": [65535, 0], "lie leastways all but the nigger i don't know him": [65535, 0], "leastways all but the nigger i don't know him but": [65535, 0], "all but the nigger i don't know him but i": [65535, 0], "but the nigger i don't know him but i never": [65535, 0], "the nigger i don't know him but i never see": [65535, 0], "nigger i don't know him but i never see a": [65535, 0], "i don't know him but i never see a nigger": [65535, 0], "don't know him but i never see a nigger that": [65535, 0], "know him but i never see a nigger that wouldn't": [65535, 0], "him but i never see a nigger that wouldn't lie": [65535, 0], "but i never see a nigger that wouldn't lie shucks": [65535, 0], "i never see a nigger that wouldn't lie shucks now": [65535, 0], "never see a nigger that wouldn't lie shucks now you": [65535, 0], "see a nigger that wouldn't lie shucks now you tell": [65535, 0], "a nigger that wouldn't lie shucks now you tell me": [65535, 0], "nigger that wouldn't lie shucks now you tell me how": [65535, 0], "that wouldn't lie shucks now you tell me how bob": [65535, 0], "wouldn't lie shucks now you tell me how bob tanner": [65535, 0], "lie shucks now you tell me how bob tanner done": [65535, 0], "shucks now you tell me how bob tanner done it": [65535, 0], "now you tell me how bob tanner done it huck": [65535, 0], "you tell me how bob tanner done it huck why": [65535, 0], "tell me how bob tanner done it huck why he": [65535, 0], "me how bob tanner done it huck why he took": [65535, 0], "how bob tanner done it huck why he took and": [65535, 0], "bob tanner done it huck why he took and dipped": [65535, 0], "tanner done it huck why he took and dipped his": [65535, 0], "done it huck why he took and dipped his hand": [65535, 0], "it huck why he took and dipped his hand in": [65535, 0], "huck why he took and dipped his hand in a": [65535, 0], "why he took and dipped his hand in a rotten": [65535, 0], "he took and dipped his hand in a rotten stump": [65535, 0], "took and dipped his hand in a rotten stump where": [65535, 0], "and dipped his hand in a rotten stump where the": [65535, 0], "dipped his hand in a rotten stump where the rain": [65535, 0], "his hand in a rotten stump where the rain water": [65535, 0], "hand in a rotten stump where the rain water was": [65535, 0], "in a rotten stump where the rain water was in": [65535, 0], "a rotten stump where the rain water was in the": [65535, 0], "rotten stump where the rain water was in the daytime": [65535, 0], "stump where the rain water was in the daytime certainly": [65535, 0], "where the rain water was in the daytime certainly with": [65535, 0], "the rain water was in the daytime certainly with his": [65535, 0], "rain water was in the daytime certainly with his face": [65535, 0], "water was in the daytime certainly with his face to": [65535, 0], "was in the daytime certainly with his face to the": [65535, 0], "in the daytime certainly with his face to the stump": [65535, 0], "the daytime certainly with his face to the stump yes": [65535, 0], "daytime certainly with his face to the stump yes least": [65535, 0], "certainly with his face to the stump yes least i": [65535, 0], "with his face to the stump yes least i reckon": [65535, 0], "his face to the stump yes least i reckon so": [65535, 0], "face to the stump yes least i reckon so did": [65535, 0], "to the stump yes least i reckon so did he": [65535, 0], "the stump yes least i reckon so did he say": [65535, 0], "stump yes least i reckon so did he say anything": [65535, 0], "yes least i reckon so did he say anything i": [65535, 0], "least i reckon so did he say anything i don't": [65535, 0], "i reckon so did he say anything i don't reckon": [65535, 0], "reckon so did he say anything i don't reckon he": [65535, 0], "so did he say anything i don't reckon he did": [65535, 0], "did he say anything i don't reckon he did i": [65535, 0], "he say anything i don't reckon he did i don't": [65535, 0], "say anything i don't reckon he did i don't know": [65535, 0], "anything i don't reckon he did i don't know aha": [65535, 0], "i don't reckon he did i don't know aha talk": [65535, 0], "don't reckon he did i don't know aha talk about": [65535, 0], "reckon he did i don't know aha talk about trying": [65535, 0], "he did i don't know aha talk about trying to": [65535, 0], "did i don't know aha talk about trying to cure": [65535, 0], "i don't know aha talk about trying to cure warts": [65535, 0], "don't know aha talk about trying to cure warts with": [65535, 0], "know aha talk about trying to cure warts with spunk": [65535, 0], "aha talk about trying to cure warts with spunk water": [65535, 0], "talk about trying to cure warts with spunk water such": [65535, 0], "about trying to cure warts with spunk water such a": [65535, 0], "trying to cure warts with spunk water such a blame": [65535, 0], "to cure warts with spunk water such a blame fool": [65535, 0], "cure warts with spunk water such a blame fool way": [65535, 0], "warts with spunk water such a blame fool way as": [65535, 0], "with spunk water such a blame fool way as that": [65535, 0], "spunk water such a blame fool way as that why": [65535, 0], "water such a blame fool way as that why that": [65535, 0], "such a blame fool way as that why that ain't": [65535, 0], "a blame fool way as that why that ain't a": [65535, 0], "blame fool way as that why that ain't a going": [65535, 0], "fool way as that why that ain't a going to": [65535, 0], "way as that why that ain't a going to do": [65535, 0], "as that why that ain't a going to do any": [65535, 0], "that why that ain't a going to do any good": [65535, 0], "why that ain't a going to do any good you": [65535, 0], "that ain't a going to do any good you got": [65535, 0], "ain't a going to do any good you got to": [65535, 0], "a going to do any good you got to go": [65535, 0], "going to do any good you got to go all": [65535, 0], "to do any good you got to go all by": [65535, 0], "do any good you got to go all by yourself": [65535, 0], "any good you got to go all by yourself to": [65535, 0], "good you got to go all by yourself to the": [65535, 0], "you got to go all by yourself to the middle": [65535, 0], "got to go all by yourself to the middle of": [65535, 0], "to go all by yourself to the middle of the": [65535, 0], "go all by yourself to the middle of the woods": [65535, 0], "all by yourself to the middle of the woods where": [65535, 0], "by yourself to the middle of the woods where you": [65535, 0], "yourself to the middle of the woods where you know": [65535, 0], "to the middle of the woods where you know there's": [65535, 0], "the middle of the woods where you know there's a": [65535, 0], "middle of the woods where you know there's a spunk": [65535, 0], "of the woods where you know there's a spunk water": [65535, 0], "the woods where you know there's a spunk water stump": [65535, 0], "woods where you know there's a spunk water stump and": [65535, 0], "where you know there's a spunk water stump and just": [65535, 0], "you know there's a spunk water stump and just as": [65535, 0], "know there's a spunk water stump and just as it's": [65535, 0], "there's a spunk water stump and just as it's midnight": [65535, 0], "a spunk water stump and just as it's midnight you": [65535, 0], "spunk water stump and just as it's midnight you back": [65535, 0], "water stump and just as it's midnight you back up": [65535, 0], "stump and just as it's midnight you back up against": [65535, 0], "and just as it's midnight you back up against the": [65535, 0], "just as it's midnight you back up against the stump": [65535, 0], "as it's midnight you back up against the stump and": [65535, 0], "it's midnight you back up against the stump and jam": [65535, 0], "midnight you back up against the stump and jam your": [65535, 0], "you back up against the stump and jam your hand": [65535, 0], "back up against the stump and jam your hand in": [65535, 0], "up against the stump and jam your hand in and": [65535, 0], "against the stump and jam your hand in and say": [65535, 0], "the stump and jam your hand in and say 'barley": [65535, 0], "stump and jam your hand in and say 'barley corn": [65535, 0], "and jam your hand in and say 'barley corn barley": [65535, 0], "jam your hand in and say 'barley corn barley corn": [65535, 0], "your hand in and say 'barley corn barley corn injun": [65535, 0], "hand in and say 'barley corn barley corn injun meal": [65535, 0], "in and say 'barley corn barley corn injun meal shorts": [65535, 0], "and say 'barley corn barley corn injun meal shorts spunk": [65535, 0], "say 'barley corn barley corn injun meal shorts spunk water": [65535, 0], "'barley corn barley corn injun meal shorts spunk water spunk": [65535, 0], "corn barley corn injun meal shorts spunk water spunk water": [65535, 0], "barley corn injun meal shorts spunk water spunk water swaller": [65535, 0], "corn injun meal shorts spunk water spunk water swaller these": [65535, 0], "injun meal shorts spunk water spunk water swaller these warts": [65535, 0], "meal shorts spunk water spunk water swaller these warts '": [65535, 0], "shorts spunk water spunk water swaller these warts ' and": [65535, 0], "spunk water spunk water swaller these warts ' and then": [65535, 0], "water spunk water swaller these warts ' and then walk": [65535, 0], "spunk water swaller these warts ' and then walk away": [65535, 0], "water swaller these warts ' and then walk away quick": [65535, 0], "swaller these warts ' and then walk away quick eleven": [65535, 0], "these warts ' and then walk away quick eleven steps": [65535, 0], "warts ' and then walk away quick eleven steps with": [65535, 0], "' and then walk away quick eleven steps with your": [65535, 0], "and then walk away quick eleven steps with your eyes": [65535, 0], "then walk away quick eleven steps with your eyes shut": [65535, 0], "walk away quick eleven steps with your eyes shut and": [65535, 0], "away quick eleven steps with your eyes shut and then": [65535, 0], "quick eleven steps with your eyes shut and then turn": [65535, 0], "eleven steps with your eyes shut and then turn around": [65535, 0], "steps with your eyes shut and then turn around three": [65535, 0], "with your eyes shut and then turn around three times": [65535, 0], "your eyes shut and then turn around three times and": [65535, 0], "eyes shut and then turn around three times and walk": [65535, 0], "shut and then turn around three times and walk home": [65535, 0], "and then turn around three times and walk home without": [65535, 0], "then turn around three times and walk home without speaking": [65535, 0], "turn around three times and walk home without speaking to": [65535, 0], "around three times and walk home without speaking to anybody": [65535, 0], "three times and walk home without speaking to anybody because": [65535, 0], "times and walk home without speaking to anybody because if": [65535, 0], "and walk home without speaking to anybody because if you": [65535, 0], "walk home without speaking to anybody because if you speak": [65535, 0], "home without speaking to anybody because if you speak the": [65535, 0], "without speaking to anybody because if you speak the charm's": [65535, 0], "speaking to anybody because if you speak the charm's busted": [65535, 0], "to anybody because if you speak the charm's busted well": [65535, 0], "anybody because if you speak the charm's busted well that": [65535, 0], "because if you speak the charm's busted well that sounds": [65535, 0], "if you speak the charm's busted well that sounds like": [65535, 0], "you speak the charm's busted well that sounds like a": [65535, 0], "speak the charm's busted well that sounds like a good": [65535, 0], "the charm's busted well that sounds like a good way": [65535, 0], "charm's busted well that sounds like a good way but": [65535, 0], "busted well that sounds like a good way but that": [65535, 0], "well that sounds like a good way but that ain't": [65535, 0], "that sounds like a good way but that ain't the": [65535, 0], "sounds like a good way but that ain't the way": [65535, 0], "like a good way but that ain't the way bob": [65535, 0], "a good way but that ain't the way bob tanner": [65535, 0], "good way but that ain't the way bob tanner done": [65535, 0], "way but that ain't the way bob tanner done no": [65535, 0], "but that ain't the way bob tanner done no sir": [65535, 0], "that ain't the way bob tanner done no sir you": [65535, 0], "ain't the way bob tanner done no sir you can": [65535, 0], "the way bob tanner done no sir you can bet": [65535, 0], "way bob tanner done no sir you can bet he": [65535, 0], "bob tanner done no sir you can bet he didn't": [65535, 0], "tanner done no sir you can bet he didn't becuz": [65535, 0], "done no sir you can bet he didn't becuz he's": [65535, 0], "no sir you can bet he didn't becuz he's the": [65535, 0], "sir you can bet he didn't becuz he's the wartiest": [65535, 0], "you can bet he didn't becuz he's the wartiest boy": [65535, 0], "can bet he didn't becuz he's the wartiest boy in": [65535, 0], "bet he didn't becuz he's the wartiest boy in this": [65535, 0], "he didn't becuz he's the wartiest boy in this town": [65535, 0], "didn't becuz he's the wartiest boy in this town and": [65535, 0], "becuz he's the wartiest boy in this town and he": [65535, 0], "he's the wartiest boy in this town and he wouldn't": [65535, 0], "the wartiest boy in this town and he wouldn't have": [65535, 0], "wartiest boy in this town and he wouldn't have a": [65535, 0], "boy in this town and he wouldn't have a wart": [65535, 0], "in this town and he wouldn't have a wart on": [65535, 0], "this town and he wouldn't have a wart on him": [65535, 0], "town and he wouldn't have a wart on him if": [65535, 0], "and he wouldn't have a wart on him if he'd": [65535, 0], "he wouldn't have a wart on him if he'd knowed": [65535, 0], "wouldn't have a wart on him if he'd knowed how": [65535, 0], "have a wart on him if he'd knowed how to": [65535, 0], "a wart on him if he'd knowed how to work": [65535, 0], "wart on him if he'd knowed how to work spunk": [65535, 0], "on him if he'd knowed how to work spunk water": [65535, 0], "him if he'd knowed how to work spunk water i've": [65535, 0], "if he'd knowed how to work spunk water i've took": [65535, 0], "he'd knowed how to work spunk water i've took off": [65535, 0], "knowed how to work spunk water i've took off thousands": [65535, 0], "how to work spunk water i've took off thousands of": [65535, 0], "to work spunk water i've took off thousands of warts": [65535, 0], "work spunk water i've took off thousands of warts off": [65535, 0], "spunk water i've took off thousands of warts off of": [65535, 0], "water i've took off thousands of warts off of my": [65535, 0], "i've took off thousands of warts off of my hands": [65535, 0], "took off thousands of warts off of my hands that": [65535, 0], "off thousands of warts off of my hands that way": [65535, 0], "thousands of warts off of my hands that way huck": [65535, 0], "of warts off of my hands that way huck i": [65535, 0], "warts off of my hands that way huck i play": [65535, 0], "off of my hands that way huck i play with": [65535, 0], "of my hands that way huck i play with frogs": [65535, 0], "my hands that way huck i play with frogs so": [65535, 0], "hands that way huck i play with frogs so much": [65535, 0], "that way huck i play with frogs so much that": [65535, 0], "way huck i play with frogs so much that i've": [65535, 0], "huck i play with frogs so much that i've always": [65535, 0], "i play with frogs so much that i've always got": [65535, 0], "play with frogs so much that i've always got considerable": [65535, 0], "with frogs so much that i've always got considerable many": [65535, 0], "frogs so much that i've always got considerable many warts": [65535, 0], "so much that i've always got considerable many warts sometimes": [65535, 0], "much that i've always got considerable many warts sometimes i": [65535, 0], "that i've always got considerable many warts sometimes i take": [65535, 0], "i've always got considerable many warts sometimes i take 'em": [65535, 0], "always got considerable many warts sometimes i take 'em off": [65535, 0], "got considerable many warts sometimes i take 'em off with": [65535, 0], "considerable many warts sometimes i take 'em off with a": [65535, 0], "many warts sometimes i take 'em off with a bean": [65535, 0], "warts sometimes i take 'em off with a bean yes": [65535, 0], "sometimes i take 'em off with a bean yes bean's": [65535, 0], "i take 'em off with a bean yes bean's good": [65535, 0], "take 'em off with a bean yes bean's good i've": [65535, 0], "'em off with a bean yes bean's good i've done": [65535, 0], "off with a bean yes bean's good i've done that": [65535, 0], "with a bean yes bean's good i've done that have": [65535, 0], "a bean yes bean's good i've done that have you": [65535, 0], "bean yes bean's good i've done that have you what's": [65535, 0], "yes bean's good i've done that have you what's your": [65535, 0], "bean's good i've done that have you what's your way": [65535, 0], "good i've done that have you what's your way you": [65535, 0], "i've done that have you what's your way you take": [65535, 0], "done that have you what's your way you take and": [65535, 0], "that have you what's your way you take and split": [65535, 0], "have you what's your way you take and split the": [65535, 0], "you what's your way you take and split the bean": [65535, 0], "what's your way you take and split the bean and": [65535, 0], "your way you take and split the bean and cut": [65535, 0], "way you take and split the bean and cut the": [65535, 0], "you take and split the bean and cut the wart": [65535, 0], "take and split the bean and cut the wart so": [65535, 0], "and split the bean and cut the wart so as": [65535, 0], "split the bean and cut the wart so as to": [65535, 0], "the bean and cut the wart so as to get": [65535, 0], "bean and cut the wart so as to get some": [65535, 0], "and cut the wart so as to get some blood": [65535, 0], "cut the wart so as to get some blood and": [65535, 0], "the wart so as to get some blood and then": [65535, 0], "wart so as to get some blood and then you": [65535, 0], "so as to get some blood and then you put": [65535, 0], "as to get some blood and then you put the": [65535, 0], "to get some blood and then you put the blood": [65535, 0], "get some blood and then you put the blood on": [65535, 0], "some blood and then you put the blood on one": [65535, 0], "blood and then you put the blood on one piece": [65535, 0], "and then you put the blood on one piece of": [65535, 0], "then you put the blood on one piece of the": [65535, 0], "you put the blood on one piece of the bean": [65535, 0], "put the blood on one piece of the bean and": [65535, 0], "the blood on one piece of the bean and take": [65535, 0], "blood on one piece of the bean and take and": [65535, 0], "on one piece of the bean and take and dig": [65535, 0], "one piece of the bean and take and dig a": [65535, 0], "piece of the bean and take and dig a hole": [65535, 0], "of the bean and take and dig a hole and": [65535, 0], "the bean and take and dig a hole and bury": [65535, 0], "bean and take and dig a hole and bury it": [65535, 0], "and take and dig a hole and bury it 'bout": [65535, 0], "take and dig a hole and bury it 'bout midnight": [65535, 0], "and dig a hole and bury it 'bout midnight at": [65535, 0], "dig a hole and bury it 'bout midnight at the": [65535, 0], "a hole and bury it 'bout midnight at the crossroads": [65535, 0], "hole and bury it 'bout midnight at the crossroads in": [65535, 0], "and bury it 'bout midnight at the crossroads in the": [65535, 0], "bury it 'bout midnight at the crossroads in the dark": [65535, 0], "it 'bout midnight at the crossroads in the dark of": [65535, 0], "'bout midnight at the crossroads in the dark of the": [65535, 0], "midnight at the crossroads in the dark of the moon": [65535, 0], "at the crossroads in the dark of the moon and": [65535, 0], "the crossroads in the dark of the moon and then": [65535, 0], "crossroads in the dark of the moon and then you": [65535, 0], "in the dark of the moon and then you burn": [65535, 0], "the dark of the moon and then you burn up": [65535, 0], "dark of the moon and then you burn up the": [65535, 0], "of the moon and then you burn up the rest": [65535, 0], "the moon and then you burn up the rest of": [65535, 0], "moon and then you burn up the rest of the": [65535, 0], "and then you burn up the rest of the bean": [65535, 0], "then you burn up the rest of the bean you": [65535, 0], "you burn up the rest of the bean you see": [65535, 0], "burn up the rest of the bean you see that": [65535, 0], "up the rest of the bean you see that piece": [65535, 0], "the rest of the bean you see that piece that's": [65535, 0], "rest of the bean you see that piece that's got": [65535, 0], "of the bean you see that piece that's got the": [65535, 0], "the bean you see that piece that's got the blood": [65535, 0], "bean you see that piece that's got the blood on": [65535, 0], "you see that piece that's got the blood on it": [65535, 0], "see that piece that's got the blood on it will": [65535, 0], "that piece that's got the blood on it will keep": [65535, 0], "piece that's got the blood on it will keep drawing": [65535, 0], "that's got the blood on it will keep drawing and": [65535, 0], "got the blood on it will keep drawing and drawing": [65535, 0], "the blood on it will keep drawing and drawing trying": [65535, 0], "blood on it will keep drawing and drawing trying to": [65535, 0], "on it will keep drawing and drawing trying to fetch": [65535, 0], "it will keep drawing and drawing trying to fetch the": [65535, 0], "will keep drawing and drawing trying to fetch the other": [65535, 0], "keep drawing and drawing trying to fetch the other piece": [65535, 0], "drawing and drawing trying to fetch the other piece to": [65535, 0], "and drawing trying to fetch the other piece to it": [65535, 0], "drawing trying to fetch the other piece to it and": [65535, 0], "trying to fetch the other piece to it and so": [65535, 0], "to fetch the other piece to it and so that": [65535, 0], "fetch the other piece to it and so that helps": [65535, 0], "the other piece to it and so that helps the": [65535, 0], "other piece to it and so that helps the blood": [65535, 0], "piece to it and so that helps the blood to": [65535, 0], "to it and so that helps the blood to draw": [65535, 0], "it and so that helps the blood to draw the": [65535, 0], "and so that helps the blood to draw the wart": [65535, 0], "so that helps the blood to draw the wart and": [65535, 0], "that helps the blood to draw the wart and pretty": [65535, 0], "helps the blood to draw the wart and pretty soon": [65535, 0], "the blood to draw the wart and pretty soon off": [65535, 0], "blood to draw the wart and pretty soon off she": [65535, 0], "to draw the wart and pretty soon off she comes": [65535, 0], "draw the wart and pretty soon off she comes yes": [65535, 0], "the wart and pretty soon off she comes yes that's": [65535, 0], "wart and pretty soon off she comes yes that's it": [65535, 0], "and pretty soon off she comes yes that's it huck": [65535, 0], "pretty soon off she comes yes that's it huck that's": [65535, 0], "soon off she comes yes that's it huck that's it": [65535, 0], "off she comes yes that's it huck that's it though": [65535, 0], "she comes yes that's it huck that's it though when": [65535, 0], "comes yes that's it huck that's it though when you're": [65535, 0], "yes that's it huck that's it though when you're burying": [65535, 0], "that's it huck that's it though when you're burying it": [65535, 0], "it huck that's it though when you're burying it if": [65535, 0], "huck that's it though when you're burying it if you": [65535, 0], "that's it though when you're burying it if you say": [65535, 0], "it though when you're burying it if you say 'down": [65535, 0], "though when you're burying it if you say 'down bean": [65535, 0], "when you're burying it if you say 'down bean off": [65535, 0], "you're burying it if you say 'down bean off wart": [65535, 0], "burying it if you say 'down bean off wart come": [65535, 0], "it if you say 'down bean off wart come no": [65535, 0], "if you say 'down bean off wart come no more": [65535, 0], "you say 'down bean off wart come no more to": [65535, 0], "say 'down bean off wart come no more to bother": [65535, 0], "'down bean off wart come no more to bother me": [65535, 0], "bean off wart come no more to bother me '": [65535, 0], "off wart come no more to bother me ' it's": [65535, 0], "wart come no more to bother me ' it's better": [65535, 0], "come no more to bother me ' it's better that's": [65535, 0], "no more to bother me ' it's better that's the": [65535, 0], "more to bother me ' it's better that's the way": [65535, 0], "to bother me ' it's better that's the way joe": [65535, 0], "bother me ' it's better that's the way joe harper": [65535, 0], "me ' it's better that's the way joe harper does": [65535, 0], "' it's better that's the way joe harper does and": [65535, 0], "it's better that's the way joe harper does and he's": [65535, 0], "better that's the way joe harper does and he's been": [65535, 0], "that's the way joe harper does and he's been nearly": [65535, 0], "the way joe harper does and he's been nearly to": [65535, 0], "way joe harper does and he's been nearly to coonville": [65535, 0], "joe harper does and he's been nearly to coonville and": [65535, 0], "harper does and he's been nearly to coonville and most": [65535, 0], "does and he's been nearly to coonville and most everywheres": [65535, 0], "and he's been nearly to coonville and most everywheres but": [65535, 0], "he's been nearly to coonville and most everywheres but say": [65535, 0], "been nearly to coonville and most everywheres but say how": [65535, 0], "nearly to coonville and most everywheres but say how do": [65535, 0], "to coonville and most everywheres but say how do you": [65535, 0], "coonville and most everywheres but say how do you cure": [65535, 0], "and most everywheres but say how do you cure 'em": [65535, 0], "most everywheres but say how do you cure 'em with": [65535, 0], "everywheres but say how do you cure 'em with dead": [65535, 0], "but say how do you cure 'em with dead cats": [65535, 0], "say how do you cure 'em with dead cats why": [65535, 0], "how do you cure 'em with dead cats why you": [65535, 0], "do you cure 'em with dead cats why you take": [65535, 0], "you cure 'em with dead cats why you take your": [65535, 0], "cure 'em with dead cats why you take your cat": [65535, 0], "'em with dead cats why you take your cat and": [65535, 0], "with dead cats why you take your cat and go": [65535, 0], "dead cats why you take your cat and go and": [65535, 0], "cats why you take your cat and go and get": [65535, 0], "why you take your cat and go and get in": [65535, 0], "you take your cat and go and get in the": [65535, 0], "take your cat and go and get in the graveyard": [65535, 0], "your cat and go and get in the graveyard 'long": [65535, 0], "cat and go and get in the graveyard 'long about": [65535, 0], "and go and get in the graveyard 'long about midnight": [65535, 0], "go and get in the graveyard 'long about midnight when": [65535, 0], "and get in the graveyard 'long about midnight when somebody": [65535, 0], "get in the graveyard 'long about midnight when somebody that": [65535, 0], "in the graveyard 'long about midnight when somebody that was": [65535, 0], "the graveyard 'long about midnight when somebody that was wicked": [65535, 0], "graveyard 'long about midnight when somebody that was wicked has": [65535, 0], "'long about midnight when somebody that was wicked has been": [65535, 0], "about midnight when somebody that was wicked has been buried": [65535, 0], "midnight when somebody that was wicked has been buried and": [65535, 0], "when somebody that was wicked has been buried and when": [65535, 0], "somebody that was wicked has been buried and when it's": [65535, 0], "that was wicked has been buried and when it's midnight": [65535, 0], "was wicked has been buried and when it's midnight a": [65535, 0], "wicked has been buried and when it's midnight a devil": [65535, 0], "has been buried and when it's midnight a devil will": [65535, 0], "been buried and when it's midnight a devil will come": [65535, 0], "buried and when it's midnight a devil will come or": [65535, 0], "and when it's midnight a devil will come or maybe": [65535, 0], "when it's midnight a devil will come or maybe two": [65535, 0], "it's midnight a devil will come or maybe two or": [65535, 0], "midnight a devil will come or maybe two or three": [65535, 0], "a devil will come or maybe two or three but": [65535, 0], "devil will come or maybe two or three but you": [65535, 0], "will come or maybe two or three but you can't": [65535, 0], "come or maybe two or three but you can't see": [65535, 0], "or maybe two or three but you can't see 'em": [65535, 0], "maybe two or three but you can't see 'em you": [65535, 0], "two or three but you can't see 'em you can": [65535, 0], "or three but you can't see 'em you can only": [65535, 0], "three but you can't see 'em you can only hear": [65535, 0], "but you can't see 'em you can only hear something": [65535, 0], "you can't see 'em you can only hear something like": [65535, 0], "can't see 'em you can only hear something like the": [65535, 0], "see 'em you can only hear something like the wind": [65535, 0], "'em you can only hear something like the wind or": [65535, 0], "you can only hear something like the wind or maybe": [65535, 0], "can only hear something like the wind or maybe hear": [65535, 0], "only hear something like the wind or maybe hear 'em": [65535, 0], "hear something like the wind or maybe hear 'em talk": [65535, 0], "something like the wind or maybe hear 'em talk and": [65535, 0], "like the wind or maybe hear 'em talk and when": [65535, 0], "the wind or maybe hear 'em talk and when they're": [65535, 0], "wind or maybe hear 'em talk and when they're taking": [65535, 0], "or maybe hear 'em talk and when they're taking that": [65535, 0], "maybe hear 'em talk and when they're taking that feller": [65535, 0], "hear 'em talk and when they're taking that feller away": [65535, 0], "'em talk and when they're taking that feller away you": [65535, 0], "talk and when they're taking that feller away you heave": [65535, 0], "and when they're taking that feller away you heave your": [65535, 0], "when they're taking that feller away you heave your cat": [65535, 0], "they're taking that feller away you heave your cat after": [65535, 0], "taking that feller away you heave your cat after 'em": [65535, 0], "that feller away you heave your cat after 'em and": [65535, 0], "feller away you heave your cat after 'em and say": [65535, 0], "away you heave your cat after 'em and say 'devil": [65535, 0], "you heave your cat after 'em and say 'devil follow": [65535, 0], "heave your cat after 'em and say 'devil follow corpse": [65535, 0], "your cat after 'em and say 'devil follow corpse cat": [65535, 0], "cat after 'em and say 'devil follow corpse cat follow": [65535, 0], "after 'em and say 'devil follow corpse cat follow devil": [65535, 0], "'em and say 'devil follow corpse cat follow devil warts": [65535, 0], "and say 'devil follow corpse cat follow devil warts follow": [65535, 0], "say 'devil follow corpse cat follow devil warts follow cat": [65535, 0], "'devil follow corpse cat follow devil warts follow cat i'm": [65535, 0], "follow corpse cat follow devil warts follow cat i'm done": [65535, 0], "corpse cat follow devil warts follow cat i'm done with": [65535, 0], "cat follow devil warts follow cat i'm done with ye": [65535, 0], "follow devil warts follow cat i'm done with ye '": [65535, 0], "devil warts follow cat i'm done with ye ' that'll": [65535, 0], "warts follow cat i'm done with ye ' that'll fetch": [65535, 0], "follow cat i'm done with ye ' that'll fetch any": [65535, 0], "cat i'm done with ye ' that'll fetch any wart": [65535, 0], "i'm done with ye ' that'll fetch any wart sounds": [65535, 0], "done with ye ' that'll fetch any wart sounds right": [65535, 0], "with ye ' that'll fetch any wart sounds right d'you": [65535, 0], "ye ' that'll fetch any wart sounds right d'you ever": [65535, 0], "' that'll fetch any wart sounds right d'you ever try": [65535, 0], "that'll fetch any wart sounds right d'you ever try it": [65535, 0], "fetch any wart sounds right d'you ever try it huck": [65535, 0], "any wart sounds right d'you ever try it huck no": [65535, 0], "wart sounds right d'you ever try it huck no but": [65535, 0], "sounds right d'you ever try it huck no but old": [65535, 0], "right d'you ever try it huck no but old mother": [65535, 0], "d'you ever try it huck no but old mother hopkins": [65535, 0], "ever try it huck no but old mother hopkins told": [65535, 0], "try it huck no but old mother hopkins told me": [65535, 0], "it huck no but old mother hopkins told me well": [65535, 0], "huck no but old mother hopkins told me well i": [65535, 0], "no but old mother hopkins told me well i reckon": [65535, 0], "but old mother hopkins told me well i reckon it's": [65535, 0], "old mother hopkins told me well i reckon it's so": [65535, 0], "mother hopkins told me well i reckon it's so then": [65535, 0], "hopkins told me well i reckon it's so then becuz": [65535, 0], "told me well i reckon it's so then becuz they": [65535, 0], "me well i reckon it's so then becuz they say": [65535, 0], "well i reckon it's so then becuz they say she's": [65535, 0], "i reckon it's so then becuz they say she's a": [65535, 0], "reckon it's so then becuz they say she's a witch": [65535, 0], "it's so then becuz they say she's a witch say": [65535, 0], "so then becuz they say she's a witch say why": [65535, 0], "then becuz they say she's a witch say why tom": [65535, 0], "becuz they say she's a witch say why tom i": [65535, 0], "they say she's a witch say why tom i know": [65535, 0], "say she's a witch say why tom i know she": [65535, 0], "she's a witch say why tom i know she is": [65535, 0], "a witch say why tom i know she is she": [65535, 0], "witch say why tom i know she is she witched": [65535, 0], "say why tom i know she is she witched pap": [65535, 0], "why tom i know she is she witched pap pap": [65535, 0], "tom i know she is she witched pap pap says": [65535, 0], "i know she is she witched pap pap says so": [65535, 0], "know she is she witched pap pap says so his": [65535, 0], "she is she witched pap pap says so his own": [65535, 0], "is she witched pap pap says so his own self": [65535, 0], "she witched pap pap says so his own self he": [65535, 0], "witched pap pap says so his own self he come": [65535, 0], "pap pap says so his own self he come along": [65535, 0], "pap says so his own self he come along one": [65535, 0], "says so his own self he come along one day": [65535, 0], "so his own self he come along one day and": [65535, 0], "his own self he come along one day and he": [65535, 0], "own self he come along one day and he see": [65535, 0], "self he come along one day and he see she": [65535, 0], "he come along one day and he see she was": [65535, 0], "come along one day and he see she was a": [65535, 0], "along one day and he see she was a witching": [65535, 0], "one day and he see she was a witching him": [65535, 0], "day and he see she was a witching him so": [65535, 0], "and he see she was a witching him so he": [65535, 0], "he see she was a witching him so he took": [65535, 0], "see she was a witching him so he took up": [65535, 0], "she was a witching him so he took up a": [65535, 0], "was a witching him so he took up a rock": [65535, 0], "a witching him so he took up a rock and": [65535, 0], "witching him so he took up a rock and if": [65535, 0], "him so he took up a rock and if she": [65535, 0], "so he took up a rock and if she hadn't": [65535, 0], "he took up a rock and if she hadn't dodged": [65535, 0], "took up a rock and if she hadn't dodged he'd": [65535, 0], "up a rock and if she hadn't dodged he'd a": [65535, 0], "a rock and if she hadn't dodged he'd a got": [65535, 0], "rock and if she hadn't dodged he'd a got her": [65535, 0], "and if she hadn't dodged he'd a got her well": [65535, 0], "if she hadn't dodged he'd a got her well that": [65535, 0], "she hadn't dodged he'd a got her well that very": [65535, 0], "hadn't dodged he'd a got her well that very night": [65535, 0], "dodged he'd a got her well that very night he": [65535, 0], "he'd a got her well that very night he rolled": [65535, 0], "a got her well that very night he rolled off'n": [65535, 0], "got her well that very night he rolled off'n a": [65535, 0], "her well that very night he rolled off'n a shed": [65535, 0], "well that very night he rolled off'n a shed wher'": [65535, 0], "that very night he rolled off'n a shed wher' he": [65535, 0], "very night he rolled off'n a shed wher' he was": [65535, 0], "night he rolled off'n a shed wher' he was a": [65535, 0], "he rolled off'n a shed wher' he was a layin": [65535, 0], "rolled off'n a shed wher' he was a layin drunk": [65535, 0], "off'n a shed wher' he was a layin drunk and": [65535, 0], "a shed wher' he was a layin drunk and broke": [65535, 0], "shed wher' he was a layin drunk and broke his": [65535, 0], "wher' he was a layin drunk and broke his arm": [65535, 0], "he was a layin drunk and broke his arm why": [65535, 0], "was a layin drunk and broke his arm why that's": [65535, 0], "a layin drunk and broke his arm why that's awful": [65535, 0], "layin drunk and broke his arm why that's awful how": [65535, 0], "drunk and broke his arm why that's awful how did": [65535, 0], "and broke his arm why that's awful how did he": [65535, 0], "broke his arm why that's awful how did he know": [65535, 0], "his arm why that's awful how did he know she": [65535, 0], "arm why that's awful how did he know she was": [65535, 0], "why that's awful how did he know she was a": [65535, 0], "that's awful how did he know she was a witching": [65535, 0], "awful how did he know she was a witching him": [65535, 0], "how did he know she was a witching him lord": [65535, 0], "did he know she was a witching him lord pap": [65535, 0], "he know she was a witching him lord pap can": [65535, 0], "know she was a witching him lord pap can tell": [65535, 0], "she was a witching him lord pap can tell easy": [65535, 0], "was a witching him lord pap can tell easy pap": [65535, 0], "a witching him lord pap can tell easy pap says": [65535, 0], "witching him lord pap can tell easy pap says when": [65535, 0], "him lord pap can tell easy pap says when they": [65535, 0], "lord pap can tell easy pap says when they keep": [65535, 0], "pap can tell easy pap says when they keep looking": [65535, 0], "can tell easy pap says when they keep looking at": [65535, 0], "tell easy pap says when they keep looking at you": [65535, 0], "easy pap says when they keep looking at you right": [65535, 0], "pap says when they keep looking at you right stiddy": [65535, 0], "says when they keep looking at you right stiddy they're": [65535, 0], "when they keep looking at you right stiddy they're a": [65535, 0], "they keep looking at you right stiddy they're a witching": [65535, 0], "keep looking at you right stiddy they're a witching you": [65535, 0], "looking at you right stiddy they're a witching you specially": [65535, 0], "at you right stiddy they're a witching you specially if": [65535, 0], "you right stiddy they're a witching you specially if they": [65535, 0], "right stiddy they're a witching you specially if they mumble": [65535, 0], "stiddy they're a witching you specially if they mumble becuz": [65535, 0], "they're a witching you specially if they mumble becuz when": [65535, 0], "a witching you specially if they mumble becuz when they": [65535, 0], "witching you specially if they mumble becuz when they mumble": [65535, 0], "you specially if they mumble becuz when they mumble they're": [65535, 0], "specially if they mumble becuz when they mumble they're saying": [65535, 0], "if they mumble becuz when they mumble they're saying the": [65535, 0], "they mumble becuz when they mumble they're saying the lord's": [65535, 0], "mumble becuz when they mumble they're saying the lord's prayer": [65535, 0], "becuz when they mumble they're saying the lord's prayer backards": [65535, 0], "when they mumble they're saying the lord's prayer backards say": [65535, 0], "they mumble they're saying the lord's prayer backards say hucky": [65535, 0], "mumble they're saying the lord's prayer backards say hucky when": [65535, 0], "they're saying the lord's prayer backards say hucky when you": [65535, 0], "saying the lord's prayer backards say hucky when you going": [65535, 0], "the lord's prayer backards say hucky when you going to": [65535, 0], "lord's prayer backards say hucky when you going to try": [65535, 0], "prayer backards say hucky when you going to try the": [65535, 0], "backards say hucky when you going to try the cat": [65535, 0], "say hucky when you going to try the cat to": [65535, 0], "hucky when you going to try the cat to night": [65535, 0], "when you going to try the cat to night i": [65535, 0], "you going to try the cat to night i reckon": [65535, 0], "going to try the cat to night i reckon they'll": [65535, 0], "to try the cat to night i reckon they'll come": [65535, 0], "try the cat to night i reckon they'll come after": [65535, 0], "the cat to night i reckon they'll come after old": [65535, 0], "cat to night i reckon they'll come after old hoss": [65535, 0], "to night i reckon they'll come after old hoss williams": [65535, 0], "night i reckon they'll come after old hoss williams to": [65535, 0], "i reckon they'll come after old hoss williams to night": [65535, 0], "reckon they'll come after old hoss williams to night but": [65535, 0], "they'll come after old hoss williams to night but they": [65535, 0], "come after old hoss williams to night but they buried": [65535, 0], "after old hoss williams to night but they buried him": [65535, 0], "old hoss williams to night but they buried him saturday": [65535, 0], "hoss williams to night but they buried him saturday didn't": [65535, 0], "williams to night but they buried him saturday didn't they": [65535, 0], "to night but they buried him saturday didn't they get": [65535, 0], "night but they buried him saturday didn't they get him": [65535, 0], "but they buried him saturday didn't they get him saturday": [65535, 0], "they buried him saturday didn't they get him saturday night": [65535, 0], "buried him saturday didn't they get him saturday night why": [65535, 0], "him saturday didn't they get him saturday night why how": [65535, 0], "saturday didn't they get him saturday night why how you": [65535, 0], "didn't they get him saturday night why how you talk": [65535, 0], "they get him saturday night why how you talk how": [65535, 0], "get him saturday night why how you talk how could": [65535, 0], "him saturday night why how you talk how could their": [65535, 0], "saturday night why how you talk how could their charms": [65535, 0], "night why how you talk how could their charms work": [65535, 0], "why how you talk how could their charms work till": [65535, 0], "how you talk how could their charms work till midnight": [65535, 0], "you talk how could their charms work till midnight and": [65535, 0], "talk how could their charms work till midnight and then": [65535, 0], "how could their charms work till midnight and then it's": [65535, 0], "could their charms work till midnight and then it's sunday": [65535, 0], "their charms work till midnight and then it's sunday devils": [65535, 0], "charms work till midnight and then it's sunday devils don't": [65535, 0], "work till midnight and then it's sunday devils don't slosh": [65535, 0], "till midnight and then it's sunday devils don't slosh around": [65535, 0], "midnight and then it's sunday devils don't slosh around much": [65535, 0], "and then it's sunday devils don't slosh around much of": [65535, 0], "then it's sunday devils don't slosh around much of a": [65535, 0], "it's sunday devils don't slosh around much of a sunday": [65535, 0], "sunday devils don't slosh around much of a sunday i": [65535, 0], "devils don't slosh around much of a sunday i don't": [65535, 0], "don't slosh around much of a sunday i don't reckon": [65535, 0], "slosh around much of a sunday i don't reckon i": [65535, 0], "around much of a sunday i don't reckon i never": [65535, 0], "much of a sunday i don't reckon i never thought": [65535, 0], "of a sunday i don't reckon i never thought of": [65535, 0], "a sunday i don't reckon i never thought of that": [65535, 0], "sunday i don't reckon i never thought of that that's": [65535, 0], "i don't reckon i never thought of that that's so": [65535, 0], "don't reckon i never thought of that that's so lemme": [65535, 0], "reckon i never thought of that that's so lemme go": [65535, 0], "i never thought of that that's so lemme go with": [65535, 0], "never thought of that that's so lemme go with you": [65535, 0], "thought of that that's so lemme go with you of": [65535, 0], "of that that's so lemme go with you of course": [65535, 0], "that that's so lemme go with you of course if": [65535, 0], "that's so lemme go with you of course if you": [65535, 0], "so lemme go with you of course if you ain't": [65535, 0], "lemme go with you of course if you ain't afeard": [65535, 0], "go with you of course if you ain't afeard afeard": [65535, 0], "with you of course if you ain't afeard afeard 'tain't": [65535, 0], "you of course if you ain't afeard afeard 'tain't likely": [65535, 0], "of course if you ain't afeard afeard 'tain't likely will": [65535, 0], "course if you ain't afeard afeard 'tain't likely will you": [65535, 0], "if you ain't afeard afeard 'tain't likely will you meow": [65535, 0], "you ain't afeard afeard 'tain't likely will you meow yes": [65535, 0], "ain't afeard afeard 'tain't likely will you meow yes and": [65535, 0], "afeard afeard 'tain't likely will you meow yes and you": [65535, 0], "afeard 'tain't likely will you meow yes and you meow": [65535, 0], "'tain't likely will you meow yes and you meow back": [65535, 0], "likely will you meow yes and you meow back if": [65535, 0], "will you meow yes and you meow back if you": [65535, 0], "you meow yes and you meow back if you get": [65535, 0], "meow yes and you meow back if you get a": [65535, 0], "yes and you meow back if you get a chance": [65535, 0], "and you meow back if you get a chance last": [65535, 0], "you meow back if you get a chance last time": [65535, 0], "meow back if you get a chance last time you": [65535, 0], "back if you get a chance last time you kep'": [65535, 0], "if you get a chance last time you kep' me": [65535, 0], "you get a chance last time you kep' me a": [65535, 0], "get a chance last time you kep' me a meowing": [65535, 0], "a chance last time you kep' me a meowing around": [65535, 0], "chance last time you kep' me a meowing around till": [65535, 0], "last time you kep' me a meowing around till old": [65535, 0], "time you kep' me a meowing around till old hays": [65535, 0], "you kep' me a meowing around till old hays went": [65535, 0], "kep' me a meowing around till old hays went to": [65535, 0], "me a meowing around till old hays went to throwing": [65535, 0], "a meowing around till old hays went to throwing rocks": [65535, 0], "meowing around till old hays went to throwing rocks at": [65535, 0], "around till old hays went to throwing rocks at me": [65535, 0], "till old hays went to throwing rocks at me and": [65535, 0], "old hays went to throwing rocks at me and says": [65535, 0], "hays went to throwing rocks at me and says 'dern": [65535, 0], "went to throwing rocks at me and says 'dern that": [65535, 0], "to throwing rocks at me and says 'dern that cat": [65535, 0], "throwing rocks at me and says 'dern that cat '": [65535, 0], "rocks at me and says 'dern that cat ' and": [65535, 0], "at me and says 'dern that cat ' and so": [65535, 0], "me and says 'dern that cat ' and so i": [65535, 0], "and says 'dern that cat ' and so i hove": [65535, 0], "says 'dern that cat ' and so i hove a": [65535, 0], "'dern that cat ' and so i hove a brick": [65535, 0], "that cat ' and so i hove a brick through": [65535, 0], "cat ' and so i hove a brick through his": [65535, 0], "' and so i hove a brick through his window": [65535, 0], "and so i hove a brick through his window but": [65535, 0], "so i hove a brick through his window but don't": [65535, 0], "i hove a brick through his window but don't you": [65535, 0], "hove a brick through his window but don't you tell": [65535, 0], "a brick through his window but don't you tell i": [65535, 0], "brick through his window but don't you tell i won't": [65535, 0], "through his window but don't you tell i won't i": [65535, 0], "his window but don't you tell i won't i couldn't": [65535, 0], "window but don't you tell i won't i couldn't meow": [65535, 0], "but don't you tell i won't i couldn't meow that": [65535, 0], "don't you tell i won't i couldn't meow that night": [65535, 0], "you tell i won't i couldn't meow that night becuz": [65535, 0], "tell i won't i couldn't meow that night becuz auntie": [65535, 0], "i won't i couldn't meow that night becuz auntie was": [65535, 0], "won't i couldn't meow that night becuz auntie was watching": [65535, 0], "i couldn't meow that night becuz auntie was watching me": [65535, 0], "couldn't meow that night becuz auntie was watching me but": [65535, 0], "meow that night becuz auntie was watching me but i'll": [65535, 0], "that night becuz auntie was watching me but i'll meow": [65535, 0], "night becuz auntie was watching me but i'll meow this": [65535, 0], "becuz auntie was watching me but i'll meow this time": [65535, 0], "auntie was watching me but i'll meow this time say": [65535, 0], "was watching me but i'll meow this time say what's": [65535, 0], "watching me but i'll meow this time say what's that": [65535, 0], "me but i'll meow this time say what's that nothing": [65535, 0], "but i'll meow this time say what's that nothing but": [65535, 0], "i'll meow this time say what's that nothing but a": [65535, 0], "meow this time say what's that nothing but a tick": [65535, 0], "this time say what's that nothing but a tick where'd": [65535, 0], "time say what's that nothing but a tick where'd you": [65535, 0], "say what's that nothing but a tick where'd you get": [65535, 0], "what's that nothing but a tick where'd you get him": [65535, 0], "that nothing but a tick where'd you get him out": [65535, 0], "nothing but a tick where'd you get him out in": [65535, 0], "but a tick where'd you get him out in the": [65535, 0], "a tick where'd you get him out in the woods": [65535, 0], "tick where'd you get him out in the woods what'll": [65535, 0], "where'd you get him out in the woods what'll you": [65535, 0], "you get him out in the woods what'll you take": [65535, 0], "get him out in the woods what'll you take for": [65535, 0], "him out in the woods what'll you take for him": [65535, 0], "out in the woods what'll you take for him i": [65535, 0], "in the woods what'll you take for him i don't": [65535, 0], "the woods what'll you take for him i don't know": [65535, 0], "woods what'll you take for him i don't know i": [65535, 0], "what'll you take for him i don't know i don't": [65535, 0], "you take for him i don't know i don't want": [65535, 0], "take for him i don't know i don't want to": [65535, 0], "for him i don't know i don't want to sell": [65535, 0], "him i don't know i don't want to sell him": [65535, 0], "i don't know i don't want to sell him all": [65535, 0], "don't know i don't want to sell him all right": [65535, 0], "know i don't want to sell him all right it's": [65535, 0], "i don't want to sell him all right it's a": [65535, 0], "don't want to sell him all right it's a mighty": [65535, 0], "want to sell him all right it's a mighty small": [65535, 0], "to sell him all right it's a mighty small tick": [65535, 0], "sell him all right it's a mighty small tick anyway": [65535, 0], "him all right it's a mighty small tick anyway oh": [65535, 0], "all right it's a mighty small tick anyway oh anybody": [65535, 0], "right it's a mighty small tick anyway oh anybody can": [65535, 0], "it's a mighty small tick anyway oh anybody can run": [65535, 0], "a mighty small tick anyway oh anybody can run a": [65535, 0], "mighty small tick anyway oh anybody can run a tick": [65535, 0], "small tick anyway oh anybody can run a tick down": [65535, 0], "tick anyway oh anybody can run a tick down that": [65535, 0], "anyway oh anybody can run a tick down that don't": [65535, 0], "oh anybody can run a tick down that don't belong": [65535, 0], "anybody can run a tick down that don't belong to": [65535, 0], "can run a tick down that don't belong to them": [65535, 0], "run a tick down that don't belong to them i'm": [65535, 0], "a tick down that don't belong to them i'm satisfied": [65535, 0], "tick down that don't belong to them i'm satisfied with": [65535, 0], "down that don't belong to them i'm satisfied with it": [65535, 0], "that don't belong to them i'm satisfied with it it's": [65535, 0], "don't belong to them i'm satisfied with it it's a": [65535, 0], "belong to them i'm satisfied with it it's a good": [65535, 0], "to them i'm satisfied with it it's a good enough": [65535, 0], "them i'm satisfied with it it's a good enough tick": [65535, 0], "i'm satisfied with it it's a good enough tick for": [65535, 0], "satisfied with it it's a good enough tick for me": [65535, 0], "with it it's a good enough tick for me sho": [65535, 0], "it it's a good enough tick for me sho there's": [65535, 0], "it's a good enough tick for me sho there's ticks": [65535, 0], "a good enough tick for me sho there's ticks a": [65535, 0], "good enough tick for me sho there's ticks a plenty": [65535, 0], "enough tick for me sho there's ticks a plenty i": [65535, 0], "tick for me sho there's ticks a plenty i could": [65535, 0], "for me sho there's ticks a plenty i could have": [65535, 0], "me sho there's ticks a plenty i could have a": [65535, 0], "sho there's ticks a plenty i could have a thousand": [65535, 0], "there's ticks a plenty i could have a thousand of": [65535, 0], "ticks a plenty i could have a thousand of 'em": [65535, 0], "a plenty i could have a thousand of 'em if": [65535, 0], "plenty i could have a thousand of 'em if i": [65535, 0], "i could have a thousand of 'em if i wanted": [65535, 0], "could have a thousand of 'em if i wanted to": [65535, 0], "have a thousand of 'em if i wanted to well": [65535, 0], "a thousand of 'em if i wanted to well why": [65535, 0], "thousand of 'em if i wanted to well why don't": [65535, 0], "of 'em if i wanted to well why don't you": [65535, 0], "'em if i wanted to well why don't you becuz": [65535, 0], "if i wanted to well why don't you becuz you": [65535, 0], "i wanted to well why don't you becuz you know": [65535, 0], "wanted to well why don't you becuz you know mighty": [65535, 0], "to well why don't you becuz you know mighty well": [65535, 0], "well why don't you becuz you know mighty well you": [65535, 0], "why don't you becuz you know mighty well you can't": [65535, 0], "don't you becuz you know mighty well you can't this": [65535, 0], "you becuz you know mighty well you can't this is": [65535, 0], "becuz you know mighty well you can't this is a": [65535, 0], "you know mighty well you can't this is a pretty": [65535, 0], "know mighty well you can't this is a pretty early": [65535, 0], "mighty well you can't this is a pretty early tick": [65535, 0], "well you can't this is a pretty early tick i": [65535, 0], "you can't this is a pretty early tick i reckon": [65535, 0], "can't this is a pretty early tick i reckon it's": [65535, 0], "this is a pretty early tick i reckon it's the": [65535, 0], "is a pretty early tick i reckon it's the first": [65535, 0], "a pretty early tick i reckon it's the first one": [65535, 0], "pretty early tick i reckon it's the first one i've": [65535, 0], "early tick i reckon it's the first one i've seen": [65535, 0], "tick i reckon it's the first one i've seen this": [65535, 0], "i reckon it's the first one i've seen this year": [65535, 0], "reckon it's the first one i've seen this year say": [65535, 0], "it's the first one i've seen this year say huck": [65535, 0], "the first one i've seen this year say huck i'll": [65535, 0], "first one i've seen this year say huck i'll give": [65535, 0], "one i've seen this year say huck i'll give you": [65535, 0], "i've seen this year say huck i'll give you my": [65535, 0], "seen this year say huck i'll give you my tooth": [65535, 0], "this year say huck i'll give you my tooth for": [65535, 0], "year say huck i'll give you my tooth for him": [65535, 0], "say huck i'll give you my tooth for him less": [65535, 0], "huck i'll give you my tooth for him less see": [65535, 0], "i'll give you my tooth for him less see it": [65535, 0], "give you my tooth for him less see it tom": [65535, 0], "you my tooth for him less see it tom got": [65535, 0], "my tooth for him less see it tom got out": [65535, 0], "tooth for him less see it tom got out a": [65535, 0], "for him less see it tom got out a bit": [65535, 0], "him less see it tom got out a bit of": [65535, 0], "less see it tom got out a bit of paper": [65535, 0], "see it tom got out a bit of paper and": [65535, 0], "it tom got out a bit of paper and carefully": [65535, 0], "tom got out a bit of paper and carefully unrolled": [65535, 0], "got out a bit of paper and carefully unrolled it": [65535, 0], "out a bit of paper and carefully unrolled it huckleberry": [65535, 0], "a bit of paper and carefully unrolled it huckleberry viewed": [65535, 0], "bit of paper and carefully unrolled it huckleberry viewed it": [65535, 0], "of paper and carefully unrolled it huckleberry viewed it wistfully": [65535, 0], "paper and carefully unrolled it huckleberry viewed it wistfully the": [65535, 0], "and carefully unrolled it huckleberry viewed it wistfully the temptation": [65535, 0], "carefully unrolled it huckleberry viewed it wistfully the temptation was": [65535, 0], "unrolled it huckleberry viewed it wistfully the temptation was very": [65535, 0], "it huckleberry viewed it wistfully the temptation was very strong": [65535, 0], "huckleberry viewed it wistfully the temptation was very strong at": [65535, 0], "viewed it wistfully the temptation was very strong at last": [65535, 0], "it wistfully the temptation was very strong at last he": [65535, 0], "wistfully the temptation was very strong at last he said": [65535, 0], "the temptation was very strong at last he said is": [65535, 0], "temptation was very strong at last he said is it": [65535, 0], "was very strong at last he said is it genuwyne": [65535, 0], "very strong at last he said is it genuwyne tom": [65535, 0], "strong at last he said is it genuwyne tom lifted": [65535, 0], "at last he said is it genuwyne tom lifted his": [65535, 0], "last he said is it genuwyne tom lifted his lip": [65535, 0], "he said is it genuwyne tom lifted his lip and": [65535, 0], "said is it genuwyne tom lifted his lip and showed": [65535, 0], "is it genuwyne tom lifted his lip and showed the": [65535, 0], "it genuwyne tom lifted his lip and showed the vacancy": [65535, 0], "genuwyne tom lifted his lip and showed the vacancy well": [65535, 0], "tom lifted his lip and showed the vacancy well all": [65535, 0], "lifted his lip and showed the vacancy well all right": [65535, 0], "his lip and showed the vacancy well all right said": [65535, 0], "lip and showed the vacancy well all right said huckleberry": [65535, 0], "and showed the vacancy well all right said huckleberry it's": [65535, 0], "showed the vacancy well all right said huckleberry it's a": [65535, 0], "the vacancy well all right said huckleberry it's a trade": [65535, 0], "vacancy well all right said huckleberry it's a trade tom": [65535, 0], "well all right said huckleberry it's a trade tom enclosed": [65535, 0], "all right said huckleberry it's a trade tom enclosed the": [65535, 0], "right said huckleberry it's a trade tom enclosed the tick": [65535, 0], "said huckleberry it's a trade tom enclosed the tick in": [65535, 0], "huckleberry it's a trade tom enclosed the tick in the": [65535, 0], "it's a trade tom enclosed the tick in the percussion": [65535, 0], "a trade tom enclosed the tick in the percussion cap": [65535, 0], "trade tom enclosed the tick in the percussion cap box": [65535, 0], "tom enclosed the tick in the percussion cap box that": [65535, 0], "enclosed the tick in the percussion cap box that had": [65535, 0], "the tick in the percussion cap box that had lately": [65535, 0], "tick in the percussion cap box that had lately been": [65535, 0], "in the percussion cap box that had lately been the": [65535, 0], "the percussion cap box that had lately been the pinchbug's": [65535, 0], "percussion cap box that had lately been the pinchbug's prison": [65535, 0], "cap box that had lately been the pinchbug's prison and": [65535, 0], "box that had lately been the pinchbug's prison and the": [65535, 0], "that had lately been the pinchbug's prison and the boys": [65535, 0], "had lately been the pinchbug's prison and the boys separated": [65535, 0], "lately been the pinchbug's prison and the boys separated each": [65535, 0], "been the pinchbug's prison and the boys separated each feeling": [65535, 0], "the pinchbug's prison and the boys separated each feeling wealthier": [65535, 0], "pinchbug's prison and the boys separated each feeling wealthier than": [65535, 0], "prison and the boys separated each feeling wealthier than before": [65535, 0], "and the boys separated each feeling wealthier than before when": [65535, 0], "the boys separated each feeling wealthier than before when tom": [65535, 0], "boys separated each feeling wealthier than before when tom reached": [65535, 0], "separated each feeling wealthier than before when tom reached the": [65535, 0], "each feeling wealthier than before when tom reached the little": [65535, 0], "feeling wealthier than before when tom reached the little isolated": [65535, 0], "wealthier than before when tom reached the little isolated frame": [65535, 0], "than before when tom reached the little isolated frame schoolhouse": [65535, 0], "before when tom reached the little isolated frame schoolhouse he": [65535, 0], "when tom reached the little isolated frame schoolhouse he strode": [65535, 0], "tom reached the little isolated frame schoolhouse he strode in": [65535, 0], "reached the little isolated frame schoolhouse he strode in briskly": [65535, 0], "the little isolated frame schoolhouse he strode in briskly with": [65535, 0], "little isolated frame schoolhouse he strode in briskly with the": [65535, 0], "isolated frame schoolhouse he strode in briskly with the manner": [65535, 0], "frame schoolhouse he strode in briskly with the manner of": [65535, 0], "schoolhouse he strode in briskly with the manner of one": [65535, 0], "he strode in briskly with the manner of one who": [65535, 0], "strode in briskly with the manner of one who had": [65535, 0], "in briskly with the manner of one who had come": [65535, 0], "briskly with the manner of one who had come with": [65535, 0], "with the manner of one who had come with all": [65535, 0], "the manner of one who had come with all honest": [65535, 0], "manner of one who had come with all honest speed": [65535, 0], "of one who had come with all honest speed he": [65535, 0], "one who had come with all honest speed he hung": [65535, 0], "who had come with all honest speed he hung his": [65535, 0], "had come with all honest speed he hung his hat": [65535, 0], "come with all honest speed he hung his hat on": [65535, 0], "with all honest speed he hung his hat on a": [65535, 0], "all honest speed he hung his hat on a peg": [65535, 0], "honest speed he hung his hat on a peg and": [65535, 0], "speed he hung his hat on a peg and flung": [65535, 0], "he hung his hat on a peg and flung himself": [65535, 0], "hung his hat on a peg and flung himself into": [65535, 0], "his hat on a peg and flung himself into his": [65535, 0], "hat on a peg and flung himself into his seat": [65535, 0], "on a peg and flung himself into his seat with": [65535, 0], "a peg and flung himself into his seat with business": [65535, 0], "peg and flung himself into his seat with business like": [65535, 0], "and flung himself into his seat with business like alacrity": [65535, 0], "flung himself into his seat with business like alacrity the": [65535, 0], "himself into his seat with business like alacrity the master": [65535, 0], "into his seat with business like alacrity the master throned": [65535, 0], "his seat with business like alacrity the master throned on": [65535, 0], "seat with business like alacrity the master throned on high": [65535, 0], "with business like alacrity the master throned on high in": [65535, 0], "business like alacrity the master throned on high in his": [65535, 0], "like alacrity the master throned on high in his great": [65535, 0], "alacrity the master throned on high in his great splint": [65535, 0], "the master throned on high in his great splint bottom": [65535, 0], "master throned on high in his great splint bottom arm": [65535, 0], "throned on high in his great splint bottom arm chair": [65535, 0], "on high in his great splint bottom arm chair was": [65535, 0], "high in his great splint bottom arm chair was dozing": [65535, 0], "in his great splint bottom arm chair was dozing lulled": [65535, 0], "his great splint bottom arm chair was dozing lulled by": [65535, 0], "great splint bottom arm chair was dozing lulled by the": [65535, 0], "splint bottom arm chair was dozing lulled by the drowsy": [65535, 0], "bottom arm chair was dozing lulled by the drowsy hum": [65535, 0], "arm chair was dozing lulled by the drowsy hum of": [65535, 0], "chair was dozing lulled by the drowsy hum of study": [65535, 0], "was dozing lulled by the drowsy hum of study the": [65535, 0], "dozing lulled by the drowsy hum of study the interruption": [65535, 0], "lulled by the drowsy hum of study the interruption roused": [65535, 0], "by the drowsy hum of study the interruption roused him": [65535, 0], "the drowsy hum of study the interruption roused him thomas": [65535, 0], "drowsy hum of study the interruption roused him thomas sawyer": [65535, 0], "hum of study the interruption roused him thomas sawyer tom": [65535, 0], "of study the interruption roused him thomas sawyer tom knew": [65535, 0], "study the interruption roused him thomas sawyer tom knew that": [65535, 0], "the interruption roused him thomas sawyer tom knew that when": [65535, 0], "interruption roused him thomas sawyer tom knew that when his": [65535, 0], "roused him thomas sawyer tom knew that when his name": [65535, 0], "him thomas sawyer tom knew that when his name was": [65535, 0], "thomas sawyer tom knew that when his name was pronounced": [65535, 0], "sawyer tom knew that when his name was pronounced in": [65535, 0], "tom knew that when his name was pronounced in full": [65535, 0], "knew that when his name was pronounced in full it": [65535, 0], "that when his name was pronounced in full it meant": [65535, 0], "when his name was pronounced in full it meant trouble": [65535, 0], "his name was pronounced in full it meant trouble sir": [65535, 0], "name was pronounced in full it meant trouble sir come": [65535, 0], "was pronounced in full it meant trouble sir come up": [65535, 0], "pronounced in full it meant trouble sir come up here": [65535, 0], "in full it meant trouble sir come up here now": [65535, 0], "full it meant trouble sir come up here now sir": [65535, 0], "it meant trouble sir come up here now sir why": [65535, 0], "meant trouble sir come up here now sir why are": [65535, 0], "trouble sir come up here now sir why are you": [65535, 0], "sir come up here now sir why are you late": [65535, 0], "come up here now sir why are you late again": [65535, 0], "up here now sir why are you late again as": [65535, 0], "here now sir why are you late again as usual": [65535, 0], "now sir why are you late again as usual tom": [65535, 0], "sir why are you late again as usual tom was": [65535, 0], "why are you late again as usual tom was about": [65535, 0], "are you late again as usual tom was about to": [65535, 0], "you late again as usual tom was about to take": [65535, 0], "late again as usual tom was about to take refuge": [65535, 0], "again as usual tom was about to take refuge in": [65535, 0], "as usual tom was about to take refuge in a": [65535, 0], "usual tom was about to take refuge in a lie": [65535, 0], "tom was about to take refuge in a lie when": [65535, 0], "was about to take refuge in a lie when he": [65535, 0], "about to take refuge in a lie when he saw": [65535, 0], "to take refuge in a lie when he saw two": [65535, 0], "take refuge in a lie when he saw two long": [65535, 0], "refuge in a lie when he saw two long tails": [65535, 0], "in a lie when he saw two long tails of": [65535, 0], "a lie when he saw two long tails of yellow": [65535, 0], "lie when he saw two long tails of yellow hair": [65535, 0], "when he saw two long tails of yellow hair hanging": [65535, 0], "he saw two long tails of yellow hair hanging down": [65535, 0], "saw two long tails of yellow hair hanging down a": [65535, 0], "two long tails of yellow hair hanging down a back": [65535, 0], "long tails of yellow hair hanging down a back that": [65535, 0], "tails of yellow hair hanging down a back that he": [65535, 0], "of yellow hair hanging down a back that he recognized": [65535, 0], "yellow hair hanging down a back that he recognized by": [65535, 0], "hair hanging down a back that he recognized by the": [65535, 0], "hanging down a back that he recognized by the electric": [65535, 0], "down a back that he recognized by the electric sympathy": [65535, 0], "a back that he recognized by the electric sympathy of": [65535, 0], "back that he recognized by the electric sympathy of love": [65535, 0], "that he recognized by the electric sympathy of love and": [65535, 0], "he recognized by the electric sympathy of love and by": [65535, 0], "recognized by the electric sympathy of love and by that": [65535, 0], "by the electric sympathy of love and by that form": [65535, 0], "the electric sympathy of love and by that form was": [65535, 0], "electric sympathy of love and by that form was the": [65535, 0], "sympathy of love and by that form was the only": [65535, 0], "of love and by that form was the only vacant": [65535, 0], "love and by that form was the only vacant place": [65535, 0], "and by that form was the only vacant place on": [65535, 0], "by that form was the only vacant place on the": [65535, 0], "that form was the only vacant place on the girls'": [65535, 0], "form was the only vacant place on the girls' side": [65535, 0], "was the only vacant place on the girls' side of": [65535, 0], "the only vacant place on the girls' side of the": [65535, 0], "only vacant place on the girls' side of the school": [65535, 0], "vacant place on the girls' side of the school house": [65535, 0], "place on the girls' side of the school house he": [65535, 0], "on the girls' side of the school house he instantly": [65535, 0], "the girls' side of the school house he instantly said": [65535, 0], "girls' side of the school house he instantly said i": [65535, 0], "side of the school house he instantly said i stopped": [65535, 0], "of the school house he instantly said i stopped to": [65535, 0], "the school house he instantly said i stopped to talk": [65535, 0], "school house he instantly said i stopped to talk with": [65535, 0], "house he instantly said i stopped to talk with huckleberry": [65535, 0], "he instantly said i stopped to talk with huckleberry finn": [65535, 0], "instantly said i stopped to talk with huckleberry finn the": [65535, 0], "said i stopped to talk with huckleberry finn the master's": [65535, 0], "i stopped to talk with huckleberry finn the master's pulse": [65535, 0], "stopped to talk with huckleberry finn the master's pulse stood": [65535, 0], "to talk with huckleberry finn the master's pulse stood still": [65535, 0], "talk with huckleberry finn the master's pulse stood still and": [65535, 0], "with huckleberry finn the master's pulse stood still and he": [65535, 0], "huckleberry finn the master's pulse stood still and he stared": [65535, 0], "finn the master's pulse stood still and he stared helplessly": [65535, 0], "the master's pulse stood still and he stared helplessly the": [65535, 0], "master's pulse stood still and he stared helplessly the buzz": [65535, 0], "pulse stood still and he stared helplessly the buzz of": [65535, 0], "stood still and he stared helplessly the buzz of study": [65535, 0], "still and he stared helplessly the buzz of study ceased": [65535, 0], "and he stared helplessly the buzz of study ceased the": [65535, 0], "he stared helplessly the buzz of study ceased the pupils": [65535, 0], "stared helplessly the buzz of study ceased the pupils wondered": [65535, 0], "helplessly the buzz of study ceased the pupils wondered if": [65535, 0], "the buzz of study ceased the pupils wondered if this": [65535, 0], "buzz of study ceased the pupils wondered if this foolhardy": [65535, 0], "of study ceased the pupils wondered if this foolhardy boy": [65535, 0], "study ceased the pupils wondered if this foolhardy boy had": [65535, 0], "ceased the pupils wondered if this foolhardy boy had lost": [65535, 0], "the pupils wondered if this foolhardy boy had lost his": [65535, 0], "pupils wondered if this foolhardy boy had lost his mind": [65535, 0], "wondered if this foolhardy boy had lost his mind the": [65535, 0], "if this foolhardy boy had lost his mind the master": [65535, 0], "this foolhardy boy had lost his mind the master said": [65535, 0], "foolhardy boy had lost his mind the master said you": [65535, 0], "boy had lost his mind the master said you you": [65535, 0], "had lost his mind the master said you you did": [65535, 0], "lost his mind the master said you you did what": [65535, 0], "his mind the master said you you did what stopped": [65535, 0], "mind the master said you you did what stopped to": [65535, 0], "the master said you you did what stopped to talk": [65535, 0], "master said you you did what stopped to talk with": [65535, 0], "said you you did what stopped to talk with huckleberry": [65535, 0], "you you did what stopped to talk with huckleberry finn": [65535, 0], "you did what stopped to talk with huckleberry finn there": [65535, 0], "did what stopped to talk with huckleberry finn there was": [65535, 0], "what stopped to talk with huckleberry finn there was no": [65535, 0], "stopped to talk with huckleberry finn there was no mistaking": [65535, 0], "to talk with huckleberry finn there was no mistaking the": [65535, 0], "talk with huckleberry finn there was no mistaking the words": [65535, 0], "with huckleberry finn there was no mistaking the words thomas": [65535, 0], "huckleberry finn there was no mistaking the words thomas sawyer": [65535, 0], "finn there was no mistaking the words thomas sawyer this": [65535, 0], "there was no mistaking the words thomas sawyer this is": [65535, 0], "was no mistaking the words thomas sawyer this is the": [65535, 0], "no mistaking the words thomas sawyer this is the most": [65535, 0], "mistaking the words thomas sawyer this is the most astounding": [65535, 0], "the words thomas sawyer this is the most astounding confession": [65535, 0], "words thomas sawyer this is the most astounding confession i": [65535, 0], "thomas sawyer this is the most astounding confession i have": [65535, 0], "sawyer this is the most astounding confession i have ever": [65535, 0], "this is the most astounding confession i have ever listened": [65535, 0], "is the most astounding confession i have ever listened to": [65535, 0], "the most astounding confession i have ever listened to no": [65535, 0], "most astounding confession i have ever listened to no mere": [65535, 0], "astounding confession i have ever listened to no mere ferule": [65535, 0], "confession i have ever listened to no mere ferule will": [65535, 0], "i have ever listened to no mere ferule will answer": [65535, 0], "have ever listened to no mere ferule will answer for": [65535, 0], "ever listened to no mere ferule will answer for this": [65535, 0], "listened to no mere ferule will answer for this offence": [65535, 0], "to no mere ferule will answer for this offence take": [65535, 0], "no mere ferule will answer for this offence take off": [65535, 0], "mere ferule will answer for this offence take off your": [65535, 0], "ferule will answer for this offence take off your jacket": [65535, 0], "will answer for this offence take off your jacket the": [65535, 0], "answer for this offence take off your jacket the master's": [65535, 0], "for this offence take off your jacket the master's arm": [65535, 0], "this offence take off your jacket the master's arm performed": [65535, 0], "offence take off your jacket the master's arm performed until": [65535, 0], "take off your jacket the master's arm performed until it": [65535, 0], "off your jacket the master's arm performed until it was": [65535, 0], "your jacket the master's arm performed until it was tired": [65535, 0], "jacket the master's arm performed until it was tired and": [65535, 0], "the master's arm performed until it was tired and the": [65535, 0], "master's arm performed until it was tired and the stock": [65535, 0], "arm performed until it was tired and the stock of": [65535, 0], "performed until it was tired and the stock of switches": [65535, 0], "until it was tired and the stock of switches notably": [65535, 0], "it was tired and the stock of switches notably diminished": [65535, 0], "was tired and the stock of switches notably diminished then": [65535, 0], "tired and the stock of switches notably diminished then the": [65535, 0], "and the stock of switches notably diminished then the order": [65535, 0], "the stock of switches notably diminished then the order followed": [65535, 0], "stock of switches notably diminished then the order followed now": [65535, 0], "of switches notably diminished then the order followed now sir": [65535, 0], "switches notably diminished then the order followed now sir go": [65535, 0], "notably diminished then the order followed now sir go and": [65535, 0], "diminished then the order followed now sir go and sit": [65535, 0], "then the order followed now sir go and sit with": [65535, 0], "the order followed now sir go and sit with the": [65535, 0], "order followed now sir go and sit with the girls": [65535, 0], "followed now sir go and sit with the girls and": [65535, 0], "now sir go and sit with the girls and let": [65535, 0], "sir go and sit with the girls and let this": [65535, 0], "go and sit with the girls and let this be": [65535, 0], "and sit with the girls and let this be a": [65535, 0], "sit with the girls and let this be a warning": [65535, 0], "with the girls and let this be a warning to": [65535, 0], "the girls and let this be a warning to you": [65535, 0], "girls and let this be a warning to you the": [65535, 0], "and let this be a warning to you the titter": [65535, 0], "let this be a warning to you the titter that": [65535, 0], "this be a warning to you the titter that rippled": [65535, 0], "be a warning to you the titter that rippled around": [65535, 0], "a warning to you the titter that rippled around the": [65535, 0], "warning to you the titter that rippled around the room": [65535, 0], "to you the titter that rippled around the room appeared": [65535, 0], "you the titter that rippled around the room appeared to": [65535, 0], "the titter that rippled around the room appeared to abash": [65535, 0], "titter that rippled around the room appeared to abash the": [65535, 0], "that rippled around the room appeared to abash the boy": [65535, 0], "rippled around the room appeared to abash the boy but": [65535, 0], "around the room appeared to abash the boy but in": [65535, 0], "the room appeared to abash the boy but in reality": [65535, 0], "room appeared to abash the boy but in reality that": [65535, 0], "appeared to abash the boy but in reality that result": [65535, 0], "to abash the boy but in reality that result was": [65535, 0], "abash the boy but in reality that result was caused": [65535, 0], "the boy but in reality that result was caused rather": [65535, 0], "boy but in reality that result was caused rather more": [65535, 0], "but in reality that result was caused rather more by": [65535, 0], "in reality that result was caused rather more by his": [65535, 0], "reality that result was caused rather more by his worshipful": [65535, 0], "that result was caused rather more by his worshipful awe": [65535, 0], "result was caused rather more by his worshipful awe of": [65535, 0], "was caused rather more by his worshipful awe of his": [65535, 0], "caused rather more by his worshipful awe of his unknown": [65535, 0], "rather more by his worshipful awe of his unknown idol": [65535, 0], "more by his worshipful awe of his unknown idol and": [65535, 0], "by his worshipful awe of his unknown idol and the": [65535, 0], "his worshipful awe of his unknown idol and the dread": [65535, 0], "worshipful awe of his unknown idol and the dread pleasure": [65535, 0], "awe of his unknown idol and the dread pleasure that": [65535, 0], "of his unknown idol and the dread pleasure that lay": [65535, 0], "his unknown idol and the dread pleasure that lay in": [65535, 0], "unknown idol and the dread pleasure that lay in his": [65535, 0], "idol and the dread pleasure that lay in his high": [65535, 0], "and the dread pleasure that lay in his high good": [65535, 0], "the dread pleasure that lay in his high good fortune": [65535, 0], "dread pleasure that lay in his high good fortune he": [65535, 0], "pleasure that lay in his high good fortune he sat": [65535, 0], "that lay in his high good fortune he sat down": [65535, 0], "lay in his high good fortune he sat down upon": [65535, 0], "in his high good fortune he sat down upon the": [65535, 0], "his high good fortune he sat down upon the end": [65535, 0], "high good fortune he sat down upon the end of": [65535, 0], "good fortune he sat down upon the end of the": [65535, 0], "fortune he sat down upon the end of the pine": [65535, 0], "he sat down upon the end of the pine bench": [65535, 0], "sat down upon the end of the pine bench and": [65535, 0], "down upon the end of the pine bench and the": [65535, 0], "upon the end of the pine bench and the girl": [65535, 0], "the end of the pine bench and the girl hitched": [65535, 0], "end of the pine bench and the girl hitched herself": [65535, 0], "of the pine bench and the girl hitched herself away": [65535, 0], "the pine bench and the girl hitched herself away from": [65535, 0], "pine bench and the girl hitched herself away from him": [65535, 0], "bench and the girl hitched herself away from him with": [65535, 0], "and the girl hitched herself away from him with a": [65535, 0], "the girl hitched herself away from him with a toss": [65535, 0], "girl hitched herself away from him with a toss of": [65535, 0], "hitched herself away from him with a toss of her": [65535, 0], "herself away from him with a toss of her head": [65535, 0], "away from him with a toss of her head nudges": [65535, 0], "from him with a toss of her head nudges and": [65535, 0], "him with a toss of her head nudges and winks": [65535, 0], "with a toss of her head nudges and winks and": [65535, 0], "a toss of her head nudges and winks and whispers": [65535, 0], "toss of her head nudges and winks and whispers traversed": [65535, 0], "of her head nudges and winks and whispers traversed the": [65535, 0], "her head nudges and winks and whispers traversed the room": [65535, 0], "head nudges and winks and whispers traversed the room but": [65535, 0], "nudges and winks and whispers traversed the room but tom": [65535, 0], "and winks and whispers traversed the room but tom sat": [65535, 0], "winks and whispers traversed the room but tom sat still": [65535, 0], "and whispers traversed the room but tom sat still with": [65535, 0], "whispers traversed the room but tom sat still with his": [65535, 0], "traversed the room but tom sat still with his arms": [65535, 0], "the room but tom sat still with his arms upon": [65535, 0], "room but tom sat still with his arms upon the": [65535, 0], "but tom sat still with his arms upon the long": [65535, 0], "tom sat still with his arms upon the long low": [65535, 0], "sat still with his arms upon the long low desk": [65535, 0], "still with his arms upon the long low desk before": [65535, 0], "with his arms upon the long low desk before him": [65535, 0], "his arms upon the long low desk before him and": [65535, 0], "arms upon the long low desk before him and seemed": [65535, 0], "upon the long low desk before him and seemed to": [65535, 0], "the long low desk before him and seemed to study": [65535, 0], "long low desk before him and seemed to study his": [65535, 0], "low desk before him and seemed to study his book": [65535, 0], "desk before him and seemed to study his book by": [65535, 0], "before him and seemed to study his book by and": [65535, 0], "him and seemed to study his book by and by": [65535, 0], "and seemed to study his book by and by attention": [65535, 0], "seemed to study his book by and by attention ceased": [65535, 0], "to study his book by and by attention ceased from": [65535, 0], "study his book by and by attention ceased from him": [65535, 0], "his book by and by attention ceased from him and": [65535, 0], "book by and by attention ceased from him and the": [65535, 0], "by and by attention ceased from him and the accustomed": [65535, 0], "and by attention ceased from him and the accustomed school": [65535, 0], "by attention ceased from him and the accustomed school murmur": [65535, 0], "attention ceased from him and the accustomed school murmur rose": [65535, 0], "ceased from him and the accustomed school murmur rose upon": [65535, 0], "from him and the accustomed school murmur rose upon the": [65535, 0], "him and the accustomed school murmur rose upon the dull": [65535, 0], "and the accustomed school murmur rose upon the dull air": [65535, 0], "the accustomed school murmur rose upon the dull air once": [65535, 0], "accustomed school murmur rose upon the dull air once more": [65535, 0], "school murmur rose upon the dull air once more presently": [65535, 0], "murmur rose upon the dull air once more presently the": [65535, 0], "rose upon the dull air once more presently the boy": [65535, 0], "upon the dull air once more presently the boy began": [65535, 0], "the dull air once more presently the boy began to": [65535, 0], "dull air once more presently the boy began to steal": [65535, 0], "air once more presently the boy began to steal furtive": [65535, 0], "once more presently the boy began to steal furtive glances": [65535, 0], "more presently the boy began to steal furtive glances at": [65535, 0], "presently the boy began to steal furtive glances at the": [65535, 0], "the boy began to steal furtive glances at the girl": [65535, 0], "boy began to steal furtive glances at the girl she": [65535, 0], "began to steal furtive glances at the girl she observed": [65535, 0], "to steal furtive glances at the girl she observed it": [65535, 0], "steal furtive glances at the girl she observed it made": [65535, 0], "furtive glances at the girl she observed it made a": [65535, 0], "glances at the girl she observed it made a mouth": [65535, 0], "at the girl she observed it made a mouth at": [65535, 0], "the girl she observed it made a mouth at him": [65535, 0], "girl she observed it made a mouth at him and": [65535, 0], "she observed it made a mouth at him and gave": [65535, 0], "observed it made a mouth at him and gave him": [65535, 0], "it made a mouth at him and gave him the": [65535, 0], "made a mouth at him and gave him the back": [65535, 0], "a mouth at him and gave him the back of": [65535, 0], "mouth at him and gave him the back of her": [65535, 0], "at him and gave him the back of her head": [65535, 0], "him and gave him the back of her head for": [65535, 0], "and gave him the back of her head for the": [65535, 0], "gave him the back of her head for the space": [65535, 0], "him the back of her head for the space of": [65535, 0], "the back of her head for the space of a": [65535, 0], "back of her head for the space of a minute": [65535, 0], "of her head for the space of a minute when": [65535, 0], "her head for the space of a minute when she": [65535, 0], "head for the space of a minute when she cautiously": [65535, 0], "for the space of a minute when she cautiously faced": [65535, 0], "the space of a minute when she cautiously faced around": [65535, 0], "space of a minute when she cautiously faced around again": [65535, 0], "of a minute when she cautiously faced around again a": [65535, 0], "a minute when she cautiously faced around again a peach": [65535, 0], "minute when she cautiously faced around again a peach lay": [65535, 0], "when she cautiously faced around again a peach lay before": [65535, 0], "she cautiously faced around again a peach lay before her": [65535, 0], "cautiously faced around again a peach lay before her she": [65535, 0], "faced around again a peach lay before her she thrust": [65535, 0], "around again a peach lay before her she thrust it": [65535, 0], "again a peach lay before her she thrust it away": [65535, 0], "a peach lay before her she thrust it away tom": [65535, 0], "peach lay before her she thrust it away tom gently": [65535, 0], "lay before her she thrust it away tom gently put": [65535, 0], "before her she thrust it away tom gently put it": [65535, 0], "her she thrust it away tom gently put it back": [65535, 0], "she thrust it away tom gently put it back she": [65535, 0], "thrust it away tom gently put it back she thrust": [65535, 0], "it away tom gently put it back she thrust it": [65535, 0], "away tom gently put it back she thrust it away": [65535, 0], "tom gently put it back she thrust it away again": [65535, 0], "gently put it back she thrust it away again but": [65535, 0], "put it back she thrust it away again but with": [65535, 0], "it back she thrust it away again but with less": [65535, 0], "back she thrust it away again but with less animosity": [65535, 0], "she thrust it away again but with less animosity tom": [65535, 0], "thrust it away again but with less animosity tom patiently": [65535, 0], "it away again but with less animosity tom patiently returned": [65535, 0], "away again but with less animosity tom patiently returned it": [65535, 0], "again but with less animosity tom patiently returned it to": [65535, 0], "but with less animosity tom patiently returned it to its": [65535, 0], "with less animosity tom patiently returned it to its place": [65535, 0], "less animosity tom patiently returned it to its place then": [65535, 0], "animosity tom patiently returned it to its place then she": [65535, 0], "tom patiently returned it to its place then she let": [65535, 0], "patiently returned it to its place then she let it": [65535, 0], "returned it to its place then she let it remain": [65535, 0], "it to its place then she let it remain tom": [65535, 0], "to its place then she let it remain tom scrawled": [65535, 0], "its place then she let it remain tom scrawled on": [65535, 0], "place then she let it remain tom scrawled on his": [65535, 0], "then she let it remain tom scrawled on his slate": [65535, 0], "she let it remain tom scrawled on his slate please": [65535, 0], "let it remain tom scrawled on his slate please take": [65535, 0], "it remain tom scrawled on his slate please take it": [65535, 0], "remain tom scrawled on his slate please take it i": [65535, 0], "tom scrawled on his slate please take it i got": [65535, 0], "scrawled on his slate please take it i got more": [65535, 0], "on his slate please take it i got more the": [65535, 0], "his slate please take it i got more the girl": [65535, 0], "slate please take it i got more the girl glanced": [65535, 0], "please take it i got more the girl glanced at": [65535, 0], "take it i got more the girl glanced at the": [65535, 0], "it i got more the girl glanced at the words": [65535, 0], "i got more the girl glanced at the words but": [65535, 0], "got more the girl glanced at the words but made": [65535, 0], "more the girl glanced at the words but made no": [65535, 0], "the girl glanced at the words but made no sign": [65535, 0], "girl glanced at the words but made no sign now": [65535, 0], "glanced at the words but made no sign now the": [65535, 0], "at the words but made no sign now the boy": [65535, 0], "the words but made no sign now the boy began": [65535, 0], "words but made no sign now the boy began to": [65535, 0], "but made no sign now the boy began to draw": [65535, 0], "made no sign now the boy began to draw something": [65535, 0], "no sign now the boy began to draw something on": [65535, 0], "sign now the boy began to draw something on the": [65535, 0], "now the boy began to draw something on the slate": [65535, 0], "the boy began to draw something on the slate hiding": [65535, 0], "boy began to draw something on the slate hiding his": [65535, 0], "began to draw something on the slate hiding his work": [65535, 0], "to draw something on the slate hiding his work with": [65535, 0], "draw something on the slate hiding his work with his": [65535, 0], "something on the slate hiding his work with his left": [65535, 0], "on the slate hiding his work with his left hand": [65535, 0], "the slate hiding his work with his left hand for": [65535, 0], "slate hiding his work with his left hand for a": [65535, 0], "hiding his work with his left hand for a time": [65535, 0], "his work with his left hand for a time the": [65535, 0], "work with his left hand for a time the girl": [65535, 0], "with his left hand for a time the girl refused": [65535, 0], "his left hand for a time the girl refused to": [65535, 0], "left hand for a time the girl refused to notice": [65535, 0], "hand for a time the girl refused to notice but": [65535, 0], "for a time the girl refused to notice but her": [65535, 0], "a time the girl refused to notice but her human": [65535, 0], "time the girl refused to notice but her human curiosity": [65535, 0], "the girl refused to notice but her human curiosity presently": [65535, 0], "girl refused to notice but her human curiosity presently began": [65535, 0], "refused to notice but her human curiosity presently began to": [65535, 0], "to notice but her human curiosity presently began to manifest": [65535, 0], "notice but her human curiosity presently began to manifest itself": [65535, 0], "but her human curiosity presently began to manifest itself by": [65535, 0], "her human curiosity presently began to manifest itself by hardly": [65535, 0], "human curiosity presently began to manifest itself by hardly perceptible": [65535, 0], "curiosity presently began to manifest itself by hardly perceptible signs": [65535, 0], "presently began to manifest itself by hardly perceptible signs the": [65535, 0], "began to manifest itself by hardly perceptible signs the boy": [65535, 0], "to manifest itself by hardly perceptible signs the boy worked": [65535, 0], "manifest itself by hardly perceptible signs the boy worked on": [65535, 0], "itself by hardly perceptible signs the boy worked on apparently": [65535, 0], "by hardly perceptible signs the boy worked on apparently unconscious": [65535, 0], "hardly perceptible signs the boy worked on apparently unconscious the": [65535, 0], "perceptible signs the boy worked on apparently unconscious the girl": [65535, 0], "signs the boy worked on apparently unconscious the girl made": [65535, 0], "the boy worked on apparently unconscious the girl made a": [65535, 0], "boy worked on apparently unconscious the girl made a sort": [65535, 0], "worked on apparently unconscious the girl made a sort of": [65535, 0], "on apparently unconscious the girl made a sort of noncommittal": [65535, 0], "apparently unconscious the girl made a sort of noncommittal attempt": [65535, 0], "unconscious the girl made a sort of noncommittal attempt to": [65535, 0], "the girl made a sort of noncommittal attempt to see": [65535, 0], "girl made a sort of noncommittal attempt to see but": [65535, 0], "made a sort of noncommittal attempt to see but the": [65535, 0], "a sort of noncommittal attempt to see but the boy": [65535, 0], "sort of noncommittal attempt to see but the boy did": [65535, 0], "of noncommittal attempt to see but the boy did not": [65535, 0], "noncommittal attempt to see but the boy did not betray": [65535, 0], "attempt to see but the boy did not betray that": [65535, 0], "to see but the boy did not betray that he": [65535, 0], "see but the boy did not betray that he was": [65535, 0], "but the boy did not betray that he was aware": [65535, 0], "the boy did not betray that he was aware of": [65535, 0], "boy did not betray that he was aware of it": [65535, 0], "did not betray that he was aware of it at": [65535, 0], "not betray that he was aware of it at last": [65535, 0], "betray that he was aware of it at last she": [65535, 0], "that he was aware of it at last she gave": [65535, 0], "he was aware of it at last she gave in": [65535, 0], "was aware of it at last she gave in and": [65535, 0], "aware of it at last she gave in and hesitatingly": [65535, 0], "of it at last she gave in and hesitatingly whispered": [65535, 0], "it at last she gave in and hesitatingly whispered let": [65535, 0], "at last she gave in and hesitatingly whispered let me": [65535, 0], "last she gave in and hesitatingly whispered let me see": [65535, 0], "she gave in and hesitatingly whispered let me see it": [65535, 0], "gave in and hesitatingly whispered let me see it tom": [65535, 0], "in and hesitatingly whispered let me see it tom partly": [65535, 0], "and hesitatingly whispered let me see it tom partly uncovered": [65535, 0], "hesitatingly whispered let me see it tom partly uncovered a": [65535, 0], "whispered let me see it tom partly uncovered a dismal": [65535, 0], "let me see it tom partly uncovered a dismal caricature": [65535, 0], "me see it tom partly uncovered a dismal caricature of": [65535, 0], "see it tom partly uncovered a dismal caricature of a": [65535, 0], "it tom partly uncovered a dismal caricature of a house": [65535, 0], "tom partly uncovered a dismal caricature of a house with": [65535, 0], "partly uncovered a dismal caricature of a house with two": [65535, 0], "uncovered a dismal caricature of a house with two gable": [65535, 0], "a dismal caricature of a house with two gable ends": [65535, 0], "dismal caricature of a house with two gable ends to": [65535, 0], "caricature of a house with two gable ends to it": [65535, 0], "of a house with two gable ends to it and": [65535, 0], "a house with two gable ends to it and a": [65535, 0], "house with two gable ends to it and a corkscrew": [65535, 0], "with two gable ends to it and a corkscrew of": [65535, 0], "two gable ends to it and a corkscrew of smoke": [65535, 0], "gable ends to it and a corkscrew of smoke issuing": [65535, 0], "ends to it and a corkscrew of smoke issuing from": [65535, 0], "to it and a corkscrew of smoke issuing from the": [65535, 0], "it and a corkscrew of smoke issuing from the chimney": [65535, 0], "and a corkscrew of smoke issuing from the chimney then": [65535, 0], "a corkscrew of smoke issuing from the chimney then the": [65535, 0], "corkscrew of smoke issuing from the chimney then the girl's": [65535, 0], "of smoke issuing from the chimney then the girl's interest": [65535, 0], "smoke issuing from the chimney then the girl's interest began": [65535, 0], "issuing from the chimney then the girl's interest began to": [65535, 0], "from the chimney then the girl's interest began to fasten": [65535, 0], "the chimney then the girl's interest began to fasten itself": [65535, 0], "chimney then the girl's interest began to fasten itself upon": [65535, 0], "then the girl's interest began to fasten itself upon the": [65535, 0], "the girl's interest began to fasten itself upon the work": [65535, 0], "girl's interest began to fasten itself upon the work and": [65535, 0], "interest began to fasten itself upon the work and she": [65535, 0], "began to fasten itself upon the work and she forgot": [65535, 0], "to fasten itself upon the work and she forgot everything": [65535, 0], "fasten itself upon the work and she forgot everything else": [65535, 0], "itself upon the work and she forgot everything else when": [65535, 0], "upon the work and she forgot everything else when it": [65535, 0], "the work and she forgot everything else when it was": [65535, 0], "work and she forgot everything else when it was finished": [65535, 0], "and she forgot everything else when it was finished she": [65535, 0], "she forgot everything else when it was finished she gazed": [65535, 0], "forgot everything else when it was finished she gazed a": [65535, 0], "everything else when it was finished she gazed a moment": [65535, 0], "else when it was finished she gazed a moment then": [65535, 0], "when it was finished she gazed a moment then whispered": [65535, 0], "it was finished she gazed a moment then whispered it's": [65535, 0], "was finished she gazed a moment then whispered it's nice": [65535, 0], "finished she gazed a moment then whispered it's nice make": [65535, 0], "she gazed a moment then whispered it's nice make a": [65535, 0], "gazed a moment then whispered it's nice make a man": [65535, 0], "a moment then whispered it's nice make a man the": [65535, 0], "moment then whispered it's nice make a man the artist": [65535, 0], "then whispered it's nice make a man the artist erected": [65535, 0], "whispered it's nice make a man the artist erected a": [65535, 0], "it's nice make a man the artist erected a man": [65535, 0], "nice make a man the artist erected a man in": [65535, 0], "make a man the artist erected a man in the": [65535, 0], "a man the artist erected a man in the front": [65535, 0], "man the artist erected a man in the front yard": [65535, 0], "the artist erected a man in the front yard that": [65535, 0], "artist erected a man in the front yard that resembled": [65535, 0], "erected a man in the front yard that resembled a": [65535, 0], "a man in the front yard that resembled a derrick": [65535, 0], "man in the front yard that resembled a derrick he": [65535, 0], "in the front yard that resembled a derrick he could": [65535, 0], "the front yard that resembled a derrick he could have": [65535, 0], "front yard that resembled a derrick he could have stepped": [65535, 0], "yard that resembled a derrick he could have stepped over": [65535, 0], "that resembled a derrick he could have stepped over the": [65535, 0], "resembled a derrick he could have stepped over the house": [65535, 0], "a derrick he could have stepped over the house but": [65535, 0], "derrick he could have stepped over the house but the": [65535, 0], "he could have stepped over the house but the girl": [65535, 0], "could have stepped over the house but the girl was": [65535, 0], "have stepped over the house but the girl was not": [65535, 0], "stepped over the house but the girl was not hypercritical": [65535, 0], "over the house but the girl was not hypercritical she": [65535, 0], "the house but the girl was not hypercritical she was": [65535, 0], "house but the girl was not hypercritical she was satisfied": [65535, 0], "but the girl was not hypercritical she was satisfied with": [65535, 0], "the girl was not hypercritical she was satisfied with the": [65535, 0], "girl was not hypercritical she was satisfied with the monster": [65535, 0], "was not hypercritical she was satisfied with the monster and": [65535, 0], "not hypercritical she was satisfied with the monster and whispered": [65535, 0], "hypercritical she was satisfied with the monster and whispered it's": [65535, 0], "she was satisfied with the monster and whispered it's a": [65535, 0], "was satisfied with the monster and whispered it's a beautiful": [65535, 0], "satisfied with the monster and whispered it's a beautiful man": [65535, 0], "with the monster and whispered it's a beautiful man now": [65535, 0], "the monster and whispered it's a beautiful man now make": [65535, 0], "monster and whispered it's a beautiful man now make me": [65535, 0], "and whispered it's a beautiful man now make me coming": [65535, 0], "whispered it's a beautiful man now make me coming along": [65535, 0], "it's a beautiful man now make me coming along tom": [65535, 0], "a beautiful man now make me coming along tom drew": [65535, 0], "beautiful man now make me coming along tom drew an": [65535, 0], "man now make me coming along tom drew an hour": [65535, 0], "now make me coming along tom drew an hour glass": [65535, 0], "make me coming along tom drew an hour glass with": [65535, 0], "me coming along tom drew an hour glass with a": [65535, 0], "coming along tom drew an hour glass with a full": [65535, 0], "along tom drew an hour glass with a full moon": [65535, 0], "tom drew an hour glass with a full moon and": [65535, 0], "drew an hour glass with a full moon and straw": [65535, 0], "an hour glass with a full moon and straw limbs": [65535, 0], "hour glass with a full moon and straw limbs to": [65535, 0], "glass with a full moon and straw limbs to it": [65535, 0], "with a full moon and straw limbs to it and": [65535, 0], "a full moon and straw limbs to it and armed": [65535, 0], "full moon and straw limbs to it and armed the": [65535, 0], "moon and straw limbs to it and armed the spreading": [65535, 0], "and straw limbs to it and armed the spreading fingers": [65535, 0], "straw limbs to it and armed the spreading fingers with": [65535, 0], "limbs to it and armed the spreading fingers with a": [65535, 0], "to it and armed the spreading fingers with a portentous": [65535, 0], "it and armed the spreading fingers with a portentous fan": [65535, 0], "and armed the spreading fingers with a portentous fan the": [65535, 0], "armed the spreading fingers with a portentous fan the girl": [65535, 0], "the spreading fingers with a portentous fan the girl said": [65535, 0], "spreading fingers with a portentous fan the girl said it's": [65535, 0], "fingers with a portentous fan the girl said it's ever": [65535, 0], "with a portentous fan the girl said it's ever so": [65535, 0], "a portentous fan the girl said it's ever so nice": [65535, 0], "portentous fan the girl said it's ever so nice i": [65535, 0], "fan the girl said it's ever so nice i wish": [65535, 0], "the girl said it's ever so nice i wish i": [65535, 0], "girl said it's ever so nice i wish i could": [65535, 0], "said it's ever so nice i wish i could draw": [65535, 0], "it's ever so nice i wish i could draw it's": [65535, 0], "ever so nice i wish i could draw it's easy": [65535, 0], "so nice i wish i could draw it's easy whispered": [65535, 0], "nice i wish i could draw it's easy whispered tom": [65535, 0], "i wish i could draw it's easy whispered tom i'll": [65535, 0], "wish i could draw it's easy whispered tom i'll learn": [65535, 0], "i could draw it's easy whispered tom i'll learn you": [65535, 0], "could draw it's easy whispered tom i'll learn you oh": [65535, 0], "draw it's easy whispered tom i'll learn you oh will": [65535, 0], "it's easy whispered tom i'll learn you oh will you": [65535, 0], "easy whispered tom i'll learn you oh will you when": [65535, 0], "whispered tom i'll learn you oh will you when at": [65535, 0], "tom i'll learn you oh will you when at noon": [65535, 0], "i'll learn you oh will you when at noon do": [65535, 0], "learn you oh will you when at noon do you": [65535, 0], "you oh will you when at noon do you go": [65535, 0], "oh will you when at noon do you go home": [65535, 0], "will you when at noon do you go home to": [65535, 0], "you when at noon do you go home to dinner": [65535, 0], "when at noon do you go home to dinner i'll": [65535, 0], "at noon do you go home to dinner i'll stay": [65535, 0], "noon do you go home to dinner i'll stay if": [65535, 0], "do you go home to dinner i'll stay if you": [65535, 0], "you go home to dinner i'll stay if you will": [65535, 0], "go home to dinner i'll stay if you will good": [65535, 0], "home to dinner i'll stay if you will good that's": [65535, 0], "to dinner i'll stay if you will good that's a": [65535, 0], "dinner i'll stay if you will good that's a whack": [65535, 0], "i'll stay if you will good that's a whack what's": [65535, 0], "stay if you will good that's a whack what's your": [65535, 0], "if you will good that's a whack what's your name": [65535, 0], "you will good that's a whack what's your name becky": [65535, 0], "will good that's a whack what's your name becky thatcher": [65535, 0], "good that's a whack what's your name becky thatcher what's": [65535, 0], "that's a whack what's your name becky thatcher what's yours": [65535, 0], "a whack what's your name becky thatcher what's yours oh": [65535, 0], "whack what's your name becky thatcher what's yours oh i": [65535, 0], "what's your name becky thatcher what's yours oh i know": [65535, 0], "your name becky thatcher what's yours oh i know it's": [65535, 0], "name becky thatcher what's yours oh i know it's thomas": [65535, 0], "becky thatcher what's yours oh i know it's thomas sawyer": [65535, 0], "thatcher what's yours oh i know it's thomas sawyer that's": [65535, 0], "what's yours oh i know it's thomas sawyer that's the": [65535, 0], "yours oh i know it's thomas sawyer that's the name": [65535, 0], "oh i know it's thomas sawyer that's the name they": [65535, 0], "i know it's thomas sawyer that's the name they lick": [65535, 0], "know it's thomas sawyer that's the name they lick me": [65535, 0], "it's thomas sawyer that's the name they lick me by": [65535, 0], "thomas sawyer that's the name they lick me by i'm": [65535, 0], "sawyer that's the name they lick me by i'm tom": [65535, 0], "that's the name they lick me by i'm tom when": [65535, 0], "the name they lick me by i'm tom when i'm": [65535, 0], "name they lick me by i'm tom when i'm good": [65535, 0], "they lick me by i'm tom when i'm good you": [65535, 0], "lick me by i'm tom when i'm good you call": [65535, 0], "me by i'm tom when i'm good you call me": [65535, 0], "by i'm tom when i'm good you call me tom": [65535, 0], "i'm tom when i'm good you call me tom will": [65535, 0], "tom when i'm good you call me tom will you": [65535, 0], "when i'm good you call me tom will you yes": [65535, 0], "i'm good you call me tom will you yes now": [65535, 0], "good you call me tom will you yes now tom": [65535, 0], "you call me tom will you yes now tom began": [65535, 0], "call me tom will you yes now tom began to": [65535, 0], "me tom will you yes now tom began to scrawl": [65535, 0], "tom will you yes now tom began to scrawl something": [65535, 0], "will you yes now tom began to scrawl something on": [65535, 0], "you yes now tom began to scrawl something on the": [65535, 0], "yes now tom began to scrawl something on the slate": [65535, 0], "now tom began to scrawl something on the slate hiding": [65535, 0], "tom began to scrawl something on the slate hiding the": [65535, 0], "began to scrawl something on the slate hiding the words": [65535, 0], "to scrawl something on the slate hiding the words from": [65535, 0], "scrawl something on the slate hiding the words from the": [65535, 0], "something on the slate hiding the words from the girl": [65535, 0], "on the slate hiding the words from the girl but": [65535, 0], "the slate hiding the words from the girl but she": [65535, 0], "slate hiding the words from the girl but she was": [65535, 0], "hiding the words from the girl but she was not": [65535, 0], "the words from the girl but she was not backward": [65535, 0], "words from the girl but she was not backward this": [65535, 0], "from the girl but she was not backward this time": [65535, 0], "the girl but she was not backward this time she": [65535, 0], "girl but she was not backward this time she begged": [65535, 0], "but she was not backward this time she begged to": [65535, 0], "she was not backward this time she begged to see": [65535, 0], "was not backward this time she begged to see tom": [65535, 0], "not backward this time she begged to see tom said": [65535, 0], "backward this time she begged to see tom said oh": [65535, 0], "this time she begged to see tom said oh it": [65535, 0], "time she begged to see tom said oh it ain't": [65535, 0], "she begged to see tom said oh it ain't anything": [65535, 0], "begged to see tom said oh it ain't anything yes": [65535, 0], "to see tom said oh it ain't anything yes it": [65535, 0], "see tom said oh it ain't anything yes it is": [65535, 0], "tom said oh it ain't anything yes it is no": [65535, 0], "said oh it ain't anything yes it is no it": [65535, 0], "oh it ain't anything yes it is no it ain't": [65535, 0], "it ain't anything yes it is no it ain't you": [65535, 0], "ain't anything yes it is no it ain't you don't": [65535, 0], "anything yes it is no it ain't you don't want": [65535, 0], "yes it is no it ain't you don't want to": [65535, 0], "it is no it ain't you don't want to see": [65535, 0], "is no it ain't you don't want to see yes": [65535, 0], "no it ain't you don't want to see yes i": [65535, 0], "it ain't you don't want to see yes i do": [65535, 0], "ain't you don't want to see yes i do indeed": [65535, 0], "you don't want to see yes i do indeed i": [65535, 0], "don't want to see yes i do indeed i do": [65535, 0], "want to see yes i do indeed i do please": [65535, 0], "to see yes i do indeed i do please let": [65535, 0], "see yes i do indeed i do please let me": [65535, 0], "yes i do indeed i do please let me you'll": [65535, 0], "i do indeed i do please let me you'll tell": [65535, 0], "do indeed i do please let me you'll tell no": [65535, 0], "indeed i do please let me you'll tell no i": [65535, 0], "i do please let me you'll tell no i won't": [65535, 0], "do please let me you'll tell no i won't deed": [65535, 0], "please let me you'll tell no i won't deed and": [65535, 0], "let me you'll tell no i won't deed and deed": [65535, 0], "me you'll tell no i won't deed and deed and": [65535, 0], "you'll tell no i won't deed and deed and double": [65535, 0], "tell no i won't deed and deed and double deed": [65535, 0], "no i won't deed and deed and double deed won't": [65535, 0], "i won't deed and deed and double deed won't you": [65535, 0], "won't deed and deed and double deed won't you won't": [65535, 0], "deed and deed and double deed won't you won't tell": [65535, 0], "and deed and double deed won't you won't tell anybody": [65535, 0], "deed and double deed won't you won't tell anybody at": [65535, 0], "and double deed won't you won't tell anybody at all": [65535, 0], "double deed won't you won't tell anybody at all ever": [65535, 0], "deed won't you won't tell anybody at all ever as": [65535, 0], "won't you won't tell anybody at all ever as long": [65535, 0], "you won't tell anybody at all ever as long as": [65535, 0], "won't tell anybody at all ever as long as you": [65535, 0], "tell anybody at all ever as long as you live": [65535, 0], "anybody at all ever as long as you live no": [65535, 0], "at all ever as long as you live no i": [65535, 0], "all ever as long as you live no i won't": [65535, 0], "ever as long as you live no i won't ever": [65535, 0], "as long as you live no i won't ever tell": [65535, 0], "long as you live no i won't ever tell anybody": [65535, 0], "as you live no i won't ever tell anybody now": [65535, 0], "you live no i won't ever tell anybody now let": [65535, 0], "live no i won't ever tell anybody now let me": [65535, 0], "no i won't ever tell anybody now let me oh": [65535, 0], "i won't ever tell anybody now let me oh you": [65535, 0], "won't ever tell anybody now let me oh you don't": [65535, 0], "ever tell anybody now let me oh you don't want": [65535, 0], "tell anybody now let me oh you don't want to": [65535, 0], "anybody now let me oh you don't want to see": [65535, 0], "now let me oh you don't want to see now": [65535, 0], "let me oh you don't want to see now that": [65535, 0], "me oh you don't want to see now that you": [65535, 0], "oh you don't want to see now that you treat": [65535, 0], "you don't want to see now that you treat me": [65535, 0], "don't want to see now that you treat me so": [65535, 0], "want to see now that you treat me so i": [65535, 0], "to see now that you treat me so i will": [65535, 0], "see now that you treat me so i will see": [65535, 0], "now that you treat me so i will see and": [65535, 0], "that you treat me so i will see and she": [65535, 0], "you treat me so i will see and she put": [65535, 0], "treat me so i will see and she put her": [65535, 0], "me so i will see and she put her small": [65535, 0], "so i will see and she put her small hand": [65535, 0], "i will see and she put her small hand upon": [65535, 0], "will see and she put her small hand upon his": [65535, 0], "see and she put her small hand upon his and": [65535, 0], "and she put her small hand upon his and a": [65535, 0], "she put her small hand upon his and a little": [65535, 0], "put her small hand upon his and a little scuffle": [65535, 0], "her small hand upon his and a little scuffle ensued": [65535, 0], "small hand upon his and a little scuffle ensued tom": [65535, 0], "hand upon his and a little scuffle ensued tom pretending": [65535, 0], "upon his and a little scuffle ensued tom pretending to": [65535, 0], "his and a little scuffle ensued tom pretending to resist": [65535, 0], "and a little scuffle ensued tom pretending to resist in": [65535, 0], "a little scuffle ensued tom pretending to resist in earnest": [65535, 0], "little scuffle ensued tom pretending to resist in earnest but": [65535, 0], "scuffle ensued tom pretending to resist in earnest but letting": [65535, 0], "ensued tom pretending to resist in earnest but letting his": [65535, 0], "tom pretending to resist in earnest but letting his hand": [65535, 0], "pretending to resist in earnest but letting his hand slip": [65535, 0], "to resist in earnest but letting his hand slip by": [65535, 0], "resist in earnest but letting his hand slip by degrees": [65535, 0], "in earnest but letting his hand slip by degrees till": [65535, 0], "earnest but letting his hand slip by degrees till these": [65535, 0], "but letting his hand slip by degrees till these words": [65535, 0], "letting his hand slip by degrees till these words were": [65535, 0], "his hand slip by degrees till these words were revealed": [65535, 0], "hand slip by degrees till these words were revealed i": [65535, 0], "slip by degrees till these words were revealed i love": [65535, 0], "by degrees till these words were revealed i love you": [65535, 0], "degrees till these words were revealed i love you oh": [65535, 0], "till these words were revealed i love you oh you": [65535, 0], "these words were revealed i love you oh you bad": [65535, 0], "words were revealed i love you oh you bad thing": [65535, 0], "were revealed i love you oh you bad thing and": [65535, 0], "revealed i love you oh you bad thing and she": [65535, 0], "i love you oh you bad thing and she hit": [65535, 0], "love you oh you bad thing and she hit his": [65535, 0], "you oh you bad thing and she hit his hand": [65535, 0], "oh you bad thing and she hit his hand a": [65535, 0], "you bad thing and she hit his hand a smart": [65535, 0], "bad thing and she hit his hand a smart rap": [65535, 0], "thing and she hit his hand a smart rap but": [65535, 0], "and she hit his hand a smart rap but reddened": [65535, 0], "she hit his hand a smart rap but reddened and": [65535, 0], "hit his hand a smart rap but reddened and looked": [65535, 0], "his hand a smart rap but reddened and looked pleased": [65535, 0], "hand a smart rap but reddened and looked pleased nevertheless": [65535, 0], "a smart rap but reddened and looked pleased nevertheless just": [65535, 0], "smart rap but reddened and looked pleased nevertheless just at": [65535, 0], "rap but reddened and looked pleased nevertheless just at this": [65535, 0], "but reddened and looked pleased nevertheless just at this juncture": [65535, 0], "reddened and looked pleased nevertheless just at this juncture the": [65535, 0], "and looked pleased nevertheless just at this juncture the boy": [65535, 0], "looked pleased nevertheless just at this juncture the boy felt": [65535, 0], "pleased nevertheless just at this juncture the boy felt a": [65535, 0], "nevertheless just at this juncture the boy felt a slow": [65535, 0], "just at this juncture the boy felt a slow fateful": [65535, 0], "at this juncture the boy felt a slow fateful grip": [65535, 0], "this juncture the boy felt a slow fateful grip closing": [65535, 0], "juncture the boy felt a slow fateful grip closing on": [65535, 0], "the boy felt a slow fateful grip closing on his": [65535, 0], "boy felt a slow fateful grip closing on his ear": [65535, 0], "felt a slow fateful grip closing on his ear and": [65535, 0], "a slow fateful grip closing on his ear and a": [65535, 0], "slow fateful grip closing on his ear and a steady": [65535, 0], "fateful grip closing on his ear and a steady lifting": [65535, 0], "grip closing on his ear and a steady lifting impulse": [65535, 0], "closing on his ear and a steady lifting impulse in": [65535, 0], "on his ear and a steady lifting impulse in that": [65535, 0], "his ear and a steady lifting impulse in that vise": [65535, 0], "ear and a steady lifting impulse in that vise he": [65535, 0], "and a steady lifting impulse in that vise he was": [65535, 0], "a steady lifting impulse in that vise he was borne": [65535, 0], "steady lifting impulse in that vise he was borne across": [65535, 0], "lifting impulse in that vise he was borne across the": [65535, 0], "impulse in that vise he was borne across the house": [65535, 0], "in that vise he was borne across the house and": [65535, 0], "that vise he was borne across the house and deposited": [65535, 0], "vise he was borne across the house and deposited in": [65535, 0], "he was borne across the house and deposited in his": [65535, 0], "was borne across the house and deposited in his own": [65535, 0], "borne across the house and deposited in his own seat": [65535, 0], "across the house and deposited in his own seat under": [65535, 0], "the house and deposited in his own seat under a": [65535, 0], "house and deposited in his own seat under a peppering": [65535, 0], "and deposited in his own seat under a peppering fire": [65535, 0], "deposited in his own seat under a peppering fire of": [65535, 0], "in his own seat under a peppering fire of giggles": [65535, 0], "his own seat under a peppering fire of giggles from": [65535, 0], "own seat under a peppering fire of giggles from the": [65535, 0], "seat under a peppering fire of giggles from the whole": [65535, 0], "under a peppering fire of giggles from the whole school": [65535, 0], "a peppering fire of giggles from the whole school then": [65535, 0], "peppering fire of giggles from the whole school then the": [65535, 0], "fire of giggles from the whole school then the master": [65535, 0], "of giggles from the whole school then the master stood": [65535, 0], "giggles from the whole school then the master stood over": [65535, 0], "from the whole school then the master stood over him": [65535, 0], "the whole school then the master stood over him during": [65535, 0], "whole school then the master stood over him during a": [65535, 0], "school then the master stood over him during a few": [65535, 0], "then the master stood over him during a few awful": [65535, 0], "the master stood over him during a few awful moments": [65535, 0], "master stood over him during a few awful moments and": [65535, 0], "stood over him during a few awful moments and finally": [65535, 0], "over him during a few awful moments and finally moved": [65535, 0], "him during a few awful moments and finally moved away": [65535, 0], "during a few awful moments and finally moved away to": [65535, 0], "a few awful moments and finally moved away to his": [65535, 0], "few awful moments and finally moved away to his throne": [65535, 0], "awful moments and finally moved away to his throne without": [65535, 0], "moments and finally moved away to his throne without saying": [65535, 0], "and finally moved away to his throne without saying a": [65535, 0], "finally moved away to his throne without saying a word": [65535, 0], "moved away to his throne without saying a word but": [65535, 0], "away to his throne without saying a word but although": [65535, 0], "to his throne without saying a word but although tom's": [65535, 0], "his throne without saying a word but although tom's ear": [65535, 0], "throne without saying a word but although tom's ear tingled": [65535, 0], "without saying a word but although tom's ear tingled his": [65535, 0], "saying a word but although tom's ear tingled his heart": [65535, 0], "a word but although tom's ear tingled his heart was": [65535, 0], "word but although tom's ear tingled his heart was jubilant": [65535, 0], "but although tom's ear tingled his heart was jubilant as": [65535, 0], "although tom's ear tingled his heart was jubilant as the": [65535, 0], "tom's ear tingled his heart was jubilant as the school": [65535, 0], "ear tingled his heart was jubilant as the school quieted": [65535, 0], "tingled his heart was jubilant as the school quieted down": [65535, 0], "his heart was jubilant as the school quieted down tom": [65535, 0], "heart was jubilant as the school quieted down tom made": [65535, 0], "was jubilant as the school quieted down tom made an": [65535, 0], "jubilant as the school quieted down tom made an honest": [65535, 0], "as the school quieted down tom made an honest effort": [65535, 0], "the school quieted down tom made an honest effort to": [65535, 0], "school quieted down tom made an honest effort to study": [65535, 0], "quieted down tom made an honest effort to study but": [65535, 0], "down tom made an honest effort to study but the": [65535, 0], "tom made an honest effort to study but the turmoil": [65535, 0], "made an honest effort to study but the turmoil within": [65535, 0], "an honest effort to study but the turmoil within him": [65535, 0], "honest effort to study but the turmoil within him was": [65535, 0], "effort to study but the turmoil within him was too": [65535, 0], "to study but the turmoil within him was too great": [65535, 0], "study but the turmoil within him was too great in": [65535, 0], "but the turmoil within him was too great in turn": [65535, 0], "the turmoil within him was too great in turn he": [65535, 0], "turmoil within him was too great in turn he took": [65535, 0], "within him was too great in turn he took his": [65535, 0], "him was too great in turn he took his place": [65535, 0], "was too great in turn he took his place in": [65535, 0], "too great in turn he took his place in the": [65535, 0], "great in turn he took his place in the reading": [65535, 0], "in turn he took his place in the reading class": [65535, 0], "turn he took his place in the reading class and": [65535, 0], "he took his place in the reading class and made": [65535, 0], "took his place in the reading class and made a": [65535, 0], "his place in the reading class and made a botch": [65535, 0], "place in the reading class and made a botch of": [65535, 0], "in the reading class and made a botch of it": [65535, 0], "the reading class and made a botch of it then": [65535, 0], "reading class and made a botch of it then in": [65535, 0], "class and made a botch of it then in the": [65535, 0], "and made a botch of it then in the geography": [65535, 0], "made a botch of it then in the geography class": [65535, 0], "a botch of it then in the geography class and": [65535, 0], "botch of it then in the geography class and turned": [65535, 0], "of it then in the geography class and turned lakes": [65535, 0], "it then in the geography class and turned lakes into": [65535, 0], "then in the geography class and turned lakes into mountains": [65535, 0], "in the geography class and turned lakes into mountains mountains": [65535, 0], "the geography class and turned lakes into mountains mountains into": [65535, 0], "geography class and turned lakes into mountains mountains into rivers": [65535, 0], "class and turned lakes into mountains mountains into rivers and": [65535, 0], "and turned lakes into mountains mountains into rivers and rivers": [65535, 0], "turned lakes into mountains mountains into rivers and rivers into": [65535, 0], "lakes into mountains mountains into rivers and rivers into continents": [65535, 0], "into mountains mountains into rivers and rivers into continents till": [65535, 0], "mountains mountains into rivers and rivers into continents till chaos": [65535, 0], "mountains into rivers and rivers into continents till chaos was": [65535, 0], "into rivers and rivers into continents till chaos was come": [65535, 0], "rivers and rivers into continents till chaos was come again": [65535, 0], "and rivers into continents till chaos was come again then": [65535, 0], "rivers into continents till chaos was come again then in": [65535, 0], "into continents till chaos was come again then in the": [65535, 0], "continents till chaos was come again then in the spelling": [65535, 0], "till chaos was come again then in the spelling class": [65535, 0], "chaos was come again then in the spelling class and": [65535, 0], "was come again then in the spelling class and got": [65535, 0], "come again then in the spelling class and got turned": [65535, 0], "again then in the spelling class and got turned down": [65535, 0], "then in the spelling class and got turned down by": [65535, 0], "in the spelling class and got turned down by a": [65535, 0], "the spelling class and got turned down by a succession": [65535, 0], "spelling class and got turned down by a succession of": [65535, 0], "class and got turned down by a succession of mere": [65535, 0], "and got turned down by a succession of mere baby": [65535, 0], "got turned down by a succession of mere baby words": [65535, 0], "turned down by a succession of mere baby words till": [65535, 0], "down by a succession of mere baby words till he": [65535, 0], "by a succession of mere baby words till he brought": [65535, 0], "a succession of mere baby words till he brought up": [65535, 0], "succession of mere baby words till he brought up at": [65535, 0], "of mere baby words till he brought up at the": [65535, 0], "mere baby words till he brought up at the foot": [65535, 0], "baby words till he brought up at the foot and": [65535, 0], "words till he brought up at the foot and yielded": [65535, 0], "till he brought up at the foot and yielded up": [65535, 0], "he brought up at the foot and yielded up the": [65535, 0], "brought up at the foot and yielded up the pewter": [65535, 0], "up at the foot and yielded up the pewter medal": [65535, 0], "at the foot and yielded up the pewter medal which": [65535, 0], "the foot and yielded up the pewter medal which he": [65535, 0], "foot and yielded up the pewter medal which he had": [65535, 0], "and yielded up the pewter medal which he had worn": [65535, 0], "yielded up the pewter medal which he had worn with": [65535, 0], "up the pewter medal which he had worn with ostentation": [65535, 0], "the pewter medal which he had worn with ostentation for": [65535, 0], "pewter medal which he had worn with ostentation for months": [65535, 0], "world": [40902, 24633], "bright": [65535, 0], "fresh": [65535, 0], "brimming": [65535, 0], "song": [43635, 21900], "music": [65535, 0], "issued": [65535, 0], "lips": [65535, 0], "cheer": [32706, 32829], "step": [65535, 0], "locust": [65535, 0], "trees": [65535, 0], "fragrance": [65535, 0], "blossoms": [65535, 0], "filled": [65535, 0], "cardiff": [65535, 0], "beyond": [49105, 16430], "above": [65535, 0], "green": [65535, 0], "vegetation": [65535, 0], "delectable": [65535, 0], "land": [21790, 43745], "dreamy": [65535, 0], "reposeful": [65535, 0], "inviting": [65535, 0], "sidewalk": [65535, 0], "bucket": [65535, 0], "whitewash": [65535, 0], "handled": [65535, 0], "brush": [65535, 0], "fence": [65535, 0], "gladness": [65535, 0], "deep": [65535, 0], "melancholy": [65535, 0], "settled": [65535, 0], "thirty": [65535, 0], "nine": [65535, 0], "feet": [43635, 21900], "hollow": [49105, 16430], "existence": [65535, 0], "burden": [65535, 0], "passed": [32706, 32829], "plank": [65535, 0], "repeated": [65535, 0], "operation": [65535, 0], "compared": [65535, 0], "insignificant": [65535, 0], "whitewashed": [65535, 0], "streak": [65535, 0], "reaching": [65535, 0], "continent": [65535, 0], "unwhitewashed": [65535, 0], "tree": [65535, 0], "discouraged": [65535, 0], "skipping": [65535, 0], "gate": [24518, 41017], "tin": [65535, 0], "pail": [65535, 0], "singing": [65535, 0], "buffalo": [65535, 0], "gals": [65535, 0], "bringing": [43635, 21900], "pump": [65535, 0], "hateful": [65535, 0], "strike": [43635, 21900], "mulatto": [65535, 0], "negro": [65535, 0], "waiting": [65535, 0], "turns": [65535, 0], "resting": [65535, 0], "trading": [65535, 0], "playthings": [65535, 0], "quarrelling": [65535, 0], "fighting": [65535, 0], "skylarking": [65535, 0], "hundred": [18674, 46861], "fifty": [65535, 0], "mars": [65535, 0], "ole": [65535, 0], "missis": [65535, 0], "tole": [65535, 0], "an'": [65535, 0], "git": [65535, 0], "dis": [65535, 0], "stop": [46760, 18775], "foolin'": [65535, 0], "roun'": [65535, 0], "wid": [65535, 0], "spec'": [65535, 0], "gwine": [65535, 0], "ax": [65535, 0], "'tend": [65535, 0], "'lowed": [65535, 0], "she'd": [65535, 0], "de": [65535, 0], "whitewashin'": [65535, 0], "talks": [43635, 21900], "gimme": [65535, 0], "dasn't": [65535, 0], "tar": [65535, 0], "'deed": [65535, 0], "licks": [65535, 0], "whacks": [65535, 0], "thimble": [65535, 0], "cares": [32706, 32829], "i'd": [65535, 0], "anyways": [65535, 0], "cry": [32706, 32829], "marvel": [65535, 0], "alley": [65535, 0], "waver": [65535, 0], "bully": [65535, 0], "taw": [65535, 0], "dat's": [65535, 0], "gay": [32706, 32829], "i's": [65535, 0], "powerful": [65535, 0], "'fraid": [65535, 0], "show": [32706, 32829], "attraction": [65535, 0], "absorbing": [65535, 0], "bandage": [65535, 0], "unwound": [65535, 0], "flying": [65535, 0], "street": [49105, 16430], "tingling": [65535, 0], "rear": [65535, 0], "whitewashing": [65535, 0], "vigor": [32706, 32829], "retiring": [65535, 0], "field": [49105, 16430], "slipper": [65535, 0], "triumph": [65535, 0], "energy": [65535, 0], "fun": [65535, 0], "planned": [65535, 0], "sorrows": [65535, 0], "multiplied": [65535, 0], "tripping": [65535, 0], "sorts": [65535, 0], "delicious": [65535, 0], "expeditions": [65535, 0], "having": [65535, 0], "burnt": [65535, 0], "worldly": [65535, 0], "wealth": [28026, 37509], "examined": [65535, 0], "bits": [65535, 0], "toys": [65535, 0], "marbles": [65535, 0], "trash": [65535, 0], "buy": [19609, 45926], "exchange": [65535, 0], "pure": [32706, 32829], "freedom": [65535, 0], "straitened": [65535, 0], "means": [65535, 0], "idea": [65535, 0], "hopeless": [65535, 0], "inspiration": [49105, 16430], "magnificent": [65535, 0], "sight": [21790, 43745], "ridicule": [65535, 0], "dreading": [65535, 0], "ben's": [65535, 0], "gait": [65535, 0], "hop": [65535, 0], "skip": [65535, 0], "jump": [65535, 0], "proof": [65535, 0], "anticipations": [65535, 0], "eating": [65535, 0], "apple": [65535, 0], "giving": [65535, 0], "melodious": [65535, 0], "whoop": [65535, 0], "intervals": [65535, 0], "toned": [65535, 0], "ding": [65535, 0], "dong": [65535, 0], "personating": [65535, 0], "steamboat": [65535, 0], "near": [65535, 0], "slackened": [65535, 0], "leaned": [65535, 0], "starboard": [65535, 0], "rounded": [65535, 0], "ponderously": [65535, 0], "laborious": [65535, 0], "pomp": [65535, 0], "circumstance": [43635, 21900], "big": [65535, 0], "missouri": [65535, 0], "boat": [65535, 0], "captain": [65535, 0], "engine": [65535, 0], "bells": [65535, 0], "combined": [65535, 0], "imagine": [65535, 0], "hurricane": [65535, 0], "deck": [65535, 0], "executing": [65535, 0], "ting": [65535, 0], "ling": [65535, 0], "headway": [65535, 0], "ran": [37388, 28147], "slowly": [65535, 0], "toward": [65535, 0], "ship": [7257, 58278], "straightened": [65535, 0], "stiffened": [65535, 0], "sides": [65535, 0], "set": [46760, 18775], "stabboard": [65535, 0], "chow": [65535, 0], "ch": [65535, 0], "wow": [65535, 0], "meantime": [65535, 0], "describing": [65535, 0], "stately": [65535, 0], "circles": [65535, 0], "representing": [65535, 0], "wheel": [65535, 0], "labboard": [65535, 0], "describe": [65535, 0], "ahead": [65535, 0], "ow": [65535, 0], "line": [65535, 0], "lively": [65535, 0], "what're": [65535, 0], "round": [54578, 10957], "bight": [65535, 0], "stand": [16338, 49197], "stage": [65535, 0], "engines": [65535, 0], "sh't": [65535, 0], "s'h't": [65535, 0], "gauge": [65535, 0], "cocks": [65535, 0], "paid": [65535, 0], "hi": [65535, 0], "yi": [65535, 0], "touch": [32706, 32829], "sweep": [65535, 0], "ranged": [65535, 0], "alongside": [65535, 0], "watered": [65535, 0], "stuck": [65535, 0], "chap": [65535, 0], "hey": [65535, 0], "wheeled": [65535, 0], "warn't": [65535, 0], "noticing": [65535, 0], "am": [3212, 62323], "druther": [65535, 0], "contemplated": [65535, 0], "answered": [65535, 0], "carelessly": [65535, 0], "suits": [65535, 0], "mean": [65535, 0], "move": [65535, 0], "oughtn't": [65535, 0], "nibbling": [65535, 0], "swept": [65535, 0], "daintily": [65535, 0], "forth": [14002, 51533], "note": [39262, 26273], "effect": [49105, 16430], "added": [65535, 0], "criticised": [65535, 0], "getting": [65535, 0], "absorbed": [65535, 0], "consent": [21790, 43745], "altered": [65535, 0], "polly's": [65535, 0], "particular": [65535, 0], "careful": [65535, 0], "fixed": [65535, 0], "tackle": [65535, 0], "happen": [65535, 0], "core": [65535, 0], "reluctance": [65535, 0], "steamer": [65535, 0], "sweated": [65535, 0], "sun": [49105, 16430], "retired": [65535, 0], "barrel": [65535, 0], "shade": [65535, 0], "dangled": [65535, 0], "munched": [65535, 0], "innocents": [65535, 0], "lack": [65535, 0], "material": [65535, 0], "happened": [65535, 0], "jeer": [65535, 0], "remained": [65535, 0], "fagged": [65535, 0], "traded": [65535, 0], "billy": [65535, 0], "fisher": [65535, 0], "kite": [65535, 0], "repair": [65535, 0], "miller": [65535, 0], "rat": [65535, 0], "string": [65535, 0], "swing": [65535, 0], "afternoon": [65535, 0], "poverty": [65535, 0], "stricken": [65535, 0], "literally": [65535, 0], "rolling": [65535, 0], "mentioned": [65535, 0], "twelve": [65535, 0], "jews": [65535, 0], "harp": [65535, 0], "bottle": [65535, 0], "look": [65535, 0], "spool": [65535, 0], "cannon": [65535, 0], "unlock": [65535, 0], "fragment": [65535, 0], "chalk": [65535, 0], "stopper": [65535, 0], "decanter": [65535, 0], "soldier": [65535, 0], "tadpoles": [65535, 0], "six": [65535, 0], "crackers": [65535, 0], "kitten": [65535, 0], "brass": [65535, 0], "doorknob": [65535, 0], "collar": [65535, 0], "handle": [65535, 0], "knife": [65535, 0], "four": [65535, 0], "pieces": [65535, 0], "orange": [65535, 0], "peel": [65535, 0], "dilapidated": [65535, 0], "coats": [65535, 0], "bankrupted": [65535, 0], "law": [32706, 32829], "action": [65535, 0], "knowing": [32706, 32829], "namely": [21790, 43745], "covet": [65535, 0], "difficult": [65535, 0], "attain": [65535, 0], "wise": [21790, 43745], "philosopher": [65535, 0], "writer": [65535, 0], "comprehended": [65535, 0], "consists": [65535, 0], "whatever": [65535, 0], "obliged": [65535, 0], "help": [43635, 21900], "understand": [65535, 0], "constructing": [65535, 0], "artificial": [65535, 0], "flowers": [65535, 0], "performing": [65535, 0], "tread": [65535, 0], "mill": [65535, 0], "pins": [65535, 0], "climbing": [65535, 0], "mont": [65535, 0], "blanc": [65535, 0], "amusement": [65535, 0], "wealthy": [65535, 0], "gentlemen": [43635, 21900], "england": [32706, 32829], "drive": [65535, 0], "horse": [32706, 32829], "passenger": [65535, 0], "coaches": [65535, 0], "twenty": [65535, 0], "miles": [65535, 0], "daily": [32706, 32829], "privilege": [65535, 0], "costs": [65535, 0], "money": [14521, 51014], "wages": [65535, 0], "resign": [65535, 0], "mused": [65535, 0], "awhile": [65535, 0], "substantial": [65535, 0], "taken": [32706, 32829], "circumstances": [65535, 0], "headquarters": [65535, 0], "report": [21790, 43745], "saturday morning": [65535, 0], "morning was": [65535, 0], "come and": [32706, 32829], "and all": [18674, 46861], "summer world": [65535, 0], "world was": [65535, 0], "was bright": [65535, 0], "bright and": [65535, 0], "and fresh": [65535, 0], "fresh and": [65535, 0], "and brimming": [65535, 0], "brimming with": [65535, 0], "with life": [65535, 0], "life there": [65535, 0], "a song": [65535, 0], "song in": [65535, 0], "in every": [65535, 0], "every heart": [65535, 0], "heart and": [54578, 10957], "the heart": [65535, 0], "was young": [65535, 0], "young the": [65535, 0], "the music": [65535, 0], "music issued": [65535, 0], "issued at": [65535, 0], "the lips": [65535, 0], "lips there": [65535, 0], "was cheer": [65535, 0], "cheer in": [65535, 0], "every face": [65535, 0], "face and": [32706, 32829], "spring in": [65535, 0], "every step": [65535, 0], "step the": [65535, 0], "the locust": [65535, 0], "locust trees": [65535, 0], "trees were": [65535, 0], "in bloom": [65535, 0], "the fragrance": [65535, 0], "fragrance of": [65535, 0], "the blossoms": [65535, 0], "blossoms filled": [65535, 0], "filled the": [65535, 0], "the air": [65535, 0], "air cardiff": [65535, 0], "cardiff hill": [65535, 0], "hill beyond": [65535, 0], "beyond the": [65535, 0], "village and": [65535, 0], "and above": [65535, 0], "above it": [65535, 0], "was green": [65535, 0], "green with": [65535, 0], "with vegetation": [65535, 0], "vegetation and": [65535, 0], "it lay": [65535, 0], "lay just": [65535, 0], "just far": [65535, 0], "far enough": [65535, 0], "enough away": [65535, 0], "to seem": [65535, 0], "seem a": [65535, 0], "a delectable": [65535, 0], "delectable land": [65535, 0], "land dreamy": [65535, 0], "dreamy reposeful": [65535, 0], "reposeful and": [65535, 0], "and inviting": [65535, 0], "inviting tom": [65535, 0], "tom appeared": [65535, 0], "appeared on": [65535, 0], "the sidewalk": [65535, 0], "sidewalk with": [65535, 0], "a bucket": [65535, 0], "bucket of": [65535, 0], "of whitewash": [65535, 0], "whitewash and": [65535, 0], "a long": [39262, 26273], "long handled": [65535, 0], "handled brush": [65535, 0], "brush he": [65535, 0], "the fence": [65535, 0], "fence and": [65535, 0], "all gladness": [65535, 0], "gladness left": [65535, 0], "left him": [32706, 32829], "a deep": [65535, 0], "deep melancholy": [65535, 0], "melancholy settled": [65535, 0], "settled down": [65535, 0], "spirit thirty": [65535, 0], "thirty yards": [65535, 0], "yards of": [65535, 0], "of board": [65535, 0], "board fence": [65535, 0], "fence nine": [65535, 0], "nine feet": [65535, 0], "feet high": [65535, 0], "high life": [65535, 0], "life to": [65535, 0], "him seemed": [65535, 0], "seemed hollow": [65535, 0], "hollow and": [65535, 0], "and existence": [65535, 0], "existence but": [65535, 0], "a burden": [65535, 0], "burden sighing": [65535, 0], "sighing he": [65535, 0], "he dipped": [65535, 0], "his brush": [65535, 0], "brush and": [65535, 0], "and passed": [32706, 32829], "passed it": [65535, 0], "it along": [65535, 0], "along the": [65535, 0], "topmost plank": [65535, 0], "plank repeated": [65535, 0], "repeated the": [65535, 0], "the operation": [65535, 0], "operation did": [65535, 0], "did it": [65535, 0], "again compared": [65535, 0], "compared the": [65535, 0], "the insignificant": [65535, 0], "insignificant whitewashed": [65535, 0], "whitewashed streak": [65535, 0], "streak with": [65535, 0], "far reaching": [65535, 0], "reaching continent": [65535, 0], "continent of": [65535, 0], "of unwhitewashed": [65535, 0], "unwhitewashed fence": [65535, 0], "a tree": [65535, 0], "tree box": [65535, 0], "box discouraged": [65535, 0], "discouraged jim": [65535, 0], "jim came": [65535, 0], "came skipping": [65535, 0], "skipping out": [65535, 0], "out at": [65535, 0], "the gate": [21790, 43745], "gate with": [65535, 0], "a tin": [65535, 0], "tin pail": [65535, 0], "pail and": [65535, 0], "and singing": [65535, 0], "singing buffalo": [65535, 0], "buffalo gals": [65535, 0], "gals bringing": [65535, 0], "bringing water": [65535, 0], "water from": [65535, 0], "town pump": [65535, 0], "pump had": [65535, 0], "had always": [65535, 0], "always been": [65535, 0], "been hateful": [65535, 0], "hateful work": [65535, 0], "work in": [65535, 0], "in tom's": [65535, 0], "tom's eyes": [65535, 0], "eyes before": [65535, 0], "before but": [65535, 0], "it did": [65535, 0], "not strike": [65535, 0], "strike him": [65535, 0], "remembered that": [65535, 0], "was company": [65535, 0], "company at": [65535, 0], "the pump": [65535, 0], "pump white": [65535, 0], "white mulatto": [65535, 0], "mulatto and": [65535, 0], "and negro": [65535, 0], "negro boys": [65535, 0], "boys and": [65535, 0], "and girls": [65535, 0], "girls were": [65535, 0], "were always": [65535, 0], "always there": [65535, 0], "there waiting": [65535, 0], "waiting their": [65535, 0], "their turns": [65535, 0], "turns resting": [65535, 0], "resting trading": [65535, 0], "trading playthings": [65535, 0], "playthings quarrelling": [65535, 0], "quarrelling fighting": [65535, 0], "fighting skylarking": [65535, 0], "skylarking and": [65535, 0], "that although": [65535, 0], "although the": [65535, 0], "pump was": [65535, 0], "only a": [65535, 0], "a hundred": [21790, 43745], "hundred and": [65535, 0], "and fifty": [65535, 0], "fifty yards": [65535, 0], "yards off": [65535, 0], "off jim": [65535, 0], "jim never": [65535, 0], "never got": [65535, 0], "got back": [65535, 0], "back with": [65535, 0], "of water": [46760, 18775], "water under": [65535, 0], "under an": [65535, 0], "hour and": [65535, 0], "and even": [65535, 0], "even then": [65535, 0], "then somebody": [65535, 0], "somebody generally": [65535, 0], "generally had": [65535, 0], "go after": [65535, 0], "after him": [65535, 0], "said say": [65535, 0], "say jim": [65535, 0], "jim i'll": [65535, 0], "i'll fetch": [65535, 0], "the water": [65535, 0], "water if": [65535, 0], "if you'll": [65535, 0], "you'll whitewash": [65535, 0], "whitewash some": [65535, 0], "some jim": [65535, 0], "jim shook": [65535, 0], "shook his": [65535, 0], "said can't": [65535, 0], "can't mars": [65535, 0], "mars tom": [65535, 0], "tom ole": [65535, 0], "ole missis": [65535, 0], "missis she": [65535, 0], "she tole": [65535, 0], "tole me": [65535, 0], "me i": [16338, 49197], "go an'": [65535, 0], "an' git": [65535, 0], "git dis": [65535, 0], "dis water": [65535, 0], "water an'": [65535, 0], "an' not": [65535, 0], "not stop": [65535, 0], "stop foolin'": [65535, 0], "foolin' roun'": [65535, 0], "roun' wid": [65535, 0], "wid anybody": [65535, 0], "anybody she": [65535, 0], "she say": [65535, 0], "say she": [65535, 0], "she spec'": [65535, 0], "spec' mars": [65535, 0], "tom gwine": [65535, 0], "gwine to": [65535, 0], "to ax": [65535, 0], "ax me": [65535, 0], "me to": [10888, 54647], "to whitewash": [65535, 0], "whitewash an'": [65535, 0], "an' so": [65535, 0], "so she": [65535, 0], "me go": [65535, 0], "go 'long": [65535, 0], "'long an'": [65535, 0], "an' 'tend": [65535, 0], "'tend to": [65535, 0], "to my": [8710, 56825], "my own": [65535, 0], "own business": [65535, 0], "business she": [65535, 0], "she 'lowed": [65535, 0], "'lowed she'd": [65535, 0], "she'd 'tend": [65535, 0], "to de": [65535, 0], "de whitewashin'": [65535, 0], "whitewashin' oh": [65535, 0], "oh never": [65535, 0], "never you": [65535, 0], "you mind": [65535, 0], "mind what": [65535, 0], "what she": [43635, 21900], "said jim": [65535, 0], "jim that's": [65535, 0], "way she": [65535, 0], "she always": [65535, 0], "always talks": [65535, 0], "talks gimme": [65535, 0], "gimme the": [65535, 0], "the bucket": [65535, 0], "bucket i": [65535, 0], "won't be": [65535, 0], "be gone": [9332, 56203], "gone only": [65535, 0], "minute she": [65535, 0], "she won't": [65535, 0], "ever know": [65535, 0], "know oh": [65535, 0], "i dasn't": [65535, 0], "dasn't mars": [65535, 0], "missis she'd": [65535, 0], "she'd take": [65535, 0], "take an'": [65535, 0], "an' tar": [65535, 0], "tar de": [65535, 0], "de head": [65535, 0], "head off'n": [65535, 0], "off'n me": [65535, 0], "me 'deed": [65535, 0], "'deed she": [65535, 0], "she would": [50929, 14606], "would she": [65535, 0], "she she": [65535, 0], "she never": [65535, 0], "never licks": [65535, 0], "licks anybody": [65535, 0], "anybody whacks": [65535, 0], "whacks 'em": [65535, 0], "'em over": [65535, 0], "the head": [65535, 0], "her thimble": [65535, 0], "thimble and": [65535, 0], "and who": [65535, 0], "who cares": [65535, 0], "cares for": [65535, 0], "for that": [54578, 10957], "that i'd": [65535, 0], "i'd like": [65535, 0], "like to": [65535, 0], "to know": [39262, 26273], "she talks": [65535, 0], "talks awful": [65535, 0], "awful but": [65535, 0], "but talk": [65535, 0], "talk don't": [65535, 0], "hurt anyways": [65535, 0], "anyways it": [65535, 0], "don't if": [65535, 0], "she don't": [65535, 0], "don't cry": [65535, 0], "cry jim": [65535, 0], "you a": [43635, 21900], "a marvel": [65535, 0], "marvel i'll": [65535, 0], "a white": [65535, 0], "white alley": [65535, 0], "alley jim": [65535, 0], "jim began": [65535, 0], "to waver": [65535, 0], "waver white": [65535, 0], "jim and": [65535, 0], "and it's": [65535, 0], "a bully": [65535, 0], "bully taw": [65535, 0], "taw my": [65535, 0], "my dat's": [65535, 0], "dat's a": [65535, 0], "mighty gay": [65535, 0], "gay marvel": [65535, 0], "marvel i": [65535, 0], "i tell": [10888, 54647], "tell you": [21790, 43745], "you but": [32706, 32829], "but mars": [65535, 0], "tom i's": [65535, 0], "i's powerful": [65535, 0], "powerful 'fraid": [65535, 0], "'fraid ole": [65535, 0], "missis and": [65535, 0], "besides if": [65535, 0], "will i'll": [65535, 0], "i'll show": [65535, 0], "show you": [65535, 0], "toe jim": [65535, 0], "jim was": [65535, 0], "only human": [65535, 0], "human this": [65535, 0], "this attraction": [65535, 0], "attraction was": [65535, 0], "too much": [21790, 43745], "much for": [65535, 0], "he put": [65535, 0], "put down": [65535, 0], "down his": [65535, 0], "his pail": [65535, 0], "pail took": [65535, 0], "took the": [65535, 0], "the white": [65535, 0], "alley and": [65535, 0], "and bent": [65535, 0], "bent over": [65535, 0], "toe with": [65535, 0], "with absorbing": [65535, 0], "absorbing interest": [65535, 0], "interest while": [65535, 0], "the bandage": [65535, 0], "bandage was": [65535, 0], "was being": [65535, 0], "being unwound": [65535, 0], "unwound in": [65535, 0], "in another": [65535, 0], "another moment": [65535, 0], "moment he": [65535, 0], "was flying": [65535, 0], "flying down": [65535, 0], "the street": [43635, 21900], "street with": [65535, 0], "a tingling": [65535, 0], "tingling rear": [65535, 0], "rear tom": [65535, 0], "was whitewashing": [65535, 0], "whitewashing with": [65535, 0], "with vigor": [65535, 0], "vigor and": [65535, 0], "and aunt": [65535, 0], "polly was": [65535, 0], "was retiring": [65535, 0], "retiring from": [65535, 0], "the field": [65535, 0], "field with": [65535, 0], "a slipper": [65535, 0], "slipper in": [65535, 0], "in her": [34891, 30644], "her hand": [65535, 0], "hand and": [46760, 18775], "and triumph": [65535, 0], "triumph in": [65535, 0], "her eye": [65535, 0], "eye but": [32706, 32829], "but tom's": [65535, 0], "tom's energy": [65535, 0], "energy did": [65535, 0], "not last": [65535, 0], "to think": [65535, 0], "think of": [65535, 0], "the fun": [65535, 0], "fun he": [65535, 0], "had planned": [65535, 0], "planned for": [65535, 0], "this day": [10888, 54647], "his sorrows": [65535, 0], "sorrows multiplied": [65535, 0], "multiplied soon": [65535, 0], "soon the": [65535, 0], "the free": [65535, 0], "free boys": [65535, 0], "boys would": [65535, 0], "would come": [65535, 0], "come tripping": [65535, 0], "tripping along": [65535, 0], "along on": [65535, 0], "on all": [65535, 0], "all sorts": [65535, 0], "sorts of": [65535, 0], "of delicious": [65535, 0], "delicious expeditions": [65535, 0], "expeditions and": [65535, 0], "they would": [65535, 0], "would make": [32706, 32829], "a world": [65535, 0], "world of": [65535, 0], "of fun": [65535, 0], "fun of": [65535, 0], "him for": [65535, 0], "for having": [65535, 0], "having to": [65535, 0], "work the": [65535, 0], "the very": [65535, 0], "very thought": [65535, 0], "it burnt": [65535, 0], "burnt him": [65535, 0], "him like": [32706, 32829], "like fire": [65535, 0], "fire he": [65535, 0], "his worldly": [65535, 0], "worldly wealth": [65535, 0], "wealth and": [65535, 0], "and examined": [65535, 0], "examined it": [65535, 0], "it bits": [65535, 0], "bits of": [65535, 0], "of toys": [65535, 0], "toys marbles": [65535, 0], "marbles and": [65535, 0], "and trash": [65535, 0], "trash enough": [65535, 0], "enough to": [65535, 0], "to buy": [39262, 26273], "buy an": [65535, 0], "an exchange": [65535, 0], "exchange of": [65535, 0], "of work": [65535, 0], "work maybe": [65535, 0], "maybe but": [65535, 0], "but not": [10888, 54647], "not half": [65535, 0], "half enough": [65535, 0], "buy so": [65535, 0], "as half": [65535, 0], "half an": [65535, 0], "hour of": [65535, 0], "of pure": [65535, 0], "pure freedom": [65535, 0], "freedom so": [65535, 0], "he returned": [65535, 0], "returned his": [65535, 0], "his straitened": [65535, 0], "straitened means": [65535, 0], "means to": [65535, 0], "pocket and": [65535, 0], "gave up": [65535, 0], "the idea": [65535, 0], "idea of": [65535, 0], "of trying": [65535, 0], "buy the": [65535, 0], "boys at": [65535, 0], "this dark": [65535, 0], "dark and": [65535, 0], "and hopeless": [65535, 0], "hopeless moment": [65535, 0], "moment an": [65535, 0], "an inspiration": [65535, 0], "inspiration burst": [65535, 0], "burst upon": [65535, 0], "upon him": [65535, 0], "him nothing": [65535, 0], "nothing less": [65535, 0], "less than": [65535, 0], "than a": [65535, 0], "great magnificent": [65535, 0], "magnificent inspiration": [65535, 0], "inspiration he": [65535, 0], "up his": [65535, 0], "went tranquilly": [65535, 0], "tranquilly to": [65535, 0], "work ben": [65535, 0], "rogers hove": [65535, 0], "hove in": [65535, 0], "in sight": [65535, 0], "sight presently": [65535, 0], "very boy": [65535, 0], "boy of": [65535, 0], "all boys": [65535, 0], "boys whose": [65535, 0], "whose ridicule": [65535, 0], "ridicule he": [65535, 0], "been dreading": [65535, 0], "dreading ben's": [65535, 0], "ben's gait": [65535, 0], "gait was": [65535, 0], "the hop": [65535, 0], "hop skip": [65535, 0], "skip and": [65535, 0], "and jump": [65535, 0], "jump proof": [65535, 0], "proof enough": [65535, 0], "enough that": [65535, 0], "that his": [32706, 32829], "was light": [65535, 0], "his anticipations": [65535, 0], "anticipations high": [65535, 0], "high he": [65535, 0], "was eating": [65535, 0], "eating an": [65535, 0], "an apple": [65535, 0], "apple and": [65535, 0], "and giving": [65535, 0], "giving a": [65535, 0], "long melodious": [65535, 0], "melodious whoop": [65535, 0], "whoop at": [65535, 0], "at intervals": [65535, 0], "intervals followed": [65535, 0], "deep toned": [65535, 0], "toned ding": [65535, 0], "ding dong": [65535, 0], "dong dong": [65535, 0], "dong ding": [65535, 0], "dong for": [65535, 0], "was personating": [65535, 0], "personating a": [65535, 0], "a steamboat": [65535, 0], "steamboat as": [65535, 0], "he drew": [65535, 0], "drew near": [65535, 0], "near he": [65535, 0], "he slackened": [65535, 0], "slackened speed": [65535, 0], "speed took": [65535, 0], "street leaned": [65535, 0], "leaned far": [65535, 0], "far over": [65535, 0], "over to": [65535, 0], "to starboard": [65535, 0], "starboard and": [65535, 0], "and rounded": [65535, 0], "rounded to": [65535, 0], "to ponderously": [65535, 0], "ponderously and": [65535, 0], "and with": [21790, 43745], "with laborious": [65535, 0], "laborious pomp": [65535, 0], "pomp and": [65535, 0], "and circumstance": [65535, 0], "circumstance for": [65535, 0], "personating the": [65535, 0], "the big": [65535, 0], "big missouri": [65535, 0], "missouri and": [65535, 0], "and considered": [65535, 0], "considered himself": [65535, 0], "himself to": [65535, 0], "be drawing": [65535, 0], "drawing nine": [65535, 0], "feet of": [65535, 0], "water he": [65535, 0], "was boat": [65535, 0], "boat and": [65535, 0], "and captain": [65535, 0], "captain and": [65535, 0], "and engine": [65535, 0], "engine bells": [65535, 0], "bells combined": [65535, 0], "combined so": [65535, 0], "to imagine": [65535, 0], "imagine himself": [65535, 0], "himself standing": [65535, 0], "standing on": [65535, 0], "own hurricane": [65535, 0], "hurricane deck": [65535, 0], "deck giving": [65535, 0], "giving the": [65535, 0], "the orders": [65535, 0], "orders and": [65535, 0], "and executing": [65535, 0], "executing them": [65535, 0], "them stop": [65535, 0], "stop her": [65535, 0], "her sir": [65535, 0], "sir ting": [65535, 0], "ting a": [65535, 0], "a ling": [65535, 0], "ling ling": [65535, 0], "ling the": [65535, 0], "the headway": [65535, 0], "headway ran": [65535, 0], "ran almost": [65535, 0], "almost out": [65535, 0], "drew up": [65535, 0], "up slowly": [65535, 0], "slowly toward": [65535, 0], "toward the": [65535, 0], "sidewalk ship": [65535, 0], "ship up": [65535, 0], "to back": [65535, 0], "back ting": [65535, 0], "ling his": [65535, 0], "arms straightened": [65535, 0], "straightened and": [65535, 0], "and stiffened": [65535, 0], "stiffened down": [65535, 0], "his sides": [65535, 0], "sides set": [65535, 0], "set her": [65535, 0], "her back": [65535, 0], "back on": [65535, 0], "the stabboard": [65535, 0], "stabboard ting": [65535, 0], "ling chow": [65535, 0], "chow ch": [65535, 0], "ch chow": [65535, 0], "chow wow": [65535, 0], "wow chow": [65535, 0], "chow his": [65535, 0], "his right": [65535, 0], "right hand": [65535, 0], "hand meantime": [65535, 0], "meantime describing": [65535, 0], "describing stately": [65535, 0], "stately circles": [65535, 0], "circles for": [65535, 0], "was representing": [65535, 0], "representing a": [65535, 0], "a forty": [65535, 0], "forty foot": [65535, 0], "foot wheel": [65535, 0], "wheel let": [65535, 0], "let her": [32706, 32829], "her go": [65535, 0], "go back": [32706, 32829], "the labboard": [65535, 0], "labboard ting": [65535, 0], "chow chow": [65535, 0], "chow the": [65535, 0], "the left": [65535, 0], "to describe": [65535, 0], "describe circles": [65535, 0], "circles stop": [65535, 0], "stop the": [65535, 0], "ling stop": [65535, 0], "labboard come": [65535, 0], "come ahead": [65535, 0], "ahead on": [65535, 0], "stabboard stop": [65535, 0], "her let": [65535, 0], "let your": [21790, 43745], "your outside": [65535, 0], "outside turn": [65535, 0], "over slow": [65535, 0], "slow ting": [65535, 0], "chow ow": [65535, 0], "ow ow": [65535, 0], "ow get": [65535, 0], "get out": [65535, 0], "out that": [65535, 0], "that head": [65535, 0], "head line": [65535, 0], "line lively": [65535, 0], "lively now": [65535, 0], "now come": [65535, 0], "come out": [65535, 0], "out with": [65535, 0], "your spring": [65535, 0], "spring line": [65535, 0], "line what're": [65535, 0], "what're you": [65535, 0], "you about": [65535, 0], "about there": [65535, 0], "there take": [21790, 43745], "take a": [52389, 13146], "turn round": [65535, 0], "round that": [65535, 0], "that stump": [65535, 0], "stump with": [65535, 0], "the bight": [65535, 0], "bight of": [65535, 0], "it stand": [65535, 0], "stand by": [32706, 32829], "that stage": [65535, 0], "stage now": [65535, 0], "go done": [65535, 0], "the engines": [65535, 0], "engines sir": [65535, 0], "ling sh't": [65535, 0], "sh't s'h't": [65535, 0], "s'h't sh't": [65535, 0], "sh't trying": [65535, 0], "trying the": [32706, 32829], "the gauge": [65535, 0], "gauge cocks": [65535, 0], "cocks tom": [65535, 0], "on whitewashing": [65535, 0], "whitewashing paid": [65535, 0], "paid no": [65535, 0], "no attention": [65535, 0], "attention to": [65535, 0], "the steamboat": [65535, 0], "steamboat ben": [65535, 0], "ben stared": [65535, 0], "stared a": [65535, 0], "moment and": [65535, 0], "then said": [65535, 0], "said hi": [65535, 0], "hi yi": [65535, 0], "yi you're": [65535, 0], "you're up": [65535, 0], "a stump": [65535, 0], "stump ain't": [65535, 0], "you no": [65535, 0], "no answer": [65535, 0], "answer tom": [65535, 0], "tom surveyed": [65535, 0], "surveyed his": [65535, 0], "his last": [65535, 0], "last touch": [65535, 0], "touch with": [65535, 0], "the eye": [65535, 0], "eye of": [65535, 0], "of an": [32706, 32829], "an artist": [65535, 0], "artist then": [65535, 0], "he gave": [65535, 0], "gave his": [65535, 0], "brush another": [65535, 0], "another gentle": [65535, 0], "gentle sweep": [65535, 0], "sweep and": [65535, 0], "and surveyed": [65535, 0], "the result": [65535, 0], "result as": [65535, 0], "as before": [65535, 0], "before ben": [65535, 0], "ben ranged": [65535, 0], "ranged up": [65535, 0], "up alongside": [65535, 0], "alongside of": [65535, 0], "him tom's": [65535, 0], "tom's mouth": [65535, 0], "mouth watered": [65535, 0], "watered for": [65535, 0], "the apple": [65535, 0], "apple but": [65535, 0], "he stuck": [65535, 0], "stuck to": [65535, 0], "ben said": [65535, 0], "said hello": [65535, 0], "hello old": [65535, 0], "old chap": [65535, 0], "chap you": [65535, 0], "work hey": [65535, 0], "hey tom": [65535, 0], "tom wheeled": [65535, 0], "wheeled suddenly": [65535, 0], "suddenly and": [65535, 0], "said why": [65535, 0], "why it's": [65535, 0], "it's you": [65535, 0], "you ben": [65535, 0], "ben i": [65535, 0], "i warn't": [65535, 0], "warn't noticing": [65535, 0], "noticing say": [65535, 0], "say i'm": [65535, 0], "i'm going": [65535, 0], "going in": [65535, 0], "a swimming": [65535, 0], "swimming i": [65535, 0], "i am": [4259, 61276], "am don't": [65535, 0], "you wish": [65535, 0], "wish you": [65535, 0], "you could": [65535, 0], "could but": [65535, 0], "but of": [65535, 0], "course you'd": [65535, 0], "you'd druther": [65535, 0], "druther work": [65535, 0], "work wouldn't": [65535, 0], "you course": [65535, 0], "course you": [65535, 0], "you would": [9332, 56203], "would tom": [65535, 0], "tom contemplated": [65535, 0], "contemplated the": [65535, 0], "boy a": [65535, 0], "bit and": [65535, 0], "said what": [65535, 0], "what do": [65535, 0], "call work": [65535, 0], "work why": [65535, 0], "why ain't": [65535, 0], "ain't that": [65535, 0], "that work": [65535, 0], "work tom": [65535, 0], "tom resumed": [65535, 0], "resumed his": [65535, 0], "his whitewashing": [65535, 0], "whitewashing and": [65535, 0], "and answered": [65535, 0], "answered carelessly": [65535, 0], "carelessly well": [65535, 0], "well maybe": [65535, 0], "maybe it": [65535, 0], "is and": [65535, 0], "and maybe": [65535, 0], "ain't all": [65535, 0], "all i": [32706, 32829], "know is": [65535, 0], "it suits": [65535, 0], "suits tom": [65535, 0], "sawyer oh": [65535, 0], "oh come": [65535, 0], "come now": [65535, 0], "don't mean": [65535, 0], "mean to": [65535, 0], "to let": [65535, 0], "let on": [65535, 0], "on that": [65535, 0], "it the": [49105, 16430], "the brush": [65535, 0], "brush continued": [65535, 0], "continued to": [65535, 0], "to move": [65535, 0], "move like": [65535, 0], "it well": [52389, 13146], "don't see": [65535, 0], "see why": [65535, 0], "why i": [65535, 0], "i oughtn't": [65535, 0], "oughtn't to": [65535, 0], "to like": [65535, 0], "does a": [65535, 0], "boy get": [65535, 0], "chance to": [65535, 0], "whitewash a": [65535, 0], "a fence": [65535, 0], "fence every": [65535, 0], "every day": [65535, 0], "day that": [65535, 0], "that put": [65535, 0], "the thing": [43635, 21900], "thing in": [65535, 0], "new light": [65535, 0], "light ben": [65535, 0], "ben stopped": [65535, 0], "stopped nibbling": [65535, 0], "nibbling his": [65535, 0], "his apple": [65535, 0], "apple tom": [65535, 0], "tom swept": [65535, 0], "swept his": [65535, 0], "brush daintily": [65535, 0], "daintily back": [65535, 0], "and forth": [65535, 0], "forth stepped": [65535, 0], "stepped back": [65535, 0], "back to": [65535, 0], "to note": [65535, 0], "note the": [65535, 0], "the effect": [43635, 21900], "effect added": [65535, 0], "added a": [65535, 0], "a touch": [65535, 0], "touch here": [65535, 0], "here and": [16338, 49197], "and there": [32706, 32829], "there criticised": [65535, 0], "criticised the": [65535, 0], "effect again": [65535, 0], "again ben": [65535, 0], "ben watching": [65535, 0], "watching every": [65535, 0], "every move": [65535, 0], "move and": [65535, 0], "and getting": [65535, 0], "getting more": [65535, 0], "more and": [65535, 0], "and more": [49105, 16430], "more interested": [65535, 0], "interested more": [65535, 0], "more absorbed": [65535, 0], "absorbed presently": [65535, 0], "tom let": [65535, 0], "me whitewash": [65535, 0], "little tom": [65535, 0], "tom considered": [65535, 0], "considered was": [65535, 0], "to consent": [65535, 0], "consent but": [65535, 0], "he altered": [65535, 0], "altered his": [65535, 0], "mind no": [65535, 0], "no no": [32706, 32829], "reckon it": [65535, 0], "it wouldn't": [65535, 0], "wouldn't hardly": [65535, 0], "hardly do": [65535, 0], "do ben": [65535, 0], "ben you": [65535, 0], "see aunt": [65535, 0], "aunt polly's": [65535, 0], "polly's awful": [65535, 0], "awful particular": [65535, 0], "particular about": [65535, 0], "about this": [65535, 0], "this fence": [65535, 0], "fence right": [65535, 0], "right here": [65535, 0], "here on": [65535, 0], "street you": [65535, 0], "know but": [65535, 0], "but if": [39262, 26273], "back fence": [65535, 0], "fence i": [65535, 0], "wouldn't mind": [65535, 0], "mind and": [65535, 0], "she wouldn't": [65535, 0], "wouldn't yes": [65535, 0], "yes she's": [65535, 0], "she's awful": [65535, 0], "fence it's": [65535, 0], "it's got": [65535, 0], "be done": [65535, 0], "done very": [65535, 0], "very careful": [65535, 0], "careful i": [65535, 0], "reckon there": [65535, 0], "there ain't": [65535, 0], "ain't one": [65535, 0], "one boy": [65535, 0], "thousand maybe": [65535, 0], "two thousand": [65535, 0], "thousand that": [65535, 0], "that can": [21790, 43745], "can do": [65535, 0], "do it": [61425, 4110], "way it's": [65535, 0], "so oh": [65535, 0], "now lemme": [65535, 0], "lemme just": [65535, 0], "just try": [65535, 0], "try only": [65535, 0], "only just": [65535, 0], "just a": [65535, 0], "little i'd": [65535, 0], "i'd let": [65535, 0], "let you": [65535, 0], "you if": [65535, 0], "you was": [65535, 0], "was me": [65535, 0], "tom ben": [65535, 0], "ben i'd": [65535, 0], "to honest": [65535, 0], "honest injun": [65535, 0], "injun but": [65535, 0], "but aunt": [65535, 0], "polly well": [65535, 0], "well jim": [65535, 0], "jim wanted": [65535, 0], "wouldn't let": [65535, 0], "let him": [19609, 45926], "him sid": [65535, 0], "sid wanted": [65535, 0], "let sid": [65535, 0], "sid now": [65535, 0], "how i'm": [65535, 0], "i'm fixed": [65535, 0], "fixed if": [65535, 0], "to tackle": [65535, 0], "tackle this": [65535, 0], "and anything": [65535, 0], "anything was": [65535, 0], "to happen": [65535, 0], "happen to": [65535, 0], "it oh": [65535, 0], "oh shucks": [65535, 0], "shucks i'll": [65535, 0], "i'll be": [65535, 0], "be just": [65535, 0], "as careful": [65535, 0], "careful now": [65535, 0], "lemme try": [65535, 0], "try say": [65535, 0], "say i'll": [65535, 0], "the core": [65535, 0], "core of": [65535, 0], "my apple": [65535, 0], "apple well": [65535, 0], "well here": [65535, 0], "here no": [65535, 0], "no ben": [65535, 0], "ben now": [65535, 0], "don't i'm": [65535, 0], "i'm afeard": [65535, 0], "afeard i'll": [65535, 0], "you all": [43635, 21900], "all of": [65535, 0], "tom gave": [65535, 0], "brush with": [65535, 0], "with reluctance": [65535, 0], "reluctance in": [65535, 0], "face but": [52389, 13146], "but alacrity": [65535, 0], "alacrity in": [65535, 0], "and while": [65535, 0], "the late": [65535, 0], "late steamer": [65535, 0], "steamer big": [65535, 0], "missouri worked": [65535, 0], "worked and": [65535, 0], "and sweated": [65535, 0], "sweated in": [65535, 0], "the sun": [65535, 0], "sun the": [65535, 0], "the retired": [65535, 0], "retired artist": [65535, 0], "artist sat": [65535, 0], "sat on": [65535, 0], "a barrel": [65535, 0], "barrel in": [65535, 0], "the shade": [65535, 0], "shade close": [65535, 0], "close by": [65535, 0], "by dangled": [65535, 0], "dangled his": [65535, 0], "his legs": [65535, 0], "legs munched": [65535, 0], "munched his": [65535, 0], "and planned": [65535, 0], "planned the": [65535, 0], "slaughter of": [65535, 0], "of more": [21790, 43745], "more innocents": [65535, 0], "innocents there": [65535, 0], "no lack": [65535, 0], "lack of": [65535, 0], "of material": [65535, 0], "material boys": [65535, 0], "boys happened": [65535, 0], "happened along": [65535, 0], "along every": [65535, 0], "every little": [65535, 0], "while they": [65535, 0], "they came": [49105, 16430], "came to": [21790, 43745], "to jeer": [65535, 0], "jeer but": [65535, 0], "but remained": [65535, 0], "remained to": [65535, 0], "whitewash by": [65535, 0], "the time": [49105, 16430], "time ben": [65535, 0], "ben was": [65535, 0], "was fagged": [65535, 0], "fagged out": [65535, 0], "out tom": [65535, 0], "had traded": [65535, 0], "traded the": [65535, 0], "the next": [65535, 0], "next chance": [65535, 0], "to billy": [65535, 0], "billy fisher": [65535, 0], "fisher for": [65535, 0], "a kite": [65535, 0], "kite in": [65535, 0], "in good": [16338, 49197], "good repair": [65535, 0], "repair and": [65535, 0], "played out": [65535, 0], "out johnny": [65535, 0], "johnny miller": [65535, 0], "miller bought": [65535, 0], "bought in": [65535, 0], "in for": [65535, 0], "dead rat": [65535, 0], "rat and": [65535, 0], "a string": [65535, 0], "string to": [65535, 0], "to swing": [65535, 0], "swing it": [65535, 0], "with and": [65535, 0], "so on": [65535, 0], "on and": [65535, 0], "on hour": [65535, 0], "hour after": [65535, 0], "after hour": [65535, 0], "the afternoon": [65535, 0], "afternoon came": [65535, 0], "came from": [21790, 43745], "from being": [65535, 0], "being a": [32706, 32829], "a poor": [65535, 0], "poor poverty": [65535, 0], "poverty stricken": [65535, 0], "stricken boy": [65535, 0], "morning tom": [65535, 0], "was literally": [65535, 0], "literally rolling": [65535, 0], "rolling in": [65535, 0], "in wealth": [65535, 0], "wealth he": [65535, 0], "had besides": [65535, 0], "besides the": [65535, 0], "the things": [65535, 0], "things before": [65535, 0], "before mentioned": [65535, 0], "mentioned twelve": [65535, 0], "twelve marbles": [65535, 0], "marbles part": [65535, 0], "a jews": [65535, 0], "jews harp": [65535, 0], "harp a": [65535, 0], "a piece": [65535, 0], "of blue": [65535, 0], "blue bottle": [65535, 0], "bottle glass": [65535, 0], "glass to": [65535, 0], "to look": [65535, 0], "look through": [65535, 0], "through a": [65535, 0], "a spool": [65535, 0], "spool cannon": [65535, 0], "cannon a": [65535, 0], "a key": [65535, 0], "key that": [65535, 0], "wouldn't unlock": [65535, 0], "unlock anything": [65535, 0], "anything a": [65535, 0], "a fragment": [65535, 0], "fragment of": [65535, 0], "of chalk": [65535, 0], "chalk a": [65535, 0], "a glass": [65535, 0], "glass stopper": [65535, 0], "stopper of": [65535, 0], "a decanter": [65535, 0], "decanter a": [65535, 0], "tin soldier": [65535, 0], "soldier a": [65535, 0], "of tadpoles": [65535, 0], "tadpoles six": [65535, 0], "six fire": [65535, 0], "fire crackers": [65535, 0], "crackers a": [65535, 0], "a kitten": [65535, 0], "kitten with": [65535, 0], "with only": [65535, 0], "only one": [65535, 0], "eye a": [65535, 0], "a brass": [65535, 0], "brass doorknob": [65535, 0], "doorknob a": [65535, 0], "a dog": [65535, 0], "dog collar": [65535, 0], "collar but": [65535, 0], "but no": [65535, 0], "no dog": [65535, 0], "dog the": [65535, 0], "the handle": [65535, 0], "handle of": [65535, 0], "a knife": [65535, 0], "knife four": [65535, 0], "four pieces": [65535, 0], "pieces of": [65535, 0], "of orange": [65535, 0], "orange peel": [65535, 0], "peel and": [65535, 0], "a dilapidated": [65535, 0], "dilapidated old": [65535, 0], "old window": [65535, 0], "sash he": [65535, 0], "a nice": [65535, 0], "nice good": [65535, 0], "good idle": [65535, 0], "idle time": [65535, 0], "time all": [65535, 0], "the while": [43635, 21900], "while plenty": [65535, 0], "plenty of": [65535, 0], "of company": [65535, 0], "company and": [65535, 0], "fence had": [65535, 0], "had three": [65535, 0], "three coats": [65535, 0], "coats of": [65535, 0], "whitewash on": [65535, 0], "he hadn't": [65535, 0], "hadn't run": [65535, 0], "run out": [65535, 0], "whitewash he": [65535, 0], "would have": [65535, 0], "have bankrupted": [65535, 0], "bankrupted every": [65535, 0], "village tom": [65535, 0], "not such": [65535, 0], "a hollow": [65535, 0], "hollow world": [65535, 0], "world after": [65535, 0], "after all": [65535, 0], "all he": [65535, 0], "had discovered": [65535, 0], "discovered a": [65535, 0], "great law": [65535, 0], "law of": [65535, 0], "of human": [65535, 0], "human action": [65535, 0], "action without": [65535, 0], "without knowing": [65535, 0], "knowing it": [65535, 0], "it namely": [65535, 0], "namely that": [65535, 0], "that in": [28026, 37509], "order to": [65535, 0], "man or": [32706, 32829], "or a": [65535, 0], "boy covet": [65535, 0], "covet a": [65535, 0], "is only": [65535, 0], "only necessary": [65535, 0], "necessary to": [65535, 0], "make the": [65535, 0], "thing difficult": [65535, 0], "difficult to": [65535, 0], "to attain": [65535, 0], "attain if": [65535, 0], "great and": [65535, 0], "and wise": [65535, 0], "wise philosopher": [65535, 0], "philosopher like": [65535, 0], "the writer": [65535, 0], "writer of": [65535, 0], "book he": [65535, 0], "would now": [65535, 0], "now have": [65535, 0], "have comprehended": [65535, 0], "comprehended that": [65535, 0], "work consists": [65535, 0], "consists of": [65535, 0], "of whatever": [65535, 0], "whatever a": [65535, 0], "body is": [65535, 0], "is obliged": [65535, 0], "obliged to": [65535, 0], "do and": [43635, 21900], "that play": [65535, 0], "play consists": [65535, 0], "is not": [24518, 41017], "not obliged": [65535, 0], "and this": [24518, 41017], "this would": [65535, 0], "would help": [65535, 0], "help him": [65535, 0], "to understand": [65535, 0], "understand why": [65535, 0], "why constructing": [65535, 0], "constructing artificial": [65535, 0], "artificial flowers": [65535, 0], "flowers or": [65535, 0], "or performing": [65535, 0], "performing on": [65535, 0], "a tread": [65535, 0], "tread mill": [65535, 0], "mill is": [65535, 0], "is work": [65535, 0], "work while": [65535, 0], "while rolling": [65535, 0], "rolling ten": [65535, 0], "ten pins": [65535, 0], "pins or": [65535, 0], "or climbing": [65535, 0], "climbing mont": [65535, 0], "mont blanc": [65535, 0], "blanc is": [65535, 0], "only amusement": [65535, 0], "amusement there": [65535, 0], "there are": [65535, 0], "are wealthy": [65535, 0], "wealthy gentlemen": [65535, 0], "gentlemen in": [65535, 0], "in england": [65535, 0], "england who": [65535, 0], "who drive": [65535, 0], "drive four": [65535, 0], "four horse": [65535, 0], "horse passenger": [65535, 0], "passenger coaches": [65535, 0], "coaches twenty": [65535, 0], "twenty or": [65535, 0], "or thirty": [65535, 0], "thirty miles": [65535, 0], "miles on": [65535, 0], "a daily": [65535, 0], "daily line": [65535, 0], "line in": [65535, 0], "summer because": [65535, 0], "the privilege": [65535, 0], "privilege costs": [65535, 0], "costs them": [65535, 0], "them considerable": [65535, 0], "considerable money": [65535, 0], "money but": [65535, 0], "were offered": [65535, 0], "offered wages": [65535, 0], "wages for": [65535, 0], "the service": [65535, 0], "service that": [65535, 0], "would turn": [65535, 0], "turn it": [65535, 0], "it into": [65535, 0], "into work": [65535, 0], "then they": [32706, 32829], "would resign": [65535, 0], "resign the": [65535, 0], "boy mused": [65535, 0], "mused awhile": [65535, 0], "awhile over": [65535, 0], "the substantial": [65535, 0], "substantial change": [65535, 0], "change which": [65535, 0], "which had": [65535, 0], "had taken": [65535, 0], "taken place": [65535, 0], "worldly circumstances": [65535, 0], "circumstances and": [65535, 0], "then wended": [65535, 0], "wended toward": [65535, 0], "toward headquarters": [65535, 0], "headquarters to": [65535, 0], "to report": [65535, 0], "saturday morning was": [65535, 0], "morning was come": [65535, 0], "was come and": [65535, 0], "come and all": [65535, 0], "and all the": [32706, 32829], "all the summer": [65535, 0], "the summer world": [65535, 0], "summer world was": [65535, 0], "world was bright": [65535, 0], "was bright and": [65535, 0], "bright and fresh": [65535, 0], "and fresh and": [65535, 0], "fresh and brimming": [65535, 0], "and brimming with": [65535, 0], "brimming with life": [65535, 0], "with life there": [65535, 0], "life there was": [65535, 0], "was a song": [65535, 0], "a song in": [65535, 0], "song in every": [65535, 0], "in every heart": [65535, 0], "every heart and": [65535, 0], "heart and if": [65535, 0], "and if the": [32706, 32829], "if the heart": [65535, 0], "the heart was": [65535, 0], "heart was young": [65535, 0], "was young the": [65535, 0], "young the music": [65535, 0], "the music issued": [65535, 0], "music issued at": [65535, 0], "issued at the": [65535, 0], "at the lips": [65535, 0], "the lips there": [65535, 0], "lips there was": [65535, 0], "there was cheer": [65535, 0], "was cheer in": [65535, 0], "cheer in every": [65535, 0], "in every face": [65535, 0], "every face and": [65535, 0], "face and a": [65535, 0], "and a spring": [65535, 0], "a spring in": [65535, 0], "spring in every": [65535, 0], "in every step": [65535, 0], "every step the": [65535, 0], "step the locust": [65535, 0], "the locust trees": [65535, 0], "locust trees were": [65535, 0], "trees were in": [65535, 0], "were in bloom": [65535, 0], "in bloom and": [65535, 0], "bloom and the": [65535, 0], "and the fragrance": [65535, 0], "the fragrance of": [65535, 0], "fragrance of the": [65535, 0], "of the blossoms": [65535, 0], "the blossoms filled": [65535, 0], "blossoms filled the": [65535, 0], "filled the air": [65535, 0], "the air cardiff": [65535, 0], "air cardiff hill": [65535, 0], "cardiff hill beyond": [65535, 0], "hill beyond the": [65535, 0], "beyond the village": [65535, 0], "the village and": [65535, 0], "village and above": [65535, 0], "and above it": [65535, 0], "above it was": [65535, 0], "it was green": [65535, 0], "was green with": [65535, 0], "green with vegetation": [65535, 0], "with vegetation and": [65535, 0], "vegetation and it": [65535, 0], "and it lay": [65535, 0], "it lay just": [65535, 0], "lay just far": [65535, 0], "just far enough": [65535, 0], "far enough away": [65535, 0], "enough away to": [65535, 0], "away to seem": [65535, 0], "to seem a": [65535, 0], "seem a delectable": [65535, 0], "a delectable land": [65535, 0], "delectable land dreamy": [65535, 0], "land dreamy reposeful": [65535, 0], "dreamy reposeful and": [65535, 0], "reposeful and inviting": [65535, 0], "and inviting tom": [65535, 0], "inviting tom appeared": [65535, 0], "tom appeared on": [65535, 0], "appeared on the": [65535, 0], "on the sidewalk": [65535, 0], "the sidewalk with": [65535, 0], "sidewalk with a": [65535, 0], "with a bucket": [65535, 0], "a bucket of": [65535, 0], "bucket of whitewash": [65535, 0], "of whitewash and": [65535, 0], "whitewash and a": [65535, 0], "and a long": [65535, 0], "a long handled": [65535, 0], "long handled brush": [65535, 0], "handled brush he": [65535, 0], "brush he surveyed": [65535, 0], "surveyed the fence": [65535, 0], "the fence and": [65535, 0], "fence and all": [65535, 0], "and all gladness": [65535, 0], "all gladness left": [65535, 0], "gladness left him": [65535, 0], "left him and": [32706, 32829], "him and a": [65535, 0], "and a deep": [65535, 0], "a deep melancholy": [65535, 0], "deep melancholy settled": [65535, 0], "melancholy settled down": [65535, 0], "settled down upon": [65535, 0], "down upon his": [65535, 0], "upon his spirit": [65535, 0], "his spirit thirty": [65535, 0], "spirit thirty yards": [65535, 0], "thirty yards of": [65535, 0], "yards of board": [65535, 0], "of board fence": [65535, 0], "board fence nine": [65535, 0], "fence nine feet": [65535, 0], "nine feet high": [65535, 0], "feet high life": [65535, 0], "high life to": [65535, 0], "life to him": [65535, 0], "to him seemed": [65535, 0], "him seemed hollow": [65535, 0], "seemed hollow and": [65535, 0], "hollow and existence": [65535, 0], "and existence but": [65535, 0], "existence but a": [65535, 0], "but a burden": [65535, 0], "a burden sighing": [65535, 0], "burden sighing he": [65535, 0], "sighing he dipped": [65535, 0], "he dipped his": [65535, 0], "dipped his brush": [65535, 0], "his brush and": [65535, 0], "brush and passed": [65535, 0], "and passed it": [65535, 0], "passed it along": [65535, 0], "it along the": [65535, 0], "along the topmost": [65535, 0], "the topmost plank": [65535, 0], "topmost plank repeated": [65535, 0], "plank repeated the": [65535, 0], "repeated the operation": [65535, 0], "the operation did": [65535, 0], "operation did it": [65535, 0], "did it again": [65535, 0], "it again compared": [65535, 0], "again compared the": [65535, 0], "compared the insignificant": [65535, 0], "the insignificant whitewashed": [65535, 0], "insignificant whitewashed streak": [65535, 0], "whitewashed streak with": [65535, 0], "streak with the": [65535, 0], "with the far": [65535, 0], "the far reaching": [65535, 0], "far reaching continent": [65535, 0], "reaching continent of": [65535, 0], "continent of unwhitewashed": [65535, 0], "of unwhitewashed fence": [65535, 0], "unwhitewashed fence and": [65535, 0], "fence and sat": [65535, 0], "down on a": [65535, 0], "on a tree": [65535, 0], "a tree box": [65535, 0], "tree box discouraged": [65535, 0], "box discouraged jim": [65535, 0], "discouraged jim came": [65535, 0], "jim came skipping": [65535, 0], "came skipping out": [65535, 0], "skipping out at": [65535, 0], "out at the": [65535, 0], "at the gate": [32706, 32829], "the gate with": [65535, 0], "gate with a": [65535, 0], "with a tin": [65535, 0], "a tin pail": [65535, 0], "tin pail and": [65535, 0], "pail and singing": [65535, 0], "and singing buffalo": [65535, 0], "singing buffalo gals": [65535, 0], "buffalo gals bringing": [65535, 0], "gals bringing water": [65535, 0], "bringing water from": [65535, 0], "water from the": [65535, 0], "from the town": [65535, 0], "the town pump": [65535, 0], "town pump had": [65535, 0], "pump had always": [65535, 0], "had always been": [65535, 0], "always been hateful": [65535, 0], "been hateful work": [65535, 0], "hateful work in": [65535, 0], "work in tom's": [65535, 0], "in tom's eyes": [65535, 0], "tom's eyes before": [65535, 0], "eyes before but": [65535, 0], "before but now": [65535, 0], "but now it": [65535, 0], "now it did": [65535, 0], "it did not": [65535, 0], "did not strike": [65535, 0], "not strike him": [65535, 0], "strike him so": [65535, 0], "so he remembered": [65535, 0], "he remembered that": [65535, 0], "remembered that there": [65535, 0], "there was company": [65535, 0], "was company at": [65535, 0], "company at the": [65535, 0], "at the pump": [65535, 0], "the pump white": [65535, 0], "pump white mulatto": [65535, 0], "white mulatto and": [65535, 0], "mulatto and negro": [65535, 0], "and negro boys": [65535, 0], "negro boys and": [65535, 0], "boys and girls": [65535, 0], "and girls were": [65535, 0], "girls were always": [65535, 0], "were always there": [65535, 0], "always there waiting": [65535, 0], "there waiting their": [65535, 0], "waiting their turns": [65535, 0], "their turns resting": [65535, 0], "turns resting trading": [65535, 0], "resting trading playthings": [65535, 0], "trading playthings quarrelling": [65535, 0], "playthings quarrelling fighting": [65535, 0], "quarrelling fighting skylarking": [65535, 0], "fighting skylarking and": [65535, 0], "skylarking and he": [65535, 0], "and he remembered": [65535, 0], "remembered that although": [65535, 0], "that although the": [65535, 0], "although the pump": [65535, 0], "the pump was": [65535, 0], "pump was only": [65535, 0], "was only a": [65535, 0], "only a hundred": [65535, 0], "a hundred and": [65535, 0], "hundred and fifty": [65535, 0], "and fifty yards": [65535, 0], "fifty yards off": [65535, 0], "yards off jim": [65535, 0], "off jim never": [65535, 0], "jim never got": [65535, 0], "never got back": [65535, 0], "got back with": [65535, 0], "back with a": [65535, 0], "bucket of water": [65535, 0], "of water under": [65535, 0], "water under an": [65535, 0], "under an hour": [65535, 0], "an hour and": [65535, 0], "hour and even": [65535, 0], "and even then": [65535, 0], "even then somebody": [65535, 0], "then somebody generally": [65535, 0], "somebody generally had": [65535, 0], "generally had to": [65535, 0], "had to go": [65535, 0], "to go after": [65535, 0], "go after him": [65535, 0], "after him tom": [65535, 0], "him tom said": [65535, 0], "tom said say": [65535, 0], "said say jim": [65535, 0], "say jim i'll": [65535, 0], "jim i'll fetch": [65535, 0], "i'll fetch the": [65535, 0], "fetch the water": [65535, 0], "the water if": [65535, 0], "water if you'll": [65535, 0], "if you'll whitewash": [65535, 0], "you'll whitewash some": [65535, 0], "whitewash some jim": [65535, 0], "some jim shook": [65535, 0], "jim shook his": [65535, 0], "shook his head": [65535, 0], "his head and": [65535, 0], "head and said": [65535, 0], "and said can't": [65535, 0], "said can't mars": [65535, 0], "can't mars tom": [65535, 0], "mars tom ole": [65535, 0], "tom ole missis": [65535, 0], "ole missis she": [65535, 0], "missis she tole": [65535, 0], "she tole me": [65535, 0], "tole me i": [65535, 0], "me i got": [65535, 0], "i got to": [65535, 0], "to go an'": [65535, 0], "go an' git": [65535, 0], "an' git dis": [65535, 0], "git dis water": [65535, 0], "dis water an'": [65535, 0], "water an' not": [65535, 0], "an' not stop": [65535, 0], "not stop foolin'": [65535, 0], "stop foolin' roun'": [65535, 0], "foolin' roun' wid": [65535, 0], "roun' wid anybody": [65535, 0], "wid anybody she": [65535, 0], "anybody she say": [65535, 0], "she say she": [65535, 0], "say she spec'": [65535, 0], "she spec' mars": [65535, 0], "spec' mars tom": [65535, 0], "mars tom gwine": [65535, 0], "tom gwine to": [65535, 0], "gwine to ax": [65535, 0], "to ax me": [65535, 0], "ax me to": [65535, 0], "me to whitewash": [65535, 0], "to whitewash an'": [65535, 0], "whitewash an' so": [65535, 0], "an' so she": [65535, 0], "so she tole": [65535, 0], "tole me go": [65535, 0], "me go 'long": [65535, 0], "go 'long an'": [65535, 0], "'long an' 'tend": [65535, 0], "an' 'tend to": [65535, 0], "'tend to my": [65535, 0], "to my own": [65535, 0], "my own business": [65535, 0], "own business she": [65535, 0], "business she 'lowed": [65535, 0], "she 'lowed she'd": [65535, 0], "'lowed she'd 'tend": [65535, 0], "she'd 'tend to": [65535, 0], "'tend to de": [65535, 0], "to de whitewashin'": [65535, 0], "de whitewashin' oh": [65535, 0], "whitewashin' oh never": [65535, 0], "oh never you": [65535, 0], "never you mind": [65535, 0], "you mind what": [65535, 0], "mind what she": [65535, 0], "what she said": [65535, 0], "she said jim": [65535, 0], "said jim that's": [65535, 0], "jim that's the": [65535, 0], "the way she": [65535, 0], "way she always": [65535, 0], "she always talks": [65535, 0], "always talks gimme": [65535, 0], "talks gimme the": [65535, 0], "gimme the bucket": [65535, 0], "the bucket i": [65535, 0], "bucket i won't": [65535, 0], "i won't be": [65535, 0], "won't be gone": [65535, 0], "be gone only": [65535, 0], "gone only a": [65535, 0], "only a minute": [65535, 0], "a minute she": [65535, 0], "minute she won't": [65535, 0], "she won't ever": [65535, 0], "won't ever know": [65535, 0], "ever know oh": [65535, 0], "know oh i": [65535, 0], "oh i dasn't": [65535, 0], "i dasn't mars": [65535, 0], "dasn't mars tom": [65535, 0], "ole missis she'd": [65535, 0], "missis she'd take": [65535, 0], "she'd take an'": [65535, 0], "take an' tar": [65535, 0], "an' tar de": [65535, 0], "tar de head": [65535, 0], "de head off'n": [65535, 0], "head off'n me": [65535, 0], "off'n me 'deed": [65535, 0], "me 'deed she": [65535, 0], "'deed she would": [65535, 0], "she would she": [65535, 0], "would she she": [65535, 0], "she she never": [65535, 0], "she never licks": [65535, 0], "never licks anybody": [65535, 0], "licks anybody whacks": [65535, 0], "anybody whacks 'em": [65535, 0], "whacks 'em over": [65535, 0], "'em over the": [65535, 0], "over the head": [65535, 0], "the head with": [65535, 0], "head with her": [65535, 0], "with her thimble": [65535, 0], "her thimble and": [65535, 0], "thimble and who": [65535, 0], "and who cares": [65535, 0], "who cares for": [65535, 0], "cares for that": [65535, 0], "for that i'd": [65535, 0], "that i'd like": [65535, 0], "i'd like to": [65535, 0], "like to know": [65535, 0], "to know she": [65535, 0], "know she talks": [65535, 0], "she talks awful": [65535, 0], "talks awful but": [65535, 0], "awful but talk": [65535, 0], "but talk don't": [65535, 0], "talk don't hurt": [65535, 0], "don't hurt anyways": [65535, 0], "hurt anyways it": [65535, 0], "anyways it don't": [65535, 0], "it don't if": [65535, 0], "don't if she": [65535, 0], "if she don't": [65535, 0], "she don't cry": [65535, 0], "don't cry jim": [65535, 0], "cry jim i'll": [65535, 0], "jim i'll give": [65535, 0], "give you a": [65535, 0], "you a marvel": [65535, 0], "a marvel i'll": [65535, 0], "marvel i'll give": [65535, 0], "you a white": [65535, 0], "a white alley": [65535, 0], "white alley jim": [65535, 0], "alley jim began": [65535, 0], "jim began to": [65535, 0], "began to waver": [65535, 0], "to waver white": [65535, 0], "waver white alley": [65535, 0], "alley jim and": [65535, 0], "jim and it's": [65535, 0], "and it's a": [65535, 0], "it's a bully": [65535, 0], "a bully taw": [65535, 0], "bully taw my": [65535, 0], "taw my dat's": [65535, 0], "my dat's a": [65535, 0], "dat's a mighty": [65535, 0], "a mighty gay": [65535, 0], "mighty gay marvel": [65535, 0], "gay marvel i": [65535, 0], "marvel i tell": [65535, 0], "i tell you": [21790, 43745], "tell you but": [65535, 0], "you but mars": [65535, 0], "but mars tom": [65535, 0], "mars tom i's": [65535, 0], "tom i's powerful": [65535, 0], "i's powerful 'fraid": [65535, 0], "powerful 'fraid ole": [65535, 0], "'fraid ole missis": [65535, 0], "ole missis and": [65535, 0], "missis and besides": [65535, 0], "and besides if": [65535, 0], "besides if you": [65535, 0], "you will i'll": [65535, 0], "will i'll show": [65535, 0], "i'll show you": [65535, 0], "show you my": [65535, 0], "you my sore": [65535, 0], "my sore toe": [65535, 0], "sore toe jim": [65535, 0], "toe jim was": [65535, 0], "jim was only": [65535, 0], "was only human": [65535, 0], "only human this": [65535, 0], "human this attraction": [65535, 0], "this attraction was": [65535, 0], "attraction was too": [65535, 0], "was too much": [65535, 0], "too much for": [65535, 0], "much for him": [65535, 0], "for him he": [32706, 32829], "him he put": [65535, 0], "he put down": [65535, 0], "put down his": [65535, 0], "down his pail": [65535, 0], "his pail took": [65535, 0], "pail took the": [65535, 0], "took the white": [65535, 0], "the white alley": [65535, 0], "white alley and": [65535, 0], "alley and bent": [65535, 0], "and bent over": [65535, 0], "bent over the": [65535, 0], "over the toe": [65535, 0], "the toe with": [65535, 0], "toe with absorbing": [65535, 0], "with absorbing interest": [65535, 0], "absorbing interest while": [65535, 0], "interest while the": [65535, 0], "while the bandage": [65535, 0], "the bandage was": [65535, 0], "bandage was being": [65535, 0], "was being unwound": [65535, 0], "being unwound in": [65535, 0], "unwound in another": [65535, 0], "in another moment": [65535, 0], "another moment he": [65535, 0], "moment he was": [65535, 0], "he was flying": [65535, 0], "was flying down": [65535, 0], "flying down the": [65535, 0], "down the street": [65535, 0], "the street with": [65535, 0], "street with his": [65535, 0], "with his pail": [65535, 0], "his pail and": [65535, 0], "pail and a": [65535, 0], "and a tingling": [65535, 0], "a tingling rear": [65535, 0], "tingling rear tom": [65535, 0], "rear tom was": [65535, 0], "tom was whitewashing": [65535, 0], "was whitewashing with": [65535, 0], "whitewashing with vigor": [65535, 0], "with vigor and": [65535, 0], "vigor and aunt": [65535, 0], "and aunt polly": [65535, 0], "aunt polly was": [65535, 0], "polly was retiring": [65535, 0], "was retiring from": [65535, 0], "retiring from the": [65535, 0], "from the field": [65535, 0], "the field with": [65535, 0], "field with a": [65535, 0], "with a slipper": [65535, 0], "a slipper in": [65535, 0], "slipper in her": [65535, 0], "in her hand": [65535, 0], "her hand and": [65535, 0], "hand and triumph": [65535, 0], "and triumph in": [65535, 0], "triumph in her": [65535, 0], "in her eye": [65535, 0], "her eye but": [65535, 0], "eye but tom's": [65535, 0], "but tom's energy": [65535, 0], "tom's energy did": [65535, 0], "energy did not": [65535, 0], "did not last": [65535, 0], "not last he": [65535, 0], "last he began": [65535, 0], "began to think": [65535, 0], "to think of": [65535, 0], "think of the": [65535, 0], "of the fun": [65535, 0], "the fun he": [65535, 0], "fun he had": [65535, 0], "he had planned": [65535, 0], "had planned for": [65535, 0], "planned for this": [65535, 0], "for this day": [65535, 0], "this day and": [65535, 0], "day and his": [65535, 0], "and his sorrows": [65535, 0], "his sorrows multiplied": [65535, 0], "sorrows multiplied soon": [65535, 0], "multiplied soon the": [65535, 0], "soon the free": [65535, 0], "the free boys": [65535, 0], "free boys would": [65535, 0], "boys would come": [65535, 0], "would come tripping": [65535, 0], "come tripping along": [65535, 0], "tripping along on": [65535, 0], "along on all": [65535, 0], "on all sorts": [65535, 0], "all sorts of": [65535, 0], "sorts of delicious": [65535, 0], "of delicious expeditions": [65535, 0], "delicious expeditions and": [65535, 0], "expeditions and they": [65535, 0], "and they would": [65535, 0], "they would make": [65535, 0], "would make a": [32706, 32829], "make a world": [65535, 0], "a world of": [65535, 0], "world of fun": [65535, 0], "of fun of": [65535, 0], "fun of him": [65535, 0], "of him for": [65535, 0], "him for having": [65535, 0], "for having to": [65535, 0], "having to work": [65535, 0], "to work the": [65535, 0], "work the very": [65535, 0], "the very thought": [65535, 0], "very thought of": [65535, 0], "thought of it": [65535, 0], "of it burnt": [65535, 0], "it burnt him": [65535, 0], "burnt him like": [65535, 0], "him like fire": [65535, 0], "like fire he": [65535, 0], "fire he got": [65535, 0], "he got out": [65535, 0], "got out his": [65535, 0], "out his worldly": [65535, 0], "his worldly wealth": [65535, 0], "worldly wealth and": [65535, 0], "wealth and examined": [65535, 0], "and examined it": [65535, 0], "examined it bits": [65535, 0], "it bits of": [65535, 0], "bits of toys": [65535, 0], "of toys marbles": [65535, 0], "toys marbles and": [65535, 0], "marbles and trash": [65535, 0], "and trash enough": [65535, 0], "trash enough to": [65535, 0], "enough to buy": [65535, 0], "to buy an": [65535, 0], "buy an exchange": [65535, 0], "an exchange of": [65535, 0], "exchange of work": [65535, 0], "of work maybe": [65535, 0], "work maybe but": [65535, 0], "maybe but not": [65535, 0], "but not half": [65535, 0], "not half enough": [65535, 0], "half enough to": [65535, 0], "to buy so": [65535, 0], "buy so much": [65535, 0], "so much as": [65535, 0], "much as half": [65535, 0], "as half an": [65535, 0], "half an hour": [65535, 0], "an hour of": [65535, 0], "hour of pure": [65535, 0], "of pure freedom": [65535, 0], "pure freedom so": [65535, 0], "freedom so he": [65535, 0], "so he returned": [65535, 0], "he returned his": [65535, 0], "returned his straitened": [65535, 0], "his straitened means": [65535, 0], "straitened means to": [65535, 0], "means to his": [65535, 0], "to his pocket": [65535, 0], "his pocket and": [65535, 0], "pocket and gave": [65535, 0], "and gave up": [65535, 0], "gave up the": [65535, 0], "up the idea": [65535, 0], "the idea of": [65535, 0], "idea of trying": [65535, 0], "of trying to": [65535, 0], "trying to buy": [65535, 0], "to buy the": [65535, 0], "buy the boys": [65535, 0], "the boys at": [65535, 0], "boys at this": [65535, 0], "at this dark": [65535, 0], "this dark and": [65535, 0], "dark and hopeless": [65535, 0], "and hopeless moment": [65535, 0], "hopeless moment an": [65535, 0], "moment an inspiration": [65535, 0], "an inspiration burst": [65535, 0], "inspiration burst upon": [65535, 0], "burst upon him": [65535, 0], "upon him nothing": [65535, 0], "him nothing less": [65535, 0], "nothing less than": [65535, 0], "less than a": [65535, 0], "than a great": [65535, 0], "a great magnificent": [65535, 0], "great magnificent inspiration": [65535, 0], "magnificent inspiration he": [65535, 0], "inspiration he took": [65535, 0], "took up his": [65535, 0], "up his brush": [65535, 0], "brush and went": [65535, 0], "and went tranquilly": [65535, 0], "went tranquilly to": [65535, 0], "tranquilly to work": [65535, 0], "to work ben": [65535, 0], "work ben rogers": [65535, 0], "ben rogers hove": [65535, 0], "rogers hove in": [65535, 0], "hove in sight": [65535, 0], "in sight presently": [65535, 0], "sight presently the": [65535, 0], "presently the very": [65535, 0], "the very boy": [65535, 0], "very boy of": [65535, 0], "boy of all": [65535, 0], "of all boys": [65535, 0], "all boys whose": [65535, 0], "boys whose ridicule": [65535, 0], "whose ridicule he": [65535, 0], "ridicule he had": [65535, 0], "had been dreading": [65535, 0], "been dreading ben's": [65535, 0], "dreading ben's gait": [65535, 0], "ben's gait was": [65535, 0], "gait was the": [65535, 0], "was the hop": [65535, 0], "the hop skip": [65535, 0], "hop skip and": [65535, 0], "skip and jump": [65535, 0], "and jump proof": [65535, 0], "jump proof enough": [65535, 0], "proof enough that": [65535, 0], "enough that his": [65535, 0], "that his heart": [65535, 0], "heart was light": [65535, 0], "was light and": [65535, 0], "light and his": [65535, 0], "and his anticipations": [65535, 0], "his anticipations high": [65535, 0], "anticipations high he": [65535, 0], "high he was": [65535, 0], "he was eating": [65535, 0], "was eating an": [65535, 0], "eating an apple": [65535, 0], "an apple and": [65535, 0], "apple and giving": [65535, 0], "and giving a": [65535, 0], "giving a long": [65535, 0], "a long melodious": [65535, 0], "long melodious whoop": [65535, 0], "melodious whoop at": [65535, 0], "whoop at intervals": [65535, 0], "at intervals followed": [65535, 0], "intervals followed by": [65535, 0], "by a deep": [65535, 0], "a deep toned": [65535, 0], "deep toned ding": [65535, 0], "toned ding dong": [65535, 0], "ding dong dong": [65535, 0], "dong dong ding": [65535, 0], "dong ding dong": [65535, 0], "dong dong for": [65535, 0], "dong for he": [65535, 0], "he was personating": [65535, 0], "was personating a": [65535, 0], "personating a steamboat": [65535, 0], "a steamboat as": [65535, 0], "steamboat as he": [65535, 0], "as he drew": [65535, 0], "he drew near": [65535, 0], "drew near he": [65535, 0], "near he slackened": [65535, 0], "he slackened speed": [65535, 0], "slackened speed took": [65535, 0], "speed took the": [65535, 0], "took the middle": [65535, 0], "of the street": [65535, 0], "the street leaned": [65535, 0], "street leaned far": [65535, 0], "leaned far over": [65535, 0], "far over to": [65535, 0], "over to starboard": [65535, 0], "to starboard and": [65535, 0], "starboard and rounded": [65535, 0], "and rounded to": [65535, 0], "rounded to ponderously": [65535, 0], "to ponderously and": [65535, 0], "ponderously and with": [65535, 0], "and with laborious": [65535, 0], "with laborious pomp": [65535, 0], "laborious pomp and": [65535, 0], "pomp and circumstance": [65535, 0], "and circumstance for": [65535, 0], "circumstance for he": [65535, 0], "was personating the": [65535, 0], "personating the big": [65535, 0], "the big missouri": [65535, 0], "big missouri and": [65535, 0], "missouri and considered": [65535, 0], "and considered himself": [65535, 0], "considered himself to": [65535, 0], "himself to be": [65535, 0], "to be drawing": [65535, 0], "be drawing nine": [65535, 0], "drawing nine feet": [65535, 0], "nine feet of": [65535, 0], "feet of water": [65535, 0], "of water he": [65535, 0], "water he was": [65535, 0], "he was boat": [65535, 0], "was boat and": [65535, 0], "boat and captain": [65535, 0], "and captain and": [65535, 0], "captain and engine": [65535, 0], "and engine bells": [65535, 0], "engine bells combined": [65535, 0], "bells combined so": [65535, 0], "combined so he": [65535, 0], "so he had": [65535, 0], "he had to": [65535, 0], "had to imagine": [65535, 0], "to imagine himself": [65535, 0], "imagine himself standing": [65535, 0], "himself standing on": [65535, 0], "standing on his": [65535, 0], "on his own": [65535, 0], "his own hurricane": [65535, 0], "own hurricane deck": [65535, 0], "hurricane deck giving": [65535, 0], "deck giving the": [65535, 0], "giving the orders": [65535, 0], "the orders and": [65535, 0], "orders and executing": [65535, 0], "and executing them": [65535, 0], "executing them stop": [65535, 0], "them stop her": [65535, 0], "stop her sir": [65535, 0], "her sir ting": [65535, 0], "sir ting a": [65535, 0], "ting a ling": [65535, 0], "a ling ling": [65535, 0], "ling ling the": [65535, 0], "ling the headway": [65535, 0], "the headway ran": [65535, 0], "headway ran almost": [65535, 0], "ran almost out": [65535, 0], "almost out and": [65535, 0], "out and he": [65535, 0], "and he drew": [65535, 0], "he drew up": [65535, 0], "drew up slowly": [65535, 0], "up slowly toward": [65535, 0], "slowly toward the": [65535, 0], "toward the sidewalk": [65535, 0], "the sidewalk ship": [65535, 0], "sidewalk ship up": [65535, 0], "ship up to": [65535, 0], "up to back": [65535, 0], "to back ting": [65535, 0], "back ting a": [65535, 0], "ling ling his": [65535, 0], "ling his arms": [65535, 0], "his arms straightened": [65535, 0], "arms straightened and": [65535, 0], "straightened and stiffened": [65535, 0], "and stiffened down": [65535, 0], "stiffened down his": [65535, 0], "down his sides": [65535, 0], "his sides set": [65535, 0], "sides set her": [65535, 0], "set her back": [65535, 0], "her back on": [65535, 0], "back on the": [65535, 0], "on the stabboard": [65535, 0], "the stabboard ting": [65535, 0], "stabboard ting a": [65535, 0], "ling ling chow": [65535, 0], "ling chow ch": [65535, 0], "chow ch chow": [65535, 0], "ch chow wow": [65535, 0], "chow wow chow": [65535, 0], "wow chow his": [65535, 0], "chow his right": [65535, 0], "his right hand": [65535, 0], "right hand meantime": [65535, 0], "hand meantime describing": [65535, 0], "meantime describing stately": [65535, 0], "describing stately circles": [65535, 0], "stately circles for": [65535, 0], "circles for it": [65535, 0], "for it was": [65535, 0], "it was representing": [65535, 0], "was representing a": [65535, 0], "representing a forty": [65535, 0], "a forty foot": [65535, 0], "forty foot wheel": [65535, 0], "foot wheel let": [65535, 0], "wheel let her": [65535, 0], "let her go": [65535, 0], "her go back": [65535, 0], "go back on": [65535, 0], "on the labboard": [65535, 0], "the labboard ting": [65535, 0], "labboard ting a": [65535, 0], "ch chow chow": [65535, 0], "chow chow the": [65535, 0], "chow the left": [65535, 0], "the left hand": [65535, 0], "left hand began": [65535, 0], "began to describe": [65535, 0], "to describe circles": [65535, 0], "describe circles stop": [65535, 0], "circles stop the": [65535, 0], "stop the stabboard": [65535, 0], "ling ling stop": [65535, 0], "ling stop the": [65535, 0], "stop the labboard": [65535, 0], "the labboard come": [65535, 0], "labboard come ahead": [65535, 0], "come ahead on": [65535, 0], "ahead on the": [65535, 0], "the stabboard stop": [65535, 0], "stabboard stop her": [65535, 0], "stop her let": [65535, 0], "her let your": [65535, 0], "let your outside": [65535, 0], "your outside turn": [65535, 0], "outside turn over": [65535, 0], "turn over slow": [65535, 0], "over slow ting": [65535, 0], "slow ting a": [65535, 0], "ling chow ow": [65535, 0], "chow ow ow": [65535, 0], "ow ow get": [65535, 0], "ow get out": [65535, 0], "get out that": [65535, 0], "out that head": [65535, 0], "that head line": [65535, 0], "head line lively": [65535, 0], "line lively now": [65535, 0], "lively now come": [65535, 0], "now come out": [65535, 0], "come out with": [65535, 0], "out with your": [65535, 0], "with your spring": [65535, 0], "your spring line": [65535, 0], "spring line what're": [65535, 0], "line what're you": [65535, 0], "what're you about": [65535, 0], "you about there": [65535, 0], "about there take": [65535, 0], "there take a": [65535, 0], "take a turn": [65535, 0], "a turn round": [65535, 0], "turn round that": [65535, 0], "round that stump": [65535, 0], "that stump with": [65535, 0], "stump with the": [65535, 0], "with the bight": [65535, 0], "the bight of": [65535, 0], "bight of it": [65535, 0], "of it stand": [65535, 0], "it stand by": [65535, 0], "stand by that": [65535, 0], "by that stage": [65535, 0], "that stage now": [65535, 0], "stage now let": [65535, 0], "now let her": [65535, 0], "her go done": [65535, 0], "go done with": [65535, 0], "done with the": [65535, 0], "with the engines": [65535, 0], "the engines sir": [65535, 0], "engines sir ting": [65535, 0], "ling ling sh't": [65535, 0], "ling sh't s'h't": [65535, 0], "sh't s'h't sh't": [65535, 0], "s'h't sh't trying": [65535, 0], "sh't trying the": [65535, 0], "trying the gauge": [65535, 0], "the gauge cocks": [65535, 0], "gauge cocks tom": [65535, 0], "cocks tom went": [65535, 0], "went on whitewashing": [65535, 0], "on whitewashing paid": [65535, 0], "whitewashing paid no": [65535, 0], "paid no attention": [65535, 0], "no attention to": [65535, 0], "attention to the": [65535, 0], "to the steamboat": [65535, 0], "the steamboat ben": [65535, 0], "steamboat ben stared": [65535, 0], "ben stared a": [65535, 0], "stared a moment": [65535, 0], "a moment and": [65535, 0], "moment and then": [65535, 0], "and then said": [65535, 0], "then said hi": [65535, 0], "said hi yi": [65535, 0], "hi yi you're": [65535, 0], "yi you're up": [65535, 0], "you're up a": [65535, 0], "up a stump": [65535, 0], "a stump ain't": [65535, 0], "stump ain't you": [65535, 0], "ain't you no": [65535, 0], "you no answer": [65535, 0], "no answer tom": [65535, 0], "answer tom surveyed": [65535, 0], "tom surveyed his": [65535, 0], "surveyed his last": [65535, 0], "his last touch": [65535, 0], "last touch with": [65535, 0], "touch with the": [65535, 0], "with the eye": [65535, 0], "the eye of": [65535, 0], "eye of an": [65535, 0], "of an artist": [65535, 0], "an artist then": [65535, 0], "artist then he": [65535, 0], "then he gave": [65535, 0], "he gave his": [65535, 0], "gave his brush": [65535, 0], "his brush another": [65535, 0], "brush another gentle": [65535, 0], "another gentle sweep": [65535, 0], "gentle sweep and": [65535, 0], "sweep and surveyed": [65535, 0], "and surveyed the": [65535, 0], "surveyed the result": [65535, 0], "the result as": [65535, 0], "result as before": [65535, 0], "as before ben": [65535, 0], "before ben ranged": [65535, 0], "ben ranged up": [65535, 0], "ranged up alongside": [65535, 0], "up alongside of": [65535, 0], "alongside of him": [65535, 0], "of him tom's": [65535, 0], "him tom's mouth": [65535, 0], "tom's mouth watered": [65535, 0], "mouth watered for": [65535, 0], "watered for the": [65535, 0], "for the apple": [65535, 0], "the apple but": [65535, 0], "apple but he": [65535, 0], "but he stuck": [65535, 0], "he stuck to": [65535, 0], "stuck to his": [65535, 0], "to his work": [65535, 0], "his work ben": [65535, 0], "work ben said": [65535, 0], "ben said hello": [65535, 0], "said hello old": [65535, 0], "hello old chap": [65535, 0], "old chap you": [65535, 0], "chap you got": [65535, 0], "got to work": [65535, 0], "to work hey": [65535, 0], "work hey tom": [65535, 0], "hey tom wheeled": [65535, 0], "tom wheeled suddenly": [65535, 0], "wheeled suddenly and": [65535, 0], "suddenly and said": [65535, 0], "and said why": [65535, 0], "said why it's": [65535, 0], "why it's you": [65535, 0], "it's you ben": [65535, 0], "you ben i": [65535, 0], "ben i warn't": [65535, 0], "i warn't noticing": [65535, 0], "warn't noticing say": [65535, 0], "noticing say i'm": [65535, 0], "say i'm going": [65535, 0], "i'm going in": [65535, 0], "going in a": [65535, 0], "in a swimming": [65535, 0], "a swimming i": [65535, 0], "swimming i am": [65535, 0], "i am don't": [65535, 0], "am don't you": [65535, 0], "don't you wish": [65535, 0], "you wish you": [65535, 0], "wish you could": [65535, 0], "you could but": [65535, 0], "could but of": [65535, 0], "but of course": [65535, 0], "of course you'd": [65535, 0], "course you'd druther": [65535, 0], "you'd druther work": [65535, 0], "druther work wouldn't": [65535, 0], "work wouldn't you": [65535, 0], "wouldn't you course": [65535, 0], "you course you": [65535, 0], "course you would": [65535, 0], "you would tom": [65535, 0], "would tom contemplated": [65535, 0], "tom contemplated the": [65535, 0], "contemplated the boy": [65535, 0], "the boy a": [65535, 0], "boy a bit": [65535, 0], "a bit and": [65535, 0], "bit and said": [65535, 0], "and said what": [65535, 0], "said what do": [65535, 0], "what do you": [65535, 0], "do you call": [65535, 0], "you call work": [65535, 0], "call work why": [65535, 0], "work why ain't": [65535, 0], "why ain't that": [65535, 0], "ain't that work": [65535, 0], "that work tom": [65535, 0], "work tom resumed": [65535, 0], "tom resumed his": [65535, 0], "resumed his whitewashing": [65535, 0], "his whitewashing and": [65535, 0], "whitewashing and answered": [65535, 0], "and answered carelessly": [65535, 0], "answered carelessly well": [65535, 0], "carelessly well maybe": [65535, 0], "well maybe it": [65535, 0], "maybe it is": [65535, 0], "it is and": [65535, 0], "is and maybe": [65535, 0], "and maybe it": [65535, 0], "maybe it ain't": [65535, 0], "it ain't all": [65535, 0], "ain't all i": [65535, 0], "all i know": [65535, 0], "i know is": [65535, 0], "know is it": [65535, 0], "is it suits": [65535, 0], "it suits tom": [65535, 0], "suits tom sawyer": [65535, 0], "tom sawyer oh": [65535, 0], "sawyer oh come": [65535, 0], "oh come now": [65535, 0], "come now you": [65535, 0], "now you don't": [65535, 0], "you don't mean": [65535, 0], "don't mean to": [65535, 0], "mean to let": [65535, 0], "to let on": [65535, 0], "let on that": [65535, 0], "on that you": [65535, 0], "that you like": [65535, 0], "like it the": [65535, 0], "it the brush": [65535, 0], "the brush continued": [65535, 0], "brush continued to": [65535, 0], "continued to move": [65535, 0], "to move like": [65535, 0], "move like it": [65535, 0], "like it well": [65535, 0], "it well i": [65535, 0], "well i don't": [65535, 0], "i don't see": [65535, 0], "don't see why": [65535, 0], "see why i": [65535, 0], "why i oughtn't": [65535, 0], "i oughtn't to": [65535, 0], "oughtn't to like": [65535, 0], "to like it": [65535, 0], "like it does": [65535, 0], "it does a": [65535, 0], "does a boy": [65535, 0], "a boy get": [65535, 0], "boy get a": [65535, 0], "a chance to": [65535, 0], "chance to whitewash": [65535, 0], "to whitewash a": [65535, 0], "whitewash a fence": [65535, 0], "a fence every": [65535, 0], "fence every day": [65535, 0], "every day that": [65535, 0], "day that put": [65535, 0], "that put the": [65535, 0], "put the thing": [65535, 0], "the thing in": [65535, 0], "thing in a": [65535, 0], "a new light": [65535, 0], "new light ben": [65535, 0], "light ben stopped": [65535, 0], "ben stopped nibbling": [65535, 0], "stopped nibbling his": [65535, 0], "nibbling his apple": [65535, 0], "his apple tom": [65535, 0], "apple tom swept": [65535, 0], "tom swept his": [65535, 0], "swept his brush": [65535, 0], "his brush daintily": [65535, 0], "brush daintily back": [65535, 0], "daintily back and": [65535, 0], "back and forth": [65535, 0], "and forth stepped": [65535, 0], "forth stepped back": [65535, 0], "stepped back to": [65535, 0], "back to note": [65535, 0], "to note the": [65535, 0], "note the effect": [65535, 0], "the effect added": [65535, 0], "effect added a": [65535, 0], "added a touch": [65535, 0], "a touch here": [65535, 0], "touch here and": [65535, 0], "here and there": [65535, 0], "and there criticised": [65535, 0], "there criticised the": [65535, 0], "criticised the effect": [65535, 0], "the effect again": [65535, 0], "effect again ben": [65535, 0], "again ben watching": [65535, 0], "ben watching every": [65535, 0], "watching every move": [65535, 0], "every move and": [65535, 0], "move and getting": [65535, 0], "and getting more": [65535, 0], "getting more and": [65535, 0], "more and more": [65535, 0], "and more interested": [65535, 0], "more interested more": [65535, 0], "interested more and": [65535, 0], "and more absorbed": [65535, 0], "more absorbed presently": [65535, 0], "absorbed presently he": [65535, 0], "presently he said": [65535, 0], "he said say": [65535, 0], "said say tom": [65535, 0], "say tom let": [65535, 0], "tom let me": [65535, 0], "let me whitewash": [65535, 0], "me whitewash a": [65535, 0], "whitewash a little": [65535, 0], "a little tom": [65535, 0], "little tom considered": [65535, 0], "tom considered was": [65535, 0], "considered was about": [65535, 0], "about to consent": [65535, 0], "to consent but": [65535, 0], "consent but he": [65535, 0], "but he altered": [65535, 0], "he altered his": [65535, 0], "altered his mind": [65535, 0], "his mind no": [65535, 0], "mind no no": [65535, 0], "no no i": [65535, 0], "no i reckon": [65535, 0], "i reckon it": [65535, 0], "reckon it wouldn't": [65535, 0], "it wouldn't hardly": [65535, 0], "wouldn't hardly do": [65535, 0], "hardly do ben": [65535, 0], "do ben you": [65535, 0], "ben you see": [65535, 0], "you see aunt": [65535, 0], "see aunt polly's": [65535, 0], "aunt polly's awful": [65535, 0], "polly's awful particular": [65535, 0], "awful particular about": [65535, 0], "particular about this": [65535, 0], "about this fence": [65535, 0], "this fence right": [65535, 0], "fence right here": [65535, 0], "right here on": [65535, 0], "here on the": [65535, 0], "on the street": [65535, 0], "the street you": [65535, 0], "street you know": [65535, 0], "you know but": [65535, 0], "know but if": [65535, 0], "but if it": [65535, 0], "it was the": [39262, 26273], "was the back": [65535, 0], "the back fence": [65535, 0], "back fence i": [65535, 0], "fence i wouldn't": [65535, 0], "i wouldn't mind": [65535, 0], "wouldn't mind and": [65535, 0], "mind and she": [65535, 0], "and she wouldn't": [65535, 0], "she wouldn't yes": [65535, 0], "wouldn't yes she's": [65535, 0], "yes she's awful": [65535, 0], "she's awful particular": [65535, 0], "this fence it's": [65535, 0], "fence it's got": [65535, 0], "it's got to": [65535, 0], "got to be": [65535, 0], "to be done": [65535, 0], "be done very": [65535, 0], "done very careful": [65535, 0], "very careful i": [65535, 0], "careful i reckon": [65535, 0], "i reckon there": [65535, 0], "reckon there ain't": [65535, 0], "there ain't one": [65535, 0], "ain't one boy": [65535, 0], "one boy in": [65535, 0], "boy in a": [65535, 0], "in a thousand": [65535, 0], "a thousand maybe": [65535, 0], "thousand maybe two": [65535, 0], "maybe two thousand": [65535, 0], "two thousand that": [65535, 0], "thousand that can": [65535, 0], "that can do": [65535, 0], "can do it": [65535, 0], "do it the": [65535, 0], "it the way": [65535, 0], "the way it's": [65535, 0], "way it's got": [65535, 0], "be done no": [65535, 0], "done no is": [65535, 0], "that so oh": [65535, 0], "so oh come": [65535, 0], "come now lemme": [65535, 0], "now lemme just": [65535, 0], "lemme just try": [65535, 0], "just try only": [65535, 0], "try only just": [65535, 0], "only just a": [65535, 0], "just a little": [65535, 0], "a little i'd": [65535, 0], "little i'd let": [65535, 0], "i'd let you": [65535, 0], "let you if": [65535, 0], "you if you": [65535, 0], "if you was": [65535, 0], "you was me": [65535, 0], "was me tom": [65535, 0], "me tom ben": [65535, 0], "tom ben i'd": [65535, 0], "ben i'd like": [65535, 0], "like to honest": [65535, 0], "to honest injun": [65535, 0], "honest injun but": [65535, 0], "injun but aunt": [65535, 0], "but aunt polly": [65535, 0], "aunt polly well": [65535, 0], "polly well jim": [65535, 0], "well jim wanted": [65535, 0], "jim wanted to": [65535, 0], "wanted to do": [65535, 0], "to do it": [65535, 0], "do it but": [65535, 0], "but she wouldn't": [65535, 0], "she wouldn't let": [65535, 0], "wouldn't let him": [65535, 0], "let him sid": [65535, 0], "him sid wanted": [65535, 0], "sid wanted to": [65535, 0], "do it and": [65535, 0], "it and she": [65535, 0], "wouldn't let sid": [65535, 0], "let sid now": [65535, 0], "sid now don't": [65535, 0], "now don't you": [65535, 0], "don't you see": [65535, 0], "you see how": [65535, 0], "see how i'm": [65535, 0], "how i'm fixed": [65535, 0], "i'm fixed if": [65535, 0], "fixed if you": [65535, 0], "you was to": [65535, 0], "was to tackle": [65535, 0], "to tackle this": [65535, 0], "tackle this fence": [65535, 0], "this fence and": [65535, 0], "fence and anything": [65535, 0], "and anything was": [65535, 0], "anything was to": [65535, 0], "was to happen": [65535, 0], "to happen to": [65535, 0], "happen to it": [65535, 0], "to it oh": [65535, 0], "it oh shucks": [65535, 0], "oh shucks i'll": [65535, 0], "shucks i'll be": [65535, 0], "i'll be just": [65535, 0], "be just as": [65535, 0], "just as careful": [65535, 0], "as careful now": [65535, 0], "careful now lemme": [65535, 0], "now lemme try": [65535, 0], "lemme try say": [65535, 0], "try say i'll": [65535, 0], "say i'll give": [65535, 0], "give you the": [65535, 0], "you the core": [65535, 0], "the core of": [65535, 0], "core of my": [65535, 0], "of my apple": [65535, 0], "my apple well": [65535, 0], "apple well here": [65535, 0], "well here no": [65535, 0], "here no ben": [65535, 0], "no ben now": [65535, 0], "ben now don't": [65535, 0], "now don't i'm": [65535, 0], "don't i'm afeard": [65535, 0], "i'm afeard i'll": [65535, 0], "afeard i'll give": [65535, 0], "give you all": [65535, 0], "you all of": [65535, 0], "all of it": [65535, 0], "of it tom": [65535, 0], "it tom gave": [65535, 0], "tom gave up": [65535, 0], "up the brush": [65535, 0], "the brush with": [65535, 0], "brush with reluctance": [65535, 0], "with reluctance in": [65535, 0], "reluctance in his": [65535, 0], "his face but": [65535, 0], "face but alacrity": [65535, 0], "but alacrity in": [65535, 0], "alacrity in his": [65535, 0], "his heart and": [65535, 0], "heart and while": [65535, 0], "and while the": [65535, 0], "while the late": [65535, 0], "the late steamer": [65535, 0], "late steamer big": [65535, 0], "steamer big missouri": [65535, 0], "big missouri worked": [65535, 0], "missouri worked and": [65535, 0], "worked and sweated": [65535, 0], "and sweated in": [65535, 0], "sweated in the": [65535, 0], "in the sun": [65535, 0], "the sun the": [65535, 0], "sun the retired": [65535, 0], "the retired artist": [65535, 0], "retired artist sat": [65535, 0], "artist sat on": [65535, 0], "sat on a": [65535, 0], "on a barrel": [65535, 0], "a barrel in": [65535, 0], "barrel in the": [65535, 0], "in the shade": [65535, 0], "the shade close": [65535, 0], "shade close by": [65535, 0], "close by dangled": [65535, 0], "by dangled his": [65535, 0], "dangled his legs": [65535, 0], "his legs munched": [65535, 0], "legs munched his": [65535, 0], "munched his apple": [65535, 0], "his apple and": [65535, 0], "apple and planned": [65535, 0], "and planned the": [65535, 0], "planned the slaughter": [65535, 0], "the slaughter of": [65535, 0], "slaughter of more": [65535, 0], "of more innocents": [65535, 0], "more innocents there": [65535, 0], "innocents there was": [65535, 0], "was no lack": [65535, 0], "no lack of": [65535, 0], "lack of material": [65535, 0], "of material boys": [65535, 0], "material boys happened": [65535, 0], "boys happened along": [65535, 0], "happened along every": [65535, 0], "along every little": [65535, 0], "every little while": [65535, 0], "little while they": [65535, 0], "while they came": [65535, 0], "they came to": [65535, 0], "came to jeer": [65535, 0], "to jeer but": [65535, 0], "jeer but remained": [65535, 0], "but remained to": [65535, 0], "remained to whitewash": [65535, 0], "to whitewash by": [65535, 0], "whitewash by the": [65535, 0], "by the time": [65535, 0], "the time ben": [65535, 0], "time ben was": [65535, 0], "ben was fagged": [65535, 0], "was fagged out": [65535, 0], "fagged out tom": [65535, 0], "out tom had": [65535, 0], "tom had traded": [65535, 0], "had traded the": [65535, 0], "traded the next": [65535, 0], "the next chance": [65535, 0], "next chance to": [65535, 0], "chance to billy": [65535, 0], "to billy fisher": [65535, 0], "billy fisher for": [65535, 0], "fisher for a": [65535, 0], "for a kite": [65535, 0], "a kite in": [65535, 0], "kite in good": [65535, 0], "in good repair": [65535, 0], "good repair and": [65535, 0], "repair and when": [65535, 0], "when he played": [65535, 0], "he played out": [65535, 0], "played out johnny": [65535, 0], "out johnny miller": [65535, 0], "johnny miller bought": [65535, 0], "miller bought in": [65535, 0], "bought in for": [65535, 0], "in for a": [65535, 0], "for a dead": [65535, 0], "a dead rat": [65535, 0], "dead rat and": [65535, 0], "rat and a": [65535, 0], "and a string": [65535, 0], "a string to": [65535, 0], "string to swing": [65535, 0], "to swing it": [65535, 0], "swing it with": [65535, 0], "it with and": [65535, 0], "with and so": [65535, 0], "and so on": [65535, 0], "so on and": [65535, 0], "on and so": [65535, 0], "so on hour": [65535, 0], "on hour after": [65535, 0], "hour after hour": [65535, 0], "after hour and": [65535, 0], "hour and when": [65535, 0], "and when the": [65535, 0], "when the middle": [65535, 0], "of the afternoon": [65535, 0], "the afternoon came": [65535, 0], "afternoon came from": [65535, 0], "came from being": [65535, 0], "from being a": [65535, 0], "being a poor": [65535, 0], "a poor poverty": [65535, 0], "poor poverty stricken": [65535, 0], "poverty stricken boy": [65535, 0], "stricken boy in": [65535, 0], "boy in the": [65535, 0], "in the morning": [65535, 0], "the morning tom": [65535, 0], "morning tom was": [65535, 0], "tom was literally": [65535, 0], "was literally rolling": [65535, 0], "literally rolling in": [65535, 0], "rolling in wealth": [65535, 0], "in wealth he": [65535, 0], "wealth he had": [65535, 0], "he had besides": [65535, 0], "had besides the": [65535, 0], "besides the things": [65535, 0], "the things before": [65535, 0], "things before mentioned": [65535, 0], "before mentioned twelve": [65535, 0], "mentioned twelve marbles": [65535, 0], "twelve marbles part": [65535, 0], "marbles part of": [65535, 0], "part of a": [65535, 0], "of a jews": [65535, 0], "a jews harp": [65535, 0], "jews harp a": [65535, 0], "harp a piece": [65535, 0], "a piece of": [65535, 0], "piece of blue": [65535, 0], "of blue bottle": [65535, 0], "blue bottle glass": [65535, 0], "bottle glass to": [65535, 0], "glass to look": [65535, 0], "to look through": [65535, 0], "look through a": [65535, 0], "through a spool": [65535, 0], "a spool cannon": [65535, 0], "spool cannon a": [65535, 0], "cannon a key": [65535, 0], "a key that": [65535, 0], "key that wouldn't": [65535, 0], "that wouldn't unlock": [65535, 0], "wouldn't unlock anything": [65535, 0], "unlock anything a": [65535, 0], "anything a fragment": [65535, 0], "a fragment of": [65535, 0], "fragment of chalk": [65535, 0], "of chalk a": [65535, 0], "chalk a glass": [65535, 0], "a glass stopper": [65535, 0], "glass stopper of": [65535, 0], "stopper of a": [65535, 0], "of a decanter": [65535, 0], "a decanter a": [65535, 0], "decanter a tin": [65535, 0], "a tin soldier": [65535, 0], "tin soldier a": [65535, 0], "soldier a couple": [65535, 0], "couple of tadpoles": [65535, 0], "of tadpoles six": [65535, 0], "tadpoles six fire": [65535, 0], "six fire crackers": [65535, 0], "fire crackers a": [65535, 0], "crackers a kitten": [65535, 0], "a kitten with": [65535, 0], "kitten with only": [65535, 0], "with only one": [65535, 0], "only one eye": [65535, 0], "one eye a": [65535, 0], "eye a brass": [65535, 0], "a brass doorknob": [65535, 0], "brass doorknob a": [65535, 0], "doorknob a dog": [65535, 0], "a dog collar": [65535, 0], "dog collar but": [65535, 0], "collar but no": [65535, 0], "but no dog": [65535, 0], "no dog the": [65535, 0], "dog the handle": [65535, 0], "the handle of": [65535, 0], "handle of a": [65535, 0], "of a knife": [65535, 0], "a knife four": [65535, 0], "knife four pieces": [65535, 0], "four pieces of": [65535, 0], "pieces of orange": [65535, 0], "of orange peel": [65535, 0], "orange peel and": [65535, 0], "peel and a": [65535, 0], "and a dilapidated": [65535, 0], "a dilapidated old": [65535, 0], "dilapidated old window": [65535, 0], "old window sash": [65535, 0], "window sash he": [65535, 0], "sash he had": [65535, 0], "had had a": [65535, 0], "had a nice": [65535, 0], "a nice good": [65535, 0], "nice good idle": [65535, 0], "good idle time": [65535, 0], "idle time all": [65535, 0], "time all the": [65535, 0], "all the while": [65535, 0], "the while plenty": [65535, 0], "while plenty of": [65535, 0], "plenty of company": [65535, 0], "of company and": [65535, 0], "company and the": [65535, 0], "and the fence": [65535, 0], "the fence had": [65535, 0], "fence had three": [65535, 0], "had three coats": [65535, 0], "three coats of": [65535, 0], "coats of whitewash": [65535, 0], "of whitewash on": [65535, 0], "whitewash on it": [65535, 0], "on it if": [65535, 0], "if he hadn't": [65535, 0], "he hadn't run": [65535, 0], "hadn't run out": [65535, 0], "run out of": [65535, 0], "out of whitewash": [65535, 0], "of whitewash he": [65535, 0], "whitewash he would": [65535, 0], "he would have": [65535, 0], "would have bankrupted": [65535, 0], "have bankrupted every": [65535, 0], "bankrupted every boy": [65535, 0], "every boy in": [65535, 0], "in the village": [65535, 0], "the village tom": [65535, 0], "village tom said": [65535, 0], "tom said to": [65535, 0], "himself that it": [65535, 0], "that it was": [65535, 0], "it was not": [65535, 0], "was not such": [65535, 0], "not such a": [65535, 0], "such a hollow": [65535, 0], "a hollow world": [65535, 0], "hollow world after": [65535, 0], "world after all": [65535, 0], "after all he": [65535, 0], "all he had": [65535, 0], "he had discovered": [65535, 0], "had discovered a": [65535, 0], "discovered a great": [65535, 0], "a great law": [65535, 0], "great law of": [65535, 0], "law of human": [65535, 0], "of human action": [65535, 0], "human action without": [65535, 0], "action without knowing": [65535, 0], "without knowing it": [65535, 0], "knowing it namely": [65535, 0], "it namely that": [65535, 0], "namely that in": [65535, 0], "that in order": [65535, 0], "in order to": [65535, 0], "order to make": [65535, 0], "to make a": [16338, 49197], "a man or": [65535, 0], "man or a": [65535, 0], "or a boy": [65535, 0], "a boy covet": [65535, 0], "boy covet a": [65535, 0], "covet a thing": [65535, 0], "a thing it": [65535, 0], "thing it is": [65535, 0], "it is only": [65535, 0], "is only necessary": [65535, 0], "only necessary to": [65535, 0], "necessary to make": [65535, 0], "to make the": [65535, 0], "make the thing": [65535, 0], "the thing difficult": [65535, 0], "thing difficult to": [65535, 0], "difficult to attain": [65535, 0], "to attain if": [65535, 0], "attain if he": [65535, 0], "if he had": [65535, 0], "been a great": [65535, 0], "a great and": [65535, 0], "great and wise": [65535, 0], "and wise philosopher": [65535, 0], "wise philosopher like": [65535, 0], "philosopher like the": [65535, 0], "like the writer": [65535, 0], "the writer of": [65535, 0], "writer of this": [65535, 0], "of this book": [65535, 0], "this book he": [65535, 0], "book he would": [65535, 0], "he would now": [65535, 0], "would now have": [65535, 0], "now have comprehended": [65535, 0], "have comprehended that": [65535, 0], "comprehended that work": [65535, 0], "that work consists": [65535, 0], "work consists of": [65535, 0], "consists of whatever": [65535, 0], "of whatever a": [65535, 0], "whatever a body": [65535, 0], "a body is": [65535, 0], "body is obliged": [65535, 0], "is obliged to": [65535, 0], "obliged to do": [65535, 0], "to do and": [65535, 0], "do and that": [65535, 0], "and that play": [65535, 0], "that play consists": [65535, 0], "play consists of": [65535, 0], "body is not": [65535, 0], "is not obliged": [65535, 0], "not obliged to": [65535, 0], "do and this": [65535, 0], "and this would": [65535, 0], "this would help": [65535, 0], "would help him": [65535, 0], "help him to": [65535, 0], "him to understand": [65535, 0], "to understand why": [65535, 0], "understand why constructing": [65535, 0], "why constructing artificial": [65535, 0], "constructing artificial flowers": [65535, 0], "artificial flowers or": [65535, 0], "flowers or performing": [65535, 0], "or performing on": [65535, 0], "performing on a": [65535, 0], "on a tread": [65535, 0], "a tread mill": [65535, 0], "tread mill is": [65535, 0], "mill is work": [65535, 0], "is work while": [65535, 0], "work while rolling": [65535, 0], "while rolling ten": [65535, 0], "rolling ten pins": [65535, 0], "ten pins or": [65535, 0], "pins or climbing": [65535, 0], "or climbing mont": [65535, 0], "climbing mont blanc": [65535, 0], "mont blanc is": [65535, 0], "blanc is only": [65535, 0], "is only amusement": [65535, 0], "only amusement there": [65535, 0], "amusement there are": [65535, 0], "there are wealthy": [65535, 0], "are wealthy gentlemen": [65535, 0], "wealthy gentlemen in": [65535, 0], "gentlemen in england": [65535, 0], "in england who": [65535, 0], "england who drive": [65535, 0], "who drive four": [65535, 0], "drive four horse": [65535, 0], "four horse passenger": [65535, 0], "horse passenger coaches": [65535, 0], "passenger coaches twenty": [65535, 0], "coaches twenty or": [65535, 0], "twenty or thirty": [65535, 0], "or thirty miles": [65535, 0], "thirty miles on": [65535, 0], "miles on a": [65535, 0], "on a daily": [65535, 0], "a daily line": [65535, 0], "daily line in": [65535, 0], "line in the": [65535, 0], "in the summer": [65535, 0], "the summer because": [65535, 0], "summer because the": [65535, 0], "because the privilege": [65535, 0], "the privilege costs": [65535, 0], "privilege costs them": [65535, 0], "costs them considerable": [65535, 0], "them considerable money": [65535, 0], "considerable money but": [65535, 0], "money but if": [65535, 0], "but if they": [65535, 0], "if they were": [65535, 0], "they were offered": [65535, 0], "were offered wages": [65535, 0], "offered wages for": [65535, 0], "wages for the": [65535, 0], "for the service": [65535, 0], "the service that": [65535, 0], "service that would": [65535, 0], "that would turn": [65535, 0], "would turn it": [65535, 0], "turn it into": [65535, 0], "it into work": [65535, 0], "into work and": [65535, 0], "work and then": [65535, 0], "and then they": [65535, 0], "then they would": [65535, 0], "they would resign": [65535, 0], "would resign the": [65535, 0], "resign the boy": [65535, 0], "the boy mused": [65535, 0], "boy mused awhile": [65535, 0], "mused awhile over": [65535, 0], "awhile over the": [65535, 0], "over the substantial": [65535, 0], "the substantial change": [65535, 0], "substantial change which": [65535, 0], "change which had": [65535, 0], "which had taken": [65535, 0], "had taken place": [65535, 0], "taken place in": [65535, 0], "place in his": [65535, 0], "in his worldly": [65535, 0], "his worldly circumstances": [65535, 0], "worldly circumstances and": [65535, 0], "circumstances and then": [65535, 0], "and then wended": [65535, 0], "then wended toward": [65535, 0], "wended toward headquarters": [65535, 0], "toward headquarters to": [65535, 0], "headquarters to report": [65535, 0], "saturday morning was come": [65535, 0], "morning was come and": [65535, 0], "was come and all": [65535, 0], "come and all the": [65535, 0], "and all the summer": [65535, 0], "all the summer world": [65535, 0], "the summer world was": [65535, 0], "summer world was bright": [65535, 0], "world was bright and": [65535, 0], "was bright and fresh": [65535, 0], "bright and fresh and": [65535, 0], "and fresh and brimming": [65535, 0], "fresh and brimming with": [65535, 0], "and brimming with life": [65535, 0], "brimming with life there": [65535, 0], "with life there was": [65535, 0], "life there was a": [65535, 0], "there was a song": [65535, 0], "was a song in": [65535, 0], "a song in every": [65535, 0], "song in every heart": [65535, 0], "in every heart and": [65535, 0], "every heart and if": [65535, 0], "heart and if the": [65535, 0], "and if the heart": [65535, 0], "if the heart was": [65535, 0], "the heart was young": [65535, 0], "heart was young the": [65535, 0], "was young the music": [65535, 0], "young the music issued": [65535, 0], "the music issued at": [65535, 0], "music issued at the": [65535, 0], "issued at the lips": [65535, 0], "at the lips there": [65535, 0], "the lips there was": [65535, 0], "lips there was cheer": [65535, 0], "there was cheer in": [65535, 0], "was cheer in every": [65535, 0], "cheer in every face": [65535, 0], "in every face and": [65535, 0], "every face and a": [65535, 0], "face and a spring": [65535, 0], "and a spring in": [65535, 0], "a spring in every": [65535, 0], "spring in every step": [65535, 0], "in every step the": [65535, 0], "every step the locust": [65535, 0], "step the locust trees": [65535, 0], "the locust trees were": [65535, 0], "locust trees were in": [65535, 0], "trees were in bloom": [65535, 0], "were in bloom and": [65535, 0], "in bloom and the": [65535, 0], "bloom and the fragrance": [65535, 0], "and the fragrance of": [65535, 0], "the fragrance of the": [65535, 0], "fragrance of the blossoms": [65535, 0], "of the blossoms filled": [65535, 0], "the blossoms filled the": [65535, 0], "blossoms filled the air": [65535, 0], "filled the air cardiff": [65535, 0], "the air cardiff hill": [65535, 0], "air cardiff hill beyond": [65535, 0], "cardiff hill beyond the": [65535, 0], "hill beyond the village": [65535, 0], "beyond the village and": [65535, 0], "the village and above": [65535, 0], "village and above it": [65535, 0], "and above it was": [65535, 0], "above it was green": [65535, 0], "it was green with": [65535, 0], "was green with vegetation": [65535, 0], "green with vegetation and": [65535, 0], "with vegetation and it": [65535, 0], "vegetation and it lay": [65535, 0], "and it lay just": [65535, 0], "it lay just far": [65535, 0], "lay just far enough": [65535, 0], "just far enough away": [65535, 0], "far enough away to": [65535, 0], "enough away to seem": [65535, 0], "away to seem a": [65535, 0], "to seem a delectable": [65535, 0], "seem a delectable land": [65535, 0], "a delectable land dreamy": [65535, 0], "delectable land dreamy reposeful": [65535, 0], "land dreamy reposeful and": [65535, 0], "dreamy reposeful and inviting": [65535, 0], "reposeful and inviting tom": [65535, 0], "and inviting tom appeared": [65535, 0], "inviting tom appeared on": [65535, 0], "tom appeared on the": [65535, 0], "appeared on the sidewalk": [65535, 0], "on the sidewalk with": [65535, 0], "the sidewalk with a": [65535, 0], "sidewalk with a bucket": [65535, 0], "with a bucket of": [65535, 0], "a bucket of whitewash": [65535, 0], "bucket of whitewash and": [65535, 0], "of whitewash and a": [65535, 0], "whitewash and a long": [65535, 0], "and a long handled": [65535, 0], "a long handled brush": [65535, 0], "long handled brush he": [65535, 0], "handled brush he surveyed": [65535, 0], "brush he surveyed the": [65535, 0], "he surveyed the fence": [65535, 0], "surveyed the fence and": [65535, 0], "the fence and all": [65535, 0], "fence and all gladness": [65535, 0], "and all gladness left": [65535, 0], "all gladness left him": [65535, 0], "gladness left him and": [65535, 0], "left him and a": [65535, 0], "him and a deep": [65535, 0], "and a deep melancholy": [65535, 0], "a deep melancholy settled": [65535, 0], "deep melancholy settled down": [65535, 0], "melancholy settled down upon": [65535, 0], "settled down upon his": [65535, 0], "down upon his spirit": [65535, 0], "upon his spirit thirty": [65535, 0], "his spirit thirty yards": [65535, 0], "spirit thirty yards of": [65535, 0], "thirty yards of board": [65535, 0], "yards of board fence": [65535, 0], "of board fence nine": [65535, 0], "board fence nine feet": [65535, 0], "fence nine feet high": [65535, 0], "nine feet high life": [65535, 0], "feet high life to": [65535, 0], "high life to him": [65535, 0], "life to him seemed": [65535, 0], "to him seemed hollow": [65535, 0], "him seemed hollow and": [65535, 0], "seemed hollow and existence": [65535, 0], "hollow and existence but": [65535, 0], "and existence but a": [65535, 0], "existence but a burden": [65535, 0], "but a burden sighing": [65535, 0], "a burden sighing he": [65535, 0], "burden sighing he dipped": [65535, 0], "sighing he dipped his": [65535, 0], "he dipped his brush": [65535, 0], "dipped his brush and": [65535, 0], "his brush and passed": [65535, 0], "brush and passed it": [65535, 0], "and passed it along": [65535, 0], "passed it along the": [65535, 0], "it along the topmost": [65535, 0], "along the topmost plank": [65535, 0], "the topmost plank repeated": [65535, 0], "topmost plank repeated the": [65535, 0], "plank repeated the operation": [65535, 0], "repeated the operation did": [65535, 0], "the operation did it": [65535, 0], "operation did it again": [65535, 0], "did it again compared": [65535, 0], "it again compared the": [65535, 0], "again compared the insignificant": [65535, 0], "compared the insignificant whitewashed": [65535, 0], "the insignificant whitewashed streak": [65535, 0], "insignificant whitewashed streak with": [65535, 0], "whitewashed streak with the": [65535, 0], "streak with the far": [65535, 0], "with the far reaching": [65535, 0], "the far reaching continent": [65535, 0], "far reaching continent of": [65535, 0], "reaching continent of unwhitewashed": [65535, 0], "continent of unwhitewashed fence": [65535, 0], "of unwhitewashed fence and": [65535, 0], "unwhitewashed fence and sat": [65535, 0], "fence and sat down": [65535, 0], "sat down on a": [65535, 0], "down on a tree": [65535, 0], "on a tree box": [65535, 0], "a tree box discouraged": [65535, 0], "tree box discouraged jim": [65535, 0], "box discouraged jim came": [65535, 0], "discouraged jim came skipping": [65535, 0], "jim came skipping out": [65535, 0], "came skipping out at": [65535, 0], "skipping out at the": [65535, 0], "out at the gate": [65535, 0], "at the gate with": [65535, 0], "the gate with a": [65535, 0], "gate with a tin": [65535, 0], "with a tin pail": [65535, 0], "a tin pail and": [65535, 0], "tin pail and singing": [65535, 0], "pail and singing buffalo": [65535, 0], "and singing buffalo gals": [65535, 0], "singing buffalo gals bringing": [65535, 0], "buffalo gals bringing water": [65535, 0], "gals bringing water from": [65535, 0], "bringing water from the": [65535, 0], "water from the town": [65535, 0], "from the town pump": [65535, 0], "the town pump had": [65535, 0], "town pump had always": [65535, 0], "pump had always been": [65535, 0], "had always been hateful": [65535, 0], "always been hateful work": [65535, 0], "been hateful work in": [65535, 0], "hateful work in tom's": [65535, 0], "work in tom's eyes": [65535, 0], "in tom's eyes before": [65535, 0], "tom's eyes before but": [65535, 0], "eyes before but now": [65535, 0], "before but now it": [65535, 0], "but now it did": [65535, 0], "now it did not": [65535, 0], "it did not strike": [65535, 0], "did not strike him": [65535, 0], "not strike him so": [65535, 0], "strike him so he": [65535, 0], "him so he remembered": [65535, 0], "so he remembered that": [65535, 0], "he remembered that there": [65535, 0], "remembered that there was": [65535, 0], "that there was company": [65535, 0], "there was company at": [65535, 0], "was company at the": [65535, 0], "company at the pump": [65535, 0], "at the pump white": [65535, 0], "the pump white mulatto": [65535, 0], "pump white mulatto and": [65535, 0], "white mulatto and negro": [65535, 0], "mulatto and negro boys": [65535, 0], "and negro boys and": [65535, 0], "negro boys and girls": [65535, 0], "boys and girls were": [65535, 0], "and girls were always": [65535, 0], "girls were always there": [65535, 0], "were always there waiting": [65535, 0], "always there waiting their": [65535, 0], "there waiting their turns": [65535, 0], "waiting their turns resting": [65535, 0], "their turns resting trading": [65535, 0], "turns resting trading playthings": [65535, 0], "resting trading playthings quarrelling": [65535, 0], "trading playthings quarrelling fighting": [65535, 0], "playthings quarrelling fighting skylarking": [65535, 0], "quarrelling fighting skylarking and": [65535, 0], "fighting skylarking and he": [65535, 0], "skylarking and he remembered": [65535, 0], "and he remembered that": [65535, 0], "he remembered that although": [65535, 0], "remembered that although the": [65535, 0], "that although the pump": [65535, 0], "although the pump was": [65535, 0], "the pump was only": [65535, 0], "pump was only a": [65535, 0], "was only a hundred": [65535, 0], "only a hundred and": [65535, 0], "a hundred and fifty": [65535, 0], "hundred and fifty yards": [65535, 0], "and fifty yards off": [65535, 0], "fifty yards off jim": [65535, 0], "yards off jim never": [65535, 0], "off jim never got": [65535, 0], "jim never got back": [65535, 0], "never got back with": [65535, 0], "got back with a": [65535, 0], "back with a bucket": [65535, 0], "a bucket of water": [65535, 0], "bucket of water under": [65535, 0], "of water under an": [65535, 0], "water under an hour": [65535, 0], "under an hour and": [65535, 0], "an hour and even": [65535, 0], "hour and even then": [65535, 0], "and even then somebody": [65535, 0], "even then somebody generally": [65535, 0], "then somebody generally had": [65535, 0], "somebody generally had to": [65535, 0], "generally had to go": [65535, 0], "had to go after": [65535, 0], "to go after him": [65535, 0], "go after him tom": [65535, 0], "after him tom said": [65535, 0], "him tom said say": [65535, 0], "tom said say jim": [65535, 0], "said say jim i'll": [65535, 0], "say jim i'll fetch": [65535, 0], "jim i'll fetch the": [65535, 0], "i'll fetch the water": [65535, 0], "fetch the water if": [65535, 0], "the water if you'll": [65535, 0], "water if you'll whitewash": [65535, 0], "if you'll whitewash some": [65535, 0], "you'll whitewash some jim": [65535, 0], "whitewash some jim shook": [65535, 0], "some jim shook his": [65535, 0], "jim shook his head": [65535, 0], "shook his head and": [65535, 0], "his head and said": [65535, 0], "head and said can't": [65535, 0], "and said can't mars": [65535, 0], "said can't mars tom": [65535, 0], "can't mars tom ole": [65535, 0], "mars tom ole missis": [65535, 0], "tom ole missis she": [65535, 0], "ole missis she tole": [65535, 0], "missis she tole me": [65535, 0], "she tole me i": [65535, 0], "tole me i got": [65535, 0], "me i got to": [65535, 0], "i got to go": [65535, 0], "got to go an'": [65535, 0], "to go an' git": [65535, 0], "go an' git dis": [65535, 0], "an' git dis water": [65535, 0], "git dis water an'": [65535, 0], "dis water an' not": [65535, 0], "water an' not stop": [65535, 0], "an' not stop foolin'": [65535, 0], "not stop foolin' roun'": [65535, 0], "stop foolin' roun' wid": [65535, 0], "foolin' roun' wid anybody": [65535, 0], "roun' wid anybody she": [65535, 0], "wid anybody she say": [65535, 0], "anybody she say she": [65535, 0], "she say she spec'": [65535, 0], "say she spec' mars": [65535, 0], "she spec' mars tom": [65535, 0], "spec' mars tom gwine": [65535, 0], "mars tom gwine to": [65535, 0], "tom gwine to ax": [65535, 0], "gwine to ax me": [65535, 0], "to ax me to": [65535, 0], "ax me to whitewash": [65535, 0], "me to whitewash an'": [65535, 0], "to whitewash an' so": [65535, 0], "whitewash an' so she": [65535, 0], "an' so she tole": [65535, 0], "so she tole me": [65535, 0], "she tole me go": [65535, 0], "tole me go 'long": [65535, 0], "me go 'long an'": [65535, 0], "go 'long an' 'tend": [65535, 0], "'long an' 'tend to": [65535, 0], "an' 'tend to my": [65535, 0], "'tend to my own": [65535, 0], "to my own business": [65535, 0], "my own business she": [65535, 0], "own business she 'lowed": [65535, 0], "business she 'lowed she'd": [65535, 0], "she 'lowed she'd 'tend": [65535, 0], "'lowed she'd 'tend to": [65535, 0], "she'd 'tend to de": [65535, 0], "'tend to de whitewashin'": [65535, 0], "to de whitewashin' oh": [65535, 0], "de whitewashin' oh never": [65535, 0], "whitewashin' oh never you": [65535, 0], "oh never you mind": [65535, 0], "never you mind what": [65535, 0], "you mind what she": [65535, 0], "mind what she said": [65535, 0], "what she said jim": [65535, 0], "she said jim that's": [65535, 0], "said jim that's the": [65535, 0], "jim that's the way": [65535, 0], "that's the way she": [65535, 0], "the way she always": [65535, 0], "way she always talks": [65535, 0], "she always talks gimme": [65535, 0], "always talks gimme the": [65535, 0], "talks gimme the bucket": [65535, 0], "gimme the bucket i": [65535, 0], "the bucket i won't": [65535, 0], "bucket i won't be": [65535, 0], "i won't be gone": [65535, 0], "won't be gone only": [65535, 0], "be gone only a": [65535, 0], "gone only a minute": [65535, 0], "only a minute she": [65535, 0], "a minute she won't": [65535, 0], "minute she won't ever": [65535, 0], "she won't ever know": [65535, 0], "won't ever know oh": [65535, 0], "ever know oh i": [65535, 0], "know oh i dasn't": [65535, 0], "oh i dasn't mars": [65535, 0], "i dasn't mars tom": [65535, 0], "dasn't mars tom ole": [65535, 0], "tom ole missis she'd": [65535, 0], "ole missis she'd take": [65535, 0], "missis she'd take an'": [65535, 0], "she'd take an' tar": [65535, 0], "take an' tar de": [65535, 0], "an' tar de head": [65535, 0], "tar de head off'n": [65535, 0], "de head off'n me": [65535, 0], "head off'n me 'deed": [65535, 0], "off'n me 'deed she": [65535, 0], "me 'deed she would": [65535, 0], "'deed she would she": [65535, 0], "she would she she": [65535, 0], "would she she never": [65535, 0], "she she never licks": [65535, 0], "she never licks anybody": [65535, 0], "never licks anybody whacks": [65535, 0], "licks anybody whacks 'em": [65535, 0], "anybody whacks 'em over": [65535, 0], "whacks 'em over the": [65535, 0], "'em over the head": [65535, 0], "over the head with": [65535, 0], "the head with her": [65535, 0], "head with her thimble": [65535, 0], "with her thimble and": [65535, 0], "her thimble and who": [65535, 0], "thimble and who cares": [65535, 0], "and who cares for": [65535, 0], "who cares for that": [65535, 0], "cares for that i'd": [65535, 0], "for that i'd like": [65535, 0], "that i'd like to": [65535, 0], "i'd like to know": [65535, 0], "like to know she": [65535, 0], "to know she talks": [65535, 0], "know she talks awful": [65535, 0], "she talks awful but": [65535, 0], "talks awful but talk": [65535, 0], "awful but talk don't": [65535, 0], "but talk don't hurt": [65535, 0], "talk don't hurt anyways": [65535, 0], "don't hurt anyways it": [65535, 0], "hurt anyways it don't": [65535, 0], "anyways it don't if": [65535, 0], "it don't if she": [65535, 0], "don't if she don't": [65535, 0], "if she don't cry": [65535, 0], "she don't cry jim": [65535, 0], "don't cry jim i'll": [65535, 0], "cry jim i'll give": [65535, 0], "jim i'll give you": [65535, 0], "i'll give you a": [65535, 0], "give you a marvel": [65535, 0], "you a marvel i'll": [65535, 0], "a marvel i'll give": [65535, 0], "marvel i'll give you": [65535, 0], "give you a white": [65535, 0], "you a white alley": [65535, 0], "a white alley jim": [65535, 0], "white alley jim began": [65535, 0], "alley jim began to": [65535, 0], "jim began to waver": [65535, 0], "began to waver white": [65535, 0], "to waver white alley": [65535, 0], "waver white alley jim": [65535, 0], "white alley jim and": [65535, 0], "alley jim and it's": [65535, 0], "jim and it's a": [65535, 0], "and it's a bully": [65535, 0], "it's a bully taw": [65535, 0], "a bully taw my": [65535, 0], "bully taw my dat's": [65535, 0], "taw my dat's a": [65535, 0], "my dat's a mighty": [65535, 0], "dat's a mighty gay": [65535, 0], "a mighty gay marvel": [65535, 0], "mighty gay marvel i": [65535, 0], "gay marvel i tell": [65535, 0], "marvel i tell you": [65535, 0], "i tell you but": [65535, 0], "tell you but mars": [65535, 0], "you but mars tom": [65535, 0], "but mars tom i's": [65535, 0], "mars tom i's powerful": [65535, 0], "tom i's powerful 'fraid": [65535, 0], "i's powerful 'fraid ole": [65535, 0], "powerful 'fraid ole missis": [65535, 0], "'fraid ole missis and": [65535, 0], "ole missis and besides": [65535, 0], "missis and besides if": [65535, 0], "and besides if you": [65535, 0], "besides if you will": [65535, 0], "if you will i'll": [65535, 0], "you will i'll show": [65535, 0], "will i'll show you": [65535, 0], "i'll show you my": [65535, 0], "show you my sore": [65535, 0], "you my sore toe": [65535, 0], "my sore toe jim": [65535, 0], "sore toe jim was": [65535, 0], "toe jim was only": [65535, 0], "jim was only human": [65535, 0], "was only human this": [65535, 0], "only human this attraction": [65535, 0], "human this attraction was": [65535, 0], "this attraction was too": [65535, 0], "attraction was too much": [65535, 0], "was too much for": [65535, 0], "too much for him": [65535, 0], "much for him he": [65535, 0], "for him he put": [65535, 0], "him he put down": [65535, 0], "he put down his": [65535, 0], "put down his pail": [65535, 0], "down his pail took": [65535, 0], "his pail took the": [65535, 0], "pail took the white": [65535, 0], "took the white alley": [65535, 0], "the white alley and": [65535, 0], "white alley and bent": [65535, 0], "alley and bent over": [65535, 0], "and bent over the": [65535, 0], "bent over the toe": [65535, 0], "over the toe with": [65535, 0], "the toe with absorbing": [65535, 0], "toe with absorbing interest": [65535, 0], "with absorbing interest while": [65535, 0], "absorbing interest while the": [65535, 0], "interest while the bandage": [65535, 0], "while the bandage was": [65535, 0], "the bandage was being": [65535, 0], "bandage was being unwound": [65535, 0], "was being unwound in": [65535, 0], "being unwound in another": [65535, 0], "unwound in another moment": [65535, 0], "in another moment he": [65535, 0], "another moment he was": [65535, 0], "moment he was flying": [65535, 0], "he was flying down": [65535, 0], "was flying down the": [65535, 0], "flying down the street": [65535, 0], "down the street with": [65535, 0], "the street with his": [65535, 0], "street with his pail": [65535, 0], "with his pail and": [65535, 0], "his pail and a": [65535, 0], "pail and a tingling": [65535, 0], "and a tingling rear": [65535, 0], "a tingling rear tom": [65535, 0], "tingling rear tom was": [65535, 0], "rear tom was whitewashing": [65535, 0], "tom was whitewashing with": [65535, 0], "was whitewashing with vigor": [65535, 0], "whitewashing with vigor and": [65535, 0], "with vigor and aunt": [65535, 0], "vigor and aunt polly": [65535, 0], "and aunt polly was": [65535, 0], "aunt polly was retiring": [65535, 0], "polly was retiring from": [65535, 0], "was retiring from the": [65535, 0], "retiring from the field": [65535, 0], "from the field with": [65535, 0], "the field with a": [65535, 0], "field with a slipper": [65535, 0], "with a slipper in": [65535, 0], "a slipper in her": [65535, 0], "slipper in her hand": [65535, 0], "in her hand and": [65535, 0], "her hand and triumph": [65535, 0], "hand and triumph in": [65535, 0], "and triumph in her": [65535, 0], "triumph in her eye": [65535, 0], "in her eye but": [65535, 0], "her eye but tom's": [65535, 0], "eye but tom's energy": [65535, 0], "but tom's energy did": [65535, 0], "tom's energy did not": [65535, 0], "energy did not last": [65535, 0], "did not last he": [65535, 0], "not last he began": [65535, 0], "last he began to": [65535, 0], "he began to think": [65535, 0], "began to think of": [65535, 0], "to think of the": [65535, 0], "think of the fun": [65535, 0], "of the fun he": [65535, 0], "the fun he had": [65535, 0], "fun he had planned": [65535, 0], "he had planned for": [65535, 0], "had planned for this": [65535, 0], "planned for this day": [65535, 0], "for this day and": [65535, 0], "this day and his": [65535, 0], "day and his sorrows": [65535, 0], "and his sorrows multiplied": [65535, 0], "his sorrows multiplied soon": [65535, 0], "sorrows multiplied soon the": [65535, 0], "multiplied soon the free": [65535, 0], "soon the free boys": [65535, 0], "the free boys would": [65535, 0], "free boys would come": [65535, 0], "boys would come tripping": [65535, 0], "would come tripping along": [65535, 0], "come tripping along on": [65535, 0], "tripping along on all": [65535, 0], "along on all sorts": [65535, 0], "on all sorts of": [65535, 0], "all sorts of delicious": [65535, 0], "sorts of delicious expeditions": [65535, 0], "of delicious expeditions and": [65535, 0], "delicious expeditions and they": [65535, 0], "expeditions and they would": [65535, 0], "and they would make": [65535, 0], "they would make a": [65535, 0], "would make a world": [65535, 0], "make a world of": [65535, 0], "a world of fun": [65535, 0], "world of fun of": [65535, 0], "of fun of him": [65535, 0], "fun of him for": [65535, 0], "of him for having": [65535, 0], "him for having to": [65535, 0], "for having to work": [65535, 0], "having to work the": [65535, 0], "to work the very": [65535, 0], "work the very thought": [65535, 0], "the very thought of": [65535, 0], "very thought of it": [65535, 0], "thought of it burnt": [65535, 0], "of it burnt him": [65535, 0], "it burnt him like": [65535, 0], "burnt him like fire": [65535, 0], "him like fire he": [65535, 0], "like fire he got": [65535, 0], "fire he got out": [65535, 0], "he got out his": [65535, 0], "got out his worldly": [65535, 0], "out his worldly wealth": [65535, 0], "his worldly wealth and": [65535, 0], "worldly wealth and examined": [65535, 0], "wealth and examined it": [65535, 0], "and examined it bits": [65535, 0], "examined it bits of": [65535, 0], "it bits of toys": [65535, 0], "bits of toys marbles": [65535, 0], "of toys marbles and": [65535, 0], "toys marbles and trash": [65535, 0], "marbles and trash enough": [65535, 0], "and trash enough to": [65535, 0], "trash enough to buy": [65535, 0], "enough to buy an": [65535, 0], "to buy an exchange": [65535, 0], "buy an exchange of": [65535, 0], "an exchange of work": [65535, 0], "exchange of work maybe": [65535, 0], "of work maybe but": [65535, 0], "work maybe but not": [65535, 0], "maybe but not half": [65535, 0], "but not half enough": [65535, 0], "not half enough to": [65535, 0], "half enough to buy": [65535, 0], "enough to buy so": [65535, 0], "to buy so much": [65535, 0], "buy so much as": [65535, 0], "so much as half": [65535, 0], "much as half an": [65535, 0], "as half an hour": [65535, 0], "half an hour of": [65535, 0], "an hour of pure": [65535, 0], "hour of pure freedom": [65535, 0], "of pure freedom so": [65535, 0], "pure freedom so he": [65535, 0], "freedom so he returned": [65535, 0], "so he returned his": [65535, 0], "he returned his straitened": [65535, 0], "returned his straitened means": [65535, 0], "his straitened means to": [65535, 0], "straitened means to his": [65535, 0], "means to his pocket": [65535, 0], "to his pocket and": [65535, 0], "his pocket and gave": [65535, 0], "pocket and gave up": [65535, 0], "and gave up the": [65535, 0], "gave up the idea": [65535, 0], "up the idea of": [65535, 0], "the idea of trying": [65535, 0], "idea of trying to": [65535, 0], "of trying to buy": [65535, 0], "trying to buy the": [65535, 0], "to buy the boys": [65535, 0], "buy the boys at": [65535, 0], "the boys at this": [65535, 0], "boys at this dark": [65535, 0], "at this dark and": [65535, 0], "this dark and hopeless": [65535, 0], "dark and hopeless moment": [65535, 0], "and hopeless moment an": [65535, 0], "hopeless moment an inspiration": [65535, 0], "moment an inspiration burst": [65535, 0], "an inspiration burst upon": [65535, 0], "inspiration burst upon him": [65535, 0], "burst upon him nothing": [65535, 0], "upon him nothing less": [65535, 0], "him nothing less than": [65535, 0], "nothing less than a": [65535, 0], "less than a great": [65535, 0], "than a great magnificent": [65535, 0], "a great magnificent inspiration": [65535, 0], "great magnificent inspiration he": [65535, 0], "magnificent inspiration he took": [65535, 0], "inspiration he took up": [65535, 0], "he took up his": [65535, 0], "took up his brush": [65535, 0], "up his brush and": [65535, 0], "his brush and went": [65535, 0], "brush and went tranquilly": [65535, 0], "and went tranquilly to": [65535, 0], "went tranquilly to work": [65535, 0], "tranquilly to work ben": [65535, 0], "to work ben rogers": [65535, 0], "work ben rogers hove": [65535, 0], "ben rogers hove in": [65535, 0], "rogers hove in sight": [65535, 0], "hove in sight presently": [65535, 0], "in sight presently the": [65535, 0], "sight presently the very": [65535, 0], "presently the very boy": [65535, 0], "the very boy of": [65535, 0], "very boy of all": [65535, 0], "boy of all boys": [65535, 0], "of all boys whose": [65535, 0], "all boys whose ridicule": [65535, 0], "boys whose ridicule he": [65535, 0], "whose ridicule he had": [65535, 0], "ridicule he had been": [65535, 0], "he had been dreading": [65535, 0], "had been dreading ben's": [65535, 0], "been dreading ben's gait": [65535, 0], "dreading ben's gait was": [65535, 0], "ben's gait was the": [65535, 0], "gait was the hop": [65535, 0], "was the hop skip": [65535, 0], "the hop skip and": [65535, 0], "hop skip and jump": [65535, 0], "skip and jump proof": [65535, 0], "and jump proof enough": [65535, 0], "jump proof enough that": [65535, 0], "proof enough that his": [65535, 0], "enough that his heart": [65535, 0], "that his heart was": [65535, 0], "his heart was light": [65535, 0], "heart was light and": [65535, 0], "was light and his": [65535, 0], "light and his anticipations": [65535, 0], "and his anticipations high": [65535, 0], "his anticipations high he": [65535, 0], "anticipations high he was": [65535, 0], "high he was eating": [65535, 0], "he was eating an": [65535, 0], "was eating an apple": [65535, 0], "eating an apple and": [65535, 0], "an apple and giving": [65535, 0], "apple and giving a": [65535, 0], "and giving a long": [65535, 0], "giving a long melodious": [65535, 0], "a long melodious whoop": [65535, 0], "long melodious whoop at": [65535, 0], "melodious whoop at intervals": [65535, 0], "whoop at intervals followed": [65535, 0], "at intervals followed by": [65535, 0], "intervals followed by a": [65535, 0], "followed by a deep": [65535, 0], "by a deep toned": [65535, 0], "a deep toned ding": [65535, 0], "deep toned ding dong": [65535, 0], "toned ding dong dong": [65535, 0], "ding dong dong ding": [65535, 0], "dong dong ding dong": [65535, 0], "dong ding dong dong": [65535, 0], "ding dong dong for": [65535, 0], "dong dong for he": [65535, 0], "dong for he was": [65535, 0], "for he was personating": [65535, 0], "he was personating a": [65535, 0], "was personating a steamboat": [65535, 0], "personating a steamboat as": [65535, 0], "a steamboat as he": [65535, 0], "steamboat as he drew": [65535, 0], "as he drew near": [65535, 0], "he drew near he": [65535, 0], "drew near he slackened": [65535, 0], "near he slackened speed": [65535, 0], "he slackened speed took": [65535, 0], "slackened speed took the": [65535, 0], "speed took the middle": [65535, 0], "took the middle of": [65535, 0], "middle of the street": [65535, 0], "of the street leaned": [65535, 0], "the street leaned far": [65535, 0], "street leaned far over": [65535, 0], "leaned far over to": [65535, 0], "far over to starboard": [65535, 0], "over to starboard and": [65535, 0], "to starboard and rounded": [65535, 0], "starboard and rounded to": [65535, 0], "and rounded to ponderously": [65535, 0], "rounded to ponderously and": [65535, 0], "to ponderously and with": [65535, 0], "ponderously and with laborious": [65535, 0], "and with laborious pomp": [65535, 0], "with laborious pomp and": [65535, 0], "laborious pomp and circumstance": [65535, 0], "pomp and circumstance for": [65535, 0], "and circumstance for he": [65535, 0], "circumstance for he was": [65535, 0], "he was personating the": [65535, 0], "was personating the big": [65535, 0], "personating the big missouri": [65535, 0], "the big missouri and": [65535, 0], "big missouri and considered": [65535, 0], "missouri and considered himself": [65535, 0], "and considered himself to": [65535, 0], "considered himself to be": [65535, 0], "himself to be drawing": [65535, 0], "to be drawing nine": [65535, 0], "be drawing nine feet": [65535, 0], "drawing nine feet of": [65535, 0], "nine feet of water": [65535, 0], "feet of water he": [65535, 0], "of water he was": [65535, 0], "water he was boat": [65535, 0], "he was boat and": [65535, 0], "was boat and captain": [65535, 0], "boat and captain and": [65535, 0], "and captain and engine": [65535, 0], "captain and engine bells": [65535, 0], "and engine bells combined": [65535, 0], "engine bells combined so": [65535, 0], "bells combined so he": [65535, 0], "combined so he had": [65535, 0], "so he had to": [65535, 0], "he had to imagine": [65535, 0], "had to imagine himself": [65535, 0], "to imagine himself standing": [65535, 0], "imagine himself standing on": [65535, 0], "himself standing on his": [65535, 0], "standing on his own": [65535, 0], "on his own hurricane": [65535, 0], "his own hurricane deck": [65535, 0], "own hurricane deck giving": [65535, 0], "hurricane deck giving the": [65535, 0], "deck giving the orders": [65535, 0], "giving the orders and": [65535, 0], "the orders and executing": [65535, 0], "orders and executing them": [65535, 0], "and executing them stop": [65535, 0], "executing them stop her": [65535, 0], "them stop her sir": [65535, 0], "stop her sir ting": [65535, 0], "her sir ting a": [65535, 0], "sir ting a ling": [65535, 0], "ting a ling ling": [65535, 0], "a ling ling the": [65535, 0], "ling ling the headway": [65535, 0], "ling the headway ran": [65535, 0], "the headway ran almost": [65535, 0], "headway ran almost out": [65535, 0], "ran almost out and": [65535, 0], "almost out and he": [65535, 0], "out and he drew": [65535, 0], "and he drew up": [65535, 0], "he drew up slowly": [65535, 0], "drew up slowly toward": [65535, 0], "up slowly toward the": [65535, 0], "slowly toward the sidewalk": [65535, 0], "toward the sidewalk ship": [65535, 0], "the sidewalk ship up": [65535, 0], "sidewalk ship up to": [65535, 0], "ship up to back": [65535, 0], "up to back ting": [65535, 0], "to back ting a": [65535, 0], "back ting a ling": [65535, 0], "a ling ling his": [65535, 0], "ling ling his arms": [65535, 0], "ling his arms straightened": [65535, 0], "his arms straightened and": [65535, 0], "arms straightened and stiffened": [65535, 0], "straightened and stiffened down": [65535, 0], "and stiffened down his": [65535, 0], "stiffened down his sides": [65535, 0], "down his sides set": [65535, 0], "his sides set her": [65535, 0], "sides set her back": [65535, 0], "set her back on": [65535, 0], "her back on the": [65535, 0], "back on the stabboard": [65535, 0], "on the stabboard ting": [65535, 0], "the stabboard ting a": [65535, 0], "stabboard ting a ling": [65535, 0], "a ling ling chow": [65535, 0], "ling ling chow ch": [65535, 0], "ling chow ch chow": [65535, 0], "chow ch chow wow": [65535, 0], "ch chow wow chow": [65535, 0], "chow wow chow his": [65535, 0], "wow chow his right": [65535, 0], "chow his right hand": [65535, 0], "his right hand meantime": [65535, 0], "right hand meantime describing": [65535, 0], "hand meantime describing stately": [65535, 0], "meantime describing stately circles": [65535, 0], "describing stately circles for": [65535, 0], "stately circles for it": [65535, 0], "circles for it was": [65535, 0], "for it was representing": [65535, 0], "it was representing a": [65535, 0], "was representing a forty": [65535, 0], "representing a forty foot": [65535, 0], "a forty foot wheel": [65535, 0], "forty foot wheel let": [65535, 0], "foot wheel let her": [65535, 0], "wheel let her go": [65535, 0], "let her go back": [65535, 0], "her go back on": [65535, 0], "go back on the": [65535, 0], "back on the labboard": [65535, 0], "on the labboard ting": [65535, 0], "the labboard ting a": [65535, 0], "labboard ting a ling": [65535, 0], "chow ch chow chow": [65535, 0], "ch chow chow the": [65535, 0], "chow chow the left": [65535, 0], "chow the left hand": [65535, 0], "the left hand began": [65535, 0], "left hand began to": [65535, 0], "hand began to describe": [65535, 0], "began to describe circles": [65535, 0], "to describe circles stop": [65535, 0], "describe circles stop the": [65535, 0], "circles stop the stabboard": [65535, 0], "stop the stabboard ting": [65535, 0], "a ling ling stop": [65535, 0], "ling ling stop the": [65535, 0], "ling stop the labboard": [65535, 0], "stop the labboard come": [65535, 0], "the labboard come ahead": [65535, 0], "labboard come ahead on": [65535, 0], "come ahead on the": [65535, 0], "ahead on the stabboard": [65535, 0], "on the stabboard stop": [65535, 0], "the stabboard stop her": [65535, 0], "stabboard stop her let": [65535, 0], "stop her let your": [65535, 0], "her let your outside": [65535, 0], "let your outside turn": [65535, 0], "your outside turn over": [65535, 0], "outside turn over slow": [65535, 0], "turn over slow ting": [65535, 0], "over slow ting a": [65535, 0], "slow ting a ling": [65535, 0], "ling ling chow ow": [65535, 0], "ling chow ow ow": [65535, 0], "chow ow ow get": [65535, 0], "ow ow get out": [65535, 0], "ow get out that": [65535, 0], "get out that head": [65535, 0], "out that head line": [65535, 0], "that head line lively": [65535, 0], "head line lively now": [65535, 0], "line lively now come": [65535, 0], "lively now come out": [65535, 0], "now come out with": [65535, 0], "come out with your": [65535, 0], "out with your spring": [65535, 0], "with your spring line": [65535, 0], "your spring line what're": [65535, 0], "spring line what're you": [65535, 0], "line what're you about": [65535, 0], "what're you about there": [65535, 0], "you about there take": [65535, 0], "about there take a": [65535, 0], "there take a turn": [65535, 0], "take a turn round": [65535, 0], "a turn round that": [65535, 0], "turn round that stump": [65535, 0], "round that stump with": [65535, 0], "that stump with the": [65535, 0], "stump with the bight": [65535, 0], "with the bight of": [65535, 0], "the bight of it": [65535, 0], "bight of it stand": [65535, 0], "of it stand by": [65535, 0], "it stand by that": [65535, 0], "stand by that stage": [65535, 0], "by that stage now": [65535, 0], "that stage now let": [65535, 0], "stage now let her": [65535, 0], "now let her go": [65535, 0], "let her go done": [65535, 0], "her go done with": [65535, 0], "go done with the": [65535, 0], "done with the engines": [65535, 0], "with the engines sir": [65535, 0], "the engines sir ting": [65535, 0], "engines sir ting a": [65535, 0], "a ling ling sh't": [65535, 0], "ling ling sh't s'h't": [65535, 0], "ling sh't s'h't sh't": [65535, 0], "sh't s'h't sh't trying": [65535, 0], "s'h't sh't trying the": [65535, 0], "sh't trying the gauge": [65535, 0], "trying the gauge cocks": [65535, 0], "the gauge cocks tom": [65535, 0], "gauge cocks tom went": [65535, 0], "cocks tom went on": [65535, 0], "tom went on whitewashing": [65535, 0], "went on whitewashing paid": [65535, 0], "on whitewashing paid no": [65535, 0], "whitewashing paid no attention": [65535, 0], "paid no attention to": [65535, 0], "no attention to the": [65535, 0], "attention to the steamboat": [65535, 0], "to the steamboat ben": [65535, 0], "the steamboat ben stared": [65535, 0], "steamboat ben stared a": [65535, 0], "ben stared a moment": [65535, 0], "stared a moment and": [65535, 0], "a moment and then": [65535, 0], "moment and then said": [65535, 0], "and then said hi": [65535, 0], "then said hi yi": [65535, 0], "said hi yi you're": [65535, 0], "hi yi you're up": [65535, 0], "yi you're up a": [65535, 0], "you're up a stump": [65535, 0], "up a stump ain't": [65535, 0], "a stump ain't you": [65535, 0], "stump ain't you no": [65535, 0], "ain't you no answer": [65535, 0], "you no answer tom": [65535, 0], "no answer tom surveyed": [65535, 0], "answer tom surveyed his": [65535, 0], "tom surveyed his last": [65535, 0], "surveyed his last touch": [65535, 0], "his last touch with": [65535, 0], "last touch with the": [65535, 0], "touch with the eye": [65535, 0], "with the eye of": [65535, 0], "the eye of an": [65535, 0], "eye of an artist": [65535, 0], "of an artist then": [65535, 0], "an artist then he": [65535, 0], "artist then he gave": [65535, 0], "then he gave his": [65535, 0], "he gave his brush": [65535, 0], "gave his brush another": [65535, 0], "his brush another gentle": [65535, 0], "brush another gentle sweep": [65535, 0], "another gentle sweep and": [65535, 0], "gentle sweep and surveyed": [65535, 0], "sweep and surveyed the": [65535, 0], "and surveyed the result": [65535, 0], "surveyed the result as": [65535, 0], "the result as before": [65535, 0], "result as before ben": [65535, 0], "as before ben ranged": [65535, 0], "before ben ranged up": [65535, 0], "ben ranged up alongside": [65535, 0], "ranged up alongside of": [65535, 0], "up alongside of him": [65535, 0], "alongside of him tom's": [65535, 0], "of him tom's mouth": [65535, 0], "him tom's mouth watered": [65535, 0], "tom's mouth watered for": [65535, 0], "mouth watered for the": [65535, 0], "watered for the apple": [65535, 0], "for the apple but": [65535, 0], "the apple but he": [65535, 0], "apple but he stuck": [65535, 0], "but he stuck to": [65535, 0], "he stuck to his": [65535, 0], "stuck to his work": [65535, 0], "to his work ben": [65535, 0], "his work ben said": [65535, 0], "work ben said hello": [65535, 0], "ben said hello old": [65535, 0], "said hello old chap": [65535, 0], "hello old chap you": [65535, 0], "old chap you got": [65535, 0], "chap you got to": [65535, 0], "you got to work": [65535, 0], "got to work hey": [65535, 0], "to work hey tom": [65535, 0], "work hey tom wheeled": [65535, 0], "hey tom wheeled suddenly": [65535, 0], "tom wheeled suddenly and": [65535, 0], "wheeled suddenly and said": [65535, 0], "suddenly and said why": [65535, 0], "and said why it's": [65535, 0], "said why it's you": [65535, 0], "why it's you ben": [65535, 0], "it's you ben i": [65535, 0], "you ben i warn't": [65535, 0], "ben i warn't noticing": [65535, 0], "i warn't noticing say": [65535, 0], "warn't noticing say i'm": [65535, 0], "noticing say i'm going": [65535, 0], "say i'm going in": [65535, 0], "i'm going in a": [65535, 0], "going in a swimming": [65535, 0], "in a swimming i": [65535, 0], "a swimming i am": [65535, 0], "swimming i am don't": [65535, 0], "i am don't you": [65535, 0], "am don't you wish": [65535, 0], "don't you wish you": [65535, 0], "you wish you could": [65535, 0], "wish you could but": [65535, 0], "you could but of": [65535, 0], "could but of course": [65535, 0], "but of course you'd": [65535, 0], "of course you'd druther": [65535, 0], "course you'd druther work": [65535, 0], "you'd druther work wouldn't": [65535, 0], "druther work wouldn't you": [65535, 0], "work wouldn't you course": [65535, 0], "wouldn't you course you": [65535, 0], "you course you would": [65535, 0], "course you would tom": [65535, 0], "you would tom contemplated": [65535, 0], "would tom contemplated the": [65535, 0], "tom contemplated the boy": [65535, 0], "contemplated the boy a": [65535, 0], "the boy a bit": [65535, 0], "boy a bit and": [65535, 0], "a bit and said": [65535, 0], "bit and said what": [65535, 0], "and said what do": [65535, 0], "said what do you": [65535, 0], "what do you call": [65535, 0], "do you call work": [65535, 0], "you call work why": [65535, 0], "call work why ain't": [65535, 0], "work why ain't that": [65535, 0], "why ain't that work": [65535, 0], "ain't that work tom": [65535, 0], "that work tom resumed": [65535, 0], "work tom resumed his": [65535, 0], "tom resumed his whitewashing": [65535, 0], "resumed his whitewashing and": [65535, 0], "his whitewashing and answered": [65535, 0], "whitewashing and answered carelessly": [65535, 0], "and answered carelessly well": [65535, 0], "answered carelessly well maybe": [65535, 0], "carelessly well maybe it": [65535, 0], "well maybe it is": [65535, 0], "maybe it is and": [65535, 0], "it is and maybe": [65535, 0], "is and maybe it": [65535, 0], "and maybe it ain't": [65535, 0], "maybe it ain't all": [65535, 0], "it ain't all i": [65535, 0], "ain't all i know": [65535, 0], "all i know is": [65535, 0], "i know is it": [65535, 0], "know is it suits": [65535, 0], "is it suits tom": [65535, 0], "it suits tom sawyer": [65535, 0], "suits tom sawyer oh": [65535, 0], "tom sawyer oh come": [65535, 0], "sawyer oh come now": [65535, 0], "oh come now you": [65535, 0], "come now you don't": [65535, 0], "now you don't mean": [65535, 0], "you don't mean to": [65535, 0], "don't mean to let": [65535, 0], "mean to let on": [65535, 0], "to let on that": [65535, 0], "let on that you": [65535, 0], "on that you like": [65535, 0], "that you like it": [65535, 0], "you like it the": [65535, 0], "like it the brush": [65535, 0], "it the brush continued": [65535, 0], "the brush continued to": [65535, 0], "brush continued to move": [65535, 0], "continued to move like": [65535, 0], "to move like it": [65535, 0], "move like it well": [65535, 0], "like it well i": [65535, 0], "it well i don't": [65535, 0], "well i don't see": [65535, 0], "i don't see why": [65535, 0], "don't see why i": [65535, 0], "see why i oughtn't": [65535, 0], "why i oughtn't to": [65535, 0], "i oughtn't to like": [65535, 0], "oughtn't to like it": [65535, 0], "to like it does": [65535, 0], "like it does a": [65535, 0], "it does a boy": [65535, 0], "does a boy get": [65535, 0], "a boy get a": [65535, 0], "boy get a chance": [65535, 0], "get a chance to": [65535, 0], "a chance to whitewash": [65535, 0], "chance to whitewash a": [65535, 0], "to whitewash a fence": [65535, 0], "whitewash a fence every": [65535, 0], "a fence every day": [65535, 0], "fence every day that": [65535, 0], "every day that put": [65535, 0], "day that put the": [65535, 0], "that put the thing": [65535, 0], "put the thing in": [65535, 0], "the thing in a": [65535, 0], "thing in a new": [65535, 0], "in a new light": [65535, 0], "a new light ben": [65535, 0], "new light ben stopped": [65535, 0], "light ben stopped nibbling": [65535, 0], "ben stopped nibbling his": [65535, 0], "stopped nibbling his apple": [65535, 0], "nibbling his apple tom": [65535, 0], "his apple tom swept": [65535, 0], "apple tom swept his": [65535, 0], "tom swept his brush": [65535, 0], "swept his brush daintily": [65535, 0], "his brush daintily back": [65535, 0], "brush daintily back and": [65535, 0], "daintily back and forth": [65535, 0], "back and forth stepped": [65535, 0], "and forth stepped back": [65535, 0], "forth stepped back to": [65535, 0], "stepped back to note": [65535, 0], "back to note the": [65535, 0], "to note the effect": [65535, 0], "note the effect added": [65535, 0], "the effect added a": [65535, 0], "effect added a touch": [65535, 0], "added a touch here": [65535, 0], "a touch here and": [65535, 0], "touch here and there": [65535, 0], "here and there criticised": [65535, 0], "and there criticised the": [65535, 0], "there criticised the effect": [65535, 0], "criticised the effect again": [65535, 0], "the effect again ben": [65535, 0], "effect again ben watching": [65535, 0], "again ben watching every": [65535, 0], "ben watching every move": [65535, 0], "watching every move and": [65535, 0], "every move and getting": [65535, 0], "move and getting more": [65535, 0], "and getting more and": [65535, 0], "getting more and more": [65535, 0], "more and more interested": [65535, 0], "and more interested more": [65535, 0], "more interested more and": [65535, 0], "interested more and more": [65535, 0], "more and more absorbed": [65535, 0], "and more absorbed presently": [65535, 0], "more absorbed presently he": [65535, 0], "absorbed presently he said": [65535, 0], "presently he said say": [65535, 0], "he said say tom": [65535, 0], "said say tom let": [65535, 0], "say tom let me": [65535, 0], "tom let me whitewash": [65535, 0], "let me whitewash a": [65535, 0], "me whitewash a little": [65535, 0], "whitewash a little tom": [65535, 0], "a little tom considered": [65535, 0], "little tom considered was": [65535, 0], "tom considered was about": [65535, 0], "considered was about to": [65535, 0], "was about to consent": [65535, 0], "about to consent but": [65535, 0], "to consent but he": [65535, 0], "consent but he altered": [65535, 0], "but he altered his": [65535, 0], "he altered his mind": [65535, 0], "altered his mind no": [65535, 0], "his mind no no": [65535, 0], "mind no no i": [65535, 0], "no no i reckon": [65535, 0], "no i reckon it": [65535, 0], "i reckon it wouldn't": [65535, 0], "reckon it wouldn't hardly": [65535, 0], "it wouldn't hardly do": [65535, 0], "wouldn't hardly do ben": [65535, 0], "hardly do ben you": [65535, 0], "do ben you see": [65535, 0], "ben you see aunt": [65535, 0], "you see aunt polly's": [65535, 0], "see aunt polly's awful": [65535, 0], "aunt polly's awful particular": [65535, 0], "polly's awful particular about": [65535, 0], "awful particular about this": [65535, 0], "particular about this fence": [65535, 0], "about this fence right": [65535, 0], "this fence right here": [65535, 0], "fence right here on": [65535, 0], "right here on the": [65535, 0], "here on the street": [65535, 0], "on the street you": [65535, 0], "the street you know": [65535, 0], "street you know but": [65535, 0], "you know but if": [65535, 0], "know but if it": [65535, 0], "but if it was": [65535, 0], "if it was the": [65535, 0], "it was the back": [65535, 0], "was the back fence": [65535, 0], "the back fence i": [65535, 0], "back fence i wouldn't": [65535, 0], "fence i wouldn't mind": [65535, 0], "i wouldn't mind and": [65535, 0], "wouldn't mind and she": [65535, 0], "mind and she wouldn't": [65535, 0], "and she wouldn't yes": [65535, 0], "she wouldn't yes she's": [65535, 0], "wouldn't yes she's awful": [65535, 0], "yes she's awful particular": [65535, 0], "she's awful particular about": [65535, 0], "about this fence it's": [65535, 0], "this fence it's got": [65535, 0], "fence it's got to": [65535, 0], "it's got to be": [65535, 0], "got to be done": [65535, 0], "to be done very": [65535, 0], "be done very careful": [65535, 0], "done very careful i": [65535, 0], "very careful i reckon": [65535, 0], "careful i reckon there": [65535, 0], "i reckon there ain't": [65535, 0], "reckon there ain't one": [65535, 0], "there ain't one boy": [65535, 0], "ain't one boy in": [65535, 0], "one boy in a": [65535, 0], "boy in a thousand": [65535, 0], "in a thousand maybe": [65535, 0], "a thousand maybe two": [65535, 0], "thousand maybe two thousand": [65535, 0], "maybe two thousand that": [65535, 0], "two thousand that can": [65535, 0], "thousand that can do": [65535, 0], "that can do it": [65535, 0], "can do it the": [65535, 0], "do it the way": [65535, 0], "it the way it's": [65535, 0], "the way it's got": [65535, 0], "way it's got to": [65535, 0], "to be done no": [65535, 0], "be done no is": [65535, 0], "done no is that": [65535, 0], "is that so oh": [65535, 0], "that so oh come": [65535, 0], "so oh come now": [65535, 0], "oh come now lemme": [65535, 0], "come now lemme just": [65535, 0], "now lemme just try": [65535, 0], "lemme just try only": [65535, 0], "just try only just": [65535, 0], "try only just a": [65535, 0], "only just a little": [65535, 0], "just a little i'd": [65535, 0], "a little i'd let": [65535, 0], "little i'd let you": [65535, 0], "i'd let you if": [65535, 0], "let you if you": [65535, 0], "you if you was": [65535, 0], "if you was me": [65535, 0], "you was me tom": [65535, 0], "was me tom ben": [65535, 0], "me tom ben i'd": [65535, 0], "tom ben i'd like": [65535, 0], "ben i'd like to": [65535, 0], "i'd like to honest": [65535, 0], "like to honest injun": [65535, 0], "to honest injun but": [65535, 0], "honest injun but aunt": [65535, 0], "injun but aunt polly": [65535, 0], "but aunt polly well": [65535, 0], "aunt polly well jim": [65535, 0], "polly well jim wanted": [65535, 0], "well jim wanted to": [65535, 0], "jim wanted to do": [65535, 0], "wanted to do it": [65535, 0], "to do it but": [65535, 0], "do it but she": [65535, 0], "it but she wouldn't": [65535, 0], "but she wouldn't let": [65535, 0], "she wouldn't let him": [65535, 0], "wouldn't let him sid": [65535, 0], "let him sid wanted": [65535, 0], "him sid wanted to": [65535, 0], "sid wanted to do": [65535, 0], "to do it and": [65535, 0], "do it and she": [65535, 0], "it and she wouldn't": [65535, 0], "and she wouldn't let": [65535, 0], "she wouldn't let sid": [65535, 0], "wouldn't let sid now": [65535, 0], "let sid now don't": [65535, 0], "sid now don't you": [65535, 0], "now don't you see": [65535, 0], "don't you see how": [65535, 0], "you see how i'm": [65535, 0], "see how i'm fixed": [65535, 0], "how i'm fixed if": [65535, 0], "i'm fixed if you": [65535, 0], "fixed if you was": [65535, 0], "if you was to": [65535, 0], "you was to tackle": [65535, 0], "was to tackle this": [65535, 0], "to tackle this fence": [65535, 0], "tackle this fence and": [65535, 0], "this fence and anything": [65535, 0], "fence and anything was": [65535, 0], "and anything was to": [65535, 0], "anything was to happen": [65535, 0], "was to happen to": [65535, 0], "to happen to it": [65535, 0], "happen to it oh": [65535, 0], "to it oh shucks": [65535, 0], "it oh shucks i'll": [65535, 0], "oh shucks i'll be": [65535, 0], "shucks i'll be just": [65535, 0], "i'll be just as": [65535, 0], "be just as careful": [65535, 0], "just as careful now": [65535, 0], "as careful now lemme": [65535, 0], "careful now lemme try": [65535, 0], "now lemme try say": [65535, 0], "lemme try say i'll": [65535, 0], "try say i'll give": [65535, 0], "say i'll give you": [65535, 0], "i'll give you the": [65535, 0], "give you the core": [65535, 0], "you the core of": [65535, 0], "the core of my": [65535, 0], "core of my apple": [65535, 0], "of my apple well": [65535, 0], "my apple well here": [65535, 0], "apple well here no": [65535, 0], "well here no ben": [65535, 0], "here no ben now": [65535, 0], "no ben now don't": [65535, 0], "ben now don't i'm": [65535, 0], "now don't i'm afeard": [65535, 0], "don't i'm afeard i'll": [65535, 0], "i'm afeard i'll give": [65535, 0], "afeard i'll give you": [65535, 0], "i'll give you all": [65535, 0], "give you all of": [65535, 0], "you all of it": [65535, 0], "all of it tom": [65535, 0], "of it tom gave": [65535, 0], "it tom gave up": [65535, 0], "tom gave up the": [65535, 0], "gave up the brush": [65535, 0], "up the brush with": [65535, 0], "the brush with reluctance": [65535, 0], "brush with reluctance in": [65535, 0], "with reluctance in his": [65535, 0], "reluctance in his face": [65535, 0], "in his face but": [65535, 0], "his face but alacrity": [65535, 0], "face but alacrity in": [65535, 0], "but alacrity in his": [65535, 0], "alacrity in his heart": [65535, 0], "in his heart and": [65535, 0], "his heart and while": [65535, 0], "heart and while the": [65535, 0], "and while the late": [65535, 0], "while the late steamer": [65535, 0], "the late steamer big": [65535, 0], "late steamer big missouri": [65535, 0], "steamer big missouri worked": [65535, 0], "big missouri worked and": [65535, 0], "missouri worked and sweated": [65535, 0], "worked and sweated in": [65535, 0], "and sweated in the": [65535, 0], "sweated in the sun": [65535, 0], "in the sun the": [65535, 0], "the sun the retired": [65535, 0], "sun the retired artist": [65535, 0], "the retired artist sat": [65535, 0], "retired artist sat on": [65535, 0], "artist sat on a": [65535, 0], "sat on a barrel": [65535, 0], "on a barrel in": [65535, 0], "a barrel in the": [65535, 0], "barrel in the shade": [65535, 0], "in the shade close": [65535, 0], "the shade close by": [65535, 0], "shade close by dangled": [65535, 0], "close by dangled his": [65535, 0], "by dangled his legs": [65535, 0], "dangled his legs munched": [65535, 0], "his legs munched his": [65535, 0], "legs munched his apple": [65535, 0], "munched his apple and": [65535, 0], "his apple and planned": [65535, 0], "apple and planned the": [65535, 0], "and planned the slaughter": [65535, 0], "planned the slaughter of": [65535, 0], "the slaughter of more": [65535, 0], "slaughter of more innocents": [65535, 0], "of more innocents there": [65535, 0], "more innocents there was": [65535, 0], "innocents there was no": [65535, 0], "there was no lack": [65535, 0], "was no lack of": [65535, 0], "no lack of material": [65535, 0], "lack of material boys": [65535, 0], "of material boys happened": [65535, 0], "material boys happened along": [65535, 0], "boys happened along every": [65535, 0], "happened along every little": [65535, 0], "along every little while": [65535, 0], "every little while they": [65535, 0], "little while they came": [65535, 0], "while they came to": [65535, 0], "they came to jeer": [65535, 0], "came to jeer but": [65535, 0], "to jeer but remained": [65535, 0], "jeer but remained to": [65535, 0], "but remained to whitewash": [65535, 0], "remained to whitewash by": [65535, 0], "to whitewash by the": [65535, 0], "whitewash by the time": [65535, 0], "by the time ben": [65535, 0], "the time ben was": [65535, 0], "time ben was fagged": [65535, 0], "ben was fagged out": [65535, 0], "was fagged out tom": [65535, 0], "fagged out tom had": [65535, 0], "out tom had traded": [65535, 0], "tom had traded the": [65535, 0], "had traded the next": [65535, 0], "traded the next chance": [65535, 0], "the next chance to": [65535, 0], "next chance to billy": [65535, 0], "chance to billy fisher": [65535, 0], "to billy fisher for": [65535, 0], "billy fisher for a": [65535, 0], "fisher for a kite": [65535, 0], "for a kite in": [65535, 0], "a kite in good": [65535, 0], "kite in good repair": [65535, 0], "in good repair and": [65535, 0], "good repair and when": [65535, 0], "repair and when he": [65535, 0], "and when he played": [65535, 0], "when he played out": [65535, 0], "he played out johnny": [65535, 0], "played out johnny miller": [65535, 0], "out johnny miller bought": [65535, 0], "johnny miller bought in": [65535, 0], "miller bought in for": [65535, 0], "bought in for a": [65535, 0], "in for a dead": [65535, 0], "for a dead rat": [65535, 0], "a dead rat and": [65535, 0], "dead rat and a": [65535, 0], "rat and a string": [65535, 0], "and a string to": [65535, 0], "a string to swing": [65535, 0], "string to swing it": [65535, 0], "to swing it with": [65535, 0], "swing it with and": [65535, 0], "it with and so": [65535, 0], "with and so on": [65535, 0], "and so on and": [65535, 0], "so on and so": [65535, 0], "on and so on": [65535, 0], "and so on hour": [65535, 0], "so on hour after": [65535, 0], "on hour after hour": [65535, 0], "hour after hour and": [65535, 0], "after hour and when": [65535, 0], "hour and when the": [65535, 0], "and when the middle": [65535, 0], "when the middle of": [65535, 0], "middle of the afternoon": [65535, 0], "of the afternoon came": [65535, 0], "the afternoon came from": [65535, 0], "afternoon came from being": [65535, 0], "came from being a": [65535, 0], "from being a poor": [65535, 0], "being a poor poverty": [65535, 0], "a poor poverty stricken": [65535, 0], "poor poverty stricken boy": [65535, 0], "poverty stricken boy in": [65535, 0], "stricken boy in the": [65535, 0], "boy in the morning": [65535, 0], "in the morning tom": [65535, 0], "the morning tom was": [65535, 0], "morning tom was literally": [65535, 0], "tom was literally rolling": [65535, 0], "was literally rolling in": [65535, 0], "literally rolling in wealth": [65535, 0], "rolling in wealth he": [65535, 0], "in wealth he had": [65535, 0], "wealth he had besides": [65535, 0], "he had besides the": [65535, 0], "had besides the things": [65535, 0], "besides the things before": [65535, 0], "the things before mentioned": [65535, 0], "things before mentioned twelve": [65535, 0], "before mentioned twelve marbles": [65535, 0], "mentioned twelve marbles part": [65535, 0], "twelve marbles part of": [65535, 0], "marbles part of a": [65535, 0], "part of a jews": [65535, 0], "of a jews harp": [65535, 0], "a jews harp a": [65535, 0], "jews harp a piece": [65535, 0], "harp a piece of": [65535, 0], "a piece of blue": [65535, 0], "piece of blue bottle": [65535, 0], "of blue bottle glass": [65535, 0], "blue bottle glass to": [65535, 0], "bottle glass to look": [65535, 0], "glass to look through": [65535, 0], "to look through a": [65535, 0], "look through a spool": [65535, 0], "through a spool cannon": [65535, 0], "a spool cannon a": [65535, 0], "spool cannon a key": [65535, 0], "cannon a key that": [65535, 0], "a key that wouldn't": [65535, 0], "key that wouldn't unlock": [65535, 0], "that wouldn't unlock anything": [65535, 0], "wouldn't unlock anything a": [65535, 0], "unlock anything a fragment": [65535, 0], "anything a fragment of": [65535, 0], "a fragment of chalk": [65535, 0], "fragment of chalk a": [65535, 0], "of chalk a glass": [65535, 0], "chalk a glass stopper": [65535, 0], "a glass stopper of": [65535, 0], "glass stopper of a": [65535, 0], "stopper of a decanter": [65535, 0], "of a decanter a": [65535, 0], "a decanter a tin": [65535, 0], "decanter a tin soldier": [65535, 0], "a tin soldier a": [65535, 0], "tin soldier a couple": [65535, 0], "soldier a couple of": [65535, 0], "a couple of tadpoles": [65535, 0], "couple of tadpoles six": [65535, 0], "of tadpoles six fire": [65535, 0], "tadpoles six fire crackers": [65535, 0], "six fire crackers a": [65535, 0], "fire crackers a kitten": [65535, 0], "crackers a kitten with": [65535, 0], "a kitten with only": [65535, 0], "kitten with only one": [65535, 0], "with only one eye": [65535, 0], "only one eye a": [65535, 0], "one eye a brass": [65535, 0], "eye a brass doorknob": [65535, 0], "a brass doorknob a": [65535, 0], "brass doorknob a dog": [65535, 0], "doorknob a dog collar": [65535, 0], "a dog collar but": [65535, 0], "dog collar but no": [65535, 0], "collar but no dog": [65535, 0], "but no dog the": [65535, 0], "no dog the handle": [65535, 0], "dog the handle of": [65535, 0], "the handle of a": [65535, 0], "handle of a knife": [65535, 0], "of a knife four": [65535, 0], "a knife four pieces": [65535, 0], "knife four pieces of": [65535, 0], "four pieces of orange": [65535, 0], "pieces of orange peel": [65535, 0], "of orange peel and": [65535, 0], "orange peel and a": [65535, 0], "peel and a dilapidated": [65535, 0], "and a dilapidated old": [65535, 0], "a dilapidated old window": [65535, 0], "dilapidated old window sash": [65535, 0], "old window sash he": [65535, 0], "window sash he had": [65535, 0], "sash he had had": [65535, 0], "he had had a": [65535, 0], "had had a nice": [65535, 0], "had a nice good": [65535, 0], "a nice good idle": [65535, 0], "nice good idle time": [65535, 0], "good idle time all": [65535, 0], "idle time all the": [65535, 0], "time all the while": [65535, 0], "all the while plenty": [65535, 0], "the while plenty of": [65535, 0], "while plenty of company": [65535, 0], "plenty of company and": [65535, 0], "of company and the": [65535, 0], "company and the fence": [65535, 0], "and the fence had": [65535, 0], "the fence had three": [65535, 0], "fence had three coats": [65535, 0], "had three coats of": [65535, 0], "three coats of whitewash": [65535, 0], "coats of whitewash on": [65535, 0], "of whitewash on it": [65535, 0], "whitewash on it if": [65535, 0], "on it if he": [65535, 0], "it if he hadn't": [65535, 0], "if he hadn't run": [65535, 0], "he hadn't run out": [65535, 0], "hadn't run out of": [65535, 0], "run out of whitewash": [65535, 0], "out of whitewash he": [65535, 0], "of whitewash he would": [65535, 0], "whitewash he would have": [65535, 0], "he would have bankrupted": [65535, 0], "would have bankrupted every": [65535, 0], "have bankrupted every boy": [65535, 0], "bankrupted every boy in": [65535, 0], "every boy in the": [65535, 0], "boy in the village": [65535, 0], "in the village tom": [65535, 0], "the village tom said": [65535, 0], "village tom said to": [65535, 0], "tom said to himself": [65535, 0], "to himself that it": [65535, 0], "himself that it was": [65535, 0], "that it was not": [65535, 0], "it was not such": [65535, 0], "was not such a": [65535, 0], "not such a hollow": [65535, 0], "such a hollow world": [65535, 0], "a hollow world after": [65535, 0], "hollow world after all": [65535, 0], "world after all he": [65535, 0], "after all he had": [65535, 0], "all he had discovered": [65535, 0], "he had discovered a": [65535, 0], "had discovered a great": [65535, 0], "discovered a great law": [65535, 0], "a great law of": [65535, 0], "great law of human": [65535, 0], "law of human action": [65535, 0], "of human action without": [65535, 0], "human action without knowing": [65535, 0], "action without knowing it": [65535, 0], "without knowing it namely": [65535, 0], "knowing it namely that": [65535, 0], "it namely that in": [65535, 0], "namely that in order": [65535, 0], "that in order to": [65535, 0], "in order to make": [65535, 0], "order to make a": [65535, 0], "to make a man": [65535, 0], "make a man or": [65535, 0], "a man or a": [65535, 0], "man or a boy": [65535, 0], "or a boy covet": [65535, 0], "a boy covet a": [65535, 0], "boy covet a thing": [65535, 0], "covet a thing it": [65535, 0], "a thing it is": [65535, 0], "thing it is only": [65535, 0], "it is only necessary": [65535, 0], "is only necessary to": [65535, 0], "only necessary to make": [65535, 0], "necessary to make the": [65535, 0], "to make the thing": [65535, 0], "make the thing difficult": [65535, 0], "the thing difficult to": [65535, 0], "thing difficult to attain": [65535, 0], "difficult to attain if": [65535, 0], "to attain if he": [65535, 0], "attain if he had": [65535, 0], "if he had been": [65535, 0], "he had been a": [65535, 0], "had been a great": [65535, 0], "been a great and": [65535, 0], "a great and wise": [65535, 0], "great and wise philosopher": [65535, 0], "and wise philosopher like": [65535, 0], "wise philosopher like the": [65535, 0], "philosopher like the writer": [65535, 0], "like the writer of": [65535, 0], "the writer of this": [65535, 0], "writer of this book": [65535, 0], "of this book he": [65535, 0], "this book he would": [65535, 0], "book he would now": [65535, 0], "he would now have": [65535, 0], "would now have comprehended": [65535, 0], "now have comprehended that": [65535, 0], "have comprehended that work": [65535, 0], "comprehended that work consists": [65535, 0], "that work consists of": [65535, 0], "work consists of whatever": [65535, 0], "consists of whatever a": [65535, 0], "of whatever a body": [65535, 0], "whatever a body is": [65535, 0], "a body is obliged": [65535, 0], "body is obliged to": [65535, 0], "is obliged to do": [65535, 0], "obliged to do and": [65535, 0], "to do and that": [65535, 0], "do and that play": [65535, 0], "and that play consists": [65535, 0], "that play consists of": [65535, 0], "play consists of whatever": [65535, 0], "a body is not": [65535, 0], "body is not obliged": [65535, 0], "is not obliged to": [65535, 0], "not obliged to do": [65535, 0], "to do and this": [65535, 0], "do and this would": [65535, 0], "and this would help": [65535, 0], "this would help him": [65535, 0], "would help him to": [65535, 0], "help him to understand": [65535, 0], "him to understand why": [65535, 0], "to understand why constructing": [65535, 0], "understand why constructing artificial": [65535, 0], "why constructing artificial flowers": [65535, 0], "constructing artificial flowers or": [65535, 0], "artificial flowers or performing": [65535, 0], "flowers or performing on": [65535, 0], "or performing on a": [65535, 0], "performing on a tread": [65535, 0], "on a tread mill": [65535, 0], "a tread mill is": [65535, 0], "tread mill is work": [65535, 0], "mill is work while": [65535, 0], "is work while rolling": [65535, 0], "work while rolling ten": [65535, 0], "while rolling ten pins": [65535, 0], "rolling ten pins or": [65535, 0], "ten pins or climbing": [65535, 0], "pins or climbing mont": [65535, 0], "or climbing mont blanc": [65535, 0], "climbing mont blanc is": [65535, 0], "mont blanc is only": [65535, 0], "blanc is only amusement": [65535, 0], "is only amusement there": [65535, 0], "only amusement there are": [65535, 0], "amusement there are wealthy": [65535, 0], "there are wealthy gentlemen": [65535, 0], "are wealthy gentlemen in": [65535, 0], "wealthy gentlemen in england": [65535, 0], "gentlemen in england who": [65535, 0], "in england who drive": [65535, 0], "england who drive four": [65535, 0], "who drive four horse": [65535, 0], "drive four horse passenger": [65535, 0], "four horse passenger coaches": [65535, 0], "horse passenger coaches twenty": [65535, 0], "passenger coaches twenty or": [65535, 0], "coaches twenty or thirty": [65535, 0], "twenty or thirty miles": [65535, 0], "or thirty miles on": [65535, 0], "thirty miles on a": [65535, 0], "miles on a daily": [65535, 0], "on a daily line": [65535, 0], "a daily line in": [65535, 0], "daily line in the": [65535, 0], "line in the summer": [65535, 0], "in the summer because": [65535, 0], "the summer because the": [65535, 0], "summer because the privilege": [65535, 0], "because the privilege costs": [65535, 0], "the privilege costs them": [65535, 0], "privilege costs them considerable": [65535, 0], "costs them considerable money": [65535, 0], "them considerable money but": [65535, 0], "considerable money but if": [65535, 0], "money but if they": [65535, 0], "but if they were": [65535, 0], "if they were offered": [65535, 0], "they were offered wages": [65535, 0], "were offered wages for": [65535, 0], "offered wages for the": [65535, 0], "wages for the service": [65535, 0], "for the service that": [65535, 0], "the service that would": [65535, 0], "service that would turn": [65535, 0], "that would turn it": [65535, 0], "would turn it into": [65535, 0], "turn it into work": [65535, 0], "it into work and": [65535, 0], "into work and then": [65535, 0], "work and then they": [65535, 0], "and then they would": [65535, 0], "then they would resign": [65535, 0], "they would resign the": [65535, 0], "would resign the boy": [65535, 0], "resign the boy mused": [65535, 0], "the boy mused awhile": [65535, 0], "boy mused awhile over": [65535, 0], "mused awhile over the": [65535, 0], "awhile over the substantial": [65535, 0], "over the substantial change": [65535, 0], "the substantial change which": [65535, 0], "substantial change which had": [65535, 0], "change which had taken": [65535, 0], "which had taken place": [65535, 0], "had taken place in": [65535, 0], "taken place in his": [65535, 0], "place in his worldly": [65535, 0], "in his worldly circumstances": [65535, 0], "his worldly circumstances and": [65535, 0], "worldly circumstances and then": [65535, 0], "circumstances and then wended": [65535, 0], "and then wended toward": [65535, 0], "then wended toward headquarters": [65535, 0], "wended toward headquarters to": [65535, 0], "toward headquarters to report": [65535, 0], "saturday morning was come and": [65535, 0], "morning was come and all": [65535, 0], "was come and all the": [65535, 0], "come and all the summer": [65535, 0], "and all the summer world": [65535, 0], "all the summer world was": [65535, 0], "the summer world was bright": [65535, 0], "summer world was bright and": [65535, 0], "world was bright and fresh": [65535, 0], "was bright and fresh and": [65535, 0], "bright and fresh and brimming": [65535, 0], "and fresh and brimming with": [65535, 0], "fresh and brimming with life": [65535, 0], "and brimming with life there": [65535, 0], "brimming with life there was": [65535, 0], "with life there was a": [65535, 0], "life there was a song": [65535, 0], "there was a song in": [65535, 0], "was a song in every": [65535, 0], "a song in every heart": [65535, 0], "song in every heart and": [65535, 0], "in every heart and if": [65535, 0], "every heart and if the": [65535, 0], "heart and if the heart": [65535, 0], "and if the heart was": [65535, 0], "if the heart was young": [65535, 0], "the heart was young the": [65535, 0], "heart was young the music": [65535, 0], "was young the music issued": [65535, 0], "young the music issued at": [65535, 0], "the music issued at the": [65535, 0], "music issued at the lips": [65535, 0], "issued at the lips there": [65535, 0], "at the lips there was": [65535, 0], "the lips there was cheer": [65535, 0], "lips there was cheer in": [65535, 0], "there was cheer in every": [65535, 0], "was cheer in every face": [65535, 0], "cheer in every face and": [65535, 0], "in every face and a": [65535, 0], "every face and a spring": [65535, 0], "face and a spring in": [65535, 0], "and a spring in every": [65535, 0], "a spring in every step": [65535, 0], "spring in every step the": [65535, 0], "in every step the locust": [65535, 0], "every step the locust trees": [65535, 0], "step the locust trees were": [65535, 0], "the locust trees were in": [65535, 0], "locust trees were in bloom": [65535, 0], "trees were in bloom and": [65535, 0], "were in bloom and the": [65535, 0], "in bloom and the fragrance": [65535, 0], "bloom and the fragrance of": [65535, 0], "and the fragrance of the": [65535, 0], "the fragrance of the blossoms": [65535, 0], "fragrance of the blossoms filled": [65535, 0], "of the blossoms filled the": [65535, 0], "the blossoms filled the air": [65535, 0], "blossoms filled the air cardiff": [65535, 0], "filled the air cardiff hill": [65535, 0], "the air cardiff hill beyond": [65535, 0], "air cardiff hill beyond the": [65535, 0], "cardiff hill beyond the village": [65535, 0], "hill beyond the village and": [65535, 0], "beyond the village and above": [65535, 0], "the village and above it": [65535, 0], "village and above it was": [65535, 0], "and above it was green": [65535, 0], "above it was green with": [65535, 0], "it was green with vegetation": [65535, 0], "was green with vegetation and": [65535, 0], "green with vegetation and it": [65535, 0], "with vegetation and it lay": [65535, 0], "vegetation and it lay just": [65535, 0], "and it lay just far": [65535, 0], "it lay just far enough": [65535, 0], "lay just far enough away": [65535, 0], "just far enough away to": [65535, 0], "far enough away to seem": [65535, 0], "enough away to seem a": [65535, 0], "away to seem a delectable": [65535, 0], "to seem a delectable land": [65535, 0], "seem a delectable land dreamy": [65535, 0], "a delectable land dreamy reposeful": [65535, 0], "delectable land dreamy reposeful and": [65535, 0], "land dreamy reposeful and inviting": [65535, 0], "dreamy reposeful and inviting tom": [65535, 0], "reposeful and inviting tom appeared": [65535, 0], "and inviting tom appeared on": [65535, 0], "inviting tom appeared on the": [65535, 0], "tom appeared on the sidewalk": [65535, 0], "appeared on the sidewalk with": [65535, 0], "on the sidewalk with a": [65535, 0], "the sidewalk with a bucket": [65535, 0], "sidewalk with a bucket of": [65535, 0], "with a bucket of whitewash": [65535, 0], "a bucket of whitewash and": [65535, 0], "bucket of whitewash and a": [65535, 0], "of whitewash and a long": [65535, 0], "whitewash and a long handled": [65535, 0], "and a long handled brush": [65535, 0], "a long handled brush he": [65535, 0], "long handled brush he surveyed": [65535, 0], "handled brush he surveyed the": [65535, 0], "brush he surveyed the fence": [65535, 0], "he surveyed the fence and": [65535, 0], "surveyed the fence and all": [65535, 0], "the fence and all gladness": [65535, 0], "fence and all gladness left": [65535, 0], "and all gladness left him": [65535, 0], "all gladness left him and": [65535, 0], "gladness left him and a": [65535, 0], "left him and a deep": [65535, 0], "him and a deep melancholy": [65535, 0], "and a deep melancholy settled": [65535, 0], "a deep melancholy settled down": [65535, 0], "deep melancholy settled down upon": [65535, 0], "melancholy settled down upon his": [65535, 0], "settled down upon his spirit": [65535, 0], "down upon his spirit thirty": [65535, 0], "upon his spirit thirty yards": [65535, 0], "his spirit thirty yards of": [65535, 0], "spirit thirty yards of board": [65535, 0], "thirty yards of board fence": [65535, 0], "yards of board fence nine": [65535, 0], "of board fence nine feet": [65535, 0], "board fence nine feet high": [65535, 0], "fence nine feet high life": [65535, 0], "nine feet high life to": [65535, 0], "feet high life to him": [65535, 0], "high life to him seemed": [65535, 0], "life to him seemed hollow": [65535, 0], "to him seemed hollow and": [65535, 0], "him seemed hollow and existence": [65535, 0], "seemed hollow and existence but": [65535, 0], "hollow and existence but a": [65535, 0], "and existence but a burden": [65535, 0], "existence but a burden sighing": [65535, 0], "but a burden sighing he": [65535, 0], "a burden sighing he dipped": [65535, 0], "burden sighing he dipped his": [65535, 0], "sighing he dipped his brush": [65535, 0], "he dipped his brush and": [65535, 0], "dipped his brush and passed": [65535, 0], "his brush and passed it": [65535, 0], "brush and passed it along": [65535, 0], "and passed it along the": [65535, 0], "passed it along the topmost": [65535, 0], "it along the topmost plank": [65535, 0], "along the topmost plank repeated": [65535, 0], "the topmost plank repeated the": [65535, 0], "topmost plank repeated the operation": [65535, 0], "plank repeated the operation did": [65535, 0], "repeated the operation did it": [65535, 0], "the operation did it again": [65535, 0], "operation did it again compared": [65535, 0], "did it again compared the": [65535, 0], "it again compared the insignificant": [65535, 0], "again compared the insignificant whitewashed": [65535, 0], "compared the insignificant whitewashed streak": [65535, 0], "the insignificant whitewashed streak with": [65535, 0], "insignificant whitewashed streak with the": [65535, 0], "whitewashed streak with the far": [65535, 0], "streak with the far reaching": [65535, 0], "with the far reaching continent": [65535, 0], "the far reaching continent of": [65535, 0], "far reaching continent of unwhitewashed": [65535, 0], "reaching continent of unwhitewashed fence": [65535, 0], "continent of unwhitewashed fence and": [65535, 0], "of unwhitewashed fence and sat": [65535, 0], "unwhitewashed fence and sat down": [65535, 0], "fence and sat down on": [65535, 0], "and sat down on a": [65535, 0], "sat down on a tree": [65535, 0], "down on a tree box": [65535, 0], "on a tree box discouraged": [65535, 0], "a tree box discouraged jim": [65535, 0], "tree box discouraged jim came": [65535, 0], "box discouraged jim came skipping": [65535, 0], "discouraged jim came skipping out": [65535, 0], "jim came skipping out at": [65535, 0], "came skipping out at the": [65535, 0], "skipping out at the gate": [65535, 0], "out at the gate with": [65535, 0], "at the gate with a": [65535, 0], "the gate with a tin": [65535, 0], "gate with a tin pail": [65535, 0], "with a tin pail and": [65535, 0], "a tin pail and singing": [65535, 0], "tin pail and singing buffalo": [65535, 0], "pail and singing buffalo gals": [65535, 0], "and singing buffalo gals bringing": [65535, 0], "singing buffalo gals bringing water": [65535, 0], "buffalo gals bringing water from": [65535, 0], "gals bringing water from the": [65535, 0], "bringing water from the town": [65535, 0], "water from the town pump": [65535, 0], "from the town pump had": [65535, 0], "the town pump had always": [65535, 0], "town pump had always been": [65535, 0], "pump had always been hateful": [65535, 0], "had always been hateful work": [65535, 0], "always been hateful work in": [65535, 0], "been hateful work in tom's": [65535, 0], "hateful work in tom's eyes": [65535, 0], "work in tom's eyes before": [65535, 0], "in tom's eyes before but": [65535, 0], "tom's eyes before but now": [65535, 0], "eyes before but now it": [65535, 0], "before but now it did": [65535, 0], "but now it did not": [65535, 0], "now it did not strike": [65535, 0], "it did not strike him": [65535, 0], "did not strike him so": [65535, 0], "not strike him so he": [65535, 0], "strike him so he remembered": [65535, 0], "him so he remembered that": [65535, 0], "so he remembered that there": [65535, 0], "he remembered that there was": [65535, 0], "remembered that there was company": [65535, 0], "that there was company at": [65535, 0], "there was company at the": [65535, 0], "was company at the pump": [65535, 0], "company at the pump white": [65535, 0], "at the pump white mulatto": [65535, 0], "the pump white mulatto and": [65535, 0], "pump white mulatto and negro": [65535, 0], "white mulatto and negro boys": [65535, 0], "mulatto and negro boys and": [65535, 0], "and negro boys and girls": [65535, 0], "negro boys and girls were": [65535, 0], "boys and girls were always": [65535, 0], "and girls were always there": [65535, 0], "girls were always there waiting": [65535, 0], "were always there waiting their": [65535, 0], "always there waiting their turns": [65535, 0], "there waiting their turns resting": [65535, 0], "waiting their turns resting trading": [65535, 0], "their turns resting trading playthings": [65535, 0], "turns resting trading playthings quarrelling": [65535, 0], "resting trading playthings quarrelling fighting": [65535, 0], "trading playthings quarrelling fighting skylarking": [65535, 0], "playthings quarrelling fighting skylarking and": [65535, 0], "quarrelling fighting skylarking and he": [65535, 0], "fighting skylarking and he remembered": [65535, 0], "skylarking and he remembered that": [65535, 0], "and he remembered that although": [65535, 0], "he remembered that although the": [65535, 0], "remembered that although the pump": [65535, 0], "that although the pump was": [65535, 0], "although the pump was only": [65535, 0], "the pump was only a": [65535, 0], "pump was only a hundred": [65535, 0], "was only a hundred and": [65535, 0], "only a hundred and fifty": [65535, 0], "a hundred and fifty yards": [65535, 0], "hundred and fifty yards off": [65535, 0], "and fifty yards off jim": [65535, 0], "fifty yards off jim never": [65535, 0], "yards off jim never got": [65535, 0], "off jim never got back": [65535, 0], "jim never got back with": [65535, 0], "never got back with a": [65535, 0], "got back with a bucket": [65535, 0], "back with a bucket of": [65535, 0], "with a bucket of water": [65535, 0], "a bucket of water under": [65535, 0], "bucket of water under an": [65535, 0], "of water under an hour": [65535, 0], "water under an hour and": [65535, 0], "under an hour and even": [65535, 0], "an hour and even then": [65535, 0], "hour and even then somebody": [65535, 0], "and even then somebody generally": [65535, 0], "even then somebody generally had": [65535, 0], "then somebody generally had to": [65535, 0], "somebody generally had to go": [65535, 0], "generally had to go after": [65535, 0], "had to go after him": [65535, 0], "to go after him tom": [65535, 0], "go after him tom said": [65535, 0], "after him tom said say": [65535, 0], "him tom said say jim": [65535, 0], "tom said say jim i'll": [65535, 0], "said say jim i'll fetch": [65535, 0], "say jim i'll fetch the": [65535, 0], "jim i'll fetch the water": [65535, 0], "i'll fetch the water if": [65535, 0], "fetch the water if you'll": [65535, 0], "the water if you'll whitewash": [65535, 0], "water if you'll whitewash some": [65535, 0], "if you'll whitewash some jim": [65535, 0], "you'll whitewash some jim shook": [65535, 0], "whitewash some jim shook his": [65535, 0], "some jim shook his head": [65535, 0], "jim shook his head and": [65535, 0], "shook his head and said": [65535, 0], "his head and said can't": [65535, 0], "head and said can't mars": [65535, 0], "and said can't mars tom": [65535, 0], "said can't mars tom ole": [65535, 0], "can't mars tom ole missis": [65535, 0], "mars tom ole missis she": [65535, 0], "tom ole missis she tole": [65535, 0], "ole missis she tole me": [65535, 0], "missis she tole me i": [65535, 0], "she tole me i got": [65535, 0], "tole me i got to": [65535, 0], "me i got to go": [65535, 0], "i got to go an'": [65535, 0], "got to go an' git": [65535, 0], "to go an' git dis": [65535, 0], "go an' git dis water": [65535, 0], "an' git dis water an'": [65535, 0], "git dis water an' not": [65535, 0], "dis water an' not stop": [65535, 0], "water an' not stop foolin'": [65535, 0], "an' not stop foolin' roun'": [65535, 0], "not stop foolin' roun' wid": [65535, 0], "stop foolin' roun' wid anybody": [65535, 0], "foolin' roun' wid anybody she": [65535, 0], "roun' wid anybody she say": [65535, 0], "wid anybody she say she": [65535, 0], "anybody she say she spec'": [65535, 0], "she say she spec' mars": [65535, 0], "say she spec' mars tom": [65535, 0], "she spec' mars tom gwine": [65535, 0], "spec' mars tom gwine to": [65535, 0], "mars tom gwine to ax": [65535, 0], "tom gwine to ax me": [65535, 0], "gwine to ax me to": [65535, 0], "to ax me to whitewash": [65535, 0], "ax me to whitewash an'": [65535, 0], "me to whitewash an' so": [65535, 0], "to whitewash an' so she": [65535, 0], "whitewash an' so she tole": [65535, 0], "an' so she tole me": [65535, 0], "so she tole me go": [65535, 0], "she tole me go 'long": [65535, 0], "tole me go 'long an'": [65535, 0], "me go 'long an' 'tend": [65535, 0], "go 'long an' 'tend to": [65535, 0], "'long an' 'tend to my": [65535, 0], "an' 'tend to my own": [65535, 0], "'tend to my own business": [65535, 0], "to my own business she": [65535, 0], "my own business she 'lowed": [65535, 0], "own business she 'lowed she'd": [65535, 0], "business she 'lowed she'd 'tend": [65535, 0], "she 'lowed she'd 'tend to": [65535, 0], "'lowed she'd 'tend to de": [65535, 0], "she'd 'tend to de whitewashin'": [65535, 0], "'tend to de whitewashin' oh": [65535, 0], "to de whitewashin' oh never": [65535, 0], "de whitewashin' oh never you": [65535, 0], "whitewashin' oh never you mind": [65535, 0], "oh never you mind what": [65535, 0], "never you mind what she": [65535, 0], "you mind what she said": [65535, 0], "mind what she said jim": [65535, 0], "what she said jim that's": [65535, 0], "she said jim that's the": [65535, 0], "said jim that's the way": [65535, 0], "jim that's the way she": [65535, 0], "that's the way she always": [65535, 0], "the way she always talks": [65535, 0], "way she always talks gimme": [65535, 0], "she always talks gimme the": [65535, 0], "always talks gimme the bucket": [65535, 0], "talks gimme the bucket i": [65535, 0], "gimme the bucket i won't": [65535, 0], "the bucket i won't be": [65535, 0], "bucket i won't be gone": [65535, 0], "i won't be gone only": [65535, 0], "won't be gone only a": [65535, 0], "be gone only a minute": [65535, 0], "gone only a minute she": [65535, 0], "only a minute she won't": [65535, 0], "a minute she won't ever": [65535, 0], "minute she won't ever know": [65535, 0], "she won't ever know oh": [65535, 0], "won't ever know oh i": [65535, 0], "ever know oh i dasn't": [65535, 0], "know oh i dasn't mars": [65535, 0], "oh i dasn't mars tom": [65535, 0], "i dasn't mars tom ole": [65535, 0], "dasn't mars tom ole missis": [65535, 0], "mars tom ole missis she'd": [65535, 0], "tom ole missis she'd take": [65535, 0], "ole missis she'd take an'": [65535, 0], "missis she'd take an' tar": [65535, 0], "she'd take an' tar de": [65535, 0], "take an' tar de head": [65535, 0], "an' tar de head off'n": [65535, 0], "tar de head off'n me": [65535, 0], "de head off'n me 'deed": [65535, 0], "head off'n me 'deed she": [65535, 0], "off'n me 'deed she would": [65535, 0], "me 'deed she would she": [65535, 0], "'deed she would she she": [65535, 0], "she would she she never": [65535, 0], "would she she never licks": [65535, 0], "she she never licks anybody": [65535, 0], "she never licks anybody whacks": [65535, 0], "never licks anybody whacks 'em": [65535, 0], "licks anybody whacks 'em over": [65535, 0], "anybody whacks 'em over the": [65535, 0], "whacks 'em over the head": [65535, 0], "'em over the head with": [65535, 0], "over the head with her": [65535, 0], "the head with her thimble": [65535, 0], "head with her thimble and": [65535, 0], "with her thimble and who": [65535, 0], "her thimble and who cares": [65535, 0], "thimble and who cares for": [65535, 0], "and who cares for that": [65535, 0], "who cares for that i'd": [65535, 0], "cares for that i'd like": [65535, 0], "for that i'd like to": [65535, 0], "that i'd like to know": [65535, 0], "i'd like to know she": [65535, 0], "like to know she talks": [65535, 0], "to know she talks awful": [65535, 0], "know she talks awful but": [65535, 0], "she talks awful but talk": [65535, 0], "talks awful but talk don't": [65535, 0], "awful but talk don't hurt": [65535, 0], "but talk don't hurt anyways": [65535, 0], "talk don't hurt anyways it": [65535, 0], "don't hurt anyways it don't": [65535, 0], "hurt anyways it don't if": [65535, 0], "anyways it don't if she": [65535, 0], "it don't if she don't": [65535, 0], "don't if she don't cry": [65535, 0], "if she don't cry jim": [65535, 0], "she don't cry jim i'll": [65535, 0], "don't cry jim i'll give": [65535, 0], "cry jim i'll give you": [65535, 0], "jim i'll give you a": [65535, 0], "i'll give you a marvel": [65535, 0], "give you a marvel i'll": [65535, 0], "you a marvel i'll give": [65535, 0], "a marvel i'll give you": [65535, 0], "marvel i'll give you a": [65535, 0], "i'll give you a white": [65535, 0], "give you a white alley": [65535, 0], "you a white alley jim": [65535, 0], "a white alley jim began": [65535, 0], "white alley jim began to": [65535, 0], "alley jim began to waver": [65535, 0], "jim began to waver white": [65535, 0], "began to waver white alley": [65535, 0], "to waver white alley jim": [65535, 0], "waver white alley jim and": [65535, 0], "white alley jim and it's": [65535, 0], "alley jim and it's a": [65535, 0], "jim and it's a bully": [65535, 0], "and it's a bully taw": [65535, 0], "it's a bully taw my": [65535, 0], "a bully taw my dat's": [65535, 0], "bully taw my dat's a": [65535, 0], "taw my dat's a mighty": [65535, 0], "my dat's a mighty gay": [65535, 0], "dat's a mighty gay marvel": [65535, 0], "a mighty gay marvel i": [65535, 0], "mighty gay marvel i tell": [65535, 0], "gay marvel i tell you": [65535, 0], "marvel i tell you but": [65535, 0], "i tell you but mars": [65535, 0], "tell you but mars tom": [65535, 0], "you but mars tom i's": [65535, 0], "but mars tom i's powerful": [65535, 0], "mars tom i's powerful 'fraid": [65535, 0], "tom i's powerful 'fraid ole": [65535, 0], "i's powerful 'fraid ole missis": [65535, 0], "powerful 'fraid ole missis and": [65535, 0], "'fraid ole missis and besides": [65535, 0], "ole missis and besides if": [65535, 0], "missis and besides if you": [65535, 0], "and besides if you will": [65535, 0], "besides if you will i'll": [65535, 0], "if you will i'll show": [65535, 0], "you will i'll show you": [65535, 0], "will i'll show you my": [65535, 0], "i'll show you my sore": [65535, 0], "show you my sore toe": [65535, 0], "you my sore toe jim": [65535, 0], "my sore toe jim was": [65535, 0], "sore toe jim was only": [65535, 0], "toe jim was only human": [65535, 0], "jim was only human this": [65535, 0], "was only human this attraction": [65535, 0], "only human this attraction was": [65535, 0], "human this attraction was too": [65535, 0], "this attraction was too much": [65535, 0], "attraction was too much for": [65535, 0], "was too much for him": [65535, 0], "too much for him he": [65535, 0], "much for him he put": [65535, 0], "for him he put down": [65535, 0], "him he put down his": [65535, 0], "he put down his pail": [65535, 0], "put down his pail took": [65535, 0], "down his pail took the": [65535, 0], "his pail took the white": [65535, 0], "pail took the white alley": [65535, 0], "took the white alley and": [65535, 0], "the white alley and bent": [65535, 0], "white alley and bent over": [65535, 0], "alley and bent over the": [65535, 0], "and bent over the toe": [65535, 0], "bent over the toe with": [65535, 0], "over the toe with absorbing": [65535, 0], "the toe with absorbing interest": [65535, 0], "toe with absorbing interest while": [65535, 0], "with absorbing interest while the": [65535, 0], "absorbing interest while the bandage": [65535, 0], "interest while the bandage was": [65535, 0], "while the bandage was being": [65535, 0], "the bandage was being unwound": [65535, 0], "bandage was being unwound in": [65535, 0], "was being unwound in another": [65535, 0], "being unwound in another moment": [65535, 0], "unwound in another moment he": [65535, 0], "in another moment he was": [65535, 0], "another moment he was flying": [65535, 0], "moment he was flying down": [65535, 0], "he was flying down the": [65535, 0], "was flying down the street": [65535, 0], "flying down the street with": [65535, 0], "down the street with his": [65535, 0], "the street with his pail": [65535, 0], "street with his pail and": [65535, 0], "with his pail and a": [65535, 0], "his pail and a tingling": [65535, 0], "pail and a tingling rear": [65535, 0], "and a tingling rear tom": [65535, 0], "a tingling rear tom was": [65535, 0], "tingling rear tom was whitewashing": [65535, 0], "rear tom was whitewashing with": [65535, 0], "tom was whitewashing with vigor": [65535, 0], "was whitewashing with vigor and": [65535, 0], "whitewashing with vigor and aunt": [65535, 0], "with vigor and aunt polly": [65535, 0], "vigor and aunt polly was": [65535, 0], "and aunt polly was retiring": [65535, 0], "aunt polly was retiring from": [65535, 0], "polly was retiring from the": [65535, 0], "was retiring from the field": [65535, 0], "retiring from the field with": [65535, 0], "from the field with a": [65535, 0], "the field with a slipper": [65535, 0], "field with a slipper in": [65535, 0], "with a slipper in her": [65535, 0], "a slipper in her hand": [65535, 0], "slipper in her hand and": [65535, 0], "in her hand and triumph": [65535, 0], "her hand and triumph in": [65535, 0], "hand and triumph in her": [65535, 0], "and triumph in her eye": [65535, 0], "triumph in her eye but": [65535, 0], "in her eye but tom's": [65535, 0], "her eye but tom's energy": [65535, 0], "eye but tom's energy did": [65535, 0], "but tom's energy did not": [65535, 0], "tom's energy did not last": [65535, 0], "energy did not last he": [65535, 0], "did not last he began": [65535, 0], "not last he began to": [65535, 0], "last he began to think": [65535, 0], "he began to think of": [65535, 0], "began to think of the": [65535, 0], "to think of the fun": [65535, 0], "think of the fun he": [65535, 0], "of the fun he had": [65535, 0], "the fun he had planned": [65535, 0], "fun he had planned for": [65535, 0], "he had planned for this": [65535, 0], "had planned for this day": [65535, 0], "planned for this day and": [65535, 0], "for this day and his": [65535, 0], "this day and his sorrows": [65535, 0], "day and his sorrows multiplied": [65535, 0], "and his sorrows multiplied soon": [65535, 0], "his sorrows multiplied soon the": [65535, 0], "sorrows multiplied soon the free": [65535, 0], "multiplied soon the free boys": [65535, 0], "soon the free boys would": [65535, 0], "the free boys would come": [65535, 0], "free boys would come tripping": [65535, 0], "boys would come tripping along": [65535, 0], "would come tripping along on": [65535, 0], "come tripping along on all": [65535, 0], "tripping along on all sorts": [65535, 0], "along on all sorts of": [65535, 0], "on all sorts of delicious": [65535, 0], "all sorts of delicious expeditions": [65535, 0], "sorts of delicious expeditions and": [65535, 0], "of delicious expeditions and they": [65535, 0], "delicious expeditions and they would": [65535, 0], "expeditions and they would make": [65535, 0], "and they would make a": [65535, 0], "they would make a world": [65535, 0], "would make a world of": [65535, 0], "make a world of fun": [65535, 0], "a world of fun of": [65535, 0], "world of fun of him": [65535, 0], "of fun of him for": [65535, 0], "fun of him for having": [65535, 0], "of him for having to": [65535, 0], "him for having to work": [65535, 0], "for having to work the": [65535, 0], "having to work the very": [65535, 0], "to work the very thought": [65535, 0], "work the very thought of": [65535, 0], "the very thought of it": [65535, 0], "very thought of it burnt": [65535, 0], "thought of it burnt him": [65535, 0], "of it burnt him like": [65535, 0], "it burnt him like fire": [65535, 0], "burnt him like fire he": [65535, 0], "him like fire he got": [65535, 0], "like fire he got out": [65535, 0], "fire he got out his": [65535, 0], "he got out his worldly": [65535, 0], "got out his worldly wealth": [65535, 0], "out his worldly wealth and": [65535, 0], "his worldly wealth and examined": [65535, 0], "worldly wealth and examined it": [65535, 0], "wealth and examined it bits": [65535, 0], "and examined it bits of": [65535, 0], "examined it bits of toys": [65535, 0], "it bits of toys marbles": [65535, 0], "bits of toys marbles and": [65535, 0], "of toys marbles and trash": [65535, 0], "toys marbles and trash enough": [65535, 0], "marbles and trash enough to": [65535, 0], "and trash enough to buy": [65535, 0], "trash enough to buy an": [65535, 0], "enough to buy an exchange": [65535, 0], "to buy an exchange of": [65535, 0], "buy an exchange of work": [65535, 0], "an exchange of work maybe": [65535, 0], "exchange of work maybe but": [65535, 0], "of work maybe but not": [65535, 0], "work maybe but not half": [65535, 0], "maybe but not half enough": [65535, 0], "but not half enough to": [65535, 0], "not half enough to buy": [65535, 0], "half enough to buy so": [65535, 0], "enough to buy so much": [65535, 0], "to buy so much as": [65535, 0], "buy so much as half": [65535, 0], "so much as half an": [65535, 0], "much as half an hour": [65535, 0], "as half an hour of": [65535, 0], "half an hour of pure": [65535, 0], "an hour of pure freedom": [65535, 0], "hour of pure freedom so": [65535, 0], "of pure freedom so he": [65535, 0], "pure freedom so he returned": [65535, 0], "freedom so he returned his": [65535, 0], "so he returned his straitened": [65535, 0], "he returned his straitened means": [65535, 0], "returned his straitened means to": [65535, 0], "his straitened means to his": [65535, 0], "straitened means to his pocket": [65535, 0], "means to his pocket and": [65535, 0], "to his pocket and gave": [65535, 0], "his pocket and gave up": [65535, 0], "pocket and gave up the": [65535, 0], "and gave up the idea": [65535, 0], "gave up the idea of": [65535, 0], "up the idea of trying": [65535, 0], "the idea of trying to": [65535, 0], "idea of trying to buy": [65535, 0], "of trying to buy the": [65535, 0], "trying to buy the boys": [65535, 0], "to buy the boys at": [65535, 0], "buy the boys at this": [65535, 0], "the boys at this dark": [65535, 0], "boys at this dark and": [65535, 0], "at this dark and hopeless": [65535, 0], "this dark and hopeless moment": [65535, 0], "dark and hopeless moment an": [65535, 0], "and hopeless moment an inspiration": [65535, 0], "hopeless moment an inspiration burst": [65535, 0], "moment an inspiration burst upon": [65535, 0], "an inspiration burst upon him": [65535, 0], "inspiration burst upon him nothing": [65535, 0], "burst upon him nothing less": [65535, 0], "upon him nothing less than": [65535, 0], "him nothing less than a": [65535, 0], "nothing less than a great": [65535, 0], "less than a great magnificent": [65535, 0], "than a great magnificent inspiration": [65535, 0], "a great magnificent inspiration he": [65535, 0], "great magnificent inspiration he took": [65535, 0], "magnificent inspiration he took up": [65535, 0], "inspiration he took up his": [65535, 0], "he took up his brush": [65535, 0], "took up his brush and": [65535, 0], "up his brush and went": [65535, 0], "his brush and went tranquilly": [65535, 0], "brush and went tranquilly to": [65535, 0], "and went tranquilly to work": [65535, 0], "went tranquilly to work ben": [65535, 0], "tranquilly to work ben rogers": [65535, 0], "to work ben rogers hove": [65535, 0], "work ben rogers hove in": [65535, 0], "ben rogers hove in sight": [65535, 0], "rogers hove in sight presently": [65535, 0], "hove in sight presently the": [65535, 0], "in sight presently the very": [65535, 0], "sight presently the very boy": [65535, 0], "presently the very boy of": [65535, 0], "the very boy of all": [65535, 0], "very boy of all boys": [65535, 0], "boy of all boys whose": [65535, 0], "of all boys whose ridicule": [65535, 0], "all boys whose ridicule he": [65535, 0], "boys whose ridicule he had": [65535, 0], "whose ridicule he had been": [65535, 0], "ridicule he had been dreading": [65535, 0], "he had been dreading ben's": [65535, 0], "had been dreading ben's gait": [65535, 0], "been dreading ben's gait was": [65535, 0], "dreading ben's gait was the": [65535, 0], "ben's gait was the hop": [65535, 0], "gait was the hop skip": [65535, 0], "was the hop skip and": [65535, 0], "the hop skip and jump": [65535, 0], "hop skip and jump proof": [65535, 0], "skip and jump proof enough": [65535, 0], "and jump proof enough that": [65535, 0], "jump proof enough that his": [65535, 0], "proof enough that his heart": [65535, 0], "enough that his heart was": [65535, 0], "that his heart was light": [65535, 0], "his heart was light and": [65535, 0], "heart was light and his": [65535, 0], "was light and his anticipations": [65535, 0], "light and his anticipations high": [65535, 0], "and his anticipations high he": [65535, 0], "his anticipations high he was": [65535, 0], "anticipations high he was eating": [65535, 0], "high he was eating an": [65535, 0], "he was eating an apple": [65535, 0], "was eating an apple and": [65535, 0], "eating an apple and giving": [65535, 0], "an apple and giving a": [65535, 0], "apple and giving a long": [65535, 0], "and giving a long melodious": [65535, 0], "giving a long melodious whoop": [65535, 0], "a long melodious whoop at": [65535, 0], "long melodious whoop at intervals": [65535, 0], "melodious whoop at intervals followed": [65535, 0], "whoop at intervals followed by": [65535, 0], "at intervals followed by a": [65535, 0], "intervals followed by a deep": [65535, 0], "followed by a deep toned": [65535, 0], "by a deep toned ding": [65535, 0], "a deep toned ding dong": [65535, 0], "deep toned ding dong dong": [65535, 0], "toned ding dong dong ding": [65535, 0], "ding dong dong ding dong": [65535, 0], "dong dong ding dong dong": [65535, 0], "dong ding dong dong for": [65535, 0], "ding dong dong for he": [65535, 0], "dong dong for he was": [65535, 0], "dong for he was personating": [65535, 0], "for he was personating a": [65535, 0], "he was personating a steamboat": [65535, 0], "was personating a steamboat as": [65535, 0], "personating a steamboat as he": [65535, 0], "a steamboat as he drew": [65535, 0], "steamboat as he drew near": [65535, 0], "as he drew near he": [65535, 0], "he drew near he slackened": [65535, 0], "drew near he slackened speed": [65535, 0], "near he slackened speed took": [65535, 0], "he slackened speed took the": [65535, 0], "slackened speed took the middle": [65535, 0], "speed took the middle of": [65535, 0], "took the middle of the": [65535, 0], "the middle of the street": [65535, 0], "middle of the street leaned": [65535, 0], "of the street leaned far": [65535, 0], "the street leaned far over": [65535, 0], "street leaned far over to": [65535, 0], "leaned far over to starboard": [65535, 0], "far over to starboard and": [65535, 0], "over to starboard and rounded": [65535, 0], "to starboard and rounded to": [65535, 0], "starboard and rounded to ponderously": [65535, 0], "and rounded to ponderously and": [65535, 0], "rounded to ponderously and with": [65535, 0], "to ponderously and with laborious": [65535, 0], "ponderously and with laborious pomp": [65535, 0], "and with laborious pomp and": [65535, 0], "with laborious pomp and circumstance": [65535, 0], "laborious pomp and circumstance for": [65535, 0], "pomp and circumstance for he": [65535, 0], "and circumstance for he was": [65535, 0], "circumstance for he was personating": [65535, 0], "for he was personating the": [65535, 0], "he was personating the big": [65535, 0], "was personating the big missouri": [65535, 0], "personating the big missouri and": [65535, 0], "the big missouri and considered": [65535, 0], "big missouri and considered himself": [65535, 0], "missouri and considered himself to": [65535, 0], "and considered himself to be": [65535, 0], "considered himself to be drawing": [65535, 0], "himself to be drawing nine": [65535, 0], "to be drawing nine feet": [65535, 0], "be drawing nine feet of": [65535, 0], "drawing nine feet of water": [65535, 0], "nine feet of water he": [65535, 0], "feet of water he was": [65535, 0], "of water he was boat": [65535, 0], "water he was boat and": [65535, 0], "he was boat and captain": [65535, 0], "was boat and captain and": [65535, 0], "boat and captain and engine": [65535, 0], "and captain and engine bells": [65535, 0], "captain and engine bells combined": [65535, 0], "and engine bells combined so": [65535, 0], "engine bells combined so he": [65535, 0], "bells combined so he had": [65535, 0], "combined so he had to": [65535, 0], "so he had to imagine": [65535, 0], "he had to imagine himself": [65535, 0], "had to imagine himself standing": [65535, 0], "to imagine himself standing on": [65535, 0], "imagine himself standing on his": [65535, 0], "himself standing on his own": [65535, 0], "standing on his own hurricane": [65535, 0], "on his own hurricane deck": [65535, 0], "his own hurricane deck giving": [65535, 0], "own hurricane deck giving the": [65535, 0], "hurricane deck giving the orders": [65535, 0], "deck giving the orders and": [65535, 0], "giving the orders and executing": [65535, 0], "the orders and executing them": [65535, 0], "orders and executing them stop": [65535, 0], "and executing them stop her": [65535, 0], "executing them stop her sir": [65535, 0], "them stop her sir ting": [65535, 0], "stop her sir ting a": [65535, 0], "her sir ting a ling": [65535, 0], "sir ting a ling ling": [65535, 0], "ting a ling ling the": [65535, 0], "a ling ling the headway": [65535, 0], "ling ling the headway ran": [65535, 0], "ling the headway ran almost": [65535, 0], "the headway ran almost out": [65535, 0], "headway ran almost out and": [65535, 0], "ran almost out and he": [65535, 0], "almost out and he drew": [65535, 0], "out and he drew up": [65535, 0], "and he drew up slowly": [65535, 0], "he drew up slowly toward": [65535, 0], "drew up slowly toward the": [65535, 0], "up slowly toward the sidewalk": [65535, 0], "slowly toward the sidewalk ship": [65535, 0], "toward the sidewalk ship up": [65535, 0], "the sidewalk ship up to": [65535, 0], "sidewalk ship up to back": [65535, 0], "ship up to back ting": [65535, 0], "up to back ting a": [65535, 0], "to back ting a ling": [65535, 0], "back ting a ling ling": [65535, 0], "ting a ling ling his": [65535, 0], "a ling ling his arms": [65535, 0], "ling ling his arms straightened": [65535, 0], "ling his arms straightened and": [65535, 0], "his arms straightened and stiffened": [65535, 0], "arms straightened and stiffened down": [65535, 0], "straightened and stiffened down his": [65535, 0], "and stiffened down his sides": [65535, 0], "stiffened down his sides set": [65535, 0], "down his sides set her": [65535, 0], "his sides set her back": [65535, 0], "sides set her back on": [65535, 0], "set her back on the": [65535, 0], "her back on the stabboard": [65535, 0], "back on the stabboard ting": [65535, 0], "on the stabboard ting a": [65535, 0], "the stabboard ting a ling": [65535, 0], "stabboard ting a ling ling": [65535, 0], "ting a ling ling chow": [65535, 0], "a ling ling chow ch": [65535, 0], "ling ling chow ch chow": [65535, 0], "ling chow ch chow wow": [65535, 0], "chow ch chow wow chow": [65535, 0], "ch chow wow chow his": [65535, 0], "chow wow chow his right": [65535, 0], "wow chow his right hand": [65535, 0], "chow his right hand meantime": [65535, 0], "his right hand meantime describing": [65535, 0], "right hand meantime describing stately": [65535, 0], "hand meantime describing stately circles": [65535, 0], "meantime describing stately circles for": [65535, 0], "describing stately circles for it": [65535, 0], "stately circles for it was": [65535, 0], "circles for it was representing": [65535, 0], "for it was representing a": [65535, 0], "it was representing a forty": [65535, 0], "was representing a forty foot": [65535, 0], "representing a forty foot wheel": [65535, 0], "a forty foot wheel let": [65535, 0], "forty foot wheel let her": [65535, 0], "foot wheel let her go": [65535, 0], "wheel let her go back": [65535, 0], "let her go back on": [65535, 0], "her go back on the": [65535, 0], "go back on the labboard": [65535, 0], "back on the labboard ting": [65535, 0], "on the labboard ting a": [65535, 0], "the labboard ting a ling": [65535, 0], "labboard ting a ling ling": [65535, 0], "ling chow ch chow chow": [65535, 0], "chow ch chow chow the": [65535, 0], "ch chow chow the left": [65535, 0], "chow chow the left hand": [65535, 0], "chow the left hand began": [65535, 0], "the left hand began to": [65535, 0], "left hand began to describe": [65535, 0], "hand began to describe circles": [65535, 0], "began to describe circles stop": [65535, 0], "to describe circles stop the": [65535, 0], "describe circles stop the stabboard": [65535, 0], "circles stop the stabboard ting": [65535, 0], "stop the stabboard ting a": [65535, 0], "ting a ling ling stop": [65535, 0], "a ling ling stop the": [65535, 0], "ling ling stop the labboard": [65535, 0], "ling stop the labboard come": [65535, 0], "stop the labboard come ahead": [65535, 0], "the labboard come ahead on": [65535, 0], "labboard come ahead on the": [65535, 0], "come ahead on the stabboard": [65535, 0], "ahead on the stabboard stop": [65535, 0], "on the stabboard stop her": [65535, 0], "the stabboard stop her let": [65535, 0], "stabboard stop her let your": [65535, 0], "stop her let your outside": [65535, 0], "her let your outside turn": [65535, 0], "let your outside turn over": [65535, 0], "your outside turn over slow": [65535, 0], "outside turn over slow ting": [65535, 0], "turn over slow ting a": [65535, 0], "over slow ting a ling": [65535, 0], "slow ting a ling ling": [65535, 0], "a ling ling chow ow": [65535, 0], "ling ling chow ow ow": [65535, 0], "ling chow ow ow get": [65535, 0], "chow ow ow get out": [65535, 0], "ow ow get out that": [65535, 0], "ow get out that head": [65535, 0], "get out that head line": [65535, 0], "out that head line lively": [65535, 0], "that head line lively now": [65535, 0], "head line lively now come": [65535, 0], "line lively now come out": [65535, 0], "lively now come out with": [65535, 0], "now come out with your": [65535, 0], "come out with your spring": [65535, 0], "out with your spring line": [65535, 0], "with your spring line what're": [65535, 0], "your spring line what're you": [65535, 0], "spring line what're you about": [65535, 0], "line what're you about there": [65535, 0], "what're you about there take": [65535, 0], "you about there take a": [65535, 0], "about there take a turn": [65535, 0], "there take a turn round": [65535, 0], "take a turn round that": [65535, 0], "a turn round that stump": [65535, 0], "turn round that stump with": [65535, 0], "round that stump with the": [65535, 0], "that stump with the bight": [65535, 0], "stump with the bight of": [65535, 0], "with the bight of it": [65535, 0], "the bight of it stand": [65535, 0], "bight of it stand by": [65535, 0], "of it stand by that": [65535, 0], "it stand by that stage": [65535, 0], "stand by that stage now": [65535, 0], "by that stage now let": [65535, 0], "that stage now let her": [65535, 0], "stage now let her go": [65535, 0], "now let her go done": [65535, 0], "let her go done with": [65535, 0], "her go done with the": [65535, 0], "go done with the engines": [65535, 0], "done with the engines sir": [65535, 0], "with the engines sir ting": [65535, 0], "the engines sir ting a": [65535, 0], "engines sir ting a ling": [65535, 0], "ting a ling ling sh't": [65535, 0], "a ling ling sh't s'h't": [65535, 0], "ling ling sh't s'h't sh't": [65535, 0], "ling sh't s'h't sh't trying": [65535, 0], "sh't s'h't sh't trying the": [65535, 0], "s'h't sh't trying the gauge": [65535, 0], "sh't trying the gauge cocks": [65535, 0], "trying the gauge cocks tom": [65535, 0], "the gauge cocks tom went": [65535, 0], "gauge cocks tom went on": [65535, 0], "cocks tom went on whitewashing": [65535, 0], "tom went on whitewashing paid": [65535, 0], "went on whitewashing paid no": [65535, 0], "on whitewashing paid no attention": [65535, 0], "whitewashing paid no attention to": [65535, 0], "paid no attention to the": [65535, 0], "no attention to the steamboat": [65535, 0], "attention to the steamboat ben": [65535, 0], "to the steamboat ben stared": [65535, 0], "the steamboat ben stared a": [65535, 0], "steamboat ben stared a moment": [65535, 0], "ben stared a moment and": [65535, 0], "stared a moment and then": [65535, 0], "a moment and then said": [65535, 0], "moment and then said hi": [65535, 0], "and then said hi yi": [65535, 0], "then said hi yi you're": [65535, 0], "said hi yi you're up": [65535, 0], "hi yi you're up a": [65535, 0], "yi you're up a stump": [65535, 0], "you're up a stump ain't": [65535, 0], "up a stump ain't you": [65535, 0], "a stump ain't you no": [65535, 0], "stump ain't you no answer": [65535, 0], "ain't you no answer tom": [65535, 0], "you no answer tom surveyed": [65535, 0], "no answer tom surveyed his": [65535, 0], "answer tom surveyed his last": [65535, 0], "tom surveyed his last touch": [65535, 0], "surveyed his last touch with": [65535, 0], "his last touch with the": [65535, 0], "last touch with the eye": [65535, 0], "touch with the eye of": [65535, 0], "with the eye of an": [65535, 0], "the eye of an artist": [65535, 0], "eye of an artist then": [65535, 0], "of an artist then he": [65535, 0], "an artist then he gave": [65535, 0], "artist then he gave his": [65535, 0], "then he gave his brush": [65535, 0], "he gave his brush another": [65535, 0], "gave his brush another gentle": [65535, 0], "his brush another gentle sweep": [65535, 0], "brush another gentle sweep and": [65535, 0], "another gentle sweep and surveyed": [65535, 0], "gentle sweep and surveyed the": [65535, 0], "sweep and surveyed the result": [65535, 0], "and surveyed the result as": [65535, 0], "surveyed the result as before": [65535, 0], "the result as before ben": [65535, 0], "result as before ben ranged": [65535, 0], "as before ben ranged up": [65535, 0], "before ben ranged up alongside": [65535, 0], "ben ranged up alongside of": [65535, 0], "ranged up alongside of him": [65535, 0], "up alongside of him tom's": [65535, 0], "alongside of him tom's mouth": [65535, 0], "of him tom's mouth watered": [65535, 0], "him tom's mouth watered for": [65535, 0], "tom's mouth watered for the": [65535, 0], "mouth watered for the apple": [65535, 0], "watered for the apple but": [65535, 0], "for the apple but he": [65535, 0], "the apple but he stuck": [65535, 0], "apple but he stuck to": [65535, 0], "but he stuck to his": [65535, 0], "he stuck to his work": [65535, 0], "stuck to his work ben": [65535, 0], "to his work ben said": [65535, 0], "his work ben said hello": [65535, 0], "work ben said hello old": [65535, 0], "ben said hello old chap": [65535, 0], "said hello old chap you": [65535, 0], "hello old chap you got": [65535, 0], "old chap you got to": [65535, 0], "chap you got to work": [65535, 0], "you got to work hey": [65535, 0], "got to work hey tom": [65535, 0], "to work hey tom wheeled": [65535, 0], "work hey tom wheeled suddenly": [65535, 0], "hey tom wheeled suddenly and": [65535, 0], "tom wheeled suddenly and said": [65535, 0], "wheeled suddenly and said why": [65535, 0], "suddenly and said why it's": [65535, 0], "and said why it's you": [65535, 0], "said why it's you ben": [65535, 0], "why it's you ben i": [65535, 0], "it's you ben i warn't": [65535, 0], "you ben i warn't noticing": [65535, 0], "ben i warn't noticing say": [65535, 0], "i warn't noticing say i'm": [65535, 0], "warn't noticing say i'm going": [65535, 0], "noticing say i'm going in": [65535, 0], "say i'm going in a": [65535, 0], "i'm going in a swimming": [65535, 0], "going in a swimming i": [65535, 0], "in a swimming i am": [65535, 0], "a swimming i am don't": [65535, 0], "swimming i am don't you": [65535, 0], "i am don't you wish": [65535, 0], "am don't you wish you": [65535, 0], "don't you wish you could": [65535, 0], "you wish you could but": [65535, 0], "wish you could but of": [65535, 0], "you could but of course": [65535, 0], "could but of course you'd": [65535, 0], "but of course you'd druther": [65535, 0], "of course you'd druther work": [65535, 0], "course you'd druther work wouldn't": [65535, 0], "you'd druther work wouldn't you": [65535, 0], "druther work wouldn't you course": [65535, 0], "work wouldn't you course you": [65535, 0], "wouldn't you course you would": [65535, 0], "you course you would tom": [65535, 0], "course you would tom contemplated": [65535, 0], "you would tom contemplated the": [65535, 0], "would tom contemplated the boy": [65535, 0], "tom contemplated the boy a": [65535, 0], "contemplated the boy a bit": [65535, 0], "the boy a bit and": [65535, 0], "boy a bit and said": [65535, 0], "a bit and said what": [65535, 0], "bit and said what do": [65535, 0], "and said what do you": [65535, 0], "said what do you call": [65535, 0], "what do you call work": [65535, 0], "do you call work why": [65535, 0], "you call work why ain't": [65535, 0], "call work why ain't that": [65535, 0], "work why ain't that work": [65535, 0], "why ain't that work tom": [65535, 0], "ain't that work tom resumed": [65535, 0], "that work tom resumed his": [65535, 0], "work tom resumed his whitewashing": [65535, 0], "tom resumed his whitewashing and": [65535, 0], "resumed his whitewashing and answered": [65535, 0], "his whitewashing and answered carelessly": [65535, 0], "whitewashing and answered carelessly well": [65535, 0], "and answered carelessly well maybe": [65535, 0], "answered carelessly well maybe it": [65535, 0], "carelessly well maybe it is": [65535, 0], "well maybe it is and": [65535, 0], "maybe it is and maybe": [65535, 0], "it is and maybe it": [65535, 0], "is and maybe it ain't": [65535, 0], "and maybe it ain't all": [65535, 0], "maybe it ain't all i": [65535, 0], "it ain't all i know": [65535, 0], "ain't all i know is": [65535, 0], "all i know is it": [65535, 0], "i know is it suits": [65535, 0], "know is it suits tom": [65535, 0], "is it suits tom sawyer": [65535, 0], "it suits tom sawyer oh": [65535, 0], "suits tom sawyer oh come": [65535, 0], "tom sawyer oh come now": [65535, 0], "sawyer oh come now you": [65535, 0], "oh come now you don't": [65535, 0], "come now you don't mean": [65535, 0], "now you don't mean to": [65535, 0], "you don't mean to let": [65535, 0], "don't mean to let on": [65535, 0], "mean to let on that": [65535, 0], "to let on that you": [65535, 0], "let on that you like": [65535, 0], "on that you like it": [65535, 0], "that you like it the": [65535, 0], "you like it the brush": [65535, 0], "like it the brush continued": [65535, 0], "it the brush continued to": [65535, 0], "the brush continued to move": [65535, 0], "brush continued to move like": [65535, 0], "continued to move like it": [65535, 0], "to move like it well": [65535, 0], "move like it well i": [65535, 0], "like it well i don't": [65535, 0], "it well i don't see": [65535, 0], "well i don't see why": [65535, 0], "i don't see why i": [65535, 0], "don't see why i oughtn't": [65535, 0], "see why i oughtn't to": [65535, 0], "why i oughtn't to like": [65535, 0], "i oughtn't to like it": [65535, 0], "oughtn't to like it does": [65535, 0], "to like it does a": [65535, 0], "like it does a boy": [65535, 0], "it does a boy get": [65535, 0], "does a boy get a": [65535, 0], "a boy get a chance": [65535, 0], "boy get a chance to": [65535, 0], "get a chance to whitewash": [65535, 0], "a chance to whitewash a": [65535, 0], "chance to whitewash a fence": [65535, 0], "to whitewash a fence every": [65535, 0], "whitewash a fence every day": [65535, 0], "a fence every day that": [65535, 0], "fence every day that put": [65535, 0], "every day that put the": [65535, 0], "day that put the thing": [65535, 0], "that put the thing in": [65535, 0], "put the thing in a": [65535, 0], "the thing in a new": [65535, 0], "thing in a new light": [65535, 0], "in a new light ben": [65535, 0], "a new light ben stopped": [65535, 0], "new light ben stopped nibbling": [65535, 0], "light ben stopped nibbling his": [65535, 0], "ben stopped nibbling his apple": [65535, 0], "stopped nibbling his apple tom": [65535, 0], "nibbling his apple tom swept": [65535, 0], "his apple tom swept his": [65535, 0], "apple tom swept his brush": [65535, 0], "tom swept his brush daintily": [65535, 0], "swept his brush daintily back": [65535, 0], "his brush daintily back and": [65535, 0], "brush daintily back and forth": [65535, 0], "daintily back and forth stepped": [65535, 0], "back and forth stepped back": [65535, 0], "and forth stepped back to": [65535, 0], "forth stepped back to note": [65535, 0], "stepped back to note the": [65535, 0], "back to note the effect": [65535, 0], "to note the effect added": [65535, 0], "note the effect added a": [65535, 0], "the effect added a touch": [65535, 0], "effect added a touch here": [65535, 0], "added a touch here and": [65535, 0], "a touch here and there": [65535, 0], "touch here and there criticised": [65535, 0], "here and there criticised the": [65535, 0], "and there criticised the effect": [65535, 0], "there criticised the effect again": [65535, 0], "criticised the effect again ben": [65535, 0], "the effect again ben watching": [65535, 0], "effect again ben watching every": [65535, 0], "again ben watching every move": [65535, 0], "ben watching every move and": [65535, 0], "watching every move and getting": [65535, 0], "every move and getting more": [65535, 0], "move and getting more and": [65535, 0], "and getting more and more": [65535, 0], "getting more and more interested": [65535, 0], "more and more interested more": [65535, 0], "and more interested more and": [65535, 0], "more interested more and more": [65535, 0], "interested more and more absorbed": [65535, 0], "more and more absorbed presently": [65535, 0], "and more absorbed presently he": [65535, 0], "more absorbed presently he said": [65535, 0], "absorbed presently he said say": [65535, 0], "presently he said say tom": [65535, 0], "he said say tom let": [65535, 0], "said say tom let me": [65535, 0], "say tom let me whitewash": [65535, 0], "tom let me whitewash a": [65535, 0], "let me whitewash a little": [65535, 0], "me whitewash a little tom": [65535, 0], "whitewash a little tom considered": [65535, 0], "a little tom considered was": [65535, 0], "little tom considered was about": [65535, 0], "tom considered was about to": [65535, 0], "considered was about to consent": [65535, 0], "was about to consent but": [65535, 0], "about to consent but he": [65535, 0], "to consent but he altered": [65535, 0], "consent but he altered his": [65535, 0], "but he altered his mind": [65535, 0], "he altered his mind no": [65535, 0], "altered his mind no no": [65535, 0], "his mind no no i": [65535, 0], "mind no no i reckon": [65535, 0], "no no i reckon it": [65535, 0], "no i reckon it wouldn't": [65535, 0], "i reckon it wouldn't hardly": [65535, 0], "reckon it wouldn't hardly do": [65535, 0], "it wouldn't hardly do ben": [65535, 0], "wouldn't hardly do ben you": [65535, 0], "hardly do ben you see": [65535, 0], "do ben you see aunt": [65535, 0], "ben you see aunt polly's": [65535, 0], "you see aunt polly's awful": [65535, 0], "see aunt polly's awful particular": [65535, 0], "aunt polly's awful particular about": [65535, 0], "polly's awful particular about this": [65535, 0], "awful particular about this fence": [65535, 0], "particular about this fence right": [65535, 0], "about this fence right here": [65535, 0], "this fence right here on": [65535, 0], "fence right here on the": [65535, 0], "right here on the street": [65535, 0], "here on the street you": [65535, 0], "on the street you know": [65535, 0], "the street you know but": [65535, 0], "street you know but if": [65535, 0], "you know but if it": [65535, 0], "know but if it was": [65535, 0], "but if it was the": [65535, 0], "if it was the back": [65535, 0], "it was the back fence": [65535, 0], "was the back fence i": [65535, 0], "the back fence i wouldn't": [65535, 0], "back fence i wouldn't mind": [65535, 0], "fence i wouldn't mind and": [65535, 0], "i wouldn't mind and she": [65535, 0], "wouldn't mind and she wouldn't": [65535, 0], "mind and she wouldn't yes": [65535, 0], "and she wouldn't yes she's": [65535, 0], "she wouldn't yes she's awful": [65535, 0], "wouldn't yes she's awful particular": [65535, 0], "yes she's awful particular about": [65535, 0], "she's awful particular about this": [65535, 0], "particular about this fence it's": [65535, 0], "about this fence it's got": [65535, 0], "this fence it's got to": [65535, 0], "fence it's got to be": [65535, 0], "it's got to be done": [65535, 0], "got to be done very": [65535, 0], "to be done very careful": [65535, 0], "be done very careful i": [65535, 0], "done very careful i reckon": [65535, 0], "very careful i reckon there": [65535, 0], "careful i reckon there ain't": [65535, 0], "i reckon there ain't one": [65535, 0], "reckon there ain't one boy": [65535, 0], "there ain't one boy in": [65535, 0], "ain't one boy in a": [65535, 0], "one boy in a thousand": [65535, 0], "boy in a thousand maybe": [65535, 0], "in a thousand maybe two": [65535, 0], "a thousand maybe two thousand": [65535, 0], "thousand maybe two thousand that": [65535, 0], "maybe two thousand that can": [65535, 0], "two thousand that can do": [65535, 0], "thousand that can do it": [65535, 0], "that can do it the": [65535, 0], "can do it the way": [65535, 0], "do it the way it's": [65535, 0], "it the way it's got": [65535, 0], "the way it's got to": [65535, 0], "way it's got to be": [65535, 0], "got to be done no": [65535, 0], "to be done no is": [65535, 0], "be done no is that": [65535, 0], "done no is that so": [65535, 0], "no is that so oh": [65535, 0], "is that so oh come": [65535, 0], "that so oh come now": [65535, 0], "so oh come now lemme": [65535, 0], "oh come now lemme just": [65535, 0], "come now lemme just try": [65535, 0], "now lemme just try only": [65535, 0], "lemme just try only just": [65535, 0], "just try only just a": [65535, 0], "try only just a little": [65535, 0], "only just a little i'd": [65535, 0], "just a little i'd let": [65535, 0], "a little i'd let you": [65535, 0], "little i'd let you if": [65535, 0], "i'd let you if you": [65535, 0], "let you if you was": [65535, 0], "you if you was me": [65535, 0], "if you was me tom": [65535, 0], "you was me tom ben": [65535, 0], "was me tom ben i'd": [65535, 0], "me tom ben i'd like": [65535, 0], "tom ben i'd like to": [65535, 0], "ben i'd like to honest": [65535, 0], "i'd like to honest injun": [65535, 0], "like to honest injun but": [65535, 0], "to honest injun but aunt": [65535, 0], "honest injun but aunt polly": [65535, 0], "injun but aunt polly well": [65535, 0], "but aunt polly well jim": [65535, 0], "aunt polly well jim wanted": [65535, 0], "polly well jim wanted to": [65535, 0], "well jim wanted to do": [65535, 0], "jim wanted to do it": [65535, 0], "wanted to do it but": [65535, 0], "to do it but she": [65535, 0], "do it but she wouldn't": [65535, 0], "it but she wouldn't let": [65535, 0], "but she wouldn't let him": [65535, 0], "she wouldn't let him sid": [65535, 0], "wouldn't let him sid wanted": [65535, 0], "let him sid wanted to": [65535, 0], "him sid wanted to do": [65535, 0], "sid wanted to do it": [65535, 0], "wanted to do it and": [65535, 0], "to do it and she": [65535, 0], "do it and she wouldn't": [65535, 0], "it and she wouldn't let": [65535, 0], "and she wouldn't let sid": [65535, 0], "she wouldn't let sid now": [65535, 0], "wouldn't let sid now don't": [65535, 0], "let sid now don't you": [65535, 0], "sid now don't you see": [65535, 0], "now don't you see how": [65535, 0], "don't you see how i'm": [65535, 0], "you see how i'm fixed": [65535, 0], "see how i'm fixed if": [65535, 0], "how i'm fixed if you": [65535, 0], "i'm fixed if you was": [65535, 0], "fixed if you was to": [65535, 0], "if you was to tackle": [65535, 0], "you was to tackle this": [65535, 0], "was to tackle this fence": [65535, 0], "to tackle this fence and": [65535, 0], "tackle this fence and anything": [65535, 0], "this fence and anything was": [65535, 0], "fence and anything was to": [65535, 0], "and anything was to happen": [65535, 0], "anything was to happen to": [65535, 0], "was to happen to it": [65535, 0], "to happen to it oh": [65535, 0], "happen to it oh shucks": [65535, 0], "to it oh shucks i'll": [65535, 0], "it oh shucks i'll be": [65535, 0], "oh shucks i'll be just": [65535, 0], "shucks i'll be just as": [65535, 0], "i'll be just as careful": [65535, 0], "be just as careful now": [65535, 0], "just as careful now lemme": [65535, 0], "as careful now lemme try": [65535, 0], "careful now lemme try say": [65535, 0], "now lemme try say i'll": [65535, 0], "lemme try say i'll give": [65535, 0], "try say i'll give you": [65535, 0], "say i'll give you the": [65535, 0], "i'll give you the core": [65535, 0], "give you the core of": [65535, 0], "you the core of my": [65535, 0], "the core of my apple": [65535, 0], "core of my apple well": [65535, 0], "of my apple well here": [65535, 0], "my apple well here no": [65535, 0], "apple well here no ben": [65535, 0], "well here no ben now": [65535, 0], "here no ben now don't": [65535, 0], "no ben now don't i'm": [65535, 0], "ben now don't i'm afeard": [65535, 0], "now don't i'm afeard i'll": [65535, 0], "don't i'm afeard i'll give": [65535, 0], "i'm afeard i'll give you": [65535, 0], "afeard i'll give you all": [65535, 0], "i'll give you all of": [65535, 0], "give you all of it": [65535, 0], "you all of it tom": [65535, 0], "all of it tom gave": [65535, 0], "of it tom gave up": [65535, 0], "it tom gave up the": [65535, 0], "tom gave up the brush": [65535, 0], "gave up the brush with": [65535, 0], "up the brush with reluctance": [65535, 0], "the brush with reluctance in": [65535, 0], "brush with reluctance in his": [65535, 0], "with reluctance in his face": [65535, 0], "reluctance in his face but": [65535, 0], "in his face but alacrity": [65535, 0], "his face but alacrity in": [65535, 0], "face but alacrity in his": [65535, 0], "but alacrity in his heart": [65535, 0], "alacrity in his heart and": [65535, 0], "in his heart and while": [65535, 0], "his heart and while the": [65535, 0], "heart and while the late": [65535, 0], "and while the late steamer": [65535, 0], "while the late steamer big": [65535, 0], "the late steamer big missouri": [65535, 0], "late steamer big missouri worked": [65535, 0], "steamer big missouri worked and": [65535, 0], "big missouri worked and sweated": [65535, 0], "missouri worked and sweated in": [65535, 0], "worked and sweated in the": [65535, 0], "and sweated in the sun": [65535, 0], "sweated in the sun the": [65535, 0], "in the sun the retired": [65535, 0], "the sun the retired artist": [65535, 0], "sun the retired artist sat": [65535, 0], "the retired artist sat on": [65535, 0], "retired artist sat on a": [65535, 0], "artist sat on a barrel": [65535, 0], "sat on a barrel in": [65535, 0], "on a barrel in the": [65535, 0], "a barrel in the shade": [65535, 0], "barrel in the shade close": [65535, 0], "in the shade close by": [65535, 0], "the shade close by dangled": [65535, 0], "shade close by dangled his": [65535, 0], "close by dangled his legs": [65535, 0], "by dangled his legs munched": [65535, 0], "dangled his legs munched his": [65535, 0], "his legs munched his apple": [65535, 0], "legs munched his apple and": [65535, 0], "munched his apple and planned": [65535, 0], "his apple and planned the": [65535, 0], "apple and planned the slaughter": [65535, 0], "and planned the slaughter of": [65535, 0], "planned the slaughter of more": [65535, 0], "the slaughter of more innocents": [65535, 0], "slaughter of more innocents there": [65535, 0], "of more innocents there was": [65535, 0], "more innocents there was no": [65535, 0], "innocents there was no lack": [65535, 0], "there was no lack of": [65535, 0], "was no lack of material": [65535, 0], "no lack of material boys": [65535, 0], "lack of material boys happened": [65535, 0], "of material boys happened along": [65535, 0], "material boys happened along every": [65535, 0], "boys happened along every little": [65535, 0], "happened along every little while": [65535, 0], "along every little while they": [65535, 0], "every little while they came": [65535, 0], "little while they came to": [65535, 0], "while they came to jeer": [65535, 0], "they came to jeer but": [65535, 0], "came to jeer but remained": [65535, 0], "to jeer but remained to": [65535, 0], "jeer but remained to whitewash": [65535, 0], "but remained to whitewash by": [65535, 0], "remained to whitewash by the": [65535, 0], "to whitewash by the time": [65535, 0], "whitewash by the time ben": [65535, 0], "by the time ben was": [65535, 0], "the time ben was fagged": [65535, 0], "time ben was fagged out": [65535, 0], "ben was fagged out tom": [65535, 0], "was fagged out tom had": [65535, 0], "fagged out tom had traded": [65535, 0], "out tom had traded the": [65535, 0], "tom had traded the next": [65535, 0], "had traded the next chance": [65535, 0], "traded the next chance to": [65535, 0], "the next chance to billy": [65535, 0], "next chance to billy fisher": [65535, 0], "chance to billy fisher for": [65535, 0], "to billy fisher for a": [65535, 0], "billy fisher for a kite": [65535, 0], "fisher for a kite in": [65535, 0], "for a kite in good": [65535, 0], "a kite in good repair": [65535, 0], "kite in good repair and": [65535, 0], "in good repair and when": [65535, 0], "good repair and when he": [65535, 0], "repair and when he played": [65535, 0], "and when he played out": [65535, 0], "when he played out johnny": [65535, 0], "he played out johnny miller": [65535, 0], "played out johnny miller bought": [65535, 0], "out johnny miller bought in": [65535, 0], "johnny miller bought in for": [65535, 0], "miller bought in for a": [65535, 0], "bought in for a dead": [65535, 0], "in for a dead rat": [65535, 0], "for a dead rat and": [65535, 0], "a dead rat and a": [65535, 0], "dead rat and a string": [65535, 0], "rat and a string to": [65535, 0], "and a string to swing": [65535, 0], "a string to swing it": [65535, 0], "string to swing it with": [65535, 0], "to swing it with and": [65535, 0], "swing it with and so": [65535, 0], "it with and so on": [65535, 0], "with and so on and": [65535, 0], "and so on and so": [65535, 0], "so on and so on": [65535, 0], "on and so on hour": [65535, 0], "and so on hour after": [65535, 0], "so on hour after hour": [65535, 0], "on hour after hour and": [65535, 0], "hour after hour and when": [65535, 0], "after hour and when the": [65535, 0], "hour and when the middle": [65535, 0], "and when the middle of": [65535, 0], "when the middle of the": [65535, 0], "the middle of the afternoon": [65535, 0], "middle of the afternoon came": [65535, 0], "of the afternoon came from": [65535, 0], "the afternoon came from being": [65535, 0], "afternoon came from being a": [65535, 0], "came from being a poor": [65535, 0], "from being a poor poverty": [65535, 0], "being a poor poverty stricken": [65535, 0], "a poor poverty stricken boy": [65535, 0], "poor poverty stricken boy in": [65535, 0], "poverty stricken boy in the": [65535, 0], "stricken boy in the morning": [65535, 0], "boy in the morning tom": [65535, 0], "in the morning tom was": [65535, 0], "the morning tom was literally": [65535, 0], "morning tom was literally rolling": [65535, 0], "tom was literally rolling in": [65535, 0], "was literally rolling in wealth": [65535, 0], "literally rolling in wealth he": [65535, 0], "rolling in wealth he had": [65535, 0], "in wealth he had besides": [65535, 0], "wealth he had besides the": [65535, 0], "he had besides the things": [65535, 0], "had besides the things before": [65535, 0], "besides the things before mentioned": [65535, 0], "the things before mentioned twelve": [65535, 0], "things before mentioned twelve marbles": [65535, 0], "before mentioned twelve marbles part": [65535, 0], "mentioned twelve marbles part of": [65535, 0], "twelve marbles part of a": [65535, 0], "marbles part of a jews": [65535, 0], "part of a jews harp": [65535, 0], "of a jews harp a": [65535, 0], "a jews harp a piece": [65535, 0], "jews harp a piece of": [65535, 0], "harp a piece of blue": [65535, 0], "a piece of blue bottle": [65535, 0], "piece of blue bottle glass": [65535, 0], "of blue bottle glass to": [65535, 0], "blue bottle glass to look": [65535, 0], "bottle glass to look through": [65535, 0], "glass to look through a": [65535, 0], "to look through a spool": [65535, 0], "look through a spool cannon": [65535, 0], "through a spool cannon a": [65535, 0], "a spool cannon a key": [65535, 0], "spool cannon a key that": [65535, 0], "cannon a key that wouldn't": [65535, 0], "a key that wouldn't unlock": [65535, 0], "key that wouldn't unlock anything": [65535, 0], "that wouldn't unlock anything a": [65535, 0], "wouldn't unlock anything a fragment": [65535, 0], "unlock anything a fragment of": [65535, 0], "anything a fragment of chalk": [65535, 0], "a fragment of chalk a": [65535, 0], "fragment of chalk a glass": [65535, 0], "of chalk a glass stopper": [65535, 0], "chalk a glass stopper of": [65535, 0], "a glass stopper of a": [65535, 0], "glass stopper of a decanter": [65535, 0], "stopper of a decanter a": [65535, 0], "of a decanter a tin": [65535, 0], "a decanter a tin soldier": [65535, 0], "decanter a tin soldier a": [65535, 0], "a tin soldier a couple": [65535, 0], "tin soldier a couple of": [65535, 0], "soldier a couple of tadpoles": [65535, 0], "a couple of tadpoles six": [65535, 0], "couple of tadpoles six fire": [65535, 0], "of tadpoles six fire crackers": [65535, 0], "tadpoles six fire crackers a": [65535, 0], "six fire crackers a kitten": [65535, 0], "fire crackers a kitten with": [65535, 0], "crackers a kitten with only": [65535, 0], "a kitten with only one": [65535, 0], "kitten with only one eye": [65535, 0], "with only one eye a": [65535, 0], "only one eye a brass": [65535, 0], "one eye a brass doorknob": [65535, 0], "eye a brass doorknob a": [65535, 0], "a brass doorknob a dog": [65535, 0], "brass doorknob a dog collar": [65535, 0], "doorknob a dog collar but": [65535, 0], "a dog collar but no": [65535, 0], "dog collar but no dog": [65535, 0], "collar but no dog the": [65535, 0], "but no dog the handle": [65535, 0], "no dog the handle of": [65535, 0], "dog the handle of a": [65535, 0], "the handle of a knife": [65535, 0], "handle of a knife four": [65535, 0], "of a knife four pieces": [65535, 0], "a knife four pieces of": [65535, 0], "knife four pieces of orange": [65535, 0], "four pieces of orange peel": [65535, 0], "pieces of orange peel and": [65535, 0], "of orange peel and a": [65535, 0], "orange peel and a dilapidated": [65535, 0], "peel and a dilapidated old": [65535, 0], "and a dilapidated old window": [65535, 0], "a dilapidated old window sash": [65535, 0], "dilapidated old window sash he": [65535, 0], "old window sash he had": [65535, 0], "window sash he had had": [65535, 0], "sash he had had a": [65535, 0], "he had had a nice": [65535, 0], "had had a nice good": [65535, 0], "had a nice good idle": [65535, 0], "a nice good idle time": [65535, 0], "nice good idle time all": [65535, 0], "good idle time all the": [65535, 0], "idle time all the while": [65535, 0], "time all the while plenty": [65535, 0], "all the while plenty of": [65535, 0], "the while plenty of company": [65535, 0], "while plenty of company and": [65535, 0], "plenty of company and the": [65535, 0], "of company and the fence": [65535, 0], "company and the fence had": [65535, 0], "and the fence had three": [65535, 0], "the fence had three coats": [65535, 0], "fence had three coats of": [65535, 0], "had three coats of whitewash": [65535, 0], "three coats of whitewash on": [65535, 0], "coats of whitewash on it": [65535, 0], "of whitewash on it if": [65535, 0], "whitewash on it if he": [65535, 0], "on it if he hadn't": [65535, 0], "it if he hadn't run": [65535, 0], "if he hadn't run out": [65535, 0], "he hadn't run out of": [65535, 0], "hadn't run out of whitewash": [65535, 0], "run out of whitewash he": [65535, 0], "out of whitewash he would": [65535, 0], "of whitewash he would have": [65535, 0], "whitewash he would have bankrupted": [65535, 0], "he would have bankrupted every": [65535, 0], "would have bankrupted every boy": [65535, 0], "have bankrupted every boy in": [65535, 0], "bankrupted every boy in the": [65535, 0], "every boy in the village": [65535, 0], "boy in the village tom": [65535, 0], "in the village tom said": [65535, 0], "the village tom said to": [65535, 0], "village tom said to himself": [65535, 0], "tom said to himself that": [65535, 0], "said to himself that it": [65535, 0], "to himself that it was": [65535, 0], "himself that it was not": [65535, 0], "that it was not such": [65535, 0], "it was not such a": [65535, 0], "was not such a hollow": [65535, 0], "not such a hollow world": [65535, 0], "such a hollow world after": [65535, 0], "a hollow world after all": [65535, 0], "hollow world after all he": [65535, 0], "world after all he had": [65535, 0], "after all he had discovered": [65535, 0], "all he had discovered a": [65535, 0], "he had discovered a great": [65535, 0], "had discovered a great law": [65535, 0], "discovered a great law of": [65535, 0], "a great law of human": [65535, 0], "great law of human action": [65535, 0], "law of human action without": [65535, 0], "of human action without knowing": [65535, 0], "human action without knowing it": [65535, 0], "action without knowing it namely": [65535, 0], "without knowing it namely that": [65535, 0], "knowing it namely that in": [65535, 0], "it namely that in order": [65535, 0], "namely that in order to": [65535, 0], "that in order to make": [65535, 0], "in order to make a": [65535, 0], "order to make a man": [65535, 0], "to make a man or": [65535, 0], "make a man or a": [65535, 0], "a man or a boy": [65535, 0], "man or a boy covet": [65535, 0], "or a boy covet a": [65535, 0], "a boy covet a thing": [65535, 0], "boy covet a thing it": [65535, 0], "covet a thing it is": [65535, 0], "a thing it is only": [65535, 0], "thing it is only necessary": [65535, 0], "it is only necessary to": [65535, 0], "is only necessary to make": [65535, 0], "only necessary to make the": [65535, 0], "necessary to make the thing": [65535, 0], "to make the thing difficult": [65535, 0], "make the thing difficult to": [65535, 0], "the thing difficult to attain": [65535, 0], "thing difficult to attain if": [65535, 0], "difficult to attain if he": [65535, 0], "to attain if he had": [65535, 0], "attain if he had been": [65535, 0], "if he had been a": [65535, 0], "he had been a great": [65535, 0], "had been a great and": [65535, 0], "been a great and wise": [65535, 0], "a great and wise philosopher": [65535, 0], "great and wise philosopher like": [65535, 0], "and wise philosopher like the": [65535, 0], "wise philosopher like the writer": [65535, 0], "philosopher like the writer of": [65535, 0], "like the writer of this": [65535, 0], "the writer of this book": [65535, 0], "writer of this book he": [65535, 0], "of this book he would": [65535, 0], "this book he would now": [65535, 0], "book he would now have": [65535, 0], "he would now have comprehended": [65535, 0], "would now have comprehended that": [65535, 0], "now have comprehended that work": [65535, 0], "have comprehended that work consists": [65535, 0], "comprehended that work consists of": [65535, 0], "that work consists of whatever": [65535, 0], "work consists of whatever a": [65535, 0], "consists of whatever a body": [65535, 0], "of whatever a body is": [65535, 0], "whatever a body is obliged": [65535, 0], "a body is obliged to": [65535, 0], "body is obliged to do": [65535, 0], "is obliged to do and": [65535, 0], "obliged to do and that": [65535, 0], "to do and that play": [65535, 0], "do and that play consists": [65535, 0], "and that play consists of": [65535, 0], "that play consists of whatever": [65535, 0], "play consists of whatever a": [65535, 0], "whatever a body is not": [65535, 0], "a body is not obliged": [65535, 0], "body is not obliged to": [65535, 0], "is not obliged to do": [65535, 0], "not obliged to do and": [65535, 0], "obliged to do and this": [65535, 0], "to do and this would": [65535, 0], "do and this would help": [65535, 0], "and this would help him": [65535, 0], "this would help him to": [65535, 0], "would help him to understand": [65535, 0], "help him to understand why": [65535, 0], "him to understand why constructing": [65535, 0], "to understand why constructing artificial": [65535, 0], "understand why constructing artificial flowers": [65535, 0], "why constructing artificial flowers or": [65535, 0], "constructing artificial flowers or performing": [65535, 0], "artificial flowers or performing on": [65535, 0], "flowers or performing on a": [65535, 0], "or performing on a tread": [65535, 0], "performing on a tread mill": [65535, 0], "on a tread mill is": [65535, 0], "a tread mill is work": [65535, 0], "tread mill is work while": [65535, 0], "mill is work while rolling": [65535, 0], "is work while rolling ten": [65535, 0], "work while rolling ten pins": [65535, 0], "while rolling ten pins or": [65535, 0], "rolling ten pins or climbing": [65535, 0], "ten pins or climbing mont": [65535, 0], "pins or climbing mont blanc": [65535, 0], "or climbing mont blanc is": [65535, 0], "climbing mont blanc is only": [65535, 0], "mont blanc is only amusement": [65535, 0], "blanc is only amusement there": [65535, 0], "is only amusement there are": [65535, 0], "only amusement there are wealthy": [65535, 0], "amusement there are wealthy gentlemen": [65535, 0], "there are wealthy gentlemen in": [65535, 0], "are wealthy gentlemen in england": [65535, 0], "wealthy gentlemen in england who": [65535, 0], "gentlemen in england who drive": [65535, 0], "in england who drive four": [65535, 0], "england who drive four horse": [65535, 0], "who drive four horse passenger": [65535, 0], "drive four horse passenger coaches": [65535, 0], "four horse passenger coaches twenty": [65535, 0], "horse passenger coaches twenty or": [65535, 0], "passenger coaches twenty or thirty": [65535, 0], "coaches twenty or thirty miles": [65535, 0], "twenty or thirty miles on": [65535, 0], "or thirty miles on a": [65535, 0], "thirty miles on a daily": [65535, 0], "miles on a daily line": [65535, 0], "on a daily line in": [65535, 0], "a daily line in the": [65535, 0], "daily line in the summer": [65535, 0], "line in the summer because": [65535, 0], "in the summer because the": [65535, 0], "the summer because the privilege": [65535, 0], "summer because the privilege costs": [65535, 0], "because the privilege costs them": [65535, 0], "the privilege costs them considerable": [65535, 0], "privilege costs them considerable money": [65535, 0], "costs them considerable money but": [65535, 0], "them considerable money but if": [65535, 0], "considerable money but if they": [65535, 0], "money but if they were": [65535, 0], "but if they were offered": [65535, 0], "if they were offered wages": [65535, 0], "they were offered wages for": [65535, 0], "were offered wages for the": [65535, 0], "offered wages for the service": [65535, 0], "wages for the service that": [65535, 0], "for the service that would": [65535, 0], "the service that would turn": [65535, 0], "service that would turn it": [65535, 0], "that would turn it into": [65535, 0], "would turn it into work": [65535, 0], "turn it into work and": [65535, 0], "it into work and then": [65535, 0], "into work and then they": [65535, 0], "work and then they would": [65535, 0], "and then they would resign": [65535, 0], "then they would resign the": [65535, 0], "they would resign the boy": [65535, 0], "would resign the boy mused": [65535, 0], "resign the boy mused awhile": [65535, 0], "the boy mused awhile over": [65535, 0], "boy mused awhile over the": [65535, 0], "mused awhile over the substantial": [65535, 0], "awhile over the substantial change": [65535, 0], "over the substantial change which": [65535, 0], "the substantial change which had": [65535, 0], "substantial change which had taken": [65535, 0], "change which had taken place": [65535, 0], "which had taken place in": [65535, 0], "had taken place in his": [65535, 0], "taken place in his worldly": [65535, 0], "place in his worldly circumstances": [65535, 0], "in his worldly circumstances and": [65535, 0], "his worldly circumstances and then": [65535, 0], "worldly circumstances and then wended": [65535, 0], "circumstances and then wended toward": [65535, 0], "and then wended toward headquarters": [65535, 0], "then wended toward headquarters to": [65535, 0], "wended toward headquarters to report": [65535, 0], "saturday morning was come and all": [65535, 0], "morning was come and all the": [65535, 0], "was come and all the summer": [65535, 0], "come and all the summer world": [65535, 0], "and all the summer world was": [65535, 0], "all the summer world was bright": [65535, 0], "the summer world was bright and": [65535, 0], "summer world was bright and fresh": [65535, 0], "world was bright and fresh and": [65535, 0], "was bright and fresh and brimming": [65535, 0], "bright and fresh and brimming with": [65535, 0], "and fresh and brimming with life": [65535, 0], "fresh and brimming with life there": [65535, 0], "and brimming with life there was": [65535, 0], "brimming with life there was a": [65535, 0], "with life there was a song": [65535, 0], "life there was a song in": [65535, 0], "there was a song in every": [65535, 0], "was a song in every heart": [65535, 0], "a song in every heart and": [65535, 0], "song in every heart and if": [65535, 0], "in every heart and if the": [65535, 0], "every heart and if the heart": [65535, 0], "heart and if the heart was": [65535, 0], "and if the heart was young": [65535, 0], "if the heart was young the": [65535, 0], "the heart was young the music": [65535, 0], "heart was young the music issued": [65535, 0], "was young the music issued at": [65535, 0], "young the music issued at the": [65535, 0], "the music issued at the lips": [65535, 0], "music issued at the lips there": [65535, 0], "issued at the lips there was": [65535, 0], "at the lips there was cheer": [65535, 0], "the lips there was cheer in": [65535, 0], "lips there was cheer in every": [65535, 0], "there was cheer in every face": [65535, 0], "was cheer in every face and": [65535, 0], "cheer in every face and a": [65535, 0], "in every face and a spring": [65535, 0], "every face and a spring in": [65535, 0], "face and a spring in every": [65535, 0], "and a spring in every step": [65535, 0], "a spring in every step the": [65535, 0], "spring in every step the locust": [65535, 0], "in every step the locust trees": [65535, 0], "every step the locust trees were": [65535, 0], "step the locust trees were in": [65535, 0], "the locust trees were in bloom": [65535, 0], "locust trees were in bloom and": [65535, 0], "trees were in bloom and the": [65535, 0], "were in bloom and the fragrance": [65535, 0], "in bloom and the fragrance of": [65535, 0], "bloom and the fragrance of the": [65535, 0], "and the fragrance of the blossoms": [65535, 0], "the fragrance of the blossoms filled": [65535, 0], "fragrance of the blossoms filled the": [65535, 0], "of the blossoms filled the air": [65535, 0], "the blossoms filled the air cardiff": [65535, 0], "blossoms filled the air cardiff hill": [65535, 0], "filled the air cardiff hill beyond": [65535, 0], "the air cardiff hill beyond the": [65535, 0], "air cardiff hill beyond the village": [65535, 0], "cardiff hill beyond the village and": [65535, 0], "hill beyond the village and above": [65535, 0], "beyond the village and above it": [65535, 0], "the village and above it was": [65535, 0], "village and above it was green": [65535, 0], "and above it was green with": [65535, 0], "above it was green with vegetation": [65535, 0], "it was green with vegetation and": [65535, 0], "was green with vegetation and it": [65535, 0], "green with vegetation and it lay": [65535, 0], "with vegetation and it lay just": [65535, 0], "vegetation and it lay just far": [65535, 0], "and it lay just far enough": [65535, 0], "it lay just far enough away": [65535, 0], "lay just far enough away to": [65535, 0], "just far enough away to seem": [65535, 0], "far enough away to seem a": [65535, 0], "enough away to seem a delectable": [65535, 0], "away to seem a delectable land": [65535, 0], "to seem a delectable land dreamy": [65535, 0], "seem a delectable land dreamy reposeful": [65535, 0], "a delectable land dreamy reposeful and": [65535, 0], "delectable land dreamy reposeful and inviting": [65535, 0], "land dreamy reposeful and inviting tom": [65535, 0], "dreamy reposeful and inviting tom appeared": [65535, 0], "reposeful and inviting tom appeared on": [65535, 0], "and inviting tom appeared on the": [65535, 0], "inviting tom appeared on the sidewalk": [65535, 0], "tom appeared on the sidewalk with": [65535, 0], "appeared on the sidewalk with a": [65535, 0], "on the sidewalk with a bucket": [65535, 0], "the sidewalk with a bucket of": [65535, 0], "sidewalk with a bucket of whitewash": [65535, 0], "with a bucket of whitewash and": [65535, 0], "a bucket of whitewash and a": [65535, 0], "bucket of whitewash and a long": [65535, 0], "of whitewash and a long handled": [65535, 0], "whitewash and a long handled brush": [65535, 0], "and a long handled brush he": [65535, 0], "a long handled brush he surveyed": [65535, 0], "long handled brush he surveyed the": [65535, 0], "handled brush he surveyed the fence": [65535, 0], "brush he surveyed the fence and": [65535, 0], "he surveyed the fence and all": [65535, 0], "surveyed the fence and all gladness": [65535, 0], "the fence and all gladness left": [65535, 0], "fence and all gladness left him": [65535, 0], "and all gladness left him and": [65535, 0], "all gladness left him and a": [65535, 0], "gladness left him and a deep": [65535, 0], "left him and a deep melancholy": [65535, 0], "him and a deep melancholy settled": [65535, 0], "and a deep melancholy settled down": [65535, 0], "a deep melancholy settled down upon": [65535, 0], "deep melancholy settled down upon his": [65535, 0], "melancholy settled down upon his spirit": [65535, 0], "settled down upon his spirit thirty": [65535, 0], "down upon his spirit thirty yards": [65535, 0], "upon his spirit thirty yards of": [65535, 0], "his spirit thirty yards of board": [65535, 0], "spirit thirty yards of board fence": [65535, 0], "thirty yards of board fence nine": [65535, 0], "yards of board fence nine feet": [65535, 0], "of board fence nine feet high": [65535, 0], "board fence nine feet high life": [65535, 0], "fence nine feet high life to": [65535, 0], "nine feet high life to him": [65535, 0], "feet high life to him seemed": [65535, 0], "high life to him seemed hollow": [65535, 0], "life to him seemed hollow and": [65535, 0], "to him seemed hollow and existence": [65535, 0], "him seemed hollow and existence but": [65535, 0], "seemed hollow and existence but a": [65535, 0], "hollow and existence but a burden": [65535, 0], "and existence but a burden sighing": [65535, 0], "existence but a burden sighing he": [65535, 0], "but a burden sighing he dipped": [65535, 0], "a burden sighing he dipped his": [65535, 0], "burden sighing he dipped his brush": [65535, 0], "sighing he dipped his brush and": [65535, 0], "he dipped his brush and passed": [65535, 0], "dipped his brush and passed it": [65535, 0], "his brush and passed it along": [65535, 0], "brush and passed it along the": [65535, 0], "and passed it along the topmost": [65535, 0], "passed it along the topmost plank": [65535, 0], "it along the topmost plank repeated": [65535, 0], "along the topmost plank repeated the": [65535, 0], "the topmost plank repeated the operation": [65535, 0], "topmost plank repeated the operation did": [65535, 0], "plank repeated the operation did it": [65535, 0], "repeated the operation did it again": [65535, 0], "the operation did it again compared": [65535, 0], "operation did it again compared the": [65535, 0], "did it again compared the insignificant": [65535, 0], "it again compared the insignificant whitewashed": [65535, 0], "again compared the insignificant whitewashed streak": [65535, 0], "compared the insignificant whitewashed streak with": [65535, 0], "the insignificant whitewashed streak with the": [65535, 0], "insignificant whitewashed streak with the far": [65535, 0], "whitewashed streak with the far reaching": [65535, 0], "streak with the far reaching continent": [65535, 0], "with the far reaching continent of": [65535, 0], "the far reaching continent of unwhitewashed": [65535, 0], "far reaching continent of unwhitewashed fence": [65535, 0], "reaching continent of unwhitewashed fence and": [65535, 0], "continent of unwhitewashed fence and sat": [65535, 0], "of unwhitewashed fence and sat down": [65535, 0], "unwhitewashed fence and sat down on": [65535, 0], "fence and sat down on a": [65535, 0], "and sat down on a tree": [65535, 0], "sat down on a tree box": [65535, 0], "down on a tree box discouraged": [65535, 0], "on a tree box discouraged jim": [65535, 0], "a tree box discouraged jim came": [65535, 0], "tree box discouraged jim came skipping": [65535, 0], "box discouraged jim came skipping out": [65535, 0], "discouraged jim came skipping out at": [65535, 0], "jim came skipping out at the": [65535, 0], "came skipping out at the gate": [65535, 0], "skipping out at the gate with": [65535, 0], "out at the gate with a": [65535, 0], "at the gate with a tin": [65535, 0], "the gate with a tin pail": [65535, 0], "gate with a tin pail and": [65535, 0], "with a tin pail and singing": [65535, 0], "a tin pail and singing buffalo": [65535, 0], "tin pail and singing buffalo gals": [65535, 0], "pail and singing buffalo gals bringing": [65535, 0], "and singing buffalo gals bringing water": [65535, 0], "singing buffalo gals bringing water from": [65535, 0], "buffalo gals bringing water from the": [65535, 0], "gals bringing water from the town": [65535, 0], "bringing water from the town pump": [65535, 0], "water from the town pump had": [65535, 0], "from the town pump had always": [65535, 0], "the town pump had always been": [65535, 0], "town pump had always been hateful": [65535, 0], "pump had always been hateful work": [65535, 0], "had always been hateful work in": [65535, 0], "always been hateful work in tom's": [65535, 0], "been hateful work in tom's eyes": [65535, 0], "hateful work in tom's eyes before": [65535, 0], "work in tom's eyes before but": [65535, 0], "in tom's eyes before but now": [65535, 0], "tom's eyes before but now it": [65535, 0], "eyes before but now it did": [65535, 0], "before but now it did not": [65535, 0], "but now it did not strike": [65535, 0], "now it did not strike him": [65535, 0], "it did not strike him so": [65535, 0], "did not strike him so he": [65535, 0], "not strike him so he remembered": [65535, 0], "strike him so he remembered that": [65535, 0], "him so he remembered that there": [65535, 0], "so he remembered that there was": [65535, 0], "he remembered that there was company": [65535, 0], "remembered that there was company at": [65535, 0], "that there was company at the": [65535, 0], "there was company at the pump": [65535, 0], "was company at the pump white": [65535, 0], "company at the pump white mulatto": [65535, 0], "at the pump white mulatto and": [65535, 0], "the pump white mulatto and negro": [65535, 0], "pump white mulatto and negro boys": [65535, 0], "white mulatto and negro boys and": [65535, 0], "mulatto and negro boys and girls": [65535, 0], "and negro boys and girls were": [65535, 0], "negro boys and girls were always": [65535, 0], "boys and girls were always there": [65535, 0], "and girls were always there waiting": [65535, 0], "girls were always there waiting their": [65535, 0], "were always there waiting their turns": [65535, 0], "always there waiting their turns resting": [65535, 0], "there waiting their turns resting trading": [65535, 0], "waiting their turns resting trading playthings": [65535, 0], "their turns resting trading playthings quarrelling": [65535, 0], "turns resting trading playthings quarrelling fighting": [65535, 0], "resting trading playthings quarrelling fighting skylarking": [65535, 0], "trading playthings quarrelling fighting skylarking and": [65535, 0], "playthings quarrelling fighting skylarking and he": [65535, 0], "quarrelling fighting skylarking and he remembered": [65535, 0], "fighting skylarking and he remembered that": [65535, 0], "skylarking and he remembered that although": [65535, 0], "and he remembered that although the": [65535, 0], "he remembered that although the pump": [65535, 0], "remembered that although the pump was": [65535, 0], "that although the pump was only": [65535, 0], "although the pump was only a": [65535, 0], "the pump was only a hundred": [65535, 0], "pump was only a hundred and": [65535, 0], "was only a hundred and fifty": [65535, 0], "only a hundred and fifty yards": [65535, 0], "a hundred and fifty yards off": [65535, 0], "hundred and fifty yards off jim": [65535, 0], "and fifty yards off jim never": [65535, 0], "fifty yards off jim never got": [65535, 0], "yards off jim never got back": [65535, 0], "off jim never got back with": [65535, 0], "jim never got back with a": [65535, 0], "never got back with a bucket": [65535, 0], "got back with a bucket of": [65535, 0], "back with a bucket of water": [65535, 0], "with a bucket of water under": [65535, 0], "a bucket of water under an": [65535, 0], "bucket of water under an hour": [65535, 0], "of water under an hour and": [65535, 0], "water under an hour and even": [65535, 0], "under an hour and even then": [65535, 0], "an hour and even then somebody": [65535, 0], "hour and even then somebody generally": [65535, 0], "and even then somebody generally had": [65535, 0], "even then somebody generally had to": [65535, 0], "then somebody generally had to go": [65535, 0], "somebody generally had to go after": [65535, 0], "generally had to go after him": [65535, 0], "had to go after him tom": [65535, 0], "to go after him tom said": [65535, 0], "go after him tom said say": [65535, 0], "after him tom said say jim": [65535, 0], "him tom said say jim i'll": [65535, 0], "tom said say jim i'll fetch": [65535, 0], "said say jim i'll fetch the": [65535, 0], "say jim i'll fetch the water": [65535, 0], "jim i'll fetch the water if": [65535, 0], "i'll fetch the water if you'll": [65535, 0], "fetch the water if you'll whitewash": [65535, 0], "the water if you'll whitewash some": [65535, 0], "water if you'll whitewash some jim": [65535, 0], "if you'll whitewash some jim shook": [65535, 0], "you'll whitewash some jim shook his": [65535, 0], "whitewash some jim shook his head": [65535, 0], "some jim shook his head and": [65535, 0], "jim shook his head and said": [65535, 0], "shook his head and said can't": [65535, 0], "his head and said can't mars": [65535, 0], "head and said can't mars tom": [65535, 0], "and said can't mars tom ole": [65535, 0], "said can't mars tom ole missis": [65535, 0], "can't mars tom ole missis she": [65535, 0], "mars tom ole missis she tole": [65535, 0], "tom ole missis she tole me": [65535, 0], "ole missis she tole me i": [65535, 0], "missis she tole me i got": [65535, 0], "she tole me i got to": [65535, 0], "tole me i got to go": [65535, 0], "me i got to go an'": [65535, 0], "i got to go an' git": [65535, 0], "got to go an' git dis": [65535, 0], "to go an' git dis water": [65535, 0], "go an' git dis water an'": [65535, 0], "an' git dis water an' not": [65535, 0], "git dis water an' not stop": [65535, 0], "dis water an' not stop foolin'": [65535, 0], "water an' not stop foolin' roun'": [65535, 0], "an' not stop foolin' roun' wid": [65535, 0], "not stop foolin' roun' wid anybody": [65535, 0], "stop foolin' roun' wid anybody she": [65535, 0], "foolin' roun' wid anybody she say": [65535, 0], "roun' wid anybody she say she": [65535, 0], "wid anybody she say she spec'": [65535, 0], "anybody she say she spec' mars": [65535, 0], "she say she spec' mars tom": [65535, 0], "say she spec' mars tom gwine": [65535, 0], "she spec' mars tom gwine to": [65535, 0], "spec' mars tom gwine to ax": [65535, 0], "mars tom gwine to ax me": [65535, 0], "tom gwine to ax me to": [65535, 0], "gwine to ax me to whitewash": [65535, 0], "to ax me to whitewash an'": [65535, 0], "ax me to whitewash an' so": [65535, 0], "me to whitewash an' so she": [65535, 0], "to whitewash an' so she tole": [65535, 0], "whitewash an' so she tole me": [65535, 0], "an' so she tole me go": [65535, 0], "so she tole me go 'long": [65535, 0], "she tole me go 'long an'": [65535, 0], "tole me go 'long an' 'tend": [65535, 0], "me go 'long an' 'tend to": [65535, 0], "go 'long an' 'tend to my": [65535, 0], "'long an' 'tend to my own": [65535, 0], "an' 'tend to my own business": [65535, 0], "'tend to my own business she": [65535, 0], "to my own business she 'lowed": [65535, 0], "my own business she 'lowed she'd": [65535, 0], "own business she 'lowed she'd 'tend": [65535, 0], "business she 'lowed she'd 'tend to": [65535, 0], "she 'lowed she'd 'tend to de": [65535, 0], "'lowed she'd 'tend to de whitewashin'": [65535, 0], "she'd 'tend to de whitewashin' oh": [65535, 0], "'tend to de whitewashin' oh never": [65535, 0], "to de whitewashin' oh never you": [65535, 0], "de whitewashin' oh never you mind": [65535, 0], "whitewashin' oh never you mind what": [65535, 0], "oh never you mind what she": [65535, 0], "never you mind what she said": [65535, 0], "you mind what she said jim": [65535, 0], "mind what she said jim that's": [65535, 0], "what she said jim that's the": [65535, 0], "she said jim that's the way": [65535, 0], "said jim that's the way she": [65535, 0], "jim that's the way she always": [65535, 0], "that's the way she always talks": [65535, 0], "the way she always talks gimme": [65535, 0], "way she always talks gimme the": [65535, 0], "she always talks gimme the bucket": [65535, 0], "always talks gimme the bucket i": [65535, 0], "talks gimme the bucket i won't": [65535, 0], "gimme the bucket i won't be": [65535, 0], "the bucket i won't be gone": [65535, 0], "bucket i won't be gone only": [65535, 0], "i won't be gone only a": [65535, 0], "won't be gone only a minute": [65535, 0], "be gone only a minute she": [65535, 0], "gone only a minute she won't": [65535, 0], "only a minute she won't ever": [65535, 0], "a minute she won't ever know": [65535, 0], "minute she won't ever know oh": [65535, 0], "she won't ever know oh i": [65535, 0], "won't ever know oh i dasn't": [65535, 0], "ever know oh i dasn't mars": [65535, 0], "know oh i dasn't mars tom": [65535, 0], "oh i dasn't mars tom ole": [65535, 0], "i dasn't mars tom ole missis": [65535, 0], "dasn't mars tom ole missis she'd": [65535, 0], "mars tom ole missis she'd take": [65535, 0], "tom ole missis she'd take an'": [65535, 0], "ole missis she'd take an' tar": [65535, 0], "missis she'd take an' tar de": [65535, 0], "she'd take an' tar de head": [65535, 0], "take an' tar de head off'n": [65535, 0], "an' tar de head off'n me": [65535, 0], "tar de head off'n me 'deed": [65535, 0], "de head off'n me 'deed she": [65535, 0], "head off'n me 'deed she would": [65535, 0], "off'n me 'deed she would she": [65535, 0], "me 'deed she would she she": [65535, 0], "'deed she would she she never": [65535, 0], "she would she she never licks": [65535, 0], "would she she never licks anybody": [65535, 0], "she she never licks anybody whacks": [65535, 0], "she never licks anybody whacks 'em": [65535, 0], "never licks anybody whacks 'em over": [65535, 0], "licks anybody whacks 'em over the": [65535, 0], "anybody whacks 'em over the head": [65535, 0], "whacks 'em over the head with": [65535, 0], "'em over the head with her": [65535, 0], "over the head with her thimble": [65535, 0], "the head with her thimble and": [65535, 0], "head with her thimble and who": [65535, 0], "with her thimble and who cares": [65535, 0], "her thimble and who cares for": [65535, 0], "thimble and who cares for that": [65535, 0], "and who cares for that i'd": [65535, 0], "who cares for that i'd like": [65535, 0], "cares for that i'd like to": [65535, 0], "for that i'd like to know": [65535, 0], "that i'd like to know she": [65535, 0], "i'd like to know she talks": [65535, 0], "like to know she talks awful": [65535, 0], "to know she talks awful but": [65535, 0], "know she talks awful but talk": [65535, 0], "she talks awful but talk don't": [65535, 0], "talks awful but talk don't hurt": [65535, 0], "awful but talk don't hurt anyways": [65535, 0], "but talk don't hurt anyways it": [65535, 0], "talk don't hurt anyways it don't": [65535, 0], "don't hurt anyways it don't if": [65535, 0], "hurt anyways it don't if she": [65535, 0], "anyways it don't if she don't": [65535, 0], "it don't if she don't cry": [65535, 0], "don't if she don't cry jim": [65535, 0], "if she don't cry jim i'll": [65535, 0], "she don't cry jim i'll give": [65535, 0], "don't cry jim i'll give you": [65535, 0], "cry jim i'll give you a": [65535, 0], "jim i'll give you a marvel": [65535, 0], "i'll give you a marvel i'll": [65535, 0], "give you a marvel i'll give": [65535, 0], "you a marvel i'll give you": [65535, 0], "a marvel i'll give you a": [65535, 0], "marvel i'll give you a white": [65535, 0], "i'll give you a white alley": [65535, 0], "give you a white alley jim": [65535, 0], "you a white alley jim began": [65535, 0], "a white alley jim began to": [65535, 0], "white alley jim began to waver": [65535, 0], "alley jim began to waver white": [65535, 0], "jim began to waver white alley": [65535, 0], "began to waver white alley jim": [65535, 0], "to waver white alley jim and": [65535, 0], "waver white alley jim and it's": [65535, 0], "white alley jim and it's a": [65535, 0], "alley jim and it's a bully": [65535, 0], "jim and it's a bully taw": [65535, 0], "and it's a bully taw my": [65535, 0], "it's a bully taw my dat's": [65535, 0], "a bully taw my dat's a": [65535, 0], "bully taw my dat's a mighty": [65535, 0], "taw my dat's a mighty gay": [65535, 0], "my dat's a mighty gay marvel": [65535, 0], "dat's a mighty gay marvel i": [65535, 0], "a mighty gay marvel i tell": [65535, 0], "mighty gay marvel i tell you": [65535, 0], "gay marvel i tell you but": [65535, 0], "marvel i tell you but mars": [65535, 0], "i tell you but mars tom": [65535, 0], "tell you but mars tom i's": [65535, 0], "you but mars tom i's powerful": [65535, 0], "but mars tom i's powerful 'fraid": [65535, 0], "mars tom i's powerful 'fraid ole": [65535, 0], "tom i's powerful 'fraid ole missis": [65535, 0], "i's powerful 'fraid ole missis and": [65535, 0], "powerful 'fraid ole missis and besides": [65535, 0], "'fraid ole missis and besides if": [65535, 0], "ole missis and besides if you": [65535, 0], "missis and besides if you will": [65535, 0], "and besides if you will i'll": [65535, 0], "besides if you will i'll show": [65535, 0], "if you will i'll show you": [65535, 0], "you will i'll show you my": [65535, 0], "will i'll show you my sore": [65535, 0], "i'll show you my sore toe": [65535, 0], "show you my sore toe jim": [65535, 0], "you my sore toe jim was": [65535, 0], "my sore toe jim was only": [65535, 0], "sore toe jim was only human": [65535, 0], "toe jim was only human this": [65535, 0], "jim was only human this attraction": [65535, 0], "was only human this attraction was": [65535, 0], "only human this attraction was too": [65535, 0], "human this attraction was too much": [65535, 0], "this attraction was too much for": [65535, 0], "attraction was too much for him": [65535, 0], "was too much for him he": [65535, 0], "too much for him he put": [65535, 0], "much for him he put down": [65535, 0], "for him he put down his": [65535, 0], "him he put down his pail": [65535, 0], "he put down his pail took": [65535, 0], "put down his pail took the": [65535, 0], "down his pail took the white": [65535, 0], "his pail took the white alley": [65535, 0], "pail took the white alley and": [65535, 0], "took the white alley and bent": [65535, 0], "the white alley and bent over": [65535, 0], "white alley and bent over the": [65535, 0], "alley and bent over the toe": [65535, 0], "and bent over the toe with": [65535, 0], "bent over the toe with absorbing": [65535, 0], "over the toe with absorbing interest": [65535, 0], "the toe with absorbing interest while": [65535, 0], "toe with absorbing interest while the": [65535, 0], "with absorbing interest while the bandage": [65535, 0], "absorbing interest while the bandage was": [65535, 0], "interest while the bandage was being": [65535, 0], "while the bandage was being unwound": [65535, 0], "the bandage was being unwound in": [65535, 0], "bandage was being unwound in another": [65535, 0], "was being unwound in another moment": [65535, 0], "being unwound in another moment he": [65535, 0], "unwound in another moment he was": [65535, 0], "in another moment he was flying": [65535, 0], "another moment he was flying down": [65535, 0], "moment he was flying down the": [65535, 0], "he was flying down the street": [65535, 0], "was flying down the street with": [65535, 0], "flying down the street with his": [65535, 0], "down the street with his pail": [65535, 0], "the street with his pail and": [65535, 0], "street with his pail and a": [65535, 0], "with his pail and a tingling": [65535, 0], "his pail and a tingling rear": [65535, 0], "pail and a tingling rear tom": [65535, 0], "and a tingling rear tom was": [65535, 0], "a tingling rear tom was whitewashing": [65535, 0], "tingling rear tom was whitewashing with": [65535, 0], "rear tom was whitewashing with vigor": [65535, 0], "tom was whitewashing with vigor and": [65535, 0], "was whitewashing with vigor and aunt": [65535, 0], "whitewashing with vigor and aunt polly": [65535, 0], "with vigor and aunt polly was": [65535, 0], "vigor and aunt polly was retiring": [65535, 0], "and aunt polly was retiring from": [65535, 0], "aunt polly was retiring from the": [65535, 0], "polly was retiring from the field": [65535, 0], "was retiring from the field with": [65535, 0], "retiring from the field with a": [65535, 0], "from the field with a slipper": [65535, 0], "the field with a slipper in": [65535, 0], "field with a slipper in her": [65535, 0], "with a slipper in her hand": [65535, 0], "a slipper in her hand and": [65535, 0], "slipper in her hand and triumph": [65535, 0], "in her hand and triumph in": [65535, 0], "her hand and triumph in her": [65535, 0], "hand and triumph in her eye": [65535, 0], "and triumph in her eye but": [65535, 0], "triumph in her eye but tom's": [65535, 0], "in her eye but tom's energy": [65535, 0], "her eye but tom's energy did": [65535, 0], "eye but tom's energy did not": [65535, 0], "but tom's energy did not last": [65535, 0], "tom's energy did not last he": [65535, 0], "energy did not last he began": [65535, 0], "did not last he began to": [65535, 0], "not last he began to think": [65535, 0], "last he began to think of": [65535, 0], "he began to think of the": [65535, 0], "began to think of the fun": [65535, 0], "to think of the fun he": [65535, 0], "think of the fun he had": [65535, 0], "of the fun he had planned": [65535, 0], "the fun he had planned for": [65535, 0], "fun he had planned for this": [65535, 0], "he had planned for this day": [65535, 0], "had planned for this day and": [65535, 0], "planned for this day and his": [65535, 0], "for this day and his sorrows": [65535, 0], "this day and his sorrows multiplied": [65535, 0], "day and his sorrows multiplied soon": [65535, 0], "and his sorrows multiplied soon the": [65535, 0], "his sorrows multiplied soon the free": [65535, 0], "sorrows multiplied soon the free boys": [65535, 0], "multiplied soon the free boys would": [65535, 0], "soon the free boys would come": [65535, 0], "the free boys would come tripping": [65535, 0], "free boys would come tripping along": [65535, 0], "boys would come tripping along on": [65535, 0], "would come tripping along on all": [65535, 0], "come tripping along on all sorts": [65535, 0], "tripping along on all sorts of": [65535, 0], "along on all sorts of delicious": [65535, 0], "on all sorts of delicious expeditions": [65535, 0], "all sorts of delicious expeditions and": [65535, 0], "sorts of delicious expeditions and they": [65535, 0], "of delicious expeditions and they would": [65535, 0], "delicious expeditions and they would make": [65535, 0], "expeditions and they would make a": [65535, 0], "and they would make a world": [65535, 0], "they would make a world of": [65535, 0], "would make a world of fun": [65535, 0], "make a world of fun of": [65535, 0], "a world of fun of him": [65535, 0], "world of fun of him for": [65535, 0], "of fun of him for having": [65535, 0], "fun of him for having to": [65535, 0], "of him for having to work": [65535, 0], "him for having to work the": [65535, 0], "for having to work the very": [65535, 0], "having to work the very thought": [65535, 0], "to work the very thought of": [65535, 0], "work the very thought of it": [65535, 0], "the very thought of it burnt": [65535, 0], "very thought of it burnt him": [65535, 0], "thought of it burnt him like": [65535, 0], "of it burnt him like fire": [65535, 0], "it burnt him like fire he": [65535, 0], "burnt him like fire he got": [65535, 0], "him like fire he got out": [65535, 0], "like fire he got out his": [65535, 0], "fire he got out his worldly": [65535, 0], "he got out his worldly wealth": [65535, 0], "got out his worldly wealth and": [65535, 0], "out his worldly wealth and examined": [65535, 0], "his worldly wealth and examined it": [65535, 0], "worldly wealth and examined it bits": [65535, 0], "wealth and examined it bits of": [65535, 0], "and examined it bits of toys": [65535, 0], "examined it bits of toys marbles": [65535, 0], "it bits of toys marbles and": [65535, 0], "bits of toys marbles and trash": [65535, 0], "of toys marbles and trash enough": [65535, 0], "toys marbles and trash enough to": [65535, 0], "marbles and trash enough to buy": [65535, 0], "and trash enough to buy an": [65535, 0], "trash enough to buy an exchange": [65535, 0], "enough to buy an exchange of": [65535, 0], "to buy an exchange of work": [65535, 0], "buy an exchange of work maybe": [65535, 0], "an exchange of work maybe but": [65535, 0], "exchange of work maybe but not": [65535, 0], "of work maybe but not half": [65535, 0], "work maybe but not half enough": [65535, 0], "maybe but not half enough to": [65535, 0], "but not half enough to buy": [65535, 0], "not half enough to buy so": [65535, 0], "half enough to buy so much": [65535, 0], "enough to buy so much as": [65535, 0], "to buy so much as half": [65535, 0], "buy so much as half an": [65535, 0], "so much as half an hour": [65535, 0], "much as half an hour of": [65535, 0], "as half an hour of pure": [65535, 0], "half an hour of pure freedom": [65535, 0], "an hour of pure freedom so": [65535, 0], "hour of pure freedom so he": [65535, 0], "of pure freedom so he returned": [65535, 0], "pure freedom so he returned his": [65535, 0], "freedom so he returned his straitened": [65535, 0], "so he returned his straitened means": [65535, 0], "he returned his straitened means to": [65535, 0], "returned his straitened means to his": [65535, 0], "his straitened means to his pocket": [65535, 0], "straitened means to his pocket and": [65535, 0], "means to his pocket and gave": [65535, 0], "to his pocket and gave up": [65535, 0], "his pocket and gave up the": [65535, 0], "pocket and gave up the idea": [65535, 0], "and gave up the idea of": [65535, 0], "gave up the idea of trying": [65535, 0], "up the idea of trying to": [65535, 0], "the idea of trying to buy": [65535, 0], "idea of trying to buy the": [65535, 0], "of trying to buy the boys": [65535, 0], "trying to buy the boys at": [65535, 0], "to buy the boys at this": [65535, 0], "buy the boys at this dark": [65535, 0], "the boys at this dark and": [65535, 0], "boys at this dark and hopeless": [65535, 0], "at this dark and hopeless moment": [65535, 0], "this dark and hopeless moment an": [65535, 0], "dark and hopeless moment an inspiration": [65535, 0], "and hopeless moment an inspiration burst": [65535, 0], "hopeless moment an inspiration burst upon": [65535, 0], "moment an inspiration burst upon him": [65535, 0], "an inspiration burst upon him nothing": [65535, 0], "inspiration burst upon him nothing less": [65535, 0], "burst upon him nothing less than": [65535, 0], "upon him nothing less than a": [65535, 0], "him nothing less than a great": [65535, 0], "nothing less than a great magnificent": [65535, 0], "less than a great magnificent inspiration": [65535, 0], "than a great magnificent inspiration he": [65535, 0], "a great magnificent inspiration he took": [65535, 0], "great magnificent inspiration he took up": [65535, 0], "magnificent inspiration he took up his": [65535, 0], "inspiration he took up his brush": [65535, 0], "he took up his brush and": [65535, 0], "took up his brush and went": [65535, 0], "up his brush and went tranquilly": [65535, 0], "his brush and went tranquilly to": [65535, 0], "brush and went tranquilly to work": [65535, 0], "and went tranquilly to work ben": [65535, 0], "went tranquilly to work ben rogers": [65535, 0], "tranquilly to work ben rogers hove": [65535, 0], "to work ben rogers hove in": [65535, 0], "work ben rogers hove in sight": [65535, 0], "ben rogers hove in sight presently": [65535, 0], "rogers hove in sight presently the": [65535, 0], "hove in sight presently the very": [65535, 0], "in sight presently the very boy": [65535, 0], "sight presently the very boy of": [65535, 0], "presently the very boy of all": [65535, 0], "the very boy of all boys": [65535, 0], "very boy of all boys whose": [65535, 0], "boy of all boys whose ridicule": [65535, 0], "of all boys whose ridicule he": [65535, 0], "all boys whose ridicule he had": [65535, 0], "boys whose ridicule he had been": [65535, 0], "whose ridicule he had been dreading": [65535, 0], "ridicule he had been dreading ben's": [65535, 0], "he had been dreading ben's gait": [65535, 0], "had been dreading ben's gait was": [65535, 0], "been dreading ben's gait was the": [65535, 0], "dreading ben's gait was the hop": [65535, 0], "ben's gait was the hop skip": [65535, 0], "gait was the hop skip and": [65535, 0], "was the hop skip and jump": [65535, 0], "the hop skip and jump proof": [65535, 0], "hop skip and jump proof enough": [65535, 0], "skip and jump proof enough that": [65535, 0], "and jump proof enough that his": [65535, 0], "jump proof enough that his heart": [65535, 0], "proof enough that his heart was": [65535, 0], "enough that his heart was light": [65535, 0], "that his heart was light and": [65535, 0], "his heart was light and his": [65535, 0], "heart was light and his anticipations": [65535, 0], "was light and his anticipations high": [65535, 0], "light and his anticipations high he": [65535, 0], "and his anticipations high he was": [65535, 0], "his anticipations high he was eating": [65535, 0], "anticipations high he was eating an": [65535, 0], "high he was eating an apple": [65535, 0], "he was eating an apple and": [65535, 0], "was eating an apple and giving": [65535, 0], "eating an apple and giving a": [65535, 0], "an apple and giving a long": [65535, 0], "apple and giving a long melodious": [65535, 0], "and giving a long melodious whoop": [65535, 0], "giving a long melodious whoop at": [65535, 0], "a long melodious whoop at intervals": [65535, 0], "long melodious whoop at intervals followed": [65535, 0], "melodious whoop at intervals followed by": [65535, 0], "whoop at intervals followed by a": [65535, 0], "at intervals followed by a deep": [65535, 0], "intervals followed by a deep toned": [65535, 0], "followed by a deep toned ding": [65535, 0], "by a deep toned ding dong": [65535, 0], "a deep toned ding dong dong": [65535, 0], "deep toned ding dong dong ding": [65535, 0], "toned ding dong dong ding dong": [65535, 0], "ding dong dong ding dong dong": [65535, 0], "dong dong ding dong dong for": [65535, 0], "dong ding dong dong for he": [65535, 0], "ding dong dong for he was": [65535, 0], "dong dong for he was personating": [65535, 0], "dong for he was personating a": [65535, 0], "for he was personating a steamboat": [65535, 0], "he was personating a steamboat as": [65535, 0], "was personating a steamboat as he": [65535, 0], "personating a steamboat as he drew": [65535, 0], "a steamboat as he drew near": [65535, 0], "steamboat as he drew near he": [65535, 0], "as he drew near he slackened": [65535, 0], "he drew near he slackened speed": [65535, 0], "drew near he slackened speed took": [65535, 0], "near he slackened speed took the": [65535, 0], "he slackened speed took the middle": [65535, 0], "slackened speed took the middle of": [65535, 0], "speed took the middle of the": [65535, 0], "took the middle of the street": [65535, 0], "the middle of the street leaned": [65535, 0], "middle of the street leaned far": [65535, 0], "of the street leaned far over": [65535, 0], "the street leaned far over to": [65535, 0], "street leaned far over to starboard": [65535, 0], "leaned far over to starboard and": [65535, 0], "far over to starboard and rounded": [65535, 0], "over to starboard and rounded to": [65535, 0], "to starboard and rounded to ponderously": [65535, 0], "starboard and rounded to ponderously and": [65535, 0], "and rounded to ponderously and with": [65535, 0], "rounded to ponderously and with laborious": [65535, 0], "to ponderously and with laborious pomp": [65535, 0], "ponderously and with laborious pomp and": [65535, 0], "and with laborious pomp and circumstance": [65535, 0], "with laborious pomp and circumstance for": [65535, 0], "laborious pomp and circumstance for he": [65535, 0], "pomp and circumstance for he was": [65535, 0], "and circumstance for he was personating": [65535, 0], "circumstance for he was personating the": [65535, 0], "for he was personating the big": [65535, 0], "he was personating the big missouri": [65535, 0], "was personating the big missouri and": [65535, 0], "personating the big missouri and considered": [65535, 0], "the big missouri and considered himself": [65535, 0], "big missouri and considered himself to": [65535, 0], "missouri and considered himself to be": [65535, 0], "and considered himself to be drawing": [65535, 0], "considered himself to be drawing nine": [65535, 0], "himself to be drawing nine feet": [65535, 0], "to be drawing nine feet of": [65535, 0], "be drawing nine feet of water": [65535, 0], "drawing nine feet of water he": [65535, 0], "nine feet of water he was": [65535, 0], "feet of water he was boat": [65535, 0], "of water he was boat and": [65535, 0], "water he was boat and captain": [65535, 0], "he was boat and captain and": [65535, 0], "was boat and captain and engine": [65535, 0], "boat and captain and engine bells": [65535, 0], "and captain and engine bells combined": [65535, 0], "captain and engine bells combined so": [65535, 0], "and engine bells combined so he": [65535, 0], "engine bells combined so he had": [65535, 0], "bells combined so he had to": [65535, 0], "combined so he had to imagine": [65535, 0], "so he had to imagine himself": [65535, 0], "he had to imagine himself standing": [65535, 0], "had to imagine himself standing on": [65535, 0], "to imagine himself standing on his": [65535, 0], "imagine himself standing on his own": [65535, 0], "himself standing on his own hurricane": [65535, 0], "standing on his own hurricane deck": [65535, 0], "on his own hurricane deck giving": [65535, 0], "his own hurricane deck giving the": [65535, 0], "own hurricane deck giving the orders": [65535, 0], "hurricane deck giving the orders and": [65535, 0], "deck giving the orders and executing": [65535, 0], "giving the orders and executing them": [65535, 0], "the orders and executing them stop": [65535, 0], "orders and executing them stop her": [65535, 0], "and executing them stop her sir": [65535, 0], "executing them stop her sir ting": [65535, 0], "them stop her sir ting a": [65535, 0], "stop her sir ting a ling": [65535, 0], "her sir ting a ling ling": [65535, 0], "sir ting a ling ling the": [65535, 0], "ting a ling ling the headway": [65535, 0], "a ling ling the headway ran": [65535, 0], "ling ling the headway ran almost": [65535, 0], "ling the headway ran almost out": [65535, 0], "the headway ran almost out and": [65535, 0], "headway ran almost out and he": [65535, 0], "ran almost out and he drew": [65535, 0], "almost out and he drew up": [65535, 0], "out and he drew up slowly": [65535, 0], "and he drew up slowly toward": [65535, 0], "he drew up slowly toward the": [65535, 0], "drew up slowly toward the sidewalk": [65535, 0], "up slowly toward the sidewalk ship": [65535, 0], "slowly toward the sidewalk ship up": [65535, 0], "toward the sidewalk ship up to": [65535, 0], "the sidewalk ship up to back": [65535, 0], "sidewalk ship up to back ting": [65535, 0], "ship up to back ting a": [65535, 0], "up to back ting a ling": [65535, 0], "to back ting a ling ling": [65535, 0], "back ting a ling ling his": [65535, 0], "ting a ling ling his arms": [65535, 0], "a ling ling his arms straightened": [65535, 0], "ling ling his arms straightened and": [65535, 0], "ling his arms straightened and stiffened": [65535, 0], "his arms straightened and stiffened down": [65535, 0], "arms straightened and stiffened down his": [65535, 0], "straightened and stiffened down his sides": [65535, 0], "and stiffened down his sides set": [65535, 0], "stiffened down his sides set her": [65535, 0], "down his sides set her back": [65535, 0], "his sides set her back on": [65535, 0], "sides set her back on the": [65535, 0], "set her back on the stabboard": [65535, 0], "her back on the stabboard ting": [65535, 0], "back on the stabboard ting a": [65535, 0], "on the stabboard ting a ling": [65535, 0], "the stabboard ting a ling ling": [65535, 0], "stabboard ting a ling ling chow": [65535, 0], "ting a ling ling chow ch": [65535, 0], "a ling ling chow ch chow": [65535, 0], "ling ling chow ch chow wow": [65535, 0], "ling chow ch chow wow chow": [65535, 0], "chow ch chow wow chow his": [65535, 0], "ch chow wow chow his right": [65535, 0], "chow wow chow his right hand": [65535, 0], "wow chow his right hand meantime": [65535, 0], "chow his right hand meantime describing": [65535, 0], "his right hand meantime describing stately": [65535, 0], "right hand meantime describing stately circles": [65535, 0], "hand meantime describing stately circles for": [65535, 0], "meantime describing stately circles for it": [65535, 0], "describing stately circles for it was": [65535, 0], "stately circles for it was representing": [65535, 0], "circles for it was representing a": [65535, 0], "for it was representing a forty": [65535, 0], "it was representing a forty foot": [65535, 0], "was representing a forty foot wheel": [65535, 0], "representing a forty foot wheel let": [65535, 0], "a forty foot wheel let her": [65535, 0], "forty foot wheel let her go": [65535, 0], "foot wheel let her go back": [65535, 0], "wheel let her go back on": [65535, 0], "let her go back on the": [65535, 0], "her go back on the labboard": [65535, 0], "go back on the labboard ting": [65535, 0], "back on the labboard ting a": [65535, 0], "on the labboard ting a ling": [65535, 0], "the labboard ting a ling ling": [65535, 0], "labboard ting a ling ling chow": [65535, 0], "ling ling chow ch chow chow": [65535, 0], "ling chow ch chow chow the": [65535, 0], "chow ch chow chow the left": [65535, 0], "ch chow chow the left hand": [65535, 0], "chow chow the left hand began": [65535, 0], "chow the left hand began to": [65535, 0], "the left hand began to describe": [65535, 0], "left hand began to describe circles": [65535, 0], "hand began to describe circles stop": [65535, 0], "began to describe circles stop the": [65535, 0], "to describe circles stop the stabboard": [65535, 0], "describe circles stop the stabboard ting": [65535, 0], "circles stop the stabboard ting a": [65535, 0], "stop the stabboard ting a ling": [65535, 0], "stabboard ting a ling ling stop": [65535, 0], "ting a ling ling stop the": [65535, 0], "a ling ling stop the labboard": [65535, 0], "ling ling stop the labboard come": [65535, 0], "ling stop the labboard come ahead": [65535, 0], "stop the labboard come ahead on": [65535, 0], "the labboard come ahead on the": [65535, 0], "labboard come ahead on the stabboard": [65535, 0], "come ahead on the stabboard stop": [65535, 0], "ahead on the stabboard stop her": [65535, 0], "on the stabboard stop her let": [65535, 0], "the stabboard stop her let your": [65535, 0], "stabboard stop her let your outside": [65535, 0], "stop her let your outside turn": [65535, 0], "her let your outside turn over": [65535, 0], "let your outside turn over slow": [65535, 0], "your outside turn over slow ting": [65535, 0], "outside turn over slow ting a": [65535, 0], "turn over slow ting a ling": [65535, 0], "over slow ting a ling ling": [65535, 0], "slow ting a ling ling chow": [65535, 0], "ting a ling ling chow ow": [65535, 0], "a ling ling chow ow ow": [65535, 0], "ling ling chow ow ow get": [65535, 0], "ling chow ow ow get out": [65535, 0], "chow ow ow get out that": [65535, 0], "ow ow get out that head": [65535, 0], "ow get out that head line": [65535, 0], "get out that head line lively": [65535, 0], "out that head line lively now": [65535, 0], "that head line lively now come": [65535, 0], "head line lively now come out": [65535, 0], "line lively now come out with": [65535, 0], "lively now come out with your": [65535, 0], "now come out with your spring": [65535, 0], "come out with your spring line": [65535, 0], "out with your spring line what're": [65535, 0], "with your spring line what're you": [65535, 0], "your spring line what're you about": [65535, 0], "spring line what're you about there": [65535, 0], "line what're you about there take": [65535, 0], "what're you about there take a": [65535, 0], "you about there take a turn": [65535, 0], "about there take a turn round": [65535, 0], "there take a turn round that": [65535, 0], "take a turn round that stump": [65535, 0], "a turn round that stump with": [65535, 0], "turn round that stump with the": [65535, 0], "round that stump with the bight": [65535, 0], "that stump with the bight of": [65535, 0], "stump with the bight of it": [65535, 0], "with the bight of it stand": [65535, 0], "the bight of it stand by": [65535, 0], "bight of it stand by that": [65535, 0], "of it stand by that stage": [65535, 0], "it stand by that stage now": [65535, 0], "stand by that stage now let": [65535, 0], "by that stage now let her": [65535, 0], "that stage now let her go": [65535, 0], "stage now let her go done": [65535, 0], "now let her go done with": [65535, 0], "let her go done with the": [65535, 0], "her go done with the engines": [65535, 0], "go done with the engines sir": [65535, 0], "done with the engines sir ting": [65535, 0], "with the engines sir ting a": [65535, 0], "the engines sir ting a ling": [65535, 0], "engines sir ting a ling ling": [65535, 0], "sir ting a ling ling sh't": [65535, 0], "ting a ling ling sh't s'h't": [65535, 0], "a ling ling sh't s'h't sh't": [65535, 0], "ling ling sh't s'h't sh't trying": [65535, 0], "ling sh't s'h't sh't trying the": [65535, 0], "sh't s'h't sh't trying the gauge": [65535, 0], "s'h't sh't trying the gauge cocks": [65535, 0], "sh't trying the gauge cocks tom": [65535, 0], "trying the gauge cocks tom went": [65535, 0], "the gauge cocks tom went on": [65535, 0], "gauge cocks tom went on whitewashing": [65535, 0], "cocks tom went on whitewashing paid": [65535, 0], "tom went on whitewashing paid no": [65535, 0], "went on whitewashing paid no attention": [65535, 0], "on whitewashing paid no attention to": [65535, 0], "whitewashing paid no attention to the": [65535, 0], "paid no attention to the steamboat": [65535, 0], "no attention to the steamboat ben": [65535, 0], "attention to the steamboat ben stared": [65535, 0], "to the steamboat ben stared a": [65535, 0], "the steamboat ben stared a moment": [65535, 0], "steamboat ben stared a moment and": [65535, 0], "ben stared a moment and then": [65535, 0], "stared a moment and then said": [65535, 0], "a moment and then said hi": [65535, 0], "moment and then said hi yi": [65535, 0], "and then said hi yi you're": [65535, 0], "then said hi yi you're up": [65535, 0], "said hi yi you're up a": [65535, 0], "hi yi you're up a stump": [65535, 0], "yi you're up a stump ain't": [65535, 0], "you're up a stump ain't you": [65535, 0], "up a stump ain't you no": [65535, 0], "a stump ain't you no answer": [65535, 0], "stump ain't you no answer tom": [65535, 0], "ain't you no answer tom surveyed": [65535, 0], "you no answer tom surveyed his": [65535, 0], "no answer tom surveyed his last": [65535, 0], "answer tom surveyed his last touch": [65535, 0], "tom surveyed his last touch with": [65535, 0], "surveyed his last touch with the": [65535, 0], "his last touch with the eye": [65535, 0], "last touch with the eye of": [65535, 0], "touch with the eye of an": [65535, 0], "with the eye of an artist": [65535, 0], "the eye of an artist then": [65535, 0], "eye of an artist then he": [65535, 0], "of an artist then he gave": [65535, 0], "an artist then he gave his": [65535, 0], "artist then he gave his brush": [65535, 0], "then he gave his brush another": [65535, 0], "he gave his brush another gentle": [65535, 0], "gave his brush another gentle sweep": [65535, 0], "his brush another gentle sweep and": [65535, 0], "brush another gentle sweep and surveyed": [65535, 0], "another gentle sweep and surveyed the": [65535, 0], "gentle sweep and surveyed the result": [65535, 0], "sweep and surveyed the result as": [65535, 0], "and surveyed the result as before": [65535, 0], "surveyed the result as before ben": [65535, 0], "the result as before ben ranged": [65535, 0], "result as before ben ranged up": [65535, 0], "as before ben ranged up alongside": [65535, 0], "before ben ranged up alongside of": [65535, 0], "ben ranged up alongside of him": [65535, 0], "ranged up alongside of him tom's": [65535, 0], "up alongside of him tom's mouth": [65535, 0], "alongside of him tom's mouth watered": [65535, 0], "of him tom's mouth watered for": [65535, 0], "him tom's mouth watered for the": [65535, 0], "tom's mouth watered for the apple": [65535, 0], "mouth watered for the apple but": [65535, 0], "watered for the apple but he": [65535, 0], "for the apple but he stuck": [65535, 0], "the apple but he stuck to": [65535, 0], "apple but he stuck to his": [65535, 0], "but he stuck to his work": [65535, 0], "he stuck to his work ben": [65535, 0], "stuck to his work ben said": [65535, 0], "to his work ben said hello": [65535, 0], "his work ben said hello old": [65535, 0], "work ben said hello old chap": [65535, 0], "ben said hello old chap you": [65535, 0], "said hello old chap you got": [65535, 0], "hello old chap you got to": [65535, 0], "old chap you got to work": [65535, 0], "chap you got to work hey": [65535, 0], "you got to work hey tom": [65535, 0], "got to work hey tom wheeled": [65535, 0], "to work hey tom wheeled suddenly": [65535, 0], "work hey tom wheeled suddenly and": [65535, 0], "hey tom wheeled suddenly and said": [65535, 0], "tom wheeled suddenly and said why": [65535, 0], "wheeled suddenly and said why it's": [65535, 0], "suddenly and said why it's you": [65535, 0], "and said why it's you ben": [65535, 0], "said why it's you ben i": [65535, 0], "why it's you ben i warn't": [65535, 0], "it's you ben i warn't noticing": [65535, 0], "you ben i warn't noticing say": [65535, 0], "ben i warn't noticing say i'm": [65535, 0], "i warn't noticing say i'm going": [65535, 0], "warn't noticing say i'm going in": [65535, 0], "noticing say i'm going in a": [65535, 0], "say i'm going in a swimming": [65535, 0], "i'm going in a swimming i": [65535, 0], "going in a swimming i am": [65535, 0], "in a swimming i am don't": [65535, 0], "a swimming i am don't you": [65535, 0], "swimming i am don't you wish": [65535, 0], "i am don't you wish you": [65535, 0], "am don't you wish you could": [65535, 0], "don't you wish you could but": [65535, 0], "you wish you could but of": [65535, 0], "wish you could but of course": [65535, 0], "you could but of course you'd": [65535, 0], "could but of course you'd druther": [65535, 0], "but of course you'd druther work": [65535, 0], "of course you'd druther work wouldn't": [65535, 0], "course you'd druther work wouldn't you": [65535, 0], "you'd druther work wouldn't you course": [65535, 0], "druther work wouldn't you course you": [65535, 0], "work wouldn't you course you would": [65535, 0], "wouldn't you course you would tom": [65535, 0], "you course you would tom contemplated": [65535, 0], "course you would tom contemplated the": [65535, 0], "you would tom contemplated the boy": [65535, 0], "would tom contemplated the boy a": [65535, 0], "tom contemplated the boy a bit": [65535, 0], "contemplated the boy a bit and": [65535, 0], "the boy a bit and said": [65535, 0], "boy a bit and said what": [65535, 0], "a bit and said what do": [65535, 0], "bit and said what do you": [65535, 0], "and said what do you call": [65535, 0], "said what do you call work": [65535, 0], "what do you call work why": [65535, 0], "do you call work why ain't": [65535, 0], "you call work why ain't that": [65535, 0], "call work why ain't that work": [65535, 0], "work why ain't that work tom": [65535, 0], "why ain't that work tom resumed": [65535, 0], "ain't that work tom resumed his": [65535, 0], "that work tom resumed his whitewashing": [65535, 0], "work tom resumed his whitewashing and": [65535, 0], "tom resumed his whitewashing and answered": [65535, 0], "resumed his whitewashing and answered carelessly": [65535, 0], "his whitewashing and answered carelessly well": [65535, 0], "whitewashing and answered carelessly well maybe": [65535, 0], "and answered carelessly well maybe it": [65535, 0], "answered carelessly well maybe it is": [65535, 0], "carelessly well maybe it is and": [65535, 0], "well maybe it is and maybe": [65535, 0], "maybe it is and maybe it": [65535, 0], "it is and maybe it ain't": [65535, 0], "is and maybe it ain't all": [65535, 0], "and maybe it ain't all i": [65535, 0], "maybe it ain't all i know": [65535, 0], "it ain't all i know is": [65535, 0], "ain't all i know is it": [65535, 0], "all i know is it suits": [65535, 0], "i know is it suits tom": [65535, 0], "know is it suits tom sawyer": [65535, 0], "is it suits tom sawyer oh": [65535, 0], "it suits tom sawyer oh come": [65535, 0], "suits tom sawyer oh come now": [65535, 0], "tom sawyer oh come now you": [65535, 0], "sawyer oh come now you don't": [65535, 0], "oh come now you don't mean": [65535, 0], "come now you don't mean to": [65535, 0], "now you don't mean to let": [65535, 0], "you don't mean to let on": [65535, 0], "don't mean to let on that": [65535, 0], "mean to let on that you": [65535, 0], "to let on that you like": [65535, 0], "let on that you like it": [65535, 0], "on that you like it the": [65535, 0], "that you like it the brush": [65535, 0], "you like it the brush continued": [65535, 0], "like it the brush continued to": [65535, 0], "it the brush continued to move": [65535, 0], "the brush continued to move like": [65535, 0], "brush continued to move like it": [65535, 0], "continued to move like it well": [65535, 0], "to move like it well i": [65535, 0], "move like it well i don't": [65535, 0], "like it well i don't see": [65535, 0], "it well i don't see why": [65535, 0], "well i don't see why i": [65535, 0], "i don't see why i oughtn't": [65535, 0], "don't see why i oughtn't to": [65535, 0], "see why i oughtn't to like": [65535, 0], "why i oughtn't to like it": [65535, 0], "i oughtn't to like it does": [65535, 0], "oughtn't to like it does a": [65535, 0], "to like it does a boy": [65535, 0], "like it does a boy get": [65535, 0], "it does a boy get a": [65535, 0], "does a boy get a chance": [65535, 0], "a boy get a chance to": [65535, 0], "boy get a chance to whitewash": [65535, 0], "get a chance to whitewash a": [65535, 0], "a chance to whitewash a fence": [65535, 0], "chance to whitewash a fence every": [65535, 0], "to whitewash a fence every day": [65535, 0], "whitewash a fence every day that": [65535, 0], "a fence every day that put": [65535, 0], "fence every day that put the": [65535, 0], "every day that put the thing": [65535, 0], "day that put the thing in": [65535, 0], "that put the thing in a": [65535, 0], "put the thing in a new": [65535, 0], "the thing in a new light": [65535, 0], "thing in a new light ben": [65535, 0], "in a new light ben stopped": [65535, 0], "a new light ben stopped nibbling": [65535, 0], "new light ben stopped nibbling his": [65535, 0], "light ben stopped nibbling his apple": [65535, 0], "ben stopped nibbling his apple tom": [65535, 0], "stopped nibbling his apple tom swept": [65535, 0], "nibbling his apple tom swept his": [65535, 0], "his apple tom swept his brush": [65535, 0], "apple tom swept his brush daintily": [65535, 0], "tom swept his brush daintily back": [65535, 0], "swept his brush daintily back and": [65535, 0], "his brush daintily back and forth": [65535, 0], "brush daintily back and forth stepped": [65535, 0], "daintily back and forth stepped back": [65535, 0], "back and forth stepped back to": [65535, 0], "and forth stepped back to note": [65535, 0], "forth stepped back to note the": [65535, 0], "stepped back to note the effect": [65535, 0], "back to note the effect added": [65535, 0], "to note the effect added a": [65535, 0], "note the effect added a touch": [65535, 0], "the effect added a touch here": [65535, 0], "effect added a touch here and": [65535, 0], "added a touch here and there": [65535, 0], "a touch here and there criticised": [65535, 0], "touch here and there criticised the": [65535, 0], "here and there criticised the effect": [65535, 0], "and there criticised the effect again": [65535, 0], "there criticised the effect again ben": [65535, 0], "criticised the effect again ben watching": [65535, 0], "the effect again ben watching every": [65535, 0], "effect again ben watching every move": [65535, 0], "again ben watching every move and": [65535, 0], "ben watching every move and getting": [65535, 0], "watching every move and getting more": [65535, 0], "every move and getting more and": [65535, 0], "move and getting more and more": [65535, 0], "and getting more and more interested": [65535, 0], "getting more and more interested more": [65535, 0], "more and more interested more and": [65535, 0], "and more interested more and more": [65535, 0], "more interested more and more absorbed": [65535, 0], "interested more and more absorbed presently": [65535, 0], "more and more absorbed presently he": [65535, 0], "and more absorbed presently he said": [65535, 0], "more absorbed presently he said say": [65535, 0], "absorbed presently he said say tom": [65535, 0], "presently he said say tom let": [65535, 0], "he said say tom let me": [65535, 0], "said say tom let me whitewash": [65535, 0], "say tom let me whitewash a": [65535, 0], "tom let me whitewash a little": [65535, 0], "let me whitewash a little tom": [65535, 0], "me whitewash a little tom considered": [65535, 0], "whitewash a little tom considered was": [65535, 0], "a little tom considered was about": [65535, 0], "little tom considered was about to": [65535, 0], "tom considered was about to consent": [65535, 0], "considered was about to consent but": [65535, 0], "was about to consent but he": [65535, 0], "about to consent but he altered": [65535, 0], "to consent but he altered his": [65535, 0], "consent but he altered his mind": [65535, 0], "but he altered his mind no": [65535, 0], "he altered his mind no no": [65535, 0], "altered his mind no no i": [65535, 0], "his mind no no i reckon": [65535, 0], "mind no no i reckon it": [65535, 0], "no no i reckon it wouldn't": [65535, 0], "no i reckon it wouldn't hardly": [65535, 0], "i reckon it wouldn't hardly do": [65535, 0], "reckon it wouldn't hardly do ben": [65535, 0], "it wouldn't hardly do ben you": [65535, 0], "wouldn't hardly do ben you see": [65535, 0], "hardly do ben you see aunt": [65535, 0], "do ben you see aunt polly's": [65535, 0], "ben you see aunt polly's awful": [65535, 0], "you see aunt polly's awful particular": [65535, 0], "see aunt polly's awful particular about": [65535, 0], "aunt polly's awful particular about this": [65535, 0], "polly's awful particular about this fence": [65535, 0], "awful particular about this fence right": [65535, 0], "particular about this fence right here": [65535, 0], "about this fence right here on": [65535, 0], "this fence right here on the": [65535, 0], "fence right here on the street": [65535, 0], "right here on the street you": [65535, 0], "here on the street you know": [65535, 0], "on the street you know but": [65535, 0], "the street you know but if": [65535, 0], "street you know but if it": [65535, 0], "you know but if it was": [65535, 0], "know but if it was the": [65535, 0], "but if it was the back": [65535, 0], "if it was the back fence": [65535, 0], "it was the back fence i": [65535, 0], "was the back fence i wouldn't": [65535, 0], "the back fence i wouldn't mind": [65535, 0], "back fence i wouldn't mind and": [65535, 0], "fence i wouldn't mind and she": [65535, 0], "i wouldn't mind and she wouldn't": [65535, 0], "wouldn't mind and she wouldn't yes": [65535, 0], "mind and she wouldn't yes she's": [65535, 0], "and she wouldn't yes she's awful": [65535, 0], "she wouldn't yes she's awful particular": [65535, 0], "wouldn't yes she's awful particular about": [65535, 0], "yes she's awful particular about this": [65535, 0], "she's awful particular about this fence": [65535, 0], "awful particular about this fence it's": [65535, 0], "particular about this fence it's got": [65535, 0], "about this fence it's got to": [65535, 0], "this fence it's got to be": [65535, 0], "fence it's got to be done": [65535, 0], "it's got to be done very": [65535, 0], "got to be done very careful": [65535, 0], "to be done very careful i": [65535, 0], "be done very careful i reckon": [65535, 0], "done very careful i reckon there": [65535, 0], "very careful i reckon there ain't": [65535, 0], "careful i reckon there ain't one": [65535, 0], "i reckon there ain't one boy": [65535, 0], "reckon there ain't one boy in": [65535, 0], "there ain't one boy in a": [65535, 0], "ain't one boy in a thousand": [65535, 0], "one boy in a thousand maybe": [65535, 0], "boy in a thousand maybe two": [65535, 0], "in a thousand maybe two thousand": [65535, 0], "a thousand maybe two thousand that": [65535, 0], "thousand maybe two thousand that can": [65535, 0], "maybe two thousand that can do": [65535, 0], "two thousand that can do it": [65535, 0], "thousand that can do it the": [65535, 0], "that can do it the way": [65535, 0], "can do it the way it's": [65535, 0], "do it the way it's got": [65535, 0], "it the way it's got to": [65535, 0], "the way it's got to be": [65535, 0], "way it's got to be done": [65535, 0], "it's got to be done no": [65535, 0], "got to be done no is": [65535, 0], "to be done no is that": [65535, 0], "be done no is that so": [65535, 0], "done no is that so oh": [65535, 0], "no is that so oh come": [65535, 0], "is that so oh come now": [65535, 0], "that so oh come now lemme": [65535, 0], "so oh come now lemme just": [65535, 0], "oh come now lemme just try": [65535, 0], "come now lemme just try only": [65535, 0], "now lemme just try only just": [65535, 0], "lemme just try only just a": [65535, 0], "just try only just a little": [65535, 0], "try only just a little i'd": [65535, 0], "only just a little i'd let": [65535, 0], "just a little i'd let you": [65535, 0], "a little i'd let you if": [65535, 0], "little i'd let you if you": [65535, 0], "i'd let you if you was": [65535, 0], "let you if you was me": [65535, 0], "you if you was me tom": [65535, 0], "if you was me tom ben": [65535, 0], "you was me tom ben i'd": [65535, 0], "was me tom ben i'd like": [65535, 0], "me tom ben i'd like to": [65535, 0], "tom ben i'd like to honest": [65535, 0], "ben i'd like to honest injun": [65535, 0], "i'd like to honest injun but": [65535, 0], "like to honest injun but aunt": [65535, 0], "to honest injun but aunt polly": [65535, 0], "honest injun but aunt polly well": [65535, 0], "injun but aunt polly well jim": [65535, 0], "but aunt polly well jim wanted": [65535, 0], "aunt polly well jim wanted to": [65535, 0], "polly well jim wanted to do": [65535, 0], "well jim wanted to do it": [65535, 0], "jim wanted to do it but": [65535, 0], "wanted to do it but she": [65535, 0], "to do it but she wouldn't": [65535, 0], "do it but she wouldn't let": [65535, 0], "it but she wouldn't let him": [65535, 0], "but she wouldn't let him sid": [65535, 0], "she wouldn't let him sid wanted": [65535, 0], "wouldn't let him sid wanted to": [65535, 0], "let him sid wanted to do": [65535, 0], "him sid wanted to do it": [65535, 0], "sid wanted to do it and": [65535, 0], "wanted to do it and she": [65535, 0], "to do it and she wouldn't": [65535, 0], "do it and she wouldn't let": [65535, 0], "it and she wouldn't let sid": [65535, 0], "and she wouldn't let sid now": [65535, 0], "she wouldn't let sid now don't": [65535, 0], "wouldn't let sid now don't you": [65535, 0], "let sid now don't you see": [65535, 0], "sid now don't you see how": [65535, 0], "now don't you see how i'm": [65535, 0], "don't you see how i'm fixed": [65535, 0], "you see how i'm fixed if": [65535, 0], "see how i'm fixed if you": [65535, 0], "how i'm fixed if you was": [65535, 0], "i'm fixed if you was to": [65535, 0], "fixed if you was to tackle": [65535, 0], "if you was to tackle this": [65535, 0], "you was to tackle this fence": [65535, 0], "was to tackle this fence and": [65535, 0], "to tackle this fence and anything": [65535, 0], "tackle this fence and anything was": [65535, 0], "this fence and anything was to": [65535, 0], "fence and anything was to happen": [65535, 0], "and anything was to happen to": [65535, 0], "anything was to happen to it": [65535, 0], "was to happen to it oh": [65535, 0], "to happen to it oh shucks": [65535, 0], "happen to it oh shucks i'll": [65535, 0], "to it oh shucks i'll be": [65535, 0], "it oh shucks i'll be just": [65535, 0], "oh shucks i'll be just as": [65535, 0], "shucks i'll be just as careful": [65535, 0], "i'll be just as careful now": [65535, 0], "be just as careful now lemme": [65535, 0], "just as careful now lemme try": [65535, 0], "as careful now lemme try say": [65535, 0], "careful now lemme try say i'll": [65535, 0], "now lemme try say i'll give": [65535, 0], "lemme try say i'll give you": [65535, 0], "try say i'll give you the": [65535, 0], "say i'll give you the core": [65535, 0], "i'll give you the core of": [65535, 0], "give you the core of my": [65535, 0], "you the core of my apple": [65535, 0], "the core of my apple well": [65535, 0], "core of my apple well here": [65535, 0], "of my apple well here no": [65535, 0], "my apple well here no ben": [65535, 0], "apple well here no ben now": [65535, 0], "well here no ben now don't": [65535, 0], "here no ben now don't i'm": [65535, 0], "no ben now don't i'm afeard": [65535, 0], "ben now don't i'm afeard i'll": [65535, 0], "now don't i'm afeard i'll give": [65535, 0], "don't i'm afeard i'll give you": [65535, 0], "i'm afeard i'll give you all": [65535, 0], "afeard i'll give you all of": [65535, 0], "i'll give you all of it": [65535, 0], "give you all of it tom": [65535, 0], "you all of it tom gave": [65535, 0], "all of it tom gave up": [65535, 0], "of it tom gave up the": [65535, 0], "it tom gave up the brush": [65535, 0], "tom gave up the brush with": [65535, 0], "gave up the brush with reluctance": [65535, 0], "up the brush with reluctance in": [65535, 0], "the brush with reluctance in his": [65535, 0], "brush with reluctance in his face": [65535, 0], "with reluctance in his face but": [65535, 0], "reluctance in his face but alacrity": [65535, 0], "in his face but alacrity in": [65535, 0], "his face but alacrity in his": [65535, 0], "face but alacrity in his heart": [65535, 0], "but alacrity in his heart and": [65535, 0], "alacrity in his heart and while": [65535, 0], "in his heart and while the": [65535, 0], "his heart and while the late": [65535, 0], "heart and while the late steamer": [65535, 0], "and while the late steamer big": [65535, 0], "while the late steamer big missouri": [65535, 0], "the late steamer big missouri worked": [65535, 0], "late steamer big missouri worked and": [65535, 0], "steamer big missouri worked and sweated": [65535, 0], "big missouri worked and sweated in": [65535, 0], "missouri worked and sweated in the": [65535, 0], "worked and sweated in the sun": [65535, 0], "and sweated in the sun the": [65535, 0], "sweated in the sun the retired": [65535, 0], "in the sun the retired artist": [65535, 0], "the sun the retired artist sat": [65535, 0], "sun the retired artist sat on": [65535, 0], "the retired artist sat on a": [65535, 0], "retired artist sat on a barrel": [65535, 0], "artist sat on a barrel in": [65535, 0], "sat on a barrel in the": [65535, 0], "on a barrel in the shade": [65535, 0], "a barrel in the shade close": [65535, 0], "barrel in the shade close by": [65535, 0], "in the shade close by dangled": [65535, 0], "the shade close by dangled his": [65535, 0], "shade close by dangled his legs": [65535, 0], "close by dangled his legs munched": [65535, 0], "by dangled his legs munched his": [65535, 0], "dangled his legs munched his apple": [65535, 0], "his legs munched his apple and": [65535, 0], "legs munched his apple and planned": [65535, 0], "munched his apple and planned the": [65535, 0], "his apple and planned the slaughter": [65535, 0], "apple and planned the slaughter of": [65535, 0], "and planned the slaughter of more": [65535, 0], "planned the slaughter of more innocents": [65535, 0], "the slaughter of more innocents there": [65535, 0], "slaughter of more innocents there was": [65535, 0], "of more innocents there was no": [65535, 0], "more innocents there was no lack": [65535, 0], "innocents there was no lack of": [65535, 0], "there was no lack of material": [65535, 0], "was no lack of material boys": [65535, 0], "no lack of material boys happened": [65535, 0], "lack of material boys happened along": [65535, 0], "of material boys happened along every": [65535, 0], "material boys happened along every little": [65535, 0], "boys happened along every little while": [65535, 0], "happened along every little while they": [65535, 0], "along every little while they came": [65535, 0], "every little while they came to": [65535, 0], "little while they came to jeer": [65535, 0], "while they came to jeer but": [65535, 0], "they came to jeer but remained": [65535, 0], "came to jeer but remained to": [65535, 0], "to jeer but remained to whitewash": [65535, 0], "jeer but remained to whitewash by": [65535, 0], "but remained to whitewash by the": [65535, 0], "remained to whitewash by the time": [65535, 0], "to whitewash by the time ben": [65535, 0], "whitewash by the time ben was": [65535, 0], "by the time ben was fagged": [65535, 0], "the time ben was fagged out": [65535, 0], "time ben was fagged out tom": [65535, 0], "ben was fagged out tom had": [65535, 0], "was fagged out tom had traded": [65535, 0], "fagged out tom had traded the": [65535, 0], "out tom had traded the next": [65535, 0], "tom had traded the next chance": [65535, 0], "had traded the next chance to": [65535, 0], "traded the next chance to billy": [65535, 0], "the next chance to billy fisher": [65535, 0], "next chance to billy fisher for": [65535, 0], "chance to billy fisher for a": [65535, 0], "to billy fisher for a kite": [65535, 0], "billy fisher for a kite in": [65535, 0], "fisher for a kite in good": [65535, 0], "for a kite in good repair": [65535, 0], "a kite in good repair and": [65535, 0], "kite in good repair and when": [65535, 0], "in good repair and when he": [65535, 0], "good repair and when he played": [65535, 0], "repair and when he played out": [65535, 0], "and when he played out johnny": [65535, 0], "when he played out johnny miller": [65535, 0], "he played out johnny miller bought": [65535, 0], "played out johnny miller bought in": [65535, 0], "out johnny miller bought in for": [65535, 0], "johnny miller bought in for a": [65535, 0], "miller bought in for a dead": [65535, 0], "bought in for a dead rat": [65535, 0], "in for a dead rat and": [65535, 0], "for a dead rat and a": [65535, 0], "a dead rat and a string": [65535, 0], "dead rat and a string to": [65535, 0], "rat and a string to swing": [65535, 0], "and a string to swing it": [65535, 0], "a string to swing it with": [65535, 0], "string to swing it with and": [65535, 0], "to swing it with and so": [65535, 0], "swing it with and so on": [65535, 0], "it with and so on and": [65535, 0], "with and so on and so": [65535, 0], "and so on and so on": [65535, 0], "so on and so on hour": [65535, 0], "on and so on hour after": [65535, 0], "and so on hour after hour": [65535, 0], "so on hour after hour and": [65535, 0], "on hour after hour and when": [65535, 0], "hour after hour and when the": [65535, 0], "after hour and when the middle": [65535, 0], "hour and when the middle of": [65535, 0], "and when the middle of the": [65535, 0], "when the middle of the afternoon": [65535, 0], "the middle of the afternoon came": [65535, 0], "middle of the afternoon came from": [65535, 0], "of the afternoon came from being": [65535, 0], "the afternoon came from being a": [65535, 0], "afternoon came from being a poor": [65535, 0], "came from being a poor poverty": [65535, 0], "from being a poor poverty stricken": [65535, 0], "being a poor poverty stricken boy": [65535, 0], "a poor poverty stricken boy in": [65535, 0], "poor poverty stricken boy in the": [65535, 0], "poverty stricken boy in the morning": [65535, 0], "stricken boy in the morning tom": [65535, 0], "boy in the morning tom was": [65535, 0], "in the morning tom was literally": [65535, 0], "the morning tom was literally rolling": [65535, 0], "morning tom was literally rolling in": [65535, 0], "tom was literally rolling in wealth": [65535, 0], "was literally rolling in wealth he": [65535, 0], "literally rolling in wealth he had": [65535, 0], "rolling in wealth he had besides": [65535, 0], "in wealth he had besides the": [65535, 0], "wealth he had besides the things": [65535, 0], "he had besides the things before": [65535, 0], "had besides the things before mentioned": [65535, 0], "besides the things before mentioned twelve": [65535, 0], "the things before mentioned twelve marbles": [65535, 0], "things before mentioned twelve marbles part": [65535, 0], "before mentioned twelve marbles part of": [65535, 0], "mentioned twelve marbles part of a": [65535, 0], "twelve marbles part of a jews": [65535, 0], "marbles part of a jews harp": [65535, 0], "part of a jews harp a": [65535, 0], "of a jews harp a piece": [65535, 0], "a jews harp a piece of": [65535, 0], "jews harp a piece of blue": [65535, 0], "harp a piece of blue bottle": [65535, 0], "a piece of blue bottle glass": [65535, 0], "piece of blue bottle glass to": [65535, 0], "of blue bottle glass to look": [65535, 0], "blue bottle glass to look through": [65535, 0], "bottle glass to look through a": [65535, 0], "glass to look through a spool": [65535, 0], "to look through a spool cannon": [65535, 0], "look through a spool cannon a": [65535, 0], "through a spool cannon a key": [65535, 0], "a spool cannon a key that": [65535, 0], "spool cannon a key that wouldn't": [65535, 0], "cannon a key that wouldn't unlock": [65535, 0], "a key that wouldn't unlock anything": [65535, 0], "key that wouldn't unlock anything a": [65535, 0], "that wouldn't unlock anything a fragment": [65535, 0], "wouldn't unlock anything a fragment of": [65535, 0], "unlock anything a fragment of chalk": [65535, 0], "anything a fragment of chalk a": [65535, 0], "a fragment of chalk a glass": [65535, 0], "fragment of chalk a glass stopper": [65535, 0], "of chalk a glass stopper of": [65535, 0], "chalk a glass stopper of a": [65535, 0], "a glass stopper of a decanter": [65535, 0], "glass stopper of a decanter a": [65535, 0], "stopper of a decanter a tin": [65535, 0], "of a decanter a tin soldier": [65535, 0], "a decanter a tin soldier a": [65535, 0], "decanter a tin soldier a couple": [65535, 0], "a tin soldier a couple of": [65535, 0], "tin soldier a couple of tadpoles": [65535, 0], "soldier a couple of tadpoles six": [65535, 0], "a couple of tadpoles six fire": [65535, 0], "couple of tadpoles six fire crackers": [65535, 0], "of tadpoles six fire crackers a": [65535, 0], "tadpoles six fire crackers a kitten": [65535, 0], "six fire crackers a kitten with": [65535, 0], "fire crackers a kitten with only": [65535, 0], "crackers a kitten with only one": [65535, 0], "a kitten with only one eye": [65535, 0], "kitten with only one eye a": [65535, 0], "with only one eye a brass": [65535, 0], "only one eye a brass doorknob": [65535, 0], "one eye a brass doorknob a": [65535, 0], "eye a brass doorknob a dog": [65535, 0], "a brass doorknob a dog collar": [65535, 0], "brass doorknob a dog collar but": [65535, 0], "doorknob a dog collar but no": [65535, 0], "a dog collar but no dog": [65535, 0], "dog collar but no dog the": [65535, 0], "collar but no dog the handle": [65535, 0], "but no dog the handle of": [65535, 0], "no dog the handle of a": [65535, 0], "dog the handle of a knife": [65535, 0], "the handle of a knife four": [65535, 0], "handle of a knife four pieces": [65535, 0], "of a knife four pieces of": [65535, 0], "a knife four pieces of orange": [65535, 0], "knife four pieces of orange peel": [65535, 0], "four pieces of orange peel and": [65535, 0], "pieces of orange peel and a": [65535, 0], "of orange peel and a dilapidated": [65535, 0], "orange peel and a dilapidated old": [65535, 0], "peel and a dilapidated old window": [65535, 0], "and a dilapidated old window sash": [65535, 0], "a dilapidated old window sash he": [65535, 0], "dilapidated old window sash he had": [65535, 0], "old window sash he had had": [65535, 0], "window sash he had had a": [65535, 0], "sash he had had a nice": [65535, 0], "he had had a nice good": [65535, 0], "had had a nice good idle": [65535, 0], "had a nice good idle time": [65535, 0], "a nice good idle time all": [65535, 0], "nice good idle time all the": [65535, 0], "good idle time all the while": [65535, 0], "idle time all the while plenty": [65535, 0], "time all the while plenty of": [65535, 0], "all the while plenty of company": [65535, 0], "the while plenty of company and": [65535, 0], "while plenty of company and the": [65535, 0], "plenty of company and the fence": [65535, 0], "of company and the fence had": [65535, 0], "company and the fence had three": [65535, 0], "and the fence had three coats": [65535, 0], "the fence had three coats of": [65535, 0], "fence had three coats of whitewash": [65535, 0], "had three coats of whitewash on": [65535, 0], "three coats of whitewash on it": [65535, 0], "coats of whitewash on it if": [65535, 0], "of whitewash on it if he": [65535, 0], "whitewash on it if he hadn't": [65535, 0], "on it if he hadn't run": [65535, 0], "it if he hadn't run out": [65535, 0], "if he hadn't run out of": [65535, 0], "he hadn't run out of whitewash": [65535, 0], "hadn't run out of whitewash he": [65535, 0], "run out of whitewash he would": [65535, 0], "out of whitewash he would have": [65535, 0], "of whitewash he would have bankrupted": [65535, 0], "whitewash he would have bankrupted every": [65535, 0], "he would have bankrupted every boy": [65535, 0], "would have bankrupted every boy in": [65535, 0], "have bankrupted every boy in the": [65535, 0], "bankrupted every boy in the village": [65535, 0], "every boy in the village tom": [65535, 0], "boy in the village tom said": [65535, 0], "in the village tom said to": [65535, 0], "the village tom said to himself": [65535, 0], "village tom said to himself that": [65535, 0], "tom said to himself that it": [65535, 0], "said to himself that it was": [65535, 0], "to himself that it was not": [65535, 0], "himself that it was not such": [65535, 0], "that it was not such a": [65535, 0], "it was not such a hollow": [65535, 0], "was not such a hollow world": [65535, 0], "not such a hollow world after": [65535, 0], "such a hollow world after all": [65535, 0], "a hollow world after all he": [65535, 0], "hollow world after all he had": [65535, 0], "world after all he had discovered": [65535, 0], "after all he had discovered a": [65535, 0], "all he had discovered a great": [65535, 0], "he had discovered a great law": [65535, 0], "had discovered a great law of": [65535, 0], "discovered a great law of human": [65535, 0], "a great law of human action": [65535, 0], "great law of human action without": [65535, 0], "law of human action without knowing": [65535, 0], "of human action without knowing it": [65535, 0], "human action without knowing it namely": [65535, 0], "action without knowing it namely that": [65535, 0], "without knowing it namely that in": [65535, 0], "knowing it namely that in order": [65535, 0], "it namely that in order to": [65535, 0], "namely that in order to make": [65535, 0], "that in order to make a": [65535, 0], "in order to make a man": [65535, 0], "order to make a man or": [65535, 0], "to make a man or a": [65535, 0], "make a man or a boy": [65535, 0], "a man or a boy covet": [65535, 0], "man or a boy covet a": [65535, 0], "or a boy covet a thing": [65535, 0], "a boy covet a thing it": [65535, 0], "boy covet a thing it is": [65535, 0], "covet a thing it is only": [65535, 0], "a thing it is only necessary": [65535, 0], "thing it is only necessary to": [65535, 0], "it is only necessary to make": [65535, 0], "is only necessary to make the": [65535, 0], "only necessary to make the thing": [65535, 0], "necessary to make the thing difficult": [65535, 0], "to make the thing difficult to": [65535, 0], "make the thing difficult to attain": [65535, 0], "the thing difficult to attain if": [65535, 0], "thing difficult to attain if he": [65535, 0], "difficult to attain if he had": [65535, 0], "to attain if he had been": [65535, 0], "attain if he had been a": [65535, 0], "if he had been a great": [65535, 0], "he had been a great and": [65535, 0], "had been a great and wise": [65535, 0], "been a great and wise philosopher": [65535, 0], "a great and wise philosopher like": [65535, 0], "great and wise philosopher like the": [65535, 0], "and wise philosopher like the writer": [65535, 0], "wise philosopher like the writer of": [65535, 0], "philosopher like the writer of this": [65535, 0], "like the writer of this book": [65535, 0], "the writer of this book he": [65535, 0], "writer of this book he would": [65535, 0], "of this book he would now": [65535, 0], "this book he would now have": [65535, 0], "book he would now have comprehended": [65535, 0], "he would now have comprehended that": [65535, 0], "would now have comprehended that work": [65535, 0], "now have comprehended that work consists": [65535, 0], "have comprehended that work consists of": [65535, 0], "comprehended that work consists of whatever": [65535, 0], "that work consists of whatever a": [65535, 0], "work consists of whatever a body": [65535, 0], "consists of whatever a body is": [65535, 0], "of whatever a body is obliged": [65535, 0], "whatever a body is obliged to": [65535, 0], "a body is obliged to do": [65535, 0], "body is obliged to do and": [65535, 0], "is obliged to do and that": [65535, 0], "obliged to do and that play": [65535, 0], "to do and that play consists": [65535, 0], "do and that play consists of": [65535, 0], "and that play consists of whatever": [65535, 0], "that play consists of whatever a": [65535, 0], "play consists of whatever a body": [65535, 0], "of whatever a body is not": [65535, 0], "whatever a body is not obliged": [65535, 0], "a body is not obliged to": [65535, 0], "body is not obliged to do": [65535, 0], "is not obliged to do and": [65535, 0], "not obliged to do and this": [65535, 0], "obliged to do and this would": [65535, 0], "to do and this would help": [65535, 0], "do and this would help him": [65535, 0], "and this would help him to": [65535, 0], "this would help him to understand": [65535, 0], "would help him to understand why": [65535, 0], "help him to understand why constructing": [65535, 0], "him to understand why constructing artificial": [65535, 0], "to understand why constructing artificial flowers": [65535, 0], "understand why constructing artificial flowers or": [65535, 0], "why constructing artificial flowers or performing": [65535, 0], "constructing artificial flowers or performing on": [65535, 0], "artificial flowers or performing on a": [65535, 0], "flowers or performing on a tread": [65535, 0], "or performing on a tread mill": [65535, 0], "performing on a tread mill is": [65535, 0], "on a tread mill is work": [65535, 0], "a tread mill is work while": [65535, 0], "tread mill is work while rolling": [65535, 0], "mill is work while rolling ten": [65535, 0], "is work while rolling ten pins": [65535, 0], "work while rolling ten pins or": [65535, 0], "while rolling ten pins or climbing": [65535, 0], "rolling ten pins or climbing mont": [65535, 0], "ten pins or climbing mont blanc": [65535, 0], "pins or climbing mont blanc is": [65535, 0], "or climbing mont blanc is only": [65535, 0], "climbing mont blanc is only amusement": [65535, 0], "mont blanc is only amusement there": [65535, 0], "blanc is only amusement there are": [65535, 0], "is only amusement there are wealthy": [65535, 0], "only amusement there are wealthy gentlemen": [65535, 0], "amusement there are wealthy gentlemen in": [65535, 0], "there are wealthy gentlemen in england": [65535, 0], "are wealthy gentlemen in england who": [65535, 0], "wealthy gentlemen in england who drive": [65535, 0], "gentlemen in england who drive four": [65535, 0], "in england who drive four horse": [65535, 0], "england who drive four horse passenger": [65535, 0], "who drive four horse passenger coaches": [65535, 0], "drive four horse passenger coaches twenty": [65535, 0], "four horse passenger coaches twenty or": [65535, 0], "horse passenger coaches twenty or thirty": [65535, 0], "passenger coaches twenty or thirty miles": [65535, 0], "coaches twenty or thirty miles on": [65535, 0], "twenty or thirty miles on a": [65535, 0], "or thirty miles on a daily": [65535, 0], "thirty miles on a daily line": [65535, 0], "miles on a daily line in": [65535, 0], "on a daily line in the": [65535, 0], "a daily line in the summer": [65535, 0], "daily line in the summer because": [65535, 0], "line in the summer because the": [65535, 0], "in the summer because the privilege": [65535, 0], "the summer because the privilege costs": [65535, 0], "summer because the privilege costs them": [65535, 0], "because the privilege costs them considerable": [65535, 0], "the privilege costs them considerable money": [65535, 0], "privilege costs them considerable money but": [65535, 0], "costs them considerable money but if": [65535, 0], "them considerable money but if they": [65535, 0], "considerable money but if they were": [65535, 0], "money but if they were offered": [65535, 0], "but if they were offered wages": [65535, 0], "if they were offered wages for": [65535, 0], "they were offered wages for the": [65535, 0], "were offered wages for the service": [65535, 0], "offered wages for the service that": [65535, 0], "wages for the service that would": [65535, 0], "for the service that would turn": [65535, 0], "the service that would turn it": [65535, 0], "service that would turn it into": [65535, 0], "that would turn it into work": [65535, 0], "would turn it into work and": [65535, 0], "turn it into work and then": [65535, 0], "it into work and then they": [65535, 0], "into work and then they would": [65535, 0], "work and then they would resign": [65535, 0], "and then they would resign the": [65535, 0], "then they would resign the boy": [65535, 0], "they would resign the boy mused": [65535, 0], "would resign the boy mused awhile": [65535, 0], "resign the boy mused awhile over": [65535, 0], "the boy mused awhile over the": [65535, 0], "boy mused awhile over the substantial": [65535, 0], "mused awhile over the substantial change": [65535, 0], "awhile over the substantial change which": [65535, 0], "over the substantial change which had": [65535, 0], "the substantial change which had taken": [65535, 0], "substantial change which had taken place": [65535, 0], "change which had taken place in": [65535, 0], "which had taken place in his": [65535, 0], "had taken place in his worldly": [65535, 0], "taken place in his worldly circumstances": [65535, 0], "place in his worldly circumstances and": [65535, 0], "in his worldly circumstances and then": [65535, 0], "his worldly circumstances and then wended": [65535, 0], "worldly circumstances and then wended toward": [65535, 0], "circumstances and then wended toward headquarters": [65535, 0], "and then wended toward headquarters to": [65535, 0], "then wended toward headquarters to report": [65535, 0], "saturday morning was come and all the": [65535, 0], "morning was come and all the summer": [65535, 0], "was come and all the summer world": [65535, 0], "come and all the summer world was": [65535, 0], "and all the summer world was bright": [65535, 0], "all the summer world was bright and": [65535, 0], "the summer world was bright and fresh": [65535, 0], "summer world was bright and fresh and": [65535, 0], "world was bright and fresh and brimming": [65535, 0], "was bright and fresh and brimming with": [65535, 0], "bright and fresh and brimming with life": [65535, 0], "and fresh and brimming with life there": [65535, 0], "fresh and brimming with life there was": [65535, 0], "and brimming with life there was a": [65535, 0], "brimming with life there was a song": [65535, 0], "with life there was a song in": [65535, 0], "life there was a song in every": [65535, 0], "there was a song in every heart": [65535, 0], "was a song in every heart and": [65535, 0], "a song in every heart and if": [65535, 0], "song in every heart and if the": [65535, 0], "in every heart and if the heart": [65535, 0], "every heart and if the heart was": [65535, 0], "heart and if the heart was young": [65535, 0], "and if the heart was young the": [65535, 0], "if the heart was young the music": [65535, 0], "the heart was young the music issued": [65535, 0], "heart was young the music issued at": [65535, 0], "was young the music issued at the": [65535, 0], "young the music issued at the lips": [65535, 0], "the music issued at the lips there": [65535, 0], "music issued at the lips there was": [65535, 0], "issued at the lips there was cheer": [65535, 0], "at the lips there was cheer in": [65535, 0], "the lips there was cheer in every": [65535, 0], "lips there was cheer in every face": [65535, 0], "there was cheer in every face and": [65535, 0], "was cheer in every face and a": [65535, 0], "cheer in every face and a spring": [65535, 0], "in every face and a spring in": [65535, 0], "every face and a spring in every": [65535, 0], "face and a spring in every step": [65535, 0], "and a spring in every step the": [65535, 0], "a spring in every step the locust": [65535, 0], "spring in every step the locust trees": [65535, 0], "in every step the locust trees were": [65535, 0], "every step the locust trees were in": [65535, 0], "step the locust trees were in bloom": [65535, 0], "the locust trees were in bloom and": [65535, 0], "locust trees were in bloom and the": [65535, 0], "trees were in bloom and the fragrance": [65535, 0], "were in bloom and the fragrance of": [65535, 0], "in bloom and the fragrance of the": [65535, 0], "bloom and the fragrance of the blossoms": [65535, 0], "and the fragrance of the blossoms filled": [65535, 0], "the fragrance of the blossoms filled the": [65535, 0], "fragrance of the blossoms filled the air": [65535, 0], "of the blossoms filled the air cardiff": [65535, 0], "the blossoms filled the air cardiff hill": [65535, 0], "blossoms filled the air cardiff hill beyond": [65535, 0], "filled the air cardiff hill beyond the": [65535, 0], "the air cardiff hill beyond the village": [65535, 0], "air cardiff hill beyond the village and": [65535, 0], "cardiff hill beyond the village and above": [65535, 0], "hill beyond the village and above it": [65535, 0], "beyond the village and above it was": [65535, 0], "the village and above it was green": [65535, 0], "village and above it was green with": [65535, 0], "and above it was green with vegetation": [65535, 0], "above it was green with vegetation and": [65535, 0], "it was green with vegetation and it": [65535, 0], "was green with vegetation and it lay": [65535, 0], "green with vegetation and it lay just": [65535, 0], "with vegetation and it lay just far": [65535, 0], "vegetation and it lay just far enough": [65535, 0], "and it lay just far enough away": [65535, 0], "it lay just far enough away to": [65535, 0], "lay just far enough away to seem": [65535, 0], "just far enough away to seem a": [65535, 0], "far enough away to seem a delectable": [65535, 0], "enough away to seem a delectable land": [65535, 0], "away to seem a delectable land dreamy": [65535, 0], "to seem a delectable land dreamy reposeful": [65535, 0], "seem a delectable land dreamy reposeful and": [65535, 0], "a delectable land dreamy reposeful and inviting": [65535, 0], "delectable land dreamy reposeful and inviting tom": [65535, 0], "land dreamy reposeful and inviting tom appeared": [65535, 0], "dreamy reposeful and inviting tom appeared on": [65535, 0], "reposeful and inviting tom appeared on the": [65535, 0], "and inviting tom appeared on the sidewalk": [65535, 0], "inviting tom appeared on the sidewalk with": [65535, 0], "tom appeared on the sidewalk with a": [65535, 0], "appeared on the sidewalk with a bucket": [65535, 0], "on the sidewalk with a bucket of": [65535, 0], "the sidewalk with a bucket of whitewash": [65535, 0], "sidewalk with a bucket of whitewash and": [65535, 0], "with a bucket of whitewash and a": [65535, 0], "a bucket of whitewash and a long": [65535, 0], "bucket of whitewash and a long handled": [65535, 0], "of whitewash and a long handled brush": [65535, 0], "whitewash and a long handled brush he": [65535, 0], "and a long handled brush he surveyed": [65535, 0], "a long handled brush he surveyed the": [65535, 0], "long handled brush he surveyed the fence": [65535, 0], "handled brush he surveyed the fence and": [65535, 0], "brush he surveyed the fence and all": [65535, 0], "he surveyed the fence and all gladness": [65535, 0], "surveyed the fence and all gladness left": [65535, 0], "the fence and all gladness left him": [65535, 0], "fence and all gladness left him and": [65535, 0], "and all gladness left him and a": [65535, 0], "all gladness left him and a deep": [65535, 0], "gladness left him and a deep melancholy": [65535, 0], "left him and a deep melancholy settled": [65535, 0], "him and a deep melancholy settled down": [65535, 0], "and a deep melancholy settled down upon": [65535, 0], "a deep melancholy settled down upon his": [65535, 0], "deep melancholy settled down upon his spirit": [65535, 0], "melancholy settled down upon his spirit thirty": [65535, 0], "settled down upon his spirit thirty yards": [65535, 0], "down upon his spirit thirty yards of": [65535, 0], "upon his spirit thirty yards of board": [65535, 0], "his spirit thirty yards of board fence": [65535, 0], "spirit thirty yards of board fence nine": [65535, 0], "thirty yards of board fence nine feet": [65535, 0], "yards of board fence nine feet high": [65535, 0], "of board fence nine feet high life": [65535, 0], "board fence nine feet high life to": [65535, 0], "fence nine feet high life to him": [65535, 0], "nine feet high life to him seemed": [65535, 0], "feet high life to him seemed hollow": [65535, 0], "high life to him seemed hollow and": [65535, 0], "life to him seemed hollow and existence": [65535, 0], "to him seemed hollow and existence but": [65535, 0], "him seemed hollow and existence but a": [65535, 0], "seemed hollow and existence but a burden": [65535, 0], "hollow and existence but a burden sighing": [65535, 0], "and existence but a burden sighing he": [65535, 0], "existence but a burden sighing he dipped": [65535, 0], "but a burden sighing he dipped his": [65535, 0], "a burden sighing he dipped his brush": [65535, 0], "burden sighing he dipped his brush and": [65535, 0], "sighing he dipped his brush and passed": [65535, 0], "he dipped his brush and passed it": [65535, 0], "dipped his brush and passed it along": [65535, 0], "his brush and passed it along the": [65535, 0], "brush and passed it along the topmost": [65535, 0], "and passed it along the topmost plank": [65535, 0], "passed it along the topmost plank repeated": [65535, 0], "it along the topmost plank repeated the": [65535, 0], "along the topmost plank repeated the operation": [65535, 0], "the topmost plank repeated the operation did": [65535, 0], "topmost plank repeated the operation did it": [65535, 0], "plank repeated the operation did it again": [65535, 0], "repeated the operation did it again compared": [65535, 0], "the operation did it again compared the": [65535, 0], "operation did it again compared the insignificant": [65535, 0], "did it again compared the insignificant whitewashed": [65535, 0], "it again compared the insignificant whitewashed streak": [65535, 0], "again compared the insignificant whitewashed streak with": [65535, 0], "compared the insignificant whitewashed streak with the": [65535, 0], "the insignificant whitewashed streak with the far": [65535, 0], "insignificant whitewashed streak with the far reaching": [65535, 0], "whitewashed streak with the far reaching continent": [65535, 0], "streak with the far reaching continent of": [65535, 0], "with the far reaching continent of unwhitewashed": [65535, 0], "the far reaching continent of unwhitewashed fence": [65535, 0], "far reaching continent of unwhitewashed fence and": [65535, 0], "reaching continent of unwhitewashed fence and sat": [65535, 0], "continent of unwhitewashed fence and sat down": [65535, 0], "of unwhitewashed fence and sat down on": [65535, 0], "unwhitewashed fence and sat down on a": [65535, 0], "fence and sat down on a tree": [65535, 0], "and sat down on a tree box": [65535, 0], "sat down on a tree box discouraged": [65535, 0], "down on a tree box discouraged jim": [65535, 0], "on a tree box discouraged jim came": [65535, 0], "a tree box discouraged jim came skipping": [65535, 0], "tree box discouraged jim came skipping out": [65535, 0], "box discouraged jim came skipping out at": [65535, 0], "discouraged jim came skipping out at the": [65535, 0], "jim came skipping out at the gate": [65535, 0], "came skipping out at the gate with": [65535, 0], "skipping out at the gate with a": [65535, 0], "out at the gate with a tin": [65535, 0], "at the gate with a tin pail": [65535, 0], "the gate with a tin pail and": [65535, 0], "gate with a tin pail and singing": [65535, 0], "with a tin pail and singing buffalo": [65535, 0], "a tin pail and singing buffalo gals": [65535, 0], "tin pail and singing buffalo gals bringing": [65535, 0], "pail and singing buffalo gals bringing water": [65535, 0], "and singing buffalo gals bringing water from": [65535, 0], "singing buffalo gals bringing water from the": [65535, 0], "buffalo gals bringing water from the town": [65535, 0], "gals bringing water from the town pump": [65535, 0], "bringing water from the town pump had": [65535, 0], "water from the town pump had always": [65535, 0], "from the town pump had always been": [65535, 0], "the town pump had always been hateful": [65535, 0], "town pump had always been hateful work": [65535, 0], "pump had always been hateful work in": [65535, 0], "had always been hateful work in tom's": [65535, 0], "always been hateful work in tom's eyes": [65535, 0], "been hateful work in tom's eyes before": [65535, 0], "hateful work in tom's eyes before but": [65535, 0], "work in tom's eyes before but now": [65535, 0], "in tom's eyes before but now it": [65535, 0], "tom's eyes before but now it did": [65535, 0], "eyes before but now it did not": [65535, 0], "before but now it did not strike": [65535, 0], "but now it did not strike him": [65535, 0], "now it did not strike him so": [65535, 0], "it did not strike him so he": [65535, 0], "did not strike him so he remembered": [65535, 0], "not strike him so he remembered that": [65535, 0], "strike him so he remembered that there": [65535, 0], "him so he remembered that there was": [65535, 0], "so he remembered that there was company": [65535, 0], "he remembered that there was company at": [65535, 0], "remembered that there was company at the": [65535, 0], "that there was company at the pump": [65535, 0], "there was company at the pump white": [65535, 0], "was company at the pump white mulatto": [65535, 0], "company at the pump white mulatto and": [65535, 0], "at the pump white mulatto and negro": [65535, 0], "the pump white mulatto and negro boys": [65535, 0], "pump white mulatto and negro boys and": [65535, 0], "white mulatto and negro boys and girls": [65535, 0], "mulatto and negro boys and girls were": [65535, 0], "and negro boys and girls were always": [65535, 0], "negro boys and girls were always there": [65535, 0], "boys and girls were always there waiting": [65535, 0], "and girls were always there waiting their": [65535, 0], "girls were always there waiting their turns": [65535, 0], "were always there waiting their turns resting": [65535, 0], "always there waiting their turns resting trading": [65535, 0], "there waiting their turns resting trading playthings": [65535, 0], "waiting their turns resting trading playthings quarrelling": [65535, 0], "their turns resting trading playthings quarrelling fighting": [65535, 0], "turns resting trading playthings quarrelling fighting skylarking": [65535, 0], "resting trading playthings quarrelling fighting skylarking and": [65535, 0], "trading playthings quarrelling fighting skylarking and he": [65535, 0], "playthings quarrelling fighting skylarking and he remembered": [65535, 0], "quarrelling fighting skylarking and he remembered that": [65535, 0], "fighting skylarking and he remembered that although": [65535, 0], "skylarking and he remembered that although the": [65535, 0], "and he remembered that although the pump": [65535, 0], "he remembered that although the pump was": [65535, 0], "remembered that although the pump was only": [65535, 0], "that although the pump was only a": [65535, 0], "although the pump was only a hundred": [65535, 0], "the pump was only a hundred and": [65535, 0], "pump was only a hundred and fifty": [65535, 0], "was only a hundred and fifty yards": [65535, 0], "only a hundred and fifty yards off": [65535, 0], "a hundred and fifty yards off jim": [65535, 0], "hundred and fifty yards off jim never": [65535, 0], "and fifty yards off jim never got": [65535, 0], "fifty yards off jim never got back": [65535, 0], "yards off jim never got back with": [65535, 0], "off jim never got back with a": [65535, 0], "jim never got back with a bucket": [65535, 0], "never got back with a bucket of": [65535, 0], "got back with a bucket of water": [65535, 0], "back with a bucket of water under": [65535, 0], "with a bucket of water under an": [65535, 0], "a bucket of water under an hour": [65535, 0], "bucket of water under an hour and": [65535, 0], "of water under an hour and even": [65535, 0], "water under an hour and even then": [65535, 0], "under an hour and even then somebody": [65535, 0], "an hour and even then somebody generally": [65535, 0], "hour and even then somebody generally had": [65535, 0], "and even then somebody generally had to": [65535, 0], "even then somebody generally had to go": [65535, 0], "then somebody generally had to go after": [65535, 0], "somebody generally had to go after him": [65535, 0], "generally had to go after him tom": [65535, 0], "had to go after him tom said": [65535, 0], "to go after him tom said say": [65535, 0], "go after him tom said say jim": [65535, 0], "after him tom said say jim i'll": [65535, 0], "him tom said say jim i'll fetch": [65535, 0], "tom said say jim i'll fetch the": [65535, 0], "said say jim i'll fetch the water": [65535, 0], "say jim i'll fetch the water if": [65535, 0], "jim i'll fetch the water if you'll": [65535, 0], "i'll fetch the water if you'll whitewash": [65535, 0], "fetch the water if you'll whitewash some": [65535, 0], "the water if you'll whitewash some jim": [65535, 0], "water if you'll whitewash some jim shook": [65535, 0], "if you'll whitewash some jim shook his": [65535, 0], "you'll whitewash some jim shook his head": [65535, 0], "whitewash some jim shook his head and": [65535, 0], "some jim shook his head and said": [65535, 0], "jim shook his head and said can't": [65535, 0], "shook his head and said can't mars": [65535, 0], "his head and said can't mars tom": [65535, 0], "head and said can't mars tom ole": [65535, 0], "and said can't mars tom ole missis": [65535, 0], "said can't mars tom ole missis she": [65535, 0], "can't mars tom ole missis she tole": [65535, 0], "mars tom ole missis she tole me": [65535, 0], "tom ole missis she tole me i": [65535, 0], "ole missis she tole me i got": [65535, 0], "missis she tole me i got to": [65535, 0], "she tole me i got to go": [65535, 0], "tole me i got to go an'": [65535, 0], "me i got to go an' git": [65535, 0], "i got to go an' git dis": [65535, 0], "got to go an' git dis water": [65535, 0], "to go an' git dis water an'": [65535, 0], "go an' git dis water an' not": [65535, 0], "an' git dis water an' not stop": [65535, 0], "git dis water an' not stop foolin'": [65535, 0], "dis water an' not stop foolin' roun'": [65535, 0], "water an' not stop foolin' roun' wid": [65535, 0], "an' not stop foolin' roun' wid anybody": [65535, 0], "not stop foolin' roun' wid anybody she": [65535, 0], "stop foolin' roun' wid anybody she say": [65535, 0], "foolin' roun' wid anybody she say she": [65535, 0], "roun' wid anybody she say she spec'": [65535, 0], "wid anybody she say she spec' mars": [65535, 0], "anybody she say she spec' mars tom": [65535, 0], "she say she spec' mars tom gwine": [65535, 0], "say she spec' mars tom gwine to": [65535, 0], "she spec' mars tom gwine to ax": [65535, 0], "spec' mars tom gwine to ax me": [65535, 0], "mars tom gwine to ax me to": [65535, 0], "tom gwine to ax me to whitewash": [65535, 0], "gwine to ax me to whitewash an'": [65535, 0], "to ax me to whitewash an' so": [65535, 0], "ax me to whitewash an' so she": [65535, 0], "me to whitewash an' so she tole": [65535, 0], "to whitewash an' so she tole me": [65535, 0], "whitewash an' so she tole me go": [65535, 0], "an' so she tole me go 'long": [65535, 0], "so she tole me go 'long an'": [65535, 0], "she tole me go 'long an' 'tend": [65535, 0], "tole me go 'long an' 'tend to": [65535, 0], "me go 'long an' 'tend to my": [65535, 0], "go 'long an' 'tend to my own": [65535, 0], "'long an' 'tend to my own business": [65535, 0], "an' 'tend to my own business she": [65535, 0], "'tend to my own business she 'lowed": [65535, 0], "to my own business she 'lowed she'd": [65535, 0], "my own business she 'lowed she'd 'tend": [65535, 0], "own business she 'lowed she'd 'tend to": [65535, 0], "business she 'lowed she'd 'tend to de": [65535, 0], "she 'lowed she'd 'tend to de whitewashin'": [65535, 0], "'lowed she'd 'tend to de whitewashin' oh": [65535, 0], "she'd 'tend to de whitewashin' oh never": [65535, 0], "'tend to de whitewashin' oh never you": [65535, 0], "to de whitewashin' oh never you mind": [65535, 0], "de whitewashin' oh never you mind what": [65535, 0], "whitewashin' oh never you mind what she": [65535, 0], "oh never you mind what she said": [65535, 0], "never you mind what she said jim": [65535, 0], "you mind what she said jim that's": [65535, 0], "mind what she said jim that's the": [65535, 0], "what she said jim that's the way": [65535, 0], "she said jim that's the way she": [65535, 0], "said jim that's the way she always": [65535, 0], "jim that's the way she always talks": [65535, 0], "that's the way she always talks gimme": [65535, 0], "the way she always talks gimme the": [65535, 0], "way she always talks gimme the bucket": [65535, 0], "she always talks gimme the bucket i": [65535, 0], "always talks gimme the bucket i won't": [65535, 0], "talks gimme the bucket i won't be": [65535, 0], "gimme the bucket i won't be gone": [65535, 0], "the bucket i won't be gone only": [65535, 0], "bucket i won't be gone only a": [65535, 0], "i won't be gone only a minute": [65535, 0], "won't be gone only a minute she": [65535, 0], "be gone only a minute she won't": [65535, 0], "gone only a minute she won't ever": [65535, 0], "only a minute she won't ever know": [65535, 0], "a minute she won't ever know oh": [65535, 0], "minute she won't ever know oh i": [65535, 0], "she won't ever know oh i dasn't": [65535, 0], "won't ever know oh i dasn't mars": [65535, 0], "ever know oh i dasn't mars tom": [65535, 0], "know oh i dasn't mars tom ole": [65535, 0], "oh i dasn't mars tom ole missis": [65535, 0], "i dasn't mars tom ole missis she'd": [65535, 0], "dasn't mars tom ole missis she'd take": [65535, 0], "mars tom ole missis she'd take an'": [65535, 0], "tom ole missis she'd take an' tar": [65535, 0], "ole missis she'd take an' tar de": [65535, 0], "missis she'd take an' tar de head": [65535, 0], "she'd take an' tar de head off'n": [65535, 0], "take an' tar de head off'n me": [65535, 0], "an' tar de head off'n me 'deed": [65535, 0], "tar de head off'n me 'deed she": [65535, 0], "de head off'n me 'deed she would": [65535, 0], "head off'n me 'deed she would she": [65535, 0], "off'n me 'deed she would she she": [65535, 0], "me 'deed she would she she never": [65535, 0], "'deed she would she she never licks": [65535, 0], "she would she she never licks anybody": [65535, 0], "would she she never licks anybody whacks": [65535, 0], "she she never licks anybody whacks 'em": [65535, 0], "she never licks anybody whacks 'em over": [65535, 0], "never licks anybody whacks 'em over the": [65535, 0], "licks anybody whacks 'em over the head": [65535, 0], "anybody whacks 'em over the head with": [65535, 0], "whacks 'em over the head with her": [65535, 0], "'em over the head with her thimble": [65535, 0], "over the head with her thimble and": [65535, 0], "the head with her thimble and who": [65535, 0], "head with her thimble and who cares": [65535, 0], "with her thimble and who cares for": [65535, 0], "her thimble and who cares for that": [65535, 0], "thimble and who cares for that i'd": [65535, 0], "and who cares for that i'd like": [65535, 0], "who cares for that i'd like to": [65535, 0], "cares for that i'd like to know": [65535, 0], "for that i'd like to know she": [65535, 0], "that i'd like to know she talks": [65535, 0], "i'd like to know she talks awful": [65535, 0], "like to know she talks awful but": [65535, 0], "to know she talks awful but talk": [65535, 0], "know she talks awful but talk don't": [65535, 0], "she talks awful but talk don't hurt": [65535, 0], "talks awful but talk don't hurt anyways": [65535, 0], "awful but talk don't hurt anyways it": [65535, 0], "but talk don't hurt anyways it don't": [65535, 0], "talk don't hurt anyways it don't if": [65535, 0], "don't hurt anyways it don't if she": [65535, 0], "hurt anyways it don't if she don't": [65535, 0], "anyways it don't if she don't cry": [65535, 0], "it don't if she don't cry jim": [65535, 0], "don't if she don't cry jim i'll": [65535, 0], "if she don't cry jim i'll give": [65535, 0], "she don't cry jim i'll give you": [65535, 0], "don't cry jim i'll give you a": [65535, 0], "cry jim i'll give you a marvel": [65535, 0], "jim i'll give you a marvel i'll": [65535, 0], "i'll give you a marvel i'll give": [65535, 0], "give you a marvel i'll give you": [65535, 0], "you a marvel i'll give you a": [65535, 0], "a marvel i'll give you a white": [65535, 0], "marvel i'll give you a white alley": [65535, 0], "i'll give you a white alley jim": [65535, 0], "give you a white alley jim began": [65535, 0], "you a white alley jim began to": [65535, 0], "a white alley jim began to waver": [65535, 0], "white alley jim began to waver white": [65535, 0], "alley jim began to waver white alley": [65535, 0], "jim began to waver white alley jim": [65535, 0], "began to waver white alley jim and": [65535, 0], "to waver white alley jim and it's": [65535, 0], "waver white alley jim and it's a": [65535, 0], "white alley jim and it's a bully": [65535, 0], "alley jim and it's a bully taw": [65535, 0], "jim and it's a bully taw my": [65535, 0], "and it's a bully taw my dat's": [65535, 0], "it's a bully taw my dat's a": [65535, 0], "a bully taw my dat's a mighty": [65535, 0], "bully taw my dat's a mighty gay": [65535, 0], "taw my dat's a mighty gay marvel": [65535, 0], "my dat's a mighty gay marvel i": [65535, 0], "dat's a mighty gay marvel i tell": [65535, 0], "a mighty gay marvel i tell you": [65535, 0], "mighty gay marvel i tell you but": [65535, 0], "gay marvel i tell you but mars": [65535, 0], "marvel i tell you but mars tom": [65535, 0], "i tell you but mars tom i's": [65535, 0], "tell you but mars tom i's powerful": [65535, 0], "you but mars tom i's powerful 'fraid": [65535, 0], "but mars tom i's powerful 'fraid ole": [65535, 0], "mars tom i's powerful 'fraid ole missis": [65535, 0], "tom i's powerful 'fraid ole missis and": [65535, 0], "i's powerful 'fraid ole missis and besides": [65535, 0], "powerful 'fraid ole missis and besides if": [65535, 0], "'fraid ole missis and besides if you": [65535, 0], "ole missis and besides if you will": [65535, 0], "missis and besides if you will i'll": [65535, 0], "and besides if you will i'll show": [65535, 0], "besides if you will i'll show you": [65535, 0], "if you will i'll show you my": [65535, 0], "you will i'll show you my sore": [65535, 0], "will i'll show you my sore toe": [65535, 0], "i'll show you my sore toe jim": [65535, 0], "show you my sore toe jim was": [65535, 0], "you my sore toe jim was only": [65535, 0], "my sore toe jim was only human": [65535, 0], "sore toe jim was only human this": [65535, 0], "toe jim was only human this attraction": [65535, 0], "jim was only human this attraction was": [65535, 0], "was only human this attraction was too": [65535, 0], "only human this attraction was too much": [65535, 0], "human this attraction was too much for": [65535, 0], "this attraction was too much for him": [65535, 0], "attraction was too much for him he": [65535, 0], "was too much for him he put": [65535, 0], "too much for him he put down": [65535, 0], "much for him he put down his": [65535, 0], "for him he put down his pail": [65535, 0], "him he put down his pail took": [65535, 0], "he put down his pail took the": [65535, 0], "put down his pail took the white": [65535, 0], "down his pail took the white alley": [65535, 0], "his pail took the white alley and": [65535, 0], "pail took the white alley and bent": [65535, 0], "took the white alley and bent over": [65535, 0], "the white alley and bent over the": [65535, 0], "white alley and bent over the toe": [65535, 0], "alley and bent over the toe with": [65535, 0], "and bent over the toe with absorbing": [65535, 0], "bent over the toe with absorbing interest": [65535, 0], "over the toe with absorbing interest while": [65535, 0], "the toe with absorbing interest while the": [65535, 0], "toe with absorbing interest while the bandage": [65535, 0], "with absorbing interest while the bandage was": [65535, 0], "absorbing interest while the bandage was being": [65535, 0], "interest while the bandage was being unwound": [65535, 0], "while the bandage was being unwound in": [65535, 0], "the bandage was being unwound in another": [65535, 0], "bandage was being unwound in another moment": [65535, 0], "was being unwound in another moment he": [65535, 0], "being unwound in another moment he was": [65535, 0], "unwound in another moment he was flying": [65535, 0], "in another moment he was flying down": [65535, 0], "another moment he was flying down the": [65535, 0], "moment he was flying down the street": [65535, 0], "he was flying down the street with": [65535, 0], "was flying down the street with his": [65535, 0], "flying down the street with his pail": [65535, 0], "down the street with his pail and": [65535, 0], "the street with his pail and a": [65535, 0], "street with his pail and a tingling": [65535, 0], "with his pail and a tingling rear": [65535, 0], "his pail and a tingling rear tom": [65535, 0], "pail and a tingling rear tom was": [65535, 0], "and a tingling rear tom was whitewashing": [65535, 0], "a tingling rear tom was whitewashing with": [65535, 0], "tingling rear tom was whitewashing with vigor": [65535, 0], "rear tom was whitewashing with vigor and": [65535, 0], "tom was whitewashing with vigor and aunt": [65535, 0], "was whitewashing with vigor and aunt polly": [65535, 0], "whitewashing with vigor and aunt polly was": [65535, 0], "with vigor and aunt polly was retiring": [65535, 0], "vigor and aunt polly was retiring from": [65535, 0], "and aunt polly was retiring from the": [65535, 0], "aunt polly was retiring from the field": [65535, 0], "polly was retiring from the field with": [65535, 0], "was retiring from the field with a": [65535, 0], "retiring from the field with a slipper": [65535, 0], "from the field with a slipper in": [65535, 0], "the field with a slipper in her": [65535, 0], "field with a slipper in her hand": [65535, 0], "with a slipper in her hand and": [65535, 0], "a slipper in her hand and triumph": [65535, 0], "slipper in her hand and triumph in": [65535, 0], "in her hand and triumph in her": [65535, 0], "her hand and triumph in her eye": [65535, 0], "hand and triumph in her eye but": [65535, 0], "and triumph in her eye but tom's": [65535, 0], "triumph in her eye but tom's energy": [65535, 0], "in her eye but tom's energy did": [65535, 0], "her eye but tom's energy did not": [65535, 0], "eye but tom's energy did not last": [65535, 0], "but tom's energy did not last he": [65535, 0], "tom's energy did not last he began": [65535, 0], "energy did not last he began to": [65535, 0], "did not last he began to think": [65535, 0], "not last he began to think of": [65535, 0], "last he began to think of the": [65535, 0], "he began to think of the fun": [65535, 0], "began to think of the fun he": [65535, 0], "to think of the fun he had": [65535, 0], "think of the fun he had planned": [65535, 0], "of the fun he had planned for": [65535, 0], "the fun he had planned for this": [65535, 0], "fun he had planned for this day": [65535, 0], "he had planned for this day and": [65535, 0], "had planned for this day and his": [65535, 0], "planned for this day and his sorrows": [65535, 0], "for this day and his sorrows multiplied": [65535, 0], "this day and his sorrows multiplied soon": [65535, 0], "day and his sorrows multiplied soon the": [65535, 0], "and his sorrows multiplied soon the free": [65535, 0], "his sorrows multiplied soon the free boys": [65535, 0], "sorrows multiplied soon the free boys would": [65535, 0], "multiplied soon the free boys would come": [65535, 0], "soon the free boys would come tripping": [65535, 0], "the free boys would come tripping along": [65535, 0], "free boys would come tripping along on": [65535, 0], "boys would come tripping along on all": [65535, 0], "would come tripping along on all sorts": [65535, 0], "come tripping along on all sorts of": [65535, 0], "tripping along on all sorts of delicious": [65535, 0], "along on all sorts of delicious expeditions": [65535, 0], "on all sorts of delicious expeditions and": [65535, 0], "all sorts of delicious expeditions and they": [65535, 0], "sorts of delicious expeditions and they would": [65535, 0], "of delicious expeditions and they would make": [65535, 0], "delicious expeditions and they would make a": [65535, 0], "expeditions and they would make a world": [65535, 0], "and they would make a world of": [65535, 0], "they would make a world of fun": [65535, 0], "would make a world of fun of": [65535, 0], "make a world of fun of him": [65535, 0], "a world of fun of him for": [65535, 0], "world of fun of him for having": [65535, 0], "of fun of him for having to": [65535, 0], "fun of him for having to work": [65535, 0], "of him for having to work the": [65535, 0], "him for having to work the very": [65535, 0], "for having to work the very thought": [65535, 0], "having to work the very thought of": [65535, 0], "to work the very thought of it": [65535, 0], "work the very thought of it burnt": [65535, 0], "the very thought of it burnt him": [65535, 0], "very thought of it burnt him like": [65535, 0], "thought of it burnt him like fire": [65535, 0], "of it burnt him like fire he": [65535, 0], "it burnt him like fire he got": [65535, 0], "burnt him like fire he got out": [65535, 0], "him like fire he got out his": [65535, 0], "like fire he got out his worldly": [65535, 0], "fire he got out his worldly wealth": [65535, 0], "he got out his worldly wealth and": [65535, 0], "got out his worldly wealth and examined": [65535, 0], "out his worldly wealth and examined it": [65535, 0], "his worldly wealth and examined it bits": [65535, 0], "worldly wealth and examined it bits of": [65535, 0], "wealth and examined it bits of toys": [65535, 0], "and examined it bits of toys marbles": [65535, 0], "examined it bits of toys marbles and": [65535, 0], "it bits of toys marbles and trash": [65535, 0], "bits of toys marbles and trash enough": [65535, 0], "of toys marbles and trash enough to": [65535, 0], "toys marbles and trash enough to buy": [65535, 0], "marbles and trash enough to buy an": [65535, 0], "and trash enough to buy an exchange": [65535, 0], "trash enough to buy an exchange of": [65535, 0], "enough to buy an exchange of work": [65535, 0], "to buy an exchange of work maybe": [65535, 0], "buy an exchange of work maybe but": [65535, 0], "an exchange of work maybe but not": [65535, 0], "exchange of work maybe but not half": [65535, 0], "of work maybe but not half enough": [65535, 0], "work maybe but not half enough to": [65535, 0], "maybe but not half enough to buy": [65535, 0], "but not half enough to buy so": [65535, 0], "not half enough to buy so much": [65535, 0], "half enough to buy so much as": [65535, 0], "enough to buy so much as half": [65535, 0], "to buy so much as half an": [65535, 0], "buy so much as half an hour": [65535, 0], "so much as half an hour of": [65535, 0], "much as half an hour of pure": [65535, 0], "as half an hour of pure freedom": [65535, 0], "half an hour of pure freedom so": [65535, 0], "an hour of pure freedom so he": [65535, 0], "hour of pure freedom so he returned": [65535, 0], "of pure freedom so he returned his": [65535, 0], "pure freedom so he returned his straitened": [65535, 0], "freedom so he returned his straitened means": [65535, 0], "so he returned his straitened means to": [65535, 0], "he returned his straitened means to his": [65535, 0], "returned his straitened means to his pocket": [65535, 0], "his straitened means to his pocket and": [65535, 0], "straitened means to his pocket and gave": [65535, 0], "means to his pocket and gave up": [65535, 0], "to his pocket and gave up the": [65535, 0], "his pocket and gave up the idea": [65535, 0], "pocket and gave up the idea of": [65535, 0], "and gave up the idea of trying": [65535, 0], "gave up the idea of trying to": [65535, 0], "up the idea of trying to buy": [65535, 0], "the idea of trying to buy the": [65535, 0], "idea of trying to buy the boys": [65535, 0], "of trying to buy the boys at": [65535, 0], "trying to buy the boys at this": [65535, 0], "to buy the boys at this dark": [65535, 0], "buy the boys at this dark and": [65535, 0], "the boys at this dark and hopeless": [65535, 0], "boys at this dark and hopeless moment": [65535, 0], "at this dark and hopeless moment an": [65535, 0], "this dark and hopeless moment an inspiration": [65535, 0], "dark and hopeless moment an inspiration burst": [65535, 0], "and hopeless moment an inspiration burst upon": [65535, 0], "hopeless moment an inspiration burst upon him": [65535, 0], "moment an inspiration burst upon him nothing": [65535, 0], "an inspiration burst upon him nothing less": [65535, 0], "inspiration burst upon him nothing less than": [65535, 0], "burst upon him nothing less than a": [65535, 0], "upon him nothing less than a great": [65535, 0], "him nothing less than a great magnificent": [65535, 0], "nothing less than a great magnificent inspiration": [65535, 0], "less than a great magnificent inspiration he": [65535, 0], "than a great magnificent inspiration he took": [65535, 0], "a great magnificent inspiration he took up": [65535, 0], "great magnificent inspiration he took up his": [65535, 0], "magnificent inspiration he took up his brush": [65535, 0], "inspiration he took up his brush and": [65535, 0], "he took up his brush and went": [65535, 0], "took up his brush and went tranquilly": [65535, 0], "up his brush and went tranquilly to": [65535, 0], "his brush and went tranquilly to work": [65535, 0], "brush and went tranquilly to work ben": [65535, 0], "and went tranquilly to work ben rogers": [65535, 0], "went tranquilly to work ben rogers hove": [65535, 0], "tranquilly to work ben rogers hove in": [65535, 0], "to work ben rogers hove in sight": [65535, 0], "work ben rogers hove in sight presently": [65535, 0], "ben rogers hove in sight presently the": [65535, 0], "rogers hove in sight presently the very": [65535, 0], "hove in sight presently the very boy": [65535, 0], "in sight presently the very boy of": [65535, 0], "sight presently the very boy of all": [65535, 0], "presently the very boy of all boys": [65535, 0], "the very boy of all boys whose": [65535, 0], "very boy of all boys whose ridicule": [65535, 0], "boy of all boys whose ridicule he": [65535, 0], "of all boys whose ridicule he had": [65535, 0], "all boys whose ridicule he had been": [65535, 0], "boys whose ridicule he had been dreading": [65535, 0], "whose ridicule he had been dreading ben's": [65535, 0], "ridicule he had been dreading ben's gait": [65535, 0], "he had been dreading ben's gait was": [65535, 0], "had been dreading ben's gait was the": [65535, 0], "been dreading ben's gait was the hop": [65535, 0], "dreading ben's gait was the hop skip": [65535, 0], "ben's gait was the hop skip and": [65535, 0], "gait was the hop skip and jump": [65535, 0], "was the hop skip and jump proof": [65535, 0], "the hop skip and jump proof enough": [65535, 0], "hop skip and jump proof enough that": [65535, 0], "skip and jump proof enough that his": [65535, 0], "and jump proof enough that his heart": [65535, 0], "jump proof enough that his heart was": [65535, 0], "proof enough that his heart was light": [65535, 0], "enough that his heart was light and": [65535, 0], "that his heart was light and his": [65535, 0], "his heart was light and his anticipations": [65535, 0], "heart was light and his anticipations high": [65535, 0], "was light and his anticipations high he": [65535, 0], "light and his anticipations high he was": [65535, 0], "and his anticipations high he was eating": [65535, 0], "his anticipations high he was eating an": [65535, 0], "anticipations high he was eating an apple": [65535, 0], "high he was eating an apple and": [65535, 0], "he was eating an apple and giving": [65535, 0], "was eating an apple and giving a": [65535, 0], "eating an apple and giving a long": [65535, 0], "an apple and giving a long melodious": [65535, 0], "apple and giving a long melodious whoop": [65535, 0], "and giving a long melodious whoop at": [65535, 0], "giving a long melodious whoop at intervals": [65535, 0], "a long melodious whoop at intervals followed": [65535, 0], "long melodious whoop at intervals followed by": [65535, 0], "melodious whoop at intervals followed by a": [65535, 0], "whoop at intervals followed by a deep": [65535, 0], "at intervals followed by a deep toned": [65535, 0], "intervals followed by a deep toned ding": [65535, 0], "followed by a deep toned ding dong": [65535, 0], "by a deep toned ding dong dong": [65535, 0], "a deep toned ding dong dong ding": [65535, 0], "deep toned ding dong dong ding dong": [65535, 0], "toned ding dong dong ding dong dong": [65535, 0], "ding dong dong ding dong dong for": [65535, 0], "dong dong ding dong dong for he": [65535, 0], "dong ding dong dong for he was": [65535, 0], "ding dong dong for he was personating": [65535, 0], "dong dong for he was personating a": [65535, 0], "dong for he was personating a steamboat": [65535, 0], "for he was personating a steamboat as": [65535, 0], "he was personating a steamboat as he": [65535, 0], "was personating a steamboat as he drew": [65535, 0], "personating a steamboat as he drew near": [65535, 0], "a steamboat as he drew near he": [65535, 0], "steamboat as he drew near he slackened": [65535, 0], "as he drew near he slackened speed": [65535, 0], "he drew near he slackened speed took": [65535, 0], "drew near he slackened speed took the": [65535, 0], "near he slackened speed took the middle": [65535, 0], "he slackened speed took the middle of": [65535, 0], "slackened speed took the middle of the": [65535, 0], "speed took the middle of the street": [65535, 0], "took the middle of the street leaned": [65535, 0], "the middle of the street leaned far": [65535, 0], "middle of the street leaned far over": [65535, 0], "of the street leaned far over to": [65535, 0], "the street leaned far over to starboard": [65535, 0], "street leaned far over to starboard and": [65535, 0], "leaned far over to starboard and rounded": [65535, 0], "far over to starboard and rounded to": [65535, 0], "over to starboard and rounded to ponderously": [65535, 0], "to starboard and rounded to ponderously and": [65535, 0], "starboard and rounded to ponderously and with": [65535, 0], "and rounded to ponderously and with laborious": [65535, 0], "rounded to ponderously and with laborious pomp": [65535, 0], "to ponderously and with laborious pomp and": [65535, 0], "ponderously and with laborious pomp and circumstance": [65535, 0], "and with laborious pomp and circumstance for": [65535, 0], "with laborious pomp and circumstance for he": [65535, 0], "laborious pomp and circumstance for he was": [65535, 0], "pomp and circumstance for he was personating": [65535, 0], "and circumstance for he was personating the": [65535, 0], "circumstance for he was personating the big": [65535, 0], "for he was personating the big missouri": [65535, 0], "he was personating the big missouri and": [65535, 0], "was personating the big missouri and considered": [65535, 0], "personating the big missouri and considered himself": [65535, 0], "the big missouri and considered himself to": [65535, 0], "big missouri and considered himself to be": [65535, 0], "missouri and considered himself to be drawing": [65535, 0], "and considered himself to be drawing nine": [65535, 0], "considered himself to be drawing nine feet": [65535, 0], "himself to be drawing nine feet of": [65535, 0], "to be drawing nine feet of water": [65535, 0], "be drawing nine feet of water he": [65535, 0], "drawing nine feet of water he was": [65535, 0], "nine feet of water he was boat": [65535, 0], "feet of water he was boat and": [65535, 0], "of water he was boat and captain": [65535, 0], "water he was boat and captain and": [65535, 0], "he was boat and captain and engine": [65535, 0], "was boat and captain and engine bells": [65535, 0], "boat and captain and engine bells combined": [65535, 0], "and captain and engine bells combined so": [65535, 0], "captain and engine bells combined so he": [65535, 0], "and engine bells combined so he had": [65535, 0], "engine bells combined so he had to": [65535, 0], "bells combined so he had to imagine": [65535, 0], "combined so he had to imagine himself": [65535, 0], "so he had to imagine himself standing": [65535, 0], "he had to imagine himself standing on": [65535, 0], "had to imagine himself standing on his": [65535, 0], "to imagine himself standing on his own": [65535, 0], "imagine himself standing on his own hurricane": [65535, 0], "himself standing on his own hurricane deck": [65535, 0], "standing on his own hurricane deck giving": [65535, 0], "on his own hurricane deck giving the": [65535, 0], "his own hurricane deck giving the orders": [65535, 0], "own hurricane deck giving the orders and": [65535, 0], "hurricane deck giving the orders and executing": [65535, 0], "deck giving the orders and executing them": [65535, 0], "giving the orders and executing them stop": [65535, 0], "the orders and executing them stop her": [65535, 0], "orders and executing them stop her sir": [65535, 0], "and executing them stop her sir ting": [65535, 0], "executing them stop her sir ting a": [65535, 0], "them stop her sir ting a ling": [65535, 0], "stop her sir ting a ling ling": [65535, 0], "her sir ting a ling ling the": [65535, 0], "sir ting a ling ling the headway": [65535, 0], "ting a ling ling the headway ran": [65535, 0], "a ling ling the headway ran almost": [65535, 0], "ling ling the headway ran almost out": [65535, 0], "ling the headway ran almost out and": [65535, 0], "the headway ran almost out and he": [65535, 0], "headway ran almost out and he drew": [65535, 0], "ran almost out and he drew up": [65535, 0], "almost out and he drew up slowly": [65535, 0], "out and he drew up slowly toward": [65535, 0], "and he drew up slowly toward the": [65535, 0], "he drew up slowly toward the sidewalk": [65535, 0], "drew up slowly toward the sidewalk ship": [65535, 0], "up slowly toward the sidewalk ship up": [65535, 0], "slowly toward the sidewalk ship up to": [65535, 0], "toward the sidewalk ship up to back": [65535, 0], "the sidewalk ship up to back ting": [65535, 0], "sidewalk ship up to back ting a": [65535, 0], "ship up to back ting a ling": [65535, 0], "up to back ting a ling ling": [65535, 0], "to back ting a ling ling his": [65535, 0], "back ting a ling ling his arms": [65535, 0], "ting a ling ling his arms straightened": [65535, 0], "a ling ling his arms straightened and": [65535, 0], "ling ling his arms straightened and stiffened": [65535, 0], "ling his arms straightened and stiffened down": [65535, 0], "his arms straightened and stiffened down his": [65535, 0], "arms straightened and stiffened down his sides": [65535, 0], "straightened and stiffened down his sides set": [65535, 0], "and stiffened down his sides set her": [65535, 0], "stiffened down his sides set her back": [65535, 0], "down his sides set her back on": [65535, 0], "his sides set her back on the": [65535, 0], "sides set her back on the stabboard": [65535, 0], "set her back on the stabboard ting": [65535, 0], "her back on the stabboard ting a": [65535, 0], "back on the stabboard ting a ling": [65535, 0], "on the stabboard ting a ling ling": [65535, 0], "the stabboard ting a ling ling chow": [65535, 0], "stabboard ting a ling ling chow ch": [65535, 0], "ting a ling ling chow ch chow": [65535, 0], "a ling ling chow ch chow wow": [65535, 0], "ling ling chow ch chow wow chow": [65535, 0], "ling chow ch chow wow chow his": [65535, 0], "chow ch chow wow chow his right": [65535, 0], "ch chow wow chow his right hand": [65535, 0], "chow wow chow his right hand meantime": [65535, 0], "wow chow his right hand meantime describing": [65535, 0], "chow his right hand meantime describing stately": [65535, 0], "his right hand meantime describing stately circles": [65535, 0], "right hand meantime describing stately circles for": [65535, 0], "hand meantime describing stately circles for it": [65535, 0], "meantime describing stately circles for it was": [65535, 0], "describing stately circles for it was representing": [65535, 0], "stately circles for it was representing a": [65535, 0], "circles for it was representing a forty": [65535, 0], "for it was representing a forty foot": [65535, 0], "it was representing a forty foot wheel": [65535, 0], "was representing a forty foot wheel let": [65535, 0], "representing a forty foot wheel let her": [65535, 0], "a forty foot wheel let her go": [65535, 0], "forty foot wheel let her go back": [65535, 0], "foot wheel let her go back on": [65535, 0], "wheel let her go back on the": [65535, 0], "let her go back on the labboard": [65535, 0], "her go back on the labboard ting": [65535, 0], "go back on the labboard ting a": [65535, 0], "back on the labboard ting a ling": [65535, 0], "on the labboard ting a ling ling": [65535, 0], "the labboard ting a ling ling chow": [65535, 0], "labboard ting a ling ling chow ch": [65535, 0], "a ling ling chow ch chow chow": [65535, 0], "ling ling chow ch chow chow the": [65535, 0], "ling chow ch chow chow the left": [65535, 0], "chow ch chow chow the left hand": [65535, 0], "ch chow chow the left hand began": [65535, 0], "chow chow the left hand began to": [65535, 0], "chow the left hand began to describe": [65535, 0], "the left hand began to describe circles": [65535, 0], "left hand began to describe circles stop": [65535, 0], "hand began to describe circles stop the": [65535, 0], "began to describe circles stop the stabboard": [65535, 0], "to describe circles stop the stabboard ting": [65535, 0], "describe circles stop the stabboard ting a": [65535, 0], "circles stop the stabboard ting a ling": [65535, 0], "stop the stabboard ting a ling ling": [65535, 0], "the stabboard ting a ling ling stop": [65535, 0], "stabboard ting a ling ling stop the": [65535, 0], "ting a ling ling stop the labboard": [65535, 0], "a ling ling stop the labboard come": [65535, 0], "ling ling stop the labboard come ahead": [65535, 0], "ling stop the labboard come ahead on": [65535, 0], "stop the labboard come ahead on the": [65535, 0], "the labboard come ahead on the stabboard": [65535, 0], "labboard come ahead on the stabboard stop": [65535, 0], "come ahead on the stabboard stop her": [65535, 0], "ahead on the stabboard stop her let": [65535, 0], "on the stabboard stop her let your": [65535, 0], "the stabboard stop her let your outside": [65535, 0], "stabboard stop her let your outside turn": [65535, 0], "stop her let your outside turn over": [65535, 0], "her let your outside turn over slow": [65535, 0], "let your outside turn over slow ting": [65535, 0], "your outside turn over slow ting a": [65535, 0], "outside turn over slow ting a ling": [65535, 0], "turn over slow ting a ling ling": [65535, 0], "over slow ting a ling ling chow": [65535, 0], "slow ting a ling ling chow ow": [65535, 0], "ting a ling ling chow ow ow": [65535, 0], "a ling ling chow ow ow get": [65535, 0], "ling ling chow ow ow get out": [65535, 0], "ling chow ow ow get out that": [65535, 0], "chow ow ow get out that head": [65535, 0], "ow ow get out that head line": [65535, 0], "ow get out that head line lively": [65535, 0], "get out that head line lively now": [65535, 0], "out that head line lively now come": [65535, 0], "that head line lively now come out": [65535, 0], "head line lively now come out with": [65535, 0], "line lively now come out with your": [65535, 0], "lively now come out with your spring": [65535, 0], "now come out with your spring line": [65535, 0], "come out with your spring line what're": [65535, 0], "out with your spring line what're you": [65535, 0], "with your spring line what're you about": [65535, 0], "your spring line what're you about there": [65535, 0], "spring line what're you about there take": [65535, 0], "line what're you about there take a": [65535, 0], "what're you about there take a turn": [65535, 0], "you about there take a turn round": [65535, 0], "about there take a turn round that": [65535, 0], "there take a turn round that stump": [65535, 0], "take a turn round that stump with": [65535, 0], "a turn round that stump with the": [65535, 0], "turn round that stump with the bight": [65535, 0], "round that stump with the bight of": [65535, 0], "that stump with the bight of it": [65535, 0], "stump with the bight of it stand": [65535, 0], "with the bight of it stand by": [65535, 0], "the bight of it stand by that": [65535, 0], "bight of it stand by that stage": [65535, 0], "of it stand by that stage now": [65535, 0], "it stand by that stage now let": [65535, 0], "stand by that stage now let her": [65535, 0], "by that stage now let her go": [65535, 0], "that stage now let her go done": [65535, 0], "stage now let her go done with": [65535, 0], "now let her go done with the": [65535, 0], "let her go done with the engines": [65535, 0], "her go done with the engines sir": [65535, 0], "go done with the engines sir ting": [65535, 0], "done with the engines sir ting a": [65535, 0], "with the engines sir ting a ling": [65535, 0], "the engines sir ting a ling ling": [65535, 0], "engines sir ting a ling ling sh't": [65535, 0], "sir ting a ling ling sh't s'h't": [65535, 0], "ting a ling ling sh't s'h't sh't": [65535, 0], "a ling ling sh't s'h't sh't trying": [65535, 0], "ling ling sh't s'h't sh't trying the": [65535, 0], "ling sh't s'h't sh't trying the gauge": [65535, 0], "sh't s'h't sh't trying the gauge cocks": [65535, 0], "s'h't sh't trying the gauge cocks tom": [65535, 0], "sh't trying the gauge cocks tom went": [65535, 0], "trying the gauge cocks tom went on": [65535, 0], "the gauge cocks tom went on whitewashing": [65535, 0], "gauge cocks tom went on whitewashing paid": [65535, 0], "cocks tom went on whitewashing paid no": [65535, 0], "tom went on whitewashing paid no attention": [65535, 0], "went on whitewashing paid no attention to": [65535, 0], "on whitewashing paid no attention to the": [65535, 0], "whitewashing paid no attention to the steamboat": [65535, 0], "paid no attention to the steamboat ben": [65535, 0], "no attention to the steamboat ben stared": [65535, 0], "attention to the steamboat ben stared a": [65535, 0], "to the steamboat ben stared a moment": [65535, 0], "the steamboat ben stared a moment and": [65535, 0], "steamboat ben stared a moment and then": [65535, 0], "ben stared a moment and then said": [65535, 0], "stared a moment and then said hi": [65535, 0], "a moment and then said hi yi": [65535, 0], "moment and then said hi yi you're": [65535, 0], "and then said hi yi you're up": [65535, 0], "then said hi yi you're up a": [65535, 0], "said hi yi you're up a stump": [65535, 0], "hi yi you're up a stump ain't": [65535, 0], "yi you're up a stump ain't you": [65535, 0], "you're up a stump ain't you no": [65535, 0], "up a stump ain't you no answer": [65535, 0], "a stump ain't you no answer tom": [65535, 0], "stump ain't you no answer tom surveyed": [65535, 0], "ain't you no answer tom surveyed his": [65535, 0], "you no answer tom surveyed his last": [65535, 0], "no answer tom surveyed his last touch": [65535, 0], "answer tom surveyed his last touch with": [65535, 0], "tom surveyed his last touch with the": [65535, 0], "surveyed his last touch with the eye": [65535, 0], "his last touch with the eye of": [65535, 0], "last touch with the eye of an": [65535, 0], "touch with the eye of an artist": [65535, 0], "with the eye of an artist then": [65535, 0], "the eye of an artist then he": [65535, 0], "eye of an artist then he gave": [65535, 0], "of an artist then he gave his": [65535, 0], "an artist then he gave his brush": [65535, 0], "artist then he gave his brush another": [65535, 0], "then he gave his brush another gentle": [65535, 0], "he gave his brush another gentle sweep": [65535, 0], "gave his brush another gentle sweep and": [65535, 0], "his brush another gentle sweep and surveyed": [65535, 0], "brush another gentle sweep and surveyed the": [65535, 0], "another gentle sweep and surveyed the result": [65535, 0], "gentle sweep and surveyed the result as": [65535, 0], "sweep and surveyed the result as before": [65535, 0], "and surveyed the result as before ben": [65535, 0], "surveyed the result as before ben ranged": [65535, 0], "the result as before ben ranged up": [65535, 0], "result as before ben ranged up alongside": [65535, 0], "as before ben ranged up alongside of": [65535, 0], "before ben ranged up alongside of him": [65535, 0], "ben ranged up alongside of him tom's": [65535, 0], "ranged up alongside of him tom's mouth": [65535, 0], "up alongside of him tom's mouth watered": [65535, 0], "alongside of him tom's mouth watered for": [65535, 0], "of him tom's mouth watered for the": [65535, 0], "him tom's mouth watered for the apple": [65535, 0], "tom's mouth watered for the apple but": [65535, 0], "mouth watered for the apple but he": [65535, 0], "watered for the apple but he stuck": [65535, 0], "for the apple but he stuck to": [65535, 0], "the apple but he stuck to his": [65535, 0], "apple but he stuck to his work": [65535, 0], "but he stuck to his work ben": [65535, 0], "he stuck to his work ben said": [65535, 0], "stuck to his work ben said hello": [65535, 0], "to his work ben said hello old": [65535, 0], "his work ben said hello old chap": [65535, 0], "work ben said hello old chap you": [65535, 0], "ben said hello old chap you got": [65535, 0], "said hello old chap you got to": [65535, 0], "hello old chap you got to work": [65535, 0], "old chap you got to work hey": [65535, 0], "chap you got to work hey tom": [65535, 0], "you got to work hey tom wheeled": [65535, 0], "got to work hey tom wheeled suddenly": [65535, 0], "to work hey tom wheeled suddenly and": [65535, 0], "work hey tom wheeled suddenly and said": [65535, 0], "hey tom wheeled suddenly and said why": [65535, 0], "tom wheeled suddenly and said why it's": [65535, 0], "wheeled suddenly and said why it's you": [65535, 0], "suddenly and said why it's you ben": [65535, 0], "and said why it's you ben i": [65535, 0], "said why it's you ben i warn't": [65535, 0], "why it's you ben i warn't noticing": [65535, 0], "it's you ben i warn't noticing say": [65535, 0], "you ben i warn't noticing say i'm": [65535, 0], "ben i warn't noticing say i'm going": [65535, 0], "i warn't noticing say i'm going in": [65535, 0], "warn't noticing say i'm going in a": [65535, 0], "noticing say i'm going in a swimming": [65535, 0], "say i'm going in a swimming i": [65535, 0], "i'm going in a swimming i am": [65535, 0], "going in a swimming i am don't": [65535, 0], "in a swimming i am don't you": [65535, 0], "a swimming i am don't you wish": [65535, 0], "swimming i am don't you wish you": [65535, 0], "i am don't you wish you could": [65535, 0], "am don't you wish you could but": [65535, 0], "don't you wish you could but of": [65535, 0], "you wish you could but of course": [65535, 0], "wish you could but of course you'd": [65535, 0], "you could but of course you'd druther": [65535, 0], "could but of course you'd druther work": [65535, 0], "but of course you'd druther work wouldn't": [65535, 0], "of course you'd druther work wouldn't you": [65535, 0], "course you'd druther work wouldn't you course": [65535, 0], "you'd druther work wouldn't you course you": [65535, 0], "druther work wouldn't you course you would": [65535, 0], "work wouldn't you course you would tom": [65535, 0], "wouldn't you course you would tom contemplated": [65535, 0], "you course you would tom contemplated the": [65535, 0], "course you would tom contemplated the boy": [65535, 0], "you would tom contemplated the boy a": [65535, 0], "would tom contemplated the boy a bit": [65535, 0], "tom contemplated the boy a bit and": [65535, 0], "contemplated the boy a bit and said": [65535, 0], "the boy a bit and said what": [65535, 0], "boy a bit and said what do": [65535, 0], "a bit and said what do you": [65535, 0], "bit and said what do you call": [65535, 0], "and said what do you call work": [65535, 0], "said what do you call work why": [65535, 0], "what do you call work why ain't": [65535, 0], "do you call work why ain't that": [65535, 0], "you call work why ain't that work": [65535, 0], "call work why ain't that work tom": [65535, 0], "work why ain't that work tom resumed": [65535, 0], "why ain't that work tom resumed his": [65535, 0], "ain't that work tom resumed his whitewashing": [65535, 0], "that work tom resumed his whitewashing and": [65535, 0], "work tom resumed his whitewashing and answered": [65535, 0], "tom resumed his whitewashing and answered carelessly": [65535, 0], "resumed his whitewashing and answered carelessly well": [65535, 0], "his whitewashing and answered carelessly well maybe": [65535, 0], "whitewashing and answered carelessly well maybe it": [65535, 0], "and answered carelessly well maybe it is": [65535, 0], "answered carelessly well maybe it is and": [65535, 0], "carelessly well maybe it is and maybe": [65535, 0], "well maybe it is and maybe it": [65535, 0], "maybe it is and maybe it ain't": [65535, 0], "it is and maybe it ain't all": [65535, 0], "is and maybe it ain't all i": [65535, 0], "and maybe it ain't all i know": [65535, 0], "maybe it ain't all i know is": [65535, 0], "it ain't all i know is it": [65535, 0], "ain't all i know is it suits": [65535, 0], "all i know is it suits tom": [65535, 0], "i know is it suits tom sawyer": [65535, 0], "know is it suits tom sawyer oh": [65535, 0], "is it suits tom sawyer oh come": [65535, 0], "it suits tom sawyer oh come now": [65535, 0], "suits tom sawyer oh come now you": [65535, 0], "tom sawyer oh come now you don't": [65535, 0], "sawyer oh come now you don't mean": [65535, 0], "oh come now you don't mean to": [65535, 0], "come now you don't mean to let": [65535, 0], "now you don't mean to let on": [65535, 0], "you don't mean to let on that": [65535, 0], "don't mean to let on that you": [65535, 0], "mean to let on that you like": [65535, 0], "to let on that you like it": [65535, 0], "let on that you like it the": [65535, 0], "on that you like it the brush": [65535, 0], "that you like it the brush continued": [65535, 0], "you like it the brush continued to": [65535, 0], "like it the brush continued to move": [65535, 0], "it the brush continued to move like": [65535, 0], "the brush continued to move like it": [65535, 0], "brush continued to move like it well": [65535, 0], "continued to move like it well i": [65535, 0], "to move like it well i don't": [65535, 0], "move like it well i don't see": [65535, 0], "like it well i don't see why": [65535, 0], "it well i don't see why i": [65535, 0], "well i don't see why i oughtn't": [65535, 0], "i don't see why i oughtn't to": [65535, 0], "don't see why i oughtn't to like": [65535, 0], "see why i oughtn't to like it": [65535, 0], "why i oughtn't to like it does": [65535, 0], "i oughtn't to like it does a": [65535, 0], "oughtn't to like it does a boy": [65535, 0], "to like it does a boy get": [65535, 0], "like it does a boy get a": [65535, 0], "it does a boy get a chance": [65535, 0], "does a boy get a chance to": [65535, 0], "a boy get a chance to whitewash": [65535, 0], "boy get a chance to whitewash a": [65535, 0], "get a chance to whitewash a fence": [65535, 0], "a chance to whitewash a fence every": [65535, 0], "chance to whitewash a fence every day": [65535, 0], "to whitewash a fence every day that": [65535, 0], "whitewash a fence every day that put": [65535, 0], "a fence every day that put the": [65535, 0], "fence every day that put the thing": [65535, 0], "every day that put the thing in": [65535, 0], "day that put the thing in a": [65535, 0], "that put the thing in a new": [65535, 0], "put the thing in a new light": [65535, 0], "the thing in a new light ben": [65535, 0], "thing in a new light ben stopped": [65535, 0], "in a new light ben stopped nibbling": [65535, 0], "a new light ben stopped nibbling his": [65535, 0], "new light ben stopped nibbling his apple": [65535, 0], "light ben stopped nibbling his apple tom": [65535, 0], "ben stopped nibbling his apple tom swept": [65535, 0], "stopped nibbling his apple tom swept his": [65535, 0], "nibbling his apple tom swept his brush": [65535, 0], "his apple tom swept his brush daintily": [65535, 0], "apple tom swept his brush daintily back": [65535, 0], "tom swept his brush daintily back and": [65535, 0], "swept his brush daintily back and forth": [65535, 0], "his brush daintily back and forth stepped": [65535, 0], "brush daintily back and forth stepped back": [65535, 0], "daintily back and forth stepped back to": [65535, 0], "back and forth stepped back to note": [65535, 0], "and forth stepped back to note the": [65535, 0], "forth stepped back to note the effect": [65535, 0], "stepped back to note the effect added": [65535, 0], "back to note the effect added a": [65535, 0], "to note the effect added a touch": [65535, 0], "note the effect added a touch here": [65535, 0], "the effect added a touch here and": [65535, 0], "effect added a touch here and there": [65535, 0], "added a touch here and there criticised": [65535, 0], "a touch here and there criticised the": [65535, 0], "touch here and there criticised the effect": [65535, 0], "here and there criticised the effect again": [65535, 0], "and there criticised the effect again ben": [65535, 0], "there criticised the effect again ben watching": [65535, 0], "criticised the effect again ben watching every": [65535, 0], "the effect again ben watching every move": [65535, 0], "effect again ben watching every move and": [65535, 0], "again ben watching every move and getting": [65535, 0], "ben watching every move and getting more": [65535, 0], "watching every move and getting more and": [65535, 0], "every move and getting more and more": [65535, 0], "move and getting more and more interested": [65535, 0], "and getting more and more interested more": [65535, 0], "getting more and more interested more and": [65535, 0], "more and more interested more and more": [65535, 0], "and more interested more and more absorbed": [65535, 0], "more interested more and more absorbed presently": [65535, 0], "interested more and more absorbed presently he": [65535, 0], "more and more absorbed presently he said": [65535, 0], "and more absorbed presently he said say": [65535, 0], "more absorbed presently he said say tom": [65535, 0], "absorbed presently he said say tom let": [65535, 0], "presently he said say tom let me": [65535, 0], "he said say tom let me whitewash": [65535, 0], "said say tom let me whitewash a": [65535, 0], "say tom let me whitewash a little": [65535, 0], "tom let me whitewash a little tom": [65535, 0], "let me whitewash a little tom considered": [65535, 0], "me whitewash a little tom considered was": [65535, 0], "whitewash a little tom considered was about": [65535, 0], "a little tom considered was about to": [65535, 0], "little tom considered was about to consent": [65535, 0], "tom considered was about to consent but": [65535, 0], "considered was about to consent but he": [65535, 0], "was about to consent but he altered": [65535, 0], "about to consent but he altered his": [65535, 0], "to consent but he altered his mind": [65535, 0], "consent but he altered his mind no": [65535, 0], "but he altered his mind no no": [65535, 0], "he altered his mind no no i": [65535, 0], "altered his mind no no i reckon": [65535, 0], "his mind no no i reckon it": [65535, 0], "mind no no i reckon it wouldn't": [65535, 0], "no no i reckon it wouldn't hardly": [65535, 0], "no i reckon it wouldn't hardly do": [65535, 0], "i reckon it wouldn't hardly do ben": [65535, 0], "reckon it wouldn't hardly do ben you": [65535, 0], "it wouldn't hardly do ben you see": [65535, 0], "wouldn't hardly do ben you see aunt": [65535, 0], "hardly do ben you see aunt polly's": [65535, 0], "do ben you see aunt polly's awful": [65535, 0], "ben you see aunt polly's awful particular": [65535, 0], "you see aunt polly's awful particular about": [65535, 0], "see aunt polly's awful particular about this": [65535, 0], "aunt polly's awful particular about this fence": [65535, 0], "polly's awful particular about this fence right": [65535, 0], "awful particular about this fence right here": [65535, 0], "particular about this fence right here on": [65535, 0], "about this fence right here on the": [65535, 0], "this fence right here on the street": [65535, 0], "fence right here on the street you": [65535, 0], "right here on the street you know": [65535, 0], "here on the street you know but": [65535, 0], "on the street you know but if": [65535, 0], "the street you know but if it": [65535, 0], "street you know but if it was": [65535, 0], "you know but if it was the": [65535, 0], "know but if it was the back": [65535, 0], "but if it was the back fence": [65535, 0], "if it was the back fence i": [65535, 0], "it was the back fence i wouldn't": [65535, 0], "was the back fence i wouldn't mind": [65535, 0], "the back fence i wouldn't mind and": [65535, 0], "back fence i wouldn't mind and she": [65535, 0], "fence i wouldn't mind and she wouldn't": [65535, 0], "i wouldn't mind and she wouldn't yes": [65535, 0], "wouldn't mind and she wouldn't yes she's": [65535, 0], "mind and she wouldn't yes she's awful": [65535, 0], "and she wouldn't yes she's awful particular": [65535, 0], "she wouldn't yes she's awful particular about": [65535, 0], "wouldn't yes she's awful particular about this": [65535, 0], "yes she's awful particular about this fence": [65535, 0], "she's awful particular about this fence it's": [65535, 0], "awful particular about this fence it's got": [65535, 0], "particular about this fence it's got to": [65535, 0], "about this fence it's got to be": [65535, 0], "this fence it's got to be done": [65535, 0], "fence it's got to be done very": [65535, 0], "it's got to be done very careful": [65535, 0], "got to be done very careful i": [65535, 0], "to be done very careful i reckon": [65535, 0], "be done very careful i reckon there": [65535, 0], "done very careful i reckon there ain't": [65535, 0], "very careful i reckon there ain't one": [65535, 0], "careful i reckon there ain't one boy": [65535, 0], "i reckon there ain't one boy in": [65535, 0], "reckon there ain't one boy in a": [65535, 0], "there ain't one boy in a thousand": [65535, 0], "ain't one boy in a thousand maybe": [65535, 0], "one boy in a thousand maybe two": [65535, 0], "boy in a thousand maybe two thousand": [65535, 0], "in a thousand maybe two thousand that": [65535, 0], "a thousand maybe two thousand that can": [65535, 0], "thousand maybe two thousand that can do": [65535, 0], "maybe two thousand that can do it": [65535, 0], "two thousand that can do it the": [65535, 0], "thousand that can do it the way": [65535, 0], "that can do it the way it's": [65535, 0], "can do it the way it's got": [65535, 0], "do it the way it's got to": [65535, 0], "it the way it's got to be": [65535, 0], "the way it's got to be done": [65535, 0], "way it's got to be done no": [65535, 0], "it's got to be done no is": [65535, 0], "got to be done no is that": [65535, 0], "to be done no is that so": [65535, 0], "be done no is that so oh": [65535, 0], "done no is that so oh come": [65535, 0], "no is that so oh come now": [65535, 0], "is that so oh come now lemme": [65535, 0], "that so oh come now lemme just": [65535, 0], "so oh come now lemme just try": [65535, 0], "oh come now lemme just try only": [65535, 0], "come now lemme just try only just": [65535, 0], "now lemme just try only just a": [65535, 0], "lemme just try only just a little": [65535, 0], "just try only just a little i'd": [65535, 0], "try only just a little i'd let": [65535, 0], "only just a little i'd let you": [65535, 0], "just a little i'd let you if": [65535, 0], "a little i'd let you if you": [65535, 0], "little i'd let you if you was": [65535, 0], "i'd let you if you was me": [65535, 0], "let you if you was me tom": [65535, 0], "you if you was me tom ben": [65535, 0], "if you was me tom ben i'd": [65535, 0], "you was me tom ben i'd like": [65535, 0], "was me tom ben i'd like to": [65535, 0], "me tom ben i'd like to honest": [65535, 0], "tom ben i'd like to honest injun": [65535, 0], "ben i'd like to honest injun but": [65535, 0], "i'd like to honest injun but aunt": [65535, 0], "like to honest injun but aunt polly": [65535, 0], "to honest injun but aunt polly well": [65535, 0], "honest injun but aunt polly well jim": [65535, 0], "injun but aunt polly well jim wanted": [65535, 0], "but aunt polly well jim wanted to": [65535, 0], "aunt polly well jim wanted to do": [65535, 0], "polly well jim wanted to do it": [65535, 0], "well jim wanted to do it but": [65535, 0], "jim wanted to do it but she": [65535, 0], "wanted to do it but she wouldn't": [65535, 0], "to do it but she wouldn't let": [65535, 0], "do it but she wouldn't let him": [65535, 0], "it but she wouldn't let him sid": [65535, 0], "but she wouldn't let him sid wanted": [65535, 0], "she wouldn't let him sid wanted to": [65535, 0], "wouldn't let him sid wanted to do": [65535, 0], "let him sid wanted to do it": [65535, 0], "him sid wanted to do it and": [65535, 0], "sid wanted to do it and she": [65535, 0], "wanted to do it and she wouldn't": [65535, 0], "to do it and she wouldn't let": [65535, 0], "do it and she wouldn't let sid": [65535, 0], "it and she wouldn't let sid now": [65535, 0], "and she wouldn't let sid now don't": [65535, 0], "she wouldn't let sid now don't you": [65535, 0], "wouldn't let sid now don't you see": [65535, 0], "let sid now don't you see how": [65535, 0], "sid now don't you see how i'm": [65535, 0], "now don't you see how i'm fixed": [65535, 0], "don't you see how i'm fixed if": [65535, 0], "you see how i'm fixed if you": [65535, 0], "see how i'm fixed if you was": [65535, 0], "how i'm fixed if you was to": [65535, 0], "i'm fixed if you was to tackle": [65535, 0], "fixed if you was to tackle this": [65535, 0], "if you was to tackle this fence": [65535, 0], "you was to tackle this fence and": [65535, 0], "was to tackle this fence and anything": [65535, 0], "to tackle this fence and anything was": [65535, 0], "tackle this fence and anything was to": [65535, 0], "this fence and anything was to happen": [65535, 0], "fence and anything was to happen to": [65535, 0], "and anything was to happen to it": [65535, 0], "anything was to happen to it oh": [65535, 0], "was to happen to it oh shucks": [65535, 0], "to happen to it oh shucks i'll": [65535, 0], "happen to it oh shucks i'll be": [65535, 0], "to it oh shucks i'll be just": [65535, 0], "it oh shucks i'll be just as": [65535, 0], "oh shucks i'll be just as careful": [65535, 0], "shucks i'll be just as careful now": [65535, 0], "i'll be just as careful now lemme": [65535, 0], "be just as careful now lemme try": [65535, 0], "just as careful now lemme try say": [65535, 0], "as careful now lemme try say i'll": [65535, 0], "careful now lemme try say i'll give": [65535, 0], "now lemme try say i'll give you": [65535, 0], "lemme try say i'll give you the": [65535, 0], "try say i'll give you the core": [65535, 0], "say i'll give you the core of": [65535, 0], "i'll give you the core of my": [65535, 0], "give you the core of my apple": [65535, 0], "you the core of my apple well": [65535, 0], "the core of my apple well here": [65535, 0], "core of my apple well here no": [65535, 0], "of my apple well here no ben": [65535, 0], "my apple well here no ben now": [65535, 0], "apple well here no ben now don't": [65535, 0], "well here no ben now don't i'm": [65535, 0], "here no ben now don't i'm afeard": [65535, 0], "no ben now don't i'm afeard i'll": [65535, 0], "ben now don't i'm afeard i'll give": [65535, 0], "now don't i'm afeard i'll give you": [65535, 0], "don't i'm afeard i'll give you all": [65535, 0], "i'm afeard i'll give you all of": [65535, 0], "afeard i'll give you all of it": [65535, 0], "i'll give you all of it tom": [65535, 0], "give you all of it tom gave": [65535, 0], "you all of it tom gave up": [65535, 0], "all of it tom gave up the": [65535, 0], "of it tom gave up the brush": [65535, 0], "it tom gave up the brush with": [65535, 0], "tom gave up the brush with reluctance": [65535, 0], "gave up the brush with reluctance in": [65535, 0], "up the brush with reluctance in his": [65535, 0], "the brush with reluctance in his face": [65535, 0], "brush with reluctance in his face but": [65535, 0], "with reluctance in his face but alacrity": [65535, 0], "reluctance in his face but alacrity in": [65535, 0], "in his face but alacrity in his": [65535, 0], "his face but alacrity in his heart": [65535, 0], "face but alacrity in his heart and": [65535, 0], "but alacrity in his heart and while": [65535, 0], "alacrity in his heart and while the": [65535, 0], "in his heart and while the late": [65535, 0], "his heart and while the late steamer": [65535, 0], "heart and while the late steamer big": [65535, 0], "and while the late steamer big missouri": [65535, 0], "while the late steamer big missouri worked": [65535, 0], "the late steamer big missouri worked and": [65535, 0], "late steamer big missouri worked and sweated": [65535, 0], "steamer big missouri worked and sweated in": [65535, 0], "big missouri worked and sweated in the": [65535, 0], "missouri worked and sweated in the sun": [65535, 0], "worked and sweated in the sun the": [65535, 0], "and sweated in the sun the retired": [65535, 0], "sweated in the sun the retired artist": [65535, 0], "in the sun the retired artist sat": [65535, 0], "the sun the retired artist sat on": [65535, 0], "sun the retired artist sat on a": [65535, 0], "the retired artist sat on a barrel": [65535, 0], "retired artist sat on a barrel in": [65535, 0], "artist sat on a barrel in the": [65535, 0], "sat on a barrel in the shade": [65535, 0], "on a barrel in the shade close": [65535, 0], "a barrel in the shade close by": [65535, 0], "barrel in the shade close by dangled": [65535, 0], "in the shade close by dangled his": [65535, 0], "the shade close by dangled his legs": [65535, 0], "shade close by dangled his legs munched": [65535, 0], "close by dangled his legs munched his": [65535, 0], "by dangled his legs munched his apple": [65535, 0], "dangled his legs munched his apple and": [65535, 0], "his legs munched his apple and planned": [65535, 0], "legs munched his apple and planned the": [65535, 0], "munched his apple and planned the slaughter": [65535, 0], "his apple and planned the slaughter of": [65535, 0], "apple and planned the slaughter of more": [65535, 0], "and planned the slaughter of more innocents": [65535, 0], "planned the slaughter of more innocents there": [65535, 0], "the slaughter of more innocents there was": [65535, 0], "slaughter of more innocents there was no": [65535, 0], "of more innocents there was no lack": [65535, 0], "more innocents there was no lack of": [65535, 0], "innocents there was no lack of material": [65535, 0], "there was no lack of material boys": [65535, 0], "was no lack of material boys happened": [65535, 0], "no lack of material boys happened along": [65535, 0], "lack of material boys happened along every": [65535, 0], "of material boys happened along every little": [65535, 0], "material boys happened along every little while": [65535, 0], "boys happened along every little while they": [65535, 0], "happened along every little while they came": [65535, 0], "along every little while they came to": [65535, 0], "every little while they came to jeer": [65535, 0], "little while they came to jeer but": [65535, 0], "while they came to jeer but remained": [65535, 0], "they came to jeer but remained to": [65535, 0], "came to jeer but remained to whitewash": [65535, 0], "to jeer but remained to whitewash by": [65535, 0], "jeer but remained to whitewash by the": [65535, 0], "but remained to whitewash by the time": [65535, 0], "remained to whitewash by the time ben": [65535, 0], "to whitewash by the time ben was": [65535, 0], "whitewash by the time ben was fagged": [65535, 0], "by the time ben was fagged out": [65535, 0], "the time ben was fagged out tom": [65535, 0], "time ben was fagged out tom had": [65535, 0], "ben was fagged out tom had traded": [65535, 0], "was fagged out tom had traded the": [65535, 0], "fagged out tom had traded the next": [65535, 0], "out tom had traded the next chance": [65535, 0], "tom had traded the next chance to": [65535, 0], "had traded the next chance to billy": [65535, 0], "traded the next chance to billy fisher": [65535, 0], "the next chance to billy fisher for": [65535, 0], "next chance to billy fisher for a": [65535, 0], "chance to billy fisher for a kite": [65535, 0], "to billy fisher for a kite in": [65535, 0], "billy fisher for a kite in good": [65535, 0], "fisher for a kite in good repair": [65535, 0], "for a kite in good repair and": [65535, 0], "a kite in good repair and when": [65535, 0], "kite in good repair and when he": [65535, 0], "in good repair and when he played": [65535, 0], "good repair and when he played out": [65535, 0], "repair and when he played out johnny": [65535, 0], "and when he played out johnny miller": [65535, 0], "when he played out johnny miller bought": [65535, 0], "he played out johnny miller bought in": [65535, 0], "played out johnny miller bought in for": [65535, 0], "out johnny miller bought in for a": [65535, 0], "johnny miller bought in for a dead": [65535, 0], "miller bought in for a dead rat": [65535, 0], "bought in for a dead rat and": [65535, 0], "in for a dead rat and a": [65535, 0], "for a dead rat and a string": [65535, 0], "a dead rat and a string to": [65535, 0], "dead rat and a string to swing": [65535, 0], "rat and a string to swing it": [65535, 0], "and a string to swing it with": [65535, 0], "a string to swing it with and": [65535, 0], "string to swing it with and so": [65535, 0], "to swing it with and so on": [65535, 0], "swing it with and so on and": [65535, 0], "it with and so on and so": [65535, 0], "with and so on and so on": [65535, 0], "and so on and so on hour": [65535, 0], "so on and so on hour after": [65535, 0], "on and so on hour after hour": [65535, 0], "and so on hour after hour and": [65535, 0], "so on hour after hour and when": [65535, 0], "on hour after hour and when the": [65535, 0], "hour after hour and when the middle": [65535, 0], "after hour and when the middle of": [65535, 0], "hour and when the middle of the": [65535, 0], "and when the middle of the afternoon": [65535, 0], "when the middle of the afternoon came": [65535, 0], "the middle of the afternoon came from": [65535, 0], "middle of the afternoon came from being": [65535, 0], "of the afternoon came from being a": [65535, 0], "the afternoon came from being a poor": [65535, 0], "afternoon came from being a poor poverty": [65535, 0], "came from being a poor poverty stricken": [65535, 0], "from being a poor poverty stricken boy": [65535, 0], "being a poor poverty stricken boy in": [65535, 0], "a poor poverty stricken boy in the": [65535, 0], "poor poverty stricken boy in the morning": [65535, 0], "poverty stricken boy in the morning tom": [65535, 0], "stricken boy in the morning tom was": [65535, 0], "boy in the morning tom was literally": [65535, 0], "in the morning tom was literally rolling": [65535, 0], "the morning tom was literally rolling in": [65535, 0], "morning tom was literally rolling in wealth": [65535, 0], "tom was literally rolling in wealth he": [65535, 0], "was literally rolling in wealth he had": [65535, 0], "literally rolling in wealth he had besides": [65535, 0], "rolling in wealth he had besides the": [65535, 0], "in wealth he had besides the things": [65535, 0], "wealth he had besides the things before": [65535, 0], "he had besides the things before mentioned": [65535, 0], "had besides the things before mentioned twelve": [65535, 0], "besides the things before mentioned twelve marbles": [65535, 0], "the things before mentioned twelve marbles part": [65535, 0], "things before mentioned twelve marbles part of": [65535, 0], "before mentioned twelve marbles part of a": [65535, 0], "mentioned twelve marbles part of a jews": [65535, 0], "twelve marbles part of a jews harp": [65535, 0], "marbles part of a jews harp a": [65535, 0], "part of a jews harp a piece": [65535, 0], "of a jews harp a piece of": [65535, 0], "a jews harp a piece of blue": [65535, 0], "jews harp a piece of blue bottle": [65535, 0], "harp a piece of blue bottle glass": [65535, 0], "a piece of blue bottle glass to": [65535, 0], "piece of blue bottle glass to look": [65535, 0], "of blue bottle glass to look through": [65535, 0], "blue bottle glass to look through a": [65535, 0], "bottle glass to look through a spool": [65535, 0], "glass to look through a spool cannon": [65535, 0], "to look through a spool cannon a": [65535, 0], "look through a spool cannon a key": [65535, 0], "through a spool cannon a key that": [65535, 0], "a spool cannon a key that wouldn't": [65535, 0], "spool cannon a key that wouldn't unlock": [65535, 0], "cannon a key that wouldn't unlock anything": [65535, 0], "a key that wouldn't unlock anything a": [65535, 0], "key that wouldn't unlock anything a fragment": [65535, 0], "that wouldn't unlock anything a fragment of": [65535, 0], "wouldn't unlock anything a fragment of chalk": [65535, 0], "unlock anything a fragment of chalk a": [65535, 0], "anything a fragment of chalk a glass": [65535, 0], "a fragment of chalk a glass stopper": [65535, 0], "fragment of chalk a glass stopper of": [65535, 0], "of chalk a glass stopper of a": [65535, 0], "chalk a glass stopper of a decanter": [65535, 0], "a glass stopper of a decanter a": [65535, 0], "glass stopper of a decanter a tin": [65535, 0], "stopper of a decanter a tin soldier": [65535, 0], "of a decanter a tin soldier a": [65535, 0], "a decanter a tin soldier a couple": [65535, 0], "decanter a tin soldier a couple of": [65535, 0], "a tin soldier a couple of tadpoles": [65535, 0], "tin soldier a couple of tadpoles six": [65535, 0], "soldier a couple of tadpoles six fire": [65535, 0], "a couple of tadpoles six fire crackers": [65535, 0], "couple of tadpoles six fire crackers a": [65535, 0], "of tadpoles six fire crackers a kitten": [65535, 0], "tadpoles six fire crackers a kitten with": [65535, 0], "six fire crackers a kitten with only": [65535, 0], "fire crackers a kitten with only one": [65535, 0], "crackers a kitten with only one eye": [65535, 0], "a kitten with only one eye a": [65535, 0], "kitten with only one eye a brass": [65535, 0], "with only one eye a brass doorknob": [65535, 0], "only one eye a brass doorknob a": [65535, 0], "one eye a brass doorknob a dog": [65535, 0], "eye a brass doorknob a dog collar": [65535, 0], "a brass doorknob a dog collar but": [65535, 0], "brass doorknob a dog collar but no": [65535, 0], "doorknob a dog collar but no dog": [65535, 0], "a dog collar but no dog the": [65535, 0], "dog collar but no dog the handle": [65535, 0], "collar but no dog the handle of": [65535, 0], "but no dog the handle of a": [65535, 0], "no dog the handle of a knife": [65535, 0], "dog the handle of a knife four": [65535, 0], "the handle of a knife four pieces": [65535, 0], "handle of a knife four pieces of": [65535, 0], "of a knife four pieces of orange": [65535, 0], "a knife four pieces of orange peel": [65535, 0], "knife four pieces of orange peel and": [65535, 0], "four pieces of orange peel and a": [65535, 0], "pieces of orange peel and a dilapidated": [65535, 0], "of orange peel and a dilapidated old": [65535, 0], "orange peel and a dilapidated old window": [65535, 0], "peel and a dilapidated old window sash": [65535, 0], "and a dilapidated old window sash he": [65535, 0], "a dilapidated old window sash he had": [65535, 0], "dilapidated old window sash he had had": [65535, 0], "old window sash he had had a": [65535, 0], "window sash he had had a nice": [65535, 0], "sash he had had a nice good": [65535, 0], "he had had a nice good idle": [65535, 0], "had had a nice good idle time": [65535, 0], "had a nice good idle time all": [65535, 0], "a nice good idle time all the": [65535, 0], "nice good idle time all the while": [65535, 0], "good idle time all the while plenty": [65535, 0], "idle time all the while plenty of": [65535, 0], "time all the while plenty of company": [65535, 0], "all the while plenty of company and": [65535, 0], "the while plenty of company and the": [65535, 0], "while plenty of company and the fence": [65535, 0], "plenty of company and the fence had": [65535, 0], "of company and the fence had three": [65535, 0], "company and the fence had three coats": [65535, 0], "and the fence had three coats of": [65535, 0], "the fence had three coats of whitewash": [65535, 0], "fence had three coats of whitewash on": [65535, 0], "had three coats of whitewash on it": [65535, 0], "three coats of whitewash on it if": [65535, 0], "coats of whitewash on it if he": [65535, 0], "of whitewash on it if he hadn't": [65535, 0], "whitewash on it if he hadn't run": [65535, 0], "on it if he hadn't run out": [65535, 0], "it if he hadn't run out of": [65535, 0], "if he hadn't run out of whitewash": [65535, 0], "he hadn't run out of whitewash he": [65535, 0], "hadn't run out of whitewash he would": [65535, 0], "run out of whitewash he would have": [65535, 0], "out of whitewash he would have bankrupted": [65535, 0], "of whitewash he would have bankrupted every": [65535, 0], "whitewash he would have bankrupted every boy": [65535, 0], "he would have bankrupted every boy in": [65535, 0], "would have bankrupted every boy in the": [65535, 0], "have bankrupted every boy in the village": [65535, 0], "bankrupted every boy in the village tom": [65535, 0], "every boy in the village tom said": [65535, 0], "boy in the village tom said to": [65535, 0], "in the village tom said to himself": [65535, 0], "the village tom said to himself that": [65535, 0], "village tom said to himself that it": [65535, 0], "tom said to himself that it was": [65535, 0], "said to himself that it was not": [65535, 0], "to himself that it was not such": [65535, 0], "himself that it was not such a": [65535, 0], "that it was not such a hollow": [65535, 0], "it was not such a hollow world": [65535, 0], "was not such a hollow world after": [65535, 0], "not such a hollow world after all": [65535, 0], "such a hollow world after all he": [65535, 0], "a hollow world after all he had": [65535, 0], "hollow world after all he had discovered": [65535, 0], "world after all he had discovered a": [65535, 0], "after all he had discovered a great": [65535, 0], "all he had discovered a great law": [65535, 0], "he had discovered a great law of": [65535, 0], "had discovered a great law of human": [65535, 0], "discovered a great law of human action": [65535, 0], "a great law of human action without": [65535, 0], "great law of human action without knowing": [65535, 0], "law of human action without knowing it": [65535, 0], "of human action without knowing it namely": [65535, 0], "human action without knowing it namely that": [65535, 0], "action without knowing it namely that in": [65535, 0], "without knowing it namely that in order": [65535, 0], "knowing it namely that in order to": [65535, 0], "it namely that in order to make": [65535, 0], "namely that in order to make a": [65535, 0], "that in order to make a man": [65535, 0], "in order to make a man or": [65535, 0], "order to make a man or a": [65535, 0], "to make a man or a boy": [65535, 0], "make a man or a boy covet": [65535, 0], "a man or a boy covet a": [65535, 0], "man or a boy covet a thing": [65535, 0], "or a boy covet a thing it": [65535, 0], "a boy covet a thing it is": [65535, 0], "boy covet a thing it is only": [65535, 0], "covet a thing it is only necessary": [65535, 0], "a thing it is only necessary to": [65535, 0], "thing it is only necessary to make": [65535, 0], "it is only necessary to make the": [65535, 0], "is only necessary to make the thing": [65535, 0], "only necessary to make the thing difficult": [65535, 0], "necessary to make the thing difficult to": [65535, 0], "to make the thing difficult to attain": [65535, 0], "make the thing difficult to attain if": [65535, 0], "the thing difficult to attain if he": [65535, 0], "thing difficult to attain if he had": [65535, 0], "difficult to attain if he had been": [65535, 0], "to attain if he had been a": [65535, 0], "attain if he had been a great": [65535, 0], "if he had been a great and": [65535, 0], "he had been a great and wise": [65535, 0], "had been a great and wise philosopher": [65535, 0], "been a great and wise philosopher like": [65535, 0], "a great and wise philosopher like the": [65535, 0], "great and wise philosopher like the writer": [65535, 0], "and wise philosopher like the writer of": [65535, 0], "wise philosopher like the writer of this": [65535, 0], "philosopher like the writer of this book": [65535, 0], "like the writer of this book he": [65535, 0], "the writer of this book he would": [65535, 0], "writer of this book he would now": [65535, 0], "of this book he would now have": [65535, 0], "this book he would now have comprehended": [65535, 0], "book he would now have comprehended that": [65535, 0], "he would now have comprehended that work": [65535, 0], "would now have comprehended that work consists": [65535, 0], "now have comprehended that work consists of": [65535, 0], "have comprehended that work consists of whatever": [65535, 0], "comprehended that work consists of whatever a": [65535, 0], "that work consists of whatever a body": [65535, 0], "work consists of whatever a body is": [65535, 0], "consists of whatever a body is obliged": [65535, 0], "of whatever a body is obliged to": [65535, 0], "whatever a body is obliged to do": [65535, 0], "a body is obliged to do and": [65535, 0], "body is obliged to do and that": [65535, 0], "is obliged to do and that play": [65535, 0], "obliged to do and that play consists": [65535, 0], "to do and that play consists of": [65535, 0], "do and that play consists of whatever": [65535, 0], "and that play consists of whatever a": [65535, 0], "that play consists of whatever a body": [65535, 0], "play consists of whatever a body is": [65535, 0], "consists of whatever a body is not": [65535, 0], "of whatever a body is not obliged": [65535, 0], "whatever a body is not obliged to": [65535, 0], "a body is not obliged to do": [65535, 0], "body is not obliged to do and": [65535, 0], "is not obliged to do and this": [65535, 0], "not obliged to do and this would": [65535, 0], "obliged to do and this would help": [65535, 0], "to do and this would help him": [65535, 0], "do and this would help him to": [65535, 0], "and this would help him to understand": [65535, 0], "this would help him to understand why": [65535, 0], "would help him to understand why constructing": [65535, 0], "help him to understand why constructing artificial": [65535, 0], "him to understand why constructing artificial flowers": [65535, 0], "to understand why constructing artificial flowers or": [65535, 0], "understand why constructing artificial flowers or performing": [65535, 0], "why constructing artificial flowers or performing on": [65535, 0], "constructing artificial flowers or performing on a": [65535, 0], "artificial flowers or performing on a tread": [65535, 0], "flowers or performing on a tread mill": [65535, 0], "or performing on a tread mill is": [65535, 0], "performing on a tread mill is work": [65535, 0], "on a tread mill is work while": [65535, 0], "a tread mill is work while rolling": [65535, 0], "tread mill is work while rolling ten": [65535, 0], "mill is work while rolling ten pins": [65535, 0], "is work while rolling ten pins or": [65535, 0], "work while rolling ten pins or climbing": [65535, 0], "while rolling ten pins or climbing mont": [65535, 0], "rolling ten pins or climbing mont blanc": [65535, 0], "ten pins or climbing mont blanc is": [65535, 0], "pins or climbing mont blanc is only": [65535, 0], "or climbing mont blanc is only amusement": [65535, 0], "climbing mont blanc is only amusement there": [65535, 0], "mont blanc is only amusement there are": [65535, 0], "blanc is only amusement there are wealthy": [65535, 0], "is only amusement there are wealthy gentlemen": [65535, 0], "only amusement there are wealthy gentlemen in": [65535, 0], "amusement there are wealthy gentlemen in england": [65535, 0], "there are wealthy gentlemen in england who": [65535, 0], "are wealthy gentlemen in england who drive": [65535, 0], "wealthy gentlemen in england who drive four": [65535, 0], "gentlemen in england who drive four horse": [65535, 0], "in england who drive four horse passenger": [65535, 0], "england who drive four horse passenger coaches": [65535, 0], "who drive four horse passenger coaches twenty": [65535, 0], "drive four horse passenger coaches twenty or": [65535, 0], "four horse passenger coaches twenty or thirty": [65535, 0], "horse passenger coaches twenty or thirty miles": [65535, 0], "passenger coaches twenty or thirty miles on": [65535, 0], "coaches twenty or thirty miles on a": [65535, 0], "twenty or thirty miles on a daily": [65535, 0], "or thirty miles on a daily line": [65535, 0], "thirty miles on a daily line in": [65535, 0], "miles on a daily line in the": [65535, 0], "on a daily line in the summer": [65535, 0], "a daily line in the summer because": [65535, 0], "daily line in the summer because the": [65535, 0], "line in the summer because the privilege": [65535, 0], "in the summer because the privilege costs": [65535, 0], "the summer because the privilege costs them": [65535, 0], "summer because the privilege costs them considerable": [65535, 0], "because the privilege costs them considerable money": [65535, 0], "the privilege costs them considerable money but": [65535, 0], "privilege costs them considerable money but if": [65535, 0], "costs them considerable money but if they": [65535, 0], "them considerable money but if they were": [65535, 0], "considerable money but if they were offered": [65535, 0], "money but if they were offered wages": [65535, 0], "but if they were offered wages for": [65535, 0], "if they were offered wages for the": [65535, 0], "they were offered wages for the service": [65535, 0], "were offered wages for the service that": [65535, 0], "offered wages for the service that would": [65535, 0], "wages for the service that would turn": [65535, 0], "for the service that would turn it": [65535, 0], "the service that would turn it into": [65535, 0], "service that would turn it into work": [65535, 0], "that would turn it into work and": [65535, 0], "would turn it into work and then": [65535, 0], "turn it into work and then they": [65535, 0], "it into work and then they would": [65535, 0], "into work and then they would resign": [65535, 0], "work and then they would resign the": [65535, 0], "and then they would resign the boy": [65535, 0], "then they would resign the boy mused": [65535, 0], "they would resign the boy mused awhile": [65535, 0], "would resign the boy mused awhile over": [65535, 0], "resign the boy mused awhile over the": [65535, 0], "the boy mused awhile over the substantial": [65535, 0], "boy mused awhile over the substantial change": [65535, 0], "mused awhile over the substantial change which": [65535, 0], "awhile over the substantial change which had": [65535, 0], "over the substantial change which had taken": [65535, 0], "the substantial change which had taken place": [65535, 0], "substantial change which had taken place in": [65535, 0], "change which had taken place in his": [65535, 0], "which had taken place in his worldly": [65535, 0], "had taken place in his worldly circumstances": [65535, 0], "taken place in his worldly circumstances and": [65535, 0], "place in his worldly circumstances and then": [65535, 0], "in his worldly circumstances and then wended": [65535, 0], "his worldly circumstances and then wended toward": [65535, 0], "worldly circumstances and then wended toward headquarters": [65535, 0], "circumstances and then wended toward headquarters to": [65535, 0], "and then wended toward headquarters to report": [65535, 0], "saturday morning was come and all the summer": [65535, 0], "morning was come and all the summer world": [65535, 0], "was come and all the summer world was": [65535, 0], "come and all the summer world was bright": [65535, 0], "and all the summer world was bright and": [65535, 0], "all the summer world was bright and fresh": [65535, 0], "the summer world was bright and fresh and": [65535, 0], "summer world was bright and fresh and brimming": [65535, 0], "world was bright and fresh and brimming with": [65535, 0], "was bright and fresh and brimming with life": [65535, 0], "bright and fresh and brimming with life there": [65535, 0], "and fresh and brimming with life there was": [65535, 0], "fresh and brimming with life there was a": [65535, 0], "and brimming with life there was a song": [65535, 0], "brimming with life there was a song in": [65535, 0], "with life there was a song in every": [65535, 0], "life there was a song in every heart": [65535, 0], "there was a song in every heart and": [65535, 0], "was a song in every heart and if": [65535, 0], "a song in every heart and if the": [65535, 0], "song in every heart and if the heart": [65535, 0], "in every heart and if the heart was": [65535, 0], "every heart and if the heart was young": [65535, 0], "heart and if the heart was young the": [65535, 0], "and if the heart was young the music": [65535, 0], "if the heart was young the music issued": [65535, 0], "the heart was young the music issued at": [65535, 0], "heart was young the music issued at the": [65535, 0], "was young the music issued at the lips": [65535, 0], "young the music issued at the lips there": [65535, 0], "the music issued at the lips there was": [65535, 0], "music issued at the lips there was cheer": [65535, 0], "issued at the lips there was cheer in": [65535, 0], "at the lips there was cheer in every": [65535, 0], "the lips there was cheer in every face": [65535, 0], "lips there was cheer in every face and": [65535, 0], "there was cheer in every face and a": [65535, 0], "was cheer in every face and a spring": [65535, 0], "cheer in every face and a spring in": [65535, 0], "in every face and a spring in every": [65535, 0], "every face and a spring in every step": [65535, 0], "face and a spring in every step the": [65535, 0], "and a spring in every step the locust": [65535, 0], "a spring in every step the locust trees": [65535, 0], "spring in every step the locust trees were": [65535, 0], "in every step the locust trees were in": [65535, 0], "every step the locust trees were in bloom": [65535, 0], "step the locust trees were in bloom and": [65535, 0], "the locust trees were in bloom and the": [65535, 0], "locust trees were in bloom and the fragrance": [65535, 0], "trees were in bloom and the fragrance of": [65535, 0], "were in bloom and the fragrance of the": [65535, 0], "in bloom and the fragrance of the blossoms": [65535, 0], "bloom and the fragrance of the blossoms filled": [65535, 0], "and the fragrance of the blossoms filled the": [65535, 0], "the fragrance of the blossoms filled the air": [65535, 0], "fragrance of the blossoms filled the air cardiff": [65535, 0], "of the blossoms filled the air cardiff hill": [65535, 0], "the blossoms filled the air cardiff hill beyond": [65535, 0], "blossoms filled the air cardiff hill beyond the": [65535, 0], "filled the air cardiff hill beyond the village": [65535, 0], "the air cardiff hill beyond the village and": [65535, 0], "air cardiff hill beyond the village and above": [65535, 0], "cardiff hill beyond the village and above it": [65535, 0], "hill beyond the village and above it was": [65535, 0], "beyond the village and above it was green": [65535, 0], "the village and above it was green with": [65535, 0], "village and above it was green with vegetation": [65535, 0], "and above it was green with vegetation and": [65535, 0], "above it was green with vegetation and it": [65535, 0], "it was green with vegetation and it lay": [65535, 0], "was green with vegetation and it lay just": [65535, 0], "green with vegetation and it lay just far": [65535, 0], "with vegetation and it lay just far enough": [65535, 0], "vegetation and it lay just far enough away": [65535, 0], "and it lay just far enough away to": [65535, 0], "it lay just far enough away to seem": [65535, 0], "lay just far enough away to seem a": [65535, 0], "just far enough away to seem a delectable": [65535, 0], "far enough away to seem a delectable land": [65535, 0], "enough away to seem a delectable land dreamy": [65535, 0], "away to seem a delectable land dreamy reposeful": [65535, 0], "to seem a delectable land dreamy reposeful and": [65535, 0], "seem a delectable land dreamy reposeful and inviting": [65535, 0], "a delectable land dreamy reposeful and inviting tom": [65535, 0], "delectable land dreamy reposeful and inviting tom appeared": [65535, 0], "land dreamy reposeful and inviting tom appeared on": [65535, 0], "dreamy reposeful and inviting tom appeared on the": [65535, 0], "reposeful and inviting tom appeared on the sidewalk": [65535, 0], "and inviting tom appeared on the sidewalk with": [65535, 0], "inviting tom appeared on the sidewalk with a": [65535, 0], "tom appeared on the sidewalk with a bucket": [65535, 0], "appeared on the sidewalk with a bucket of": [65535, 0], "on the sidewalk with a bucket of whitewash": [65535, 0], "the sidewalk with a bucket of whitewash and": [65535, 0], "sidewalk with a bucket of whitewash and a": [65535, 0], "with a bucket of whitewash and a long": [65535, 0], "a bucket of whitewash and a long handled": [65535, 0], "bucket of whitewash and a long handled brush": [65535, 0], "of whitewash and a long handled brush he": [65535, 0], "whitewash and a long handled brush he surveyed": [65535, 0], "and a long handled brush he surveyed the": [65535, 0], "a long handled brush he surveyed the fence": [65535, 0], "long handled brush he surveyed the fence and": [65535, 0], "handled brush he surveyed the fence and all": [65535, 0], "brush he surveyed the fence and all gladness": [65535, 0], "he surveyed the fence and all gladness left": [65535, 0], "surveyed the fence and all gladness left him": [65535, 0], "the fence and all gladness left him and": [65535, 0], "fence and all gladness left him and a": [65535, 0], "and all gladness left him and a deep": [65535, 0], "all gladness left him and a deep melancholy": [65535, 0], "gladness left him and a deep melancholy settled": [65535, 0], "left him and a deep melancholy settled down": [65535, 0], "him and a deep melancholy settled down upon": [65535, 0], "and a deep melancholy settled down upon his": [65535, 0], "a deep melancholy settled down upon his spirit": [65535, 0], "deep melancholy settled down upon his spirit thirty": [65535, 0], "melancholy settled down upon his spirit thirty yards": [65535, 0], "settled down upon his spirit thirty yards of": [65535, 0], "down upon his spirit thirty yards of board": [65535, 0], "upon his spirit thirty yards of board fence": [65535, 0], "his spirit thirty yards of board fence nine": [65535, 0], "spirit thirty yards of board fence nine feet": [65535, 0], "thirty yards of board fence nine feet high": [65535, 0], "yards of board fence nine feet high life": [65535, 0], "of board fence nine feet high life to": [65535, 0], "board fence nine feet high life to him": [65535, 0], "fence nine feet high life to him seemed": [65535, 0], "nine feet high life to him seemed hollow": [65535, 0], "feet high life to him seemed hollow and": [65535, 0], "high life to him seemed hollow and existence": [65535, 0], "life to him seemed hollow and existence but": [65535, 0], "to him seemed hollow and existence but a": [65535, 0], "him seemed hollow and existence but a burden": [65535, 0], "seemed hollow and existence but a burden sighing": [65535, 0], "hollow and existence but a burden sighing he": [65535, 0], "and existence but a burden sighing he dipped": [65535, 0], "existence but a burden sighing he dipped his": [65535, 0], "but a burden sighing he dipped his brush": [65535, 0], "a burden sighing he dipped his brush and": [65535, 0], "burden sighing he dipped his brush and passed": [65535, 0], "sighing he dipped his brush and passed it": [65535, 0], "he dipped his brush and passed it along": [65535, 0], "dipped his brush and passed it along the": [65535, 0], "his brush and passed it along the topmost": [65535, 0], "brush and passed it along the topmost plank": [65535, 0], "and passed it along the topmost plank repeated": [65535, 0], "passed it along the topmost plank repeated the": [65535, 0], "it along the topmost plank repeated the operation": [65535, 0], "along the topmost plank repeated the operation did": [65535, 0], "the topmost plank repeated the operation did it": [65535, 0], "topmost plank repeated the operation did it again": [65535, 0], "plank repeated the operation did it again compared": [65535, 0], "repeated the operation did it again compared the": [65535, 0], "the operation did it again compared the insignificant": [65535, 0], "operation did it again compared the insignificant whitewashed": [65535, 0], "did it again compared the insignificant whitewashed streak": [65535, 0], "it again compared the insignificant whitewashed streak with": [65535, 0], "again compared the insignificant whitewashed streak with the": [65535, 0], "compared the insignificant whitewashed streak with the far": [65535, 0], "the insignificant whitewashed streak with the far reaching": [65535, 0], "insignificant whitewashed streak with the far reaching continent": [65535, 0], "whitewashed streak with the far reaching continent of": [65535, 0], "streak with the far reaching continent of unwhitewashed": [65535, 0], "with the far reaching continent of unwhitewashed fence": [65535, 0], "the far reaching continent of unwhitewashed fence and": [65535, 0], "far reaching continent of unwhitewashed fence and sat": [65535, 0], "reaching continent of unwhitewashed fence and sat down": [65535, 0], "continent of unwhitewashed fence and sat down on": [65535, 0], "of unwhitewashed fence and sat down on a": [65535, 0], "unwhitewashed fence and sat down on a tree": [65535, 0], "fence and sat down on a tree box": [65535, 0], "and sat down on a tree box discouraged": [65535, 0], "sat down on a tree box discouraged jim": [65535, 0], "down on a tree box discouraged jim came": [65535, 0], "on a tree box discouraged jim came skipping": [65535, 0], "a tree box discouraged jim came skipping out": [65535, 0], "tree box discouraged jim came skipping out at": [65535, 0], "box discouraged jim came skipping out at the": [65535, 0], "discouraged jim came skipping out at the gate": [65535, 0], "jim came skipping out at the gate with": [65535, 0], "came skipping out at the gate with a": [65535, 0], "skipping out at the gate with a tin": [65535, 0], "out at the gate with a tin pail": [65535, 0], "at the gate with a tin pail and": [65535, 0], "the gate with a tin pail and singing": [65535, 0], "gate with a tin pail and singing buffalo": [65535, 0], "with a tin pail and singing buffalo gals": [65535, 0], "a tin pail and singing buffalo gals bringing": [65535, 0], "tin pail and singing buffalo gals bringing water": [65535, 0], "pail and singing buffalo gals bringing water from": [65535, 0], "and singing buffalo gals bringing water from the": [65535, 0], "singing buffalo gals bringing water from the town": [65535, 0], "buffalo gals bringing water from the town pump": [65535, 0], "gals bringing water from the town pump had": [65535, 0], "bringing water from the town pump had always": [65535, 0], "water from the town pump had always been": [65535, 0], "from the town pump had always been hateful": [65535, 0], "the town pump had always been hateful work": [65535, 0], "town pump had always been hateful work in": [65535, 0], "pump had always been hateful work in tom's": [65535, 0], "had always been hateful work in tom's eyes": [65535, 0], "always been hateful work in tom's eyes before": [65535, 0], "been hateful work in tom's eyes before but": [65535, 0], "hateful work in tom's eyes before but now": [65535, 0], "work in tom's eyes before but now it": [65535, 0], "in tom's eyes before but now it did": [65535, 0], "tom's eyes before but now it did not": [65535, 0], "eyes before but now it did not strike": [65535, 0], "before but now it did not strike him": [65535, 0], "but now it did not strike him so": [65535, 0], "now it did not strike him so he": [65535, 0], "it did not strike him so he remembered": [65535, 0], "did not strike him so he remembered that": [65535, 0], "not strike him so he remembered that there": [65535, 0], "strike him so he remembered that there was": [65535, 0], "him so he remembered that there was company": [65535, 0], "so he remembered that there was company at": [65535, 0], "he remembered that there was company at the": [65535, 0], "remembered that there was company at the pump": [65535, 0], "that there was company at the pump white": [65535, 0], "there was company at the pump white mulatto": [65535, 0], "was company at the pump white mulatto and": [65535, 0], "company at the pump white mulatto and negro": [65535, 0], "at the pump white mulatto and negro boys": [65535, 0], "the pump white mulatto and negro boys and": [65535, 0], "pump white mulatto and negro boys and girls": [65535, 0], "white mulatto and negro boys and girls were": [65535, 0], "mulatto and negro boys and girls were always": [65535, 0], "and negro boys and girls were always there": [65535, 0], "negro boys and girls were always there waiting": [65535, 0], "boys and girls were always there waiting their": [65535, 0], "and girls were always there waiting their turns": [65535, 0], "girls were always there waiting their turns resting": [65535, 0], "were always there waiting their turns resting trading": [65535, 0], "always there waiting their turns resting trading playthings": [65535, 0], "there waiting their turns resting trading playthings quarrelling": [65535, 0], "waiting their turns resting trading playthings quarrelling fighting": [65535, 0], "their turns resting trading playthings quarrelling fighting skylarking": [65535, 0], "turns resting trading playthings quarrelling fighting skylarking and": [65535, 0], "resting trading playthings quarrelling fighting skylarking and he": [65535, 0], "trading playthings quarrelling fighting skylarking and he remembered": [65535, 0], "playthings quarrelling fighting skylarking and he remembered that": [65535, 0], "quarrelling fighting skylarking and he remembered that although": [65535, 0], "fighting skylarking and he remembered that although the": [65535, 0], "skylarking and he remembered that although the pump": [65535, 0], "and he remembered that although the pump was": [65535, 0], "he remembered that although the pump was only": [65535, 0], "remembered that although the pump was only a": [65535, 0], "that although the pump was only a hundred": [65535, 0], "although the pump was only a hundred and": [65535, 0], "the pump was only a hundred and fifty": [65535, 0], "pump was only a hundred and fifty yards": [65535, 0], "was only a hundred and fifty yards off": [65535, 0], "only a hundred and fifty yards off jim": [65535, 0], "a hundred and fifty yards off jim never": [65535, 0], "hundred and fifty yards off jim never got": [65535, 0], "and fifty yards off jim never got back": [65535, 0], "fifty yards off jim never got back with": [65535, 0], "yards off jim never got back with a": [65535, 0], "off jim never got back with a bucket": [65535, 0], "jim never got back with a bucket of": [65535, 0], "never got back with a bucket of water": [65535, 0], "got back with a bucket of water under": [65535, 0], "back with a bucket of water under an": [65535, 0], "with a bucket of water under an hour": [65535, 0], "a bucket of water under an hour and": [65535, 0], "bucket of water under an hour and even": [65535, 0], "of water under an hour and even then": [65535, 0], "water under an hour and even then somebody": [65535, 0], "under an hour and even then somebody generally": [65535, 0], "an hour and even then somebody generally had": [65535, 0], "hour and even then somebody generally had to": [65535, 0], "and even then somebody generally had to go": [65535, 0], "even then somebody generally had to go after": [65535, 0], "then somebody generally had to go after him": [65535, 0], "somebody generally had to go after him tom": [65535, 0], "generally had to go after him tom said": [65535, 0], "had to go after him tom said say": [65535, 0], "to go after him tom said say jim": [65535, 0], "go after him tom said say jim i'll": [65535, 0], "after him tom said say jim i'll fetch": [65535, 0], "him tom said say jim i'll fetch the": [65535, 0], "tom said say jim i'll fetch the water": [65535, 0], "said say jim i'll fetch the water if": [65535, 0], "say jim i'll fetch the water if you'll": [65535, 0], "jim i'll fetch the water if you'll whitewash": [65535, 0], "i'll fetch the water if you'll whitewash some": [65535, 0], "fetch the water if you'll whitewash some jim": [65535, 0], "the water if you'll whitewash some jim shook": [65535, 0], "water if you'll whitewash some jim shook his": [65535, 0], "if you'll whitewash some jim shook his head": [65535, 0], "you'll whitewash some jim shook his head and": [65535, 0], "whitewash some jim shook his head and said": [65535, 0], "some jim shook his head and said can't": [65535, 0], "jim shook his head and said can't mars": [65535, 0], "shook his head and said can't mars tom": [65535, 0], "his head and said can't mars tom ole": [65535, 0], "head and said can't mars tom ole missis": [65535, 0], "and said can't mars tom ole missis she": [65535, 0], "said can't mars tom ole missis she tole": [65535, 0], "can't mars tom ole missis she tole me": [65535, 0], "mars tom ole missis she tole me i": [65535, 0], "tom ole missis she tole me i got": [65535, 0], "ole missis she tole me i got to": [65535, 0], "missis she tole me i got to go": [65535, 0], "she tole me i got to go an'": [65535, 0], "tole me i got to go an' git": [65535, 0], "me i got to go an' git dis": [65535, 0], "i got to go an' git dis water": [65535, 0], "got to go an' git dis water an'": [65535, 0], "to go an' git dis water an' not": [65535, 0], "go an' git dis water an' not stop": [65535, 0], "an' git dis water an' not stop foolin'": [65535, 0], "git dis water an' not stop foolin' roun'": [65535, 0], "dis water an' not stop foolin' roun' wid": [65535, 0], "water an' not stop foolin' roun' wid anybody": [65535, 0], "an' not stop foolin' roun' wid anybody she": [65535, 0], "not stop foolin' roun' wid anybody she say": [65535, 0], "stop foolin' roun' wid anybody she say she": [65535, 0], "foolin' roun' wid anybody she say she spec'": [65535, 0], "roun' wid anybody she say she spec' mars": [65535, 0], "wid anybody she say she spec' mars tom": [65535, 0], "anybody she say she spec' mars tom gwine": [65535, 0], "she say she spec' mars tom gwine to": [65535, 0], "say she spec' mars tom gwine to ax": [65535, 0], "she spec' mars tom gwine to ax me": [65535, 0], "spec' mars tom gwine to ax me to": [65535, 0], "mars tom gwine to ax me to whitewash": [65535, 0], "tom gwine to ax me to whitewash an'": [65535, 0], "gwine to ax me to whitewash an' so": [65535, 0], "to ax me to whitewash an' so she": [65535, 0], "ax me to whitewash an' so she tole": [65535, 0], "me to whitewash an' so she tole me": [65535, 0], "to whitewash an' so she tole me go": [65535, 0], "whitewash an' so she tole me go 'long": [65535, 0], "an' so she tole me go 'long an'": [65535, 0], "so she tole me go 'long an' 'tend": [65535, 0], "she tole me go 'long an' 'tend to": [65535, 0], "tole me go 'long an' 'tend to my": [65535, 0], "me go 'long an' 'tend to my own": [65535, 0], "go 'long an' 'tend to my own business": [65535, 0], "'long an' 'tend to my own business she": [65535, 0], "an' 'tend to my own business she 'lowed": [65535, 0], "'tend to my own business she 'lowed she'd": [65535, 0], "to my own business she 'lowed she'd 'tend": [65535, 0], "my own business she 'lowed she'd 'tend to": [65535, 0], "own business she 'lowed she'd 'tend to de": [65535, 0], "business she 'lowed she'd 'tend to de whitewashin'": [65535, 0], "she 'lowed she'd 'tend to de whitewashin' oh": [65535, 0], "'lowed she'd 'tend to de whitewashin' oh never": [65535, 0], "she'd 'tend to de whitewashin' oh never you": [65535, 0], "'tend to de whitewashin' oh never you mind": [65535, 0], "to de whitewashin' oh never you mind what": [65535, 0], "de whitewashin' oh never you mind what she": [65535, 0], "whitewashin' oh never you mind what she said": [65535, 0], "oh never you mind what she said jim": [65535, 0], "never you mind what she said jim that's": [65535, 0], "you mind what she said jim that's the": [65535, 0], "mind what she said jim that's the way": [65535, 0], "what she said jim that's the way she": [65535, 0], "she said jim that's the way she always": [65535, 0], "said jim that's the way she always talks": [65535, 0], "jim that's the way she always talks gimme": [65535, 0], "that's the way she always talks gimme the": [65535, 0], "the way she always talks gimme the bucket": [65535, 0], "way she always talks gimme the bucket i": [65535, 0], "she always talks gimme the bucket i won't": [65535, 0], "always talks gimme the bucket i won't be": [65535, 0], "talks gimme the bucket i won't be gone": [65535, 0], "gimme the bucket i won't be gone only": [65535, 0], "the bucket i won't be gone only a": [65535, 0], "bucket i won't be gone only a minute": [65535, 0], "i won't be gone only a minute she": [65535, 0], "won't be gone only a minute she won't": [65535, 0], "be gone only a minute she won't ever": [65535, 0], "gone only a minute she won't ever know": [65535, 0], "only a minute she won't ever know oh": [65535, 0], "a minute she won't ever know oh i": [65535, 0], "minute she won't ever know oh i dasn't": [65535, 0], "she won't ever know oh i dasn't mars": [65535, 0], "won't ever know oh i dasn't mars tom": [65535, 0], "ever know oh i dasn't mars tom ole": [65535, 0], "know oh i dasn't mars tom ole missis": [65535, 0], "oh i dasn't mars tom ole missis she'd": [65535, 0], "i dasn't mars tom ole missis she'd take": [65535, 0], "dasn't mars tom ole missis she'd take an'": [65535, 0], "mars tom ole missis she'd take an' tar": [65535, 0], "tom ole missis she'd take an' tar de": [65535, 0], "ole missis she'd take an' tar de head": [65535, 0], "missis she'd take an' tar de head off'n": [65535, 0], "she'd take an' tar de head off'n me": [65535, 0], "take an' tar de head off'n me 'deed": [65535, 0], "an' tar de head off'n me 'deed she": [65535, 0], "tar de head off'n me 'deed she would": [65535, 0], "de head off'n me 'deed she would she": [65535, 0], "head off'n me 'deed she would she she": [65535, 0], "off'n me 'deed she would she she never": [65535, 0], "me 'deed she would she she never licks": [65535, 0], "'deed she would she she never licks anybody": [65535, 0], "she would she she never licks anybody whacks": [65535, 0], "would she she never licks anybody whacks 'em": [65535, 0], "she she never licks anybody whacks 'em over": [65535, 0], "she never licks anybody whacks 'em over the": [65535, 0], "never licks anybody whacks 'em over the head": [65535, 0], "licks anybody whacks 'em over the head with": [65535, 0], "anybody whacks 'em over the head with her": [65535, 0], "whacks 'em over the head with her thimble": [65535, 0], "'em over the head with her thimble and": [65535, 0], "over the head with her thimble and who": [65535, 0], "the head with her thimble and who cares": [65535, 0], "head with her thimble and who cares for": [65535, 0], "with her thimble and who cares for that": [65535, 0], "her thimble and who cares for that i'd": [65535, 0], "thimble and who cares for that i'd like": [65535, 0], "and who cares for that i'd like to": [65535, 0], "who cares for that i'd like to know": [65535, 0], "cares for that i'd like to know she": [65535, 0], "for that i'd like to know she talks": [65535, 0], "that i'd like to know she talks awful": [65535, 0], "i'd like to know she talks awful but": [65535, 0], "like to know she talks awful but talk": [65535, 0], "to know she talks awful but talk don't": [65535, 0], "know she talks awful but talk don't hurt": [65535, 0], "she talks awful but talk don't hurt anyways": [65535, 0], "talks awful but talk don't hurt anyways it": [65535, 0], "awful but talk don't hurt anyways it don't": [65535, 0], "but talk don't hurt anyways it don't if": [65535, 0], "talk don't hurt anyways it don't if she": [65535, 0], "don't hurt anyways it don't if she don't": [65535, 0], "hurt anyways it don't if she don't cry": [65535, 0], "anyways it don't if she don't cry jim": [65535, 0], "it don't if she don't cry jim i'll": [65535, 0], "don't if she don't cry jim i'll give": [65535, 0], "if she don't cry jim i'll give you": [65535, 0], "she don't cry jim i'll give you a": [65535, 0], "don't cry jim i'll give you a marvel": [65535, 0], "cry jim i'll give you a marvel i'll": [65535, 0], "jim i'll give you a marvel i'll give": [65535, 0], "i'll give you a marvel i'll give you": [65535, 0], "give you a marvel i'll give you a": [65535, 0], "you a marvel i'll give you a white": [65535, 0], "a marvel i'll give you a white alley": [65535, 0], "marvel i'll give you a white alley jim": [65535, 0], "i'll give you a white alley jim began": [65535, 0], "give you a white alley jim began to": [65535, 0], "you a white alley jim began to waver": [65535, 0], "a white alley jim began to waver white": [65535, 0], "white alley jim began to waver white alley": [65535, 0], "alley jim began to waver white alley jim": [65535, 0], "jim began to waver white alley jim and": [65535, 0], "began to waver white alley jim and it's": [65535, 0], "to waver white alley jim and it's a": [65535, 0], "waver white alley jim and it's a bully": [65535, 0], "white alley jim and it's a bully taw": [65535, 0], "alley jim and it's a bully taw my": [65535, 0], "jim and it's a bully taw my dat's": [65535, 0], "and it's a bully taw my dat's a": [65535, 0], "it's a bully taw my dat's a mighty": [65535, 0], "a bully taw my dat's a mighty gay": [65535, 0], "bully taw my dat's a mighty gay marvel": [65535, 0], "taw my dat's a mighty gay marvel i": [65535, 0], "my dat's a mighty gay marvel i tell": [65535, 0], "dat's a mighty gay marvel i tell you": [65535, 0], "a mighty gay marvel i tell you but": [65535, 0], "mighty gay marvel i tell you but mars": [65535, 0], "gay marvel i tell you but mars tom": [65535, 0], "marvel i tell you but mars tom i's": [65535, 0], "i tell you but mars tom i's powerful": [65535, 0], "tell you but mars tom i's powerful 'fraid": [65535, 0], "you but mars tom i's powerful 'fraid ole": [65535, 0], "but mars tom i's powerful 'fraid ole missis": [65535, 0], "mars tom i's powerful 'fraid ole missis and": [65535, 0], "tom i's powerful 'fraid ole missis and besides": [65535, 0], "i's powerful 'fraid ole missis and besides if": [65535, 0], "powerful 'fraid ole missis and besides if you": [65535, 0], "'fraid ole missis and besides if you will": [65535, 0], "ole missis and besides if you will i'll": [65535, 0], "missis and besides if you will i'll show": [65535, 0], "and besides if you will i'll show you": [65535, 0], "besides if you will i'll show you my": [65535, 0], "if you will i'll show you my sore": [65535, 0], "you will i'll show you my sore toe": [65535, 0], "will i'll show you my sore toe jim": [65535, 0], "i'll show you my sore toe jim was": [65535, 0], "show you my sore toe jim was only": [65535, 0], "you my sore toe jim was only human": [65535, 0], "my sore toe jim was only human this": [65535, 0], "sore toe jim was only human this attraction": [65535, 0], "toe jim was only human this attraction was": [65535, 0], "jim was only human this attraction was too": [65535, 0], "was only human this attraction was too much": [65535, 0], "only human this attraction was too much for": [65535, 0], "human this attraction was too much for him": [65535, 0], "this attraction was too much for him he": [65535, 0], "attraction was too much for him he put": [65535, 0], "was too much for him he put down": [65535, 0], "too much for him he put down his": [65535, 0], "much for him he put down his pail": [65535, 0], "for him he put down his pail took": [65535, 0], "him he put down his pail took the": [65535, 0], "he put down his pail took the white": [65535, 0], "put down his pail took the white alley": [65535, 0], "down his pail took the white alley and": [65535, 0], "his pail took the white alley and bent": [65535, 0], "pail took the white alley and bent over": [65535, 0], "took the white alley and bent over the": [65535, 0], "the white alley and bent over the toe": [65535, 0], "white alley and bent over the toe with": [65535, 0], "alley and bent over the toe with absorbing": [65535, 0], "and bent over the toe with absorbing interest": [65535, 0], "bent over the toe with absorbing interest while": [65535, 0], "over the toe with absorbing interest while the": [65535, 0], "the toe with absorbing interest while the bandage": [65535, 0], "toe with absorbing interest while the bandage was": [65535, 0], "with absorbing interest while the bandage was being": [65535, 0], "absorbing interest while the bandage was being unwound": [65535, 0], "interest while the bandage was being unwound in": [65535, 0], "while the bandage was being unwound in another": [65535, 0], "the bandage was being unwound in another moment": [65535, 0], "bandage was being unwound in another moment he": [65535, 0], "was being unwound in another moment he was": [65535, 0], "being unwound in another moment he was flying": [65535, 0], "unwound in another moment he was flying down": [65535, 0], "in another moment he was flying down the": [65535, 0], "another moment he was flying down the street": [65535, 0], "moment he was flying down the street with": [65535, 0], "he was flying down the street with his": [65535, 0], "was flying down the street with his pail": [65535, 0], "flying down the street with his pail and": [65535, 0], "down the street with his pail and a": [65535, 0], "the street with his pail and a tingling": [65535, 0], "street with his pail and a tingling rear": [65535, 0], "with his pail and a tingling rear tom": [65535, 0], "his pail and a tingling rear tom was": [65535, 0], "pail and a tingling rear tom was whitewashing": [65535, 0], "and a tingling rear tom was whitewashing with": [65535, 0], "a tingling rear tom was whitewashing with vigor": [65535, 0], "tingling rear tom was whitewashing with vigor and": [65535, 0], "rear tom was whitewashing with vigor and aunt": [65535, 0], "tom was whitewashing with vigor and aunt polly": [65535, 0], "was whitewashing with vigor and aunt polly was": [65535, 0], "whitewashing with vigor and aunt polly was retiring": [65535, 0], "with vigor and aunt polly was retiring from": [65535, 0], "vigor and aunt polly was retiring from the": [65535, 0], "and aunt polly was retiring from the field": [65535, 0], "aunt polly was retiring from the field with": [65535, 0], "polly was retiring from the field with a": [65535, 0], "was retiring from the field with a slipper": [65535, 0], "retiring from the field with a slipper in": [65535, 0], "from the field with a slipper in her": [65535, 0], "the field with a slipper in her hand": [65535, 0], "field with a slipper in her hand and": [65535, 0], "with a slipper in her hand and triumph": [65535, 0], "a slipper in her hand and triumph in": [65535, 0], "slipper in her hand and triumph in her": [65535, 0], "in her hand and triumph in her eye": [65535, 0], "her hand and triumph in her eye but": [65535, 0], "hand and triumph in her eye but tom's": [65535, 0], "and triumph in her eye but tom's energy": [65535, 0], "triumph in her eye but tom's energy did": [65535, 0], "in her eye but tom's energy did not": [65535, 0], "her eye but tom's energy did not last": [65535, 0], "eye but tom's energy did not last he": [65535, 0], "but tom's energy did not last he began": [65535, 0], "tom's energy did not last he began to": [65535, 0], "energy did not last he began to think": [65535, 0], "did not last he began to think of": [65535, 0], "not last he began to think of the": [65535, 0], "last he began to think of the fun": [65535, 0], "he began to think of the fun he": [65535, 0], "began to think of the fun he had": [65535, 0], "to think of the fun he had planned": [65535, 0], "think of the fun he had planned for": [65535, 0], "of the fun he had planned for this": [65535, 0], "the fun he had planned for this day": [65535, 0], "fun he had planned for this day and": [65535, 0], "he had planned for this day and his": [65535, 0], "had planned for this day and his sorrows": [65535, 0], "planned for this day and his sorrows multiplied": [65535, 0], "for this day and his sorrows multiplied soon": [65535, 0], "this day and his sorrows multiplied soon the": [65535, 0], "day and his sorrows multiplied soon the free": [65535, 0], "and his sorrows multiplied soon the free boys": [65535, 0], "his sorrows multiplied soon the free boys would": [65535, 0], "sorrows multiplied soon the free boys would come": [65535, 0], "multiplied soon the free boys would come tripping": [65535, 0], "soon the free boys would come tripping along": [65535, 0], "the free boys would come tripping along on": [65535, 0], "free boys would come tripping along on all": [65535, 0], "boys would come tripping along on all sorts": [65535, 0], "would come tripping along on all sorts of": [65535, 0], "come tripping along on all sorts of delicious": [65535, 0], "tripping along on all sorts of delicious expeditions": [65535, 0], "along on all sorts of delicious expeditions and": [65535, 0], "on all sorts of delicious expeditions and they": [65535, 0], "all sorts of delicious expeditions and they would": [65535, 0], "sorts of delicious expeditions and they would make": [65535, 0], "of delicious expeditions and they would make a": [65535, 0], "delicious expeditions and they would make a world": [65535, 0], "expeditions and they would make a world of": [65535, 0], "and they would make a world of fun": [65535, 0], "they would make a world of fun of": [65535, 0], "would make a world of fun of him": [65535, 0], "make a world of fun of him for": [65535, 0], "a world of fun of him for having": [65535, 0], "world of fun of him for having to": [65535, 0], "of fun of him for having to work": [65535, 0], "fun of him for having to work the": [65535, 0], "of him for having to work the very": [65535, 0], "him for having to work the very thought": [65535, 0], "for having to work the very thought of": [65535, 0], "having to work the very thought of it": [65535, 0], "to work the very thought of it burnt": [65535, 0], "work the very thought of it burnt him": [65535, 0], "the very thought of it burnt him like": [65535, 0], "very thought of it burnt him like fire": [65535, 0], "thought of it burnt him like fire he": [65535, 0], "of it burnt him like fire he got": [65535, 0], "it burnt him like fire he got out": [65535, 0], "burnt him like fire he got out his": [65535, 0], "him like fire he got out his worldly": [65535, 0], "like fire he got out his worldly wealth": [65535, 0], "fire he got out his worldly wealth and": [65535, 0], "he got out his worldly wealth and examined": [65535, 0], "got out his worldly wealth and examined it": [65535, 0], "out his worldly wealth and examined it bits": [65535, 0], "his worldly wealth and examined it bits of": [65535, 0], "worldly wealth and examined it bits of toys": [65535, 0], "wealth and examined it bits of toys marbles": [65535, 0], "and examined it bits of toys marbles and": [65535, 0], "examined it bits of toys marbles and trash": [65535, 0], "it bits of toys marbles and trash enough": [65535, 0], "bits of toys marbles and trash enough to": [65535, 0], "of toys marbles and trash enough to buy": [65535, 0], "toys marbles and trash enough to buy an": [65535, 0], "marbles and trash enough to buy an exchange": [65535, 0], "and trash enough to buy an exchange of": [65535, 0], "trash enough to buy an exchange of work": [65535, 0], "enough to buy an exchange of work maybe": [65535, 0], "to buy an exchange of work maybe but": [65535, 0], "buy an exchange of work maybe but not": [65535, 0], "an exchange of work maybe but not half": [65535, 0], "exchange of work maybe but not half enough": [65535, 0], "of work maybe but not half enough to": [65535, 0], "work maybe but not half enough to buy": [65535, 0], "maybe but not half enough to buy so": [65535, 0], "but not half enough to buy so much": [65535, 0], "not half enough to buy so much as": [65535, 0], "half enough to buy so much as half": [65535, 0], "enough to buy so much as half an": [65535, 0], "to buy so much as half an hour": [65535, 0], "buy so much as half an hour of": [65535, 0], "so much as half an hour of pure": [65535, 0], "much as half an hour of pure freedom": [65535, 0], "as half an hour of pure freedom so": [65535, 0], "half an hour of pure freedom so he": [65535, 0], "an hour of pure freedom so he returned": [65535, 0], "hour of pure freedom so he returned his": [65535, 0], "of pure freedom so he returned his straitened": [65535, 0], "pure freedom so he returned his straitened means": [65535, 0], "freedom so he returned his straitened means to": [65535, 0], "so he returned his straitened means to his": [65535, 0], "he returned his straitened means to his pocket": [65535, 0], "returned his straitened means to his pocket and": [65535, 0], "his straitened means to his pocket and gave": [65535, 0], "straitened means to his pocket and gave up": [65535, 0], "means to his pocket and gave up the": [65535, 0], "to his pocket and gave up the idea": [65535, 0], "his pocket and gave up the idea of": [65535, 0], "pocket and gave up the idea of trying": [65535, 0], "and gave up the idea of trying to": [65535, 0], "gave up the idea of trying to buy": [65535, 0], "up the idea of trying to buy the": [65535, 0], "the idea of trying to buy the boys": [65535, 0], "idea of trying to buy the boys at": [65535, 0], "of trying to buy the boys at this": [65535, 0], "trying to buy the boys at this dark": [65535, 0], "to buy the boys at this dark and": [65535, 0], "buy the boys at this dark and hopeless": [65535, 0], "the boys at this dark and hopeless moment": [65535, 0], "boys at this dark and hopeless moment an": [65535, 0], "at this dark and hopeless moment an inspiration": [65535, 0], "this dark and hopeless moment an inspiration burst": [65535, 0], "dark and hopeless moment an inspiration burst upon": [65535, 0], "and hopeless moment an inspiration burst upon him": [65535, 0], "hopeless moment an inspiration burst upon him nothing": [65535, 0], "moment an inspiration burst upon him nothing less": [65535, 0], "an inspiration burst upon him nothing less than": [65535, 0], "inspiration burst upon him nothing less than a": [65535, 0], "burst upon him nothing less than a great": [65535, 0], "upon him nothing less than a great magnificent": [65535, 0], "him nothing less than a great magnificent inspiration": [65535, 0], "nothing less than a great magnificent inspiration he": [65535, 0], "less than a great magnificent inspiration he took": [65535, 0], "than a great magnificent inspiration he took up": [65535, 0], "a great magnificent inspiration he took up his": [65535, 0], "great magnificent inspiration he took up his brush": [65535, 0], "magnificent inspiration he took up his brush and": [65535, 0], "inspiration he took up his brush and went": [65535, 0], "he took up his brush and went tranquilly": [65535, 0], "took up his brush and went tranquilly to": [65535, 0], "up his brush and went tranquilly to work": [65535, 0], "his brush and went tranquilly to work ben": [65535, 0], "brush and went tranquilly to work ben rogers": [65535, 0], "and went tranquilly to work ben rogers hove": [65535, 0], "went tranquilly to work ben rogers hove in": [65535, 0], "tranquilly to work ben rogers hove in sight": [65535, 0], "to work ben rogers hove in sight presently": [65535, 0], "work ben rogers hove in sight presently the": [65535, 0], "ben rogers hove in sight presently the very": [65535, 0], "rogers hove in sight presently the very boy": [65535, 0], "hove in sight presently the very boy of": [65535, 0], "in sight presently the very boy of all": [65535, 0], "sight presently the very boy of all boys": [65535, 0], "presently the very boy of all boys whose": [65535, 0], "the very boy of all boys whose ridicule": [65535, 0], "very boy of all boys whose ridicule he": [65535, 0], "boy of all boys whose ridicule he had": [65535, 0], "of all boys whose ridicule he had been": [65535, 0], "all boys whose ridicule he had been dreading": [65535, 0], "boys whose ridicule he had been dreading ben's": [65535, 0], "whose ridicule he had been dreading ben's gait": [65535, 0], "ridicule he had been dreading ben's gait was": [65535, 0], "he had been dreading ben's gait was the": [65535, 0], "had been dreading ben's gait was the hop": [65535, 0], "been dreading ben's gait was the hop skip": [65535, 0], "dreading ben's gait was the hop skip and": [65535, 0], "ben's gait was the hop skip and jump": [65535, 0], "gait was the hop skip and jump proof": [65535, 0], "was the hop skip and jump proof enough": [65535, 0], "the hop skip and jump proof enough that": [65535, 0], "hop skip and jump proof enough that his": [65535, 0], "skip and jump proof enough that his heart": [65535, 0], "and jump proof enough that his heart was": [65535, 0], "jump proof enough that his heart was light": [65535, 0], "proof enough that his heart was light and": [65535, 0], "enough that his heart was light and his": [65535, 0], "that his heart was light and his anticipations": [65535, 0], "his heart was light and his anticipations high": [65535, 0], "heart was light and his anticipations high he": [65535, 0], "was light and his anticipations high he was": [65535, 0], "light and his anticipations high he was eating": [65535, 0], "and his anticipations high he was eating an": [65535, 0], "his anticipations high he was eating an apple": [65535, 0], "anticipations high he was eating an apple and": [65535, 0], "high he was eating an apple and giving": [65535, 0], "he was eating an apple and giving a": [65535, 0], "was eating an apple and giving a long": [65535, 0], "eating an apple and giving a long melodious": [65535, 0], "an apple and giving a long melodious whoop": [65535, 0], "apple and giving a long melodious whoop at": [65535, 0], "and giving a long melodious whoop at intervals": [65535, 0], "giving a long melodious whoop at intervals followed": [65535, 0], "a long melodious whoop at intervals followed by": [65535, 0], "long melodious whoop at intervals followed by a": [65535, 0], "melodious whoop at intervals followed by a deep": [65535, 0], "whoop at intervals followed by a deep toned": [65535, 0], "at intervals followed by a deep toned ding": [65535, 0], "intervals followed by a deep toned ding dong": [65535, 0], "followed by a deep toned ding dong dong": [65535, 0], "by a deep toned ding dong dong ding": [65535, 0], "a deep toned ding dong dong ding dong": [65535, 0], "deep toned ding dong dong ding dong dong": [65535, 0], "toned ding dong dong ding dong dong for": [65535, 0], "ding dong dong ding dong dong for he": [65535, 0], "dong dong ding dong dong for he was": [65535, 0], "dong ding dong dong for he was personating": [65535, 0], "ding dong dong for he was personating a": [65535, 0], "dong dong for he was personating a steamboat": [65535, 0], "dong for he was personating a steamboat as": [65535, 0], "for he was personating a steamboat as he": [65535, 0], "he was personating a steamboat as he drew": [65535, 0], "was personating a steamboat as he drew near": [65535, 0], "personating a steamboat as he drew near he": [65535, 0], "a steamboat as he drew near he slackened": [65535, 0], "steamboat as he drew near he slackened speed": [65535, 0], "as he drew near he slackened speed took": [65535, 0], "he drew near he slackened speed took the": [65535, 0], "drew near he slackened speed took the middle": [65535, 0], "near he slackened speed took the middle of": [65535, 0], "he slackened speed took the middle of the": [65535, 0], "slackened speed took the middle of the street": [65535, 0], "speed took the middle of the street leaned": [65535, 0], "took the middle of the street leaned far": [65535, 0], "the middle of the street leaned far over": [65535, 0], "middle of the street leaned far over to": [65535, 0], "of the street leaned far over to starboard": [65535, 0], "the street leaned far over to starboard and": [65535, 0], "street leaned far over to starboard and rounded": [65535, 0], "leaned far over to starboard and rounded to": [65535, 0], "far over to starboard and rounded to ponderously": [65535, 0], "over to starboard and rounded to ponderously and": [65535, 0], "to starboard and rounded to ponderously and with": [65535, 0], "starboard and rounded to ponderously and with laborious": [65535, 0], "and rounded to ponderously and with laborious pomp": [65535, 0], "rounded to ponderously and with laborious pomp and": [65535, 0], "to ponderously and with laborious pomp and circumstance": [65535, 0], "ponderously and with laborious pomp and circumstance for": [65535, 0], "and with laborious pomp and circumstance for he": [65535, 0], "with laborious pomp and circumstance for he was": [65535, 0], "laborious pomp and circumstance for he was personating": [65535, 0], "pomp and circumstance for he was personating the": [65535, 0], "and circumstance for he was personating the big": [65535, 0], "circumstance for he was personating the big missouri": [65535, 0], "for he was personating the big missouri and": [65535, 0], "he was personating the big missouri and considered": [65535, 0], "was personating the big missouri and considered himself": [65535, 0], "personating the big missouri and considered himself to": [65535, 0], "the big missouri and considered himself to be": [65535, 0], "big missouri and considered himself to be drawing": [65535, 0], "missouri and considered himself to be drawing nine": [65535, 0], "and considered himself to be drawing nine feet": [65535, 0], "considered himself to be drawing nine feet of": [65535, 0], "himself to be drawing nine feet of water": [65535, 0], "to be drawing nine feet of water he": [65535, 0], "be drawing nine feet of water he was": [65535, 0], "drawing nine feet of water he was boat": [65535, 0], "nine feet of water he was boat and": [65535, 0], "feet of water he was boat and captain": [65535, 0], "of water he was boat and captain and": [65535, 0], "water he was boat and captain and engine": [65535, 0], "he was boat and captain and engine bells": [65535, 0], "was boat and captain and engine bells combined": [65535, 0], "boat and captain and engine bells combined so": [65535, 0], "and captain and engine bells combined so he": [65535, 0], "captain and engine bells combined so he had": [65535, 0], "and engine bells combined so he had to": [65535, 0], "engine bells combined so he had to imagine": [65535, 0], "bells combined so he had to imagine himself": [65535, 0], "combined so he had to imagine himself standing": [65535, 0], "so he had to imagine himself standing on": [65535, 0], "he had to imagine himself standing on his": [65535, 0], "had to imagine himself standing on his own": [65535, 0], "to imagine himself standing on his own hurricane": [65535, 0], "imagine himself standing on his own hurricane deck": [65535, 0], "himself standing on his own hurricane deck giving": [65535, 0], "standing on his own hurricane deck giving the": [65535, 0], "on his own hurricane deck giving the orders": [65535, 0], "his own hurricane deck giving the orders and": [65535, 0], "own hurricane deck giving the orders and executing": [65535, 0], "hurricane deck giving the orders and executing them": [65535, 0], "deck giving the orders and executing them stop": [65535, 0], "giving the orders and executing them stop her": [65535, 0], "the orders and executing them stop her sir": [65535, 0], "orders and executing them stop her sir ting": [65535, 0], "and executing them stop her sir ting a": [65535, 0], "executing them stop her sir ting a ling": [65535, 0], "them stop her sir ting a ling ling": [65535, 0], "stop her sir ting a ling ling the": [65535, 0], "her sir ting a ling ling the headway": [65535, 0], "sir ting a ling ling the headway ran": [65535, 0], "ting a ling ling the headway ran almost": [65535, 0], "a ling ling the headway ran almost out": [65535, 0], "ling ling the headway ran almost out and": [65535, 0], "ling the headway ran almost out and he": [65535, 0], "the headway ran almost out and he drew": [65535, 0], "headway ran almost out and he drew up": [65535, 0], "ran almost out and he drew up slowly": [65535, 0], "almost out and he drew up slowly toward": [65535, 0], "out and he drew up slowly toward the": [65535, 0], "and he drew up slowly toward the sidewalk": [65535, 0], "he drew up slowly toward the sidewalk ship": [65535, 0], "drew up slowly toward the sidewalk ship up": [65535, 0], "up slowly toward the sidewalk ship up to": [65535, 0], "slowly toward the sidewalk ship up to back": [65535, 0], "toward the sidewalk ship up to back ting": [65535, 0], "the sidewalk ship up to back ting a": [65535, 0], "sidewalk ship up to back ting a ling": [65535, 0], "ship up to back ting a ling ling": [65535, 0], "up to back ting a ling ling his": [65535, 0], "to back ting a ling ling his arms": [65535, 0], "back ting a ling ling his arms straightened": [65535, 0], "ting a ling ling his arms straightened and": [65535, 0], "a ling ling his arms straightened and stiffened": [65535, 0], "ling ling his arms straightened and stiffened down": [65535, 0], "ling his arms straightened and stiffened down his": [65535, 0], "his arms straightened and stiffened down his sides": [65535, 0], "arms straightened and stiffened down his sides set": [65535, 0], "straightened and stiffened down his sides set her": [65535, 0], "and stiffened down his sides set her back": [65535, 0], "stiffened down his sides set her back on": [65535, 0], "down his sides set her back on the": [65535, 0], "his sides set her back on the stabboard": [65535, 0], "sides set her back on the stabboard ting": [65535, 0], "set her back on the stabboard ting a": [65535, 0], "her back on the stabboard ting a ling": [65535, 0], "back on the stabboard ting a ling ling": [65535, 0], "on the stabboard ting a ling ling chow": [65535, 0], "the stabboard ting a ling ling chow ch": [65535, 0], "stabboard ting a ling ling chow ch chow": [65535, 0], "ting a ling ling chow ch chow wow": [65535, 0], "a ling ling chow ch chow wow chow": [65535, 0], "ling ling chow ch chow wow chow his": [65535, 0], "ling chow ch chow wow chow his right": [65535, 0], "chow ch chow wow chow his right hand": [65535, 0], "ch chow wow chow his right hand meantime": [65535, 0], "chow wow chow his right hand meantime describing": [65535, 0], "wow chow his right hand meantime describing stately": [65535, 0], "chow his right hand meantime describing stately circles": [65535, 0], "his right hand meantime describing stately circles for": [65535, 0], "right hand meantime describing stately circles for it": [65535, 0], "hand meantime describing stately circles for it was": [65535, 0], "meantime describing stately circles for it was representing": [65535, 0], "describing stately circles for it was representing a": [65535, 0], "stately circles for it was representing a forty": [65535, 0], "circles for it was representing a forty foot": [65535, 0], "for it was representing a forty foot wheel": [65535, 0], "it was representing a forty foot wheel let": [65535, 0], "was representing a forty foot wheel let her": [65535, 0], "representing a forty foot wheel let her go": [65535, 0], "a forty foot wheel let her go back": [65535, 0], "forty foot wheel let her go back on": [65535, 0], "foot wheel let her go back on the": [65535, 0], "wheel let her go back on the labboard": [65535, 0], "let her go back on the labboard ting": [65535, 0], "her go back on the labboard ting a": [65535, 0], "go back on the labboard ting a ling": [65535, 0], "back on the labboard ting a ling ling": [65535, 0], "on the labboard ting a ling ling chow": [65535, 0], "the labboard ting a ling ling chow ch": [65535, 0], "labboard ting a ling ling chow ch chow": [65535, 0], "ting a ling ling chow ch chow chow": [65535, 0], "a ling ling chow ch chow chow the": [65535, 0], "ling ling chow ch chow chow the left": [65535, 0], "ling chow ch chow chow the left hand": [65535, 0], "chow ch chow chow the left hand began": [65535, 0], "ch chow chow the left hand began to": [65535, 0], "chow chow the left hand began to describe": [65535, 0], "chow the left hand began to describe circles": [65535, 0], "the left hand began to describe circles stop": [65535, 0], "left hand began to describe circles stop the": [65535, 0], "hand began to describe circles stop the stabboard": [65535, 0], "began to describe circles stop the stabboard ting": [65535, 0], "to describe circles stop the stabboard ting a": [65535, 0], "describe circles stop the stabboard ting a ling": [65535, 0], "circles stop the stabboard ting a ling ling": [65535, 0], "stop the stabboard ting a ling ling stop": [65535, 0], "the stabboard ting a ling ling stop the": [65535, 0], "stabboard ting a ling ling stop the labboard": [65535, 0], "ting a ling ling stop the labboard come": [65535, 0], "a ling ling stop the labboard come ahead": [65535, 0], "ling ling stop the labboard come ahead on": [65535, 0], "ling stop the labboard come ahead on the": [65535, 0], "stop the labboard come ahead on the stabboard": [65535, 0], "the labboard come ahead on the stabboard stop": [65535, 0], "labboard come ahead on the stabboard stop her": [65535, 0], "come ahead on the stabboard stop her let": [65535, 0], "ahead on the stabboard stop her let your": [65535, 0], "on the stabboard stop her let your outside": [65535, 0], "the stabboard stop her let your outside turn": [65535, 0], "stabboard stop her let your outside turn over": [65535, 0], "stop her let your outside turn over slow": [65535, 0], "her let your outside turn over slow ting": [65535, 0], "let your outside turn over slow ting a": [65535, 0], "your outside turn over slow ting a ling": [65535, 0], "outside turn over slow ting a ling ling": [65535, 0], "turn over slow ting a ling ling chow": [65535, 0], "over slow ting a ling ling chow ow": [65535, 0], "slow ting a ling ling chow ow ow": [65535, 0], "ting a ling ling chow ow ow get": [65535, 0], "a ling ling chow ow ow get out": [65535, 0], "ling ling chow ow ow get out that": [65535, 0], "ling chow ow ow get out that head": [65535, 0], "chow ow ow get out that head line": [65535, 0], "ow ow get out that head line lively": [65535, 0], "ow get out that head line lively now": [65535, 0], "get out that head line lively now come": [65535, 0], "out that head line lively now come out": [65535, 0], "that head line lively now come out with": [65535, 0], "head line lively now come out with your": [65535, 0], "line lively now come out with your spring": [65535, 0], "lively now come out with your spring line": [65535, 0], "now come out with your spring line what're": [65535, 0], "come out with your spring line what're you": [65535, 0], "out with your spring line what're you about": [65535, 0], "with your spring line what're you about there": [65535, 0], "your spring line what're you about there take": [65535, 0], "spring line what're you about there take a": [65535, 0], "line what're you about there take a turn": [65535, 0], "what're you about there take a turn round": [65535, 0], "you about there take a turn round that": [65535, 0], "about there take a turn round that stump": [65535, 0], "there take a turn round that stump with": [65535, 0], "take a turn round that stump with the": [65535, 0], "a turn round that stump with the bight": [65535, 0], "turn round that stump with the bight of": [65535, 0], "round that stump with the bight of it": [65535, 0], "that stump with the bight of it stand": [65535, 0], "stump with the bight of it stand by": [65535, 0], "with the bight of it stand by that": [65535, 0], "the bight of it stand by that stage": [65535, 0], "bight of it stand by that stage now": [65535, 0], "of it stand by that stage now let": [65535, 0], "it stand by that stage now let her": [65535, 0], "stand by that stage now let her go": [65535, 0], "by that stage now let her go done": [65535, 0], "that stage now let her go done with": [65535, 0], "stage now let her go done with the": [65535, 0], "now let her go done with the engines": [65535, 0], "let her go done with the engines sir": [65535, 0], "her go done with the engines sir ting": [65535, 0], "go done with the engines sir ting a": [65535, 0], "done with the engines sir ting a ling": [65535, 0], "with the engines sir ting a ling ling": [65535, 0], "the engines sir ting a ling ling sh't": [65535, 0], "engines sir ting a ling ling sh't s'h't": [65535, 0], "sir ting a ling ling sh't s'h't sh't": [65535, 0], "ting a ling ling sh't s'h't sh't trying": [65535, 0], "a ling ling sh't s'h't sh't trying the": [65535, 0], "ling ling sh't s'h't sh't trying the gauge": [65535, 0], "ling sh't s'h't sh't trying the gauge cocks": [65535, 0], "sh't s'h't sh't trying the gauge cocks tom": [65535, 0], "s'h't sh't trying the gauge cocks tom went": [65535, 0], "sh't trying the gauge cocks tom went on": [65535, 0], "trying the gauge cocks tom went on whitewashing": [65535, 0], "the gauge cocks tom went on whitewashing paid": [65535, 0], "gauge cocks tom went on whitewashing paid no": [65535, 0], "cocks tom went on whitewashing paid no attention": [65535, 0], "tom went on whitewashing paid no attention to": [65535, 0], "went on whitewashing paid no attention to the": [65535, 0], "on whitewashing paid no attention to the steamboat": [65535, 0], "whitewashing paid no attention to the steamboat ben": [65535, 0], "paid no attention to the steamboat ben stared": [65535, 0], "no attention to the steamboat ben stared a": [65535, 0], "attention to the steamboat ben stared a moment": [65535, 0], "to the steamboat ben stared a moment and": [65535, 0], "the steamboat ben stared a moment and then": [65535, 0], "steamboat ben stared a moment and then said": [65535, 0], "ben stared a moment and then said hi": [65535, 0], "stared a moment and then said hi yi": [65535, 0], "a moment and then said hi yi you're": [65535, 0], "moment and then said hi yi you're up": [65535, 0], "and then said hi yi you're up a": [65535, 0], "then said hi yi you're up a stump": [65535, 0], "said hi yi you're up a stump ain't": [65535, 0], "hi yi you're up a stump ain't you": [65535, 0], "yi you're up a stump ain't you no": [65535, 0], "you're up a stump ain't you no answer": [65535, 0], "up a stump ain't you no answer tom": [65535, 0], "a stump ain't you no answer tom surveyed": [65535, 0], "stump ain't you no answer tom surveyed his": [65535, 0], "ain't you no answer tom surveyed his last": [65535, 0], "you no answer tom surveyed his last touch": [65535, 0], "no answer tom surveyed his last touch with": [65535, 0], "answer tom surveyed his last touch with the": [65535, 0], "tom surveyed his last touch with the eye": [65535, 0], "surveyed his last touch with the eye of": [65535, 0], "his last touch with the eye of an": [65535, 0], "last touch with the eye of an artist": [65535, 0], "touch with the eye of an artist then": [65535, 0], "with the eye of an artist then he": [65535, 0], "the eye of an artist then he gave": [65535, 0], "eye of an artist then he gave his": [65535, 0], "of an artist then he gave his brush": [65535, 0], "an artist then he gave his brush another": [65535, 0], "artist then he gave his brush another gentle": [65535, 0], "then he gave his brush another gentle sweep": [65535, 0], "he gave his brush another gentle sweep and": [65535, 0], "gave his brush another gentle sweep and surveyed": [65535, 0], "his brush another gentle sweep and surveyed the": [65535, 0], "brush another gentle sweep and surveyed the result": [65535, 0], "another gentle sweep and surveyed the result as": [65535, 0], "gentle sweep and surveyed the result as before": [65535, 0], "sweep and surveyed the result as before ben": [65535, 0], "and surveyed the result as before ben ranged": [65535, 0], "surveyed the result as before ben ranged up": [65535, 0], "the result as before ben ranged up alongside": [65535, 0], "result as before ben ranged up alongside of": [65535, 0], "as before ben ranged up alongside of him": [65535, 0], "before ben ranged up alongside of him tom's": [65535, 0], "ben ranged up alongside of him tom's mouth": [65535, 0], "ranged up alongside of him tom's mouth watered": [65535, 0], "up alongside of him tom's mouth watered for": [65535, 0], "alongside of him tom's mouth watered for the": [65535, 0], "of him tom's mouth watered for the apple": [65535, 0], "him tom's mouth watered for the apple but": [65535, 0], "tom's mouth watered for the apple but he": [65535, 0], "mouth watered for the apple but he stuck": [65535, 0], "watered for the apple but he stuck to": [65535, 0], "for the apple but he stuck to his": [65535, 0], "the apple but he stuck to his work": [65535, 0], "apple but he stuck to his work ben": [65535, 0], "but he stuck to his work ben said": [65535, 0], "he stuck to his work ben said hello": [65535, 0], "stuck to his work ben said hello old": [65535, 0], "to his work ben said hello old chap": [65535, 0], "his work ben said hello old chap you": [65535, 0], "work ben said hello old chap you got": [65535, 0], "ben said hello old chap you got to": [65535, 0], "said hello old chap you got to work": [65535, 0], "hello old chap you got to work hey": [65535, 0], "old chap you got to work hey tom": [65535, 0], "chap you got to work hey tom wheeled": [65535, 0], "you got to work hey tom wheeled suddenly": [65535, 0], "got to work hey tom wheeled suddenly and": [65535, 0], "to work hey tom wheeled suddenly and said": [65535, 0], "work hey tom wheeled suddenly and said why": [65535, 0], "hey tom wheeled suddenly and said why it's": [65535, 0], "tom wheeled suddenly and said why it's you": [65535, 0], "wheeled suddenly and said why it's you ben": [65535, 0], "suddenly and said why it's you ben i": [65535, 0], "and said why it's you ben i warn't": [65535, 0], "said why it's you ben i warn't noticing": [65535, 0], "why it's you ben i warn't noticing say": [65535, 0], "it's you ben i warn't noticing say i'm": [65535, 0], "you ben i warn't noticing say i'm going": [65535, 0], "ben i warn't noticing say i'm going in": [65535, 0], "i warn't noticing say i'm going in a": [65535, 0], "warn't noticing say i'm going in a swimming": [65535, 0], "noticing say i'm going in a swimming i": [65535, 0], "say i'm going in a swimming i am": [65535, 0], "i'm going in a swimming i am don't": [65535, 0], "going in a swimming i am don't you": [65535, 0], "in a swimming i am don't you wish": [65535, 0], "a swimming i am don't you wish you": [65535, 0], "swimming i am don't you wish you could": [65535, 0], "i am don't you wish you could but": [65535, 0], "am don't you wish you could but of": [65535, 0], "don't you wish you could but of course": [65535, 0], "you wish you could but of course you'd": [65535, 0], "wish you could but of course you'd druther": [65535, 0], "you could but of course you'd druther work": [65535, 0], "could but of course you'd druther work wouldn't": [65535, 0], "but of course you'd druther work wouldn't you": [65535, 0], "of course you'd druther work wouldn't you course": [65535, 0], "course you'd druther work wouldn't you course you": [65535, 0], "you'd druther work wouldn't you course you would": [65535, 0], "druther work wouldn't you course you would tom": [65535, 0], "work wouldn't you course you would tom contemplated": [65535, 0], "wouldn't you course you would tom contemplated the": [65535, 0], "you course you would tom contemplated the boy": [65535, 0], "course you would tom contemplated the boy a": [65535, 0], "you would tom contemplated the boy a bit": [65535, 0], "would tom contemplated the boy a bit and": [65535, 0], "tom contemplated the boy a bit and said": [65535, 0], "contemplated the boy a bit and said what": [65535, 0], "the boy a bit and said what do": [65535, 0], "boy a bit and said what do you": [65535, 0], "a bit and said what do you call": [65535, 0], "bit and said what do you call work": [65535, 0], "and said what do you call work why": [65535, 0], "said what do you call work why ain't": [65535, 0], "what do you call work why ain't that": [65535, 0], "do you call work why ain't that work": [65535, 0], "you call work why ain't that work tom": [65535, 0], "call work why ain't that work tom resumed": [65535, 0], "work why ain't that work tom resumed his": [65535, 0], "why ain't that work tom resumed his whitewashing": [65535, 0], "ain't that work tom resumed his whitewashing and": [65535, 0], "that work tom resumed his whitewashing and answered": [65535, 0], "work tom resumed his whitewashing and answered carelessly": [65535, 0], "tom resumed his whitewashing and answered carelessly well": [65535, 0], "resumed his whitewashing and answered carelessly well maybe": [65535, 0], "his whitewashing and answered carelessly well maybe it": [65535, 0], "whitewashing and answered carelessly well maybe it is": [65535, 0], "and answered carelessly well maybe it is and": [65535, 0], "answered carelessly well maybe it is and maybe": [65535, 0], "carelessly well maybe it is and maybe it": [65535, 0], "well maybe it is and maybe it ain't": [65535, 0], "maybe it is and maybe it ain't all": [65535, 0], "it is and maybe it ain't all i": [65535, 0], "is and maybe it ain't all i know": [65535, 0], "and maybe it ain't all i know is": [65535, 0], "maybe it ain't all i know is it": [65535, 0], "it ain't all i know is it suits": [65535, 0], "ain't all i know is it suits tom": [65535, 0], "all i know is it suits tom sawyer": [65535, 0], "i know is it suits tom sawyer oh": [65535, 0], "know is it suits tom sawyer oh come": [65535, 0], "is it suits tom sawyer oh come now": [65535, 0], "it suits tom sawyer oh come now you": [65535, 0], "suits tom sawyer oh come now you don't": [65535, 0], "tom sawyer oh come now you don't mean": [65535, 0], "sawyer oh come now you don't mean to": [65535, 0], "oh come now you don't mean to let": [65535, 0], "come now you don't mean to let on": [65535, 0], "now you don't mean to let on that": [65535, 0], "you don't mean to let on that you": [65535, 0], "don't mean to let on that you like": [65535, 0], "mean to let on that you like it": [65535, 0], "to let on that you like it the": [65535, 0], "let on that you like it the brush": [65535, 0], "on that you like it the brush continued": [65535, 0], "that you like it the brush continued to": [65535, 0], "you like it the brush continued to move": [65535, 0], "like it the brush continued to move like": [65535, 0], "it the brush continued to move like it": [65535, 0], "the brush continued to move like it well": [65535, 0], "brush continued to move like it well i": [65535, 0], "continued to move like it well i don't": [65535, 0], "to move like it well i don't see": [65535, 0], "move like it well i don't see why": [65535, 0], "like it well i don't see why i": [65535, 0], "it well i don't see why i oughtn't": [65535, 0], "well i don't see why i oughtn't to": [65535, 0], "i don't see why i oughtn't to like": [65535, 0], "don't see why i oughtn't to like it": [65535, 0], "see why i oughtn't to like it does": [65535, 0], "why i oughtn't to like it does a": [65535, 0], "i oughtn't to like it does a boy": [65535, 0], "oughtn't to like it does a boy get": [65535, 0], "to like it does a boy get a": [65535, 0], "like it does a boy get a chance": [65535, 0], "it does a boy get a chance to": [65535, 0], "does a boy get a chance to whitewash": [65535, 0], "a boy get a chance to whitewash a": [65535, 0], "boy get a chance to whitewash a fence": [65535, 0], "get a chance to whitewash a fence every": [65535, 0], "a chance to whitewash a fence every day": [65535, 0], "chance to whitewash a fence every day that": [65535, 0], "to whitewash a fence every day that put": [65535, 0], "whitewash a fence every day that put the": [65535, 0], "a fence every day that put the thing": [65535, 0], "fence every day that put the thing in": [65535, 0], "every day that put the thing in a": [65535, 0], "day that put the thing in a new": [65535, 0], "that put the thing in a new light": [65535, 0], "put the thing in a new light ben": [65535, 0], "the thing in a new light ben stopped": [65535, 0], "thing in a new light ben stopped nibbling": [65535, 0], "in a new light ben stopped nibbling his": [65535, 0], "a new light ben stopped nibbling his apple": [65535, 0], "new light ben stopped nibbling his apple tom": [65535, 0], "light ben stopped nibbling his apple tom swept": [65535, 0], "ben stopped nibbling his apple tom swept his": [65535, 0], "stopped nibbling his apple tom swept his brush": [65535, 0], "nibbling his apple tom swept his brush daintily": [65535, 0], "his apple tom swept his brush daintily back": [65535, 0], "apple tom swept his brush daintily back and": [65535, 0], "tom swept his brush daintily back and forth": [65535, 0], "swept his brush daintily back and forth stepped": [65535, 0], "his brush daintily back and forth stepped back": [65535, 0], "brush daintily back and forth stepped back to": [65535, 0], "daintily back and forth stepped back to note": [65535, 0], "back and forth stepped back to note the": [65535, 0], "and forth stepped back to note the effect": [65535, 0], "forth stepped back to note the effect added": [65535, 0], "stepped back to note the effect added a": [65535, 0], "back to note the effect added a touch": [65535, 0], "to note the effect added a touch here": [65535, 0], "note the effect added a touch here and": [65535, 0], "the effect added a touch here and there": [65535, 0], "effect added a touch here and there criticised": [65535, 0], "added a touch here and there criticised the": [65535, 0], "a touch here and there criticised the effect": [65535, 0], "touch here and there criticised the effect again": [65535, 0], "here and there criticised the effect again ben": [65535, 0], "and there criticised the effect again ben watching": [65535, 0], "there criticised the effect again ben watching every": [65535, 0], "criticised the effect again ben watching every move": [65535, 0], "the effect again ben watching every move and": [65535, 0], "effect again ben watching every move and getting": [65535, 0], "again ben watching every move and getting more": [65535, 0], "ben watching every move and getting more and": [65535, 0], "watching every move and getting more and more": [65535, 0], "every move and getting more and more interested": [65535, 0], "move and getting more and more interested more": [65535, 0], "and getting more and more interested more and": [65535, 0], "getting more and more interested more and more": [65535, 0], "more and more interested more and more absorbed": [65535, 0], "and more interested more and more absorbed presently": [65535, 0], "more interested more and more absorbed presently he": [65535, 0], "interested more and more absorbed presently he said": [65535, 0], "more and more absorbed presently he said say": [65535, 0], "and more absorbed presently he said say tom": [65535, 0], "more absorbed presently he said say tom let": [65535, 0], "absorbed presently he said say tom let me": [65535, 0], "presently he said say tom let me whitewash": [65535, 0], "he said say tom let me whitewash a": [65535, 0], "said say tom let me whitewash a little": [65535, 0], "say tom let me whitewash a little tom": [65535, 0], "tom let me whitewash a little tom considered": [65535, 0], "let me whitewash a little tom considered was": [65535, 0], "me whitewash a little tom considered was about": [65535, 0], "whitewash a little tom considered was about to": [65535, 0], "a little tom considered was about to consent": [65535, 0], "little tom considered was about to consent but": [65535, 0], "tom considered was about to consent but he": [65535, 0], "considered was about to consent but he altered": [65535, 0], "was about to consent but he altered his": [65535, 0], "about to consent but he altered his mind": [65535, 0], "to consent but he altered his mind no": [65535, 0], "consent but he altered his mind no no": [65535, 0], "but he altered his mind no no i": [65535, 0], "he altered his mind no no i reckon": [65535, 0], "altered his mind no no i reckon it": [65535, 0], "his mind no no i reckon it wouldn't": [65535, 0], "mind no no i reckon it wouldn't hardly": [65535, 0], "no no i reckon it wouldn't hardly do": [65535, 0], "no i reckon it wouldn't hardly do ben": [65535, 0], "i reckon it wouldn't hardly do ben you": [65535, 0], "reckon it wouldn't hardly do ben you see": [65535, 0], "it wouldn't hardly do ben you see aunt": [65535, 0], "wouldn't hardly do ben you see aunt polly's": [65535, 0], "hardly do ben you see aunt polly's awful": [65535, 0], "do ben you see aunt polly's awful particular": [65535, 0], "ben you see aunt polly's awful particular about": [65535, 0], "you see aunt polly's awful particular about this": [65535, 0], "see aunt polly's awful particular about this fence": [65535, 0], "aunt polly's awful particular about this fence right": [65535, 0], "polly's awful particular about this fence right here": [65535, 0], "awful particular about this fence right here on": [65535, 0], "particular about this fence right here on the": [65535, 0], "about this fence right here on the street": [65535, 0], "this fence right here on the street you": [65535, 0], "fence right here on the street you know": [65535, 0], "right here on the street you know but": [65535, 0], "here on the street you know but if": [65535, 0], "on the street you know but if it": [65535, 0], "the street you know but if it was": [65535, 0], "street you know but if it was the": [65535, 0], "you know but if it was the back": [65535, 0], "know but if it was the back fence": [65535, 0], "but if it was the back fence i": [65535, 0], "if it was the back fence i wouldn't": [65535, 0], "it was the back fence i wouldn't mind": [65535, 0], "was the back fence i wouldn't mind and": [65535, 0], "the back fence i wouldn't mind and she": [65535, 0], "back fence i wouldn't mind and she wouldn't": [65535, 0], "fence i wouldn't mind and she wouldn't yes": [65535, 0], "i wouldn't mind and she wouldn't yes she's": [65535, 0], "wouldn't mind and she wouldn't yes she's awful": [65535, 0], "mind and she wouldn't yes she's awful particular": [65535, 0], "and she wouldn't yes she's awful particular about": [65535, 0], "she wouldn't yes she's awful particular about this": [65535, 0], "wouldn't yes she's awful particular about this fence": [65535, 0], "yes she's awful particular about this fence it's": [65535, 0], "she's awful particular about this fence it's got": [65535, 0], "awful particular about this fence it's got to": [65535, 0], "particular about this fence it's got to be": [65535, 0], "about this fence it's got to be done": [65535, 0], "this fence it's got to be done very": [65535, 0], "fence it's got to be done very careful": [65535, 0], "it's got to be done very careful i": [65535, 0], "got to be done very careful i reckon": [65535, 0], "to be done very careful i reckon there": [65535, 0], "be done very careful i reckon there ain't": [65535, 0], "done very careful i reckon there ain't one": [65535, 0], "very careful i reckon there ain't one boy": [65535, 0], "careful i reckon there ain't one boy in": [65535, 0], "i reckon there ain't one boy in a": [65535, 0], "reckon there ain't one boy in a thousand": [65535, 0], "there ain't one boy in a thousand maybe": [65535, 0], "ain't one boy in a thousand maybe two": [65535, 0], "one boy in a thousand maybe two thousand": [65535, 0], "boy in a thousand maybe two thousand that": [65535, 0], "in a thousand maybe two thousand that can": [65535, 0], "a thousand maybe two thousand that can do": [65535, 0], "thousand maybe two thousand that can do it": [65535, 0], "maybe two thousand that can do it the": [65535, 0], "two thousand that can do it the way": [65535, 0], "thousand that can do it the way it's": [65535, 0], "that can do it the way it's got": [65535, 0], "can do it the way it's got to": [65535, 0], "do it the way it's got to be": [65535, 0], "it the way it's got to be done": [65535, 0], "the way it's got to be done no": [65535, 0], "way it's got to be done no is": [65535, 0], "it's got to be done no is that": [65535, 0], "got to be done no is that so": [65535, 0], "to be done no is that so oh": [65535, 0], "be done no is that so oh come": [65535, 0], "done no is that so oh come now": [65535, 0], "no is that so oh come now lemme": [65535, 0], "is that so oh come now lemme just": [65535, 0], "that so oh come now lemme just try": [65535, 0], "so oh come now lemme just try only": [65535, 0], "oh come now lemme just try only just": [65535, 0], "come now lemme just try only just a": [65535, 0], "now lemme just try only just a little": [65535, 0], "lemme just try only just a little i'd": [65535, 0], "just try only just a little i'd let": [65535, 0], "try only just a little i'd let you": [65535, 0], "only just a little i'd let you if": [65535, 0], "just a little i'd let you if you": [65535, 0], "a little i'd let you if you was": [65535, 0], "little i'd let you if you was me": [65535, 0], "i'd let you if you was me tom": [65535, 0], "let you if you was me tom ben": [65535, 0], "you if you was me tom ben i'd": [65535, 0], "if you was me tom ben i'd like": [65535, 0], "you was me tom ben i'd like to": [65535, 0], "was me tom ben i'd like to honest": [65535, 0], "me tom ben i'd like to honest injun": [65535, 0], "tom ben i'd like to honest injun but": [65535, 0], "ben i'd like to honest injun but aunt": [65535, 0], "i'd like to honest injun but aunt polly": [65535, 0], "like to honest injun but aunt polly well": [65535, 0], "to honest injun but aunt polly well jim": [65535, 0], "honest injun but aunt polly well jim wanted": [65535, 0], "injun but aunt polly well jim wanted to": [65535, 0], "but aunt polly well jim wanted to do": [65535, 0], "aunt polly well jim wanted to do it": [65535, 0], "polly well jim wanted to do it but": [65535, 0], "well jim wanted to do it but she": [65535, 0], "jim wanted to do it but she wouldn't": [65535, 0], "wanted to do it but she wouldn't let": [65535, 0], "to do it but she wouldn't let him": [65535, 0], "do it but she wouldn't let him sid": [65535, 0], "it but she wouldn't let him sid wanted": [65535, 0], "but she wouldn't let him sid wanted to": [65535, 0], "she wouldn't let him sid wanted to do": [65535, 0], "wouldn't let him sid wanted to do it": [65535, 0], "let him sid wanted to do it and": [65535, 0], "him sid wanted to do it and she": [65535, 0], "sid wanted to do it and she wouldn't": [65535, 0], "wanted to do it and she wouldn't let": [65535, 0], "to do it and she wouldn't let sid": [65535, 0], "do it and she wouldn't let sid now": [65535, 0], "it and she wouldn't let sid now don't": [65535, 0], "and she wouldn't let sid now don't you": [65535, 0], "she wouldn't let sid now don't you see": [65535, 0], "wouldn't let sid now don't you see how": [65535, 0], "let sid now don't you see how i'm": [65535, 0], "sid now don't you see how i'm fixed": [65535, 0], "now don't you see how i'm fixed if": [65535, 0], "don't you see how i'm fixed if you": [65535, 0], "you see how i'm fixed if you was": [65535, 0], "see how i'm fixed if you was to": [65535, 0], "how i'm fixed if you was to tackle": [65535, 0], "i'm fixed if you was to tackle this": [65535, 0], "fixed if you was to tackle this fence": [65535, 0], "if you was to tackle this fence and": [65535, 0], "you was to tackle this fence and anything": [65535, 0], "was to tackle this fence and anything was": [65535, 0], "to tackle this fence and anything was to": [65535, 0], "tackle this fence and anything was to happen": [65535, 0], "this fence and anything was to happen to": [65535, 0], "fence and anything was to happen to it": [65535, 0], "and anything was to happen to it oh": [65535, 0], "anything was to happen to it oh shucks": [65535, 0], "was to happen to it oh shucks i'll": [65535, 0], "to happen to it oh shucks i'll be": [65535, 0], "happen to it oh shucks i'll be just": [65535, 0], "to it oh shucks i'll be just as": [65535, 0], "it oh shucks i'll be just as careful": [65535, 0], "oh shucks i'll be just as careful now": [65535, 0], "shucks i'll be just as careful now lemme": [65535, 0], "i'll be just as careful now lemme try": [65535, 0], "be just as careful now lemme try say": [65535, 0], "just as careful now lemme try say i'll": [65535, 0], "as careful now lemme try say i'll give": [65535, 0], "careful now lemme try say i'll give you": [65535, 0], "now lemme try say i'll give you the": [65535, 0], "lemme try say i'll give you the core": [65535, 0], "try say i'll give you the core of": [65535, 0], "say i'll give you the core of my": [65535, 0], "i'll give you the core of my apple": [65535, 0], "give you the core of my apple well": [65535, 0], "you the core of my apple well here": [65535, 0], "the core of my apple well here no": [65535, 0], "core of my apple well here no ben": [65535, 0], "of my apple well here no ben now": [65535, 0], "my apple well here no ben now don't": [65535, 0], "apple well here no ben now don't i'm": [65535, 0], "well here no ben now don't i'm afeard": [65535, 0], "here no ben now don't i'm afeard i'll": [65535, 0], "no ben now don't i'm afeard i'll give": [65535, 0], "ben now don't i'm afeard i'll give you": [65535, 0], "now don't i'm afeard i'll give you all": [65535, 0], "don't i'm afeard i'll give you all of": [65535, 0], "i'm afeard i'll give you all of it": [65535, 0], "afeard i'll give you all of it tom": [65535, 0], "i'll give you all of it tom gave": [65535, 0], "give you all of it tom gave up": [65535, 0], "you all of it tom gave up the": [65535, 0], "all of it tom gave up the brush": [65535, 0], "of it tom gave up the brush with": [65535, 0], "it tom gave up the brush with reluctance": [65535, 0], "tom gave up the brush with reluctance in": [65535, 0], "gave up the brush with reluctance in his": [65535, 0], "up the brush with reluctance in his face": [65535, 0], "the brush with reluctance in his face but": [65535, 0], "brush with reluctance in his face but alacrity": [65535, 0], "with reluctance in his face but alacrity in": [65535, 0], "reluctance in his face but alacrity in his": [65535, 0], "in his face but alacrity in his heart": [65535, 0], "his face but alacrity in his heart and": [65535, 0], "face but alacrity in his heart and while": [65535, 0], "but alacrity in his heart and while the": [65535, 0], "alacrity in his heart and while the late": [65535, 0], "in his heart and while the late steamer": [65535, 0], "his heart and while the late steamer big": [65535, 0], "heart and while the late steamer big missouri": [65535, 0], "and while the late steamer big missouri worked": [65535, 0], "while the late steamer big missouri worked and": [65535, 0], "the late steamer big missouri worked and sweated": [65535, 0], "late steamer big missouri worked and sweated in": [65535, 0], "steamer big missouri worked and sweated in the": [65535, 0], "big missouri worked and sweated in the sun": [65535, 0], "missouri worked and sweated in the sun the": [65535, 0], "worked and sweated in the sun the retired": [65535, 0], "and sweated in the sun the retired artist": [65535, 0], "sweated in the sun the retired artist sat": [65535, 0], "in the sun the retired artist sat on": [65535, 0], "the sun the retired artist sat on a": [65535, 0], "sun the retired artist sat on a barrel": [65535, 0], "the retired artist sat on a barrel in": [65535, 0], "retired artist sat on a barrel in the": [65535, 0], "artist sat on a barrel in the shade": [65535, 0], "sat on a barrel in the shade close": [65535, 0], "on a barrel in the shade close by": [65535, 0], "a barrel in the shade close by dangled": [65535, 0], "barrel in the shade close by dangled his": [65535, 0], "in the shade close by dangled his legs": [65535, 0], "the shade close by dangled his legs munched": [65535, 0], "shade close by dangled his legs munched his": [65535, 0], "close by dangled his legs munched his apple": [65535, 0], "by dangled his legs munched his apple and": [65535, 0], "dangled his legs munched his apple and planned": [65535, 0], "his legs munched his apple and planned the": [65535, 0], "legs munched his apple and planned the slaughter": [65535, 0], "munched his apple and planned the slaughter of": [65535, 0], "his apple and planned the slaughter of more": [65535, 0], "apple and planned the slaughter of more innocents": [65535, 0], "and planned the slaughter of more innocents there": [65535, 0], "planned the slaughter of more innocents there was": [65535, 0], "the slaughter of more innocents there was no": [65535, 0], "slaughter of more innocents there was no lack": [65535, 0], "of more innocents there was no lack of": [65535, 0], "more innocents there was no lack of material": [65535, 0], "innocents there was no lack of material boys": [65535, 0], "there was no lack of material boys happened": [65535, 0], "was no lack of material boys happened along": [65535, 0], "no lack of material boys happened along every": [65535, 0], "lack of material boys happened along every little": [65535, 0], "of material boys happened along every little while": [65535, 0], "material boys happened along every little while they": [65535, 0], "boys happened along every little while they came": [65535, 0], "happened along every little while they came to": [65535, 0], "along every little while they came to jeer": [65535, 0], "every little while they came to jeer but": [65535, 0], "little while they came to jeer but remained": [65535, 0], "while they came to jeer but remained to": [65535, 0], "they came to jeer but remained to whitewash": [65535, 0], "came to jeer but remained to whitewash by": [65535, 0], "to jeer but remained to whitewash by the": [65535, 0], "jeer but remained to whitewash by the time": [65535, 0], "but remained to whitewash by the time ben": [65535, 0], "remained to whitewash by the time ben was": [65535, 0], "to whitewash by the time ben was fagged": [65535, 0], "whitewash by the time ben was fagged out": [65535, 0], "by the time ben was fagged out tom": [65535, 0], "the time ben was fagged out tom had": [65535, 0], "time ben was fagged out tom had traded": [65535, 0], "ben was fagged out tom had traded the": [65535, 0], "was fagged out tom had traded the next": [65535, 0], "fagged out tom had traded the next chance": [65535, 0], "out tom had traded the next chance to": [65535, 0], "tom had traded the next chance to billy": [65535, 0], "had traded the next chance to billy fisher": [65535, 0], "traded the next chance to billy fisher for": [65535, 0], "the next chance to billy fisher for a": [65535, 0], "next chance to billy fisher for a kite": [65535, 0], "chance to billy fisher for a kite in": [65535, 0], "to billy fisher for a kite in good": [65535, 0], "billy fisher for a kite in good repair": [65535, 0], "fisher for a kite in good repair and": [65535, 0], "for a kite in good repair and when": [65535, 0], "a kite in good repair and when he": [65535, 0], "kite in good repair and when he played": [65535, 0], "in good repair and when he played out": [65535, 0], "good repair and when he played out johnny": [65535, 0], "repair and when he played out johnny miller": [65535, 0], "and when he played out johnny miller bought": [65535, 0], "when he played out johnny miller bought in": [65535, 0], "he played out johnny miller bought in for": [65535, 0], "played out johnny miller bought in for a": [65535, 0], "out johnny miller bought in for a dead": [65535, 0], "johnny miller bought in for a dead rat": [65535, 0], "miller bought in for a dead rat and": [65535, 0], "bought in for a dead rat and a": [65535, 0], "in for a dead rat and a string": [65535, 0], "for a dead rat and a string to": [65535, 0], "a dead rat and a string to swing": [65535, 0], "dead rat and a string to swing it": [65535, 0], "rat and a string to swing it with": [65535, 0], "and a string to swing it with and": [65535, 0], "a string to swing it with and so": [65535, 0], "string to swing it with and so on": [65535, 0], "to swing it with and so on and": [65535, 0], "swing it with and so on and so": [65535, 0], "it with and so on and so on": [65535, 0], "with and so on and so on hour": [65535, 0], "and so on and so on hour after": [65535, 0], "so on and so on hour after hour": [65535, 0], "on and so on hour after hour and": [65535, 0], "and so on hour after hour and when": [65535, 0], "so on hour after hour and when the": [65535, 0], "on hour after hour and when the middle": [65535, 0], "hour after hour and when the middle of": [65535, 0], "after hour and when the middle of the": [65535, 0], "hour and when the middle of the afternoon": [65535, 0], "and when the middle of the afternoon came": [65535, 0], "when the middle of the afternoon came from": [65535, 0], "the middle of the afternoon came from being": [65535, 0], "middle of the afternoon came from being a": [65535, 0], "of the afternoon came from being a poor": [65535, 0], "the afternoon came from being a poor poverty": [65535, 0], "afternoon came from being a poor poverty stricken": [65535, 0], "came from being a poor poverty stricken boy": [65535, 0], "from being a poor poverty stricken boy in": [65535, 0], "being a poor poverty stricken boy in the": [65535, 0], "a poor poverty stricken boy in the morning": [65535, 0], "poor poverty stricken boy in the morning tom": [65535, 0], "poverty stricken boy in the morning tom was": [65535, 0], "stricken boy in the morning tom was literally": [65535, 0], "boy in the morning tom was literally rolling": [65535, 0], "in the morning tom was literally rolling in": [65535, 0], "the morning tom was literally rolling in wealth": [65535, 0], "morning tom was literally rolling in wealth he": [65535, 0], "tom was literally rolling in wealth he had": [65535, 0], "was literally rolling in wealth he had besides": [65535, 0], "literally rolling in wealth he had besides the": [65535, 0], "rolling in wealth he had besides the things": [65535, 0], "in wealth he had besides the things before": [65535, 0], "wealth he had besides the things before mentioned": [65535, 0], "he had besides the things before mentioned twelve": [65535, 0], "had besides the things before mentioned twelve marbles": [65535, 0], "besides the things before mentioned twelve marbles part": [65535, 0], "the things before mentioned twelve marbles part of": [65535, 0], "things before mentioned twelve marbles part of a": [65535, 0], "before mentioned twelve marbles part of a jews": [65535, 0], "mentioned twelve marbles part of a jews harp": [65535, 0], "twelve marbles part of a jews harp a": [65535, 0], "marbles part of a jews harp a piece": [65535, 0], "part of a jews harp a piece of": [65535, 0], "of a jews harp a piece of blue": [65535, 0], "a jews harp a piece of blue bottle": [65535, 0], "jews harp a piece of blue bottle glass": [65535, 0], "harp a piece of blue bottle glass to": [65535, 0], "a piece of blue bottle glass to look": [65535, 0], "piece of blue bottle glass to look through": [65535, 0], "of blue bottle glass to look through a": [65535, 0], "blue bottle glass to look through a spool": [65535, 0], "bottle glass to look through a spool cannon": [65535, 0], "glass to look through a spool cannon a": [65535, 0], "to look through a spool cannon a key": [65535, 0], "look through a spool cannon a key that": [65535, 0], "through a spool cannon a key that wouldn't": [65535, 0], "a spool cannon a key that wouldn't unlock": [65535, 0], "spool cannon a key that wouldn't unlock anything": [65535, 0], "cannon a key that wouldn't unlock anything a": [65535, 0], "a key that wouldn't unlock anything a fragment": [65535, 0], "key that wouldn't unlock anything a fragment of": [65535, 0], "that wouldn't unlock anything a fragment of chalk": [65535, 0], "wouldn't unlock anything a fragment of chalk a": [65535, 0], "unlock anything a fragment of chalk a glass": [65535, 0], "anything a fragment of chalk a glass stopper": [65535, 0], "a fragment of chalk a glass stopper of": [65535, 0], "fragment of chalk a glass stopper of a": [65535, 0], "of chalk a glass stopper of a decanter": [65535, 0], "chalk a glass stopper of a decanter a": [65535, 0], "a glass stopper of a decanter a tin": [65535, 0], "glass stopper of a decanter a tin soldier": [65535, 0], "stopper of a decanter a tin soldier a": [65535, 0], "of a decanter a tin soldier a couple": [65535, 0], "a decanter a tin soldier a couple of": [65535, 0], "decanter a tin soldier a couple of tadpoles": [65535, 0], "a tin soldier a couple of tadpoles six": [65535, 0], "tin soldier a couple of tadpoles six fire": [65535, 0], "soldier a couple of tadpoles six fire crackers": [65535, 0], "a couple of tadpoles six fire crackers a": [65535, 0], "couple of tadpoles six fire crackers a kitten": [65535, 0], "of tadpoles six fire crackers a kitten with": [65535, 0], "tadpoles six fire crackers a kitten with only": [65535, 0], "six fire crackers a kitten with only one": [65535, 0], "fire crackers a kitten with only one eye": [65535, 0], "crackers a kitten with only one eye a": [65535, 0], "a kitten with only one eye a brass": [65535, 0], "kitten with only one eye a brass doorknob": [65535, 0], "with only one eye a brass doorknob a": [65535, 0], "only one eye a brass doorknob a dog": [65535, 0], "one eye a brass doorknob a dog collar": [65535, 0], "eye a brass doorknob a dog collar but": [65535, 0], "a brass doorknob a dog collar but no": [65535, 0], "brass doorknob a dog collar but no dog": [65535, 0], "doorknob a dog collar but no dog the": [65535, 0], "a dog collar but no dog the handle": [65535, 0], "dog collar but no dog the handle of": [65535, 0], "collar but no dog the handle of a": [65535, 0], "but no dog the handle of a knife": [65535, 0], "no dog the handle of a knife four": [65535, 0], "dog the handle of a knife four pieces": [65535, 0], "the handle of a knife four pieces of": [65535, 0], "handle of a knife four pieces of orange": [65535, 0], "of a knife four pieces of orange peel": [65535, 0], "a knife four pieces of orange peel and": [65535, 0], "knife four pieces of orange peel and a": [65535, 0], "four pieces of orange peel and a dilapidated": [65535, 0], "pieces of orange peel and a dilapidated old": [65535, 0], "of orange peel and a dilapidated old window": [65535, 0], "orange peel and a dilapidated old window sash": [65535, 0], "peel and a dilapidated old window sash he": [65535, 0], "and a dilapidated old window sash he had": [65535, 0], "a dilapidated old window sash he had had": [65535, 0], "dilapidated old window sash he had had a": [65535, 0], "old window sash he had had a nice": [65535, 0], "window sash he had had a nice good": [65535, 0], "sash he had had a nice good idle": [65535, 0], "he had had a nice good idle time": [65535, 0], "had had a nice good idle time all": [65535, 0], "had a nice good idle time all the": [65535, 0], "a nice good idle time all the while": [65535, 0], "nice good idle time all the while plenty": [65535, 0], "good idle time all the while plenty of": [65535, 0], "idle time all the while plenty of company": [65535, 0], "time all the while plenty of company and": [65535, 0], "all the while plenty of company and the": [65535, 0], "the while plenty of company and the fence": [65535, 0], "while plenty of company and the fence had": [65535, 0], "plenty of company and the fence had three": [65535, 0], "of company and the fence had three coats": [65535, 0], "company and the fence had three coats of": [65535, 0], "and the fence had three coats of whitewash": [65535, 0], "the fence had three coats of whitewash on": [65535, 0], "fence had three coats of whitewash on it": [65535, 0], "had three coats of whitewash on it if": [65535, 0], "three coats of whitewash on it if he": [65535, 0], "coats of whitewash on it if he hadn't": [65535, 0], "of whitewash on it if he hadn't run": [65535, 0], "whitewash on it if he hadn't run out": [65535, 0], "on it if he hadn't run out of": [65535, 0], "it if he hadn't run out of whitewash": [65535, 0], "if he hadn't run out of whitewash he": [65535, 0], "he hadn't run out of whitewash he would": [65535, 0], "hadn't run out of whitewash he would have": [65535, 0], "run out of whitewash he would have bankrupted": [65535, 0], "out of whitewash he would have bankrupted every": [65535, 0], "of whitewash he would have bankrupted every boy": [65535, 0], "whitewash he would have bankrupted every boy in": [65535, 0], "he would have bankrupted every boy in the": [65535, 0], "would have bankrupted every boy in the village": [65535, 0], "have bankrupted every boy in the village tom": [65535, 0], "bankrupted every boy in the village tom said": [65535, 0], "every boy in the village tom said to": [65535, 0], "boy in the village tom said to himself": [65535, 0], "in the village tom said to himself that": [65535, 0], "the village tom said to himself that it": [65535, 0], "village tom said to himself that it was": [65535, 0], "tom said to himself that it was not": [65535, 0], "said to himself that it was not such": [65535, 0], "to himself that it was not such a": [65535, 0], "himself that it was not such a hollow": [65535, 0], "that it was not such a hollow world": [65535, 0], "it was not such a hollow world after": [65535, 0], "was not such a hollow world after all": [65535, 0], "not such a hollow world after all he": [65535, 0], "such a hollow world after all he had": [65535, 0], "a hollow world after all he had discovered": [65535, 0], "hollow world after all he had discovered a": [65535, 0], "world after all he had discovered a great": [65535, 0], "after all he had discovered a great law": [65535, 0], "all he had discovered a great law of": [65535, 0], "he had discovered a great law of human": [65535, 0], "had discovered a great law of human action": [65535, 0], "discovered a great law of human action without": [65535, 0], "a great law of human action without knowing": [65535, 0], "great law of human action without knowing it": [65535, 0], "law of human action without knowing it namely": [65535, 0], "of human action without knowing it namely that": [65535, 0], "human action without knowing it namely that in": [65535, 0], "action without knowing it namely that in order": [65535, 0], "without knowing it namely that in order to": [65535, 0], "knowing it namely that in order to make": [65535, 0], "it namely that in order to make a": [65535, 0], "namely that in order to make a man": [65535, 0], "that in order to make a man or": [65535, 0], "in order to make a man or a": [65535, 0], "order to make a man or a boy": [65535, 0], "to make a man or a boy covet": [65535, 0], "make a man or a boy covet a": [65535, 0], "a man or a boy covet a thing": [65535, 0], "man or a boy covet a thing it": [65535, 0], "or a boy covet a thing it is": [65535, 0], "a boy covet a thing it is only": [65535, 0], "boy covet a thing it is only necessary": [65535, 0], "covet a thing it is only necessary to": [65535, 0], "a thing it is only necessary to make": [65535, 0], "thing it is only necessary to make the": [65535, 0], "it is only necessary to make the thing": [65535, 0], "is only necessary to make the thing difficult": [65535, 0], "only necessary to make the thing difficult to": [65535, 0], "necessary to make the thing difficult to attain": [65535, 0], "to make the thing difficult to attain if": [65535, 0], "make the thing difficult to attain if he": [65535, 0], "the thing difficult to attain if he had": [65535, 0], "thing difficult to attain if he had been": [65535, 0], "difficult to attain if he had been a": [65535, 0], "to attain if he had been a great": [65535, 0], "attain if he had been a great and": [65535, 0], "if he had been a great and wise": [65535, 0], "he had been a great and wise philosopher": [65535, 0], "had been a great and wise philosopher like": [65535, 0], "been a great and wise philosopher like the": [65535, 0], "a great and wise philosopher like the writer": [65535, 0], "great and wise philosopher like the writer of": [65535, 0], "and wise philosopher like the writer of this": [65535, 0], "wise philosopher like the writer of this book": [65535, 0], "philosopher like the writer of this book he": [65535, 0], "like the writer of this book he would": [65535, 0], "the writer of this book he would now": [65535, 0], "writer of this book he would now have": [65535, 0], "of this book he would now have comprehended": [65535, 0], "this book he would now have comprehended that": [65535, 0], "book he would now have comprehended that work": [65535, 0], "he would now have comprehended that work consists": [65535, 0], "would now have comprehended that work consists of": [65535, 0], "now have comprehended that work consists of whatever": [65535, 0], "have comprehended that work consists of whatever a": [65535, 0], "comprehended that work consists of whatever a body": [65535, 0], "that work consists of whatever a body is": [65535, 0], "work consists of whatever a body is obliged": [65535, 0], "consists of whatever a body is obliged to": [65535, 0], "of whatever a body is obliged to do": [65535, 0], "whatever a body is obliged to do and": [65535, 0], "a body is obliged to do and that": [65535, 0], "body is obliged to do and that play": [65535, 0], "is obliged to do and that play consists": [65535, 0], "obliged to do and that play consists of": [65535, 0], "to do and that play consists of whatever": [65535, 0], "do and that play consists of whatever a": [65535, 0], "and that play consists of whatever a body": [65535, 0], "that play consists of whatever a body is": [65535, 0], "play consists of whatever a body is not": [65535, 0], "consists of whatever a body is not obliged": [65535, 0], "of whatever a body is not obliged to": [65535, 0], "whatever a body is not obliged to do": [65535, 0], "a body is not obliged to do and": [65535, 0], "body is not obliged to do and this": [65535, 0], "is not obliged to do and this would": [65535, 0], "not obliged to do and this would help": [65535, 0], "obliged to do and this would help him": [65535, 0], "to do and this would help him to": [65535, 0], "do and this would help him to understand": [65535, 0], "and this would help him to understand why": [65535, 0], "this would help him to understand why constructing": [65535, 0], "would help him to understand why constructing artificial": [65535, 0], "help him to understand why constructing artificial flowers": [65535, 0], "him to understand why constructing artificial flowers or": [65535, 0], "to understand why constructing artificial flowers or performing": [65535, 0], "understand why constructing artificial flowers or performing on": [65535, 0], "why constructing artificial flowers or performing on a": [65535, 0], "constructing artificial flowers or performing on a tread": [65535, 0], "artificial flowers or performing on a tread mill": [65535, 0], "flowers or performing on a tread mill is": [65535, 0], "or performing on a tread mill is work": [65535, 0], "performing on a tread mill is work while": [65535, 0], "on a tread mill is work while rolling": [65535, 0], "a tread mill is work while rolling ten": [65535, 0], "tread mill is work while rolling ten pins": [65535, 0], "mill is work while rolling ten pins or": [65535, 0], "is work while rolling ten pins or climbing": [65535, 0], "work while rolling ten pins or climbing mont": [65535, 0], "while rolling ten pins or climbing mont blanc": [65535, 0], "rolling ten pins or climbing mont blanc is": [65535, 0], "ten pins or climbing mont blanc is only": [65535, 0], "pins or climbing mont blanc is only amusement": [65535, 0], "or climbing mont blanc is only amusement there": [65535, 0], "climbing mont blanc is only amusement there are": [65535, 0], "mont blanc is only amusement there are wealthy": [65535, 0], "blanc is only amusement there are wealthy gentlemen": [65535, 0], "is only amusement there are wealthy gentlemen in": [65535, 0], "only amusement there are wealthy gentlemen in england": [65535, 0], "amusement there are wealthy gentlemen in england who": [65535, 0], "there are wealthy gentlemen in england who drive": [65535, 0], "are wealthy gentlemen in england who drive four": [65535, 0], "wealthy gentlemen in england who drive four horse": [65535, 0], "gentlemen in england who drive four horse passenger": [65535, 0], "in england who drive four horse passenger coaches": [65535, 0], "england who drive four horse passenger coaches twenty": [65535, 0], "who drive four horse passenger coaches twenty or": [65535, 0], "drive four horse passenger coaches twenty or thirty": [65535, 0], "four horse passenger coaches twenty or thirty miles": [65535, 0], "horse passenger coaches twenty or thirty miles on": [65535, 0], "passenger coaches twenty or thirty miles on a": [65535, 0], "coaches twenty or thirty miles on a daily": [65535, 0], "twenty or thirty miles on a daily line": [65535, 0], "or thirty miles on a daily line in": [65535, 0], "thirty miles on a daily line in the": [65535, 0], "miles on a daily line in the summer": [65535, 0], "on a daily line in the summer because": [65535, 0], "a daily line in the summer because the": [65535, 0], "daily line in the summer because the privilege": [65535, 0], "line in the summer because the privilege costs": [65535, 0], "in the summer because the privilege costs them": [65535, 0], "the summer because the privilege costs them considerable": [65535, 0], "summer because the privilege costs them considerable money": [65535, 0], "because the privilege costs them considerable money but": [65535, 0], "the privilege costs them considerable money but if": [65535, 0], "privilege costs them considerable money but if they": [65535, 0], "costs them considerable money but if they were": [65535, 0], "them considerable money but if they were offered": [65535, 0], "considerable money but if they were offered wages": [65535, 0], "money but if they were offered wages for": [65535, 0], "but if they were offered wages for the": [65535, 0], "if they were offered wages for the service": [65535, 0], "they were offered wages for the service that": [65535, 0], "were offered wages for the service that would": [65535, 0], "offered wages for the service that would turn": [65535, 0], "wages for the service that would turn it": [65535, 0], "for the service that would turn it into": [65535, 0], "the service that would turn it into work": [65535, 0], "service that would turn it into work and": [65535, 0], "that would turn it into work and then": [65535, 0], "would turn it into work and then they": [65535, 0], "turn it into work and then they would": [65535, 0], "it into work and then they would resign": [65535, 0], "into work and then they would resign the": [65535, 0], "work and then they would resign the boy": [65535, 0], "and then they would resign the boy mused": [65535, 0], "then they would resign the boy mused awhile": [65535, 0], "they would resign the boy mused awhile over": [65535, 0], "would resign the boy mused awhile over the": [65535, 0], "resign the boy mused awhile over the substantial": [65535, 0], "the boy mused awhile over the substantial change": [65535, 0], "boy mused awhile over the substantial change which": [65535, 0], "mused awhile over the substantial change which had": [65535, 0], "awhile over the substantial change which had taken": [65535, 0], "over the substantial change which had taken place": [65535, 0], "the substantial change which had taken place in": [65535, 0], "substantial change which had taken place in his": [65535, 0], "change which had taken place in his worldly": [65535, 0], "which had taken place in his worldly circumstances": [65535, 0], "had taken place in his worldly circumstances and": [65535, 0], "taken place in his worldly circumstances and then": [65535, 0], "place in his worldly circumstances and then wended": [65535, 0], "in his worldly circumstances and then wended toward": [65535, 0], "his worldly circumstances and then wended toward headquarters": [65535, 0], "worldly circumstances and then wended toward headquarters to": [65535, 0], "circumstances and then wended toward headquarters to report": [65535, 0], "saturday morning was come and all the summer world": [65535, 0], "morning was come and all the summer world was": [65535, 0], "was come and all the summer world was bright": [65535, 0], "come and all the summer world was bright and": [65535, 0], "and all the summer world was bright and fresh": [65535, 0], "all the summer world was bright and fresh and": [65535, 0], "the summer world was bright and fresh and brimming": [65535, 0], "summer world was bright and fresh and brimming with": [65535, 0], "world was bright and fresh and brimming with life": [65535, 0], "was bright and fresh and brimming with life there": [65535, 0], "bright and fresh and brimming with life there was": [65535, 0], "and fresh and brimming with life there was a": [65535, 0], "fresh and brimming with life there was a song": [65535, 0], "and brimming with life there was a song in": [65535, 0], "brimming with life there was a song in every": [65535, 0], "with life there was a song in every heart": [65535, 0], "life there was a song in every heart and": [65535, 0], "there was a song in every heart and if": [65535, 0], "was a song in every heart and if the": [65535, 0], "a song in every heart and if the heart": [65535, 0], "song in every heart and if the heart was": [65535, 0], "in every heart and if the heart was young": [65535, 0], "every heart and if the heart was young the": [65535, 0], "heart and if the heart was young the music": [65535, 0], "and if the heart was young the music issued": [65535, 0], "if the heart was young the music issued at": [65535, 0], "the heart was young the music issued at the": [65535, 0], "heart was young the music issued at the lips": [65535, 0], "was young the music issued at the lips there": [65535, 0], "young the music issued at the lips there was": [65535, 0], "the music issued at the lips there was cheer": [65535, 0], "music issued at the lips there was cheer in": [65535, 0], "issued at the lips there was cheer in every": [65535, 0], "at the lips there was cheer in every face": [65535, 0], "the lips there was cheer in every face and": [65535, 0], "lips there was cheer in every face and a": [65535, 0], "there was cheer in every face and a spring": [65535, 0], "was cheer in every face and a spring in": [65535, 0], "cheer in every face and a spring in every": [65535, 0], "in every face and a spring in every step": [65535, 0], "every face and a spring in every step the": [65535, 0], "face and a spring in every step the locust": [65535, 0], "and a spring in every step the locust trees": [65535, 0], "a spring in every step the locust trees were": [65535, 0], "spring in every step the locust trees were in": [65535, 0], "in every step the locust trees were in bloom": [65535, 0], "every step the locust trees were in bloom and": [65535, 0], "step the locust trees were in bloom and the": [65535, 0], "the locust trees were in bloom and the fragrance": [65535, 0], "locust trees were in bloom and the fragrance of": [65535, 0], "trees were in bloom and the fragrance of the": [65535, 0], "were in bloom and the fragrance of the blossoms": [65535, 0], "in bloom and the fragrance of the blossoms filled": [65535, 0], "bloom and the fragrance of the blossoms filled the": [65535, 0], "and the fragrance of the blossoms filled the air": [65535, 0], "the fragrance of the blossoms filled the air cardiff": [65535, 0], "fragrance of the blossoms filled the air cardiff hill": [65535, 0], "of the blossoms filled the air cardiff hill beyond": [65535, 0], "the blossoms filled the air cardiff hill beyond the": [65535, 0], "blossoms filled the air cardiff hill beyond the village": [65535, 0], "filled the air cardiff hill beyond the village and": [65535, 0], "the air cardiff hill beyond the village and above": [65535, 0], "air cardiff hill beyond the village and above it": [65535, 0], "cardiff hill beyond the village and above it was": [65535, 0], "hill beyond the village and above it was green": [65535, 0], "beyond the village and above it was green with": [65535, 0], "the village and above it was green with vegetation": [65535, 0], "village and above it was green with vegetation and": [65535, 0], "and above it was green with vegetation and it": [65535, 0], "above it was green with vegetation and it lay": [65535, 0], "it was green with vegetation and it lay just": [65535, 0], "was green with vegetation and it lay just far": [65535, 0], "green with vegetation and it lay just far enough": [65535, 0], "with vegetation and it lay just far enough away": [65535, 0], "vegetation and it lay just far enough away to": [65535, 0], "and it lay just far enough away to seem": [65535, 0], "it lay just far enough away to seem a": [65535, 0], "lay just far enough away to seem a delectable": [65535, 0], "just far enough away to seem a delectable land": [65535, 0], "far enough away to seem a delectable land dreamy": [65535, 0], "enough away to seem a delectable land dreamy reposeful": [65535, 0], "away to seem a delectable land dreamy reposeful and": [65535, 0], "to seem a delectable land dreamy reposeful and inviting": [65535, 0], "seem a delectable land dreamy reposeful and inviting tom": [65535, 0], "a delectable land dreamy reposeful and inviting tom appeared": [65535, 0], "delectable land dreamy reposeful and inviting tom appeared on": [65535, 0], "land dreamy reposeful and inviting tom appeared on the": [65535, 0], "dreamy reposeful and inviting tom appeared on the sidewalk": [65535, 0], "reposeful and inviting tom appeared on the sidewalk with": [65535, 0], "and inviting tom appeared on the sidewalk with a": [65535, 0], "inviting tom appeared on the sidewalk with a bucket": [65535, 0], "tom appeared on the sidewalk with a bucket of": [65535, 0], "appeared on the sidewalk with a bucket of whitewash": [65535, 0], "on the sidewalk with a bucket of whitewash and": [65535, 0], "the sidewalk with a bucket of whitewash and a": [65535, 0], "sidewalk with a bucket of whitewash and a long": [65535, 0], "with a bucket of whitewash and a long handled": [65535, 0], "a bucket of whitewash and a long handled brush": [65535, 0], "bucket of whitewash and a long handled brush he": [65535, 0], "of whitewash and a long handled brush he surveyed": [65535, 0], "whitewash and a long handled brush he surveyed the": [65535, 0], "and a long handled brush he surveyed the fence": [65535, 0], "a long handled brush he surveyed the fence and": [65535, 0], "long handled brush he surveyed the fence and all": [65535, 0], "handled brush he surveyed the fence and all gladness": [65535, 0], "brush he surveyed the fence and all gladness left": [65535, 0], "he surveyed the fence and all gladness left him": [65535, 0], "surveyed the fence and all gladness left him and": [65535, 0], "the fence and all gladness left him and a": [65535, 0], "fence and all gladness left him and a deep": [65535, 0], "and all gladness left him and a deep melancholy": [65535, 0], "all gladness left him and a deep melancholy settled": [65535, 0], "gladness left him and a deep melancholy settled down": [65535, 0], "left him and a deep melancholy settled down upon": [65535, 0], "him and a deep melancholy settled down upon his": [65535, 0], "and a deep melancholy settled down upon his spirit": [65535, 0], "a deep melancholy settled down upon his spirit thirty": [65535, 0], "deep melancholy settled down upon his spirit thirty yards": [65535, 0], "melancholy settled down upon his spirit thirty yards of": [65535, 0], "settled down upon his spirit thirty yards of board": [65535, 0], "down upon his spirit thirty yards of board fence": [65535, 0], "upon his spirit thirty yards of board fence nine": [65535, 0], "his spirit thirty yards of board fence nine feet": [65535, 0], "spirit thirty yards of board fence nine feet high": [65535, 0], "thirty yards of board fence nine feet high life": [65535, 0], "yards of board fence nine feet high life to": [65535, 0], "of board fence nine feet high life to him": [65535, 0], "board fence nine feet high life to him seemed": [65535, 0], "fence nine feet high life to him seemed hollow": [65535, 0], "nine feet high life to him seemed hollow and": [65535, 0], "feet high life to him seemed hollow and existence": [65535, 0], "high life to him seemed hollow and existence but": [65535, 0], "life to him seemed hollow and existence but a": [65535, 0], "to him seemed hollow and existence but a burden": [65535, 0], "him seemed hollow and existence but a burden sighing": [65535, 0], "seemed hollow and existence but a burden sighing he": [65535, 0], "hollow and existence but a burden sighing he dipped": [65535, 0], "and existence but a burden sighing he dipped his": [65535, 0], "existence but a burden sighing he dipped his brush": [65535, 0], "but a burden sighing he dipped his brush and": [65535, 0], "a burden sighing he dipped his brush and passed": [65535, 0], "burden sighing he dipped his brush and passed it": [65535, 0], "sighing he dipped his brush and passed it along": [65535, 0], "he dipped his brush and passed it along the": [65535, 0], "dipped his brush and passed it along the topmost": [65535, 0], "his brush and passed it along the topmost plank": [65535, 0], "brush and passed it along the topmost plank repeated": [65535, 0], "and passed it along the topmost plank repeated the": [65535, 0], "passed it along the topmost plank repeated the operation": [65535, 0], "it along the topmost plank repeated the operation did": [65535, 0], "along the topmost plank repeated the operation did it": [65535, 0], "the topmost plank repeated the operation did it again": [65535, 0], "topmost plank repeated the operation did it again compared": [65535, 0], "plank repeated the operation did it again compared the": [65535, 0], "repeated the operation did it again compared the insignificant": [65535, 0], "the operation did it again compared the insignificant whitewashed": [65535, 0], "operation did it again compared the insignificant whitewashed streak": [65535, 0], "did it again compared the insignificant whitewashed streak with": [65535, 0], "it again compared the insignificant whitewashed streak with the": [65535, 0], "again compared the insignificant whitewashed streak with the far": [65535, 0], "compared the insignificant whitewashed streak with the far reaching": [65535, 0], "the insignificant whitewashed streak with the far reaching continent": [65535, 0], "insignificant whitewashed streak with the far reaching continent of": [65535, 0], "whitewashed streak with the far reaching continent of unwhitewashed": [65535, 0], "streak with the far reaching continent of unwhitewashed fence": [65535, 0], "with the far reaching continent of unwhitewashed fence and": [65535, 0], "the far reaching continent of unwhitewashed fence and sat": [65535, 0], "far reaching continent of unwhitewashed fence and sat down": [65535, 0], "reaching continent of unwhitewashed fence and sat down on": [65535, 0], "continent of unwhitewashed fence and sat down on a": [65535, 0], "of unwhitewashed fence and sat down on a tree": [65535, 0], "unwhitewashed fence and sat down on a tree box": [65535, 0], "fence and sat down on a tree box discouraged": [65535, 0], "and sat down on a tree box discouraged jim": [65535, 0], "sat down on a tree box discouraged jim came": [65535, 0], "down on a tree box discouraged jim came skipping": [65535, 0], "on a tree box discouraged jim came skipping out": [65535, 0], "a tree box discouraged jim came skipping out at": [65535, 0], "tree box discouraged jim came skipping out at the": [65535, 0], "box discouraged jim came skipping out at the gate": [65535, 0], "discouraged jim came skipping out at the gate with": [65535, 0], "jim came skipping out at the gate with a": [65535, 0], "came skipping out at the gate with a tin": [65535, 0], "skipping out at the gate with a tin pail": [65535, 0], "out at the gate with a tin pail and": [65535, 0], "at the gate with a tin pail and singing": [65535, 0], "the gate with a tin pail and singing buffalo": [65535, 0], "gate with a tin pail and singing buffalo gals": [65535, 0], "with a tin pail and singing buffalo gals bringing": [65535, 0], "a tin pail and singing buffalo gals bringing water": [65535, 0], "tin pail and singing buffalo gals bringing water from": [65535, 0], "pail and singing buffalo gals bringing water from the": [65535, 0], "and singing buffalo gals bringing water from the town": [65535, 0], "singing buffalo gals bringing water from the town pump": [65535, 0], "buffalo gals bringing water from the town pump had": [65535, 0], "gals bringing water from the town pump had always": [65535, 0], "bringing water from the town pump had always been": [65535, 0], "water from the town pump had always been hateful": [65535, 0], "from the town pump had always been hateful work": [65535, 0], "the town pump had always been hateful work in": [65535, 0], "town pump had always been hateful work in tom's": [65535, 0], "pump had always been hateful work in tom's eyes": [65535, 0], "had always been hateful work in tom's eyes before": [65535, 0], "always been hateful work in tom's eyes before but": [65535, 0], "been hateful work in tom's eyes before but now": [65535, 0], "hateful work in tom's eyes before but now it": [65535, 0], "work in tom's eyes before but now it did": [65535, 0], "in tom's eyes before but now it did not": [65535, 0], "tom's eyes before but now it did not strike": [65535, 0], "eyes before but now it did not strike him": [65535, 0], "before but now it did not strike him so": [65535, 0], "but now it did not strike him so he": [65535, 0], "now it did not strike him so he remembered": [65535, 0], "it did not strike him so he remembered that": [65535, 0], "did not strike him so he remembered that there": [65535, 0], "not strike him so he remembered that there was": [65535, 0], "strike him so he remembered that there was company": [65535, 0], "him so he remembered that there was company at": [65535, 0], "so he remembered that there was company at the": [65535, 0], "he remembered that there was company at the pump": [65535, 0], "remembered that there was company at the pump white": [65535, 0], "that there was company at the pump white mulatto": [65535, 0], "there was company at the pump white mulatto and": [65535, 0], "was company at the pump white mulatto and negro": [65535, 0], "company at the pump white mulatto and negro boys": [65535, 0], "at the pump white mulatto and negro boys and": [65535, 0], "the pump white mulatto and negro boys and girls": [65535, 0], "pump white mulatto and negro boys and girls were": [65535, 0], "white mulatto and negro boys and girls were always": [65535, 0], "mulatto and negro boys and girls were always there": [65535, 0], "and negro boys and girls were always there waiting": [65535, 0], "negro boys and girls were always there waiting their": [65535, 0], "boys and girls were always there waiting their turns": [65535, 0], "and girls were always there waiting their turns resting": [65535, 0], "girls were always there waiting their turns resting trading": [65535, 0], "were always there waiting their turns resting trading playthings": [65535, 0], "always there waiting their turns resting trading playthings quarrelling": [65535, 0], "there waiting their turns resting trading playthings quarrelling fighting": [65535, 0], "waiting their turns resting trading playthings quarrelling fighting skylarking": [65535, 0], "their turns resting trading playthings quarrelling fighting skylarking and": [65535, 0], "turns resting trading playthings quarrelling fighting skylarking and he": [65535, 0], "resting trading playthings quarrelling fighting skylarking and he remembered": [65535, 0], "trading playthings quarrelling fighting skylarking and he remembered that": [65535, 0], "playthings quarrelling fighting skylarking and he remembered that although": [65535, 0], "quarrelling fighting skylarking and he remembered that although the": [65535, 0], "fighting skylarking and he remembered that although the pump": [65535, 0], "skylarking and he remembered that although the pump was": [65535, 0], "and he remembered that although the pump was only": [65535, 0], "he remembered that although the pump was only a": [65535, 0], "remembered that although the pump was only a hundred": [65535, 0], "that although the pump was only a hundred and": [65535, 0], "although the pump was only a hundred and fifty": [65535, 0], "the pump was only a hundred and fifty yards": [65535, 0], "pump was only a hundred and fifty yards off": [65535, 0], "was only a hundred and fifty yards off jim": [65535, 0], "only a hundred and fifty yards off jim never": [65535, 0], "a hundred and fifty yards off jim never got": [65535, 0], "hundred and fifty yards off jim never got back": [65535, 0], "and fifty yards off jim never got back with": [65535, 0], "fifty yards off jim never got back with a": [65535, 0], "yards off jim never got back with a bucket": [65535, 0], "off jim never got back with a bucket of": [65535, 0], "jim never got back with a bucket of water": [65535, 0], "never got back with a bucket of water under": [65535, 0], "got back with a bucket of water under an": [65535, 0], "back with a bucket of water under an hour": [65535, 0], "with a bucket of water under an hour and": [65535, 0], "a bucket of water under an hour and even": [65535, 0], "bucket of water under an hour and even then": [65535, 0], "of water under an hour and even then somebody": [65535, 0], "water under an hour and even then somebody generally": [65535, 0], "under an hour and even then somebody generally had": [65535, 0], "an hour and even then somebody generally had to": [65535, 0], "hour and even then somebody generally had to go": [65535, 0], "and even then somebody generally had to go after": [65535, 0], "even then somebody generally had to go after him": [65535, 0], "then somebody generally had to go after him tom": [65535, 0], "somebody generally had to go after him tom said": [65535, 0], "generally had to go after him tom said say": [65535, 0], "had to go after him tom said say jim": [65535, 0], "to go after him tom said say jim i'll": [65535, 0], "go after him tom said say jim i'll fetch": [65535, 0], "after him tom said say jim i'll fetch the": [65535, 0], "him tom said say jim i'll fetch the water": [65535, 0], "tom said say jim i'll fetch the water if": [65535, 0], "said say jim i'll fetch the water if you'll": [65535, 0], "say jim i'll fetch the water if you'll whitewash": [65535, 0], "jim i'll fetch the water if you'll whitewash some": [65535, 0], "i'll fetch the water if you'll whitewash some jim": [65535, 0], "fetch the water if you'll whitewash some jim shook": [65535, 0], "the water if you'll whitewash some jim shook his": [65535, 0], "water if you'll whitewash some jim shook his head": [65535, 0], "if you'll whitewash some jim shook his head and": [65535, 0], "you'll whitewash some jim shook his head and said": [65535, 0], "whitewash some jim shook his head and said can't": [65535, 0], "some jim shook his head and said can't mars": [65535, 0], "jim shook his head and said can't mars tom": [65535, 0], "shook his head and said can't mars tom ole": [65535, 0], "his head and said can't mars tom ole missis": [65535, 0], "head and said can't mars tom ole missis she": [65535, 0], "and said can't mars tom ole missis she tole": [65535, 0], "said can't mars tom ole missis she tole me": [65535, 0], "can't mars tom ole missis she tole me i": [65535, 0], "mars tom ole missis she tole me i got": [65535, 0], "tom ole missis she tole me i got to": [65535, 0], "ole missis she tole me i got to go": [65535, 0], "missis she tole me i got to go an'": [65535, 0], "she tole me i got to go an' git": [65535, 0], "tole me i got to go an' git dis": [65535, 0], "me i got to go an' git dis water": [65535, 0], "i got to go an' git dis water an'": [65535, 0], "got to go an' git dis water an' not": [65535, 0], "to go an' git dis water an' not stop": [65535, 0], "go an' git dis water an' not stop foolin'": [65535, 0], "an' git dis water an' not stop foolin' roun'": [65535, 0], "git dis water an' not stop foolin' roun' wid": [65535, 0], "dis water an' not stop foolin' roun' wid anybody": [65535, 0], "water an' not stop foolin' roun' wid anybody she": [65535, 0], "an' not stop foolin' roun' wid anybody she say": [65535, 0], "not stop foolin' roun' wid anybody she say she": [65535, 0], "stop foolin' roun' wid anybody she say she spec'": [65535, 0], "foolin' roun' wid anybody she say she spec' mars": [65535, 0], "roun' wid anybody she say she spec' mars tom": [65535, 0], "wid anybody she say she spec' mars tom gwine": [65535, 0], "anybody she say she spec' mars tom gwine to": [65535, 0], "she say she spec' mars tom gwine to ax": [65535, 0], "say she spec' mars tom gwine to ax me": [65535, 0], "she spec' mars tom gwine to ax me to": [65535, 0], "spec' mars tom gwine to ax me to whitewash": [65535, 0], "mars tom gwine to ax me to whitewash an'": [65535, 0], "tom gwine to ax me to whitewash an' so": [65535, 0], "gwine to ax me to whitewash an' so she": [65535, 0], "to ax me to whitewash an' so she tole": [65535, 0], "ax me to whitewash an' so she tole me": [65535, 0], "me to whitewash an' so she tole me go": [65535, 0], "to whitewash an' so she tole me go 'long": [65535, 0], "whitewash an' so she tole me go 'long an'": [65535, 0], "an' so she tole me go 'long an' 'tend": [65535, 0], "so she tole me go 'long an' 'tend to": [65535, 0], "she tole me go 'long an' 'tend to my": [65535, 0], "tole me go 'long an' 'tend to my own": [65535, 0], "me go 'long an' 'tend to my own business": [65535, 0], "go 'long an' 'tend to my own business she": [65535, 0], "'long an' 'tend to my own business she 'lowed": [65535, 0], "an' 'tend to my own business she 'lowed she'd": [65535, 0], "'tend to my own business she 'lowed she'd 'tend": [65535, 0], "to my own business she 'lowed she'd 'tend to": [65535, 0], "my own business she 'lowed she'd 'tend to de": [65535, 0], "own business she 'lowed she'd 'tend to de whitewashin'": [65535, 0], "business she 'lowed she'd 'tend to de whitewashin' oh": [65535, 0], "she 'lowed she'd 'tend to de whitewashin' oh never": [65535, 0], "'lowed she'd 'tend to de whitewashin' oh never you": [65535, 0], "she'd 'tend to de whitewashin' oh never you mind": [65535, 0], "'tend to de whitewashin' oh never you mind what": [65535, 0], "to de whitewashin' oh never you mind what she": [65535, 0], "de whitewashin' oh never you mind what she said": [65535, 0], "whitewashin' oh never you mind what she said jim": [65535, 0], "oh never you mind what she said jim that's": [65535, 0], "never you mind what she said jim that's the": [65535, 0], "you mind what she said jim that's the way": [65535, 0], "mind what she said jim that's the way she": [65535, 0], "what she said jim that's the way she always": [65535, 0], "she said jim that's the way she always talks": [65535, 0], "said jim that's the way she always talks gimme": [65535, 0], "jim that's the way she always talks gimme the": [65535, 0], "that's the way she always talks gimme the bucket": [65535, 0], "the way she always talks gimme the bucket i": [65535, 0], "way she always talks gimme the bucket i won't": [65535, 0], "she always talks gimme the bucket i won't be": [65535, 0], "always talks gimme the bucket i won't be gone": [65535, 0], "talks gimme the bucket i won't be gone only": [65535, 0], "gimme the bucket i won't be gone only a": [65535, 0], "the bucket i won't be gone only a minute": [65535, 0], "bucket i won't be gone only a minute she": [65535, 0], "i won't be gone only a minute she won't": [65535, 0], "won't be gone only a minute she won't ever": [65535, 0], "be gone only a minute she won't ever know": [65535, 0], "gone only a minute she won't ever know oh": [65535, 0], "only a minute she won't ever know oh i": [65535, 0], "a minute she won't ever know oh i dasn't": [65535, 0], "minute she won't ever know oh i dasn't mars": [65535, 0], "she won't ever know oh i dasn't mars tom": [65535, 0], "won't ever know oh i dasn't mars tom ole": [65535, 0], "ever know oh i dasn't mars tom ole missis": [65535, 0], "know oh i dasn't mars tom ole missis she'd": [65535, 0], "oh i dasn't mars tom ole missis she'd take": [65535, 0], "i dasn't mars tom ole missis she'd take an'": [65535, 0], "dasn't mars tom ole missis she'd take an' tar": [65535, 0], "mars tom ole missis she'd take an' tar de": [65535, 0], "tom ole missis she'd take an' tar de head": [65535, 0], "ole missis she'd take an' tar de head off'n": [65535, 0], "missis she'd take an' tar de head off'n me": [65535, 0], "she'd take an' tar de head off'n me 'deed": [65535, 0], "take an' tar de head off'n me 'deed she": [65535, 0], "an' tar de head off'n me 'deed she would": [65535, 0], "tar de head off'n me 'deed she would she": [65535, 0], "de head off'n me 'deed she would she she": [65535, 0], "head off'n me 'deed she would she she never": [65535, 0], "off'n me 'deed she would she she never licks": [65535, 0], "me 'deed she would she she never licks anybody": [65535, 0], "'deed she would she she never licks anybody whacks": [65535, 0], "she would she she never licks anybody whacks 'em": [65535, 0], "would she she never licks anybody whacks 'em over": [65535, 0], "she she never licks anybody whacks 'em over the": [65535, 0], "she never licks anybody whacks 'em over the head": [65535, 0], "never licks anybody whacks 'em over the head with": [65535, 0], "licks anybody whacks 'em over the head with her": [65535, 0], "anybody whacks 'em over the head with her thimble": [65535, 0], "whacks 'em over the head with her thimble and": [65535, 0], "'em over the head with her thimble and who": [65535, 0], "over the head with her thimble and who cares": [65535, 0], "the head with her thimble and who cares for": [65535, 0], "head with her thimble and who cares for that": [65535, 0], "with her thimble and who cares for that i'd": [65535, 0], "her thimble and who cares for that i'd like": [65535, 0], "thimble and who cares for that i'd like to": [65535, 0], "and who cares for that i'd like to know": [65535, 0], "who cares for that i'd like to know she": [65535, 0], "cares for that i'd like to know she talks": [65535, 0], "for that i'd like to know she talks awful": [65535, 0], "that i'd like to know she talks awful but": [65535, 0], "i'd like to know she talks awful but talk": [65535, 0], "like to know she talks awful but talk don't": [65535, 0], "to know she talks awful but talk don't hurt": [65535, 0], "know she talks awful but talk don't hurt anyways": [65535, 0], "she talks awful but talk don't hurt anyways it": [65535, 0], "talks awful but talk don't hurt anyways it don't": [65535, 0], "awful but talk don't hurt anyways it don't if": [65535, 0], "but talk don't hurt anyways it don't if she": [65535, 0], "talk don't hurt anyways it don't if she don't": [65535, 0], "don't hurt anyways it don't if she don't cry": [65535, 0], "hurt anyways it don't if she don't cry jim": [65535, 0], "anyways it don't if she don't cry jim i'll": [65535, 0], "it don't if she don't cry jim i'll give": [65535, 0], "don't if she don't cry jim i'll give you": [65535, 0], "if she don't cry jim i'll give you a": [65535, 0], "she don't cry jim i'll give you a marvel": [65535, 0], "don't cry jim i'll give you a marvel i'll": [65535, 0], "cry jim i'll give you a marvel i'll give": [65535, 0], "jim i'll give you a marvel i'll give you": [65535, 0], "i'll give you a marvel i'll give you a": [65535, 0], "give you a marvel i'll give you a white": [65535, 0], "you a marvel i'll give you a white alley": [65535, 0], "a marvel i'll give you a white alley jim": [65535, 0], "marvel i'll give you a white alley jim began": [65535, 0], "i'll give you a white alley jim began to": [65535, 0], "give you a white alley jim began to waver": [65535, 0], "you a white alley jim began to waver white": [65535, 0], "a white alley jim began to waver white alley": [65535, 0], "white alley jim began to waver white alley jim": [65535, 0], "alley jim began to waver white alley jim and": [65535, 0], "jim began to waver white alley jim and it's": [65535, 0], "began to waver white alley jim and it's a": [65535, 0], "to waver white alley jim and it's a bully": [65535, 0], "waver white alley jim and it's a bully taw": [65535, 0], "white alley jim and it's a bully taw my": [65535, 0], "alley jim and it's a bully taw my dat's": [65535, 0], "jim and it's a bully taw my dat's a": [65535, 0], "and it's a bully taw my dat's a mighty": [65535, 0], "it's a bully taw my dat's a mighty gay": [65535, 0], "a bully taw my dat's a mighty gay marvel": [65535, 0], "bully taw my dat's a mighty gay marvel i": [65535, 0], "taw my dat's a mighty gay marvel i tell": [65535, 0], "my dat's a mighty gay marvel i tell you": [65535, 0], "dat's a mighty gay marvel i tell you but": [65535, 0], "a mighty gay marvel i tell you but mars": [65535, 0], "mighty gay marvel i tell you but mars tom": [65535, 0], "gay marvel i tell you but mars tom i's": [65535, 0], "marvel i tell you but mars tom i's powerful": [65535, 0], "i tell you but mars tom i's powerful 'fraid": [65535, 0], "tell you but mars tom i's powerful 'fraid ole": [65535, 0], "you but mars tom i's powerful 'fraid ole missis": [65535, 0], "but mars tom i's powerful 'fraid ole missis and": [65535, 0], "mars tom i's powerful 'fraid ole missis and besides": [65535, 0], "tom i's powerful 'fraid ole missis and besides if": [65535, 0], "i's powerful 'fraid ole missis and besides if you": [65535, 0], "powerful 'fraid ole missis and besides if you will": [65535, 0], "'fraid ole missis and besides if you will i'll": [65535, 0], "ole missis and besides if you will i'll show": [65535, 0], "missis and besides if you will i'll show you": [65535, 0], "and besides if you will i'll show you my": [65535, 0], "besides if you will i'll show you my sore": [65535, 0], "if you will i'll show you my sore toe": [65535, 0], "you will i'll show you my sore toe jim": [65535, 0], "will i'll show you my sore toe jim was": [65535, 0], "i'll show you my sore toe jim was only": [65535, 0], "show you my sore toe jim was only human": [65535, 0], "you my sore toe jim was only human this": [65535, 0], "my sore toe jim was only human this attraction": [65535, 0], "sore toe jim was only human this attraction was": [65535, 0], "toe jim was only human this attraction was too": [65535, 0], "jim was only human this attraction was too much": [65535, 0], "was only human this attraction was too much for": [65535, 0], "only human this attraction was too much for him": [65535, 0], "human this attraction was too much for him he": [65535, 0], "this attraction was too much for him he put": [65535, 0], "attraction was too much for him he put down": [65535, 0], "was too much for him he put down his": [65535, 0], "too much for him he put down his pail": [65535, 0], "much for him he put down his pail took": [65535, 0], "for him he put down his pail took the": [65535, 0], "him he put down his pail took the white": [65535, 0], "he put down his pail took the white alley": [65535, 0], "put down his pail took the white alley and": [65535, 0], "down his pail took the white alley and bent": [65535, 0], "his pail took the white alley and bent over": [65535, 0], "pail took the white alley and bent over the": [65535, 0], "took the white alley and bent over the toe": [65535, 0], "the white alley and bent over the toe with": [65535, 0], "white alley and bent over the toe with absorbing": [65535, 0], "alley and bent over the toe with absorbing interest": [65535, 0], "and bent over the toe with absorbing interest while": [65535, 0], "bent over the toe with absorbing interest while the": [65535, 0], "over the toe with absorbing interest while the bandage": [65535, 0], "the toe with absorbing interest while the bandage was": [65535, 0], "toe with absorbing interest while the bandage was being": [65535, 0], "with absorbing interest while the bandage was being unwound": [65535, 0], "absorbing interest while the bandage was being unwound in": [65535, 0], "interest while the bandage was being unwound in another": [65535, 0], "while the bandage was being unwound in another moment": [65535, 0], "the bandage was being unwound in another moment he": [65535, 0], "bandage was being unwound in another moment he was": [65535, 0], "was being unwound in another moment he was flying": [65535, 0], "being unwound in another moment he was flying down": [65535, 0], "unwound in another moment he was flying down the": [65535, 0], "in another moment he was flying down the street": [65535, 0], "another moment he was flying down the street with": [65535, 0], "moment he was flying down the street with his": [65535, 0], "he was flying down the street with his pail": [65535, 0], "was flying down the street with his pail and": [65535, 0], "flying down the street with his pail and a": [65535, 0], "down the street with his pail and a tingling": [65535, 0], "the street with his pail and a tingling rear": [65535, 0], "street with his pail and a tingling rear tom": [65535, 0], "with his pail and a tingling rear tom was": [65535, 0], "his pail and a tingling rear tom was whitewashing": [65535, 0], "pail and a tingling rear tom was whitewashing with": [65535, 0], "and a tingling rear tom was whitewashing with vigor": [65535, 0], "a tingling rear tom was whitewashing with vigor and": [65535, 0], "tingling rear tom was whitewashing with vigor and aunt": [65535, 0], "rear tom was whitewashing with vigor and aunt polly": [65535, 0], "tom was whitewashing with vigor and aunt polly was": [65535, 0], "was whitewashing with vigor and aunt polly was retiring": [65535, 0], "whitewashing with vigor and aunt polly was retiring from": [65535, 0], "with vigor and aunt polly was retiring from the": [65535, 0], "vigor and aunt polly was retiring from the field": [65535, 0], "and aunt polly was retiring from the field with": [65535, 0], "aunt polly was retiring from the field with a": [65535, 0], "polly was retiring from the field with a slipper": [65535, 0], "was retiring from the field with a slipper in": [65535, 0], "retiring from the field with a slipper in her": [65535, 0], "from the field with a slipper in her hand": [65535, 0], "the field with a slipper in her hand and": [65535, 0], "field with a slipper in her hand and triumph": [65535, 0], "with a slipper in her hand and triumph in": [65535, 0], "a slipper in her hand and triumph in her": [65535, 0], "slipper in her hand and triumph in her eye": [65535, 0], "in her hand and triumph in her eye but": [65535, 0], "her hand and triumph in her eye but tom's": [65535, 0], "hand and triumph in her eye but tom's energy": [65535, 0], "and triumph in her eye but tom's energy did": [65535, 0], "triumph in her eye but tom's energy did not": [65535, 0], "in her eye but tom's energy did not last": [65535, 0], "her eye but tom's energy did not last he": [65535, 0], "eye but tom's energy did not last he began": [65535, 0], "but tom's energy did not last he began to": [65535, 0], "tom's energy did not last he began to think": [65535, 0], "energy did not last he began to think of": [65535, 0], "did not last he began to think of the": [65535, 0], "not last he began to think of the fun": [65535, 0], "last he began to think of the fun he": [65535, 0], "he began to think of the fun he had": [65535, 0], "began to think of the fun he had planned": [65535, 0], "to think of the fun he had planned for": [65535, 0], "think of the fun he had planned for this": [65535, 0], "of the fun he had planned for this day": [65535, 0], "the fun he had planned for this day and": [65535, 0], "fun he had planned for this day and his": [65535, 0], "he had planned for this day and his sorrows": [65535, 0], "had planned for this day and his sorrows multiplied": [65535, 0], "planned for this day and his sorrows multiplied soon": [65535, 0], "for this day and his sorrows multiplied soon the": [65535, 0], "this day and his sorrows multiplied soon the free": [65535, 0], "day and his sorrows multiplied soon the free boys": [65535, 0], "and his sorrows multiplied soon the free boys would": [65535, 0], "his sorrows multiplied soon the free boys would come": [65535, 0], "sorrows multiplied soon the free boys would come tripping": [65535, 0], "multiplied soon the free boys would come tripping along": [65535, 0], "soon the free boys would come tripping along on": [65535, 0], "the free boys would come tripping along on all": [65535, 0], "free boys would come tripping along on all sorts": [65535, 0], "boys would come tripping along on all sorts of": [65535, 0], "would come tripping along on all sorts of delicious": [65535, 0], "come tripping along on all sorts of delicious expeditions": [65535, 0], "tripping along on all sorts of delicious expeditions and": [65535, 0], "along on all sorts of delicious expeditions and they": [65535, 0], "on all sorts of delicious expeditions and they would": [65535, 0], "all sorts of delicious expeditions and they would make": [65535, 0], "sorts of delicious expeditions and they would make a": [65535, 0], "of delicious expeditions and they would make a world": [65535, 0], "delicious expeditions and they would make a world of": [65535, 0], "expeditions and they would make a world of fun": [65535, 0], "and they would make a world of fun of": [65535, 0], "they would make a world of fun of him": [65535, 0], "would make a world of fun of him for": [65535, 0], "make a world of fun of him for having": [65535, 0], "a world of fun of him for having to": [65535, 0], "world of fun of him for having to work": [65535, 0], "of fun of him for having to work the": [65535, 0], "fun of him for having to work the very": [65535, 0], "of him for having to work the very thought": [65535, 0], "him for having to work the very thought of": [65535, 0], "for having to work the very thought of it": [65535, 0], "having to work the very thought of it burnt": [65535, 0], "to work the very thought of it burnt him": [65535, 0], "work the very thought of it burnt him like": [65535, 0], "the very thought of it burnt him like fire": [65535, 0], "very thought of it burnt him like fire he": [65535, 0], "thought of it burnt him like fire he got": [65535, 0], "of it burnt him like fire he got out": [65535, 0], "it burnt him like fire he got out his": [65535, 0], "burnt him like fire he got out his worldly": [65535, 0], "him like fire he got out his worldly wealth": [65535, 0], "like fire he got out his worldly wealth and": [65535, 0], "fire he got out his worldly wealth and examined": [65535, 0], "he got out his worldly wealth and examined it": [65535, 0], "got out his worldly wealth and examined it bits": [65535, 0], "out his worldly wealth and examined it bits of": [65535, 0], "his worldly wealth and examined it bits of toys": [65535, 0], "worldly wealth and examined it bits of toys marbles": [65535, 0], "wealth and examined it bits of toys marbles and": [65535, 0], "and examined it bits of toys marbles and trash": [65535, 0], "examined it bits of toys marbles and trash enough": [65535, 0], "it bits of toys marbles and trash enough to": [65535, 0], "bits of toys marbles and trash enough to buy": [65535, 0], "of toys marbles and trash enough to buy an": [65535, 0], "toys marbles and trash enough to buy an exchange": [65535, 0], "marbles and trash enough to buy an exchange of": [65535, 0], "and trash enough to buy an exchange of work": [65535, 0], "trash enough to buy an exchange of work maybe": [65535, 0], "enough to buy an exchange of work maybe but": [65535, 0], "to buy an exchange of work maybe but not": [65535, 0], "buy an exchange of work maybe but not half": [65535, 0], "an exchange of work maybe but not half enough": [65535, 0], "exchange of work maybe but not half enough to": [65535, 0], "of work maybe but not half enough to buy": [65535, 0], "work maybe but not half enough to buy so": [65535, 0], "maybe but not half enough to buy so much": [65535, 0], "but not half enough to buy so much as": [65535, 0], "not half enough to buy so much as half": [65535, 0], "half enough to buy so much as half an": [65535, 0], "enough to buy so much as half an hour": [65535, 0], "to buy so much as half an hour of": [65535, 0], "buy so much as half an hour of pure": [65535, 0], "so much as half an hour of pure freedom": [65535, 0], "much as half an hour of pure freedom so": [65535, 0], "as half an hour of pure freedom so he": [65535, 0], "half an hour of pure freedom so he returned": [65535, 0], "an hour of pure freedom so he returned his": [65535, 0], "hour of pure freedom so he returned his straitened": [65535, 0], "of pure freedom so he returned his straitened means": [65535, 0], "pure freedom so he returned his straitened means to": [65535, 0], "freedom so he returned his straitened means to his": [65535, 0], "so he returned his straitened means to his pocket": [65535, 0], "he returned his straitened means to his pocket and": [65535, 0], "returned his straitened means to his pocket and gave": [65535, 0], "his straitened means to his pocket and gave up": [65535, 0], "straitened means to his pocket and gave up the": [65535, 0], "means to his pocket and gave up the idea": [65535, 0], "to his pocket and gave up the idea of": [65535, 0], "his pocket and gave up the idea of trying": [65535, 0], "pocket and gave up the idea of trying to": [65535, 0], "and gave up the idea of trying to buy": [65535, 0], "gave up the idea of trying to buy the": [65535, 0], "up the idea of trying to buy the boys": [65535, 0], "the idea of trying to buy the boys at": [65535, 0], "idea of trying to buy the boys at this": [65535, 0], "of trying to buy the boys at this dark": [65535, 0], "trying to buy the boys at this dark and": [65535, 0], "to buy the boys at this dark and hopeless": [65535, 0], "buy the boys at this dark and hopeless moment": [65535, 0], "the boys at this dark and hopeless moment an": [65535, 0], "boys at this dark and hopeless moment an inspiration": [65535, 0], "at this dark and hopeless moment an inspiration burst": [65535, 0], "this dark and hopeless moment an inspiration burst upon": [65535, 0], "dark and hopeless moment an inspiration burst upon him": [65535, 0], "and hopeless moment an inspiration burst upon him nothing": [65535, 0], "hopeless moment an inspiration burst upon him nothing less": [65535, 0], "moment an inspiration burst upon him nothing less than": [65535, 0], "an inspiration burst upon him nothing less than a": [65535, 0], "inspiration burst upon him nothing less than a great": [65535, 0], "burst upon him nothing less than a great magnificent": [65535, 0], "upon him nothing less than a great magnificent inspiration": [65535, 0], "him nothing less than a great magnificent inspiration he": [65535, 0], "nothing less than a great magnificent inspiration he took": [65535, 0], "less than a great magnificent inspiration he took up": [65535, 0], "than a great magnificent inspiration he took up his": [65535, 0], "a great magnificent inspiration he took up his brush": [65535, 0], "great magnificent inspiration he took up his brush and": [65535, 0], "magnificent inspiration he took up his brush and went": [65535, 0], "inspiration he took up his brush and went tranquilly": [65535, 0], "he took up his brush and went tranquilly to": [65535, 0], "took up his brush and went tranquilly to work": [65535, 0], "up his brush and went tranquilly to work ben": [65535, 0], "his brush and went tranquilly to work ben rogers": [65535, 0], "brush and went tranquilly to work ben rogers hove": [65535, 0], "and went tranquilly to work ben rogers hove in": [65535, 0], "went tranquilly to work ben rogers hove in sight": [65535, 0], "tranquilly to work ben rogers hove in sight presently": [65535, 0], "to work ben rogers hove in sight presently the": [65535, 0], "work ben rogers hove in sight presently the very": [65535, 0], "ben rogers hove in sight presently the very boy": [65535, 0], "rogers hove in sight presently the very boy of": [65535, 0], "hove in sight presently the very boy of all": [65535, 0], "in sight presently the very boy of all boys": [65535, 0], "sight presently the very boy of all boys whose": [65535, 0], "presently the very boy of all boys whose ridicule": [65535, 0], "the very boy of all boys whose ridicule he": [65535, 0], "very boy of all boys whose ridicule he had": [65535, 0], "boy of all boys whose ridicule he had been": [65535, 0], "of all boys whose ridicule he had been dreading": [65535, 0], "all boys whose ridicule he had been dreading ben's": [65535, 0], "boys whose ridicule he had been dreading ben's gait": [65535, 0], "whose ridicule he had been dreading ben's gait was": [65535, 0], "ridicule he had been dreading ben's gait was the": [65535, 0], "he had been dreading ben's gait was the hop": [65535, 0], "had been dreading ben's gait was the hop skip": [65535, 0], "been dreading ben's gait was the hop skip and": [65535, 0], "dreading ben's gait was the hop skip and jump": [65535, 0], "ben's gait was the hop skip and jump proof": [65535, 0], "gait was the hop skip and jump proof enough": [65535, 0], "was the hop skip and jump proof enough that": [65535, 0], "the hop skip and jump proof enough that his": [65535, 0], "hop skip and jump proof enough that his heart": [65535, 0], "skip and jump proof enough that his heart was": [65535, 0], "and jump proof enough that his heart was light": [65535, 0], "jump proof enough that his heart was light and": [65535, 0], "proof enough that his heart was light and his": [65535, 0], "enough that his heart was light and his anticipations": [65535, 0], "that his heart was light and his anticipations high": [65535, 0], "his heart was light and his anticipations high he": [65535, 0], "heart was light and his anticipations high he was": [65535, 0], "was light and his anticipations high he was eating": [65535, 0], "light and his anticipations high he was eating an": [65535, 0], "and his anticipations high he was eating an apple": [65535, 0], "his anticipations high he was eating an apple and": [65535, 0], "anticipations high he was eating an apple and giving": [65535, 0], "high he was eating an apple and giving a": [65535, 0], "he was eating an apple and giving a long": [65535, 0], "was eating an apple and giving a long melodious": [65535, 0], "eating an apple and giving a long melodious whoop": [65535, 0], "an apple and giving a long melodious whoop at": [65535, 0], "apple and giving a long melodious whoop at intervals": [65535, 0], "and giving a long melodious whoop at intervals followed": [65535, 0], "giving a long melodious whoop at intervals followed by": [65535, 0], "a long melodious whoop at intervals followed by a": [65535, 0], "long melodious whoop at intervals followed by a deep": [65535, 0], "melodious whoop at intervals followed by a deep toned": [65535, 0], "whoop at intervals followed by a deep toned ding": [65535, 0], "at intervals followed by a deep toned ding dong": [65535, 0], "intervals followed by a deep toned ding dong dong": [65535, 0], "followed by a deep toned ding dong dong ding": [65535, 0], "by a deep toned ding dong dong ding dong": [65535, 0], "a deep toned ding dong dong ding dong dong": [65535, 0], "deep toned ding dong dong ding dong dong for": [65535, 0], "toned ding dong dong ding dong dong for he": [65535, 0], "ding dong dong ding dong dong for he was": [65535, 0], "dong dong ding dong dong for he was personating": [65535, 0], "dong ding dong dong for he was personating a": [65535, 0], "ding dong dong for he was personating a steamboat": [65535, 0], "dong dong for he was personating a steamboat as": [65535, 0], "dong for he was personating a steamboat as he": [65535, 0], "for he was personating a steamboat as he drew": [65535, 0], "he was personating a steamboat as he drew near": [65535, 0], "was personating a steamboat as he drew near he": [65535, 0], "personating a steamboat as he drew near he slackened": [65535, 0], "a steamboat as he drew near he slackened speed": [65535, 0], "steamboat as he drew near he slackened speed took": [65535, 0], "as he drew near he slackened speed took the": [65535, 0], "he drew near he slackened speed took the middle": [65535, 0], "drew near he slackened speed took the middle of": [65535, 0], "near he slackened speed took the middle of the": [65535, 0], "he slackened speed took the middle of the street": [65535, 0], "slackened speed took the middle of the street leaned": [65535, 0], "speed took the middle of the street leaned far": [65535, 0], "took the middle of the street leaned far over": [65535, 0], "the middle of the street leaned far over to": [65535, 0], "middle of the street leaned far over to starboard": [65535, 0], "of the street leaned far over to starboard and": [65535, 0], "the street leaned far over to starboard and rounded": [65535, 0], "street leaned far over to starboard and rounded to": [65535, 0], "leaned far over to starboard and rounded to ponderously": [65535, 0], "far over to starboard and rounded to ponderously and": [65535, 0], "over to starboard and rounded to ponderously and with": [65535, 0], "to starboard and rounded to ponderously and with laborious": [65535, 0], "starboard and rounded to ponderously and with laborious pomp": [65535, 0], "and rounded to ponderously and with laborious pomp and": [65535, 0], "rounded to ponderously and with laborious pomp and circumstance": [65535, 0], "to ponderously and with laborious pomp and circumstance for": [65535, 0], "ponderously and with laborious pomp and circumstance for he": [65535, 0], "and with laborious pomp and circumstance for he was": [65535, 0], "with laborious pomp and circumstance for he was personating": [65535, 0], "laborious pomp and circumstance for he was personating the": [65535, 0], "pomp and circumstance for he was personating the big": [65535, 0], "and circumstance for he was personating the big missouri": [65535, 0], "circumstance for he was personating the big missouri and": [65535, 0], "for he was personating the big missouri and considered": [65535, 0], "he was personating the big missouri and considered himself": [65535, 0], "was personating the big missouri and considered himself to": [65535, 0], "personating the big missouri and considered himself to be": [65535, 0], "the big missouri and considered himself to be drawing": [65535, 0], "big missouri and considered himself to be drawing nine": [65535, 0], "missouri and considered himself to be drawing nine feet": [65535, 0], "and considered himself to be drawing nine feet of": [65535, 0], "considered himself to be drawing nine feet of water": [65535, 0], "himself to be drawing nine feet of water he": [65535, 0], "to be drawing nine feet of water he was": [65535, 0], "be drawing nine feet of water he was boat": [65535, 0], "drawing nine feet of water he was boat and": [65535, 0], "nine feet of water he was boat and captain": [65535, 0], "feet of water he was boat and captain and": [65535, 0], "of water he was boat and captain and engine": [65535, 0], "water he was boat and captain and engine bells": [65535, 0], "he was boat and captain and engine bells combined": [65535, 0], "was boat and captain and engine bells combined so": [65535, 0], "boat and captain and engine bells combined so he": [65535, 0], "and captain and engine bells combined so he had": [65535, 0], "captain and engine bells combined so he had to": [65535, 0], "and engine bells combined so he had to imagine": [65535, 0], "engine bells combined so he had to imagine himself": [65535, 0], "bells combined so he had to imagine himself standing": [65535, 0], "combined so he had to imagine himself standing on": [65535, 0], "so he had to imagine himself standing on his": [65535, 0], "he had to imagine himself standing on his own": [65535, 0], "had to imagine himself standing on his own hurricane": [65535, 0], "to imagine himself standing on his own hurricane deck": [65535, 0], "imagine himself standing on his own hurricane deck giving": [65535, 0], "himself standing on his own hurricane deck giving the": [65535, 0], "standing on his own hurricane deck giving the orders": [65535, 0], "on his own hurricane deck giving the orders and": [65535, 0], "his own hurricane deck giving the orders and executing": [65535, 0], "own hurricane deck giving the orders and executing them": [65535, 0], "hurricane deck giving the orders and executing them stop": [65535, 0], "deck giving the orders and executing them stop her": [65535, 0], "giving the orders and executing them stop her sir": [65535, 0], "the orders and executing them stop her sir ting": [65535, 0], "orders and executing them stop her sir ting a": [65535, 0], "and executing them stop her sir ting a ling": [65535, 0], "executing them stop her sir ting a ling ling": [65535, 0], "them stop her sir ting a ling ling the": [65535, 0], "stop her sir ting a ling ling the headway": [65535, 0], "her sir ting a ling ling the headway ran": [65535, 0], "sir ting a ling ling the headway ran almost": [65535, 0], "ting a ling ling the headway ran almost out": [65535, 0], "a ling ling the headway ran almost out and": [65535, 0], "ling ling the headway ran almost out and he": [65535, 0], "ling the headway ran almost out and he drew": [65535, 0], "the headway ran almost out and he drew up": [65535, 0], "headway ran almost out and he drew up slowly": [65535, 0], "ran almost out and he drew up slowly toward": [65535, 0], "almost out and he drew up slowly toward the": [65535, 0], "out and he drew up slowly toward the sidewalk": [65535, 0], "and he drew up slowly toward the sidewalk ship": [65535, 0], "he drew up slowly toward the sidewalk ship up": [65535, 0], "drew up slowly toward the sidewalk ship up to": [65535, 0], "up slowly toward the sidewalk ship up to back": [65535, 0], "slowly toward the sidewalk ship up to back ting": [65535, 0], "toward the sidewalk ship up to back ting a": [65535, 0], "the sidewalk ship up to back ting a ling": [65535, 0], "sidewalk ship up to back ting a ling ling": [65535, 0], "ship up to back ting a ling ling his": [65535, 0], "up to back ting a ling ling his arms": [65535, 0], "to back ting a ling ling his arms straightened": [65535, 0], "back ting a ling ling his arms straightened and": [65535, 0], "ting a ling ling his arms straightened and stiffened": [65535, 0], "a ling ling his arms straightened and stiffened down": [65535, 0], "ling ling his arms straightened and stiffened down his": [65535, 0], "ling his arms straightened and stiffened down his sides": [65535, 0], "his arms straightened and stiffened down his sides set": [65535, 0], "arms straightened and stiffened down his sides set her": [65535, 0], "straightened and stiffened down his sides set her back": [65535, 0], "and stiffened down his sides set her back on": [65535, 0], "stiffened down his sides set her back on the": [65535, 0], "down his sides set her back on the stabboard": [65535, 0], "his sides set her back on the stabboard ting": [65535, 0], "sides set her back on the stabboard ting a": [65535, 0], "set her back on the stabboard ting a ling": [65535, 0], "her back on the stabboard ting a ling ling": [65535, 0], "back on the stabboard ting a ling ling chow": [65535, 0], "on the stabboard ting a ling ling chow ch": [65535, 0], "the stabboard ting a ling ling chow ch chow": [65535, 0], "stabboard ting a ling ling chow ch chow wow": [65535, 0], "ting a ling ling chow ch chow wow chow": [65535, 0], "a ling ling chow ch chow wow chow his": [65535, 0], "ling ling chow ch chow wow chow his right": [65535, 0], "ling chow ch chow wow chow his right hand": [65535, 0], "chow ch chow wow chow his right hand meantime": [65535, 0], "ch chow wow chow his right hand meantime describing": [65535, 0], "chow wow chow his right hand meantime describing stately": [65535, 0], "wow chow his right hand meantime describing stately circles": [65535, 0], "chow his right hand meantime describing stately circles for": [65535, 0], "his right hand meantime describing stately circles for it": [65535, 0], "right hand meantime describing stately circles for it was": [65535, 0], "hand meantime describing stately circles for it was representing": [65535, 0], "meantime describing stately circles for it was representing a": [65535, 0], "describing stately circles for it was representing a forty": [65535, 0], "stately circles for it was representing a forty foot": [65535, 0], "circles for it was representing a forty foot wheel": [65535, 0], "for it was representing a forty foot wheel let": [65535, 0], "it was representing a forty foot wheel let her": [65535, 0], "was representing a forty foot wheel let her go": [65535, 0], "representing a forty foot wheel let her go back": [65535, 0], "a forty foot wheel let her go back on": [65535, 0], "forty foot wheel let her go back on the": [65535, 0], "foot wheel let her go back on the labboard": [65535, 0], "wheel let her go back on the labboard ting": [65535, 0], "let her go back on the labboard ting a": [65535, 0], "her go back on the labboard ting a ling": [65535, 0], "go back on the labboard ting a ling ling": [65535, 0], "back on the labboard ting a ling ling chow": [65535, 0], "on the labboard ting a ling ling chow ch": [65535, 0], "the labboard ting a ling ling chow ch chow": [65535, 0], "labboard ting a ling ling chow ch chow chow": [65535, 0], "ting a ling ling chow ch chow chow the": [65535, 0], "a ling ling chow ch chow chow the left": [65535, 0], "ling ling chow ch chow chow the left hand": [65535, 0], "ling chow ch chow chow the left hand began": [65535, 0], "chow ch chow chow the left hand began to": [65535, 0], "ch chow chow the left hand began to describe": [65535, 0], "chow chow the left hand began to describe circles": [65535, 0], "chow the left hand began to describe circles stop": [65535, 0], "the left hand began to describe circles stop the": [65535, 0], "left hand began to describe circles stop the stabboard": [65535, 0], "hand began to describe circles stop the stabboard ting": [65535, 0], "began to describe circles stop the stabboard ting a": [65535, 0], "to describe circles stop the stabboard ting a ling": [65535, 0], "describe circles stop the stabboard ting a ling ling": [65535, 0], "circles stop the stabboard ting a ling ling stop": [65535, 0], "stop the stabboard ting a ling ling stop the": [65535, 0], "the stabboard ting a ling ling stop the labboard": [65535, 0], "stabboard ting a ling ling stop the labboard come": [65535, 0], "ting a ling ling stop the labboard come ahead": [65535, 0], "a ling ling stop the labboard come ahead on": [65535, 0], "ling ling stop the labboard come ahead on the": [65535, 0], "ling stop the labboard come ahead on the stabboard": [65535, 0], "stop the labboard come ahead on the stabboard stop": [65535, 0], "the labboard come ahead on the stabboard stop her": [65535, 0], "labboard come ahead on the stabboard stop her let": [65535, 0], "come ahead on the stabboard stop her let your": [65535, 0], "ahead on the stabboard stop her let your outside": [65535, 0], "on the stabboard stop her let your outside turn": [65535, 0], "the stabboard stop her let your outside turn over": [65535, 0], "stabboard stop her let your outside turn over slow": [65535, 0], "stop her let your outside turn over slow ting": [65535, 0], "her let your outside turn over slow ting a": [65535, 0], "let your outside turn over slow ting a ling": [65535, 0], "your outside turn over slow ting a ling ling": [65535, 0], "outside turn over slow ting a ling ling chow": [65535, 0], "turn over slow ting a ling ling chow ow": [65535, 0], "over slow ting a ling ling chow ow ow": [65535, 0], "slow ting a ling ling chow ow ow get": [65535, 0], "ting a ling ling chow ow ow get out": [65535, 0], "a ling ling chow ow ow get out that": [65535, 0], "ling ling chow ow ow get out that head": [65535, 0], "ling chow ow ow get out that head line": [65535, 0], "chow ow ow get out that head line lively": [65535, 0], "ow ow get out that head line lively now": [65535, 0], "ow get out that head line lively now come": [65535, 0], "get out that head line lively now come out": [65535, 0], "out that head line lively now come out with": [65535, 0], "that head line lively now come out with your": [65535, 0], "head line lively now come out with your spring": [65535, 0], "line lively now come out with your spring line": [65535, 0], "lively now come out with your spring line what're": [65535, 0], "now come out with your spring line what're you": [65535, 0], "come out with your spring line what're you about": [65535, 0], "out with your spring line what're you about there": [65535, 0], "with your spring line what're you about there take": [65535, 0], "your spring line what're you about there take a": [65535, 0], "spring line what're you about there take a turn": [65535, 0], "line what're you about there take a turn round": [65535, 0], "what're you about there take a turn round that": [65535, 0], "you about there take a turn round that stump": [65535, 0], "about there take a turn round that stump with": [65535, 0], "there take a turn round that stump with the": [65535, 0], "take a turn round that stump with the bight": [65535, 0], "a turn round that stump with the bight of": [65535, 0], "turn round that stump with the bight of it": [65535, 0], "round that stump with the bight of it stand": [65535, 0], "that stump with the bight of it stand by": [65535, 0], "stump with the bight of it stand by that": [65535, 0], "with the bight of it stand by that stage": [65535, 0], "the bight of it stand by that stage now": [65535, 0], "bight of it stand by that stage now let": [65535, 0], "of it stand by that stage now let her": [65535, 0], "it stand by that stage now let her go": [65535, 0], "stand by that stage now let her go done": [65535, 0], "by that stage now let her go done with": [65535, 0], "that stage now let her go done with the": [65535, 0], "stage now let her go done with the engines": [65535, 0], "now let her go done with the engines sir": [65535, 0], "let her go done with the engines sir ting": [65535, 0], "her go done with the engines sir ting a": [65535, 0], "go done with the engines sir ting a ling": [65535, 0], "done with the engines sir ting a ling ling": [65535, 0], "with the engines sir ting a ling ling sh't": [65535, 0], "the engines sir ting a ling ling sh't s'h't": [65535, 0], "engines sir ting a ling ling sh't s'h't sh't": [65535, 0], "sir ting a ling ling sh't s'h't sh't trying": [65535, 0], "ting a ling ling sh't s'h't sh't trying the": [65535, 0], "a ling ling sh't s'h't sh't trying the gauge": [65535, 0], "ling ling sh't s'h't sh't trying the gauge cocks": [65535, 0], "ling sh't s'h't sh't trying the gauge cocks tom": [65535, 0], "sh't s'h't sh't trying the gauge cocks tom went": [65535, 0], "s'h't sh't trying the gauge cocks tom went on": [65535, 0], "sh't trying the gauge cocks tom went on whitewashing": [65535, 0], "trying the gauge cocks tom went on whitewashing paid": [65535, 0], "the gauge cocks tom went on whitewashing paid no": [65535, 0], "gauge cocks tom went on whitewashing paid no attention": [65535, 0], "cocks tom went on whitewashing paid no attention to": [65535, 0], "tom went on whitewashing paid no attention to the": [65535, 0], "went on whitewashing paid no attention to the steamboat": [65535, 0], "on whitewashing paid no attention to the steamboat ben": [65535, 0], "whitewashing paid no attention to the steamboat ben stared": [65535, 0], "paid no attention to the steamboat ben stared a": [65535, 0], "no attention to the steamboat ben stared a moment": [65535, 0], "attention to the steamboat ben stared a moment and": [65535, 0], "to the steamboat ben stared a moment and then": [65535, 0], "the steamboat ben stared a moment and then said": [65535, 0], "steamboat ben stared a moment and then said hi": [65535, 0], "ben stared a moment and then said hi yi": [65535, 0], "stared a moment and then said hi yi you're": [65535, 0], "a moment and then said hi yi you're up": [65535, 0], "moment and then said hi yi you're up a": [65535, 0], "and then said hi yi you're up a stump": [65535, 0], "then said hi yi you're up a stump ain't": [65535, 0], "said hi yi you're up a stump ain't you": [65535, 0], "hi yi you're up a stump ain't you no": [65535, 0], "yi you're up a stump ain't you no answer": [65535, 0], "you're up a stump ain't you no answer tom": [65535, 0], "up a stump ain't you no answer tom surveyed": [65535, 0], "a stump ain't you no answer tom surveyed his": [65535, 0], "stump ain't you no answer tom surveyed his last": [65535, 0], "ain't you no answer tom surveyed his last touch": [65535, 0], "you no answer tom surveyed his last touch with": [65535, 0], "no answer tom surveyed his last touch with the": [65535, 0], "answer tom surveyed his last touch with the eye": [65535, 0], "tom surveyed his last touch with the eye of": [65535, 0], "surveyed his last touch with the eye of an": [65535, 0], "his last touch with the eye of an artist": [65535, 0], "last touch with the eye of an artist then": [65535, 0], "touch with the eye of an artist then he": [65535, 0], "with the eye of an artist then he gave": [65535, 0], "the eye of an artist then he gave his": [65535, 0], "eye of an artist then he gave his brush": [65535, 0], "of an artist then he gave his brush another": [65535, 0], "an artist then he gave his brush another gentle": [65535, 0], "artist then he gave his brush another gentle sweep": [65535, 0], "then he gave his brush another gentle sweep and": [65535, 0], "he gave his brush another gentle sweep and surveyed": [65535, 0], "gave his brush another gentle sweep and surveyed the": [65535, 0], "his brush another gentle sweep and surveyed the result": [65535, 0], "brush another gentle sweep and surveyed the result as": [65535, 0], "another gentle sweep and surveyed the result as before": [65535, 0], "gentle sweep and surveyed the result as before ben": [65535, 0], "sweep and surveyed the result as before ben ranged": [65535, 0], "and surveyed the result as before ben ranged up": [65535, 0], "surveyed the result as before ben ranged up alongside": [65535, 0], "the result as before ben ranged up alongside of": [65535, 0], "result as before ben ranged up alongside of him": [65535, 0], "as before ben ranged up alongside of him tom's": [65535, 0], "before ben ranged up alongside of him tom's mouth": [65535, 0], "ben ranged up alongside of him tom's mouth watered": [65535, 0], "ranged up alongside of him tom's mouth watered for": [65535, 0], "up alongside of him tom's mouth watered for the": [65535, 0], "alongside of him tom's mouth watered for the apple": [65535, 0], "of him tom's mouth watered for the apple but": [65535, 0], "him tom's mouth watered for the apple but he": [65535, 0], "tom's mouth watered for the apple but he stuck": [65535, 0], "mouth watered for the apple but he stuck to": [65535, 0], "watered for the apple but he stuck to his": [65535, 0], "for the apple but he stuck to his work": [65535, 0], "the apple but he stuck to his work ben": [65535, 0], "apple but he stuck to his work ben said": [65535, 0], "but he stuck to his work ben said hello": [65535, 0], "he stuck to his work ben said hello old": [65535, 0], "stuck to his work ben said hello old chap": [65535, 0], "to his work ben said hello old chap you": [65535, 0], "his work ben said hello old chap you got": [65535, 0], "work ben said hello old chap you got to": [65535, 0], "ben said hello old chap you got to work": [65535, 0], "said hello old chap you got to work hey": [65535, 0], "hello old chap you got to work hey tom": [65535, 0], "old chap you got to work hey tom wheeled": [65535, 0], "chap you got to work hey tom wheeled suddenly": [65535, 0], "you got to work hey tom wheeled suddenly and": [65535, 0], "got to work hey tom wheeled suddenly and said": [65535, 0], "to work hey tom wheeled suddenly and said why": [65535, 0], "work hey tom wheeled suddenly and said why it's": [65535, 0], "hey tom wheeled suddenly and said why it's you": [65535, 0], "tom wheeled suddenly and said why it's you ben": [65535, 0], "wheeled suddenly and said why it's you ben i": [65535, 0], "suddenly and said why it's you ben i warn't": [65535, 0], "and said why it's you ben i warn't noticing": [65535, 0], "said why it's you ben i warn't noticing say": [65535, 0], "why it's you ben i warn't noticing say i'm": [65535, 0], "it's you ben i warn't noticing say i'm going": [65535, 0], "you ben i warn't noticing say i'm going in": [65535, 0], "ben i warn't noticing say i'm going in a": [65535, 0], "i warn't noticing say i'm going in a swimming": [65535, 0], "warn't noticing say i'm going in a swimming i": [65535, 0], "noticing say i'm going in a swimming i am": [65535, 0], "say i'm going in a swimming i am don't": [65535, 0], "i'm going in a swimming i am don't you": [65535, 0], "going in a swimming i am don't you wish": [65535, 0], "in a swimming i am don't you wish you": [65535, 0], "a swimming i am don't you wish you could": [65535, 0], "swimming i am don't you wish you could but": [65535, 0], "i am don't you wish you could but of": [65535, 0], "am don't you wish you could but of course": [65535, 0], "don't you wish you could but of course you'd": [65535, 0], "you wish you could but of course you'd druther": [65535, 0], "wish you could but of course you'd druther work": [65535, 0], "you could but of course you'd druther work wouldn't": [65535, 0], "could but of course you'd druther work wouldn't you": [65535, 0], "but of course you'd druther work wouldn't you course": [65535, 0], "of course you'd druther work wouldn't you course you": [65535, 0], "course you'd druther work wouldn't you course you would": [65535, 0], "you'd druther work wouldn't you course you would tom": [65535, 0], "druther work wouldn't you course you would tom contemplated": [65535, 0], "work wouldn't you course you would tom contemplated the": [65535, 0], "wouldn't you course you would tom contemplated the boy": [65535, 0], "you course you would tom contemplated the boy a": [65535, 0], "course you would tom contemplated the boy a bit": [65535, 0], "you would tom contemplated the boy a bit and": [65535, 0], "would tom contemplated the boy a bit and said": [65535, 0], "tom contemplated the boy a bit and said what": [65535, 0], "contemplated the boy a bit and said what do": [65535, 0], "the boy a bit and said what do you": [65535, 0], "boy a bit and said what do you call": [65535, 0], "a bit and said what do you call work": [65535, 0], "bit and said what do you call work why": [65535, 0], "and said what do you call work why ain't": [65535, 0], "said what do you call work why ain't that": [65535, 0], "what do you call work why ain't that work": [65535, 0], "do you call work why ain't that work tom": [65535, 0], "you call work why ain't that work tom resumed": [65535, 0], "call work why ain't that work tom resumed his": [65535, 0], "work why ain't that work tom resumed his whitewashing": [65535, 0], "why ain't that work tom resumed his whitewashing and": [65535, 0], "ain't that work tom resumed his whitewashing and answered": [65535, 0], "that work tom resumed his whitewashing and answered carelessly": [65535, 0], "work tom resumed his whitewashing and answered carelessly well": [65535, 0], "tom resumed his whitewashing and answered carelessly well maybe": [65535, 0], "resumed his whitewashing and answered carelessly well maybe it": [65535, 0], "his whitewashing and answered carelessly well maybe it is": [65535, 0], "whitewashing and answered carelessly well maybe it is and": [65535, 0], "and answered carelessly well maybe it is and maybe": [65535, 0], "answered carelessly well maybe it is and maybe it": [65535, 0], "carelessly well maybe it is and maybe it ain't": [65535, 0], "well maybe it is and maybe it ain't all": [65535, 0], "maybe it is and maybe it ain't all i": [65535, 0], "it is and maybe it ain't all i know": [65535, 0], "is and maybe it ain't all i know is": [65535, 0], "and maybe it ain't all i know is it": [65535, 0], "maybe it ain't all i know is it suits": [65535, 0], "it ain't all i know is it suits tom": [65535, 0], "ain't all i know is it suits tom sawyer": [65535, 0], "all i know is it suits tom sawyer oh": [65535, 0], "i know is it suits tom sawyer oh come": [65535, 0], "know is it suits tom sawyer oh come now": [65535, 0], "is it suits tom sawyer oh come now you": [65535, 0], "it suits tom sawyer oh come now you don't": [65535, 0], "suits tom sawyer oh come now you don't mean": [65535, 0], "tom sawyer oh come now you don't mean to": [65535, 0], "sawyer oh come now you don't mean to let": [65535, 0], "oh come now you don't mean to let on": [65535, 0], "come now you don't mean to let on that": [65535, 0], "now you don't mean to let on that you": [65535, 0], "you don't mean to let on that you like": [65535, 0], "don't mean to let on that you like it": [65535, 0], "mean to let on that you like it the": [65535, 0], "to let on that you like it the brush": [65535, 0], "let on that you like it the brush continued": [65535, 0], "on that you like it the brush continued to": [65535, 0], "that you like it the brush continued to move": [65535, 0], "you like it the brush continued to move like": [65535, 0], "like it the brush continued to move like it": [65535, 0], "it the brush continued to move like it well": [65535, 0], "the brush continued to move like it well i": [65535, 0], "brush continued to move like it well i don't": [65535, 0], "continued to move like it well i don't see": [65535, 0], "to move like it well i don't see why": [65535, 0], "move like it well i don't see why i": [65535, 0], "like it well i don't see why i oughtn't": [65535, 0], "it well i don't see why i oughtn't to": [65535, 0], "well i don't see why i oughtn't to like": [65535, 0], "i don't see why i oughtn't to like it": [65535, 0], "don't see why i oughtn't to like it does": [65535, 0], "see why i oughtn't to like it does a": [65535, 0], "why i oughtn't to like it does a boy": [65535, 0], "i oughtn't to like it does a boy get": [65535, 0], "oughtn't to like it does a boy get a": [65535, 0], "to like it does a boy get a chance": [65535, 0], "like it does a boy get a chance to": [65535, 0], "it does a boy get a chance to whitewash": [65535, 0], "does a boy get a chance to whitewash a": [65535, 0], "a boy get a chance to whitewash a fence": [65535, 0], "boy get a chance to whitewash a fence every": [65535, 0], "get a chance to whitewash a fence every day": [65535, 0], "a chance to whitewash a fence every day that": [65535, 0], "chance to whitewash a fence every day that put": [65535, 0], "to whitewash a fence every day that put the": [65535, 0], "whitewash a fence every day that put the thing": [65535, 0], "a fence every day that put the thing in": [65535, 0], "fence every day that put the thing in a": [65535, 0], "every day that put the thing in a new": [65535, 0], "day that put the thing in a new light": [65535, 0], "that put the thing in a new light ben": [65535, 0], "put the thing in a new light ben stopped": [65535, 0], "the thing in a new light ben stopped nibbling": [65535, 0], "thing in a new light ben stopped nibbling his": [65535, 0], "in a new light ben stopped nibbling his apple": [65535, 0], "a new light ben stopped nibbling his apple tom": [65535, 0], "new light ben stopped nibbling his apple tom swept": [65535, 0], "light ben stopped nibbling his apple tom swept his": [65535, 0], "ben stopped nibbling his apple tom swept his brush": [65535, 0], "stopped nibbling his apple tom swept his brush daintily": [65535, 0], "nibbling his apple tom swept his brush daintily back": [65535, 0], "his apple tom swept his brush daintily back and": [65535, 0], "apple tom swept his brush daintily back and forth": [65535, 0], "tom swept his brush daintily back and forth stepped": [65535, 0], "swept his brush daintily back and forth stepped back": [65535, 0], "his brush daintily back and forth stepped back to": [65535, 0], "brush daintily back and forth stepped back to note": [65535, 0], "daintily back and forth stepped back to note the": [65535, 0], "back and forth stepped back to note the effect": [65535, 0], "and forth stepped back to note the effect added": [65535, 0], "forth stepped back to note the effect added a": [65535, 0], "stepped back to note the effect added a touch": [65535, 0], "back to note the effect added a touch here": [65535, 0], "to note the effect added a touch here and": [65535, 0], "note the effect added a touch here and there": [65535, 0], "the effect added a touch here and there criticised": [65535, 0], "effect added a touch here and there criticised the": [65535, 0], "added a touch here and there criticised the effect": [65535, 0], "a touch here and there criticised the effect again": [65535, 0], "touch here and there criticised the effect again ben": [65535, 0], "here and there criticised the effect again ben watching": [65535, 0], "and there criticised the effect again ben watching every": [65535, 0], "there criticised the effect again ben watching every move": [65535, 0], "criticised the effect again ben watching every move and": [65535, 0], "the effect again ben watching every move and getting": [65535, 0], "effect again ben watching every move and getting more": [65535, 0], "again ben watching every move and getting more and": [65535, 0], "ben watching every move and getting more and more": [65535, 0], "watching every move and getting more and more interested": [65535, 0], "every move and getting more and more interested more": [65535, 0], "move and getting more and more interested more and": [65535, 0], "and getting more and more interested more and more": [65535, 0], "getting more and more interested more and more absorbed": [65535, 0], "more and more interested more and more absorbed presently": [65535, 0], "and more interested more and more absorbed presently he": [65535, 0], "more interested more and more absorbed presently he said": [65535, 0], "interested more and more absorbed presently he said say": [65535, 0], "more and more absorbed presently he said say tom": [65535, 0], "and more absorbed presently he said say tom let": [65535, 0], "more absorbed presently he said say tom let me": [65535, 0], "absorbed presently he said say tom let me whitewash": [65535, 0], "presently he said say tom let me whitewash a": [65535, 0], "he said say tom let me whitewash a little": [65535, 0], "said say tom let me whitewash a little tom": [65535, 0], "say tom let me whitewash a little tom considered": [65535, 0], "tom let me whitewash a little tom considered was": [65535, 0], "let me whitewash a little tom considered was about": [65535, 0], "me whitewash a little tom considered was about to": [65535, 0], "whitewash a little tom considered was about to consent": [65535, 0], "a little tom considered was about to consent but": [65535, 0], "little tom considered was about to consent but he": [65535, 0], "tom considered was about to consent but he altered": [65535, 0], "considered was about to consent but he altered his": [65535, 0], "was about to consent but he altered his mind": [65535, 0], "about to consent but he altered his mind no": [65535, 0], "to consent but he altered his mind no no": [65535, 0], "consent but he altered his mind no no i": [65535, 0], "but he altered his mind no no i reckon": [65535, 0], "he altered his mind no no i reckon it": [65535, 0], "altered his mind no no i reckon it wouldn't": [65535, 0], "his mind no no i reckon it wouldn't hardly": [65535, 0], "mind no no i reckon it wouldn't hardly do": [65535, 0], "no no i reckon it wouldn't hardly do ben": [65535, 0], "no i reckon it wouldn't hardly do ben you": [65535, 0], "i reckon it wouldn't hardly do ben you see": [65535, 0], "reckon it wouldn't hardly do ben you see aunt": [65535, 0], "it wouldn't hardly do ben you see aunt polly's": [65535, 0], "wouldn't hardly do ben you see aunt polly's awful": [65535, 0], "hardly do ben you see aunt polly's awful particular": [65535, 0], "do ben you see aunt polly's awful particular about": [65535, 0], "ben you see aunt polly's awful particular about this": [65535, 0], "you see aunt polly's awful particular about this fence": [65535, 0], "see aunt polly's awful particular about this fence right": [65535, 0], "aunt polly's awful particular about this fence right here": [65535, 0], "polly's awful particular about this fence right here on": [65535, 0], "awful particular about this fence right here on the": [65535, 0], "particular about this fence right here on the street": [65535, 0], "about this fence right here on the street you": [65535, 0], "this fence right here on the street you know": [65535, 0], "fence right here on the street you know but": [65535, 0], "right here on the street you know but if": [65535, 0], "here on the street you know but if it": [65535, 0], "on the street you know but if it was": [65535, 0], "the street you know but if it was the": [65535, 0], "street you know but if it was the back": [65535, 0], "you know but if it was the back fence": [65535, 0], "know but if it was the back fence i": [65535, 0], "but if it was the back fence i wouldn't": [65535, 0], "if it was the back fence i wouldn't mind": [65535, 0], "it was the back fence i wouldn't mind and": [65535, 0], "was the back fence i wouldn't mind and she": [65535, 0], "the back fence i wouldn't mind and she wouldn't": [65535, 0], "back fence i wouldn't mind and she wouldn't yes": [65535, 0], "fence i wouldn't mind and she wouldn't yes she's": [65535, 0], "i wouldn't mind and she wouldn't yes she's awful": [65535, 0], "wouldn't mind and she wouldn't yes she's awful particular": [65535, 0], "mind and she wouldn't yes she's awful particular about": [65535, 0], "and she wouldn't yes she's awful particular about this": [65535, 0], "she wouldn't yes she's awful particular about this fence": [65535, 0], "wouldn't yes she's awful particular about this fence it's": [65535, 0], "yes she's awful particular about this fence it's got": [65535, 0], "she's awful particular about this fence it's got to": [65535, 0], "awful particular about this fence it's got to be": [65535, 0], "particular about this fence it's got to be done": [65535, 0], "about this fence it's got to be done very": [65535, 0], "this fence it's got to be done very careful": [65535, 0], "fence it's got to be done very careful i": [65535, 0], "it's got to be done very careful i reckon": [65535, 0], "got to be done very careful i reckon there": [65535, 0], "to be done very careful i reckon there ain't": [65535, 0], "be done very careful i reckon there ain't one": [65535, 0], "done very careful i reckon there ain't one boy": [65535, 0], "very careful i reckon there ain't one boy in": [65535, 0], "careful i reckon there ain't one boy in a": [65535, 0], "i reckon there ain't one boy in a thousand": [65535, 0], "reckon there ain't one boy in a thousand maybe": [65535, 0], "there ain't one boy in a thousand maybe two": [65535, 0], "ain't one boy in a thousand maybe two thousand": [65535, 0], "one boy in a thousand maybe two thousand that": [65535, 0], "boy in a thousand maybe two thousand that can": [65535, 0], "in a thousand maybe two thousand that can do": [65535, 0], "a thousand maybe two thousand that can do it": [65535, 0], "thousand maybe two thousand that can do it the": [65535, 0], "maybe two thousand that can do it the way": [65535, 0], "two thousand that can do it the way it's": [65535, 0], "thousand that can do it the way it's got": [65535, 0], "that can do it the way it's got to": [65535, 0], "can do it the way it's got to be": [65535, 0], "do it the way it's got to be done": [65535, 0], "it the way it's got to be done no": [65535, 0], "the way it's got to be done no is": [65535, 0], "way it's got to be done no is that": [65535, 0], "it's got to be done no is that so": [65535, 0], "got to be done no is that so oh": [65535, 0], "to be done no is that so oh come": [65535, 0], "be done no is that so oh come now": [65535, 0], "done no is that so oh come now lemme": [65535, 0], "no is that so oh come now lemme just": [65535, 0], "is that so oh come now lemme just try": [65535, 0], "that so oh come now lemme just try only": [65535, 0], "so oh come now lemme just try only just": [65535, 0], "oh come now lemme just try only just a": [65535, 0], "come now lemme just try only just a little": [65535, 0], "now lemme just try only just a little i'd": [65535, 0], "lemme just try only just a little i'd let": [65535, 0], "just try only just a little i'd let you": [65535, 0], "try only just a little i'd let you if": [65535, 0], "only just a little i'd let you if you": [65535, 0], "just a little i'd let you if you was": [65535, 0], "a little i'd let you if you was me": [65535, 0], "little i'd let you if you was me tom": [65535, 0], "i'd let you if you was me tom ben": [65535, 0], "let you if you was me tom ben i'd": [65535, 0], "you if you was me tom ben i'd like": [65535, 0], "if you was me tom ben i'd like to": [65535, 0], "you was me tom ben i'd like to honest": [65535, 0], "was me tom ben i'd like to honest injun": [65535, 0], "me tom ben i'd like to honest injun but": [65535, 0], "tom ben i'd like to honest injun but aunt": [65535, 0], "ben i'd like to honest injun but aunt polly": [65535, 0], "i'd like to honest injun but aunt polly well": [65535, 0], "like to honest injun but aunt polly well jim": [65535, 0], "to honest injun but aunt polly well jim wanted": [65535, 0], "honest injun but aunt polly well jim wanted to": [65535, 0], "injun but aunt polly well jim wanted to do": [65535, 0], "but aunt polly well jim wanted to do it": [65535, 0], "aunt polly well jim wanted to do it but": [65535, 0], "polly well jim wanted to do it but she": [65535, 0], "well jim wanted to do it but she wouldn't": [65535, 0], "jim wanted to do it but she wouldn't let": [65535, 0], "wanted to do it but she wouldn't let him": [65535, 0], "to do it but she wouldn't let him sid": [65535, 0], "do it but she wouldn't let him sid wanted": [65535, 0], "it but she wouldn't let him sid wanted to": [65535, 0], "but she wouldn't let him sid wanted to do": [65535, 0], "she wouldn't let him sid wanted to do it": [65535, 0], "wouldn't let him sid wanted to do it and": [65535, 0], "let him sid wanted to do it and she": [65535, 0], "him sid wanted to do it and she wouldn't": [65535, 0], "sid wanted to do it and she wouldn't let": [65535, 0], "wanted to do it and she wouldn't let sid": [65535, 0], "to do it and she wouldn't let sid now": [65535, 0], "do it and she wouldn't let sid now don't": [65535, 0], "it and she wouldn't let sid now don't you": [65535, 0], "and she wouldn't let sid now don't you see": [65535, 0], "she wouldn't let sid now don't you see how": [65535, 0], "wouldn't let sid now don't you see how i'm": [65535, 0], "let sid now don't you see how i'm fixed": [65535, 0], "sid now don't you see how i'm fixed if": [65535, 0], "now don't you see how i'm fixed if you": [65535, 0], "don't you see how i'm fixed if you was": [65535, 0], "you see how i'm fixed if you was to": [65535, 0], "see how i'm fixed if you was to tackle": [65535, 0], "how i'm fixed if you was to tackle this": [65535, 0], "i'm fixed if you was to tackle this fence": [65535, 0], "fixed if you was to tackle this fence and": [65535, 0], "if you was to tackle this fence and anything": [65535, 0], "you was to tackle this fence and anything was": [65535, 0], "was to tackle this fence and anything was to": [65535, 0], "to tackle this fence and anything was to happen": [65535, 0], "tackle this fence and anything was to happen to": [65535, 0], "this fence and anything was to happen to it": [65535, 0], "fence and anything was to happen to it oh": [65535, 0], "and anything was to happen to it oh shucks": [65535, 0], "anything was to happen to it oh shucks i'll": [65535, 0], "was to happen to it oh shucks i'll be": [65535, 0], "to happen to it oh shucks i'll be just": [65535, 0], "happen to it oh shucks i'll be just as": [65535, 0], "to it oh shucks i'll be just as careful": [65535, 0], "it oh shucks i'll be just as careful now": [65535, 0], "oh shucks i'll be just as careful now lemme": [65535, 0], "shucks i'll be just as careful now lemme try": [65535, 0], "i'll be just as careful now lemme try say": [65535, 0], "be just as careful now lemme try say i'll": [65535, 0], "just as careful now lemme try say i'll give": [65535, 0], "as careful now lemme try say i'll give you": [65535, 0], "careful now lemme try say i'll give you the": [65535, 0], "now lemme try say i'll give you the core": [65535, 0], "lemme try say i'll give you the core of": [65535, 0], "try say i'll give you the core of my": [65535, 0], "say i'll give you the core of my apple": [65535, 0], "i'll give you the core of my apple well": [65535, 0], "give you the core of my apple well here": [65535, 0], "you the core of my apple well here no": [65535, 0], "the core of my apple well here no ben": [65535, 0], "core of my apple well here no ben now": [65535, 0], "of my apple well here no ben now don't": [65535, 0], "my apple well here no ben now don't i'm": [65535, 0], "apple well here no ben now don't i'm afeard": [65535, 0], "well here no ben now don't i'm afeard i'll": [65535, 0], "here no ben now don't i'm afeard i'll give": [65535, 0], "no ben now don't i'm afeard i'll give you": [65535, 0], "ben now don't i'm afeard i'll give you all": [65535, 0], "now don't i'm afeard i'll give you all of": [65535, 0], "don't i'm afeard i'll give you all of it": [65535, 0], "i'm afeard i'll give you all of it tom": [65535, 0], "afeard i'll give you all of it tom gave": [65535, 0], "i'll give you all of it tom gave up": [65535, 0], "give you all of it tom gave up the": [65535, 0], "you all of it tom gave up the brush": [65535, 0], "all of it tom gave up the brush with": [65535, 0], "of it tom gave up the brush with reluctance": [65535, 0], "it tom gave up the brush with reluctance in": [65535, 0], "tom gave up the brush with reluctance in his": [65535, 0], "gave up the brush with reluctance in his face": [65535, 0], "up the brush with reluctance in his face but": [65535, 0], "the brush with reluctance in his face but alacrity": [65535, 0], "brush with reluctance in his face but alacrity in": [65535, 0], "with reluctance in his face but alacrity in his": [65535, 0], "reluctance in his face but alacrity in his heart": [65535, 0], "in his face but alacrity in his heart and": [65535, 0], "his face but alacrity in his heart and while": [65535, 0], "face but alacrity in his heart and while the": [65535, 0], "but alacrity in his heart and while the late": [65535, 0], "alacrity in his heart and while the late steamer": [65535, 0], "in his heart and while the late steamer big": [65535, 0], "his heart and while the late steamer big missouri": [65535, 0], "heart and while the late steamer big missouri worked": [65535, 0], "and while the late steamer big missouri worked and": [65535, 0], "while the late steamer big missouri worked and sweated": [65535, 0], "the late steamer big missouri worked and sweated in": [65535, 0], "late steamer big missouri worked and sweated in the": [65535, 0], "steamer big missouri worked and sweated in the sun": [65535, 0], "big missouri worked and sweated in the sun the": [65535, 0], "missouri worked and sweated in the sun the retired": [65535, 0], "worked and sweated in the sun the retired artist": [65535, 0], "and sweated in the sun the retired artist sat": [65535, 0], "sweated in the sun the retired artist sat on": [65535, 0], "in the sun the retired artist sat on a": [65535, 0], "the sun the retired artist sat on a barrel": [65535, 0], "sun the retired artist sat on a barrel in": [65535, 0], "the retired artist sat on a barrel in the": [65535, 0], "retired artist sat on a barrel in the shade": [65535, 0], "artist sat on a barrel in the shade close": [65535, 0], "sat on a barrel in the shade close by": [65535, 0], "on a barrel in the shade close by dangled": [65535, 0], "a barrel in the shade close by dangled his": [65535, 0], "barrel in the shade close by dangled his legs": [65535, 0], "in the shade close by dangled his legs munched": [65535, 0], "the shade close by dangled his legs munched his": [65535, 0], "shade close by dangled his legs munched his apple": [65535, 0], "close by dangled his legs munched his apple and": [65535, 0], "by dangled his legs munched his apple and planned": [65535, 0], "dangled his legs munched his apple and planned the": [65535, 0], "his legs munched his apple and planned the slaughter": [65535, 0], "legs munched his apple and planned the slaughter of": [65535, 0], "munched his apple and planned the slaughter of more": [65535, 0], "his apple and planned the slaughter of more innocents": [65535, 0], "apple and planned the slaughter of more innocents there": [65535, 0], "and planned the slaughter of more innocents there was": [65535, 0], "planned the slaughter of more innocents there was no": [65535, 0], "the slaughter of more innocents there was no lack": [65535, 0], "slaughter of more innocents there was no lack of": [65535, 0], "of more innocents there was no lack of material": [65535, 0], "more innocents there was no lack of material boys": [65535, 0], "innocents there was no lack of material boys happened": [65535, 0], "there was no lack of material boys happened along": [65535, 0], "was no lack of material boys happened along every": [65535, 0], "no lack of material boys happened along every little": [65535, 0], "lack of material boys happened along every little while": [65535, 0], "of material boys happened along every little while they": [65535, 0], "material boys happened along every little while they came": [65535, 0], "boys happened along every little while they came to": [65535, 0], "happened along every little while they came to jeer": [65535, 0], "along every little while they came to jeer but": [65535, 0], "every little while they came to jeer but remained": [65535, 0], "little while they came to jeer but remained to": [65535, 0], "while they came to jeer but remained to whitewash": [65535, 0], "they came to jeer but remained to whitewash by": [65535, 0], "came to jeer but remained to whitewash by the": [65535, 0], "to jeer but remained to whitewash by the time": [65535, 0], "jeer but remained to whitewash by the time ben": [65535, 0], "but remained to whitewash by the time ben was": [65535, 0], "remained to whitewash by the time ben was fagged": [65535, 0], "to whitewash by the time ben was fagged out": [65535, 0], "whitewash by the time ben was fagged out tom": [65535, 0], "by the time ben was fagged out tom had": [65535, 0], "the time ben was fagged out tom had traded": [65535, 0], "time ben was fagged out tom had traded the": [65535, 0], "ben was fagged out tom had traded the next": [65535, 0], "was fagged out tom had traded the next chance": [65535, 0], "fagged out tom had traded the next chance to": [65535, 0], "out tom had traded the next chance to billy": [65535, 0], "tom had traded the next chance to billy fisher": [65535, 0], "had traded the next chance to billy fisher for": [65535, 0], "traded the next chance to billy fisher for a": [65535, 0], "the next chance to billy fisher for a kite": [65535, 0], "next chance to billy fisher for a kite in": [65535, 0], "chance to billy fisher for a kite in good": [65535, 0], "to billy fisher for a kite in good repair": [65535, 0], "billy fisher for a kite in good repair and": [65535, 0], "fisher for a kite in good repair and when": [65535, 0], "for a kite in good repair and when he": [65535, 0], "a kite in good repair and when he played": [65535, 0], "kite in good repair and when he played out": [65535, 0], "in good repair and when he played out johnny": [65535, 0], "good repair and when he played out johnny miller": [65535, 0], "repair and when he played out johnny miller bought": [65535, 0], "and when he played out johnny miller bought in": [65535, 0], "when he played out johnny miller bought in for": [65535, 0], "he played out johnny miller bought in for a": [65535, 0], "played out johnny miller bought in for a dead": [65535, 0], "out johnny miller bought in for a dead rat": [65535, 0], "johnny miller bought in for a dead rat and": [65535, 0], "miller bought in for a dead rat and a": [65535, 0], "bought in for a dead rat and a string": [65535, 0], "in for a dead rat and a string to": [65535, 0], "for a dead rat and a string to swing": [65535, 0], "a dead rat and a string to swing it": [65535, 0], "dead rat and a string to swing it with": [65535, 0], "rat and a string to swing it with and": [65535, 0], "and a string to swing it with and so": [65535, 0], "a string to swing it with and so on": [65535, 0], "string to swing it with and so on and": [65535, 0], "to swing it with and so on and so": [65535, 0], "swing it with and so on and so on": [65535, 0], "it with and so on and so on hour": [65535, 0], "with and so on and so on hour after": [65535, 0], "and so on and so on hour after hour": [65535, 0], "so on and so on hour after hour and": [65535, 0], "on and so on hour after hour and when": [65535, 0], "and so on hour after hour and when the": [65535, 0], "so on hour after hour and when the middle": [65535, 0], "on hour after hour and when the middle of": [65535, 0], "hour after hour and when the middle of the": [65535, 0], "after hour and when the middle of the afternoon": [65535, 0], "hour and when the middle of the afternoon came": [65535, 0], "and when the middle of the afternoon came from": [65535, 0], "when the middle of the afternoon came from being": [65535, 0], "the middle of the afternoon came from being a": [65535, 0], "middle of the afternoon came from being a poor": [65535, 0], "of the afternoon came from being a poor poverty": [65535, 0], "the afternoon came from being a poor poverty stricken": [65535, 0], "afternoon came from being a poor poverty stricken boy": [65535, 0], "came from being a poor poverty stricken boy in": [65535, 0], "from being a poor poverty stricken boy in the": [65535, 0], "being a poor poverty stricken boy in the morning": [65535, 0], "a poor poverty stricken boy in the morning tom": [65535, 0], "poor poverty stricken boy in the morning tom was": [65535, 0], "poverty stricken boy in the morning tom was literally": [65535, 0], "stricken boy in the morning tom was literally rolling": [65535, 0], "boy in the morning tom was literally rolling in": [65535, 0], "in the morning tom was literally rolling in wealth": [65535, 0], "the morning tom was literally rolling in wealth he": [65535, 0], "morning tom was literally rolling in wealth he had": [65535, 0], "tom was literally rolling in wealth he had besides": [65535, 0], "was literally rolling in wealth he had besides the": [65535, 0], "literally rolling in wealth he had besides the things": [65535, 0], "rolling in wealth he had besides the things before": [65535, 0], "in wealth he had besides the things before mentioned": [65535, 0], "wealth he had besides the things before mentioned twelve": [65535, 0], "he had besides the things before mentioned twelve marbles": [65535, 0], "had besides the things before mentioned twelve marbles part": [65535, 0], "besides the things before mentioned twelve marbles part of": [65535, 0], "the things before mentioned twelve marbles part of a": [65535, 0], "things before mentioned twelve marbles part of a jews": [65535, 0], "before mentioned twelve marbles part of a jews harp": [65535, 0], "mentioned twelve marbles part of a jews harp a": [65535, 0], "twelve marbles part of a jews harp a piece": [65535, 0], "marbles part of a jews harp a piece of": [65535, 0], "part of a jews harp a piece of blue": [65535, 0], "of a jews harp a piece of blue bottle": [65535, 0], "a jews harp a piece of blue bottle glass": [65535, 0], "jews harp a piece of blue bottle glass to": [65535, 0], "harp a piece of blue bottle glass to look": [65535, 0], "a piece of blue bottle glass to look through": [65535, 0], "piece of blue bottle glass to look through a": [65535, 0], "of blue bottle glass to look through a spool": [65535, 0], "blue bottle glass to look through a spool cannon": [65535, 0], "bottle glass to look through a spool cannon a": [65535, 0], "glass to look through a spool cannon a key": [65535, 0], "to look through a spool cannon a key that": [65535, 0], "look through a spool cannon a key that wouldn't": [65535, 0], "through a spool cannon a key that wouldn't unlock": [65535, 0], "a spool cannon a key that wouldn't unlock anything": [65535, 0], "spool cannon a key that wouldn't unlock anything a": [65535, 0], "cannon a key that wouldn't unlock anything a fragment": [65535, 0], "a key that wouldn't unlock anything a fragment of": [65535, 0], "key that wouldn't unlock anything a fragment of chalk": [65535, 0], "that wouldn't unlock anything a fragment of chalk a": [65535, 0], "wouldn't unlock anything a fragment of chalk a glass": [65535, 0], "unlock anything a fragment of chalk a glass stopper": [65535, 0], "anything a fragment of chalk a glass stopper of": [65535, 0], "a fragment of chalk a glass stopper of a": [65535, 0], "fragment of chalk a glass stopper of a decanter": [65535, 0], "of chalk a glass stopper of a decanter a": [65535, 0], "chalk a glass stopper of a decanter a tin": [65535, 0], "a glass stopper of a decanter a tin soldier": [65535, 0], "glass stopper of a decanter a tin soldier a": [65535, 0], "stopper of a decanter a tin soldier a couple": [65535, 0], "of a decanter a tin soldier a couple of": [65535, 0], "a decanter a tin soldier a couple of tadpoles": [65535, 0], "decanter a tin soldier a couple of tadpoles six": [65535, 0], "a tin soldier a couple of tadpoles six fire": [65535, 0], "tin soldier a couple of tadpoles six fire crackers": [65535, 0], "soldier a couple of tadpoles six fire crackers a": [65535, 0], "a couple of tadpoles six fire crackers a kitten": [65535, 0], "couple of tadpoles six fire crackers a kitten with": [65535, 0], "of tadpoles six fire crackers a kitten with only": [65535, 0], "tadpoles six fire crackers a kitten with only one": [65535, 0], "six fire crackers a kitten with only one eye": [65535, 0], "fire crackers a kitten with only one eye a": [65535, 0], "crackers a kitten with only one eye a brass": [65535, 0], "a kitten with only one eye a brass doorknob": [65535, 0], "kitten with only one eye a brass doorknob a": [65535, 0], "with only one eye a brass doorknob a dog": [65535, 0], "only one eye a brass doorknob a dog collar": [65535, 0], "one eye a brass doorknob a dog collar but": [65535, 0], "eye a brass doorknob a dog collar but no": [65535, 0], "a brass doorknob a dog collar but no dog": [65535, 0], "brass doorknob a dog collar but no dog the": [65535, 0], "doorknob a dog collar but no dog the handle": [65535, 0], "a dog collar but no dog the handle of": [65535, 0], "dog collar but no dog the handle of a": [65535, 0], "collar but no dog the handle of a knife": [65535, 0], "but no dog the handle of a knife four": [65535, 0], "no dog the handle of a knife four pieces": [65535, 0], "dog the handle of a knife four pieces of": [65535, 0], "the handle of a knife four pieces of orange": [65535, 0], "handle of a knife four pieces of orange peel": [65535, 0], "of a knife four pieces of orange peel and": [65535, 0], "a knife four pieces of orange peel and a": [65535, 0], "knife four pieces of orange peel and a dilapidated": [65535, 0], "four pieces of orange peel and a dilapidated old": [65535, 0], "pieces of orange peel and a dilapidated old window": [65535, 0], "of orange peel and a dilapidated old window sash": [65535, 0], "orange peel and a dilapidated old window sash he": [65535, 0], "peel and a dilapidated old window sash he had": [65535, 0], "and a dilapidated old window sash he had had": [65535, 0], "a dilapidated old window sash he had had a": [65535, 0], "dilapidated old window sash he had had a nice": [65535, 0], "old window sash he had had a nice good": [65535, 0], "window sash he had had a nice good idle": [65535, 0], "sash he had had a nice good idle time": [65535, 0], "he had had a nice good idle time all": [65535, 0], "had had a nice good idle time all the": [65535, 0], "had a nice good idle time all the while": [65535, 0], "a nice good idle time all the while plenty": [65535, 0], "nice good idle time all the while plenty of": [65535, 0], "good idle time all the while plenty of company": [65535, 0], "idle time all the while plenty of company and": [65535, 0], "time all the while plenty of company and the": [65535, 0], "all the while plenty of company and the fence": [65535, 0], "the while plenty of company and the fence had": [65535, 0], "while plenty of company and the fence had three": [65535, 0], "plenty of company and the fence had three coats": [65535, 0], "of company and the fence had three coats of": [65535, 0], "company and the fence had three coats of whitewash": [65535, 0], "and the fence had three coats of whitewash on": [65535, 0], "the fence had three coats of whitewash on it": [65535, 0], "fence had three coats of whitewash on it if": [65535, 0], "had three coats of whitewash on it if he": [65535, 0], "three coats of whitewash on it if he hadn't": [65535, 0], "coats of whitewash on it if he hadn't run": [65535, 0], "of whitewash on it if he hadn't run out": [65535, 0], "whitewash on it if he hadn't run out of": [65535, 0], "on it if he hadn't run out of whitewash": [65535, 0], "it if he hadn't run out of whitewash he": [65535, 0], "if he hadn't run out of whitewash he would": [65535, 0], "he hadn't run out of whitewash he would have": [65535, 0], "hadn't run out of whitewash he would have bankrupted": [65535, 0], "run out of whitewash he would have bankrupted every": [65535, 0], "out of whitewash he would have bankrupted every boy": [65535, 0], "of whitewash he would have bankrupted every boy in": [65535, 0], "whitewash he would have bankrupted every boy in the": [65535, 0], "he would have bankrupted every boy in the village": [65535, 0], "would have bankrupted every boy in the village tom": [65535, 0], "have bankrupted every boy in the village tom said": [65535, 0], "bankrupted every boy in the village tom said to": [65535, 0], "every boy in the village tom said to himself": [65535, 0], "boy in the village tom said to himself that": [65535, 0], "in the village tom said to himself that it": [65535, 0], "the village tom said to himself that it was": [65535, 0], "village tom said to himself that it was not": [65535, 0], "tom said to himself that it was not such": [65535, 0], "said to himself that it was not such a": [65535, 0], "to himself that it was not such a hollow": [65535, 0], "himself that it was not such a hollow world": [65535, 0], "that it was not such a hollow world after": [65535, 0], "it was not such a hollow world after all": [65535, 0], "was not such a hollow world after all he": [65535, 0], "not such a hollow world after all he had": [65535, 0], "such a hollow world after all he had discovered": [65535, 0], "a hollow world after all he had discovered a": [65535, 0], "hollow world after all he had discovered a great": [65535, 0], "world after all he had discovered a great law": [65535, 0], "after all he had discovered a great law of": [65535, 0], "all he had discovered a great law of human": [65535, 0], "he had discovered a great law of human action": [65535, 0], "had discovered a great law of human action without": [65535, 0], "discovered a great law of human action without knowing": [65535, 0], "a great law of human action without knowing it": [65535, 0], "great law of human action without knowing it namely": [65535, 0], "law of human action without knowing it namely that": [65535, 0], "of human action without knowing it namely that in": [65535, 0], "human action without knowing it namely that in order": [65535, 0], "action without knowing it namely that in order to": [65535, 0], "without knowing it namely that in order to make": [65535, 0], "knowing it namely that in order to make a": [65535, 0], "it namely that in order to make a man": [65535, 0], "namely that in order to make a man or": [65535, 0], "that in order to make a man or a": [65535, 0], "in order to make a man or a boy": [65535, 0], "order to make a man or a boy covet": [65535, 0], "to make a man or a boy covet a": [65535, 0], "make a man or a boy covet a thing": [65535, 0], "a man or a boy covet a thing it": [65535, 0], "man or a boy covet a thing it is": [65535, 0], "or a boy covet a thing it is only": [65535, 0], "a boy covet a thing it is only necessary": [65535, 0], "boy covet a thing it is only necessary to": [65535, 0], "covet a thing it is only necessary to make": [65535, 0], "a thing it is only necessary to make the": [65535, 0], "thing it is only necessary to make the thing": [65535, 0], "it is only necessary to make the thing difficult": [65535, 0], "is only necessary to make the thing difficult to": [65535, 0], "only necessary to make the thing difficult to attain": [65535, 0], "necessary to make the thing difficult to attain if": [65535, 0], "to make the thing difficult to attain if he": [65535, 0], "make the thing difficult to attain if he had": [65535, 0], "the thing difficult to attain if he had been": [65535, 0], "thing difficult to attain if he had been a": [65535, 0], "difficult to attain if he had been a great": [65535, 0], "to attain if he had been a great and": [65535, 0], "attain if he had been a great and wise": [65535, 0], "if he had been a great and wise philosopher": [65535, 0], "he had been a great and wise philosopher like": [65535, 0], "had been a great and wise philosopher like the": [65535, 0], "been a great and wise philosopher like the writer": [65535, 0], "a great and wise philosopher like the writer of": [65535, 0], "great and wise philosopher like the writer of this": [65535, 0], "and wise philosopher like the writer of this book": [65535, 0], "wise philosopher like the writer of this book he": [65535, 0], "philosopher like the writer of this book he would": [65535, 0], "like the writer of this book he would now": [65535, 0], "the writer of this book he would now have": [65535, 0], "writer of this book he would now have comprehended": [65535, 0], "of this book he would now have comprehended that": [65535, 0], "this book he would now have comprehended that work": [65535, 0], "book he would now have comprehended that work consists": [65535, 0], "he would now have comprehended that work consists of": [65535, 0], "would now have comprehended that work consists of whatever": [65535, 0], "now have comprehended that work consists of whatever a": [65535, 0], "have comprehended that work consists of whatever a body": [65535, 0], "comprehended that work consists of whatever a body is": [65535, 0], "that work consists of whatever a body is obliged": [65535, 0], "work consists of whatever a body is obliged to": [65535, 0], "consists of whatever a body is obliged to do": [65535, 0], "of whatever a body is obliged to do and": [65535, 0], "whatever a body is obliged to do and that": [65535, 0], "a body is obliged to do and that play": [65535, 0], "body is obliged to do and that play consists": [65535, 0], "is obliged to do and that play consists of": [65535, 0], "obliged to do and that play consists of whatever": [65535, 0], "to do and that play consists of whatever a": [65535, 0], "do and that play consists of whatever a body": [65535, 0], "and that play consists of whatever a body is": [65535, 0], "that play consists of whatever a body is not": [65535, 0], "play consists of whatever a body is not obliged": [65535, 0], "consists of whatever a body is not obliged to": [65535, 0], "of whatever a body is not obliged to do": [65535, 0], "whatever a body is not obliged to do and": [65535, 0], "a body is not obliged to do and this": [65535, 0], "body is not obliged to do and this would": [65535, 0], "is not obliged to do and this would help": [65535, 0], "not obliged to do and this would help him": [65535, 0], "obliged to do and this would help him to": [65535, 0], "to do and this would help him to understand": [65535, 0], "do and this would help him to understand why": [65535, 0], "and this would help him to understand why constructing": [65535, 0], "this would help him to understand why constructing artificial": [65535, 0], "would help him to understand why constructing artificial flowers": [65535, 0], "help him to understand why constructing artificial flowers or": [65535, 0], "him to understand why constructing artificial flowers or performing": [65535, 0], "to understand why constructing artificial flowers or performing on": [65535, 0], "understand why constructing artificial flowers or performing on a": [65535, 0], "why constructing artificial flowers or performing on a tread": [65535, 0], "constructing artificial flowers or performing on a tread mill": [65535, 0], "artificial flowers or performing on a tread mill is": [65535, 0], "flowers or performing on a tread mill is work": [65535, 0], "or performing on a tread mill is work while": [65535, 0], "performing on a tread mill is work while rolling": [65535, 0], "on a tread mill is work while rolling ten": [65535, 0], "a tread mill is work while rolling ten pins": [65535, 0], "tread mill is work while rolling ten pins or": [65535, 0], "mill is work while rolling ten pins or climbing": [65535, 0], "is work while rolling ten pins or climbing mont": [65535, 0], "work while rolling ten pins or climbing mont blanc": [65535, 0], "while rolling ten pins or climbing mont blanc is": [65535, 0], "rolling ten pins or climbing mont blanc is only": [65535, 0], "ten pins or climbing mont blanc is only amusement": [65535, 0], "pins or climbing mont blanc is only amusement there": [65535, 0], "or climbing mont blanc is only amusement there are": [65535, 0], "climbing mont blanc is only amusement there are wealthy": [65535, 0], "mont blanc is only amusement there are wealthy gentlemen": [65535, 0], "blanc is only amusement there are wealthy gentlemen in": [65535, 0], "is only amusement there are wealthy gentlemen in england": [65535, 0], "only amusement there are wealthy gentlemen in england who": [65535, 0], "amusement there are wealthy gentlemen in england who drive": [65535, 0], "there are wealthy gentlemen in england who drive four": [65535, 0], "are wealthy gentlemen in england who drive four horse": [65535, 0], "wealthy gentlemen in england who drive four horse passenger": [65535, 0], "gentlemen in england who drive four horse passenger coaches": [65535, 0], "in england who drive four horse passenger coaches twenty": [65535, 0], "england who drive four horse passenger coaches twenty or": [65535, 0], "who drive four horse passenger coaches twenty or thirty": [65535, 0], "drive four horse passenger coaches twenty or thirty miles": [65535, 0], "four horse passenger coaches twenty or thirty miles on": [65535, 0], "horse passenger coaches twenty or thirty miles on a": [65535, 0], "passenger coaches twenty or thirty miles on a daily": [65535, 0], "coaches twenty or thirty miles on a daily line": [65535, 0], "twenty or thirty miles on a daily line in": [65535, 0], "or thirty miles on a daily line in the": [65535, 0], "thirty miles on a daily line in the summer": [65535, 0], "miles on a daily line in the summer because": [65535, 0], "on a daily line in the summer because the": [65535, 0], "a daily line in the summer because the privilege": [65535, 0], "daily line in the summer because the privilege costs": [65535, 0], "line in the summer because the privilege costs them": [65535, 0], "in the summer because the privilege costs them considerable": [65535, 0], "the summer because the privilege costs them considerable money": [65535, 0], "summer because the privilege costs them considerable money but": [65535, 0], "because the privilege costs them considerable money but if": [65535, 0], "the privilege costs them considerable money but if they": [65535, 0], "privilege costs them considerable money but if they were": [65535, 0], "costs them considerable money but if they were offered": [65535, 0], "them considerable money but if they were offered wages": [65535, 0], "considerable money but if they were offered wages for": [65535, 0], "money but if they were offered wages for the": [65535, 0], "but if they were offered wages for the service": [65535, 0], "if they were offered wages for the service that": [65535, 0], "they were offered wages for the service that would": [65535, 0], "were offered wages for the service that would turn": [65535, 0], "offered wages for the service that would turn it": [65535, 0], "wages for the service that would turn it into": [65535, 0], "for the service that would turn it into work": [65535, 0], "the service that would turn it into work and": [65535, 0], "service that would turn it into work and then": [65535, 0], "that would turn it into work and then they": [65535, 0], "would turn it into work and then they would": [65535, 0], "turn it into work and then they would resign": [65535, 0], "it into work and then they would resign the": [65535, 0], "into work and then they would resign the boy": [65535, 0], "work and then they would resign the boy mused": [65535, 0], "and then they would resign the boy mused awhile": [65535, 0], "then they would resign the boy mused awhile over": [65535, 0], "they would resign the boy mused awhile over the": [65535, 0], "would resign the boy mused awhile over the substantial": [65535, 0], "resign the boy mused awhile over the substantial change": [65535, 0], "the boy mused awhile over the substantial change which": [65535, 0], "boy mused awhile over the substantial change which had": [65535, 0], "mused awhile over the substantial change which had taken": [65535, 0], "awhile over the substantial change which had taken place": [65535, 0], "over the substantial change which had taken place in": [65535, 0], "the substantial change which had taken place in his": [65535, 0], "substantial change which had taken place in his worldly": [65535, 0], "change which had taken place in his worldly circumstances": [65535, 0], "which had taken place in his worldly circumstances and": [65535, 0], "had taken place in his worldly circumstances and then": [65535, 0], "taken place in his worldly circumstances and then wended": [65535, 0], "place in his worldly circumstances and then wended toward": [65535, 0], "in his worldly circumstances and then wended toward headquarters": [65535, 0], "his worldly circumstances and then wended toward headquarters to": [65535, 0], "worldly circumstances and then wended toward headquarters to report": [65535, 0], "saturday morning was come and all the summer world was": [65535, 0], "morning was come and all the summer world was bright": [65535, 0], "was come and all the summer world was bright and": [65535, 0], "come and all the summer world was bright and fresh": [65535, 0], "and all the summer world was bright and fresh and": [65535, 0], "all the summer world was bright and fresh and brimming": [65535, 0], "the summer world was bright and fresh and brimming with": [65535, 0], "summer world was bright and fresh and brimming with life": [65535, 0], "world was bright and fresh and brimming with life there": [65535, 0], "was bright and fresh and brimming with life there was": [65535, 0], "bright and fresh and brimming with life there was a": [65535, 0], "and fresh and brimming with life there was a song": [65535, 0], "fresh and brimming with life there was a song in": [65535, 0], "and brimming with life there was a song in every": [65535, 0], "brimming with life there was a song in every heart": [65535, 0], "with life there was a song in every heart and": [65535, 0], "life there was a song in every heart and if": [65535, 0], "there was a song in every heart and if the": [65535, 0], "was a song in every heart and if the heart": [65535, 0], "a song in every heart and if the heart was": [65535, 0], "song in every heart and if the heart was young": [65535, 0], "in every heart and if the heart was young the": [65535, 0], "every heart and if the heart was young the music": [65535, 0], "heart and if the heart was young the music issued": [65535, 0], "and if the heart was young the music issued at": [65535, 0], "if the heart was young the music issued at the": [65535, 0], "the heart was young the music issued at the lips": [65535, 0], "heart was young the music issued at the lips there": [65535, 0], "was young the music issued at the lips there was": [65535, 0], "young the music issued at the lips there was cheer": [65535, 0], "the music issued at the lips there was cheer in": [65535, 0], "music issued at the lips there was cheer in every": [65535, 0], "issued at the lips there was cheer in every face": [65535, 0], "at the lips there was cheer in every face and": [65535, 0], "the lips there was cheer in every face and a": [65535, 0], "lips there was cheer in every face and a spring": [65535, 0], "there was cheer in every face and a spring in": [65535, 0], "was cheer in every face and a spring in every": [65535, 0], "cheer in every face and a spring in every step": [65535, 0], "in every face and a spring in every step the": [65535, 0], "every face and a spring in every step the locust": [65535, 0], "face and a spring in every step the locust trees": [65535, 0], "and a spring in every step the locust trees were": [65535, 0], "a spring in every step the locust trees were in": [65535, 0], "spring in every step the locust trees were in bloom": [65535, 0], "in every step the locust trees were in bloom and": [65535, 0], "every step the locust trees were in bloom and the": [65535, 0], "step the locust trees were in bloom and the fragrance": [65535, 0], "the locust trees were in bloom and the fragrance of": [65535, 0], "locust trees were in bloom and the fragrance of the": [65535, 0], "trees were in bloom and the fragrance of the blossoms": [65535, 0], "were in bloom and the fragrance of the blossoms filled": [65535, 0], "in bloom and the fragrance of the blossoms filled the": [65535, 0], "bloom and the fragrance of the blossoms filled the air": [65535, 0], "and the fragrance of the blossoms filled the air cardiff": [65535, 0], "the fragrance of the blossoms filled the air cardiff hill": [65535, 0], "fragrance of the blossoms filled the air cardiff hill beyond": [65535, 0], "of the blossoms filled the air cardiff hill beyond the": [65535, 0], "the blossoms filled the air cardiff hill beyond the village": [65535, 0], "blossoms filled the air cardiff hill beyond the village and": [65535, 0], "filled the air cardiff hill beyond the village and above": [65535, 0], "the air cardiff hill beyond the village and above it": [65535, 0], "air cardiff hill beyond the village and above it was": [65535, 0], "cardiff hill beyond the village and above it was green": [65535, 0], "hill beyond the village and above it was green with": [65535, 0], "beyond the village and above it was green with vegetation": [65535, 0], "the village and above it was green with vegetation and": [65535, 0], "village and above it was green with vegetation and it": [65535, 0], "and above it was green with vegetation and it lay": [65535, 0], "above it was green with vegetation and it lay just": [65535, 0], "it was green with vegetation and it lay just far": [65535, 0], "was green with vegetation and it lay just far enough": [65535, 0], "green with vegetation and it lay just far enough away": [65535, 0], "with vegetation and it lay just far enough away to": [65535, 0], "vegetation and it lay just far enough away to seem": [65535, 0], "and it lay just far enough away to seem a": [65535, 0], "it lay just far enough away to seem a delectable": [65535, 0], "lay just far enough away to seem a delectable land": [65535, 0], "just far enough away to seem a delectable land dreamy": [65535, 0], "far enough away to seem a delectable land dreamy reposeful": [65535, 0], "enough away to seem a delectable land dreamy reposeful and": [65535, 0], "away to seem a delectable land dreamy reposeful and inviting": [65535, 0], "to seem a delectable land dreamy reposeful and inviting tom": [65535, 0], "seem a delectable land dreamy reposeful and inviting tom appeared": [65535, 0], "a delectable land dreamy reposeful and inviting tom appeared on": [65535, 0], "delectable land dreamy reposeful and inviting tom appeared on the": [65535, 0], "land dreamy reposeful and inviting tom appeared on the sidewalk": [65535, 0], "dreamy reposeful and inviting tom appeared on the sidewalk with": [65535, 0], "reposeful and inviting tom appeared on the sidewalk with a": [65535, 0], "and inviting tom appeared on the sidewalk with a bucket": [65535, 0], "inviting tom appeared on the sidewalk with a bucket of": [65535, 0], "tom appeared on the sidewalk with a bucket of whitewash": [65535, 0], "appeared on the sidewalk with a bucket of whitewash and": [65535, 0], "on the sidewalk with a bucket of whitewash and a": [65535, 0], "the sidewalk with a bucket of whitewash and a long": [65535, 0], "sidewalk with a bucket of whitewash and a long handled": [65535, 0], "with a bucket of whitewash and a long handled brush": [65535, 0], "a bucket of whitewash and a long handled brush he": [65535, 0], "bucket of whitewash and a long handled brush he surveyed": [65535, 0], "of whitewash and a long handled brush he surveyed the": [65535, 0], "whitewash and a long handled brush he surveyed the fence": [65535, 0], "and a long handled brush he surveyed the fence and": [65535, 0], "a long handled brush he surveyed the fence and all": [65535, 0], "long handled brush he surveyed the fence and all gladness": [65535, 0], "handled brush he surveyed the fence and all gladness left": [65535, 0], "brush he surveyed the fence and all gladness left him": [65535, 0], "he surveyed the fence and all gladness left him and": [65535, 0], "surveyed the fence and all gladness left him and a": [65535, 0], "the fence and all gladness left him and a deep": [65535, 0], "fence and all gladness left him and a deep melancholy": [65535, 0], "and all gladness left him and a deep melancholy settled": [65535, 0], "all gladness left him and a deep melancholy settled down": [65535, 0], "gladness left him and a deep melancholy settled down upon": [65535, 0], "left him and a deep melancholy settled down upon his": [65535, 0], "him and a deep melancholy settled down upon his spirit": [65535, 0], "and a deep melancholy settled down upon his spirit thirty": [65535, 0], "a deep melancholy settled down upon his spirit thirty yards": [65535, 0], "deep melancholy settled down upon his spirit thirty yards of": [65535, 0], "melancholy settled down upon his spirit thirty yards of board": [65535, 0], "settled down upon his spirit thirty yards of board fence": [65535, 0], "down upon his spirit thirty yards of board fence nine": [65535, 0], "upon his spirit thirty yards of board fence nine feet": [65535, 0], "his spirit thirty yards of board fence nine feet high": [65535, 0], "spirit thirty yards of board fence nine feet high life": [65535, 0], "thirty yards of board fence nine feet high life to": [65535, 0], "yards of board fence nine feet high life to him": [65535, 0], "of board fence nine feet high life to him seemed": [65535, 0], "board fence nine feet high life to him seemed hollow": [65535, 0], "fence nine feet high life to him seemed hollow and": [65535, 0], "nine feet high life to him seemed hollow and existence": [65535, 0], "feet high life to him seemed hollow and existence but": [65535, 0], "high life to him seemed hollow and existence but a": [65535, 0], "life to him seemed hollow and existence but a burden": [65535, 0], "to him seemed hollow and existence but a burden sighing": [65535, 0], "him seemed hollow and existence but a burden sighing he": [65535, 0], "seemed hollow and existence but a burden sighing he dipped": [65535, 0], "hollow and existence but a burden sighing he dipped his": [65535, 0], "and existence but a burden sighing he dipped his brush": [65535, 0], "existence but a burden sighing he dipped his brush and": [65535, 0], "but a burden sighing he dipped his brush and passed": [65535, 0], "a burden sighing he dipped his brush and passed it": [65535, 0], "burden sighing he dipped his brush and passed it along": [65535, 0], "sighing he dipped his brush and passed it along the": [65535, 0], "he dipped his brush and passed it along the topmost": [65535, 0], "dipped his brush and passed it along the topmost plank": [65535, 0], "his brush and passed it along the topmost plank repeated": [65535, 0], "brush and passed it along the topmost plank repeated the": [65535, 0], "and passed it along the topmost plank repeated the operation": [65535, 0], "passed it along the topmost plank repeated the operation did": [65535, 0], "it along the topmost plank repeated the operation did it": [65535, 0], "along the topmost plank repeated the operation did it again": [65535, 0], "the topmost plank repeated the operation did it again compared": [65535, 0], "topmost plank repeated the operation did it again compared the": [65535, 0], "plank repeated the operation did it again compared the insignificant": [65535, 0], "repeated the operation did it again compared the insignificant whitewashed": [65535, 0], "the operation did it again compared the insignificant whitewashed streak": [65535, 0], "operation did it again compared the insignificant whitewashed streak with": [65535, 0], "did it again compared the insignificant whitewashed streak with the": [65535, 0], "it again compared the insignificant whitewashed streak with the far": [65535, 0], "again compared the insignificant whitewashed streak with the far reaching": [65535, 0], "compared the insignificant whitewashed streak with the far reaching continent": [65535, 0], "the insignificant whitewashed streak with the far reaching continent of": [65535, 0], "insignificant whitewashed streak with the far reaching continent of unwhitewashed": [65535, 0], "whitewashed streak with the far reaching continent of unwhitewashed fence": [65535, 0], "streak with the far reaching continent of unwhitewashed fence and": [65535, 0], "with the far reaching continent of unwhitewashed fence and sat": [65535, 0], "the far reaching continent of unwhitewashed fence and sat down": [65535, 0], "far reaching continent of unwhitewashed fence and sat down on": [65535, 0], "reaching continent of unwhitewashed fence and sat down on a": [65535, 0], "continent of unwhitewashed fence and sat down on a tree": [65535, 0], "of unwhitewashed fence and sat down on a tree box": [65535, 0], "unwhitewashed fence and sat down on a tree box discouraged": [65535, 0], "fence and sat down on a tree box discouraged jim": [65535, 0], "and sat down on a tree box discouraged jim came": [65535, 0], "sat down on a tree box discouraged jim came skipping": [65535, 0], "down on a tree box discouraged jim came skipping out": [65535, 0], "on a tree box discouraged jim came skipping out at": [65535, 0], "a tree box discouraged jim came skipping out at the": [65535, 0], "tree box discouraged jim came skipping out at the gate": [65535, 0], "box discouraged jim came skipping out at the gate with": [65535, 0], "discouraged jim came skipping out at the gate with a": [65535, 0], "jim came skipping out at the gate with a tin": [65535, 0], "came skipping out at the gate with a tin pail": [65535, 0], "skipping out at the gate with a tin pail and": [65535, 0], "out at the gate with a tin pail and singing": [65535, 0], "at the gate with a tin pail and singing buffalo": [65535, 0], "the gate with a tin pail and singing buffalo gals": [65535, 0], "gate with a tin pail and singing buffalo gals bringing": [65535, 0], "with a tin pail and singing buffalo gals bringing water": [65535, 0], "a tin pail and singing buffalo gals bringing water from": [65535, 0], "tin pail and singing buffalo gals bringing water from the": [65535, 0], "pail and singing buffalo gals bringing water from the town": [65535, 0], "and singing buffalo gals bringing water from the town pump": [65535, 0], "singing buffalo gals bringing water from the town pump had": [65535, 0], "buffalo gals bringing water from the town pump had always": [65535, 0], "gals bringing water from the town pump had always been": [65535, 0], "bringing water from the town pump had always been hateful": [65535, 0], "water from the town pump had always been hateful work": [65535, 0], "from the town pump had always been hateful work in": [65535, 0], "the town pump had always been hateful work in tom's": [65535, 0], "town pump had always been hateful work in tom's eyes": [65535, 0], "pump had always been hateful work in tom's eyes before": [65535, 0], "had always been hateful work in tom's eyes before but": [65535, 0], "always been hateful work in tom's eyes before but now": [65535, 0], "been hateful work in tom's eyes before but now it": [65535, 0], "hateful work in tom's eyes before but now it did": [65535, 0], "work in tom's eyes before but now it did not": [65535, 0], "in tom's eyes before but now it did not strike": [65535, 0], "tom's eyes before but now it did not strike him": [65535, 0], "eyes before but now it did not strike him so": [65535, 0], "before but now it did not strike him so he": [65535, 0], "but now it did not strike him so he remembered": [65535, 0], "now it did not strike him so he remembered that": [65535, 0], "it did not strike him so he remembered that there": [65535, 0], "did not strike him so he remembered that there was": [65535, 0], "not strike him so he remembered that there was company": [65535, 0], "strike him so he remembered that there was company at": [65535, 0], "him so he remembered that there was company at the": [65535, 0], "so he remembered that there was company at the pump": [65535, 0], "he remembered that there was company at the pump white": [65535, 0], "remembered that there was company at the pump white mulatto": [65535, 0], "that there was company at the pump white mulatto and": [65535, 0], "there was company at the pump white mulatto and negro": [65535, 0], "was company at the pump white mulatto and negro boys": [65535, 0], "company at the pump white mulatto and negro boys and": [65535, 0], "at the pump white mulatto and negro boys and girls": [65535, 0], "the pump white mulatto and negro boys and girls were": [65535, 0], "pump white mulatto and negro boys and girls were always": [65535, 0], "white mulatto and negro boys and girls were always there": [65535, 0], "mulatto and negro boys and girls were always there waiting": [65535, 0], "and negro boys and girls were always there waiting their": [65535, 0], "negro boys and girls were always there waiting their turns": [65535, 0], "boys and girls were always there waiting their turns resting": [65535, 0], "and girls were always there waiting their turns resting trading": [65535, 0], "girls were always there waiting their turns resting trading playthings": [65535, 0], "were always there waiting their turns resting trading playthings quarrelling": [65535, 0], "always there waiting their turns resting trading playthings quarrelling fighting": [65535, 0], "there waiting their turns resting trading playthings quarrelling fighting skylarking": [65535, 0], "waiting their turns resting trading playthings quarrelling fighting skylarking and": [65535, 0], "their turns resting trading playthings quarrelling fighting skylarking and he": [65535, 0], "turns resting trading playthings quarrelling fighting skylarking and he remembered": [65535, 0], "resting trading playthings quarrelling fighting skylarking and he remembered that": [65535, 0], "trading playthings quarrelling fighting skylarking and he remembered that although": [65535, 0], "playthings quarrelling fighting skylarking and he remembered that although the": [65535, 0], "quarrelling fighting skylarking and he remembered that although the pump": [65535, 0], "fighting skylarking and he remembered that although the pump was": [65535, 0], "skylarking and he remembered that although the pump was only": [65535, 0], "and he remembered that although the pump was only a": [65535, 0], "he remembered that although the pump was only a hundred": [65535, 0], "remembered that although the pump was only a hundred and": [65535, 0], "that although the pump was only a hundred and fifty": [65535, 0], "although the pump was only a hundred and fifty yards": [65535, 0], "the pump was only a hundred and fifty yards off": [65535, 0], "pump was only a hundred and fifty yards off jim": [65535, 0], "was only a hundred and fifty yards off jim never": [65535, 0], "only a hundred and fifty yards off jim never got": [65535, 0], "a hundred and fifty yards off jim never got back": [65535, 0], "hundred and fifty yards off jim never got back with": [65535, 0], "and fifty yards off jim never got back with a": [65535, 0], "fifty yards off jim never got back with a bucket": [65535, 0], "yards off jim never got back with a bucket of": [65535, 0], "off jim never got back with a bucket of water": [65535, 0], "jim never got back with a bucket of water under": [65535, 0], "never got back with a bucket of water under an": [65535, 0], "got back with a bucket of water under an hour": [65535, 0], "back with a bucket of water under an hour and": [65535, 0], "with a bucket of water under an hour and even": [65535, 0], "a bucket of water under an hour and even then": [65535, 0], "bucket of water under an hour and even then somebody": [65535, 0], "of water under an hour and even then somebody generally": [65535, 0], "water under an hour and even then somebody generally had": [65535, 0], "under an hour and even then somebody generally had to": [65535, 0], "an hour and even then somebody generally had to go": [65535, 0], "hour and even then somebody generally had to go after": [65535, 0], "and even then somebody generally had to go after him": [65535, 0], "even then somebody generally had to go after him tom": [65535, 0], "then somebody generally had to go after him tom said": [65535, 0], "somebody generally had to go after him tom said say": [65535, 0], "generally had to go after him tom said say jim": [65535, 0], "had to go after him tom said say jim i'll": [65535, 0], "to go after him tom said say jim i'll fetch": [65535, 0], "go after him tom said say jim i'll fetch the": [65535, 0], "after him tom said say jim i'll fetch the water": [65535, 0], "him tom said say jim i'll fetch the water if": [65535, 0], "tom said say jim i'll fetch the water if you'll": [65535, 0], "said say jim i'll fetch the water if you'll whitewash": [65535, 0], "say jim i'll fetch the water if you'll whitewash some": [65535, 0], "jim i'll fetch the water if you'll whitewash some jim": [65535, 0], "i'll fetch the water if you'll whitewash some jim shook": [65535, 0], "fetch the water if you'll whitewash some jim shook his": [65535, 0], "the water if you'll whitewash some jim shook his head": [65535, 0], "water if you'll whitewash some jim shook his head and": [65535, 0], "if you'll whitewash some jim shook his head and said": [65535, 0], "you'll whitewash some jim shook his head and said can't": [65535, 0], "whitewash some jim shook his head and said can't mars": [65535, 0], "some jim shook his head and said can't mars tom": [65535, 0], "jim shook his head and said can't mars tom ole": [65535, 0], "shook his head and said can't mars tom ole missis": [65535, 0], "his head and said can't mars tom ole missis she": [65535, 0], "head and said can't mars tom ole missis she tole": [65535, 0], "and said can't mars tom ole missis she tole me": [65535, 0], "said can't mars tom ole missis she tole me i": [65535, 0], "can't mars tom ole missis she tole me i got": [65535, 0], "mars tom ole missis she tole me i got to": [65535, 0], "tom ole missis she tole me i got to go": [65535, 0], "ole missis she tole me i got to go an'": [65535, 0], "missis she tole me i got to go an' git": [65535, 0], "she tole me i got to go an' git dis": [65535, 0], "tole me i got to go an' git dis water": [65535, 0], "me i got to go an' git dis water an'": [65535, 0], "i got to go an' git dis water an' not": [65535, 0], "got to go an' git dis water an' not stop": [65535, 0], "to go an' git dis water an' not stop foolin'": [65535, 0], "go an' git dis water an' not stop foolin' roun'": [65535, 0], "an' git dis water an' not stop foolin' roun' wid": [65535, 0], "git dis water an' not stop foolin' roun' wid anybody": [65535, 0], "dis water an' not stop foolin' roun' wid anybody she": [65535, 0], "water an' not stop foolin' roun' wid anybody she say": [65535, 0], "an' not stop foolin' roun' wid anybody she say she": [65535, 0], "not stop foolin' roun' wid anybody she say she spec'": [65535, 0], "stop foolin' roun' wid anybody she say she spec' mars": [65535, 0], "foolin' roun' wid anybody she say she spec' mars tom": [65535, 0], "roun' wid anybody she say she spec' mars tom gwine": [65535, 0], "wid anybody she say she spec' mars tom gwine to": [65535, 0], "anybody she say she spec' mars tom gwine to ax": [65535, 0], "she say she spec' mars tom gwine to ax me": [65535, 0], "say she spec' mars tom gwine to ax me to": [65535, 0], "she spec' mars tom gwine to ax me to whitewash": [65535, 0], "spec' mars tom gwine to ax me to whitewash an'": [65535, 0], "mars tom gwine to ax me to whitewash an' so": [65535, 0], "tom gwine to ax me to whitewash an' so she": [65535, 0], "gwine to ax me to whitewash an' so she tole": [65535, 0], "to ax me to whitewash an' so she tole me": [65535, 0], "ax me to whitewash an' so she tole me go": [65535, 0], "me to whitewash an' so she tole me go 'long": [65535, 0], "to whitewash an' so she tole me go 'long an'": [65535, 0], "whitewash an' so she tole me go 'long an' 'tend": [65535, 0], "an' so she tole me go 'long an' 'tend to": [65535, 0], "so she tole me go 'long an' 'tend to my": [65535, 0], "she tole me go 'long an' 'tend to my own": [65535, 0], "tole me go 'long an' 'tend to my own business": [65535, 0], "me go 'long an' 'tend to my own business she": [65535, 0], "go 'long an' 'tend to my own business she 'lowed": [65535, 0], "'long an' 'tend to my own business she 'lowed she'd": [65535, 0], "an' 'tend to my own business she 'lowed she'd 'tend": [65535, 0], "'tend to my own business she 'lowed she'd 'tend to": [65535, 0], "to my own business she 'lowed she'd 'tend to de": [65535, 0], "my own business she 'lowed she'd 'tend to de whitewashin'": [65535, 0], "own business she 'lowed she'd 'tend to de whitewashin' oh": [65535, 0], "business she 'lowed she'd 'tend to de whitewashin' oh never": [65535, 0], "she 'lowed she'd 'tend to de whitewashin' oh never you": [65535, 0], "'lowed she'd 'tend to de whitewashin' oh never you mind": [65535, 0], "she'd 'tend to de whitewashin' oh never you mind what": [65535, 0], "'tend to de whitewashin' oh never you mind what she": [65535, 0], "to de whitewashin' oh never you mind what she said": [65535, 0], "de whitewashin' oh never you mind what she said jim": [65535, 0], "whitewashin' oh never you mind what she said jim that's": [65535, 0], "oh never you mind what she said jim that's the": [65535, 0], "never you mind what she said jim that's the way": [65535, 0], "you mind what she said jim that's the way she": [65535, 0], "mind what she said jim that's the way she always": [65535, 0], "what she said jim that's the way she always talks": [65535, 0], "she said jim that's the way she always talks gimme": [65535, 0], "said jim that's the way she always talks gimme the": [65535, 0], "jim that's the way she always talks gimme the bucket": [65535, 0], "that's the way she always talks gimme the bucket i": [65535, 0], "the way she always talks gimme the bucket i won't": [65535, 0], "way she always talks gimme the bucket i won't be": [65535, 0], "she always talks gimme the bucket i won't be gone": [65535, 0], "always talks gimme the bucket i won't be gone only": [65535, 0], "talks gimme the bucket i won't be gone only a": [65535, 0], "gimme the bucket i won't be gone only a minute": [65535, 0], "the bucket i won't be gone only a minute she": [65535, 0], "bucket i won't be gone only a minute she won't": [65535, 0], "i won't be gone only a minute she won't ever": [65535, 0], "won't be gone only a minute she won't ever know": [65535, 0], "be gone only a minute she won't ever know oh": [65535, 0], "gone only a minute she won't ever know oh i": [65535, 0], "only a minute she won't ever know oh i dasn't": [65535, 0], "a minute she won't ever know oh i dasn't mars": [65535, 0], "minute she won't ever know oh i dasn't mars tom": [65535, 0], "she won't ever know oh i dasn't mars tom ole": [65535, 0], "won't ever know oh i dasn't mars tom ole missis": [65535, 0], "ever know oh i dasn't mars tom ole missis she'd": [65535, 0], "know oh i dasn't mars tom ole missis she'd take": [65535, 0], "oh i dasn't mars tom ole missis she'd take an'": [65535, 0], "i dasn't mars tom ole missis she'd take an' tar": [65535, 0], "dasn't mars tom ole missis she'd take an' tar de": [65535, 0], "mars tom ole missis she'd take an' tar de head": [65535, 0], "tom ole missis she'd take an' tar de head off'n": [65535, 0], "ole missis she'd take an' tar de head off'n me": [65535, 0], "missis she'd take an' tar de head off'n me 'deed": [65535, 0], "she'd take an' tar de head off'n me 'deed she": [65535, 0], "take an' tar de head off'n me 'deed she would": [65535, 0], "an' tar de head off'n me 'deed she would she": [65535, 0], "tar de head off'n me 'deed she would she she": [65535, 0], "de head off'n me 'deed she would she she never": [65535, 0], "head off'n me 'deed she would she she never licks": [65535, 0], "off'n me 'deed she would she she never licks anybody": [65535, 0], "me 'deed she would she she never licks anybody whacks": [65535, 0], "'deed she would she she never licks anybody whacks 'em": [65535, 0], "she would she she never licks anybody whacks 'em over": [65535, 0], "would she she never licks anybody whacks 'em over the": [65535, 0], "she she never licks anybody whacks 'em over the head": [65535, 0], "she never licks anybody whacks 'em over the head with": [65535, 0], "never licks anybody whacks 'em over the head with her": [65535, 0], "licks anybody whacks 'em over the head with her thimble": [65535, 0], "anybody whacks 'em over the head with her thimble and": [65535, 0], "whacks 'em over the head with her thimble and who": [65535, 0], "'em over the head with her thimble and who cares": [65535, 0], "over the head with her thimble and who cares for": [65535, 0], "the head with her thimble and who cares for that": [65535, 0], "head with her thimble and who cares for that i'd": [65535, 0], "with her thimble and who cares for that i'd like": [65535, 0], "her thimble and who cares for that i'd like to": [65535, 0], "thimble and who cares for that i'd like to know": [65535, 0], "and who cares for that i'd like to know she": [65535, 0], "who cares for that i'd like to know she talks": [65535, 0], "cares for that i'd like to know she talks awful": [65535, 0], "for that i'd like to know she talks awful but": [65535, 0], "that i'd like to know she talks awful but talk": [65535, 0], "i'd like to know she talks awful but talk don't": [65535, 0], "like to know she talks awful but talk don't hurt": [65535, 0], "to know she talks awful but talk don't hurt anyways": [65535, 0], "know she talks awful but talk don't hurt anyways it": [65535, 0], "she talks awful but talk don't hurt anyways it don't": [65535, 0], "talks awful but talk don't hurt anyways it don't if": [65535, 0], "awful but talk don't hurt anyways it don't if she": [65535, 0], "but talk don't hurt anyways it don't if she don't": [65535, 0], "talk don't hurt anyways it don't if she don't cry": [65535, 0], "don't hurt anyways it don't if she don't cry jim": [65535, 0], "hurt anyways it don't if she don't cry jim i'll": [65535, 0], "anyways it don't if she don't cry jim i'll give": [65535, 0], "it don't if she don't cry jim i'll give you": [65535, 0], "don't if she don't cry jim i'll give you a": [65535, 0], "if she don't cry jim i'll give you a marvel": [65535, 0], "she don't cry jim i'll give you a marvel i'll": [65535, 0], "don't cry jim i'll give you a marvel i'll give": [65535, 0], "cry jim i'll give you a marvel i'll give you": [65535, 0], "jim i'll give you a marvel i'll give you a": [65535, 0], "i'll give you a marvel i'll give you a white": [65535, 0], "give you a marvel i'll give you a white alley": [65535, 0], "you a marvel i'll give you a white alley jim": [65535, 0], "a marvel i'll give you a white alley jim began": [65535, 0], "marvel i'll give you a white alley jim began to": [65535, 0], "i'll give you a white alley jim began to waver": [65535, 0], "give you a white alley jim began to waver white": [65535, 0], "you a white alley jim began to waver white alley": [65535, 0], "a white alley jim began to waver white alley jim": [65535, 0], "white alley jim began to waver white alley jim and": [65535, 0], "alley jim began to waver white alley jim and it's": [65535, 0], "jim began to waver white alley jim and it's a": [65535, 0], "began to waver white alley jim and it's a bully": [65535, 0], "to waver white alley jim and it's a bully taw": [65535, 0], "waver white alley jim and it's a bully taw my": [65535, 0], "white alley jim and it's a bully taw my dat's": [65535, 0], "alley jim and it's a bully taw my dat's a": [65535, 0], "jim and it's a bully taw my dat's a mighty": [65535, 0], "and it's a bully taw my dat's a mighty gay": [65535, 0], "it's a bully taw my dat's a mighty gay marvel": [65535, 0], "a bully taw my dat's a mighty gay marvel i": [65535, 0], "bully taw my dat's a mighty gay marvel i tell": [65535, 0], "taw my dat's a mighty gay marvel i tell you": [65535, 0], "my dat's a mighty gay marvel i tell you but": [65535, 0], "dat's a mighty gay marvel i tell you but mars": [65535, 0], "a mighty gay marvel i tell you but mars tom": [65535, 0], "mighty gay marvel i tell you but mars tom i's": [65535, 0], "gay marvel i tell you but mars tom i's powerful": [65535, 0], "marvel i tell you but mars tom i's powerful 'fraid": [65535, 0], "i tell you but mars tom i's powerful 'fraid ole": [65535, 0], "tell you but mars tom i's powerful 'fraid ole missis": [65535, 0], "you but mars tom i's powerful 'fraid ole missis and": [65535, 0], "but mars tom i's powerful 'fraid ole missis and besides": [65535, 0], "mars tom i's powerful 'fraid ole missis and besides if": [65535, 0], "tom i's powerful 'fraid ole missis and besides if you": [65535, 0], "i's powerful 'fraid ole missis and besides if you will": [65535, 0], "powerful 'fraid ole missis and besides if you will i'll": [65535, 0], "'fraid ole missis and besides if you will i'll show": [65535, 0], "ole missis and besides if you will i'll show you": [65535, 0], "missis and besides if you will i'll show you my": [65535, 0], "and besides if you will i'll show you my sore": [65535, 0], "besides if you will i'll show you my sore toe": [65535, 0], "if you will i'll show you my sore toe jim": [65535, 0], "you will i'll show you my sore toe jim was": [65535, 0], "will i'll show you my sore toe jim was only": [65535, 0], "i'll show you my sore toe jim was only human": [65535, 0], "show you my sore toe jim was only human this": [65535, 0], "you my sore toe jim was only human this attraction": [65535, 0], "my sore toe jim was only human this attraction was": [65535, 0], "sore toe jim was only human this attraction was too": [65535, 0], "toe jim was only human this attraction was too much": [65535, 0], "jim was only human this attraction was too much for": [65535, 0], "was only human this attraction was too much for him": [65535, 0], "only human this attraction was too much for him he": [65535, 0], "human this attraction was too much for him he put": [65535, 0], "this attraction was too much for him he put down": [65535, 0], "attraction was too much for him he put down his": [65535, 0], "was too much for him he put down his pail": [65535, 0], "too much for him he put down his pail took": [65535, 0], "much for him he put down his pail took the": [65535, 0], "for him he put down his pail took the white": [65535, 0], "him he put down his pail took the white alley": [65535, 0], "he put down his pail took the white alley and": [65535, 0], "put down his pail took the white alley and bent": [65535, 0], "down his pail took the white alley and bent over": [65535, 0], "his pail took the white alley and bent over the": [65535, 0], "pail took the white alley and bent over the toe": [65535, 0], "took the white alley and bent over the toe with": [65535, 0], "the white alley and bent over the toe with absorbing": [65535, 0], "white alley and bent over the toe with absorbing interest": [65535, 0], "alley and bent over the toe with absorbing interest while": [65535, 0], "and bent over the toe with absorbing interest while the": [65535, 0], "bent over the toe with absorbing interest while the bandage": [65535, 0], "over the toe with absorbing interest while the bandage was": [65535, 0], "the toe with absorbing interest while the bandage was being": [65535, 0], "toe with absorbing interest while the bandage was being unwound": [65535, 0], "with absorbing interest while the bandage was being unwound in": [65535, 0], "absorbing interest while the bandage was being unwound in another": [65535, 0], "interest while the bandage was being unwound in another moment": [65535, 0], "while the bandage was being unwound in another moment he": [65535, 0], "the bandage was being unwound in another moment he was": [65535, 0], "bandage was being unwound in another moment he was flying": [65535, 0], "was being unwound in another moment he was flying down": [65535, 0], "being unwound in another moment he was flying down the": [65535, 0], "unwound in another moment he was flying down the street": [65535, 0], "in another moment he was flying down the street with": [65535, 0], "another moment he was flying down the street with his": [65535, 0], "moment he was flying down the street with his pail": [65535, 0], "he was flying down the street with his pail and": [65535, 0], "was flying down the street with his pail and a": [65535, 0], "flying down the street with his pail and a tingling": [65535, 0], "down the street with his pail and a tingling rear": [65535, 0], "the street with his pail and a tingling rear tom": [65535, 0], "street with his pail and a tingling rear tom was": [65535, 0], "with his pail and a tingling rear tom was whitewashing": [65535, 0], "his pail and a tingling rear tom was whitewashing with": [65535, 0], "pail and a tingling rear tom was whitewashing with vigor": [65535, 0], "and a tingling rear tom was whitewashing with vigor and": [65535, 0], "a tingling rear tom was whitewashing with vigor and aunt": [65535, 0], "tingling rear tom was whitewashing with vigor and aunt polly": [65535, 0], "rear tom was whitewashing with vigor and aunt polly was": [65535, 0], "tom was whitewashing with vigor and aunt polly was retiring": [65535, 0], "was whitewashing with vigor and aunt polly was retiring from": [65535, 0], "whitewashing with vigor and aunt polly was retiring from the": [65535, 0], "with vigor and aunt polly was retiring from the field": [65535, 0], "vigor and aunt polly was retiring from the field with": [65535, 0], "and aunt polly was retiring from the field with a": [65535, 0], "aunt polly was retiring from the field with a slipper": [65535, 0], "polly was retiring from the field with a slipper in": [65535, 0], "was retiring from the field with a slipper in her": [65535, 0], "retiring from the field with a slipper in her hand": [65535, 0], "from the field with a slipper in her hand and": [65535, 0], "the field with a slipper in her hand and triumph": [65535, 0], "field with a slipper in her hand and triumph in": [65535, 0], "with a slipper in her hand and triumph in her": [65535, 0], "a slipper in her hand and triumph in her eye": [65535, 0], "slipper in her hand and triumph in her eye but": [65535, 0], "in her hand and triumph in her eye but tom's": [65535, 0], "her hand and triumph in her eye but tom's energy": [65535, 0], "hand and triumph in her eye but tom's energy did": [65535, 0], "and triumph in her eye but tom's energy did not": [65535, 0], "triumph in her eye but tom's energy did not last": [65535, 0], "in her eye but tom's energy did not last he": [65535, 0], "her eye but tom's energy did not last he began": [65535, 0], "eye but tom's energy did not last he began to": [65535, 0], "but tom's energy did not last he began to think": [65535, 0], "tom's energy did not last he began to think of": [65535, 0], "energy did not last he began to think of the": [65535, 0], "did not last he began to think of the fun": [65535, 0], "not last he began to think of the fun he": [65535, 0], "last he began to think of the fun he had": [65535, 0], "he began to think of the fun he had planned": [65535, 0], "began to think of the fun he had planned for": [65535, 0], "to think of the fun he had planned for this": [65535, 0], "think of the fun he had planned for this day": [65535, 0], "of the fun he had planned for this day and": [65535, 0], "the fun he had planned for this day and his": [65535, 0], "fun he had planned for this day and his sorrows": [65535, 0], "he had planned for this day and his sorrows multiplied": [65535, 0], "had planned for this day and his sorrows multiplied soon": [65535, 0], "planned for this day and his sorrows multiplied soon the": [65535, 0], "for this day and his sorrows multiplied soon the free": [65535, 0], "this day and his sorrows multiplied soon the free boys": [65535, 0], "day and his sorrows multiplied soon the free boys would": [65535, 0], "and his sorrows multiplied soon the free boys would come": [65535, 0], "his sorrows multiplied soon the free boys would come tripping": [65535, 0], "sorrows multiplied soon the free boys would come tripping along": [65535, 0], "multiplied soon the free boys would come tripping along on": [65535, 0], "soon the free boys would come tripping along on all": [65535, 0], "the free boys would come tripping along on all sorts": [65535, 0], "free boys would come tripping along on all sorts of": [65535, 0], "boys would come tripping along on all sorts of delicious": [65535, 0], "would come tripping along on all sorts of delicious expeditions": [65535, 0], "come tripping along on all sorts of delicious expeditions and": [65535, 0], "tripping along on all sorts of delicious expeditions and they": [65535, 0], "along on all sorts of delicious expeditions and they would": [65535, 0], "on all sorts of delicious expeditions and they would make": [65535, 0], "all sorts of delicious expeditions and they would make a": [65535, 0], "sorts of delicious expeditions and they would make a world": [65535, 0], "of delicious expeditions and they would make a world of": [65535, 0], "delicious expeditions and they would make a world of fun": [65535, 0], "expeditions and they would make a world of fun of": [65535, 0], "and they would make a world of fun of him": [65535, 0], "they would make a world of fun of him for": [65535, 0], "would make a world of fun of him for having": [65535, 0], "make a world of fun of him for having to": [65535, 0], "a world of fun of him for having to work": [65535, 0], "world of fun of him for having to work the": [65535, 0], "of fun of him for having to work the very": [65535, 0], "fun of him for having to work the very thought": [65535, 0], "of him for having to work the very thought of": [65535, 0], "him for having to work the very thought of it": [65535, 0], "for having to work the very thought of it burnt": [65535, 0], "having to work the very thought of it burnt him": [65535, 0], "to work the very thought of it burnt him like": [65535, 0], "work the very thought of it burnt him like fire": [65535, 0], "the very thought of it burnt him like fire he": [65535, 0], "very thought of it burnt him like fire he got": [65535, 0], "thought of it burnt him like fire he got out": [65535, 0], "of it burnt him like fire he got out his": [65535, 0], "it burnt him like fire he got out his worldly": [65535, 0], "burnt him like fire he got out his worldly wealth": [65535, 0], "him like fire he got out his worldly wealth and": [65535, 0], "like fire he got out his worldly wealth and examined": [65535, 0], "fire he got out his worldly wealth and examined it": [65535, 0], "he got out his worldly wealth and examined it bits": [65535, 0], "got out his worldly wealth and examined it bits of": [65535, 0], "out his worldly wealth and examined it bits of toys": [65535, 0], "his worldly wealth and examined it bits of toys marbles": [65535, 0], "worldly wealth and examined it bits of toys marbles and": [65535, 0], "wealth and examined it bits of toys marbles and trash": [65535, 0], "and examined it bits of toys marbles and trash enough": [65535, 0], "examined it bits of toys marbles and trash enough to": [65535, 0], "it bits of toys marbles and trash enough to buy": [65535, 0], "bits of toys marbles and trash enough to buy an": [65535, 0], "of toys marbles and trash enough to buy an exchange": [65535, 0], "toys marbles and trash enough to buy an exchange of": [65535, 0], "marbles and trash enough to buy an exchange of work": [65535, 0], "and trash enough to buy an exchange of work maybe": [65535, 0], "trash enough to buy an exchange of work maybe but": [65535, 0], "enough to buy an exchange of work maybe but not": [65535, 0], "to buy an exchange of work maybe but not half": [65535, 0], "buy an exchange of work maybe but not half enough": [65535, 0], "an exchange of work maybe but not half enough to": [65535, 0], "exchange of work maybe but not half enough to buy": [65535, 0], "of work maybe but not half enough to buy so": [65535, 0], "work maybe but not half enough to buy so much": [65535, 0], "maybe but not half enough to buy so much as": [65535, 0], "but not half enough to buy so much as half": [65535, 0], "not half enough to buy so much as half an": [65535, 0], "half enough to buy so much as half an hour": [65535, 0], "enough to buy so much as half an hour of": [65535, 0], "to buy so much as half an hour of pure": [65535, 0], "buy so much as half an hour of pure freedom": [65535, 0], "so much as half an hour of pure freedom so": [65535, 0], "much as half an hour of pure freedom so he": [65535, 0], "as half an hour of pure freedom so he returned": [65535, 0], "half an hour of pure freedom so he returned his": [65535, 0], "an hour of pure freedom so he returned his straitened": [65535, 0], "hour of pure freedom so he returned his straitened means": [65535, 0], "of pure freedom so he returned his straitened means to": [65535, 0], "pure freedom so he returned his straitened means to his": [65535, 0], "freedom so he returned his straitened means to his pocket": [65535, 0], "so he returned his straitened means to his pocket and": [65535, 0], "he returned his straitened means to his pocket and gave": [65535, 0], "returned his straitened means to his pocket and gave up": [65535, 0], "his straitened means to his pocket and gave up the": [65535, 0], "straitened means to his pocket and gave up the idea": [65535, 0], "means to his pocket and gave up the idea of": [65535, 0], "to his pocket and gave up the idea of trying": [65535, 0], "his pocket and gave up the idea of trying to": [65535, 0], "pocket and gave up the idea of trying to buy": [65535, 0], "and gave up the idea of trying to buy the": [65535, 0], "gave up the idea of trying to buy the boys": [65535, 0], "up the idea of trying to buy the boys at": [65535, 0], "the idea of trying to buy the boys at this": [65535, 0], "idea of trying to buy the boys at this dark": [65535, 0], "of trying to buy the boys at this dark and": [65535, 0], "trying to buy the boys at this dark and hopeless": [65535, 0], "to buy the boys at this dark and hopeless moment": [65535, 0], "buy the boys at this dark and hopeless moment an": [65535, 0], "the boys at this dark and hopeless moment an inspiration": [65535, 0], "boys at this dark and hopeless moment an inspiration burst": [65535, 0], "at this dark and hopeless moment an inspiration burst upon": [65535, 0], "this dark and hopeless moment an inspiration burst upon him": [65535, 0], "dark and hopeless moment an inspiration burst upon him nothing": [65535, 0], "and hopeless moment an inspiration burst upon him nothing less": [65535, 0], "hopeless moment an inspiration burst upon him nothing less than": [65535, 0], "moment an inspiration burst upon him nothing less than a": [65535, 0], "an inspiration burst upon him nothing less than a great": [65535, 0], "inspiration burst upon him nothing less than a great magnificent": [65535, 0], "burst upon him nothing less than a great magnificent inspiration": [65535, 0], "upon him nothing less than a great magnificent inspiration he": [65535, 0], "him nothing less than a great magnificent inspiration he took": [65535, 0], "nothing less than a great magnificent inspiration he took up": [65535, 0], "less than a great magnificent inspiration he took up his": [65535, 0], "than a great magnificent inspiration he took up his brush": [65535, 0], "a great magnificent inspiration he took up his brush and": [65535, 0], "great magnificent inspiration he took up his brush and went": [65535, 0], "magnificent inspiration he took up his brush and went tranquilly": [65535, 0], "inspiration he took up his brush and went tranquilly to": [65535, 0], "he took up his brush and went tranquilly to work": [65535, 0], "took up his brush and went tranquilly to work ben": [65535, 0], "up his brush and went tranquilly to work ben rogers": [65535, 0], "his brush and went tranquilly to work ben rogers hove": [65535, 0], "brush and went tranquilly to work ben rogers hove in": [65535, 0], "and went tranquilly to work ben rogers hove in sight": [65535, 0], "went tranquilly to work ben rogers hove in sight presently": [65535, 0], "tranquilly to work ben rogers hove in sight presently the": [65535, 0], "to work ben rogers hove in sight presently the very": [65535, 0], "work ben rogers hove in sight presently the very boy": [65535, 0], "ben rogers hove in sight presently the very boy of": [65535, 0], "rogers hove in sight presently the very boy of all": [65535, 0], "hove in sight presently the very boy of all boys": [65535, 0], "in sight presently the very boy of all boys whose": [65535, 0], "sight presently the very boy of all boys whose ridicule": [65535, 0], "presently the very boy of all boys whose ridicule he": [65535, 0], "the very boy of all boys whose ridicule he had": [65535, 0], "very boy of all boys whose ridicule he had been": [65535, 0], "boy of all boys whose ridicule he had been dreading": [65535, 0], "of all boys whose ridicule he had been dreading ben's": [65535, 0], "all boys whose ridicule he had been dreading ben's gait": [65535, 0], "boys whose ridicule he had been dreading ben's gait was": [65535, 0], "whose ridicule he had been dreading ben's gait was the": [65535, 0], "ridicule he had been dreading ben's gait was the hop": [65535, 0], "he had been dreading ben's gait was the hop skip": [65535, 0], "had been dreading ben's gait was the hop skip and": [65535, 0], "been dreading ben's gait was the hop skip and jump": [65535, 0], "dreading ben's gait was the hop skip and jump proof": [65535, 0], "ben's gait was the hop skip and jump proof enough": [65535, 0], "gait was the hop skip and jump proof enough that": [65535, 0], "was the hop skip and jump proof enough that his": [65535, 0], "the hop skip and jump proof enough that his heart": [65535, 0], "hop skip and jump proof enough that his heart was": [65535, 0], "skip and jump proof enough that his heart was light": [65535, 0], "and jump proof enough that his heart was light and": [65535, 0], "jump proof enough that his heart was light and his": [65535, 0], "proof enough that his heart was light and his anticipations": [65535, 0], "enough that his heart was light and his anticipations high": [65535, 0], "that his heart was light and his anticipations high he": [65535, 0], "his heart was light and his anticipations high he was": [65535, 0], "heart was light and his anticipations high he was eating": [65535, 0], "was light and his anticipations high he was eating an": [65535, 0], "light and his anticipations high he was eating an apple": [65535, 0], "and his anticipations high he was eating an apple and": [65535, 0], "his anticipations high he was eating an apple and giving": [65535, 0], "anticipations high he was eating an apple and giving a": [65535, 0], "high he was eating an apple and giving a long": [65535, 0], "he was eating an apple and giving a long melodious": [65535, 0], "was eating an apple and giving a long melodious whoop": [65535, 0], "eating an apple and giving a long melodious whoop at": [65535, 0], "an apple and giving a long melodious whoop at intervals": [65535, 0], "apple and giving a long melodious whoop at intervals followed": [65535, 0], "and giving a long melodious whoop at intervals followed by": [65535, 0], "giving a long melodious whoop at intervals followed by a": [65535, 0], "a long melodious whoop at intervals followed by a deep": [65535, 0], "long melodious whoop at intervals followed by a deep toned": [65535, 0], "melodious whoop at intervals followed by a deep toned ding": [65535, 0], "whoop at intervals followed by a deep toned ding dong": [65535, 0], "at intervals followed by a deep toned ding dong dong": [65535, 0], "intervals followed by a deep toned ding dong dong ding": [65535, 0], "followed by a deep toned ding dong dong ding dong": [65535, 0], "by a deep toned ding dong dong ding dong dong": [65535, 0], "a deep toned ding dong dong ding dong dong for": [65535, 0], "deep toned ding dong dong ding dong dong for he": [65535, 0], "toned ding dong dong ding dong dong for he was": [65535, 0], "ding dong dong ding dong dong for he was personating": [65535, 0], "dong dong ding dong dong for he was personating a": [65535, 0], "dong ding dong dong for he was personating a steamboat": [65535, 0], "ding dong dong for he was personating a steamboat as": [65535, 0], "dong dong for he was personating a steamboat as he": [65535, 0], "dong for he was personating a steamboat as he drew": [65535, 0], "for he was personating a steamboat as he drew near": [65535, 0], "he was personating a steamboat as he drew near he": [65535, 0], "was personating a steamboat as he drew near he slackened": [65535, 0], "personating a steamboat as he drew near he slackened speed": [65535, 0], "a steamboat as he drew near he slackened speed took": [65535, 0], "steamboat as he drew near he slackened speed took the": [65535, 0], "as he drew near he slackened speed took the middle": [65535, 0], "he drew near he slackened speed took the middle of": [65535, 0], "drew near he slackened speed took the middle of the": [65535, 0], "near he slackened speed took the middle of the street": [65535, 0], "he slackened speed took the middle of the street leaned": [65535, 0], "slackened speed took the middle of the street leaned far": [65535, 0], "speed took the middle of the street leaned far over": [65535, 0], "took the middle of the street leaned far over to": [65535, 0], "the middle of the street leaned far over to starboard": [65535, 0], "middle of the street leaned far over to starboard and": [65535, 0], "of the street leaned far over to starboard and rounded": [65535, 0], "the street leaned far over to starboard and rounded to": [65535, 0], "street leaned far over to starboard and rounded to ponderously": [65535, 0], "leaned far over to starboard and rounded to ponderously and": [65535, 0], "far over to starboard and rounded to ponderously and with": [65535, 0], "over to starboard and rounded to ponderously and with laborious": [65535, 0], "to starboard and rounded to ponderously and with laborious pomp": [65535, 0], "starboard and rounded to ponderously and with laborious pomp and": [65535, 0], "and rounded to ponderously and with laborious pomp and circumstance": [65535, 0], "rounded to ponderously and with laborious pomp and circumstance for": [65535, 0], "to ponderously and with laborious pomp and circumstance for he": [65535, 0], "ponderously and with laborious pomp and circumstance for he was": [65535, 0], "and with laborious pomp and circumstance for he was personating": [65535, 0], "with laborious pomp and circumstance for he was personating the": [65535, 0], "laborious pomp and circumstance for he was personating the big": [65535, 0], "pomp and circumstance for he was personating the big missouri": [65535, 0], "and circumstance for he was personating the big missouri and": [65535, 0], "circumstance for he was personating the big missouri and considered": [65535, 0], "for he was personating the big missouri and considered himself": [65535, 0], "he was personating the big missouri and considered himself to": [65535, 0], "was personating the big missouri and considered himself to be": [65535, 0], "personating the big missouri and considered himself to be drawing": [65535, 0], "the big missouri and considered himself to be drawing nine": [65535, 0], "big missouri and considered himself to be drawing nine feet": [65535, 0], "missouri and considered himself to be drawing nine feet of": [65535, 0], "and considered himself to be drawing nine feet of water": [65535, 0], "considered himself to be drawing nine feet of water he": [65535, 0], "himself to be drawing nine feet of water he was": [65535, 0], "to be drawing nine feet of water he was boat": [65535, 0], "be drawing nine feet of water he was boat and": [65535, 0], "drawing nine feet of water he was boat and captain": [65535, 0], "nine feet of water he was boat and captain and": [65535, 0], "feet of water he was boat and captain and engine": [65535, 0], "of water he was boat and captain and engine bells": [65535, 0], "water he was boat and captain and engine bells combined": [65535, 0], "he was boat and captain and engine bells combined so": [65535, 0], "was boat and captain and engine bells combined so he": [65535, 0], "boat and captain and engine bells combined so he had": [65535, 0], "and captain and engine bells combined so he had to": [65535, 0], "captain and engine bells combined so he had to imagine": [65535, 0], "and engine bells combined so he had to imagine himself": [65535, 0], "engine bells combined so he had to imagine himself standing": [65535, 0], "bells combined so he had to imagine himself standing on": [65535, 0], "combined so he had to imagine himself standing on his": [65535, 0], "so he had to imagine himself standing on his own": [65535, 0], "he had to imagine himself standing on his own hurricane": [65535, 0], "had to imagine himself standing on his own hurricane deck": [65535, 0], "to imagine himself standing on his own hurricane deck giving": [65535, 0], "imagine himself standing on his own hurricane deck giving the": [65535, 0], "himself standing on his own hurricane deck giving the orders": [65535, 0], "standing on his own hurricane deck giving the orders and": [65535, 0], "on his own hurricane deck giving the orders and executing": [65535, 0], "his own hurricane deck giving the orders and executing them": [65535, 0], "own hurricane deck giving the orders and executing them stop": [65535, 0], "hurricane deck giving the orders and executing them stop her": [65535, 0], "deck giving the orders and executing them stop her sir": [65535, 0], "giving the orders and executing them stop her sir ting": [65535, 0], "the orders and executing them stop her sir ting a": [65535, 0], "orders and executing them stop her sir ting a ling": [65535, 0], "and executing them stop her sir ting a ling ling": [65535, 0], "executing them stop her sir ting a ling ling the": [65535, 0], "them stop her sir ting a ling ling the headway": [65535, 0], "stop her sir ting a ling ling the headway ran": [65535, 0], "her sir ting a ling ling the headway ran almost": [65535, 0], "sir ting a ling ling the headway ran almost out": [65535, 0], "ting a ling ling the headway ran almost out and": [65535, 0], "a ling ling the headway ran almost out and he": [65535, 0], "ling ling the headway ran almost out and he drew": [65535, 0], "ling the headway ran almost out and he drew up": [65535, 0], "the headway ran almost out and he drew up slowly": [65535, 0], "headway ran almost out and he drew up slowly toward": [65535, 0], "ran almost out and he drew up slowly toward the": [65535, 0], "almost out and he drew up slowly toward the sidewalk": [65535, 0], "out and he drew up slowly toward the sidewalk ship": [65535, 0], "and he drew up slowly toward the sidewalk ship up": [65535, 0], "he drew up slowly toward the sidewalk ship up to": [65535, 0], "drew up slowly toward the sidewalk ship up to back": [65535, 0], "up slowly toward the sidewalk ship up to back ting": [65535, 0], "slowly toward the sidewalk ship up to back ting a": [65535, 0], "toward the sidewalk ship up to back ting a ling": [65535, 0], "the sidewalk ship up to back ting a ling ling": [65535, 0], "sidewalk ship up to back ting a ling ling his": [65535, 0], "ship up to back ting a ling ling his arms": [65535, 0], "up to back ting a ling ling his arms straightened": [65535, 0], "to back ting a ling ling his arms straightened and": [65535, 0], "back ting a ling ling his arms straightened and stiffened": [65535, 0], "ting a ling ling his arms straightened and stiffened down": [65535, 0], "a ling ling his arms straightened and stiffened down his": [65535, 0], "ling ling his arms straightened and stiffened down his sides": [65535, 0], "ling his arms straightened and stiffened down his sides set": [65535, 0], "his arms straightened and stiffened down his sides set her": [65535, 0], "arms straightened and stiffened down his sides set her back": [65535, 0], "straightened and stiffened down his sides set her back on": [65535, 0], "and stiffened down his sides set her back on the": [65535, 0], "stiffened down his sides set her back on the stabboard": [65535, 0], "down his sides set her back on the stabboard ting": [65535, 0], "his sides set her back on the stabboard ting a": [65535, 0], "sides set her back on the stabboard ting a ling": [65535, 0], "set her back on the stabboard ting a ling ling": [65535, 0], "her back on the stabboard ting a ling ling chow": [65535, 0], "back on the stabboard ting a ling ling chow ch": [65535, 0], "on the stabboard ting a ling ling chow ch chow": [65535, 0], "the stabboard ting a ling ling chow ch chow wow": [65535, 0], "stabboard ting a ling ling chow ch chow wow chow": [65535, 0], "ting a ling ling chow ch chow wow chow his": [65535, 0], "a ling ling chow ch chow wow chow his right": [65535, 0], "ling ling chow ch chow wow chow his right hand": [65535, 0], "ling chow ch chow wow chow his right hand meantime": [65535, 0], "chow ch chow wow chow his right hand meantime describing": [65535, 0], "ch chow wow chow his right hand meantime describing stately": [65535, 0], "chow wow chow his right hand meantime describing stately circles": [65535, 0], "wow chow his right hand meantime describing stately circles for": [65535, 0], "chow his right hand meantime describing stately circles for it": [65535, 0], "his right hand meantime describing stately circles for it was": [65535, 0], "right hand meantime describing stately circles for it was representing": [65535, 0], "hand meantime describing stately circles for it was representing a": [65535, 0], "meantime describing stately circles for it was representing a forty": [65535, 0], "describing stately circles for it was representing a forty foot": [65535, 0], "stately circles for it was representing a forty foot wheel": [65535, 0], "circles for it was representing a forty foot wheel let": [65535, 0], "for it was representing a forty foot wheel let her": [65535, 0], "it was representing a forty foot wheel let her go": [65535, 0], "was representing a forty foot wheel let her go back": [65535, 0], "representing a forty foot wheel let her go back on": [65535, 0], "a forty foot wheel let her go back on the": [65535, 0], "forty foot wheel let her go back on the labboard": [65535, 0], "foot wheel let her go back on the labboard ting": [65535, 0], "wheel let her go back on the labboard ting a": [65535, 0], "let her go back on the labboard ting a ling": [65535, 0], "her go back on the labboard ting a ling ling": [65535, 0], "go back on the labboard ting a ling ling chow": [65535, 0], "back on the labboard ting a ling ling chow ch": [65535, 0], "on the labboard ting a ling ling chow ch chow": [65535, 0], "the labboard ting a ling ling chow ch chow chow": [65535, 0], "labboard ting a ling ling chow ch chow chow the": [65535, 0], "ting a ling ling chow ch chow chow the left": [65535, 0], "a ling ling chow ch chow chow the left hand": [65535, 0], "ling ling chow ch chow chow the left hand began": [65535, 0], "ling chow ch chow chow the left hand began to": [65535, 0], "chow ch chow chow the left hand began to describe": [65535, 0], "ch chow chow the left hand began to describe circles": [65535, 0], "chow chow the left hand began to describe circles stop": [65535, 0], "chow the left hand began to describe circles stop the": [65535, 0], "the left hand began to describe circles stop the stabboard": [65535, 0], "left hand began to describe circles stop the stabboard ting": [65535, 0], "hand began to describe circles stop the stabboard ting a": [65535, 0], "began to describe circles stop the stabboard ting a ling": [65535, 0], "to describe circles stop the stabboard ting a ling ling": [65535, 0], "describe circles stop the stabboard ting a ling ling stop": [65535, 0], "circles stop the stabboard ting a ling ling stop the": [65535, 0], "stop the stabboard ting a ling ling stop the labboard": [65535, 0], "the stabboard ting a ling ling stop the labboard come": [65535, 0], "stabboard ting a ling ling stop the labboard come ahead": [65535, 0], "ting a ling ling stop the labboard come ahead on": [65535, 0], "a ling ling stop the labboard come ahead on the": [65535, 0], "ling ling stop the labboard come ahead on the stabboard": [65535, 0], "ling stop the labboard come ahead on the stabboard stop": [65535, 0], "stop the labboard come ahead on the stabboard stop her": [65535, 0], "the labboard come ahead on the stabboard stop her let": [65535, 0], "labboard come ahead on the stabboard stop her let your": [65535, 0], "come ahead on the stabboard stop her let your outside": [65535, 0], "ahead on the stabboard stop her let your outside turn": [65535, 0], "on the stabboard stop her let your outside turn over": [65535, 0], "the stabboard stop her let your outside turn over slow": [65535, 0], "stabboard stop her let your outside turn over slow ting": [65535, 0], "stop her let your outside turn over slow ting a": [65535, 0], "her let your outside turn over slow ting a ling": [65535, 0], "let your outside turn over slow ting a ling ling": [65535, 0], "your outside turn over slow ting a ling ling chow": [65535, 0], "outside turn over slow ting a ling ling chow ow": [65535, 0], "turn over slow ting a ling ling chow ow ow": [65535, 0], "over slow ting a ling ling chow ow ow get": [65535, 0], "slow ting a ling ling chow ow ow get out": [65535, 0], "ting a ling ling chow ow ow get out that": [65535, 0], "a ling ling chow ow ow get out that head": [65535, 0], "ling ling chow ow ow get out that head line": [65535, 0], "ling chow ow ow get out that head line lively": [65535, 0], "chow ow ow get out that head line lively now": [65535, 0], "ow ow get out that head line lively now come": [65535, 0], "ow get out that head line lively now come out": [65535, 0], "get out that head line lively now come out with": [65535, 0], "out that head line lively now come out with your": [65535, 0], "that head line lively now come out with your spring": [65535, 0], "head line lively now come out with your spring line": [65535, 0], "line lively now come out with your spring line what're": [65535, 0], "lively now come out with your spring line what're you": [65535, 0], "now come out with your spring line what're you about": [65535, 0], "come out with your spring line what're you about there": [65535, 0], "out with your spring line what're you about there take": [65535, 0], "with your spring line what're you about there take a": [65535, 0], "your spring line what're you about there take a turn": [65535, 0], "spring line what're you about there take a turn round": [65535, 0], "line what're you about there take a turn round that": [65535, 0], "what're you about there take a turn round that stump": [65535, 0], "you about there take a turn round that stump with": [65535, 0], "about there take a turn round that stump with the": [65535, 0], "there take a turn round that stump with the bight": [65535, 0], "take a turn round that stump with the bight of": [65535, 0], "a turn round that stump with the bight of it": [65535, 0], "turn round that stump with the bight of it stand": [65535, 0], "round that stump with the bight of it stand by": [65535, 0], "that stump with the bight of it stand by that": [65535, 0], "stump with the bight of it stand by that stage": [65535, 0], "with the bight of it stand by that stage now": [65535, 0], "the bight of it stand by that stage now let": [65535, 0], "bight of it stand by that stage now let her": [65535, 0], "of it stand by that stage now let her go": [65535, 0], "it stand by that stage now let her go done": [65535, 0], "stand by that stage now let her go done with": [65535, 0], "by that stage now let her go done with the": [65535, 0], "that stage now let her go done with the engines": [65535, 0], "stage now let her go done with the engines sir": [65535, 0], "now let her go done with the engines sir ting": [65535, 0], "let her go done with the engines sir ting a": [65535, 0], "her go done with the engines sir ting a ling": [65535, 0], "go done with the engines sir ting a ling ling": [65535, 0], "done with the engines sir ting a ling ling sh't": [65535, 0], "with the engines sir ting a ling ling sh't s'h't": [65535, 0], "the engines sir ting a ling ling sh't s'h't sh't": [65535, 0], "engines sir ting a ling ling sh't s'h't sh't trying": [65535, 0], "sir ting a ling ling sh't s'h't sh't trying the": [65535, 0], "ting a ling ling sh't s'h't sh't trying the gauge": [65535, 0], "a ling ling sh't s'h't sh't trying the gauge cocks": [65535, 0], "ling ling sh't s'h't sh't trying the gauge cocks tom": [65535, 0], "ling sh't s'h't sh't trying the gauge cocks tom went": [65535, 0], "sh't s'h't sh't trying the gauge cocks tom went on": [65535, 0], "s'h't sh't trying the gauge cocks tom went on whitewashing": [65535, 0], "sh't trying the gauge cocks tom went on whitewashing paid": [65535, 0], "trying the gauge cocks tom went on whitewashing paid no": [65535, 0], "the gauge cocks tom went on whitewashing paid no attention": [65535, 0], "gauge cocks tom went on whitewashing paid no attention to": [65535, 0], "cocks tom went on whitewashing paid no attention to the": [65535, 0], "tom went on whitewashing paid no attention to the steamboat": [65535, 0], "went on whitewashing paid no attention to the steamboat ben": [65535, 0], "on whitewashing paid no attention to the steamboat ben stared": [65535, 0], "whitewashing paid no attention to the steamboat ben stared a": [65535, 0], "paid no attention to the steamboat ben stared a moment": [65535, 0], "no attention to the steamboat ben stared a moment and": [65535, 0], "attention to the steamboat ben stared a moment and then": [65535, 0], "to the steamboat ben stared a moment and then said": [65535, 0], "the steamboat ben stared a moment and then said hi": [65535, 0], "steamboat ben stared a moment and then said hi yi": [65535, 0], "ben stared a moment and then said hi yi you're": [65535, 0], "stared a moment and then said hi yi you're up": [65535, 0], "a moment and then said hi yi you're up a": [65535, 0], "moment and then said hi yi you're up a stump": [65535, 0], "and then said hi yi you're up a stump ain't": [65535, 0], "then said hi yi you're up a stump ain't you": [65535, 0], "said hi yi you're up a stump ain't you no": [65535, 0], "hi yi you're up a stump ain't you no answer": [65535, 0], "yi you're up a stump ain't you no answer tom": [65535, 0], "you're up a stump ain't you no answer tom surveyed": [65535, 0], "up a stump ain't you no answer tom surveyed his": [65535, 0], "a stump ain't you no answer tom surveyed his last": [65535, 0], "stump ain't you no answer tom surveyed his last touch": [65535, 0], "ain't you no answer tom surveyed his last touch with": [65535, 0], "you no answer tom surveyed his last touch with the": [65535, 0], "no answer tom surveyed his last touch with the eye": [65535, 0], "answer tom surveyed his last touch with the eye of": [65535, 0], "tom surveyed his last touch with the eye of an": [65535, 0], "surveyed his last touch with the eye of an artist": [65535, 0], "his last touch with the eye of an artist then": [65535, 0], "last touch with the eye of an artist then he": [65535, 0], "touch with the eye of an artist then he gave": [65535, 0], "with the eye of an artist then he gave his": [65535, 0], "the eye of an artist then he gave his brush": [65535, 0], "eye of an artist then he gave his brush another": [65535, 0], "of an artist then he gave his brush another gentle": [65535, 0], "an artist then he gave his brush another gentle sweep": [65535, 0], "artist then he gave his brush another gentle sweep and": [65535, 0], "then he gave his brush another gentle sweep and surveyed": [65535, 0], "he gave his brush another gentle sweep and surveyed the": [65535, 0], "gave his brush another gentle sweep and surveyed the result": [65535, 0], "his brush another gentle sweep and surveyed the result as": [65535, 0], "brush another gentle sweep and surveyed the result as before": [65535, 0], "another gentle sweep and surveyed the result as before ben": [65535, 0], "gentle sweep and surveyed the result as before ben ranged": [65535, 0], "sweep and surveyed the result as before ben ranged up": [65535, 0], "and surveyed the result as before ben ranged up alongside": [65535, 0], "surveyed the result as before ben ranged up alongside of": [65535, 0], "the result as before ben ranged up alongside of him": [65535, 0], "result as before ben ranged up alongside of him tom's": [65535, 0], "as before ben ranged up alongside of him tom's mouth": [65535, 0], "before ben ranged up alongside of him tom's mouth watered": [65535, 0], "ben ranged up alongside of him tom's mouth watered for": [65535, 0], "ranged up alongside of him tom's mouth watered for the": [65535, 0], "up alongside of him tom's mouth watered for the apple": [65535, 0], "alongside of him tom's mouth watered for the apple but": [65535, 0], "of him tom's mouth watered for the apple but he": [65535, 0], "him tom's mouth watered for the apple but he stuck": [65535, 0], "tom's mouth watered for the apple but he stuck to": [65535, 0], "mouth watered for the apple but he stuck to his": [65535, 0], "watered for the apple but he stuck to his work": [65535, 0], "for the apple but he stuck to his work ben": [65535, 0], "the apple but he stuck to his work ben said": [65535, 0], "apple but he stuck to his work ben said hello": [65535, 0], "but he stuck to his work ben said hello old": [65535, 0], "he stuck to his work ben said hello old chap": [65535, 0], "stuck to his work ben said hello old chap you": [65535, 0], "to his work ben said hello old chap you got": [65535, 0], "his work ben said hello old chap you got to": [65535, 0], "work ben said hello old chap you got to work": [65535, 0], "ben said hello old chap you got to work hey": [65535, 0], "said hello old chap you got to work hey tom": [65535, 0], "hello old chap you got to work hey tom wheeled": [65535, 0], "old chap you got to work hey tom wheeled suddenly": [65535, 0], "chap you got to work hey tom wheeled suddenly and": [65535, 0], "you got to work hey tom wheeled suddenly and said": [65535, 0], "got to work hey tom wheeled suddenly and said why": [65535, 0], "to work hey tom wheeled suddenly and said why it's": [65535, 0], "work hey tom wheeled suddenly and said why it's you": [65535, 0], "hey tom wheeled suddenly and said why it's you ben": [65535, 0], "tom wheeled suddenly and said why it's you ben i": [65535, 0], "wheeled suddenly and said why it's you ben i warn't": [65535, 0], "suddenly and said why it's you ben i warn't noticing": [65535, 0], "and said why it's you ben i warn't noticing say": [65535, 0], "said why it's you ben i warn't noticing say i'm": [65535, 0], "why it's you ben i warn't noticing say i'm going": [65535, 0], "it's you ben i warn't noticing say i'm going in": [65535, 0], "you ben i warn't noticing say i'm going in a": [65535, 0], "ben i warn't noticing say i'm going in a swimming": [65535, 0], "i warn't noticing say i'm going in a swimming i": [65535, 0], "warn't noticing say i'm going in a swimming i am": [65535, 0], "noticing say i'm going in a swimming i am don't": [65535, 0], "say i'm going in a swimming i am don't you": [65535, 0], "i'm going in a swimming i am don't you wish": [65535, 0], "going in a swimming i am don't you wish you": [65535, 0], "in a swimming i am don't you wish you could": [65535, 0], "a swimming i am don't you wish you could but": [65535, 0], "swimming i am don't you wish you could but of": [65535, 0], "i am don't you wish you could but of course": [65535, 0], "am don't you wish you could but of course you'd": [65535, 0], "don't you wish you could but of course you'd druther": [65535, 0], "you wish you could but of course you'd druther work": [65535, 0], "wish you could but of course you'd druther work wouldn't": [65535, 0], "you could but of course you'd druther work wouldn't you": [65535, 0], "could but of course you'd druther work wouldn't you course": [65535, 0], "but of course you'd druther work wouldn't you course you": [65535, 0], "of course you'd druther work wouldn't you course you would": [65535, 0], "course you'd druther work wouldn't you course you would tom": [65535, 0], "you'd druther work wouldn't you course you would tom contemplated": [65535, 0], "druther work wouldn't you course you would tom contemplated the": [65535, 0], "work wouldn't you course you would tom contemplated the boy": [65535, 0], "wouldn't you course you would tom contemplated the boy a": [65535, 0], "you course you would tom contemplated the boy a bit": [65535, 0], "course you would tom contemplated the boy a bit and": [65535, 0], "you would tom contemplated the boy a bit and said": [65535, 0], "would tom contemplated the boy a bit and said what": [65535, 0], "tom contemplated the boy a bit and said what do": [65535, 0], "contemplated the boy a bit and said what do you": [65535, 0], "the boy a bit and said what do you call": [65535, 0], "boy a bit and said what do you call work": [65535, 0], "a bit and said what do you call work why": [65535, 0], "bit and said what do you call work why ain't": [65535, 0], "and said what do you call work why ain't that": [65535, 0], "said what do you call work why ain't that work": [65535, 0], "what do you call work why ain't that work tom": [65535, 0], "do you call work why ain't that work tom resumed": [65535, 0], "you call work why ain't that work tom resumed his": [65535, 0], "call work why ain't that work tom resumed his whitewashing": [65535, 0], "work why ain't that work tom resumed his whitewashing and": [65535, 0], "why ain't that work tom resumed his whitewashing and answered": [65535, 0], "ain't that work tom resumed his whitewashing and answered carelessly": [65535, 0], "that work tom resumed his whitewashing and answered carelessly well": [65535, 0], "work tom resumed his whitewashing and answered carelessly well maybe": [65535, 0], "tom resumed his whitewashing and answered carelessly well maybe it": [65535, 0], "resumed his whitewashing and answered carelessly well maybe it is": [65535, 0], "his whitewashing and answered carelessly well maybe it is and": [65535, 0], "whitewashing and answered carelessly well maybe it is and maybe": [65535, 0], "and answered carelessly well maybe it is and maybe it": [65535, 0], "answered carelessly well maybe it is and maybe it ain't": [65535, 0], "carelessly well maybe it is and maybe it ain't all": [65535, 0], "well maybe it is and maybe it ain't all i": [65535, 0], "maybe it is and maybe it ain't all i know": [65535, 0], "it is and maybe it ain't all i know is": [65535, 0], "is and maybe it ain't all i know is it": [65535, 0], "and maybe it ain't all i know is it suits": [65535, 0], "maybe it ain't all i know is it suits tom": [65535, 0], "it ain't all i know is it suits tom sawyer": [65535, 0], "ain't all i know is it suits tom sawyer oh": [65535, 0], "all i know is it suits tom sawyer oh come": [65535, 0], "i know is it suits tom sawyer oh come now": [65535, 0], "know is it suits tom sawyer oh come now you": [65535, 0], "is it suits tom sawyer oh come now you don't": [65535, 0], "it suits tom sawyer oh come now you don't mean": [65535, 0], "suits tom sawyer oh come now you don't mean to": [65535, 0], "tom sawyer oh come now you don't mean to let": [65535, 0], "sawyer oh come now you don't mean to let on": [65535, 0], "oh come now you don't mean to let on that": [65535, 0], "come now you don't mean to let on that you": [65535, 0], "now you don't mean to let on that you like": [65535, 0], "you don't mean to let on that you like it": [65535, 0], "don't mean to let on that you like it the": [65535, 0], "mean to let on that you like it the brush": [65535, 0], "to let on that you like it the brush continued": [65535, 0], "let on that you like it the brush continued to": [65535, 0], "on that you like it the brush continued to move": [65535, 0], "that you like it the brush continued to move like": [65535, 0], "you like it the brush continued to move like it": [65535, 0], "like it the brush continued to move like it well": [65535, 0], "it the brush continued to move like it well i": [65535, 0], "the brush continued to move like it well i don't": [65535, 0], "brush continued to move like it well i don't see": [65535, 0], "continued to move like it well i don't see why": [65535, 0], "to move like it well i don't see why i": [65535, 0], "move like it well i don't see why i oughtn't": [65535, 0], "like it well i don't see why i oughtn't to": [65535, 0], "it well i don't see why i oughtn't to like": [65535, 0], "well i don't see why i oughtn't to like it": [65535, 0], "i don't see why i oughtn't to like it does": [65535, 0], "don't see why i oughtn't to like it does a": [65535, 0], "see why i oughtn't to like it does a boy": [65535, 0], "why i oughtn't to like it does a boy get": [65535, 0], "i oughtn't to like it does a boy get a": [65535, 0], "oughtn't to like it does a boy get a chance": [65535, 0], "to like it does a boy get a chance to": [65535, 0], "like it does a boy get a chance to whitewash": [65535, 0], "it does a boy get a chance to whitewash a": [65535, 0], "does a boy get a chance to whitewash a fence": [65535, 0], "a boy get a chance to whitewash a fence every": [65535, 0], "boy get a chance to whitewash a fence every day": [65535, 0], "get a chance to whitewash a fence every day that": [65535, 0], "a chance to whitewash a fence every day that put": [65535, 0], "chance to whitewash a fence every day that put the": [65535, 0], "to whitewash a fence every day that put the thing": [65535, 0], "whitewash a fence every day that put the thing in": [65535, 0], "a fence every day that put the thing in a": [65535, 0], "fence every day that put the thing in a new": [65535, 0], "every day that put the thing in a new light": [65535, 0], "day that put the thing in a new light ben": [65535, 0], "that put the thing in a new light ben stopped": [65535, 0], "put the thing in a new light ben stopped nibbling": [65535, 0], "the thing in a new light ben stopped nibbling his": [65535, 0], "thing in a new light ben stopped nibbling his apple": [65535, 0], "in a new light ben stopped nibbling his apple tom": [65535, 0], "a new light ben stopped nibbling his apple tom swept": [65535, 0], "new light ben stopped nibbling his apple tom swept his": [65535, 0], "light ben stopped nibbling his apple tom swept his brush": [65535, 0], "ben stopped nibbling his apple tom swept his brush daintily": [65535, 0], "stopped nibbling his apple tom swept his brush daintily back": [65535, 0], "nibbling his apple tom swept his brush daintily back and": [65535, 0], "his apple tom swept his brush daintily back and forth": [65535, 0], "apple tom swept his brush daintily back and forth stepped": [65535, 0], "tom swept his brush daintily back and forth stepped back": [65535, 0], "swept his brush daintily back and forth stepped back to": [65535, 0], "his brush daintily back and forth stepped back to note": [65535, 0], "brush daintily back and forth stepped back to note the": [65535, 0], "daintily back and forth stepped back to note the effect": [65535, 0], "back and forth stepped back to note the effect added": [65535, 0], "and forth stepped back to note the effect added a": [65535, 0], "forth stepped back to note the effect added a touch": [65535, 0], "stepped back to note the effect added a touch here": [65535, 0], "back to note the effect added a touch here and": [65535, 0], "to note the effect added a touch here and there": [65535, 0], "note the effect added a touch here and there criticised": [65535, 0], "the effect added a touch here and there criticised the": [65535, 0], "effect added a touch here and there criticised the effect": [65535, 0], "added a touch here and there criticised the effect again": [65535, 0], "a touch here and there criticised the effect again ben": [65535, 0], "touch here and there criticised the effect again ben watching": [65535, 0], "here and there criticised the effect again ben watching every": [65535, 0], "and there criticised the effect again ben watching every move": [65535, 0], "there criticised the effect again ben watching every move and": [65535, 0], "criticised the effect again ben watching every move and getting": [65535, 0], "the effect again ben watching every move and getting more": [65535, 0], "effect again ben watching every move and getting more and": [65535, 0], "again ben watching every move and getting more and more": [65535, 0], "ben watching every move and getting more and more interested": [65535, 0], "watching every move and getting more and more interested more": [65535, 0], "every move and getting more and more interested more and": [65535, 0], "move and getting more and more interested more and more": [65535, 0], "and getting more and more interested more and more absorbed": [65535, 0], "getting more and more interested more and more absorbed presently": [65535, 0], "more and more interested more and more absorbed presently he": [65535, 0], "and more interested more and more absorbed presently he said": [65535, 0], "more interested more and more absorbed presently he said say": [65535, 0], "interested more and more absorbed presently he said say tom": [65535, 0], "more and more absorbed presently he said say tom let": [65535, 0], "and more absorbed presently he said say tom let me": [65535, 0], "more absorbed presently he said say tom let me whitewash": [65535, 0], "absorbed presently he said say tom let me whitewash a": [65535, 0], "presently he said say tom let me whitewash a little": [65535, 0], "he said say tom let me whitewash a little tom": [65535, 0], "said say tom let me whitewash a little tom considered": [65535, 0], "say tom let me whitewash a little tom considered was": [65535, 0], "tom let me whitewash a little tom considered was about": [65535, 0], "let me whitewash a little tom considered was about to": [65535, 0], "me whitewash a little tom considered was about to consent": [65535, 0], "whitewash a little tom considered was about to consent but": [65535, 0], "a little tom considered was about to consent but he": [65535, 0], "little tom considered was about to consent but he altered": [65535, 0], "tom considered was about to consent but he altered his": [65535, 0], "considered was about to consent but he altered his mind": [65535, 0], "was about to consent but he altered his mind no": [65535, 0], "about to consent but he altered his mind no no": [65535, 0], "to consent but he altered his mind no no i": [65535, 0], "consent but he altered his mind no no i reckon": [65535, 0], "but he altered his mind no no i reckon it": [65535, 0], "he altered his mind no no i reckon it wouldn't": [65535, 0], "altered his mind no no i reckon it wouldn't hardly": [65535, 0], "his mind no no i reckon it wouldn't hardly do": [65535, 0], "mind no no i reckon it wouldn't hardly do ben": [65535, 0], "no no i reckon it wouldn't hardly do ben you": [65535, 0], "no i reckon it wouldn't hardly do ben you see": [65535, 0], "i reckon it wouldn't hardly do ben you see aunt": [65535, 0], "reckon it wouldn't hardly do ben you see aunt polly's": [65535, 0], "it wouldn't hardly do ben you see aunt polly's awful": [65535, 0], "wouldn't hardly do ben you see aunt polly's awful particular": [65535, 0], "hardly do ben you see aunt polly's awful particular about": [65535, 0], "do ben you see aunt polly's awful particular about this": [65535, 0], "ben you see aunt polly's awful particular about this fence": [65535, 0], "you see aunt polly's awful particular about this fence right": [65535, 0], "see aunt polly's awful particular about this fence right here": [65535, 0], "aunt polly's awful particular about this fence right here on": [65535, 0], "polly's awful particular about this fence right here on the": [65535, 0], "awful particular about this fence right here on the street": [65535, 0], "particular about this fence right here on the street you": [65535, 0], "about this fence right here on the street you know": [65535, 0], "this fence right here on the street you know but": [65535, 0], "fence right here on the street you know but if": [65535, 0], "right here on the street you know but if it": [65535, 0], "here on the street you know but if it was": [65535, 0], "on the street you know but if it was the": [65535, 0], "the street you know but if it was the back": [65535, 0], "street you know but if it was the back fence": [65535, 0], "you know but if it was the back fence i": [65535, 0], "know but if it was the back fence i wouldn't": [65535, 0], "but if it was the back fence i wouldn't mind": [65535, 0], "if it was the back fence i wouldn't mind and": [65535, 0], "it was the back fence i wouldn't mind and she": [65535, 0], "was the back fence i wouldn't mind and she wouldn't": [65535, 0], "the back fence i wouldn't mind and she wouldn't yes": [65535, 0], "back fence i wouldn't mind and she wouldn't yes she's": [65535, 0], "fence i wouldn't mind and she wouldn't yes she's awful": [65535, 0], "i wouldn't mind and she wouldn't yes she's awful particular": [65535, 0], "wouldn't mind and she wouldn't yes she's awful particular about": [65535, 0], "mind and she wouldn't yes she's awful particular about this": [65535, 0], "and she wouldn't yes she's awful particular about this fence": [65535, 0], "she wouldn't yes she's awful particular about this fence it's": [65535, 0], "wouldn't yes she's awful particular about this fence it's got": [65535, 0], "yes she's awful particular about this fence it's got to": [65535, 0], "she's awful particular about this fence it's got to be": [65535, 0], "awful particular about this fence it's got to be done": [65535, 0], "particular about this fence it's got to be done very": [65535, 0], "about this fence it's got to be done very careful": [65535, 0], "this fence it's got to be done very careful i": [65535, 0], "fence it's got to be done very careful i reckon": [65535, 0], "it's got to be done very careful i reckon there": [65535, 0], "got to be done very careful i reckon there ain't": [65535, 0], "to be done very careful i reckon there ain't one": [65535, 0], "be done very careful i reckon there ain't one boy": [65535, 0], "done very careful i reckon there ain't one boy in": [65535, 0], "very careful i reckon there ain't one boy in a": [65535, 0], "careful i reckon there ain't one boy in a thousand": [65535, 0], "i reckon there ain't one boy in a thousand maybe": [65535, 0], "reckon there ain't one boy in a thousand maybe two": [65535, 0], "there ain't one boy in a thousand maybe two thousand": [65535, 0], "ain't one boy in a thousand maybe two thousand that": [65535, 0], "one boy in a thousand maybe two thousand that can": [65535, 0], "boy in a thousand maybe two thousand that can do": [65535, 0], "in a thousand maybe two thousand that can do it": [65535, 0], "a thousand maybe two thousand that can do it the": [65535, 0], "thousand maybe two thousand that can do it the way": [65535, 0], "maybe two thousand that can do it the way it's": [65535, 0], "two thousand that can do it the way it's got": [65535, 0], "thousand that can do it the way it's got to": [65535, 0], "that can do it the way it's got to be": [65535, 0], "can do it the way it's got to be done": [65535, 0], "do it the way it's got to be done no": [65535, 0], "it the way it's got to be done no is": [65535, 0], "the way it's got to be done no is that": [65535, 0], "way it's got to be done no is that so": [65535, 0], "it's got to be done no is that so oh": [65535, 0], "got to be done no is that so oh come": [65535, 0], "to be done no is that so oh come now": [65535, 0], "be done no is that so oh come now lemme": [65535, 0], "done no is that so oh come now lemme just": [65535, 0], "no is that so oh come now lemme just try": [65535, 0], "is that so oh come now lemme just try only": [65535, 0], "that so oh come now lemme just try only just": [65535, 0], "so oh come now lemme just try only just a": [65535, 0], "oh come now lemme just try only just a little": [65535, 0], "come now lemme just try only just a little i'd": [65535, 0], "now lemme just try only just a little i'd let": [65535, 0], "lemme just try only just a little i'd let you": [65535, 0], "just try only just a little i'd let you if": [65535, 0], "try only just a little i'd let you if you": [65535, 0], "only just a little i'd let you if you was": [65535, 0], "just a little i'd let you if you was me": [65535, 0], "a little i'd let you if you was me tom": [65535, 0], "little i'd let you if you was me tom ben": [65535, 0], "i'd let you if you was me tom ben i'd": [65535, 0], "let you if you was me tom ben i'd like": [65535, 0], "you if you was me tom ben i'd like to": [65535, 0], "if you was me tom ben i'd like to honest": [65535, 0], "you was me tom ben i'd like to honest injun": [65535, 0], "was me tom ben i'd like to honest injun but": [65535, 0], "me tom ben i'd like to honest injun but aunt": [65535, 0], "tom ben i'd like to honest injun but aunt polly": [65535, 0], "ben i'd like to honest injun but aunt polly well": [65535, 0], "i'd like to honest injun but aunt polly well jim": [65535, 0], "like to honest injun but aunt polly well jim wanted": [65535, 0], "to honest injun but aunt polly well jim wanted to": [65535, 0], "honest injun but aunt polly well jim wanted to do": [65535, 0], "injun but aunt polly well jim wanted to do it": [65535, 0], "but aunt polly well jim wanted to do it but": [65535, 0], "aunt polly well jim wanted to do it but she": [65535, 0], "polly well jim wanted to do it but she wouldn't": [65535, 0], "well jim wanted to do it but she wouldn't let": [65535, 0], "jim wanted to do it but she wouldn't let him": [65535, 0], "wanted to do it but she wouldn't let him sid": [65535, 0], "to do it but she wouldn't let him sid wanted": [65535, 0], "do it but she wouldn't let him sid wanted to": [65535, 0], "it but she wouldn't let him sid wanted to do": [65535, 0], "but she wouldn't let him sid wanted to do it": [65535, 0], "she wouldn't let him sid wanted to do it and": [65535, 0], "wouldn't let him sid wanted to do it and she": [65535, 0], "let him sid wanted to do it and she wouldn't": [65535, 0], "him sid wanted to do it and she wouldn't let": [65535, 0], "sid wanted to do it and she wouldn't let sid": [65535, 0], "wanted to do it and she wouldn't let sid now": [65535, 0], "to do it and she wouldn't let sid now don't": [65535, 0], "do it and she wouldn't let sid now don't you": [65535, 0], "it and she wouldn't let sid now don't you see": [65535, 0], "and she wouldn't let sid now don't you see how": [65535, 0], "she wouldn't let sid now don't you see how i'm": [65535, 0], "wouldn't let sid now don't you see how i'm fixed": [65535, 0], "let sid now don't you see how i'm fixed if": [65535, 0], "sid now don't you see how i'm fixed if you": [65535, 0], "now don't you see how i'm fixed if you was": [65535, 0], "don't you see how i'm fixed if you was to": [65535, 0], "you see how i'm fixed if you was to tackle": [65535, 0], "see how i'm fixed if you was to tackle this": [65535, 0], "how i'm fixed if you was to tackle this fence": [65535, 0], "i'm fixed if you was to tackle this fence and": [65535, 0], "fixed if you was to tackle this fence and anything": [65535, 0], "if you was to tackle this fence and anything was": [65535, 0], "you was to tackle this fence and anything was to": [65535, 0], "was to tackle this fence and anything was to happen": [65535, 0], "to tackle this fence and anything was to happen to": [65535, 0], "tackle this fence and anything was to happen to it": [65535, 0], "this fence and anything was to happen to it oh": [65535, 0], "fence and anything was to happen to it oh shucks": [65535, 0], "and anything was to happen to it oh shucks i'll": [65535, 0], "anything was to happen to it oh shucks i'll be": [65535, 0], "was to happen to it oh shucks i'll be just": [65535, 0], "to happen to it oh shucks i'll be just as": [65535, 0], "happen to it oh shucks i'll be just as careful": [65535, 0], "to it oh shucks i'll be just as careful now": [65535, 0], "it oh shucks i'll be just as careful now lemme": [65535, 0], "oh shucks i'll be just as careful now lemme try": [65535, 0], "shucks i'll be just as careful now lemme try say": [65535, 0], "i'll be just as careful now lemme try say i'll": [65535, 0], "be just as careful now lemme try say i'll give": [65535, 0], "just as careful now lemme try say i'll give you": [65535, 0], "as careful now lemme try say i'll give you the": [65535, 0], "careful now lemme try say i'll give you the core": [65535, 0], "now lemme try say i'll give you the core of": [65535, 0], "lemme try say i'll give you the core of my": [65535, 0], "try say i'll give you the core of my apple": [65535, 0], "say i'll give you the core of my apple well": [65535, 0], "i'll give you the core of my apple well here": [65535, 0], "give you the core of my apple well here no": [65535, 0], "you the core of my apple well here no ben": [65535, 0], "the core of my apple well here no ben now": [65535, 0], "core of my apple well here no ben now don't": [65535, 0], "of my apple well here no ben now don't i'm": [65535, 0], "my apple well here no ben now don't i'm afeard": [65535, 0], "apple well here no ben now don't i'm afeard i'll": [65535, 0], "well here no ben now don't i'm afeard i'll give": [65535, 0], "here no ben now don't i'm afeard i'll give you": [65535, 0], "no ben now don't i'm afeard i'll give you all": [65535, 0], "ben now don't i'm afeard i'll give you all of": [65535, 0], "now don't i'm afeard i'll give you all of it": [65535, 0], "don't i'm afeard i'll give you all of it tom": [65535, 0], "i'm afeard i'll give you all of it tom gave": [65535, 0], "afeard i'll give you all of it tom gave up": [65535, 0], "i'll give you all of it tom gave up the": [65535, 0], "give you all of it tom gave up the brush": [65535, 0], "you all of it tom gave up the brush with": [65535, 0], "all of it tom gave up the brush with reluctance": [65535, 0], "of it tom gave up the brush with reluctance in": [65535, 0], "it tom gave up the brush with reluctance in his": [65535, 0], "tom gave up the brush with reluctance in his face": [65535, 0], "gave up the brush with reluctance in his face but": [65535, 0], "up the brush with reluctance in his face but alacrity": [65535, 0], "the brush with reluctance in his face but alacrity in": [65535, 0], "brush with reluctance in his face but alacrity in his": [65535, 0], "with reluctance in his face but alacrity in his heart": [65535, 0], "reluctance in his face but alacrity in his heart and": [65535, 0], "in his face but alacrity in his heart and while": [65535, 0], "his face but alacrity in his heart and while the": [65535, 0], "face but alacrity in his heart and while the late": [65535, 0], "but alacrity in his heart and while the late steamer": [65535, 0], "alacrity in his heart and while the late steamer big": [65535, 0], "in his heart and while the late steamer big missouri": [65535, 0], "his heart and while the late steamer big missouri worked": [65535, 0], "heart and while the late steamer big missouri worked and": [65535, 0], "and while the late steamer big missouri worked and sweated": [65535, 0], "while the late steamer big missouri worked and sweated in": [65535, 0], "the late steamer big missouri worked and sweated in the": [65535, 0], "late steamer big missouri worked and sweated in the sun": [65535, 0], "steamer big missouri worked and sweated in the sun the": [65535, 0], "big missouri worked and sweated in the sun the retired": [65535, 0], "missouri worked and sweated in the sun the retired artist": [65535, 0], "worked and sweated in the sun the retired artist sat": [65535, 0], "and sweated in the sun the retired artist sat on": [65535, 0], "sweated in the sun the retired artist sat on a": [65535, 0], "in the sun the retired artist sat on a barrel": [65535, 0], "the sun the retired artist sat on a barrel in": [65535, 0], "sun the retired artist sat on a barrel in the": [65535, 0], "the retired artist sat on a barrel in the shade": [65535, 0], "retired artist sat on a barrel in the shade close": [65535, 0], "artist sat on a barrel in the shade close by": [65535, 0], "sat on a barrel in the shade close by dangled": [65535, 0], "on a barrel in the shade close by dangled his": [65535, 0], "a barrel in the shade close by dangled his legs": [65535, 0], "barrel in the shade close by dangled his legs munched": [65535, 0], "in the shade close by dangled his legs munched his": [65535, 0], "the shade close by dangled his legs munched his apple": [65535, 0], "shade close by dangled his legs munched his apple and": [65535, 0], "close by dangled his legs munched his apple and planned": [65535, 0], "by dangled his legs munched his apple and planned the": [65535, 0], "dangled his legs munched his apple and planned the slaughter": [65535, 0], "his legs munched his apple and planned the slaughter of": [65535, 0], "legs munched his apple and planned the slaughter of more": [65535, 0], "munched his apple and planned the slaughter of more innocents": [65535, 0], "his apple and planned the slaughter of more innocents there": [65535, 0], "apple and planned the slaughter of more innocents there was": [65535, 0], "and planned the slaughter of more innocents there was no": [65535, 0], "planned the slaughter of more innocents there was no lack": [65535, 0], "the slaughter of more innocents there was no lack of": [65535, 0], "slaughter of more innocents there was no lack of material": [65535, 0], "of more innocents there was no lack of material boys": [65535, 0], "more innocents there was no lack of material boys happened": [65535, 0], "innocents there was no lack of material boys happened along": [65535, 0], "there was no lack of material boys happened along every": [65535, 0], "was no lack of material boys happened along every little": [65535, 0], "no lack of material boys happened along every little while": [65535, 0], "lack of material boys happened along every little while they": [65535, 0], "of material boys happened along every little while they came": [65535, 0], "material boys happened along every little while they came to": [65535, 0], "boys happened along every little while they came to jeer": [65535, 0], "happened along every little while they came to jeer but": [65535, 0], "along every little while they came to jeer but remained": [65535, 0], "every little while they came to jeer but remained to": [65535, 0], "little while they came to jeer but remained to whitewash": [65535, 0], "while they came to jeer but remained to whitewash by": [65535, 0], "they came to jeer but remained to whitewash by the": [65535, 0], "came to jeer but remained to whitewash by the time": [65535, 0], "to jeer but remained to whitewash by the time ben": [65535, 0], "jeer but remained to whitewash by the time ben was": [65535, 0], "but remained to whitewash by the time ben was fagged": [65535, 0], "remained to whitewash by the time ben was fagged out": [65535, 0], "to whitewash by the time ben was fagged out tom": [65535, 0], "whitewash by the time ben was fagged out tom had": [65535, 0], "by the time ben was fagged out tom had traded": [65535, 0], "the time ben was fagged out tom had traded the": [65535, 0], "time ben was fagged out tom had traded the next": [65535, 0], "ben was fagged out tom had traded the next chance": [65535, 0], "was fagged out tom had traded the next chance to": [65535, 0], "fagged out tom had traded the next chance to billy": [65535, 0], "out tom had traded the next chance to billy fisher": [65535, 0], "tom had traded the next chance to billy fisher for": [65535, 0], "had traded the next chance to billy fisher for a": [65535, 0], "traded the next chance to billy fisher for a kite": [65535, 0], "the next chance to billy fisher for a kite in": [65535, 0], "next chance to billy fisher for a kite in good": [65535, 0], "chance to billy fisher for a kite in good repair": [65535, 0], "to billy fisher for a kite in good repair and": [65535, 0], "billy fisher for a kite in good repair and when": [65535, 0], "fisher for a kite in good repair and when he": [65535, 0], "for a kite in good repair and when he played": [65535, 0], "a kite in good repair and when he played out": [65535, 0], "kite in good repair and when he played out johnny": [65535, 0], "in good repair and when he played out johnny miller": [65535, 0], "good repair and when he played out johnny miller bought": [65535, 0], "repair and when he played out johnny miller bought in": [65535, 0], "and when he played out johnny miller bought in for": [65535, 0], "when he played out johnny miller bought in for a": [65535, 0], "he played out johnny miller bought in for a dead": [65535, 0], "played out johnny miller bought in for a dead rat": [65535, 0], "out johnny miller bought in for a dead rat and": [65535, 0], "johnny miller bought in for a dead rat and a": [65535, 0], "miller bought in for a dead rat and a string": [65535, 0], "bought in for a dead rat and a string to": [65535, 0], "in for a dead rat and a string to swing": [65535, 0], "for a dead rat and a string to swing it": [65535, 0], "a dead rat and a string to swing it with": [65535, 0], "dead rat and a string to swing it with and": [65535, 0], "rat and a string to swing it with and so": [65535, 0], "and a string to swing it with and so on": [65535, 0], "a string to swing it with and so on and": [65535, 0], "string to swing it with and so on and so": [65535, 0], "to swing it with and so on and so on": [65535, 0], "swing it with and so on and so on hour": [65535, 0], "it with and so on and so on hour after": [65535, 0], "with and so on and so on hour after hour": [65535, 0], "and so on and so on hour after hour and": [65535, 0], "so on and so on hour after hour and when": [65535, 0], "on and so on hour after hour and when the": [65535, 0], "and so on hour after hour and when the middle": [65535, 0], "so on hour after hour and when the middle of": [65535, 0], "on hour after hour and when the middle of the": [65535, 0], "hour after hour and when the middle of the afternoon": [65535, 0], "after hour and when the middle of the afternoon came": [65535, 0], "hour and when the middle of the afternoon came from": [65535, 0], "and when the middle of the afternoon came from being": [65535, 0], "when the middle of the afternoon came from being a": [65535, 0], "the middle of the afternoon came from being a poor": [65535, 0], "middle of the afternoon came from being a poor poverty": [65535, 0], "of the afternoon came from being a poor poverty stricken": [65535, 0], "the afternoon came from being a poor poverty stricken boy": [65535, 0], "afternoon came from being a poor poverty stricken boy in": [65535, 0], "came from being a poor poverty stricken boy in the": [65535, 0], "from being a poor poverty stricken boy in the morning": [65535, 0], "being a poor poverty stricken boy in the morning tom": [65535, 0], "a poor poverty stricken boy in the morning tom was": [65535, 0], "poor poverty stricken boy in the morning tom was literally": [65535, 0], "poverty stricken boy in the morning tom was literally rolling": [65535, 0], "stricken boy in the morning tom was literally rolling in": [65535, 0], "boy in the morning tom was literally rolling in wealth": [65535, 0], "in the morning tom was literally rolling in wealth he": [65535, 0], "the morning tom was literally rolling in wealth he had": [65535, 0], "morning tom was literally rolling in wealth he had besides": [65535, 0], "tom was literally rolling in wealth he had besides the": [65535, 0], "was literally rolling in wealth he had besides the things": [65535, 0], "literally rolling in wealth he had besides the things before": [65535, 0], "rolling in wealth he had besides the things before mentioned": [65535, 0], "in wealth he had besides the things before mentioned twelve": [65535, 0], "wealth he had besides the things before mentioned twelve marbles": [65535, 0], "he had besides the things before mentioned twelve marbles part": [65535, 0], "had besides the things before mentioned twelve marbles part of": [65535, 0], "besides the things before mentioned twelve marbles part of a": [65535, 0], "the things before mentioned twelve marbles part of a jews": [65535, 0], "things before mentioned twelve marbles part of a jews harp": [65535, 0], "before mentioned twelve marbles part of a jews harp a": [65535, 0], "mentioned twelve marbles part of a jews harp a piece": [65535, 0], "twelve marbles part of a jews harp a piece of": [65535, 0], "marbles part of a jews harp a piece of blue": [65535, 0], "part of a jews harp a piece of blue bottle": [65535, 0], "of a jews harp a piece of blue bottle glass": [65535, 0], "a jews harp a piece of blue bottle glass to": [65535, 0], "jews harp a piece of blue bottle glass to look": [65535, 0], "harp a piece of blue bottle glass to look through": [65535, 0], "a piece of blue bottle glass to look through a": [65535, 0], "piece of blue bottle glass to look through a spool": [65535, 0], "of blue bottle glass to look through a spool cannon": [65535, 0], "blue bottle glass to look through a spool cannon a": [65535, 0], "bottle glass to look through a spool cannon a key": [65535, 0], "glass to look through a spool cannon a key that": [65535, 0], "to look through a spool cannon a key that wouldn't": [65535, 0], "look through a spool cannon a key that wouldn't unlock": [65535, 0], "through a spool cannon a key that wouldn't unlock anything": [65535, 0], "a spool cannon a key that wouldn't unlock anything a": [65535, 0], "spool cannon a key that wouldn't unlock anything a fragment": [65535, 0], "cannon a key that wouldn't unlock anything a fragment of": [65535, 0], "a key that wouldn't unlock anything a fragment of chalk": [65535, 0], "key that wouldn't unlock anything a fragment of chalk a": [65535, 0], "that wouldn't unlock anything a fragment of chalk a glass": [65535, 0], "wouldn't unlock anything a fragment of chalk a glass stopper": [65535, 0], "unlock anything a fragment of chalk a glass stopper of": [65535, 0], "anything a fragment of chalk a glass stopper of a": [65535, 0], "a fragment of chalk a glass stopper of a decanter": [65535, 0], "fragment of chalk a glass stopper of a decanter a": [65535, 0], "of chalk a glass stopper of a decanter a tin": [65535, 0], "chalk a glass stopper of a decanter a tin soldier": [65535, 0], "a glass stopper of a decanter a tin soldier a": [65535, 0], "glass stopper of a decanter a tin soldier a couple": [65535, 0], "stopper of a decanter a tin soldier a couple of": [65535, 0], "of a decanter a tin soldier a couple of tadpoles": [65535, 0], "a decanter a tin soldier a couple of tadpoles six": [65535, 0], "decanter a tin soldier a couple of tadpoles six fire": [65535, 0], "a tin soldier a couple of tadpoles six fire crackers": [65535, 0], "tin soldier a couple of tadpoles six fire crackers a": [65535, 0], "soldier a couple of tadpoles six fire crackers a kitten": [65535, 0], "a couple of tadpoles six fire crackers a kitten with": [65535, 0], "couple of tadpoles six fire crackers a kitten with only": [65535, 0], "of tadpoles six fire crackers a kitten with only one": [65535, 0], "tadpoles six fire crackers a kitten with only one eye": [65535, 0], "six fire crackers a kitten with only one eye a": [65535, 0], "fire crackers a kitten with only one eye a brass": [65535, 0], "crackers a kitten with only one eye a brass doorknob": [65535, 0], "a kitten with only one eye a brass doorknob a": [65535, 0], "kitten with only one eye a brass doorknob a dog": [65535, 0], "with only one eye a brass doorknob a dog collar": [65535, 0], "only one eye a brass doorknob a dog collar but": [65535, 0], "one eye a brass doorknob a dog collar but no": [65535, 0], "eye a brass doorknob a dog collar but no dog": [65535, 0], "a brass doorknob a dog collar but no dog the": [65535, 0], "brass doorknob a dog collar but no dog the handle": [65535, 0], "doorknob a dog collar but no dog the handle of": [65535, 0], "a dog collar but no dog the handle of a": [65535, 0], "dog collar but no dog the handle of a knife": [65535, 0], "collar but no dog the handle of a knife four": [65535, 0], "but no dog the handle of a knife four pieces": [65535, 0], "no dog the handle of a knife four pieces of": [65535, 0], "dog the handle of a knife four pieces of orange": [65535, 0], "the handle of a knife four pieces of orange peel": [65535, 0], "handle of a knife four pieces of orange peel and": [65535, 0], "of a knife four pieces of orange peel and a": [65535, 0], "a knife four pieces of orange peel and a dilapidated": [65535, 0], "knife four pieces of orange peel and a dilapidated old": [65535, 0], "four pieces of orange peel and a dilapidated old window": [65535, 0], "pieces of orange peel and a dilapidated old window sash": [65535, 0], "of orange peel and a dilapidated old window sash he": [65535, 0], "orange peel and a dilapidated old window sash he had": [65535, 0], "peel and a dilapidated old window sash he had had": [65535, 0], "and a dilapidated old window sash he had had a": [65535, 0], "a dilapidated old window sash he had had a nice": [65535, 0], "dilapidated old window sash he had had a nice good": [65535, 0], "old window sash he had had a nice good idle": [65535, 0], "window sash he had had a nice good idle time": [65535, 0], "sash he had had a nice good idle time all": [65535, 0], "he had had a nice good idle time all the": [65535, 0], "had had a nice good idle time all the while": [65535, 0], "had a nice good idle time all the while plenty": [65535, 0], "a nice good idle time all the while plenty of": [65535, 0], "nice good idle time all the while plenty of company": [65535, 0], "good idle time all the while plenty of company and": [65535, 0], "idle time all the while plenty of company and the": [65535, 0], "time all the while plenty of company and the fence": [65535, 0], "all the while plenty of company and the fence had": [65535, 0], "the while plenty of company and the fence had three": [65535, 0], "while plenty of company and the fence had three coats": [65535, 0], "plenty of company and the fence had three coats of": [65535, 0], "of company and the fence had three coats of whitewash": [65535, 0], "company and the fence had three coats of whitewash on": [65535, 0], "and the fence had three coats of whitewash on it": [65535, 0], "the fence had three coats of whitewash on it if": [65535, 0], "fence had three coats of whitewash on it if he": [65535, 0], "had three coats of whitewash on it if he hadn't": [65535, 0], "three coats of whitewash on it if he hadn't run": [65535, 0], "coats of whitewash on it if he hadn't run out": [65535, 0], "of whitewash on it if he hadn't run out of": [65535, 0], "whitewash on it if he hadn't run out of whitewash": [65535, 0], "on it if he hadn't run out of whitewash he": [65535, 0], "it if he hadn't run out of whitewash he would": [65535, 0], "if he hadn't run out of whitewash he would have": [65535, 0], "he hadn't run out of whitewash he would have bankrupted": [65535, 0], "hadn't run out of whitewash he would have bankrupted every": [65535, 0], "run out of whitewash he would have bankrupted every boy": [65535, 0], "out of whitewash he would have bankrupted every boy in": [65535, 0], "of whitewash he would have bankrupted every boy in the": [65535, 0], "whitewash he would have bankrupted every boy in the village": [65535, 0], "he would have bankrupted every boy in the village tom": [65535, 0], "would have bankrupted every boy in the village tom said": [65535, 0], "have bankrupted every boy in the village tom said to": [65535, 0], "bankrupted every boy in the village tom said to himself": [65535, 0], "every boy in the village tom said to himself that": [65535, 0], "boy in the village tom said to himself that it": [65535, 0], "in the village tom said to himself that it was": [65535, 0], "the village tom said to himself that it was not": [65535, 0], "village tom said to himself that it was not such": [65535, 0], "tom said to himself that it was not such a": [65535, 0], "said to himself that it was not such a hollow": [65535, 0], "to himself that it was not such a hollow world": [65535, 0], "himself that it was not such a hollow world after": [65535, 0], "that it was not such a hollow world after all": [65535, 0], "it was not such a hollow world after all he": [65535, 0], "was not such a hollow world after all he had": [65535, 0], "not such a hollow world after all he had discovered": [65535, 0], "such a hollow world after all he had discovered a": [65535, 0], "a hollow world after all he had discovered a great": [65535, 0], "hollow world after all he had discovered a great law": [65535, 0], "world after all he had discovered a great law of": [65535, 0], "after all he had discovered a great law of human": [65535, 0], "all he had discovered a great law of human action": [65535, 0], "he had discovered a great law of human action without": [65535, 0], "had discovered a great law of human action without knowing": [65535, 0], "discovered a great law of human action without knowing it": [65535, 0], "a great law of human action without knowing it namely": [65535, 0], "great law of human action without knowing it namely that": [65535, 0], "law of human action without knowing it namely that in": [65535, 0], "of human action without knowing it namely that in order": [65535, 0], "human action without knowing it namely that in order to": [65535, 0], "action without knowing it namely that in order to make": [65535, 0], "without knowing it namely that in order to make a": [65535, 0], "knowing it namely that in order to make a man": [65535, 0], "it namely that in order to make a man or": [65535, 0], "namely that in order to make a man or a": [65535, 0], "that in order to make a man or a boy": [65535, 0], "in order to make a man or a boy covet": [65535, 0], "order to make a man or a boy covet a": [65535, 0], "to make a man or a boy covet a thing": [65535, 0], "make a man or a boy covet a thing it": [65535, 0], "a man or a boy covet a thing it is": [65535, 0], "man or a boy covet a thing it is only": [65535, 0], "or a boy covet a thing it is only necessary": [65535, 0], "a boy covet a thing it is only necessary to": [65535, 0], "boy covet a thing it is only necessary to make": [65535, 0], "covet a thing it is only necessary to make the": [65535, 0], "a thing it is only necessary to make the thing": [65535, 0], "thing it is only necessary to make the thing difficult": [65535, 0], "it is only necessary to make the thing difficult to": [65535, 0], "is only necessary to make the thing difficult to attain": [65535, 0], "only necessary to make the thing difficult to attain if": [65535, 0], "necessary to make the thing difficult to attain if he": [65535, 0], "to make the thing difficult to attain if he had": [65535, 0], "make the thing difficult to attain if he had been": [65535, 0], "the thing difficult to attain if he had been a": [65535, 0], "thing difficult to attain if he had been a great": [65535, 0], "difficult to attain if he had been a great and": [65535, 0], "to attain if he had been a great and wise": [65535, 0], "attain if he had been a great and wise philosopher": [65535, 0], "if he had been a great and wise philosopher like": [65535, 0], "he had been a great and wise philosopher like the": [65535, 0], "had been a great and wise philosopher like the writer": [65535, 0], "been a great and wise philosopher like the writer of": [65535, 0], "a great and wise philosopher like the writer of this": [65535, 0], "great and wise philosopher like the writer of this book": [65535, 0], "and wise philosopher like the writer of this book he": [65535, 0], "wise philosopher like the writer of this book he would": [65535, 0], "philosopher like the writer of this book he would now": [65535, 0], "like the writer of this book he would now have": [65535, 0], "the writer of this book he would now have comprehended": [65535, 0], "writer of this book he would now have comprehended that": [65535, 0], "of this book he would now have comprehended that work": [65535, 0], "this book he would now have comprehended that work consists": [65535, 0], "book he would now have comprehended that work consists of": [65535, 0], "he would now have comprehended that work consists of whatever": [65535, 0], "would now have comprehended that work consists of whatever a": [65535, 0], "now have comprehended that work consists of whatever a body": [65535, 0], "have comprehended that work consists of whatever a body is": [65535, 0], "comprehended that work consists of whatever a body is obliged": [65535, 0], "that work consists of whatever a body is obliged to": [65535, 0], "work consists of whatever a body is obliged to do": [65535, 0], "consists of whatever a body is obliged to do and": [65535, 0], "of whatever a body is obliged to do and that": [65535, 0], "whatever a body is obliged to do and that play": [65535, 0], "a body is obliged to do and that play consists": [65535, 0], "body is obliged to do and that play consists of": [65535, 0], "is obliged to do and that play consists of whatever": [65535, 0], "obliged to do and that play consists of whatever a": [65535, 0], "to do and that play consists of whatever a body": [65535, 0], "do and that play consists of whatever a body is": [65535, 0], "and that play consists of whatever a body is not": [65535, 0], "that play consists of whatever a body is not obliged": [65535, 0], "play consists of whatever a body is not obliged to": [65535, 0], "consists of whatever a body is not obliged to do": [65535, 0], "of whatever a body is not obliged to do and": [65535, 0], "whatever a body is not obliged to do and this": [65535, 0], "a body is not obliged to do and this would": [65535, 0], "body is not obliged to do and this would help": [65535, 0], "is not obliged to do and this would help him": [65535, 0], "not obliged to do and this would help him to": [65535, 0], "obliged to do and this would help him to understand": [65535, 0], "to do and this would help him to understand why": [65535, 0], "do and this would help him to understand why constructing": [65535, 0], "and this would help him to understand why constructing artificial": [65535, 0], "this would help him to understand why constructing artificial flowers": [65535, 0], "would help him to understand why constructing artificial flowers or": [65535, 0], "help him to understand why constructing artificial flowers or performing": [65535, 0], "him to understand why constructing artificial flowers or performing on": [65535, 0], "to understand why constructing artificial flowers or performing on a": [65535, 0], "understand why constructing artificial flowers or performing on a tread": [65535, 0], "why constructing artificial flowers or performing on a tread mill": [65535, 0], "constructing artificial flowers or performing on a tread mill is": [65535, 0], "artificial flowers or performing on a tread mill is work": [65535, 0], "flowers or performing on a tread mill is work while": [65535, 0], "or performing on a tread mill is work while rolling": [65535, 0], "performing on a tread mill is work while rolling ten": [65535, 0], "on a tread mill is work while rolling ten pins": [65535, 0], "a tread mill is work while rolling ten pins or": [65535, 0], "tread mill is work while rolling ten pins or climbing": [65535, 0], "mill is work while rolling ten pins or climbing mont": [65535, 0], "is work while rolling ten pins or climbing mont blanc": [65535, 0], "work while rolling ten pins or climbing mont blanc is": [65535, 0], "while rolling ten pins or climbing mont blanc is only": [65535, 0], "rolling ten pins or climbing mont blanc is only amusement": [65535, 0], "ten pins or climbing mont blanc is only amusement there": [65535, 0], "pins or climbing mont blanc is only amusement there are": [65535, 0], "or climbing mont blanc is only amusement there are wealthy": [65535, 0], "climbing mont blanc is only amusement there are wealthy gentlemen": [65535, 0], "mont blanc is only amusement there are wealthy gentlemen in": [65535, 0], "blanc is only amusement there are wealthy gentlemen in england": [65535, 0], "is only amusement there are wealthy gentlemen in england who": [65535, 0], "only amusement there are wealthy gentlemen in england who drive": [65535, 0], "amusement there are wealthy gentlemen in england who drive four": [65535, 0], "there are wealthy gentlemen in england who drive four horse": [65535, 0], "are wealthy gentlemen in england who drive four horse passenger": [65535, 0], "wealthy gentlemen in england who drive four horse passenger coaches": [65535, 0], "gentlemen in england who drive four horse passenger coaches twenty": [65535, 0], "in england who drive four horse passenger coaches twenty or": [65535, 0], "england who drive four horse passenger coaches twenty or thirty": [65535, 0], "who drive four horse passenger coaches twenty or thirty miles": [65535, 0], "drive four horse passenger coaches twenty or thirty miles on": [65535, 0], "four horse passenger coaches twenty or thirty miles on a": [65535, 0], "horse passenger coaches twenty or thirty miles on a daily": [65535, 0], "passenger coaches twenty or thirty miles on a daily line": [65535, 0], "coaches twenty or thirty miles on a daily line in": [65535, 0], "twenty or thirty miles on a daily line in the": [65535, 0], "or thirty miles on a daily line in the summer": [65535, 0], "thirty miles on a daily line in the summer because": [65535, 0], "miles on a daily line in the summer because the": [65535, 0], "on a daily line in the summer because the privilege": [65535, 0], "a daily line in the summer because the privilege costs": [65535, 0], "daily line in the summer because the privilege costs them": [65535, 0], "line in the summer because the privilege costs them considerable": [65535, 0], "in the summer because the privilege costs them considerable money": [65535, 0], "the summer because the privilege costs them considerable money but": [65535, 0], "summer because the privilege costs them considerable money but if": [65535, 0], "because the privilege costs them considerable money but if they": [65535, 0], "the privilege costs them considerable money but if they were": [65535, 0], "privilege costs them considerable money but if they were offered": [65535, 0], "costs them considerable money but if they were offered wages": [65535, 0], "them considerable money but if they were offered wages for": [65535, 0], "considerable money but if they were offered wages for the": [65535, 0], "money but if they were offered wages for the service": [65535, 0], "but if they were offered wages for the service that": [65535, 0], "if they were offered wages for the service that would": [65535, 0], "they were offered wages for the service that would turn": [65535, 0], "were offered wages for the service that would turn it": [65535, 0], "offered wages for the service that would turn it into": [65535, 0], "wages for the service that would turn it into work": [65535, 0], "for the service that would turn it into work and": [65535, 0], "the service that would turn it into work and then": [65535, 0], "service that would turn it into work and then they": [65535, 0], "that would turn it into work and then they would": [65535, 0], "would turn it into work and then they would resign": [65535, 0], "turn it into work and then they would resign the": [65535, 0], "it into work and then they would resign the boy": [65535, 0], "into work and then they would resign the boy mused": [65535, 0], "work and then they would resign the boy mused awhile": [65535, 0], "and then they would resign the boy mused awhile over": [65535, 0], "then they would resign the boy mused awhile over the": [65535, 0], "they would resign the boy mused awhile over the substantial": [65535, 0], "would resign the boy mused awhile over the substantial change": [65535, 0], "resign the boy mused awhile over the substantial change which": [65535, 0], "the boy mused awhile over the substantial change which had": [65535, 0], "boy mused awhile over the substantial change which had taken": [65535, 0], "mused awhile over the substantial change which had taken place": [65535, 0], "awhile over the substantial change which had taken place in": [65535, 0], "over the substantial change which had taken place in his": [65535, 0], "the substantial change which had taken place in his worldly": [65535, 0], "substantial change which had taken place in his worldly circumstances": [65535, 0], "change which had taken place in his worldly circumstances and": [65535, 0], "which had taken place in his worldly circumstances and then": [65535, 0], "had taken place in his worldly circumstances and then wended": [65535, 0], "taken place in his worldly circumstances and then wended toward": [65535, 0], "place in his worldly circumstances and then wended toward headquarters": [65535, 0], "in his worldly circumstances and then wended toward headquarters to": [65535, 0], "his worldly circumstances and then wended toward headquarters to report": [65535, 0], "wonder": [13068, 52467], "pulled": [65535, 0], "spectacles": [65535, 0], "pair": [65535, 0], "built": [65535, 0], "stove": [65535, 0], "lids": [65535, 0], "perplexed": [65535, 0], "fiercely": [65535, 0], "loud": [65535, 0], "furniture": [65535, 0], "finish": [65535, 0], "bending": [65535, 0], "punching": [65535, 0], "bed": [11879, 53656], "broom": [65535, 0], "needed": [65535, 0], "breath": [24518, 41017], "punctuate": [65535, 0], "punches": [65535, 0], "resurrected": [65535, 0], "beat": [9332, 56203], "door": [65535, 0], "tomato": [65535, 0], "vines": [65535, 0], "jimpson": [65535, 0], "weeds": [65535, 0], "constituted": [65535, 0], "garden": [65535, 0], "angle": [65535, 0], "calculated": [65535, 0], "shouted": [65535, 0], "y": [65535, 0], "o": [10888, 54647], "u": [65535, 0], "slight": [65535, 0], "noise": [32706, 32829], "seize": [65535, 0], "slack": [65535, 0], "roundabout": [65535, 0], "arrest": [9332, 56203], "flight": [65535, 0], "'a'": [65535, 0], "closet": [65535, 0], "doing": [43635, 21900], "alone": [26155, 39380], "skin": [16338, 49197], "switch": [65535, 0], "hovered": [65535, 0], "peril": [65535, 0], "desperate": [65535, 0], "whirled": [65535, 0], "skirts": [65535, 0], "danger": [65535, 0], "lad": [65535, 0], "scrambled": [65535, 0], "disappeared": [65535, 0], "surprised": [65535, 0], "laugh": [43635, 21900], "hang": [43635, 21900], "tricks": [43635, 21900], "fools": [43635, 21900], "biggest": [65535, 0], "goodness": [65535, 0], "plays": [65535, 0], "alike": [21790, 43745], "'pears": [65535, 0], "torment": [65535, 0], "dander": [65535, 0], "knows": [65535, 0], "duty": [65535, 0], "truth": [13068, 52467], "spare": [21790, 43745], "rod": [65535, 0], "spoil": [65535, 0], "laying": [65535, 0], "sin": [65535, 0], "us": [65535, 0], "scratch": [65535, 0], "laws": [65535, 0], "sister's": [65535, 0], "lash": [65535, 0], "somehow": [65535, 0], "conscience": [65535, 0], "breaks": [65535, 0], "born": [65535, 0], "woman": [6531, 59004], "scripture": [65535, 0], "he'll": [65535, 0], "hookey": [65535, 0], "evening": [65535, 0], "morrow": [32706, 32829], "punish": [65535, 0], "hard": [28026, 37509], "saturdays": [65535, 0], "hates": [65535, 0], "ruination": [65535, 0], "barely": [65535, 0], "season": [16338, 49197], "colored": [65535, 0], "day's": [65535, 0], "wood": [65535, 0], "kindlings": [65535, 0], "supper": [49105, 16430], "adventures": [65535, 0], "fourths": [65535, 0], "younger": [65535, 0], "brother": [25427, 40108], "already": [65535, 0], "picking": [65535, 0], "chips": [65535, 0], "adventurous": [65535, 0], "troublesome": [65535, 0], "ways": [65535, 0], "stealing": [32706, 32829], "sugar": [65535, 0], "opportunity": [65535, 0], "asked": [65535, 0], "questions": [65535, 0], "guile": [65535, 0], "trap": [65535, 0], "damaging": [65535, 0], "revealments": [65535, 0], "simple": [21790, 43745], "souls": [65535, 0], "pet": [65535, 0], "vanity": [65535, 0], "endowed": [65535, 0], "talent": [65535, 0], "mysterious": [65535, 0], "diplomacy": [65535, 0], "loved": [65535, 0], "contemplate": [65535, 0], "transparent": [65535, 0], "devices": [65535, 0], "marvels": [65535, 0], "cunning": [65535, 0], "middling": [65535, 0], "warm": [65535, 0], "scare": [65535, 0], "shot": [65535, 0], "uncomfortable": [65535, 0], "suspicion": [65535, 0], "searched": [65535, 0], "no'm": [65535, 0], "shirt": [65535, 0], "flattered": [65535, 0], "reflect": [65535, 0], "spite": [65535, 0], "forestalled": [65535, 0], "pumped": [65535, 0], "our": [1814, 63721], "mine's": [65535, 0], "damp": [65535, 0], "vexed": [65535, 0], "overlooked": [65535, 0], "circumstantial": [65535, 0], "evidence": [65535, 0], "missed": [65535, 0], "trick": [65535, 0], "undo": [65535, 0], "sewed": [65535, 0], "unbutton": [65535, 0], "opened": [65535, 0], "securely": [65535, 0], "sure": [8710, 56825], "kind": [65535, 0], "singed": [65535, 0], "better'n": [65535, 0], "sorry": [32706, 32829], "sagacity": [65535, 0], "miscarried": [65535, 0], "glad": [49105, 16430], "stumbled": [65535, 0], "obedient": [32706, 32829], "conduct": [65535, 0], "sidney": [65535, 0], "sew": [65535, 0], "siddy": [65535, 0], "needles": [65535, 0], "lapels": [65535, 0], "bound": [10888, 54647], "needle": [65535, 0], "carried": [21790, 43745], "noticed": [65535, 0], "confound": [65535, 0], "sews": [65535, 0], "geeminy": [65535, 0], "t'other": [65535, 0], "lam": [65535, 0], "loathed": [65535, 0], "minutes": [65535, 0], "troubles": [43635, 21900], "whit": [65535, 0], "bitter": [65535, 0], "man's": [65535, 0], "drove": [65535, 0], "men's": [65535, 0], "misfortunes": [32706, 32829], "excitement": [65535, 0], "enterprises": [65535, 0], "valued": [32706, 32829], "novelty": [65535, 0], "whistling": [65535, 0], "acquired": [65535, 0], "practise": [32706, 32829], "undisturbed": [65535, 0], "consisted": [65535, 0], "bird": [65535, 0], "liquid": [65535, 0], "warble": [65535, 0], "produced": [65535, 0], "touching": [32706, 32829], "tongue": [26155, 39380], "roof": [65535, 0], "short": [54578, 10957], "remembers": [65535, 0], "diligence": [65535, 0], "knack": [65535, 0], "harmony": [65535, 0], "gratitude": [65535, 0], "astronomer": [65535, 0], "feels": [65535, 0], "planet": [65535, 0], "doubt": [32706, 32829], "unalloyed": [65535, 0], "concerned": [65535, 0], "advantage": [65535, 0], "evenings": [65535, 0], "checked": [65535, 0], "whistle": [65535, 0], "stranger": [32706, 32829], "larger": [65535, 0], "comer": [65535, 0], "either": [24518, 41017], "sex": [65535, 0], "impressive": [65535, 0], "shabby": [65535, 0], "week": [65535, 0], "simply": [65535, 0], "dainty": [43635, 21900], "closebuttoned": [65535, 0], "cloth": [65535, 0], "natty": [65535, 0], "pantaloons": [65535, 0], "shoes": [65535, 0], "friday": [65535, 0], "necktie": [65535, 0], "citified": [65535, 0], "ate": [65535, 0], "vitals": [65535, 0], "splendid": [65535, 0], "higher": [65535, 0], "finery": [65535, 0], "shabbier": [65535, 0], "outfit": [65535, 0], "grow": [32706, 32829], "neither": [17824, 47711], "spoke": [65535, 0], "sidewise": [65535, 0], "pause": [43635, 21900], "'tisn't": [65535, 0], "'low": [65535, 0], "families": [65535, 0], "same": [10888, 54647], "fix": [65535, 0], "smarty": [65535, 0], "lump": [65535, 0], "knock": [65535, 0], "suck": [65535, 0], "eggs": [65535, 0], "liar": [65535, 0], "aw": [65535, 0], "sass": [65535, 0], "bounce": [65535, 0], "afraid": [65535, 0], "eying": [65535, 0], "sidling": [65535, 0], "shoulder": [32706, 32829], "brace": [65535, 0], "shoving": [65535, 0], "main": [65535, 0], "glowering": [65535, 0], "hate": [65535, 0], "struggling": [65535, 0], "hot": [16338, 49197], "flushed": [65535, 0], "relaxed": [65535, 0], "strain": [65535, 0], "watchful": [65535, 0], "caution": [65535, 0], "coward": [65535, 0], "pup": [65535, 0], "thrash": [65535, 0], "bigger": [65535, 0], "throw": [65535, 0], "brothers": [32706, 32829], "imaginary": [65535, 0], "dust": [65535, 0], "sheep": [32706, 32829], "promptly": [65535, 0], "let's": [16338, 49197], "jingo": [65535, 0], "cents": [65535, 0], "broad": [65535, 0], "coppers": [65535, 0], "derision": [65535, 0], "struck": [65535, 0], "tumbling": [65535, 0], "gripped": [65535, 0], "tugged": [65535, 0], "tore": [65535, 0], "other's": [65535, 0], "punched": [65535, 0], "scratched": [65535, 0], "covered": [65535, 0], "confusion": [32706, 32829], "fog": [65535, 0], "battle": [65535, 0], "seated": [65535, 0], "astride": [65535, 0], "pounding": [65535, 0], "fists": [65535, 0], "holler": [65535, 0], "'nuff": [65535, 0], "struggled": [65535, 0], "crying": [65535, 0], "mainly": [65535, 0], "rage": [9332, 56203], "fooling": [65535, 0], "brushing": [65535, 0], "sobbing": [65535, 0], "snuffling": [65535, 0], "occasionally": [65535, 0], "shaking": [65535, 0], "threatening": [65535, 0], "caught": [65535, 0], "responded": [65535, 0], "jeers": [65535, 0], "started": [65535, 0], "feather": [32706, 32829], "stone": [32706, 32829], "threw": [32706, 32829], "shoulders": [21790, 43745], "antelope": [65535, 0], "chased": [65535, 0], "traitor": [32706, 32829], "thus": [10315, 55220], "lived": [65535, 0], "position": [65535, 0], "daring": [65535, 0], "declined": [65535, 0], "enemy's": [65535, 0], "vicious": [32706, 32829], "ordered": [65535, 0], "ambuscade": [65535, 0], "person": [26155, 39380], "resolution": [65535, 0], "labor": [65535, 0], "became": [16338, 49197], "adamantine": [65535, 0], "firmness": [65535, 0], "answer what's": [65535, 0], "what's gone": [65535, 0], "gone with": [65535, 0], "boy i": [65535, 0], "i wonder": [21790, 43745], "wonder you": [32706, 32829], "answer the": [65535, 0], "lady pulled": [65535, 0], "pulled her": [65535, 0], "her spectacles": [65535, 0], "spectacles down": [65535, 0], "down and": [65535, 0], "looked over": [65535, 0], "over them": [65535, 0], "them about": [65535, 0], "room then": [65535, 0], "put them": [65535, 0], "them up": [65535, 0], "looked out": [65535, 0], "out under": [65535, 0], "under them": [65535, 0], "them she": [65535, 0], "she seldom": [65535, 0], "seldom or": [65535, 0], "or never": [65535, 0], "never looked": [65535, 0], "looked through": [65535, 0], "through them": [65535, 0], "them for": [65535, 0], "for so": [65535, 0], "small a": [65535, 0], "thing as": [65535, 0], "boy they": [65535, 0], "were her": [65535, 0], "her state": [65535, 0], "state pair": [65535, 0], "pair the": [65535, 0], "her heart": [65535, 0], "and were": [65535, 0], "were built": [65535, 0], "built for": [65535, 0], "for style": [65535, 0], "style not": [65535, 0], "not service": [65535, 0], "service she": [65535, 0], "she could": [65535, 0], "have seen": [65535, 0], "seen through": [65535, 0], "a pair": [65535, 0], "pair of": [65535, 0], "of stove": [65535, 0], "stove lids": [65535, 0], "lids just": [65535, 0], "as well": [32706, 32829], "well she": [65535, 0], "she looked": [65535, 0], "looked perplexed": [65535, 0], "perplexed for": [65535, 0], "said not": [65535, 0], "not fiercely": [65535, 0], "fiercely but": [65535, 0], "but still": [65535, 0], "still loud": [65535, 0], "loud enough": [65535, 0], "enough for": [65535, 0], "the furniture": [65535, 0], "furniture to": [65535, 0], "hear well": [65535, 0], "i lay": [65535, 0], "lay if": [65535, 0], "i get": [43635, 21900], "get hold": [65535, 0], "hold of": [65535, 0], "of you": [13068, 52467], "you i'll": [65535, 0], "i'll she": [65535, 0], "she did": [16338, 49197], "not finish": [65535, 0], "finish for": [65535, 0], "for by": [65535, 0], "was bending": [65535, 0], "bending down": [65535, 0], "and punching": [65535, 0], "punching under": [65535, 0], "the bed": [65535, 0], "bed with": [65535, 0], "the broom": [65535, 0], "broom and": [65535, 0], "she needed": [65535, 0], "needed breath": [65535, 0], "breath to": [65535, 0], "to punctuate": [65535, 0], "punctuate the": [65535, 0], "the punches": [65535, 0], "punches with": [65535, 0], "with she": [65535, 0], "she resurrected": [65535, 0], "resurrected nothing": [65535, 0], "cat i": [65535, 0], "never did": [65535, 0], "did see": [32706, 32829], "see the": [16338, 49197], "the beat": [65535, 0], "beat of": [65535, 0], "boy she": [65535, 0], "she went": [65535, 0], "open door": [65535, 0], "door and": [65535, 0], "and stood": [65535, 0], "out among": [65535, 0], "among the": [65535, 0], "the tomato": [65535, 0], "tomato vines": [65535, 0], "vines and": [65535, 0], "and jimpson": [65535, 0], "jimpson weeds": [65535, 0], "weeds that": [65535, 0], "that constituted": [65535, 0], "constituted the": [65535, 0], "the garden": [65535, 0], "garden no": [65535, 0], "no tom": [65535, 0], "tom so": [65535, 0], "she lifted": [65535, 0], "lifted up": [65535, 0], "up her": [65535, 0], "her voice": [65535, 0], "voice at": [65535, 0], "an angle": [65535, 0], "angle calculated": [65535, 0], "calculated for": [65535, 0], "for distance": [65535, 0], "distance and": [65535, 0], "and shouted": [65535, 0], "shouted y": [65535, 0], "y o": [65535, 0], "o u": [65535, 0], "u u": [65535, 0], "u tom": [65535, 0], "tom there": [65535, 0], "a slight": [65535, 0], "slight noise": [65535, 0], "noise behind": [65535, 0], "behind her": [65535, 0], "she turned": [65535, 0], "turned just": [65535, 0], "just in": [65535, 0], "time to": [32706, 32829], "to seize": [65535, 0], "seize a": [65535, 0], "a small": [49105, 16430], "small boy": [65535, 0], "boy by": [65535, 0], "the slack": [65535, 0], "slack of": [65535, 0], "his roundabout": [65535, 0], "roundabout and": [65535, 0], "and arrest": [65535, 0], "arrest his": [65535, 0], "his flight": [65535, 0], "flight there": [65535, 0], "there i": [65535, 0], "i might": [32706, 32829], "might 'a'": [65535, 0], "'a' thought": [65535, 0], "that closet": [65535, 0], "closet what": [65535, 0], "what you": [32706, 32829], "been doing": [65535, 0], "doing in": [65535, 0], "in there": [65535, 0], "there nothing": [65535, 0], "nothing nothing": [65535, 0], "nothing look": [65535, 0], "look at": [65535, 0], "at your": [21790, 43745], "your hands": [21790, 43745], "and look": [65535, 0], "mouth what": [65535, 0], "know aunt": [65535, 0], "aunt well": [65535, 0], "it's jam": [65535, 0], "jam that's": [65535, 0], "that's what": [65535, 0], "what it": [65535, 0], "is forty": [65535, 0], "forty times": [65535, 0], "times i've": [65535, 0], "i've said": [65535, 0], "said if": [65535, 0], "you didn't": [65535, 0], "didn't let": [65535, 0], "let that": [65535, 0], "that jam": [65535, 0], "jam alone": [65535, 0], "alone i'd": [65535, 0], "i'd skin": [65535, 0], "skin you": [65535, 0], "you hand": [65535, 0], "hand me": [65535, 0], "me that": [10888, 54647], "that switch": [65535, 0], "switch the": [65535, 0], "the switch": [65535, 0], "switch hovered": [65535, 0], "hovered in": [65535, 0], "air the": [65535, 0], "the peril": [65535, 0], "peril was": [65535, 0], "was desperate": [65535, 0], "desperate my": [65535, 0], "my look": [65535, 0], "look behind": [65535, 0], "behind you": [65535, 0], "you aunt": [65535, 0], "aunt the": [65535, 0], "lady whirled": [65535, 0], "whirled round": [65535, 0], "round and": [65535, 0], "and snatched": [65535, 0], "snatched her": [65535, 0], "her skirts": [65535, 0], "skirts out": [65535, 0], "of danger": [65535, 0], "danger the": [65535, 0], "the lad": [65535, 0], "lad fled": [65535, 0], "fled on": [65535, 0], "instant scrambled": [65535, 0], "scrambled up": [65535, 0], "the high": [65535, 0], "high board": [65535, 0], "and disappeared": [65535, 0], "disappeared over": [65535, 0], "it his": [65535, 0], "polly stood": [65535, 0], "stood surprised": [65535, 0], "surprised a": [65535, 0], "then broke": [65535, 0], "broke into": [65535, 0], "gentle laugh": [65535, 0], "laugh hang": [65535, 0], "hang the": [65535, 0], "boy can't": [65535, 0], "can't i": [65535, 0], "never learn": [65535, 0], "learn anything": [65535, 0], "anything ain't": [65535, 0], "ain't he": [65535, 0], "played me": [65535, 0], "me tricks": [65535, 0], "tricks enough": [65535, 0], "enough like": [65535, 0], "like that": [65535, 0], "that for": [65535, 0], "be looking": [65535, 0], "looking out": [65535, 0], "out for": [65535, 0], "time but": [65535, 0], "old fools": [65535, 0], "fools is": [65535, 0], "the biggest": [65535, 0], "biggest fools": [65535, 0], "fools there": [65535, 0], "is can't": [65535, 0], "can't learn": [65535, 0], "learn an": [65535, 0], "an old": [65535, 0], "old dog": [65535, 0], "dog new": [65535, 0], "new tricks": [65535, 0], "tricks as": [65535, 0], "the saying": [65535, 0], "saying is": [65535, 0], "is but": [65535, 0], "but my": [32706, 32829], "my goodness": [65535, 0], "goodness he": [65535, 0], "never plays": [65535, 0], "plays them": [65535, 0], "them alike": [65535, 0], "alike two": [65535, 0], "two days": [65535, 0], "days and": [65535, 0], "and how": [32706, 32829], "how is": [32706, 32829], "body to": [65535, 0], "know what's": [65535, 0], "what's coming": [65535, 0], "coming he": [65535, 0], "he 'pears": [65535, 0], "'pears to": [65535, 0], "know just": [65535, 0], "just how": [65535, 0], "long he": [65535, 0], "he can": [52389, 13146], "can torment": [65535, 0], "torment me": [65535, 0], "me before": [65535, 0], "before i": [32706, 32829], "get my": [65535, 0], "my dander": [65535, 0], "dander up": [65535, 0], "he knows": [65535, 0], "knows if": [65535, 0], "can make": [65535, 0], "make out": [65535, 0], "to put": [32706, 32829], "put me": [32706, 32829], "me off": [65535, 0], "off for": [65535, 0], "minute or": [65535, 0], "or make": [65535, 0], "me laugh": [65535, 0], "laugh it's": [65535, 0], "it's all": [65535, 0], "all down": [65535, 0], "down again": [65535, 0], "again and": [65535, 0], "i can't": [65535, 0], "can't hit": [65535, 0], "hit him": [65535, 0], "him a": [54578, 10957], "a lick": [65535, 0], "lick i": [65535, 0], "i ain't": [65535, 0], "ain't doing": [65535, 0], "doing my": [65535, 0], "my duty": [65535, 0], "duty by": [65535, 0], "boy and": [52389, 13146], "and that's": [65535, 0], "lord's truth": [65535, 0], "truth goodness": [65535, 0], "goodness knows": [65535, 0], "knows spare": [65535, 0], "spare the": [65535, 0], "the rod": [65535, 0], "rod and": [65535, 0], "and spoil": [65535, 0], "spoil the": [65535, 0], "the child": [65535, 0], "child as": [65535, 0], "good book": [65535, 0], "book says": [65535, 0], "says i'm": [65535, 0], "i'm a": [65535, 0], "a laying": [65535, 0], "laying up": [65535, 0], "up sin": [65535, 0], "sin and": [65535, 0], "and suffering": [65535, 0], "suffering for": [65535, 0], "for us": [65535, 0], "us both": [65535, 0], "both i": [65535, 0], "know he's": [65535, 0], "he's full": [65535, 0], "full of": [53583, 11952], "old scratch": [65535, 0], "scratch but": [65535, 0], "but laws": [65535, 0], "laws a": [65535, 0], "a me": [65535, 0], "me he's": [65535, 0], "he's my": [65535, 0], "own dead": [65535, 0], "dead sister's": [65535, 0], "sister's boy": [65535, 0], "boy poor": [65535, 0], "poor thing": [65535, 0], "ain't got": [65535, 0], "heart to": [32706, 32829], "to lash": [65535, 0], "lash him": [65535, 0], "him somehow": [65535, 0], "somehow every": [65535, 0], "time i": [43635, 21900], "i let": [32706, 32829], "him off": [65535, 0], "off my": [65535, 0], "my conscience": [65535, 0], "conscience does": [65535, 0], "does hurt": [65535, 0], "hurt me": [65535, 0], "and every": [65535, 0], "i hit": [65535, 0], "him my": [65535, 0], "heart most": [65535, 0], "most breaks": [65535, 0], "breaks well": [65535, 0], "well a": [65535, 0], "a well": [65535, 0], "well man": [65535, 0], "man that": [21790, 43745], "that is": [37388, 28147], "is born": [65535, 0], "born of": [65535, 0], "of woman": [65535, 0], "woman is": [65535, 0], "is of": [65535, 0], "of few": [65535, 0], "few days": [65535, 0], "and full": [65535, 0], "of trouble": [65535, 0], "trouble as": [65535, 0], "the scripture": [65535, 0], "scripture says": [65535, 0], "says and": [65535, 0], "so he'll": [65535, 0], "he'll play": [65535, 0], "play hookey": [65535, 0], "hookey this": [65535, 0], "this evening": [65535, 0], "evening and": [65535, 0], "and i'll": [65535, 0], "i'll just": [65535, 0], "just be": [65535, 0], "be obliged": [65535, 0], "him work": [65535, 0], "work to": [65535, 0], "to morrow": [32706, 32829], "morrow to": [65535, 0], "to punish": [65535, 0], "punish him": [65535, 0], "him it's": [65535, 0], "it's mighty": [65535, 0], "mighty hard": [65535, 0], "hard to": [65535, 0], "work saturdays": [65535, 0], "saturdays when": [65535, 0], "when all": [65535, 0], "boys is": [65535, 0], "is having": [65535, 0], "having holiday": [65535, 0], "holiday but": [65535, 0], "he hates": [65535, 0], "hates work": [65535, 0], "work more": [65535, 0], "more than": [65535, 0], "than he": [65535, 0], "hates anything": [65535, 0], "else and": [65535, 0], "and i've": [65535, 0], "i've got": [65535, 0], "do some": [65535, 0], "some of": [39262, 26273], "by him": [32706, 32829], "him or": [65535, 0], "or i'll": [65535, 0], "be the": [43635, 21900], "the ruination": [65535, 0], "ruination of": [65535, 0], "child tom": [65535, 0], "tom did": [65535, 0], "did play": [65535, 0], "hookey and": [65535, 0], "a very": [49105, 16430], "very good": [65535, 0], "good time": [21790, 43745], "back home": [65535, 0], "home barely": [65535, 0], "barely in": [65535, 0], "in season": [65535, 0], "season to": [65535, 0], "to help": [65535, 0], "help jim": [65535, 0], "jim the": [65535, 0], "small colored": [65535, 0], "colored boy": [65535, 0], "boy saw": [65535, 0], "saw next": [65535, 0], "next day's": [65535, 0], "day's wood": [65535, 0], "wood and": [65535, 0], "the kindlings": [65535, 0], "kindlings before": [65535, 0], "before supper": [65535, 0], "supper at": [65535, 0], "at least": [65535, 0], "least he": [65535, 0], "was there": [21790, 43745], "there in": [65535, 0], "to tell": [43635, 21900], "tell his": [32706, 32829], "his adventures": [65535, 0], "adventures to": [65535, 0], "to jim": [65535, 0], "jim while": [65535, 0], "while jim": [65535, 0], "jim did": [65535, 0], "did three": [65535, 0], "three fourths": [65535, 0], "fourths of": [65535, 0], "work tom's": [65535, 0], "tom's younger": [65535, 0], "younger brother": [65535, 0], "brother or": [65535, 0], "or rather": [32706, 32829], "rather half": [65535, 0], "half brother": [65535, 0], "brother sid": [65535, 0], "sid was": [65535, 0], "was already": [65535, 0], "already through": [65535, 0], "his part": [65535, 0], "work picking": [65535, 0], "picking up": [65535, 0], "up chips": [65535, 0], "chips for": [65535, 0], "a quiet": [65535, 0], "quiet boy": [65535, 0], "no adventurous": [65535, 0], "adventurous troublesome": [65535, 0], "troublesome ways": [65535, 0], "ways while": [65535, 0], "while tom": [65535, 0], "eating his": [65535, 0], "his supper": [65535, 0], "supper and": [65535, 0], "and stealing": [65535, 0], "stealing sugar": [65535, 0], "sugar as": [65535, 0], "as opportunity": [65535, 0], "opportunity offered": [65535, 0], "offered aunt": [65535, 0], "polly asked": [65535, 0], "asked him": [65535, 0], "him questions": [65535, 0], "questions that": [65535, 0], "that were": [65535, 0], "were full": [65535, 0], "of guile": [65535, 0], "guile and": [65535, 0], "and very": [65535, 0], "very deep": [65535, 0], "deep for": [65535, 0], "for she": [49105, 16430], "she wanted": [65535, 0], "to trap": [65535, 0], "trap him": [65535, 0], "him into": [65535, 0], "into damaging": [65535, 0], "damaging revealments": [65535, 0], "revealments like": [65535, 0], "like many": [65535, 0], "many other": [65535, 0], "other simple": [65535, 0], "simple hearted": [65535, 0], "hearted souls": [65535, 0], "souls it": [65535, 0], "was her": [65535, 0], "her pet": [65535, 0], "pet vanity": [65535, 0], "vanity to": [65535, 0], "to believe": [65535, 0], "believe she": [65535, 0], "was endowed": [65535, 0], "endowed with": [65535, 0], "a talent": [65535, 0], "talent for": [65535, 0], "for dark": [65535, 0], "and mysterious": [65535, 0], "mysterious diplomacy": [65535, 0], "diplomacy and": [65535, 0], "she loved": [65535, 0], "loved to": [65535, 0], "to contemplate": [65535, 0], "contemplate her": [65535, 0], "her most": [65535, 0], "most transparent": [65535, 0], "transparent devices": [65535, 0], "devices as": [65535, 0], "as marvels": [65535, 0], "marvels of": [65535, 0], "of low": [65535, 0], "low cunning": [65535, 0], "cunning said": [65535, 0], "said she": [65535, 0], "she tom": [65535, 0], "tom it": [65535, 0], "was middling": [65535, 0], "middling warm": [65535, 0], "warm in": [65535, 0], "school warn't": [65535, 0], "warn't it": [65535, 0], "it yes'm": [65535, 0], "yes'm powerful": [65535, 0], "powerful warm": [65535, 0], "warm warn't": [65535, 0], "yes'm didn't": [65535, 0], "you want": [65535, 0], "go in": [32706, 32829], "swimming tom": [65535, 0], "tom a": [65535, 0], "a scare": [65535, 0], "scare shot": [65535, 0], "shot through": [65535, 0], "through tom": [65535, 0], "touch of": [65535, 0], "of uncomfortable": [65535, 0], "uncomfortable suspicion": [65535, 0], "suspicion he": [65535, 0], "he searched": [65535, 0], "searched aunt": [65535, 0], "polly's face": [65535, 0], "it told": [65535, 0], "told him": [65535, 0], "nothing so": [65535, 0], "said no'm": [65535, 0], "no'm well": [65535, 0], "well not": [65535, 0], "not very": [65535, 0], "very much": [65535, 0], "lady reached": [65535, 0], "reached out": [65535, 0], "out her": [65535, 0], "and felt": [65535, 0], "felt tom's": [65535, 0], "tom's shirt": [65535, 0], "shirt and": [65535, 0], "said but": [65535, 0], "ain't too": [65535, 0], "too warm": [65535, 0], "warm now": [65535, 0], "now though": [65535, 0], "though and": [65535, 0], "it flattered": [65535, 0], "flattered her": [65535, 0], "her to": [65535, 0], "to reflect": [65535, 0], "reflect that": [65535, 0], "that she": [39262, 26273], "she had": [60476, 5059], "discovered that": [65535, 0], "the shirt": [65535, 0], "shirt was": [65535, 0], "was dry": [65535, 0], "dry without": [65535, 0], "without anybody": [65535, 0], "anybody knowing": [65535, 0], "knowing that": [65535, 0], "that that": [32706, 32829], "was what": [65535, 0], "had in": [32706, 32829], "her mind": [65535, 0], "mind but": [65535, 0], "in spite": [65535, 0], "spite of": [65535, 0], "knew where": [65535, 0], "wind lay": [65535, 0], "lay now": [65535, 0], "he forestalled": [65535, 0], "forestalled what": [65535, 0], "what might": [65535, 0], "next move": [65535, 0], "move some": [65535, 0], "of us": [65535, 0], "us pumped": [65535, 0], "pumped on": [65535, 0], "on our": [32706, 32829], "our heads": [65535, 0], "heads mine's": [65535, 0], "mine's damp": [65535, 0], "damp yet": [65535, 0], "yet see": [65535, 0], "was vexed": [65535, 0], "vexed to": [65535, 0], "think she": [65535, 0], "had overlooked": [65535, 0], "overlooked that": [65535, 0], "that bit": [65535, 0], "of circumstantial": [65535, 0], "circumstantial evidence": [65535, 0], "evidence and": [65535, 0], "and missed": [65535, 0], "missed a": [65535, 0], "a trick": [65535, 0], "trick then": [65535, 0], "new inspiration": [65535, 0], "inspiration tom": [65535, 0], "didn't have": [65535, 0], "to undo": [65535, 0], "undo your": [65535, 0], "your shirt": [65535, 0], "shirt collar": [65535, 0], "collar where": [65535, 0], "where i": [21790, 43745], "i sewed": [65535, 0], "sewed it": [65535, 0], "to pump": [65535, 0], "pump on": [65535, 0], "on your": [21790, 43745], "your head": [65535, 0], "head did": [65535, 0], "you unbutton": [65535, 0], "unbutton your": [65535, 0], "the trouble": [65535, 0], "trouble vanished": [65535, 0], "vanished out": [65535, 0], "of tom's": [65535, 0], "tom's face": [65535, 0], "face he": [65535, 0], "he opened": [65535, 0], "opened his": [65535, 0], "his jacket": [65535, 0], "jacket his": [65535, 0], "his shirt": [65535, 0], "collar was": [65535, 0], "was securely": [65535, 0], "securely sewed": [65535, 0], "sewed bother": [65535, 0], "bother well": [65535, 0], "well go": [65535, 0], "'long with": [65535, 0], "you i'd": [65535, 0], "i'd made": [65535, 0], "made sure": [65535, 0], "sure you'd": [65535, 0], "you'd played": [65535, 0], "played hookey": [65535, 0], "and been": [65535, 0], "swimming but": [65535, 0], "forgive ye": [65535, 0], "ye tom": [65535, 0], "reckon you're": [65535, 0], "you're a": [65535, 0], "a kind": [65535, 0], "kind of": [65535, 0], "a singed": [65535, 0], "singed cat": [65535, 0], "cat as": [65535, 0], "is better'n": [65535, 0], "better'n you": [65535, 0], "you look": [65535, 0], "look this": [65535, 0], "was half": [65535, 0], "half sorry": [65535, 0], "sorry her": [65535, 0], "her sagacity": [65535, 0], "sagacity had": [65535, 0], "had miscarried": [65535, 0], "miscarried and": [65535, 0], "and half": [65535, 0], "half glad": [65535, 0], "glad that": [65535, 0], "that tom": [65535, 0], "had stumbled": [65535, 0], "stumbled into": [65535, 0], "into obedient": [65535, 0], "obedient conduct": [65535, 0], "conduct for": [65535, 0], "for once": [65535, 0], "once but": [65535, 0], "but sidney": [65535, 0], "sidney said": [65535, 0], "said well": [65535, 0], "well now": [65535, 0], "now if": [65535, 0], "i didn't": [65535, 0], "didn't think": [65535, 0], "think you": [65535, 0], "you sewed": [65535, 0], "sewed his": [65535, 0], "his collar": [65535, 0], "collar with": [65535, 0], "with white": [65535, 0], "white thread": [65535, 0], "thread but": [65535, 0], "but it's": [65535, 0], "it's black": [65535, 0], "black why": [65535, 0], "i did": [5024, 60511], "did sew": [65535, 0], "sew it": [65535, 0], "white tom": [65535, 0], "tom but": [65535, 0], "not wait": [65535, 0], "wait for": [65535, 0], "rest as": [65535, 0], "went out": [65535, 0], "the door": [65535, 0], "door he": [65535, 0], "said siddy": [65535, 0], "siddy i'll": [65535, 0], "i'll lick": [65535, 0], "lick you": [65535, 0], "you for": [10888, 54647], "safe place": [32706, 32829], "place tom": [65535, 0], "tom examined": [65535, 0], "examined two": [65535, 0], "two large": [65535, 0], "large needles": [65535, 0], "needles which": [65535, 0], "which were": [65535, 0], "were thrust": [65535, 0], "thrust into": [65535, 0], "the lapels": [65535, 0], "lapels of": [65535, 0], "jacket and": [65535, 0], "had thread": [65535, 0], "thread bound": [65535, 0], "bound about": [65535, 0], "about them": [65535, 0], "them one": [65535, 0], "one needle": [65535, 0], "needle carried": [65535, 0], "carried white": [65535, 0], "other black": [65535, 0], "black he": [65535, 0], "said she'd": [65535, 0], "she'd never": [65535, 0], "never noticed": [65535, 0], "noticed if": [65535, 0], "it hadn't": [65535, 0], "hadn't been": [65535, 0], "been for": [65535, 0], "for sid": [65535, 0], "sid confound": [65535, 0], "confound it": [65535, 0], "it sometimes": [65535, 0], "sometimes she": [65535, 0], "she sews": [65535, 0], "sews it": [65535, 0], "white and": [65535, 0], "and sometimes": [65535, 0], "with black": [65535, 0], "black i": [65535, 0], "wish to": [65535, 0], "to geeminy": [65535, 0], "geeminy she'd": [65535, 0], "she'd stick": [65535, 0], "stick to": [65535, 0], "to one": [65535, 0], "one or": [65535, 0], "or t'other": [65535, 0], "t'other i": [65535, 0], "can't keep": [65535, 0], "keep the": [65535, 0], "the run": [65535, 0], "run of": [65535, 0], "'em but": [65535, 0], "i'll lam": [65535, 0], "lam sid": [65535, 0], "sid for": [65535, 0], "that i'll": [65535, 0], "learn him": [65535, 0], "not the": [65535, 0], "village he": [65535, 0], "boy very": [65535, 0], "very well": [65535, 0], "well though": [65535, 0], "and loathed": [65535, 0], "loathed him": [65535, 0], "him within": [65535, 0], "within two": [65535, 0], "two minutes": [65535, 0], "minutes or": [65535, 0], "or even": [65535, 0], "even less": [65535, 0], "less he": [65535, 0], "had forgotten": [65535, 0], "forgotten all": [65535, 0], "all his": [65535, 0], "his troubles": [65535, 0], "troubles not": [65535, 0], "not because": [65535, 0], "because his": [65535, 0], "troubles were": [65535, 0], "were one": [65535, 0], "one whit": [65535, 0], "whit less": [65535, 0], "less heavy": [65535, 0], "and bitter": [65535, 0], "bitter to": [65535, 0], "him than": [65535, 0], "a man's": [65535, 0], "man's are": [65535, 0], "are to": [65535, 0], "man but": [65535, 0], "but because": [65535, 0], "because a": [65535, 0], "and powerful": [65535, 0], "powerful interest": [65535, 0], "interest bore": [65535, 0], "bore them": [65535, 0], "them down": [65535, 0], "and drove": [65535, 0], "drove them": [65535, 0], "them out": [65535, 0], "mind for": [65535, 0], "time just": [65535, 0], "as men's": [65535, 0], "men's misfortunes": [65535, 0], "misfortunes are": [65535, 0], "are forgotten": [65535, 0], "forgotten in": [65535, 0], "the excitement": [65535, 0], "excitement of": [65535, 0], "new enterprises": [65535, 0], "enterprises this": [65535, 0], "this new": [65535, 0], "new interest": [65535, 0], "interest was": [65535, 0], "a valued": [65535, 0], "valued novelty": [65535, 0], "novelty in": [65535, 0], "in whistling": [65535, 0], "whistling which": [65535, 0], "had just": [65535, 0], "just acquired": [65535, 0], "acquired from": [65535, 0], "a negro": [65535, 0], "negro and": [65535, 0], "suffering to": [65535, 0], "to practise": [65535, 0], "practise it": [65535, 0], "it undisturbed": [65535, 0], "undisturbed it": [65535, 0], "it consisted": [65535, 0], "consisted in": [65535, 0], "peculiar bird": [65535, 0], "bird like": [65535, 0], "like turn": [65535, 0], "turn a": [65535, 0], "of liquid": [65535, 0], "liquid warble": [65535, 0], "warble produced": [65535, 0], "produced by": [65535, 0], "by touching": [65535, 0], "touching the": [65535, 0], "the tongue": [65535, 0], "tongue to": [65535, 0], "the roof": [65535, 0], "roof of": [65535, 0], "the mouth": [65535, 0], "at short": [65535, 0], "short intervals": [65535, 0], "intervals in": [65535, 0], "music the": [65535, 0], "the reader": [65535, 0], "reader probably": [65535, 0], "probably remembers": [65535, 0], "remembers how": [65535, 0], "he has": [65535, 0], "has ever": [65535, 0], "ever been": [65535, 0], "boy diligence": [65535, 0], "diligence and": [65535, 0], "and attention": [65535, 0], "attention soon": [65535, 0], "soon gave": [65535, 0], "the knack": [65535, 0], "knack of": [65535, 0], "strode down": [65535, 0], "his mouth": [65535, 0], "mouth full": [65535, 0], "of harmony": [65535, 0], "harmony and": [65535, 0], "soul full": [65535, 0], "of gratitude": [65535, 0], "gratitude he": [65535, 0], "he felt": [65535, 0], "felt much": [65535, 0], "as an": [65535, 0], "an astronomer": [65535, 0], "astronomer feels": [65535, 0], "feels who": [65535, 0], "who has": [65535, 0], "has discovered": [65535, 0], "new planet": [65535, 0], "planet no": [65535, 0], "no doubt": [65535, 0], "doubt as": [65535, 0], "far as": [65535, 0], "as strong": [65535, 0], "strong deep": [65535, 0], "deep unalloyed": [65535, 0], "unalloyed pleasure": [65535, 0], "pleasure is": [65535, 0], "is concerned": [65535, 0], "concerned the": [65535, 0], "the advantage": [65535, 0], "advantage was": [65535, 0], "was with": [32706, 32829], "boy not": [65535, 0], "the astronomer": [65535, 0], "astronomer the": [65535, 0], "summer evenings": [65535, 0], "evenings were": [65535, 0], "were long": [65535, 0], "long it": [65535, 0], "not dark": [65535, 0], "dark yet": [65535, 0], "yet presently": [65535, 0], "presently tom": [65535, 0], "tom checked": [65535, 0], "checked his": [65535, 0], "his whistle": [65535, 0], "whistle a": [65535, 0], "a stranger": [32706, 32829], "stranger was": [65535, 0], "was before": [65535, 0], "a shade": [65535, 0], "shade larger": [65535, 0], "larger than": [65535, 0], "than himself": [65535, 0], "himself a": [65535, 0], "new comer": [65535, 0], "comer of": [65535, 0], "of any": [65535, 0], "any age": [65535, 0], "age or": [65535, 0], "or either": [65535, 0], "either sex": [65535, 0], "sex was": [65535, 0], "an impressive": [65535, 0], "impressive curiosity": [65535, 0], "curiosity in": [65535, 0], "poor little": [65535, 0], "little shabby": [65535, 0], "shabby village": [65535, 0], "village of": [65535, 0], "of st": [65535, 0], "petersburg this": [65535, 0], "this boy": [65535, 0], "boy was": [65535, 0], "was well": [65535, 0], "well dressed": [65535, 0], "dressed too": [65535, 0], "too well": [32706, 32829], "dressed on": [65535, 0], "a week": [65535, 0], "week day": [65535, 0], "day this": [32706, 32829], "was simply": [65535, 0], "simply astounding": [65535, 0], "astounding his": [65535, 0], "his cap": [65535, 0], "cap was": [65535, 0], "a dainty": [65535, 0], "dainty thing": [65535, 0], "thing his": [32706, 32829], "his closebuttoned": [65535, 0], "closebuttoned blue": [65535, 0], "blue cloth": [65535, 0], "cloth roundabout": [65535, 0], "roundabout was": [65535, 0], "was new": [65535, 0], "and natty": [65535, 0], "natty and": [65535, 0], "so were": [65535, 0], "were his": [65535, 0], "his pantaloons": [65535, 0], "pantaloons he": [65535, 0], "had shoes": [65535, 0], "shoes on": [65535, 0], "only friday": [65535, 0], "friday he": [65535, 0], "even wore": [65535, 0], "wore a": [65535, 0], "a necktie": [65535, 0], "necktie a": [65535, 0], "a bright": [65535, 0], "bright bit": [65535, 0], "of ribbon": [65535, 0], "ribbon he": [65535, 0], "a citified": [65535, 0], "citified air": [65535, 0], "air about": [65535, 0], "about him": [65535, 0], "that ate": [65535, 0], "ate into": [65535, 0], "into tom's": [65535, 0], "tom's vitals": [65535, 0], "vitals the": [65535, 0], "the more": [32706, 32829], "more tom": [65535, 0], "tom stared": [65535, 0], "stared at": [65535, 0], "the splendid": [65535, 0], "splendid marvel": [65535, 0], "marvel the": [65535, 0], "the higher": [65535, 0], "higher he": [65535, 0], "he turned": [65535, 0], "turned up": [65535, 0], "nose at": [65535, 0], "his finery": [65535, 0], "finery and": [65535, 0], "the shabbier": [65535, 0], "shabbier and": [65535, 0], "and shabbier": [65535, 0], "shabbier his": [65535, 0], "own outfit": [65535, 0], "outfit seemed": [65535, 0], "to grow": [65535, 0], "grow neither": [65535, 0], "neither boy": [65535, 0], "boy spoke": [65535, 0], "spoke if": [65535, 0], "if one": [65535, 0], "one moved": [65535, 0], "moved the": [65535, 0], "other moved": [65535, 0], "moved but": [65535, 0], "but only": [65535, 0], "only sidewise": [65535, 0], "sidewise in": [65535, 0], "circle they": [65535, 0], "they kept": [65535, 0], "kept face": [65535, 0], "to face": [65535, 0], "and eye": [65535, 0], "to eye": [65535, 0], "eye all": [65535, 0], "time finally": [65535, 0], "finally tom": [65535, 0], "can lick": [65535, 0], "see you": [32706, 32829], "you try": [65535, 0], "no you": [65535, 0], "can't either": [65535, 0], "either yes": [65535, 0], "can no": [65535, 0], "can you": [16338, 49197], "can't can": [65535, 0], "can can't": [65535, 0], "can't an": [65535, 0], "an uncomfortable": [65535, 0], "uncomfortable pause": [65535, 0], "pause then": [65535, 0], "then tom": [65535, 0], "said what's": [65535, 0], "name 'tisn't": [65535, 0], "'tisn't any": [65535, 0], "any of": [65535, 0], "of your": [16338, 49197], "your business": [65535, 0], "business maybe": [65535, 0], "maybe well": [65535, 0], "i 'low": [65535, 0], "'low i'll": [65535, 0], "i'll make": [65535, 0], "make it": [43635, 21900], "it my": [32706, 32829], "my business": [65535, 0], "business well": [65535, 0], "say much": [65535, 0], "much i": [65535, 0], "will much": [65535, 0], "much much": [65535, 0], "much there": [65535, 0], "now oh": [65535, 0], "you think": [65535, 0], "think you're": [65535, 0], "you're mighty": [65535, 0], "mighty smart": [65535, 0], "smart don't": [65535, 0], "you i": [26155, 39380], "could lick": [65535, 0], "you with": [21790, 43745], "one hand": [65535, 0], "hand tied": [65535, 0], "tied behind": [65535, 0], "behind me": [65535, 0], "me if": [32706, 32829], "you do": [50929, 14606], "it you": [32706, 32829], "say you": [16338, 49197], "will if": [65535, 0], "you fool": [65535, 0], "fool with": [65535, 0], "with me": [4082, 61453], "oh yes": [32706, 32829], "yes i've": [65535, 0], "seen whole": [65535, 0], "whole families": [65535, 0], "families in": [65535, 0], "the same": [13068, 52467], "same fix": [65535, 0], "fix smarty": [65535, 0], "smarty you": [65535, 0], "you're some": [65535, 0], "some now": [65535, 0], "oh what": [65535, 0], "a hat": [65535, 0], "hat you": [65535, 0], "can lump": [65535, 0], "lump that": [65535, 0], "that hat": [65535, 0], "hat if": [65535, 0], "don't like": [65535, 0], "i dare": [43635, 21900], "dare you": [65535, 0], "you to": [13068, 52467], "to knock": [65535, 0], "knock it": [65535, 0], "off and": [65535, 0], "and anybody": [65535, 0], "anybody that'll": [65535, 0], "that'll take": [65535, 0], "a dare": [65535, 0], "dare will": [65535, 0], "will suck": [65535, 0], "suck eggs": [65535, 0], "eggs you're": [65535, 0], "a liar": [65535, 0], "liar you're": [65535, 0], "you're another": [65535, 0], "another you're": [65535, 0], "a fighting": [65535, 0], "fighting liar": [65535, 0], "liar and": [65535, 0], "and dasn't": [65535, 0], "dasn't take": [65535, 0], "up aw": [65535, 0], "aw take": [65535, 0], "a walk": [65535, 0], "walk say": [65535, 0], "say if": [65535, 0], "me much": [65535, 0], "more of": [32706, 32829], "your sass": [65535, 0], "sass i'll": [65535, 0], "i'll take": [65535, 0], "and bounce": [65535, 0], "bounce a": [65535, 0], "rock off'n": [65535, 0], "off'n your": [65535, 0], "head oh": [65535, 0], "oh of": [65535, 0], "will well": [43635, 21900], "then what": [65535, 0], "you keep": [65535, 0], "keep saying": [65535, 0], "saying you": [65535, 0], "will for": [32706, 32829], "for why": [32706, 32829], "it's because": [65535, 0], "because you're": [65535, 0], "you're afraid": [65535, 0], "afraid i": [65535, 0], "ain't afraid": [65535, 0], "afraid you": [65535, 0], "you are": [7684, 57851], "are i": [65535, 0], "are another": [65535, 0], "another pause": [65535, 0], "pause and": [65535, 0], "more eying": [65535, 0], "eying and": [65535, 0], "and sidling": [65535, 0], "sidling around": [65535, 0], "around each": [65535, 0], "each other": [65535, 0], "other presently": [65535, 0], "presently they": [65535, 0], "were shoulder": [65535, 0], "shoulder to": [65535, 0], "to shoulder": [65535, 0], "shoulder tom": [65535, 0], "said get": [65535, 0], "get away": [65535, 0], "from here": [65535, 0], "here go": [65535, 0], "go away": [65535, 0], "away yourself": [65535, 0], "yourself i": [65535, 0], "won't either": [65535, 0], "either so": [65535, 0], "so they": [65535, 0], "they stood": [65535, 0], "stood each": [65535, 0], "each with": [65535, 0], "a foot": [43635, 21900], "foot placed": [65535, 0], "placed at": [65535, 0], "angle as": [65535, 0], "a brace": [65535, 0], "brace and": [65535, 0], "and both": [65535, 0], "both shoving": [65535, 0], "shoving with": [65535, 0], "with might": [65535, 0], "might and": [65535, 0], "and main": [65535, 0], "main and": [65535, 0], "and glowering": [65535, 0], "glowering at": [65535, 0], "at each": [65535, 0], "other with": [65535, 0], "with hate": [65535, 0], "hate but": [65535, 0], "but neither": [32706, 32829], "neither could": [65535, 0], "could get": [65535, 0], "get an": [65535, 0], "an advantage": [65535, 0], "advantage after": [65535, 0], "after struggling": [65535, 0], "struggling till": [65535, 0], "till both": [65535, 0], "both were": [65535, 0], "were hot": [65535, 0], "hot and": [65535, 0], "and flushed": [65535, 0], "flushed each": [65535, 0], "each relaxed": [65535, 0], "relaxed his": [65535, 0], "his strain": [65535, 0], "strain with": [65535, 0], "with watchful": [65535, 0], "watchful caution": [65535, 0], "caution and": [65535, 0], "said you're": [65535, 0], "a coward": [65535, 0], "coward and": [65535, 0], "a pup": [65535, 0], "pup i'll": [65535, 0], "i'll tell": [65535, 0], "tell my": [65535, 0], "my big": [65535, 0], "big brother": [65535, 0], "brother on": [65535, 0], "on you": [32706, 32829], "you and": [13068, 52467], "can thrash": [65535, 0], "thrash you": [65535, 0], "his little": [65535, 0], "little finger": [65535, 0], "him do": [65535, 0], "too what": [65535, 0], "do i": [43635, 21900], "i care": [65535, 0], "care for": [65535, 0], "for your": [21790, 43745], "your big": [65535, 0], "brother i've": [65535, 0], "a brother": [43635, 21900], "brother that's": [65535, 0], "that's bigger": [65535, 0], "bigger than": [65535, 0], "he is": [10050, 55485], "and what's": [32706, 32829], "what's more": [65535, 0], "more he": [65535, 0], "can throw": [65535, 0], "throw him": [65535, 0], "him over": [65535, 0], "over that": [65535, 0], "that fence": [65535, 0], "fence too": [65535, 0], "too both": [65535, 0], "both brothers": [65535, 0], "brothers were": [65535, 0], "were imaginary": [65535, 0], "imaginary that's": [65535, 0], "lie your": [65535, 0], "your saying": [65535, 0], "saying so": [65535, 0], "so don't": [65535, 0], "don't make": [65535, 0], "drew a": [65535, 0], "a line": [65535, 0], "the dust": [65535, 0], "dust with": [65535, 0], "his big": [65535, 0], "big toe": [65535, 0], "toe and": [65535, 0], "to step": [65535, 0], "step over": [65535, 0], "that and": [32706, 32829], "you till": [32706, 32829], "till you": [32706, 32829], "can't stand": [65535, 0], "stand up": [65535, 0], "up anybody": [65535, 0], "will steal": [65535, 0], "steal sheep": [65535, 0], "sheep the": [65535, 0], "new boy": [65535, 0], "boy stepped": [65535, 0], "over promptly": [65535, 0], "promptly and": [65535, 0], "said now": [65535, 0], "you said": [43635, 21900], "said you'd": [65535, 0], "you'd do": [65535, 0], "it now": [43635, 21900], "now let's": [32706, 32829], "let's see": [65535, 0], "you crowd": [65535, 0], "crowd me": [65535, 0], "you better": [65535, 0], "better look": [65535, 0], "look out": [65535, 0], "out well": [65535, 0], "it by": [10888, 54647], "by jingo": [65535, 0], "jingo for": [65535, 0], "two cents": [65535, 0], "cents i": [65535, 0], "will do": [65535, 0], "boy took": [65535, 0], "took two": [65535, 0], "two broad": [65535, 0], "broad coppers": [65535, 0], "coppers out": [65535, 0], "held them": [65535, 0], "with derision": [65535, 0], "derision tom": [65535, 0], "tom struck": [65535, 0], "struck them": [65535, 0], "ground in": [65535, 0], "in an": [16338, 49197], "an instant": [65535, 0], "instant both": [65535, 0], "both boys": [65535, 0], "boys were": [65535, 0], "were rolling": [65535, 0], "rolling and": [65535, 0], "and tumbling": [65535, 0], "tumbling in": [65535, 0], "dirt gripped": [65535, 0], "gripped together": [65535, 0], "together like": [65535, 0], "like cats": [65535, 0], "cats and": [65535, 0], "and for": [16338, 49197], "minute they": [65535, 0], "they tugged": [65535, 0], "tugged and": [65535, 0], "and tore": [65535, 0], "tore at": [65535, 0], "each other's": [65535, 0], "other's hair": [65535, 0], "hair and": [65535, 0], "and clothes": [65535, 0], "clothes punched": [65535, 0], "punched and": [65535, 0], "and scratched": [65535, 0], "scratched each": [65535, 0], "other's nose": [65535, 0], "nose and": [65535, 0], "and covered": [65535, 0], "covered themselves": [65535, 0], "themselves with": [65535, 0], "with dust": [65535, 0], "dust and": [65535, 0], "and glory": [65535, 0], "glory presently": [65535, 0], "the confusion": [65535, 0], "confusion took": [65535, 0], "took form": [65535, 0], "form and": [65535, 0], "and through": [65535, 0], "the fog": [65535, 0], "fog of": [65535, 0], "of battle": [65535, 0], "battle tom": [65535, 0], "appeared seated": [65535, 0], "seated astride": [65535, 0], "astride the": [65535, 0], "and pounding": [65535, 0], "pounding him": [65535, 0], "his fists": [65535, 0], "fists holler": [65535, 0], "holler 'nuff": [65535, 0], "'nuff said": [65535, 0], "said he": [49105, 16430], "he the": [32706, 32829], "boy only": [65535, 0], "only struggled": [65535, 0], "struggled to": [65535, 0], "to free": [65535, 0], "free himself": [65535, 0], "himself he": [65535, 0], "was crying": [65535, 0], "crying mainly": [65535, 0], "mainly from": [65535, 0], "from rage": [65535, 0], "rage holler": [65535, 0], "'nuff and": [65535, 0], "the pounding": [65535, 0], "pounding went": [65535, 0], "on at": [65535, 0], "the stranger": [32706, 32829], "stranger got": [65535, 0], "smothered 'nuff": [65535, 0], "him up": [65535, 0], "now that'll": [65535, 0], "that'll learn": [65535, 0], "out who": [65535, 0], "who you're": [65535, 0], "you're fooling": [65535, 0], "fooling with": [65535, 0], "with next": [65535, 0], "next time": [65535, 0], "boy went": [65535, 0], "went off": [65535, 0], "off brushing": [65535, 0], "brushing the": [65535, 0], "dust from": [65535, 0], "from his": [65535, 0], "clothes sobbing": [65535, 0], "sobbing snuffling": [65535, 0], "snuffling and": [65535, 0], "and occasionally": [65535, 0], "occasionally looking": [65535, 0], "looking back": [65535, 0], "and shaking": [65535, 0], "shaking his": [65535, 0], "and threatening": [65535, 0], "threatening what": [65535, 0], "what he": [32706, 32829], "would do": [65535, 0], "do to": [65535, 0], "to tom": [65535, 0], "tom the": [65535, 0], "he caught": [65535, 0], "caught him": [65535, 0], "to which": [65535, 0], "which tom": [65535, 0], "tom responded": [65535, 0], "responded with": [65535, 0], "with jeers": [65535, 0], "jeers and": [65535, 0], "and started": [65535, 0], "started off": [65535, 0], "off in": [65535, 0], "in high": [65535, 0], "high feather": [65535, 0], "feather and": [65535, 0], "and as": [52389, 13146], "as soon": [65535, 0], "soon as": [65535, 0], "as his": [65535, 0], "his back": [65535, 0], "back was": [65535, 0], "was turned": [65535, 0], "turned the": [65535, 0], "boy snatched": [65535, 0], "snatched up": [65535, 0], "a stone": [65535, 0], "stone threw": [65535, 0], "threw it": [65535, 0], "and hit": [65535, 0], "him between": [65535, 0], "between the": [65535, 0], "the shoulders": [65535, 0], "shoulders and": [65535, 0], "then turned": [65535, 0], "turned tail": [65535, 0], "tail and": [65535, 0], "and ran": [65535, 0], "ran like": [65535, 0], "like an": [32706, 32829], "an antelope": [65535, 0], "antelope tom": [65535, 0], "tom chased": [65535, 0], "chased the": [65535, 0], "the traitor": [65535, 0], "traitor home": [65535, 0], "home and": [21790, 43745], "and thus": [65535, 0], "thus found": [65535, 0], "found out": [65535, 0], "out where": [65535, 0], "he lived": [65535, 0], "lived he": [65535, 0], "he then": [65535, 0], "then held": [65535, 0], "held a": [65535, 0], "a position": [65535, 0], "position at": [65535, 0], "gate for": [65535, 0], "some time": [65535, 0], "time daring": [65535, 0], "daring the": [65535, 0], "enemy to": [65535, 0], "to come": [21790, 43745], "come outside": [65535, 0], "outside but": [65535, 0], "enemy only": [65535, 0], "only made": [65535, 0], "made faces": [65535, 0], "faces at": [65535, 0], "him through": [65535, 0], "and declined": [65535, 0], "declined at": [65535, 0], "the enemy's": [65535, 0], "enemy's mother": [65535, 0], "mother appeared": [65535, 0], "appeared and": [65535, 0], "and called": [65535, 0], "called tom": [65535, 0], "a bad": [65535, 0], "bad vicious": [65535, 0], "vicious vulgar": [65535, 0], "vulgar child": [65535, 0], "child and": [65535, 0], "and ordered": [65535, 0], "ordered him": [65535, 0], "him away": [32706, 32829], "away so": [65535, 0], "went away": [65535, 0], "away but": [65535, 0], "he 'lowed": [65535, 0], "'lowed to": [65535, 0], "to lay": [65535, 0], "lay for": [65535, 0], "got home": [65535, 0], "home pretty": [65535, 0], "pretty late": [65535, 0], "late that": [65535, 0], "night and": [21790, 43745], "he climbed": [65535, 0], "climbed cautiously": [65535, 0], "cautiously in": [65535, 0], "in at": [65535, 0], "window he": [65535, 0], "he uncovered": [65535, 0], "uncovered an": [65535, 0], "an ambuscade": [65535, 0], "ambuscade in": [65535, 0], "the person": [65535, 0], "person of": [65535, 0], "aunt and": [65535, 0], "she saw": [32706, 32829], "saw the": [21790, 43745], "state his": [65535, 0], "clothes were": [65535, 0], "her resolution": [65535, 0], "resolution to": [65535, 0], "turn his": [65535, 0], "his saturday": [65535, 0], "saturday holiday": [65535, 0], "holiday into": [65535, 0], "captivity at": [65535, 0], "at hard": [65535, 0], "hard labor": [65535, 0], "labor became": [65535, 0], "became adamantine": [65535, 0], "adamantine in": [65535, 0], "its firmness": [65535, 0], "tom no answer": [65535, 0], "answer tom no": [65535, 0], "no answer what's": [65535, 0], "answer what's gone": [65535, 0], "what's gone with": [65535, 0], "gone with that": [65535, 0], "with that boy": [65535, 0], "that boy i": [65535, 0], "boy i wonder": [65535, 0], "i wonder you": [65535, 0], "wonder you tom": [65535, 0], "you tom no": [65535, 0], "no answer the": [65535, 0], "answer the old": [65535, 0], "old lady pulled": [65535, 0], "lady pulled her": [65535, 0], "pulled her spectacles": [65535, 0], "her spectacles down": [65535, 0], "spectacles down and": [65535, 0], "down and looked": [65535, 0], "and looked over": [65535, 0], "looked over them": [65535, 0], "over them about": [65535, 0], "them about the": [65535, 0], "about the room": [65535, 0], "the room then": [65535, 0], "room then she": [65535, 0], "then she put": [65535, 0], "she put them": [65535, 0], "put them up": [65535, 0], "them up and": [65535, 0], "up and looked": [65535, 0], "and looked out": [65535, 0], "looked out under": [65535, 0], "out under them": [65535, 0], "under them she": [65535, 0], "them she seldom": [65535, 0], "she seldom or": [65535, 0], "seldom or never": [65535, 0], "or never looked": [65535, 0], "never looked through": [65535, 0], "looked through them": [65535, 0], "through them for": [65535, 0], "them for so": [65535, 0], "for so small": [65535, 0], "so small a": [65535, 0], "small a thing": [65535, 0], "a thing as": [65535, 0], "thing as a": [65535, 0], "as a boy": [65535, 0], "a boy they": [65535, 0], "boy they were": [65535, 0], "they were her": [65535, 0], "were her state": [65535, 0], "her state pair": [65535, 0], "state pair the": [65535, 0], "pair the pride": [65535, 0], "pride of her": [65535, 0], "of her heart": [65535, 0], "her heart and": [65535, 0], "heart and were": [65535, 0], "and were built": [65535, 0], "were built for": [65535, 0], "built for style": [65535, 0], "for style not": [65535, 0], "style not service": [65535, 0], "not service she": [65535, 0], "service she could": [65535, 0], "she could have": [65535, 0], "could have seen": [65535, 0], "have seen through": [65535, 0], "seen through a": [65535, 0], "through a pair": [65535, 0], "a pair of": [65535, 0], "pair of stove": [65535, 0], "of stove lids": [65535, 0], "stove lids just": [65535, 0], "lids just as": [65535, 0], "just as well": [65535, 0], "as well she": [65535, 0], "well she looked": [65535, 0], "she looked perplexed": [65535, 0], "looked perplexed for": [65535, 0], "perplexed for a": [65535, 0], "for a moment": [65535, 0], "then said not": [65535, 0], "said not fiercely": [65535, 0], "not fiercely but": [65535, 0], "fiercely but still": [65535, 0], "but still loud": [65535, 0], "still loud enough": [65535, 0], "loud enough for": [65535, 0], "enough for the": [65535, 0], "for the furniture": [65535, 0], "the furniture to": [65535, 0], "furniture to hear": [65535, 0], "to hear well": [65535, 0], "hear well i": [65535, 0], "well i lay": [65535, 0], "i lay if": [65535, 0], "lay if i": [65535, 0], "if i get": [65535, 0], "i get hold": [65535, 0], "get hold of": [65535, 0], "hold of you": [65535, 0], "of you i'll": [65535, 0], "you i'll she": [65535, 0], "i'll she did": [65535, 0], "she did not": [65535, 0], "did not finish": [65535, 0], "not finish for": [65535, 0], "finish for by": [65535, 0], "for by this": [65535, 0], "time she was": [65535, 0], "she was bending": [65535, 0], "was bending down": [65535, 0], "bending down and": [65535, 0], "down and punching": [65535, 0], "and punching under": [65535, 0], "punching under the": [65535, 0], "under the bed": [65535, 0], "the bed with": [65535, 0], "bed with the": [65535, 0], "with the broom": [65535, 0], "the broom and": [65535, 0], "broom and so": [65535, 0], "and so she": [65535, 0], "so she needed": [65535, 0], "she needed breath": [65535, 0], "needed breath to": [65535, 0], "breath to punctuate": [65535, 0], "to punctuate the": [65535, 0], "punctuate the punches": [65535, 0], "the punches with": [65535, 0], "punches with she": [65535, 0], "with she resurrected": [65535, 0], "she resurrected nothing": [65535, 0], "resurrected nothing but": [65535, 0], "nothing but the": [65535, 0], "but the cat": [65535, 0], "the cat i": [65535, 0], "cat i never": [65535, 0], "i never did": [65535, 0], "never did see": [65535, 0], "did see the": [65535, 0], "see the beat": [65535, 0], "the beat of": [65535, 0], "beat of that": [65535, 0], "of that boy": [65535, 0], "that boy she": [65535, 0], "boy she went": [65535, 0], "she went to": [65535, 0], "to the open": [65535, 0], "the open door": [65535, 0], "open door and": [65535, 0], "door and stood": [65535, 0], "and stood in": [65535, 0], "stood in it": [65535, 0], "in it and": [65535, 0], "it and looked": [65535, 0], "looked out among": [65535, 0], "out among the": [65535, 0], "among the tomato": [65535, 0], "the tomato vines": [65535, 0], "tomato vines and": [65535, 0], "vines and jimpson": [65535, 0], "and jimpson weeds": [65535, 0], "jimpson weeds that": [65535, 0], "weeds that constituted": [65535, 0], "that constituted the": [65535, 0], "constituted the garden": [65535, 0], "the garden no": [65535, 0], "garden no tom": [65535, 0], "no tom so": [65535, 0], "tom so she": [65535, 0], "so she lifted": [65535, 0], "she lifted up": [65535, 0], "lifted up her": [65535, 0], "up her voice": [65535, 0], "her voice at": [65535, 0], "voice at an": [65535, 0], "at an angle": [65535, 0], "an angle calculated": [65535, 0], "angle calculated for": [65535, 0], "calculated for distance": [65535, 0], "for distance and": [65535, 0], "distance and shouted": [65535, 0], "and shouted y": [65535, 0], "shouted y o": [65535, 0], "y o u": [65535, 0], "o u u": [65535, 0], "u u tom": [65535, 0], "u tom there": [65535, 0], "tom there was": [65535, 0], "was a slight": [65535, 0], "a slight noise": [65535, 0], "slight noise behind": [65535, 0], "noise behind her": [65535, 0], "behind her and": [65535, 0], "and she turned": [65535, 0], "she turned just": [65535, 0], "turned just in": [65535, 0], "just in time": [65535, 0], "in time to": [65535, 0], "time to seize": [65535, 0], "to seize a": [65535, 0], "seize a small": [65535, 0], "a small boy": [65535, 0], "small boy by": [65535, 0], "boy by the": [65535, 0], "by the slack": [65535, 0], "the slack of": [65535, 0], "slack of his": [65535, 0], "of his roundabout": [65535, 0], "his roundabout and": [65535, 0], "roundabout and arrest": [65535, 0], "and arrest his": [65535, 0], "arrest his flight": [65535, 0], "his flight there": [65535, 0], "flight there i": [65535, 0], "there i might": [65535, 0], "i might 'a'": [65535, 0], "might 'a' thought": [65535, 0], "'a' thought of": [65535, 0], "of that closet": [65535, 0], "that closet what": [65535, 0], "closet what you": [65535, 0], "what you been": [65535, 0], "you been doing": [65535, 0], "been doing in": [65535, 0], "doing in there": [65535, 0], "in there nothing": [65535, 0], "there nothing nothing": [65535, 0], "nothing nothing look": [65535, 0], "nothing look at": [65535, 0], "look at your": [65535, 0], "at your hands": [65535, 0], "your hands and": [65535, 0], "hands and look": [65535, 0], "and look at": [65535, 0], "at your mouth": [65535, 0], "your mouth what": [65535, 0], "mouth what is": [65535, 0], "what is that": [65535, 0], "is that i": [65535, 0], "that i don't": [65535, 0], "don't know aunt": [65535, 0], "know aunt well": [65535, 0], "aunt well i": [65535, 0], "well i know": [32706, 32829], "know it's jam": [65535, 0], "it's jam that's": [65535, 0], "jam that's what": [65535, 0], "that's what it": [65535, 0], "what it is": [65535, 0], "it is forty": [65535, 0], "is forty times": [65535, 0], "forty times i've": [65535, 0], "times i've said": [65535, 0], "i've said if": [65535, 0], "said if you": [65535, 0], "if you didn't": [65535, 0], "you didn't let": [65535, 0], "didn't let that": [65535, 0], "let that jam": [65535, 0], "that jam alone": [65535, 0], "jam alone i'd": [65535, 0], "alone i'd skin": [65535, 0], "i'd skin you": [65535, 0], "skin you hand": [65535, 0], "you hand me": [65535, 0], "hand me that": [65535, 0], "me that switch": [65535, 0], "that switch the": [65535, 0], "switch the switch": [65535, 0], "the switch hovered": [65535, 0], "switch hovered in": [65535, 0], "hovered in the": [65535, 0], "in the air": [65535, 0], "the air the": [65535, 0], "air the peril": [65535, 0], "the peril was": [65535, 0], "peril was desperate": [65535, 0], "was desperate my": [65535, 0], "desperate my look": [65535, 0], "my look behind": [65535, 0], "look behind you": [65535, 0], "behind you aunt": [65535, 0], "you aunt the": [65535, 0], "aunt the old": [65535, 0], "old lady whirled": [65535, 0], "lady whirled round": [65535, 0], "whirled round and": [65535, 0], "round and snatched": [65535, 0], "and snatched her": [65535, 0], "snatched her skirts": [65535, 0], "her skirts out": [65535, 0], "skirts out of": [65535, 0], "out of danger": [65535, 0], "of danger the": [65535, 0], "danger the lad": [65535, 0], "the lad fled": [65535, 0], "lad fled on": [65535, 0], "fled on the": [65535, 0], "on the instant": [65535, 0], "the instant scrambled": [65535, 0], "instant scrambled up": [65535, 0], "scrambled up the": [65535, 0], "up the high": [65535, 0], "the high board": [65535, 0], "high board fence": [65535, 0], "board fence and": [65535, 0], "fence and disappeared": [65535, 0], "and disappeared over": [65535, 0], "disappeared over it": [65535, 0], "over it his": [65535, 0], "it his aunt": [65535, 0], "his aunt polly": [65535, 0], "aunt polly stood": [65535, 0], "polly stood surprised": [65535, 0], "stood surprised a": [65535, 0], "surprised a moment": [65535, 0], "and then broke": [65535, 0], "then broke into": [65535, 0], "broke into a": [65535, 0], "into a gentle": [65535, 0], "a gentle laugh": [65535, 0], "gentle laugh hang": [65535, 0], "laugh hang the": [65535, 0], "hang the boy": [65535, 0], "the boy can't": [65535, 0], "boy can't i": [65535, 0], "can't i never": [65535, 0], "i never learn": [65535, 0], "never learn anything": [65535, 0], "learn anything ain't": [65535, 0], "anything ain't he": [65535, 0], "ain't he played": [65535, 0], "he played me": [65535, 0], "played me tricks": [65535, 0], "me tricks enough": [65535, 0], "tricks enough like": [65535, 0], "enough like that": [65535, 0], "like that for": [65535, 0], "that for me": [65535, 0], "for me to": [21790, 43745], "me to be": [21790, 43745], "to be looking": [65535, 0], "be looking out": [65535, 0], "looking out for": [65535, 0], "out for him": [65535, 0], "for him by": [65535, 0], "him by this": [65535, 0], "this time but": [65535, 0], "time but old": [65535, 0], "but old fools": [65535, 0], "old fools is": [65535, 0], "fools is the": [65535, 0], "is the biggest": [65535, 0], "the biggest fools": [65535, 0], "biggest fools there": [65535, 0], "fools there is": [65535, 0], "there is can't": [65535, 0], "is can't learn": [65535, 0], "can't learn an": [65535, 0], "learn an old": [65535, 0], "an old dog": [65535, 0], "old dog new": [65535, 0], "dog new tricks": [65535, 0], "new tricks as": [65535, 0], "tricks as the": [65535, 0], "as the saying": [65535, 0], "the saying is": [65535, 0], "saying is but": [65535, 0], "is but my": [65535, 0], "but my goodness": [65535, 0], "my goodness he": [65535, 0], "goodness he never": [65535, 0], "he never plays": [65535, 0], "never plays them": [65535, 0], "plays them alike": [65535, 0], "them alike two": [65535, 0], "alike two days": [65535, 0], "two days and": [65535, 0], "days and how": [65535, 0], "and how is": [65535, 0], "how is a": [65535, 0], "is a body": [65535, 0], "a body to": [65535, 0], "body to know": [65535, 0], "to know what's": [65535, 0], "know what's coming": [65535, 0], "what's coming he": [65535, 0], "coming he 'pears": [65535, 0], "he 'pears to": [65535, 0], "'pears to know": [65535, 0], "to know just": [65535, 0], "know just how": [65535, 0], "just how long": [65535, 0], "how long he": [65535, 0], "long he can": [65535, 0], "he can torment": [65535, 0], "can torment me": [65535, 0], "torment me before": [65535, 0], "me before i": [65535, 0], "before i get": [65535, 0], "i get my": [65535, 0], "get my dander": [65535, 0], "my dander up": [65535, 0], "dander up and": [65535, 0], "up and he": [65535, 0], "and he knows": [65535, 0], "he knows if": [65535, 0], "knows if he": [65535, 0], "if he can": [32706, 32829], "he can make": [65535, 0], "can make out": [65535, 0], "make out to": [65535, 0], "out to put": [65535, 0], "to put me": [65535, 0], "put me off": [65535, 0], "me off for": [65535, 0], "off for a": [65535, 0], "for a minute": [65535, 0], "a minute or": [65535, 0], "minute or make": [65535, 0], "or make me": [65535, 0], "make me laugh": [65535, 0], "me laugh it's": [65535, 0], "laugh it's all": [65535, 0], "it's all down": [65535, 0], "all down again": [65535, 0], "down again and": [65535, 0], "again and i": [65535, 0], "and i can't": [65535, 0], "i can't hit": [65535, 0], "can't hit him": [65535, 0], "hit him a": [65535, 0], "him a lick": [65535, 0], "a lick i": [65535, 0], "lick i ain't": [65535, 0], "i ain't doing": [65535, 0], "ain't doing my": [65535, 0], "doing my duty": [65535, 0], "my duty by": [65535, 0], "duty by that": [65535, 0], "by that boy": [65535, 0], "that boy and": [65535, 0], "boy and that's": [65535, 0], "and that's the": [65535, 0], "that's the lord's": [65535, 0], "the lord's truth": [65535, 0], "lord's truth goodness": [65535, 0], "truth goodness knows": [65535, 0], "goodness knows spare": [65535, 0], "knows spare the": [65535, 0], "spare the rod": [65535, 0], "the rod and": [65535, 0], "rod and spoil": [65535, 0], "and spoil the": [65535, 0], "spoil the child": [65535, 0], "the child as": [65535, 0], "child as the": [65535, 0], "as the good": [65535, 0], "the good book": [65535, 0], "good book says": [65535, 0], "book says i'm": [65535, 0], "says i'm a": [65535, 0], "i'm a laying": [65535, 0], "a laying up": [65535, 0], "laying up sin": [65535, 0], "up sin and": [65535, 0], "sin and suffering": [65535, 0], "and suffering for": [65535, 0], "suffering for us": [65535, 0], "for us both": [65535, 0], "us both i": [65535, 0], "both i know": [65535, 0], "i know he's": [65535, 0], "know he's full": [65535, 0], "he's full of": [65535, 0], "full of the": [65535, 0], "of the old": [65535, 0], "the old scratch": [65535, 0], "old scratch but": [65535, 0], "scratch but laws": [65535, 0], "but laws a": [65535, 0], "laws a me": [65535, 0], "a me he's": [65535, 0], "me he's my": [65535, 0], "he's my own": [65535, 0], "my own dead": [65535, 0], "own dead sister's": [65535, 0], "dead sister's boy": [65535, 0], "sister's boy poor": [65535, 0], "boy poor thing": [65535, 0], "poor thing and": [65535, 0], "thing and i": [65535, 0], "and i ain't": [65535, 0], "i ain't got": [65535, 0], "ain't got the": [65535, 0], "got the heart": [65535, 0], "the heart to": [65535, 0], "heart to lash": [65535, 0], "to lash him": [65535, 0], "lash him somehow": [65535, 0], "him somehow every": [65535, 0], "somehow every time": [65535, 0], "every time i": [65535, 0], "time i let": [65535, 0], "i let him": [32706, 32829], "let him off": [65535, 0], "him off my": [65535, 0], "off my conscience": [65535, 0], "my conscience does": [65535, 0], "conscience does hurt": [65535, 0], "does hurt me": [65535, 0], "hurt me so": [65535, 0], "me so and": [32706, 32829], "so and every": [65535, 0], "and every time": [65535, 0], "time i hit": [65535, 0], "i hit him": [65535, 0], "hit him my": [65535, 0], "him my old": [65535, 0], "old heart most": [65535, 0], "heart most breaks": [65535, 0], "most breaks well": [65535, 0], "breaks well a": [65535, 0], "well a well": [65535, 0], "a well man": [65535, 0], "well man that": [65535, 0], "man that is": [65535, 0], "that is born": [65535, 0], "is born of": [65535, 0], "born of woman": [65535, 0], "of woman is": [65535, 0], "woman is of": [65535, 0], "is of few": [65535, 0], "of few days": [65535, 0], "few days and": [65535, 0], "days and full": [65535, 0], "and full of": [65535, 0], "full of trouble": [65535, 0], "of trouble as": [65535, 0], "trouble as the": [65535, 0], "as the scripture": [65535, 0], "the scripture says": [65535, 0], "scripture says and": [65535, 0], "says and i": [65535, 0], "and i reckon": [65535, 0], "it's so he'll": [65535, 0], "so he'll play": [65535, 0], "he'll play hookey": [65535, 0], "play hookey this": [65535, 0], "hookey this evening": [65535, 0], "this evening and": [65535, 0], "evening and i'll": [65535, 0], "and i'll just": [65535, 0], "i'll just be": [65535, 0], "just be obliged": [65535, 0], "be obliged to": [65535, 0], "obliged to make": [65535, 0], "make him work": [65535, 0], "him work to": [65535, 0], "work to morrow": [65535, 0], "to morrow to": [65535, 0], "morrow to punish": [65535, 0], "to punish him": [65535, 0], "punish him it's": [65535, 0], "him it's mighty": [65535, 0], "it's mighty hard": [65535, 0], "mighty hard to": [65535, 0], "hard to make": [65535, 0], "him work saturdays": [65535, 0], "work saturdays when": [65535, 0], "saturdays when all": [65535, 0], "when all the": [65535, 0], "all the boys": [65535, 0], "the boys is": [65535, 0], "boys is having": [65535, 0], "is having holiday": [65535, 0], "having holiday but": [65535, 0], "holiday but he": [65535, 0], "but he hates": [65535, 0], "he hates work": [65535, 0], "hates work more": [65535, 0], "work more than": [65535, 0], "more than he": [65535, 0], "than he hates": [65535, 0], "he hates anything": [65535, 0], "hates anything else": [65535, 0], "anything else and": [65535, 0], "else and i've": [65535, 0], "and i've got": [65535, 0], "i've got to": [65535, 0], "got to do": [65535, 0], "to do some": [65535, 0], "do some of": [65535, 0], "some of my": [32706, 32829], "of my duty": [65535, 0], "duty by him": [65535, 0], "by him or": [65535, 0], "him or i'll": [65535, 0], "or i'll be": [65535, 0], "i'll be the": [65535, 0], "be the ruination": [65535, 0], "the ruination of": [65535, 0], "ruination of the": [65535, 0], "of the child": [65535, 0], "the child tom": [65535, 0], "child tom did": [65535, 0], "tom did play": [65535, 0], "did play hookey": [65535, 0], "play hookey and": [65535, 0], "hookey and he": [65535, 0], "and he had": [65535, 0], "he had a": [65535, 0], "had a very": [65535, 0], "a very good": [65535, 0], "very good time": [65535, 0], "good time he": [65535, 0], "he got back": [65535, 0], "got back home": [65535, 0], "back home barely": [65535, 0], "home barely in": [65535, 0], "barely in season": [65535, 0], "in season to": [65535, 0], "season to help": [65535, 0], "to help jim": [65535, 0], "help jim the": [65535, 0], "jim the small": [65535, 0], "the small colored": [65535, 0], "small colored boy": [65535, 0], "colored boy saw": [65535, 0], "boy saw next": [65535, 0], "saw next day's": [65535, 0], "next day's wood": [65535, 0], "day's wood and": [65535, 0], "wood and split": [65535, 0], "split the kindlings": [65535, 0], "the kindlings before": [65535, 0], "kindlings before supper": [65535, 0], "before supper at": [65535, 0], "supper at least": [65535, 0], "at least he": [65535, 0], "least he was": [65535, 0], "he was there": [65535, 0], "was there in": [65535, 0], "there in time": [65535, 0], "time to tell": [65535, 0], "to tell his": [65535, 0], "tell his adventures": [65535, 0], "his adventures to": [65535, 0], "adventures to jim": [65535, 0], "to jim while": [65535, 0], "jim while jim": [65535, 0], "while jim did": [65535, 0], "jim did three": [65535, 0], "did three fourths": [65535, 0], "three fourths of": [65535, 0], "fourths of the": [65535, 0], "of the work": [65535, 0], "the work tom's": [65535, 0], "work tom's younger": [65535, 0], "tom's younger brother": [65535, 0], "younger brother or": [65535, 0], "brother or rather": [65535, 0], "or rather half": [65535, 0], "rather half brother": [65535, 0], "half brother sid": [65535, 0], "brother sid was": [65535, 0], "sid was already": [65535, 0], "was already through": [65535, 0], "already through with": [65535, 0], "through with his": [65535, 0], "with his part": [65535, 0], "his part of": [65535, 0], "the work picking": [65535, 0], "work picking up": [65535, 0], "picking up chips": [65535, 0], "up chips for": [65535, 0], "chips for he": [65535, 0], "was a quiet": [65535, 0], "a quiet boy": [65535, 0], "quiet boy and": [65535, 0], "boy and had": [65535, 0], "and had no": [65535, 0], "had no adventurous": [65535, 0], "no adventurous troublesome": [65535, 0], "adventurous troublesome ways": [65535, 0], "troublesome ways while": [65535, 0], "ways while tom": [65535, 0], "while tom was": [65535, 0], "tom was eating": [65535, 0], "was eating his": [65535, 0], "eating his supper": [65535, 0], "his supper and": [65535, 0], "supper and stealing": [65535, 0], "and stealing sugar": [65535, 0], "stealing sugar as": [65535, 0], "sugar as opportunity": [65535, 0], "as opportunity offered": [65535, 0], "opportunity offered aunt": [65535, 0], "offered aunt polly": [65535, 0], "aunt polly asked": [65535, 0], "polly asked him": [65535, 0], "asked him questions": [65535, 0], "him questions that": [65535, 0], "questions that were": [65535, 0], "that were full": [65535, 0], "were full of": [65535, 0], "full of guile": [65535, 0], "of guile and": [65535, 0], "guile and very": [65535, 0], "and very deep": [65535, 0], "very deep for": [65535, 0], "deep for she": [65535, 0], "for she wanted": [65535, 0], "she wanted to": [65535, 0], "wanted to trap": [65535, 0], "to trap him": [65535, 0], "trap him into": [65535, 0], "him into damaging": [65535, 0], "into damaging revealments": [65535, 0], "damaging revealments like": [65535, 0], "revealments like many": [65535, 0], "like many other": [65535, 0], "many other simple": [65535, 0], "other simple hearted": [65535, 0], "simple hearted souls": [65535, 0], "hearted souls it": [65535, 0], "souls it was": [65535, 0], "it was her": [65535, 0], "was her pet": [65535, 0], "her pet vanity": [65535, 0], "pet vanity to": [65535, 0], "vanity to believe": [65535, 0], "to believe she": [65535, 0], "believe she was": [65535, 0], "she was endowed": [65535, 0], "was endowed with": [65535, 0], "endowed with a": [65535, 0], "with a talent": [65535, 0], "a talent for": [65535, 0], "talent for dark": [65535, 0], "for dark and": [65535, 0], "dark and mysterious": [65535, 0], "and mysterious diplomacy": [65535, 0], "mysterious diplomacy and": [65535, 0], "diplomacy and she": [65535, 0], "and she loved": [65535, 0], "she loved to": [65535, 0], "loved to contemplate": [65535, 0], "to contemplate her": [65535, 0], "contemplate her most": [65535, 0], "her most transparent": [65535, 0], "most transparent devices": [65535, 0], "transparent devices as": [65535, 0], "devices as marvels": [65535, 0], "as marvels of": [65535, 0], "marvels of low": [65535, 0], "of low cunning": [65535, 0], "low cunning said": [65535, 0], "cunning said she": [65535, 0], "said she tom": [65535, 0], "she tom it": [65535, 0], "tom it was": [65535, 0], "it was middling": [65535, 0], "was middling warm": [65535, 0], "middling warm in": [65535, 0], "warm in school": [65535, 0], "in school warn't": [65535, 0], "school warn't it": [65535, 0], "warn't it yes'm": [65535, 0], "it yes'm powerful": [65535, 0], "yes'm powerful warm": [65535, 0], "powerful warm warn't": [65535, 0], "warm warn't it": [65535, 0], "it yes'm didn't": [65535, 0], "yes'm didn't you": [65535, 0], "didn't you want": [65535, 0], "you want to": [65535, 0], "want to go": [65535, 0], "to go in": [32706, 32829], "go in a": [65535, 0], "a swimming tom": [65535, 0], "swimming tom a": [65535, 0], "tom a bit": [65535, 0], "bit of a": [65535, 0], "of a scare": [65535, 0], "a scare shot": [65535, 0], "scare shot through": [65535, 0], "shot through tom": [65535, 0], "through tom a": [65535, 0], "tom a touch": [65535, 0], "a touch of": [65535, 0], "touch of uncomfortable": [65535, 0], "of uncomfortable suspicion": [65535, 0], "uncomfortable suspicion he": [65535, 0], "suspicion he searched": [65535, 0], "he searched aunt": [65535, 0], "searched aunt polly's": [65535, 0], "aunt polly's face": [65535, 0], "polly's face but": [65535, 0], "face but it": [65535, 0], "but it told": [65535, 0], "it told him": [65535, 0], "told him nothing": [65535, 0], "him nothing so": [65535, 0], "nothing so he": [65535, 0], "so he said": [65535, 0], "he said no'm": [65535, 0], "said no'm well": [65535, 0], "no'm well not": [65535, 0], "well not very": [65535, 0], "not very much": [65535, 0], "very much the": [65535, 0], "much the old": [65535, 0], "old lady reached": [65535, 0], "lady reached out": [65535, 0], "reached out her": [65535, 0], "out her hand": [65535, 0], "hand and felt": [65535, 0], "and felt tom's": [65535, 0], "felt tom's shirt": [65535, 0], "tom's shirt and": [65535, 0], "shirt and said": [65535, 0], "and said but": [65535, 0], "said but you": [65535, 0], "but you ain't": [65535, 0], "you ain't too": [65535, 0], "ain't too warm": [65535, 0], "too warm now": [65535, 0], "warm now though": [65535, 0], "now though and": [65535, 0], "though and it": [65535, 0], "and it flattered": [65535, 0], "it flattered her": [65535, 0], "flattered her to": [65535, 0], "her to reflect": [65535, 0], "to reflect that": [65535, 0], "reflect that she": [65535, 0], "that she had": [65535, 0], "she had discovered": [65535, 0], "had discovered that": [65535, 0], "discovered that the": [65535, 0], "that the shirt": [65535, 0], "the shirt was": [65535, 0], "shirt was dry": [65535, 0], "was dry without": [65535, 0], "dry without anybody": [65535, 0], "without anybody knowing": [65535, 0], "anybody knowing that": [65535, 0], "knowing that that": [65535, 0], "that that was": [65535, 0], "that was what": [65535, 0], "was what she": [65535, 0], "what she had": [65535, 0], "she had in": [65535, 0], "had in her": [65535, 0], "in her mind": [65535, 0], "her mind but": [65535, 0], "mind but in": [65535, 0], "but in spite": [65535, 0], "in spite of": [65535, 0], "spite of her": [65535, 0], "of her tom": [65535, 0], "her tom knew": [65535, 0], "tom knew where": [65535, 0], "knew where the": [65535, 0], "where the wind": [65535, 0], "the wind lay": [65535, 0], "wind lay now": [65535, 0], "lay now so": [65535, 0], "now so he": [65535, 0], "so he forestalled": [65535, 0], "he forestalled what": [65535, 0], "forestalled what might": [65535, 0], "what might be": [65535, 0], "might be the": [65535, 0], "be the next": [65535, 0], "the next move": [65535, 0], "next move some": [65535, 0], "move some of": [65535, 0], "some of us": [65535, 0], "of us pumped": [65535, 0], "us pumped on": [65535, 0], "pumped on our": [65535, 0], "on our heads": [65535, 0], "our heads mine's": [65535, 0], "heads mine's damp": [65535, 0], "mine's damp yet": [65535, 0], "damp yet see": [65535, 0], "yet see aunt": [65535, 0], "see aunt polly": [65535, 0], "polly was vexed": [65535, 0], "was vexed to": [65535, 0], "vexed to think": [65535, 0], "to think she": [65535, 0], "think she had": [65535, 0], "she had overlooked": [65535, 0], "had overlooked that": [65535, 0], "overlooked that bit": [65535, 0], "that bit of": [65535, 0], "bit of circumstantial": [65535, 0], "of circumstantial evidence": [65535, 0], "circumstantial evidence and": [65535, 0], "evidence and missed": [65535, 0], "and missed a": [65535, 0], "missed a trick": [65535, 0], "a trick then": [65535, 0], "trick then she": [65535, 0], "then she had": [65535, 0], "she had a": [65535, 0], "had a new": [65535, 0], "a new inspiration": [65535, 0], "new inspiration tom": [65535, 0], "inspiration tom you": [65535, 0], "tom you didn't": [65535, 0], "you didn't have": [65535, 0], "didn't have to": [65535, 0], "have to undo": [65535, 0], "to undo your": [65535, 0], "undo your shirt": [65535, 0], "your shirt collar": [65535, 0], "shirt collar where": [65535, 0], "collar where i": [65535, 0], "where i sewed": [65535, 0], "i sewed it": [65535, 0], "sewed it to": [65535, 0], "it to pump": [65535, 0], "to pump on": [65535, 0], "pump on your": [65535, 0], "on your head": [65535, 0], "your head did": [65535, 0], "head did you": [65535, 0], "did you unbutton": [65535, 0], "you unbutton your": [65535, 0], "unbutton your jacket": [65535, 0], "jacket the trouble": [65535, 0], "the trouble vanished": [65535, 0], "trouble vanished out": [65535, 0], "vanished out of": [65535, 0], "out of tom's": [65535, 0], "of tom's face": [65535, 0], "tom's face he": [65535, 0], "face he opened": [65535, 0], "he opened his": [65535, 0], "opened his jacket": [65535, 0], "his jacket his": [65535, 0], "jacket his shirt": [65535, 0], "his shirt collar": [65535, 0], "shirt collar was": [65535, 0], "collar was securely": [65535, 0], "was securely sewed": [65535, 0], "securely sewed bother": [65535, 0], "sewed bother well": [65535, 0], "bother well go": [65535, 0], "well go 'long": [65535, 0], "go 'long with": [65535, 0], "'long with you": [65535, 0], "with you i'd": [65535, 0], "you i'd made": [65535, 0], "i'd made sure": [65535, 0], "made sure you'd": [65535, 0], "sure you'd played": [65535, 0], "you'd played hookey": [65535, 0], "played hookey and": [65535, 0], "hookey and been": [65535, 0], "and been a": [65535, 0], "been a swimming": [65535, 0], "a swimming but": [65535, 0], "swimming but i": [65535, 0], "but i forgive": [65535, 0], "i forgive ye": [65535, 0], "forgive ye tom": [65535, 0], "ye tom i": [65535, 0], "tom i reckon": [65535, 0], "i reckon you're": [65535, 0], "reckon you're a": [65535, 0], "you're a kind": [65535, 0], "a kind of": [65535, 0], "kind of a": [65535, 0], "of a singed": [65535, 0], "a singed cat": [65535, 0], "singed cat as": [65535, 0], "cat as the": [65535, 0], "saying is better'n": [65535, 0], "is better'n you": [65535, 0], "better'n you look": [65535, 0], "you look this": [65535, 0], "look this time": [65535, 0], "she was half": [65535, 0], "was half sorry": [65535, 0], "half sorry her": [65535, 0], "sorry her sagacity": [65535, 0], "her sagacity had": [65535, 0], "sagacity had miscarried": [65535, 0], "had miscarried and": [65535, 0], "miscarried and half": [65535, 0], "and half glad": [65535, 0], "half glad that": [65535, 0], "glad that tom": [65535, 0], "that tom had": [65535, 0], "tom had stumbled": [65535, 0], "had stumbled into": [65535, 0], "stumbled into obedient": [65535, 0], "into obedient conduct": [65535, 0], "obedient conduct for": [65535, 0], "conduct for once": [65535, 0], "for once but": [65535, 0], "once but sidney": [65535, 0], "but sidney said": [65535, 0], "sidney said well": [65535, 0], "said well now": [65535, 0], "well now if": [65535, 0], "now if i": [65535, 0], "if i didn't": [65535, 0], "i didn't think": [65535, 0], "didn't think you": [65535, 0], "think you sewed": [65535, 0], "you sewed his": [65535, 0], "sewed his collar": [65535, 0], "his collar with": [65535, 0], "collar with white": [65535, 0], "with white thread": [65535, 0], "white thread but": [65535, 0], "thread but it's": [65535, 0], "but it's black": [65535, 0], "it's black why": [65535, 0], "black why i": [65535, 0], "why i did": [65535, 0], "i did sew": [65535, 0], "did sew it": [65535, 0], "sew it with": [65535, 0], "it with white": [65535, 0], "with white tom": [65535, 0], "white tom but": [65535, 0], "tom but tom": [65535, 0], "but tom did": [65535, 0], "tom did not": [65535, 0], "did not wait": [65535, 0], "not wait for": [65535, 0], "wait for the": [65535, 0], "for the rest": [65535, 0], "the rest as": [65535, 0], "rest as he": [65535, 0], "as he went": [65535, 0], "he went out": [65535, 0], "went out at": [65535, 0], "at the door": [65535, 0], "the door he": [65535, 0], "door he said": [65535, 0], "he said siddy": [65535, 0], "said siddy i'll": [65535, 0], "siddy i'll lick": [65535, 0], "i'll lick you": [65535, 0], "lick you for": [65535, 0], "you for that": [65535, 0], "for that in": [65535, 0], "that in a": [65535, 0], "in a safe": [65535, 0], "a safe place": [65535, 0], "safe place tom": [65535, 0], "place tom examined": [65535, 0], "tom examined two": [65535, 0], "examined two large": [65535, 0], "two large needles": [65535, 0], "large needles which": [65535, 0], "needles which were": [65535, 0], "which were thrust": [65535, 0], "were thrust into": [65535, 0], "thrust into the": [65535, 0], "into the lapels": [65535, 0], "the lapels of": [65535, 0], "lapels of his": [65535, 0], "of his jacket": [65535, 0], "his jacket and": [65535, 0], "jacket and had": [65535, 0], "and had thread": [65535, 0], "had thread bound": [65535, 0], "thread bound about": [65535, 0], "bound about them": [65535, 0], "about them one": [65535, 0], "them one needle": [65535, 0], "one needle carried": [65535, 0], "needle carried white": [65535, 0], "carried white thread": [65535, 0], "white thread and": [65535, 0], "thread and the": [65535, 0], "and the other": [65535, 0], "the other black": [65535, 0], "other black he": [65535, 0], "black he said": [65535, 0], "he said she'd": [65535, 0], "said she'd never": [65535, 0], "she'd never noticed": [65535, 0], "never noticed if": [65535, 0], "noticed if it": [65535, 0], "if it hadn't": [65535, 0], "it hadn't been": [65535, 0], "hadn't been for": [65535, 0], "been for sid": [65535, 0], "for sid confound": [65535, 0], "sid confound it": [65535, 0], "confound it sometimes": [65535, 0], "it sometimes she": [65535, 0], "sometimes she sews": [65535, 0], "she sews it": [65535, 0], "sews it with": [65535, 0], "with white and": [65535, 0], "white and sometimes": [65535, 0], "and sometimes she": [65535, 0], "it with black": [65535, 0], "with black i": [65535, 0], "black i wish": [65535, 0], "i wish to": [65535, 0], "wish to geeminy": [65535, 0], "to geeminy she'd": [65535, 0], "geeminy she'd stick": [65535, 0], "she'd stick to": [65535, 0], "stick to one": [65535, 0], "to one or": [65535, 0], "one or t'other": [65535, 0], "or t'other i": [65535, 0], "t'other i can't": [65535, 0], "i can't keep": [65535, 0], "can't keep the": [65535, 0], "keep the run": [65535, 0], "the run of": [65535, 0], "run of 'em": [65535, 0], "of 'em but": [65535, 0], "'em but i": [65535, 0], "but i bet": [65535, 0], "bet you i'll": [65535, 0], "you i'll lam": [65535, 0], "i'll lam sid": [65535, 0], "lam sid for": [65535, 0], "sid for that": [65535, 0], "for that i'll": [65535, 0], "that i'll learn": [65535, 0], "i'll learn him": [65535, 0], "learn him he": [65535, 0], "was not the": [65535, 0], "not the model": [65535, 0], "model boy of": [65535, 0], "boy of the": [65535, 0], "the village he": [65535, 0], "village he knew": [65535, 0], "knew the model": [65535, 0], "model boy very": [65535, 0], "boy very well": [65535, 0], "very well though": [65535, 0], "well though and": [65535, 0], "though and loathed": [65535, 0], "and loathed him": [65535, 0], "loathed him within": [65535, 0], "him within two": [65535, 0], "within two minutes": [65535, 0], "two minutes or": [65535, 0], "minutes or even": [65535, 0], "or even less": [65535, 0], "even less he": [65535, 0], "less he had": [65535, 0], "he had forgotten": [65535, 0], "had forgotten all": [65535, 0], "forgotten all his": [65535, 0], "all his troubles": [65535, 0], "his troubles not": [65535, 0], "troubles not because": [65535, 0], "not because his": [65535, 0], "because his troubles": [65535, 0], "his troubles were": [65535, 0], "troubles were one": [65535, 0], "were one whit": [65535, 0], "one whit less": [65535, 0], "whit less heavy": [65535, 0], "less heavy and": [65535, 0], "heavy and bitter": [65535, 0], "and bitter to": [65535, 0], "bitter to him": [65535, 0], "to him than": [65535, 0], "him than a": [65535, 0], "than a man's": [65535, 0], "a man's are": [65535, 0], "man's are to": [65535, 0], "are to a": [65535, 0], "to a man": [65535, 0], "a man but": [65535, 0], "man but because": [65535, 0], "but because a": [65535, 0], "because a new": [65535, 0], "new and powerful": [65535, 0], "and powerful interest": [65535, 0], "powerful interest bore": [65535, 0], "interest bore them": [65535, 0], "bore them down": [65535, 0], "them down and": [65535, 0], "down and drove": [65535, 0], "and drove them": [65535, 0], "drove them out": [65535, 0], "them out of": [65535, 0], "of his mind": [65535, 0], "his mind for": [65535, 0], "mind for the": [65535, 0], "for the time": [65535, 0], "the time just": [65535, 0], "time just as": [65535, 0], "just as men's": [65535, 0], "as men's misfortunes": [65535, 0], "men's misfortunes are": [65535, 0], "misfortunes are forgotten": [65535, 0], "are forgotten in": [65535, 0], "forgotten in the": [65535, 0], "in the excitement": [65535, 0], "the excitement of": [65535, 0], "excitement of new": [65535, 0], "of new enterprises": [65535, 0], "new enterprises this": [65535, 0], "enterprises this new": [65535, 0], "this new interest": [65535, 0], "new interest was": [65535, 0], "interest was a": [65535, 0], "was a valued": [65535, 0], "a valued novelty": [65535, 0], "valued novelty in": [65535, 0], "novelty in whistling": [65535, 0], "in whistling which": [65535, 0], "whistling which he": [65535, 0], "he had just": [65535, 0], "had just acquired": [65535, 0], "just acquired from": [65535, 0], "acquired from a": [65535, 0], "from a negro": [65535, 0], "a negro and": [65535, 0], "negro and he": [65535, 0], "and he was": [65535, 0], "he was suffering": [65535, 0], "was suffering to": [65535, 0], "suffering to practise": [65535, 0], "to practise it": [65535, 0], "practise it undisturbed": [65535, 0], "it undisturbed it": [65535, 0], "undisturbed it consisted": [65535, 0], "it consisted in": [65535, 0], "consisted in a": [65535, 0], "a peculiar bird": [65535, 0], "peculiar bird like": [65535, 0], "bird like turn": [65535, 0], "like turn a": [65535, 0], "turn a sort": [65535, 0], "sort of liquid": [65535, 0], "of liquid warble": [65535, 0], "liquid warble produced": [65535, 0], "warble produced by": [65535, 0], "produced by touching": [65535, 0], "by touching the": [65535, 0], "touching the tongue": [65535, 0], "the tongue to": [65535, 0], "tongue to the": [65535, 0], "to the roof": [65535, 0], "the roof of": [65535, 0], "roof of the": [65535, 0], "of the mouth": [65535, 0], "the mouth at": [65535, 0], "mouth at short": [65535, 0], "at short intervals": [65535, 0], "short intervals in": [65535, 0], "intervals in the": [65535, 0], "of the music": [65535, 0], "the music the": [65535, 0], "music the reader": [65535, 0], "the reader probably": [65535, 0], "reader probably remembers": [65535, 0], "probably remembers how": [65535, 0], "remembers how to": [65535, 0], "how to do": [65535, 0], "do it if": [65535, 0], "if he has": [65535, 0], "he has ever": [65535, 0], "has ever been": [65535, 0], "ever been a": [65535, 0], "been a boy": [65535, 0], "a boy diligence": [65535, 0], "boy diligence and": [65535, 0], "diligence and attention": [65535, 0], "and attention soon": [65535, 0], "attention soon gave": [65535, 0], "soon gave him": [65535, 0], "him the knack": [65535, 0], "the knack of": [65535, 0], "knack of it": [65535, 0], "it and he": [65535, 0], "and he strode": [65535, 0], "he strode down": [65535, 0], "strode down the": [65535, 0], "with his mouth": [65535, 0], "his mouth full": [65535, 0], "mouth full of": [65535, 0], "full of harmony": [65535, 0], "of harmony and": [65535, 0], "harmony and his": [65535, 0], "and his soul": [65535, 0], "his soul full": [65535, 0], "soul full of": [65535, 0], "full of gratitude": [65535, 0], "of gratitude he": [65535, 0], "gratitude he felt": [65535, 0], "he felt much": [65535, 0], "felt much as": [65535, 0], "much as an": [65535, 0], "as an astronomer": [65535, 0], "an astronomer feels": [65535, 0], "astronomer feels who": [65535, 0], "feels who has": [65535, 0], "who has discovered": [65535, 0], "has discovered a": [65535, 0], "discovered a new": [65535, 0], "a new planet": [65535, 0], "new planet no": [65535, 0], "planet no doubt": [65535, 0], "no doubt as": [65535, 0], "doubt as far": [65535, 0], "as far as": [65535, 0], "far as strong": [65535, 0], "as strong deep": [65535, 0], "strong deep unalloyed": [65535, 0], "deep unalloyed pleasure": [65535, 0], "unalloyed pleasure is": [65535, 0], "pleasure is concerned": [65535, 0], "is concerned the": [65535, 0], "concerned the advantage": [65535, 0], "the advantage was": [65535, 0], "advantage was with": [65535, 0], "was with the": [65535, 0], "with the boy": [65535, 0], "the boy not": [65535, 0], "boy not the": [65535, 0], "not the astronomer": [65535, 0], "the astronomer the": [65535, 0], "astronomer the summer": [65535, 0], "the summer evenings": [65535, 0], "summer evenings were": [65535, 0], "evenings were long": [65535, 0], "were long it": [65535, 0], "long it was": [65535, 0], "was not dark": [65535, 0], "not dark yet": [65535, 0], "dark yet presently": [65535, 0], "yet presently tom": [65535, 0], "presently tom checked": [65535, 0], "tom checked his": [65535, 0], "checked his whistle": [65535, 0], "his whistle a": [65535, 0], "whistle a stranger": [65535, 0], "a stranger was": [65535, 0], "stranger was before": [65535, 0], "was before him": [65535, 0], "before him a": [65535, 0], "him a boy": [65535, 0], "a boy a": [65535, 0], "boy a shade": [65535, 0], "a shade larger": [65535, 0], "shade larger than": [65535, 0], "larger than himself": [65535, 0], "than himself a": [65535, 0], "himself a new": [65535, 0], "a new comer": [65535, 0], "new comer of": [65535, 0], "comer of any": [65535, 0], "of any age": [65535, 0], "any age or": [65535, 0], "age or either": [65535, 0], "or either sex": [65535, 0], "either sex was": [65535, 0], "sex was an": [65535, 0], "was an impressive": [65535, 0], "an impressive curiosity": [65535, 0], "impressive curiosity in": [65535, 0], "curiosity in the": [65535, 0], "in the poor": [65535, 0], "the poor little": [65535, 0], "poor little shabby": [65535, 0], "little shabby village": [65535, 0], "shabby village of": [65535, 0], "village of st": [65535, 0], "of st petersburg": [65535, 0], "st petersburg this": [65535, 0], "petersburg this boy": [65535, 0], "this boy was": [65535, 0], "boy was well": [65535, 0], "was well dressed": [65535, 0], "well dressed too": [65535, 0], "dressed too well": [65535, 0], "too well dressed": [65535, 0], "well dressed on": [65535, 0], "dressed on a": [65535, 0], "on a week": [65535, 0], "a week day": [65535, 0], "week day this": [65535, 0], "day this was": [65535, 0], "this was simply": [65535, 0], "was simply astounding": [65535, 0], "simply astounding his": [65535, 0], "astounding his cap": [65535, 0], "his cap was": [65535, 0], "cap was a": [65535, 0], "was a dainty": [65535, 0], "a dainty thing": [65535, 0], "dainty thing his": [65535, 0], "thing his closebuttoned": [65535, 0], "his closebuttoned blue": [65535, 0], "closebuttoned blue cloth": [65535, 0], "blue cloth roundabout": [65535, 0], "cloth roundabout was": [65535, 0], "roundabout was new": [65535, 0], "was new and": [65535, 0], "new and natty": [65535, 0], "and natty and": [65535, 0], "natty and so": [65535, 0], "and so were": [65535, 0], "so were his": [65535, 0], "were his pantaloons": [65535, 0], "his pantaloons he": [65535, 0], "pantaloons he had": [65535, 0], "he had shoes": [65535, 0], "had shoes on": [65535, 0], "shoes on and": [65535, 0], "on and it": [65535, 0], "and it was": [65535, 0], "it was only": [65535, 0], "was only friday": [65535, 0], "only friday he": [65535, 0], "friday he even": [65535, 0], "he even wore": [65535, 0], "even wore a": [65535, 0], "wore a necktie": [65535, 0], "a necktie a": [65535, 0], "necktie a bright": [65535, 0], "a bright bit": [65535, 0], "bright bit of": [65535, 0], "bit of ribbon": [65535, 0], "of ribbon he": [65535, 0], "ribbon he had": [65535, 0], "had a citified": [65535, 0], "a citified air": [65535, 0], "citified air about": [65535, 0], "air about him": [65535, 0], "about him that": [65535, 0], "him that ate": [65535, 0], "that ate into": [65535, 0], "ate into tom's": [65535, 0], "into tom's vitals": [65535, 0], "tom's vitals the": [65535, 0], "vitals the more": [65535, 0], "the more tom": [65535, 0], "more tom stared": [65535, 0], "tom stared at": [65535, 0], "stared at the": [65535, 0], "at the splendid": [65535, 0], "the splendid marvel": [65535, 0], "splendid marvel the": [65535, 0], "marvel the higher": [65535, 0], "the higher he": [65535, 0], "higher he turned": [65535, 0], "he turned up": [65535, 0], "turned up his": [65535, 0], "up his nose": [65535, 0], "his nose at": [65535, 0], "nose at his": [65535, 0], "at his finery": [65535, 0], "his finery and": [65535, 0], "finery and the": [65535, 0], "and the shabbier": [65535, 0], "the shabbier and": [65535, 0], "shabbier and shabbier": [65535, 0], "and shabbier his": [65535, 0], "shabbier his own": [65535, 0], "his own outfit": [65535, 0], "own outfit seemed": [65535, 0], "outfit seemed to": [65535, 0], "seemed to him": [65535, 0], "to him to": [65535, 0], "him to grow": [65535, 0], "to grow neither": [65535, 0], "grow neither boy": [65535, 0], "neither boy spoke": [65535, 0], "boy spoke if": [65535, 0], "spoke if one": [65535, 0], "if one moved": [65535, 0], "one moved the": [65535, 0], "moved the other": [65535, 0], "the other moved": [65535, 0], "other moved but": [65535, 0], "moved but only": [65535, 0], "but only sidewise": [65535, 0], "only sidewise in": [65535, 0], "sidewise in a": [65535, 0], "in a circle": [65535, 0], "a circle they": [65535, 0], "circle they kept": [65535, 0], "they kept face": [65535, 0], "kept face to": [65535, 0], "face to face": [65535, 0], "to face and": [65535, 0], "face and eye": [65535, 0], "and eye to": [65535, 0], "eye to eye": [65535, 0], "to eye all": [65535, 0], "eye all the": [65535, 0], "all the time": [65535, 0], "the time finally": [65535, 0], "time finally tom": [65535, 0], "finally tom said": [65535, 0], "tom said i": [65535, 0], "said i can": [65535, 0], "i can lick": [65535, 0], "can lick you": [65535, 0], "lick you i'd": [65535, 0], "you i'd like": [65535, 0], "like to see": [65535, 0], "to see you": [32706, 32829], "see you try": [65535, 0], "you try it": [65535, 0], "try it well": [65535, 0], "well i can": [65535, 0], "i can do": [65535, 0], "do it no": [65535, 0], "it no you": [65535, 0], "no you can't": [65535, 0], "you can't either": [65535, 0], "can't either yes": [65535, 0], "either yes i": [65535, 0], "yes i can": [65535, 0], "i can no": [65535, 0], "can no you": [65535, 0], "you can't i": [65535, 0], "can't i can": [65535, 0], "i can you": [65535, 0], "can you can't": [65535, 0], "you can't can": [65535, 0], "can't can can't": [65535, 0], "can can't an": [65535, 0], "can't an uncomfortable": [65535, 0], "an uncomfortable pause": [65535, 0], "uncomfortable pause then": [65535, 0], "pause then tom": [65535, 0], "then tom said": [65535, 0], "tom said what's": [65535, 0], "said what's your": [65535, 0], "your name 'tisn't": [65535, 0], "name 'tisn't any": [65535, 0], "'tisn't any of": [65535, 0], "any of your": [65535, 0], "of your business": [65535, 0], "your business maybe": [65535, 0], "business maybe well": [65535, 0], "maybe well i": [65535, 0], "well i 'low": [65535, 0], "i 'low i'll": [65535, 0], "'low i'll make": [65535, 0], "i'll make it": [65535, 0], "make it my": [65535, 0], "it my business": [65535, 0], "my business well": [65535, 0], "business well why": [65535, 0], "don't you if": [65535, 0], "you say much": [65535, 0], "say much i": [65535, 0], "much i will": [65535, 0], "i will much": [65535, 0], "will much much": [65535, 0], "much much much": [65535, 0], "much much there": [65535, 0], "much there now": [65535, 0], "there now oh": [65535, 0], "now oh you": [65535, 0], "oh you think": [65535, 0], "you think you're": [65535, 0], "think you're mighty": [65535, 0], "you're mighty smart": [65535, 0], "mighty smart don't": [65535, 0], "smart don't you": [65535, 0], "don't you i": [65535, 0], "you i could": [65535, 0], "i could lick": [65535, 0], "could lick you": [65535, 0], "lick you with": [65535, 0], "you with one": [65535, 0], "with one hand": [65535, 0], "one hand tied": [65535, 0], "hand tied behind": [65535, 0], "tied behind me": [65535, 0], "behind me if": [65535, 0], "me if i": [65535, 0], "don't you do": [65535, 0], "you do it": [65535, 0], "do it you": [65535, 0], "it you say": [65535, 0], "you say you": [65535, 0], "say you can": [65535, 0], "you can do": [65535, 0], "do it well": [65535, 0], "well i will": [43635, 21900], "i will if": [65535, 0], "will if you": [65535, 0], "if you fool": [65535, 0], "you fool with": [65535, 0], "fool with me": [65535, 0], "with me oh": [65535, 0], "me oh yes": [65535, 0], "oh yes i've": [65535, 0], "yes i've seen": [65535, 0], "i've seen whole": [65535, 0], "seen whole families": [65535, 0], "whole families in": [65535, 0], "families in the": [65535, 0], "in the same": [65535, 0], "the same fix": [65535, 0], "same fix smarty": [65535, 0], "fix smarty you": [65535, 0], "smarty you think": [65535, 0], "think you're some": [65535, 0], "you're some now": [65535, 0], "some now don't": [65535, 0], "don't you oh": [65535, 0], "you oh what": [65535, 0], "oh what a": [65535, 0], "what a hat": [65535, 0], "a hat you": [65535, 0], "hat you can": [65535, 0], "you can lump": [65535, 0], "can lump that": [65535, 0], "lump that hat": [65535, 0], "that hat if": [65535, 0], "hat if you": [65535, 0], "if you don't": [65535, 0], "you don't like": [65535, 0], "don't like it": [65535, 0], "like it i": [65535, 0], "it i dare": [65535, 0], "i dare you": [65535, 0], "dare you to": [65535, 0], "you to knock": [65535, 0], "to knock it": [65535, 0], "knock it off": [65535, 0], "it off and": [65535, 0], "off and anybody": [65535, 0], "and anybody that'll": [65535, 0], "anybody that'll take": [65535, 0], "that'll take a": [65535, 0], "take a dare": [65535, 0], "a dare will": [65535, 0], "dare will suck": [65535, 0], "will suck eggs": [65535, 0], "suck eggs you're": [65535, 0], "eggs you're a": [65535, 0], "you're a liar": [65535, 0], "a liar you're": [65535, 0], "liar you're another": [65535, 0], "you're another you're": [65535, 0], "another you're a": [65535, 0], "you're a fighting": [65535, 0], "a fighting liar": [65535, 0], "fighting liar and": [65535, 0], "liar and dasn't": [65535, 0], "and dasn't take": [65535, 0], "dasn't take it": [65535, 0], "take it up": [65535, 0], "it up aw": [65535, 0], "up aw take": [65535, 0], "aw take a": [65535, 0], "take a walk": [65535, 0], "a walk say": [65535, 0], "walk say if": [65535, 0], "say if you": [65535, 0], "if you give": [65535, 0], "you give me": [65535, 0], "give me much": [65535, 0], "me much more": [65535, 0], "much more of": [65535, 0], "more of your": [65535, 0], "of your sass": [65535, 0], "your sass i'll": [65535, 0], "sass i'll take": [65535, 0], "i'll take and": [65535, 0], "take and bounce": [65535, 0], "and bounce a": [65535, 0], "bounce a rock": [65535, 0], "a rock off'n": [65535, 0], "rock off'n your": [65535, 0], "off'n your head": [65535, 0], "your head oh": [65535, 0], "head oh of": [65535, 0], "oh of course": [65535, 0], "of course you": [65535, 0], "course you will": [65535, 0], "you will well": [65535, 0], "will well i": [65535, 0], "i will well": [65535, 0], "will well why": [65535, 0], "do it then": [65535, 0], "it then what": [65535, 0], "then what do": [65535, 0], "do you keep": [65535, 0], "you keep saying": [65535, 0], "keep saying you": [65535, 0], "saying you will": [65535, 0], "you will for": [65535, 0], "will for why": [65535, 0], "for why don't": [65535, 0], "do it it's": [65535, 0], "it it's because": [65535, 0], "it's because you're": [65535, 0], "because you're afraid": [65535, 0], "you're afraid i": [65535, 0], "afraid i ain't": [65535, 0], "i ain't afraid": [65535, 0], "ain't afraid you": [65535, 0], "afraid you are": [65535, 0], "you are i": [65535, 0], "are i ain't": [65535, 0], "i ain't you": [65535, 0], "ain't you are": [65535, 0], "you are another": [65535, 0], "are another pause": [65535, 0], "another pause and": [65535, 0], "pause and more": [65535, 0], "and more eying": [65535, 0], "more eying and": [65535, 0], "eying and sidling": [65535, 0], "and sidling around": [65535, 0], "sidling around each": [65535, 0], "around each other": [65535, 0], "each other presently": [65535, 0], "other presently they": [65535, 0], "presently they were": [65535, 0], "they were shoulder": [65535, 0], "were shoulder to": [65535, 0], "shoulder to shoulder": [65535, 0], "to shoulder tom": [65535, 0], "shoulder tom said": [65535, 0], "tom said get": [65535, 0], "said get away": [65535, 0], "get away from": [65535, 0], "away from here": [65535, 0], "from here go": [65535, 0], "here go away": [65535, 0], "go away yourself": [65535, 0], "away yourself i": [65535, 0], "yourself i won't": [65535, 0], "won't i won't": [65535, 0], "i won't either": [65535, 0], "won't either so": [65535, 0], "either so they": [65535, 0], "so they stood": [65535, 0], "they stood each": [65535, 0], "stood each with": [65535, 0], "each with a": [65535, 0], "with a foot": [65535, 0], "a foot placed": [65535, 0], "foot placed at": [65535, 0], "placed at an": [65535, 0], "an angle as": [65535, 0], "angle as a": [65535, 0], "as a brace": [65535, 0], "a brace and": [65535, 0], "brace and both": [65535, 0], "and both shoving": [65535, 0], "both shoving with": [65535, 0], "shoving with might": [65535, 0], "with might and": [65535, 0], "might and main": [65535, 0], "and main and": [65535, 0], "main and glowering": [65535, 0], "and glowering at": [65535, 0], "glowering at each": [65535, 0], "at each other": [65535, 0], "each other with": [65535, 0], "other with hate": [65535, 0], "with hate but": [65535, 0], "hate but neither": [65535, 0], "but neither could": [65535, 0], "neither could get": [65535, 0], "could get an": [65535, 0], "get an advantage": [65535, 0], "an advantage after": [65535, 0], "advantage after struggling": [65535, 0], "after struggling till": [65535, 0], "struggling till both": [65535, 0], "till both were": [65535, 0], "both were hot": [65535, 0], "were hot and": [65535, 0], "hot and flushed": [65535, 0], "and flushed each": [65535, 0], "flushed each relaxed": [65535, 0], "each relaxed his": [65535, 0], "relaxed his strain": [65535, 0], "his strain with": [65535, 0], "strain with watchful": [65535, 0], "with watchful caution": [65535, 0], "watchful caution and": [65535, 0], "caution and tom": [65535, 0], "and tom said": [65535, 0], "tom said you're": [65535, 0], "said you're a": [65535, 0], "you're a coward": [65535, 0], "a coward and": [65535, 0], "coward and a": [65535, 0], "and a pup": [65535, 0], "a pup i'll": [65535, 0], "pup i'll tell": [65535, 0], "i'll tell my": [65535, 0], "tell my big": [65535, 0], "my big brother": [65535, 0], "big brother on": [65535, 0], "brother on you": [65535, 0], "on you and": [32706, 32829], "you and he": [65535, 0], "and he can": [65535, 0], "he can thrash": [65535, 0], "can thrash you": [65535, 0], "thrash you with": [65535, 0], "you with his": [65535, 0], "with his little": [65535, 0], "his little finger": [65535, 0], "little finger and": [65535, 0], "finger and i'll": [65535, 0], "and i'll make": [65535, 0], "i'll make him": [65535, 0], "make him do": [65535, 0], "him do it": [65535, 0], "do it too": [65535, 0], "it too what": [65535, 0], "too what do": [65535, 0], "what do i": [65535, 0], "do i care": [65535, 0], "i care for": [65535, 0], "care for your": [65535, 0], "for your big": [65535, 0], "your big brother": [65535, 0], "big brother i've": [65535, 0], "brother i've got": [65535, 0], "i've got a": [65535, 0], "got a brother": [65535, 0], "a brother that's": [65535, 0], "brother that's bigger": [65535, 0], "that's bigger than": [65535, 0], "bigger than he": [65535, 0], "than he is": [65535, 0], "he is and": [65535, 0], "is and what's": [65535, 0], "and what's more": [65535, 0], "what's more he": [65535, 0], "more he can": [65535, 0], "he can throw": [65535, 0], "can throw him": [65535, 0], "throw him over": [65535, 0], "him over that": [65535, 0], "over that fence": [65535, 0], "that fence too": [65535, 0], "fence too both": [65535, 0], "too both brothers": [65535, 0], "both brothers were": [65535, 0], "brothers were imaginary": [65535, 0], "were imaginary that's": [65535, 0], "imaginary that's a": [65535, 0], "that's a lie": [65535, 0], "a lie your": [65535, 0], "lie your saying": [65535, 0], "your saying so": [65535, 0], "saying so don't": [65535, 0], "so don't make": [65535, 0], "don't make it": [65535, 0], "make it so": [65535, 0], "it so tom": [65535, 0], "so tom drew": [65535, 0], "tom drew a": [65535, 0], "drew a line": [65535, 0], "a line in": [65535, 0], "in the dust": [65535, 0], "the dust with": [65535, 0], "dust with his": [65535, 0], "with his big": [65535, 0], "his big toe": [65535, 0], "big toe and": [65535, 0], "toe and said": [65535, 0], "and said i": [65535, 0], "said i dare": [65535, 0], "you to step": [65535, 0], "to step over": [65535, 0], "step over that": [65535, 0], "over that and": [65535, 0], "that and i'll": [65535, 0], "and i'll lick": [65535, 0], "lick you till": [65535, 0], "you till you": [65535, 0], "till you can't": [65535, 0], "you can't stand": [65535, 0], "can't stand up": [65535, 0], "stand up anybody": [65535, 0], "up anybody that'll": [65535, 0], "dare will steal": [65535, 0], "will steal sheep": [65535, 0], "steal sheep the": [65535, 0], "sheep the new": [65535, 0], "the new boy": [65535, 0], "new boy stepped": [65535, 0], "boy stepped over": [65535, 0], "stepped over promptly": [65535, 0], "over promptly and": [65535, 0], "promptly and said": [65535, 0], "and said now": [65535, 0], "said now you": [65535, 0], "now you said": [65535, 0], "you said you'd": [65535, 0], "said you'd do": [65535, 0], "you'd do it": [65535, 0], "do it now": [65535, 0], "it now let's": [65535, 0], "now let's see": [65535, 0], "let's see you": [65535, 0], "see you do": [65535, 0], "do it don't": [65535, 0], "it don't you": [65535, 0], "don't you crowd": [65535, 0], "you crowd me": [65535, 0], "crowd me now": [65535, 0], "now you better": [65535, 0], "you better look": [65535, 0], "better look out": [65535, 0], "look out well": [65535, 0], "out well you": [65535, 0], "well you said": [65535, 0], "do it why": [65535, 0], "it why don't": [65535, 0], "do it by": [65535, 0], "it by jingo": [65535, 0], "by jingo for": [65535, 0], "jingo for two": [65535, 0], "for two cents": [65535, 0], "two cents i": [65535, 0], "cents i will": [65535, 0], "i will do": [65535, 0], "will do it": [65535, 0], "it the new": [65535, 0], "new boy took": [65535, 0], "boy took two": [65535, 0], "took two broad": [65535, 0], "two broad coppers": [65535, 0], "broad coppers out": [65535, 0], "coppers out of": [65535, 0], "pocket and held": [65535, 0], "and held them": [65535, 0], "held them out": [65535, 0], "them out with": [65535, 0], "out with derision": [65535, 0], "with derision tom": [65535, 0], "derision tom struck": [65535, 0], "tom struck them": [65535, 0], "struck them to": [65535, 0], "them to the": [65535, 0], "to the ground": [65535, 0], "the ground in": [65535, 0], "ground in an": [65535, 0], "in an instant": [65535, 0], "an instant both": [65535, 0], "instant both boys": [65535, 0], "both boys were": [65535, 0], "boys were rolling": [65535, 0], "were rolling and": [65535, 0], "rolling and tumbling": [65535, 0], "and tumbling in": [65535, 0], "tumbling in the": [65535, 0], "the dirt gripped": [65535, 0], "dirt gripped together": [65535, 0], "gripped together like": [65535, 0], "together like cats": [65535, 0], "like cats and": [65535, 0], "cats and for": [65535, 0], "and for the": [21790, 43745], "a minute they": [65535, 0], "minute they tugged": [65535, 0], "they tugged and": [65535, 0], "tugged and tore": [65535, 0], "and tore at": [65535, 0], "tore at each": [65535, 0], "at each other's": [65535, 0], "each other's hair": [65535, 0], "other's hair and": [65535, 0], "hair and clothes": [65535, 0], "and clothes punched": [65535, 0], "clothes punched and": [65535, 0], "punched and scratched": [65535, 0], "and scratched each": [65535, 0], "scratched each other's": [65535, 0], "each other's nose": [65535, 0], "other's nose and": [65535, 0], "nose and covered": [65535, 0], "and covered themselves": [65535, 0], "covered themselves with": [65535, 0], "themselves with dust": [65535, 0], "with dust and": [65535, 0], "dust and glory": [65535, 0], "and glory presently": [65535, 0], "glory presently the": [65535, 0], "presently the confusion": [65535, 0], "the confusion took": [65535, 0], "confusion took form": [65535, 0], "took form and": [65535, 0], "form and through": [65535, 0], "and through the": [65535, 0], "through the fog": [65535, 0], "the fog of": [65535, 0], "fog of battle": [65535, 0], "of battle tom": [65535, 0], "battle tom appeared": [65535, 0], "tom appeared seated": [65535, 0], "appeared seated astride": [65535, 0], "seated astride the": [65535, 0], "astride the new": [65535, 0], "new boy and": [65535, 0], "boy and pounding": [65535, 0], "and pounding him": [65535, 0], "pounding him with": [65535, 0], "him with his": [65535, 0], "with his fists": [65535, 0], "his fists holler": [65535, 0], "fists holler 'nuff": [65535, 0], "holler 'nuff said": [65535, 0], "'nuff said he": [65535, 0], "said he the": [65535, 0], "he the boy": [65535, 0], "the boy only": [65535, 0], "boy only struggled": [65535, 0], "only struggled to": [65535, 0], "struggled to free": [65535, 0], "to free himself": [65535, 0], "free himself he": [65535, 0], "himself he was": [65535, 0], "he was crying": [65535, 0], "was crying mainly": [65535, 0], "crying mainly from": [65535, 0], "mainly from rage": [65535, 0], "from rage holler": [65535, 0], "rage holler 'nuff": [65535, 0], "holler 'nuff and": [65535, 0], "'nuff and the": [65535, 0], "and the pounding": [65535, 0], "the pounding went": [65535, 0], "pounding went on": [65535, 0], "went on at": [65535, 0], "on at last": [65535, 0], "last the stranger": [65535, 0], "the stranger got": [65535, 0], "stranger got out": [65535, 0], "out a smothered": [65535, 0], "a smothered 'nuff": [65535, 0], "smothered 'nuff and": [65535, 0], "'nuff and tom": [65535, 0], "and tom let": [65535, 0], "tom let him": [65535, 0], "let him up": [65535, 0], "him up and": [65535, 0], "up and said": [65535, 0], "said now that'll": [65535, 0], "now that'll learn": [65535, 0], "that'll learn you": [65535, 0], "learn you better": [65535, 0], "look out who": [65535, 0], "out who you're": [65535, 0], "who you're fooling": [65535, 0], "you're fooling with": [65535, 0], "fooling with next": [65535, 0], "with next time": [65535, 0], "next time the": [65535, 0], "time the new": [65535, 0], "new boy went": [65535, 0], "boy went off": [65535, 0], "went off brushing": [65535, 0], "off brushing the": [65535, 0], "brushing the dust": [65535, 0], "the dust from": [65535, 0], "dust from his": [65535, 0], "from his clothes": [65535, 0], "his clothes sobbing": [65535, 0], "clothes sobbing snuffling": [65535, 0], "sobbing snuffling and": [65535, 0], "snuffling and occasionally": [65535, 0], "and occasionally looking": [65535, 0], "occasionally looking back": [65535, 0], "looking back and": [65535, 0], "back and shaking": [65535, 0], "and shaking his": [65535, 0], "shaking his head": [65535, 0], "head and threatening": [65535, 0], "and threatening what": [65535, 0], "threatening what he": [65535, 0], "what he would": [65535, 0], "he would do": [65535, 0], "would do to": [65535, 0], "do to tom": [65535, 0], "to tom the": [65535, 0], "tom the next": [65535, 0], "the next time": [65535, 0], "next time he": [65535, 0], "time he caught": [65535, 0], "he caught him": [65535, 0], "caught him out": [65535, 0], "him out to": [65535, 0], "out to which": [65535, 0], "to which tom": [65535, 0], "which tom responded": [65535, 0], "tom responded with": [65535, 0], "responded with jeers": [65535, 0], "with jeers and": [65535, 0], "jeers and started": [65535, 0], "and started off": [65535, 0], "started off in": [65535, 0], "off in high": [65535, 0], "in high feather": [65535, 0], "high feather and": [65535, 0], "feather and as": [65535, 0], "and as soon": [65535, 0], "as soon as": [65535, 0], "soon as his": [65535, 0], "as his back": [65535, 0], "his back was": [65535, 0], "back was turned": [65535, 0], "was turned the": [65535, 0], "turned the new": [65535, 0], "new boy snatched": [65535, 0], "boy snatched up": [65535, 0], "snatched up a": [65535, 0], "up a stone": [65535, 0], "a stone threw": [65535, 0], "stone threw it": [65535, 0], "threw it and": [65535, 0], "it and hit": [65535, 0], "and hit him": [65535, 0], "hit him between": [65535, 0], "him between the": [65535, 0], "between the shoulders": [65535, 0], "the shoulders and": [65535, 0], "shoulders and then": [65535, 0], "and then turned": [65535, 0], "then turned tail": [65535, 0], "turned tail and": [65535, 0], "tail and ran": [65535, 0], "and ran like": [65535, 0], "ran like an": [65535, 0], "like an antelope": [65535, 0], "an antelope tom": [65535, 0], "antelope tom chased": [65535, 0], "tom chased the": [65535, 0], "chased the traitor": [65535, 0], "the traitor home": [65535, 0], "traitor home and": [65535, 0], "home and thus": [65535, 0], "and thus found": [65535, 0], "thus found out": [65535, 0], "found out where": [65535, 0], "out where he": [65535, 0], "where he lived": [65535, 0], "he lived he": [65535, 0], "lived he then": [65535, 0], "he then held": [65535, 0], "then held a": [65535, 0], "held a position": [65535, 0], "a position at": [65535, 0], "position at the": [65535, 0], "the gate for": [65535, 0], "gate for some": [65535, 0], "for some time": [65535, 0], "some time daring": [65535, 0], "time daring the": [65535, 0], "daring the enemy": [65535, 0], "the enemy to": [65535, 0], "enemy to come": [65535, 0], "to come outside": [65535, 0], "come outside but": [65535, 0], "outside but the": [65535, 0], "but the enemy": [65535, 0], "the enemy only": [65535, 0], "enemy only made": [65535, 0], "only made faces": [65535, 0], "made faces at": [65535, 0], "faces at him": [65535, 0], "at him through": [65535, 0], "him through the": [65535, 0], "through the window": [65535, 0], "window and declined": [65535, 0], "and declined at": [65535, 0], "declined at last": [65535, 0], "last the enemy's": [65535, 0], "the enemy's mother": [65535, 0], "enemy's mother appeared": [65535, 0], "mother appeared and": [65535, 0], "appeared and called": [65535, 0], "and called tom": [65535, 0], "called tom a": [65535, 0], "tom a bad": [65535, 0], "a bad vicious": [65535, 0], "bad vicious vulgar": [65535, 0], "vicious vulgar child": [65535, 0], "vulgar child and": [65535, 0], "child and ordered": [65535, 0], "and ordered him": [65535, 0], "ordered him away": [65535, 0], "him away so": [65535, 0], "away so he": [65535, 0], "he went away": [65535, 0], "went away but": [65535, 0], "away but he": [65535, 0], "but he said": [65535, 0], "he said he": [65535, 0], "said he 'lowed": [65535, 0], "he 'lowed to": [65535, 0], "'lowed to lay": [65535, 0], "to lay for": [65535, 0], "lay for that": [65535, 0], "for that boy": [65535, 0], "that boy he": [65535, 0], "boy he got": [65535, 0], "he got home": [65535, 0], "got home pretty": [65535, 0], "home pretty late": [65535, 0], "pretty late that": [65535, 0], "late that night": [65535, 0], "that night and": [65535, 0], "night and when": [65535, 0], "when he climbed": [65535, 0], "he climbed cautiously": [65535, 0], "climbed cautiously in": [65535, 0], "cautiously in at": [65535, 0], "in at the": [65535, 0], "at the window": [65535, 0], "the window he": [65535, 0], "window he uncovered": [65535, 0], "he uncovered an": [65535, 0], "uncovered an ambuscade": [65535, 0], "an ambuscade in": [65535, 0], "ambuscade in the": [65535, 0], "in the person": [65535, 0], "the person of": [65535, 0], "person of his": [65535, 0], "of his aunt": [65535, 0], "his aunt and": [65535, 0], "aunt and when": [65535, 0], "and when she": [65535, 0], "when she saw": [65535, 0], "she saw the": [65535, 0], "saw the state": [65535, 0], "the state his": [65535, 0], "state his clothes": [65535, 0], "his clothes were": [65535, 0], "clothes were in": [65535, 0], "were in her": [65535, 0], "in her resolution": [65535, 0], "her resolution to": [65535, 0], "resolution to turn": [65535, 0], "to turn his": [65535, 0], "turn his saturday": [65535, 0], "his saturday holiday": [65535, 0], "saturday holiday into": [65535, 0], "holiday into captivity": [65535, 0], "into captivity at": [65535, 0], "captivity at hard": [65535, 0], "at hard labor": [65535, 0], "hard labor became": [65535, 0], "labor became adamantine": [65535, 0], "became adamantine in": [65535, 0], "adamantine in its": [65535, 0], "in its firmness": [65535, 0], "tom no answer tom": [65535, 0], "no answer tom no": [65535, 0], "answer tom no answer": [65535, 0], "tom no answer what's": [65535, 0], "no answer what's gone": [65535, 0], "answer what's gone with": [65535, 0], "what's gone with that": [65535, 0], "gone with that boy": [65535, 0], "with that boy i": [65535, 0], "that boy i wonder": [65535, 0], "boy i wonder you": [65535, 0], "i wonder you tom": [65535, 0], "wonder you tom no": [65535, 0], "you tom no answer": [65535, 0], "tom no answer the": [65535, 0], "no answer the old": [65535, 0], "answer the old lady": [65535, 0], "the old lady pulled": [65535, 0], "old lady pulled her": [65535, 0], "lady pulled her spectacles": [65535, 0], "pulled her spectacles down": [65535, 0], "her spectacles down and": [65535, 0], "spectacles down and looked": [65535, 0], "down and looked over": [65535, 0], "and looked over them": [65535, 0], "looked over them about": [65535, 0], "over them about the": [65535, 0], "them about the room": [65535, 0], "about the room then": [65535, 0], "the room then she": [65535, 0], "room then she put": [65535, 0], "then she put them": [65535, 0], "she put them up": [65535, 0], "put them up and": [65535, 0], "them up and looked": [65535, 0], "up and looked out": [65535, 0], "and looked out under": [65535, 0], "looked out under them": [65535, 0], "out under them she": [65535, 0], "under them she seldom": [65535, 0], "them she seldom or": [65535, 0], "she seldom or never": [65535, 0], "seldom or never looked": [65535, 0], "or never looked through": [65535, 0], "never looked through them": [65535, 0], "looked through them for": [65535, 0], "through them for so": [65535, 0], "them for so small": [65535, 0], "for so small a": [65535, 0], "so small a thing": [65535, 0], "small a thing as": [65535, 0], "a thing as a": [65535, 0], "thing as a boy": [65535, 0], "as a boy they": [65535, 0], "a boy they were": [65535, 0], "boy they were her": [65535, 0], "they were her state": [65535, 0], "were her state pair": [65535, 0], "her state pair the": [65535, 0], "state pair the pride": [65535, 0], "pair the pride of": [65535, 0], "the pride of her": [65535, 0], "pride of her heart": [65535, 0], "of her heart and": [65535, 0], "her heart and were": [65535, 0], "heart and were built": [65535, 0], "and were built for": [65535, 0], "were built for style": [65535, 0], "built for style not": [65535, 0], "for style not service": [65535, 0], "style not service she": [65535, 0], "not service she could": [65535, 0], "service she could have": [65535, 0], "she could have seen": [65535, 0], "could have seen through": [65535, 0], "have seen through a": [65535, 0], "seen through a pair": [65535, 0], "through a pair of": [65535, 0], "a pair of stove": [65535, 0], "pair of stove lids": [65535, 0], "of stove lids just": [65535, 0], "stove lids just as": [65535, 0], "lids just as well": [65535, 0], "just as well she": [65535, 0], "as well she looked": [65535, 0], "well she looked perplexed": [65535, 0], "she looked perplexed for": [65535, 0], "looked perplexed for a": [65535, 0], "perplexed for a moment": [65535, 0], "for a moment and": [65535, 0], "and then said not": [65535, 0], "then said not fiercely": [65535, 0], "said not fiercely but": [65535, 0], "not fiercely but still": [65535, 0], "fiercely but still loud": [65535, 0], "but still loud enough": [65535, 0], "still loud enough for": [65535, 0], "loud enough for the": [65535, 0], "enough for the furniture": [65535, 0], "for the furniture to": [65535, 0], "the furniture to hear": [65535, 0], "furniture to hear well": [65535, 0], "to hear well i": [65535, 0], "hear well i lay": [65535, 0], "well i lay if": [65535, 0], "i lay if i": [65535, 0], "lay if i get": [65535, 0], "if i get hold": [65535, 0], "i get hold of": [65535, 0], "get hold of you": [65535, 0], "hold of you i'll": [65535, 0], "of you i'll she": [65535, 0], "you i'll she did": [65535, 0], "i'll she did not": [65535, 0], "she did not finish": [65535, 0], "did not finish for": [65535, 0], "not finish for by": [65535, 0], "finish for by this": [65535, 0], "for by this time": [65535, 0], "by this time she": [65535, 0], "this time she was": [65535, 0], "time she was bending": [65535, 0], "she was bending down": [65535, 0], "was bending down and": [65535, 0], "bending down and punching": [65535, 0], "down and punching under": [65535, 0], "and punching under the": [65535, 0], "punching under the bed": [65535, 0], "under the bed with": [65535, 0], "the bed with the": [65535, 0], "bed with the broom": [65535, 0], "with the broom and": [65535, 0], "the broom and so": [65535, 0], "broom and so she": [65535, 0], "and so she needed": [65535, 0], "so she needed breath": [65535, 0], "she needed breath to": [65535, 0], "needed breath to punctuate": [65535, 0], "breath to punctuate the": [65535, 0], "to punctuate the punches": [65535, 0], "punctuate the punches with": [65535, 0], "the punches with she": [65535, 0], "punches with she resurrected": [65535, 0], "with she resurrected nothing": [65535, 0], "she resurrected nothing but": [65535, 0], "resurrected nothing but the": [65535, 0], "nothing but the cat": [65535, 0], "but the cat i": [65535, 0], "the cat i never": [65535, 0], "cat i never did": [65535, 0], "i never did see": [65535, 0], "never did see the": [65535, 0], "did see the beat": [65535, 0], "see the beat of": [65535, 0], "the beat of that": [65535, 0], "beat of that boy": [65535, 0], "of that boy she": [65535, 0], "that boy she went": [65535, 0], "boy she went to": [65535, 0], "she went to the": [65535, 0], "went to the open": [65535, 0], "to the open door": [65535, 0], "the open door and": [65535, 0], "open door and stood": [65535, 0], "door and stood in": [65535, 0], "and stood in it": [65535, 0], "stood in it and": [65535, 0], "in it and looked": [65535, 0], "it and looked out": [65535, 0], "and looked out among": [65535, 0], "looked out among the": [65535, 0], "out among the tomato": [65535, 0], "among the tomato vines": [65535, 0], "the tomato vines and": [65535, 0], "tomato vines and jimpson": [65535, 0], "vines and jimpson weeds": [65535, 0], "and jimpson weeds that": [65535, 0], "jimpson weeds that constituted": [65535, 0], "weeds that constituted the": [65535, 0], "that constituted the garden": [65535, 0], "constituted the garden no": [65535, 0], "the garden no tom": [65535, 0], "garden no tom so": [65535, 0], "no tom so she": [65535, 0], "tom so she lifted": [65535, 0], "so she lifted up": [65535, 0], "she lifted up her": [65535, 0], "lifted up her voice": [65535, 0], "up her voice at": [65535, 0], "her voice at an": [65535, 0], "voice at an angle": [65535, 0], "at an angle calculated": [65535, 0], "an angle calculated for": [65535, 0], "angle calculated for distance": [65535, 0], "calculated for distance and": [65535, 0], "for distance and shouted": [65535, 0], "distance and shouted y": [65535, 0], "and shouted y o": [65535, 0], "shouted y o u": [65535, 0], "y o u u": [65535, 0], "o u u tom": [65535, 0], "u u tom there": [65535, 0], "u tom there was": [65535, 0], "tom there was a": [65535, 0], "there was a slight": [65535, 0], "was a slight noise": [65535, 0], "a slight noise behind": [65535, 0], "slight noise behind her": [65535, 0], "noise behind her and": [65535, 0], "behind her and she": [65535, 0], "her and she turned": [65535, 0], "and she turned just": [65535, 0], "she turned just in": [65535, 0], "turned just in time": [65535, 0], "just in time to": [65535, 0], "in time to seize": [65535, 0], "time to seize a": [65535, 0], "to seize a small": [65535, 0], "seize a small boy": [65535, 0], "a small boy by": [65535, 0], "small boy by the": [65535, 0], "boy by the slack": [65535, 0], "by the slack of": [65535, 0], "the slack of his": [65535, 0], "slack of his roundabout": [65535, 0], "of his roundabout and": [65535, 0], "his roundabout and arrest": [65535, 0], "roundabout and arrest his": [65535, 0], "and arrest his flight": [65535, 0], "arrest his flight there": [65535, 0], "his flight there i": [65535, 0], "flight there i might": [65535, 0], "there i might 'a'": [65535, 0], "i might 'a' thought": [65535, 0], "might 'a' thought of": [65535, 0], "'a' thought of that": [65535, 0], "thought of that closet": [65535, 0], "of that closet what": [65535, 0], "that closet what you": [65535, 0], "closet what you been": [65535, 0], "what you been doing": [65535, 0], "you been doing in": [65535, 0], "been doing in there": [65535, 0], "doing in there nothing": [65535, 0], "in there nothing nothing": [65535, 0], "there nothing nothing look": [65535, 0], "nothing nothing look at": [65535, 0], "nothing look at your": [65535, 0], "look at your hands": [65535, 0], "at your hands and": [65535, 0], "your hands and look": [65535, 0], "hands and look at": [65535, 0], "and look at your": [65535, 0], "look at your mouth": [65535, 0], "at your mouth what": [65535, 0], "your mouth what is": [65535, 0], "mouth what is that": [65535, 0], "what is that i": [65535, 0], "is that i don't": [65535, 0], "that i don't know": [65535, 0], "i don't know aunt": [65535, 0], "don't know aunt well": [65535, 0], "know aunt well i": [65535, 0], "aunt well i know": [65535, 0], "well i know it's": [65535, 0], "i know it's jam": [65535, 0], "know it's jam that's": [65535, 0], "it's jam that's what": [65535, 0], "jam that's what it": [65535, 0], "that's what it is": [65535, 0], "what it is forty": [65535, 0], "it is forty times": [65535, 0], "is forty times i've": [65535, 0], "forty times i've said": [65535, 0], "times i've said if": [65535, 0], "i've said if you": [65535, 0], "said if you didn't": [65535, 0], "if you didn't let": [65535, 0], "you didn't let that": [65535, 0], "didn't let that jam": [65535, 0], "let that jam alone": [65535, 0], "that jam alone i'd": [65535, 0], "jam alone i'd skin": [65535, 0], "alone i'd skin you": [65535, 0], "i'd skin you hand": [65535, 0], "skin you hand me": [65535, 0], "you hand me that": [65535, 0], "hand me that switch": [65535, 0], "me that switch the": [65535, 0], "that switch the switch": [65535, 0], "switch the switch hovered": [65535, 0], "the switch hovered in": [65535, 0], "switch hovered in the": [65535, 0], "hovered in the air": [65535, 0], "in the air the": [65535, 0], "the air the peril": [65535, 0], "air the peril was": [65535, 0], "the peril was desperate": [65535, 0], "peril was desperate my": [65535, 0], "was desperate my look": [65535, 0], "desperate my look behind": [65535, 0], "my look behind you": [65535, 0], "look behind you aunt": [65535, 0], "behind you aunt the": [65535, 0], "you aunt the old": [65535, 0], "aunt the old lady": [65535, 0], "the old lady whirled": [65535, 0], "old lady whirled round": [65535, 0], "lady whirled round and": [65535, 0], "whirled round and snatched": [65535, 0], "round and snatched her": [65535, 0], "and snatched her skirts": [65535, 0], "snatched her skirts out": [65535, 0], "her skirts out of": [65535, 0], "skirts out of danger": [65535, 0], "out of danger the": [65535, 0], "of danger the lad": [65535, 0], "danger the lad fled": [65535, 0], "the lad fled on": [65535, 0], "lad fled on the": [65535, 0], "fled on the instant": [65535, 0], "on the instant scrambled": [65535, 0], "the instant scrambled up": [65535, 0], "instant scrambled up the": [65535, 0], "scrambled up the high": [65535, 0], "up the high board": [65535, 0], "the high board fence": [65535, 0], "high board fence and": [65535, 0], "board fence and disappeared": [65535, 0], "fence and disappeared over": [65535, 0], "and disappeared over it": [65535, 0], "disappeared over it his": [65535, 0], "over it his aunt": [65535, 0], "it his aunt polly": [65535, 0], "his aunt polly stood": [65535, 0], "aunt polly stood surprised": [65535, 0], "polly stood surprised a": [65535, 0], "stood surprised a moment": [65535, 0], "surprised a moment and": [65535, 0], "moment and then broke": [65535, 0], "and then broke into": [65535, 0], "then broke into a": [65535, 0], "broke into a gentle": [65535, 0], "into a gentle laugh": [65535, 0], "a gentle laugh hang": [65535, 0], "gentle laugh hang the": [65535, 0], "laugh hang the boy": [65535, 0], "hang the boy can't": [65535, 0], "the boy can't i": [65535, 0], "boy can't i never": [65535, 0], "can't i never learn": [65535, 0], "i never learn anything": [65535, 0], "never learn anything ain't": [65535, 0], "learn anything ain't he": [65535, 0], "anything ain't he played": [65535, 0], "ain't he played me": [65535, 0], "he played me tricks": [65535, 0], "played me tricks enough": [65535, 0], "me tricks enough like": [65535, 0], "tricks enough like that": [65535, 0], "enough like that for": [65535, 0], "like that for me": [65535, 0], "that for me to": [65535, 0], "for me to be": [32706, 32829], "me to be looking": [65535, 0], "to be looking out": [65535, 0], "be looking out for": [65535, 0], "looking out for him": [65535, 0], "out for him by": [65535, 0], "for him by this": [65535, 0], "him by this time": [65535, 0], "by this time but": [65535, 0], "this time but old": [65535, 0], "time but old fools": [65535, 0], "but old fools is": [65535, 0], "old fools is the": [65535, 0], "fools is the biggest": [65535, 0], "is the biggest fools": [65535, 0], "the biggest fools there": [65535, 0], "biggest fools there is": [65535, 0], "fools there is can't": [65535, 0], "there is can't learn": [65535, 0], "is can't learn an": [65535, 0], "can't learn an old": [65535, 0], "learn an old dog": [65535, 0], "an old dog new": [65535, 0], "old dog new tricks": [65535, 0], "dog new tricks as": [65535, 0], "new tricks as the": [65535, 0], "tricks as the saying": [65535, 0], "as the saying is": [65535, 0], "the saying is but": [65535, 0], "saying is but my": [65535, 0], "is but my goodness": [65535, 0], "but my goodness he": [65535, 0], "my goodness he never": [65535, 0], "goodness he never plays": [65535, 0], "he never plays them": [65535, 0], "never plays them alike": [65535, 0], "plays them alike two": [65535, 0], "them alike two days": [65535, 0], "alike two days and": [65535, 0], "two days and how": [65535, 0], "days and how is": [65535, 0], "and how is a": [65535, 0], "how is a body": [65535, 0], "is a body to": [65535, 0], "a body to know": [65535, 0], "body to know what's": [65535, 0], "to know what's coming": [65535, 0], "know what's coming he": [65535, 0], "what's coming he 'pears": [65535, 0], "coming he 'pears to": [65535, 0], "he 'pears to know": [65535, 0], "'pears to know just": [65535, 0], "to know just how": [65535, 0], "know just how long": [65535, 0], "just how long he": [65535, 0], "how long he can": [65535, 0], "long he can torment": [65535, 0], "he can torment me": [65535, 0], "can torment me before": [65535, 0], "torment me before i": [65535, 0], "me before i get": [65535, 0], "before i get my": [65535, 0], "i get my dander": [65535, 0], "get my dander up": [65535, 0], "my dander up and": [65535, 0], "dander up and he": [65535, 0], "up and he knows": [65535, 0], "and he knows if": [65535, 0], "he knows if he": [65535, 0], "knows if he can": [65535, 0], "if he can make": [65535, 0], "he can make out": [65535, 0], "can make out to": [65535, 0], "make out to put": [65535, 0], "out to put me": [65535, 0], "to put me off": [65535, 0], "put me off for": [65535, 0], "me off for a": [65535, 0], "off for a minute": [65535, 0], "for a minute or": [65535, 0], "a minute or make": [65535, 0], "minute or make me": [65535, 0], "or make me laugh": [65535, 0], "make me laugh it's": [65535, 0], "me laugh it's all": [65535, 0], "laugh it's all down": [65535, 0], "it's all down again": [65535, 0], "all down again and": [65535, 0], "down again and i": [65535, 0], "again and i can't": [65535, 0], "and i can't hit": [65535, 0], "i can't hit him": [65535, 0], "can't hit him a": [65535, 0], "hit him a lick": [65535, 0], "him a lick i": [65535, 0], "a lick i ain't": [65535, 0], "lick i ain't doing": [65535, 0], "i ain't doing my": [65535, 0], "ain't doing my duty": [65535, 0], "doing my duty by": [65535, 0], "my duty by that": [65535, 0], "duty by that boy": [65535, 0], "by that boy and": [65535, 0], "that boy and that's": [65535, 0], "boy and that's the": [65535, 0], "and that's the lord's": [65535, 0], "that's the lord's truth": [65535, 0], "the lord's truth goodness": [65535, 0], "lord's truth goodness knows": [65535, 0], "truth goodness knows spare": [65535, 0], "goodness knows spare the": [65535, 0], "knows spare the rod": [65535, 0], "spare the rod and": [65535, 0], "the rod and spoil": [65535, 0], "rod and spoil the": [65535, 0], "and spoil the child": [65535, 0], "spoil the child as": [65535, 0], "the child as the": [65535, 0], "child as the good": [65535, 0], "as the good book": [65535, 0], "the good book says": [65535, 0], "good book says i'm": [65535, 0], "book says i'm a": [65535, 0], "says i'm a laying": [65535, 0], "i'm a laying up": [65535, 0], "a laying up sin": [65535, 0], "laying up sin and": [65535, 0], "up sin and suffering": [65535, 0], "sin and suffering for": [65535, 0], "and suffering for us": [65535, 0], "suffering for us both": [65535, 0], "for us both i": [65535, 0], "us both i know": [65535, 0], "both i know he's": [65535, 0], "i know he's full": [65535, 0], "know he's full of": [65535, 0], "he's full of the": [65535, 0], "full of the old": [65535, 0], "of the old scratch": [65535, 0], "the old scratch but": [65535, 0], "old scratch but laws": [65535, 0], "scratch but laws a": [65535, 0], "but laws a me": [65535, 0], "laws a me he's": [65535, 0], "a me he's my": [65535, 0], "me he's my own": [65535, 0], "he's my own dead": [65535, 0], "my own dead sister's": [65535, 0], "own dead sister's boy": [65535, 0], "dead sister's boy poor": [65535, 0], "sister's boy poor thing": [65535, 0], "boy poor thing and": [65535, 0], "poor thing and i": [65535, 0], "thing and i ain't": [65535, 0], "and i ain't got": [65535, 0], "i ain't got the": [65535, 0], "ain't got the heart": [65535, 0], "got the heart to": [65535, 0], "the heart to lash": [65535, 0], "heart to lash him": [65535, 0], "to lash him somehow": [65535, 0], "lash him somehow every": [65535, 0], "him somehow every time": [65535, 0], "somehow every time i": [65535, 0], "every time i let": [65535, 0], "time i let him": [65535, 0], "i let him off": [65535, 0], "let him off my": [65535, 0], "him off my conscience": [65535, 0], "off my conscience does": [65535, 0], "my conscience does hurt": [65535, 0], "conscience does hurt me": [65535, 0], "does hurt me so": [65535, 0], "hurt me so and": [65535, 0], "me so and every": [65535, 0], "so and every time": [65535, 0], "and every time i": [65535, 0], "every time i hit": [65535, 0], "time i hit him": [65535, 0], "i hit him my": [65535, 0], "hit him my old": [65535, 0], "him my old heart": [65535, 0], "my old heart most": [65535, 0], "old heart most breaks": [65535, 0], "heart most breaks well": [65535, 0], "most breaks well a": [65535, 0], "breaks well a well": [65535, 0], "well a well man": [65535, 0], "a well man that": [65535, 0], "well man that is": [65535, 0], "man that is born": [65535, 0], "that is born of": [65535, 0], "is born of woman": [65535, 0], "born of woman is": [65535, 0], "of woman is of": [65535, 0], "woman is of few": [65535, 0], "is of few days": [65535, 0], "of few days and": [65535, 0], "few days and full": [65535, 0], "days and full of": [65535, 0], "and full of trouble": [65535, 0], "full of trouble as": [65535, 0], "of trouble as the": [65535, 0], "trouble as the scripture": [65535, 0], "as the scripture says": [65535, 0], "the scripture says and": [65535, 0], "scripture says and i": [65535, 0], "says and i reckon": [65535, 0], "and i reckon it's": [65535, 0], "reckon it's so he'll": [65535, 0], "it's so he'll play": [65535, 0], "so he'll play hookey": [65535, 0], "he'll play hookey this": [65535, 0], "play hookey this evening": [65535, 0], "hookey this evening and": [65535, 0], "this evening and i'll": [65535, 0], "evening and i'll just": [65535, 0], "and i'll just be": [65535, 0], "i'll just be obliged": [65535, 0], "just be obliged to": [65535, 0], "be obliged to make": [65535, 0], "obliged to make him": [65535, 0], "to make him work": [65535, 0], "make him work to": [65535, 0], "him work to morrow": [65535, 0], "work to morrow to": [65535, 0], "to morrow to punish": [65535, 0], "morrow to punish him": [65535, 0], "to punish him it's": [65535, 0], "punish him it's mighty": [65535, 0], "him it's mighty hard": [65535, 0], "it's mighty hard to": [65535, 0], "mighty hard to make": [65535, 0], "hard to make him": [65535, 0], "make him work saturdays": [65535, 0], "him work saturdays when": [65535, 0], "work saturdays when all": [65535, 0], "saturdays when all the": [65535, 0], "when all the boys": [65535, 0], "all the boys is": [65535, 0], "the boys is having": [65535, 0], "boys is having holiday": [65535, 0], "is having holiday but": [65535, 0], "having holiday but he": [65535, 0], "holiday but he hates": [65535, 0], "but he hates work": [65535, 0], "he hates work more": [65535, 0], "hates work more than": [65535, 0], "work more than he": [65535, 0], "more than he hates": [65535, 0], "than he hates anything": [65535, 0], "he hates anything else": [65535, 0], "hates anything else and": [65535, 0], "anything else and i've": [65535, 0], "else and i've got": [65535, 0], "and i've got to": [65535, 0], "i've got to do": [65535, 0], "got to do some": [65535, 0], "to do some of": [65535, 0], "do some of my": [65535, 0], "some of my duty": [65535, 0], "of my duty by": [65535, 0], "my duty by him": [65535, 0], "duty by him or": [65535, 0], "by him or i'll": [65535, 0], "him or i'll be": [65535, 0], "or i'll be the": [65535, 0], "i'll be the ruination": [65535, 0], "be the ruination of": [65535, 0], "the ruination of the": [65535, 0], "ruination of the child": [65535, 0], "of the child tom": [65535, 0], "the child tom did": [65535, 0], "child tom did play": [65535, 0], "tom did play hookey": [65535, 0], "did play hookey and": [65535, 0], "play hookey and he": [65535, 0], "hookey and he had": [65535, 0], "and he had a": [65535, 0], "he had a very": [65535, 0], "had a very good": [65535, 0], "a very good time": [65535, 0], "very good time he": [65535, 0], "good time he got": [65535, 0], "time he got back": [65535, 0], "he got back home": [65535, 0], "got back home barely": [65535, 0], "back home barely in": [65535, 0], "home barely in season": [65535, 0], "barely in season to": [65535, 0], "in season to help": [65535, 0], "season to help jim": [65535, 0], "to help jim the": [65535, 0], "help jim the small": [65535, 0], "jim the small colored": [65535, 0], "the small colored boy": [65535, 0], "small colored boy saw": [65535, 0], "colored boy saw next": [65535, 0], "boy saw next day's": [65535, 0], "saw next day's wood": [65535, 0], "next day's wood and": [65535, 0], "day's wood and split": [65535, 0], "wood and split the": [65535, 0], "and split the kindlings": [65535, 0], "split the kindlings before": [65535, 0], "the kindlings before supper": [65535, 0], "kindlings before supper at": [65535, 0], "before supper at least": [65535, 0], "supper at least he": [65535, 0], "at least he was": [65535, 0], "least he was there": [65535, 0], "he was there in": [65535, 0], "was there in time": [65535, 0], "there in time to": [65535, 0], "in time to tell": [65535, 0], "time to tell his": [65535, 0], "to tell his adventures": [65535, 0], "tell his adventures to": [65535, 0], "his adventures to jim": [65535, 0], "adventures to jim while": [65535, 0], "to jim while jim": [65535, 0], "jim while jim did": [65535, 0], "while jim did three": [65535, 0], "jim did three fourths": [65535, 0], "did three fourths of": [65535, 0], "three fourths of the": [65535, 0], "fourths of the work": [65535, 0], "of the work tom's": [65535, 0], "the work tom's younger": [65535, 0], "work tom's younger brother": [65535, 0], "tom's younger brother or": [65535, 0], "younger brother or rather": [65535, 0], "brother or rather half": [65535, 0], "or rather half brother": [65535, 0], "rather half brother sid": [65535, 0], "half brother sid was": [65535, 0], "brother sid was already": [65535, 0], "sid was already through": [65535, 0], "was already through with": [65535, 0], "already through with his": [65535, 0], "through with his part": [65535, 0], "with his part of": [65535, 0], "his part of the": [65535, 0], "part of the work": [65535, 0], "of the work picking": [65535, 0], "the work picking up": [65535, 0], "work picking up chips": [65535, 0], "picking up chips for": [65535, 0], "up chips for he": [65535, 0], "chips for he was": [65535, 0], "for he was a": [65535, 0], "he was a quiet": [65535, 0], "was a quiet boy": [65535, 0], "a quiet boy and": [65535, 0], "quiet boy and had": [65535, 0], "boy and had no": [65535, 0], "and had no adventurous": [65535, 0], "had no adventurous troublesome": [65535, 0], "no adventurous troublesome ways": [65535, 0], "adventurous troublesome ways while": [65535, 0], "troublesome ways while tom": [65535, 0], "ways while tom was": [65535, 0], "while tom was eating": [65535, 0], "tom was eating his": [65535, 0], "was eating his supper": [65535, 0], "eating his supper and": [65535, 0], "his supper and stealing": [65535, 0], "supper and stealing sugar": [65535, 0], "and stealing sugar as": [65535, 0], "stealing sugar as opportunity": [65535, 0], "sugar as opportunity offered": [65535, 0], "as opportunity offered aunt": [65535, 0], "opportunity offered aunt polly": [65535, 0], "offered aunt polly asked": [65535, 0], "aunt polly asked him": [65535, 0], "polly asked him questions": [65535, 0], "asked him questions that": [65535, 0], "him questions that were": [65535, 0], "questions that were full": [65535, 0], "that were full of": [65535, 0], "were full of guile": [65535, 0], "full of guile and": [65535, 0], "of guile and very": [65535, 0], "guile and very deep": [65535, 0], "and very deep for": [65535, 0], "very deep for she": [65535, 0], "deep for she wanted": [65535, 0], "for she wanted to": [65535, 0], "she wanted to trap": [65535, 0], "wanted to trap him": [65535, 0], "to trap him into": [65535, 0], "trap him into damaging": [65535, 0], "him into damaging revealments": [65535, 0], "into damaging revealments like": [65535, 0], "damaging revealments like many": [65535, 0], "revealments like many other": [65535, 0], "like many other simple": [65535, 0], "many other simple hearted": [65535, 0], "other simple hearted souls": [65535, 0], "simple hearted souls it": [65535, 0], "hearted souls it was": [65535, 0], "souls it was her": [65535, 0], "it was her pet": [65535, 0], "was her pet vanity": [65535, 0], "her pet vanity to": [65535, 0], "pet vanity to believe": [65535, 0], "vanity to believe she": [65535, 0], "to believe she was": [65535, 0], "believe she was endowed": [65535, 0], "she was endowed with": [65535, 0], "was endowed with a": [65535, 0], "endowed with a talent": [65535, 0], "with a talent for": [65535, 0], "a talent for dark": [65535, 0], "talent for dark and": [65535, 0], "for dark and mysterious": [65535, 0], "dark and mysterious diplomacy": [65535, 0], "and mysterious diplomacy and": [65535, 0], "mysterious diplomacy and she": [65535, 0], "diplomacy and she loved": [65535, 0], "and she loved to": [65535, 0], "she loved to contemplate": [65535, 0], "loved to contemplate her": [65535, 0], "to contemplate her most": [65535, 0], "contemplate her most transparent": [65535, 0], "her most transparent devices": [65535, 0], "most transparent devices as": [65535, 0], "transparent devices as marvels": [65535, 0], "devices as marvels of": [65535, 0], "as marvels of low": [65535, 0], "marvels of low cunning": [65535, 0], "of low cunning said": [65535, 0], "low cunning said she": [65535, 0], "cunning said she tom": [65535, 0], "said she tom it": [65535, 0], "she tom it was": [65535, 0], "tom it was middling": [65535, 0], "it was middling warm": [65535, 0], "was middling warm in": [65535, 0], "middling warm in school": [65535, 0], "warm in school warn't": [65535, 0], "in school warn't it": [65535, 0], "school warn't it yes'm": [65535, 0], "warn't it yes'm powerful": [65535, 0], "it yes'm powerful warm": [65535, 0], "yes'm powerful warm warn't": [65535, 0], "powerful warm warn't it": [65535, 0], "warm warn't it yes'm": [65535, 0], "warn't it yes'm didn't": [65535, 0], "it yes'm didn't you": [65535, 0], "yes'm didn't you want": [65535, 0], "didn't you want to": [65535, 0], "you want to go": [65535, 0], "want to go in": [65535, 0], "to go in a": [65535, 0], "go in a swimming": [65535, 0], "in a swimming tom": [65535, 0], "a swimming tom a": [65535, 0], "swimming tom a bit": [65535, 0], "tom a bit of": [65535, 0], "a bit of a": [65535, 0], "bit of a scare": [65535, 0], "of a scare shot": [65535, 0], "a scare shot through": [65535, 0], "scare shot through tom": [65535, 0], "shot through tom a": [65535, 0], "through tom a touch": [65535, 0], "tom a touch of": [65535, 0], "a touch of uncomfortable": [65535, 0], "touch of uncomfortable suspicion": [65535, 0], "of uncomfortable suspicion he": [65535, 0], "uncomfortable suspicion he searched": [65535, 0], "suspicion he searched aunt": [65535, 0], "he searched aunt polly's": [65535, 0], "searched aunt polly's face": [65535, 0], "aunt polly's face but": [65535, 0], "polly's face but it": [65535, 0], "face but it told": [65535, 0], "but it told him": [65535, 0], "it told him nothing": [65535, 0], "told him nothing so": [65535, 0], "him nothing so he": [65535, 0], "nothing so he said": [65535, 0], "so he said no'm": [65535, 0], "he said no'm well": [65535, 0], "said no'm well not": [65535, 0], "no'm well not very": [65535, 0], "well not very much": [65535, 0], "not very much the": [65535, 0], "very much the old": [65535, 0], "much the old lady": [65535, 0], "the old lady reached": [65535, 0], "old lady reached out": [65535, 0], "lady reached out her": [65535, 0], "reached out her hand": [65535, 0], "out her hand and": [65535, 0], "her hand and felt": [65535, 0], "hand and felt tom's": [65535, 0], "and felt tom's shirt": [65535, 0], "felt tom's shirt and": [65535, 0], "tom's shirt and said": [65535, 0], "shirt and said but": [65535, 0], "and said but you": [65535, 0], "said but you ain't": [65535, 0], "but you ain't too": [65535, 0], "you ain't too warm": [65535, 0], "ain't too warm now": [65535, 0], "too warm now though": [65535, 0], "warm now though and": [65535, 0], "now though and it": [65535, 0], "though and it flattered": [65535, 0], "and it flattered her": [65535, 0], "it flattered her to": [65535, 0], "flattered her to reflect": [65535, 0], "her to reflect that": [65535, 0], "to reflect that she": [65535, 0], "reflect that she had": [65535, 0], "that she had discovered": [65535, 0], "she had discovered that": [65535, 0], "had discovered that the": [65535, 0], "discovered that the shirt": [65535, 0], "that the shirt was": [65535, 0], "the shirt was dry": [65535, 0], "shirt was dry without": [65535, 0], "was dry without anybody": [65535, 0], "dry without anybody knowing": [65535, 0], "without anybody knowing that": [65535, 0], "anybody knowing that that": [65535, 0], "knowing that that was": [65535, 0], "that that was what": [65535, 0], "that was what she": [65535, 0], "was what she had": [65535, 0], "what she had in": [65535, 0], "she had in her": [65535, 0], "had in her mind": [65535, 0], "in her mind but": [65535, 0], "her mind but in": [65535, 0], "mind but in spite": [65535, 0], "but in spite of": [65535, 0], "in spite of her": [65535, 0], "spite of her tom": [65535, 0], "of her tom knew": [65535, 0], "her tom knew where": [65535, 0], "tom knew where the": [65535, 0], "knew where the wind": [65535, 0], "where the wind lay": [65535, 0], "the wind lay now": [65535, 0], "wind lay now so": [65535, 0], "lay now so he": [65535, 0], "now so he forestalled": [65535, 0], "so he forestalled what": [65535, 0], "he forestalled what might": [65535, 0], "forestalled what might be": [65535, 0], "what might be the": [65535, 0], "might be the next": [65535, 0], "be the next move": [65535, 0], "the next move some": [65535, 0], "next move some of": [65535, 0], "move some of us": [65535, 0], "some of us pumped": [65535, 0], "of us pumped on": [65535, 0], "us pumped on our": [65535, 0], "pumped on our heads": [65535, 0], "on our heads mine's": [65535, 0], "our heads mine's damp": [65535, 0], "heads mine's damp yet": [65535, 0], "mine's damp yet see": [65535, 0], "damp yet see aunt": [65535, 0], "yet see aunt polly": [65535, 0], "see aunt polly was": [65535, 0], "aunt polly was vexed": [65535, 0], "polly was vexed to": [65535, 0], "was vexed to think": [65535, 0], "vexed to think she": [65535, 0], "to think she had": [65535, 0], "think she had overlooked": [65535, 0], "she had overlooked that": [65535, 0], "had overlooked that bit": [65535, 0], "overlooked that bit of": [65535, 0], "that bit of circumstantial": [65535, 0], "bit of circumstantial evidence": [65535, 0], "of circumstantial evidence and": [65535, 0], "circumstantial evidence and missed": [65535, 0], "evidence and missed a": [65535, 0], "and missed a trick": [65535, 0], "missed a trick then": [65535, 0], "a trick then she": [65535, 0], "trick then she had": [65535, 0], "then she had a": [65535, 0], "she had a new": [65535, 0], "had a new inspiration": [65535, 0], "a new inspiration tom": [65535, 0], "new inspiration tom you": [65535, 0], "inspiration tom you didn't": [65535, 0], "tom you didn't have": [65535, 0], "you didn't have to": [65535, 0], "didn't have to undo": [65535, 0], "have to undo your": [65535, 0], "to undo your shirt": [65535, 0], "undo your shirt collar": [65535, 0], "your shirt collar where": [65535, 0], "shirt collar where i": [65535, 0], "collar where i sewed": [65535, 0], "where i sewed it": [65535, 0], "i sewed it to": [65535, 0], "sewed it to pump": [65535, 0], "it to pump on": [65535, 0], "to pump on your": [65535, 0], "pump on your head": [65535, 0], "on your head did": [65535, 0], "your head did you": [65535, 0], "head did you unbutton": [65535, 0], "did you unbutton your": [65535, 0], "you unbutton your jacket": [65535, 0], "unbutton your jacket the": [65535, 0], "your jacket the trouble": [65535, 0], "jacket the trouble vanished": [65535, 0], "the trouble vanished out": [65535, 0], "trouble vanished out of": [65535, 0], "vanished out of tom's": [65535, 0], "out of tom's face": [65535, 0], "of tom's face he": [65535, 0], "tom's face he opened": [65535, 0], "face he opened his": [65535, 0], "he opened his jacket": [65535, 0], "opened his jacket his": [65535, 0], "his jacket his shirt": [65535, 0], "jacket his shirt collar": [65535, 0], "his shirt collar was": [65535, 0], "shirt collar was securely": [65535, 0], "collar was securely sewed": [65535, 0], "was securely sewed bother": [65535, 0], "securely sewed bother well": [65535, 0], "sewed bother well go": [65535, 0], "bother well go 'long": [65535, 0], "well go 'long with": [65535, 0], "go 'long with you": [65535, 0], "'long with you i'd": [65535, 0], "with you i'd made": [65535, 0], "you i'd made sure": [65535, 0], "i'd made sure you'd": [65535, 0], "made sure you'd played": [65535, 0], "sure you'd played hookey": [65535, 0], "you'd played hookey and": [65535, 0], "played hookey and been": [65535, 0], "hookey and been a": [65535, 0], "and been a swimming": [65535, 0], "been a swimming but": [65535, 0], "a swimming but i": [65535, 0], "swimming but i forgive": [65535, 0], "but i forgive ye": [65535, 0], "i forgive ye tom": [65535, 0], "forgive ye tom i": [65535, 0], "ye tom i reckon": [65535, 0], "tom i reckon you're": [65535, 0], "i reckon you're a": [65535, 0], "reckon you're a kind": [65535, 0], "you're a kind of": [65535, 0], "a kind of a": [65535, 0], "kind of a singed": [65535, 0], "of a singed cat": [65535, 0], "a singed cat as": [65535, 0], "singed cat as the": [65535, 0], "cat as the saying": [65535, 0], "the saying is better'n": [65535, 0], "saying is better'n you": [65535, 0], "is better'n you look": [65535, 0], "better'n you look this": [65535, 0], "you look this time": [65535, 0], "look this time she": [65535, 0], "time she was half": [65535, 0], "she was half sorry": [65535, 0], "was half sorry her": [65535, 0], "half sorry her sagacity": [65535, 0], "sorry her sagacity had": [65535, 0], "her sagacity had miscarried": [65535, 0], "sagacity had miscarried and": [65535, 0], "had miscarried and half": [65535, 0], "miscarried and half glad": [65535, 0], "and half glad that": [65535, 0], "half glad that tom": [65535, 0], "glad that tom had": [65535, 0], "that tom had stumbled": [65535, 0], "tom had stumbled into": [65535, 0], "had stumbled into obedient": [65535, 0], "stumbled into obedient conduct": [65535, 0], "into obedient conduct for": [65535, 0], "obedient conduct for once": [65535, 0], "conduct for once but": [65535, 0], "for once but sidney": [65535, 0], "once but sidney said": [65535, 0], "but sidney said well": [65535, 0], "sidney said well now": [65535, 0], "said well now if": [65535, 0], "well now if i": [65535, 0], "now if i didn't": [65535, 0], "if i didn't think": [65535, 0], "i didn't think you": [65535, 0], "didn't think you sewed": [65535, 0], "think you sewed his": [65535, 0], "you sewed his collar": [65535, 0], "sewed his collar with": [65535, 0], "his collar with white": [65535, 0], "collar with white thread": [65535, 0], "with white thread but": [65535, 0], "white thread but it's": [65535, 0], "thread but it's black": [65535, 0], "but it's black why": [65535, 0], "it's black why i": [65535, 0], "black why i did": [65535, 0], "why i did sew": [65535, 0], "i did sew it": [65535, 0], "did sew it with": [65535, 0], "sew it with white": [65535, 0], "it with white tom": [65535, 0], "with white tom but": [65535, 0], "white tom but tom": [65535, 0], "tom but tom did": [65535, 0], "but tom did not": [65535, 0], "tom did not wait": [65535, 0], "did not wait for": [65535, 0], "not wait for the": [65535, 0], "wait for the rest": [65535, 0], "for the rest as": [65535, 0], "the rest as he": [65535, 0], "rest as he went": [65535, 0], "as he went out": [65535, 0], "he went out at": [65535, 0], "went out at the": [65535, 0], "out at the door": [65535, 0], "at the door he": [65535, 0], "the door he said": [65535, 0], "door he said siddy": [65535, 0], "he said siddy i'll": [65535, 0], "said siddy i'll lick": [65535, 0], "siddy i'll lick you": [65535, 0], "i'll lick you for": [65535, 0], "lick you for that": [65535, 0], "you for that in": [65535, 0], "for that in a": [65535, 0], "that in a safe": [65535, 0], "in a safe place": [65535, 0], "a safe place tom": [65535, 0], "safe place tom examined": [65535, 0], "place tom examined two": [65535, 0], "tom examined two large": [65535, 0], "examined two large needles": [65535, 0], "two large needles which": [65535, 0], "large needles which were": [65535, 0], "needles which were thrust": [65535, 0], "which were thrust into": [65535, 0], "were thrust into the": [65535, 0], "thrust into the lapels": [65535, 0], "into the lapels of": [65535, 0], "the lapels of his": [65535, 0], "lapels of his jacket": [65535, 0], "of his jacket and": [65535, 0], "his jacket and had": [65535, 0], "jacket and had thread": [65535, 0], "and had thread bound": [65535, 0], "had thread bound about": [65535, 0], "thread bound about them": [65535, 0], "bound about them one": [65535, 0], "about them one needle": [65535, 0], "them one needle carried": [65535, 0], "one needle carried white": [65535, 0], "needle carried white thread": [65535, 0], "carried white thread and": [65535, 0], "white thread and the": [65535, 0], "thread and the other": [65535, 0], "and the other black": [65535, 0], "the other black he": [65535, 0], "other black he said": [65535, 0], "black he said she'd": [65535, 0], "he said she'd never": [65535, 0], "said she'd never noticed": [65535, 0], "she'd never noticed if": [65535, 0], "never noticed if it": [65535, 0], "noticed if it hadn't": [65535, 0], "if it hadn't been": [65535, 0], "it hadn't been for": [65535, 0], "hadn't been for sid": [65535, 0], "been for sid confound": [65535, 0], "for sid confound it": [65535, 0], "sid confound it sometimes": [65535, 0], "confound it sometimes she": [65535, 0], "it sometimes she sews": [65535, 0], "sometimes she sews it": [65535, 0], "she sews it with": [65535, 0], "sews it with white": [65535, 0], "it with white and": [65535, 0], "with white and sometimes": [65535, 0], "white and sometimes she": [65535, 0], "and sometimes she sews": [65535, 0], "sews it with black": [65535, 0], "it with black i": [65535, 0], "with black i wish": [65535, 0], "black i wish to": [65535, 0], "i wish to geeminy": [65535, 0], "wish to geeminy she'd": [65535, 0], "to geeminy she'd stick": [65535, 0], "geeminy she'd stick to": [65535, 0], "she'd stick to one": [65535, 0], "stick to one or": [65535, 0], "to one or t'other": [65535, 0], "one or t'other i": [65535, 0], "or t'other i can't": [65535, 0], "t'other i can't keep": [65535, 0], "i can't keep the": [65535, 0], "can't keep the run": [65535, 0], "keep the run of": [65535, 0], "the run of 'em": [65535, 0], "run of 'em but": [65535, 0], "of 'em but i": [65535, 0], "'em but i bet": [65535, 0], "but i bet you": [65535, 0], "i bet you i'll": [65535, 0], "bet you i'll lam": [65535, 0], "you i'll lam sid": [65535, 0], "i'll lam sid for": [65535, 0], "lam sid for that": [65535, 0], "sid for that i'll": [65535, 0], "for that i'll learn": [65535, 0], "that i'll learn him": [65535, 0], "i'll learn him he": [65535, 0], "learn him he was": [65535, 0], "him he was not": [65535, 0], "he was not the": [65535, 0], "was not the model": [65535, 0], "not the model boy": [65535, 0], "the model boy of": [65535, 0], "model boy of the": [65535, 0], "boy of the village": [65535, 0], "of the village he": [65535, 0], "the village he knew": [65535, 0], "village he knew the": [65535, 0], "he knew the model": [65535, 0], "knew the model boy": [65535, 0], "the model boy very": [65535, 0], "model boy very well": [65535, 0], "boy very well though": [65535, 0], "very well though and": [65535, 0], "well though and loathed": [65535, 0], "though and loathed him": [65535, 0], "and loathed him within": [65535, 0], "loathed him within two": [65535, 0], "him within two minutes": [65535, 0], "within two minutes or": [65535, 0], "two minutes or even": [65535, 0], "minutes or even less": [65535, 0], "or even less he": [65535, 0], "even less he had": [65535, 0], "less he had forgotten": [65535, 0], "he had forgotten all": [65535, 0], "had forgotten all his": [65535, 0], "forgotten all his troubles": [65535, 0], "all his troubles not": [65535, 0], "his troubles not because": [65535, 0], "troubles not because his": [65535, 0], "not because his troubles": [65535, 0], "because his troubles were": [65535, 0], "his troubles were one": [65535, 0], "troubles were one whit": [65535, 0], "were one whit less": [65535, 0], "one whit less heavy": [65535, 0], "whit less heavy and": [65535, 0], "less heavy and bitter": [65535, 0], "heavy and bitter to": [65535, 0], "and bitter to him": [65535, 0], "bitter to him than": [65535, 0], "to him than a": [65535, 0], "him than a man's": [65535, 0], "than a man's are": [65535, 0], "a man's are to": [65535, 0], "man's are to a": [65535, 0], "are to a man": [65535, 0], "to a man but": [65535, 0], "a man but because": [65535, 0], "man but because a": [65535, 0], "but because a new": [65535, 0], "because a new and": [65535, 0], "a new and powerful": [65535, 0], "new and powerful interest": [65535, 0], "and powerful interest bore": [65535, 0], "powerful interest bore them": [65535, 0], "interest bore them down": [65535, 0], "bore them down and": [65535, 0], "them down and drove": [65535, 0], "down and drove them": [65535, 0], "and drove them out": [65535, 0], "drove them out of": [65535, 0], "them out of his": [65535, 0], "out of his mind": [65535, 0], "of his mind for": [65535, 0], "his mind for the": [65535, 0], "mind for the time": [65535, 0], "for the time just": [65535, 0], "the time just as": [65535, 0], "time just as men's": [65535, 0], "just as men's misfortunes": [65535, 0], "as men's misfortunes are": [65535, 0], "men's misfortunes are forgotten": [65535, 0], "misfortunes are forgotten in": [65535, 0], "are forgotten in the": [65535, 0], "forgotten in the excitement": [65535, 0], "in the excitement of": [65535, 0], "the excitement of new": [65535, 0], "excitement of new enterprises": [65535, 0], "of new enterprises this": [65535, 0], "new enterprises this new": [65535, 0], "enterprises this new interest": [65535, 0], "this new interest was": [65535, 0], "new interest was a": [65535, 0], "interest was a valued": [65535, 0], "was a valued novelty": [65535, 0], "a valued novelty in": [65535, 0], "valued novelty in whistling": [65535, 0], "novelty in whistling which": [65535, 0], "in whistling which he": [65535, 0], "whistling which he had": [65535, 0], "which he had just": [65535, 0], "he had just acquired": [65535, 0], "had just acquired from": [65535, 0], "just acquired from a": [65535, 0], "acquired from a negro": [65535, 0], "from a negro and": [65535, 0], "a negro and he": [65535, 0], "negro and he was": [65535, 0], "and he was suffering": [65535, 0], "he was suffering to": [65535, 0], "was suffering to practise": [65535, 0], "suffering to practise it": [65535, 0], "to practise it undisturbed": [65535, 0], "practise it undisturbed it": [65535, 0], "it undisturbed it consisted": [65535, 0], "undisturbed it consisted in": [65535, 0], "it consisted in a": [65535, 0], "consisted in a peculiar": [65535, 0], "in a peculiar bird": [65535, 0], "a peculiar bird like": [65535, 0], "peculiar bird like turn": [65535, 0], "bird like turn a": [65535, 0], "like turn a sort": [65535, 0], "turn a sort of": [65535, 0], "a sort of liquid": [65535, 0], "sort of liquid warble": [65535, 0], "of liquid warble produced": [65535, 0], "liquid warble produced by": [65535, 0], "warble produced by touching": [65535, 0], "produced by touching the": [65535, 0], "by touching the tongue": [65535, 0], "touching the tongue to": [65535, 0], "the tongue to the": [65535, 0], "tongue to the roof": [65535, 0], "to the roof of": [65535, 0], "the roof of the": [65535, 0], "roof of the mouth": [65535, 0], "of the mouth at": [65535, 0], "the mouth at short": [65535, 0], "mouth at short intervals": [65535, 0], "at short intervals in": [65535, 0], "short intervals in the": [65535, 0], "intervals in the midst": [65535, 0], "midst of the music": [65535, 0], "of the music the": [65535, 0], "the music the reader": [65535, 0], "music the reader probably": [65535, 0], "the reader probably remembers": [65535, 0], "reader probably remembers how": [65535, 0], "probably remembers how to": [65535, 0], "remembers how to do": [65535, 0], "how to do it": [65535, 0], "to do it if": [65535, 0], "do it if he": [65535, 0], "it if he has": [65535, 0], "if he has ever": [65535, 0], "he has ever been": [65535, 0], "has ever been a": [65535, 0], "ever been a boy": [65535, 0], "been a boy diligence": [65535, 0], "a boy diligence and": [65535, 0], "boy diligence and attention": [65535, 0], "diligence and attention soon": [65535, 0], "and attention soon gave": [65535, 0], "attention soon gave him": [65535, 0], "soon gave him the": [65535, 0], "gave him the knack": [65535, 0], "him the knack of": [65535, 0], "the knack of it": [65535, 0], "knack of it and": [65535, 0], "of it and he": [65535, 0], "it and he strode": [65535, 0], "and he strode down": [65535, 0], "he strode down the": [65535, 0], "strode down the street": [65535, 0], "street with his mouth": [65535, 0], "with his mouth full": [65535, 0], "his mouth full of": [65535, 0], "mouth full of harmony": [65535, 0], "full of harmony and": [65535, 0], "of harmony and his": [65535, 0], "harmony and his soul": [65535, 0], "and his soul full": [65535, 0], "his soul full of": [65535, 0], "soul full of gratitude": [65535, 0], "full of gratitude he": [65535, 0], "of gratitude he felt": [65535, 0], "gratitude he felt much": [65535, 0], "he felt much as": [65535, 0], "felt much as an": [65535, 0], "much as an astronomer": [65535, 0], "as an astronomer feels": [65535, 0], "an astronomer feels who": [65535, 0], "astronomer feels who has": [65535, 0], "feels who has discovered": [65535, 0], "who has discovered a": [65535, 0], "has discovered a new": [65535, 0], "discovered a new planet": [65535, 0], "a new planet no": [65535, 0], "new planet no doubt": [65535, 0], "planet no doubt as": [65535, 0], "no doubt as far": [65535, 0], "doubt as far as": [65535, 0], "as far as strong": [65535, 0], "far as strong deep": [65535, 0], "as strong deep unalloyed": [65535, 0], "strong deep unalloyed pleasure": [65535, 0], "deep unalloyed pleasure is": [65535, 0], "unalloyed pleasure is concerned": [65535, 0], "pleasure is concerned the": [65535, 0], "is concerned the advantage": [65535, 0], "concerned the advantage was": [65535, 0], "the advantage was with": [65535, 0], "advantage was with the": [65535, 0], "was with the boy": [65535, 0], "with the boy not": [65535, 0], "the boy not the": [65535, 0], "boy not the astronomer": [65535, 0], "not the astronomer the": [65535, 0], "the astronomer the summer": [65535, 0], "astronomer the summer evenings": [65535, 0], "the summer evenings were": [65535, 0], "summer evenings were long": [65535, 0], "evenings were long it": [65535, 0], "were long it was": [65535, 0], "long it was not": [65535, 0], "it was not dark": [65535, 0], "was not dark yet": [65535, 0], "not dark yet presently": [65535, 0], "dark yet presently tom": [65535, 0], "yet presently tom checked": [65535, 0], "presently tom checked his": [65535, 0], "tom checked his whistle": [65535, 0], "checked his whistle a": [65535, 0], "his whistle a stranger": [65535, 0], "whistle a stranger was": [65535, 0], "a stranger was before": [65535, 0], "stranger was before him": [65535, 0], "was before him a": [65535, 0], "before him a boy": [65535, 0], "him a boy a": [65535, 0], "a boy a shade": [65535, 0], "boy a shade larger": [65535, 0], "a shade larger than": [65535, 0], "shade larger than himself": [65535, 0], "larger than himself a": [65535, 0], "than himself a new": [65535, 0], "himself a new comer": [65535, 0], "a new comer of": [65535, 0], "new comer of any": [65535, 0], "comer of any age": [65535, 0], "of any age or": [65535, 0], "any age or either": [65535, 0], "age or either sex": [65535, 0], "or either sex was": [65535, 0], "either sex was an": [65535, 0], "sex was an impressive": [65535, 0], "was an impressive curiosity": [65535, 0], "an impressive curiosity in": [65535, 0], "impressive curiosity in the": [65535, 0], "curiosity in the poor": [65535, 0], "in the poor little": [65535, 0], "the poor little shabby": [65535, 0], "poor little shabby village": [65535, 0], "little shabby village of": [65535, 0], "shabby village of st": [65535, 0], "village of st petersburg": [65535, 0], "of st petersburg this": [65535, 0], "st petersburg this boy": [65535, 0], "petersburg this boy was": [65535, 0], "this boy was well": [65535, 0], "boy was well dressed": [65535, 0], "was well dressed too": [65535, 0], "well dressed too well": [65535, 0], "dressed too well dressed": [65535, 0], "too well dressed on": [65535, 0], "well dressed on a": [65535, 0], "dressed on a week": [65535, 0], "on a week day": [65535, 0], "a week day this": [65535, 0], "week day this was": [65535, 0], "day this was simply": [65535, 0], "this was simply astounding": [65535, 0], "was simply astounding his": [65535, 0], "simply astounding his cap": [65535, 0], "astounding his cap was": [65535, 0], "his cap was a": [65535, 0], "cap was a dainty": [65535, 0], "was a dainty thing": [65535, 0], "a dainty thing his": [65535, 0], "dainty thing his closebuttoned": [65535, 0], "thing his closebuttoned blue": [65535, 0], "his closebuttoned blue cloth": [65535, 0], "closebuttoned blue cloth roundabout": [65535, 0], "blue cloth roundabout was": [65535, 0], "cloth roundabout was new": [65535, 0], "roundabout was new and": [65535, 0], "was new and natty": [65535, 0], "new and natty and": [65535, 0], "and natty and so": [65535, 0], "natty and so were": [65535, 0], "and so were his": [65535, 0], "so were his pantaloons": [65535, 0], "were his pantaloons he": [65535, 0], "his pantaloons he had": [65535, 0], "pantaloons he had shoes": [65535, 0], "he had shoes on": [65535, 0], "had shoes on and": [65535, 0], "shoes on and it": [65535, 0], "on and it was": [65535, 0], "and it was only": [65535, 0], "it was only friday": [65535, 0], "was only friday he": [65535, 0], "only friday he even": [65535, 0], "friday he even wore": [65535, 0], "he even wore a": [65535, 0], "even wore a necktie": [65535, 0], "wore a necktie a": [65535, 0], "a necktie a bright": [65535, 0], "necktie a bright bit": [65535, 0], "a bright bit of": [65535, 0], "bright bit of ribbon": [65535, 0], "bit of ribbon he": [65535, 0], "of ribbon he had": [65535, 0], "ribbon he had a": [65535, 0], "he had a citified": [65535, 0], "had a citified air": [65535, 0], "a citified air about": [65535, 0], "citified air about him": [65535, 0], "air about him that": [65535, 0], "about him that ate": [65535, 0], "him that ate into": [65535, 0], "that ate into tom's": [65535, 0], "ate into tom's vitals": [65535, 0], "into tom's vitals the": [65535, 0], "tom's vitals the more": [65535, 0], "vitals the more tom": [65535, 0], "the more tom stared": [65535, 0], "more tom stared at": [65535, 0], "tom stared at the": [65535, 0], "stared at the splendid": [65535, 0], "at the splendid marvel": [65535, 0], "the splendid marvel the": [65535, 0], "splendid marvel the higher": [65535, 0], "marvel the higher he": [65535, 0], "the higher he turned": [65535, 0], "higher he turned up": [65535, 0], "he turned up his": [65535, 0], "turned up his nose": [65535, 0], "up his nose at": [65535, 0], "his nose at his": [65535, 0], "nose at his finery": [65535, 0], "at his finery and": [65535, 0], "his finery and the": [65535, 0], "finery and the shabbier": [65535, 0], "and the shabbier and": [65535, 0], "the shabbier and shabbier": [65535, 0], "shabbier and shabbier his": [65535, 0], "and shabbier his own": [65535, 0], "shabbier his own outfit": [65535, 0], "his own outfit seemed": [65535, 0], "own outfit seemed to": [65535, 0], "outfit seemed to him": [65535, 0], "seemed to him to": [65535, 0], "to him to grow": [65535, 0], "him to grow neither": [65535, 0], "to grow neither boy": [65535, 0], "grow neither boy spoke": [65535, 0], "neither boy spoke if": [65535, 0], "boy spoke if one": [65535, 0], "spoke if one moved": [65535, 0], "if one moved the": [65535, 0], "one moved the other": [65535, 0], "moved the other moved": [65535, 0], "the other moved but": [65535, 0], "other moved but only": [65535, 0], "moved but only sidewise": [65535, 0], "but only sidewise in": [65535, 0], "only sidewise in a": [65535, 0], "sidewise in a circle": [65535, 0], "in a circle they": [65535, 0], "a circle they kept": [65535, 0], "circle they kept face": [65535, 0], "they kept face to": [65535, 0], "kept face to face": [65535, 0], "face to face and": [65535, 0], "to face and eye": [65535, 0], "face and eye to": [65535, 0], "and eye to eye": [65535, 0], "eye to eye all": [65535, 0], "to eye all the": [65535, 0], "eye all the time": [65535, 0], "all the time finally": [65535, 0], "the time finally tom": [65535, 0], "time finally tom said": [65535, 0], "finally tom said i": [65535, 0], "tom said i can": [65535, 0], "said i can lick": [65535, 0], "i can lick you": [65535, 0], "can lick you i'd": [65535, 0], "lick you i'd like": [65535, 0], "you i'd like to": [65535, 0], "i'd like to see": [65535, 0], "like to see you": [65535, 0], "to see you try": [65535, 0], "see you try it": [65535, 0], "you try it well": [65535, 0], "try it well i": [65535, 0], "it well i can": [65535, 0], "well i can do": [65535, 0], "i can do it": [65535, 0], "can do it no": [65535, 0], "do it no you": [65535, 0], "it no you can't": [65535, 0], "no you can't either": [65535, 0], "you can't either yes": [65535, 0], "can't either yes i": [65535, 0], "either yes i can": [65535, 0], "yes i can no": [65535, 0], "i can no you": [65535, 0], "can no you can't": [65535, 0], "no you can't i": [65535, 0], "you can't i can": [65535, 0], "can't i can you": [65535, 0], "i can you can't": [65535, 0], "can you can't can": [65535, 0], "you can't can can't": [65535, 0], "can't can can't an": [65535, 0], "can can't an uncomfortable": [65535, 0], "can't an uncomfortable pause": [65535, 0], "an uncomfortable pause then": [65535, 0], "uncomfortable pause then tom": [65535, 0], "pause then tom said": [65535, 0], "then tom said what's": [65535, 0], "tom said what's your": [65535, 0], "said what's your name": [65535, 0], "what's your name 'tisn't": [65535, 0], "your name 'tisn't any": [65535, 0], "name 'tisn't any of": [65535, 0], "'tisn't any of your": [65535, 0], "any of your business": [65535, 0], "of your business maybe": [65535, 0], "your business maybe well": [65535, 0], "business maybe well i": [65535, 0], "maybe well i 'low": [65535, 0], "well i 'low i'll": [65535, 0], "i 'low i'll make": [65535, 0], "'low i'll make it": [65535, 0], "i'll make it my": [65535, 0], "make it my business": [65535, 0], "it my business well": [65535, 0], "my business well why": [65535, 0], "business well why don't": [65535, 0], "why don't you if": [65535, 0], "don't you if you": [65535, 0], "you if you say": [65535, 0], "if you say much": [65535, 0], "you say much i": [65535, 0], "say much i will": [65535, 0], "much i will much": [65535, 0], "i will much much": [65535, 0], "will much much much": [65535, 0], "much much much there": [65535, 0], "much much there now": [65535, 0], "much there now oh": [65535, 0], "there now oh you": [65535, 0], "now oh you think": [65535, 0], "oh you think you're": [65535, 0], "you think you're mighty": [65535, 0], "think you're mighty smart": [65535, 0], "you're mighty smart don't": [65535, 0], "mighty smart don't you": [65535, 0], "smart don't you i": [65535, 0], "don't you i could": [65535, 0], "you i could lick": [65535, 0], "i could lick you": [65535, 0], "could lick you with": [65535, 0], "lick you with one": [65535, 0], "you with one hand": [65535, 0], "with one hand tied": [65535, 0], "one hand tied behind": [65535, 0], "hand tied behind me": [65535, 0], "tied behind me if": [65535, 0], "behind me if i": [65535, 0], "me if i wanted": [65535, 0], "why don't you do": [65535, 0], "don't you do it": [65535, 0], "you do it you": [65535, 0], "do it you say": [65535, 0], "it you say you": [65535, 0], "you say you can": [65535, 0], "say you can do": [65535, 0], "you can do it": [65535, 0], "can do it well": [65535, 0], "do it well i": [65535, 0], "it well i will": [65535, 0], "well i will if": [65535, 0], "i will if you": [65535, 0], "will if you fool": [65535, 0], "if you fool with": [65535, 0], "you fool with me": [65535, 0], "fool with me oh": [65535, 0], "with me oh yes": [65535, 0], "me oh yes i've": [65535, 0], "oh yes i've seen": [65535, 0], "yes i've seen whole": [65535, 0], "i've seen whole families": [65535, 0], "seen whole families in": [65535, 0], "whole families in the": [65535, 0], "families in the same": [65535, 0], "in the same fix": [65535, 0], "the same fix smarty": [65535, 0], "same fix smarty you": [65535, 0], "fix smarty you think": [65535, 0], "smarty you think you're": [65535, 0], "you think you're some": [65535, 0], "think you're some now": [65535, 0], "you're some now don't": [65535, 0], "some now don't you": [65535, 0], "now don't you oh": [65535, 0], "don't you oh what": [65535, 0], "you oh what a": [65535, 0], "oh what a hat": [65535, 0], "what a hat you": [65535, 0], "a hat you can": [65535, 0], "hat you can lump": [65535, 0], "you can lump that": [65535, 0], "can lump that hat": [65535, 0], "lump that hat if": [65535, 0], "that hat if you": [65535, 0], "hat if you don't": [65535, 0], "if you don't like": [65535, 0], "you don't like it": [65535, 0], "don't like it i": [65535, 0], "like it i dare": [65535, 0], "it i dare you": [65535, 0], "i dare you to": [65535, 0], "dare you to knock": [65535, 0], "you to knock it": [65535, 0], "to knock it off": [65535, 0], "knock it off and": [65535, 0], "it off and anybody": [65535, 0], "off and anybody that'll": [65535, 0], "and anybody that'll take": [65535, 0], "anybody that'll take a": [65535, 0], "that'll take a dare": [65535, 0], "take a dare will": [65535, 0], "a dare will suck": [65535, 0], "dare will suck eggs": [65535, 0], "will suck eggs you're": [65535, 0], "suck eggs you're a": [65535, 0], "eggs you're a liar": [65535, 0], "you're a liar you're": [65535, 0], "a liar you're another": [65535, 0], "liar you're another you're": [65535, 0], "you're another you're a": [65535, 0], "another you're a fighting": [65535, 0], "you're a fighting liar": [65535, 0], "a fighting liar and": [65535, 0], "fighting liar and dasn't": [65535, 0], "liar and dasn't take": [65535, 0], "and dasn't take it": [65535, 0], "dasn't take it up": [65535, 0], "take it up aw": [65535, 0], "it up aw take": [65535, 0], "up aw take a": [65535, 0], "aw take a walk": [65535, 0], "take a walk say": [65535, 0], "a walk say if": [65535, 0], "walk say if you": [65535, 0], "say if you give": [65535, 0], "if you give me": [65535, 0], "you give me much": [65535, 0], "give me much more": [65535, 0], "me much more of": [65535, 0], "much more of your": [65535, 0], "more of your sass": [65535, 0], "of your sass i'll": [65535, 0], "your sass i'll take": [65535, 0], "sass i'll take and": [65535, 0], "i'll take and bounce": [65535, 0], "take and bounce a": [65535, 0], "and bounce a rock": [65535, 0], "bounce a rock off'n": [65535, 0], "a rock off'n your": [65535, 0], "rock off'n your head": [65535, 0], "off'n your head oh": [65535, 0], "your head oh of": [65535, 0], "head oh of course": [65535, 0], "oh of course you": [65535, 0], "of course you will": [65535, 0], "course you will well": [65535, 0], "you will well i": [65535, 0], "will well i will": [65535, 0], "well i will well": [65535, 0], "i will well why": [65535, 0], "will well why don't": [65535, 0], "you do it then": [65535, 0], "do it then what": [65535, 0], "it then what do": [65535, 0], "then what do you": [65535, 0], "what do you keep": [65535, 0], "do you keep saying": [65535, 0], "you keep saying you": [65535, 0], "keep saying you will": [65535, 0], "saying you will for": [65535, 0], "you will for why": [65535, 0], "will for why don't": [65535, 0], "for why don't you": [65535, 0], "you do it it's": [65535, 0], "do it it's because": [65535, 0], "it it's because you're": [65535, 0], "it's because you're afraid": [65535, 0], "because you're afraid i": [65535, 0], "you're afraid i ain't": [65535, 0], "afraid i ain't afraid": [65535, 0], "i ain't afraid you": [65535, 0], "ain't afraid you are": [65535, 0], "afraid you are i": [65535, 0], "you are i ain't": [65535, 0], "are i ain't you": [65535, 0], "i ain't you are": [65535, 0], "ain't you are another": [65535, 0], "you are another pause": [65535, 0], "are another pause and": [65535, 0], "another pause and more": [65535, 0], "pause and more eying": [65535, 0], "and more eying and": [65535, 0], "more eying and sidling": [65535, 0], "eying and sidling around": [65535, 0], "and sidling around each": [65535, 0], "sidling around each other": [65535, 0], "around each other presently": [65535, 0], "each other presently they": [65535, 0], "other presently they were": [65535, 0], "presently they were shoulder": [65535, 0], "they were shoulder to": [65535, 0], "were shoulder to shoulder": [65535, 0], "shoulder to shoulder tom": [65535, 0], "to shoulder tom said": [65535, 0], "shoulder tom said get": [65535, 0], "tom said get away": [65535, 0], "said get away from": [65535, 0], "get away from here": [65535, 0], "away from here go": [65535, 0], "from here go away": [65535, 0], "here go away yourself": [65535, 0], "go away yourself i": [65535, 0], "away yourself i won't": [65535, 0], "yourself i won't i": [65535, 0], "i won't i won't": [65535, 0], "won't i won't either": [65535, 0], "i won't either so": [65535, 0], "won't either so they": [65535, 0], "either so they stood": [65535, 0], "so they stood each": [65535, 0], "they stood each with": [65535, 0], "stood each with a": [65535, 0], "each with a foot": [65535, 0], "with a foot placed": [65535, 0], "a foot placed at": [65535, 0], "foot placed at an": [65535, 0], "placed at an angle": [65535, 0], "at an angle as": [65535, 0], "an angle as a": [65535, 0], "angle as a brace": [65535, 0], "as a brace and": [65535, 0], "a brace and both": [65535, 0], "brace and both shoving": [65535, 0], "and both shoving with": [65535, 0], "both shoving with might": [65535, 0], "shoving with might and": [65535, 0], "with might and main": [65535, 0], "might and main and": [65535, 0], "and main and glowering": [65535, 0], "main and glowering at": [65535, 0], "and glowering at each": [65535, 0], "glowering at each other": [65535, 0], "at each other with": [65535, 0], "each other with hate": [65535, 0], "other with hate but": [65535, 0], "with hate but neither": [65535, 0], "hate but neither could": [65535, 0], "but neither could get": [65535, 0], "neither could get an": [65535, 0], "could get an advantage": [65535, 0], "get an advantage after": [65535, 0], "an advantage after struggling": [65535, 0], "advantage after struggling till": [65535, 0], "after struggling till both": [65535, 0], "struggling till both were": [65535, 0], "till both were hot": [65535, 0], "both were hot and": [65535, 0], "were hot and flushed": [65535, 0], "hot and flushed each": [65535, 0], "and flushed each relaxed": [65535, 0], "flushed each relaxed his": [65535, 0], "each relaxed his strain": [65535, 0], "relaxed his strain with": [65535, 0], "his strain with watchful": [65535, 0], "strain with watchful caution": [65535, 0], "with watchful caution and": [65535, 0], "watchful caution and tom": [65535, 0], "caution and tom said": [65535, 0], "and tom said you're": [65535, 0], "tom said you're a": [65535, 0], "said you're a coward": [65535, 0], "you're a coward and": [65535, 0], "a coward and a": [65535, 0], "coward and a pup": [65535, 0], "and a pup i'll": [65535, 0], "a pup i'll tell": [65535, 0], "pup i'll tell my": [65535, 0], "i'll tell my big": [65535, 0], "tell my big brother": [65535, 0], "my big brother on": [65535, 0], "big brother on you": [65535, 0], "brother on you and": [65535, 0], "on you and he": [65535, 0], "you and he can": [65535, 0], "and he can thrash": [65535, 0], "he can thrash you": [65535, 0], "can thrash you with": [65535, 0], "thrash you with his": [65535, 0], "you with his little": [65535, 0], "with his little finger": [65535, 0], "his little finger and": [65535, 0], "little finger and i'll": [65535, 0], "finger and i'll make": [65535, 0], "and i'll make him": [65535, 0], "i'll make him do": [65535, 0], "make him do it": [65535, 0], "him do it too": [65535, 0], "do it too what": [65535, 0], "it too what do": [65535, 0], "too what do i": [65535, 0], "what do i care": [65535, 0], "do i care for": [65535, 0], "i care for your": [65535, 0], "care for your big": [65535, 0], "for your big brother": [65535, 0], "your big brother i've": [65535, 0], "big brother i've got": [65535, 0], "brother i've got a": [65535, 0], "i've got a brother": [65535, 0], "got a brother that's": [65535, 0], "a brother that's bigger": [65535, 0], "brother that's bigger than": [65535, 0], "that's bigger than he": [65535, 0], "bigger than he is": [65535, 0], "than he is and": [65535, 0], "he is and what's": [65535, 0], "is and what's more": [65535, 0], "and what's more he": [65535, 0], "what's more he can": [65535, 0], "more he can throw": [65535, 0], "he can throw him": [65535, 0], "can throw him over": [65535, 0], "throw him over that": [65535, 0], "him over that fence": [65535, 0], "over that fence too": [65535, 0], "that fence too both": [65535, 0], "fence too both brothers": [65535, 0], "too both brothers were": [65535, 0], "both brothers were imaginary": [65535, 0], "brothers were imaginary that's": [65535, 0], "were imaginary that's a": [65535, 0], "imaginary that's a lie": [65535, 0], "that's a lie your": [65535, 0], "a lie your saying": [65535, 0], "lie your saying so": [65535, 0], "your saying so don't": [65535, 0], "saying so don't make": [65535, 0], "so don't make it": [65535, 0], "don't make it so": [65535, 0], "make it so tom": [65535, 0], "it so tom drew": [65535, 0], "so tom drew a": [65535, 0], "tom drew a line": [65535, 0], "drew a line in": [65535, 0], "a line in the": [65535, 0], "line in the dust": [65535, 0], "in the dust with": [65535, 0], "the dust with his": [65535, 0], "dust with his big": [65535, 0], "with his big toe": [65535, 0], "his big toe and": [65535, 0], "big toe and said": [65535, 0], "toe and said i": [65535, 0], "and said i dare": [65535, 0], "said i dare you": [65535, 0], "dare you to step": [65535, 0], "you to step over": [65535, 0], "to step over that": [65535, 0], "step over that and": [65535, 0], "over that and i'll": [65535, 0], "that and i'll lick": [65535, 0], "and i'll lick you": [65535, 0], "i'll lick you till": [65535, 0], "lick you till you": [65535, 0], "you till you can't": [65535, 0], "till you can't stand": [65535, 0], "you can't stand up": [65535, 0], "can't stand up anybody": [65535, 0], "stand up anybody that'll": [65535, 0], "up anybody that'll take": [65535, 0], "a dare will steal": [65535, 0], "dare will steal sheep": [65535, 0], "will steal sheep the": [65535, 0], "steal sheep the new": [65535, 0], "sheep the new boy": [65535, 0], "the new boy stepped": [65535, 0], "new boy stepped over": [65535, 0], "boy stepped over promptly": [65535, 0], "stepped over promptly and": [65535, 0], "over promptly and said": [65535, 0], "promptly and said now": [65535, 0], "and said now you": [65535, 0], "said now you said": [65535, 0], "now you said you'd": [65535, 0], "you said you'd do": [65535, 0], "said you'd do it": [65535, 0], "you'd do it now": [65535, 0], "do it now let's": [65535, 0], "it now let's see": [65535, 0], "now let's see you": [65535, 0], "let's see you do": [65535, 0], "see you do it": [65535, 0], "you do it don't": [65535, 0], "do it don't you": [65535, 0], "it don't you crowd": [65535, 0], "don't you crowd me": [65535, 0], "you crowd me now": [65535, 0], "crowd me now you": [65535, 0], "me now you better": [65535, 0], "now you better look": [65535, 0], "you better look out": [65535, 0], "better look out well": [65535, 0], "look out well you": [65535, 0], "out well you said": [65535, 0], "well you said you'd": [65535, 0], "you'd do it why": [65535, 0], "do it why don't": [65535, 0], "it why don't you": [65535, 0], "you do it by": [65535, 0], "do it by jingo": [65535, 0], "it by jingo for": [65535, 0], "by jingo for two": [65535, 0], "jingo for two cents": [65535, 0], "for two cents i": [65535, 0], "two cents i will": [65535, 0], "cents i will do": [65535, 0], "i will do it": [65535, 0], "will do it the": [65535, 0], "do it the new": [65535, 0], "it the new boy": [65535, 0], "the new boy took": [65535, 0], "new boy took two": [65535, 0], "boy took two broad": [65535, 0], "took two broad coppers": [65535, 0], "two broad coppers out": [65535, 0], "broad coppers out of": [65535, 0], "coppers out of his": [65535, 0], "of his pocket and": [65535, 0], "his pocket and held": [65535, 0], "pocket and held them": [65535, 0], "and held them out": [65535, 0], "held them out with": [65535, 0], "them out with derision": [65535, 0], "out with derision tom": [65535, 0], "with derision tom struck": [65535, 0], "derision tom struck them": [65535, 0], "tom struck them to": [65535, 0], "struck them to the": [65535, 0], "them to the ground": [65535, 0], "to the ground in": [65535, 0], "the ground in an": [65535, 0], "ground in an instant": [65535, 0], "in an instant both": [65535, 0], "an instant both boys": [65535, 0], "instant both boys were": [65535, 0], "both boys were rolling": [65535, 0], "boys were rolling and": [65535, 0], "were rolling and tumbling": [65535, 0], "rolling and tumbling in": [65535, 0], "and tumbling in the": [65535, 0], "tumbling in the dirt": [65535, 0], "in the dirt gripped": [65535, 0], "the dirt gripped together": [65535, 0], "dirt gripped together like": [65535, 0], "gripped together like cats": [65535, 0], "together like cats and": [65535, 0], "like cats and for": [65535, 0], "cats and for the": [65535, 0], "and for the space": [65535, 0], "of a minute they": [65535, 0], "a minute they tugged": [65535, 0], "minute they tugged and": [65535, 0], "they tugged and tore": [65535, 0], "tugged and tore at": [65535, 0], "and tore at each": [65535, 0], "tore at each other's": [65535, 0], "at each other's hair": [65535, 0], "each other's hair and": [65535, 0], "other's hair and clothes": [65535, 0], "hair and clothes punched": [65535, 0], "and clothes punched and": [65535, 0], "clothes punched and scratched": [65535, 0], "punched and scratched each": [65535, 0], "and scratched each other's": [65535, 0], "scratched each other's nose": [65535, 0], "each other's nose and": [65535, 0], "other's nose and covered": [65535, 0], "nose and covered themselves": [65535, 0], "and covered themselves with": [65535, 0], "covered themselves with dust": [65535, 0], "themselves with dust and": [65535, 0], "with dust and glory": [65535, 0], "dust and glory presently": [65535, 0], "and glory presently the": [65535, 0], "glory presently the confusion": [65535, 0], "presently the confusion took": [65535, 0], "the confusion took form": [65535, 0], "confusion took form and": [65535, 0], "took form and through": [65535, 0], "form and through the": [65535, 0], "and through the fog": [65535, 0], "through the fog of": [65535, 0], "the fog of battle": [65535, 0], "fog of battle tom": [65535, 0], "of battle tom appeared": [65535, 0], "battle tom appeared seated": [65535, 0], "tom appeared seated astride": [65535, 0], "appeared seated astride the": [65535, 0], "seated astride the new": [65535, 0], "astride the new boy": [65535, 0], "the new boy and": [65535, 0], "new boy and pounding": [65535, 0], "boy and pounding him": [65535, 0], "and pounding him with": [65535, 0], "pounding him with his": [65535, 0], "him with his fists": [65535, 0], "with his fists holler": [65535, 0], "his fists holler 'nuff": [65535, 0], "fists holler 'nuff said": [65535, 0], "holler 'nuff said he": [65535, 0], "'nuff said he the": [65535, 0], "said he the boy": [65535, 0], "he the boy only": [65535, 0], "the boy only struggled": [65535, 0], "boy only struggled to": [65535, 0], "only struggled to free": [65535, 0], "struggled to free himself": [65535, 0], "to free himself he": [65535, 0], "free himself he was": [65535, 0], "himself he was crying": [65535, 0], "he was crying mainly": [65535, 0], "was crying mainly from": [65535, 0], "crying mainly from rage": [65535, 0], "mainly from rage holler": [65535, 0], "from rage holler 'nuff": [65535, 0], "rage holler 'nuff and": [65535, 0], "holler 'nuff and the": [65535, 0], "'nuff and the pounding": [65535, 0], "and the pounding went": [65535, 0], "the pounding went on": [65535, 0], "pounding went on at": [65535, 0], "went on at last": [65535, 0], "on at last the": [65535, 0], "at last the stranger": [65535, 0], "last the stranger got": [65535, 0], "the stranger got out": [65535, 0], "stranger got out a": [65535, 0], "got out a smothered": [65535, 0], "out a smothered 'nuff": [65535, 0], "a smothered 'nuff and": [65535, 0], "smothered 'nuff and tom": [65535, 0], "'nuff and tom let": [65535, 0], "and tom let him": [65535, 0], "tom let him up": [65535, 0], "let him up and": [65535, 0], "him up and said": [65535, 0], "up and said now": [65535, 0], "and said now that'll": [65535, 0], "said now that'll learn": [65535, 0], "now that'll learn you": [65535, 0], "that'll learn you better": [65535, 0], "learn you better look": [65535, 0], "better look out who": [65535, 0], "look out who you're": [65535, 0], "out who you're fooling": [65535, 0], "who you're fooling with": [65535, 0], "you're fooling with next": [65535, 0], "fooling with next time": [65535, 0], "with next time the": [65535, 0], "next time the new": [65535, 0], "time the new boy": [65535, 0], "the new boy went": [65535, 0], "new boy went off": [65535, 0], "boy went off brushing": [65535, 0], "went off brushing the": [65535, 0], "off brushing the dust": [65535, 0], "brushing the dust from": [65535, 0], "the dust from his": [65535, 0], "dust from his clothes": [65535, 0], "from his clothes sobbing": [65535, 0], "his clothes sobbing snuffling": [65535, 0], "clothes sobbing snuffling and": [65535, 0], "sobbing snuffling and occasionally": [65535, 0], "snuffling and occasionally looking": [65535, 0], "and occasionally looking back": [65535, 0], "occasionally looking back and": [65535, 0], "looking back and shaking": [65535, 0], "back and shaking his": [65535, 0], "and shaking his head": [65535, 0], "shaking his head and": [65535, 0], "his head and threatening": [65535, 0], "head and threatening what": [65535, 0], "and threatening what he": [65535, 0], "threatening what he would": [65535, 0], "what he would do": [65535, 0], "he would do to": [65535, 0], "would do to tom": [65535, 0], "do to tom the": [65535, 0], "to tom the next": [65535, 0], "tom the next time": [65535, 0], "the next time he": [65535, 0], "next time he caught": [65535, 0], "time he caught him": [65535, 0], "he caught him out": [65535, 0], "caught him out to": [65535, 0], "him out to which": [65535, 0], "out to which tom": [65535, 0], "to which tom responded": [65535, 0], "which tom responded with": [65535, 0], "tom responded with jeers": [65535, 0], "responded with jeers and": [65535, 0], "with jeers and started": [65535, 0], "jeers and started off": [65535, 0], "and started off in": [65535, 0], "started off in high": [65535, 0], "off in high feather": [65535, 0], "in high feather and": [65535, 0], "high feather and as": [65535, 0], "feather and as soon": [65535, 0], "and as soon as": [65535, 0], "as soon as his": [65535, 0], "soon as his back": [65535, 0], "as his back was": [65535, 0], "his back was turned": [65535, 0], "back was turned the": [65535, 0], "was turned the new": [65535, 0], "turned the new boy": [65535, 0], "the new boy snatched": [65535, 0], "new boy snatched up": [65535, 0], "boy snatched up a": [65535, 0], "snatched up a stone": [65535, 0], "up a stone threw": [65535, 0], "a stone threw it": [65535, 0], "stone threw it and": [65535, 0], "threw it and hit": [65535, 0], "it and hit him": [65535, 0], "and hit him between": [65535, 0], "hit him between the": [65535, 0], "him between the shoulders": [65535, 0], "between the shoulders and": [65535, 0], "the shoulders and then": [65535, 0], "shoulders and then turned": [65535, 0], "and then turned tail": [65535, 0], "then turned tail and": [65535, 0], "turned tail and ran": [65535, 0], "tail and ran like": [65535, 0], "and ran like an": [65535, 0], "ran like an antelope": [65535, 0], "like an antelope tom": [65535, 0], "an antelope tom chased": [65535, 0], "antelope tom chased the": [65535, 0], "tom chased the traitor": [65535, 0], "chased the traitor home": [65535, 0], "the traitor home and": [65535, 0], "traitor home and thus": [65535, 0], "home and thus found": [65535, 0], "and thus found out": [65535, 0], "thus found out where": [65535, 0], "found out where he": [65535, 0], "out where he lived": [65535, 0], "where he lived he": [65535, 0], "he lived he then": [65535, 0], "lived he then held": [65535, 0], "he then held a": [65535, 0], "then held a position": [65535, 0], "held a position at": [65535, 0], "a position at the": [65535, 0], "position at the gate": [65535, 0], "at the gate for": [65535, 0], "the gate for some": [65535, 0], "gate for some time": [65535, 0], "for some time daring": [65535, 0], "some time daring the": [65535, 0], "time daring the enemy": [65535, 0], "daring the enemy to": [65535, 0], "the enemy to come": [65535, 0], "enemy to come outside": [65535, 0], "to come outside but": [65535, 0], "come outside but the": [65535, 0], "outside but the enemy": [65535, 0], "but the enemy only": [65535, 0], "the enemy only made": [65535, 0], "enemy only made faces": [65535, 0], "only made faces at": [65535, 0], "made faces at him": [65535, 0], "faces at him through": [65535, 0], "at him through the": [65535, 0], "him through the window": [65535, 0], "through the window and": [65535, 0], "the window and declined": [65535, 0], "window and declined at": [65535, 0], "and declined at last": [65535, 0], "declined at last the": [65535, 0], "at last the enemy's": [65535, 0], "last the enemy's mother": [65535, 0], "the enemy's mother appeared": [65535, 0], "enemy's mother appeared and": [65535, 0], "mother appeared and called": [65535, 0], "appeared and called tom": [65535, 0], "and called tom a": [65535, 0], "called tom a bad": [65535, 0], "tom a bad vicious": [65535, 0], "a bad vicious vulgar": [65535, 0], "bad vicious vulgar child": [65535, 0], "vicious vulgar child and": [65535, 0], "vulgar child and ordered": [65535, 0], "child and ordered him": [65535, 0], "and ordered him away": [65535, 0], "ordered him away so": [65535, 0], "him away so he": [65535, 0], "away so he went": [65535, 0], "so he went away": [65535, 0], "he went away but": [65535, 0], "went away but he": [65535, 0], "away but he said": [65535, 0], "but he said he": [65535, 0], "he said he 'lowed": [65535, 0], "said he 'lowed to": [65535, 0], "he 'lowed to lay": [65535, 0], "'lowed to lay for": [65535, 0], "to lay for that": [65535, 0], "lay for that boy": [65535, 0], "for that boy he": [65535, 0], "that boy he got": [65535, 0], "boy he got home": [65535, 0], "he got home pretty": [65535, 0], "got home pretty late": [65535, 0], "home pretty late that": [65535, 0], "pretty late that night": [65535, 0], "late that night and": [65535, 0], "that night and when": [65535, 0], "night and when he": [65535, 0], "and when he climbed": [65535, 0], "when he climbed cautiously": [65535, 0], "he climbed cautiously in": [65535, 0], "climbed cautiously in at": [65535, 0], "cautiously in at the": [65535, 0], "in at the window": [65535, 0], "at the window he": [65535, 0], "the window he uncovered": [65535, 0], "window he uncovered an": [65535, 0], "he uncovered an ambuscade": [65535, 0], "uncovered an ambuscade in": [65535, 0], "an ambuscade in the": [65535, 0], "ambuscade in the person": [65535, 0], "in the person of": [65535, 0], "the person of his": [65535, 0], "person of his aunt": [65535, 0], "of his aunt and": [65535, 0], "his aunt and when": [65535, 0], "aunt and when she": [65535, 0], "and when she saw": [65535, 0], "when she saw the": [65535, 0], "she saw the state": [65535, 0], "saw the state his": [65535, 0], "the state his clothes": [65535, 0], "state his clothes were": [65535, 0], "his clothes were in": [65535, 0], "clothes were in her": [65535, 0], "were in her resolution": [65535, 0], "in her resolution to": [65535, 0], "her resolution to turn": [65535, 0], "resolution to turn his": [65535, 0], "to turn his saturday": [65535, 0], "turn his saturday holiday": [65535, 0], "his saturday holiday into": [65535, 0], "saturday holiday into captivity": [65535, 0], "holiday into captivity at": [65535, 0], "into captivity at hard": [65535, 0], "captivity at hard labor": [65535, 0], "at hard labor became": [65535, 0], "hard labor became adamantine": [65535, 0], "labor became adamantine in": [65535, 0], "became adamantine in its": [65535, 0], "adamantine in its firmness": [65535, 0], "tom no answer tom no": [65535, 0], "no answer tom no answer": [65535, 0], "answer tom no answer what's": [65535, 0], "tom no answer what's gone": [65535, 0], "no answer what's gone with": [65535, 0], "answer what's gone with that": [65535, 0], "what's gone with that boy": [65535, 0], "gone with that boy i": [65535, 0], "with that boy i wonder": [65535, 0], "that boy i wonder you": [65535, 0], "boy i wonder you tom": [65535, 0], "i wonder you tom no": [65535, 0], "wonder you tom no answer": [65535, 0], "you tom no answer the": [65535, 0], "tom no answer the old": [65535, 0], "no answer the old lady": [65535, 0], "answer the old lady pulled": [65535, 0], "the old lady pulled her": [65535, 0], "old lady pulled her spectacles": [65535, 0], "lady pulled her spectacles down": [65535, 0], "pulled her spectacles down and": [65535, 0], "her spectacles down and looked": [65535, 0], "spectacles down and looked over": [65535, 0], "down and looked over them": [65535, 0], "and looked over them about": [65535, 0], "looked over them about the": [65535, 0], "over them about the room": [65535, 0], "them about the room then": [65535, 0], "about the room then she": [65535, 0], "the room then she put": [65535, 0], "room then she put them": [65535, 0], "then she put them up": [65535, 0], "she put them up and": [65535, 0], "put them up and looked": [65535, 0], "them up and looked out": [65535, 0], "up and looked out under": [65535, 0], "and looked out under them": [65535, 0], "looked out under them she": [65535, 0], "out under them she seldom": [65535, 0], "under them she seldom or": [65535, 0], "them she seldom or never": [65535, 0], "she seldom or never looked": [65535, 0], "seldom or never looked through": [65535, 0], "or never looked through them": [65535, 0], "never looked through them for": [65535, 0], "looked through them for so": [65535, 0], "through them for so small": [65535, 0], "them for so small a": [65535, 0], "for so small a thing": [65535, 0], "so small a thing as": [65535, 0], "small a thing as a": [65535, 0], "a thing as a boy": [65535, 0], "thing as a boy they": [65535, 0], "as a boy they were": [65535, 0], "a boy they were her": [65535, 0], "boy they were her state": [65535, 0], "they were her state pair": [65535, 0], "were her state pair the": [65535, 0], "her state pair the pride": [65535, 0], "state pair the pride of": [65535, 0], "pair the pride of her": [65535, 0], "the pride of her heart": [65535, 0], "pride of her heart and": [65535, 0], "of her heart and were": [65535, 0], "her heart and were built": [65535, 0], "heart and were built for": [65535, 0], "and were built for style": [65535, 0], "were built for style not": [65535, 0], "built for style not service": [65535, 0], "for style not service she": [65535, 0], "style not service she could": [65535, 0], "not service she could have": [65535, 0], "service she could have seen": [65535, 0], "she could have seen through": [65535, 0], "could have seen through a": [65535, 0], "have seen through a pair": [65535, 0], "seen through a pair of": [65535, 0], "through a pair of stove": [65535, 0], "a pair of stove lids": [65535, 0], "pair of stove lids just": [65535, 0], "of stove lids just as": [65535, 0], "stove lids just as well": [65535, 0], "lids just as well she": [65535, 0], "just as well she looked": [65535, 0], "as well she looked perplexed": [65535, 0], "well she looked perplexed for": [65535, 0], "she looked perplexed for a": [65535, 0], "looked perplexed for a moment": [65535, 0], "perplexed for a moment and": [65535, 0], "for a moment and then": [65535, 0], "moment and then said not": [65535, 0], "and then said not fiercely": [65535, 0], "then said not fiercely but": [65535, 0], "said not fiercely but still": [65535, 0], "not fiercely but still loud": [65535, 0], "fiercely but still loud enough": [65535, 0], "but still loud enough for": [65535, 0], "still loud enough for the": [65535, 0], "loud enough for the furniture": [65535, 0], "enough for the furniture to": [65535, 0], "for the furniture to hear": [65535, 0], "the furniture to hear well": [65535, 0], "furniture to hear well i": [65535, 0], "to hear well i lay": [65535, 0], "hear well i lay if": [65535, 0], "well i lay if i": [65535, 0], "i lay if i get": [65535, 0], "lay if i get hold": [65535, 0], "if i get hold of": [65535, 0], "i get hold of you": [65535, 0], "get hold of you i'll": [65535, 0], "hold of you i'll she": [65535, 0], "of you i'll she did": [65535, 0], "you i'll she did not": [65535, 0], "i'll she did not finish": [65535, 0], "she did not finish for": [65535, 0], "did not finish for by": [65535, 0], "not finish for by this": [65535, 0], "finish for by this time": [65535, 0], "for by this time she": [65535, 0], "by this time she was": [65535, 0], "this time she was bending": [65535, 0], "time she was bending down": [65535, 0], "she was bending down and": [65535, 0], "was bending down and punching": [65535, 0], "bending down and punching under": [65535, 0], "down and punching under the": [65535, 0], "and punching under the bed": [65535, 0], "punching under the bed with": [65535, 0], "under the bed with the": [65535, 0], "the bed with the broom": [65535, 0], "bed with the broom and": [65535, 0], "with the broom and so": [65535, 0], "the broom and so she": [65535, 0], "broom and so she needed": [65535, 0], "and so she needed breath": [65535, 0], "so she needed breath to": [65535, 0], "she needed breath to punctuate": [65535, 0], "needed breath to punctuate the": [65535, 0], "breath to punctuate the punches": [65535, 0], "to punctuate the punches with": [65535, 0], "punctuate the punches with she": [65535, 0], "the punches with she resurrected": [65535, 0], "punches with she resurrected nothing": [65535, 0], "with she resurrected nothing but": [65535, 0], "she resurrected nothing but the": [65535, 0], "resurrected nothing but the cat": [65535, 0], "nothing but the cat i": [65535, 0], "but the cat i never": [65535, 0], "the cat i never did": [65535, 0], "cat i never did see": [65535, 0], "i never did see the": [65535, 0], "never did see the beat": [65535, 0], "did see the beat of": [65535, 0], "see the beat of that": [65535, 0], "the beat of that boy": [65535, 0], "beat of that boy she": [65535, 0], "of that boy she went": [65535, 0], "that boy she went to": [65535, 0], "boy she went to the": [65535, 0], "she went to the open": [65535, 0], "went to the open door": [65535, 0], "to the open door and": [65535, 0], "the open door and stood": [65535, 0], "open door and stood in": [65535, 0], "door and stood in it": [65535, 0], "and stood in it and": [65535, 0], "stood in it and looked": [65535, 0], "in it and looked out": [65535, 0], "it and looked out among": [65535, 0], "and looked out among the": [65535, 0], "looked out among the tomato": [65535, 0], "out among the tomato vines": [65535, 0], "among the tomato vines and": [65535, 0], "the tomato vines and jimpson": [65535, 0], "tomato vines and jimpson weeds": [65535, 0], "vines and jimpson weeds that": [65535, 0], "and jimpson weeds that constituted": [65535, 0], "jimpson weeds that constituted the": [65535, 0], "weeds that constituted the garden": [65535, 0], "that constituted the garden no": [65535, 0], "constituted the garden no tom": [65535, 0], "the garden no tom so": [65535, 0], "garden no tom so she": [65535, 0], "no tom so she lifted": [65535, 0], "tom so she lifted up": [65535, 0], "so she lifted up her": [65535, 0], "she lifted up her voice": [65535, 0], "lifted up her voice at": [65535, 0], "up her voice at an": [65535, 0], "her voice at an angle": [65535, 0], "voice at an angle calculated": [65535, 0], "at an angle calculated for": [65535, 0], "an angle calculated for distance": [65535, 0], "angle calculated for distance and": [65535, 0], "calculated for distance and shouted": [65535, 0], "for distance and shouted y": [65535, 0], "distance and shouted y o": [65535, 0], "and shouted y o u": [65535, 0], "shouted y o u u": [65535, 0], "y o u u tom": [65535, 0], "o u u tom there": [65535, 0], "u u tom there was": [65535, 0], "u tom there was a": [65535, 0], "tom there was a slight": [65535, 0], "there was a slight noise": [65535, 0], "was a slight noise behind": [65535, 0], "a slight noise behind her": [65535, 0], "slight noise behind her and": [65535, 0], "noise behind her and she": [65535, 0], "behind her and she turned": [65535, 0], "her and she turned just": [65535, 0], "and she turned just in": [65535, 0], "she turned just in time": [65535, 0], "turned just in time to": [65535, 0], "just in time to seize": [65535, 0], "in time to seize a": [65535, 0], "time to seize a small": [65535, 0], "to seize a small boy": [65535, 0], "seize a small boy by": [65535, 0], "a small boy by the": [65535, 0], "small boy by the slack": [65535, 0], "boy by the slack of": [65535, 0], "by the slack of his": [65535, 0], "the slack of his roundabout": [65535, 0], "slack of his roundabout and": [65535, 0], "of his roundabout and arrest": [65535, 0], "his roundabout and arrest his": [65535, 0], "roundabout and arrest his flight": [65535, 0], "and arrest his flight there": [65535, 0], "arrest his flight there i": [65535, 0], "his flight there i might": [65535, 0], "flight there i might 'a'": [65535, 0], "there i might 'a' thought": [65535, 0], "i might 'a' thought of": [65535, 0], "might 'a' thought of that": [65535, 0], "'a' thought of that closet": [65535, 0], "thought of that closet what": [65535, 0], "of that closet what you": [65535, 0], "that closet what you been": [65535, 0], "closet what you been doing": [65535, 0], "what you been doing in": [65535, 0], "you been doing in there": [65535, 0], "been doing in there nothing": [65535, 0], "doing in there nothing nothing": [65535, 0], "in there nothing nothing look": [65535, 0], "there nothing nothing look at": [65535, 0], "nothing nothing look at your": [65535, 0], "nothing look at your hands": [65535, 0], "look at your hands and": [65535, 0], "at your hands and look": [65535, 0], "your hands and look at": [65535, 0], "hands and look at your": [65535, 0], "and look at your mouth": [65535, 0], "look at your mouth what": [65535, 0], "at your mouth what is": [65535, 0], "your mouth what is that": [65535, 0], "mouth what is that i": [65535, 0], "what is that i don't": [65535, 0], "is that i don't know": [65535, 0], "that i don't know aunt": [65535, 0], "i don't know aunt well": [65535, 0], "don't know aunt well i": [65535, 0], "know aunt well i know": [65535, 0], "aunt well i know it's": [65535, 0], "well i know it's jam": [65535, 0], "i know it's jam that's": [65535, 0], "know it's jam that's what": [65535, 0], "it's jam that's what it": [65535, 0], "jam that's what it is": [65535, 0], "that's what it is forty": [65535, 0], "what it is forty times": [65535, 0], "it is forty times i've": [65535, 0], "is forty times i've said": [65535, 0], "forty times i've said if": [65535, 0], "times i've said if you": [65535, 0], "i've said if you didn't": [65535, 0], "said if you didn't let": [65535, 0], "if you didn't let that": [65535, 0], "you didn't let that jam": [65535, 0], "didn't let that jam alone": [65535, 0], "let that jam alone i'd": [65535, 0], "that jam alone i'd skin": [65535, 0], "jam alone i'd skin you": [65535, 0], "alone i'd skin you hand": [65535, 0], "i'd skin you hand me": [65535, 0], "skin you hand me that": [65535, 0], "you hand me that switch": [65535, 0], "hand me that switch the": [65535, 0], "me that switch the switch": [65535, 0], "that switch the switch hovered": [65535, 0], "switch the switch hovered in": [65535, 0], "the switch hovered in the": [65535, 0], "switch hovered in the air": [65535, 0], "hovered in the air the": [65535, 0], "in the air the peril": [65535, 0], "the air the peril was": [65535, 0], "air the peril was desperate": [65535, 0], "the peril was desperate my": [65535, 0], "peril was desperate my look": [65535, 0], "was desperate my look behind": [65535, 0], "desperate my look behind you": [65535, 0], "my look behind you aunt": [65535, 0], "look behind you aunt the": [65535, 0], "behind you aunt the old": [65535, 0], "you aunt the old lady": [65535, 0], "aunt the old lady whirled": [65535, 0], "the old lady whirled round": [65535, 0], "old lady whirled round and": [65535, 0], "lady whirled round and snatched": [65535, 0], "whirled round and snatched her": [65535, 0], "round and snatched her skirts": [65535, 0], "and snatched her skirts out": [65535, 0], "snatched her skirts out of": [65535, 0], "her skirts out of danger": [65535, 0], "skirts out of danger the": [65535, 0], "out of danger the lad": [65535, 0], "of danger the lad fled": [65535, 0], "danger the lad fled on": [65535, 0], "the lad fled on the": [65535, 0], "lad fled on the instant": [65535, 0], "fled on the instant scrambled": [65535, 0], "on the instant scrambled up": [65535, 0], "the instant scrambled up the": [65535, 0], "instant scrambled up the high": [65535, 0], "scrambled up the high board": [65535, 0], "up the high board fence": [65535, 0], "the high board fence and": [65535, 0], "high board fence and disappeared": [65535, 0], "board fence and disappeared over": [65535, 0], "fence and disappeared over it": [65535, 0], "and disappeared over it his": [65535, 0], "disappeared over it his aunt": [65535, 0], "over it his aunt polly": [65535, 0], "it his aunt polly stood": [65535, 0], "his aunt polly stood surprised": [65535, 0], "aunt polly stood surprised a": [65535, 0], "polly stood surprised a moment": [65535, 0], "stood surprised a moment and": [65535, 0], "surprised a moment and then": [65535, 0], "a moment and then broke": [65535, 0], "moment and then broke into": [65535, 0], "and then broke into a": [65535, 0], "then broke into a gentle": [65535, 0], "broke into a gentle laugh": [65535, 0], "into a gentle laugh hang": [65535, 0], "a gentle laugh hang the": [65535, 0], "gentle laugh hang the boy": [65535, 0], "laugh hang the boy can't": [65535, 0], "hang the boy can't i": [65535, 0], "the boy can't i never": [65535, 0], "boy can't i never learn": [65535, 0], "can't i never learn anything": [65535, 0], "i never learn anything ain't": [65535, 0], "never learn anything ain't he": [65535, 0], "learn anything ain't he played": [65535, 0], "anything ain't he played me": [65535, 0], "ain't he played me tricks": [65535, 0], "he played me tricks enough": [65535, 0], "played me tricks enough like": [65535, 0], "me tricks enough like that": [65535, 0], "tricks enough like that for": [65535, 0], "enough like that for me": [65535, 0], "like that for me to": [65535, 0], "that for me to be": [65535, 0], "for me to be looking": [65535, 0], "me to be looking out": [65535, 0], "to be looking out for": [65535, 0], "be looking out for him": [65535, 0], "looking out for him by": [65535, 0], "out for him by this": [65535, 0], "for him by this time": [65535, 0], "him by this time but": [65535, 0], "by this time but old": [65535, 0], "this time but old fools": [65535, 0], "time but old fools is": [65535, 0], "but old fools is the": [65535, 0], "old fools is the biggest": [65535, 0], "fools is the biggest fools": [65535, 0], "is the biggest fools there": [65535, 0], "the biggest fools there is": [65535, 0], "biggest fools there is can't": [65535, 0], "fools there is can't learn": [65535, 0], "there is can't learn an": [65535, 0], "is can't learn an old": [65535, 0], "can't learn an old dog": [65535, 0], "learn an old dog new": [65535, 0], "an old dog new tricks": [65535, 0], "old dog new tricks as": [65535, 0], "dog new tricks as the": [65535, 0], "new tricks as the saying": [65535, 0], "tricks as the saying is": [65535, 0], "as the saying is but": [65535, 0], "the saying is but my": [65535, 0], "saying is but my goodness": [65535, 0], "is but my goodness he": [65535, 0], "but my goodness he never": [65535, 0], "my goodness he never plays": [65535, 0], "goodness he never plays them": [65535, 0], "he never plays them alike": [65535, 0], "never plays them alike two": [65535, 0], "plays them alike two days": [65535, 0], "them alike two days and": [65535, 0], "alike two days and how": [65535, 0], "two days and how is": [65535, 0], "days and how is a": [65535, 0], "and how is a body": [65535, 0], "how is a body to": [65535, 0], "is a body to know": [65535, 0], "a body to know what's": [65535, 0], "body to know what's coming": [65535, 0], "to know what's coming he": [65535, 0], "know what's coming he 'pears": [65535, 0], "what's coming he 'pears to": [65535, 0], "coming he 'pears to know": [65535, 0], "he 'pears to know just": [65535, 0], "'pears to know just how": [65535, 0], "to know just how long": [65535, 0], "know just how long he": [65535, 0], "just how long he can": [65535, 0], "how long he can torment": [65535, 0], "long he can torment me": [65535, 0], "he can torment me before": [65535, 0], "can torment me before i": [65535, 0], "torment me before i get": [65535, 0], "me before i get my": [65535, 0], "before i get my dander": [65535, 0], "i get my dander up": [65535, 0], "get my dander up and": [65535, 0], "my dander up and he": [65535, 0], "dander up and he knows": [65535, 0], "up and he knows if": [65535, 0], "and he knows if he": [65535, 0], "he knows if he can": [65535, 0], "knows if he can make": [65535, 0], "if he can make out": [65535, 0], "he can make out to": [65535, 0], "can make out to put": [65535, 0], "make out to put me": [65535, 0], "out to put me off": [65535, 0], "to put me off for": [65535, 0], "put me off for a": [65535, 0], "me off for a minute": [65535, 0], "off for a minute or": [65535, 0], "for a minute or make": [65535, 0], "a minute or make me": [65535, 0], "minute or make me laugh": [65535, 0], "or make me laugh it's": [65535, 0], "make me laugh it's all": [65535, 0], "me laugh it's all down": [65535, 0], "laugh it's all down again": [65535, 0], "it's all down again and": [65535, 0], "all down again and i": [65535, 0], "down again and i can't": [65535, 0], "again and i can't hit": [65535, 0], "and i can't hit him": [65535, 0], "i can't hit him a": [65535, 0], "can't hit him a lick": [65535, 0], "hit him a lick i": [65535, 0], "him a lick i ain't": [65535, 0], "a lick i ain't doing": [65535, 0], "lick i ain't doing my": [65535, 0], "i ain't doing my duty": [65535, 0], "ain't doing my duty by": [65535, 0], "doing my duty by that": [65535, 0], "my duty by that boy": [65535, 0], "duty by that boy and": [65535, 0], "by that boy and that's": [65535, 0], "that boy and that's the": [65535, 0], "boy and that's the lord's": [65535, 0], "and that's the lord's truth": [65535, 0], "that's the lord's truth goodness": [65535, 0], "the lord's truth goodness knows": [65535, 0], "lord's truth goodness knows spare": [65535, 0], "truth goodness knows spare the": [65535, 0], "goodness knows spare the rod": [65535, 0], "knows spare the rod and": [65535, 0], "spare the rod and spoil": [65535, 0], "the rod and spoil the": [65535, 0], "rod and spoil the child": [65535, 0], "and spoil the child as": [65535, 0], "spoil the child as the": [65535, 0], "the child as the good": [65535, 0], "child as the good book": [65535, 0], "as the good book says": [65535, 0], "the good book says i'm": [65535, 0], "good book says i'm a": [65535, 0], "book says i'm a laying": [65535, 0], "says i'm a laying up": [65535, 0], "i'm a laying up sin": [65535, 0], "a laying up sin and": [65535, 0], "laying up sin and suffering": [65535, 0], "up sin and suffering for": [65535, 0], "sin and suffering for us": [65535, 0], "and suffering for us both": [65535, 0], "suffering for us both i": [65535, 0], "for us both i know": [65535, 0], "us both i know he's": [65535, 0], "both i know he's full": [65535, 0], "i know he's full of": [65535, 0], "know he's full of the": [65535, 0], "he's full of the old": [65535, 0], "full of the old scratch": [65535, 0], "of the old scratch but": [65535, 0], "the old scratch but laws": [65535, 0], "old scratch but laws a": [65535, 0], "scratch but laws a me": [65535, 0], "but laws a me he's": [65535, 0], "laws a me he's my": [65535, 0], "a me he's my own": [65535, 0], "me he's my own dead": [65535, 0], "he's my own dead sister's": [65535, 0], "my own dead sister's boy": [65535, 0], "own dead sister's boy poor": [65535, 0], "dead sister's boy poor thing": [65535, 0], "sister's boy poor thing and": [65535, 0], "boy poor thing and i": [65535, 0], "poor thing and i ain't": [65535, 0], "thing and i ain't got": [65535, 0], "and i ain't got the": [65535, 0], "i ain't got the heart": [65535, 0], "ain't got the heart to": [65535, 0], "got the heart to lash": [65535, 0], "the heart to lash him": [65535, 0], "heart to lash him somehow": [65535, 0], "to lash him somehow every": [65535, 0], "lash him somehow every time": [65535, 0], "him somehow every time i": [65535, 0], "somehow every time i let": [65535, 0], "every time i let him": [65535, 0], "time i let him off": [65535, 0], "i let him off my": [65535, 0], "let him off my conscience": [65535, 0], "him off my conscience does": [65535, 0], "off my conscience does hurt": [65535, 0], "my conscience does hurt me": [65535, 0], "conscience does hurt me so": [65535, 0], "does hurt me so and": [65535, 0], "hurt me so and every": [65535, 0], "me so and every time": [65535, 0], "so and every time i": [65535, 0], "and every time i hit": [65535, 0], "every time i hit him": [65535, 0], "time i hit him my": [65535, 0], "i hit him my old": [65535, 0], "hit him my old heart": [65535, 0], "him my old heart most": [65535, 0], "my old heart most breaks": [65535, 0], "old heart most breaks well": [65535, 0], "heart most breaks well a": [65535, 0], "most breaks well a well": [65535, 0], "breaks well a well man": [65535, 0], "well a well man that": [65535, 0], "a well man that is": [65535, 0], "well man that is born": [65535, 0], "man that is born of": [65535, 0], "that is born of woman": [65535, 0], "is born of woman is": [65535, 0], "born of woman is of": [65535, 0], "of woman is of few": [65535, 0], "woman is of few days": [65535, 0], "is of few days and": [65535, 0], "of few days and full": [65535, 0], "few days and full of": [65535, 0], "days and full of trouble": [65535, 0], "and full of trouble as": [65535, 0], "full of trouble as the": [65535, 0], "of trouble as the scripture": [65535, 0], "trouble as the scripture says": [65535, 0], "as the scripture says and": [65535, 0], "the scripture says and i": [65535, 0], "scripture says and i reckon": [65535, 0], "says and i reckon it's": [65535, 0], "and i reckon it's so": [65535, 0], "i reckon it's so he'll": [65535, 0], "reckon it's so he'll play": [65535, 0], "it's so he'll play hookey": [65535, 0], "so he'll play hookey this": [65535, 0], "he'll play hookey this evening": [65535, 0], "play hookey this evening and": [65535, 0], "hookey this evening and i'll": [65535, 0], "this evening and i'll just": [65535, 0], "evening and i'll just be": [65535, 0], "and i'll just be obliged": [65535, 0], "i'll just be obliged to": [65535, 0], "just be obliged to make": [65535, 0], "be obliged to make him": [65535, 0], "obliged to make him work": [65535, 0], "to make him work to": [65535, 0], "make him work to morrow": [65535, 0], "him work to morrow to": [65535, 0], "work to morrow to punish": [65535, 0], "to morrow to punish him": [65535, 0], "morrow to punish him it's": [65535, 0], "to punish him it's mighty": [65535, 0], "punish him it's mighty hard": [65535, 0], "him it's mighty hard to": [65535, 0], "it's mighty hard to make": [65535, 0], "mighty hard to make him": [65535, 0], "hard to make him work": [65535, 0], "to make him work saturdays": [65535, 0], "make him work saturdays when": [65535, 0], "him work saturdays when all": [65535, 0], "work saturdays when all the": [65535, 0], "saturdays when all the boys": [65535, 0], "when all the boys is": [65535, 0], "all the boys is having": [65535, 0], "the boys is having holiday": [65535, 0], "boys is having holiday but": [65535, 0], "is having holiday but he": [65535, 0], "having holiday but he hates": [65535, 0], "holiday but he hates work": [65535, 0], "but he hates work more": [65535, 0], "he hates work more than": [65535, 0], "hates work more than he": [65535, 0], "work more than he hates": [65535, 0], "more than he hates anything": [65535, 0], "than he hates anything else": [65535, 0], "he hates anything else and": [65535, 0], "hates anything else and i've": [65535, 0], "anything else and i've got": [65535, 0], "else and i've got to": [65535, 0], "and i've got to do": [65535, 0], "i've got to do some": [65535, 0], "got to do some of": [65535, 0], "to do some of my": [65535, 0], "do some of my duty": [65535, 0], "some of my duty by": [65535, 0], "of my duty by him": [65535, 0], "my duty by him or": [65535, 0], "duty by him or i'll": [65535, 0], "by him or i'll be": [65535, 0], "him or i'll be the": [65535, 0], "or i'll be the ruination": [65535, 0], "i'll be the ruination of": [65535, 0], "be the ruination of the": [65535, 0], "the ruination of the child": [65535, 0], "ruination of the child tom": [65535, 0], "of the child tom did": [65535, 0], "the child tom did play": [65535, 0], "child tom did play hookey": [65535, 0], "tom did play hookey and": [65535, 0], "did play hookey and he": [65535, 0], "play hookey and he had": [65535, 0], "hookey and he had a": [65535, 0], "and he had a very": [65535, 0], "he had a very good": [65535, 0], "had a very good time": [65535, 0], "a very good time he": [65535, 0], "very good time he got": [65535, 0], "good time he got back": [65535, 0], "time he got back home": [65535, 0], "he got back home barely": [65535, 0], "got back home barely in": [65535, 0], "back home barely in season": [65535, 0], "home barely in season to": [65535, 0], "barely in season to help": [65535, 0], "in season to help jim": [65535, 0], "season to help jim the": [65535, 0], "to help jim the small": [65535, 0], "help jim the small colored": [65535, 0], "jim the small colored boy": [65535, 0], "the small colored boy saw": [65535, 0], "small colored boy saw next": [65535, 0], "colored boy saw next day's": [65535, 0], "boy saw next day's wood": [65535, 0], "saw next day's wood and": [65535, 0], "next day's wood and split": [65535, 0], "day's wood and split the": [65535, 0], "wood and split the kindlings": [65535, 0], "and split the kindlings before": [65535, 0], "split the kindlings before supper": [65535, 0], "the kindlings before supper at": [65535, 0], "kindlings before supper at least": [65535, 0], "before supper at least he": [65535, 0], "supper at least he was": [65535, 0], "at least he was there": [65535, 0], "least he was there in": [65535, 0], "he was there in time": [65535, 0], "was there in time to": [65535, 0], "there in time to tell": [65535, 0], "in time to tell his": [65535, 0], "time to tell his adventures": [65535, 0], "to tell his adventures to": [65535, 0], "tell his adventures to jim": [65535, 0], "his adventures to jim while": [65535, 0], "adventures to jim while jim": [65535, 0], "to jim while jim did": [65535, 0], "jim while jim did three": [65535, 0], "while jim did three fourths": [65535, 0], "jim did three fourths of": [65535, 0], "did three fourths of the": [65535, 0], "three fourths of the work": [65535, 0], "fourths of the work tom's": [65535, 0], "of the work tom's younger": [65535, 0], "the work tom's younger brother": [65535, 0], "work tom's younger brother or": [65535, 0], "tom's younger brother or rather": [65535, 0], "younger brother or rather half": [65535, 0], "brother or rather half brother": [65535, 0], "or rather half brother sid": [65535, 0], "rather half brother sid was": [65535, 0], "half brother sid was already": [65535, 0], "brother sid was already through": [65535, 0], "sid was already through with": [65535, 0], "was already through with his": [65535, 0], "already through with his part": [65535, 0], "through with his part of": [65535, 0], "with his part of the": [65535, 0], "his part of the work": [65535, 0], "part of the work picking": [65535, 0], "of the work picking up": [65535, 0], "the work picking up chips": [65535, 0], "work picking up chips for": [65535, 0], "picking up chips for he": [65535, 0], "up chips for he was": [65535, 0], "chips for he was a": [65535, 0], "for he was a quiet": [65535, 0], "he was a quiet boy": [65535, 0], "was a quiet boy and": [65535, 0], "a quiet boy and had": [65535, 0], "quiet boy and had no": [65535, 0], "boy and had no adventurous": [65535, 0], "and had no adventurous troublesome": [65535, 0], "had no adventurous troublesome ways": [65535, 0], "no adventurous troublesome ways while": [65535, 0], "adventurous troublesome ways while tom": [65535, 0], "troublesome ways while tom was": [65535, 0], "ways while tom was eating": [65535, 0], "while tom was eating his": [65535, 0], "tom was eating his supper": [65535, 0], "was eating his supper and": [65535, 0], "eating his supper and stealing": [65535, 0], "his supper and stealing sugar": [65535, 0], "supper and stealing sugar as": [65535, 0], "and stealing sugar as opportunity": [65535, 0], "stealing sugar as opportunity offered": [65535, 0], "sugar as opportunity offered aunt": [65535, 0], "as opportunity offered aunt polly": [65535, 0], "opportunity offered aunt polly asked": [65535, 0], "offered aunt polly asked him": [65535, 0], "aunt polly asked him questions": [65535, 0], "polly asked him questions that": [65535, 0], "asked him questions that were": [65535, 0], "him questions that were full": [65535, 0], "questions that were full of": [65535, 0], "that were full of guile": [65535, 0], "were full of guile and": [65535, 0], "full of guile and very": [65535, 0], "of guile and very deep": [65535, 0], "guile and very deep for": [65535, 0], "and very deep for she": [65535, 0], "very deep for she wanted": [65535, 0], "deep for she wanted to": [65535, 0], "for she wanted to trap": [65535, 0], "she wanted to trap him": [65535, 0], "wanted to trap him into": [65535, 0], "to trap him into damaging": [65535, 0], "trap him into damaging revealments": [65535, 0], "him into damaging revealments like": [65535, 0], "into damaging revealments like many": [65535, 0], "damaging revealments like many other": [65535, 0], "revealments like many other simple": [65535, 0], "like many other simple hearted": [65535, 0], "many other simple hearted souls": [65535, 0], "other simple hearted souls it": [65535, 0], "simple hearted souls it was": [65535, 0], "hearted souls it was her": [65535, 0], "souls it was her pet": [65535, 0], "it was her pet vanity": [65535, 0], "was her pet vanity to": [65535, 0], "her pet vanity to believe": [65535, 0], "pet vanity to believe she": [65535, 0], "vanity to believe she was": [65535, 0], "to believe she was endowed": [65535, 0], "believe she was endowed with": [65535, 0], "she was endowed with a": [65535, 0], "was endowed with a talent": [65535, 0], "endowed with a talent for": [65535, 0], "with a talent for dark": [65535, 0], "a talent for dark and": [65535, 0], "talent for dark and mysterious": [65535, 0], "for dark and mysterious diplomacy": [65535, 0], "dark and mysterious diplomacy and": [65535, 0], "and mysterious diplomacy and she": [65535, 0], "mysterious diplomacy and she loved": [65535, 0], "diplomacy and she loved to": [65535, 0], "and she loved to contemplate": [65535, 0], "she loved to contemplate her": [65535, 0], "loved to contemplate her most": [65535, 0], "to contemplate her most transparent": [65535, 0], "contemplate her most transparent devices": [65535, 0], "her most transparent devices as": [65535, 0], "most transparent devices as marvels": [65535, 0], "transparent devices as marvels of": [65535, 0], "devices as marvels of low": [65535, 0], "as marvels of low cunning": [65535, 0], "marvels of low cunning said": [65535, 0], "of low cunning said she": [65535, 0], "low cunning said she tom": [65535, 0], "cunning said she tom it": [65535, 0], "said she tom it was": [65535, 0], "she tom it was middling": [65535, 0], "tom it was middling warm": [65535, 0], "it was middling warm in": [65535, 0], "was middling warm in school": [65535, 0], "middling warm in school warn't": [65535, 0], "warm in school warn't it": [65535, 0], "in school warn't it yes'm": [65535, 0], "school warn't it yes'm powerful": [65535, 0], "warn't it yes'm powerful warm": [65535, 0], "it yes'm powerful warm warn't": [65535, 0], "yes'm powerful warm warn't it": [65535, 0], "powerful warm warn't it yes'm": [65535, 0], "warm warn't it yes'm didn't": [65535, 0], "warn't it yes'm didn't you": [65535, 0], "it yes'm didn't you want": [65535, 0], "yes'm didn't you want to": [65535, 0], "didn't you want to go": [65535, 0], "you want to go in": [65535, 0], "want to go in a": [65535, 0], "to go in a swimming": [65535, 0], "go in a swimming tom": [65535, 0], "in a swimming tom a": [65535, 0], "a swimming tom a bit": [65535, 0], "swimming tom a bit of": [65535, 0], "tom a bit of a": [65535, 0], "a bit of a scare": [65535, 0], "bit of a scare shot": [65535, 0], "of a scare shot through": [65535, 0], "a scare shot through tom": [65535, 0], "scare shot through tom a": [65535, 0], "shot through tom a touch": [65535, 0], "through tom a touch of": [65535, 0], "tom a touch of uncomfortable": [65535, 0], "a touch of uncomfortable suspicion": [65535, 0], "touch of uncomfortable suspicion he": [65535, 0], "of uncomfortable suspicion he searched": [65535, 0], "uncomfortable suspicion he searched aunt": [65535, 0], "suspicion he searched aunt polly's": [65535, 0], "he searched aunt polly's face": [65535, 0], "searched aunt polly's face but": [65535, 0], "aunt polly's face but it": [65535, 0], "polly's face but it told": [65535, 0], "face but it told him": [65535, 0], "but it told him nothing": [65535, 0], "it told him nothing so": [65535, 0], "told him nothing so he": [65535, 0], "him nothing so he said": [65535, 0], "nothing so he said no'm": [65535, 0], "so he said no'm well": [65535, 0], "he said no'm well not": [65535, 0], "said no'm well not very": [65535, 0], "no'm well not very much": [65535, 0], "well not very much the": [65535, 0], "not very much the old": [65535, 0], "very much the old lady": [65535, 0], "much the old lady reached": [65535, 0], "the old lady reached out": [65535, 0], "old lady reached out her": [65535, 0], "lady reached out her hand": [65535, 0], "reached out her hand and": [65535, 0], "out her hand and felt": [65535, 0], "her hand and felt tom's": [65535, 0], "hand and felt tom's shirt": [65535, 0], "and felt tom's shirt and": [65535, 0], "felt tom's shirt and said": [65535, 0], "tom's shirt and said but": [65535, 0], "shirt and said but you": [65535, 0], "and said but you ain't": [65535, 0], "said but you ain't too": [65535, 0], "but you ain't too warm": [65535, 0], "you ain't too warm now": [65535, 0], "ain't too warm now though": [65535, 0], "too warm now though and": [65535, 0], "warm now though and it": [65535, 0], "now though and it flattered": [65535, 0], "though and it flattered her": [65535, 0], "and it flattered her to": [65535, 0], "it flattered her to reflect": [65535, 0], "flattered her to reflect that": [65535, 0], "her to reflect that she": [65535, 0], "to reflect that she had": [65535, 0], "reflect that she had discovered": [65535, 0], "that she had discovered that": [65535, 0], "she had discovered that the": [65535, 0], "had discovered that the shirt": [65535, 0], "discovered that the shirt was": [65535, 0], "that the shirt was dry": [65535, 0], "the shirt was dry without": [65535, 0], "shirt was dry without anybody": [65535, 0], "was dry without anybody knowing": [65535, 0], "dry without anybody knowing that": [65535, 0], "without anybody knowing that that": [65535, 0], "anybody knowing that that was": [65535, 0], "knowing that that was what": [65535, 0], "that that was what she": [65535, 0], "that was what she had": [65535, 0], "was what she had in": [65535, 0], "what she had in her": [65535, 0], "she had in her mind": [65535, 0], "had in her mind but": [65535, 0], "in her mind but in": [65535, 0], "her mind but in spite": [65535, 0], "mind but in spite of": [65535, 0], "but in spite of her": [65535, 0], "in spite of her tom": [65535, 0], "spite of her tom knew": [65535, 0], "of her tom knew where": [65535, 0], "her tom knew where the": [65535, 0], "tom knew where the wind": [65535, 0], "knew where the wind lay": [65535, 0], "where the wind lay now": [65535, 0], "the wind lay now so": [65535, 0], "wind lay now so he": [65535, 0], "lay now so he forestalled": [65535, 0], "now so he forestalled what": [65535, 0], "so he forestalled what might": [65535, 0], "he forestalled what might be": [65535, 0], "forestalled what might be the": [65535, 0], "what might be the next": [65535, 0], "might be the next move": [65535, 0], "be the next move some": [65535, 0], "the next move some of": [65535, 0], "next move some of us": [65535, 0], "move some of us pumped": [65535, 0], "some of us pumped on": [65535, 0], "of us pumped on our": [65535, 0], "us pumped on our heads": [65535, 0], "pumped on our heads mine's": [65535, 0], "on our heads mine's damp": [65535, 0], "our heads mine's damp yet": [65535, 0], "heads mine's damp yet see": [65535, 0], "mine's damp yet see aunt": [65535, 0], "damp yet see aunt polly": [65535, 0], "yet see aunt polly was": [65535, 0], "see aunt polly was vexed": [65535, 0], "aunt polly was vexed to": [65535, 0], "polly was vexed to think": [65535, 0], "was vexed to think she": [65535, 0], "vexed to think she had": [65535, 0], "to think she had overlooked": [65535, 0], "think she had overlooked that": [65535, 0], "she had overlooked that bit": [65535, 0], "had overlooked that bit of": [65535, 0], "overlooked that bit of circumstantial": [65535, 0], "that bit of circumstantial evidence": [65535, 0], "bit of circumstantial evidence and": [65535, 0], "of circumstantial evidence and missed": [65535, 0], "circumstantial evidence and missed a": [65535, 0], "evidence and missed a trick": [65535, 0], "and missed a trick then": [65535, 0], "missed a trick then she": [65535, 0], "a trick then she had": [65535, 0], "trick then she had a": [65535, 0], "then she had a new": [65535, 0], "she had a new inspiration": [65535, 0], "had a new inspiration tom": [65535, 0], "a new inspiration tom you": [65535, 0], "new inspiration tom you didn't": [65535, 0], "inspiration tom you didn't have": [65535, 0], "tom you didn't have to": [65535, 0], "you didn't have to undo": [65535, 0], "didn't have to undo your": [65535, 0], "have to undo your shirt": [65535, 0], "to undo your shirt collar": [65535, 0], "undo your shirt collar where": [65535, 0], "your shirt collar where i": [65535, 0], "shirt collar where i sewed": [65535, 0], "collar where i sewed it": [65535, 0], "where i sewed it to": [65535, 0], "i sewed it to pump": [65535, 0], "sewed it to pump on": [65535, 0], "it to pump on your": [65535, 0], "to pump on your head": [65535, 0], "pump on your head did": [65535, 0], "on your head did you": [65535, 0], "your head did you unbutton": [65535, 0], "head did you unbutton your": [65535, 0], "did you unbutton your jacket": [65535, 0], "you unbutton your jacket the": [65535, 0], "unbutton your jacket the trouble": [65535, 0], "your jacket the trouble vanished": [65535, 0], "jacket the trouble vanished out": [65535, 0], "the trouble vanished out of": [65535, 0], "trouble vanished out of tom's": [65535, 0], "vanished out of tom's face": [65535, 0], "out of tom's face he": [65535, 0], "of tom's face he opened": [65535, 0], "tom's face he opened his": [65535, 0], "face he opened his jacket": [65535, 0], "he opened his jacket his": [65535, 0], "opened his jacket his shirt": [65535, 0], "his jacket his shirt collar": [65535, 0], "jacket his shirt collar was": [65535, 0], "his shirt collar was securely": [65535, 0], "shirt collar was securely sewed": [65535, 0], "collar was securely sewed bother": [65535, 0], "was securely sewed bother well": [65535, 0], "securely sewed bother well go": [65535, 0], "sewed bother well go 'long": [65535, 0], "bother well go 'long with": [65535, 0], "well go 'long with you": [65535, 0], "go 'long with you i'd": [65535, 0], "'long with you i'd made": [65535, 0], "with you i'd made sure": [65535, 0], "you i'd made sure you'd": [65535, 0], "i'd made sure you'd played": [65535, 0], "made sure you'd played hookey": [65535, 0], "sure you'd played hookey and": [65535, 0], "you'd played hookey and been": [65535, 0], "played hookey and been a": [65535, 0], "hookey and been a swimming": [65535, 0], "and been a swimming but": [65535, 0], "been a swimming but i": [65535, 0], "a swimming but i forgive": [65535, 0], "swimming but i forgive ye": [65535, 0], "but i forgive ye tom": [65535, 0], "i forgive ye tom i": [65535, 0], "forgive ye tom i reckon": [65535, 0], "ye tom i reckon you're": [65535, 0], "tom i reckon you're a": [65535, 0], "i reckon you're a kind": [65535, 0], "reckon you're a kind of": [65535, 0], "you're a kind of a": [65535, 0], "a kind of a singed": [65535, 0], "kind of a singed cat": [65535, 0], "of a singed cat as": [65535, 0], "a singed cat as the": [65535, 0], "singed cat as the saying": [65535, 0], "cat as the saying is": [65535, 0], "as the saying is better'n": [65535, 0], "the saying is better'n you": [65535, 0], "saying is better'n you look": [65535, 0], "is better'n you look this": [65535, 0], "better'n you look this time": [65535, 0], "you look this time she": [65535, 0], "look this time she was": [65535, 0], "this time she was half": [65535, 0], "time she was half sorry": [65535, 0], "she was half sorry her": [65535, 0], "was half sorry her sagacity": [65535, 0], "half sorry her sagacity had": [65535, 0], "sorry her sagacity had miscarried": [65535, 0], "her sagacity had miscarried and": [65535, 0], "sagacity had miscarried and half": [65535, 0], "had miscarried and half glad": [65535, 0], "miscarried and half glad that": [65535, 0], "and half glad that tom": [65535, 0], "half glad that tom had": [65535, 0], "glad that tom had stumbled": [65535, 0], "that tom had stumbled into": [65535, 0], "tom had stumbled into obedient": [65535, 0], "had stumbled into obedient conduct": [65535, 0], "stumbled into obedient conduct for": [65535, 0], "into obedient conduct for once": [65535, 0], "obedient conduct for once but": [65535, 0], "conduct for once but sidney": [65535, 0], "for once but sidney said": [65535, 0], "once but sidney said well": [65535, 0], "but sidney said well now": [65535, 0], "sidney said well now if": [65535, 0], "said well now if i": [65535, 0], "well now if i didn't": [65535, 0], "now if i didn't think": [65535, 0], "if i didn't think you": [65535, 0], "i didn't think you sewed": [65535, 0], "didn't think you sewed his": [65535, 0], "think you sewed his collar": [65535, 0], "you sewed his collar with": [65535, 0], "sewed his collar with white": [65535, 0], "his collar with white thread": [65535, 0], "collar with white thread but": [65535, 0], "with white thread but it's": [65535, 0], "white thread but it's black": [65535, 0], "thread but it's black why": [65535, 0], "but it's black why i": [65535, 0], "it's black why i did": [65535, 0], "black why i did sew": [65535, 0], "why i did sew it": [65535, 0], "i did sew it with": [65535, 0], "did sew it with white": [65535, 0], "sew it with white tom": [65535, 0], "it with white tom but": [65535, 0], "with white tom but tom": [65535, 0], "white tom but tom did": [65535, 0], "tom but tom did not": [65535, 0], "but tom did not wait": [65535, 0], "tom did not wait for": [65535, 0], "did not wait for the": [65535, 0], "not wait for the rest": [65535, 0], "wait for the rest as": [65535, 0], "for the rest as he": [65535, 0], "the rest as he went": [65535, 0], "rest as he went out": [65535, 0], "as he went out at": [65535, 0], "he went out at the": [65535, 0], "went out at the door": [65535, 0], "out at the door he": [65535, 0], "at the door he said": [65535, 0], "the door he said siddy": [65535, 0], "door he said siddy i'll": [65535, 0], "he said siddy i'll lick": [65535, 0], "said siddy i'll lick you": [65535, 0], "siddy i'll lick you for": [65535, 0], "i'll lick you for that": [65535, 0], "lick you for that in": [65535, 0], "you for that in a": [65535, 0], "for that in a safe": [65535, 0], "that in a safe place": [65535, 0], "in a safe place tom": [65535, 0], "a safe place tom examined": [65535, 0], "safe place tom examined two": [65535, 0], "place tom examined two large": [65535, 0], "tom examined two large needles": [65535, 0], "examined two large needles which": [65535, 0], "two large needles which were": [65535, 0], "large needles which were thrust": [65535, 0], "needles which were thrust into": [65535, 0], "which were thrust into the": [65535, 0], "were thrust into the lapels": [65535, 0], "thrust into the lapels of": [65535, 0], "into the lapels of his": [65535, 0], "the lapels of his jacket": [65535, 0], "lapels of his jacket and": [65535, 0], "of his jacket and had": [65535, 0], "his jacket and had thread": [65535, 0], "jacket and had thread bound": [65535, 0], "and had thread bound about": [65535, 0], "had thread bound about them": [65535, 0], "thread bound about them one": [65535, 0], "bound about them one needle": [65535, 0], "about them one needle carried": [65535, 0], "them one needle carried white": [65535, 0], "one needle carried white thread": [65535, 0], "needle carried white thread and": [65535, 0], "carried white thread and the": [65535, 0], "white thread and the other": [65535, 0], "thread and the other black": [65535, 0], "and the other black he": [65535, 0], "the other black he said": [65535, 0], "other black he said she'd": [65535, 0], "black he said she'd never": [65535, 0], "he said she'd never noticed": [65535, 0], "said she'd never noticed if": [65535, 0], "she'd never noticed if it": [65535, 0], "never noticed if it hadn't": [65535, 0], "noticed if it hadn't been": [65535, 0], "if it hadn't been for": [65535, 0], "it hadn't been for sid": [65535, 0], "hadn't been for sid confound": [65535, 0], "been for sid confound it": [65535, 0], "for sid confound it sometimes": [65535, 0], "sid confound it sometimes she": [65535, 0], "confound it sometimes she sews": [65535, 0], "it sometimes she sews it": [65535, 0], "sometimes she sews it with": [65535, 0], "she sews it with white": [65535, 0], "sews it with white and": [65535, 0], "it with white and sometimes": [65535, 0], "with white and sometimes she": [65535, 0], "white and sometimes she sews": [65535, 0], "and sometimes she sews it": [65535, 0], "she sews it with black": [65535, 0], "sews it with black i": [65535, 0], "it with black i wish": [65535, 0], "with black i wish to": [65535, 0], "black i wish to geeminy": [65535, 0], "i wish to geeminy she'd": [65535, 0], "wish to geeminy she'd stick": [65535, 0], "to geeminy she'd stick to": [65535, 0], "geeminy she'd stick to one": [65535, 0], "she'd stick to one or": [65535, 0], "stick to one or t'other": [65535, 0], "to one or t'other i": [65535, 0], "one or t'other i can't": [65535, 0], "or t'other i can't keep": [65535, 0], "t'other i can't keep the": [65535, 0], "i can't keep the run": [65535, 0], "can't keep the run of": [65535, 0], "keep the run of 'em": [65535, 0], "the run of 'em but": [65535, 0], "run of 'em but i": [65535, 0], "of 'em but i bet": [65535, 0], "'em but i bet you": [65535, 0], "but i bet you i'll": [65535, 0], "i bet you i'll lam": [65535, 0], "bet you i'll lam sid": [65535, 0], "you i'll lam sid for": [65535, 0], "i'll lam sid for that": [65535, 0], "lam sid for that i'll": [65535, 0], "sid for that i'll learn": [65535, 0], "for that i'll learn him": [65535, 0], "that i'll learn him he": [65535, 0], "i'll learn him he was": [65535, 0], "learn him he was not": [65535, 0], "him he was not the": [65535, 0], "he was not the model": [65535, 0], "was not the model boy": [65535, 0], "not the model boy of": [65535, 0], "the model boy of the": [65535, 0], "model boy of the village": [65535, 0], "boy of the village he": [65535, 0], "of the village he knew": [65535, 0], "the village he knew the": [65535, 0], "village he knew the model": [65535, 0], "he knew the model boy": [65535, 0], "knew the model boy very": [65535, 0], "the model boy very well": [65535, 0], "model boy very well though": [65535, 0], "boy very well though and": [65535, 0], "very well though and loathed": [65535, 0], "well though and loathed him": [65535, 0], "though and loathed him within": [65535, 0], "and loathed him within two": [65535, 0], "loathed him within two minutes": [65535, 0], "him within two minutes or": [65535, 0], "within two minutes or even": [65535, 0], "two minutes or even less": [65535, 0], "minutes or even less he": [65535, 0], "or even less he had": [65535, 0], "even less he had forgotten": [65535, 0], "less he had forgotten all": [65535, 0], "he had forgotten all his": [65535, 0], "had forgotten all his troubles": [65535, 0], "forgotten all his troubles not": [65535, 0], "all his troubles not because": [65535, 0], "his troubles not because his": [65535, 0], "troubles not because his troubles": [65535, 0], "not because his troubles were": [65535, 0], "because his troubles were one": [65535, 0], "his troubles were one whit": [65535, 0], "troubles were one whit less": [65535, 0], "were one whit less heavy": [65535, 0], "one whit less heavy and": [65535, 0], "whit less heavy and bitter": [65535, 0], "less heavy and bitter to": [65535, 0], "heavy and bitter to him": [65535, 0], "and bitter to him than": [65535, 0], "bitter to him than a": [65535, 0], "to him than a man's": [65535, 0], "him than a man's are": [65535, 0], "than a man's are to": [65535, 0], "a man's are to a": [65535, 0], "man's are to a man": [65535, 0], "are to a man but": [65535, 0], "to a man but because": [65535, 0], "a man but because a": [65535, 0], "man but because a new": [65535, 0], "but because a new and": [65535, 0], "because a new and powerful": [65535, 0], "a new and powerful interest": [65535, 0], "new and powerful interest bore": [65535, 0], "and powerful interest bore them": [65535, 0], "powerful interest bore them down": [65535, 0], "interest bore them down and": [65535, 0], "bore them down and drove": [65535, 0], "them down and drove them": [65535, 0], "down and drove them out": [65535, 0], "and drove them out of": [65535, 0], "drove them out of his": [65535, 0], "them out of his mind": [65535, 0], "out of his mind for": [65535, 0], "of his mind for the": [65535, 0], "his mind for the time": [65535, 0], "mind for the time just": [65535, 0], "for the time just as": [65535, 0], "the time just as men's": [65535, 0], "time just as men's misfortunes": [65535, 0], "just as men's misfortunes are": [65535, 0], "as men's misfortunes are forgotten": [65535, 0], "men's misfortunes are forgotten in": [65535, 0], "misfortunes are forgotten in the": [65535, 0], "are forgotten in the excitement": [65535, 0], "forgotten in the excitement of": [65535, 0], "in the excitement of new": [65535, 0], "the excitement of new enterprises": [65535, 0], "excitement of new enterprises this": [65535, 0], "of new enterprises this new": [65535, 0], "new enterprises this new interest": [65535, 0], "enterprises this new interest was": [65535, 0], "this new interest was a": [65535, 0], "new interest was a valued": [65535, 0], "interest was a valued novelty": [65535, 0], "was a valued novelty in": [65535, 0], "a valued novelty in whistling": [65535, 0], "valued novelty in whistling which": [65535, 0], "novelty in whistling which he": [65535, 0], "in whistling which he had": [65535, 0], "whistling which he had just": [65535, 0], "which he had just acquired": [65535, 0], "he had just acquired from": [65535, 0], "had just acquired from a": [65535, 0], "just acquired from a negro": [65535, 0], "acquired from a negro and": [65535, 0], "from a negro and he": [65535, 0], "a negro and he was": [65535, 0], "negro and he was suffering": [65535, 0], "and he was suffering to": [65535, 0], "he was suffering to practise": [65535, 0], "was suffering to practise it": [65535, 0], "suffering to practise it undisturbed": [65535, 0], "to practise it undisturbed it": [65535, 0], "practise it undisturbed it consisted": [65535, 0], "it undisturbed it consisted in": [65535, 0], "undisturbed it consisted in a": [65535, 0], "it consisted in a peculiar": [65535, 0], "consisted in a peculiar bird": [65535, 0], "in a peculiar bird like": [65535, 0], "a peculiar bird like turn": [65535, 0], "peculiar bird like turn a": [65535, 0], "bird like turn a sort": [65535, 0], "like turn a sort of": [65535, 0], "turn a sort of liquid": [65535, 0], "a sort of liquid warble": [65535, 0], "sort of liquid warble produced": [65535, 0], "of liquid warble produced by": [65535, 0], "liquid warble produced by touching": [65535, 0], "warble produced by touching the": [65535, 0], "produced by touching the tongue": [65535, 0], "by touching the tongue to": [65535, 0], "touching the tongue to the": [65535, 0], "the tongue to the roof": [65535, 0], "tongue to the roof of": [65535, 0], "to the roof of the": [65535, 0], "the roof of the mouth": [65535, 0], "roof of the mouth at": [65535, 0], "of the mouth at short": [65535, 0], "the mouth at short intervals": [65535, 0], "mouth at short intervals in": [65535, 0], "at short intervals in the": [65535, 0], "short intervals in the midst": [65535, 0], "intervals in the midst of": [65535, 0], "the midst of the music": [65535, 0], "midst of the music the": [65535, 0], "of the music the reader": [65535, 0], "the music the reader probably": [65535, 0], "music the reader probably remembers": [65535, 0], "the reader probably remembers how": [65535, 0], "reader probably remembers how to": [65535, 0], "probably remembers how to do": [65535, 0], "remembers how to do it": [65535, 0], "how to do it if": [65535, 0], "to do it if he": [65535, 0], "do it if he has": [65535, 0], "it if he has ever": [65535, 0], "if he has ever been": [65535, 0], "he has ever been a": [65535, 0], "has ever been a boy": [65535, 0], "ever been a boy diligence": [65535, 0], "been a boy diligence and": [65535, 0], "a boy diligence and attention": [65535, 0], "boy diligence and attention soon": [65535, 0], "diligence and attention soon gave": [65535, 0], "and attention soon gave him": [65535, 0], "attention soon gave him the": [65535, 0], "soon gave him the knack": [65535, 0], "gave him the knack of": [65535, 0], "him the knack of it": [65535, 0], "the knack of it and": [65535, 0], "knack of it and he": [65535, 0], "of it and he strode": [65535, 0], "it and he strode down": [65535, 0], "and he strode down the": [65535, 0], "he strode down the street": [65535, 0], "strode down the street with": [65535, 0], "the street with his mouth": [65535, 0], "street with his mouth full": [65535, 0], "with his mouth full of": [65535, 0], "his mouth full of harmony": [65535, 0], "mouth full of harmony and": [65535, 0], "full of harmony and his": [65535, 0], "of harmony and his soul": [65535, 0], "harmony and his soul full": [65535, 0], "and his soul full of": [65535, 0], "his soul full of gratitude": [65535, 0], "soul full of gratitude he": [65535, 0], "full of gratitude he felt": [65535, 0], "of gratitude he felt much": [65535, 0], "gratitude he felt much as": [65535, 0], "he felt much as an": [65535, 0], "felt much as an astronomer": [65535, 0], "much as an astronomer feels": [65535, 0], "as an astronomer feels who": [65535, 0], "an astronomer feels who has": [65535, 0], "astronomer feels who has discovered": [65535, 0], "feels who has discovered a": [65535, 0], "who has discovered a new": [65535, 0], "has discovered a new planet": [65535, 0], "discovered a new planet no": [65535, 0], "a new planet no doubt": [65535, 0], "new planet no doubt as": [65535, 0], "planet no doubt as far": [65535, 0], "no doubt as far as": [65535, 0], "doubt as far as strong": [65535, 0], "as far as strong deep": [65535, 0], "far as strong deep unalloyed": [65535, 0], "as strong deep unalloyed pleasure": [65535, 0], "strong deep unalloyed pleasure is": [65535, 0], "deep unalloyed pleasure is concerned": [65535, 0], "unalloyed pleasure is concerned the": [65535, 0], "pleasure is concerned the advantage": [65535, 0], "is concerned the advantage was": [65535, 0], "concerned the advantage was with": [65535, 0], "the advantage was with the": [65535, 0], "advantage was with the boy": [65535, 0], "was with the boy not": [65535, 0], "with the boy not the": [65535, 0], "the boy not the astronomer": [65535, 0], "boy not the astronomer the": [65535, 0], "not the astronomer the summer": [65535, 0], "the astronomer the summer evenings": [65535, 0], "astronomer the summer evenings were": [65535, 0], "the summer evenings were long": [65535, 0], "summer evenings were long it": [65535, 0], "evenings were long it was": [65535, 0], "were long it was not": [65535, 0], "long it was not dark": [65535, 0], "it was not dark yet": [65535, 0], "was not dark yet presently": [65535, 0], "not dark yet presently tom": [65535, 0], "dark yet presently tom checked": [65535, 0], "yet presently tom checked his": [65535, 0], "presently tom checked his whistle": [65535, 0], "tom checked his whistle a": [65535, 0], "checked his whistle a stranger": [65535, 0], "his whistle a stranger was": [65535, 0], "whistle a stranger was before": [65535, 0], "a stranger was before him": [65535, 0], "stranger was before him a": [65535, 0], "was before him a boy": [65535, 0], "before him a boy a": [65535, 0], "him a boy a shade": [65535, 0], "a boy a shade larger": [65535, 0], "boy a shade larger than": [65535, 0], "a shade larger than himself": [65535, 0], "shade larger than himself a": [65535, 0], "larger than himself a new": [65535, 0], "than himself a new comer": [65535, 0], "himself a new comer of": [65535, 0], "a new comer of any": [65535, 0], "new comer of any age": [65535, 0], "comer of any age or": [65535, 0], "of any age or either": [65535, 0], "any age or either sex": [65535, 0], "age or either sex was": [65535, 0], "or either sex was an": [65535, 0], "either sex was an impressive": [65535, 0], "sex was an impressive curiosity": [65535, 0], "was an impressive curiosity in": [65535, 0], "an impressive curiosity in the": [65535, 0], "impressive curiosity in the poor": [65535, 0], "curiosity in the poor little": [65535, 0], "in the poor little shabby": [65535, 0], "the poor little shabby village": [65535, 0], "poor little shabby village of": [65535, 0], "little shabby village of st": [65535, 0], "shabby village of st petersburg": [65535, 0], "village of st petersburg this": [65535, 0], "of st petersburg this boy": [65535, 0], "st petersburg this boy was": [65535, 0], "petersburg this boy was well": [65535, 0], "this boy was well dressed": [65535, 0], "boy was well dressed too": [65535, 0], "was well dressed too well": [65535, 0], "well dressed too well dressed": [65535, 0], "dressed too well dressed on": [65535, 0], "too well dressed on a": [65535, 0], "well dressed on a week": [65535, 0], "dressed on a week day": [65535, 0], "on a week day this": [65535, 0], "a week day this was": [65535, 0], "week day this was simply": [65535, 0], "day this was simply astounding": [65535, 0], "this was simply astounding his": [65535, 0], "was simply astounding his cap": [65535, 0], "simply astounding his cap was": [65535, 0], "astounding his cap was a": [65535, 0], "his cap was a dainty": [65535, 0], "cap was a dainty thing": [65535, 0], "was a dainty thing his": [65535, 0], "a dainty thing his closebuttoned": [65535, 0], "dainty thing his closebuttoned blue": [65535, 0], "thing his closebuttoned blue cloth": [65535, 0], "his closebuttoned blue cloth roundabout": [65535, 0], "closebuttoned blue cloth roundabout was": [65535, 0], "blue cloth roundabout was new": [65535, 0], "cloth roundabout was new and": [65535, 0], "roundabout was new and natty": [65535, 0], "was new and natty and": [65535, 0], "new and natty and so": [65535, 0], "and natty and so were": [65535, 0], "natty and so were his": [65535, 0], "and so were his pantaloons": [65535, 0], "so were his pantaloons he": [65535, 0], "were his pantaloons he had": [65535, 0], "his pantaloons he had shoes": [65535, 0], "pantaloons he had shoes on": [65535, 0], "he had shoes on and": [65535, 0], "had shoes on and it": [65535, 0], "shoes on and it was": [65535, 0], "on and it was only": [65535, 0], "and it was only friday": [65535, 0], "it was only friday he": [65535, 0], "was only friday he even": [65535, 0], "only friday he even wore": [65535, 0], "friday he even wore a": [65535, 0], "he even wore a necktie": [65535, 0], "even wore a necktie a": [65535, 0], "wore a necktie a bright": [65535, 0], "a necktie a bright bit": [65535, 0], "necktie a bright bit of": [65535, 0], "a bright bit of ribbon": [65535, 0], "bright bit of ribbon he": [65535, 0], "bit of ribbon he had": [65535, 0], "of ribbon he had a": [65535, 0], "ribbon he had a citified": [65535, 0], "he had a citified air": [65535, 0], "had a citified air about": [65535, 0], "a citified air about him": [65535, 0], "citified air about him that": [65535, 0], "air about him that ate": [65535, 0], "about him that ate into": [65535, 0], "him that ate into tom's": [65535, 0], "that ate into tom's vitals": [65535, 0], "ate into tom's vitals the": [65535, 0], "into tom's vitals the more": [65535, 0], "tom's vitals the more tom": [65535, 0], "vitals the more tom stared": [65535, 0], "the more tom stared at": [65535, 0], "more tom stared at the": [65535, 0], "tom stared at the splendid": [65535, 0], "stared at the splendid marvel": [65535, 0], "at the splendid marvel the": [65535, 0], "the splendid marvel the higher": [65535, 0], "splendid marvel the higher he": [65535, 0], "marvel the higher he turned": [65535, 0], "the higher he turned up": [65535, 0], "higher he turned up his": [65535, 0], "he turned up his nose": [65535, 0], "turned up his nose at": [65535, 0], "up his nose at his": [65535, 0], "his nose at his finery": [65535, 0], "nose at his finery and": [65535, 0], "at his finery and the": [65535, 0], "his finery and the shabbier": [65535, 0], "finery and the shabbier and": [65535, 0], "and the shabbier and shabbier": [65535, 0], "the shabbier and shabbier his": [65535, 0], "shabbier and shabbier his own": [65535, 0], "and shabbier his own outfit": [65535, 0], "shabbier his own outfit seemed": [65535, 0], "his own outfit seemed to": [65535, 0], "own outfit seemed to him": [65535, 0], "outfit seemed to him to": [65535, 0], "seemed to him to grow": [65535, 0], "to him to grow neither": [65535, 0], "him to grow neither boy": [65535, 0], "to grow neither boy spoke": [65535, 0], "grow neither boy spoke if": [65535, 0], "neither boy spoke if one": [65535, 0], "boy spoke if one moved": [65535, 0], "spoke if one moved the": [65535, 0], "if one moved the other": [65535, 0], "one moved the other moved": [65535, 0], "moved the other moved but": [65535, 0], "the other moved but only": [65535, 0], "other moved but only sidewise": [65535, 0], "moved but only sidewise in": [65535, 0], "but only sidewise in a": [65535, 0], "only sidewise in a circle": [65535, 0], "sidewise in a circle they": [65535, 0], "in a circle they kept": [65535, 0], "a circle they kept face": [65535, 0], "circle they kept face to": [65535, 0], "they kept face to face": [65535, 0], "kept face to face and": [65535, 0], "face to face and eye": [65535, 0], "to face and eye to": [65535, 0], "face and eye to eye": [65535, 0], "and eye to eye all": [65535, 0], "eye to eye all the": [65535, 0], "to eye all the time": [65535, 0], "eye all the time finally": [65535, 0], "all the time finally tom": [65535, 0], "the time finally tom said": [65535, 0], "time finally tom said i": [65535, 0], "finally tom said i can": [65535, 0], "tom said i can lick": [65535, 0], "said i can lick you": [65535, 0], "i can lick you i'd": [65535, 0], "can lick you i'd like": [65535, 0], "lick you i'd like to": [65535, 0], "you i'd like to see": [65535, 0], "i'd like to see you": [65535, 0], "like to see you try": [65535, 0], "to see you try it": [65535, 0], "see you try it well": [65535, 0], "you try it well i": [65535, 0], "try it well i can": [65535, 0], "it well i can do": [65535, 0], "well i can do it": [65535, 0], "i can do it no": [65535, 0], "can do it no you": [65535, 0], "do it no you can't": [65535, 0], "it no you can't either": [65535, 0], "no you can't either yes": [65535, 0], "you can't either yes i": [65535, 0], "can't either yes i can": [65535, 0], "either yes i can no": [65535, 0], "yes i can no you": [65535, 0], "i can no you can't": [65535, 0], "can no you can't i": [65535, 0], "no you can't i can": [65535, 0], "you can't i can you": [65535, 0], "can't i can you can't": [65535, 0], "i can you can't can": [65535, 0], "can you can't can can't": [65535, 0], "you can't can can't an": [65535, 0], "can't can can't an uncomfortable": [65535, 0], "can can't an uncomfortable pause": [65535, 0], "can't an uncomfortable pause then": [65535, 0], "an uncomfortable pause then tom": [65535, 0], "uncomfortable pause then tom said": [65535, 0], "pause then tom said what's": [65535, 0], "then tom said what's your": [65535, 0], "tom said what's your name": [65535, 0], "said what's your name 'tisn't": [65535, 0], "what's your name 'tisn't any": [65535, 0], "your name 'tisn't any of": [65535, 0], "name 'tisn't any of your": [65535, 0], "'tisn't any of your business": [65535, 0], "any of your business maybe": [65535, 0], "of your business maybe well": [65535, 0], "your business maybe well i": [65535, 0], "business maybe well i 'low": [65535, 0], "maybe well i 'low i'll": [65535, 0], "well i 'low i'll make": [65535, 0], "i 'low i'll make it": [65535, 0], "'low i'll make it my": [65535, 0], "i'll make it my business": [65535, 0], "make it my business well": [65535, 0], "it my business well why": [65535, 0], "my business well why don't": [65535, 0], "business well why don't you": [65535, 0], "well why don't you if": [65535, 0], "why don't you if you": [65535, 0], "don't you if you say": [65535, 0], "you if you say much": [65535, 0], "if you say much i": [65535, 0], "you say much i will": [65535, 0], "say much i will much": [65535, 0], "much i will much much": [65535, 0], "i will much much much": [65535, 0], "will much much much there": [65535, 0], "much much much there now": [65535, 0], "much much there now oh": [65535, 0], "much there now oh you": [65535, 0], "there now oh you think": [65535, 0], "now oh you think you're": [65535, 0], "oh you think you're mighty": [65535, 0], "you think you're mighty smart": [65535, 0], "think you're mighty smart don't": [65535, 0], "you're mighty smart don't you": [65535, 0], "mighty smart don't you i": [65535, 0], "smart don't you i could": [65535, 0], "don't you i could lick": [65535, 0], "you i could lick you": [65535, 0], "i could lick you with": [65535, 0], "could lick you with one": [65535, 0], "lick you with one hand": [65535, 0], "you with one hand tied": [65535, 0], "with one hand tied behind": [65535, 0], "one hand tied behind me": [65535, 0], "hand tied behind me if": [65535, 0], "tied behind me if i": [65535, 0], "behind me if i wanted": [65535, 0], "me if i wanted to": [65535, 0], "well why don't you do": [65535, 0], "why don't you do it": [65535, 0], "don't you do it you": [65535, 0], "you do it you say": [65535, 0], "do it you say you": [65535, 0], "it you say you can": [65535, 0], "you say you can do": [65535, 0], "say you can do it": [65535, 0], "you can do it well": [65535, 0], "can do it well i": [65535, 0], "do it well i will": [65535, 0], "it well i will if": [65535, 0], "well i will if you": [65535, 0], "i will if you fool": [65535, 0], "will if you fool with": [65535, 0], "if you fool with me": [65535, 0], "you fool with me oh": [65535, 0], "fool with me oh yes": [65535, 0], "with me oh yes i've": [65535, 0], "me oh yes i've seen": [65535, 0], "oh yes i've seen whole": [65535, 0], "yes i've seen whole families": [65535, 0], "i've seen whole families in": [65535, 0], "seen whole families in the": [65535, 0], "whole families in the same": [65535, 0], "families in the same fix": [65535, 0], "in the same fix smarty": [65535, 0], "the same fix smarty you": [65535, 0], "same fix smarty you think": [65535, 0], "fix smarty you think you're": [65535, 0], "smarty you think you're some": [65535, 0], "you think you're some now": [65535, 0], "think you're some now don't": [65535, 0], "you're some now don't you": [65535, 0], "some now don't you oh": [65535, 0], "now don't you oh what": [65535, 0], "don't you oh what a": [65535, 0], "you oh what a hat": [65535, 0], "oh what a hat you": [65535, 0], "what a hat you can": [65535, 0], "a hat you can lump": [65535, 0], "hat you can lump that": [65535, 0], "you can lump that hat": [65535, 0], "can lump that hat if": [65535, 0], "lump that hat if you": [65535, 0], "that hat if you don't": [65535, 0], "hat if you don't like": [65535, 0], "if you don't like it": [65535, 0], "you don't like it i": [65535, 0], "don't like it i dare": [65535, 0], "like it i dare you": [65535, 0], "it i dare you to": [65535, 0], "i dare you to knock": [65535, 0], "dare you to knock it": [65535, 0], "you to knock it off": [65535, 0], "to knock it off and": [65535, 0], "knock it off and anybody": [65535, 0], "it off and anybody that'll": [65535, 0], "off and anybody that'll take": [65535, 0], "and anybody that'll take a": [65535, 0], "anybody that'll take a dare": [65535, 0], "that'll take a dare will": [65535, 0], "take a dare will suck": [65535, 0], "a dare will suck eggs": [65535, 0], "dare will suck eggs you're": [65535, 0], "will suck eggs you're a": [65535, 0], "suck eggs you're a liar": [65535, 0], "eggs you're a liar you're": [65535, 0], "you're a liar you're another": [65535, 0], "a liar you're another you're": [65535, 0], "liar you're another you're a": [65535, 0], "you're another you're a fighting": [65535, 0], "another you're a fighting liar": [65535, 0], "you're a fighting liar and": [65535, 0], "a fighting liar and dasn't": [65535, 0], "fighting liar and dasn't take": [65535, 0], "liar and dasn't take it": [65535, 0], "and dasn't take it up": [65535, 0], "dasn't take it up aw": [65535, 0], "take it up aw take": [65535, 0], "it up aw take a": [65535, 0], "up aw take a walk": [65535, 0], "aw take a walk say": [65535, 0], "take a walk say if": [65535, 0], "a walk say if you": [65535, 0], "walk say if you give": [65535, 0], "say if you give me": [65535, 0], "if you give me much": [65535, 0], "you give me much more": [65535, 0], "give me much more of": [65535, 0], "me much more of your": [65535, 0], "much more of your sass": [65535, 0], "more of your sass i'll": [65535, 0], "of your sass i'll take": [65535, 0], "your sass i'll take and": [65535, 0], "sass i'll take and bounce": [65535, 0], "i'll take and bounce a": [65535, 0], "take and bounce a rock": [65535, 0], "and bounce a rock off'n": [65535, 0], "bounce a rock off'n your": [65535, 0], "a rock off'n your head": [65535, 0], "rock off'n your head oh": [65535, 0], "off'n your head oh of": [65535, 0], "your head oh of course": [65535, 0], "head oh of course you": [65535, 0], "oh of course you will": [65535, 0], "of course you will well": [65535, 0], "course you will well i": [65535, 0], "you will well i will": [65535, 0], "will well i will well": [65535, 0], "well i will well why": [65535, 0], "i will well why don't": [65535, 0], "will well why don't you": [65535, 0], "don't you do it then": [65535, 0], "you do it then what": [65535, 0], "do it then what do": [65535, 0], "it then what do you": [65535, 0], "then what do you keep": [65535, 0], "what do you keep saying": [65535, 0], "do you keep saying you": [65535, 0], "you keep saying you will": [65535, 0], "keep saying you will for": [65535, 0], "saying you will for why": [65535, 0], "you will for why don't": [65535, 0], "will for why don't you": [65535, 0], "for why don't you do": [65535, 0], "don't you do it it's": [65535, 0], "you do it it's because": [65535, 0], "do it it's because you're": [65535, 0], "it it's because you're afraid": [65535, 0], "it's because you're afraid i": [65535, 0], "because you're afraid i ain't": [65535, 0], "you're afraid i ain't afraid": [65535, 0], "afraid i ain't afraid you": [65535, 0], "i ain't afraid you are": [65535, 0], "ain't afraid you are i": [65535, 0], "afraid you are i ain't": [65535, 0], "you are i ain't you": [65535, 0], "are i ain't you are": [65535, 0], "i ain't you are another": [65535, 0], "ain't you are another pause": [65535, 0], "you are another pause and": [65535, 0], "are another pause and more": [65535, 0], "another pause and more eying": [65535, 0], "pause and more eying and": [65535, 0], "and more eying and sidling": [65535, 0], "more eying and sidling around": [65535, 0], "eying and sidling around each": [65535, 0], "and sidling around each other": [65535, 0], "sidling around each other presently": [65535, 0], "around each other presently they": [65535, 0], "each other presently they were": [65535, 0], "other presently they were shoulder": [65535, 0], "presently they were shoulder to": [65535, 0], "they were shoulder to shoulder": [65535, 0], "were shoulder to shoulder tom": [65535, 0], "shoulder to shoulder tom said": [65535, 0], "to shoulder tom said get": [65535, 0], "shoulder tom said get away": [65535, 0], "tom said get away from": [65535, 0], "said get away from here": [65535, 0], "get away from here go": [65535, 0], "away from here go away": [65535, 0], "from here go away yourself": [65535, 0], "here go away yourself i": [65535, 0], "go away yourself i won't": [65535, 0], "away yourself i won't i": [65535, 0], "yourself i won't i won't": [65535, 0], "i won't i won't either": [65535, 0], "won't i won't either so": [65535, 0], "i won't either so they": [65535, 0], "won't either so they stood": [65535, 0], "either so they stood each": [65535, 0], "so they stood each with": [65535, 0], "they stood each with a": [65535, 0], "stood each with a foot": [65535, 0], "each with a foot placed": [65535, 0], "with a foot placed at": [65535, 0], "a foot placed at an": [65535, 0], "foot placed at an angle": [65535, 0], "placed at an angle as": [65535, 0], "at an angle as a": [65535, 0], "an angle as a brace": [65535, 0], "angle as a brace and": [65535, 0], "as a brace and both": [65535, 0], "a brace and both shoving": [65535, 0], "brace and both shoving with": [65535, 0], "and both shoving with might": [65535, 0], "both shoving with might and": [65535, 0], "shoving with might and main": [65535, 0], "with might and main and": [65535, 0], "might and main and glowering": [65535, 0], "and main and glowering at": [65535, 0], "main and glowering at each": [65535, 0], "and glowering at each other": [65535, 0], "glowering at each other with": [65535, 0], "at each other with hate": [65535, 0], "each other with hate but": [65535, 0], "other with hate but neither": [65535, 0], "with hate but neither could": [65535, 0], "hate but neither could get": [65535, 0], "but neither could get an": [65535, 0], "neither could get an advantage": [65535, 0], "could get an advantage after": [65535, 0], "get an advantage after struggling": [65535, 0], "an advantage after struggling till": [65535, 0], "advantage after struggling till both": [65535, 0], "after struggling till both were": [65535, 0], "struggling till both were hot": [65535, 0], "till both were hot and": [65535, 0], "both were hot and flushed": [65535, 0], "were hot and flushed each": [65535, 0], "hot and flushed each relaxed": [65535, 0], "and flushed each relaxed his": [65535, 0], "flushed each relaxed his strain": [65535, 0], "each relaxed his strain with": [65535, 0], "relaxed his strain with watchful": [65535, 0], "his strain with watchful caution": [65535, 0], "strain with watchful caution and": [65535, 0], "with watchful caution and tom": [65535, 0], "watchful caution and tom said": [65535, 0], "caution and tom said you're": [65535, 0], "and tom said you're a": [65535, 0], "tom said you're a coward": [65535, 0], "said you're a coward and": [65535, 0], "you're a coward and a": [65535, 0], "a coward and a pup": [65535, 0], "coward and a pup i'll": [65535, 0], "and a pup i'll tell": [65535, 0], "a pup i'll tell my": [65535, 0], "pup i'll tell my big": [65535, 0], "i'll tell my big brother": [65535, 0], "tell my big brother on": [65535, 0], "my big brother on you": [65535, 0], "big brother on you and": [65535, 0], "brother on you and he": [65535, 0], "on you and he can": [65535, 0], "you and he can thrash": [65535, 0], "and he can thrash you": [65535, 0], "he can thrash you with": [65535, 0], "can thrash you with his": [65535, 0], "thrash you with his little": [65535, 0], "you with his little finger": [65535, 0], "with his little finger and": [65535, 0], "his little finger and i'll": [65535, 0], "little finger and i'll make": [65535, 0], "finger and i'll make him": [65535, 0], "and i'll make him do": [65535, 0], "i'll make him do it": [65535, 0], "make him do it too": [65535, 0], "him do it too what": [65535, 0], "do it too what do": [65535, 0], "it too what do i": [65535, 0], "too what do i care": [65535, 0], "what do i care for": [65535, 0], "do i care for your": [65535, 0], "i care for your big": [65535, 0], "care for your big brother": [65535, 0], "for your big brother i've": [65535, 0], "your big brother i've got": [65535, 0], "big brother i've got a": [65535, 0], "brother i've got a brother": [65535, 0], "i've got a brother that's": [65535, 0], "got a brother that's bigger": [65535, 0], "a brother that's bigger than": [65535, 0], "brother that's bigger than he": [65535, 0], "that's bigger than he is": [65535, 0], "bigger than he is and": [65535, 0], "than he is and what's": [65535, 0], "he is and what's more": [65535, 0], "is and what's more he": [65535, 0], "and what's more he can": [65535, 0], "what's more he can throw": [65535, 0], "more he can throw him": [65535, 0], "he can throw him over": [65535, 0], "can throw him over that": [65535, 0], "throw him over that fence": [65535, 0], "him over that fence too": [65535, 0], "over that fence too both": [65535, 0], "that fence too both brothers": [65535, 0], "fence too both brothers were": [65535, 0], "too both brothers were imaginary": [65535, 0], "both brothers were imaginary that's": [65535, 0], "brothers were imaginary that's a": [65535, 0], "were imaginary that's a lie": [65535, 0], "imaginary that's a lie your": [65535, 0], "that's a lie your saying": [65535, 0], "a lie your saying so": [65535, 0], "lie your saying so don't": [65535, 0], "your saying so don't make": [65535, 0], "saying so don't make it": [65535, 0], "so don't make it so": [65535, 0], "don't make it so tom": [65535, 0], "make it so tom drew": [65535, 0], "it so tom drew a": [65535, 0], "so tom drew a line": [65535, 0], "tom drew a line in": [65535, 0], "drew a line in the": [65535, 0], "a line in the dust": [65535, 0], "line in the dust with": [65535, 0], "in the dust with his": [65535, 0], "the dust with his big": [65535, 0], "dust with his big toe": [65535, 0], "with his big toe and": [65535, 0], "his big toe and said": [65535, 0], "big toe and said i": [65535, 0], "toe and said i dare": [65535, 0], "and said i dare you": [65535, 0], "said i dare you to": [65535, 0], "i dare you to step": [65535, 0], "dare you to step over": [65535, 0], "you to step over that": [65535, 0], "to step over that and": [65535, 0], "step over that and i'll": [65535, 0], "over that and i'll lick": [65535, 0], "that and i'll lick you": [65535, 0], "and i'll lick you till": [65535, 0], "i'll lick you till you": [65535, 0], "lick you till you can't": [65535, 0], "you till you can't stand": [65535, 0], "till you can't stand up": [65535, 0], "you can't stand up anybody": [65535, 0], "can't stand up anybody that'll": [65535, 0], "stand up anybody that'll take": [65535, 0], "up anybody that'll take a": [65535, 0], "take a dare will steal": [65535, 0], "a dare will steal sheep": [65535, 0], "dare will steal sheep the": [65535, 0], "will steal sheep the new": [65535, 0], "steal sheep the new boy": [65535, 0], "sheep the new boy stepped": [65535, 0], "the new boy stepped over": [65535, 0], "new boy stepped over promptly": [65535, 0], "boy stepped over promptly and": [65535, 0], "stepped over promptly and said": [65535, 0], "over promptly and said now": [65535, 0], "promptly and said now you": [65535, 0], "and said now you said": [65535, 0], "said now you said you'd": [65535, 0], "now you said you'd do": [65535, 0], "you said you'd do it": [65535, 0], "said you'd do it now": [65535, 0], "you'd do it now let's": [65535, 0], "do it now let's see": [65535, 0], "it now let's see you": [65535, 0], "now let's see you do": [65535, 0], "let's see you do it": [65535, 0], "see you do it don't": [65535, 0], "you do it don't you": [65535, 0], "do it don't you crowd": [65535, 0], "it don't you crowd me": [65535, 0], "don't you crowd me now": [65535, 0], "you crowd me now you": [65535, 0], "crowd me now you better": [65535, 0], "me now you better look": [65535, 0], "now you better look out": [65535, 0], "you better look out well": [65535, 0], "better look out well you": [65535, 0], "look out well you said": [65535, 0], "out well you said you'd": [65535, 0], "well you said you'd do": [65535, 0], "said you'd do it why": [65535, 0], "you'd do it why don't": [65535, 0], "do it why don't you": [65535, 0], "it why don't you do": [65535, 0], "don't you do it by": [65535, 0], "you do it by jingo": [65535, 0], "do it by jingo for": [65535, 0], "it by jingo for two": [65535, 0], "by jingo for two cents": [65535, 0], "jingo for two cents i": [65535, 0], "for two cents i will": [65535, 0], "two cents i will do": [65535, 0], "cents i will do it": [65535, 0], "i will do it the": [65535, 0], "will do it the new": [65535, 0], "do it the new boy": [65535, 0], "it the new boy took": [65535, 0], "the new boy took two": [65535, 0], "new boy took two broad": [65535, 0], "boy took two broad coppers": [65535, 0], "took two broad coppers out": [65535, 0], "two broad coppers out of": [65535, 0], "broad coppers out of his": [65535, 0], "coppers out of his pocket": [65535, 0], "out of his pocket and": [65535, 0], "of his pocket and held": [65535, 0], "his pocket and held them": [65535, 0], "pocket and held them out": [65535, 0], "and held them out with": [65535, 0], "held them out with derision": [65535, 0], "them out with derision tom": [65535, 0], "out with derision tom struck": [65535, 0], "with derision tom struck them": [65535, 0], "derision tom struck them to": [65535, 0], "tom struck them to the": [65535, 0], "struck them to the ground": [65535, 0], "them to the ground in": [65535, 0], "to the ground in an": [65535, 0], "the ground in an instant": [65535, 0], "ground in an instant both": [65535, 0], "in an instant both boys": [65535, 0], "an instant both boys were": [65535, 0], "instant both boys were rolling": [65535, 0], "both boys were rolling and": [65535, 0], "boys were rolling and tumbling": [65535, 0], "were rolling and tumbling in": [65535, 0], "rolling and tumbling in the": [65535, 0], "and tumbling in the dirt": [65535, 0], "tumbling in the dirt gripped": [65535, 0], "in the dirt gripped together": [65535, 0], "the dirt gripped together like": [65535, 0], "dirt gripped together like cats": [65535, 0], "gripped together like cats and": [65535, 0], "together like cats and for": [65535, 0], "like cats and for the": [65535, 0], "cats and for the space": [65535, 0], "and for the space of": [65535, 0], "space of a minute they": [65535, 0], "of a minute they tugged": [65535, 0], "a minute they tugged and": [65535, 0], "minute they tugged and tore": [65535, 0], "they tugged and tore at": [65535, 0], "tugged and tore at each": [65535, 0], "and tore at each other's": [65535, 0], "tore at each other's hair": [65535, 0], "at each other's hair and": [65535, 0], "each other's hair and clothes": [65535, 0], "other's hair and clothes punched": [65535, 0], "hair and clothes punched and": [65535, 0], "and clothes punched and scratched": [65535, 0], "clothes punched and scratched each": [65535, 0], "punched and scratched each other's": [65535, 0], "and scratched each other's nose": [65535, 0], "scratched each other's nose and": [65535, 0], "each other's nose and covered": [65535, 0], "other's nose and covered themselves": [65535, 0], "nose and covered themselves with": [65535, 0], "and covered themselves with dust": [65535, 0], "covered themselves with dust and": [65535, 0], "themselves with dust and glory": [65535, 0], "with dust and glory presently": [65535, 0], "dust and glory presently the": [65535, 0], "and glory presently the confusion": [65535, 0], "glory presently the confusion took": [65535, 0], "presently the confusion took form": [65535, 0], "the confusion took form and": [65535, 0], "confusion took form and through": [65535, 0], "took form and through the": [65535, 0], "form and through the fog": [65535, 0], "and through the fog of": [65535, 0], "through the fog of battle": [65535, 0], "the fog of battle tom": [65535, 0], "fog of battle tom appeared": [65535, 0], "of battle tom appeared seated": [65535, 0], "battle tom appeared seated astride": [65535, 0], "tom appeared seated astride the": [65535, 0], "appeared seated astride the new": [65535, 0], "seated astride the new boy": [65535, 0], "astride the new boy and": [65535, 0], "the new boy and pounding": [65535, 0], "new boy and pounding him": [65535, 0], "boy and pounding him with": [65535, 0], "and pounding him with his": [65535, 0], "pounding him with his fists": [65535, 0], "him with his fists holler": [65535, 0], "with his fists holler 'nuff": [65535, 0], "his fists holler 'nuff said": [65535, 0], "fists holler 'nuff said he": [65535, 0], "holler 'nuff said he the": [65535, 0], "'nuff said he the boy": [65535, 0], "said he the boy only": [65535, 0], "he the boy only struggled": [65535, 0], "the boy only struggled to": [65535, 0], "boy only struggled to free": [65535, 0], "only struggled to free himself": [65535, 0], "struggled to free himself he": [65535, 0], "to free himself he was": [65535, 0], "free himself he was crying": [65535, 0], "himself he was crying mainly": [65535, 0], "he was crying mainly from": [65535, 0], "was crying mainly from rage": [65535, 0], "crying mainly from rage holler": [65535, 0], "mainly from rage holler 'nuff": [65535, 0], "from rage holler 'nuff and": [65535, 0], "rage holler 'nuff and the": [65535, 0], "holler 'nuff and the pounding": [65535, 0], "'nuff and the pounding went": [65535, 0], "and the pounding went on": [65535, 0], "the pounding went on at": [65535, 0], "pounding went on at last": [65535, 0], "went on at last the": [65535, 0], "on at last the stranger": [65535, 0], "at last the stranger got": [65535, 0], "last the stranger got out": [65535, 0], "the stranger got out a": [65535, 0], "stranger got out a smothered": [65535, 0], "got out a smothered 'nuff": [65535, 0], "out a smothered 'nuff and": [65535, 0], "a smothered 'nuff and tom": [65535, 0], "smothered 'nuff and tom let": [65535, 0], "'nuff and tom let him": [65535, 0], "and tom let him up": [65535, 0], "tom let him up and": [65535, 0], "let him up and said": [65535, 0], "him up and said now": [65535, 0], "up and said now that'll": [65535, 0], "and said now that'll learn": [65535, 0], "said now that'll learn you": [65535, 0], "now that'll learn you better": [65535, 0], "that'll learn you better look": [65535, 0], "learn you better look out": [65535, 0], "you better look out who": [65535, 0], "better look out who you're": [65535, 0], "look out who you're fooling": [65535, 0], "out who you're fooling with": [65535, 0], "who you're fooling with next": [65535, 0], "you're fooling with next time": [65535, 0], "fooling with next time the": [65535, 0], "with next time the new": [65535, 0], "next time the new boy": [65535, 0], "time the new boy went": [65535, 0], "the new boy went off": [65535, 0], "new boy went off brushing": [65535, 0], "boy went off brushing the": [65535, 0], "went off brushing the dust": [65535, 0], "off brushing the dust from": [65535, 0], "brushing the dust from his": [65535, 0], "the dust from his clothes": [65535, 0], "dust from his clothes sobbing": [65535, 0], "from his clothes sobbing snuffling": [65535, 0], "his clothes sobbing snuffling and": [65535, 0], "clothes sobbing snuffling and occasionally": [65535, 0], "sobbing snuffling and occasionally looking": [65535, 0], "snuffling and occasionally looking back": [65535, 0], "and occasionally looking back and": [65535, 0], "occasionally looking back and shaking": [65535, 0], "looking back and shaking his": [65535, 0], "back and shaking his head": [65535, 0], "and shaking his head and": [65535, 0], "shaking his head and threatening": [65535, 0], "his head and threatening what": [65535, 0], "head and threatening what he": [65535, 0], "and threatening what he would": [65535, 0], "threatening what he would do": [65535, 0], "what he would do to": [65535, 0], "he would do to tom": [65535, 0], "would do to tom the": [65535, 0], "do to tom the next": [65535, 0], "to tom the next time": [65535, 0], "tom the next time he": [65535, 0], "the next time he caught": [65535, 0], "next time he caught him": [65535, 0], "time he caught him out": [65535, 0], "he caught him out to": [65535, 0], "caught him out to which": [65535, 0], "him out to which tom": [65535, 0], "out to which tom responded": [65535, 0], "to which tom responded with": [65535, 0], "which tom responded with jeers": [65535, 0], "tom responded with jeers and": [65535, 0], "responded with jeers and started": [65535, 0], "with jeers and started off": [65535, 0], "jeers and started off in": [65535, 0], "and started off in high": [65535, 0], "started off in high feather": [65535, 0], "off in high feather and": [65535, 0], "in high feather and as": [65535, 0], "high feather and as soon": [65535, 0], "feather and as soon as": [65535, 0], "and as soon as his": [65535, 0], "as soon as his back": [65535, 0], "soon as his back was": [65535, 0], "as his back was turned": [65535, 0], "his back was turned the": [65535, 0], "back was turned the new": [65535, 0], "was turned the new boy": [65535, 0], "turned the new boy snatched": [65535, 0], "the new boy snatched up": [65535, 0], "new boy snatched up a": [65535, 0], "boy snatched up a stone": [65535, 0], "snatched up a stone threw": [65535, 0], "up a stone threw it": [65535, 0], "a stone threw it and": [65535, 0], "stone threw it and hit": [65535, 0], "threw it and hit him": [65535, 0], "it and hit him between": [65535, 0], "and hit him between the": [65535, 0], "hit him between the shoulders": [65535, 0], "him between the shoulders and": [65535, 0], "between the shoulders and then": [65535, 0], "the shoulders and then turned": [65535, 0], "shoulders and then turned tail": [65535, 0], "and then turned tail and": [65535, 0], "then turned tail and ran": [65535, 0], "turned tail and ran like": [65535, 0], "tail and ran like an": [65535, 0], "and ran like an antelope": [65535, 0], "ran like an antelope tom": [65535, 0], "like an antelope tom chased": [65535, 0], "an antelope tom chased the": [65535, 0], "antelope tom chased the traitor": [65535, 0], "tom chased the traitor home": [65535, 0], "chased the traitor home and": [65535, 0], "the traitor home and thus": [65535, 0], "traitor home and thus found": [65535, 0], "home and thus found out": [65535, 0], "and thus found out where": [65535, 0], "thus found out where he": [65535, 0], "found out where he lived": [65535, 0], "out where he lived he": [65535, 0], "where he lived he then": [65535, 0], "he lived he then held": [65535, 0], "lived he then held a": [65535, 0], "he then held a position": [65535, 0], "then held a position at": [65535, 0], "held a position at the": [65535, 0], "a position at the gate": [65535, 0], "position at the gate for": [65535, 0], "at the gate for some": [65535, 0], "the gate for some time": [65535, 0], "gate for some time daring": [65535, 0], "for some time daring the": [65535, 0], "some time daring the enemy": [65535, 0], "time daring the enemy to": [65535, 0], "daring the enemy to come": [65535, 0], "the enemy to come outside": [65535, 0], "enemy to come outside but": [65535, 0], "to come outside but the": [65535, 0], "come outside but the enemy": [65535, 0], "outside but the enemy only": [65535, 0], "but the enemy only made": [65535, 0], "the enemy only made faces": [65535, 0], "enemy only made faces at": [65535, 0], "only made faces at him": [65535, 0], "made faces at him through": [65535, 0], "faces at him through the": [65535, 0], "at him through the window": [65535, 0], "him through the window and": [65535, 0], "through the window and declined": [65535, 0], "the window and declined at": [65535, 0], "window and declined at last": [65535, 0], "and declined at last the": [65535, 0], "declined at last the enemy's": [65535, 0], "at last the enemy's mother": [65535, 0], "last the enemy's mother appeared": [65535, 0], "the enemy's mother appeared and": [65535, 0], "enemy's mother appeared and called": [65535, 0], "mother appeared and called tom": [65535, 0], "appeared and called tom a": [65535, 0], "and called tom a bad": [65535, 0], "called tom a bad vicious": [65535, 0], "tom a bad vicious vulgar": [65535, 0], "a bad vicious vulgar child": [65535, 0], "bad vicious vulgar child and": [65535, 0], "vicious vulgar child and ordered": [65535, 0], "vulgar child and ordered him": [65535, 0], "child and ordered him away": [65535, 0], "and ordered him away so": [65535, 0], "ordered him away so he": [65535, 0], "him away so he went": [65535, 0], "away so he went away": [65535, 0], "so he went away but": [65535, 0], "he went away but he": [65535, 0], "went away but he said": [65535, 0], "away but he said he": [65535, 0], "but he said he 'lowed": [65535, 0], "he said he 'lowed to": [65535, 0], "said he 'lowed to lay": [65535, 0], "he 'lowed to lay for": [65535, 0], "'lowed to lay for that": [65535, 0], "to lay for that boy": [65535, 0], "lay for that boy he": [65535, 0], "for that boy he got": [65535, 0], "that boy he got home": [65535, 0], "boy he got home pretty": [65535, 0], "he got home pretty late": [65535, 0], "got home pretty late that": [65535, 0], "home pretty late that night": [65535, 0], "pretty late that night and": [65535, 0], "late that night and when": [65535, 0], "that night and when he": [65535, 0], "night and when he climbed": [65535, 0], "and when he climbed cautiously": [65535, 0], "when he climbed cautiously in": [65535, 0], "he climbed cautiously in at": [65535, 0], "climbed cautiously in at the": [65535, 0], "cautiously in at the window": [65535, 0], "in at the window he": [65535, 0], "at the window he uncovered": [65535, 0], "the window he uncovered an": [65535, 0], "window he uncovered an ambuscade": [65535, 0], "he uncovered an ambuscade in": [65535, 0], "uncovered an ambuscade in the": [65535, 0], "an ambuscade in the person": [65535, 0], "ambuscade in the person of": [65535, 0], "in the person of his": [65535, 0], "the person of his aunt": [65535, 0], "person of his aunt and": [65535, 0], "of his aunt and when": [65535, 0], "his aunt and when she": [65535, 0], "aunt and when she saw": [65535, 0], "and when she saw the": [65535, 0], "when she saw the state": [65535, 0], "she saw the state his": [65535, 0], "saw the state his clothes": [65535, 0], "the state his clothes were": [65535, 0], "state his clothes were in": [65535, 0], "his clothes were in her": [65535, 0], "clothes were in her resolution": [65535, 0], "were in her resolution to": [65535, 0], "in her resolution to turn": [65535, 0], "her resolution to turn his": [65535, 0], "resolution to turn his saturday": [65535, 0], "to turn his saturday holiday": [65535, 0], "turn his saturday holiday into": [65535, 0], "his saturday holiday into captivity": [65535, 0], "saturday holiday into captivity at": [65535, 0], "holiday into captivity at hard": [65535, 0], "into captivity at hard labor": [65535, 0], "captivity at hard labor became": [65535, 0], "at hard labor became adamantine": [65535, 0], "hard labor became adamantine in": [65535, 0], "labor became adamantine in its": [65535, 0], "became adamantine in its firmness": [65535, 0], "tom no answer tom no answer": [65535, 0], "no answer tom no answer what's": [65535, 0], "answer tom no answer what's gone": [65535, 0], "tom no answer what's gone with": [65535, 0], "no answer what's gone with that": [65535, 0], "answer what's gone with that boy": [65535, 0], "what's gone with that boy i": [65535, 0], "gone with that boy i wonder": [65535, 0], "with that boy i wonder you": [65535, 0], "that boy i wonder you tom": [65535, 0], "boy i wonder you tom no": [65535, 0], "i wonder you tom no answer": [65535, 0], "wonder you tom no answer the": [65535, 0], "you tom no answer the old": [65535, 0], "tom no answer the old lady": [65535, 0], "no answer the old lady pulled": [65535, 0], "answer the old lady pulled her": [65535, 0], "the old lady pulled her spectacles": [65535, 0], "old lady pulled her spectacles down": [65535, 0], "lady pulled her spectacles down and": [65535, 0], "pulled her spectacles down and looked": [65535, 0], "her spectacles down and looked over": [65535, 0], "spectacles down and looked over them": [65535, 0], "down and looked over them about": [65535, 0], "and looked over them about the": [65535, 0], "looked over them about the room": [65535, 0], "over them about the room then": [65535, 0], "them about the room then she": [65535, 0], "about the room then she put": [65535, 0], "the room then she put them": [65535, 0], "room then she put them up": [65535, 0], "then she put them up and": [65535, 0], "she put them up and looked": [65535, 0], "put them up and looked out": [65535, 0], "them up and looked out under": [65535, 0], "up and looked out under them": [65535, 0], "and looked out under them she": [65535, 0], "looked out under them she seldom": [65535, 0], "out under them she seldom or": [65535, 0], "under them she seldom or never": [65535, 0], "them she seldom or never looked": [65535, 0], "she seldom or never looked through": [65535, 0], "seldom or never looked through them": [65535, 0], "or never looked through them for": [65535, 0], "never looked through them for so": [65535, 0], "looked through them for so small": [65535, 0], "through them for so small a": [65535, 0], "them for so small a thing": [65535, 0], "for so small a thing as": [65535, 0], "so small a thing as a": [65535, 0], "small a thing as a boy": [65535, 0], "a thing as a boy they": [65535, 0], "thing as a boy they were": [65535, 0], "as a boy they were her": [65535, 0], "a boy they were her state": [65535, 0], "boy they were her state pair": [65535, 0], "they were her state pair the": [65535, 0], "were her state pair the pride": [65535, 0], "her state pair the pride of": [65535, 0], "state pair the pride of her": [65535, 0], "pair the pride of her heart": [65535, 0], "the pride of her heart and": [65535, 0], "pride of her heart and were": [65535, 0], "of her heart and were built": [65535, 0], "her heart and were built for": [65535, 0], "heart and were built for style": [65535, 0], "and were built for style not": [65535, 0], "were built for style not service": [65535, 0], "built for style not service she": [65535, 0], "for style not service she could": [65535, 0], "style not service she could have": [65535, 0], "not service she could have seen": [65535, 0], "service she could have seen through": [65535, 0], "she could have seen through a": [65535, 0], "could have seen through a pair": [65535, 0], "have seen through a pair of": [65535, 0], "seen through a pair of stove": [65535, 0], "through a pair of stove lids": [65535, 0], "a pair of stove lids just": [65535, 0], "pair of stove lids just as": [65535, 0], "of stove lids just as well": [65535, 0], "stove lids just as well she": [65535, 0], "lids just as well she looked": [65535, 0], "just as well she looked perplexed": [65535, 0], "as well she looked perplexed for": [65535, 0], "well she looked perplexed for a": [65535, 0], "she looked perplexed for a moment": [65535, 0], "looked perplexed for a moment and": [65535, 0], "perplexed for a moment and then": [65535, 0], "for a moment and then said": [65535, 0], "a moment and then said not": [65535, 0], "moment and then said not fiercely": [65535, 0], "and then said not fiercely but": [65535, 0], "then said not fiercely but still": [65535, 0], "said not fiercely but still loud": [65535, 0], "not fiercely but still loud enough": [65535, 0], "fiercely but still loud enough for": [65535, 0], "but still loud enough for the": [65535, 0], "still loud enough for the furniture": [65535, 0], "loud enough for the furniture to": [65535, 0], "enough for the furniture to hear": [65535, 0], "for the furniture to hear well": [65535, 0], "the furniture to hear well i": [65535, 0], "furniture to hear well i lay": [65535, 0], "to hear well i lay if": [65535, 0], "hear well i lay if i": [65535, 0], "well i lay if i get": [65535, 0], "i lay if i get hold": [65535, 0], "lay if i get hold of": [65535, 0], "if i get hold of you": [65535, 0], "i get hold of you i'll": [65535, 0], "get hold of you i'll she": [65535, 0], "hold of you i'll she did": [65535, 0], "of you i'll she did not": [65535, 0], "you i'll she did not finish": [65535, 0], "i'll she did not finish for": [65535, 0], "she did not finish for by": [65535, 0], "did not finish for by this": [65535, 0], "not finish for by this time": [65535, 0], "finish for by this time she": [65535, 0], "for by this time she was": [65535, 0], "by this time she was bending": [65535, 0], "this time she was bending down": [65535, 0], "time she was bending down and": [65535, 0], "she was bending down and punching": [65535, 0], "was bending down and punching under": [65535, 0], "bending down and punching under the": [65535, 0], "down and punching under the bed": [65535, 0], "and punching under the bed with": [65535, 0], "punching under the bed with the": [65535, 0], "under the bed with the broom": [65535, 0], "the bed with the broom and": [65535, 0], "bed with the broom and so": [65535, 0], "with the broom and so she": [65535, 0], "the broom and so she needed": [65535, 0], "broom and so she needed breath": [65535, 0], "and so she needed breath to": [65535, 0], "so she needed breath to punctuate": [65535, 0], "she needed breath to punctuate the": [65535, 0], "needed breath to punctuate the punches": [65535, 0], "breath to punctuate the punches with": [65535, 0], "to punctuate the punches with she": [65535, 0], "punctuate the punches with she resurrected": [65535, 0], "the punches with she resurrected nothing": [65535, 0], "punches with she resurrected nothing but": [65535, 0], "with she resurrected nothing but the": [65535, 0], "she resurrected nothing but the cat": [65535, 0], "resurrected nothing but the cat i": [65535, 0], "nothing but the cat i never": [65535, 0], "but the cat i never did": [65535, 0], "the cat i never did see": [65535, 0], "cat i never did see the": [65535, 0], "i never did see the beat": [65535, 0], "never did see the beat of": [65535, 0], "did see the beat of that": [65535, 0], "see the beat of that boy": [65535, 0], "the beat of that boy she": [65535, 0], "beat of that boy she went": [65535, 0], "of that boy she went to": [65535, 0], "that boy she went to the": [65535, 0], "boy she went to the open": [65535, 0], "she went to the open door": [65535, 0], "went to the open door and": [65535, 0], "to the open door and stood": [65535, 0], "the open door and stood in": [65535, 0], "open door and stood in it": [65535, 0], "door and stood in it and": [65535, 0], "and stood in it and looked": [65535, 0], "stood in it and looked out": [65535, 0], "in it and looked out among": [65535, 0], "it and looked out among the": [65535, 0], "and looked out among the tomato": [65535, 0], "looked out among the tomato vines": [65535, 0], "out among the tomato vines and": [65535, 0], "among the tomato vines and jimpson": [65535, 0], "the tomato vines and jimpson weeds": [65535, 0], "tomato vines and jimpson weeds that": [65535, 0], "vines and jimpson weeds that constituted": [65535, 0], "and jimpson weeds that constituted the": [65535, 0], "jimpson weeds that constituted the garden": [65535, 0], "weeds that constituted the garden no": [65535, 0], "that constituted the garden no tom": [65535, 0], "constituted the garden no tom so": [65535, 0], "the garden no tom so she": [65535, 0], "garden no tom so she lifted": [65535, 0], "no tom so she lifted up": [65535, 0], "tom so she lifted up her": [65535, 0], "so she lifted up her voice": [65535, 0], "she lifted up her voice at": [65535, 0], "lifted up her voice at an": [65535, 0], "up her voice at an angle": [65535, 0], "her voice at an angle calculated": [65535, 0], "voice at an angle calculated for": [65535, 0], "at an angle calculated for distance": [65535, 0], "an angle calculated for distance and": [65535, 0], "angle calculated for distance and shouted": [65535, 0], "calculated for distance and shouted y": [65535, 0], "for distance and shouted y o": [65535, 0], "distance and shouted y o u": [65535, 0], "and shouted y o u u": [65535, 0], "shouted y o u u tom": [65535, 0], "y o u u tom there": [65535, 0], "o u u tom there was": [65535, 0], "u u tom there was a": [65535, 0], "u tom there was a slight": [65535, 0], "tom there was a slight noise": [65535, 0], "there was a slight noise behind": [65535, 0], "was a slight noise behind her": [65535, 0], "a slight noise behind her and": [65535, 0], "slight noise behind her and she": [65535, 0], "noise behind her and she turned": [65535, 0], "behind her and she turned just": [65535, 0], "her and she turned just in": [65535, 0], "and she turned just in time": [65535, 0], "she turned just in time to": [65535, 0], "turned just in time to seize": [65535, 0], "just in time to seize a": [65535, 0], "in time to seize a small": [65535, 0], "time to seize a small boy": [65535, 0], "to seize a small boy by": [65535, 0], "seize a small boy by the": [65535, 0], "a small boy by the slack": [65535, 0], "small boy by the slack of": [65535, 0], "boy by the slack of his": [65535, 0], "by the slack of his roundabout": [65535, 0], "the slack of his roundabout and": [65535, 0], "slack of his roundabout and arrest": [65535, 0], "of his roundabout and arrest his": [65535, 0], "his roundabout and arrest his flight": [65535, 0], "roundabout and arrest his flight there": [65535, 0], "and arrest his flight there i": [65535, 0], "arrest his flight there i might": [65535, 0], "his flight there i might 'a'": [65535, 0], "flight there i might 'a' thought": [65535, 0], "there i might 'a' thought of": [65535, 0], "i might 'a' thought of that": [65535, 0], "might 'a' thought of that closet": [65535, 0], "'a' thought of that closet what": [65535, 0], "thought of that closet what you": [65535, 0], "of that closet what you been": [65535, 0], "that closet what you been doing": [65535, 0], "closet what you been doing in": [65535, 0], "what you been doing in there": [65535, 0], "you been doing in there nothing": [65535, 0], "been doing in there nothing nothing": [65535, 0], "doing in there nothing nothing look": [65535, 0], "in there nothing nothing look at": [65535, 0], "there nothing nothing look at your": [65535, 0], "nothing nothing look at your hands": [65535, 0], "nothing look at your hands and": [65535, 0], "look at your hands and look": [65535, 0], "at your hands and look at": [65535, 0], "your hands and look at your": [65535, 0], "hands and look at your mouth": [65535, 0], "and look at your mouth what": [65535, 0], "look at your mouth what is": [65535, 0], "at your mouth what is that": [65535, 0], "your mouth what is that i": [65535, 0], "mouth what is that i don't": [65535, 0], "what is that i don't know": [65535, 0], "is that i don't know aunt": [65535, 0], "that i don't know aunt well": [65535, 0], "i don't know aunt well i": [65535, 0], "don't know aunt well i know": [65535, 0], "know aunt well i know it's": [65535, 0], "aunt well i know it's jam": [65535, 0], "well i know it's jam that's": [65535, 0], "i know it's jam that's what": [65535, 0], "know it's jam that's what it": [65535, 0], "it's jam that's what it is": [65535, 0], "jam that's what it is forty": [65535, 0], "that's what it is forty times": [65535, 0], "what it is forty times i've": [65535, 0], "it is forty times i've said": [65535, 0], "is forty times i've said if": [65535, 0], "forty times i've said if you": [65535, 0], "times i've said if you didn't": [65535, 0], "i've said if you didn't let": [65535, 0], "said if you didn't let that": [65535, 0], "if you didn't let that jam": [65535, 0], "you didn't let that jam alone": [65535, 0], "didn't let that jam alone i'd": [65535, 0], "let that jam alone i'd skin": [65535, 0], "that jam alone i'd skin you": [65535, 0], "jam alone i'd skin you hand": [65535, 0], "alone i'd skin you hand me": [65535, 0], "i'd skin you hand me that": [65535, 0], "skin you hand me that switch": [65535, 0], "you hand me that switch the": [65535, 0], "hand me that switch the switch": [65535, 0], "me that switch the switch hovered": [65535, 0], "that switch the switch hovered in": [65535, 0], "switch the switch hovered in the": [65535, 0], "the switch hovered in the air": [65535, 0], "switch hovered in the air the": [65535, 0], "hovered in the air the peril": [65535, 0], "in the air the peril was": [65535, 0], "the air the peril was desperate": [65535, 0], "air the peril was desperate my": [65535, 0], "the peril was desperate my look": [65535, 0], "peril was desperate my look behind": [65535, 0], "was desperate my look behind you": [65535, 0], "desperate my look behind you aunt": [65535, 0], "my look behind you aunt the": [65535, 0], "look behind you aunt the old": [65535, 0], "behind you aunt the old lady": [65535, 0], "you aunt the old lady whirled": [65535, 0], "aunt the old lady whirled round": [65535, 0], "the old lady whirled round and": [65535, 0], "old lady whirled round and snatched": [65535, 0], "lady whirled round and snatched her": [65535, 0], "whirled round and snatched her skirts": [65535, 0], "round and snatched her skirts out": [65535, 0], "and snatched her skirts out of": [65535, 0], "snatched her skirts out of danger": [65535, 0], "her skirts out of danger the": [65535, 0], "skirts out of danger the lad": [65535, 0], "out of danger the lad fled": [65535, 0], "of danger the lad fled on": [65535, 0], "danger the lad fled on the": [65535, 0], "the lad fled on the instant": [65535, 0], "lad fled on the instant scrambled": [65535, 0], "fled on the instant scrambled up": [65535, 0], "on the instant scrambled up the": [65535, 0], "the instant scrambled up the high": [65535, 0], "instant scrambled up the high board": [65535, 0], "scrambled up the high board fence": [65535, 0], "up the high board fence and": [65535, 0], "the high board fence and disappeared": [65535, 0], "high board fence and disappeared over": [65535, 0], "board fence and disappeared over it": [65535, 0], "fence and disappeared over it his": [65535, 0], "and disappeared over it his aunt": [65535, 0], "disappeared over it his aunt polly": [65535, 0], "over it his aunt polly stood": [65535, 0], "it his aunt polly stood surprised": [65535, 0], "his aunt polly stood surprised a": [65535, 0], "aunt polly stood surprised a moment": [65535, 0], "polly stood surprised a moment and": [65535, 0], "stood surprised a moment and then": [65535, 0], "surprised a moment and then broke": [65535, 0], "a moment and then broke into": [65535, 0], "moment and then broke into a": [65535, 0], "and then broke into a gentle": [65535, 0], "then broke into a gentle laugh": [65535, 0], "broke into a gentle laugh hang": [65535, 0], "into a gentle laugh hang the": [65535, 0], "a gentle laugh hang the boy": [65535, 0], "gentle laugh hang the boy can't": [65535, 0], "laugh hang the boy can't i": [65535, 0], "hang the boy can't i never": [65535, 0], "the boy can't i never learn": [65535, 0], "boy can't i never learn anything": [65535, 0], "can't i never learn anything ain't": [65535, 0], "i never learn anything ain't he": [65535, 0], "never learn anything ain't he played": [65535, 0], "learn anything ain't he played me": [65535, 0], "anything ain't he played me tricks": [65535, 0], "ain't he played me tricks enough": [65535, 0], "he played me tricks enough like": [65535, 0], "played me tricks enough like that": [65535, 0], "me tricks enough like that for": [65535, 0], "tricks enough like that for me": [65535, 0], "enough like that for me to": [65535, 0], "like that for me to be": [65535, 0], "that for me to be looking": [65535, 0], "for me to be looking out": [65535, 0], "me to be looking out for": [65535, 0], "to be looking out for him": [65535, 0], "be looking out for him by": [65535, 0], "looking out for him by this": [65535, 0], "out for him by this time": [65535, 0], "for him by this time but": [65535, 0], "him by this time but old": [65535, 0], "by this time but old fools": [65535, 0], "this time but old fools is": [65535, 0], "time but old fools is the": [65535, 0], "but old fools is the biggest": [65535, 0], "old fools is the biggest fools": [65535, 0], "fools is the biggest fools there": [65535, 0], "is the biggest fools there is": [65535, 0], "the biggest fools there is can't": [65535, 0], "biggest fools there is can't learn": [65535, 0], "fools there is can't learn an": [65535, 0], "there is can't learn an old": [65535, 0], "is can't learn an old dog": [65535, 0], "can't learn an old dog new": [65535, 0], "learn an old dog new tricks": [65535, 0], "an old dog new tricks as": [65535, 0], "old dog new tricks as the": [65535, 0], "dog new tricks as the saying": [65535, 0], "new tricks as the saying is": [65535, 0], "tricks as the saying is but": [65535, 0], "as the saying is but my": [65535, 0], "the saying is but my goodness": [65535, 0], "saying is but my goodness he": [65535, 0], "is but my goodness he never": [65535, 0], "but my goodness he never plays": [65535, 0], "my goodness he never plays them": [65535, 0], "goodness he never plays them alike": [65535, 0], "he never plays them alike two": [65535, 0], "never plays them alike two days": [65535, 0], "plays them alike two days and": [65535, 0], "them alike two days and how": [65535, 0], "alike two days and how is": [65535, 0], "two days and how is a": [65535, 0], "days and how is a body": [65535, 0], "and how is a body to": [65535, 0], "how is a body to know": [65535, 0], "is a body to know what's": [65535, 0], "a body to know what's coming": [65535, 0], "body to know what's coming he": [65535, 0], "to know what's coming he 'pears": [65535, 0], "know what's coming he 'pears to": [65535, 0], "what's coming he 'pears to know": [65535, 0], "coming he 'pears to know just": [65535, 0], "he 'pears to know just how": [65535, 0], "'pears to know just how long": [65535, 0], "to know just how long he": [65535, 0], "know just how long he can": [65535, 0], "just how long he can torment": [65535, 0], "how long he can torment me": [65535, 0], "long he can torment me before": [65535, 0], "he can torment me before i": [65535, 0], "can torment me before i get": [65535, 0], "torment me before i get my": [65535, 0], "me before i get my dander": [65535, 0], "before i get my dander up": [65535, 0], "i get my dander up and": [65535, 0], "get my dander up and he": [65535, 0], "my dander up and he knows": [65535, 0], "dander up and he knows if": [65535, 0], "up and he knows if he": [65535, 0], "and he knows if he can": [65535, 0], "he knows if he can make": [65535, 0], "knows if he can make out": [65535, 0], "if he can make out to": [65535, 0], "he can make out to put": [65535, 0], "can make out to put me": [65535, 0], "make out to put me off": [65535, 0], "out to put me off for": [65535, 0], "to put me off for a": [65535, 0], "put me off for a minute": [65535, 0], "me off for a minute or": [65535, 0], "off for a minute or make": [65535, 0], "for a minute or make me": [65535, 0], "a minute or make me laugh": [65535, 0], "minute or make me laugh it's": [65535, 0], "or make me laugh it's all": [65535, 0], "make me laugh it's all down": [65535, 0], "me laugh it's all down again": [65535, 0], "laugh it's all down again and": [65535, 0], "it's all down again and i": [65535, 0], "all down again and i can't": [65535, 0], "down again and i can't hit": [65535, 0], "again and i can't hit him": [65535, 0], "and i can't hit him a": [65535, 0], "i can't hit him a lick": [65535, 0], "can't hit him a lick i": [65535, 0], "hit him a lick i ain't": [65535, 0], "him a lick i ain't doing": [65535, 0], "a lick i ain't doing my": [65535, 0], "lick i ain't doing my duty": [65535, 0], "i ain't doing my duty by": [65535, 0], "ain't doing my duty by that": [65535, 0], "doing my duty by that boy": [65535, 0], "my duty by that boy and": [65535, 0], "duty by that boy and that's": [65535, 0], "by that boy and that's the": [65535, 0], "that boy and that's the lord's": [65535, 0], "boy and that's the lord's truth": [65535, 0], "and that's the lord's truth goodness": [65535, 0], "that's the lord's truth goodness knows": [65535, 0], "the lord's truth goodness knows spare": [65535, 0], "lord's truth goodness knows spare the": [65535, 0], "truth goodness knows spare the rod": [65535, 0], "goodness knows spare the rod and": [65535, 0], "knows spare the rod and spoil": [65535, 0], "spare the rod and spoil the": [65535, 0], "the rod and spoil the child": [65535, 0], "rod and spoil the child as": [65535, 0], "and spoil the child as the": [65535, 0], "spoil the child as the good": [65535, 0], "the child as the good book": [65535, 0], "child as the good book says": [65535, 0], "as the good book says i'm": [65535, 0], "the good book says i'm a": [65535, 0], "good book says i'm a laying": [65535, 0], "book says i'm a laying up": [65535, 0], "says i'm a laying up sin": [65535, 0], "i'm a laying up sin and": [65535, 0], "a laying up sin and suffering": [65535, 0], "laying up sin and suffering for": [65535, 0], "up sin and suffering for us": [65535, 0], "sin and suffering for us both": [65535, 0], "and suffering for us both i": [65535, 0], "suffering for us both i know": [65535, 0], "for us both i know he's": [65535, 0], "us both i know he's full": [65535, 0], "both i know he's full of": [65535, 0], "i know he's full of the": [65535, 0], "know he's full of the old": [65535, 0], "he's full of the old scratch": [65535, 0], "full of the old scratch but": [65535, 0], "of the old scratch but laws": [65535, 0], "the old scratch but laws a": [65535, 0], "old scratch but laws a me": [65535, 0], "scratch but laws a me he's": [65535, 0], "but laws a me he's my": [65535, 0], "laws a me he's my own": [65535, 0], "a me he's my own dead": [65535, 0], "me he's my own dead sister's": [65535, 0], "he's my own dead sister's boy": [65535, 0], "my own dead sister's boy poor": [65535, 0], "own dead sister's boy poor thing": [65535, 0], "dead sister's boy poor thing and": [65535, 0], "sister's boy poor thing and i": [65535, 0], "boy poor thing and i ain't": [65535, 0], "poor thing and i ain't got": [65535, 0], "thing and i ain't got the": [65535, 0], "and i ain't got the heart": [65535, 0], "i ain't got the heart to": [65535, 0], "ain't got the heart to lash": [65535, 0], "got the heart to lash him": [65535, 0], "the heart to lash him somehow": [65535, 0], "heart to lash him somehow every": [65535, 0], "to lash him somehow every time": [65535, 0], "lash him somehow every time i": [65535, 0], "him somehow every time i let": [65535, 0], "somehow every time i let him": [65535, 0], "every time i let him off": [65535, 0], "time i let him off my": [65535, 0], "i let him off my conscience": [65535, 0], "let him off my conscience does": [65535, 0], "him off my conscience does hurt": [65535, 0], "off my conscience does hurt me": [65535, 0], "my conscience does hurt me so": [65535, 0], "conscience does hurt me so and": [65535, 0], "does hurt me so and every": [65535, 0], "hurt me so and every time": [65535, 0], "me so and every time i": [65535, 0], "so and every time i hit": [65535, 0], "and every time i hit him": [65535, 0], "every time i hit him my": [65535, 0], "time i hit him my old": [65535, 0], "i hit him my old heart": [65535, 0], "hit him my old heart most": [65535, 0], "him my old heart most breaks": [65535, 0], "my old heart most breaks well": [65535, 0], "old heart most breaks well a": [65535, 0], "heart most breaks well a well": [65535, 0], "most breaks well a well man": [65535, 0], "breaks well a well man that": [65535, 0], "well a well man that is": [65535, 0], "a well man that is born": [65535, 0], "well man that is born of": [65535, 0], "man that is born of woman": [65535, 0], "that is born of woman is": [65535, 0], "is born of woman is of": [65535, 0], "born of woman is of few": [65535, 0], "of woman is of few days": [65535, 0], "woman is of few days and": [65535, 0], "is of few days and full": [65535, 0], "of few days and full of": [65535, 0], "few days and full of trouble": [65535, 0], "days and full of trouble as": [65535, 0], "and full of trouble as the": [65535, 0], "full of trouble as the scripture": [65535, 0], "of trouble as the scripture says": [65535, 0], "trouble as the scripture says and": [65535, 0], "as the scripture says and i": [65535, 0], "the scripture says and i reckon": [65535, 0], "scripture says and i reckon it's": [65535, 0], "says and i reckon it's so": [65535, 0], "and i reckon it's so he'll": [65535, 0], "i reckon it's so he'll play": [65535, 0], "reckon it's so he'll play hookey": [65535, 0], "it's so he'll play hookey this": [65535, 0], "so he'll play hookey this evening": [65535, 0], "he'll play hookey this evening and": [65535, 0], "play hookey this evening and i'll": [65535, 0], "hookey this evening and i'll just": [65535, 0], "this evening and i'll just be": [65535, 0], "evening and i'll just be obliged": [65535, 0], "and i'll just be obliged to": [65535, 0], "i'll just be obliged to make": [65535, 0], "just be obliged to make him": [65535, 0], "be obliged to make him work": [65535, 0], "obliged to make him work to": [65535, 0], "to make him work to morrow": [65535, 0], "make him work to morrow to": [65535, 0], "him work to morrow to punish": [65535, 0], "work to morrow to punish him": [65535, 0], "to morrow to punish him it's": [65535, 0], "morrow to punish him it's mighty": [65535, 0], "to punish him it's mighty hard": [65535, 0], "punish him it's mighty hard to": [65535, 0], "him it's mighty hard to make": [65535, 0], "it's mighty hard to make him": [65535, 0], "mighty hard to make him work": [65535, 0], "hard to make him work saturdays": [65535, 0], "to make him work saturdays when": [65535, 0], "make him work saturdays when all": [65535, 0], "him work saturdays when all the": [65535, 0], "work saturdays when all the boys": [65535, 0], "saturdays when all the boys is": [65535, 0], "when all the boys is having": [65535, 0], "all the boys is having holiday": [65535, 0], "the boys is having holiday but": [65535, 0], "boys is having holiday but he": [65535, 0], "is having holiday but he hates": [65535, 0], "having holiday but he hates work": [65535, 0], "holiday but he hates work more": [65535, 0], "but he hates work more than": [65535, 0], "he hates work more than he": [65535, 0], "hates work more than he hates": [65535, 0], "work more than he hates anything": [65535, 0], "more than he hates anything else": [65535, 0], "than he hates anything else and": [65535, 0], "he hates anything else and i've": [65535, 0], "hates anything else and i've got": [65535, 0], "anything else and i've got to": [65535, 0], "else and i've got to do": [65535, 0], "and i've got to do some": [65535, 0], "i've got to do some of": [65535, 0], "got to do some of my": [65535, 0], "to do some of my duty": [65535, 0], "do some of my duty by": [65535, 0], "some of my duty by him": [65535, 0], "of my duty by him or": [65535, 0], "my duty by him or i'll": [65535, 0], "duty by him or i'll be": [65535, 0], "by him or i'll be the": [65535, 0], "him or i'll be the ruination": [65535, 0], "or i'll be the ruination of": [65535, 0], "i'll be the ruination of the": [65535, 0], "be the ruination of the child": [65535, 0], "the ruination of the child tom": [65535, 0], "ruination of the child tom did": [65535, 0], "of the child tom did play": [65535, 0], "the child tom did play hookey": [65535, 0], "child tom did play hookey and": [65535, 0], "tom did play hookey and he": [65535, 0], "did play hookey and he had": [65535, 0], "play hookey and he had a": [65535, 0], "hookey and he had a very": [65535, 0], "and he had a very good": [65535, 0], "he had a very good time": [65535, 0], "had a very good time he": [65535, 0], "a very good time he got": [65535, 0], "very good time he got back": [65535, 0], "good time he got back home": [65535, 0], "time he got back home barely": [65535, 0], "he got back home barely in": [65535, 0], "got back home barely in season": [65535, 0], "back home barely in season to": [65535, 0], "home barely in season to help": [65535, 0], "barely in season to help jim": [65535, 0], "in season to help jim the": [65535, 0], "season to help jim the small": [65535, 0], "to help jim the small colored": [65535, 0], "help jim the small colored boy": [65535, 0], "jim the small colored boy saw": [65535, 0], "the small colored boy saw next": [65535, 0], "small colored boy saw next day's": [65535, 0], "colored boy saw next day's wood": [65535, 0], "boy saw next day's wood and": [65535, 0], "saw next day's wood and split": [65535, 0], "next day's wood and split the": [65535, 0], "day's wood and split the kindlings": [65535, 0], "wood and split the kindlings before": [65535, 0], "and split the kindlings before supper": [65535, 0], "split the kindlings before supper at": [65535, 0], "the kindlings before supper at least": [65535, 0], "kindlings before supper at least he": [65535, 0], "before supper at least he was": [65535, 0], "supper at least he was there": [65535, 0], "at least he was there in": [65535, 0], "least he was there in time": [65535, 0], "he was there in time to": [65535, 0], "was there in time to tell": [65535, 0], "there in time to tell his": [65535, 0], "in time to tell his adventures": [65535, 0], "time to tell his adventures to": [65535, 0], "to tell his adventures to jim": [65535, 0], "tell his adventures to jim while": [65535, 0], "his adventures to jim while jim": [65535, 0], "adventures to jim while jim did": [65535, 0], "to jim while jim did three": [65535, 0], "jim while jim did three fourths": [65535, 0], "while jim did three fourths of": [65535, 0], "jim did three fourths of the": [65535, 0], "did three fourths of the work": [65535, 0], "three fourths of the work tom's": [65535, 0], "fourths of the work tom's younger": [65535, 0], "of the work tom's younger brother": [65535, 0], "the work tom's younger brother or": [65535, 0], "work tom's younger brother or rather": [65535, 0], "tom's younger brother or rather half": [65535, 0], "younger brother or rather half brother": [65535, 0], "brother or rather half brother sid": [65535, 0], "or rather half brother sid was": [65535, 0], "rather half brother sid was already": [65535, 0], "half brother sid was already through": [65535, 0], "brother sid was already through with": [65535, 0], "sid was already through with his": [65535, 0], "was already through with his part": [65535, 0], "already through with his part of": [65535, 0], "through with his part of the": [65535, 0], "with his part of the work": [65535, 0], "his part of the work picking": [65535, 0], "part of the work picking up": [65535, 0], "of the work picking up chips": [65535, 0], "the work picking up chips for": [65535, 0], "work picking up chips for he": [65535, 0], "picking up chips for he was": [65535, 0], "up chips for he was a": [65535, 0], "chips for he was a quiet": [65535, 0], "for he was a quiet boy": [65535, 0], "he was a quiet boy and": [65535, 0], "was a quiet boy and had": [65535, 0], "a quiet boy and had no": [65535, 0], "quiet boy and had no adventurous": [65535, 0], "boy and had no adventurous troublesome": [65535, 0], "and had no adventurous troublesome ways": [65535, 0], "had no adventurous troublesome ways while": [65535, 0], "no adventurous troublesome ways while tom": [65535, 0], "adventurous troublesome ways while tom was": [65535, 0], "troublesome ways while tom was eating": [65535, 0], "ways while tom was eating his": [65535, 0], "while tom was eating his supper": [65535, 0], "tom was eating his supper and": [65535, 0], "was eating his supper and stealing": [65535, 0], "eating his supper and stealing sugar": [65535, 0], "his supper and stealing sugar as": [65535, 0], "supper and stealing sugar as opportunity": [65535, 0], "and stealing sugar as opportunity offered": [65535, 0], "stealing sugar as opportunity offered aunt": [65535, 0], "sugar as opportunity offered aunt polly": [65535, 0], "as opportunity offered aunt polly asked": [65535, 0], "opportunity offered aunt polly asked him": [65535, 0], "offered aunt polly asked him questions": [65535, 0], "aunt polly asked him questions that": [65535, 0], "polly asked him questions that were": [65535, 0], "asked him questions that were full": [65535, 0], "him questions that were full of": [65535, 0], "questions that were full of guile": [65535, 0], "that were full of guile and": [65535, 0], "were full of guile and very": [65535, 0], "full of guile and very deep": [65535, 0], "of guile and very deep for": [65535, 0], "guile and very deep for she": [65535, 0], "and very deep for she wanted": [65535, 0], "very deep for she wanted to": [65535, 0], "deep for she wanted to trap": [65535, 0], "for she wanted to trap him": [65535, 0], "she wanted to trap him into": [65535, 0], "wanted to trap him into damaging": [65535, 0], "to trap him into damaging revealments": [65535, 0], "trap him into damaging revealments like": [65535, 0], "him into damaging revealments like many": [65535, 0], "into damaging revealments like many other": [65535, 0], "damaging revealments like many other simple": [65535, 0], "revealments like many other simple hearted": [65535, 0], "like many other simple hearted souls": [65535, 0], "many other simple hearted souls it": [65535, 0], "other simple hearted souls it was": [65535, 0], "simple hearted souls it was her": [65535, 0], "hearted souls it was her pet": [65535, 0], "souls it was her pet vanity": [65535, 0], "it was her pet vanity to": [65535, 0], "was her pet vanity to believe": [65535, 0], "her pet vanity to believe she": [65535, 0], "pet vanity to believe she was": [65535, 0], "vanity to believe she was endowed": [65535, 0], "to believe she was endowed with": [65535, 0], "believe she was endowed with a": [65535, 0], "she was endowed with a talent": [65535, 0], "was endowed with a talent for": [65535, 0], "endowed with a talent for dark": [65535, 0], "with a talent for dark and": [65535, 0], "a talent for dark and mysterious": [65535, 0], "talent for dark and mysterious diplomacy": [65535, 0], "for dark and mysterious diplomacy and": [65535, 0], "dark and mysterious diplomacy and she": [65535, 0], "and mysterious diplomacy and she loved": [65535, 0], "mysterious diplomacy and she loved to": [65535, 0], "diplomacy and she loved to contemplate": [65535, 0], "and she loved to contemplate her": [65535, 0], "she loved to contemplate her most": [65535, 0], "loved to contemplate her most transparent": [65535, 0], "to contemplate her most transparent devices": [65535, 0], "contemplate her most transparent devices as": [65535, 0], "her most transparent devices as marvels": [65535, 0], "most transparent devices as marvels of": [65535, 0], "transparent devices as marvels of low": [65535, 0], "devices as marvels of low cunning": [65535, 0], "as marvels of low cunning said": [65535, 0], "marvels of low cunning said she": [65535, 0], "of low cunning said she tom": [65535, 0], "low cunning said she tom it": [65535, 0], "cunning said she tom it was": [65535, 0], "said she tom it was middling": [65535, 0], "she tom it was middling warm": [65535, 0], "tom it was middling warm in": [65535, 0], "it was middling warm in school": [65535, 0], "was middling warm in school warn't": [65535, 0], "middling warm in school warn't it": [65535, 0], "warm in school warn't it yes'm": [65535, 0], "in school warn't it yes'm powerful": [65535, 0], "school warn't it yes'm powerful warm": [65535, 0], "warn't it yes'm powerful warm warn't": [65535, 0], "it yes'm powerful warm warn't it": [65535, 0], "yes'm powerful warm warn't it yes'm": [65535, 0], "powerful warm warn't it yes'm didn't": [65535, 0], "warm warn't it yes'm didn't you": [65535, 0], "warn't it yes'm didn't you want": [65535, 0], "it yes'm didn't you want to": [65535, 0], "yes'm didn't you want to go": [65535, 0], "didn't you want to go in": [65535, 0], "you want to go in a": [65535, 0], "want to go in a swimming": [65535, 0], "to go in a swimming tom": [65535, 0], "go in a swimming tom a": [65535, 0], "in a swimming tom a bit": [65535, 0], "a swimming tom a bit of": [65535, 0], "swimming tom a bit of a": [65535, 0], "tom a bit of a scare": [65535, 0], "a bit of a scare shot": [65535, 0], "bit of a scare shot through": [65535, 0], "of a scare shot through tom": [65535, 0], "a scare shot through tom a": [65535, 0], "scare shot through tom a touch": [65535, 0], "shot through tom a touch of": [65535, 0], "through tom a touch of uncomfortable": [65535, 0], "tom a touch of uncomfortable suspicion": [65535, 0], "a touch of uncomfortable suspicion he": [65535, 0], "touch of uncomfortable suspicion he searched": [65535, 0], "of uncomfortable suspicion he searched aunt": [65535, 0], "uncomfortable suspicion he searched aunt polly's": [65535, 0], "suspicion he searched aunt polly's face": [65535, 0], "he searched aunt polly's face but": [65535, 0], "searched aunt polly's face but it": [65535, 0], "aunt polly's face but it told": [65535, 0], "polly's face but it told him": [65535, 0], "face but it told him nothing": [65535, 0], "but it told him nothing so": [65535, 0], "it told him nothing so he": [65535, 0], "told him nothing so he said": [65535, 0], "him nothing so he said no'm": [65535, 0], "nothing so he said no'm well": [65535, 0], "so he said no'm well not": [65535, 0], "he said no'm well not very": [65535, 0], "said no'm well not very much": [65535, 0], "no'm well not very much the": [65535, 0], "well not very much the old": [65535, 0], "not very much the old lady": [65535, 0], "very much the old lady reached": [65535, 0], "much the old lady reached out": [65535, 0], "the old lady reached out her": [65535, 0], "old lady reached out her hand": [65535, 0], "lady reached out her hand and": [65535, 0], "reached out her hand and felt": [65535, 0], "out her hand and felt tom's": [65535, 0], "her hand and felt tom's shirt": [65535, 0], "hand and felt tom's shirt and": [65535, 0], "and felt tom's shirt and said": [65535, 0], "felt tom's shirt and said but": [65535, 0], "tom's shirt and said but you": [65535, 0], "shirt and said but you ain't": [65535, 0], "and said but you ain't too": [65535, 0], "said but you ain't too warm": [65535, 0], "but you ain't too warm now": [65535, 0], "you ain't too warm now though": [65535, 0], "ain't too warm now though and": [65535, 0], "too warm now though and it": [65535, 0], "warm now though and it flattered": [65535, 0], "now though and it flattered her": [65535, 0], "though and it flattered her to": [65535, 0], "and it flattered her to reflect": [65535, 0], "it flattered her to reflect that": [65535, 0], "flattered her to reflect that she": [65535, 0], "her to reflect that she had": [65535, 0], "to reflect that she had discovered": [65535, 0], "reflect that she had discovered that": [65535, 0], "that she had discovered that the": [65535, 0], "she had discovered that the shirt": [65535, 0], "had discovered that the shirt was": [65535, 0], "discovered that the shirt was dry": [65535, 0], "that the shirt was dry without": [65535, 0], "the shirt was dry without anybody": [65535, 0], "shirt was dry without anybody knowing": [65535, 0], "was dry without anybody knowing that": [65535, 0], "dry without anybody knowing that that": [65535, 0], "without anybody knowing that that was": [65535, 0], "anybody knowing that that was what": [65535, 0], "knowing that that was what she": [65535, 0], "that that was what she had": [65535, 0], "that was what she had in": [65535, 0], "was what she had in her": [65535, 0], "what she had in her mind": [65535, 0], "she had in her mind but": [65535, 0], "had in her mind but in": [65535, 0], "in her mind but in spite": [65535, 0], "her mind but in spite of": [65535, 0], "mind but in spite of her": [65535, 0], "but in spite of her tom": [65535, 0], "in spite of her tom knew": [65535, 0], "spite of her tom knew where": [65535, 0], "of her tom knew where the": [65535, 0], "her tom knew where the wind": [65535, 0], "tom knew where the wind lay": [65535, 0], "knew where the wind lay now": [65535, 0], "where the wind lay now so": [65535, 0], "the wind lay now so he": [65535, 0], "wind lay now so he forestalled": [65535, 0], "lay now so he forestalled what": [65535, 0], "now so he forestalled what might": [65535, 0], "so he forestalled what might be": [65535, 0], "he forestalled what might be the": [65535, 0], "forestalled what might be the next": [65535, 0], "what might be the next move": [65535, 0], "might be the next move some": [65535, 0], "be the next move some of": [65535, 0], "the next move some of us": [65535, 0], "next move some of us pumped": [65535, 0], "move some of us pumped on": [65535, 0], "some of us pumped on our": [65535, 0], "of us pumped on our heads": [65535, 0], "us pumped on our heads mine's": [65535, 0], "pumped on our heads mine's damp": [65535, 0], "on our heads mine's damp yet": [65535, 0], "our heads mine's damp yet see": [65535, 0], "heads mine's damp yet see aunt": [65535, 0], "mine's damp yet see aunt polly": [65535, 0], "damp yet see aunt polly was": [65535, 0], "yet see aunt polly was vexed": [65535, 0], "see aunt polly was vexed to": [65535, 0], "aunt polly was vexed to think": [65535, 0], "polly was vexed to think she": [65535, 0], "was vexed to think she had": [65535, 0], "vexed to think she had overlooked": [65535, 0], "to think she had overlooked that": [65535, 0], "think she had overlooked that bit": [65535, 0], "she had overlooked that bit of": [65535, 0], "had overlooked that bit of circumstantial": [65535, 0], "overlooked that bit of circumstantial evidence": [65535, 0], "that bit of circumstantial evidence and": [65535, 0], "bit of circumstantial evidence and missed": [65535, 0], "of circumstantial evidence and missed a": [65535, 0], "circumstantial evidence and missed a trick": [65535, 0], "evidence and missed a trick then": [65535, 0], "and missed a trick then she": [65535, 0], "missed a trick then she had": [65535, 0], "a trick then she had a": [65535, 0], "trick then she had a new": [65535, 0], "then she had a new inspiration": [65535, 0], "she had a new inspiration tom": [65535, 0], "had a new inspiration tom you": [65535, 0], "a new inspiration tom you didn't": [65535, 0], "new inspiration tom you didn't have": [65535, 0], "inspiration tom you didn't have to": [65535, 0], "tom you didn't have to undo": [65535, 0], "you didn't have to undo your": [65535, 0], "didn't have to undo your shirt": [65535, 0], "have to undo your shirt collar": [65535, 0], "to undo your shirt collar where": [65535, 0], "undo your shirt collar where i": [65535, 0], "your shirt collar where i sewed": [65535, 0], "shirt collar where i sewed it": [65535, 0], "collar where i sewed it to": [65535, 0], "where i sewed it to pump": [65535, 0], "i sewed it to pump on": [65535, 0], "sewed it to pump on your": [65535, 0], "it to pump on your head": [65535, 0], "to pump on your head did": [65535, 0], "pump on your head did you": [65535, 0], "on your head did you unbutton": [65535, 0], "your head did you unbutton your": [65535, 0], "head did you unbutton your jacket": [65535, 0], "did you unbutton your jacket the": [65535, 0], "you unbutton your jacket the trouble": [65535, 0], "unbutton your jacket the trouble vanished": [65535, 0], "your jacket the trouble vanished out": [65535, 0], "jacket the trouble vanished out of": [65535, 0], "the trouble vanished out of tom's": [65535, 0], "trouble vanished out of tom's face": [65535, 0], "vanished out of tom's face he": [65535, 0], "out of tom's face he opened": [65535, 0], "of tom's face he opened his": [65535, 0], "tom's face he opened his jacket": [65535, 0], "face he opened his jacket his": [65535, 0], "he opened his jacket his shirt": [65535, 0], "opened his jacket his shirt collar": [65535, 0], "his jacket his shirt collar was": [65535, 0], "jacket his shirt collar was securely": [65535, 0], "his shirt collar was securely sewed": [65535, 0], "shirt collar was securely sewed bother": [65535, 0], "collar was securely sewed bother well": [65535, 0], "was securely sewed bother well go": [65535, 0], "securely sewed bother well go 'long": [65535, 0], "sewed bother well go 'long with": [65535, 0], "bother well go 'long with you": [65535, 0], "well go 'long with you i'd": [65535, 0], "go 'long with you i'd made": [65535, 0], "'long with you i'd made sure": [65535, 0], "with you i'd made sure you'd": [65535, 0], "you i'd made sure you'd played": [65535, 0], "i'd made sure you'd played hookey": [65535, 0], "made sure you'd played hookey and": [65535, 0], "sure you'd played hookey and been": [65535, 0], "you'd played hookey and been a": [65535, 0], "played hookey and been a swimming": [65535, 0], "hookey and been a swimming but": [65535, 0], "and been a swimming but i": [65535, 0], "been a swimming but i forgive": [65535, 0], "a swimming but i forgive ye": [65535, 0], "swimming but i forgive ye tom": [65535, 0], "but i forgive ye tom i": [65535, 0], "i forgive ye tom i reckon": [65535, 0], "forgive ye tom i reckon you're": [65535, 0], "ye tom i reckon you're a": [65535, 0], "tom i reckon you're a kind": [65535, 0], "i reckon you're a kind of": [65535, 0], "reckon you're a kind of a": [65535, 0], "you're a kind of a singed": [65535, 0], "a kind of a singed cat": [65535, 0], "kind of a singed cat as": [65535, 0], "of a singed cat as the": [65535, 0], "a singed cat as the saying": [65535, 0], "singed cat as the saying is": [65535, 0], "cat as the saying is better'n": [65535, 0], "as the saying is better'n you": [65535, 0], "the saying is better'n you look": [65535, 0], "saying is better'n you look this": [65535, 0], "is better'n you look this time": [65535, 0], "better'n you look this time she": [65535, 0], "you look this time she was": [65535, 0], "look this time she was half": [65535, 0], "this time she was half sorry": [65535, 0], "time she was half sorry her": [65535, 0], "she was half sorry her sagacity": [65535, 0], "was half sorry her sagacity had": [65535, 0], "half sorry her sagacity had miscarried": [65535, 0], "sorry her sagacity had miscarried and": [65535, 0], "her sagacity had miscarried and half": [65535, 0], "sagacity had miscarried and half glad": [65535, 0], "had miscarried and half glad that": [65535, 0], "miscarried and half glad that tom": [65535, 0], "and half glad that tom had": [65535, 0], "half glad that tom had stumbled": [65535, 0], "glad that tom had stumbled into": [65535, 0], "that tom had stumbled into obedient": [65535, 0], "tom had stumbled into obedient conduct": [65535, 0], "had stumbled into obedient conduct for": [65535, 0], "stumbled into obedient conduct for once": [65535, 0], "into obedient conduct for once but": [65535, 0], "obedient conduct for once but sidney": [65535, 0], "conduct for once but sidney said": [65535, 0], "for once but sidney said well": [65535, 0], "once but sidney said well now": [65535, 0], "but sidney said well now if": [65535, 0], "sidney said well now if i": [65535, 0], "said well now if i didn't": [65535, 0], "well now if i didn't think": [65535, 0], "now if i didn't think you": [65535, 0], "if i didn't think you sewed": [65535, 0], "i didn't think you sewed his": [65535, 0], "didn't think you sewed his collar": [65535, 0], "think you sewed his collar with": [65535, 0], "you sewed his collar with white": [65535, 0], "sewed his collar with white thread": [65535, 0], "his collar with white thread but": [65535, 0], "collar with white thread but it's": [65535, 0], "with white thread but it's black": [65535, 0], "white thread but it's black why": [65535, 0], "thread but it's black why i": [65535, 0], "but it's black why i did": [65535, 0], "it's black why i did sew": [65535, 0], "black why i did sew it": [65535, 0], "why i did sew it with": [65535, 0], "i did sew it with white": [65535, 0], "did sew it with white tom": [65535, 0], "sew it with white tom but": [65535, 0], "it with white tom but tom": [65535, 0], "with white tom but tom did": [65535, 0], "white tom but tom did not": [65535, 0], "tom but tom did not wait": [65535, 0], "but tom did not wait for": [65535, 0], "tom did not wait for the": [65535, 0], "did not wait for the rest": [65535, 0], "not wait for the rest as": [65535, 0], "wait for the rest as he": [65535, 0], "for the rest as he went": [65535, 0], "the rest as he went out": [65535, 0], "rest as he went out at": [65535, 0], "as he went out at the": [65535, 0], "he went out at the door": [65535, 0], "went out at the door he": [65535, 0], "out at the door he said": [65535, 0], "at the door he said siddy": [65535, 0], "the door he said siddy i'll": [65535, 0], "door he said siddy i'll lick": [65535, 0], "he said siddy i'll lick you": [65535, 0], "said siddy i'll lick you for": [65535, 0], "siddy i'll lick you for that": [65535, 0], "i'll lick you for that in": [65535, 0], "lick you for that in a": [65535, 0], "you for that in a safe": [65535, 0], "for that in a safe place": [65535, 0], "that in a safe place tom": [65535, 0], "in a safe place tom examined": [65535, 0], "a safe place tom examined two": [65535, 0], "safe place tom examined two large": [65535, 0], "place tom examined two large needles": [65535, 0], "tom examined two large needles which": [65535, 0], "examined two large needles which were": [65535, 0], "two large needles which were thrust": [65535, 0], "large needles which were thrust into": [65535, 0], "needles which were thrust into the": [65535, 0], "which were thrust into the lapels": [65535, 0], "were thrust into the lapels of": [65535, 0], "thrust into the lapels of his": [65535, 0], "into the lapels of his jacket": [65535, 0], "the lapels of his jacket and": [65535, 0], "lapels of his jacket and had": [65535, 0], "of his jacket and had thread": [65535, 0], "his jacket and had thread bound": [65535, 0], "jacket and had thread bound about": [65535, 0], "and had thread bound about them": [65535, 0], "had thread bound about them one": [65535, 0], "thread bound about them one needle": [65535, 0], "bound about them one needle carried": [65535, 0], "about them one needle carried white": [65535, 0], "them one needle carried white thread": [65535, 0], "one needle carried white thread and": [65535, 0], "needle carried white thread and the": [65535, 0], "carried white thread and the other": [65535, 0], "white thread and the other black": [65535, 0], "thread and the other black he": [65535, 0], "and the other black he said": [65535, 0], "the other black he said she'd": [65535, 0], "other black he said she'd never": [65535, 0], "black he said she'd never noticed": [65535, 0], "he said she'd never noticed if": [65535, 0], "said she'd never noticed if it": [65535, 0], "she'd never noticed if it hadn't": [65535, 0], "never noticed if it hadn't been": [65535, 0], "noticed if it hadn't been for": [65535, 0], "if it hadn't been for sid": [65535, 0], "it hadn't been for sid confound": [65535, 0], "hadn't been for sid confound it": [65535, 0], "been for sid confound it sometimes": [65535, 0], "for sid confound it sometimes she": [65535, 0], "sid confound it sometimes she sews": [65535, 0], "confound it sometimes she sews it": [65535, 0], "it sometimes she sews it with": [65535, 0], "sometimes she sews it with white": [65535, 0], "she sews it with white and": [65535, 0], "sews it with white and sometimes": [65535, 0], "it with white and sometimes she": [65535, 0], "with white and sometimes she sews": [65535, 0], "white and sometimes she sews it": [65535, 0], "and sometimes she sews it with": [65535, 0], "sometimes she sews it with black": [65535, 0], "she sews it with black i": [65535, 0], "sews it with black i wish": [65535, 0], "it with black i wish to": [65535, 0], "with black i wish to geeminy": [65535, 0], "black i wish to geeminy she'd": [65535, 0], "i wish to geeminy she'd stick": [65535, 0], "wish to geeminy she'd stick to": [65535, 0], "to geeminy she'd stick to one": [65535, 0], "geeminy she'd stick to one or": [65535, 0], "she'd stick to one or t'other": [65535, 0], "stick to one or t'other i": [65535, 0], "to one or t'other i can't": [65535, 0], "one or t'other i can't keep": [65535, 0], "or t'other i can't keep the": [65535, 0], "t'other i can't keep the run": [65535, 0], "i can't keep the run of": [65535, 0], "can't keep the run of 'em": [65535, 0], "keep the run of 'em but": [65535, 0], "the run of 'em but i": [65535, 0], "run of 'em but i bet": [65535, 0], "of 'em but i bet you": [65535, 0], "'em but i bet you i'll": [65535, 0], "but i bet you i'll lam": [65535, 0], "i bet you i'll lam sid": [65535, 0], "bet you i'll lam sid for": [65535, 0], "you i'll lam sid for that": [65535, 0], "i'll lam sid for that i'll": [65535, 0], "lam sid for that i'll learn": [65535, 0], "sid for that i'll learn him": [65535, 0], "for that i'll learn him he": [65535, 0], "that i'll learn him he was": [65535, 0], "i'll learn him he was not": [65535, 0], "learn him he was not the": [65535, 0], "him he was not the model": [65535, 0], "he was not the model boy": [65535, 0], "was not the model boy of": [65535, 0], "not the model boy of the": [65535, 0], "the model boy of the village": [65535, 0], "model boy of the village he": [65535, 0], "boy of the village he knew": [65535, 0], "of the village he knew the": [65535, 0], "the village he knew the model": [65535, 0], "village he knew the model boy": [65535, 0], "he knew the model boy very": [65535, 0], "knew the model boy very well": [65535, 0], "the model boy very well though": [65535, 0], "model boy very well though and": [65535, 0], "boy very well though and loathed": [65535, 0], "very well though and loathed him": [65535, 0], "well though and loathed him within": [65535, 0], "though and loathed him within two": [65535, 0], "and loathed him within two minutes": [65535, 0], "loathed him within two minutes or": [65535, 0], "him within two minutes or even": [65535, 0], "within two minutes or even less": [65535, 0], "two minutes or even less he": [65535, 0], "minutes or even less he had": [65535, 0], "or even less he had forgotten": [65535, 0], "even less he had forgotten all": [65535, 0], "less he had forgotten all his": [65535, 0], "he had forgotten all his troubles": [65535, 0], "had forgotten all his troubles not": [65535, 0], "forgotten all his troubles not because": [65535, 0], "all his troubles not because his": [65535, 0], "his troubles not because his troubles": [65535, 0], "troubles not because his troubles were": [65535, 0], "not because his troubles were one": [65535, 0], "because his troubles were one whit": [65535, 0], "his troubles were one whit less": [65535, 0], "troubles were one whit less heavy": [65535, 0], "were one whit less heavy and": [65535, 0], "one whit less heavy and bitter": [65535, 0], "whit less heavy and bitter to": [65535, 0], "less heavy and bitter to him": [65535, 0], "heavy and bitter to him than": [65535, 0], "and bitter to him than a": [65535, 0], "bitter to him than a man's": [65535, 0], "to him than a man's are": [65535, 0], "him than a man's are to": [65535, 0], "than a man's are to a": [65535, 0], "a man's are to a man": [65535, 0], "man's are to a man but": [65535, 0], "are to a man but because": [65535, 0], "to a man but because a": [65535, 0], "a man but because a new": [65535, 0], "man but because a new and": [65535, 0], "but because a new and powerful": [65535, 0], "because a new and powerful interest": [65535, 0], "a new and powerful interest bore": [65535, 0], "new and powerful interest bore them": [65535, 0], "and powerful interest bore them down": [65535, 0], "powerful interest bore them down and": [65535, 0], "interest bore them down and drove": [65535, 0], "bore them down and drove them": [65535, 0], "them down and drove them out": [65535, 0], "down and drove them out of": [65535, 0], "and drove them out of his": [65535, 0], "drove them out of his mind": [65535, 0], "them out of his mind for": [65535, 0], "out of his mind for the": [65535, 0], "of his mind for the time": [65535, 0], "his mind for the time just": [65535, 0], "mind for the time just as": [65535, 0], "for the time just as men's": [65535, 0], "the time just as men's misfortunes": [65535, 0], "time just as men's misfortunes are": [65535, 0], "just as men's misfortunes are forgotten": [65535, 0], "as men's misfortunes are forgotten in": [65535, 0], "men's misfortunes are forgotten in the": [65535, 0], "misfortunes are forgotten in the excitement": [65535, 0], "are forgotten in the excitement of": [65535, 0], "forgotten in the excitement of new": [65535, 0], "in the excitement of new enterprises": [65535, 0], "the excitement of new enterprises this": [65535, 0], "excitement of new enterprises this new": [65535, 0], "of new enterprises this new interest": [65535, 0], "new enterprises this new interest was": [65535, 0], "enterprises this new interest was a": [65535, 0], "this new interest was a valued": [65535, 0], "new interest was a valued novelty": [65535, 0], "interest was a valued novelty in": [65535, 0], "was a valued novelty in whistling": [65535, 0], "a valued novelty in whistling which": [65535, 0], "valued novelty in whistling which he": [65535, 0], "novelty in whistling which he had": [65535, 0], "in whistling which he had just": [65535, 0], "whistling which he had just acquired": [65535, 0], "which he had just acquired from": [65535, 0], "he had just acquired from a": [65535, 0], "had just acquired from a negro": [65535, 0], "just acquired from a negro and": [65535, 0], "acquired from a negro and he": [65535, 0], "from a negro and he was": [65535, 0], "a negro and he was suffering": [65535, 0], "negro and he was suffering to": [65535, 0], "and he was suffering to practise": [65535, 0], "he was suffering to practise it": [65535, 0], "was suffering to practise it undisturbed": [65535, 0], "suffering to practise it undisturbed it": [65535, 0], "to practise it undisturbed it consisted": [65535, 0], "practise it undisturbed it consisted in": [65535, 0], "it undisturbed it consisted in a": [65535, 0], "undisturbed it consisted in a peculiar": [65535, 0], "it consisted in a peculiar bird": [65535, 0], "consisted in a peculiar bird like": [65535, 0], "in a peculiar bird like turn": [65535, 0], "a peculiar bird like turn a": [65535, 0], "peculiar bird like turn a sort": [65535, 0], "bird like turn a sort of": [65535, 0], "like turn a sort of liquid": [65535, 0], "turn a sort of liquid warble": [65535, 0], "a sort of liquid warble produced": [65535, 0], "sort of liquid warble produced by": [65535, 0], "of liquid warble produced by touching": [65535, 0], "liquid warble produced by touching the": [65535, 0], "warble produced by touching the tongue": [65535, 0], "produced by touching the tongue to": [65535, 0], "by touching the tongue to the": [65535, 0], "touching the tongue to the roof": [65535, 0], "the tongue to the roof of": [65535, 0], "tongue to the roof of the": [65535, 0], "to the roof of the mouth": [65535, 0], "the roof of the mouth at": [65535, 0], "roof of the mouth at short": [65535, 0], "of the mouth at short intervals": [65535, 0], "the mouth at short intervals in": [65535, 0], "mouth at short intervals in the": [65535, 0], "at short intervals in the midst": [65535, 0], "short intervals in the midst of": [65535, 0], "intervals in the midst of the": [65535, 0], "in the midst of the music": [65535, 0], "the midst of the music the": [65535, 0], "midst of the music the reader": [65535, 0], "of the music the reader probably": [65535, 0], "the music the reader probably remembers": [65535, 0], "music the reader probably remembers how": [65535, 0], "the reader probably remembers how to": [65535, 0], "reader probably remembers how to do": [65535, 0], "probably remembers how to do it": [65535, 0], "remembers how to do it if": [65535, 0], "how to do it if he": [65535, 0], "to do it if he has": [65535, 0], "do it if he has ever": [65535, 0], "it if he has ever been": [65535, 0], "if he has ever been a": [65535, 0], "he has ever been a boy": [65535, 0], "has ever been a boy diligence": [65535, 0], "ever been a boy diligence and": [65535, 0], "been a boy diligence and attention": [65535, 0], "a boy diligence and attention soon": [65535, 0], "boy diligence and attention soon gave": [65535, 0], "diligence and attention soon gave him": [65535, 0], "and attention soon gave him the": [65535, 0], "attention soon gave him the knack": [65535, 0], "soon gave him the knack of": [65535, 0], "gave him the knack of it": [65535, 0], "him the knack of it and": [65535, 0], "the knack of it and he": [65535, 0], "knack of it and he strode": [65535, 0], "of it and he strode down": [65535, 0], "it and he strode down the": [65535, 0], "and he strode down the street": [65535, 0], "he strode down the street with": [65535, 0], "strode down the street with his": [65535, 0], "down the street with his mouth": [65535, 0], "the street with his mouth full": [65535, 0], "street with his mouth full of": [65535, 0], "with his mouth full of harmony": [65535, 0], "his mouth full of harmony and": [65535, 0], "mouth full of harmony and his": [65535, 0], "full of harmony and his soul": [65535, 0], "of harmony and his soul full": [65535, 0], "harmony and his soul full of": [65535, 0], "and his soul full of gratitude": [65535, 0], "his soul full of gratitude he": [65535, 0], "soul full of gratitude he felt": [65535, 0], "full of gratitude he felt much": [65535, 0], "of gratitude he felt much as": [65535, 0], "gratitude he felt much as an": [65535, 0], "he felt much as an astronomer": [65535, 0], "felt much as an astronomer feels": [65535, 0], "much as an astronomer feels who": [65535, 0], "as an astronomer feels who has": [65535, 0], "an astronomer feels who has discovered": [65535, 0], "astronomer feels who has discovered a": [65535, 0], "feels who has discovered a new": [65535, 0], "who has discovered a new planet": [65535, 0], "has discovered a new planet no": [65535, 0], "discovered a new planet no doubt": [65535, 0], "a new planet no doubt as": [65535, 0], "new planet no doubt as far": [65535, 0], "planet no doubt as far as": [65535, 0], "no doubt as far as strong": [65535, 0], "doubt as far as strong deep": [65535, 0], "as far as strong deep unalloyed": [65535, 0], "far as strong deep unalloyed pleasure": [65535, 0], "as strong deep unalloyed pleasure is": [65535, 0], "strong deep unalloyed pleasure is concerned": [65535, 0], "deep unalloyed pleasure is concerned the": [65535, 0], "unalloyed pleasure is concerned the advantage": [65535, 0], "pleasure is concerned the advantage was": [65535, 0], "is concerned the advantage was with": [65535, 0], "concerned the advantage was with the": [65535, 0], "the advantage was with the boy": [65535, 0], "advantage was with the boy not": [65535, 0], "was with the boy not the": [65535, 0], "with the boy not the astronomer": [65535, 0], "the boy not the astronomer the": [65535, 0], "boy not the astronomer the summer": [65535, 0], "not the astronomer the summer evenings": [65535, 0], "the astronomer the summer evenings were": [65535, 0], "astronomer the summer evenings were long": [65535, 0], "the summer evenings were long it": [65535, 0], "summer evenings were long it was": [65535, 0], "evenings were long it was not": [65535, 0], "were long it was not dark": [65535, 0], "long it was not dark yet": [65535, 0], "it was not dark yet presently": [65535, 0], "was not dark yet presently tom": [65535, 0], "not dark yet presently tom checked": [65535, 0], "dark yet presently tom checked his": [65535, 0], "yet presently tom checked his whistle": [65535, 0], "presently tom checked his whistle a": [65535, 0], "tom checked his whistle a stranger": [65535, 0], "checked his whistle a stranger was": [65535, 0], "his whistle a stranger was before": [65535, 0], "whistle a stranger was before him": [65535, 0], "a stranger was before him a": [65535, 0], "stranger was before him a boy": [65535, 0], "was before him a boy a": [65535, 0], "before him a boy a shade": [65535, 0], "him a boy a shade larger": [65535, 0], "a boy a shade larger than": [65535, 0], "boy a shade larger than himself": [65535, 0], "a shade larger than himself a": [65535, 0], "shade larger than himself a new": [65535, 0], "larger than himself a new comer": [65535, 0], "than himself a new comer of": [65535, 0], "himself a new comer of any": [65535, 0], "a new comer of any age": [65535, 0], "new comer of any age or": [65535, 0], "comer of any age or either": [65535, 0], "of any age or either sex": [65535, 0], "any age or either sex was": [65535, 0], "age or either sex was an": [65535, 0], "or either sex was an impressive": [65535, 0], "either sex was an impressive curiosity": [65535, 0], "sex was an impressive curiosity in": [65535, 0], "was an impressive curiosity in the": [65535, 0], "an impressive curiosity in the poor": [65535, 0], "impressive curiosity in the poor little": [65535, 0], "curiosity in the poor little shabby": [65535, 0], "in the poor little shabby village": [65535, 0], "the poor little shabby village of": [65535, 0], "poor little shabby village of st": [65535, 0], "little shabby village of st petersburg": [65535, 0], "shabby village of st petersburg this": [65535, 0], "village of st petersburg this boy": [65535, 0], "of st petersburg this boy was": [65535, 0], "st petersburg this boy was well": [65535, 0], "petersburg this boy was well dressed": [65535, 0], "this boy was well dressed too": [65535, 0], "boy was well dressed too well": [65535, 0], "was well dressed too well dressed": [65535, 0], "well dressed too well dressed on": [65535, 0], "dressed too well dressed on a": [65535, 0], "too well dressed on a week": [65535, 0], "well dressed on a week day": [65535, 0], "dressed on a week day this": [65535, 0], "on a week day this was": [65535, 0], "a week day this was simply": [65535, 0], "week day this was simply astounding": [65535, 0], "day this was simply astounding his": [65535, 0], "this was simply astounding his cap": [65535, 0], "was simply astounding his cap was": [65535, 0], "simply astounding his cap was a": [65535, 0], "astounding his cap was a dainty": [65535, 0], "his cap was a dainty thing": [65535, 0], "cap was a dainty thing his": [65535, 0], "was a dainty thing his closebuttoned": [65535, 0], "a dainty thing his closebuttoned blue": [65535, 0], "dainty thing his closebuttoned blue cloth": [65535, 0], "thing his closebuttoned blue cloth roundabout": [65535, 0], "his closebuttoned blue cloth roundabout was": [65535, 0], "closebuttoned blue cloth roundabout was new": [65535, 0], "blue cloth roundabout was new and": [65535, 0], "cloth roundabout was new and natty": [65535, 0], "roundabout was new and natty and": [65535, 0], "was new and natty and so": [65535, 0], "new and natty and so were": [65535, 0], "and natty and so were his": [65535, 0], "natty and so were his pantaloons": [65535, 0], "and so were his pantaloons he": [65535, 0], "so were his pantaloons he had": [65535, 0], "were his pantaloons he had shoes": [65535, 0], "his pantaloons he had shoes on": [65535, 0], "pantaloons he had shoes on and": [65535, 0], "he had shoes on and it": [65535, 0], "had shoes on and it was": [65535, 0], "shoes on and it was only": [65535, 0], "on and it was only friday": [65535, 0], "and it was only friday he": [65535, 0], "it was only friday he even": [65535, 0], "was only friday he even wore": [65535, 0], "only friday he even wore a": [65535, 0], "friday he even wore a necktie": [65535, 0], "he even wore a necktie a": [65535, 0], "even wore a necktie a bright": [65535, 0], "wore a necktie a bright bit": [65535, 0], "a necktie a bright bit of": [65535, 0], "necktie a bright bit of ribbon": [65535, 0], "a bright bit of ribbon he": [65535, 0], "bright bit of ribbon he had": [65535, 0], "bit of ribbon he had a": [65535, 0], "of ribbon he had a citified": [65535, 0], "ribbon he had a citified air": [65535, 0], "he had a citified air about": [65535, 0], "had a citified air about him": [65535, 0], "a citified air about him that": [65535, 0], "citified air about him that ate": [65535, 0], "air about him that ate into": [65535, 0], "about him that ate into tom's": [65535, 0], "him that ate into tom's vitals": [65535, 0], "that ate into tom's vitals the": [65535, 0], "ate into tom's vitals the more": [65535, 0], "into tom's vitals the more tom": [65535, 0], "tom's vitals the more tom stared": [65535, 0], "vitals the more tom stared at": [65535, 0], "the more tom stared at the": [65535, 0], "more tom stared at the splendid": [65535, 0], "tom stared at the splendid marvel": [65535, 0], "stared at the splendid marvel the": [65535, 0], "at the splendid marvel the higher": [65535, 0], "the splendid marvel the higher he": [65535, 0], "splendid marvel the higher he turned": [65535, 0], "marvel the higher he turned up": [65535, 0], "the higher he turned up his": [65535, 0], "higher he turned up his nose": [65535, 0], "he turned up his nose at": [65535, 0], "turned up his nose at his": [65535, 0], "up his nose at his finery": [65535, 0], "his nose at his finery and": [65535, 0], "nose at his finery and the": [65535, 0], "at his finery and the shabbier": [65535, 0], "his finery and the shabbier and": [65535, 0], "finery and the shabbier and shabbier": [65535, 0], "and the shabbier and shabbier his": [65535, 0], "the shabbier and shabbier his own": [65535, 0], "shabbier and shabbier his own outfit": [65535, 0], "and shabbier his own outfit seemed": [65535, 0], "shabbier his own outfit seemed to": [65535, 0], "his own outfit seemed to him": [65535, 0], "own outfit seemed to him to": [65535, 0], "outfit seemed to him to grow": [65535, 0], "seemed to him to grow neither": [65535, 0], "to him to grow neither boy": [65535, 0], "him to grow neither boy spoke": [65535, 0], "to grow neither boy spoke if": [65535, 0], "grow neither boy spoke if one": [65535, 0], "neither boy spoke if one moved": [65535, 0], "boy spoke if one moved the": [65535, 0], "spoke if one moved the other": [65535, 0], "if one moved the other moved": [65535, 0], "one moved the other moved but": [65535, 0], "moved the other moved but only": [65535, 0], "the other moved but only sidewise": [65535, 0], "other moved but only sidewise in": [65535, 0], "moved but only sidewise in a": [65535, 0], "but only sidewise in a circle": [65535, 0], "only sidewise in a circle they": [65535, 0], "sidewise in a circle they kept": [65535, 0], "in a circle they kept face": [65535, 0], "a circle they kept face to": [65535, 0], "circle they kept face to face": [65535, 0], "they kept face to face and": [65535, 0], "kept face to face and eye": [65535, 0], "face to face and eye to": [65535, 0], "to face and eye to eye": [65535, 0], "face and eye to eye all": [65535, 0], "and eye to eye all the": [65535, 0], "eye to eye all the time": [65535, 0], "to eye all the time finally": [65535, 0], "eye all the time finally tom": [65535, 0], "all the time finally tom said": [65535, 0], "the time finally tom said i": [65535, 0], "time finally tom said i can": [65535, 0], "finally tom said i can lick": [65535, 0], "tom said i can lick you": [65535, 0], "said i can lick you i'd": [65535, 0], "i can lick you i'd like": [65535, 0], "can lick you i'd like to": [65535, 0], "lick you i'd like to see": [65535, 0], "you i'd like to see you": [65535, 0], "i'd like to see you try": [65535, 0], "like to see you try it": [65535, 0], "to see you try it well": [65535, 0], "see you try it well i": [65535, 0], "you try it well i can": [65535, 0], "try it well i can do": [65535, 0], "it well i can do it": [65535, 0], "well i can do it no": [65535, 0], "i can do it no you": [65535, 0], "can do it no you can't": [65535, 0], "do it no you can't either": [65535, 0], "it no you can't either yes": [65535, 0], "no you can't either yes i": [65535, 0], "you can't either yes i can": [65535, 0], "can't either yes i can no": [65535, 0], "either yes i can no you": [65535, 0], "yes i can no you can't": [65535, 0], "i can no you can't i": [65535, 0], "can no you can't i can": [65535, 0], "no you can't i can you": [65535, 0], "you can't i can you can't": [65535, 0], "can't i can you can't can": [65535, 0], "i can you can't can can't": [65535, 0], "can you can't can can't an": [65535, 0], "you can't can can't an uncomfortable": [65535, 0], "can't can can't an uncomfortable pause": [65535, 0], "can can't an uncomfortable pause then": [65535, 0], "can't an uncomfortable pause then tom": [65535, 0], "an uncomfortable pause then tom said": [65535, 0], "uncomfortable pause then tom said what's": [65535, 0], "pause then tom said what's your": [65535, 0], "then tom said what's your name": [65535, 0], "tom said what's your name 'tisn't": [65535, 0], "said what's your name 'tisn't any": [65535, 0], "what's your name 'tisn't any of": [65535, 0], "your name 'tisn't any of your": [65535, 0], "name 'tisn't any of your business": [65535, 0], "'tisn't any of your business maybe": [65535, 0], "any of your business maybe well": [65535, 0], "of your business maybe well i": [65535, 0], "your business maybe well i 'low": [65535, 0], "business maybe well i 'low i'll": [65535, 0], "maybe well i 'low i'll make": [65535, 0], "well i 'low i'll make it": [65535, 0], "i 'low i'll make it my": [65535, 0], "'low i'll make it my business": [65535, 0], "i'll make it my business well": [65535, 0], "make it my business well why": [65535, 0], "it my business well why don't": [65535, 0], "my business well why don't you": [65535, 0], "business well why don't you if": [65535, 0], "well why don't you if you": [65535, 0], "why don't you if you say": [65535, 0], "don't you if you say much": [65535, 0], "you if you say much i": [65535, 0], "if you say much i will": [65535, 0], "you say much i will much": [65535, 0], "say much i will much much": [65535, 0], "much i will much much much": [65535, 0], "i will much much much there": [65535, 0], "will much much much there now": [65535, 0], "much much much there now oh": [65535, 0], "much much there now oh you": [65535, 0], "much there now oh you think": [65535, 0], "there now oh you think you're": [65535, 0], "now oh you think you're mighty": [65535, 0], "oh you think you're mighty smart": [65535, 0], "you think you're mighty smart don't": [65535, 0], "think you're mighty smart don't you": [65535, 0], "you're mighty smart don't you i": [65535, 0], "mighty smart don't you i could": [65535, 0], "smart don't you i could lick": [65535, 0], "don't you i could lick you": [65535, 0], "you i could lick you with": [65535, 0], "i could lick you with one": [65535, 0], "could lick you with one hand": [65535, 0], "lick you with one hand tied": [65535, 0], "you with one hand tied behind": [65535, 0], "with one hand tied behind me": [65535, 0], "one hand tied behind me if": [65535, 0], "hand tied behind me if i": [65535, 0], "tied behind me if i wanted": [65535, 0], "behind me if i wanted to": [65535, 0], "me if i wanted to well": [65535, 0], "to well why don't you do": [65535, 0], "well why don't you do it": [65535, 0], "why don't you do it you": [65535, 0], "don't you do it you say": [65535, 0], "you do it you say you": [65535, 0], "do it you say you can": [65535, 0], "it you say you can do": [65535, 0], "you say you can do it": [65535, 0], "say you can do it well": [65535, 0], "you can do it well i": [65535, 0], "can do it well i will": [65535, 0], "do it well i will if": [65535, 0], "it well i will if you": [65535, 0], "well i will if you fool": [65535, 0], "i will if you fool with": [65535, 0], "will if you fool with me": [65535, 0], "if you fool with me oh": [65535, 0], "you fool with me oh yes": [65535, 0], "fool with me oh yes i've": [65535, 0], "with me oh yes i've seen": [65535, 0], "me oh yes i've seen whole": [65535, 0], "oh yes i've seen whole families": [65535, 0], "yes i've seen whole families in": [65535, 0], "i've seen whole families in the": [65535, 0], "seen whole families in the same": [65535, 0], "whole families in the same fix": [65535, 0], "families in the same fix smarty": [65535, 0], "in the same fix smarty you": [65535, 0], "the same fix smarty you think": [65535, 0], "same fix smarty you think you're": [65535, 0], "fix smarty you think you're some": [65535, 0], "smarty you think you're some now": [65535, 0], "you think you're some now don't": [65535, 0], "think you're some now don't you": [65535, 0], "you're some now don't you oh": [65535, 0], "some now don't you oh what": [65535, 0], "now don't you oh what a": [65535, 0], "don't you oh what a hat": [65535, 0], "you oh what a hat you": [65535, 0], "oh what a hat you can": [65535, 0], "what a hat you can lump": [65535, 0], "a hat you can lump that": [65535, 0], "hat you can lump that hat": [65535, 0], "you can lump that hat if": [65535, 0], "can lump that hat if you": [65535, 0], "lump that hat if you don't": [65535, 0], "that hat if you don't like": [65535, 0], "hat if you don't like it": [65535, 0], "if you don't like it i": [65535, 0], "you don't like it i dare": [65535, 0], "don't like it i dare you": [65535, 0], "like it i dare you to": [65535, 0], "it i dare you to knock": [65535, 0], "i dare you to knock it": [65535, 0], "dare you to knock it off": [65535, 0], "you to knock it off and": [65535, 0], "to knock it off and anybody": [65535, 0], "knock it off and anybody that'll": [65535, 0], "it off and anybody that'll take": [65535, 0], "off and anybody that'll take a": [65535, 0], "and anybody that'll take a dare": [65535, 0], "anybody that'll take a dare will": [65535, 0], "that'll take a dare will suck": [65535, 0], "take a dare will suck eggs": [65535, 0], "a dare will suck eggs you're": [65535, 0], "dare will suck eggs you're a": [65535, 0], "will suck eggs you're a liar": [65535, 0], "suck eggs you're a liar you're": [65535, 0], "eggs you're a liar you're another": [65535, 0], "you're a liar you're another you're": [65535, 0], "a liar you're another you're a": [65535, 0], "liar you're another you're a fighting": [65535, 0], "you're another you're a fighting liar": [65535, 0], "another you're a fighting liar and": [65535, 0], "you're a fighting liar and dasn't": [65535, 0], "a fighting liar and dasn't take": [65535, 0], "fighting liar and dasn't take it": [65535, 0], "liar and dasn't take it up": [65535, 0], "and dasn't take it up aw": [65535, 0], "dasn't take it up aw take": [65535, 0], "take it up aw take a": [65535, 0], "it up aw take a walk": [65535, 0], "up aw take a walk say": [65535, 0], "aw take a walk say if": [65535, 0], "take a walk say if you": [65535, 0], "a walk say if you give": [65535, 0], "walk say if you give me": [65535, 0], "say if you give me much": [65535, 0], "if you give me much more": [65535, 0], "you give me much more of": [65535, 0], "give me much more of your": [65535, 0], "me much more of your sass": [65535, 0], "much more of your sass i'll": [65535, 0], "more of your sass i'll take": [65535, 0], "of your sass i'll take and": [65535, 0], "your sass i'll take and bounce": [65535, 0], "sass i'll take and bounce a": [65535, 0], "i'll take and bounce a rock": [65535, 0], "take and bounce a rock off'n": [65535, 0], "and bounce a rock off'n your": [65535, 0], "bounce a rock off'n your head": [65535, 0], "a rock off'n your head oh": [65535, 0], "rock off'n your head oh of": [65535, 0], "off'n your head oh of course": [65535, 0], "your head oh of course you": [65535, 0], "head oh of course you will": [65535, 0], "oh of course you will well": [65535, 0], "of course you will well i": [65535, 0], "course you will well i will": [65535, 0], "you will well i will well": [65535, 0], "will well i will well why": [65535, 0], "well i will well why don't": [65535, 0], "i will well why don't you": [65535, 0], "will well why don't you do": [65535, 0], "why don't you do it then": [65535, 0], "don't you do it then what": [65535, 0], "you do it then what do": [65535, 0], "do it then what do you": [65535, 0], "it then what do you keep": [65535, 0], "then what do you keep saying": [65535, 0], "what do you keep saying you": [65535, 0], "do you keep saying you will": [65535, 0], "you keep saying you will for": [65535, 0], "keep saying you will for why": [65535, 0], "saying you will for why don't": [65535, 0], "you will for why don't you": [65535, 0], "will for why don't you do": [65535, 0], "for why don't you do it": [65535, 0], "why don't you do it it's": [65535, 0], "don't you do it it's because": [65535, 0], "you do it it's because you're": [65535, 0], "do it it's because you're afraid": [65535, 0], "it it's because you're afraid i": [65535, 0], "it's because you're afraid i ain't": [65535, 0], "because you're afraid i ain't afraid": [65535, 0], "you're afraid i ain't afraid you": [65535, 0], "afraid i ain't afraid you are": [65535, 0], "i ain't afraid you are i": [65535, 0], "ain't afraid you are i ain't": [65535, 0], "afraid you are i ain't you": [65535, 0], "you are i ain't you are": [65535, 0], "are i ain't you are another": [65535, 0], "i ain't you are another pause": [65535, 0], "ain't you are another pause and": [65535, 0], "you are another pause and more": [65535, 0], "are another pause and more eying": [65535, 0], "another pause and more eying and": [65535, 0], "pause and more eying and sidling": [65535, 0], "and more eying and sidling around": [65535, 0], "more eying and sidling around each": [65535, 0], "eying and sidling around each other": [65535, 0], "and sidling around each other presently": [65535, 0], "sidling around each other presently they": [65535, 0], "around each other presently they were": [65535, 0], "each other presently they were shoulder": [65535, 0], "other presently they were shoulder to": [65535, 0], "presently they were shoulder to shoulder": [65535, 0], "they were shoulder to shoulder tom": [65535, 0], "were shoulder to shoulder tom said": [65535, 0], "shoulder to shoulder tom said get": [65535, 0], "to shoulder tom said get away": [65535, 0], "shoulder tom said get away from": [65535, 0], "tom said get away from here": [65535, 0], "said get away from here go": [65535, 0], "get away from here go away": [65535, 0], "away from here go away yourself": [65535, 0], "from here go away yourself i": [65535, 0], "here go away yourself i won't": [65535, 0], "go away yourself i won't i": [65535, 0], "away yourself i won't i won't": [65535, 0], "yourself i won't i won't either": [65535, 0], "i won't i won't either so": [65535, 0], "won't i won't either so they": [65535, 0], "i won't either so they stood": [65535, 0], "won't either so they stood each": [65535, 0], "either so they stood each with": [65535, 0], "so they stood each with a": [65535, 0], "they stood each with a foot": [65535, 0], "stood each with a foot placed": [65535, 0], "each with a foot placed at": [65535, 0], "with a foot placed at an": [65535, 0], "a foot placed at an angle": [65535, 0], "foot placed at an angle as": [65535, 0], "placed at an angle as a": [65535, 0], "at an angle as a brace": [65535, 0], "an angle as a brace and": [65535, 0], "angle as a brace and both": [65535, 0], "as a brace and both shoving": [65535, 0], "a brace and both shoving with": [65535, 0], "brace and both shoving with might": [65535, 0], "and both shoving with might and": [65535, 0], "both shoving with might and main": [65535, 0], "shoving with might and main and": [65535, 0], "with might and main and glowering": [65535, 0], "might and main and glowering at": [65535, 0], "and main and glowering at each": [65535, 0], "main and glowering at each other": [65535, 0], "and glowering at each other with": [65535, 0], "glowering at each other with hate": [65535, 0], "at each other with hate but": [65535, 0], "each other with hate but neither": [65535, 0], "other with hate but neither could": [65535, 0], "with hate but neither could get": [65535, 0], "hate but neither could get an": [65535, 0], "but neither could get an advantage": [65535, 0], "neither could get an advantage after": [65535, 0], "could get an advantage after struggling": [65535, 0], "get an advantage after struggling till": [65535, 0], "an advantage after struggling till both": [65535, 0], "advantage after struggling till both were": [65535, 0], "after struggling till both were hot": [65535, 0], "struggling till both were hot and": [65535, 0], "till both were hot and flushed": [65535, 0], "both were hot and flushed each": [65535, 0], "were hot and flushed each relaxed": [65535, 0], "hot and flushed each relaxed his": [65535, 0], "and flushed each relaxed his strain": [65535, 0], "flushed each relaxed his strain with": [65535, 0], "each relaxed his strain with watchful": [65535, 0], "relaxed his strain with watchful caution": [65535, 0], "his strain with watchful caution and": [65535, 0], "strain with watchful caution and tom": [65535, 0], "with watchful caution and tom said": [65535, 0], "watchful caution and tom said you're": [65535, 0], "caution and tom said you're a": [65535, 0], "and tom said you're a coward": [65535, 0], "tom said you're a coward and": [65535, 0], "said you're a coward and a": [65535, 0], "you're a coward and a pup": [65535, 0], "a coward and a pup i'll": [65535, 0], "coward and a pup i'll tell": [65535, 0], "and a pup i'll tell my": [65535, 0], "a pup i'll tell my big": [65535, 0], "pup i'll tell my big brother": [65535, 0], "i'll tell my big brother on": [65535, 0], "tell my big brother on you": [65535, 0], "my big brother on you and": [65535, 0], "big brother on you and he": [65535, 0], "brother on you and he can": [65535, 0], "on you and he can thrash": [65535, 0], "you and he can thrash you": [65535, 0], "and he can thrash you with": [65535, 0], "he can thrash you with his": [65535, 0], "can thrash you with his little": [65535, 0], "thrash you with his little finger": [65535, 0], "you with his little finger and": [65535, 0], "with his little finger and i'll": [65535, 0], "his little finger and i'll make": [65535, 0], "little finger and i'll make him": [65535, 0], "finger and i'll make him do": [65535, 0], "and i'll make him do it": [65535, 0], "i'll make him do it too": [65535, 0], "make him do it too what": [65535, 0], "him do it too what do": [65535, 0], "do it too what do i": [65535, 0], "it too what do i care": [65535, 0], "too what do i care for": [65535, 0], "what do i care for your": [65535, 0], "do i care for your big": [65535, 0], "i care for your big brother": [65535, 0], "care for your big brother i've": [65535, 0], "for your big brother i've got": [65535, 0], "your big brother i've got a": [65535, 0], "big brother i've got a brother": [65535, 0], "brother i've got a brother that's": [65535, 0], "i've got a brother that's bigger": [65535, 0], "got a brother that's bigger than": [65535, 0], "a brother that's bigger than he": [65535, 0], "brother that's bigger than he is": [65535, 0], "that's bigger than he is and": [65535, 0], "bigger than he is and what's": [65535, 0], "than he is and what's more": [65535, 0], "he is and what's more he": [65535, 0], "is and what's more he can": [65535, 0], "and what's more he can throw": [65535, 0], "what's more he can throw him": [65535, 0], "more he can throw him over": [65535, 0], "he can throw him over that": [65535, 0], "can throw him over that fence": [65535, 0], "throw him over that fence too": [65535, 0], "him over that fence too both": [65535, 0], "over that fence too both brothers": [65535, 0], "that fence too both brothers were": [65535, 0], "fence too both brothers were imaginary": [65535, 0], "too both brothers were imaginary that's": [65535, 0], "both brothers were imaginary that's a": [65535, 0], "brothers were imaginary that's a lie": [65535, 0], "were imaginary that's a lie your": [65535, 0], "imaginary that's a lie your saying": [65535, 0], "that's a lie your saying so": [65535, 0], "a lie your saying so don't": [65535, 0], "lie your saying so don't make": [65535, 0], "your saying so don't make it": [65535, 0], "saying so don't make it so": [65535, 0], "so don't make it so tom": [65535, 0], "don't make it so tom drew": [65535, 0], "make it so tom drew a": [65535, 0], "it so tom drew a line": [65535, 0], "so tom drew a line in": [65535, 0], "tom drew a line in the": [65535, 0], "drew a line in the dust": [65535, 0], "a line in the dust with": [65535, 0], "line in the dust with his": [65535, 0], "in the dust with his big": [65535, 0], "the dust with his big toe": [65535, 0], "dust with his big toe and": [65535, 0], "with his big toe and said": [65535, 0], "his big toe and said i": [65535, 0], "big toe and said i dare": [65535, 0], "toe and said i dare you": [65535, 0], "and said i dare you to": [65535, 0], "said i dare you to step": [65535, 0], "i dare you to step over": [65535, 0], "dare you to step over that": [65535, 0], "you to step over that and": [65535, 0], "to step over that and i'll": [65535, 0], "step over that and i'll lick": [65535, 0], "over that and i'll lick you": [65535, 0], "that and i'll lick you till": [65535, 0], "and i'll lick you till you": [65535, 0], "i'll lick you till you can't": [65535, 0], "lick you till you can't stand": [65535, 0], "you till you can't stand up": [65535, 0], "till you can't stand up anybody": [65535, 0], "you can't stand up anybody that'll": [65535, 0], "can't stand up anybody that'll take": [65535, 0], "stand up anybody that'll take a": [65535, 0], "up anybody that'll take a dare": [65535, 0], "that'll take a dare will steal": [65535, 0], "take a dare will steal sheep": [65535, 0], "a dare will steal sheep the": [65535, 0], "dare will steal sheep the new": [65535, 0], "will steal sheep the new boy": [65535, 0], "steal sheep the new boy stepped": [65535, 0], "sheep the new boy stepped over": [65535, 0], "the new boy stepped over promptly": [65535, 0], "new boy stepped over promptly and": [65535, 0], "boy stepped over promptly and said": [65535, 0], "stepped over promptly and said now": [65535, 0], "over promptly and said now you": [65535, 0], "promptly and said now you said": [65535, 0], "and said now you said you'd": [65535, 0], "said now you said you'd do": [65535, 0], "now you said you'd do it": [65535, 0], "you said you'd do it now": [65535, 0], "said you'd do it now let's": [65535, 0], "you'd do it now let's see": [65535, 0], "do it now let's see you": [65535, 0], "it now let's see you do": [65535, 0], "now let's see you do it": [65535, 0], "let's see you do it don't": [65535, 0], "see you do it don't you": [65535, 0], "you do it don't you crowd": [65535, 0], "do it don't you crowd me": [65535, 0], "it don't you crowd me now": [65535, 0], "don't you crowd me now you": [65535, 0], "you crowd me now you better": [65535, 0], "crowd me now you better look": [65535, 0], "me now you better look out": [65535, 0], "now you better look out well": [65535, 0], "you better look out well you": [65535, 0], "better look out well you said": [65535, 0], "look out well you said you'd": [65535, 0], "out well you said you'd do": [65535, 0], "well you said you'd do it": [65535, 0], "you said you'd do it why": [65535, 0], "said you'd do it why don't": [65535, 0], "you'd do it why don't you": [65535, 0], "do it why don't you do": [65535, 0], "it why don't you do it": [65535, 0], "why don't you do it by": [65535, 0], "don't you do it by jingo": [65535, 0], "you do it by jingo for": [65535, 0], "do it by jingo for two": [65535, 0], "it by jingo for two cents": [65535, 0], "by jingo for two cents i": [65535, 0], "jingo for two cents i will": [65535, 0], "for two cents i will do": [65535, 0], "two cents i will do it": [65535, 0], "cents i will do it the": [65535, 0], "i will do it the new": [65535, 0], "will do it the new boy": [65535, 0], "do it the new boy took": [65535, 0], "it the new boy took two": [65535, 0], "the new boy took two broad": [65535, 0], "new boy took two broad coppers": [65535, 0], "boy took two broad coppers out": [65535, 0], "took two broad coppers out of": [65535, 0], "two broad coppers out of his": [65535, 0], "broad coppers out of his pocket": [65535, 0], "coppers out of his pocket and": [65535, 0], "out of his pocket and held": [65535, 0], "of his pocket and held them": [65535, 0], "his pocket and held them out": [65535, 0], "pocket and held them out with": [65535, 0], "and held them out with derision": [65535, 0], "held them out with derision tom": [65535, 0], "them out with derision tom struck": [65535, 0], "out with derision tom struck them": [65535, 0], "with derision tom struck them to": [65535, 0], "derision tom struck them to the": [65535, 0], "tom struck them to the ground": [65535, 0], "struck them to the ground in": [65535, 0], "them to the ground in an": [65535, 0], "to the ground in an instant": [65535, 0], "the ground in an instant both": [65535, 0], "ground in an instant both boys": [65535, 0], "in an instant both boys were": [65535, 0], "an instant both boys were rolling": [65535, 0], "instant both boys were rolling and": [65535, 0], "both boys were rolling and tumbling": [65535, 0], "boys were rolling and tumbling in": [65535, 0], "were rolling and tumbling in the": [65535, 0], "rolling and tumbling in the dirt": [65535, 0], "and tumbling in the dirt gripped": [65535, 0], "tumbling in the dirt gripped together": [65535, 0], "in the dirt gripped together like": [65535, 0], "the dirt gripped together like cats": [65535, 0], "dirt gripped together like cats and": [65535, 0], "gripped together like cats and for": [65535, 0], "together like cats and for the": [65535, 0], "like cats and for the space": [65535, 0], "cats and for the space of": [65535, 0], "and for the space of a": [65535, 0], "the space of a minute they": [65535, 0], "space of a minute they tugged": [65535, 0], "of a minute they tugged and": [65535, 0], "a minute they tugged and tore": [65535, 0], "minute they tugged and tore at": [65535, 0], "they tugged and tore at each": [65535, 0], "tugged and tore at each other's": [65535, 0], "and tore at each other's hair": [65535, 0], "tore at each other's hair and": [65535, 0], "at each other's hair and clothes": [65535, 0], "each other's hair and clothes punched": [65535, 0], "other's hair and clothes punched and": [65535, 0], "hair and clothes punched and scratched": [65535, 0], "and clothes punched and scratched each": [65535, 0], "clothes punched and scratched each other's": [65535, 0], "punched and scratched each other's nose": [65535, 0], "and scratched each other's nose and": [65535, 0], "scratched each other's nose and covered": [65535, 0], "each other's nose and covered themselves": [65535, 0], "other's nose and covered themselves with": [65535, 0], "nose and covered themselves with dust": [65535, 0], "and covered themselves with dust and": [65535, 0], "covered themselves with dust and glory": [65535, 0], "themselves with dust and glory presently": [65535, 0], "with dust and glory presently the": [65535, 0], "dust and glory presently the confusion": [65535, 0], "and glory presently the confusion took": [65535, 0], "glory presently the confusion took form": [65535, 0], "presently the confusion took form and": [65535, 0], "the confusion took form and through": [65535, 0], "confusion took form and through the": [65535, 0], "took form and through the fog": [65535, 0], "form and through the fog of": [65535, 0], "and through the fog of battle": [65535, 0], "through the fog of battle tom": [65535, 0], "the fog of battle tom appeared": [65535, 0], "fog of battle tom appeared seated": [65535, 0], "of battle tom appeared seated astride": [65535, 0], "battle tom appeared seated astride the": [65535, 0], "tom appeared seated astride the new": [65535, 0], "appeared seated astride the new boy": [65535, 0], "seated astride the new boy and": [65535, 0], "astride the new boy and pounding": [65535, 0], "the new boy and pounding him": [65535, 0], "new boy and pounding him with": [65535, 0], "boy and pounding him with his": [65535, 0], "and pounding him with his fists": [65535, 0], "pounding him with his fists holler": [65535, 0], "him with his fists holler 'nuff": [65535, 0], "with his fists holler 'nuff said": [65535, 0], "his fists holler 'nuff said he": [65535, 0], "fists holler 'nuff said he the": [65535, 0], "holler 'nuff said he the boy": [65535, 0], "'nuff said he the boy only": [65535, 0], "said he the boy only struggled": [65535, 0], "he the boy only struggled to": [65535, 0], "the boy only struggled to free": [65535, 0], "boy only struggled to free himself": [65535, 0], "only struggled to free himself he": [65535, 0], "struggled to free himself he was": [65535, 0], "to free himself he was crying": [65535, 0], "free himself he was crying mainly": [65535, 0], "himself he was crying mainly from": [65535, 0], "he was crying mainly from rage": [65535, 0], "was crying mainly from rage holler": [65535, 0], "crying mainly from rage holler 'nuff": [65535, 0], "mainly from rage holler 'nuff and": [65535, 0], "from rage holler 'nuff and the": [65535, 0], "rage holler 'nuff and the pounding": [65535, 0], "holler 'nuff and the pounding went": [65535, 0], "'nuff and the pounding went on": [65535, 0], "and the pounding went on at": [65535, 0], "the pounding went on at last": [65535, 0], "pounding went on at last the": [65535, 0], "went on at last the stranger": [65535, 0], "on at last the stranger got": [65535, 0], "at last the stranger got out": [65535, 0], "last the stranger got out a": [65535, 0], "the stranger got out a smothered": [65535, 0], "stranger got out a smothered 'nuff": [65535, 0], "got out a smothered 'nuff and": [65535, 0], "out a smothered 'nuff and tom": [65535, 0], "a smothered 'nuff and tom let": [65535, 0], "smothered 'nuff and tom let him": [65535, 0], "'nuff and tom let him up": [65535, 0], "and tom let him up and": [65535, 0], "tom let him up and said": [65535, 0], "let him up and said now": [65535, 0], "him up and said now that'll": [65535, 0], "up and said now that'll learn": [65535, 0], "and said now that'll learn you": [65535, 0], "said now that'll learn you better": [65535, 0], "now that'll learn you better look": [65535, 0], "that'll learn you better look out": [65535, 0], "learn you better look out who": [65535, 0], "you better look out who you're": [65535, 0], "better look out who you're fooling": [65535, 0], "look out who you're fooling with": [65535, 0], "out who you're fooling with next": [65535, 0], "who you're fooling with next time": [65535, 0], "you're fooling with next time the": [65535, 0], "fooling with next time the new": [65535, 0], "with next time the new boy": [65535, 0], "next time the new boy went": [65535, 0], "time the new boy went off": [65535, 0], "the new boy went off brushing": [65535, 0], "new boy went off brushing the": [65535, 0], "boy went off brushing the dust": [65535, 0], "went off brushing the dust from": [65535, 0], "off brushing the dust from his": [65535, 0], "brushing the dust from his clothes": [65535, 0], "the dust from his clothes sobbing": [65535, 0], "dust from his clothes sobbing snuffling": [65535, 0], "from his clothes sobbing snuffling and": [65535, 0], "his clothes sobbing snuffling and occasionally": [65535, 0], "clothes sobbing snuffling and occasionally looking": [65535, 0], "sobbing snuffling and occasionally looking back": [65535, 0], "snuffling and occasionally looking back and": [65535, 0], "and occasionally looking back and shaking": [65535, 0], "occasionally looking back and shaking his": [65535, 0], "looking back and shaking his head": [65535, 0], "back and shaking his head and": [65535, 0], "and shaking his head and threatening": [65535, 0], "shaking his head and threatening what": [65535, 0], "his head and threatening what he": [65535, 0], "head and threatening what he would": [65535, 0], "and threatening what he would do": [65535, 0], "threatening what he would do to": [65535, 0], "what he would do to tom": [65535, 0], "he would do to tom the": [65535, 0], "would do to tom the next": [65535, 0], "do to tom the next time": [65535, 0], "to tom the next time he": [65535, 0], "tom the next time he caught": [65535, 0], "the next time he caught him": [65535, 0], "next time he caught him out": [65535, 0], "time he caught him out to": [65535, 0], "he caught him out to which": [65535, 0], "caught him out to which tom": [65535, 0], "him out to which tom responded": [65535, 0], "out to which tom responded with": [65535, 0], "to which tom responded with jeers": [65535, 0], "which tom responded with jeers and": [65535, 0], "tom responded with jeers and started": [65535, 0], "responded with jeers and started off": [65535, 0], "with jeers and started off in": [65535, 0], "jeers and started off in high": [65535, 0], "and started off in high feather": [65535, 0], "started off in high feather and": [65535, 0], "off in high feather and as": [65535, 0], "in high feather and as soon": [65535, 0], "high feather and as soon as": [65535, 0], "feather and as soon as his": [65535, 0], "and as soon as his back": [65535, 0], "as soon as his back was": [65535, 0], "soon as his back was turned": [65535, 0], "as his back was turned the": [65535, 0], "his back was turned the new": [65535, 0], "back was turned the new boy": [65535, 0], "was turned the new boy snatched": [65535, 0], "turned the new boy snatched up": [65535, 0], "the new boy snatched up a": [65535, 0], "new boy snatched up a stone": [65535, 0], "boy snatched up a stone threw": [65535, 0], "snatched up a stone threw it": [65535, 0], "up a stone threw it and": [65535, 0], "a stone threw it and hit": [65535, 0], "stone threw it and hit him": [65535, 0], "threw it and hit him between": [65535, 0], "it and hit him between the": [65535, 0], "and hit him between the shoulders": [65535, 0], "hit him between the shoulders and": [65535, 0], "him between the shoulders and then": [65535, 0], "between the shoulders and then turned": [65535, 0], "the shoulders and then turned tail": [65535, 0], "shoulders and then turned tail and": [65535, 0], "and then turned tail and ran": [65535, 0], "then turned tail and ran like": [65535, 0], "turned tail and ran like an": [65535, 0], "tail and ran like an antelope": [65535, 0], "and ran like an antelope tom": [65535, 0], "ran like an antelope tom chased": [65535, 0], "like an antelope tom chased the": [65535, 0], "an antelope tom chased the traitor": [65535, 0], "antelope tom chased the traitor home": [65535, 0], "tom chased the traitor home and": [65535, 0], "chased the traitor home and thus": [65535, 0], "the traitor home and thus found": [65535, 0], "traitor home and thus found out": [65535, 0], "home and thus found out where": [65535, 0], "and thus found out where he": [65535, 0], "thus found out where he lived": [65535, 0], "found out where he lived he": [65535, 0], "out where he lived he then": [65535, 0], "where he lived he then held": [65535, 0], "he lived he then held a": [65535, 0], "lived he then held a position": [65535, 0], "he then held a position at": [65535, 0], "then held a position at the": [65535, 0], "held a position at the gate": [65535, 0], "a position at the gate for": [65535, 0], "position at the gate for some": [65535, 0], "at the gate for some time": [65535, 0], "the gate for some time daring": [65535, 0], "gate for some time daring the": [65535, 0], "for some time daring the enemy": [65535, 0], "some time daring the enemy to": [65535, 0], "time daring the enemy to come": [65535, 0], "daring the enemy to come outside": [65535, 0], "the enemy to come outside but": [65535, 0], "enemy to come outside but the": [65535, 0], "to come outside but the enemy": [65535, 0], "come outside but the enemy only": [65535, 0], "outside but the enemy only made": [65535, 0], "but the enemy only made faces": [65535, 0], "the enemy only made faces at": [65535, 0], "enemy only made faces at him": [65535, 0], "only made faces at him through": [65535, 0], "made faces at him through the": [65535, 0], "faces at him through the window": [65535, 0], "at him through the window and": [65535, 0], "him through the window and declined": [65535, 0], "through the window and declined at": [65535, 0], "the window and declined at last": [65535, 0], "window and declined at last the": [65535, 0], "and declined at last the enemy's": [65535, 0], "declined at last the enemy's mother": [65535, 0], "at last the enemy's mother appeared": [65535, 0], "last the enemy's mother appeared and": [65535, 0], "the enemy's mother appeared and called": [65535, 0], "enemy's mother appeared and called tom": [65535, 0], "mother appeared and called tom a": [65535, 0], "appeared and called tom a bad": [65535, 0], "and called tom a bad vicious": [65535, 0], "called tom a bad vicious vulgar": [65535, 0], "tom a bad vicious vulgar child": [65535, 0], "a bad vicious vulgar child and": [65535, 0], "bad vicious vulgar child and ordered": [65535, 0], "vicious vulgar child and ordered him": [65535, 0], "vulgar child and ordered him away": [65535, 0], "child and ordered him away so": [65535, 0], "and ordered him away so he": [65535, 0], "ordered him away so he went": [65535, 0], "him away so he went away": [65535, 0], "away so he went away but": [65535, 0], "so he went away but he": [65535, 0], "he went away but he said": [65535, 0], "went away but he said he": [65535, 0], "away but he said he 'lowed": [65535, 0], "but he said he 'lowed to": [65535, 0], "he said he 'lowed to lay": [65535, 0], "said he 'lowed to lay for": [65535, 0], "he 'lowed to lay for that": [65535, 0], "'lowed to lay for that boy": [65535, 0], "to lay for that boy he": [65535, 0], "lay for that boy he got": [65535, 0], "for that boy he got home": [65535, 0], "that boy he got home pretty": [65535, 0], "boy he got home pretty late": [65535, 0], "he got home pretty late that": [65535, 0], "got home pretty late that night": [65535, 0], "home pretty late that night and": [65535, 0], "pretty late that night and when": [65535, 0], "late that night and when he": [65535, 0], "that night and when he climbed": [65535, 0], "night and when he climbed cautiously": [65535, 0], "and when he climbed cautiously in": [65535, 0], "when he climbed cautiously in at": [65535, 0], "he climbed cautiously in at the": [65535, 0], "climbed cautiously in at the window": [65535, 0], "cautiously in at the window he": [65535, 0], "in at the window he uncovered": [65535, 0], "at the window he uncovered an": [65535, 0], "the window he uncovered an ambuscade": [65535, 0], "window he uncovered an ambuscade in": [65535, 0], "he uncovered an ambuscade in the": [65535, 0], "uncovered an ambuscade in the person": [65535, 0], "an ambuscade in the person of": [65535, 0], "ambuscade in the person of his": [65535, 0], "in the person of his aunt": [65535, 0], "the person of his aunt and": [65535, 0], "person of his aunt and when": [65535, 0], "of his aunt and when she": [65535, 0], "his aunt and when she saw": [65535, 0], "aunt and when she saw the": [65535, 0], "and when she saw the state": [65535, 0], "when she saw the state his": [65535, 0], "she saw the state his clothes": [65535, 0], "saw the state his clothes were": [65535, 0], "the state his clothes were in": [65535, 0], "state his clothes were in her": [65535, 0], "his clothes were in her resolution": [65535, 0], "clothes were in her resolution to": [65535, 0], "were in her resolution to turn": [65535, 0], "in her resolution to turn his": [65535, 0], "her resolution to turn his saturday": [65535, 0], "resolution to turn his saturday holiday": [65535, 0], "to turn his saturday holiday into": [65535, 0], "turn his saturday holiday into captivity": [65535, 0], "his saturday holiday into captivity at": [65535, 0], "saturday holiday into captivity at hard": [65535, 0], "holiday into captivity at hard labor": [65535, 0], "into captivity at hard labor became": [65535, 0], "captivity at hard labor became adamantine": [65535, 0], "at hard labor became adamantine in": [65535, 0], "hard labor became adamantine in its": [65535, 0], "labor became adamantine in its firmness": [65535, 0], "tom no answer tom no answer what's": [65535, 0], "no answer tom no answer what's gone": [65535, 0], "answer tom no answer what's gone with": [65535, 0], "tom no answer what's gone with that": [65535, 0], "no answer what's gone with that boy": [65535, 0], "answer what's gone with that boy i": [65535, 0], "what's gone with that boy i wonder": [65535, 0], "gone with that boy i wonder you": [65535, 0], "with that boy i wonder you tom": [65535, 0], "that boy i wonder you tom no": [65535, 0], "boy i wonder you tom no answer": [65535, 0], "i wonder you tom no answer the": [65535, 0], "wonder you tom no answer the old": [65535, 0], "you tom no answer the old lady": [65535, 0], "tom no answer the old lady pulled": [65535, 0], "no answer the old lady pulled her": [65535, 0], "answer the old lady pulled her spectacles": [65535, 0], "the old lady pulled her spectacles down": [65535, 0], "old lady pulled her spectacles down and": [65535, 0], "lady pulled her spectacles down and looked": [65535, 0], "pulled her spectacles down and looked over": [65535, 0], "her spectacles down and looked over them": [65535, 0], "spectacles down and looked over them about": [65535, 0], "down and looked over them about the": [65535, 0], "and looked over them about the room": [65535, 0], "looked over them about the room then": [65535, 0], "over them about the room then she": [65535, 0], "them about the room then she put": [65535, 0], "about the room then she put them": [65535, 0], "the room then she put them up": [65535, 0], "room then she put them up and": [65535, 0], "then she put them up and looked": [65535, 0], "she put them up and looked out": [65535, 0], "put them up and looked out under": [65535, 0], "them up and looked out under them": [65535, 0], "up and looked out under them she": [65535, 0], "and looked out under them she seldom": [65535, 0], "looked out under them she seldom or": [65535, 0], "out under them she seldom or never": [65535, 0], "under them she seldom or never looked": [65535, 0], "them she seldom or never looked through": [65535, 0], "she seldom or never looked through them": [65535, 0], "seldom or never looked through them for": [65535, 0], "or never looked through them for so": [65535, 0], "never looked through them for so small": [65535, 0], "looked through them for so small a": [65535, 0], "through them for so small a thing": [65535, 0], "them for so small a thing as": [65535, 0], "for so small a thing as a": [65535, 0], "so small a thing as a boy": [65535, 0], "small a thing as a boy they": [65535, 0], "a thing as a boy they were": [65535, 0], "thing as a boy they were her": [65535, 0], "as a boy they were her state": [65535, 0], "a boy they were her state pair": [65535, 0], "boy they were her state pair the": [65535, 0], "they were her state pair the pride": [65535, 0], "were her state pair the pride of": [65535, 0], "her state pair the pride of her": [65535, 0], "state pair the pride of her heart": [65535, 0], "pair the pride of her heart and": [65535, 0], "the pride of her heart and were": [65535, 0], "pride of her heart and were built": [65535, 0], "of her heart and were built for": [65535, 0], "her heart and were built for style": [65535, 0], "heart and were built for style not": [65535, 0], "and were built for style not service": [65535, 0], "were built for style not service she": [65535, 0], "built for style not service she could": [65535, 0], "for style not service she could have": [65535, 0], "style not service she could have seen": [65535, 0], "not service she could have seen through": [65535, 0], "service she could have seen through a": [65535, 0], "she could have seen through a pair": [65535, 0], "could have seen through a pair of": [65535, 0], "have seen through a pair of stove": [65535, 0], "seen through a pair of stove lids": [65535, 0], "through a pair of stove lids just": [65535, 0], "a pair of stove lids just as": [65535, 0], "pair of stove lids just as well": [65535, 0], "of stove lids just as well she": [65535, 0], "stove lids just as well she looked": [65535, 0], "lids just as well she looked perplexed": [65535, 0], "just as well she looked perplexed for": [65535, 0], "as well she looked perplexed for a": [65535, 0], "well she looked perplexed for a moment": [65535, 0], "she looked perplexed for a moment and": [65535, 0], "looked perplexed for a moment and then": [65535, 0], "perplexed for a moment and then said": [65535, 0], "for a moment and then said not": [65535, 0], "a moment and then said not fiercely": [65535, 0], "moment and then said not fiercely but": [65535, 0], "and then said not fiercely but still": [65535, 0], "then said not fiercely but still loud": [65535, 0], "said not fiercely but still loud enough": [65535, 0], "not fiercely but still loud enough for": [65535, 0], "fiercely but still loud enough for the": [65535, 0], "but still loud enough for the furniture": [65535, 0], "still loud enough for the furniture to": [65535, 0], "loud enough for the furniture to hear": [65535, 0], "enough for the furniture to hear well": [65535, 0], "for the furniture to hear well i": [65535, 0], "the furniture to hear well i lay": [65535, 0], "furniture to hear well i lay if": [65535, 0], "to hear well i lay if i": [65535, 0], "hear well i lay if i get": [65535, 0], "well i lay if i get hold": [65535, 0], "i lay if i get hold of": [65535, 0], "lay if i get hold of you": [65535, 0], "if i get hold of you i'll": [65535, 0], "i get hold of you i'll she": [65535, 0], "get hold of you i'll she did": [65535, 0], "hold of you i'll she did not": [65535, 0], "of you i'll she did not finish": [65535, 0], "you i'll she did not finish for": [65535, 0], "i'll she did not finish for by": [65535, 0], "she did not finish for by this": [65535, 0], "did not finish for by this time": [65535, 0], "not finish for by this time she": [65535, 0], "finish for by this time she was": [65535, 0], "for by this time she was bending": [65535, 0], "by this time she was bending down": [65535, 0], "this time she was bending down and": [65535, 0], "time she was bending down and punching": [65535, 0], "she was bending down and punching under": [65535, 0], "was bending down and punching under the": [65535, 0], "bending down and punching under the bed": [65535, 0], "down and punching under the bed with": [65535, 0], "and punching under the bed with the": [65535, 0], "punching under the bed with the broom": [65535, 0], "under the bed with the broom and": [65535, 0], "the bed with the broom and so": [65535, 0], "bed with the broom and so she": [65535, 0], "with the broom and so she needed": [65535, 0], "the broom and so she needed breath": [65535, 0], "broom and so she needed breath to": [65535, 0], "and so she needed breath to punctuate": [65535, 0], "so she needed breath to punctuate the": [65535, 0], "she needed breath to punctuate the punches": [65535, 0], "needed breath to punctuate the punches with": [65535, 0], "breath to punctuate the punches with she": [65535, 0], "to punctuate the punches with she resurrected": [65535, 0], "punctuate the punches with she resurrected nothing": [65535, 0], "the punches with she resurrected nothing but": [65535, 0], "punches with she resurrected nothing but the": [65535, 0], "with she resurrected nothing but the cat": [65535, 0], "she resurrected nothing but the cat i": [65535, 0], "resurrected nothing but the cat i never": [65535, 0], "nothing but the cat i never did": [65535, 0], "but the cat i never did see": [65535, 0], "the cat i never did see the": [65535, 0], "cat i never did see the beat": [65535, 0], "i never did see the beat of": [65535, 0], "never did see the beat of that": [65535, 0], "did see the beat of that boy": [65535, 0], "see the beat of that boy she": [65535, 0], "the beat of that boy she went": [65535, 0], "beat of that boy she went to": [65535, 0], "of that boy she went to the": [65535, 0], "that boy she went to the open": [65535, 0], "boy she went to the open door": [65535, 0], "she went to the open door and": [65535, 0], "went to the open door and stood": [65535, 0], "to the open door and stood in": [65535, 0], "the open door and stood in it": [65535, 0], "open door and stood in it and": [65535, 0], "door and stood in it and looked": [65535, 0], "and stood in it and looked out": [65535, 0], "stood in it and looked out among": [65535, 0], "in it and looked out among the": [65535, 0], "it and looked out among the tomato": [65535, 0], "and looked out among the tomato vines": [65535, 0], "looked out among the tomato vines and": [65535, 0], "out among the tomato vines and jimpson": [65535, 0], "among the tomato vines and jimpson weeds": [65535, 0], "the tomato vines and jimpson weeds that": [65535, 0], "tomato vines and jimpson weeds that constituted": [65535, 0], "vines and jimpson weeds that constituted the": [65535, 0], "and jimpson weeds that constituted the garden": [65535, 0], "jimpson weeds that constituted the garden no": [65535, 0], "weeds that constituted the garden no tom": [65535, 0], "that constituted the garden no tom so": [65535, 0], "constituted the garden no tom so she": [65535, 0], "the garden no tom so she lifted": [65535, 0], "garden no tom so she lifted up": [65535, 0], "no tom so she lifted up her": [65535, 0], "tom so she lifted up her voice": [65535, 0], "so she lifted up her voice at": [65535, 0], "she lifted up her voice at an": [65535, 0], "lifted up her voice at an angle": [65535, 0], "up her voice at an angle calculated": [65535, 0], "her voice at an angle calculated for": [65535, 0], "voice at an angle calculated for distance": [65535, 0], "at an angle calculated for distance and": [65535, 0], "an angle calculated for distance and shouted": [65535, 0], "angle calculated for distance and shouted y": [65535, 0], "calculated for distance and shouted y o": [65535, 0], "for distance and shouted y o u": [65535, 0], "distance and shouted y o u u": [65535, 0], "and shouted y o u u tom": [65535, 0], "shouted y o u u tom there": [65535, 0], "y o u u tom there was": [65535, 0], "o u u tom there was a": [65535, 0], "u u tom there was a slight": [65535, 0], "u tom there was a slight noise": [65535, 0], "tom there was a slight noise behind": [65535, 0], "there was a slight noise behind her": [65535, 0], "was a slight noise behind her and": [65535, 0], "a slight noise behind her and she": [65535, 0], "slight noise behind her and she turned": [65535, 0], "noise behind her and she turned just": [65535, 0], "behind her and she turned just in": [65535, 0], "her and she turned just in time": [65535, 0], "and she turned just in time to": [65535, 0], "she turned just in time to seize": [65535, 0], "turned just in time to seize a": [65535, 0], "just in time to seize a small": [65535, 0], "in time to seize a small boy": [65535, 0], "time to seize a small boy by": [65535, 0], "to seize a small boy by the": [65535, 0], "seize a small boy by the slack": [65535, 0], "a small boy by the slack of": [65535, 0], "small boy by the slack of his": [65535, 0], "boy by the slack of his roundabout": [65535, 0], "by the slack of his roundabout and": [65535, 0], "the slack of his roundabout and arrest": [65535, 0], "slack of his roundabout and arrest his": [65535, 0], "of his roundabout and arrest his flight": [65535, 0], "his roundabout and arrest his flight there": [65535, 0], "roundabout and arrest his flight there i": [65535, 0], "and arrest his flight there i might": [65535, 0], "arrest his flight there i might 'a'": [65535, 0], "his flight there i might 'a' thought": [65535, 0], "flight there i might 'a' thought of": [65535, 0], "there i might 'a' thought of that": [65535, 0], "i might 'a' thought of that closet": [65535, 0], "might 'a' thought of that closet what": [65535, 0], "'a' thought of that closet what you": [65535, 0], "thought of that closet what you been": [65535, 0], "of that closet what you been doing": [65535, 0], "that closet what you been doing in": [65535, 0], "closet what you been doing in there": [65535, 0], "what you been doing in there nothing": [65535, 0], "you been doing in there nothing nothing": [65535, 0], "been doing in there nothing nothing look": [65535, 0], "doing in there nothing nothing look at": [65535, 0], "in there nothing nothing look at your": [65535, 0], "there nothing nothing look at your hands": [65535, 0], "nothing nothing look at your hands and": [65535, 0], "nothing look at your hands and look": [65535, 0], "look at your hands and look at": [65535, 0], "at your hands and look at your": [65535, 0], "your hands and look at your mouth": [65535, 0], "hands and look at your mouth what": [65535, 0], "and look at your mouth what is": [65535, 0], "look at your mouth what is that": [65535, 0], "at your mouth what is that i": [65535, 0], "your mouth what is that i don't": [65535, 0], "mouth what is that i don't know": [65535, 0], "what is that i don't know aunt": [65535, 0], "is that i don't know aunt well": [65535, 0], "that i don't know aunt well i": [65535, 0], "i don't know aunt well i know": [65535, 0], "don't know aunt well i know it's": [65535, 0], "know aunt well i know it's jam": [65535, 0], "aunt well i know it's jam that's": [65535, 0], "well i know it's jam that's what": [65535, 0], "i know it's jam that's what it": [65535, 0], "know it's jam that's what it is": [65535, 0], "it's jam that's what it is forty": [65535, 0], "jam that's what it is forty times": [65535, 0], "that's what it is forty times i've": [65535, 0], "what it is forty times i've said": [65535, 0], "it is forty times i've said if": [65535, 0], "is forty times i've said if you": [65535, 0], "forty times i've said if you didn't": [65535, 0], "times i've said if you didn't let": [65535, 0], "i've said if you didn't let that": [65535, 0], "said if you didn't let that jam": [65535, 0], "if you didn't let that jam alone": [65535, 0], "you didn't let that jam alone i'd": [65535, 0], "didn't let that jam alone i'd skin": [65535, 0], "let that jam alone i'd skin you": [65535, 0], "that jam alone i'd skin you hand": [65535, 0], "jam alone i'd skin you hand me": [65535, 0], "alone i'd skin you hand me that": [65535, 0], "i'd skin you hand me that switch": [65535, 0], "skin you hand me that switch the": [65535, 0], "you hand me that switch the switch": [65535, 0], "hand me that switch the switch hovered": [65535, 0], "me that switch the switch hovered in": [65535, 0], "that switch the switch hovered in the": [65535, 0], "switch the switch hovered in the air": [65535, 0], "the switch hovered in the air the": [65535, 0], "switch hovered in the air the peril": [65535, 0], "hovered in the air the peril was": [65535, 0], "in the air the peril was desperate": [65535, 0], "the air the peril was desperate my": [65535, 0], "air the peril was desperate my look": [65535, 0], "the peril was desperate my look behind": [65535, 0], "peril was desperate my look behind you": [65535, 0], "was desperate my look behind you aunt": [65535, 0], "desperate my look behind you aunt the": [65535, 0], "my look behind you aunt the old": [65535, 0], "look behind you aunt the old lady": [65535, 0], "behind you aunt the old lady whirled": [65535, 0], "you aunt the old lady whirled round": [65535, 0], "aunt the old lady whirled round and": [65535, 0], "the old lady whirled round and snatched": [65535, 0], "old lady whirled round and snatched her": [65535, 0], "lady whirled round and snatched her skirts": [65535, 0], "whirled round and snatched her skirts out": [65535, 0], "round and snatched her skirts out of": [65535, 0], "and snatched her skirts out of danger": [65535, 0], "snatched her skirts out of danger the": [65535, 0], "her skirts out of danger the lad": [65535, 0], "skirts out of danger the lad fled": [65535, 0], "out of danger the lad fled on": [65535, 0], "of danger the lad fled on the": [65535, 0], "danger the lad fled on the instant": [65535, 0], "the lad fled on the instant scrambled": [65535, 0], "lad fled on the instant scrambled up": [65535, 0], "fled on the instant scrambled up the": [65535, 0], "on the instant scrambled up the high": [65535, 0], "the instant scrambled up the high board": [65535, 0], "instant scrambled up the high board fence": [65535, 0], "scrambled up the high board fence and": [65535, 0], "up the high board fence and disappeared": [65535, 0], "the high board fence and disappeared over": [65535, 0], "high board fence and disappeared over it": [65535, 0], "board fence and disappeared over it his": [65535, 0], "fence and disappeared over it his aunt": [65535, 0], "and disappeared over it his aunt polly": [65535, 0], "disappeared over it his aunt polly stood": [65535, 0], "over it his aunt polly stood surprised": [65535, 0], "it his aunt polly stood surprised a": [65535, 0], "his aunt polly stood surprised a moment": [65535, 0], "aunt polly stood surprised a moment and": [65535, 0], "polly stood surprised a moment and then": [65535, 0], "stood surprised a moment and then broke": [65535, 0], "surprised a moment and then broke into": [65535, 0], "a moment and then broke into a": [65535, 0], "moment and then broke into a gentle": [65535, 0], "and then broke into a gentle laugh": [65535, 0], "then broke into a gentle laugh hang": [65535, 0], "broke into a gentle laugh hang the": [65535, 0], "into a gentle laugh hang the boy": [65535, 0], "a gentle laugh hang the boy can't": [65535, 0], "gentle laugh hang the boy can't i": [65535, 0], "laugh hang the boy can't i never": [65535, 0], "hang the boy can't i never learn": [65535, 0], "the boy can't i never learn anything": [65535, 0], "boy can't i never learn anything ain't": [65535, 0], "can't i never learn anything ain't he": [65535, 0], "i never learn anything ain't he played": [65535, 0], "never learn anything ain't he played me": [65535, 0], "learn anything ain't he played me tricks": [65535, 0], "anything ain't he played me tricks enough": [65535, 0], "ain't he played me tricks enough like": [65535, 0], "he played me tricks enough like that": [65535, 0], "played me tricks enough like that for": [65535, 0], "me tricks enough like that for me": [65535, 0], "tricks enough like that for me to": [65535, 0], "enough like that for me to be": [65535, 0], "like that for me to be looking": [65535, 0], "that for me to be looking out": [65535, 0], "for me to be looking out for": [65535, 0], "me to be looking out for him": [65535, 0], "to be looking out for him by": [65535, 0], "be looking out for him by this": [65535, 0], "looking out for him by this time": [65535, 0], "out for him by this time but": [65535, 0], "for him by this time but old": [65535, 0], "him by this time but old fools": [65535, 0], "by this time but old fools is": [65535, 0], "this time but old fools is the": [65535, 0], "time but old fools is the biggest": [65535, 0], "but old fools is the biggest fools": [65535, 0], "old fools is the biggest fools there": [65535, 0], "fools is the biggest fools there is": [65535, 0], "is the biggest fools there is can't": [65535, 0], "the biggest fools there is can't learn": [65535, 0], "biggest fools there is can't learn an": [65535, 0], "fools there is can't learn an old": [65535, 0], "there is can't learn an old dog": [65535, 0], "is can't learn an old dog new": [65535, 0], "can't learn an old dog new tricks": [65535, 0], "learn an old dog new tricks as": [65535, 0], "an old dog new tricks as the": [65535, 0], "old dog new tricks as the saying": [65535, 0], "dog new tricks as the saying is": [65535, 0], "new tricks as the saying is but": [65535, 0], "tricks as the saying is but my": [65535, 0], "as the saying is but my goodness": [65535, 0], "the saying is but my goodness he": [65535, 0], "saying is but my goodness he never": [65535, 0], "is but my goodness he never plays": [65535, 0], "but my goodness he never plays them": [65535, 0], "my goodness he never plays them alike": [65535, 0], "goodness he never plays them alike two": [65535, 0], "he never plays them alike two days": [65535, 0], "never plays them alike two days and": [65535, 0], "plays them alike two days and how": [65535, 0], "them alike two days and how is": [65535, 0], "alike two days and how is a": [65535, 0], "two days and how is a body": [65535, 0], "days and how is a body to": [65535, 0], "and how is a body to know": [65535, 0], "how is a body to know what's": [65535, 0], "is a body to know what's coming": [65535, 0], "a body to know what's coming he": [65535, 0], "body to know what's coming he 'pears": [65535, 0], "to know what's coming he 'pears to": [65535, 0], "know what's coming he 'pears to know": [65535, 0], "what's coming he 'pears to know just": [65535, 0], "coming he 'pears to know just how": [65535, 0], "he 'pears to know just how long": [65535, 0], "'pears to know just how long he": [65535, 0], "to know just how long he can": [65535, 0], "know just how long he can torment": [65535, 0], "just how long he can torment me": [65535, 0], "how long he can torment me before": [65535, 0], "long he can torment me before i": [65535, 0], "he can torment me before i get": [65535, 0], "can torment me before i get my": [65535, 0], "torment me before i get my dander": [65535, 0], "me before i get my dander up": [65535, 0], "before i get my dander up and": [65535, 0], "i get my dander up and he": [65535, 0], "get my dander up and he knows": [65535, 0], "my dander up and he knows if": [65535, 0], "dander up and he knows if he": [65535, 0], "up and he knows if he can": [65535, 0], "and he knows if he can make": [65535, 0], "he knows if he can make out": [65535, 0], "knows if he can make out to": [65535, 0], "if he can make out to put": [65535, 0], "he can make out to put me": [65535, 0], "can make out to put me off": [65535, 0], "make out to put me off for": [65535, 0], "out to put me off for a": [65535, 0], "to put me off for a minute": [65535, 0], "put me off for a minute or": [65535, 0], "me off for a minute or make": [65535, 0], "off for a minute or make me": [65535, 0], "for a minute or make me laugh": [65535, 0], "a minute or make me laugh it's": [65535, 0], "minute or make me laugh it's all": [65535, 0], "or make me laugh it's all down": [65535, 0], "make me laugh it's all down again": [65535, 0], "me laugh it's all down again and": [65535, 0], "laugh it's all down again and i": [65535, 0], "it's all down again and i can't": [65535, 0], "all down again and i can't hit": [65535, 0], "down again and i can't hit him": [65535, 0], "again and i can't hit him a": [65535, 0], "and i can't hit him a lick": [65535, 0], "i can't hit him a lick i": [65535, 0], "can't hit him a lick i ain't": [65535, 0], "hit him a lick i ain't doing": [65535, 0], "him a lick i ain't doing my": [65535, 0], "a lick i ain't doing my duty": [65535, 0], "lick i ain't doing my duty by": [65535, 0], "i ain't doing my duty by that": [65535, 0], "ain't doing my duty by that boy": [65535, 0], "doing my duty by that boy and": [65535, 0], "my duty by that boy and that's": [65535, 0], "duty by that boy and that's the": [65535, 0], "by that boy and that's the lord's": [65535, 0], "that boy and that's the lord's truth": [65535, 0], "boy and that's the lord's truth goodness": [65535, 0], "and that's the lord's truth goodness knows": [65535, 0], "that's the lord's truth goodness knows spare": [65535, 0], "the lord's truth goodness knows spare the": [65535, 0], "lord's truth goodness knows spare the rod": [65535, 0], "truth goodness knows spare the rod and": [65535, 0], "goodness knows spare the rod and spoil": [65535, 0], "knows spare the rod and spoil the": [65535, 0], "spare the rod and spoil the child": [65535, 0], "the rod and spoil the child as": [65535, 0], "rod and spoil the child as the": [65535, 0], "and spoil the child as the good": [65535, 0], "spoil the child as the good book": [65535, 0], "the child as the good book says": [65535, 0], "child as the good book says i'm": [65535, 0], "as the good book says i'm a": [65535, 0], "the good book says i'm a laying": [65535, 0], "good book says i'm a laying up": [65535, 0], "book says i'm a laying up sin": [65535, 0], "says i'm a laying up sin and": [65535, 0], "i'm a laying up sin and suffering": [65535, 0], "a laying up sin and suffering for": [65535, 0], "laying up sin and suffering for us": [65535, 0], "up sin and suffering for us both": [65535, 0], "sin and suffering for us both i": [65535, 0], "and suffering for us both i know": [65535, 0], "suffering for us both i know he's": [65535, 0], "for us both i know he's full": [65535, 0], "us both i know he's full of": [65535, 0], "both i know he's full of the": [65535, 0], "i know he's full of the old": [65535, 0], "know he's full of the old scratch": [65535, 0], "he's full of the old scratch but": [65535, 0], "full of the old scratch but laws": [65535, 0], "of the old scratch but laws a": [65535, 0], "the old scratch but laws a me": [65535, 0], "old scratch but laws a me he's": [65535, 0], "scratch but laws a me he's my": [65535, 0], "but laws a me he's my own": [65535, 0], "laws a me he's my own dead": [65535, 0], "a me he's my own dead sister's": [65535, 0], "me he's my own dead sister's boy": [65535, 0], "he's my own dead sister's boy poor": [65535, 0], "my own dead sister's boy poor thing": [65535, 0], "own dead sister's boy poor thing and": [65535, 0], "dead sister's boy poor thing and i": [65535, 0], "sister's boy poor thing and i ain't": [65535, 0], "boy poor thing and i ain't got": [65535, 0], "poor thing and i ain't got the": [65535, 0], "thing and i ain't got the heart": [65535, 0], "and i ain't got the heart to": [65535, 0], "i ain't got the heart to lash": [65535, 0], "ain't got the heart to lash him": [65535, 0], "got the heart to lash him somehow": [65535, 0], "the heart to lash him somehow every": [65535, 0], "heart to lash him somehow every time": [65535, 0], "to lash him somehow every time i": [65535, 0], "lash him somehow every time i let": [65535, 0], "him somehow every time i let him": [65535, 0], "somehow every time i let him off": [65535, 0], "every time i let him off my": [65535, 0], "time i let him off my conscience": [65535, 0], "i let him off my conscience does": [65535, 0], "let him off my conscience does hurt": [65535, 0], "him off my conscience does hurt me": [65535, 0], "off my conscience does hurt me so": [65535, 0], "my conscience does hurt me so and": [65535, 0], "conscience does hurt me so and every": [65535, 0], "does hurt me so and every time": [65535, 0], "hurt me so and every time i": [65535, 0], "me so and every time i hit": [65535, 0], "so and every time i hit him": [65535, 0], "and every time i hit him my": [65535, 0], "every time i hit him my old": [65535, 0], "time i hit him my old heart": [65535, 0], "i hit him my old heart most": [65535, 0], "hit him my old heart most breaks": [65535, 0], "him my old heart most breaks well": [65535, 0], "my old heart most breaks well a": [65535, 0], "old heart most breaks well a well": [65535, 0], "heart most breaks well a well man": [65535, 0], "most breaks well a well man that": [65535, 0], "breaks well a well man that is": [65535, 0], "well a well man that is born": [65535, 0], "a well man that is born of": [65535, 0], "well man that is born of woman": [65535, 0], "man that is born of woman is": [65535, 0], "that is born of woman is of": [65535, 0], "is born of woman is of few": [65535, 0], "born of woman is of few days": [65535, 0], "of woman is of few days and": [65535, 0], "woman is of few days and full": [65535, 0], "is of few days and full of": [65535, 0], "of few days and full of trouble": [65535, 0], "few days and full of trouble as": [65535, 0], "days and full of trouble as the": [65535, 0], "and full of trouble as the scripture": [65535, 0], "full of trouble as the scripture says": [65535, 0], "of trouble as the scripture says and": [65535, 0], "trouble as the scripture says and i": [65535, 0], "as the scripture says and i reckon": [65535, 0], "the scripture says and i reckon it's": [65535, 0], "scripture says and i reckon it's so": [65535, 0], "says and i reckon it's so he'll": [65535, 0], "and i reckon it's so he'll play": [65535, 0], "i reckon it's so he'll play hookey": [65535, 0], "reckon it's so he'll play hookey this": [65535, 0], "it's so he'll play hookey this evening": [65535, 0], "so he'll play hookey this evening and": [65535, 0], "he'll play hookey this evening and i'll": [65535, 0], "play hookey this evening and i'll just": [65535, 0], "hookey this evening and i'll just be": [65535, 0], "this evening and i'll just be obliged": [65535, 0], "evening and i'll just be obliged to": [65535, 0], "and i'll just be obliged to make": [65535, 0], "i'll just be obliged to make him": [65535, 0], "just be obliged to make him work": [65535, 0], "be obliged to make him work to": [65535, 0], "obliged to make him work to morrow": [65535, 0], "to make him work to morrow to": [65535, 0], "make him work to morrow to punish": [65535, 0], "him work to morrow to punish him": [65535, 0], "work to morrow to punish him it's": [65535, 0], "to morrow to punish him it's mighty": [65535, 0], "morrow to punish him it's mighty hard": [65535, 0], "to punish him it's mighty hard to": [65535, 0], "punish him it's mighty hard to make": [65535, 0], "him it's mighty hard to make him": [65535, 0], "it's mighty hard to make him work": [65535, 0], "mighty hard to make him work saturdays": [65535, 0], "hard to make him work saturdays when": [65535, 0], "to make him work saturdays when all": [65535, 0], "make him work saturdays when all the": [65535, 0], "him work saturdays when all the boys": [65535, 0], "work saturdays when all the boys is": [65535, 0], "saturdays when all the boys is having": [65535, 0], "when all the boys is having holiday": [65535, 0], "all the boys is having holiday but": [65535, 0], "the boys is having holiday but he": [65535, 0], "boys is having holiday but he hates": [65535, 0], "is having holiday but he hates work": [65535, 0], "having holiday but he hates work more": [65535, 0], "holiday but he hates work more than": [65535, 0], "but he hates work more than he": [65535, 0], "he hates work more than he hates": [65535, 0], "hates work more than he hates anything": [65535, 0], "work more than he hates anything else": [65535, 0], "more than he hates anything else and": [65535, 0], "than he hates anything else and i've": [65535, 0], "he hates anything else and i've got": [65535, 0], "hates anything else and i've got to": [65535, 0], "anything else and i've got to do": [65535, 0], "else and i've got to do some": [65535, 0], "and i've got to do some of": [65535, 0], "i've got to do some of my": [65535, 0], "got to do some of my duty": [65535, 0], "to do some of my duty by": [65535, 0], "do some of my duty by him": [65535, 0], "some of my duty by him or": [65535, 0], "of my duty by him or i'll": [65535, 0], "my duty by him or i'll be": [65535, 0], "duty by him or i'll be the": [65535, 0], "by him or i'll be the ruination": [65535, 0], "him or i'll be the ruination of": [65535, 0], "or i'll be the ruination of the": [65535, 0], "i'll be the ruination of the child": [65535, 0], "be the ruination of the child tom": [65535, 0], "the ruination of the child tom did": [65535, 0], "ruination of the child tom did play": [65535, 0], "of the child tom did play hookey": [65535, 0], "the child tom did play hookey and": [65535, 0], "child tom did play hookey and he": [65535, 0], "tom did play hookey and he had": [65535, 0], "did play hookey and he had a": [65535, 0], "play hookey and he had a very": [65535, 0], "hookey and he had a very good": [65535, 0], "and he had a very good time": [65535, 0], "he had a very good time he": [65535, 0], "had a very good time he got": [65535, 0], "a very good time he got back": [65535, 0], "very good time he got back home": [65535, 0], "good time he got back home barely": [65535, 0], "time he got back home barely in": [65535, 0], "he got back home barely in season": [65535, 0], "got back home barely in season to": [65535, 0], "back home barely in season to help": [65535, 0], "home barely in season to help jim": [65535, 0], "barely in season to help jim the": [65535, 0], "in season to help jim the small": [65535, 0], "season to help jim the small colored": [65535, 0], "to help jim the small colored boy": [65535, 0], "help jim the small colored boy saw": [65535, 0], "jim the small colored boy saw next": [65535, 0], "the small colored boy saw next day's": [65535, 0], "small colored boy saw next day's wood": [65535, 0], "colored boy saw next day's wood and": [65535, 0], "boy saw next day's wood and split": [65535, 0], "saw next day's wood and split the": [65535, 0], "next day's wood and split the kindlings": [65535, 0], "day's wood and split the kindlings before": [65535, 0], "wood and split the kindlings before supper": [65535, 0], "and split the kindlings before supper at": [65535, 0], "split the kindlings before supper at least": [65535, 0], "the kindlings before supper at least he": [65535, 0], "kindlings before supper at least he was": [65535, 0], "before supper at least he was there": [65535, 0], "supper at least he was there in": [65535, 0], "at least he was there in time": [65535, 0], "least he was there in time to": [65535, 0], "he was there in time to tell": [65535, 0], "was there in time to tell his": [65535, 0], "there in time to tell his adventures": [65535, 0], "in time to tell his adventures to": [65535, 0], "time to tell his adventures to jim": [65535, 0], "to tell his adventures to jim while": [65535, 0], "tell his adventures to jim while jim": [65535, 0], "his adventures to jim while jim did": [65535, 0], "adventures to jim while jim did three": [65535, 0], "to jim while jim did three fourths": [65535, 0], "jim while jim did three fourths of": [65535, 0], "while jim did three fourths of the": [65535, 0], "jim did three fourths of the work": [65535, 0], "did three fourths of the work tom's": [65535, 0], "three fourths of the work tom's younger": [65535, 0], "fourths of the work tom's younger brother": [65535, 0], "of the work tom's younger brother or": [65535, 0], "the work tom's younger brother or rather": [65535, 0], "work tom's younger brother or rather half": [65535, 0], "tom's younger brother or rather half brother": [65535, 0], "younger brother or rather half brother sid": [65535, 0], "brother or rather half brother sid was": [65535, 0], "or rather half brother sid was already": [65535, 0], "rather half brother sid was already through": [65535, 0], "half brother sid was already through with": [65535, 0], "brother sid was already through with his": [65535, 0], "sid was already through with his part": [65535, 0], "was already through with his part of": [65535, 0], "already through with his part of the": [65535, 0], "through with his part of the work": [65535, 0], "with his part of the work picking": [65535, 0], "his part of the work picking up": [65535, 0], "part of the work picking up chips": [65535, 0], "of the work picking up chips for": [65535, 0], "the work picking up chips for he": [65535, 0], "work picking up chips for he was": [65535, 0], "picking up chips for he was a": [65535, 0], "up chips for he was a quiet": [65535, 0], "chips for he was a quiet boy": [65535, 0], "for he was a quiet boy and": [65535, 0], "he was a quiet boy and had": [65535, 0], "was a quiet boy and had no": [65535, 0], "a quiet boy and had no adventurous": [65535, 0], "quiet boy and had no adventurous troublesome": [65535, 0], "boy and had no adventurous troublesome ways": [65535, 0], "and had no adventurous troublesome ways while": [65535, 0], "had no adventurous troublesome ways while tom": [65535, 0], "no adventurous troublesome ways while tom was": [65535, 0], "adventurous troublesome ways while tom was eating": [65535, 0], "troublesome ways while tom was eating his": [65535, 0], "ways while tom was eating his supper": [65535, 0], "while tom was eating his supper and": [65535, 0], "tom was eating his supper and stealing": [65535, 0], "was eating his supper and stealing sugar": [65535, 0], "eating his supper and stealing sugar as": [65535, 0], "his supper and stealing sugar as opportunity": [65535, 0], "supper and stealing sugar as opportunity offered": [65535, 0], "and stealing sugar as opportunity offered aunt": [65535, 0], "stealing sugar as opportunity offered aunt polly": [65535, 0], "sugar as opportunity offered aunt polly asked": [65535, 0], "as opportunity offered aunt polly asked him": [65535, 0], "opportunity offered aunt polly asked him questions": [65535, 0], "offered aunt polly asked him questions that": [65535, 0], "aunt polly asked him questions that were": [65535, 0], "polly asked him questions that were full": [65535, 0], "asked him questions that were full of": [65535, 0], "him questions that were full of guile": [65535, 0], "questions that were full of guile and": [65535, 0], "that were full of guile and very": [65535, 0], "were full of guile and very deep": [65535, 0], "full of guile and very deep for": [65535, 0], "of guile and very deep for she": [65535, 0], "guile and very deep for she wanted": [65535, 0], "and very deep for she wanted to": [65535, 0], "very deep for she wanted to trap": [65535, 0], "deep for she wanted to trap him": [65535, 0], "for she wanted to trap him into": [65535, 0], "she wanted to trap him into damaging": [65535, 0], "wanted to trap him into damaging revealments": [65535, 0], "to trap him into damaging revealments like": [65535, 0], "trap him into damaging revealments like many": [65535, 0], "him into damaging revealments like many other": [65535, 0], "into damaging revealments like many other simple": [65535, 0], "damaging revealments like many other simple hearted": [65535, 0], "revealments like many other simple hearted souls": [65535, 0], "like many other simple hearted souls it": [65535, 0], "many other simple hearted souls it was": [65535, 0], "other simple hearted souls it was her": [65535, 0], "simple hearted souls it was her pet": [65535, 0], "hearted souls it was her pet vanity": [65535, 0], "souls it was her pet vanity to": [65535, 0], "it was her pet vanity to believe": [65535, 0], "was her pet vanity to believe she": [65535, 0], "her pet vanity to believe she was": [65535, 0], "pet vanity to believe she was endowed": [65535, 0], "vanity to believe she was endowed with": [65535, 0], "to believe she was endowed with a": [65535, 0], "believe she was endowed with a talent": [65535, 0], "she was endowed with a talent for": [65535, 0], "was endowed with a talent for dark": [65535, 0], "endowed with a talent for dark and": [65535, 0], "with a talent for dark and mysterious": [65535, 0], "a talent for dark and mysterious diplomacy": [65535, 0], "talent for dark and mysterious diplomacy and": [65535, 0], "for dark and mysterious diplomacy and she": [65535, 0], "dark and mysterious diplomacy and she loved": [65535, 0], "and mysterious diplomacy and she loved to": [65535, 0], "mysterious diplomacy and she loved to contemplate": [65535, 0], "diplomacy and she loved to contemplate her": [65535, 0], "and she loved to contemplate her most": [65535, 0], "she loved to contemplate her most transparent": [65535, 0], "loved to contemplate her most transparent devices": [65535, 0], "to contemplate her most transparent devices as": [65535, 0], "contemplate her most transparent devices as marvels": [65535, 0], "her most transparent devices as marvels of": [65535, 0], "most transparent devices as marvels of low": [65535, 0], "transparent devices as marvels of low cunning": [65535, 0], "devices as marvels of low cunning said": [65535, 0], "as marvels of low cunning said she": [65535, 0], "marvels of low cunning said she tom": [65535, 0], "of low cunning said she tom it": [65535, 0], "low cunning said she tom it was": [65535, 0], "cunning said she tom it was middling": [65535, 0], "said she tom it was middling warm": [65535, 0], "she tom it was middling warm in": [65535, 0], "tom it was middling warm in school": [65535, 0], "it was middling warm in school warn't": [65535, 0], "was middling warm in school warn't it": [65535, 0], "middling warm in school warn't it yes'm": [65535, 0], "warm in school warn't it yes'm powerful": [65535, 0], "in school warn't it yes'm powerful warm": [65535, 0], "school warn't it yes'm powerful warm warn't": [65535, 0], "warn't it yes'm powerful warm warn't it": [65535, 0], "it yes'm powerful warm warn't it yes'm": [65535, 0], "yes'm powerful warm warn't it yes'm didn't": [65535, 0], "powerful warm warn't it yes'm didn't you": [65535, 0], "warm warn't it yes'm didn't you want": [65535, 0], "warn't it yes'm didn't you want to": [65535, 0], "it yes'm didn't you want to go": [65535, 0], "yes'm didn't you want to go in": [65535, 0], "didn't you want to go in a": [65535, 0], "you want to go in a swimming": [65535, 0], "want to go in a swimming tom": [65535, 0], "to go in a swimming tom a": [65535, 0], "go in a swimming tom a bit": [65535, 0], "in a swimming tom a bit of": [65535, 0], "a swimming tom a bit of a": [65535, 0], "swimming tom a bit of a scare": [65535, 0], "tom a bit of a scare shot": [65535, 0], "a bit of a scare shot through": [65535, 0], "bit of a scare shot through tom": [65535, 0], "of a scare shot through tom a": [65535, 0], "a scare shot through tom a touch": [65535, 0], "scare shot through tom a touch of": [65535, 0], "shot through tom a touch of uncomfortable": [65535, 0], "through tom a touch of uncomfortable suspicion": [65535, 0], "tom a touch of uncomfortable suspicion he": [65535, 0], "a touch of uncomfortable suspicion he searched": [65535, 0], "touch of uncomfortable suspicion he searched aunt": [65535, 0], "of uncomfortable suspicion he searched aunt polly's": [65535, 0], "uncomfortable suspicion he searched aunt polly's face": [65535, 0], "suspicion he searched aunt polly's face but": [65535, 0], "he searched aunt polly's face but it": [65535, 0], "searched aunt polly's face but it told": [65535, 0], "aunt polly's face but it told him": [65535, 0], "polly's face but it told him nothing": [65535, 0], "face but it told him nothing so": [65535, 0], "but it told him nothing so he": [65535, 0], "it told him nothing so he said": [65535, 0], "told him nothing so he said no'm": [65535, 0], "him nothing so he said no'm well": [65535, 0], "nothing so he said no'm well not": [65535, 0], "so he said no'm well not very": [65535, 0], "he said no'm well not very much": [65535, 0], "said no'm well not very much the": [65535, 0], "no'm well not very much the old": [65535, 0], "well not very much the old lady": [65535, 0], "not very much the old lady reached": [65535, 0], "very much the old lady reached out": [65535, 0], "much the old lady reached out her": [65535, 0], "the old lady reached out her hand": [65535, 0], "old lady reached out her hand and": [65535, 0], "lady reached out her hand and felt": [65535, 0], "reached out her hand and felt tom's": [65535, 0], "out her hand and felt tom's shirt": [65535, 0], "her hand and felt tom's shirt and": [65535, 0], "hand and felt tom's shirt and said": [65535, 0], "and felt tom's shirt and said but": [65535, 0], "felt tom's shirt and said but you": [65535, 0], "tom's shirt and said but you ain't": [65535, 0], "shirt and said but you ain't too": [65535, 0], "and said but you ain't too warm": [65535, 0], "said but you ain't too warm now": [65535, 0], "but you ain't too warm now though": [65535, 0], "you ain't too warm now though and": [65535, 0], "ain't too warm now though and it": [65535, 0], "too warm now though and it flattered": [65535, 0], "warm now though and it flattered her": [65535, 0], "now though and it flattered her to": [65535, 0], "though and it flattered her to reflect": [65535, 0], "and it flattered her to reflect that": [65535, 0], "it flattered her to reflect that she": [65535, 0], "flattered her to reflect that she had": [65535, 0], "her to reflect that she had discovered": [65535, 0], "to reflect that she had discovered that": [65535, 0], "reflect that she had discovered that the": [65535, 0], "that she had discovered that the shirt": [65535, 0], "she had discovered that the shirt was": [65535, 0], "had discovered that the shirt was dry": [65535, 0], "discovered that the shirt was dry without": [65535, 0], "that the shirt was dry without anybody": [65535, 0], "the shirt was dry without anybody knowing": [65535, 0], "shirt was dry without anybody knowing that": [65535, 0], "was dry without anybody knowing that that": [65535, 0], "dry without anybody knowing that that was": [65535, 0], "without anybody knowing that that was what": [65535, 0], "anybody knowing that that was what she": [65535, 0], "knowing that that was what she had": [65535, 0], "that that was what she had in": [65535, 0], "that was what she had in her": [65535, 0], "was what she had in her mind": [65535, 0], "what she had in her mind but": [65535, 0], "she had in her mind but in": [65535, 0], "had in her mind but in spite": [65535, 0], "in her mind but in spite of": [65535, 0], "her mind but in spite of her": [65535, 0], "mind but in spite of her tom": [65535, 0], "but in spite of her tom knew": [65535, 0], "in spite of her tom knew where": [65535, 0], "spite of her tom knew where the": [65535, 0], "of her tom knew where the wind": [65535, 0], "her tom knew where the wind lay": [65535, 0], "tom knew where the wind lay now": [65535, 0], "knew where the wind lay now so": [65535, 0], "where the wind lay now so he": [65535, 0], "the wind lay now so he forestalled": [65535, 0], "wind lay now so he forestalled what": [65535, 0], "lay now so he forestalled what might": [65535, 0], "now so he forestalled what might be": [65535, 0], "so he forestalled what might be the": [65535, 0], "he forestalled what might be the next": [65535, 0], "forestalled what might be the next move": [65535, 0], "what might be the next move some": [65535, 0], "might be the next move some of": [65535, 0], "be the next move some of us": [65535, 0], "the next move some of us pumped": [65535, 0], "next move some of us pumped on": [65535, 0], "move some of us pumped on our": [65535, 0], "some of us pumped on our heads": [65535, 0], "of us pumped on our heads mine's": [65535, 0], "us pumped on our heads mine's damp": [65535, 0], "pumped on our heads mine's damp yet": [65535, 0], "on our heads mine's damp yet see": [65535, 0], "our heads mine's damp yet see aunt": [65535, 0], "heads mine's damp yet see aunt polly": [65535, 0], "mine's damp yet see aunt polly was": [65535, 0], "damp yet see aunt polly was vexed": [65535, 0], "yet see aunt polly was vexed to": [65535, 0], "see aunt polly was vexed to think": [65535, 0], "aunt polly was vexed to think she": [65535, 0], "polly was vexed to think she had": [65535, 0], "was vexed to think she had overlooked": [65535, 0], "vexed to think she had overlooked that": [65535, 0], "to think she had overlooked that bit": [65535, 0], "think she had overlooked that bit of": [65535, 0], "she had overlooked that bit of circumstantial": [65535, 0], "had overlooked that bit of circumstantial evidence": [65535, 0], "overlooked that bit of circumstantial evidence and": [65535, 0], "that bit of circumstantial evidence and missed": [65535, 0], "bit of circumstantial evidence and missed a": [65535, 0], "of circumstantial evidence and missed a trick": [65535, 0], "circumstantial evidence and missed a trick then": [65535, 0], "evidence and missed a trick then she": [65535, 0], "and missed a trick then she had": [65535, 0], "missed a trick then she had a": [65535, 0], "a trick then she had a new": [65535, 0], "trick then she had a new inspiration": [65535, 0], "then she had a new inspiration tom": [65535, 0], "she had a new inspiration tom you": [65535, 0], "had a new inspiration tom you didn't": [65535, 0], "a new inspiration tom you didn't have": [65535, 0], "new inspiration tom you didn't have to": [65535, 0], "inspiration tom you didn't have to undo": [65535, 0], "tom you didn't have to undo your": [65535, 0], "you didn't have to undo your shirt": [65535, 0], "didn't have to undo your shirt collar": [65535, 0], "have to undo your shirt collar where": [65535, 0], "to undo your shirt collar where i": [65535, 0], "undo your shirt collar where i sewed": [65535, 0], "your shirt collar where i sewed it": [65535, 0], "shirt collar where i sewed it to": [65535, 0], "collar where i sewed it to pump": [65535, 0], "where i sewed it to pump on": [65535, 0], "i sewed it to pump on your": [65535, 0], "sewed it to pump on your head": [65535, 0], "it to pump on your head did": [65535, 0], "to pump on your head did you": [65535, 0], "pump on your head did you unbutton": [65535, 0], "on your head did you unbutton your": [65535, 0], "your head did you unbutton your jacket": [65535, 0], "head did you unbutton your jacket the": [65535, 0], "did you unbutton your jacket the trouble": [65535, 0], "you unbutton your jacket the trouble vanished": [65535, 0], "unbutton your jacket the trouble vanished out": [65535, 0], "your jacket the trouble vanished out of": [65535, 0], "jacket the trouble vanished out of tom's": [65535, 0], "the trouble vanished out of tom's face": [65535, 0], "trouble vanished out of tom's face he": [65535, 0], "vanished out of tom's face he opened": [65535, 0], "out of tom's face he opened his": [65535, 0], "of tom's face he opened his jacket": [65535, 0], "tom's face he opened his jacket his": [65535, 0], "face he opened his jacket his shirt": [65535, 0], "he opened his jacket his shirt collar": [65535, 0], "opened his jacket his shirt collar was": [65535, 0], "his jacket his shirt collar was securely": [65535, 0], "jacket his shirt collar was securely sewed": [65535, 0], "his shirt collar was securely sewed bother": [65535, 0], "shirt collar was securely sewed bother well": [65535, 0], "collar was securely sewed bother well go": [65535, 0], "was securely sewed bother well go 'long": [65535, 0], "securely sewed bother well go 'long with": [65535, 0], "sewed bother well go 'long with you": [65535, 0], "bother well go 'long with you i'd": [65535, 0], "well go 'long with you i'd made": [65535, 0], "go 'long with you i'd made sure": [65535, 0], "'long with you i'd made sure you'd": [65535, 0], "with you i'd made sure you'd played": [65535, 0], "you i'd made sure you'd played hookey": [65535, 0], "i'd made sure you'd played hookey and": [65535, 0], "made sure you'd played hookey and been": [65535, 0], "sure you'd played hookey and been a": [65535, 0], "you'd played hookey and been a swimming": [65535, 0], "played hookey and been a swimming but": [65535, 0], "hookey and been a swimming but i": [65535, 0], "and been a swimming but i forgive": [65535, 0], "been a swimming but i forgive ye": [65535, 0], "a swimming but i forgive ye tom": [65535, 0], "swimming but i forgive ye tom i": [65535, 0], "but i forgive ye tom i reckon": [65535, 0], "i forgive ye tom i reckon you're": [65535, 0], "forgive ye tom i reckon you're a": [65535, 0], "ye tom i reckon you're a kind": [65535, 0], "tom i reckon you're a kind of": [65535, 0], "i reckon you're a kind of a": [65535, 0], "reckon you're a kind of a singed": [65535, 0], "you're a kind of a singed cat": [65535, 0], "a kind of a singed cat as": [65535, 0], "kind of a singed cat as the": [65535, 0], "of a singed cat as the saying": [65535, 0], "a singed cat as the saying is": [65535, 0], "singed cat as the saying is better'n": [65535, 0], "cat as the saying is better'n you": [65535, 0], "as the saying is better'n you look": [65535, 0], "the saying is better'n you look this": [65535, 0], "saying is better'n you look this time": [65535, 0], "is better'n you look this time she": [65535, 0], "better'n you look this time she was": [65535, 0], "you look this time she was half": [65535, 0], "look this time she was half sorry": [65535, 0], "this time she was half sorry her": [65535, 0], "time she was half sorry her sagacity": [65535, 0], "she was half sorry her sagacity had": [65535, 0], "was half sorry her sagacity had miscarried": [65535, 0], "half sorry her sagacity had miscarried and": [65535, 0], "sorry her sagacity had miscarried and half": [65535, 0], "her sagacity had miscarried and half glad": [65535, 0], "sagacity had miscarried and half glad that": [65535, 0], "had miscarried and half glad that tom": [65535, 0], "miscarried and half glad that tom had": [65535, 0], "and half glad that tom had stumbled": [65535, 0], "half glad that tom had stumbled into": [65535, 0], "glad that tom had stumbled into obedient": [65535, 0], "that tom had stumbled into obedient conduct": [65535, 0], "tom had stumbled into obedient conduct for": [65535, 0], "had stumbled into obedient conduct for once": [65535, 0], "stumbled into obedient conduct for once but": [65535, 0], "into obedient conduct for once but sidney": [65535, 0], "obedient conduct for once but sidney said": [65535, 0], "conduct for once but sidney said well": [65535, 0], "for once but sidney said well now": [65535, 0], "once but sidney said well now if": [65535, 0], "but sidney said well now if i": [65535, 0], "sidney said well now if i didn't": [65535, 0], "said well now if i didn't think": [65535, 0], "well now if i didn't think you": [65535, 0], "now if i didn't think you sewed": [65535, 0], "if i didn't think you sewed his": [65535, 0], "i didn't think you sewed his collar": [65535, 0], "didn't think you sewed his collar with": [65535, 0], "think you sewed his collar with white": [65535, 0], "you sewed his collar with white thread": [65535, 0], "sewed his collar with white thread but": [65535, 0], "his collar with white thread but it's": [65535, 0], "collar with white thread but it's black": [65535, 0], "with white thread but it's black why": [65535, 0], "white thread but it's black why i": [65535, 0], "thread but it's black why i did": [65535, 0], "but it's black why i did sew": [65535, 0], "it's black why i did sew it": [65535, 0], "black why i did sew it with": [65535, 0], "why i did sew it with white": [65535, 0], "i did sew it with white tom": [65535, 0], "did sew it with white tom but": [65535, 0], "sew it with white tom but tom": [65535, 0], "it with white tom but tom did": [65535, 0], "with white tom but tom did not": [65535, 0], "white tom but tom did not wait": [65535, 0], "tom but tom did not wait for": [65535, 0], "but tom did not wait for the": [65535, 0], "tom did not wait for the rest": [65535, 0], "did not wait for the rest as": [65535, 0], "not wait for the rest as he": [65535, 0], "wait for the rest as he went": [65535, 0], "for the rest as he went out": [65535, 0], "the rest as he went out at": [65535, 0], "rest as he went out at the": [65535, 0], "as he went out at the door": [65535, 0], "he went out at the door he": [65535, 0], "went out at the door he said": [65535, 0], "out at the door he said siddy": [65535, 0], "at the door he said siddy i'll": [65535, 0], "the door he said siddy i'll lick": [65535, 0], "door he said siddy i'll lick you": [65535, 0], "he said siddy i'll lick you for": [65535, 0], "said siddy i'll lick you for that": [65535, 0], "siddy i'll lick you for that in": [65535, 0], "i'll lick you for that in a": [65535, 0], "lick you for that in a safe": [65535, 0], "you for that in a safe place": [65535, 0], "for that in a safe place tom": [65535, 0], "that in a safe place tom examined": [65535, 0], "in a safe place tom examined two": [65535, 0], "a safe place tom examined two large": [65535, 0], "safe place tom examined two large needles": [65535, 0], "place tom examined two large needles which": [65535, 0], "tom examined two large needles which were": [65535, 0], "examined two large needles which were thrust": [65535, 0], "two large needles which were thrust into": [65535, 0], "large needles which were thrust into the": [65535, 0], "needles which were thrust into the lapels": [65535, 0], "which were thrust into the lapels of": [65535, 0], "were thrust into the lapels of his": [65535, 0], "thrust into the lapels of his jacket": [65535, 0], "into the lapels of his jacket and": [65535, 0], "the lapels of his jacket and had": [65535, 0], "lapels of his jacket and had thread": [65535, 0], "of his jacket and had thread bound": [65535, 0], "his jacket and had thread bound about": [65535, 0], "jacket and had thread bound about them": [65535, 0], "and had thread bound about them one": [65535, 0], "had thread bound about them one needle": [65535, 0], "thread bound about them one needle carried": [65535, 0], "bound about them one needle carried white": [65535, 0], "about them one needle carried white thread": [65535, 0], "them one needle carried white thread and": [65535, 0], "one needle carried white thread and the": [65535, 0], "needle carried white thread and the other": [65535, 0], "carried white thread and the other black": [65535, 0], "white thread and the other black he": [65535, 0], "thread and the other black he said": [65535, 0], "and the other black he said she'd": [65535, 0], "the other black he said she'd never": [65535, 0], "other black he said she'd never noticed": [65535, 0], "black he said she'd never noticed if": [65535, 0], "he said she'd never noticed if it": [65535, 0], "said she'd never noticed if it hadn't": [65535, 0], "she'd never noticed if it hadn't been": [65535, 0], "never noticed if it hadn't been for": [65535, 0], "noticed if it hadn't been for sid": [65535, 0], "if it hadn't been for sid confound": [65535, 0], "it hadn't been for sid confound it": [65535, 0], "hadn't been for sid confound it sometimes": [65535, 0], "been for sid confound it sometimes she": [65535, 0], "for sid confound it sometimes she sews": [65535, 0], "sid confound it sometimes she sews it": [65535, 0], "confound it sometimes she sews it with": [65535, 0], "it sometimes she sews it with white": [65535, 0], "sometimes she sews it with white and": [65535, 0], "she sews it with white and sometimes": [65535, 0], "sews it with white and sometimes she": [65535, 0], "it with white and sometimes she sews": [65535, 0], "with white and sometimes she sews it": [65535, 0], "white and sometimes she sews it with": [65535, 0], "and sometimes she sews it with black": [65535, 0], "sometimes she sews it with black i": [65535, 0], "she sews it with black i wish": [65535, 0], "sews it with black i wish to": [65535, 0], "it with black i wish to geeminy": [65535, 0], "with black i wish to geeminy she'd": [65535, 0], "black i wish to geeminy she'd stick": [65535, 0], "i wish to geeminy she'd stick to": [65535, 0], "wish to geeminy she'd stick to one": [65535, 0], "to geeminy she'd stick to one or": [65535, 0], "geeminy she'd stick to one or t'other": [65535, 0], "she'd stick to one or t'other i": [65535, 0], "stick to one or t'other i can't": [65535, 0], "to one or t'other i can't keep": [65535, 0], "one or t'other i can't keep the": [65535, 0], "or t'other i can't keep the run": [65535, 0], "t'other i can't keep the run of": [65535, 0], "i can't keep the run of 'em": [65535, 0], "can't keep the run of 'em but": [65535, 0], "keep the run of 'em but i": [65535, 0], "the run of 'em but i bet": [65535, 0], "run of 'em but i bet you": [65535, 0], "of 'em but i bet you i'll": [65535, 0], "'em but i bet you i'll lam": [65535, 0], "but i bet you i'll lam sid": [65535, 0], "i bet you i'll lam sid for": [65535, 0], "bet you i'll lam sid for that": [65535, 0], "you i'll lam sid for that i'll": [65535, 0], "i'll lam sid for that i'll learn": [65535, 0], "lam sid for that i'll learn him": [65535, 0], "sid for that i'll learn him he": [65535, 0], "for that i'll learn him he was": [65535, 0], "that i'll learn him he was not": [65535, 0], "i'll learn him he was not the": [65535, 0], "learn him he was not the model": [65535, 0], "him he was not the model boy": [65535, 0], "he was not the model boy of": [65535, 0], "was not the model boy of the": [65535, 0], "not the model boy of the village": [65535, 0], "the model boy of the village he": [65535, 0], "model boy of the village he knew": [65535, 0], "boy of the village he knew the": [65535, 0], "of the village he knew the model": [65535, 0], "the village he knew the model boy": [65535, 0], "village he knew the model boy very": [65535, 0], "he knew the model boy very well": [65535, 0], "knew the model boy very well though": [65535, 0], "the model boy very well though and": [65535, 0], "model boy very well though and loathed": [65535, 0], "boy very well though and loathed him": [65535, 0], "very well though and loathed him within": [65535, 0], "well though and loathed him within two": [65535, 0], "though and loathed him within two minutes": [65535, 0], "and loathed him within two minutes or": [65535, 0], "loathed him within two minutes or even": [65535, 0], "him within two minutes or even less": [65535, 0], "within two minutes or even less he": [65535, 0], "two minutes or even less he had": [65535, 0], "minutes or even less he had forgotten": [65535, 0], "or even less he had forgotten all": [65535, 0], "even less he had forgotten all his": [65535, 0], "less he had forgotten all his troubles": [65535, 0], "he had forgotten all his troubles not": [65535, 0], "had forgotten all his troubles not because": [65535, 0], "forgotten all his troubles not because his": [65535, 0], "all his troubles not because his troubles": [65535, 0], "his troubles not because his troubles were": [65535, 0], "troubles not because his troubles were one": [65535, 0], "not because his troubles were one whit": [65535, 0], "because his troubles were one whit less": [65535, 0], "his troubles were one whit less heavy": [65535, 0], "troubles were one whit less heavy and": [65535, 0], "were one whit less heavy and bitter": [65535, 0], "one whit less heavy and bitter to": [65535, 0], "whit less heavy and bitter to him": [65535, 0], "less heavy and bitter to him than": [65535, 0], "heavy and bitter to him than a": [65535, 0], "and bitter to him than a man's": [65535, 0], "bitter to him than a man's are": [65535, 0], "to him than a man's are to": [65535, 0], "him than a man's are to a": [65535, 0], "than a man's are to a man": [65535, 0], "a man's are to a man but": [65535, 0], "man's are to a man but because": [65535, 0], "are to a man but because a": [65535, 0], "to a man but because a new": [65535, 0], "a man but because a new and": [65535, 0], "man but because a new and powerful": [65535, 0], "but because a new and powerful interest": [65535, 0], "because a new and powerful interest bore": [65535, 0], "a new and powerful interest bore them": [65535, 0], "new and powerful interest bore them down": [65535, 0], "and powerful interest bore them down and": [65535, 0], "powerful interest bore them down and drove": [65535, 0], "interest bore them down and drove them": [65535, 0], "bore them down and drove them out": [65535, 0], "them down and drove them out of": [65535, 0], "down and drove them out of his": [65535, 0], "and drove them out of his mind": [65535, 0], "drove them out of his mind for": [65535, 0], "them out of his mind for the": [65535, 0], "out of his mind for the time": [65535, 0], "of his mind for the time just": [65535, 0], "his mind for the time just as": [65535, 0], "mind for the time just as men's": [65535, 0], "for the time just as men's misfortunes": [65535, 0], "the time just as men's misfortunes are": [65535, 0], "time just as men's misfortunes are forgotten": [65535, 0], "just as men's misfortunes are forgotten in": [65535, 0], "as men's misfortunes are forgotten in the": [65535, 0], "men's misfortunes are forgotten in the excitement": [65535, 0], "misfortunes are forgotten in the excitement of": [65535, 0], "are forgotten in the excitement of new": [65535, 0], "forgotten in the excitement of new enterprises": [65535, 0], "in the excitement of new enterprises this": [65535, 0], "the excitement of new enterprises this new": [65535, 0], "excitement of new enterprises this new interest": [65535, 0], "of new enterprises this new interest was": [65535, 0], "new enterprises this new interest was a": [65535, 0], "enterprises this new interest was a valued": [65535, 0], "this new interest was a valued novelty": [65535, 0], "new interest was a valued novelty in": [65535, 0], "interest was a valued novelty in whistling": [65535, 0], "was a valued novelty in whistling which": [65535, 0], "a valued novelty in whistling which he": [65535, 0], "valued novelty in whistling which he had": [65535, 0], "novelty in whistling which he had just": [65535, 0], "in whistling which he had just acquired": [65535, 0], "whistling which he had just acquired from": [65535, 0], "which he had just acquired from a": [65535, 0], "he had just acquired from a negro": [65535, 0], "had just acquired from a negro and": [65535, 0], "just acquired from a negro and he": [65535, 0], "acquired from a negro and he was": [65535, 0], "from a negro and he was suffering": [65535, 0], "a negro and he was suffering to": [65535, 0], "negro and he was suffering to practise": [65535, 0], "and he was suffering to practise it": [65535, 0], "he was suffering to practise it undisturbed": [65535, 0], "was suffering to practise it undisturbed it": [65535, 0], "suffering to practise it undisturbed it consisted": [65535, 0], "to practise it undisturbed it consisted in": [65535, 0], "practise it undisturbed it consisted in a": [65535, 0], "it undisturbed it consisted in a peculiar": [65535, 0], "undisturbed it consisted in a peculiar bird": [65535, 0], "it consisted in a peculiar bird like": [65535, 0], "consisted in a peculiar bird like turn": [65535, 0], "in a peculiar bird like turn a": [65535, 0], "a peculiar bird like turn a sort": [65535, 0], "peculiar bird like turn a sort of": [65535, 0], "bird like turn a sort of liquid": [65535, 0], "like turn a sort of liquid warble": [65535, 0], "turn a sort of liquid warble produced": [65535, 0], "a sort of liquid warble produced by": [65535, 0], "sort of liquid warble produced by touching": [65535, 0], "of liquid warble produced by touching the": [65535, 0], "liquid warble produced by touching the tongue": [65535, 0], "warble produced by touching the tongue to": [65535, 0], "produced by touching the tongue to the": [65535, 0], "by touching the tongue to the roof": [65535, 0], "touching the tongue to the roof of": [65535, 0], "the tongue to the roof of the": [65535, 0], "tongue to the roof of the mouth": [65535, 0], "to the roof of the mouth at": [65535, 0], "the roof of the mouth at short": [65535, 0], "roof of the mouth at short intervals": [65535, 0], "of the mouth at short intervals in": [65535, 0], "the mouth at short intervals in the": [65535, 0], "mouth at short intervals in the midst": [65535, 0], "at short intervals in the midst of": [65535, 0], "short intervals in the midst of the": [65535, 0], "intervals in the midst of the music": [65535, 0], "in the midst of the music the": [65535, 0], "the midst of the music the reader": [65535, 0], "midst of the music the reader probably": [65535, 0], "of the music the reader probably remembers": [65535, 0], "the music the reader probably remembers how": [65535, 0], "music the reader probably remembers how to": [65535, 0], "the reader probably remembers how to do": [65535, 0], "reader probably remembers how to do it": [65535, 0], "probably remembers how to do it if": [65535, 0], "remembers how to do it if he": [65535, 0], "how to do it if he has": [65535, 0], "to do it if he has ever": [65535, 0], "do it if he has ever been": [65535, 0], "it if he has ever been a": [65535, 0], "if he has ever been a boy": [65535, 0], "he has ever been a boy diligence": [65535, 0], "has ever been a boy diligence and": [65535, 0], "ever been a boy diligence and attention": [65535, 0], "been a boy diligence and attention soon": [65535, 0], "a boy diligence and attention soon gave": [65535, 0], "boy diligence and attention soon gave him": [65535, 0], "diligence and attention soon gave him the": [65535, 0], "and attention soon gave him the knack": [65535, 0], "attention soon gave him the knack of": [65535, 0], "soon gave him the knack of it": [65535, 0], "gave him the knack of it and": [65535, 0], "him the knack of it and he": [65535, 0], "the knack of it and he strode": [65535, 0], "knack of it and he strode down": [65535, 0], "of it and he strode down the": [65535, 0], "it and he strode down the street": [65535, 0], "and he strode down the street with": [65535, 0], "he strode down the street with his": [65535, 0], "strode down the street with his mouth": [65535, 0], "down the street with his mouth full": [65535, 0], "the street with his mouth full of": [65535, 0], "street with his mouth full of harmony": [65535, 0], "with his mouth full of harmony and": [65535, 0], "his mouth full of harmony and his": [65535, 0], "mouth full of harmony and his soul": [65535, 0], "full of harmony and his soul full": [65535, 0], "of harmony and his soul full of": [65535, 0], "harmony and his soul full of gratitude": [65535, 0], "and his soul full of gratitude he": [65535, 0], "his soul full of gratitude he felt": [65535, 0], "soul full of gratitude he felt much": [65535, 0], "full of gratitude he felt much as": [65535, 0], "of gratitude he felt much as an": [65535, 0], "gratitude he felt much as an astronomer": [65535, 0], "he felt much as an astronomer feels": [65535, 0], "felt much as an astronomer feels who": [65535, 0], "much as an astronomer feels who has": [65535, 0], "as an astronomer feels who has discovered": [65535, 0], "an astronomer feels who has discovered a": [65535, 0], "astronomer feels who has discovered a new": [65535, 0], "feels who has discovered a new planet": [65535, 0], "who has discovered a new planet no": [65535, 0], "has discovered a new planet no doubt": [65535, 0], "discovered a new planet no doubt as": [65535, 0], "a new planet no doubt as far": [65535, 0], "new planet no doubt as far as": [65535, 0], "planet no doubt as far as strong": [65535, 0], "no doubt as far as strong deep": [65535, 0], "doubt as far as strong deep unalloyed": [65535, 0], "as far as strong deep unalloyed pleasure": [65535, 0], "far as strong deep unalloyed pleasure is": [65535, 0], "as strong deep unalloyed pleasure is concerned": [65535, 0], "strong deep unalloyed pleasure is concerned the": [65535, 0], "deep unalloyed pleasure is concerned the advantage": [65535, 0], "unalloyed pleasure is concerned the advantage was": [65535, 0], "pleasure is concerned the advantage was with": [65535, 0], "is concerned the advantage was with the": [65535, 0], "concerned the advantage was with the boy": [65535, 0], "the advantage was with the boy not": [65535, 0], "advantage was with the boy not the": [65535, 0], "was with the boy not the astronomer": [65535, 0], "with the boy not the astronomer the": [65535, 0], "the boy not the astronomer the summer": [65535, 0], "boy not the astronomer the summer evenings": [65535, 0], "not the astronomer the summer evenings were": [65535, 0], "the astronomer the summer evenings were long": [65535, 0], "astronomer the summer evenings were long it": [65535, 0], "the summer evenings were long it was": [65535, 0], "summer evenings were long it was not": [65535, 0], "evenings were long it was not dark": [65535, 0], "were long it was not dark yet": [65535, 0], "long it was not dark yet presently": [65535, 0], "it was not dark yet presently tom": [65535, 0], "was not dark yet presently tom checked": [65535, 0], "not dark yet presently tom checked his": [65535, 0], "dark yet presently tom checked his whistle": [65535, 0], "yet presently tom checked his whistle a": [65535, 0], "presently tom checked his whistle a stranger": [65535, 0], "tom checked his whistle a stranger was": [65535, 0], "checked his whistle a stranger was before": [65535, 0], "his whistle a stranger was before him": [65535, 0], "whistle a stranger was before him a": [65535, 0], "a stranger was before him a boy": [65535, 0], "stranger was before him a boy a": [65535, 0], "was before him a boy a shade": [65535, 0], "before him a boy a shade larger": [65535, 0], "him a boy a shade larger than": [65535, 0], "a boy a shade larger than himself": [65535, 0], "boy a shade larger than himself a": [65535, 0], "a shade larger than himself a new": [65535, 0], "shade larger than himself a new comer": [65535, 0], "larger than himself a new comer of": [65535, 0], "than himself a new comer of any": [65535, 0], "himself a new comer of any age": [65535, 0], "a new comer of any age or": [65535, 0], "new comer of any age or either": [65535, 0], "comer of any age or either sex": [65535, 0], "of any age or either sex was": [65535, 0], "any age or either sex was an": [65535, 0], "age or either sex was an impressive": [65535, 0], "or either sex was an impressive curiosity": [65535, 0], "either sex was an impressive curiosity in": [65535, 0], "sex was an impressive curiosity in the": [65535, 0], "was an impressive curiosity in the poor": [65535, 0], "an impressive curiosity in the poor little": [65535, 0], "impressive curiosity in the poor little shabby": [65535, 0], "curiosity in the poor little shabby village": [65535, 0], "in the poor little shabby village of": [65535, 0], "the poor little shabby village of st": [65535, 0], "poor little shabby village of st petersburg": [65535, 0], "little shabby village of st petersburg this": [65535, 0], "shabby village of st petersburg this boy": [65535, 0], "village of st petersburg this boy was": [65535, 0], "of st petersburg this boy was well": [65535, 0], "st petersburg this boy was well dressed": [65535, 0], "petersburg this boy was well dressed too": [65535, 0], "this boy was well dressed too well": [65535, 0], "boy was well dressed too well dressed": [65535, 0], "was well dressed too well dressed on": [65535, 0], "well dressed too well dressed on a": [65535, 0], "dressed too well dressed on a week": [65535, 0], "too well dressed on a week day": [65535, 0], "well dressed on a week day this": [65535, 0], "dressed on a week day this was": [65535, 0], "on a week day this was simply": [65535, 0], "a week day this was simply astounding": [65535, 0], "week day this was simply astounding his": [65535, 0], "day this was simply astounding his cap": [65535, 0], "this was simply astounding his cap was": [65535, 0], "was simply astounding his cap was a": [65535, 0], "simply astounding his cap was a dainty": [65535, 0], "astounding his cap was a dainty thing": [65535, 0], "his cap was a dainty thing his": [65535, 0], "cap was a dainty thing his closebuttoned": [65535, 0], "was a dainty thing his closebuttoned blue": [65535, 0], "a dainty thing his closebuttoned blue cloth": [65535, 0], "dainty thing his closebuttoned blue cloth roundabout": [65535, 0], "thing his closebuttoned blue cloth roundabout was": [65535, 0], "his closebuttoned blue cloth roundabout was new": [65535, 0], "closebuttoned blue cloth roundabout was new and": [65535, 0], "blue cloth roundabout was new and natty": [65535, 0], "cloth roundabout was new and natty and": [65535, 0], "roundabout was new and natty and so": [65535, 0], "was new and natty and so were": [65535, 0], "new and natty and so were his": [65535, 0], "and natty and so were his pantaloons": [65535, 0], "natty and so were his pantaloons he": [65535, 0], "and so were his pantaloons he had": [65535, 0], "so were his pantaloons he had shoes": [65535, 0], "were his pantaloons he had shoes on": [65535, 0], "his pantaloons he had shoes on and": [65535, 0], "pantaloons he had shoes on and it": [65535, 0], "he had shoes on and it was": [65535, 0], "had shoes on and it was only": [65535, 0], "shoes on and it was only friday": [65535, 0], "on and it was only friday he": [65535, 0], "and it was only friday he even": [65535, 0], "it was only friday he even wore": [65535, 0], "was only friday he even wore a": [65535, 0], "only friday he even wore a necktie": [65535, 0], "friday he even wore a necktie a": [65535, 0], "he even wore a necktie a bright": [65535, 0], "even wore a necktie a bright bit": [65535, 0], "wore a necktie a bright bit of": [65535, 0], "a necktie a bright bit of ribbon": [65535, 0], "necktie a bright bit of ribbon he": [65535, 0], "a bright bit of ribbon he had": [65535, 0], "bright bit of ribbon he had a": [65535, 0], "bit of ribbon he had a citified": [65535, 0], "of ribbon he had a citified air": [65535, 0], "ribbon he had a citified air about": [65535, 0], "he had a citified air about him": [65535, 0], "had a citified air about him that": [65535, 0], "a citified air about him that ate": [65535, 0], "citified air about him that ate into": [65535, 0], "air about him that ate into tom's": [65535, 0], "about him that ate into tom's vitals": [65535, 0], "him that ate into tom's vitals the": [65535, 0], "that ate into tom's vitals the more": [65535, 0], "ate into tom's vitals the more tom": [65535, 0], "into tom's vitals the more tom stared": [65535, 0], "tom's vitals the more tom stared at": [65535, 0], "vitals the more tom stared at the": [65535, 0], "the more tom stared at the splendid": [65535, 0], "more tom stared at the splendid marvel": [65535, 0], "tom stared at the splendid marvel the": [65535, 0], "stared at the splendid marvel the higher": [65535, 0], "at the splendid marvel the higher he": [65535, 0], "the splendid marvel the higher he turned": [65535, 0], "splendid marvel the higher he turned up": [65535, 0], "marvel the higher he turned up his": [65535, 0], "the higher he turned up his nose": [65535, 0], "higher he turned up his nose at": [65535, 0], "he turned up his nose at his": [65535, 0], "turned up his nose at his finery": [65535, 0], "up his nose at his finery and": [65535, 0], "his nose at his finery and the": [65535, 0], "nose at his finery and the shabbier": [65535, 0], "at his finery and the shabbier and": [65535, 0], "his finery and the shabbier and shabbier": [65535, 0], "finery and the shabbier and shabbier his": [65535, 0], "and the shabbier and shabbier his own": [65535, 0], "the shabbier and shabbier his own outfit": [65535, 0], "shabbier and shabbier his own outfit seemed": [65535, 0], "and shabbier his own outfit seemed to": [65535, 0], "shabbier his own outfit seemed to him": [65535, 0], "his own outfit seemed to him to": [65535, 0], "own outfit seemed to him to grow": [65535, 0], "outfit seemed to him to grow neither": [65535, 0], "seemed to him to grow neither boy": [65535, 0], "to him to grow neither boy spoke": [65535, 0], "him to grow neither boy spoke if": [65535, 0], "to grow neither boy spoke if one": [65535, 0], "grow neither boy spoke if one moved": [65535, 0], "neither boy spoke if one moved the": [65535, 0], "boy spoke if one moved the other": [65535, 0], "spoke if one moved the other moved": [65535, 0], "if one moved the other moved but": [65535, 0], "one moved the other moved but only": [65535, 0], "moved the other moved but only sidewise": [65535, 0], "the other moved but only sidewise in": [65535, 0], "other moved but only sidewise in a": [65535, 0], "moved but only sidewise in a circle": [65535, 0], "but only sidewise in a circle they": [65535, 0], "only sidewise in a circle they kept": [65535, 0], "sidewise in a circle they kept face": [65535, 0], "in a circle they kept face to": [65535, 0], "a circle they kept face to face": [65535, 0], "circle they kept face to face and": [65535, 0], "they kept face to face and eye": [65535, 0], "kept face to face and eye to": [65535, 0], "face to face and eye to eye": [65535, 0], "to face and eye to eye all": [65535, 0], "face and eye to eye all the": [65535, 0], "and eye to eye all the time": [65535, 0], "eye to eye all the time finally": [65535, 0], "to eye all the time finally tom": [65535, 0], "eye all the time finally tom said": [65535, 0], "all the time finally tom said i": [65535, 0], "the time finally tom said i can": [65535, 0], "time finally tom said i can lick": [65535, 0], "finally tom said i can lick you": [65535, 0], "tom said i can lick you i'd": [65535, 0], "said i can lick you i'd like": [65535, 0], "i can lick you i'd like to": [65535, 0], "can lick you i'd like to see": [65535, 0], "lick you i'd like to see you": [65535, 0], "you i'd like to see you try": [65535, 0], "i'd like to see you try it": [65535, 0], "like to see you try it well": [65535, 0], "to see you try it well i": [65535, 0], "see you try it well i can": [65535, 0], "you try it well i can do": [65535, 0], "try it well i can do it": [65535, 0], "it well i can do it no": [65535, 0], "well i can do it no you": [65535, 0], "i can do it no you can't": [65535, 0], "can do it no you can't either": [65535, 0], "do it no you can't either yes": [65535, 0], "it no you can't either yes i": [65535, 0], "no you can't either yes i can": [65535, 0], "you can't either yes i can no": [65535, 0], "can't either yes i can no you": [65535, 0], "either yes i can no you can't": [65535, 0], "yes i can no you can't i": [65535, 0], "i can no you can't i can": [65535, 0], "can no you can't i can you": [65535, 0], "no you can't i can you can't": [65535, 0], "you can't i can you can't can": [65535, 0], "can't i can you can't can can't": [65535, 0], "i can you can't can can't an": [65535, 0], "can you can't can can't an uncomfortable": [65535, 0], "you can't can can't an uncomfortable pause": [65535, 0], "can't can can't an uncomfortable pause then": [65535, 0], "can can't an uncomfortable pause then tom": [65535, 0], "can't an uncomfortable pause then tom said": [65535, 0], "an uncomfortable pause then tom said what's": [65535, 0], "uncomfortable pause then tom said what's your": [65535, 0], "pause then tom said what's your name": [65535, 0], "then tom said what's your name 'tisn't": [65535, 0], "tom said what's your name 'tisn't any": [65535, 0], "said what's your name 'tisn't any of": [65535, 0], "what's your name 'tisn't any of your": [65535, 0], "your name 'tisn't any of your business": [65535, 0], "name 'tisn't any of your business maybe": [65535, 0], "'tisn't any of your business maybe well": [65535, 0], "any of your business maybe well i": [65535, 0], "of your business maybe well i 'low": [65535, 0], "your business maybe well i 'low i'll": [65535, 0], "business maybe well i 'low i'll make": [65535, 0], "maybe well i 'low i'll make it": [65535, 0], "well i 'low i'll make it my": [65535, 0], "i 'low i'll make it my business": [65535, 0], "'low i'll make it my business well": [65535, 0], "i'll make it my business well why": [65535, 0], "make it my business well why don't": [65535, 0], "it my business well why don't you": [65535, 0], "my business well why don't you if": [65535, 0], "business well why don't you if you": [65535, 0], "well why don't you if you say": [65535, 0], "why don't you if you say much": [65535, 0], "don't you if you say much i": [65535, 0], "you if you say much i will": [65535, 0], "if you say much i will much": [65535, 0], "you say much i will much much": [65535, 0], "say much i will much much much": [65535, 0], "much i will much much much there": [65535, 0], "i will much much much there now": [65535, 0], "will much much much there now oh": [65535, 0], "much much much there now oh you": [65535, 0], "much much there now oh you think": [65535, 0], "much there now oh you think you're": [65535, 0], "there now oh you think you're mighty": [65535, 0], "now oh you think you're mighty smart": [65535, 0], "oh you think you're mighty smart don't": [65535, 0], "you think you're mighty smart don't you": [65535, 0], "think you're mighty smart don't you i": [65535, 0], "you're mighty smart don't you i could": [65535, 0], "mighty smart don't you i could lick": [65535, 0], "smart don't you i could lick you": [65535, 0], "don't you i could lick you with": [65535, 0], "you i could lick you with one": [65535, 0], "i could lick you with one hand": [65535, 0], "could lick you with one hand tied": [65535, 0], "lick you with one hand tied behind": [65535, 0], "you with one hand tied behind me": [65535, 0], "with one hand tied behind me if": [65535, 0], "one hand tied behind me if i": [65535, 0], "hand tied behind me if i wanted": [65535, 0], "tied behind me if i wanted to": [65535, 0], "behind me if i wanted to well": [65535, 0], "me if i wanted to well why": [65535, 0], "wanted to well why don't you do": [65535, 0], "to well why don't you do it": [65535, 0], "well why don't you do it you": [65535, 0], "why don't you do it you say": [65535, 0], "don't you do it you say you": [65535, 0], "you do it you say you can": [65535, 0], "do it you say you can do": [65535, 0], "it you say you can do it": [65535, 0], "you say you can do it well": [65535, 0], "say you can do it well i": [65535, 0], "you can do it well i will": [65535, 0], "can do it well i will if": [65535, 0], "do it well i will if you": [65535, 0], "it well i will if you fool": [65535, 0], "well i will if you fool with": [65535, 0], "i will if you fool with me": [65535, 0], "will if you fool with me oh": [65535, 0], "if you fool with me oh yes": [65535, 0], "you fool with me oh yes i've": [65535, 0], "fool with me oh yes i've seen": [65535, 0], "with me oh yes i've seen whole": [65535, 0], "me oh yes i've seen whole families": [65535, 0], "oh yes i've seen whole families in": [65535, 0], "yes i've seen whole families in the": [65535, 0], "i've seen whole families in the same": [65535, 0], "seen whole families in the same fix": [65535, 0], "whole families in the same fix smarty": [65535, 0], "families in the same fix smarty you": [65535, 0], "in the same fix smarty you think": [65535, 0], "the same fix smarty you think you're": [65535, 0], "same fix smarty you think you're some": [65535, 0], "fix smarty you think you're some now": [65535, 0], "smarty you think you're some now don't": [65535, 0], "you think you're some now don't you": [65535, 0], "think you're some now don't you oh": [65535, 0], "you're some now don't you oh what": [65535, 0], "some now don't you oh what a": [65535, 0], "now don't you oh what a hat": [65535, 0], "don't you oh what a hat you": [65535, 0], "you oh what a hat you can": [65535, 0], "oh what a hat you can lump": [65535, 0], "what a hat you can lump that": [65535, 0], "a hat you can lump that hat": [65535, 0], "hat you can lump that hat if": [65535, 0], "you can lump that hat if you": [65535, 0], "can lump that hat if you don't": [65535, 0], "lump that hat if you don't like": [65535, 0], "that hat if you don't like it": [65535, 0], "hat if you don't like it i": [65535, 0], "if you don't like it i dare": [65535, 0], "you don't like it i dare you": [65535, 0], "don't like it i dare you to": [65535, 0], "like it i dare you to knock": [65535, 0], "it i dare you to knock it": [65535, 0], "i dare you to knock it off": [65535, 0], "dare you to knock it off and": [65535, 0], "you to knock it off and anybody": [65535, 0], "to knock it off and anybody that'll": [65535, 0], "knock it off and anybody that'll take": [65535, 0], "it off and anybody that'll take a": [65535, 0], "off and anybody that'll take a dare": [65535, 0], "and anybody that'll take a dare will": [65535, 0], "anybody that'll take a dare will suck": [65535, 0], "that'll take a dare will suck eggs": [65535, 0], "take a dare will suck eggs you're": [65535, 0], "a dare will suck eggs you're a": [65535, 0], "dare will suck eggs you're a liar": [65535, 0], "will suck eggs you're a liar you're": [65535, 0], "suck eggs you're a liar you're another": [65535, 0], "eggs you're a liar you're another you're": [65535, 0], "you're a liar you're another you're a": [65535, 0], "a liar you're another you're a fighting": [65535, 0], "liar you're another you're a fighting liar": [65535, 0], "you're another you're a fighting liar and": [65535, 0], "another you're a fighting liar and dasn't": [65535, 0], "you're a fighting liar and dasn't take": [65535, 0], "a fighting liar and dasn't take it": [65535, 0], "fighting liar and dasn't take it up": [65535, 0], "liar and dasn't take it up aw": [65535, 0], "and dasn't take it up aw take": [65535, 0], "dasn't take it up aw take a": [65535, 0], "take it up aw take a walk": [65535, 0], "it up aw take a walk say": [65535, 0], "up aw take a walk say if": [65535, 0], "aw take a walk say if you": [65535, 0], "take a walk say if you give": [65535, 0], "a walk say if you give me": [65535, 0], "walk say if you give me much": [65535, 0], "say if you give me much more": [65535, 0], "if you give me much more of": [65535, 0], "you give me much more of your": [65535, 0], "give me much more of your sass": [65535, 0], "me much more of your sass i'll": [65535, 0], "much more of your sass i'll take": [65535, 0], "more of your sass i'll take and": [65535, 0], "of your sass i'll take and bounce": [65535, 0], "your sass i'll take and bounce a": [65535, 0], "sass i'll take and bounce a rock": [65535, 0], "i'll take and bounce a rock off'n": [65535, 0], "take and bounce a rock off'n your": [65535, 0], "and bounce a rock off'n your head": [65535, 0], "bounce a rock off'n your head oh": [65535, 0], "a rock off'n your head oh of": [65535, 0], "rock off'n your head oh of course": [65535, 0], "off'n your head oh of course you": [65535, 0], "your head oh of course you will": [65535, 0], "head oh of course you will well": [65535, 0], "oh of course you will well i": [65535, 0], "of course you will well i will": [65535, 0], "course you will well i will well": [65535, 0], "you will well i will well why": [65535, 0], "will well i will well why don't": [65535, 0], "well i will well why don't you": [65535, 0], "i will well why don't you do": [65535, 0], "will well why don't you do it": [65535, 0], "well why don't you do it then": [65535, 0], "why don't you do it then what": [65535, 0], "don't you do it then what do": [65535, 0], "you do it then what do you": [65535, 0], "do it then what do you keep": [65535, 0], "it then what do you keep saying": [65535, 0], "then what do you keep saying you": [65535, 0], "what do you keep saying you will": [65535, 0], "do you keep saying you will for": [65535, 0], "you keep saying you will for why": [65535, 0], "keep saying you will for why don't": [65535, 0], "saying you will for why don't you": [65535, 0], "you will for why don't you do": [65535, 0], "will for why don't you do it": [65535, 0], "for why don't you do it it's": [65535, 0], "why don't you do it it's because": [65535, 0], "don't you do it it's because you're": [65535, 0], "you do it it's because you're afraid": [65535, 0], "do it it's because you're afraid i": [65535, 0], "it it's because you're afraid i ain't": [65535, 0], "it's because you're afraid i ain't afraid": [65535, 0], "because you're afraid i ain't afraid you": [65535, 0], "you're afraid i ain't afraid you are": [65535, 0], "afraid i ain't afraid you are i": [65535, 0], "i ain't afraid you are i ain't": [65535, 0], "ain't afraid you are i ain't you": [65535, 0], "afraid you are i ain't you are": [65535, 0], "you are i ain't you are another": [65535, 0], "are i ain't you are another pause": [65535, 0], "i ain't you are another pause and": [65535, 0], "ain't you are another pause and more": [65535, 0], "you are another pause and more eying": [65535, 0], "are another pause and more eying and": [65535, 0], "another pause and more eying and sidling": [65535, 0], "pause and more eying and sidling around": [65535, 0], "and more eying and sidling around each": [65535, 0], "more eying and sidling around each other": [65535, 0], "eying and sidling around each other presently": [65535, 0], "and sidling around each other presently they": [65535, 0], "sidling around each other presently they were": [65535, 0], "around each other presently they were shoulder": [65535, 0], "each other presently they were shoulder to": [65535, 0], "other presently they were shoulder to shoulder": [65535, 0], "presently they were shoulder to shoulder tom": [65535, 0], "they were shoulder to shoulder tom said": [65535, 0], "were shoulder to shoulder tom said get": [65535, 0], "shoulder to shoulder tom said get away": [65535, 0], "to shoulder tom said get away from": [65535, 0], "shoulder tom said get away from here": [65535, 0], "tom said get away from here go": [65535, 0], "said get away from here go away": [65535, 0], "get away from here go away yourself": [65535, 0], "away from here go away yourself i": [65535, 0], "from here go away yourself i won't": [65535, 0], "here go away yourself i won't i": [65535, 0], "go away yourself i won't i won't": [65535, 0], "away yourself i won't i won't either": [65535, 0], "yourself i won't i won't either so": [65535, 0], "i won't i won't either so they": [65535, 0], "won't i won't either so they stood": [65535, 0], "i won't either so they stood each": [65535, 0], "won't either so they stood each with": [65535, 0], "either so they stood each with a": [65535, 0], "so they stood each with a foot": [65535, 0], "they stood each with a foot placed": [65535, 0], "stood each with a foot placed at": [65535, 0], "each with a foot placed at an": [65535, 0], "with a foot placed at an angle": [65535, 0], "a foot placed at an angle as": [65535, 0], "foot placed at an angle as a": [65535, 0], "placed at an angle as a brace": [65535, 0], "at an angle as a brace and": [65535, 0], "an angle as a brace and both": [65535, 0], "angle as a brace and both shoving": [65535, 0], "as a brace and both shoving with": [65535, 0], "a brace and both shoving with might": [65535, 0], "brace and both shoving with might and": [65535, 0], "and both shoving with might and main": [65535, 0], "both shoving with might and main and": [65535, 0], "shoving with might and main and glowering": [65535, 0], "with might and main and glowering at": [65535, 0], "might and main and glowering at each": [65535, 0], "and main and glowering at each other": [65535, 0], "main and glowering at each other with": [65535, 0], "and glowering at each other with hate": [65535, 0], "glowering at each other with hate but": [65535, 0], "at each other with hate but neither": [65535, 0], "each other with hate but neither could": [65535, 0], "other with hate but neither could get": [65535, 0], "with hate but neither could get an": [65535, 0], "hate but neither could get an advantage": [65535, 0], "but neither could get an advantage after": [65535, 0], "neither could get an advantage after struggling": [65535, 0], "could get an advantage after struggling till": [65535, 0], "get an advantage after struggling till both": [65535, 0], "an advantage after struggling till both were": [65535, 0], "advantage after struggling till both were hot": [65535, 0], "after struggling till both were hot and": [65535, 0], "struggling till both were hot and flushed": [65535, 0], "till both were hot and flushed each": [65535, 0], "both were hot and flushed each relaxed": [65535, 0], "were hot and flushed each relaxed his": [65535, 0], "hot and flushed each relaxed his strain": [65535, 0], "and flushed each relaxed his strain with": [65535, 0], "flushed each relaxed his strain with watchful": [65535, 0], "each relaxed his strain with watchful caution": [65535, 0], "relaxed his strain with watchful caution and": [65535, 0], "his strain with watchful caution and tom": [65535, 0], "strain with watchful caution and tom said": [65535, 0], "with watchful caution and tom said you're": [65535, 0], "watchful caution and tom said you're a": [65535, 0], "caution and tom said you're a coward": [65535, 0], "and tom said you're a coward and": [65535, 0], "tom said you're a coward and a": [65535, 0], "said you're a coward and a pup": [65535, 0], "you're a coward and a pup i'll": [65535, 0], "a coward and a pup i'll tell": [65535, 0], "coward and a pup i'll tell my": [65535, 0], "and a pup i'll tell my big": [65535, 0], "a pup i'll tell my big brother": [65535, 0], "pup i'll tell my big brother on": [65535, 0], "i'll tell my big brother on you": [65535, 0], "tell my big brother on you and": [65535, 0], "my big brother on you and he": [65535, 0], "big brother on you and he can": [65535, 0], "brother on you and he can thrash": [65535, 0], "on you and he can thrash you": [65535, 0], "you and he can thrash you with": [65535, 0], "and he can thrash you with his": [65535, 0], "he can thrash you with his little": [65535, 0], "can thrash you with his little finger": [65535, 0], "thrash you with his little finger and": [65535, 0], "you with his little finger and i'll": [65535, 0], "with his little finger and i'll make": [65535, 0], "his little finger and i'll make him": [65535, 0], "little finger and i'll make him do": [65535, 0], "finger and i'll make him do it": [65535, 0], "and i'll make him do it too": [65535, 0], "i'll make him do it too what": [65535, 0], "make him do it too what do": [65535, 0], "him do it too what do i": [65535, 0], "do it too what do i care": [65535, 0], "it too what do i care for": [65535, 0], "too what do i care for your": [65535, 0], "what do i care for your big": [65535, 0], "do i care for your big brother": [65535, 0], "i care for your big brother i've": [65535, 0], "care for your big brother i've got": [65535, 0], "for your big brother i've got a": [65535, 0], "your big brother i've got a brother": [65535, 0], "big brother i've got a brother that's": [65535, 0], "brother i've got a brother that's bigger": [65535, 0], "i've got a brother that's bigger than": [65535, 0], "got a brother that's bigger than he": [65535, 0], "a brother that's bigger than he is": [65535, 0], "brother that's bigger than he is and": [65535, 0], "that's bigger than he is and what's": [65535, 0], "bigger than he is and what's more": [65535, 0], "than he is and what's more he": [65535, 0], "he is and what's more he can": [65535, 0], "is and what's more he can throw": [65535, 0], "and what's more he can throw him": [65535, 0], "what's more he can throw him over": [65535, 0], "more he can throw him over that": [65535, 0], "he can throw him over that fence": [65535, 0], "can throw him over that fence too": [65535, 0], "throw him over that fence too both": [65535, 0], "him over that fence too both brothers": [65535, 0], "over that fence too both brothers were": [65535, 0], "that fence too both brothers were imaginary": [65535, 0], "fence too both brothers were imaginary that's": [65535, 0], "too both brothers were imaginary that's a": [65535, 0], "both brothers were imaginary that's a lie": [65535, 0], "brothers were imaginary that's a lie your": [65535, 0], "were imaginary that's a lie your saying": [65535, 0], "imaginary that's a lie your saying so": [65535, 0], "that's a lie your saying so don't": [65535, 0], "a lie your saying so don't make": [65535, 0], "lie your saying so don't make it": [65535, 0], "your saying so don't make it so": [65535, 0], "saying so don't make it so tom": [65535, 0], "so don't make it so tom drew": [65535, 0], "don't make it so tom drew a": [65535, 0], "make it so tom drew a line": [65535, 0], "it so tom drew a line in": [65535, 0], "so tom drew a line in the": [65535, 0], "tom drew a line in the dust": [65535, 0], "drew a line in the dust with": [65535, 0], "a line in the dust with his": [65535, 0], "line in the dust with his big": [65535, 0], "in the dust with his big toe": [65535, 0], "the dust with his big toe and": [65535, 0], "dust with his big toe and said": [65535, 0], "with his big toe and said i": [65535, 0], "his big toe and said i dare": [65535, 0], "big toe and said i dare you": [65535, 0], "toe and said i dare you to": [65535, 0], "and said i dare you to step": [65535, 0], "said i dare you to step over": [65535, 0], "i dare you to step over that": [65535, 0], "dare you to step over that and": [65535, 0], "you to step over that and i'll": [65535, 0], "to step over that and i'll lick": [65535, 0], "step over that and i'll lick you": [65535, 0], "over that and i'll lick you till": [65535, 0], "that and i'll lick you till you": [65535, 0], "and i'll lick you till you can't": [65535, 0], "i'll lick you till you can't stand": [65535, 0], "lick you till you can't stand up": [65535, 0], "you till you can't stand up anybody": [65535, 0], "till you can't stand up anybody that'll": [65535, 0], "you can't stand up anybody that'll take": [65535, 0], "can't stand up anybody that'll take a": [65535, 0], "stand up anybody that'll take a dare": [65535, 0], "up anybody that'll take a dare will": [65535, 0], "anybody that'll take a dare will steal": [65535, 0], "that'll take a dare will steal sheep": [65535, 0], "take a dare will steal sheep the": [65535, 0], "a dare will steal sheep the new": [65535, 0], "dare will steal sheep the new boy": [65535, 0], "will steal sheep the new boy stepped": [65535, 0], "steal sheep the new boy stepped over": [65535, 0], "sheep the new boy stepped over promptly": [65535, 0], "the new boy stepped over promptly and": [65535, 0], "new boy stepped over promptly and said": [65535, 0], "boy stepped over promptly and said now": [65535, 0], "stepped over promptly and said now you": [65535, 0], "over promptly and said now you said": [65535, 0], "promptly and said now you said you'd": [65535, 0], "and said now you said you'd do": [65535, 0], "said now you said you'd do it": [65535, 0], "now you said you'd do it now": [65535, 0], "you said you'd do it now let's": [65535, 0], "said you'd do it now let's see": [65535, 0], "you'd do it now let's see you": [65535, 0], "do it now let's see you do": [65535, 0], "it now let's see you do it": [65535, 0], "now let's see you do it don't": [65535, 0], "let's see you do it don't you": [65535, 0], "see you do it don't you crowd": [65535, 0], "you do it don't you crowd me": [65535, 0], "do it don't you crowd me now": [65535, 0], "it don't you crowd me now you": [65535, 0], "don't you crowd me now you better": [65535, 0], "you crowd me now you better look": [65535, 0], "crowd me now you better look out": [65535, 0], "me now you better look out well": [65535, 0], "now you better look out well you": [65535, 0], "you better look out well you said": [65535, 0], "better look out well you said you'd": [65535, 0], "look out well you said you'd do": [65535, 0], "out well you said you'd do it": [65535, 0], "well you said you'd do it why": [65535, 0], "you said you'd do it why don't": [65535, 0], "said you'd do it why don't you": [65535, 0], "you'd do it why don't you do": [65535, 0], "do it why don't you do it": [65535, 0], "it why don't you do it by": [65535, 0], "why don't you do it by jingo": [65535, 0], "don't you do it by jingo for": [65535, 0], "you do it by jingo for two": [65535, 0], "do it by jingo for two cents": [65535, 0], "it by jingo for two cents i": [65535, 0], "by jingo for two cents i will": [65535, 0], "jingo for two cents i will do": [65535, 0], "for two cents i will do it": [65535, 0], "two cents i will do it the": [65535, 0], "cents i will do it the new": [65535, 0], "i will do it the new boy": [65535, 0], "will do it the new boy took": [65535, 0], "do it the new boy took two": [65535, 0], "it the new boy took two broad": [65535, 0], "the new boy took two broad coppers": [65535, 0], "new boy took two broad coppers out": [65535, 0], "boy took two broad coppers out of": [65535, 0], "took two broad coppers out of his": [65535, 0], "two broad coppers out of his pocket": [65535, 0], "broad coppers out of his pocket and": [65535, 0], "coppers out of his pocket and held": [65535, 0], "out of his pocket and held them": [65535, 0], "of his pocket and held them out": [65535, 0], "his pocket and held them out with": [65535, 0], "pocket and held them out with derision": [65535, 0], "and held them out with derision tom": [65535, 0], "held them out with derision tom struck": [65535, 0], "them out with derision tom struck them": [65535, 0], "out with derision tom struck them to": [65535, 0], "with derision tom struck them to the": [65535, 0], "derision tom struck them to the ground": [65535, 0], "tom struck them to the ground in": [65535, 0], "struck them to the ground in an": [65535, 0], "them to the ground in an instant": [65535, 0], "to the ground in an instant both": [65535, 0], "the ground in an instant both boys": [65535, 0], "ground in an instant both boys were": [65535, 0], "in an instant both boys were rolling": [65535, 0], "an instant both boys were rolling and": [65535, 0], "instant both boys were rolling and tumbling": [65535, 0], "both boys were rolling and tumbling in": [65535, 0], "boys were rolling and tumbling in the": [65535, 0], "were rolling and tumbling in the dirt": [65535, 0], "rolling and tumbling in the dirt gripped": [65535, 0], "and tumbling in the dirt gripped together": [65535, 0], "tumbling in the dirt gripped together like": [65535, 0], "in the dirt gripped together like cats": [65535, 0], "the dirt gripped together like cats and": [65535, 0], "dirt gripped together like cats and for": [65535, 0], "gripped together like cats and for the": [65535, 0], "together like cats and for the space": [65535, 0], "like cats and for the space of": [65535, 0], "cats and for the space of a": [65535, 0], "and for the space of a minute": [65535, 0], "for the space of a minute they": [65535, 0], "the space of a minute they tugged": [65535, 0], "space of a minute they tugged and": [65535, 0], "of a minute they tugged and tore": [65535, 0], "a minute they tugged and tore at": [65535, 0], "minute they tugged and tore at each": [65535, 0], "they tugged and tore at each other's": [65535, 0], "tugged and tore at each other's hair": [65535, 0], "and tore at each other's hair and": [65535, 0], "tore at each other's hair and clothes": [65535, 0], "at each other's hair and clothes punched": [65535, 0], "each other's hair and clothes punched and": [65535, 0], "other's hair and clothes punched and scratched": [65535, 0], "hair and clothes punched and scratched each": [65535, 0], "and clothes punched and scratched each other's": [65535, 0], "clothes punched and scratched each other's nose": [65535, 0], "punched and scratched each other's nose and": [65535, 0], "and scratched each other's nose and covered": [65535, 0], "scratched each other's nose and covered themselves": [65535, 0], "each other's nose and covered themselves with": [65535, 0], "other's nose and covered themselves with dust": [65535, 0], "nose and covered themselves with dust and": [65535, 0], "and covered themselves with dust and glory": [65535, 0], "covered themselves with dust and glory presently": [65535, 0], "themselves with dust and glory presently the": [65535, 0], "with dust and glory presently the confusion": [65535, 0], "dust and glory presently the confusion took": [65535, 0], "and glory presently the confusion took form": [65535, 0], "glory presently the confusion took form and": [65535, 0], "presently the confusion took form and through": [65535, 0], "the confusion took form and through the": [65535, 0], "confusion took form and through the fog": [65535, 0], "took form and through the fog of": [65535, 0], "form and through the fog of battle": [65535, 0], "and through the fog of battle tom": [65535, 0], "through the fog of battle tom appeared": [65535, 0], "the fog of battle tom appeared seated": [65535, 0], "fog of battle tom appeared seated astride": [65535, 0], "of battle tom appeared seated astride the": [65535, 0], "battle tom appeared seated astride the new": [65535, 0], "tom appeared seated astride the new boy": [65535, 0], "appeared seated astride the new boy and": [65535, 0], "seated astride the new boy and pounding": [65535, 0], "astride the new boy and pounding him": [65535, 0], "the new boy and pounding him with": [65535, 0], "new boy and pounding him with his": [65535, 0], "boy and pounding him with his fists": [65535, 0], "and pounding him with his fists holler": [65535, 0], "pounding him with his fists holler 'nuff": [65535, 0], "him with his fists holler 'nuff said": [65535, 0], "with his fists holler 'nuff said he": [65535, 0], "his fists holler 'nuff said he the": [65535, 0], "fists holler 'nuff said he the boy": [65535, 0], "holler 'nuff said he the boy only": [65535, 0], "'nuff said he the boy only struggled": [65535, 0], "said he the boy only struggled to": [65535, 0], "he the boy only struggled to free": [65535, 0], "the boy only struggled to free himself": [65535, 0], "boy only struggled to free himself he": [65535, 0], "only struggled to free himself he was": [65535, 0], "struggled to free himself he was crying": [65535, 0], "to free himself he was crying mainly": [65535, 0], "free himself he was crying mainly from": [65535, 0], "himself he was crying mainly from rage": [65535, 0], "he was crying mainly from rage holler": [65535, 0], "was crying mainly from rage holler 'nuff": [65535, 0], "crying mainly from rage holler 'nuff and": [65535, 0], "mainly from rage holler 'nuff and the": [65535, 0], "from rage holler 'nuff and the pounding": [65535, 0], "rage holler 'nuff and the pounding went": [65535, 0], "holler 'nuff and the pounding went on": [65535, 0], "'nuff and the pounding went on at": [65535, 0], "and the pounding went on at last": [65535, 0], "the pounding went on at last the": [65535, 0], "pounding went on at last the stranger": [65535, 0], "went on at last the stranger got": [65535, 0], "on at last the stranger got out": [65535, 0], "at last the stranger got out a": [65535, 0], "last the stranger got out a smothered": [65535, 0], "the stranger got out a smothered 'nuff": [65535, 0], "stranger got out a smothered 'nuff and": [65535, 0], "got out a smothered 'nuff and tom": [65535, 0], "out a smothered 'nuff and tom let": [65535, 0], "a smothered 'nuff and tom let him": [65535, 0], "smothered 'nuff and tom let him up": [65535, 0], "'nuff and tom let him up and": [65535, 0], "and tom let him up and said": [65535, 0], "tom let him up and said now": [65535, 0], "let him up and said now that'll": [65535, 0], "him up and said now that'll learn": [65535, 0], "up and said now that'll learn you": [65535, 0], "and said now that'll learn you better": [65535, 0], "said now that'll learn you better look": [65535, 0], "now that'll learn you better look out": [65535, 0], "that'll learn you better look out who": [65535, 0], "learn you better look out who you're": [65535, 0], "you better look out who you're fooling": [65535, 0], "better look out who you're fooling with": [65535, 0], "look out who you're fooling with next": [65535, 0], "out who you're fooling with next time": [65535, 0], "who you're fooling with next time the": [65535, 0], "you're fooling with next time the new": [65535, 0], "fooling with next time the new boy": [65535, 0], "with next time the new boy went": [65535, 0], "next time the new boy went off": [65535, 0], "time the new boy went off brushing": [65535, 0], "the new boy went off brushing the": [65535, 0], "new boy went off brushing the dust": [65535, 0], "boy went off brushing the dust from": [65535, 0], "went off brushing the dust from his": [65535, 0], "off brushing the dust from his clothes": [65535, 0], "brushing the dust from his clothes sobbing": [65535, 0], "the dust from his clothes sobbing snuffling": [65535, 0], "dust from his clothes sobbing snuffling and": [65535, 0], "from his clothes sobbing snuffling and occasionally": [65535, 0], "his clothes sobbing snuffling and occasionally looking": [65535, 0], "clothes sobbing snuffling and occasionally looking back": [65535, 0], "sobbing snuffling and occasionally looking back and": [65535, 0], "snuffling and occasionally looking back and shaking": [65535, 0], "and occasionally looking back and shaking his": [65535, 0], "occasionally looking back and shaking his head": [65535, 0], "looking back and shaking his head and": [65535, 0], "back and shaking his head and threatening": [65535, 0], "and shaking his head and threatening what": [65535, 0], "shaking his head and threatening what he": [65535, 0], "his head and threatening what he would": [65535, 0], "head and threatening what he would do": [65535, 0], "and threatening what he would do to": [65535, 0], "threatening what he would do to tom": [65535, 0], "what he would do to tom the": [65535, 0], "he would do to tom the next": [65535, 0], "would do to tom the next time": [65535, 0], "do to tom the next time he": [65535, 0], "to tom the next time he caught": [65535, 0], "tom the next time he caught him": [65535, 0], "the next time he caught him out": [65535, 0], "next time he caught him out to": [65535, 0], "time he caught him out to which": [65535, 0], "he caught him out to which tom": [65535, 0], "caught him out to which tom responded": [65535, 0], "him out to which tom responded with": [65535, 0], "out to which tom responded with jeers": [65535, 0], "to which tom responded with jeers and": [65535, 0], "which tom responded with jeers and started": [65535, 0], "tom responded with jeers and started off": [65535, 0], "responded with jeers and started off in": [65535, 0], "with jeers and started off in high": [65535, 0], "jeers and started off in high feather": [65535, 0], "and started off in high feather and": [65535, 0], "started off in high feather and as": [65535, 0], "off in high feather and as soon": [65535, 0], "in high feather and as soon as": [65535, 0], "high feather and as soon as his": [65535, 0], "feather and as soon as his back": [65535, 0], "and as soon as his back was": [65535, 0], "as soon as his back was turned": [65535, 0], "soon as his back was turned the": [65535, 0], "as his back was turned the new": [65535, 0], "his back was turned the new boy": [65535, 0], "back was turned the new boy snatched": [65535, 0], "was turned the new boy snatched up": [65535, 0], "turned the new boy snatched up a": [65535, 0], "the new boy snatched up a stone": [65535, 0], "new boy snatched up a stone threw": [65535, 0], "boy snatched up a stone threw it": [65535, 0], "snatched up a stone threw it and": [65535, 0], "up a stone threw it and hit": [65535, 0], "a stone threw it and hit him": [65535, 0], "stone threw it and hit him between": [65535, 0], "threw it and hit him between the": [65535, 0], "it and hit him between the shoulders": [65535, 0], "and hit him between the shoulders and": [65535, 0], "hit him between the shoulders and then": [65535, 0], "him between the shoulders and then turned": [65535, 0], "between the shoulders and then turned tail": [65535, 0], "the shoulders and then turned tail and": [65535, 0], "shoulders and then turned tail and ran": [65535, 0], "and then turned tail and ran like": [65535, 0], "then turned tail and ran like an": [65535, 0], "turned tail and ran like an antelope": [65535, 0], "tail and ran like an antelope tom": [65535, 0], "and ran like an antelope tom chased": [65535, 0], "ran like an antelope tom chased the": [65535, 0], "like an antelope tom chased the traitor": [65535, 0], "an antelope tom chased the traitor home": [65535, 0], "antelope tom chased the traitor home and": [65535, 0], "tom chased the traitor home and thus": [65535, 0], "chased the traitor home and thus found": [65535, 0], "the traitor home and thus found out": [65535, 0], "traitor home and thus found out where": [65535, 0], "home and thus found out where he": [65535, 0], "and thus found out where he lived": [65535, 0], "thus found out where he lived he": [65535, 0], "found out where he lived he then": [65535, 0], "out where he lived he then held": [65535, 0], "where he lived he then held a": [65535, 0], "he lived he then held a position": [65535, 0], "lived he then held a position at": [65535, 0], "he then held a position at the": [65535, 0], "then held a position at the gate": [65535, 0], "held a position at the gate for": [65535, 0], "a position at the gate for some": [65535, 0], "position at the gate for some time": [65535, 0], "at the gate for some time daring": [65535, 0], "the gate for some time daring the": [65535, 0], "gate for some time daring the enemy": [65535, 0], "for some time daring the enemy to": [65535, 0], "some time daring the enemy to come": [65535, 0], "time daring the enemy to come outside": [65535, 0], "daring the enemy to come outside but": [65535, 0], "the enemy to come outside but the": [65535, 0], "enemy to come outside but the enemy": [65535, 0], "to come outside but the enemy only": [65535, 0], "come outside but the enemy only made": [65535, 0], "outside but the enemy only made faces": [65535, 0], "but the enemy only made faces at": [65535, 0], "the enemy only made faces at him": [65535, 0], "enemy only made faces at him through": [65535, 0], "only made faces at him through the": [65535, 0], "made faces at him through the window": [65535, 0], "faces at him through the window and": [65535, 0], "at him through the window and declined": [65535, 0], "him through the window and declined at": [65535, 0], "through the window and declined at last": [65535, 0], "the window and declined at last the": [65535, 0], "window and declined at last the enemy's": [65535, 0], "and declined at last the enemy's mother": [65535, 0], "declined at last the enemy's mother appeared": [65535, 0], "at last the enemy's mother appeared and": [65535, 0], "last the enemy's mother appeared and called": [65535, 0], "the enemy's mother appeared and called tom": [65535, 0], "enemy's mother appeared and called tom a": [65535, 0], "mother appeared and called tom a bad": [65535, 0], "appeared and called tom a bad vicious": [65535, 0], "and called tom a bad vicious vulgar": [65535, 0], "called tom a bad vicious vulgar child": [65535, 0], "tom a bad vicious vulgar child and": [65535, 0], "a bad vicious vulgar child and ordered": [65535, 0], "bad vicious vulgar child and ordered him": [65535, 0], "vicious vulgar child and ordered him away": [65535, 0], "vulgar child and ordered him away so": [65535, 0], "child and ordered him away so he": [65535, 0], "and ordered him away so he went": [65535, 0], "ordered him away so he went away": [65535, 0], "him away so he went away but": [65535, 0], "away so he went away but he": [65535, 0], "so he went away but he said": [65535, 0], "he went away but he said he": [65535, 0], "went away but he said he 'lowed": [65535, 0], "away but he said he 'lowed to": [65535, 0], "but he said he 'lowed to lay": [65535, 0], "he said he 'lowed to lay for": [65535, 0], "said he 'lowed to lay for that": [65535, 0], "he 'lowed to lay for that boy": [65535, 0], "'lowed to lay for that boy he": [65535, 0], "to lay for that boy he got": [65535, 0], "lay for that boy he got home": [65535, 0], "for that boy he got home pretty": [65535, 0], "that boy he got home pretty late": [65535, 0], "boy he got home pretty late that": [65535, 0], "he got home pretty late that night": [65535, 0], "got home pretty late that night and": [65535, 0], "home pretty late that night and when": [65535, 0], "pretty late that night and when he": [65535, 0], "late that night and when he climbed": [65535, 0], "that night and when he climbed cautiously": [65535, 0], "night and when he climbed cautiously in": [65535, 0], "and when he climbed cautiously in at": [65535, 0], "when he climbed cautiously in at the": [65535, 0], "he climbed cautiously in at the window": [65535, 0], "climbed cautiously in at the window he": [65535, 0], "cautiously in at the window he uncovered": [65535, 0], "in at the window he uncovered an": [65535, 0], "at the window he uncovered an ambuscade": [65535, 0], "the window he uncovered an ambuscade in": [65535, 0], "window he uncovered an ambuscade in the": [65535, 0], "he uncovered an ambuscade in the person": [65535, 0], "uncovered an ambuscade in the person of": [65535, 0], "an ambuscade in the person of his": [65535, 0], "ambuscade in the person of his aunt": [65535, 0], "in the person of his aunt and": [65535, 0], "the person of his aunt and when": [65535, 0], "person of his aunt and when she": [65535, 0], "of his aunt and when she saw": [65535, 0], "his aunt and when she saw the": [65535, 0], "aunt and when she saw the state": [65535, 0], "and when she saw the state his": [65535, 0], "when she saw the state his clothes": [65535, 0], "she saw the state his clothes were": [65535, 0], "saw the state his clothes were in": [65535, 0], "the state his clothes were in her": [65535, 0], "state his clothes were in her resolution": [65535, 0], "his clothes were in her resolution to": [65535, 0], "clothes were in her resolution to turn": [65535, 0], "were in her resolution to turn his": [65535, 0], "in her resolution to turn his saturday": [65535, 0], "her resolution to turn his saturday holiday": [65535, 0], "resolution to turn his saturday holiday into": [65535, 0], "to turn his saturday holiday into captivity": [65535, 0], "turn his saturday holiday into captivity at": [65535, 0], "his saturday holiday into captivity at hard": [65535, 0], "saturday holiday into captivity at hard labor": [65535, 0], "holiday into captivity at hard labor became": [65535, 0], "into captivity at hard labor became adamantine": [65535, 0], "captivity at hard labor became adamantine in": [65535, 0], "at hard labor became adamantine in its": [65535, 0], "hard labor became adamantine in its firmness": [65535, 0], "tom no answer tom no answer what's gone": [65535, 0], "no answer tom no answer what's gone with": [65535, 0], "answer tom no answer what's gone with that": [65535, 0], "tom no answer what's gone with that boy": [65535, 0], "no answer what's gone with that boy i": [65535, 0], "answer what's gone with that boy i wonder": [65535, 0], "what's gone with that boy i wonder you": [65535, 0], "gone with that boy i wonder you tom": [65535, 0], "with that boy i wonder you tom no": [65535, 0], "that boy i wonder you tom no answer": [65535, 0], "boy i wonder you tom no answer the": [65535, 0], "i wonder you tom no answer the old": [65535, 0], "wonder you tom no answer the old lady": [65535, 0], "you tom no answer the old lady pulled": [65535, 0], "tom no answer the old lady pulled her": [65535, 0], "no answer the old lady pulled her spectacles": [65535, 0], "answer the old lady pulled her spectacles down": [65535, 0], "the old lady pulled her spectacles down and": [65535, 0], "old lady pulled her spectacles down and looked": [65535, 0], "lady pulled her spectacles down and looked over": [65535, 0], "pulled her spectacles down and looked over them": [65535, 0], "her spectacles down and looked over them about": [65535, 0], "spectacles down and looked over them about the": [65535, 0], "down and looked over them about the room": [65535, 0], "and looked over them about the room then": [65535, 0], "looked over them about the room then she": [65535, 0], "over them about the room then she put": [65535, 0], "them about the room then she put them": [65535, 0], "about the room then she put them up": [65535, 0], "the room then she put them up and": [65535, 0], "room then she put them up and looked": [65535, 0], "then she put them up and looked out": [65535, 0], "she put them up and looked out under": [65535, 0], "put them up and looked out under them": [65535, 0], "them up and looked out under them she": [65535, 0], "up and looked out under them she seldom": [65535, 0], "and looked out under them she seldom or": [65535, 0], "looked out under them she seldom or never": [65535, 0], "out under them she seldom or never looked": [65535, 0], "under them she seldom or never looked through": [65535, 0], "them she seldom or never looked through them": [65535, 0], "she seldom or never looked through them for": [65535, 0], "seldom or never looked through them for so": [65535, 0], "or never looked through them for so small": [65535, 0], "never looked through them for so small a": [65535, 0], "looked through them for so small a thing": [65535, 0], "through them for so small a thing as": [65535, 0], "them for so small a thing as a": [65535, 0], "for so small a thing as a boy": [65535, 0], "so small a thing as a boy they": [65535, 0], "small a thing as a boy they were": [65535, 0], "a thing as a boy they were her": [65535, 0], "thing as a boy they were her state": [65535, 0], "as a boy they were her state pair": [65535, 0], "a boy they were her state pair the": [65535, 0], "boy they were her state pair the pride": [65535, 0], "they were her state pair the pride of": [65535, 0], "were her state pair the pride of her": [65535, 0], "her state pair the pride of her heart": [65535, 0], "state pair the pride of her heart and": [65535, 0], "pair the pride of her heart and were": [65535, 0], "the pride of her heart and were built": [65535, 0], "pride of her heart and were built for": [65535, 0], "of her heart and were built for style": [65535, 0], "her heart and were built for style not": [65535, 0], "heart and were built for style not service": [65535, 0], "and were built for style not service she": [65535, 0], "were built for style not service she could": [65535, 0], "built for style not service she could have": [65535, 0], "for style not service she could have seen": [65535, 0], "style not service she could have seen through": [65535, 0], "not service she could have seen through a": [65535, 0], "service she could have seen through a pair": [65535, 0], "she could have seen through a pair of": [65535, 0], "could have seen through a pair of stove": [65535, 0], "have seen through a pair of stove lids": [65535, 0], "seen through a pair of stove lids just": [65535, 0], "through a pair of stove lids just as": [65535, 0], "a pair of stove lids just as well": [65535, 0], "pair of stove lids just as well she": [65535, 0], "of stove lids just as well she looked": [65535, 0], "stove lids just as well she looked perplexed": [65535, 0], "lids just as well she looked perplexed for": [65535, 0], "just as well she looked perplexed for a": [65535, 0], "as well she looked perplexed for a moment": [65535, 0], "well she looked perplexed for a moment and": [65535, 0], "she looked perplexed for a moment and then": [65535, 0], "looked perplexed for a moment and then said": [65535, 0], "perplexed for a moment and then said not": [65535, 0], "for a moment and then said not fiercely": [65535, 0], "a moment and then said not fiercely but": [65535, 0], "moment and then said not fiercely but still": [65535, 0], "and then said not fiercely but still loud": [65535, 0], "then said not fiercely but still loud enough": [65535, 0], "said not fiercely but still loud enough for": [65535, 0], "not fiercely but still loud enough for the": [65535, 0], "fiercely but still loud enough for the furniture": [65535, 0], "but still loud enough for the furniture to": [65535, 0], "still loud enough for the furniture to hear": [65535, 0], "loud enough for the furniture to hear well": [65535, 0], "enough for the furniture to hear well i": [65535, 0], "for the furniture to hear well i lay": [65535, 0], "the furniture to hear well i lay if": [65535, 0], "furniture to hear well i lay if i": [65535, 0], "to hear well i lay if i get": [65535, 0], "hear well i lay if i get hold": [65535, 0], "well i lay if i get hold of": [65535, 0], "i lay if i get hold of you": [65535, 0], "lay if i get hold of you i'll": [65535, 0], "if i get hold of you i'll she": [65535, 0], "i get hold of you i'll she did": [65535, 0], "get hold of you i'll she did not": [65535, 0], "hold of you i'll she did not finish": [65535, 0], "of you i'll she did not finish for": [65535, 0], "you i'll she did not finish for by": [65535, 0], "i'll she did not finish for by this": [65535, 0], "she did not finish for by this time": [65535, 0], "did not finish for by this time she": [65535, 0], "not finish for by this time she was": [65535, 0], "finish for by this time she was bending": [65535, 0], "for by this time she was bending down": [65535, 0], "by this time she was bending down and": [65535, 0], "this time she was bending down and punching": [65535, 0], "time she was bending down and punching under": [65535, 0], "she was bending down and punching under the": [65535, 0], "was bending down and punching under the bed": [65535, 0], "bending down and punching under the bed with": [65535, 0], "down and punching under the bed with the": [65535, 0], "and punching under the bed with the broom": [65535, 0], "punching under the bed with the broom and": [65535, 0], "under the bed with the broom and so": [65535, 0], "the bed with the broom and so she": [65535, 0], "bed with the broom and so she needed": [65535, 0], "with the broom and so she needed breath": [65535, 0], "the broom and so she needed breath to": [65535, 0], "broom and so she needed breath to punctuate": [65535, 0], "and so she needed breath to punctuate the": [65535, 0], "so she needed breath to punctuate the punches": [65535, 0], "she needed breath to punctuate the punches with": [65535, 0], "needed breath to punctuate the punches with she": [65535, 0], "breath to punctuate the punches with she resurrected": [65535, 0], "to punctuate the punches with she resurrected nothing": [65535, 0], "punctuate the punches with she resurrected nothing but": [65535, 0], "the punches with she resurrected nothing but the": [65535, 0], "punches with she resurrected nothing but the cat": [65535, 0], "with she resurrected nothing but the cat i": [65535, 0], "she resurrected nothing but the cat i never": [65535, 0], "resurrected nothing but the cat i never did": [65535, 0], "nothing but the cat i never did see": [65535, 0], "but the cat i never did see the": [65535, 0], "the cat i never did see the beat": [65535, 0], "cat i never did see the beat of": [65535, 0], "i never did see the beat of that": [65535, 0], "never did see the beat of that boy": [65535, 0], "did see the beat of that boy she": [65535, 0], "see the beat of that boy she went": [65535, 0], "the beat of that boy she went to": [65535, 0], "beat of that boy she went to the": [65535, 0], "of that boy she went to the open": [65535, 0], "that boy she went to the open door": [65535, 0], "boy she went to the open door and": [65535, 0], "she went to the open door and stood": [65535, 0], "went to the open door and stood in": [65535, 0], "to the open door and stood in it": [65535, 0], "the open door and stood in it and": [65535, 0], "open door and stood in it and looked": [65535, 0], "door and stood in it and looked out": [65535, 0], "and stood in it and looked out among": [65535, 0], "stood in it and looked out among the": [65535, 0], "in it and looked out among the tomato": [65535, 0], "it and looked out among the tomato vines": [65535, 0], "and looked out among the tomato vines and": [65535, 0], "looked out among the tomato vines and jimpson": [65535, 0], "out among the tomato vines and jimpson weeds": [65535, 0], "among the tomato vines and jimpson weeds that": [65535, 0], "the tomato vines and jimpson weeds that constituted": [65535, 0], "tomato vines and jimpson weeds that constituted the": [65535, 0], "vines and jimpson weeds that constituted the garden": [65535, 0], "and jimpson weeds that constituted the garden no": [65535, 0], "jimpson weeds that constituted the garden no tom": [65535, 0], "weeds that constituted the garden no tom so": [65535, 0], "that constituted the garden no tom so she": [65535, 0], "constituted the garden no tom so she lifted": [65535, 0], "the garden no tom so she lifted up": [65535, 0], "garden no tom so she lifted up her": [65535, 0], "no tom so she lifted up her voice": [65535, 0], "tom so she lifted up her voice at": [65535, 0], "so she lifted up her voice at an": [65535, 0], "she lifted up her voice at an angle": [65535, 0], "lifted up her voice at an angle calculated": [65535, 0], "up her voice at an angle calculated for": [65535, 0], "her voice at an angle calculated for distance": [65535, 0], "voice at an angle calculated for distance and": [65535, 0], "at an angle calculated for distance and shouted": [65535, 0], "an angle calculated for distance and shouted y": [65535, 0], "angle calculated for distance and shouted y o": [65535, 0], "calculated for distance and shouted y o u": [65535, 0], "for distance and shouted y o u u": [65535, 0], "distance and shouted y o u u tom": [65535, 0], "and shouted y o u u tom there": [65535, 0], "shouted y o u u tom there was": [65535, 0], "y o u u tom there was a": [65535, 0], "o u u tom there was a slight": [65535, 0], "u u tom there was a slight noise": [65535, 0], "u tom there was a slight noise behind": [65535, 0], "tom there was a slight noise behind her": [65535, 0], "there was a slight noise behind her and": [65535, 0], "was a slight noise behind her and she": [65535, 0], "a slight noise behind her and she turned": [65535, 0], "slight noise behind her and she turned just": [65535, 0], "noise behind her and she turned just in": [65535, 0], "behind her and she turned just in time": [65535, 0], "her and she turned just in time to": [65535, 0], "and she turned just in time to seize": [65535, 0], "she turned just in time to seize a": [65535, 0], "turned just in time to seize a small": [65535, 0], "just in time to seize a small boy": [65535, 0], "in time to seize a small boy by": [65535, 0], "time to seize a small boy by the": [65535, 0], "to seize a small boy by the slack": [65535, 0], "seize a small boy by the slack of": [65535, 0], "a small boy by the slack of his": [65535, 0], "small boy by the slack of his roundabout": [65535, 0], "boy by the slack of his roundabout and": [65535, 0], "by the slack of his roundabout and arrest": [65535, 0], "the slack of his roundabout and arrest his": [65535, 0], "slack of his roundabout and arrest his flight": [65535, 0], "of his roundabout and arrest his flight there": [65535, 0], "his roundabout and arrest his flight there i": [65535, 0], "roundabout and arrest his flight there i might": [65535, 0], "and arrest his flight there i might 'a'": [65535, 0], "arrest his flight there i might 'a' thought": [65535, 0], "his flight there i might 'a' thought of": [65535, 0], "flight there i might 'a' thought of that": [65535, 0], "there i might 'a' thought of that closet": [65535, 0], "i might 'a' thought of that closet what": [65535, 0], "might 'a' thought of that closet what you": [65535, 0], "'a' thought of that closet what you been": [65535, 0], "thought of that closet what you been doing": [65535, 0], "of that closet what you been doing in": [65535, 0], "that closet what you been doing in there": [65535, 0], "closet what you been doing in there nothing": [65535, 0], "what you been doing in there nothing nothing": [65535, 0], "you been doing in there nothing nothing look": [65535, 0], "been doing in there nothing nothing look at": [65535, 0], "doing in there nothing nothing look at your": [65535, 0], "in there nothing nothing look at your hands": [65535, 0], "there nothing nothing look at your hands and": [65535, 0], "nothing nothing look at your hands and look": [65535, 0], "nothing look at your hands and look at": [65535, 0], "look at your hands and look at your": [65535, 0], "at your hands and look at your mouth": [65535, 0], "your hands and look at your mouth what": [65535, 0], "hands and look at your mouth what is": [65535, 0], "and look at your mouth what is that": [65535, 0], "look at your mouth what is that i": [65535, 0], "at your mouth what is that i don't": [65535, 0], "your mouth what is that i don't know": [65535, 0], "mouth what is that i don't know aunt": [65535, 0], "what is that i don't know aunt well": [65535, 0], "is that i don't know aunt well i": [65535, 0], "that i don't know aunt well i know": [65535, 0], "i don't know aunt well i know it's": [65535, 0], "don't know aunt well i know it's jam": [65535, 0], "know aunt well i know it's jam that's": [65535, 0], "aunt well i know it's jam that's what": [65535, 0], "well i know it's jam that's what it": [65535, 0], "i know it's jam that's what it is": [65535, 0], "know it's jam that's what it is forty": [65535, 0], "it's jam that's what it is forty times": [65535, 0], "jam that's what it is forty times i've": [65535, 0], "that's what it is forty times i've said": [65535, 0], "what it is forty times i've said if": [65535, 0], "it is forty times i've said if you": [65535, 0], "is forty times i've said if you didn't": [65535, 0], "forty times i've said if you didn't let": [65535, 0], "times i've said if you didn't let that": [65535, 0], "i've said if you didn't let that jam": [65535, 0], "said if you didn't let that jam alone": [65535, 0], "if you didn't let that jam alone i'd": [65535, 0], "you didn't let that jam alone i'd skin": [65535, 0], "didn't let that jam alone i'd skin you": [65535, 0], "let that jam alone i'd skin you hand": [65535, 0], "that jam alone i'd skin you hand me": [65535, 0], "jam alone i'd skin you hand me that": [65535, 0], "alone i'd skin you hand me that switch": [65535, 0], "i'd skin you hand me that switch the": [65535, 0], "skin you hand me that switch the switch": [65535, 0], "you hand me that switch the switch hovered": [65535, 0], "hand me that switch the switch hovered in": [65535, 0], "me that switch the switch hovered in the": [65535, 0], "that switch the switch hovered in the air": [65535, 0], "switch the switch hovered in the air the": [65535, 0], "the switch hovered in the air the peril": [65535, 0], "switch hovered in the air the peril was": [65535, 0], "hovered in the air the peril was desperate": [65535, 0], "in the air the peril was desperate my": [65535, 0], "the air the peril was desperate my look": [65535, 0], "air the peril was desperate my look behind": [65535, 0], "the peril was desperate my look behind you": [65535, 0], "peril was desperate my look behind you aunt": [65535, 0], "was desperate my look behind you aunt the": [65535, 0], "desperate my look behind you aunt the old": [65535, 0], "my look behind you aunt the old lady": [65535, 0], "look behind you aunt the old lady whirled": [65535, 0], "behind you aunt the old lady whirled round": [65535, 0], "you aunt the old lady whirled round and": [65535, 0], "aunt the old lady whirled round and snatched": [65535, 0], "the old lady whirled round and snatched her": [65535, 0], "old lady whirled round and snatched her skirts": [65535, 0], "lady whirled round and snatched her skirts out": [65535, 0], "whirled round and snatched her skirts out of": [65535, 0], "round and snatched her skirts out of danger": [65535, 0], "and snatched her skirts out of danger the": [65535, 0], "snatched her skirts out of danger the lad": [65535, 0], "her skirts out of danger the lad fled": [65535, 0], "skirts out of danger the lad fled on": [65535, 0], "out of danger the lad fled on the": [65535, 0], "of danger the lad fled on the instant": [65535, 0], "danger the lad fled on the instant scrambled": [65535, 0], "the lad fled on the instant scrambled up": [65535, 0], "lad fled on the instant scrambled up the": [65535, 0], "fled on the instant scrambled up the high": [65535, 0], "on the instant scrambled up the high board": [65535, 0], "the instant scrambled up the high board fence": [65535, 0], "instant scrambled up the high board fence and": [65535, 0], "scrambled up the high board fence and disappeared": [65535, 0], "up the high board fence and disappeared over": [65535, 0], "the high board fence and disappeared over it": [65535, 0], "high board fence and disappeared over it his": [65535, 0], "board fence and disappeared over it his aunt": [65535, 0], "fence and disappeared over it his aunt polly": [65535, 0], "and disappeared over it his aunt polly stood": [65535, 0], "disappeared over it his aunt polly stood surprised": [65535, 0], "over it his aunt polly stood surprised a": [65535, 0], "it his aunt polly stood surprised a moment": [65535, 0], "his aunt polly stood surprised a moment and": [65535, 0], "aunt polly stood surprised a moment and then": [65535, 0], "polly stood surprised a moment and then broke": [65535, 0], "stood surprised a moment and then broke into": [65535, 0], "surprised a moment and then broke into a": [65535, 0], "a moment and then broke into a gentle": [65535, 0], "moment and then broke into a gentle laugh": [65535, 0], "and then broke into a gentle laugh hang": [65535, 0], "then broke into a gentle laugh hang the": [65535, 0], "broke into a gentle laugh hang the boy": [65535, 0], "into a gentle laugh hang the boy can't": [65535, 0], "a gentle laugh hang the boy can't i": [65535, 0], "gentle laugh hang the boy can't i never": [65535, 0], "laugh hang the boy can't i never learn": [65535, 0], "hang the boy can't i never learn anything": [65535, 0], "the boy can't i never learn anything ain't": [65535, 0], "boy can't i never learn anything ain't he": [65535, 0], "can't i never learn anything ain't he played": [65535, 0], "i never learn anything ain't he played me": [65535, 0], "never learn anything ain't he played me tricks": [65535, 0], "learn anything ain't he played me tricks enough": [65535, 0], "anything ain't he played me tricks enough like": [65535, 0], "ain't he played me tricks enough like that": [65535, 0], "he played me tricks enough like that for": [65535, 0], "played me tricks enough like that for me": [65535, 0], "me tricks enough like that for me to": [65535, 0], "tricks enough like that for me to be": [65535, 0], "enough like that for me to be looking": [65535, 0], "like that for me to be looking out": [65535, 0], "that for me to be looking out for": [65535, 0], "for me to be looking out for him": [65535, 0], "me to be looking out for him by": [65535, 0], "to be looking out for him by this": [65535, 0], "be looking out for him by this time": [65535, 0], "looking out for him by this time but": [65535, 0], "out for him by this time but old": [65535, 0], "for him by this time but old fools": [65535, 0], "him by this time but old fools is": [65535, 0], "by this time but old fools is the": [65535, 0], "this time but old fools is the biggest": [65535, 0], "time but old fools is the biggest fools": [65535, 0], "but old fools is the biggest fools there": [65535, 0], "old fools is the biggest fools there is": [65535, 0], "fools is the biggest fools there is can't": [65535, 0], "is the biggest fools there is can't learn": [65535, 0], "the biggest fools there is can't learn an": [65535, 0], "biggest fools there is can't learn an old": [65535, 0], "fools there is can't learn an old dog": [65535, 0], "there is can't learn an old dog new": [65535, 0], "is can't learn an old dog new tricks": [65535, 0], "can't learn an old dog new tricks as": [65535, 0], "learn an old dog new tricks as the": [65535, 0], "an old dog new tricks as the saying": [65535, 0], "old dog new tricks as the saying is": [65535, 0], "dog new tricks as the saying is but": [65535, 0], "new tricks as the saying is but my": [65535, 0], "tricks as the saying is but my goodness": [65535, 0], "as the saying is but my goodness he": [65535, 0], "the saying is but my goodness he never": [65535, 0], "saying is but my goodness he never plays": [65535, 0], "is but my goodness he never plays them": [65535, 0], "but my goodness he never plays them alike": [65535, 0], "my goodness he never plays them alike two": [65535, 0], "goodness he never plays them alike two days": [65535, 0], "he never plays them alike two days and": [65535, 0], "never plays them alike two days and how": [65535, 0], "plays them alike two days and how is": [65535, 0], "them alike two days and how is a": [65535, 0], "alike two days and how is a body": [65535, 0], "two days and how is a body to": [65535, 0], "days and how is a body to know": [65535, 0], "and how is a body to know what's": [65535, 0], "how is a body to know what's coming": [65535, 0], "is a body to know what's coming he": [65535, 0], "a body to know what's coming he 'pears": [65535, 0], "body to know what's coming he 'pears to": [65535, 0], "to know what's coming he 'pears to know": [65535, 0], "know what's coming he 'pears to know just": [65535, 0], "what's coming he 'pears to know just how": [65535, 0], "coming he 'pears to know just how long": [65535, 0], "he 'pears to know just how long he": [65535, 0], "'pears to know just how long he can": [65535, 0], "to know just how long he can torment": [65535, 0], "know just how long he can torment me": [65535, 0], "just how long he can torment me before": [65535, 0], "how long he can torment me before i": [65535, 0], "long he can torment me before i get": [65535, 0], "he can torment me before i get my": [65535, 0], "can torment me before i get my dander": [65535, 0], "torment me before i get my dander up": [65535, 0], "me before i get my dander up and": [65535, 0], "before i get my dander up and he": [65535, 0], "i get my dander up and he knows": [65535, 0], "get my dander up and he knows if": [65535, 0], "my dander up and he knows if he": [65535, 0], "dander up and he knows if he can": [65535, 0], "up and he knows if he can make": [65535, 0], "and he knows if he can make out": [65535, 0], "he knows if he can make out to": [65535, 0], "knows if he can make out to put": [65535, 0], "if he can make out to put me": [65535, 0], "he can make out to put me off": [65535, 0], "can make out to put me off for": [65535, 0], "make out to put me off for a": [65535, 0], "out to put me off for a minute": [65535, 0], "to put me off for a minute or": [65535, 0], "put me off for a minute or make": [65535, 0], "me off for a minute or make me": [65535, 0], "off for a minute or make me laugh": [65535, 0], "for a minute or make me laugh it's": [65535, 0], "a minute or make me laugh it's all": [65535, 0], "minute or make me laugh it's all down": [65535, 0], "or make me laugh it's all down again": [65535, 0], "make me laugh it's all down again and": [65535, 0], "me laugh it's all down again and i": [65535, 0], "laugh it's all down again and i can't": [65535, 0], "it's all down again and i can't hit": [65535, 0], "all down again and i can't hit him": [65535, 0], "down again and i can't hit him a": [65535, 0], "again and i can't hit him a lick": [65535, 0], "and i can't hit him a lick i": [65535, 0], "i can't hit him a lick i ain't": [65535, 0], "can't hit him a lick i ain't doing": [65535, 0], "hit him a lick i ain't doing my": [65535, 0], "him a lick i ain't doing my duty": [65535, 0], "a lick i ain't doing my duty by": [65535, 0], "lick i ain't doing my duty by that": [65535, 0], "i ain't doing my duty by that boy": [65535, 0], "ain't doing my duty by that boy and": [65535, 0], "doing my duty by that boy and that's": [65535, 0], "my duty by that boy and that's the": [65535, 0], "duty by that boy and that's the lord's": [65535, 0], "by that boy and that's the lord's truth": [65535, 0], "that boy and that's the lord's truth goodness": [65535, 0], "boy and that's the lord's truth goodness knows": [65535, 0], "and that's the lord's truth goodness knows spare": [65535, 0], "that's the lord's truth goodness knows spare the": [65535, 0], "the lord's truth goodness knows spare the rod": [65535, 0], "lord's truth goodness knows spare the rod and": [65535, 0], "truth goodness knows spare the rod and spoil": [65535, 0], "goodness knows spare the rod and spoil the": [65535, 0], "knows spare the rod and spoil the child": [65535, 0], "spare the rod and spoil the child as": [65535, 0], "the rod and spoil the child as the": [65535, 0], "rod and spoil the child as the good": [65535, 0], "and spoil the child as the good book": [65535, 0], "spoil the child as the good book says": [65535, 0], "the child as the good book says i'm": [65535, 0], "child as the good book says i'm a": [65535, 0], "as the good book says i'm a laying": [65535, 0], "the good book says i'm a laying up": [65535, 0], "good book says i'm a laying up sin": [65535, 0], "book says i'm a laying up sin and": [65535, 0], "says i'm a laying up sin and suffering": [65535, 0], "i'm a laying up sin and suffering for": [65535, 0], "a laying up sin and suffering for us": [65535, 0], "laying up sin and suffering for us both": [65535, 0], "up sin and suffering for us both i": [65535, 0], "sin and suffering for us both i know": [65535, 0], "and suffering for us both i know he's": [65535, 0], "suffering for us both i know he's full": [65535, 0], "for us both i know he's full of": [65535, 0], "us both i know he's full of the": [65535, 0], "both i know he's full of the old": [65535, 0], "i know he's full of the old scratch": [65535, 0], "know he's full of the old scratch but": [65535, 0], "he's full of the old scratch but laws": [65535, 0], "full of the old scratch but laws a": [65535, 0], "of the old scratch but laws a me": [65535, 0], "the old scratch but laws a me he's": [65535, 0], "old scratch but laws a me he's my": [65535, 0], "scratch but laws a me he's my own": [65535, 0], "but laws a me he's my own dead": [65535, 0], "laws a me he's my own dead sister's": [65535, 0], "a me he's my own dead sister's boy": [65535, 0], "me he's my own dead sister's boy poor": [65535, 0], "he's my own dead sister's boy poor thing": [65535, 0], "my own dead sister's boy poor thing and": [65535, 0], "own dead sister's boy poor thing and i": [65535, 0], "dead sister's boy poor thing and i ain't": [65535, 0], "sister's boy poor thing and i ain't got": [65535, 0], "boy poor thing and i ain't got the": [65535, 0], "poor thing and i ain't got the heart": [65535, 0], "thing and i ain't got the heart to": [65535, 0], "and i ain't got the heart to lash": [65535, 0], "i ain't got the heart to lash him": [65535, 0], "ain't got the heart to lash him somehow": [65535, 0], "got the heart to lash him somehow every": [65535, 0], "the heart to lash him somehow every time": [65535, 0], "heart to lash him somehow every time i": [65535, 0], "to lash him somehow every time i let": [65535, 0], "lash him somehow every time i let him": [65535, 0], "him somehow every time i let him off": [65535, 0], "somehow every time i let him off my": [65535, 0], "every time i let him off my conscience": [65535, 0], "time i let him off my conscience does": [65535, 0], "i let him off my conscience does hurt": [65535, 0], "let him off my conscience does hurt me": [65535, 0], "him off my conscience does hurt me so": [65535, 0], "off my conscience does hurt me so and": [65535, 0], "my conscience does hurt me so and every": [65535, 0], "conscience does hurt me so and every time": [65535, 0], "does hurt me so and every time i": [65535, 0], "hurt me so and every time i hit": [65535, 0], "me so and every time i hit him": [65535, 0], "so and every time i hit him my": [65535, 0], "and every time i hit him my old": [65535, 0], "every time i hit him my old heart": [65535, 0], "time i hit him my old heart most": [65535, 0], "i hit him my old heart most breaks": [65535, 0], "hit him my old heart most breaks well": [65535, 0], "him my old heart most breaks well a": [65535, 0], "my old heart most breaks well a well": [65535, 0], "old heart most breaks well a well man": [65535, 0], "heart most breaks well a well man that": [65535, 0], "most breaks well a well man that is": [65535, 0], "breaks well a well man that is born": [65535, 0], "well a well man that is born of": [65535, 0], "a well man that is born of woman": [65535, 0], "well man that is born of woman is": [65535, 0], "man that is born of woman is of": [65535, 0], "that is born of woman is of few": [65535, 0], "is born of woman is of few days": [65535, 0], "born of woman is of few days and": [65535, 0], "of woman is of few days and full": [65535, 0], "woman is of few days and full of": [65535, 0], "is of few days and full of trouble": [65535, 0], "of few days and full of trouble as": [65535, 0], "few days and full of trouble as the": [65535, 0], "days and full of trouble as the scripture": [65535, 0], "and full of trouble as the scripture says": [65535, 0], "full of trouble as the scripture says and": [65535, 0], "of trouble as the scripture says and i": [65535, 0], "trouble as the scripture says and i reckon": [65535, 0], "as the scripture says and i reckon it's": [65535, 0], "the scripture says and i reckon it's so": [65535, 0], "scripture says and i reckon it's so he'll": [65535, 0], "says and i reckon it's so he'll play": [65535, 0], "and i reckon it's so he'll play hookey": [65535, 0], "i reckon it's so he'll play hookey this": [65535, 0], "reckon it's so he'll play hookey this evening": [65535, 0], "it's so he'll play hookey this evening and": [65535, 0], "so he'll play hookey this evening and i'll": [65535, 0], "he'll play hookey this evening and i'll just": [65535, 0], "play hookey this evening and i'll just be": [65535, 0], "hookey this evening and i'll just be obliged": [65535, 0], "this evening and i'll just be obliged to": [65535, 0], "evening and i'll just be obliged to make": [65535, 0], "and i'll just be obliged to make him": [65535, 0], "i'll just be obliged to make him work": [65535, 0], "just be obliged to make him work to": [65535, 0], "be obliged to make him work to morrow": [65535, 0], "obliged to make him work to morrow to": [65535, 0], "to make him work to morrow to punish": [65535, 0], "make him work to morrow to punish him": [65535, 0], "him work to morrow to punish him it's": [65535, 0], "work to morrow to punish him it's mighty": [65535, 0], "to morrow to punish him it's mighty hard": [65535, 0], "morrow to punish him it's mighty hard to": [65535, 0], "to punish him it's mighty hard to make": [65535, 0], "punish him it's mighty hard to make him": [65535, 0], "him it's mighty hard to make him work": [65535, 0], "it's mighty hard to make him work saturdays": [65535, 0], "mighty hard to make him work saturdays when": [65535, 0], "hard to make him work saturdays when all": [65535, 0], "to make him work saturdays when all the": [65535, 0], "make him work saturdays when all the boys": [65535, 0], "him work saturdays when all the boys is": [65535, 0], "work saturdays when all the boys is having": [65535, 0], "saturdays when all the boys is having holiday": [65535, 0], "when all the boys is having holiday but": [65535, 0], "all the boys is having holiday but he": [65535, 0], "the boys is having holiday but he hates": [65535, 0], "boys is having holiday but he hates work": [65535, 0], "is having holiday but he hates work more": [65535, 0], "having holiday but he hates work more than": [65535, 0], "holiday but he hates work more than he": [65535, 0], "but he hates work more than he hates": [65535, 0], "he hates work more than he hates anything": [65535, 0], "hates work more than he hates anything else": [65535, 0], "work more than he hates anything else and": [65535, 0], "more than he hates anything else and i've": [65535, 0], "than he hates anything else and i've got": [65535, 0], "he hates anything else and i've got to": [65535, 0], "hates anything else and i've got to do": [65535, 0], "anything else and i've got to do some": [65535, 0], "else and i've got to do some of": [65535, 0], "and i've got to do some of my": [65535, 0], "i've got to do some of my duty": [65535, 0], "got to do some of my duty by": [65535, 0], "to do some of my duty by him": [65535, 0], "do some of my duty by him or": [65535, 0], "some of my duty by him or i'll": [65535, 0], "of my duty by him or i'll be": [65535, 0], "my duty by him or i'll be the": [65535, 0], "duty by him or i'll be the ruination": [65535, 0], "by him or i'll be the ruination of": [65535, 0], "him or i'll be the ruination of the": [65535, 0], "or i'll be the ruination of the child": [65535, 0], "i'll be the ruination of the child tom": [65535, 0], "be the ruination of the child tom did": [65535, 0], "the ruination of the child tom did play": [65535, 0], "ruination of the child tom did play hookey": [65535, 0], "of the child tom did play hookey and": [65535, 0], "the child tom did play hookey and he": [65535, 0], "child tom did play hookey and he had": [65535, 0], "tom did play hookey and he had a": [65535, 0], "did play hookey and he had a very": [65535, 0], "play hookey and he had a very good": [65535, 0], "hookey and he had a very good time": [65535, 0], "and he had a very good time he": [65535, 0], "he had a very good time he got": [65535, 0], "had a very good time he got back": [65535, 0], "a very good time he got back home": [65535, 0], "very good time he got back home barely": [65535, 0], "good time he got back home barely in": [65535, 0], "time he got back home barely in season": [65535, 0], "he got back home barely in season to": [65535, 0], "got back home barely in season to help": [65535, 0], "back home barely in season to help jim": [65535, 0], "home barely in season to help jim the": [65535, 0], "barely in season to help jim the small": [65535, 0], "in season to help jim the small colored": [65535, 0], "season to help jim the small colored boy": [65535, 0], "to help jim the small colored boy saw": [65535, 0], "help jim the small colored boy saw next": [65535, 0], "jim the small colored boy saw next day's": [65535, 0], "the small colored boy saw next day's wood": [65535, 0], "small colored boy saw next day's wood and": [65535, 0], "colored boy saw next day's wood and split": [65535, 0], "boy saw next day's wood and split the": [65535, 0], "saw next day's wood and split the kindlings": [65535, 0], "next day's wood and split the kindlings before": [65535, 0], "day's wood and split the kindlings before supper": [65535, 0], "wood and split the kindlings before supper at": [65535, 0], "and split the kindlings before supper at least": [65535, 0], "split the kindlings before supper at least he": [65535, 0], "the kindlings before supper at least he was": [65535, 0], "kindlings before supper at least he was there": [65535, 0], "before supper at least he was there in": [65535, 0], "supper at least he was there in time": [65535, 0], "at least he was there in time to": [65535, 0], "least he was there in time to tell": [65535, 0], "he was there in time to tell his": [65535, 0], "was there in time to tell his adventures": [65535, 0], "there in time to tell his adventures to": [65535, 0], "in time to tell his adventures to jim": [65535, 0], "time to tell his adventures to jim while": [65535, 0], "to tell his adventures to jim while jim": [65535, 0], "tell his adventures to jim while jim did": [65535, 0], "his adventures to jim while jim did three": [65535, 0], "adventures to jim while jim did three fourths": [65535, 0], "to jim while jim did three fourths of": [65535, 0], "jim while jim did three fourths of the": [65535, 0], "while jim did three fourths of the work": [65535, 0], "jim did three fourths of the work tom's": [65535, 0], "did three fourths of the work tom's younger": [65535, 0], "three fourths of the work tom's younger brother": [65535, 0], "fourths of the work tom's younger brother or": [65535, 0], "of the work tom's younger brother or rather": [65535, 0], "the work tom's younger brother or rather half": [65535, 0], "work tom's younger brother or rather half brother": [65535, 0], "tom's younger brother or rather half brother sid": [65535, 0], "younger brother or rather half brother sid was": [65535, 0], "brother or rather half brother sid was already": [65535, 0], "or rather half brother sid was already through": [65535, 0], "rather half brother sid was already through with": [65535, 0], "half brother sid was already through with his": [65535, 0], "brother sid was already through with his part": [65535, 0], "sid was already through with his part of": [65535, 0], "was already through with his part of the": [65535, 0], "already through with his part of the work": [65535, 0], "through with his part of the work picking": [65535, 0], "with his part of the work picking up": [65535, 0], "his part of the work picking up chips": [65535, 0], "part of the work picking up chips for": [65535, 0], "of the work picking up chips for he": [65535, 0], "the work picking up chips for he was": [65535, 0], "work picking up chips for he was a": [65535, 0], "picking up chips for he was a quiet": [65535, 0], "up chips for he was a quiet boy": [65535, 0], "chips for he was a quiet boy and": [65535, 0], "for he was a quiet boy and had": [65535, 0], "he was a quiet boy and had no": [65535, 0], "was a quiet boy and had no adventurous": [65535, 0], "a quiet boy and had no adventurous troublesome": [65535, 0], "quiet boy and had no adventurous troublesome ways": [65535, 0], "boy and had no adventurous troublesome ways while": [65535, 0], "and had no adventurous troublesome ways while tom": [65535, 0], "had no adventurous troublesome ways while tom was": [65535, 0], "no adventurous troublesome ways while tom was eating": [65535, 0], "adventurous troublesome ways while tom was eating his": [65535, 0], "troublesome ways while tom was eating his supper": [65535, 0], "ways while tom was eating his supper and": [65535, 0], "while tom was eating his supper and stealing": [65535, 0], "tom was eating his supper and stealing sugar": [65535, 0], "was eating his supper and stealing sugar as": [65535, 0], "eating his supper and stealing sugar as opportunity": [65535, 0], "his supper and stealing sugar as opportunity offered": [65535, 0], "supper and stealing sugar as opportunity offered aunt": [65535, 0], "and stealing sugar as opportunity offered aunt polly": [65535, 0], "stealing sugar as opportunity offered aunt polly asked": [65535, 0], "sugar as opportunity offered aunt polly asked him": [65535, 0], "as opportunity offered aunt polly asked him questions": [65535, 0], "opportunity offered aunt polly asked him questions that": [65535, 0], "offered aunt polly asked him questions that were": [65535, 0], "aunt polly asked him questions that were full": [65535, 0], "polly asked him questions that were full of": [65535, 0], "asked him questions that were full of guile": [65535, 0], "him questions that were full of guile and": [65535, 0], "questions that were full of guile and very": [65535, 0], "that were full of guile and very deep": [65535, 0], "were full of guile and very deep for": [65535, 0], "full of guile and very deep for she": [65535, 0], "of guile and very deep for she wanted": [65535, 0], "guile and very deep for she wanted to": [65535, 0], "and very deep for she wanted to trap": [65535, 0], "very deep for she wanted to trap him": [65535, 0], "deep for she wanted to trap him into": [65535, 0], "for she wanted to trap him into damaging": [65535, 0], "she wanted to trap him into damaging revealments": [65535, 0], "wanted to trap him into damaging revealments like": [65535, 0], "to trap him into damaging revealments like many": [65535, 0], "trap him into damaging revealments like many other": [65535, 0], "him into damaging revealments like many other simple": [65535, 0], "into damaging revealments like many other simple hearted": [65535, 0], "damaging revealments like many other simple hearted souls": [65535, 0], "revealments like many other simple hearted souls it": [65535, 0], "like many other simple hearted souls it was": [65535, 0], "many other simple hearted souls it was her": [65535, 0], "other simple hearted souls it was her pet": [65535, 0], "simple hearted souls it was her pet vanity": [65535, 0], "hearted souls it was her pet vanity to": [65535, 0], "souls it was her pet vanity to believe": [65535, 0], "it was her pet vanity to believe she": [65535, 0], "was her pet vanity to believe she was": [65535, 0], "her pet vanity to believe she was endowed": [65535, 0], "pet vanity to believe she was endowed with": [65535, 0], "vanity to believe she was endowed with a": [65535, 0], "to believe she was endowed with a talent": [65535, 0], "believe she was endowed with a talent for": [65535, 0], "she was endowed with a talent for dark": [65535, 0], "was endowed with a talent for dark and": [65535, 0], "endowed with a talent for dark and mysterious": [65535, 0], "with a talent for dark and mysterious diplomacy": [65535, 0], "a talent for dark and mysterious diplomacy and": [65535, 0], "talent for dark and mysterious diplomacy and she": [65535, 0], "for dark and mysterious diplomacy and she loved": [65535, 0], "dark and mysterious diplomacy and she loved to": [65535, 0], "and mysterious diplomacy and she loved to contemplate": [65535, 0], "mysterious diplomacy and she loved to contemplate her": [65535, 0], "diplomacy and she loved to contemplate her most": [65535, 0], "and she loved to contemplate her most transparent": [65535, 0], "she loved to contemplate her most transparent devices": [65535, 0], "loved to contemplate her most transparent devices as": [65535, 0], "to contemplate her most transparent devices as marvels": [65535, 0], "contemplate her most transparent devices as marvels of": [65535, 0], "her most transparent devices as marvels of low": [65535, 0], "most transparent devices as marvels of low cunning": [65535, 0], "transparent devices as marvels of low cunning said": [65535, 0], "devices as marvels of low cunning said she": [65535, 0], "as marvels of low cunning said she tom": [65535, 0], "marvels of low cunning said she tom it": [65535, 0], "of low cunning said she tom it was": [65535, 0], "low cunning said she tom it was middling": [65535, 0], "cunning said she tom it was middling warm": [65535, 0], "said she tom it was middling warm in": [65535, 0], "she tom it was middling warm in school": [65535, 0], "tom it was middling warm in school warn't": [65535, 0], "it was middling warm in school warn't it": [65535, 0], "was middling warm in school warn't it yes'm": [65535, 0], "middling warm in school warn't it yes'm powerful": [65535, 0], "warm in school warn't it yes'm powerful warm": [65535, 0], "in school warn't it yes'm powerful warm warn't": [65535, 0], "school warn't it yes'm powerful warm warn't it": [65535, 0], "warn't it yes'm powerful warm warn't it yes'm": [65535, 0], "it yes'm powerful warm warn't it yes'm didn't": [65535, 0], "yes'm powerful warm warn't it yes'm didn't you": [65535, 0], "powerful warm warn't it yes'm didn't you want": [65535, 0], "warm warn't it yes'm didn't you want to": [65535, 0], "warn't it yes'm didn't you want to go": [65535, 0], "it yes'm didn't you want to go in": [65535, 0], "yes'm didn't you want to go in a": [65535, 0], "didn't you want to go in a swimming": [65535, 0], "you want to go in a swimming tom": [65535, 0], "want to go in a swimming tom a": [65535, 0], "to go in a swimming tom a bit": [65535, 0], "go in a swimming tom a bit of": [65535, 0], "in a swimming tom a bit of a": [65535, 0], "a swimming tom a bit of a scare": [65535, 0], "swimming tom a bit of a scare shot": [65535, 0], "tom a bit of a scare shot through": [65535, 0], "a bit of a scare shot through tom": [65535, 0], "bit of a scare shot through tom a": [65535, 0], "of a scare shot through tom a touch": [65535, 0], "a scare shot through tom a touch of": [65535, 0], "scare shot through tom a touch of uncomfortable": [65535, 0], "shot through tom a touch of uncomfortable suspicion": [65535, 0], "through tom a touch of uncomfortable suspicion he": [65535, 0], "tom a touch of uncomfortable suspicion he searched": [65535, 0], "a touch of uncomfortable suspicion he searched aunt": [65535, 0], "touch of uncomfortable suspicion he searched aunt polly's": [65535, 0], "of uncomfortable suspicion he searched aunt polly's face": [65535, 0], "uncomfortable suspicion he searched aunt polly's face but": [65535, 0], "suspicion he searched aunt polly's face but it": [65535, 0], "he searched aunt polly's face but it told": [65535, 0], "searched aunt polly's face but it told him": [65535, 0], "aunt polly's face but it told him nothing": [65535, 0], "polly's face but it told him nothing so": [65535, 0], "face but it told him nothing so he": [65535, 0], "but it told him nothing so he said": [65535, 0], "it told him nothing so he said no'm": [65535, 0], "told him nothing so he said no'm well": [65535, 0], "him nothing so he said no'm well not": [65535, 0], "nothing so he said no'm well not very": [65535, 0], "so he said no'm well not very much": [65535, 0], "he said no'm well not very much the": [65535, 0], "said no'm well not very much the old": [65535, 0], "no'm well not very much the old lady": [65535, 0], "well not very much the old lady reached": [65535, 0], "not very much the old lady reached out": [65535, 0], "very much the old lady reached out her": [65535, 0], "much the old lady reached out her hand": [65535, 0], "the old lady reached out her hand and": [65535, 0], "old lady reached out her hand and felt": [65535, 0], "lady reached out her hand and felt tom's": [65535, 0], "reached out her hand and felt tom's shirt": [65535, 0], "out her hand and felt tom's shirt and": [65535, 0], "her hand and felt tom's shirt and said": [65535, 0], "hand and felt tom's shirt and said but": [65535, 0], "and felt tom's shirt and said but you": [65535, 0], "felt tom's shirt and said but you ain't": [65535, 0], "tom's shirt and said but you ain't too": [65535, 0], "shirt and said but you ain't too warm": [65535, 0], "and said but you ain't too warm now": [65535, 0], "said but you ain't too warm now though": [65535, 0], "but you ain't too warm now though and": [65535, 0], "you ain't too warm now though and it": [65535, 0], "ain't too warm now though and it flattered": [65535, 0], "too warm now though and it flattered her": [65535, 0], "warm now though and it flattered her to": [65535, 0], "now though and it flattered her to reflect": [65535, 0], "though and it flattered her to reflect that": [65535, 0], "and it flattered her to reflect that she": [65535, 0], "it flattered her to reflect that she had": [65535, 0], "flattered her to reflect that she had discovered": [65535, 0], "her to reflect that she had discovered that": [65535, 0], "to reflect that she had discovered that the": [65535, 0], "reflect that she had discovered that the shirt": [65535, 0], "that she had discovered that the shirt was": [65535, 0], "she had discovered that the shirt was dry": [65535, 0], "had discovered that the shirt was dry without": [65535, 0], "discovered that the shirt was dry without anybody": [65535, 0], "that the shirt was dry without anybody knowing": [65535, 0], "the shirt was dry without anybody knowing that": [65535, 0], "shirt was dry without anybody knowing that that": [65535, 0], "was dry without anybody knowing that that was": [65535, 0], "dry without anybody knowing that that was what": [65535, 0], "without anybody knowing that that was what she": [65535, 0], "anybody knowing that that was what she had": [65535, 0], "knowing that that was what she had in": [65535, 0], "that that was what she had in her": [65535, 0], "that was what she had in her mind": [65535, 0], "was what she had in her mind but": [65535, 0], "what she had in her mind but in": [65535, 0], "she had in her mind but in spite": [65535, 0], "had in her mind but in spite of": [65535, 0], "in her mind but in spite of her": [65535, 0], "her mind but in spite of her tom": [65535, 0], "mind but in spite of her tom knew": [65535, 0], "but in spite of her tom knew where": [65535, 0], "in spite of her tom knew where the": [65535, 0], "spite of her tom knew where the wind": [65535, 0], "of her tom knew where the wind lay": [65535, 0], "her tom knew where the wind lay now": [65535, 0], "tom knew where the wind lay now so": [65535, 0], "knew where the wind lay now so he": [65535, 0], "where the wind lay now so he forestalled": [65535, 0], "the wind lay now so he forestalled what": [65535, 0], "wind lay now so he forestalled what might": [65535, 0], "lay now so he forestalled what might be": [65535, 0], "now so he forestalled what might be the": [65535, 0], "so he forestalled what might be the next": [65535, 0], "he forestalled what might be the next move": [65535, 0], "forestalled what might be the next move some": [65535, 0], "what might be the next move some of": [65535, 0], "might be the next move some of us": [65535, 0], "be the next move some of us pumped": [65535, 0], "the next move some of us pumped on": [65535, 0], "next move some of us pumped on our": [65535, 0], "move some of us pumped on our heads": [65535, 0], "some of us pumped on our heads mine's": [65535, 0], "of us pumped on our heads mine's damp": [65535, 0], "us pumped on our heads mine's damp yet": [65535, 0], "pumped on our heads mine's damp yet see": [65535, 0], "on our heads mine's damp yet see aunt": [65535, 0], "our heads mine's damp yet see aunt polly": [65535, 0], "heads mine's damp yet see aunt polly was": [65535, 0], "mine's damp yet see aunt polly was vexed": [65535, 0], "damp yet see aunt polly was vexed to": [65535, 0], "yet see aunt polly was vexed to think": [65535, 0], "see aunt polly was vexed to think she": [65535, 0], "aunt polly was vexed to think she had": [65535, 0], "polly was vexed to think she had overlooked": [65535, 0], "was vexed to think she had overlooked that": [65535, 0], "vexed to think she had overlooked that bit": [65535, 0], "to think she had overlooked that bit of": [65535, 0], "think she had overlooked that bit of circumstantial": [65535, 0], "she had overlooked that bit of circumstantial evidence": [65535, 0], "had overlooked that bit of circumstantial evidence and": [65535, 0], "overlooked that bit of circumstantial evidence and missed": [65535, 0], "that bit of circumstantial evidence and missed a": [65535, 0], "bit of circumstantial evidence and missed a trick": [65535, 0], "of circumstantial evidence and missed a trick then": [65535, 0], "circumstantial evidence and missed a trick then she": [65535, 0], "evidence and missed a trick then she had": [65535, 0], "and missed a trick then she had a": [65535, 0], "missed a trick then she had a new": [65535, 0], "a trick then she had a new inspiration": [65535, 0], "trick then she had a new inspiration tom": [65535, 0], "then she had a new inspiration tom you": [65535, 0], "she had a new inspiration tom you didn't": [65535, 0], "had a new inspiration tom you didn't have": [65535, 0], "a new inspiration tom you didn't have to": [65535, 0], "new inspiration tom you didn't have to undo": [65535, 0], "inspiration tom you didn't have to undo your": [65535, 0], "tom you didn't have to undo your shirt": [65535, 0], "you didn't have to undo your shirt collar": [65535, 0], "didn't have to undo your shirt collar where": [65535, 0], "have to undo your shirt collar where i": [65535, 0], "to undo your shirt collar where i sewed": [65535, 0], "undo your shirt collar where i sewed it": [65535, 0], "your shirt collar where i sewed it to": [65535, 0], "shirt collar where i sewed it to pump": [65535, 0], "collar where i sewed it to pump on": [65535, 0], "where i sewed it to pump on your": [65535, 0], "i sewed it to pump on your head": [65535, 0], "sewed it to pump on your head did": [65535, 0], "it to pump on your head did you": [65535, 0], "to pump on your head did you unbutton": [65535, 0], "pump on your head did you unbutton your": [65535, 0], "on your head did you unbutton your jacket": [65535, 0], "your head did you unbutton your jacket the": [65535, 0], "head did you unbutton your jacket the trouble": [65535, 0], "did you unbutton your jacket the trouble vanished": [65535, 0], "you unbutton your jacket the trouble vanished out": [65535, 0], "unbutton your jacket the trouble vanished out of": [65535, 0], "your jacket the trouble vanished out of tom's": [65535, 0], "jacket the trouble vanished out of tom's face": [65535, 0], "the trouble vanished out of tom's face he": [65535, 0], "trouble vanished out of tom's face he opened": [65535, 0], "vanished out of tom's face he opened his": [65535, 0], "out of tom's face he opened his jacket": [65535, 0], "of tom's face he opened his jacket his": [65535, 0], "tom's face he opened his jacket his shirt": [65535, 0], "face he opened his jacket his shirt collar": [65535, 0], "he opened his jacket his shirt collar was": [65535, 0], "opened his jacket his shirt collar was securely": [65535, 0], "his jacket his shirt collar was securely sewed": [65535, 0], "jacket his shirt collar was securely sewed bother": [65535, 0], "his shirt collar was securely sewed bother well": [65535, 0], "shirt collar was securely sewed bother well go": [65535, 0], "collar was securely sewed bother well go 'long": [65535, 0], "was securely sewed bother well go 'long with": [65535, 0], "securely sewed bother well go 'long with you": [65535, 0], "sewed bother well go 'long with you i'd": [65535, 0], "bother well go 'long with you i'd made": [65535, 0], "well go 'long with you i'd made sure": [65535, 0], "go 'long with you i'd made sure you'd": [65535, 0], "'long with you i'd made sure you'd played": [65535, 0], "with you i'd made sure you'd played hookey": [65535, 0], "you i'd made sure you'd played hookey and": [65535, 0], "i'd made sure you'd played hookey and been": [65535, 0], "made sure you'd played hookey and been a": [65535, 0], "sure you'd played hookey and been a swimming": [65535, 0], "you'd played hookey and been a swimming but": [65535, 0], "played hookey and been a swimming but i": [65535, 0], "hookey and been a swimming but i forgive": [65535, 0], "and been a swimming but i forgive ye": [65535, 0], "been a swimming but i forgive ye tom": [65535, 0], "a swimming but i forgive ye tom i": [65535, 0], "swimming but i forgive ye tom i reckon": [65535, 0], "but i forgive ye tom i reckon you're": [65535, 0], "i forgive ye tom i reckon you're a": [65535, 0], "forgive ye tom i reckon you're a kind": [65535, 0], "ye tom i reckon you're a kind of": [65535, 0], "tom i reckon you're a kind of a": [65535, 0], "i reckon you're a kind of a singed": [65535, 0], "reckon you're a kind of a singed cat": [65535, 0], "you're a kind of a singed cat as": [65535, 0], "a kind of a singed cat as the": [65535, 0], "kind of a singed cat as the saying": [65535, 0], "of a singed cat as the saying is": [65535, 0], "a singed cat as the saying is better'n": [65535, 0], "singed cat as the saying is better'n you": [65535, 0], "cat as the saying is better'n you look": [65535, 0], "as the saying is better'n you look this": [65535, 0], "the saying is better'n you look this time": [65535, 0], "saying is better'n you look this time she": [65535, 0], "is better'n you look this time she was": [65535, 0], "better'n you look this time she was half": [65535, 0], "you look this time she was half sorry": [65535, 0], "look this time she was half sorry her": [65535, 0], "this time she was half sorry her sagacity": [65535, 0], "time she was half sorry her sagacity had": [65535, 0], "she was half sorry her sagacity had miscarried": [65535, 0], "was half sorry her sagacity had miscarried and": [65535, 0], "half sorry her sagacity had miscarried and half": [65535, 0], "sorry her sagacity had miscarried and half glad": [65535, 0], "her sagacity had miscarried and half glad that": [65535, 0], "sagacity had miscarried and half glad that tom": [65535, 0], "had miscarried and half glad that tom had": [65535, 0], "miscarried and half glad that tom had stumbled": [65535, 0], "and half glad that tom had stumbled into": [65535, 0], "half glad that tom had stumbled into obedient": [65535, 0], "glad that tom had stumbled into obedient conduct": [65535, 0], "that tom had stumbled into obedient conduct for": [65535, 0], "tom had stumbled into obedient conduct for once": [65535, 0], "had stumbled into obedient conduct for once but": [65535, 0], "stumbled into obedient conduct for once but sidney": [65535, 0], "into obedient conduct for once but sidney said": [65535, 0], "obedient conduct for once but sidney said well": [65535, 0], "conduct for once but sidney said well now": [65535, 0], "for once but sidney said well now if": [65535, 0], "once but sidney said well now if i": [65535, 0], "but sidney said well now if i didn't": [65535, 0], "sidney said well now if i didn't think": [65535, 0], "said well now if i didn't think you": [65535, 0], "well now if i didn't think you sewed": [65535, 0], "now if i didn't think you sewed his": [65535, 0], "if i didn't think you sewed his collar": [65535, 0], "i didn't think you sewed his collar with": [65535, 0], "didn't think you sewed his collar with white": [65535, 0], "think you sewed his collar with white thread": [65535, 0], "you sewed his collar with white thread but": [65535, 0], "sewed his collar with white thread but it's": [65535, 0], "his collar with white thread but it's black": [65535, 0], "collar with white thread but it's black why": [65535, 0], "with white thread but it's black why i": [65535, 0], "white thread but it's black why i did": [65535, 0], "thread but it's black why i did sew": [65535, 0], "but it's black why i did sew it": [65535, 0], "it's black why i did sew it with": [65535, 0], "black why i did sew it with white": [65535, 0], "why i did sew it with white tom": [65535, 0], "i did sew it with white tom but": [65535, 0], "did sew it with white tom but tom": [65535, 0], "sew it with white tom but tom did": [65535, 0], "it with white tom but tom did not": [65535, 0], "with white tom but tom did not wait": [65535, 0], "white tom but tom did not wait for": [65535, 0], "tom but tom did not wait for the": [65535, 0], "but tom did not wait for the rest": [65535, 0], "tom did not wait for the rest as": [65535, 0], "did not wait for the rest as he": [65535, 0], "not wait for the rest as he went": [65535, 0], "wait for the rest as he went out": [65535, 0], "for the rest as he went out at": [65535, 0], "the rest as he went out at the": [65535, 0], "rest as he went out at the door": [65535, 0], "as he went out at the door he": [65535, 0], "he went out at the door he said": [65535, 0], "went out at the door he said siddy": [65535, 0], "out at the door he said siddy i'll": [65535, 0], "at the door he said siddy i'll lick": [65535, 0], "the door he said siddy i'll lick you": [65535, 0], "door he said siddy i'll lick you for": [65535, 0], "he said siddy i'll lick you for that": [65535, 0], "said siddy i'll lick you for that in": [65535, 0], "siddy i'll lick you for that in a": [65535, 0], "i'll lick you for that in a safe": [65535, 0], "lick you for that in a safe place": [65535, 0], "you for that in a safe place tom": [65535, 0], "for that in a safe place tom examined": [65535, 0], "that in a safe place tom examined two": [65535, 0], "in a safe place tom examined two large": [65535, 0], "a safe place tom examined two large needles": [65535, 0], "safe place tom examined two large needles which": [65535, 0], "place tom examined two large needles which were": [65535, 0], "tom examined two large needles which were thrust": [65535, 0], "examined two large needles which were thrust into": [65535, 0], "two large needles which were thrust into the": [65535, 0], "large needles which were thrust into the lapels": [65535, 0], "needles which were thrust into the lapels of": [65535, 0], "which were thrust into the lapels of his": [65535, 0], "were thrust into the lapels of his jacket": [65535, 0], "thrust into the lapels of his jacket and": [65535, 0], "into the lapels of his jacket and had": [65535, 0], "the lapels of his jacket and had thread": [65535, 0], "lapels of his jacket and had thread bound": [65535, 0], "of his jacket and had thread bound about": [65535, 0], "his jacket and had thread bound about them": [65535, 0], "jacket and had thread bound about them one": [65535, 0], "and had thread bound about them one needle": [65535, 0], "had thread bound about them one needle carried": [65535, 0], "thread bound about them one needle carried white": [65535, 0], "bound about them one needle carried white thread": [65535, 0], "about them one needle carried white thread and": [65535, 0], "them one needle carried white thread and the": [65535, 0], "one needle carried white thread and the other": [65535, 0], "needle carried white thread and the other black": [65535, 0], "carried white thread and the other black he": [65535, 0], "white thread and the other black he said": [65535, 0], "thread and the other black he said she'd": [65535, 0], "and the other black he said she'd never": [65535, 0], "the other black he said she'd never noticed": [65535, 0], "other black he said she'd never noticed if": [65535, 0], "black he said she'd never noticed if it": [65535, 0], "he said she'd never noticed if it hadn't": [65535, 0], "said she'd never noticed if it hadn't been": [65535, 0], "she'd never noticed if it hadn't been for": [65535, 0], "never noticed if it hadn't been for sid": [65535, 0], "noticed if it hadn't been for sid confound": [65535, 0], "if it hadn't been for sid confound it": [65535, 0], "it hadn't been for sid confound it sometimes": [65535, 0], "hadn't been for sid confound it sometimes she": [65535, 0], "been for sid confound it sometimes she sews": [65535, 0], "for sid confound it sometimes she sews it": [65535, 0], "sid confound it sometimes she sews it with": [65535, 0], "confound it sometimes she sews it with white": [65535, 0], "it sometimes she sews it with white and": [65535, 0], "sometimes she sews it with white and sometimes": [65535, 0], "she sews it with white and sometimes she": [65535, 0], "sews it with white and sometimes she sews": [65535, 0], "it with white and sometimes she sews it": [65535, 0], "with white and sometimes she sews it with": [65535, 0], "white and sometimes she sews it with black": [65535, 0], "and sometimes she sews it with black i": [65535, 0], "sometimes she sews it with black i wish": [65535, 0], "she sews it with black i wish to": [65535, 0], "sews it with black i wish to geeminy": [65535, 0], "it with black i wish to geeminy she'd": [65535, 0], "with black i wish to geeminy she'd stick": [65535, 0], "black i wish to geeminy she'd stick to": [65535, 0], "i wish to geeminy she'd stick to one": [65535, 0], "wish to geeminy she'd stick to one or": [65535, 0], "to geeminy she'd stick to one or t'other": [65535, 0], "geeminy she'd stick to one or t'other i": [65535, 0], "she'd stick to one or t'other i can't": [65535, 0], "stick to one or t'other i can't keep": [65535, 0], "to one or t'other i can't keep the": [65535, 0], "one or t'other i can't keep the run": [65535, 0], "or t'other i can't keep the run of": [65535, 0], "t'other i can't keep the run of 'em": [65535, 0], "i can't keep the run of 'em but": [65535, 0], "can't keep the run of 'em but i": [65535, 0], "keep the run of 'em but i bet": [65535, 0], "the run of 'em but i bet you": [65535, 0], "run of 'em but i bet you i'll": [65535, 0], "of 'em but i bet you i'll lam": [65535, 0], "'em but i bet you i'll lam sid": [65535, 0], "but i bet you i'll lam sid for": [65535, 0], "i bet you i'll lam sid for that": [65535, 0], "bet you i'll lam sid for that i'll": [65535, 0], "you i'll lam sid for that i'll learn": [65535, 0], "i'll lam sid for that i'll learn him": [65535, 0], "lam sid for that i'll learn him he": [65535, 0], "sid for that i'll learn him he was": [65535, 0], "for that i'll learn him he was not": [65535, 0], "that i'll learn him he was not the": [65535, 0], "i'll learn him he was not the model": [65535, 0], "learn him he was not the model boy": [65535, 0], "him he was not the model boy of": [65535, 0], "he was not the model boy of the": [65535, 0], "was not the model boy of the village": [65535, 0], "not the model boy of the village he": [65535, 0], "the model boy of the village he knew": [65535, 0], "model boy of the village he knew the": [65535, 0], "boy of the village he knew the model": [65535, 0], "of the village he knew the model boy": [65535, 0], "the village he knew the model boy very": [65535, 0], "village he knew the model boy very well": [65535, 0], "he knew the model boy very well though": [65535, 0], "knew the model boy very well though and": [65535, 0], "the model boy very well though and loathed": [65535, 0], "model boy very well though and loathed him": [65535, 0], "boy very well though and loathed him within": [65535, 0], "very well though and loathed him within two": [65535, 0], "well though and loathed him within two minutes": [65535, 0], "though and loathed him within two minutes or": [65535, 0], "and loathed him within two minutes or even": [65535, 0], "loathed him within two minutes or even less": [65535, 0], "him within two minutes or even less he": [65535, 0], "within two minutes or even less he had": [65535, 0], "two minutes or even less he had forgotten": [65535, 0], "minutes or even less he had forgotten all": [65535, 0], "or even less he had forgotten all his": [65535, 0], "even less he had forgotten all his troubles": [65535, 0], "less he had forgotten all his troubles not": [65535, 0], "he had forgotten all his troubles not because": [65535, 0], "had forgotten all his troubles not because his": [65535, 0], "forgotten all his troubles not because his troubles": [65535, 0], "all his troubles not because his troubles were": [65535, 0], "his troubles not because his troubles were one": [65535, 0], "troubles not because his troubles were one whit": [65535, 0], "not because his troubles were one whit less": [65535, 0], "because his troubles were one whit less heavy": [65535, 0], "his troubles were one whit less heavy and": [65535, 0], "troubles were one whit less heavy and bitter": [65535, 0], "were one whit less heavy and bitter to": [65535, 0], "one whit less heavy and bitter to him": [65535, 0], "whit less heavy and bitter to him than": [65535, 0], "less heavy and bitter to him than a": [65535, 0], "heavy and bitter to him than a man's": [65535, 0], "and bitter to him than a man's are": [65535, 0], "bitter to him than a man's are to": [65535, 0], "to him than a man's are to a": [65535, 0], "him than a man's are to a man": [65535, 0], "than a man's are to a man but": [65535, 0], "a man's are to a man but because": [65535, 0], "man's are to a man but because a": [65535, 0], "are to a man but because a new": [65535, 0], "to a man but because a new and": [65535, 0], "a man but because a new and powerful": [65535, 0], "man but because a new and powerful interest": [65535, 0], "but because a new and powerful interest bore": [65535, 0], "because a new and powerful interest bore them": [65535, 0], "a new and powerful interest bore them down": [65535, 0], "new and powerful interest bore them down and": [65535, 0], "and powerful interest bore them down and drove": [65535, 0], "powerful interest bore them down and drove them": [65535, 0], "interest bore them down and drove them out": [65535, 0], "bore them down and drove them out of": [65535, 0], "them down and drove them out of his": [65535, 0], "down and drove them out of his mind": [65535, 0], "and drove them out of his mind for": [65535, 0], "drove them out of his mind for the": [65535, 0], "them out of his mind for the time": [65535, 0], "out of his mind for the time just": [65535, 0], "of his mind for the time just as": [65535, 0], "his mind for the time just as men's": [65535, 0], "mind for the time just as men's misfortunes": [65535, 0], "for the time just as men's misfortunes are": [65535, 0], "the time just as men's misfortunes are forgotten": [65535, 0], "time just as men's misfortunes are forgotten in": [65535, 0], "just as men's misfortunes are forgotten in the": [65535, 0], "as men's misfortunes are forgotten in the excitement": [65535, 0], "men's misfortunes are forgotten in the excitement of": [65535, 0], "misfortunes are forgotten in the excitement of new": [65535, 0], "are forgotten in the excitement of new enterprises": [65535, 0], "forgotten in the excitement of new enterprises this": [65535, 0], "in the excitement of new enterprises this new": [65535, 0], "the excitement of new enterprises this new interest": [65535, 0], "excitement of new enterprises this new interest was": [65535, 0], "of new enterprises this new interest was a": [65535, 0], "new enterprises this new interest was a valued": [65535, 0], "enterprises this new interest was a valued novelty": [65535, 0], "this new interest was a valued novelty in": [65535, 0], "new interest was a valued novelty in whistling": [65535, 0], "interest was a valued novelty in whistling which": [65535, 0], "was a valued novelty in whistling which he": [65535, 0], "a valued novelty in whistling which he had": [65535, 0], "valued novelty in whistling which he had just": [65535, 0], "novelty in whistling which he had just acquired": [65535, 0], "in whistling which he had just acquired from": [65535, 0], "whistling which he had just acquired from a": [65535, 0], "which he had just acquired from a negro": [65535, 0], "he had just acquired from a negro and": [65535, 0], "had just acquired from a negro and he": [65535, 0], "just acquired from a negro and he was": [65535, 0], "acquired from a negro and he was suffering": [65535, 0], "from a negro and he was suffering to": [65535, 0], "a negro and he was suffering to practise": [65535, 0], "negro and he was suffering to practise it": [65535, 0], "and he was suffering to practise it undisturbed": [65535, 0], "he was suffering to practise it undisturbed it": [65535, 0], "was suffering to practise it undisturbed it consisted": [65535, 0], "suffering to practise it undisturbed it consisted in": [65535, 0], "to practise it undisturbed it consisted in a": [65535, 0], "practise it undisturbed it consisted in a peculiar": [65535, 0], "it undisturbed it consisted in a peculiar bird": [65535, 0], "undisturbed it consisted in a peculiar bird like": [65535, 0], "it consisted in a peculiar bird like turn": [65535, 0], "consisted in a peculiar bird like turn a": [65535, 0], "in a peculiar bird like turn a sort": [65535, 0], "a peculiar bird like turn a sort of": [65535, 0], "peculiar bird like turn a sort of liquid": [65535, 0], "bird like turn a sort of liquid warble": [65535, 0], "like turn a sort of liquid warble produced": [65535, 0], "turn a sort of liquid warble produced by": [65535, 0], "a sort of liquid warble produced by touching": [65535, 0], "sort of liquid warble produced by touching the": [65535, 0], "of liquid warble produced by touching the tongue": [65535, 0], "liquid warble produced by touching the tongue to": [65535, 0], "warble produced by touching the tongue to the": [65535, 0], "produced by touching the tongue to the roof": [65535, 0], "by touching the tongue to the roof of": [65535, 0], "touching the tongue to the roof of the": [65535, 0], "the tongue to the roof of the mouth": [65535, 0], "tongue to the roof of the mouth at": [65535, 0], "to the roof of the mouth at short": [65535, 0], "the roof of the mouth at short intervals": [65535, 0], "roof of the mouth at short intervals in": [65535, 0], "of the mouth at short intervals in the": [65535, 0], "the mouth at short intervals in the midst": [65535, 0], "mouth at short intervals in the midst of": [65535, 0], "at short intervals in the midst of the": [65535, 0], "short intervals in the midst of the music": [65535, 0], "intervals in the midst of the music the": [65535, 0], "in the midst of the music the reader": [65535, 0], "the midst of the music the reader probably": [65535, 0], "midst of the music the reader probably remembers": [65535, 0], "of the music the reader probably remembers how": [65535, 0], "the music the reader probably remembers how to": [65535, 0], "music the reader probably remembers how to do": [65535, 0], "the reader probably remembers how to do it": [65535, 0], "reader probably remembers how to do it if": [65535, 0], "probably remembers how to do it if he": [65535, 0], "remembers how to do it if he has": [65535, 0], "how to do it if he has ever": [65535, 0], "to do it if he has ever been": [65535, 0], "do it if he has ever been a": [65535, 0], "it if he has ever been a boy": [65535, 0], "if he has ever been a boy diligence": [65535, 0], "he has ever been a boy diligence and": [65535, 0], "has ever been a boy diligence and attention": [65535, 0], "ever been a boy diligence and attention soon": [65535, 0], "been a boy diligence and attention soon gave": [65535, 0], "a boy diligence and attention soon gave him": [65535, 0], "boy diligence and attention soon gave him the": [65535, 0], "diligence and attention soon gave him the knack": [65535, 0], "and attention soon gave him the knack of": [65535, 0], "attention soon gave him the knack of it": [65535, 0], "soon gave him the knack of it and": [65535, 0], "gave him the knack of it and he": [65535, 0], "him the knack of it and he strode": [65535, 0], "the knack of it and he strode down": [65535, 0], "knack of it and he strode down the": [65535, 0], "of it and he strode down the street": [65535, 0], "it and he strode down the street with": [65535, 0], "and he strode down the street with his": [65535, 0], "he strode down the street with his mouth": [65535, 0], "strode down the street with his mouth full": [65535, 0], "down the street with his mouth full of": [65535, 0], "the street with his mouth full of harmony": [65535, 0], "street with his mouth full of harmony and": [65535, 0], "with his mouth full of harmony and his": [65535, 0], "his mouth full of harmony and his soul": [65535, 0], "mouth full of harmony and his soul full": [65535, 0], "full of harmony and his soul full of": [65535, 0], "of harmony and his soul full of gratitude": [65535, 0], "harmony and his soul full of gratitude he": [65535, 0], "and his soul full of gratitude he felt": [65535, 0], "his soul full of gratitude he felt much": [65535, 0], "soul full of gratitude he felt much as": [65535, 0], "full of gratitude he felt much as an": [65535, 0], "of gratitude he felt much as an astronomer": [65535, 0], "gratitude he felt much as an astronomer feels": [65535, 0], "he felt much as an astronomer feels who": [65535, 0], "felt much as an astronomer feels who has": [65535, 0], "much as an astronomer feels who has discovered": [65535, 0], "as an astronomer feels who has discovered a": [65535, 0], "an astronomer feels who has discovered a new": [65535, 0], "astronomer feels who has discovered a new planet": [65535, 0], "feels who has discovered a new planet no": [65535, 0], "who has discovered a new planet no doubt": [65535, 0], "has discovered a new planet no doubt as": [65535, 0], "discovered a new planet no doubt as far": [65535, 0], "a new planet no doubt as far as": [65535, 0], "new planet no doubt as far as strong": [65535, 0], "planet no doubt as far as strong deep": [65535, 0], "no doubt as far as strong deep unalloyed": [65535, 0], "doubt as far as strong deep unalloyed pleasure": [65535, 0], "as far as strong deep unalloyed pleasure is": [65535, 0], "far as strong deep unalloyed pleasure is concerned": [65535, 0], "as strong deep unalloyed pleasure is concerned the": [65535, 0], "strong deep unalloyed pleasure is concerned the advantage": [65535, 0], "deep unalloyed pleasure is concerned the advantage was": [65535, 0], "unalloyed pleasure is concerned the advantage was with": [65535, 0], "pleasure is concerned the advantage was with the": [65535, 0], "is concerned the advantage was with the boy": [65535, 0], "concerned the advantage was with the boy not": [65535, 0], "the advantage was with the boy not the": [65535, 0], "advantage was with the boy not the astronomer": [65535, 0], "was with the boy not the astronomer the": [65535, 0], "with the boy not the astronomer the summer": [65535, 0], "the boy not the astronomer the summer evenings": [65535, 0], "boy not the astronomer the summer evenings were": [65535, 0], "not the astronomer the summer evenings were long": [65535, 0], "the astronomer the summer evenings were long it": [65535, 0], "astronomer the summer evenings were long it was": [65535, 0], "the summer evenings were long it was not": [65535, 0], "summer evenings were long it was not dark": [65535, 0], "evenings were long it was not dark yet": [65535, 0], "were long it was not dark yet presently": [65535, 0], "long it was not dark yet presently tom": [65535, 0], "it was not dark yet presently tom checked": [65535, 0], "was not dark yet presently tom checked his": [65535, 0], "not dark yet presently tom checked his whistle": [65535, 0], "dark yet presently tom checked his whistle a": [65535, 0], "yet presently tom checked his whistle a stranger": [65535, 0], "presently tom checked his whistle a stranger was": [65535, 0], "tom checked his whistle a stranger was before": [65535, 0], "checked his whistle a stranger was before him": [65535, 0], "his whistle a stranger was before him a": [65535, 0], "whistle a stranger was before him a boy": [65535, 0], "a stranger was before him a boy a": [65535, 0], "stranger was before him a boy a shade": [65535, 0], "was before him a boy a shade larger": [65535, 0], "before him a boy a shade larger than": [65535, 0], "him a boy a shade larger than himself": [65535, 0], "a boy a shade larger than himself a": [65535, 0], "boy a shade larger than himself a new": [65535, 0], "a shade larger than himself a new comer": [65535, 0], "shade larger than himself a new comer of": [65535, 0], "larger than himself a new comer of any": [65535, 0], "than himself a new comer of any age": [65535, 0], "himself a new comer of any age or": [65535, 0], "a new comer of any age or either": [65535, 0], "new comer of any age or either sex": [65535, 0], "comer of any age or either sex was": [65535, 0], "of any age or either sex was an": [65535, 0], "any age or either sex was an impressive": [65535, 0], "age or either sex was an impressive curiosity": [65535, 0], "or either sex was an impressive curiosity in": [65535, 0], "either sex was an impressive curiosity in the": [65535, 0], "sex was an impressive curiosity in the poor": [65535, 0], "was an impressive curiosity in the poor little": [65535, 0], "an impressive curiosity in the poor little shabby": [65535, 0], "impressive curiosity in the poor little shabby village": [65535, 0], "curiosity in the poor little shabby village of": [65535, 0], "in the poor little shabby village of st": [65535, 0], "the poor little shabby village of st petersburg": [65535, 0], "poor little shabby village of st petersburg this": [65535, 0], "little shabby village of st petersburg this boy": [65535, 0], "shabby village of st petersburg this boy was": [65535, 0], "village of st petersburg this boy was well": [65535, 0], "of st petersburg this boy was well dressed": [65535, 0], "st petersburg this boy was well dressed too": [65535, 0], "petersburg this boy was well dressed too well": [65535, 0], "this boy was well dressed too well dressed": [65535, 0], "boy was well dressed too well dressed on": [65535, 0], "was well dressed too well dressed on a": [65535, 0], "well dressed too well dressed on a week": [65535, 0], "dressed too well dressed on a week day": [65535, 0], "too well dressed on a week day this": [65535, 0], "well dressed on a week day this was": [65535, 0], "dressed on a week day this was simply": [65535, 0], "on a week day this was simply astounding": [65535, 0], "a week day this was simply astounding his": [65535, 0], "week day this was simply astounding his cap": [65535, 0], "day this was simply astounding his cap was": [65535, 0], "this was simply astounding his cap was a": [65535, 0], "was simply astounding his cap was a dainty": [65535, 0], "simply astounding his cap was a dainty thing": [65535, 0], "astounding his cap was a dainty thing his": [65535, 0], "his cap was a dainty thing his closebuttoned": [65535, 0], "cap was a dainty thing his closebuttoned blue": [65535, 0], "was a dainty thing his closebuttoned blue cloth": [65535, 0], "a dainty thing his closebuttoned blue cloth roundabout": [65535, 0], "dainty thing his closebuttoned blue cloth roundabout was": [65535, 0], "thing his closebuttoned blue cloth roundabout was new": [65535, 0], "his closebuttoned blue cloth roundabout was new and": [65535, 0], "closebuttoned blue cloth roundabout was new and natty": [65535, 0], "blue cloth roundabout was new and natty and": [65535, 0], "cloth roundabout was new and natty and so": [65535, 0], "roundabout was new and natty and so were": [65535, 0], "was new and natty and so were his": [65535, 0], "new and natty and so were his pantaloons": [65535, 0], "and natty and so were his pantaloons he": [65535, 0], "natty and so were his pantaloons he had": [65535, 0], "and so were his pantaloons he had shoes": [65535, 0], "so were his pantaloons he had shoes on": [65535, 0], "were his pantaloons he had shoes on and": [65535, 0], "his pantaloons he had shoes on and it": [65535, 0], "pantaloons he had shoes on and it was": [65535, 0], "he had shoes on and it was only": [65535, 0], "had shoes on and it was only friday": [65535, 0], "shoes on and it was only friday he": [65535, 0], "on and it was only friday he even": [65535, 0], "and it was only friday he even wore": [65535, 0], "it was only friday he even wore a": [65535, 0], "was only friday he even wore a necktie": [65535, 0], "only friday he even wore a necktie a": [65535, 0], "friday he even wore a necktie a bright": [65535, 0], "he even wore a necktie a bright bit": [65535, 0], "even wore a necktie a bright bit of": [65535, 0], "wore a necktie a bright bit of ribbon": [65535, 0], "a necktie a bright bit of ribbon he": [65535, 0], "necktie a bright bit of ribbon he had": [65535, 0], "a bright bit of ribbon he had a": [65535, 0], "bright bit of ribbon he had a citified": [65535, 0], "bit of ribbon he had a citified air": [65535, 0], "of ribbon he had a citified air about": [65535, 0], "ribbon he had a citified air about him": [65535, 0], "he had a citified air about him that": [65535, 0], "had a citified air about him that ate": [65535, 0], "a citified air about him that ate into": [65535, 0], "citified air about him that ate into tom's": [65535, 0], "air about him that ate into tom's vitals": [65535, 0], "about him that ate into tom's vitals the": [65535, 0], "him that ate into tom's vitals the more": [65535, 0], "that ate into tom's vitals the more tom": [65535, 0], "ate into tom's vitals the more tom stared": [65535, 0], "into tom's vitals the more tom stared at": [65535, 0], "tom's vitals the more tom stared at the": [65535, 0], "vitals the more tom stared at the splendid": [65535, 0], "the more tom stared at the splendid marvel": [65535, 0], "more tom stared at the splendid marvel the": [65535, 0], "tom stared at the splendid marvel the higher": [65535, 0], "stared at the splendid marvel the higher he": [65535, 0], "at the splendid marvel the higher he turned": [65535, 0], "the splendid marvel the higher he turned up": [65535, 0], "splendid marvel the higher he turned up his": [65535, 0], "marvel the higher he turned up his nose": [65535, 0], "the higher he turned up his nose at": [65535, 0], "higher he turned up his nose at his": [65535, 0], "he turned up his nose at his finery": [65535, 0], "turned up his nose at his finery and": [65535, 0], "up his nose at his finery and the": [65535, 0], "his nose at his finery and the shabbier": [65535, 0], "nose at his finery and the shabbier and": [65535, 0], "at his finery and the shabbier and shabbier": [65535, 0], "his finery and the shabbier and shabbier his": [65535, 0], "finery and the shabbier and shabbier his own": [65535, 0], "and the shabbier and shabbier his own outfit": [65535, 0], "the shabbier and shabbier his own outfit seemed": [65535, 0], "shabbier and shabbier his own outfit seemed to": [65535, 0], "and shabbier his own outfit seemed to him": [65535, 0], "shabbier his own outfit seemed to him to": [65535, 0], "his own outfit seemed to him to grow": [65535, 0], "own outfit seemed to him to grow neither": [65535, 0], "outfit seemed to him to grow neither boy": [65535, 0], "seemed to him to grow neither boy spoke": [65535, 0], "to him to grow neither boy spoke if": [65535, 0], "him to grow neither boy spoke if one": [65535, 0], "to grow neither boy spoke if one moved": [65535, 0], "grow neither boy spoke if one moved the": [65535, 0], "neither boy spoke if one moved the other": [65535, 0], "boy spoke if one moved the other moved": [65535, 0], "spoke if one moved the other moved but": [65535, 0], "if one moved the other moved but only": [65535, 0], "one moved the other moved but only sidewise": [65535, 0], "moved the other moved but only sidewise in": [65535, 0], "the other moved but only sidewise in a": [65535, 0], "other moved but only sidewise in a circle": [65535, 0], "moved but only sidewise in a circle they": [65535, 0], "but only sidewise in a circle they kept": [65535, 0], "only sidewise in a circle they kept face": [65535, 0], "sidewise in a circle they kept face to": [65535, 0], "in a circle they kept face to face": [65535, 0], "a circle they kept face to face and": [65535, 0], "circle they kept face to face and eye": [65535, 0], "they kept face to face and eye to": [65535, 0], "kept face to face and eye to eye": [65535, 0], "face to face and eye to eye all": [65535, 0], "to face and eye to eye all the": [65535, 0], "face and eye to eye all the time": [65535, 0], "and eye to eye all the time finally": [65535, 0], "eye to eye all the time finally tom": [65535, 0], "to eye all the time finally tom said": [65535, 0], "eye all the time finally tom said i": [65535, 0], "all the time finally tom said i can": [65535, 0], "the time finally tom said i can lick": [65535, 0], "time finally tom said i can lick you": [65535, 0], "finally tom said i can lick you i'd": [65535, 0], "tom said i can lick you i'd like": [65535, 0], "said i can lick you i'd like to": [65535, 0], "i can lick you i'd like to see": [65535, 0], "can lick you i'd like to see you": [65535, 0], "lick you i'd like to see you try": [65535, 0], "you i'd like to see you try it": [65535, 0], "i'd like to see you try it well": [65535, 0], "like to see you try it well i": [65535, 0], "to see you try it well i can": [65535, 0], "see you try it well i can do": [65535, 0], "you try it well i can do it": [65535, 0], "try it well i can do it no": [65535, 0], "it well i can do it no you": [65535, 0], "well i can do it no you can't": [65535, 0], "i can do it no you can't either": [65535, 0], "can do it no you can't either yes": [65535, 0], "do it no you can't either yes i": [65535, 0], "it no you can't either yes i can": [65535, 0], "no you can't either yes i can no": [65535, 0], "you can't either yes i can no you": [65535, 0], "can't either yes i can no you can't": [65535, 0], "either yes i can no you can't i": [65535, 0], "yes i can no you can't i can": [65535, 0], "i can no you can't i can you": [65535, 0], "can no you can't i can you can't": [65535, 0], "no you can't i can you can't can": [65535, 0], "you can't i can you can't can can't": [65535, 0], "can't i can you can't can can't an": [65535, 0], "i can you can't can can't an uncomfortable": [65535, 0], "can you can't can can't an uncomfortable pause": [65535, 0], "you can't can can't an uncomfortable pause then": [65535, 0], "can't can can't an uncomfortable pause then tom": [65535, 0], "can can't an uncomfortable pause then tom said": [65535, 0], "can't an uncomfortable pause then tom said what's": [65535, 0], "an uncomfortable pause then tom said what's your": [65535, 0], "uncomfortable pause then tom said what's your name": [65535, 0], "pause then tom said what's your name 'tisn't": [65535, 0], "then tom said what's your name 'tisn't any": [65535, 0], "tom said what's your name 'tisn't any of": [65535, 0], "said what's your name 'tisn't any of your": [65535, 0], "what's your name 'tisn't any of your business": [65535, 0], "your name 'tisn't any of your business maybe": [65535, 0], "name 'tisn't any of your business maybe well": [65535, 0], "'tisn't any of your business maybe well i": [65535, 0], "any of your business maybe well i 'low": [65535, 0], "of your business maybe well i 'low i'll": [65535, 0], "your business maybe well i 'low i'll make": [65535, 0], "business maybe well i 'low i'll make it": [65535, 0], "maybe well i 'low i'll make it my": [65535, 0], "well i 'low i'll make it my business": [65535, 0], "i 'low i'll make it my business well": [65535, 0], "'low i'll make it my business well why": [65535, 0], "i'll make it my business well why don't": [65535, 0], "make it my business well why don't you": [65535, 0], "it my business well why don't you if": [65535, 0], "my business well why don't you if you": [65535, 0], "business well why don't you if you say": [65535, 0], "well why don't you if you say much": [65535, 0], "why don't you if you say much i": [65535, 0], "don't you if you say much i will": [65535, 0], "you if you say much i will much": [65535, 0], "if you say much i will much much": [65535, 0], "you say much i will much much much": [65535, 0], "say much i will much much much there": [65535, 0], "much i will much much much there now": [65535, 0], "i will much much much there now oh": [65535, 0], "will much much much there now oh you": [65535, 0], "much much much there now oh you think": [65535, 0], "much much there now oh you think you're": [65535, 0], "much there now oh you think you're mighty": [65535, 0], "there now oh you think you're mighty smart": [65535, 0], "now oh you think you're mighty smart don't": [65535, 0], "oh you think you're mighty smart don't you": [65535, 0], "you think you're mighty smart don't you i": [65535, 0], "think you're mighty smart don't you i could": [65535, 0], "you're mighty smart don't you i could lick": [65535, 0], "mighty smart don't you i could lick you": [65535, 0], "smart don't you i could lick you with": [65535, 0], "don't you i could lick you with one": [65535, 0], "you i could lick you with one hand": [65535, 0], "i could lick you with one hand tied": [65535, 0], "could lick you with one hand tied behind": [65535, 0], "lick you with one hand tied behind me": [65535, 0], "you with one hand tied behind me if": [65535, 0], "with one hand tied behind me if i": [65535, 0], "one hand tied behind me if i wanted": [65535, 0], "hand tied behind me if i wanted to": [65535, 0], "tied behind me if i wanted to well": [65535, 0], "behind me if i wanted to well why": [65535, 0], "me if i wanted to well why don't": [65535, 0], "i wanted to well why don't you do": [65535, 0], "wanted to well why don't you do it": [65535, 0], "to well why don't you do it you": [65535, 0], "well why don't you do it you say": [65535, 0], "why don't you do it you say you": [65535, 0], "don't you do it you say you can": [65535, 0], "you do it you say you can do": [65535, 0], "do it you say you can do it": [65535, 0], "it you say you can do it well": [65535, 0], "you say you can do it well i": [65535, 0], "say you can do it well i will": [65535, 0], "you can do it well i will if": [65535, 0], "can do it well i will if you": [65535, 0], "do it well i will if you fool": [65535, 0], "it well i will if you fool with": [65535, 0], "well i will if you fool with me": [65535, 0], "i will if you fool with me oh": [65535, 0], "will if you fool with me oh yes": [65535, 0], "if you fool with me oh yes i've": [65535, 0], "you fool with me oh yes i've seen": [65535, 0], "fool with me oh yes i've seen whole": [65535, 0], "with me oh yes i've seen whole families": [65535, 0], "me oh yes i've seen whole families in": [65535, 0], "oh yes i've seen whole families in the": [65535, 0], "yes i've seen whole families in the same": [65535, 0], "i've seen whole families in the same fix": [65535, 0], "seen whole families in the same fix smarty": [65535, 0], "whole families in the same fix smarty you": [65535, 0], "families in the same fix smarty you think": [65535, 0], "in the same fix smarty you think you're": [65535, 0], "the same fix smarty you think you're some": [65535, 0], "same fix smarty you think you're some now": [65535, 0], "fix smarty you think you're some now don't": [65535, 0], "smarty you think you're some now don't you": [65535, 0], "you think you're some now don't you oh": [65535, 0], "think you're some now don't you oh what": [65535, 0], "you're some now don't you oh what a": [65535, 0], "some now don't you oh what a hat": [65535, 0], "now don't you oh what a hat you": [65535, 0], "don't you oh what a hat you can": [65535, 0], "you oh what a hat you can lump": [65535, 0], "oh what a hat you can lump that": [65535, 0], "what a hat you can lump that hat": [65535, 0], "a hat you can lump that hat if": [65535, 0], "hat you can lump that hat if you": [65535, 0], "you can lump that hat if you don't": [65535, 0], "can lump that hat if you don't like": [65535, 0], "lump that hat if you don't like it": [65535, 0], "that hat if you don't like it i": [65535, 0], "hat if you don't like it i dare": [65535, 0], "if you don't like it i dare you": [65535, 0], "you don't like it i dare you to": [65535, 0], "don't like it i dare you to knock": [65535, 0], "like it i dare you to knock it": [65535, 0], "it i dare you to knock it off": [65535, 0], "i dare you to knock it off and": [65535, 0], "dare you to knock it off and anybody": [65535, 0], "you to knock it off and anybody that'll": [65535, 0], "to knock it off and anybody that'll take": [65535, 0], "knock it off and anybody that'll take a": [65535, 0], "it off and anybody that'll take a dare": [65535, 0], "off and anybody that'll take a dare will": [65535, 0], "and anybody that'll take a dare will suck": [65535, 0], "anybody that'll take a dare will suck eggs": [65535, 0], "that'll take a dare will suck eggs you're": [65535, 0], "take a dare will suck eggs you're a": [65535, 0], "a dare will suck eggs you're a liar": [65535, 0], "dare will suck eggs you're a liar you're": [65535, 0], "will suck eggs you're a liar you're another": [65535, 0], "suck eggs you're a liar you're another you're": [65535, 0], "eggs you're a liar you're another you're a": [65535, 0], "you're a liar you're another you're a fighting": [65535, 0], "a liar you're another you're a fighting liar": [65535, 0], "liar you're another you're a fighting liar and": [65535, 0], "you're another you're a fighting liar and dasn't": [65535, 0], "another you're a fighting liar and dasn't take": [65535, 0], "you're a fighting liar and dasn't take it": [65535, 0], "a fighting liar and dasn't take it up": [65535, 0], "fighting liar and dasn't take it up aw": [65535, 0], "liar and dasn't take it up aw take": [65535, 0], "and dasn't take it up aw take a": [65535, 0], "dasn't take it up aw take a walk": [65535, 0], "take it up aw take a walk say": [65535, 0], "it up aw take a walk say if": [65535, 0], "up aw take a walk say if you": [65535, 0], "aw take a walk say if you give": [65535, 0], "take a walk say if you give me": [65535, 0], "a walk say if you give me much": [65535, 0], "walk say if you give me much more": [65535, 0], "say if you give me much more of": [65535, 0], "if you give me much more of your": [65535, 0], "you give me much more of your sass": [65535, 0], "give me much more of your sass i'll": [65535, 0], "me much more of your sass i'll take": [65535, 0], "much more of your sass i'll take and": [65535, 0], "more of your sass i'll take and bounce": [65535, 0], "of your sass i'll take and bounce a": [65535, 0], "your sass i'll take and bounce a rock": [65535, 0], "sass i'll take and bounce a rock off'n": [65535, 0], "i'll take and bounce a rock off'n your": [65535, 0], "take and bounce a rock off'n your head": [65535, 0], "and bounce a rock off'n your head oh": [65535, 0], "bounce a rock off'n your head oh of": [65535, 0], "a rock off'n your head oh of course": [65535, 0], "rock off'n your head oh of course you": [65535, 0], "off'n your head oh of course you will": [65535, 0], "your head oh of course you will well": [65535, 0], "head oh of course you will well i": [65535, 0], "oh of course you will well i will": [65535, 0], "of course you will well i will well": [65535, 0], "course you will well i will well why": [65535, 0], "you will well i will well why don't": [65535, 0], "will well i will well why don't you": [65535, 0], "well i will well why don't you do": [65535, 0], "i will well why don't you do it": [65535, 0], "will well why don't you do it then": [65535, 0], "well why don't you do it then what": [65535, 0], "why don't you do it then what do": [65535, 0], "don't you do it then what do you": [65535, 0], "you do it then what do you keep": [65535, 0], "do it then what do you keep saying": [65535, 0], "it then what do you keep saying you": [65535, 0], "then what do you keep saying you will": [65535, 0], "what do you keep saying you will for": [65535, 0], "do you keep saying you will for why": [65535, 0], "you keep saying you will for why don't": [65535, 0], "keep saying you will for why don't you": [65535, 0], "saying you will for why don't you do": [65535, 0], "you will for why don't you do it": [65535, 0], "will for why don't you do it it's": [65535, 0], "for why don't you do it it's because": [65535, 0], "why don't you do it it's because you're": [65535, 0], "don't you do it it's because you're afraid": [65535, 0], "you do it it's because you're afraid i": [65535, 0], "do it it's because you're afraid i ain't": [65535, 0], "it it's because you're afraid i ain't afraid": [65535, 0], "it's because you're afraid i ain't afraid you": [65535, 0], "because you're afraid i ain't afraid you are": [65535, 0], "you're afraid i ain't afraid you are i": [65535, 0], "afraid i ain't afraid you are i ain't": [65535, 0], "i ain't afraid you are i ain't you": [65535, 0], "ain't afraid you are i ain't you are": [65535, 0], "afraid you are i ain't you are another": [65535, 0], "you are i ain't you are another pause": [65535, 0], "are i ain't you are another pause and": [65535, 0], "i ain't you are another pause and more": [65535, 0], "ain't you are another pause and more eying": [65535, 0], "you are another pause and more eying and": [65535, 0], "are another pause and more eying and sidling": [65535, 0], "another pause and more eying and sidling around": [65535, 0], "pause and more eying and sidling around each": [65535, 0], "and more eying and sidling around each other": [65535, 0], "more eying and sidling around each other presently": [65535, 0], "eying and sidling around each other presently they": [65535, 0], "and sidling around each other presently they were": [65535, 0], "sidling around each other presently they were shoulder": [65535, 0], "around each other presently they were shoulder to": [65535, 0], "each other presently they were shoulder to shoulder": [65535, 0], "other presently they were shoulder to shoulder tom": [65535, 0], "presently they were shoulder to shoulder tom said": [65535, 0], "they were shoulder to shoulder tom said get": [65535, 0], "were shoulder to shoulder tom said get away": [65535, 0], "shoulder to shoulder tom said get away from": [65535, 0], "to shoulder tom said get away from here": [65535, 0], "shoulder tom said get away from here go": [65535, 0], "tom said get away from here go away": [65535, 0], "said get away from here go away yourself": [65535, 0], "get away from here go away yourself i": [65535, 0], "away from here go away yourself i won't": [65535, 0], "from here go away yourself i won't i": [65535, 0], "here go away yourself i won't i won't": [65535, 0], "go away yourself i won't i won't either": [65535, 0], "away yourself i won't i won't either so": [65535, 0], "yourself i won't i won't either so they": [65535, 0], "i won't i won't either so they stood": [65535, 0], "won't i won't either so they stood each": [65535, 0], "i won't either so they stood each with": [65535, 0], "won't either so they stood each with a": [65535, 0], "either so they stood each with a foot": [65535, 0], "so they stood each with a foot placed": [65535, 0], "they stood each with a foot placed at": [65535, 0], "stood each with a foot placed at an": [65535, 0], "each with a foot placed at an angle": [65535, 0], "with a foot placed at an angle as": [65535, 0], "a foot placed at an angle as a": [65535, 0], "foot placed at an angle as a brace": [65535, 0], "placed at an angle as a brace and": [65535, 0], "at an angle as a brace and both": [65535, 0], "an angle as a brace and both shoving": [65535, 0], "angle as a brace and both shoving with": [65535, 0], "as a brace and both shoving with might": [65535, 0], "a brace and both shoving with might and": [65535, 0], "brace and both shoving with might and main": [65535, 0], "and both shoving with might and main and": [65535, 0], "both shoving with might and main and glowering": [65535, 0], "shoving with might and main and glowering at": [65535, 0], "with might and main and glowering at each": [65535, 0], "might and main and glowering at each other": [65535, 0], "and main and glowering at each other with": [65535, 0], "main and glowering at each other with hate": [65535, 0], "and glowering at each other with hate but": [65535, 0], "glowering at each other with hate but neither": [65535, 0], "at each other with hate but neither could": [65535, 0], "each other with hate but neither could get": [65535, 0], "other with hate but neither could get an": [65535, 0], "with hate but neither could get an advantage": [65535, 0], "hate but neither could get an advantage after": [65535, 0], "but neither could get an advantage after struggling": [65535, 0], "neither could get an advantage after struggling till": [65535, 0], "could get an advantage after struggling till both": [65535, 0], "get an advantage after struggling till both were": [65535, 0], "an advantage after struggling till both were hot": [65535, 0], "advantage after struggling till both were hot and": [65535, 0], "after struggling till both were hot and flushed": [65535, 0], "struggling till both were hot and flushed each": [65535, 0], "till both were hot and flushed each relaxed": [65535, 0], "both were hot and flushed each relaxed his": [65535, 0], "were hot and flushed each relaxed his strain": [65535, 0], "hot and flushed each relaxed his strain with": [65535, 0], "and flushed each relaxed his strain with watchful": [65535, 0], "flushed each relaxed his strain with watchful caution": [65535, 0], "each relaxed his strain with watchful caution and": [65535, 0], "relaxed his strain with watchful caution and tom": [65535, 0], "his strain with watchful caution and tom said": [65535, 0], "strain with watchful caution and tom said you're": [65535, 0], "with watchful caution and tom said you're a": [65535, 0], "watchful caution and tom said you're a coward": [65535, 0], "caution and tom said you're a coward and": [65535, 0], "and tom said you're a coward and a": [65535, 0], "tom said you're a coward and a pup": [65535, 0], "said you're a coward and a pup i'll": [65535, 0], "you're a coward and a pup i'll tell": [65535, 0], "a coward and a pup i'll tell my": [65535, 0], "coward and a pup i'll tell my big": [65535, 0], "and a pup i'll tell my big brother": [65535, 0], "a pup i'll tell my big brother on": [65535, 0], "pup i'll tell my big brother on you": [65535, 0], "i'll tell my big brother on you and": [65535, 0], "tell my big brother on you and he": [65535, 0], "my big brother on you and he can": [65535, 0], "big brother on you and he can thrash": [65535, 0], "brother on you and he can thrash you": [65535, 0], "on you and he can thrash you with": [65535, 0], "you and he can thrash you with his": [65535, 0], "and he can thrash you with his little": [65535, 0], "he can thrash you with his little finger": [65535, 0], "can thrash you with his little finger and": [65535, 0], "thrash you with his little finger and i'll": [65535, 0], "you with his little finger and i'll make": [65535, 0], "with his little finger and i'll make him": [65535, 0], "his little finger and i'll make him do": [65535, 0], "little finger and i'll make him do it": [65535, 0], "finger and i'll make him do it too": [65535, 0], "and i'll make him do it too what": [65535, 0], "i'll make him do it too what do": [65535, 0], "make him do it too what do i": [65535, 0], "him do it too what do i care": [65535, 0], "do it too what do i care for": [65535, 0], "it too what do i care for your": [65535, 0], "too what do i care for your big": [65535, 0], "what do i care for your big brother": [65535, 0], "do i care for your big brother i've": [65535, 0], "i care for your big brother i've got": [65535, 0], "care for your big brother i've got a": [65535, 0], "for your big brother i've got a brother": [65535, 0], "your big brother i've got a brother that's": [65535, 0], "big brother i've got a brother that's bigger": [65535, 0], "brother i've got a brother that's bigger than": [65535, 0], "i've got a brother that's bigger than he": [65535, 0], "got a brother that's bigger than he is": [65535, 0], "a brother that's bigger than he is and": [65535, 0], "brother that's bigger than he is and what's": [65535, 0], "that's bigger than he is and what's more": [65535, 0], "bigger than he is and what's more he": [65535, 0], "than he is and what's more he can": [65535, 0], "he is and what's more he can throw": [65535, 0], "is and what's more he can throw him": [65535, 0], "and what's more he can throw him over": [65535, 0], "what's more he can throw him over that": [65535, 0], "more he can throw him over that fence": [65535, 0], "he can throw him over that fence too": [65535, 0], "can throw him over that fence too both": [65535, 0], "throw him over that fence too both brothers": [65535, 0], "him over that fence too both brothers were": [65535, 0], "over that fence too both brothers were imaginary": [65535, 0], "that fence too both brothers were imaginary that's": [65535, 0], "fence too both brothers were imaginary that's a": [65535, 0], "too both brothers were imaginary that's a lie": [65535, 0], "both brothers were imaginary that's a lie your": [65535, 0], "brothers were imaginary that's a lie your saying": [65535, 0], "were imaginary that's a lie your saying so": [65535, 0], "imaginary that's a lie your saying so don't": [65535, 0], "that's a lie your saying so don't make": [65535, 0], "a lie your saying so don't make it": [65535, 0], "lie your saying so don't make it so": [65535, 0], "your saying so don't make it so tom": [65535, 0], "saying so don't make it so tom drew": [65535, 0], "so don't make it so tom drew a": [65535, 0], "don't make it so tom drew a line": [65535, 0], "make it so tom drew a line in": [65535, 0], "it so tom drew a line in the": [65535, 0], "so tom drew a line in the dust": [65535, 0], "tom drew a line in the dust with": [65535, 0], "drew a line in the dust with his": [65535, 0], "a line in the dust with his big": [65535, 0], "line in the dust with his big toe": [65535, 0], "in the dust with his big toe and": [65535, 0], "the dust with his big toe and said": [65535, 0], "dust with his big toe and said i": [65535, 0], "with his big toe and said i dare": [65535, 0], "his big toe and said i dare you": [65535, 0], "big toe and said i dare you to": [65535, 0], "toe and said i dare you to step": [65535, 0], "and said i dare you to step over": [65535, 0], "said i dare you to step over that": [65535, 0], "i dare you to step over that and": [65535, 0], "dare you to step over that and i'll": [65535, 0], "you to step over that and i'll lick": [65535, 0], "to step over that and i'll lick you": [65535, 0], "step over that and i'll lick you till": [65535, 0], "over that and i'll lick you till you": [65535, 0], "that and i'll lick you till you can't": [65535, 0], "and i'll lick you till you can't stand": [65535, 0], "i'll lick you till you can't stand up": [65535, 0], "lick you till you can't stand up anybody": [65535, 0], "you till you can't stand up anybody that'll": [65535, 0], "till you can't stand up anybody that'll take": [65535, 0], "you can't stand up anybody that'll take a": [65535, 0], "can't stand up anybody that'll take a dare": [65535, 0], "stand up anybody that'll take a dare will": [65535, 0], "up anybody that'll take a dare will steal": [65535, 0], "anybody that'll take a dare will steal sheep": [65535, 0], "that'll take a dare will steal sheep the": [65535, 0], "take a dare will steal sheep the new": [65535, 0], "a dare will steal sheep the new boy": [65535, 0], "dare will steal sheep the new boy stepped": [65535, 0], "will steal sheep the new boy stepped over": [65535, 0], "steal sheep the new boy stepped over promptly": [65535, 0], "sheep the new boy stepped over promptly and": [65535, 0], "the new boy stepped over promptly and said": [65535, 0], "new boy stepped over promptly and said now": [65535, 0], "boy stepped over promptly and said now you": [65535, 0], "stepped over promptly and said now you said": [65535, 0], "over promptly and said now you said you'd": [65535, 0], "promptly and said now you said you'd do": [65535, 0], "and said now you said you'd do it": [65535, 0], "said now you said you'd do it now": [65535, 0], "now you said you'd do it now let's": [65535, 0], "you said you'd do it now let's see": [65535, 0], "said you'd do it now let's see you": [65535, 0], "you'd do it now let's see you do": [65535, 0], "do it now let's see you do it": [65535, 0], "it now let's see you do it don't": [65535, 0], "now let's see you do it don't you": [65535, 0], "let's see you do it don't you crowd": [65535, 0], "see you do it don't you crowd me": [65535, 0], "you do it don't you crowd me now": [65535, 0], "do it don't you crowd me now you": [65535, 0], "it don't you crowd me now you better": [65535, 0], "don't you crowd me now you better look": [65535, 0], "you crowd me now you better look out": [65535, 0], "crowd me now you better look out well": [65535, 0], "me now you better look out well you": [65535, 0], "now you better look out well you said": [65535, 0], "you better look out well you said you'd": [65535, 0], "better look out well you said you'd do": [65535, 0], "look out well you said you'd do it": [65535, 0], "out well you said you'd do it why": [65535, 0], "well you said you'd do it why don't": [65535, 0], "you said you'd do it why don't you": [65535, 0], "said you'd do it why don't you do": [65535, 0], "you'd do it why don't you do it": [65535, 0], "do it why don't you do it by": [65535, 0], "it why don't you do it by jingo": [65535, 0], "why don't you do it by jingo for": [65535, 0], "don't you do it by jingo for two": [65535, 0], "you do it by jingo for two cents": [65535, 0], "do it by jingo for two cents i": [65535, 0], "it by jingo for two cents i will": [65535, 0], "by jingo for two cents i will do": [65535, 0], "jingo for two cents i will do it": [65535, 0], "for two cents i will do it the": [65535, 0], "two cents i will do it the new": [65535, 0], "cents i will do it the new boy": [65535, 0], "i will do it the new boy took": [65535, 0], "will do it the new boy took two": [65535, 0], "do it the new boy took two broad": [65535, 0], "it the new boy took two broad coppers": [65535, 0], "the new boy took two broad coppers out": [65535, 0], "new boy took two broad coppers out of": [65535, 0], "boy took two broad coppers out of his": [65535, 0], "took two broad coppers out of his pocket": [65535, 0], "two broad coppers out of his pocket and": [65535, 0], "broad coppers out of his pocket and held": [65535, 0], "coppers out of his pocket and held them": [65535, 0], "out of his pocket and held them out": [65535, 0], "of his pocket and held them out with": [65535, 0], "his pocket and held them out with derision": [65535, 0], "pocket and held them out with derision tom": [65535, 0], "and held them out with derision tom struck": [65535, 0], "held them out with derision tom struck them": [65535, 0], "them out with derision tom struck them to": [65535, 0], "out with derision tom struck them to the": [65535, 0], "with derision tom struck them to the ground": [65535, 0], "derision tom struck them to the ground in": [65535, 0], "tom struck them to the ground in an": [65535, 0], "struck them to the ground in an instant": [65535, 0], "them to the ground in an instant both": [65535, 0], "to the ground in an instant both boys": [65535, 0], "the ground in an instant both boys were": [65535, 0], "ground in an instant both boys were rolling": [65535, 0], "in an instant both boys were rolling and": [65535, 0], "an instant both boys were rolling and tumbling": [65535, 0], "instant both boys were rolling and tumbling in": [65535, 0], "both boys were rolling and tumbling in the": [65535, 0], "boys were rolling and tumbling in the dirt": [65535, 0], "were rolling and tumbling in the dirt gripped": [65535, 0], "rolling and tumbling in the dirt gripped together": [65535, 0], "and tumbling in the dirt gripped together like": [65535, 0], "tumbling in the dirt gripped together like cats": [65535, 0], "in the dirt gripped together like cats and": [65535, 0], "the dirt gripped together like cats and for": [65535, 0], "dirt gripped together like cats and for the": [65535, 0], "gripped together like cats and for the space": [65535, 0], "together like cats and for the space of": [65535, 0], "like cats and for the space of a": [65535, 0], "cats and for the space of a minute": [65535, 0], "and for the space of a minute they": [65535, 0], "for the space of a minute they tugged": [65535, 0], "the space of a minute they tugged and": [65535, 0], "space of a minute they tugged and tore": [65535, 0], "of a minute they tugged and tore at": [65535, 0], "a minute they tugged and tore at each": [65535, 0], "minute they tugged and tore at each other's": [65535, 0], "they tugged and tore at each other's hair": [65535, 0], "tugged and tore at each other's hair and": [65535, 0], "and tore at each other's hair and clothes": [65535, 0], "tore at each other's hair and clothes punched": [65535, 0], "at each other's hair and clothes punched and": [65535, 0], "each other's hair and clothes punched and scratched": [65535, 0], "other's hair and clothes punched and scratched each": [65535, 0], "hair and clothes punched and scratched each other's": [65535, 0], "and clothes punched and scratched each other's nose": [65535, 0], "clothes punched and scratched each other's nose and": [65535, 0], "punched and scratched each other's nose and covered": [65535, 0], "and scratched each other's nose and covered themselves": [65535, 0], "scratched each other's nose and covered themselves with": [65535, 0], "each other's nose and covered themselves with dust": [65535, 0], "other's nose and covered themselves with dust and": [65535, 0], "nose and covered themselves with dust and glory": [65535, 0], "and covered themselves with dust and glory presently": [65535, 0], "covered themselves with dust and glory presently the": [65535, 0], "themselves with dust and glory presently the confusion": [65535, 0], "with dust and glory presently the confusion took": [65535, 0], "dust and glory presently the confusion took form": [65535, 0], "and glory presently the confusion took form and": [65535, 0], "glory presently the confusion took form and through": [65535, 0], "presently the confusion took form and through the": [65535, 0], "the confusion took form and through the fog": [65535, 0], "confusion took form and through the fog of": [65535, 0], "took form and through the fog of battle": [65535, 0], "form and through the fog of battle tom": [65535, 0], "and through the fog of battle tom appeared": [65535, 0], "through the fog of battle tom appeared seated": [65535, 0], "the fog of battle tom appeared seated astride": [65535, 0], "fog of battle tom appeared seated astride the": [65535, 0], "of battle tom appeared seated astride the new": [65535, 0], "battle tom appeared seated astride the new boy": [65535, 0], "tom appeared seated astride the new boy and": [65535, 0], "appeared seated astride the new boy and pounding": [65535, 0], "seated astride the new boy and pounding him": [65535, 0], "astride the new boy and pounding him with": [65535, 0], "the new boy and pounding him with his": [65535, 0], "new boy and pounding him with his fists": [65535, 0], "boy and pounding him with his fists holler": [65535, 0], "and pounding him with his fists holler 'nuff": [65535, 0], "pounding him with his fists holler 'nuff said": [65535, 0], "him with his fists holler 'nuff said he": [65535, 0], "with his fists holler 'nuff said he the": [65535, 0], "his fists holler 'nuff said he the boy": [65535, 0], "fists holler 'nuff said he the boy only": [65535, 0], "holler 'nuff said he the boy only struggled": [65535, 0], "'nuff said he the boy only struggled to": [65535, 0], "said he the boy only struggled to free": [65535, 0], "he the boy only struggled to free himself": [65535, 0], "the boy only struggled to free himself he": [65535, 0], "boy only struggled to free himself he was": [65535, 0], "only struggled to free himself he was crying": [65535, 0], "struggled to free himself he was crying mainly": [65535, 0], "to free himself he was crying mainly from": [65535, 0], "free himself he was crying mainly from rage": [65535, 0], "himself he was crying mainly from rage holler": [65535, 0], "he was crying mainly from rage holler 'nuff": [65535, 0], "was crying mainly from rage holler 'nuff and": [65535, 0], "crying mainly from rage holler 'nuff and the": [65535, 0], "mainly from rage holler 'nuff and the pounding": [65535, 0], "from rage holler 'nuff and the pounding went": [65535, 0], "rage holler 'nuff and the pounding went on": [65535, 0], "holler 'nuff and the pounding went on at": [65535, 0], "'nuff and the pounding went on at last": [65535, 0], "and the pounding went on at last the": [65535, 0], "the pounding went on at last the stranger": [65535, 0], "pounding went on at last the stranger got": [65535, 0], "went on at last the stranger got out": [65535, 0], "on at last the stranger got out a": [65535, 0], "at last the stranger got out a smothered": [65535, 0], "last the stranger got out a smothered 'nuff": [65535, 0], "the stranger got out a smothered 'nuff and": [65535, 0], "stranger got out a smothered 'nuff and tom": [65535, 0], "got out a smothered 'nuff and tom let": [65535, 0], "out a smothered 'nuff and tom let him": [65535, 0], "a smothered 'nuff and tom let him up": [65535, 0], "smothered 'nuff and tom let him up and": [65535, 0], "'nuff and tom let him up and said": [65535, 0], "and tom let him up and said now": [65535, 0], "tom let him up and said now that'll": [65535, 0], "let him up and said now that'll learn": [65535, 0], "him up and said now that'll learn you": [65535, 0], "up and said now that'll learn you better": [65535, 0], "and said now that'll learn you better look": [65535, 0], "said now that'll learn you better look out": [65535, 0], "now that'll learn you better look out who": [65535, 0], "that'll learn you better look out who you're": [65535, 0], "learn you better look out who you're fooling": [65535, 0], "you better look out who you're fooling with": [65535, 0], "better look out who you're fooling with next": [65535, 0], "look out who you're fooling with next time": [65535, 0], "out who you're fooling with next time the": [65535, 0], "who you're fooling with next time the new": [65535, 0], "you're fooling with next time the new boy": [65535, 0], "fooling with next time the new boy went": [65535, 0], "with next time the new boy went off": [65535, 0], "next time the new boy went off brushing": [65535, 0], "time the new boy went off brushing the": [65535, 0], "the new boy went off brushing the dust": [65535, 0], "new boy went off brushing the dust from": [65535, 0], "boy went off brushing the dust from his": [65535, 0], "went off brushing the dust from his clothes": [65535, 0], "off brushing the dust from his clothes sobbing": [65535, 0], "brushing the dust from his clothes sobbing snuffling": [65535, 0], "the dust from his clothes sobbing snuffling and": [65535, 0], "dust from his clothes sobbing snuffling and occasionally": [65535, 0], "from his clothes sobbing snuffling and occasionally looking": [65535, 0], "his clothes sobbing snuffling and occasionally looking back": [65535, 0], "clothes sobbing snuffling and occasionally looking back and": [65535, 0], "sobbing snuffling and occasionally looking back and shaking": [65535, 0], "snuffling and occasionally looking back and shaking his": [65535, 0], "and occasionally looking back and shaking his head": [65535, 0], "occasionally looking back and shaking his head and": [65535, 0], "looking back and shaking his head and threatening": [65535, 0], "back and shaking his head and threatening what": [65535, 0], "and shaking his head and threatening what he": [65535, 0], "shaking his head and threatening what he would": [65535, 0], "his head and threatening what he would do": [65535, 0], "head and threatening what he would do to": [65535, 0], "and threatening what he would do to tom": [65535, 0], "threatening what he would do to tom the": [65535, 0], "what he would do to tom the next": [65535, 0], "he would do to tom the next time": [65535, 0], "would do to tom the next time he": [65535, 0], "do to tom the next time he caught": [65535, 0], "to tom the next time he caught him": [65535, 0], "tom the next time he caught him out": [65535, 0], "the next time he caught him out to": [65535, 0], "next time he caught him out to which": [65535, 0], "time he caught him out to which tom": [65535, 0], "he caught him out to which tom responded": [65535, 0], "caught him out to which tom responded with": [65535, 0], "him out to which tom responded with jeers": [65535, 0], "out to which tom responded with jeers and": [65535, 0], "to which tom responded with jeers and started": [65535, 0], "which tom responded with jeers and started off": [65535, 0], "tom responded with jeers and started off in": [65535, 0], "responded with jeers and started off in high": [65535, 0], "with jeers and started off in high feather": [65535, 0], "jeers and started off in high feather and": [65535, 0], "and started off in high feather and as": [65535, 0], "started off in high feather and as soon": [65535, 0], "off in high feather and as soon as": [65535, 0], "in high feather and as soon as his": [65535, 0], "high feather and as soon as his back": [65535, 0], "feather and as soon as his back was": [65535, 0], "and as soon as his back was turned": [65535, 0], "as soon as his back was turned the": [65535, 0], "soon as his back was turned the new": [65535, 0], "as his back was turned the new boy": [65535, 0], "his back was turned the new boy snatched": [65535, 0], "back was turned the new boy snatched up": [65535, 0], "was turned the new boy snatched up a": [65535, 0], "turned the new boy snatched up a stone": [65535, 0], "the new boy snatched up a stone threw": [65535, 0], "new boy snatched up a stone threw it": [65535, 0], "boy snatched up a stone threw it and": [65535, 0], "snatched up a stone threw it and hit": [65535, 0], "up a stone threw it and hit him": [65535, 0], "a stone threw it and hit him between": [65535, 0], "stone threw it and hit him between the": [65535, 0], "threw it and hit him between the shoulders": [65535, 0], "it and hit him between the shoulders and": [65535, 0], "and hit him between the shoulders and then": [65535, 0], "hit him between the shoulders and then turned": [65535, 0], "him between the shoulders and then turned tail": [65535, 0], "between the shoulders and then turned tail and": [65535, 0], "the shoulders and then turned tail and ran": [65535, 0], "shoulders and then turned tail and ran like": [65535, 0], "and then turned tail and ran like an": [65535, 0], "then turned tail and ran like an antelope": [65535, 0], "turned tail and ran like an antelope tom": [65535, 0], "tail and ran like an antelope tom chased": [65535, 0], "and ran like an antelope tom chased the": [65535, 0], "ran like an antelope tom chased the traitor": [65535, 0], "like an antelope tom chased the traitor home": [65535, 0], "an antelope tom chased the traitor home and": [65535, 0], "antelope tom chased the traitor home and thus": [65535, 0], "tom chased the traitor home and thus found": [65535, 0], "chased the traitor home and thus found out": [65535, 0], "the traitor home and thus found out where": [65535, 0], "traitor home and thus found out where he": [65535, 0], "home and thus found out where he lived": [65535, 0], "and thus found out where he lived he": [65535, 0], "thus found out where he lived he then": [65535, 0], "found out where he lived he then held": [65535, 0], "out where he lived he then held a": [65535, 0], "where he lived he then held a position": [65535, 0], "he lived he then held a position at": [65535, 0], "lived he then held a position at the": [65535, 0], "he then held a position at the gate": [65535, 0], "then held a position at the gate for": [65535, 0], "held a position at the gate for some": [65535, 0], "a position at the gate for some time": [65535, 0], "position at the gate for some time daring": [65535, 0], "at the gate for some time daring the": [65535, 0], "the gate for some time daring the enemy": [65535, 0], "gate for some time daring the enemy to": [65535, 0], "for some time daring the enemy to come": [65535, 0], "some time daring the enemy to come outside": [65535, 0], "time daring the enemy to come outside but": [65535, 0], "daring the enemy to come outside but the": [65535, 0], "the enemy to come outside but the enemy": [65535, 0], "enemy to come outside but the enemy only": [65535, 0], "to come outside but the enemy only made": [65535, 0], "come outside but the enemy only made faces": [65535, 0], "outside but the enemy only made faces at": [65535, 0], "but the enemy only made faces at him": [65535, 0], "the enemy only made faces at him through": [65535, 0], "enemy only made faces at him through the": [65535, 0], "only made faces at him through the window": [65535, 0], "made faces at him through the window and": [65535, 0], "faces at him through the window and declined": [65535, 0], "at him through the window and declined at": [65535, 0], "him through the window and declined at last": [65535, 0], "through the window and declined at last the": [65535, 0], "the window and declined at last the enemy's": [65535, 0], "window and declined at last the enemy's mother": [65535, 0], "and declined at last the enemy's mother appeared": [65535, 0], "declined at last the enemy's mother appeared and": [65535, 0], "at last the enemy's mother appeared and called": [65535, 0], "last the enemy's mother appeared and called tom": [65535, 0], "the enemy's mother appeared and called tom a": [65535, 0], "enemy's mother appeared and called tom a bad": [65535, 0], "mother appeared and called tom a bad vicious": [65535, 0], "appeared and called tom a bad vicious vulgar": [65535, 0], "and called tom a bad vicious vulgar child": [65535, 0], "called tom a bad vicious vulgar child and": [65535, 0], "tom a bad vicious vulgar child and ordered": [65535, 0], "a bad vicious vulgar child and ordered him": [65535, 0], "bad vicious vulgar child and ordered him away": [65535, 0], "vicious vulgar child and ordered him away so": [65535, 0], "vulgar child and ordered him away so he": [65535, 0], "child and ordered him away so he went": [65535, 0], "and ordered him away so he went away": [65535, 0], "ordered him away so he went away but": [65535, 0], "him away so he went away but he": [65535, 0], "away so he went away but he said": [65535, 0], "so he went away but he said he": [65535, 0], "he went away but he said he 'lowed": [65535, 0], "went away but he said he 'lowed to": [65535, 0], "away but he said he 'lowed to lay": [65535, 0], "but he said he 'lowed to lay for": [65535, 0], "he said he 'lowed to lay for that": [65535, 0], "said he 'lowed to lay for that boy": [65535, 0], "he 'lowed to lay for that boy he": [65535, 0], "'lowed to lay for that boy he got": [65535, 0], "to lay for that boy he got home": [65535, 0], "lay for that boy he got home pretty": [65535, 0], "for that boy he got home pretty late": [65535, 0], "that boy he got home pretty late that": [65535, 0], "boy he got home pretty late that night": [65535, 0], "he got home pretty late that night and": [65535, 0], "got home pretty late that night and when": [65535, 0], "home pretty late that night and when he": [65535, 0], "pretty late that night and when he climbed": [65535, 0], "late that night and when he climbed cautiously": [65535, 0], "that night and when he climbed cautiously in": [65535, 0], "night and when he climbed cautiously in at": [65535, 0], "and when he climbed cautiously in at the": [65535, 0], "when he climbed cautiously in at the window": [65535, 0], "he climbed cautiously in at the window he": [65535, 0], "climbed cautiously in at the window he uncovered": [65535, 0], "cautiously in at the window he uncovered an": [65535, 0], "in at the window he uncovered an ambuscade": [65535, 0], "at the window he uncovered an ambuscade in": [65535, 0], "the window he uncovered an ambuscade in the": [65535, 0], "window he uncovered an ambuscade in the person": [65535, 0], "he uncovered an ambuscade in the person of": [65535, 0], "uncovered an ambuscade in the person of his": [65535, 0], "an ambuscade in the person of his aunt": [65535, 0], "ambuscade in the person of his aunt and": [65535, 0], "in the person of his aunt and when": [65535, 0], "the person of his aunt and when she": [65535, 0], "person of his aunt and when she saw": [65535, 0], "of his aunt and when she saw the": [65535, 0], "his aunt and when she saw the state": [65535, 0], "aunt and when she saw the state his": [65535, 0], "and when she saw the state his clothes": [65535, 0], "when she saw the state his clothes were": [65535, 0], "she saw the state his clothes were in": [65535, 0], "saw the state his clothes were in her": [65535, 0], "the state his clothes were in her resolution": [65535, 0], "state his clothes were in her resolution to": [65535, 0], "his clothes were in her resolution to turn": [65535, 0], "clothes were in her resolution to turn his": [65535, 0], "were in her resolution to turn his saturday": [65535, 0], "in her resolution to turn his saturday holiday": [65535, 0], "her resolution to turn his saturday holiday into": [65535, 0], "resolution to turn his saturday holiday into captivity": [65535, 0], "to turn his saturday holiday into captivity at": [65535, 0], "turn his saturday holiday into captivity at hard": [65535, 0], "his saturday holiday into captivity at hard labor": [65535, 0], "saturday holiday into captivity at hard labor became": [65535, 0], "holiday into captivity at hard labor became adamantine": [65535, 0], "into captivity at hard labor became adamantine in": [65535, 0], "captivity at hard labor became adamantine in its": [65535, 0], "at hard labor became adamantine in its firmness": [65535, 0], "tom no answer tom no answer what's gone with": [65535, 0], "no answer tom no answer what's gone with that": [65535, 0], "answer tom no answer what's gone with that boy": [65535, 0], "tom no answer what's gone with that boy i": [65535, 0], "no answer what's gone with that boy i wonder": [65535, 0], "answer what's gone with that boy i wonder you": [65535, 0], "what's gone with that boy i wonder you tom": [65535, 0], "gone with that boy i wonder you tom no": [65535, 0], "with that boy i wonder you tom no answer": [65535, 0], "that boy i wonder you tom no answer the": [65535, 0], "boy i wonder you tom no answer the old": [65535, 0], "i wonder you tom no answer the old lady": [65535, 0], "wonder you tom no answer the old lady pulled": [65535, 0], "you tom no answer the old lady pulled her": [65535, 0], "tom no answer the old lady pulled her spectacles": [65535, 0], "no answer the old lady pulled her spectacles down": [65535, 0], "answer the old lady pulled her spectacles down and": [65535, 0], "the old lady pulled her spectacles down and looked": [65535, 0], "old lady pulled her spectacles down and looked over": [65535, 0], "lady pulled her spectacles down and looked over them": [65535, 0], "pulled her spectacles down and looked over them about": [65535, 0], "her spectacles down and looked over them about the": [65535, 0], "spectacles down and looked over them about the room": [65535, 0], "down and looked over them about the room then": [65535, 0], "and looked over them about the room then she": [65535, 0], "looked over them about the room then she put": [65535, 0], "over them about the room then she put them": [65535, 0], "them about the room then she put them up": [65535, 0], "about the room then she put them up and": [65535, 0], "the room then she put them up and looked": [65535, 0], "room then she put them up and looked out": [65535, 0], "then she put them up and looked out under": [65535, 0], "she put them up and looked out under them": [65535, 0], "put them up and looked out under them she": [65535, 0], "them up and looked out under them she seldom": [65535, 0], "up and looked out under them she seldom or": [65535, 0], "and looked out under them she seldom or never": [65535, 0], "looked out under them she seldom or never looked": [65535, 0], "out under them she seldom or never looked through": [65535, 0], "under them she seldom or never looked through them": [65535, 0], "them she seldom or never looked through them for": [65535, 0], "she seldom or never looked through them for so": [65535, 0], "seldom or never looked through them for so small": [65535, 0], "or never looked through them for so small a": [65535, 0], "never looked through them for so small a thing": [65535, 0], "looked through them for so small a thing as": [65535, 0], "through them for so small a thing as a": [65535, 0], "them for so small a thing as a boy": [65535, 0], "for so small a thing as a boy they": [65535, 0], "so small a thing as a boy they were": [65535, 0], "small a thing as a boy they were her": [65535, 0], "a thing as a boy they were her state": [65535, 0], "thing as a boy they were her state pair": [65535, 0], "as a boy they were her state pair the": [65535, 0], "a boy they were her state pair the pride": [65535, 0], "boy they were her state pair the pride of": [65535, 0], "they were her state pair the pride of her": [65535, 0], "were her state pair the pride of her heart": [65535, 0], "her state pair the pride of her heart and": [65535, 0], "state pair the pride of her heart and were": [65535, 0], "pair the pride of her heart and were built": [65535, 0], "the pride of her heart and were built for": [65535, 0], "pride of her heart and were built for style": [65535, 0], "of her heart and were built for style not": [65535, 0], "her heart and were built for style not service": [65535, 0], "heart and were built for style not service she": [65535, 0], "and were built for style not service she could": [65535, 0], "were built for style not service she could have": [65535, 0], "built for style not service she could have seen": [65535, 0], "for style not service she could have seen through": [65535, 0], "style not service she could have seen through a": [65535, 0], "not service she could have seen through a pair": [65535, 0], "service she could have seen through a pair of": [65535, 0], "she could have seen through a pair of stove": [65535, 0], "could have seen through a pair of stove lids": [65535, 0], "have seen through a pair of stove lids just": [65535, 0], "seen through a pair of stove lids just as": [65535, 0], "through a pair of stove lids just as well": [65535, 0], "a pair of stove lids just as well she": [65535, 0], "pair of stove lids just as well she looked": [65535, 0], "of stove lids just as well she looked perplexed": [65535, 0], "stove lids just as well she looked perplexed for": [65535, 0], "lids just as well she looked perplexed for a": [65535, 0], "just as well she looked perplexed for a moment": [65535, 0], "as well she looked perplexed for a moment and": [65535, 0], "well she looked perplexed for a moment and then": [65535, 0], "she looked perplexed for a moment and then said": [65535, 0], "looked perplexed for a moment and then said not": [65535, 0], "perplexed for a moment and then said not fiercely": [65535, 0], "for a moment and then said not fiercely but": [65535, 0], "a moment and then said not fiercely but still": [65535, 0], "moment and then said not fiercely but still loud": [65535, 0], "and then said not fiercely but still loud enough": [65535, 0], "then said not fiercely but still loud enough for": [65535, 0], "said not fiercely but still loud enough for the": [65535, 0], "not fiercely but still loud enough for the furniture": [65535, 0], "fiercely but still loud enough for the furniture to": [65535, 0], "but still loud enough for the furniture to hear": [65535, 0], "still loud enough for the furniture to hear well": [65535, 0], "loud enough for the furniture to hear well i": [65535, 0], "enough for the furniture to hear well i lay": [65535, 0], "for the furniture to hear well i lay if": [65535, 0], "the furniture to hear well i lay if i": [65535, 0], "furniture to hear well i lay if i get": [65535, 0], "to hear well i lay if i get hold": [65535, 0], "hear well i lay if i get hold of": [65535, 0], "well i lay if i get hold of you": [65535, 0], "i lay if i get hold of you i'll": [65535, 0], "lay if i get hold of you i'll she": [65535, 0], "if i get hold of you i'll she did": [65535, 0], "i get hold of you i'll she did not": [65535, 0], "get hold of you i'll she did not finish": [65535, 0], "hold of you i'll she did not finish for": [65535, 0], "of you i'll she did not finish for by": [65535, 0], "you i'll she did not finish for by this": [65535, 0], "i'll she did not finish for by this time": [65535, 0], "she did not finish for by this time she": [65535, 0], "did not finish for by this time she was": [65535, 0], "not finish for by this time she was bending": [65535, 0], "finish for by this time she was bending down": [65535, 0], "for by this time she was bending down and": [65535, 0], "by this time she was bending down and punching": [65535, 0], "this time she was bending down and punching under": [65535, 0], "time she was bending down and punching under the": [65535, 0], "she was bending down and punching under the bed": [65535, 0], "was bending down and punching under the bed with": [65535, 0], "bending down and punching under the bed with the": [65535, 0], "down and punching under the bed with the broom": [65535, 0], "and punching under the bed with the broom and": [65535, 0], "punching under the bed with the broom and so": [65535, 0], "under the bed with the broom and so she": [65535, 0], "the bed with the broom and so she needed": [65535, 0], "bed with the broom and so she needed breath": [65535, 0], "with the broom and so she needed breath to": [65535, 0], "the broom and so she needed breath to punctuate": [65535, 0], "broom and so she needed breath to punctuate the": [65535, 0], "and so she needed breath to punctuate the punches": [65535, 0], "so she needed breath to punctuate the punches with": [65535, 0], "she needed breath to punctuate the punches with she": [65535, 0], "needed breath to punctuate the punches with she resurrected": [65535, 0], "breath to punctuate the punches with she resurrected nothing": [65535, 0], "to punctuate the punches with she resurrected nothing but": [65535, 0], "punctuate the punches with she resurrected nothing but the": [65535, 0], "the punches with she resurrected nothing but the cat": [65535, 0], "punches with she resurrected nothing but the cat i": [65535, 0], "with she resurrected nothing but the cat i never": [65535, 0], "she resurrected nothing but the cat i never did": [65535, 0], "resurrected nothing but the cat i never did see": [65535, 0], "nothing but the cat i never did see the": [65535, 0], "but the cat i never did see the beat": [65535, 0], "the cat i never did see the beat of": [65535, 0], "cat i never did see the beat of that": [65535, 0], "i never did see the beat of that boy": [65535, 0], "never did see the beat of that boy she": [65535, 0], "did see the beat of that boy she went": [65535, 0], "see the beat of that boy she went to": [65535, 0], "the beat of that boy she went to the": [65535, 0], "beat of that boy she went to the open": [65535, 0], "of that boy she went to the open door": [65535, 0], "that boy she went to the open door and": [65535, 0], "boy she went to the open door and stood": [65535, 0], "she went to the open door and stood in": [65535, 0], "went to the open door and stood in it": [65535, 0], "to the open door and stood in it and": [65535, 0], "the open door and stood in it and looked": [65535, 0], "open door and stood in it and looked out": [65535, 0], "door and stood in it and looked out among": [65535, 0], "and stood in it and looked out among the": [65535, 0], "stood in it and looked out among the tomato": [65535, 0], "in it and looked out among the tomato vines": [65535, 0], "it and looked out among the tomato vines and": [65535, 0], "and looked out among the tomato vines and jimpson": [65535, 0], "looked out among the tomato vines and jimpson weeds": [65535, 0], "out among the tomato vines and jimpson weeds that": [65535, 0], "among the tomato vines and jimpson weeds that constituted": [65535, 0], "the tomato vines and jimpson weeds that constituted the": [65535, 0], "tomato vines and jimpson weeds that constituted the garden": [65535, 0], "vines and jimpson weeds that constituted the garden no": [65535, 0], "and jimpson weeds that constituted the garden no tom": [65535, 0], "jimpson weeds that constituted the garden no tom so": [65535, 0], "weeds that constituted the garden no tom so she": [65535, 0], "that constituted the garden no tom so she lifted": [65535, 0], "constituted the garden no tom so she lifted up": [65535, 0], "the garden no tom so she lifted up her": [65535, 0], "garden no tom so she lifted up her voice": [65535, 0], "no tom so she lifted up her voice at": [65535, 0], "tom so she lifted up her voice at an": [65535, 0], "so she lifted up her voice at an angle": [65535, 0], "she lifted up her voice at an angle calculated": [65535, 0], "lifted up her voice at an angle calculated for": [65535, 0], "up her voice at an angle calculated for distance": [65535, 0], "her voice at an angle calculated for distance and": [65535, 0], "voice at an angle calculated for distance and shouted": [65535, 0], "at an angle calculated for distance and shouted y": [65535, 0], "an angle calculated for distance and shouted y o": [65535, 0], "angle calculated for distance and shouted y o u": [65535, 0], "calculated for distance and shouted y o u u": [65535, 0], "for distance and shouted y o u u tom": [65535, 0], "distance and shouted y o u u tom there": [65535, 0], "and shouted y o u u tom there was": [65535, 0], "shouted y o u u tom there was a": [65535, 0], "y o u u tom there was a slight": [65535, 0], "o u u tom there was a slight noise": [65535, 0], "u u tom there was a slight noise behind": [65535, 0], "u tom there was a slight noise behind her": [65535, 0], "tom there was a slight noise behind her and": [65535, 0], "there was a slight noise behind her and she": [65535, 0], "was a slight noise behind her and she turned": [65535, 0], "a slight noise behind her and she turned just": [65535, 0], "slight noise behind her and she turned just in": [65535, 0], "noise behind her and she turned just in time": [65535, 0], "behind her and she turned just in time to": [65535, 0], "her and she turned just in time to seize": [65535, 0], "and she turned just in time to seize a": [65535, 0], "she turned just in time to seize a small": [65535, 0], "turned just in time to seize a small boy": [65535, 0], "just in time to seize a small boy by": [65535, 0], "in time to seize a small boy by the": [65535, 0], "time to seize a small boy by the slack": [65535, 0], "to seize a small boy by the slack of": [65535, 0], "seize a small boy by the slack of his": [65535, 0], "a small boy by the slack of his roundabout": [65535, 0], "small boy by the slack of his roundabout and": [65535, 0], "boy by the slack of his roundabout and arrest": [65535, 0], "by the slack of his roundabout and arrest his": [65535, 0], "the slack of his roundabout and arrest his flight": [65535, 0], "slack of his roundabout and arrest his flight there": [65535, 0], "of his roundabout and arrest his flight there i": [65535, 0], "his roundabout and arrest his flight there i might": [65535, 0], "roundabout and arrest his flight there i might 'a'": [65535, 0], "and arrest his flight there i might 'a' thought": [65535, 0], "arrest his flight there i might 'a' thought of": [65535, 0], "his flight there i might 'a' thought of that": [65535, 0], "flight there i might 'a' thought of that closet": [65535, 0], "there i might 'a' thought of that closet what": [65535, 0], "i might 'a' thought of that closet what you": [65535, 0], "might 'a' thought of that closet what you been": [65535, 0], "'a' thought of that closet what you been doing": [65535, 0], "thought of that closet what you been doing in": [65535, 0], "of that closet what you been doing in there": [65535, 0], "that closet what you been doing in there nothing": [65535, 0], "closet what you been doing in there nothing nothing": [65535, 0], "what you been doing in there nothing nothing look": [65535, 0], "you been doing in there nothing nothing look at": [65535, 0], "been doing in there nothing nothing look at your": [65535, 0], "doing in there nothing nothing look at your hands": [65535, 0], "in there nothing nothing look at your hands and": [65535, 0], "there nothing nothing look at your hands and look": [65535, 0], "nothing nothing look at your hands and look at": [65535, 0], "nothing look at your hands and look at your": [65535, 0], "look at your hands and look at your mouth": [65535, 0], "at your hands and look at your mouth what": [65535, 0], "your hands and look at your mouth what is": [65535, 0], "hands and look at your mouth what is that": [65535, 0], "and look at your mouth what is that i": [65535, 0], "look at your mouth what is that i don't": [65535, 0], "at your mouth what is that i don't know": [65535, 0], "your mouth what is that i don't know aunt": [65535, 0], "mouth what is that i don't know aunt well": [65535, 0], "what is that i don't know aunt well i": [65535, 0], "is that i don't know aunt well i know": [65535, 0], "that i don't know aunt well i know it's": [65535, 0], "i don't know aunt well i know it's jam": [65535, 0], "don't know aunt well i know it's jam that's": [65535, 0], "know aunt well i know it's jam that's what": [65535, 0], "aunt well i know it's jam that's what it": [65535, 0], "well i know it's jam that's what it is": [65535, 0], "i know it's jam that's what it is forty": [65535, 0], "know it's jam that's what it is forty times": [65535, 0], "it's jam that's what it is forty times i've": [65535, 0], "jam that's what it is forty times i've said": [65535, 0], "that's what it is forty times i've said if": [65535, 0], "what it is forty times i've said if you": [65535, 0], "it is forty times i've said if you didn't": [65535, 0], "is forty times i've said if you didn't let": [65535, 0], "forty times i've said if you didn't let that": [65535, 0], "times i've said if you didn't let that jam": [65535, 0], "i've said if you didn't let that jam alone": [65535, 0], "said if you didn't let that jam alone i'd": [65535, 0], "if you didn't let that jam alone i'd skin": [65535, 0], "you didn't let that jam alone i'd skin you": [65535, 0], "didn't let that jam alone i'd skin you hand": [65535, 0], "let that jam alone i'd skin you hand me": [65535, 0], "that jam alone i'd skin you hand me that": [65535, 0], "jam alone i'd skin you hand me that switch": [65535, 0], "alone i'd skin you hand me that switch the": [65535, 0], "i'd skin you hand me that switch the switch": [65535, 0], "skin you hand me that switch the switch hovered": [65535, 0], "you hand me that switch the switch hovered in": [65535, 0], "hand me that switch the switch hovered in the": [65535, 0], "me that switch the switch hovered in the air": [65535, 0], "that switch the switch hovered in the air the": [65535, 0], "switch the switch hovered in the air the peril": [65535, 0], "the switch hovered in the air the peril was": [65535, 0], "switch hovered in the air the peril was desperate": [65535, 0], "hovered in the air the peril was desperate my": [65535, 0], "in the air the peril was desperate my look": [65535, 0], "the air the peril was desperate my look behind": [65535, 0], "air the peril was desperate my look behind you": [65535, 0], "the peril was desperate my look behind you aunt": [65535, 0], "peril was desperate my look behind you aunt the": [65535, 0], "was desperate my look behind you aunt the old": [65535, 0], "desperate my look behind you aunt the old lady": [65535, 0], "my look behind you aunt the old lady whirled": [65535, 0], "look behind you aunt the old lady whirled round": [65535, 0], "behind you aunt the old lady whirled round and": [65535, 0], "you aunt the old lady whirled round and snatched": [65535, 0], "aunt the old lady whirled round and snatched her": [65535, 0], "the old lady whirled round and snatched her skirts": [65535, 0], "old lady whirled round and snatched her skirts out": [65535, 0], "lady whirled round and snatched her skirts out of": [65535, 0], "whirled round and snatched her skirts out of danger": [65535, 0], "round and snatched her skirts out of danger the": [65535, 0], "and snatched her skirts out of danger the lad": [65535, 0], "snatched her skirts out of danger the lad fled": [65535, 0], "her skirts out of danger the lad fled on": [65535, 0], "skirts out of danger the lad fled on the": [65535, 0], "out of danger the lad fled on the instant": [65535, 0], "of danger the lad fled on the instant scrambled": [65535, 0], "danger the lad fled on the instant scrambled up": [65535, 0], "the lad fled on the instant scrambled up the": [65535, 0], "lad fled on the instant scrambled up the high": [65535, 0], "fled on the instant scrambled up the high board": [65535, 0], "on the instant scrambled up the high board fence": [65535, 0], "the instant scrambled up the high board fence and": [65535, 0], "instant scrambled up the high board fence and disappeared": [65535, 0], "scrambled up the high board fence and disappeared over": [65535, 0], "up the high board fence and disappeared over it": [65535, 0], "the high board fence and disappeared over it his": [65535, 0], "high board fence and disappeared over it his aunt": [65535, 0], "board fence and disappeared over it his aunt polly": [65535, 0], "fence and disappeared over it his aunt polly stood": [65535, 0], "and disappeared over it his aunt polly stood surprised": [65535, 0], "disappeared over it his aunt polly stood surprised a": [65535, 0], "over it his aunt polly stood surprised a moment": [65535, 0], "it his aunt polly stood surprised a moment and": [65535, 0], "his aunt polly stood surprised a moment and then": [65535, 0], "aunt polly stood surprised a moment and then broke": [65535, 0], "polly stood surprised a moment and then broke into": [65535, 0], "stood surprised a moment and then broke into a": [65535, 0], "surprised a moment and then broke into a gentle": [65535, 0], "a moment and then broke into a gentle laugh": [65535, 0], "moment and then broke into a gentle laugh hang": [65535, 0], "and then broke into a gentle laugh hang the": [65535, 0], "then broke into a gentle laugh hang the boy": [65535, 0], "broke into a gentle laugh hang the boy can't": [65535, 0], "into a gentle laugh hang the boy can't i": [65535, 0], "a gentle laugh hang the boy can't i never": [65535, 0], "gentle laugh hang the boy can't i never learn": [65535, 0], "laugh hang the boy can't i never learn anything": [65535, 0], "hang the boy can't i never learn anything ain't": [65535, 0], "the boy can't i never learn anything ain't he": [65535, 0], "boy can't i never learn anything ain't he played": [65535, 0], "can't i never learn anything ain't he played me": [65535, 0], "i never learn anything ain't he played me tricks": [65535, 0], "never learn anything ain't he played me tricks enough": [65535, 0], "learn anything ain't he played me tricks enough like": [65535, 0], "anything ain't he played me tricks enough like that": [65535, 0], "ain't he played me tricks enough like that for": [65535, 0], "he played me tricks enough like that for me": [65535, 0], "played me tricks enough like that for me to": [65535, 0], "me tricks enough like that for me to be": [65535, 0], "tricks enough like that for me to be looking": [65535, 0], "enough like that for me to be looking out": [65535, 0], "like that for me to be looking out for": [65535, 0], "that for me to be looking out for him": [65535, 0], "for me to be looking out for him by": [65535, 0], "me to be looking out for him by this": [65535, 0], "to be looking out for him by this time": [65535, 0], "be looking out for him by this time but": [65535, 0], "looking out for him by this time but old": [65535, 0], "out for him by this time but old fools": [65535, 0], "for him by this time but old fools is": [65535, 0], "him by this time but old fools is the": [65535, 0], "by this time but old fools is the biggest": [65535, 0], "this time but old fools is the biggest fools": [65535, 0], "time but old fools is the biggest fools there": [65535, 0], "but old fools is the biggest fools there is": [65535, 0], "old fools is the biggest fools there is can't": [65535, 0], "fools is the biggest fools there is can't learn": [65535, 0], "is the biggest fools there is can't learn an": [65535, 0], "the biggest fools there is can't learn an old": [65535, 0], "biggest fools there is can't learn an old dog": [65535, 0], "fools there is can't learn an old dog new": [65535, 0], "there is can't learn an old dog new tricks": [65535, 0], "is can't learn an old dog new tricks as": [65535, 0], "can't learn an old dog new tricks as the": [65535, 0], "learn an old dog new tricks as the saying": [65535, 0], "an old dog new tricks as the saying is": [65535, 0], "old dog new tricks as the saying is but": [65535, 0], "dog new tricks as the saying is but my": [65535, 0], "new tricks as the saying is but my goodness": [65535, 0], "tricks as the saying is but my goodness he": [65535, 0], "as the saying is but my goodness he never": [65535, 0], "the saying is but my goodness he never plays": [65535, 0], "saying is but my goodness he never plays them": [65535, 0], "is but my goodness he never plays them alike": [65535, 0], "but my goodness he never plays them alike two": [65535, 0], "my goodness he never plays them alike two days": [65535, 0], "goodness he never plays them alike two days and": [65535, 0], "he never plays them alike two days and how": [65535, 0], "never plays them alike two days and how is": [65535, 0], "plays them alike two days and how is a": [65535, 0], "them alike two days and how is a body": [65535, 0], "alike two days and how is a body to": [65535, 0], "two days and how is a body to know": [65535, 0], "days and how is a body to know what's": [65535, 0], "and how is a body to know what's coming": [65535, 0], "how is a body to know what's coming he": [65535, 0], "is a body to know what's coming he 'pears": [65535, 0], "a body to know what's coming he 'pears to": [65535, 0], "body to know what's coming he 'pears to know": [65535, 0], "to know what's coming he 'pears to know just": [65535, 0], "know what's coming he 'pears to know just how": [65535, 0], "what's coming he 'pears to know just how long": [65535, 0], "coming he 'pears to know just how long he": [65535, 0], "he 'pears to know just how long he can": [65535, 0], "'pears to know just how long he can torment": [65535, 0], "to know just how long he can torment me": [65535, 0], "know just how long he can torment me before": [65535, 0], "just how long he can torment me before i": [65535, 0], "how long he can torment me before i get": [65535, 0], "long he can torment me before i get my": [65535, 0], "he can torment me before i get my dander": [65535, 0], "can torment me before i get my dander up": [65535, 0], "torment me before i get my dander up and": [65535, 0], "me before i get my dander up and he": [65535, 0], "before i get my dander up and he knows": [65535, 0], "i get my dander up and he knows if": [65535, 0], "get my dander up and he knows if he": [65535, 0], "my dander up and he knows if he can": [65535, 0], "dander up and he knows if he can make": [65535, 0], "up and he knows if he can make out": [65535, 0], "and he knows if he can make out to": [65535, 0], "he knows if he can make out to put": [65535, 0], "knows if he can make out to put me": [65535, 0], "if he can make out to put me off": [65535, 0], "he can make out to put me off for": [65535, 0], "can make out to put me off for a": [65535, 0], "make out to put me off for a minute": [65535, 0], "out to put me off for a minute or": [65535, 0], "to put me off for a minute or make": [65535, 0], "put me off for a minute or make me": [65535, 0], "me off for a minute or make me laugh": [65535, 0], "off for a minute or make me laugh it's": [65535, 0], "for a minute or make me laugh it's all": [65535, 0], "a minute or make me laugh it's all down": [65535, 0], "minute or make me laugh it's all down again": [65535, 0], "or make me laugh it's all down again and": [65535, 0], "make me laugh it's all down again and i": [65535, 0], "me laugh it's all down again and i can't": [65535, 0], "laugh it's all down again and i can't hit": [65535, 0], "it's all down again and i can't hit him": [65535, 0], "all down again and i can't hit him a": [65535, 0], "down again and i can't hit him a lick": [65535, 0], "again and i can't hit him a lick i": [65535, 0], "and i can't hit him a lick i ain't": [65535, 0], "i can't hit him a lick i ain't doing": [65535, 0], "can't hit him a lick i ain't doing my": [65535, 0], "hit him a lick i ain't doing my duty": [65535, 0], "him a lick i ain't doing my duty by": [65535, 0], "a lick i ain't doing my duty by that": [65535, 0], "lick i ain't doing my duty by that boy": [65535, 0], "i ain't doing my duty by that boy and": [65535, 0], "ain't doing my duty by that boy and that's": [65535, 0], "doing my duty by that boy and that's the": [65535, 0], "my duty by that boy and that's the lord's": [65535, 0], "duty by that boy and that's the lord's truth": [65535, 0], "by that boy and that's the lord's truth goodness": [65535, 0], "that boy and that's the lord's truth goodness knows": [65535, 0], "boy and that's the lord's truth goodness knows spare": [65535, 0], "and that's the lord's truth goodness knows spare the": [65535, 0], "that's the lord's truth goodness knows spare the rod": [65535, 0], "the lord's truth goodness knows spare the rod and": [65535, 0], "lord's truth goodness knows spare the rod and spoil": [65535, 0], "truth goodness knows spare the rod and spoil the": [65535, 0], "goodness knows spare the rod and spoil the child": [65535, 0], "knows spare the rod and spoil the child as": [65535, 0], "spare the rod and spoil the child as the": [65535, 0], "the rod and spoil the child as the good": [65535, 0], "rod and spoil the child as the good book": [65535, 0], "and spoil the child as the good book says": [65535, 0], "spoil the child as the good book says i'm": [65535, 0], "the child as the good book says i'm a": [65535, 0], "child as the good book says i'm a laying": [65535, 0], "as the good book says i'm a laying up": [65535, 0], "the good book says i'm a laying up sin": [65535, 0], "good book says i'm a laying up sin and": [65535, 0], "book says i'm a laying up sin and suffering": [65535, 0], "says i'm a laying up sin and suffering for": [65535, 0], "i'm a laying up sin and suffering for us": [65535, 0], "a laying up sin and suffering for us both": [65535, 0], "laying up sin and suffering for us both i": [65535, 0], "up sin and suffering for us both i know": [65535, 0], "sin and suffering for us both i know he's": [65535, 0], "and suffering for us both i know he's full": [65535, 0], "suffering for us both i know he's full of": [65535, 0], "for us both i know he's full of the": [65535, 0], "us both i know he's full of the old": [65535, 0], "both i know he's full of the old scratch": [65535, 0], "i know he's full of the old scratch but": [65535, 0], "know he's full of the old scratch but laws": [65535, 0], "he's full of the old scratch but laws a": [65535, 0], "full of the old scratch but laws a me": [65535, 0], "of the old scratch but laws a me he's": [65535, 0], "the old scratch but laws a me he's my": [65535, 0], "old scratch but laws a me he's my own": [65535, 0], "scratch but laws a me he's my own dead": [65535, 0], "but laws a me he's my own dead sister's": [65535, 0], "laws a me he's my own dead sister's boy": [65535, 0], "a me he's my own dead sister's boy poor": [65535, 0], "me he's my own dead sister's boy poor thing": [65535, 0], "he's my own dead sister's boy poor thing and": [65535, 0], "my own dead sister's boy poor thing and i": [65535, 0], "own dead sister's boy poor thing and i ain't": [65535, 0], "dead sister's boy poor thing and i ain't got": [65535, 0], "sister's boy poor thing and i ain't got the": [65535, 0], "boy poor thing and i ain't got the heart": [65535, 0], "poor thing and i ain't got the heart to": [65535, 0], "thing and i ain't got the heart to lash": [65535, 0], "and i ain't got the heart to lash him": [65535, 0], "i ain't got the heart to lash him somehow": [65535, 0], "ain't got the heart to lash him somehow every": [65535, 0], "got the heart to lash him somehow every time": [65535, 0], "the heart to lash him somehow every time i": [65535, 0], "heart to lash him somehow every time i let": [65535, 0], "to lash him somehow every time i let him": [65535, 0], "lash him somehow every time i let him off": [65535, 0], "him somehow every time i let him off my": [65535, 0], "somehow every time i let him off my conscience": [65535, 0], "every time i let him off my conscience does": [65535, 0], "time i let him off my conscience does hurt": [65535, 0], "i let him off my conscience does hurt me": [65535, 0], "let him off my conscience does hurt me so": [65535, 0], "him off my conscience does hurt me so and": [65535, 0], "off my conscience does hurt me so and every": [65535, 0], "my conscience does hurt me so and every time": [65535, 0], "conscience does hurt me so and every time i": [65535, 0], "does hurt me so and every time i hit": [65535, 0], "hurt me so and every time i hit him": [65535, 0], "me so and every time i hit him my": [65535, 0], "so and every time i hit him my old": [65535, 0], "and every time i hit him my old heart": [65535, 0], "every time i hit him my old heart most": [65535, 0], "time i hit him my old heart most breaks": [65535, 0], "i hit him my old heart most breaks well": [65535, 0], "hit him my old heart most breaks well a": [65535, 0], "him my old heart most breaks well a well": [65535, 0], "my old heart most breaks well a well man": [65535, 0], "old heart most breaks well a well man that": [65535, 0], "heart most breaks well a well man that is": [65535, 0], "most breaks well a well man that is born": [65535, 0], "breaks well a well man that is born of": [65535, 0], "well a well man that is born of woman": [65535, 0], "a well man that is born of woman is": [65535, 0], "well man that is born of woman is of": [65535, 0], "man that is born of woman is of few": [65535, 0], "that is born of woman is of few days": [65535, 0], "is born of woman is of few days and": [65535, 0], "born of woman is of few days and full": [65535, 0], "of woman is of few days and full of": [65535, 0], "woman is of few days and full of trouble": [65535, 0], "is of few days and full of trouble as": [65535, 0], "of few days and full of trouble as the": [65535, 0], "few days and full of trouble as the scripture": [65535, 0], "days and full of trouble as the scripture says": [65535, 0], "and full of trouble as the scripture says and": [65535, 0], "full of trouble as the scripture says and i": [65535, 0], "of trouble as the scripture says and i reckon": [65535, 0], "trouble as the scripture says and i reckon it's": [65535, 0], "as the scripture says and i reckon it's so": [65535, 0], "the scripture says and i reckon it's so he'll": [65535, 0], "scripture says and i reckon it's so he'll play": [65535, 0], "says and i reckon it's so he'll play hookey": [65535, 0], "and i reckon it's so he'll play hookey this": [65535, 0], "i reckon it's so he'll play hookey this evening": [65535, 0], "reckon it's so he'll play hookey this evening and": [65535, 0], "it's so he'll play hookey this evening and i'll": [65535, 0], "so he'll play hookey this evening and i'll just": [65535, 0], "he'll play hookey this evening and i'll just be": [65535, 0], "play hookey this evening and i'll just be obliged": [65535, 0], "hookey this evening and i'll just be obliged to": [65535, 0], "this evening and i'll just be obliged to make": [65535, 0], "evening and i'll just be obliged to make him": [65535, 0], "and i'll just be obliged to make him work": [65535, 0], "i'll just be obliged to make him work to": [65535, 0], "just be obliged to make him work to morrow": [65535, 0], "be obliged to make him work to morrow to": [65535, 0], "obliged to make him work to morrow to punish": [65535, 0], "to make him work to morrow to punish him": [65535, 0], "make him work to morrow to punish him it's": [65535, 0], "him work to morrow to punish him it's mighty": [65535, 0], "work to morrow to punish him it's mighty hard": [65535, 0], "to morrow to punish him it's mighty hard to": [65535, 0], "morrow to punish him it's mighty hard to make": [65535, 0], "to punish him it's mighty hard to make him": [65535, 0], "punish him it's mighty hard to make him work": [65535, 0], "him it's mighty hard to make him work saturdays": [65535, 0], "it's mighty hard to make him work saturdays when": [65535, 0], "mighty hard to make him work saturdays when all": [65535, 0], "hard to make him work saturdays when all the": [65535, 0], "to make him work saturdays when all the boys": [65535, 0], "make him work saturdays when all the boys is": [65535, 0], "him work saturdays when all the boys is having": [65535, 0], "work saturdays when all the boys is having holiday": [65535, 0], "saturdays when all the boys is having holiday but": [65535, 0], "when all the boys is having holiday but he": [65535, 0], "all the boys is having holiday but he hates": [65535, 0], "the boys is having holiday but he hates work": [65535, 0], "boys is having holiday but he hates work more": [65535, 0], "is having holiday but he hates work more than": [65535, 0], "having holiday but he hates work more than he": [65535, 0], "holiday but he hates work more than he hates": [65535, 0], "but he hates work more than he hates anything": [65535, 0], "he hates work more than he hates anything else": [65535, 0], "hates work more than he hates anything else and": [65535, 0], "work more than he hates anything else and i've": [65535, 0], "more than he hates anything else and i've got": [65535, 0], "than he hates anything else and i've got to": [65535, 0], "he hates anything else and i've got to do": [65535, 0], "hates anything else and i've got to do some": [65535, 0], "anything else and i've got to do some of": [65535, 0], "else and i've got to do some of my": [65535, 0], "and i've got to do some of my duty": [65535, 0], "i've got to do some of my duty by": [65535, 0], "got to do some of my duty by him": [65535, 0], "to do some of my duty by him or": [65535, 0], "do some of my duty by him or i'll": [65535, 0], "some of my duty by him or i'll be": [65535, 0], "of my duty by him or i'll be the": [65535, 0], "my duty by him or i'll be the ruination": [65535, 0], "duty by him or i'll be the ruination of": [65535, 0], "by him or i'll be the ruination of the": [65535, 0], "him or i'll be the ruination of the child": [65535, 0], "or i'll be the ruination of the child tom": [65535, 0], "i'll be the ruination of the child tom did": [65535, 0], "be the ruination of the child tom did play": [65535, 0], "the ruination of the child tom did play hookey": [65535, 0], "ruination of the child tom did play hookey and": [65535, 0], "of the child tom did play hookey and he": [65535, 0], "the child tom did play hookey and he had": [65535, 0], "child tom did play hookey and he had a": [65535, 0], "tom did play hookey and he had a very": [65535, 0], "did play hookey and he had a very good": [65535, 0], "play hookey and he had a very good time": [65535, 0], "hookey and he had a very good time he": [65535, 0], "and he had a very good time he got": [65535, 0], "he had a very good time he got back": [65535, 0], "had a very good time he got back home": [65535, 0], "a very good time he got back home barely": [65535, 0], "very good time he got back home barely in": [65535, 0], "good time he got back home barely in season": [65535, 0], "time he got back home barely in season to": [65535, 0], "he got back home barely in season to help": [65535, 0], "got back home barely in season to help jim": [65535, 0], "back home barely in season to help jim the": [65535, 0], "home barely in season to help jim the small": [65535, 0], "barely in season to help jim the small colored": [65535, 0], "in season to help jim the small colored boy": [65535, 0], "season to help jim the small colored boy saw": [65535, 0], "to help jim the small colored boy saw next": [65535, 0], "help jim the small colored boy saw next day's": [65535, 0], "jim the small colored boy saw next day's wood": [65535, 0], "the small colored boy saw next day's wood and": [65535, 0], "small colored boy saw next day's wood and split": [65535, 0], "colored boy saw next day's wood and split the": [65535, 0], "boy saw next day's wood and split the kindlings": [65535, 0], "saw next day's wood and split the kindlings before": [65535, 0], "next day's wood and split the kindlings before supper": [65535, 0], "day's wood and split the kindlings before supper at": [65535, 0], "wood and split the kindlings before supper at least": [65535, 0], "and split the kindlings before supper at least he": [65535, 0], "split the kindlings before supper at least he was": [65535, 0], "the kindlings before supper at least he was there": [65535, 0], "kindlings before supper at least he was there in": [65535, 0], "before supper at least he was there in time": [65535, 0], "supper at least he was there in time to": [65535, 0], "at least he was there in time to tell": [65535, 0], "least he was there in time to tell his": [65535, 0], "he was there in time to tell his adventures": [65535, 0], "was there in time to tell his adventures to": [65535, 0], "there in time to tell his adventures to jim": [65535, 0], "in time to tell his adventures to jim while": [65535, 0], "time to tell his adventures to jim while jim": [65535, 0], "to tell his adventures to jim while jim did": [65535, 0], "tell his adventures to jim while jim did three": [65535, 0], "his adventures to jim while jim did three fourths": [65535, 0], "adventures to jim while jim did three fourths of": [65535, 0], "to jim while jim did three fourths of the": [65535, 0], "jim while jim did three fourths of the work": [65535, 0], "while jim did three fourths of the work tom's": [65535, 0], "jim did three fourths of the work tom's younger": [65535, 0], "did three fourths of the work tom's younger brother": [65535, 0], "three fourths of the work tom's younger brother or": [65535, 0], "fourths of the work tom's younger brother or rather": [65535, 0], "of the work tom's younger brother or rather half": [65535, 0], "the work tom's younger brother or rather half brother": [65535, 0], "work tom's younger brother or rather half brother sid": [65535, 0], "tom's younger brother or rather half brother sid was": [65535, 0], "younger brother or rather half brother sid was already": [65535, 0], "brother or rather half brother sid was already through": [65535, 0], "or rather half brother sid was already through with": [65535, 0], "rather half brother sid was already through with his": [65535, 0], "half brother sid was already through with his part": [65535, 0], "brother sid was already through with his part of": [65535, 0], "sid was already through with his part of the": [65535, 0], "was already through with his part of the work": [65535, 0], "already through with his part of the work picking": [65535, 0], "through with his part of the work picking up": [65535, 0], "with his part of the work picking up chips": [65535, 0], "his part of the work picking up chips for": [65535, 0], "part of the work picking up chips for he": [65535, 0], "of the work picking up chips for he was": [65535, 0], "the work picking up chips for he was a": [65535, 0], "work picking up chips for he was a quiet": [65535, 0], "picking up chips for he was a quiet boy": [65535, 0], "up chips for he was a quiet boy and": [65535, 0], "chips for he was a quiet boy and had": [65535, 0], "for he was a quiet boy and had no": [65535, 0], "he was a quiet boy and had no adventurous": [65535, 0], "was a quiet boy and had no adventurous troublesome": [65535, 0], "a quiet boy and had no adventurous troublesome ways": [65535, 0], "quiet boy and had no adventurous troublesome ways while": [65535, 0], "boy and had no adventurous troublesome ways while tom": [65535, 0], "and had no adventurous troublesome ways while tom was": [65535, 0], "had no adventurous troublesome ways while tom was eating": [65535, 0], "no adventurous troublesome ways while tom was eating his": [65535, 0], "adventurous troublesome ways while tom was eating his supper": [65535, 0], "troublesome ways while tom was eating his supper and": [65535, 0], "ways while tom was eating his supper and stealing": [65535, 0], "while tom was eating his supper and stealing sugar": [65535, 0], "tom was eating his supper and stealing sugar as": [65535, 0], "was eating his supper and stealing sugar as opportunity": [65535, 0], "eating his supper and stealing sugar as opportunity offered": [65535, 0], "his supper and stealing sugar as opportunity offered aunt": [65535, 0], "supper and stealing sugar as opportunity offered aunt polly": [65535, 0], "and stealing sugar as opportunity offered aunt polly asked": [65535, 0], "stealing sugar as opportunity offered aunt polly asked him": [65535, 0], "sugar as opportunity offered aunt polly asked him questions": [65535, 0], "as opportunity offered aunt polly asked him questions that": [65535, 0], "opportunity offered aunt polly asked him questions that were": [65535, 0], "offered aunt polly asked him questions that were full": [65535, 0], "aunt polly asked him questions that were full of": [65535, 0], "polly asked him questions that were full of guile": [65535, 0], "asked him questions that were full of guile and": [65535, 0], "him questions that were full of guile and very": [65535, 0], "questions that were full of guile and very deep": [65535, 0], "that were full of guile and very deep for": [65535, 0], "were full of guile and very deep for she": [65535, 0], "full of guile and very deep for she wanted": [65535, 0], "of guile and very deep for she wanted to": [65535, 0], "guile and very deep for she wanted to trap": [65535, 0], "and very deep for she wanted to trap him": [65535, 0], "very deep for she wanted to trap him into": [65535, 0], "deep for she wanted to trap him into damaging": [65535, 0], "for she wanted to trap him into damaging revealments": [65535, 0], "she wanted to trap him into damaging revealments like": [65535, 0], "wanted to trap him into damaging revealments like many": [65535, 0], "to trap him into damaging revealments like many other": [65535, 0], "trap him into damaging revealments like many other simple": [65535, 0], "him into damaging revealments like many other simple hearted": [65535, 0], "into damaging revealments like many other simple hearted souls": [65535, 0], "damaging revealments like many other simple hearted souls it": [65535, 0], "revealments like many other simple hearted souls it was": [65535, 0], "like many other simple hearted souls it was her": [65535, 0], "many other simple hearted souls it was her pet": [65535, 0], "other simple hearted souls it was her pet vanity": [65535, 0], "simple hearted souls it was her pet vanity to": [65535, 0], "hearted souls it was her pet vanity to believe": [65535, 0], "souls it was her pet vanity to believe she": [65535, 0], "it was her pet vanity to believe she was": [65535, 0], "was her pet vanity to believe she was endowed": [65535, 0], "her pet vanity to believe she was endowed with": [65535, 0], "pet vanity to believe she was endowed with a": [65535, 0], "vanity to believe she was endowed with a talent": [65535, 0], "to believe she was endowed with a talent for": [65535, 0], "believe she was endowed with a talent for dark": [65535, 0], "she was endowed with a talent for dark and": [65535, 0], "was endowed with a talent for dark and mysterious": [65535, 0], "endowed with a talent for dark and mysterious diplomacy": [65535, 0], "with a talent for dark and mysterious diplomacy and": [65535, 0], "a talent for dark and mysterious diplomacy and she": [65535, 0], "talent for dark and mysterious diplomacy and she loved": [65535, 0], "for dark and mysterious diplomacy and she loved to": [65535, 0], "dark and mysterious diplomacy and she loved to contemplate": [65535, 0], "and mysterious diplomacy and she loved to contemplate her": [65535, 0], "mysterious diplomacy and she loved to contemplate her most": [65535, 0], "diplomacy and she loved to contemplate her most transparent": [65535, 0], "and she loved to contemplate her most transparent devices": [65535, 0], "she loved to contemplate her most transparent devices as": [65535, 0], "loved to contemplate her most transparent devices as marvels": [65535, 0], "to contemplate her most transparent devices as marvels of": [65535, 0], "contemplate her most transparent devices as marvels of low": [65535, 0], "her most transparent devices as marvels of low cunning": [65535, 0], "most transparent devices as marvels of low cunning said": [65535, 0], "transparent devices as marvels of low cunning said she": [65535, 0], "devices as marvels of low cunning said she tom": [65535, 0], "as marvels of low cunning said she tom it": [65535, 0], "marvels of low cunning said she tom it was": [65535, 0], "of low cunning said she tom it was middling": [65535, 0], "low cunning said she tom it was middling warm": [65535, 0], "cunning said she tom it was middling warm in": [65535, 0], "said she tom it was middling warm in school": [65535, 0], "she tom it was middling warm in school warn't": [65535, 0], "tom it was middling warm in school warn't it": [65535, 0], "it was middling warm in school warn't it yes'm": [65535, 0], "was middling warm in school warn't it yes'm powerful": [65535, 0], "middling warm in school warn't it yes'm powerful warm": [65535, 0], "warm in school warn't it yes'm powerful warm warn't": [65535, 0], "in school warn't it yes'm powerful warm warn't it": [65535, 0], "school warn't it yes'm powerful warm warn't it yes'm": [65535, 0], "warn't it yes'm powerful warm warn't it yes'm didn't": [65535, 0], "it yes'm powerful warm warn't it yes'm didn't you": [65535, 0], "yes'm powerful warm warn't it yes'm didn't you want": [65535, 0], "powerful warm warn't it yes'm didn't you want to": [65535, 0], "warm warn't it yes'm didn't you want to go": [65535, 0], "warn't it yes'm didn't you want to go in": [65535, 0], "it yes'm didn't you want to go in a": [65535, 0], "yes'm didn't you want to go in a swimming": [65535, 0], "didn't you want to go in a swimming tom": [65535, 0], "you want to go in a swimming tom a": [65535, 0], "want to go in a swimming tom a bit": [65535, 0], "to go in a swimming tom a bit of": [65535, 0], "go in a swimming tom a bit of a": [65535, 0], "in a swimming tom a bit of a scare": [65535, 0], "a swimming tom a bit of a scare shot": [65535, 0], "swimming tom a bit of a scare shot through": [65535, 0], "tom a bit of a scare shot through tom": [65535, 0], "a bit of a scare shot through tom a": [65535, 0], "bit of a scare shot through tom a touch": [65535, 0], "of a scare shot through tom a touch of": [65535, 0], "a scare shot through tom a touch of uncomfortable": [65535, 0], "scare shot through tom a touch of uncomfortable suspicion": [65535, 0], "shot through tom a touch of uncomfortable suspicion he": [65535, 0], "through tom a touch of uncomfortable suspicion he searched": [65535, 0], "tom a touch of uncomfortable suspicion he searched aunt": [65535, 0], "a touch of uncomfortable suspicion he searched aunt polly's": [65535, 0], "touch of uncomfortable suspicion he searched aunt polly's face": [65535, 0], "of uncomfortable suspicion he searched aunt polly's face but": [65535, 0], "uncomfortable suspicion he searched aunt polly's face but it": [65535, 0], "suspicion he searched aunt polly's face but it told": [65535, 0], "he searched aunt polly's face but it told him": [65535, 0], "searched aunt polly's face but it told him nothing": [65535, 0], "aunt polly's face but it told him nothing so": [65535, 0], "polly's face but it told him nothing so he": [65535, 0], "face but it told him nothing so he said": [65535, 0], "but it told him nothing so he said no'm": [65535, 0], "it told him nothing so he said no'm well": [65535, 0], "told him nothing so he said no'm well not": [65535, 0], "him nothing so he said no'm well not very": [65535, 0], "nothing so he said no'm well not very much": [65535, 0], "so he said no'm well not very much the": [65535, 0], "he said no'm well not very much the old": [65535, 0], "said no'm well not very much the old lady": [65535, 0], "no'm well not very much the old lady reached": [65535, 0], "well not very much the old lady reached out": [65535, 0], "not very much the old lady reached out her": [65535, 0], "very much the old lady reached out her hand": [65535, 0], "much the old lady reached out her hand and": [65535, 0], "the old lady reached out her hand and felt": [65535, 0], "old lady reached out her hand and felt tom's": [65535, 0], "lady reached out her hand and felt tom's shirt": [65535, 0], "reached out her hand and felt tom's shirt and": [65535, 0], "out her hand and felt tom's shirt and said": [65535, 0], "her hand and felt tom's shirt and said but": [65535, 0], "hand and felt tom's shirt and said but you": [65535, 0], "and felt tom's shirt and said but you ain't": [65535, 0], "felt tom's shirt and said but you ain't too": [65535, 0], "tom's shirt and said but you ain't too warm": [65535, 0], "shirt and said but you ain't too warm now": [65535, 0], "and said but you ain't too warm now though": [65535, 0], "said but you ain't too warm now though and": [65535, 0], "but you ain't too warm now though and it": [65535, 0], "you ain't too warm now though and it flattered": [65535, 0], "ain't too warm now though and it flattered her": [65535, 0], "too warm now though and it flattered her to": [65535, 0], "warm now though and it flattered her to reflect": [65535, 0], "now though and it flattered her to reflect that": [65535, 0], "though and it flattered her to reflect that she": [65535, 0], "and it flattered her to reflect that she had": [65535, 0], "it flattered her to reflect that she had discovered": [65535, 0], "flattered her to reflect that she had discovered that": [65535, 0], "her to reflect that she had discovered that the": [65535, 0], "to reflect that she had discovered that the shirt": [65535, 0], "reflect that she had discovered that the shirt was": [65535, 0], "that she had discovered that the shirt was dry": [65535, 0], "she had discovered that the shirt was dry without": [65535, 0], "had discovered that the shirt was dry without anybody": [65535, 0], "discovered that the shirt was dry without anybody knowing": [65535, 0], "that the shirt was dry without anybody knowing that": [65535, 0], "the shirt was dry without anybody knowing that that": [65535, 0], "shirt was dry without anybody knowing that that was": [65535, 0], "was dry without anybody knowing that that was what": [65535, 0], "dry without anybody knowing that that was what she": [65535, 0], "without anybody knowing that that was what she had": [65535, 0], "anybody knowing that that was what she had in": [65535, 0], "knowing that that was what she had in her": [65535, 0], "that that was what she had in her mind": [65535, 0], "that was what she had in her mind but": [65535, 0], "was what she had in her mind but in": [65535, 0], "what she had in her mind but in spite": [65535, 0], "she had in her mind but in spite of": [65535, 0], "had in her mind but in spite of her": [65535, 0], "in her mind but in spite of her tom": [65535, 0], "her mind but in spite of her tom knew": [65535, 0], "mind but in spite of her tom knew where": [65535, 0], "but in spite of her tom knew where the": [65535, 0], "in spite of her tom knew where the wind": [65535, 0], "spite of her tom knew where the wind lay": [65535, 0], "of her tom knew where the wind lay now": [65535, 0], "her tom knew where the wind lay now so": [65535, 0], "tom knew where the wind lay now so he": [65535, 0], "knew where the wind lay now so he forestalled": [65535, 0], "where the wind lay now so he forestalled what": [65535, 0], "the wind lay now so he forestalled what might": [65535, 0], "wind lay now so he forestalled what might be": [65535, 0], "lay now so he forestalled what might be the": [65535, 0], "now so he forestalled what might be the next": [65535, 0], "so he forestalled what might be the next move": [65535, 0], "he forestalled what might be the next move some": [65535, 0], "forestalled what might be the next move some of": [65535, 0], "what might be the next move some of us": [65535, 0], "might be the next move some of us pumped": [65535, 0], "be the next move some of us pumped on": [65535, 0], "the next move some of us pumped on our": [65535, 0], "next move some of us pumped on our heads": [65535, 0], "move some of us pumped on our heads mine's": [65535, 0], "some of us pumped on our heads mine's damp": [65535, 0], "of us pumped on our heads mine's damp yet": [65535, 0], "us pumped on our heads mine's damp yet see": [65535, 0], "pumped on our heads mine's damp yet see aunt": [65535, 0], "on our heads mine's damp yet see aunt polly": [65535, 0], "our heads mine's damp yet see aunt polly was": [65535, 0], "heads mine's damp yet see aunt polly was vexed": [65535, 0], "mine's damp yet see aunt polly was vexed to": [65535, 0], "damp yet see aunt polly was vexed to think": [65535, 0], "yet see aunt polly was vexed to think she": [65535, 0], "see aunt polly was vexed to think she had": [65535, 0], "aunt polly was vexed to think she had overlooked": [65535, 0], "polly was vexed to think she had overlooked that": [65535, 0], "was vexed to think she had overlooked that bit": [65535, 0], "vexed to think she had overlooked that bit of": [65535, 0], "to think she had overlooked that bit of circumstantial": [65535, 0], "think she had overlooked that bit of circumstantial evidence": [65535, 0], "she had overlooked that bit of circumstantial evidence and": [65535, 0], "had overlooked that bit of circumstantial evidence and missed": [65535, 0], "overlooked that bit of circumstantial evidence and missed a": [65535, 0], "that bit of circumstantial evidence and missed a trick": [65535, 0], "bit of circumstantial evidence and missed a trick then": [65535, 0], "of circumstantial evidence and missed a trick then she": [65535, 0], "circumstantial evidence and missed a trick then she had": [65535, 0], "evidence and missed a trick then she had a": [65535, 0], "and missed a trick then she had a new": [65535, 0], "missed a trick then she had a new inspiration": [65535, 0], "a trick then she had a new inspiration tom": [65535, 0], "trick then she had a new inspiration tom you": [65535, 0], "then she had a new inspiration tom you didn't": [65535, 0], "she had a new inspiration tom you didn't have": [65535, 0], "had a new inspiration tom you didn't have to": [65535, 0], "a new inspiration tom you didn't have to undo": [65535, 0], "new inspiration tom you didn't have to undo your": [65535, 0], "inspiration tom you didn't have to undo your shirt": [65535, 0], "tom you didn't have to undo your shirt collar": [65535, 0], "you didn't have to undo your shirt collar where": [65535, 0], "didn't have to undo your shirt collar where i": [65535, 0], "have to undo your shirt collar where i sewed": [65535, 0], "to undo your shirt collar where i sewed it": [65535, 0], "undo your shirt collar where i sewed it to": [65535, 0], "your shirt collar where i sewed it to pump": [65535, 0], "shirt collar where i sewed it to pump on": [65535, 0], "collar where i sewed it to pump on your": [65535, 0], "where i sewed it to pump on your head": [65535, 0], "i sewed it to pump on your head did": [65535, 0], "sewed it to pump on your head did you": [65535, 0], "it to pump on your head did you unbutton": [65535, 0], "to pump on your head did you unbutton your": [65535, 0], "pump on your head did you unbutton your jacket": [65535, 0], "on your head did you unbutton your jacket the": [65535, 0], "your head did you unbutton your jacket the trouble": [65535, 0], "head did you unbutton your jacket the trouble vanished": [65535, 0], "did you unbutton your jacket the trouble vanished out": [65535, 0], "you unbutton your jacket the trouble vanished out of": [65535, 0], "unbutton your jacket the trouble vanished out of tom's": [65535, 0], "your jacket the trouble vanished out of tom's face": [65535, 0], "jacket the trouble vanished out of tom's face he": [65535, 0], "the trouble vanished out of tom's face he opened": [65535, 0], "trouble vanished out of tom's face he opened his": [65535, 0], "vanished out of tom's face he opened his jacket": [65535, 0], "out of tom's face he opened his jacket his": [65535, 0], "of tom's face he opened his jacket his shirt": [65535, 0], "tom's face he opened his jacket his shirt collar": [65535, 0], "face he opened his jacket his shirt collar was": [65535, 0], "he opened his jacket his shirt collar was securely": [65535, 0], "opened his jacket his shirt collar was securely sewed": [65535, 0], "his jacket his shirt collar was securely sewed bother": [65535, 0], "jacket his shirt collar was securely sewed bother well": [65535, 0], "his shirt collar was securely sewed bother well go": [65535, 0], "shirt collar was securely sewed bother well go 'long": [65535, 0], "collar was securely sewed bother well go 'long with": [65535, 0], "was securely sewed bother well go 'long with you": [65535, 0], "securely sewed bother well go 'long with you i'd": [65535, 0], "sewed bother well go 'long with you i'd made": [65535, 0], "bother well go 'long with you i'd made sure": [65535, 0], "well go 'long with you i'd made sure you'd": [65535, 0], "go 'long with you i'd made sure you'd played": [65535, 0], "'long with you i'd made sure you'd played hookey": [65535, 0], "with you i'd made sure you'd played hookey and": [65535, 0], "you i'd made sure you'd played hookey and been": [65535, 0], "i'd made sure you'd played hookey and been a": [65535, 0], "made sure you'd played hookey and been a swimming": [65535, 0], "sure you'd played hookey and been a swimming but": [65535, 0], "you'd played hookey and been a swimming but i": [65535, 0], "played hookey and been a swimming but i forgive": [65535, 0], "hookey and been a swimming but i forgive ye": [65535, 0], "and been a swimming but i forgive ye tom": [65535, 0], "been a swimming but i forgive ye tom i": [65535, 0], "a swimming but i forgive ye tom i reckon": [65535, 0], "swimming but i forgive ye tom i reckon you're": [65535, 0], "but i forgive ye tom i reckon you're a": [65535, 0], "i forgive ye tom i reckon you're a kind": [65535, 0], "forgive ye tom i reckon you're a kind of": [65535, 0], "ye tom i reckon you're a kind of a": [65535, 0], "tom i reckon you're a kind of a singed": [65535, 0], "i reckon you're a kind of a singed cat": [65535, 0], "reckon you're a kind of a singed cat as": [65535, 0], "you're a kind of a singed cat as the": [65535, 0], "a kind of a singed cat as the saying": [65535, 0], "kind of a singed cat as the saying is": [65535, 0], "of a singed cat as the saying is better'n": [65535, 0], "a singed cat as the saying is better'n you": [65535, 0], "singed cat as the saying is better'n you look": [65535, 0], "cat as the saying is better'n you look this": [65535, 0], "as the saying is better'n you look this time": [65535, 0], "the saying is better'n you look this time she": [65535, 0], "saying is better'n you look this time she was": [65535, 0], "is better'n you look this time she was half": [65535, 0], "better'n you look this time she was half sorry": [65535, 0], "you look this time she was half sorry her": [65535, 0], "look this time she was half sorry her sagacity": [65535, 0], "this time she was half sorry her sagacity had": [65535, 0], "time she was half sorry her sagacity had miscarried": [65535, 0], "she was half sorry her sagacity had miscarried and": [65535, 0], "was half sorry her sagacity had miscarried and half": [65535, 0], "half sorry her sagacity had miscarried and half glad": [65535, 0], "sorry her sagacity had miscarried and half glad that": [65535, 0], "her sagacity had miscarried and half glad that tom": [65535, 0], "sagacity had miscarried and half glad that tom had": [65535, 0], "had miscarried and half glad that tom had stumbled": [65535, 0], "miscarried and half glad that tom had stumbled into": [65535, 0], "and half glad that tom had stumbled into obedient": [65535, 0], "half glad that tom had stumbled into obedient conduct": [65535, 0], "glad that tom had stumbled into obedient conduct for": [65535, 0], "that tom had stumbled into obedient conduct for once": [65535, 0], "tom had stumbled into obedient conduct for once but": [65535, 0], "had stumbled into obedient conduct for once but sidney": [65535, 0], "stumbled into obedient conduct for once but sidney said": [65535, 0], "into obedient conduct for once but sidney said well": [65535, 0], "obedient conduct for once but sidney said well now": [65535, 0], "conduct for once but sidney said well now if": [65535, 0], "for once but sidney said well now if i": [65535, 0], "once but sidney said well now if i didn't": [65535, 0], "but sidney said well now if i didn't think": [65535, 0], "sidney said well now if i didn't think you": [65535, 0], "said well now if i didn't think you sewed": [65535, 0], "well now if i didn't think you sewed his": [65535, 0], "now if i didn't think you sewed his collar": [65535, 0], "if i didn't think you sewed his collar with": [65535, 0], "i didn't think you sewed his collar with white": [65535, 0], "didn't think you sewed his collar with white thread": [65535, 0], "think you sewed his collar with white thread but": [65535, 0], "you sewed his collar with white thread but it's": [65535, 0], "sewed his collar with white thread but it's black": [65535, 0], "his collar with white thread but it's black why": [65535, 0], "collar with white thread but it's black why i": [65535, 0], "with white thread but it's black why i did": [65535, 0], "white thread but it's black why i did sew": [65535, 0], "thread but it's black why i did sew it": [65535, 0], "but it's black why i did sew it with": [65535, 0], "it's black why i did sew it with white": [65535, 0], "black why i did sew it with white tom": [65535, 0], "why i did sew it with white tom but": [65535, 0], "i did sew it with white tom but tom": [65535, 0], "did sew it with white tom but tom did": [65535, 0], "sew it with white tom but tom did not": [65535, 0], "it with white tom but tom did not wait": [65535, 0], "with white tom but tom did not wait for": [65535, 0], "white tom but tom did not wait for the": [65535, 0], "tom but tom did not wait for the rest": [65535, 0], "but tom did not wait for the rest as": [65535, 0], "tom did not wait for the rest as he": [65535, 0], "did not wait for the rest as he went": [65535, 0], "not wait for the rest as he went out": [65535, 0], "wait for the rest as he went out at": [65535, 0], "for the rest as he went out at the": [65535, 0], "the rest as he went out at the door": [65535, 0], "rest as he went out at the door he": [65535, 0], "as he went out at the door he said": [65535, 0], "he went out at the door he said siddy": [65535, 0], "went out at the door he said siddy i'll": [65535, 0], "out at the door he said siddy i'll lick": [65535, 0], "at the door he said siddy i'll lick you": [65535, 0], "the door he said siddy i'll lick you for": [65535, 0], "door he said siddy i'll lick you for that": [65535, 0], "he said siddy i'll lick you for that in": [65535, 0], "said siddy i'll lick you for that in a": [65535, 0], "siddy i'll lick you for that in a safe": [65535, 0], "i'll lick you for that in a safe place": [65535, 0], "lick you for that in a safe place tom": [65535, 0], "you for that in a safe place tom examined": [65535, 0], "for that in a safe place tom examined two": [65535, 0], "that in a safe place tom examined two large": [65535, 0], "in a safe place tom examined two large needles": [65535, 0], "a safe place tom examined two large needles which": [65535, 0], "safe place tom examined two large needles which were": [65535, 0], "place tom examined two large needles which were thrust": [65535, 0], "tom examined two large needles which were thrust into": [65535, 0], "examined two large needles which were thrust into the": [65535, 0], "two large needles which were thrust into the lapels": [65535, 0], "large needles which were thrust into the lapels of": [65535, 0], "needles which were thrust into the lapels of his": [65535, 0], "which were thrust into the lapels of his jacket": [65535, 0], "were thrust into the lapels of his jacket and": [65535, 0], "thrust into the lapels of his jacket and had": [65535, 0], "into the lapels of his jacket and had thread": [65535, 0], "the lapels of his jacket and had thread bound": [65535, 0], "lapels of his jacket and had thread bound about": [65535, 0], "of his jacket and had thread bound about them": [65535, 0], "his jacket and had thread bound about them one": [65535, 0], "jacket and had thread bound about them one needle": [65535, 0], "and had thread bound about them one needle carried": [65535, 0], "had thread bound about them one needle carried white": [65535, 0], "thread bound about them one needle carried white thread": [65535, 0], "bound about them one needle carried white thread and": [65535, 0], "about them one needle carried white thread and the": [65535, 0], "them one needle carried white thread and the other": [65535, 0], "one needle carried white thread and the other black": [65535, 0], "needle carried white thread and the other black he": [65535, 0], "carried white thread and the other black he said": [65535, 0], "white thread and the other black he said she'd": [65535, 0], "thread and the other black he said she'd never": [65535, 0], "and the other black he said she'd never noticed": [65535, 0], "the other black he said she'd never noticed if": [65535, 0], "other black he said she'd never noticed if it": [65535, 0], "black he said she'd never noticed if it hadn't": [65535, 0], "he said she'd never noticed if it hadn't been": [65535, 0], "said she'd never noticed if it hadn't been for": [65535, 0], "she'd never noticed if it hadn't been for sid": [65535, 0], "never noticed if it hadn't been for sid confound": [65535, 0], "noticed if it hadn't been for sid confound it": [65535, 0], "if it hadn't been for sid confound it sometimes": [65535, 0], "it hadn't been for sid confound it sometimes she": [65535, 0], "hadn't been for sid confound it sometimes she sews": [65535, 0], "been for sid confound it sometimes she sews it": [65535, 0], "for sid confound it sometimes she sews it with": [65535, 0], "sid confound it sometimes she sews it with white": [65535, 0], "confound it sometimes she sews it with white and": [65535, 0], "it sometimes she sews it with white and sometimes": [65535, 0], "sometimes she sews it with white and sometimes she": [65535, 0], "she sews it with white and sometimes she sews": [65535, 0], "sews it with white and sometimes she sews it": [65535, 0], "it with white and sometimes she sews it with": [65535, 0], "with white and sometimes she sews it with black": [65535, 0], "white and sometimes she sews it with black i": [65535, 0], "and sometimes she sews it with black i wish": [65535, 0], "sometimes she sews it with black i wish to": [65535, 0], "she sews it with black i wish to geeminy": [65535, 0], "sews it with black i wish to geeminy she'd": [65535, 0], "it with black i wish to geeminy she'd stick": [65535, 0], "with black i wish to geeminy she'd stick to": [65535, 0], "black i wish to geeminy she'd stick to one": [65535, 0], "i wish to geeminy she'd stick to one or": [65535, 0], "wish to geeminy she'd stick to one or t'other": [65535, 0], "to geeminy she'd stick to one or t'other i": [65535, 0], "geeminy she'd stick to one or t'other i can't": [65535, 0], "she'd stick to one or t'other i can't keep": [65535, 0], "stick to one or t'other i can't keep the": [65535, 0], "to one or t'other i can't keep the run": [65535, 0], "one or t'other i can't keep the run of": [65535, 0], "or t'other i can't keep the run of 'em": [65535, 0], "t'other i can't keep the run of 'em but": [65535, 0], "i can't keep the run of 'em but i": [65535, 0], "can't keep the run of 'em but i bet": [65535, 0], "keep the run of 'em but i bet you": [65535, 0], "the run of 'em but i bet you i'll": [65535, 0], "run of 'em but i bet you i'll lam": [65535, 0], "of 'em but i bet you i'll lam sid": [65535, 0], "'em but i bet you i'll lam sid for": [65535, 0], "but i bet you i'll lam sid for that": [65535, 0], "i bet you i'll lam sid for that i'll": [65535, 0], "bet you i'll lam sid for that i'll learn": [65535, 0], "you i'll lam sid for that i'll learn him": [65535, 0], "i'll lam sid for that i'll learn him he": [65535, 0], "lam sid for that i'll learn him he was": [65535, 0], "sid for that i'll learn him he was not": [65535, 0], "for that i'll learn him he was not the": [65535, 0], "that i'll learn him he was not the model": [65535, 0], "i'll learn him he was not the model boy": [65535, 0], "learn him he was not the model boy of": [65535, 0], "him he was not the model boy of the": [65535, 0], "he was not the model boy of the village": [65535, 0], "was not the model boy of the village he": [65535, 0], "not the model boy of the village he knew": [65535, 0], "the model boy of the village he knew the": [65535, 0], "model boy of the village he knew the model": [65535, 0], "boy of the village he knew the model boy": [65535, 0], "of the village he knew the model boy very": [65535, 0], "the village he knew the model boy very well": [65535, 0], "village he knew the model boy very well though": [65535, 0], "he knew the model boy very well though and": [65535, 0], "knew the model boy very well though and loathed": [65535, 0], "the model boy very well though and loathed him": [65535, 0], "model boy very well though and loathed him within": [65535, 0], "boy very well though and loathed him within two": [65535, 0], "very well though and loathed him within two minutes": [65535, 0], "well though and loathed him within two minutes or": [65535, 0], "though and loathed him within two minutes or even": [65535, 0], "and loathed him within two minutes or even less": [65535, 0], "loathed him within two minutes or even less he": [65535, 0], "him within two minutes or even less he had": [65535, 0], "within two minutes or even less he had forgotten": [65535, 0], "two minutes or even less he had forgotten all": [65535, 0], "minutes or even less he had forgotten all his": [65535, 0], "or even less he had forgotten all his troubles": [65535, 0], "even less he had forgotten all his troubles not": [65535, 0], "less he had forgotten all his troubles not because": [65535, 0], "he had forgotten all his troubles not because his": [65535, 0], "had forgotten all his troubles not because his troubles": [65535, 0], "forgotten all his troubles not because his troubles were": [65535, 0], "all his troubles not because his troubles were one": [65535, 0], "his troubles not because his troubles were one whit": [65535, 0], "troubles not because his troubles were one whit less": [65535, 0], "not because his troubles were one whit less heavy": [65535, 0], "because his troubles were one whit less heavy and": [65535, 0], "his troubles were one whit less heavy and bitter": [65535, 0], "troubles were one whit less heavy and bitter to": [65535, 0], "were one whit less heavy and bitter to him": [65535, 0], "one whit less heavy and bitter to him than": [65535, 0], "whit less heavy and bitter to him than a": [65535, 0], "less heavy and bitter to him than a man's": [65535, 0], "heavy and bitter to him than a man's are": [65535, 0], "and bitter to him than a man's are to": [65535, 0], "bitter to him than a man's are to a": [65535, 0], "to him than a man's are to a man": [65535, 0], "him than a man's are to a man but": [65535, 0], "than a man's are to a man but because": [65535, 0], "a man's are to a man but because a": [65535, 0], "man's are to a man but because a new": [65535, 0], "are to a man but because a new and": [65535, 0], "to a man but because a new and powerful": [65535, 0], "a man but because a new and powerful interest": [65535, 0], "man but because a new and powerful interest bore": [65535, 0], "but because a new and powerful interest bore them": [65535, 0], "because a new and powerful interest bore them down": [65535, 0], "a new and powerful interest bore them down and": [65535, 0], "new and powerful interest bore them down and drove": [65535, 0], "and powerful interest bore them down and drove them": [65535, 0], "powerful interest bore them down and drove them out": [65535, 0], "interest bore them down and drove them out of": [65535, 0], "bore them down and drove them out of his": [65535, 0], "them down and drove them out of his mind": [65535, 0], "down and drove them out of his mind for": [65535, 0], "and drove them out of his mind for the": [65535, 0], "drove them out of his mind for the time": [65535, 0], "them out of his mind for the time just": [65535, 0], "out of his mind for the time just as": [65535, 0], "of his mind for the time just as men's": [65535, 0], "his mind for the time just as men's misfortunes": [65535, 0], "mind for the time just as men's misfortunes are": [65535, 0], "for the time just as men's misfortunes are forgotten": [65535, 0], "the time just as men's misfortunes are forgotten in": [65535, 0], "time just as men's misfortunes are forgotten in the": [65535, 0], "just as men's misfortunes are forgotten in the excitement": [65535, 0], "as men's misfortunes are forgotten in the excitement of": [65535, 0], "men's misfortunes are forgotten in the excitement of new": [65535, 0], "misfortunes are forgotten in the excitement of new enterprises": [65535, 0], "are forgotten in the excitement of new enterprises this": [65535, 0], "forgotten in the excitement of new enterprises this new": [65535, 0], "in the excitement of new enterprises this new interest": [65535, 0], "the excitement of new enterprises this new interest was": [65535, 0], "excitement of new enterprises this new interest was a": [65535, 0], "of new enterprises this new interest was a valued": [65535, 0], "new enterprises this new interest was a valued novelty": [65535, 0], "enterprises this new interest was a valued novelty in": [65535, 0], "this new interest was a valued novelty in whistling": [65535, 0], "new interest was a valued novelty in whistling which": [65535, 0], "interest was a valued novelty in whistling which he": [65535, 0], "was a valued novelty in whistling which he had": [65535, 0], "a valued novelty in whistling which he had just": [65535, 0], "valued novelty in whistling which he had just acquired": [65535, 0], "novelty in whistling which he had just acquired from": [65535, 0], "in whistling which he had just acquired from a": [65535, 0], "whistling which he had just acquired from a negro": [65535, 0], "which he had just acquired from a negro and": [65535, 0], "he had just acquired from a negro and he": [65535, 0], "had just acquired from a negro and he was": [65535, 0], "just acquired from a negro and he was suffering": [65535, 0], "acquired from a negro and he was suffering to": [65535, 0], "from a negro and he was suffering to practise": [65535, 0], "a negro and he was suffering to practise it": [65535, 0], "negro and he was suffering to practise it undisturbed": [65535, 0], "and he was suffering to practise it undisturbed it": [65535, 0], "he was suffering to practise it undisturbed it consisted": [65535, 0], "was suffering to practise it undisturbed it consisted in": [65535, 0], "suffering to practise it undisturbed it consisted in a": [65535, 0], "to practise it undisturbed it consisted in a peculiar": [65535, 0], "practise it undisturbed it consisted in a peculiar bird": [65535, 0], "it undisturbed it consisted in a peculiar bird like": [65535, 0], "undisturbed it consisted in a peculiar bird like turn": [65535, 0], "it consisted in a peculiar bird like turn a": [65535, 0], "consisted in a peculiar bird like turn a sort": [65535, 0], "in a peculiar bird like turn a sort of": [65535, 0], "a peculiar bird like turn a sort of liquid": [65535, 0], "peculiar bird like turn a sort of liquid warble": [65535, 0], "bird like turn a sort of liquid warble produced": [65535, 0], "like turn a sort of liquid warble produced by": [65535, 0], "turn a sort of liquid warble produced by touching": [65535, 0], "a sort of liquid warble produced by touching the": [65535, 0], "sort of liquid warble produced by touching the tongue": [65535, 0], "of liquid warble produced by touching the tongue to": [65535, 0], "liquid warble produced by touching the tongue to the": [65535, 0], "warble produced by touching the tongue to the roof": [65535, 0], "produced by touching the tongue to the roof of": [65535, 0], "by touching the tongue to the roof of the": [65535, 0], "touching the tongue to the roof of the mouth": [65535, 0], "the tongue to the roof of the mouth at": [65535, 0], "tongue to the roof of the mouth at short": [65535, 0], "to the roof of the mouth at short intervals": [65535, 0], "the roof of the mouth at short intervals in": [65535, 0], "roof of the mouth at short intervals in the": [65535, 0], "of the mouth at short intervals in the midst": [65535, 0], "the mouth at short intervals in the midst of": [65535, 0], "mouth at short intervals in the midst of the": [65535, 0], "at short intervals in the midst of the music": [65535, 0], "short intervals in the midst of the music the": [65535, 0], "intervals in the midst of the music the reader": [65535, 0], "in the midst of the music the reader probably": [65535, 0], "the midst of the music the reader probably remembers": [65535, 0], "midst of the music the reader probably remembers how": [65535, 0], "of the music the reader probably remembers how to": [65535, 0], "the music the reader probably remembers how to do": [65535, 0], "music the reader probably remembers how to do it": [65535, 0], "the reader probably remembers how to do it if": [65535, 0], "reader probably remembers how to do it if he": [65535, 0], "probably remembers how to do it if he has": [65535, 0], "remembers how to do it if he has ever": [65535, 0], "how to do it if he has ever been": [65535, 0], "to do it if he has ever been a": [65535, 0], "do it if he has ever been a boy": [65535, 0], "it if he has ever been a boy diligence": [65535, 0], "if he has ever been a boy diligence and": [65535, 0], "he has ever been a boy diligence and attention": [65535, 0], "has ever been a boy diligence and attention soon": [65535, 0], "ever been a boy diligence and attention soon gave": [65535, 0], "been a boy diligence and attention soon gave him": [65535, 0], "a boy diligence and attention soon gave him the": [65535, 0], "boy diligence and attention soon gave him the knack": [65535, 0], "diligence and attention soon gave him the knack of": [65535, 0], "and attention soon gave him the knack of it": [65535, 0], "attention soon gave him the knack of it and": [65535, 0], "soon gave him the knack of it and he": [65535, 0], "gave him the knack of it and he strode": [65535, 0], "him the knack of it and he strode down": [65535, 0], "the knack of it and he strode down the": [65535, 0], "knack of it and he strode down the street": [65535, 0], "of it and he strode down the street with": [65535, 0], "it and he strode down the street with his": [65535, 0], "and he strode down the street with his mouth": [65535, 0], "he strode down the street with his mouth full": [65535, 0], "strode down the street with his mouth full of": [65535, 0], "down the street with his mouth full of harmony": [65535, 0], "the street with his mouth full of harmony and": [65535, 0], "street with his mouth full of harmony and his": [65535, 0], "with his mouth full of harmony and his soul": [65535, 0], "his mouth full of harmony and his soul full": [65535, 0], "mouth full of harmony and his soul full of": [65535, 0], "full of harmony and his soul full of gratitude": [65535, 0], "of harmony and his soul full of gratitude he": [65535, 0], "harmony and his soul full of gratitude he felt": [65535, 0], "and his soul full of gratitude he felt much": [65535, 0], "his soul full of gratitude he felt much as": [65535, 0], "soul full of gratitude he felt much as an": [65535, 0], "full of gratitude he felt much as an astronomer": [65535, 0], "of gratitude he felt much as an astronomer feels": [65535, 0], "gratitude he felt much as an astronomer feels who": [65535, 0], "he felt much as an astronomer feels who has": [65535, 0], "felt much as an astronomer feels who has discovered": [65535, 0], "much as an astronomer feels who has discovered a": [65535, 0], "as an astronomer feels who has discovered a new": [65535, 0], "an astronomer feels who has discovered a new planet": [65535, 0], "astronomer feels who has discovered a new planet no": [65535, 0], "feels who has discovered a new planet no doubt": [65535, 0], "who has discovered a new planet no doubt as": [65535, 0], "has discovered a new planet no doubt as far": [65535, 0], "discovered a new planet no doubt as far as": [65535, 0], "a new planet no doubt as far as strong": [65535, 0], "new planet no doubt as far as strong deep": [65535, 0], "planet no doubt as far as strong deep unalloyed": [65535, 0], "no doubt as far as strong deep unalloyed pleasure": [65535, 0], "doubt as far as strong deep unalloyed pleasure is": [65535, 0], "as far as strong deep unalloyed pleasure is concerned": [65535, 0], "far as strong deep unalloyed pleasure is concerned the": [65535, 0], "as strong deep unalloyed pleasure is concerned the advantage": [65535, 0], "strong deep unalloyed pleasure is concerned the advantage was": [65535, 0], "deep unalloyed pleasure is concerned the advantage was with": [65535, 0], "unalloyed pleasure is concerned the advantage was with the": [65535, 0], "pleasure is concerned the advantage was with the boy": [65535, 0], "is concerned the advantage was with the boy not": [65535, 0], "concerned the advantage was with the boy not the": [65535, 0], "the advantage was with the boy not the astronomer": [65535, 0], "advantage was with the boy not the astronomer the": [65535, 0], "was with the boy not the astronomer the summer": [65535, 0], "with the boy not the astronomer the summer evenings": [65535, 0], "the boy not the astronomer the summer evenings were": [65535, 0], "boy not the astronomer the summer evenings were long": [65535, 0], "not the astronomer the summer evenings were long it": [65535, 0], "the astronomer the summer evenings were long it was": [65535, 0], "astronomer the summer evenings were long it was not": [65535, 0], "the summer evenings were long it was not dark": [65535, 0], "summer evenings were long it was not dark yet": [65535, 0], "evenings were long it was not dark yet presently": [65535, 0], "were long it was not dark yet presently tom": [65535, 0], "long it was not dark yet presently tom checked": [65535, 0], "it was not dark yet presently tom checked his": [65535, 0], "was not dark yet presently tom checked his whistle": [65535, 0], "not dark yet presently tom checked his whistle a": [65535, 0], "dark yet presently tom checked his whistle a stranger": [65535, 0], "yet presently tom checked his whistle a stranger was": [65535, 0], "presently tom checked his whistle a stranger was before": [65535, 0], "tom checked his whistle a stranger was before him": [65535, 0], "checked his whistle a stranger was before him a": [65535, 0], "his whistle a stranger was before him a boy": [65535, 0], "whistle a stranger was before him a boy a": [65535, 0], "a stranger was before him a boy a shade": [65535, 0], "stranger was before him a boy a shade larger": [65535, 0], "was before him a boy a shade larger than": [65535, 0], "before him a boy a shade larger than himself": [65535, 0], "him a boy a shade larger than himself a": [65535, 0], "a boy a shade larger than himself a new": [65535, 0], "boy a shade larger than himself a new comer": [65535, 0], "a shade larger than himself a new comer of": [65535, 0], "shade larger than himself a new comer of any": [65535, 0], "larger than himself a new comer of any age": [65535, 0], "than himself a new comer of any age or": [65535, 0], "himself a new comer of any age or either": [65535, 0], "a new comer of any age or either sex": [65535, 0], "new comer of any age or either sex was": [65535, 0], "comer of any age or either sex was an": [65535, 0], "of any age or either sex was an impressive": [65535, 0], "any age or either sex was an impressive curiosity": [65535, 0], "age or either sex was an impressive curiosity in": [65535, 0], "or either sex was an impressive curiosity in the": [65535, 0], "either sex was an impressive curiosity in the poor": [65535, 0], "sex was an impressive curiosity in the poor little": [65535, 0], "was an impressive curiosity in the poor little shabby": [65535, 0], "an impressive curiosity in the poor little shabby village": [65535, 0], "impressive curiosity in the poor little shabby village of": [65535, 0], "curiosity in the poor little shabby village of st": [65535, 0], "in the poor little shabby village of st petersburg": [65535, 0], "the poor little shabby village of st petersburg this": [65535, 0], "poor little shabby village of st petersburg this boy": [65535, 0], "little shabby village of st petersburg this boy was": [65535, 0], "shabby village of st petersburg this boy was well": [65535, 0], "village of st petersburg this boy was well dressed": [65535, 0], "of st petersburg this boy was well dressed too": [65535, 0], "st petersburg this boy was well dressed too well": [65535, 0], "petersburg this boy was well dressed too well dressed": [65535, 0], "this boy was well dressed too well dressed on": [65535, 0], "boy was well dressed too well dressed on a": [65535, 0], "was well dressed too well dressed on a week": [65535, 0], "well dressed too well dressed on a week day": [65535, 0], "dressed too well dressed on a week day this": [65535, 0], "too well dressed on a week day this was": [65535, 0], "well dressed on a week day this was simply": [65535, 0], "dressed on a week day this was simply astounding": [65535, 0], "on a week day this was simply astounding his": [65535, 0], "a week day this was simply astounding his cap": [65535, 0], "week day this was simply astounding his cap was": [65535, 0], "day this was simply astounding his cap was a": [65535, 0], "this was simply astounding his cap was a dainty": [65535, 0], "was simply astounding his cap was a dainty thing": [65535, 0], "simply astounding his cap was a dainty thing his": [65535, 0], "astounding his cap was a dainty thing his closebuttoned": [65535, 0], "his cap was a dainty thing his closebuttoned blue": [65535, 0], "cap was a dainty thing his closebuttoned blue cloth": [65535, 0], "was a dainty thing his closebuttoned blue cloth roundabout": [65535, 0], "a dainty thing his closebuttoned blue cloth roundabout was": [65535, 0], "dainty thing his closebuttoned blue cloth roundabout was new": [65535, 0], "thing his closebuttoned blue cloth roundabout was new and": [65535, 0], "his closebuttoned blue cloth roundabout was new and natty": [65535, 0], "closebuttoned blue cloth roundabout was new and natty and": [65535, 0], "blue cloth roundabout was new and natty and so": [65535, 0], "cloth roundabout was new and natty and so were": [65535, 0], "roundabout was new and natty and so were his": [65535, 0], "was new and natty and so were his pantaloons": [65535, 0], "new and natty and so were his pantaloons he": [65535, 0], "and natty and so were his pantaloons he had": [65535, 0], "natty and so were his pantaloons he had shoes": [65535, 0], "and so were his pantaloons he had shoes on": [65535, 0], "so were his pantaloons he had shoes on and": [65535, 0], "were his pantaloons he had shoes on and it": [65535, 0], "his pantaloons he had shoes on and it was": [65535, 0], "pantaloons he had shoes on and it was only": [65535, 0], "he had shoes on and it was only friday": [65535, 0], "had shoes on and it was only friday he": [65535, 0], "shoes on and it was only friday he even": [65535, 0], "on and it was only friday he even wore": [65535, 0], "and it was only friday he even wore a": [65535, 0], "it was only friday he even wore a necktie": [65535, 0], "was only friday he even wore a necktie a": [65535, 0], "only friday he even wore a necktie a bright": [65535, 0], "friday he even wore a necktie a bright bit": [65535, 0], "he even wore a necktie a bright bit of": [65535, 0], "even wore a necktie a bright bit of ribbon": [65535, 0], "wore a necktie a bright bit of ribbon he": [65535, 0], "a necktie a bright bit of ribbon he had": [65535, 0], "necktie a bright bit of ribbon he had a": [65535, 0], "a bright bit of ribbon he had a citified": [65535, 0], "bright bit of ribbon he had a citified air": [65535, 0], "bit of ribbon he had a citified air about": [65535, 0], "of ribbon he had a citified air about him": [65535, 0], "ribbon he had a citified air about him that": [65535, 0], "he had a citified air about him that ate": [65535, 0], "had a citified air about him that ate into": [65535, 0], "a citified air about him that ate into tom's": [65535, 0], "citified air about him that ate into tom's vitals": [65535, 0], "air about him that ate into tom's vitals the": [65535, 0], "about him that ate into tom's vitals the more": [65535, 0], "him that ate into tom's vitals the more tom": [65535, 0], "that ate into tom's vitals the more tom stared": [65535, 0], "ate into tom's vitals the more tom stared at": [65535, 0], "into tom's vitals the more tom stared at the": [65535, 0], "tom's vitals the more tom stared at the splendid": [65535, 0], "vitals the more tom stared at the splendid marvel": [65535, 0], "the more tom stared at the splendid marvel the": [65535, 0], "more tom stared at the splendid marvel the higher": [65535, 0], "tom stared at the splendid marvel the higher he": [65535, 0], "stared at the splendid marvel the higher he turned": [65535, 0], "at the splendid marvel the higher he turned up": [65535, 0], "the splendid marvel the higher he turned up his": [65535, 0], "splendid marvel the higher he turned up his nose": [65535, 0], "marvel the higher he turned up his nose at": [65535, 0], "the higher he turned up his nose at his": [65535, 0], "higher he turned up his nose at his finery": [65535, 0], "he turned up his nose at his finery and": [65535, 0], "turned up his nose at his finery and the": [65535, 0], "up his nose at his finery and the shabbier": [65535, 0], "his nose at his finery and the shabbier and": [65535, 0], "nose at his finery and the shabbier and shabbier": [65535, 0], "at his finery and the shabbier and shabbier his": [65535, 0], "his finery and the shabbier and shabbier his own": [65535, 0], "finery and the shabbier and shabbier his own outfit": [65535, 0], "and the shabbier and shabbier his own outfit seemed": [65535, 0], "the shabbier and shabbier his own outfit seemed to": [65535, 0], "shabbier and shabbier his own outfit seemed to him": [65535, 0], "and shabbier his own outfit seemed to him to": [65535, 0], "shabbier his own outfit seemed to him to grow": [65535, 0], "his own outfit seemed to him to grow neither": [65535, 0], "own outfit seemed to him to grow neither boy": [65535, 0], "outfit seemed to him to grow neither boy spoke": [65535, 0], "seemed to him to grow neither boy spoke if": [65535, 0], "to him to grow neither boy spoke if one": [65535, 0], "him to grow neither boy spoke if one moved": [65535, 0], "to grow neither boy spoke if one moved the": [65535, 0], "grow neither boy spoke if one moved the other": [65535, 0], "neither boy spoke if one moved the other moved": [65535, 0], "boy spoke if one moved the other moved but": [65535, 0], "spoke if one moved the other moved but only": [65535, 0], "if one moved the other moved but only sidewise": [65535, 0], "one moved the other moved but only sidewise in": [65535, 0], "moved the other moved but only sidewise in a": [65535, 0], "the other moved but only sidewise in a circle": [65535, 0], "other moved but only sidewise in a circle they": [65535, 0], "moved but only sidewise in a circle they kept": [65535, 0], "but only sidewise in a circle they kept face": [65535, 0], "only sidewise in a circle they kept face to": [65535, 0], "sidewise in a circle they kept face to face": [65535, 0], "in a circle they kept face to face and": [65535, 0], "a circle they kept face to face and eye": [65535, 0], "circle they kept face to face and eye to": [65535, 0], "they kept face to face and eye to eye": [65535, 0], "kept face to face and eye to eye all": [65535, 0], "face to face and eye to eye all the": [65535, 0], "to face and eye to eye all the time": [65535, 0], "face and eye to eye all the time finally": [65535, 0], "and eye to eye all the time finally tom": [65535, 0], "eye to eye all the time finally tom said": [65535, 0], "to eye all the time finally tom said i": [65535, 0], "eye all the time finally tom said i can": [65535, 0], "all the time finally tom said i can lick": [65535, 0], "the time finally tom said i can lick you": [65535, 0], "time finally tom said i can lick you i'd": [65535, 0], "finally tom said i can lick you i'd like": [65535, 0], "tom said i can lick you i'd like to": [65535, 0], "said i can lick you i'd like to see": [65535, 0], "i can lick you i'd like to see you": [65535, 0], "can lick you i'd like to see you try": [65535, 0], "lick you i'd like to see you try it": [65535, 0], "you i'd like to see you try it well": [65535, 0], "i'd like to see you try it well i": [65535, 0], "like to see you try it well i can": [65535, 0], "to see you try it well i can do": [65535, 0], "see you try it well i can do it": [65535, 0], "you try it well i can do it no": [65535, 0], "try it well i can do it no you": [65535, 0], "it well i can do it no you can't": [65535, 0], "well i can do it no you can't either": [65535, 0], "i can do it no you can't either yes": [65535, 0], "can do it no you can't either yes i": [65535, 0], "do it no you can't either yes i can": [65535, 0], "it no you can't either yes i can no": [65535, 0], "no you can't either yes i can no you": [65535, 0], "you can't either yes i can no you can't": [65535, 0], "can't either yes i can no you can't i": [65535, 0], "either yes i can no you can't i can": [65535, 0], "yes i can no you can't i can you": [65535, 0], "i can no you can't i can you can't": [65535, 0], "can no you can't i can you can't can": [65535, 0], "no you can't i can you can't can can't": [65535, 0], "you can't i can you can't can can't an": [65535, 0], "can't i can you can't can can't an uncomfortable": [65535, 0], "i can you can't can can't an uncomfortable pause": [65535, 0], "can you can't can can't an uncomfortable pause then": [65535, 0], "you can't can can't an uncomfortable pause then tom": [65535, 0], "can't can can't an uncomfortable pause then tom said": [65535, 0], "can can't an uncomfortable pause then tom said what's": [65535, 0], "can't an uncomfortable pause then tom said what's your": [65535, 0], "an uncomfortable pause then tom said what's your name": [65535, 0], "uncomfortable pause then tom said what's your name 'tisn't": [65535, 0], "pause then tom said what's your name 'tisn't any": [65535, 0], "then tom said what's your name 'tisn't any of": [65535, 0], "tom said what's your name 'tisn't any of your": [65535, 0], "said what's your name 'tisn't any of your business": [65535, 0], "what's your name 'tisn't any of your business maybe": [65535, 0], "your name 'tisn't any of your business maybe well": [65535, 0], "name 'tisn't any of your business maybe well i": [65535, 0], "'tisn't any of your business maybe well i 'low": [65535, 0], "any of your business maybe well i 'low i'll": [65535, 0], "of your business maybe well i 'low i'll make": [65535, 0], "your business maybe well i 'low i'll make it": [65535, 0], "business maybe well i 'low i'll make it my": [65535, 0], "maybe well i 'low i'll make it my business": [65535, 0], "well i 'low i'll make it my business well": [65535, 0], "i 'low i'll make it my business well why": [65535, 0], "'low i'll make it my business well why don't": [65535, 0], "i'll make it my business well why don't you": [65535, 0], "make it my business well why don't you if": [65535, 0], "it my business well why don't you if you": [65535, 0], "my business well why don't you if you say": [65535, 0], "business well why don't you if you say much": [65535, 0], "well why don't you if you say much i": [65535, 0], "why don't you if you say much i will": [65535, 0], "don't you if you say much i will much": [65535, 0], "you if you say much i will much much": [65535, 0], "if you say much i will much much much": [65535, 0], "you say much i will much much much there": [65535, 0], "say much i will much much much there now": [65535, 0], "much i will much much much there now oh": [65535, 0], "i will much much much there now oh you": [65535, 0], "will much much much there now oh you think": [65535, 0], "much much much there now oh you think you're": [65535, 0], "much much there now oh you think you're mighty": [65535, 0], "much there now oh you think you're mighty smart": [65535, 0], "there now oh you think you're mighty smart don't": [65535, 0], "now oh you think you're mighty smart don't you": [65535, 0], "oh you think you're mighty smart don't you i": [65535, 0], "you think you're mighty smart don't you i could": [65535, 0], "think you're mighty smart don't you i could lick": [65535, 0], "you're mighty smart don't you i could lick you": [65535, 0], "mighty smart don't you i could lick you with": [65535, 0], "smart don't you i could lick you with one": [65535, 0], "don't you i could lick you with one hand": [65535, 0], "you i could lick you with one hand tied": [65535, 0], "i could lick you with one hand tied behind": [65535, 0], "could lick you with one hand tied behind me": [65535, 0], "lick you with one hand tied behind me if": [65535, 0], "you with one hand tied behind me if i": [65535, 0], "with one hand tied behind me if i wanted": [65535, 0], "one hand tied behind me if i wanted to": [65535, 0], "hand tied behind me if i wanted to well": [65535, 0], "tied behind me if i wanted to well why": [65535, 0], "behind me if i wanted to well why don't": [65535, 0], "me if i wanted to well why don't you": [65535, 0], "if i wanted to well why don't you do": [65535, 0], "i wanted to well why don't you do it": [65535, 0], "wanted to well why don't you do it you": [65535, 0], "to well why don't you do it you say": [65535, 0], "well why don't you do it you say you": [65535, 0], "why don't you do it you say you can": [65535, 0], "don't you do it you say you can do": [65535, 0], "you do it you say you can do it": [65535, 0], "do it you say you can do it well": [65535, 0], "it you say you can do it well i": [65535, 0], "you say you can do it well i will": [65535, 0], "say you can do it well i will if": [65535, 0], "you can do it well i will if you": [65535, 0], "can do it well i will if you fool": [65535, 0], "do it well i will if you fool with": [65535, 0], "it well i will if you fool with me": [65535, 0], "well i will if you fool with me oh": [65535, 0], "i will if you fool with me oh yes": [65535, 0], "will if you fool with me oh yes i've": [65535, 0], "if you fool with me oh yes i've seen": [65535, 0], "you fool with me oh yes i've seen whole": [65535, 0], "fool with me oh yes i've seen whole families": [65535, 0], "with me oh yes i've seen whole families in": [65535, 0], "me oh yes i've seen whole families in the": [65535, 0], "oh yes i've seen whole families in the same": [65535, 0], "yes i've seen whole families in the same fix": [65535, 0], "i've seen whole families in the same fix smarty": [65535, 0], "seen whole families in the same fix smarty you": [65535, 0], "whole families in the same fix smarty you think": [65535, 0], "families in the same fix smarty you think you're": [65535, 0], "in the same fix smarty you think you're some": [65535, 0], "the same fix smarty you think you're some now": [65535, 0], "same fix smarty you think you're some now don't": [65535, 0], "fix smarty you think you're some now don't you": [65535, 0], "smarty you think you're some now don't you oh": [65535, 0], "you think you're some now don't you oh what": [65535, 0], "think you're some now don't you oh what a": [65535, 0], "you're some now don't you oh what a hat": [65535, 0], "some now don't you oh what a hat you": [65535, 0], "now don't you oh what a hat you can": [65535, 0], "don't you oh what a hat you can lump": [65535, 0], "you oh what a hat you can lump that": [65535, 0], "oh what a hat you can lump that hat": [65535, 0], "what a hat you can lump that hat if": [65535, 0], "a hat you can lump that hat if you": [65535, 0], "hat you can lump that hat if you don't": [65535, 0], "you can lump that hat if you don't like": [65535, 0], "can lump that hat if you don't like it": [65535, 0], "lump that hat if you don't like it i": [65535, 0], "that hat if you don't like it i dare": [65535, 0], "hat if you don't like it i dare you": [65535, 0], "if you don't like it i dare you to": [65535, 0], "you don't like it i dare you to knock": [65535, 0], "don't like it i dare you to knock it": [65535, 0], "like it i dare you to knock it off": [65535, 0], "it i dare you to knock it off and": [65535, 0], "i dare you to knock it off and anybody": [65535, 0], "dare you to knock it off and anybody that'll": [65535, 0], "you to knock it off and anybody that'll take": [65535, 0], "to knock it off and anybody that'll take a": [65535, 0], "knock it off and anybody that'll take a dare": [65535, 0], "it off and anybody that'll take a dare will": [65535, 0], "off and anybody that'll take a dare will suck": [65535, 0], "and anybody that'll take a dare will suck eggs": [65535, 0], "anybody that'll take a dare will suck eggs you're": [65535, 0], "that'll take a dare will suck eggs you're a": [65535, 0], "take a dare will suck eggs you're a liar": [65535, 0], "a dare will suck eggs you're a liar you're": [65535, 0], "dare will suck eggs you're a liar you're another": [65535, 0], "will suck eggs you're a liar you're another you're": [65535, 0], "suck eggs you're a liar you're another you're a": [65535, 0], "eggs you're a liar you're another you're a fighting": [65535, 0], "you're a liar you're another you're a fighting liar": [65535, 0], "a liar you're another you're a fighting liar and": [65535, 0], "liar you're another you're a fighting liar and dasn't": [65535, 0], "you're another you're a fighting liar and dasn't take": [65535, 0], "another you're a fighting liar and dasn't take it": [65535, 0], "you're a fighting liar and dasn't take it up": [65535, 0], "a fighting liar and dasn't take it up aw": [65535, 0], "fighting liar and dasn't take it up aw take": [65535, 0], "liar and dasn't take it up aw take a": [65535, 0], "and dasn't take it up aw take a walk": [65535, 0], "dasn't take it up aw take a walk say": [65535, 0], "take it up aw take a walk say if": [65535, 0], "it up aw take a walk say if you": [65535, 0], "up aw take a walk say if you give": [65535, 0], "aw take a walk say if you give me": [65535, 0], "take a walk say if you give me much": [65535, 0], "a walk say if you give me much more": [65535, 0], "walk say if you give me much more of": [65535, 0], "say if you give me much more of your": [65535, 0], "if you give me much more of your sass": [65535, 0], "you give me much more of your sass i'll": [65535, 0], "give me much more of your sass i'll take": [65535, 0], "me much more of your sass i'll take and": [65535, 0], "much more of your sass i'll take and bounce": [65535, 0], "more of your sass i'll take and bounce a": [65535, 0], "of your sass i'll take and bounce a rock": [65535, 0], "your sass i'll take and bounce a rock off'n": [65535, 0], "sass i'll take and bounce a rock off'n your": [65535, 0], "i'll take and bounce a rock off'n your head": [65535, 0], "take and bounce a rock off'n your head oh": [65535, 0], "and bounce a rock off'n your head oh of": [65535, 0], "bounce a rock off'n your head oh of course": [65535, 0], "a rock off'n your head oh of course you": [65535, 0], "rock off'n your head oh of course you will": [65535, 0], "off'n your head oh of course you will well": [65535, 0], "your head oh of course you will well i": [65535, 0], "head oh of course you will well i will": [65535, 0], "oh of course you will well i will well": [65535, 0], "of course you will well i will well why": [65535, 0], "course you will well i will well why don't": [65535, 0], "you will well i will well why don't you": [65535, 0], "will well i will well why don't you do": [65535, 0], "well i will well why don't you do it": [65535, 0], "i will well why don't you do it then": [65535, 0], "will well why don't you do it then what": [65535, 0], "well why don't you do it then what do": [65535, 0], "why don't you do it then what do you": [65535, 0], "don't you do it then what do you keep": [65535, 0], "you do it then what do you keep saying": [65535, 0], "do it then what do you keep saying you": [65535, 0], "it then what do you keep saying you will": [65535, 0], "then what do you keep saying you will for": [65535, 0], "what do you keep saying you will for why": [65535, 0], "do you keep saying you will for why don't": [65535, 0], "you keep saying you will for why don't you": [65535, 0], "keep saying you will for why don't you do": [65535, 0], "saying you will for why don't you do it": [65535, 0], "you will for why don't you do it it's": [65535, 0], "will for why don't you do it it's because": [65535, 0], "for why don't you do it it's because you're": [65535, 0], "why don't you do it it's because you're afraid": [65535, 0], "don't you do it it's because you're afraid i": [65535, 0], "you do it it's because you're afraid i ain't": [65535, 0], "do it it's because you're afraid i ain't afraid": [65535, 0], "it it's because you're afraid i ain't afraid you": [65535, 0], "it's because you're afraid i ain't afraid you are": [65535, 0], "because you're afraid i ain't afraid you are i": [65535, 0], "you're afraid i ain't afraid you are i ain't": [65535, 0], "afraid i ain't afraid you are i ain't you": [65535, 0], "i ain't afraid you are i ain't you are": [65535, 0], "ain't afraid you are i ain't you are another": [65535, 0], "afraid you are i ain't you are another pause": [65535, 0], "you are i ain't you are another pause and": [65535, 0], "are i ain't you are another pause and more": [65535, 0], "i ain't you are another pause and more eying": [65535, 0], "ain't you are another pause and more eying and": [65535, 0], "you are another pause and more eying and sidling": [65535, 0], "are another pause and more eying and sidling around": [65535, 0], "another pause and more eying and sidling around each": [65535, 0], "pause and more eying and sidling around each other": [65535, 0], "and more eying and sidling around each other presently": [65535, 0], "more eying and sidling around each other presently they": [65535, 0], "eying and sidling around each other presently they were": [65535, 0], "and sidling around each other presently they were shoulder": [65535, 0], "sidling around each other presently they were shoulder to": [65535, 0], "around each other presently they were shoulder to shoulder": [65535, 0], "each other presently they were shoulder to shoulder tom": [65535, 0], "other presently they were shoulder to shoulder tom said": [65535, 0], "presently they were shoulder to shoulder tom said get": [65535, 0], "they were shoulder to shoulder tom said get away": [65535, 0], "were shoulder to shoulder tom said get away from": [65535, 0], "shoulder to shoulder tom said get away from here": [65535, 0], "to shoulder tom said get away from here go": [65535, 0], "shoulder tom said get away from here go away": [65535, 0], "tom said get away from here go away yourself": [65535, 0], "said get away from here go away yourself i": [65535, 0], "get away from here go away yourself i won't": [65535, 0], "away from here go away yourself i won't i": [65535, 0], "from here go away yourself i won't i won't": [65535, 0], "here go away yourself i won't i won't either": [65535, 0], "go away yourself i won't i won't either so": [65535, 0], "away yourself i won't i won't either so they": [65535, 0], "yourself i won't i won't either so they stood": [65535, 0], "i won't i won't either so they stood each": [65535, 0], "won't i won't either so they stood each with": [65535, 0], "i won't either so they stood each with a": [65535, 0], "won't either so they stood each with a foot": [65535, 0], "either so they stood each with a foot placed": [65535, 0], "so they stood each with a foot placed at": [65535, 0], "they stood each with a foot placed at an": [65535, 0], "stood each with a foot placed at an angle": [65535, 0], "each with a foot placed at an angle as": [65535, 0], "with a foot placed at an angle as a": [65535, 0], "a foot placed at an angle as a brace": [65535, 0], "foot placed at an angle as a brace and": [65535, 0], "placed at an angle as a brace and both": [65535, 0], "at an angle as a brace and both shoving": [65535, 0], "an angle as a brace and both shoving with": [65535, 0], "angle as a brace and both shoving with might": [65535, 0], "as a brace and both shoving with might and": [65535, 0], "a brace and both shoving with might and main": [65535, 0], "brace and both shoving with might and main and": [65535, 0], "and both shoving with might and main and glowering": [65535, 0], "both shoving with might and main and glowering at": [65535, 0], "shoving with might and main and glowering at each": [65535, 0], "with might and main and glowering at each other": [65535, 0], "might and main and glowering at each other with": [65535, 0], "and main and glowering at each other with hate": [65535, 0], "main and glowering at each other with hate but": [65535, 0], "and glowering at each other with hate but neither": [65535, 0], "glowering at each other with hate but neither could": [65535, 0], "at each other with hate but neither could get": [65535, 0], "each other with hate but neither could get an": [65535, 0], "other with hate but neither could get an advantage": [65535, 0], "with hate but neither could get an advantage after": [65535, 0], "hate but neither could get an advantage after struggling": [65535, 0], "but neither could get an advantage after struggling till": [65535, 0], "neither could get an advantage after struggling till both": [65535, 0], "could get an advantage after struggling till both were": [65535, 0], "get an advantage after struggling till both were hot": [65535, 0], "an advantage after struggling till both were hot and": [65535, 0], "advantage after struggling till both were hot and flushed": [65535, 0], "after struggling till both were hot and flushed each": [65535, 0], "struggling till both were hot and flushed each relaxed": [65535, 0], "till both were hot and flushed each relaxed his": [65535, 0], "both were hot and flushed each relaxed his strain": [65535, 0], "were hot and flushed each relaxed his strain with": [65535, 0], "hot and flushed each relaxed his strain with watchful": [65535, 0], "and flushed each relaxed his strain with watchful caution": [65535, 0], "flushed each relaxed his strain with watchful caution and": [65535, 0], "each relaxed his strain with watchful caution and tom": [65535, 0], "relaxed his strain with watchful caution and tom said": [65535, 0], "his strain with watchful caution and tom said you're": [65535, 0], "strain with watchful caution and tom said you're a": [65535, 0], "with watchful caution and tom said you're a coward": [65535, 0], "watchful caution and tom said you're a coward and": [65535, 0], "caution and tom said you're a coward and a": [65535, 0], "and tom said you're a coward and a pup": [65535, 0], "tom said you're a coward and a pup i'll": [65535, 0], "said you're a coward and a pup i'll tell": [65535, 0], "you're a coward and a pup i'll tell my": [65535, 0], "a coward and a pup i'll tell my big": [65535, 0], "coward and a pup i'll tell my big brother": [65535, 0], "and a pup i'll tell my big brother on": [65535, 0], "a pup i'll tell my big brother on you": [65535, 0], "pup i'll tell my big brother on you and": [65535, 0], "i'll tell my big brother on you and he": [65535, 0], "tell my big brother on you and he can": [65535, 0], "my big brother on you and he can thrash": [65535, 0], "big brother on you and he can thrash you": [65535, 0], "brother on you and he can thrash you with": [65535, 0], "on you and he can thrash you with his": [65535, 0], "you and he can thrash you with his little": [65535, 0], "and he can thrash you with his little finger": [65535, 0], "he can thrash you with his little finger and": [65535, 0], "can thrash you with his little finger and i'll": [65535, 0], "thrash you with his little finger and i'll make": [65535, 0], "you with his little finger and i'll make him": [65535, 0], "with his little finger and i'll make him do": [65535, 0], "his little finger and i'll make him do it": [65535, 0], "little finger and i'll make him do it too": [65535, 0], "finger and i'll make him do it too what": [65535, 0], "and i'll make him do it too what do": [65535, 0], "i'll make him do it too what do i": [65535, 0], "make him do it too what do i care": [65535, 0], "him do it too what do i care for": [65535, 0], "do it too what do i care for your": [65535, 0], "it too what do i care for your big": [65535, 0], "too what do i care for your big brother": [65535, 0], "what do i care for your big brother i've": [65535, 0], "do i care for your big brother i've got": [65535, 0], "i care for your big brother i've got a": [65535, 0], "care for your big brother i've got a brother": [65535, 0], "for your big brother i've got a brother that's": [65535, 0], "your big brother i've got a brother that's bigger": [65535, 0], "big brother i've got a brother that's bigger than": [65535, 0], "brother i've got a brother that's bigger than he": [65535, 0], "i've got a brother that's bigger than he is": [65535, 0], "got a brother that's bigger than he is and": [65535, 0], "a brother that's bigger than he is and what's": [65535, 0], "brother that's bigger than he is and what's more": [65535, 0], "that's bigger than he is and what's more he": [65535, 0], "bigger than he is and what's more he can": [65535, 0], "than he is and what's more he can throw": [65535, 0], "he is and what's more he can throw him": [65535, 0], "is and what's more he can throw him over": [65535, 0], "and what's more he can throw him over that": [65535, 0], "what's more he can throw him over that fence": [65535, 0], "more he can throw him over that fence too": [65535, 0], "he can throw him over that fence too both": [65535, 0], "can throw him over that fence too both brothers": [65535, 0], "throw him over that fence too both brothers were": [65535, 0], "him over that fence too both brothers were imaginary": [65535, 0], "over that fence too both brothers were imaginary that's": [65535, 0], "that fence too both brothers were imaginary that's a": [65535, 0], "fence too both brothers were imaginary that's a lie": [65535, 0], "too both brothers were imaginary that's a lie your": [65535, 0], "both brothers were imaginary that's a lie your saying": [65535, 0], "brothers were imaginary that's a lie your saying so": [65535, 0], "were imaginary that's a lie your saying so don't": [65535, 0], "imaginary that's a lie your saying so don't make": [65535, 0], "that's a lie your saying so don't make it": [65535, 0], "a lie your saying so don't make it so": [65535, 0], "lie your saying so don't make it so tom": [65535, 0], "your saying so don't make it so tom drew": [65535, 0], "saying so don't make it so tom drew a": [65535, 0], "so don't make it so tom drew a line": [65535, 0], "don't make it so tom drew a line in": [65535, 0], "make it so tom drew a line in the": [65535, 0], "it so tom drew a line in the dust": [65535, 0], "so tom drew a line in the dust with": [65535, 0], "tom drew a line in the dust with his": [65535, 0], "drew a line in the dust with his big": [65535, 0], "a line in the dust with his big toe": [65535, 0], "line in the dust with his big toe and": [65535, 0], "in the dust with his big toe and said": [65535, 0], "the dust with his big toe and said i": [65535, 0], "dust with his big toe and said i dare": [65535, 0], "with his big toe and said i dare you": [65535, 0], "his big toe and said i dare you to": [65535, 0], "big toe and said i dare you to step": [65535, 0], "toe and said i dare you to step over": [65535, 0], "and said i dare you to step over that": [65535, 0], "said i dare you to step over that and": [65535, 0], "i dare you to step over that and i'll": [65535, 0], "dare you to step over that and i'll lick": [65535, 0], "you to step over that and i'll lick you": [65535, 0], "to step over that and i'll lick you till": [65535, 0], "step over that and i'll lick you till you": [65535, 0], "over that and i'll lick you till you can't": [65535, 0], "that and i'll lick you till you can't stand": [65535, 0], "and i'll lick you till you can't stand up": [65535, 0], "i'll lick you till you can't stand up anybody": [65535, 0], "lick you till you can't stand up anybody that'll": [65535, 0], "you till you can't stand up anybody that'll take": [65535, 0], "till you can't stand up anybody that'll take a": [65535, 0], "you can't stand up anybody that'll take a dare": [65535, 0], "can't stand up anybody that'll take a dare will": [65535, 0], "stand up anybody that'll take a dare will steal": [65535, 0], "up anybody that'll take a dare will steal sheep": [65535, 0], "anybody that'll take a dare will steal sheep the": [65535, 0], "that'll take a dare will steal sheep the new": [65535, 0], "take a dare will steal sheep the new boy": [65535, 0], "a dare will steal sheep the new boy stepped": [65535, 0], "dare will steal sheep the new boy stepped over": [65535, 0], "will steal sheep the new boy stepped over promptly": [65535, 0], "steal sheep the new boy stepped over promptly and": [65535, 0], "sheep the new boy stepped over promptly and said": [65535, 0], "the new boy stepped over promptly and said now": [65535, 0], "new boy stepped over promptly and said now you": [65535, 0], "boy stepped over promptly and said now you said": [65535, 0], "stepped over promptly and said now you said you'd": [65535, 0], "over promptly and said now you said you'd do": [65535, 0], "promptly and said now you said you'd do it": [65535, 0], "and said now you said you'd do it now": [65535, 0], "said now you said you'd do it now let's": [65535, 0], "now you said you'd do it now let's see": [65535, 0], "you said you'd do it now let's see you": [65535, 0], "said you'd do it now let's see you do": [65535, 0], "you'd do it now let's see you do it": [65535, 0], "do it now let's see you do it don't": [65535, 0], "it now let's see you do it don't you": [65535, 0], "now let's see you do it don't you crowd": [65535, 0], "let's see you do it don't you crowd me": [65535, 0], "see you do it don't you crowd me now": [65535, 0], "you do it don't you crowd me now you": [65535, 0], "do it don't you crowd me now you better": [65535, 0], "it don't you crowd me now you better look": [65535, 0], "don't you crowd me now you better look out": [65535, 0], "you crowd me now you better look out well": [65535, 0], "crowd me now you better look out well you": [65535, 0], "me now you better look out well you said": [65535, 0], "now you better look out well you said you'd": [65535, 0], "you better look out well you said you'd do": [65535, 0], "better look out well you said you'd do it": [65535, 0], "look out well you said you'd do it why": [65535, 0], "out well you said you'd do it why don't": [65535, 0], "well you said you'd do it why don't you": [65535, 0], "you said you'd do it why don't you do": [65535, 0], "said you'd do it why don't you do it": [65535, 0], "you'd do it why don't you do it by": [65535, 0], "do it why don't you do it by jingo": [65535, 0], "it why don't you do it by jingo for": [65535, 0], "why don't you do it by jingo for two": [65535, 0], "don't you do it by jingo for two cents": [65535, 0], "you do it by jingo for two cents i": [65535, 0], "do it by jingo for two cents i will": [65535, 0], "it by jingo for two cents i will do": [65535, 0], "by jingo for two cents i will do it": [65535, 0], "jingo for two cents i will do it the": [65535, 0], "for two cents i will do it the new": [65535, 0], "two cents i will do it the new boy": [65535, 0], "cents i will do it the new boy took": [65535, 0], "i will do it the new boy took two": [65535, 0], "will do it the new boy took two broad": [65535, 0], "do it the new boy took two broad coppers": [65535, 0], "it the new boy took two broad coppers out": [65535, 0], "the new boy took two broad coppers out of": [65535, 0], "new boy took two broad coppers out of his": [65535, 0], "boy took two broad coppers out of his pocket": [65535, 0], "took two broad coppers out of his pocket and": [65535, 0], "two broad coppers out of his pocket and held": [65535, 0], "broad coppers out of his pocket and held them": [65535, 0], "coppers out of his pocket and held them out": [65535, 0], "out of his pocket and held them out with": [65535, 0], "of his pocket and held them out with derision": [65535, 0], "his pocket and held them out with derision tom": [65535, 0], "pocket and held them out with derision tom struck": [65535, 0], "and held them out with derision tom struck them": [65535, 0], "held them out with derision tom struck them to": [65535, 0], "them out with derision tom struck them to the": [65535, 0], "out with derision tom struck them to the ground": [65535, 0], "with derision tom struck them to the ground in": [65535, 0], "derision tom struck them to the ground in an": [65535, 0], "tom struck them to the ground in an instant": [65535, 0], "struck them to the ground in an instant both": [65535, 0], "them to the ground in an instant both boys": [65535, 0], "to the ground in an instant both boys were": [65535, 0], "the ground in an instant both boys were rolling": [65535, 0], "ground in an instant both boys were rolling and": [65535, 0], "in an instant both boys were rolling and tumbling": [65535, 0], "an instant both boys were rolling and tumbling in": [65535, 0], "instant both boys were rolling and tumbling in the": [65535, 0], "both boys were rolling and tumbling in the dirt": [65535, 0], "boys were rolling and tumbling in the dirt gripped": [65535, 0], "were rolling and tumbling in the dirt gripped together": [65535, 0], "rolling and tumbling in the dirt gripped together like": [65535, 0], "and tumbling in the dirt gripped together like cats": [65535, 0], "tumbling in the dirt gripped together like cats and": [65535, 0], "in the dirt gripped together like cats and for": [65535, 0], "the dirt gripped together like cats and for the": [65535, 0], "dirt gripped together like cats and for the space": [65535, 0], "gripped together like cats and for the space of": [65535, 0], "together like cats and for the space of a": [65535, 0], "like cats and for the space of a minute": [65535, 0], "cats and for the space of a minute they": [65535, 0], "and for the space of a minute they tugged": [65535, 0], "for the space of a minute they tugged and": [65535, 0], "the space of a minute they tugged and tore": [65535, 0], "space of a minute they tugged and tore at": [65535, 0], "of a minute they tugged and tore at each": [65535, 0], "a minute they tugged and tore at each other's": [65535, 0], "minute they tugged and tore at each other's hair": [65535, 0], "they tugged and tore at each other's hair and": [65535, 0], "tugged and tore at each other's hair and clothes": [65535, 0], "and tore at each other's hair and clothes punched": [65535, 0], "tore at each other's hair and clothes punched and": [65535, 0], "at each other's hair and clothes punched and scratched": [65535, 0], "each other's hair and clothes punched and scratched each": [65535, 0], "other's hair and clothes punched and scratched each other's": [65535, 0], "hair and clothes punched and scratched each other's nose": [65535, 0], "and clothes punched and scratched each other's nose and": [65535, 0], "clothes punched and scratched each other's nose and covered": [65535, 0], "punched and scratched each other's nose and covered themselves": [65535, 0], "and scratched each other's nose and covered themselves with": [65535, 0], "scratched each other's nose and covered themselves with dust": [65535, 0], "each other's nose and covered themselves with dust and": [65535, 0], "other's nose and covered themselves with dust and glory": [65535, 0], "nose and covered themselves with dust and glory presently": [65535, 0], "and covered themselves with dust and glory presently the": [65535, 0], "covered themselves with dust and glory presently the confusion": [65535, 0], "themselves with dust and glory presently the confusion took": [65535, 0], "with dust and glory presently the confusion took form": [65535, 0], "dust and glory presently the confusion took form and": [65535, 0], "and glory presently the confusion took form and through": [65535, 0], "glory presently the confusion took form and through the": [65535, 0], "presently the confusion took form and through the fog": [65535, 0], "the confusion took form and through the fog of": [65535, 0], "confusion took form and through the fog of battle": [65535, 0], "took form and through the fog of battle tom": [65535, 0], "form and through the fog of battle tom appeared": [65535, 0], "and through the fog of battle tom appeared seated": [65535, 0], "through the fog of battle tom appeared seated astride": [65535, 0], "the fog of battle tom appeared seated astride the": [65535, 0], "fog of battle tom appeared seated astride the new": [65535, 0], "of battle tom appeared seated astride the new boy": [65535, 0], "battle tom appeared seated astride the new boy and": [65535, 0], "tom appeared seated astride the new boy and pounding": [65535, 0], "appeared seated astride the new boy and pounding him": [65535, 0], "seated astride the new boy and pounding him with": [65535, 0], "astride the new boy and pounding him with his": [65535, 0], "the new boy and pounding him with his fists": [65535, 0], "new boy and pounding him with his fists holler": [65535, 0], "boy and pounding him with his fists holler 'nuff": [65535, 0], "and pounding him with his fists holler 'nuff said": [65535, 0], "pounding him with his fists holler 'nuff said he": [65535, 0], "him with his fists holler 'nuff said he the": [65535, 0], "with his fists holler 'nuff said he the boy": [65535, 0], "his fists holler 'nuff said he the boy only": [65535, 0], "fists holler 'nuff said he the boy only struggled": [65535, 0], "holler 'nuff said he the boy only struggled to": [65535, 0], "'nuff said he the boy only struggled to free": [65535, 0], "said he the boy only struggled to free himself": [65535, 0], "he the boy only struggled to free himself he": [65535, 0], "the boy only struggled to free himself he was": [65535, 0], "boy only struggled to free himself he was crying": [65535, 0], "only struggled to free himself he was crying mainly": [65535, 0], "struggled to free himself he was crying mainly from": [65535, 0], "to free himself he was crying mainly from rage": [65535, 0], "free himself he was crying mainly from rage holler": [65535, 0], "himself he was crying mainly from rage holler 'nuff": [65535, 0], "he was crying mainly from rage holler 'nuff and": [65535, 0], "was crying mainly from rage holler 'nuff and the": [65535, 0], "crying mainly from rage holler 'nuff and the pounding": [65535, 0], "mainly from rage holler 'nuff and the pounding went": [65535, 0], "from rage holler 'nuff and the pounding went on": [65535, 0], "rage holler 'nuff and the pounding went on at": [65535, 0], "holler 'nuff and the pounding went on at last": [65535, 0], "'nuff and the pounding went on at last the": [65535, 0], "and the pounding went on at last the stranger": [65535, 0], "the pounding went on at last the stranger got": [65535, 0], "pounding went on at last the stranger got out": [65535, 0], "went on at last the stranger got out a": [65535, 0], "on at last the stranger got out a smothered": [65535, 0], "at last the stranger got out a smothered 'nuff": [65535, 0], "last the stranger got out a smothered 'nuff and": [65535, 0], "the stranger got out a smothered 'nuff and tom": [65535, 0], "stranger got out a smothered 'nuff and tom let": [65535, 0], "got out a smothered 'nuff and tom let him": [65535, 0], "out a smothered 'nuff and tom let him up": [65535, 0], "a smothered 'nuff and tom let him up and": [65535, 0], "smothered 'nuff and tom let him up and said": [65535, 0], "'nuff and tom let him up and said now": [65535, 0], "and tom let him up and said now that'll": [65535, 0], "tom let him up and said now that'll learn": [65535, 0], "let him up and said now that'll learn you": [65535, 0], "him up and said now that'll learn you better": [65535, 0], "up and said now that'll learn you better look": [65535, 0], "and said now that'll learn you better look out": [65535, 0], "said now that'll learn you better look out who": [65535, 0], "now that'll learn you better look out who you're": [65535, 0], "that'll learn you better look out who you're fooling": [65535, 0], "learn you better look out who you're fooling with": [65535, 0], "you better look out who you're fooling with next": [65535, 0], "better look out who you're fooling with next time": [65535, 0], "look out who you're fooling with next time the": [65535, 0], "out who you're fooling with next time the new": [65535, 0], "who you're fooling with next time the new boy": [65535, 0], "you're fooling with next time the new boy went": [65535, 0], "fooling with next time the new boy went off": [65535, 0], "with next time the new boy went off brushing": [65535, 0], "next time the new boy went off brushing the": [65535, 0], "time the new boy went off brushing the dust": [65535, 0], "the new boy went off brushing the dust from": [65535, 0], "new boy went off brushing the dust from his": [65535, 0], "boy went off brushing the dust from his clothes": [65535, 0], "went off brushing the dust from his clothes sobbing": [65535, 0], "off brushing the dust from his clothes sobbing snuffling": [65535, 0], "brushing the dust from his clothes sobbing snuffling and": [65535, 0], "the dust from his clothes sobbing snuffling and occasionally": [65535, 0], "dust from his clothes sobbing snuffling and occasionally looking": [65535, 0], "from his clothes sobbing snuffling and occasionally looking back": [65535, 0], "his clothes sobbing snuffling and occasionally looking back and": [65535, 0], "clothes sobbing snuffling and occasionally looking back and shaking": [65535, 0], "sobbing snuffling and occasionally looking back and shaking his": [65535, 0], "snuffling and occasionally looking back and shaking his head": [65535, 0], "and occasionally looking back and shaking his head and": [65535, 0], "occasionally looking back and shaking his head and threatening": [65535, 0], "looking back and shaking his head and threatening what": [65535, 0], "back and shaking his head and threatening what he": [65535, 0], "and shaking his head and threatening what he would": [65535, 0], "shaking his head and threatening what he would do": [65535, 0], "his head and threatening what he would do to": [65535, 0], "head and threatening what he would do to tom": [65535, 0], "and threatening what he would do to tom the": [65535, 0], "threatening what he would do to tom the next": [65535, 0], "what he would do to tom the next time": [65535, 0], "he would do to tom the next time he": [65535, 0], "would do to tom the next time he caught": [65535, 0], "do to tom the next time he caught him": [65535, 0], "to tom the next time he caught him out": [65535, 0], "tom the next time he caught him out to": [65535, 0], "the next time he caught him out to which": [65535, 0], "next time he caught him out to which tom": [65535, 0], "time he caught him out to which tom responded": [65535, 0], "he caught him out to which tom responded with": [65535, 0], "caught him out to which tom responded with jeers": [65535, 0], "him out to which tom responded with jeers and": [65535, 0], "out to which tom responded with jeers and started": [65535, 0], "to which tom responded with jeers and started off": [65535, 0], "which tom responded with jeers and started off in": [65535, 0], "tom responded with jeers and started off in high": [65535, 0], "responded with jeers and started off in high feather": [65535, 0], "with jeers and started off in high feather and": [65535, 0], "jeers and started off in high feather and as": [65535, 0], "and started off in high feather and as soon": [65535, 0], "started off in high feather and as soon as": [65535, 0], "off in high feather and as soon as his": [65535, 0], "in high feather and as soon as his back": [65535, 0], "high feather and as soon as his back was": [65535, 0], "feather and as soon as his back was turned": [65535, 0], "and as soon as his back was turned the": [65535, 0], "as soon as his back was turned the new": [65535, 0], "soon as his back was turned the new boy": [65535, 0], "as his back was turned the new boy snatched": [65535, 0], "his back was turned the new boy snatched up": [65535, 0], "back was turned the new boy snatched up a": [65535, 0], "was turned the new boy snatched up a stone": [65535, 0], "turned the new boy snatched up a stone threw": [65535, 0], "the new boy snatched up a stone threw it": [65535, 0], "new boy snatched up a stone threw it and": [65535, 0], "boy snatched up a stone threw it and hit": [65535, 0], "snatched up a stone threw it and hit him": [65535, 0], "up a stone threw it and hit him between": [65535, 0], "a stone threw it and hit him between the": [65535, 0], "stone threw it and hit him between the shoulders": [65535, 0], "threw it and hit him between the shoulders and": [65535, 0], "it and hit him between the shoulders and then": [65535, 0], "and hit him between the shoulders and then turned": [65535, 0], "hit him between the shoulders and then turned tail": [65535, 0], "him between the shoulders and then turned tail and": [65535, 0], "between the shoulders and then turned tail and ran": [65535, 0], "the shoulders and then turned tail and ran like": [65535, 0], "shoulders and then turned tail and ran like an": [65535, 0], "and then turned tail and ran like an antelope": [65535, 0], "then turned tail and ran like an antelope tom": [65535, 0], "turned tail and ran like an antelope tom chased": [65535, 0], "tail and ran like an antelope tom chased the": [65535, 0], "and ran like an antelope tom chased the traitor": [65535, 0], "ran like an antelope tom chased the traitor home": [65535, 0], "like an antelope tom chased the traitor home and": [65535, 0], "an antelope tom chased the traitor home and thus": [65535, 0], "antelope tom chased the traitor home and thus found": [65535, 0], "tom chased the traitor home and thus found out": [65535, 0], "chased the traitor home and thus found out where": [65535, 0], "the traitor home and thus found out where he": [65535, 0], "traitor home and thus found out where he lived": [65535, 0], "home and thus found out where he lived he": [65535, 0], "and thus found out where he lived he then": [65535, 0], "thus found out where he lived he then held": [65535, 0], "found out where he lived he then held a": [65535, 0], "out where he lived he then held a position": [65535, 0], "where he lived he then held a position at": [65535, 0], "he lived he then held a position at the": [65535, 0], "lived he then held a position at the gate": [65535, 0], "he then held a position at the gate for": [65535, 0], "then held a position at the gate for some": [65535, 0], "held a position at the gate for some time": [65535, 0], "a position at the gate for some time daring": [65535, 0], "position at the gate for some time daring the": [65535, 0], "at the gate for some time daring the enemy": [65535, 0], "the gate for some time daring the enemy to": [65535, 0], "gate for some time daring the enemy to come": [65535, 0], "for some time daring the enemy to come outside": [65535, 0], "some time daring the enemy to come outside but": [65535, 0], "time daring the enemy to come outside but the": [65535, 0], "daring the enemy to come outside but the enemy": [65535, 0], "the enemy to come outside but the enemy only": [65535, 0], "enemy to come outside but the enemy only made": [65535, 0], "to come outside but the enemy only made faces": [65535, 0], "come outside but the enemy only made faces at": [65535, 0], "outside but the enemy only made faces at him": [65535, 0], "but the enemy only made faces at him through": [65535, 0], "the enemy only made faces at him through the": [65535, 0], "enemy only made faces at him through the window": [65535, 0], "only made faces at him through the window and": [65535, 0], "made faces at him through the window and declined": [65535, 0], "faces at him through the window and declined at": [65535, 0], "at him through the window and declined at last": [65535, 0], "him through the window and declined at last the": [65535, 0], "through the window and declined at last the enemy's": [65535, 0], "the window and declined at last the enemy's mother": [65535, 0], "window and declined at last the enemy's mother appeared": [65535, 0], "and declined at last the enemy's mother appeared and": [65535, 0], "declined at last the enemy's mother appeared and called": [65535, 0], "at last the enemy's mother appeared and called tom": [65535, 0], "last the enemy's mother appeared and called tom a": [65535, 0], "the enemy's mother appeared and called tom a bad": [65535, 0], "enemy's mother appeared and called tom a bad vicious": [65535, 0], "mother appeared and called tom a bad vicious vulgar": [65535, 0], "appeared and called tom a bad vicious vulgar child": [65535, 0], "and called tom a bad vicious vulgar child and": [65535, 0], "called tom a bad vicious vulgar child and ordered": [65535, 0], "tom a bad vicious vulgar child and ordered him": [65535, 0], "a bad vicious vulgar child and ordered him away": [65535, 0], "bad vicious vulgar child and ordered him away so": [65535, 0], "vicious vulgar child and ordered him away so he": [65535, 0], "vulgar child and ordered him away so he went": [65535, 0], "child and ordered him away so he went away": [65535, 0], "and ordered him away so he went away but": [65535, 0], "ordered him away so he went away but he": [65535, 0], "him away so he went away but he said": [65535, 0], "away so he went away but he said he": [65535, 0], "so he went away but he said he 'lowed": [65535, 0], "he went away but he said he 'lowed to": [65535, 0], "went away but he said he 'lowed to lay": [65535, 0], "away but he said he 'lowed to lay for": [65535, 0], "but he said he 'lowed to lay for that": [65535, 0], "he said he 'lowed to lay for that boy": [65535, 0], "said he 'lowed to lay for that boy he": [65535, 0], "he 'lowed to lay for that boy he got": [65535, 0], "'lowed to lay for that boy he got home": [65535, 0], "to lay for that boy he got home pretty": [65535, 0], "lay for that boy he got home pretty late": [65535, 0], "for that boy he got home pretty late that": [65535, 0], "that boy he got home pretty late that night": [65535, 0], "boy he got home pretty late that night and": [65535, 0], "he got home pretty late that night and when": [65535, 0], "got home pretty late that night and when he": [65535, 0], "home pretty late that night and when he climbed": [65535, 0], "pretty late that night and when he climbed cautiously": [65535, 0], "late that night and when he climbed cautiously in": [65535, 0], "that night and when he climbed cautiously in at": [65535, 0], "night and when he climbed cautiously in at the": [65535, 0], "and when he climbed cautiously in at the window": [65535, 0], "when he climbed cautiously in at the window he": [65535, 0], "he climbed cautiously in at the window he uncovered": [65535, 0], "climbed cautiously in at the window he uncovered an": [65535, 0], "cautiously in at the window he uncovered an ambuscade": [65535, 0], "in at the window he uncovered an ambuscade in": [65535, 0], "at the window he uncovered an ambuscade in the": [65535, 0], "the window he uncovered an ambuscade in the person": [65535, 0], "window he uncovered an ambuscade in the person of": [65535, 0], "he uncovered an ambuscade in the person of his": [65535, 0], "uncovered an ambuscade in the person of his aunt": [65535, 0], "an ambuscade in the person of his aunt and": [65535, 0], "ambuscade in the person of his aunt and when": [65535, 0], "in the person of his aunt and when she": [65535, 0], "the person of his aunt and when she saw": [65535, 0], "person of his aunt and when she saw the": [65535, 0], "of his aunt and when she saw the state": [65535, 0], "his aunt and when she saw the state his": [65535, 0], "aunt and when she saw the state his clothes": [65535, 0], "and when she saw the state his clothes were": [65535, 0], "when she saw the state his clothes were in": [65535, 0], "she saw the state his clothes were in her": [65535, 0], "saw the state his clothes were in her resolution": [65535, 0], "the state his clothes were in her resolution to": [65535, 0], "state his clothes were in her resolution to turn": [65535, 0], "his clothes were in her resolution to turn his": [65535, 0], "clothes were in her resolution to turn his saturday": [65535, 0], "were in her resolution to turn his saturday holiday": [65535, 0], "in her resolution to turn his saturday holiday into": [65535, 0], "her resolution to turn his saturday holiday into captivity": [65535, 0], "resolution to turn his saturday holiday into captivity at": [65535, 0], "to turn his saturday holiday into captivity at hard": [65535, 0], "turn his saturday holiday into captivity at hard labor": [65535, 0], "his saturday holiday into captivity at hard labor became": [65535, 0], "saturday holiday into captivity at hard labor became adamantine": [65535, 0], "holiday into captivity at hard labor became adamantine in": [65535, 0], "into captivity at hard labor became adamantine in its": [65535, 0], "captivity at hard labor became adamantine in its firmness": [65535, 0], "tom no answer tom no answer what's gone with that": [65535, 0], "no answer tom no answer what's gone with that boy": [65535, 0], "answer tom no answer what's gone with that boy i": [65535, 0], "tom no answer what's gone with that boy i wonder": [65535, 0], "no answer what's gone with that boy i wonder you": [65535, 0], "answer what's gone with that boy i wonder you tom": [65535, 0], "what's gone with that boy i wonder you tom no": [65535, 0], "gone with that boy i wonder you tom no answer": [65535, 0], "with that boy i wonder you tom no answer the": [65535, 0], "that boy i wonder you tom no answer the old": [65535, 0], "boy i wonder you tom no answer the old lady": [65535, 0], "i wonder you tom no answer the old lady pulled": [65535, 0], "wonder you tom no answer the old lady pulled her": [65535, 0], "you tom no answer the old lady pulled her spectacles": [65535, 0], "tom no answer the old lady pulled her spectacles down": [65535, 0], "no answer the old lady pulled her spectacles down and": [65535, 0], "answer the old lady pulled her spectacles down and looked": [65535, 0], "the old lady pulled her spectacles down and looked over": [65535, 0], "old lady pulled her spectacles down and looked over them": [65535, 0], "lady pulled her spectacles down and looked over them about": [65535, 0], "pulled her spectacles down and looked over them about the": [65535, 0], "her spectacles down and looked over them about the room": [65535, 0], "spectacles down and looked over them about the room then": [65535, 0], "down and looked over them about the room then she": [65535, 0], "and looked over them about the room then she put": [65535, 0], "looked over them about the room then she put them": [65535, 0], "over them about the room then she put them up": [65535, 0], "them about the room then she put them up and": [65535, 0], "about the room then she put them up and looked": [65535, 0], "the room then she put them up and looked out": [65535, 0], "room then she put them up and looked out under": [65535, 0], "then she put them up and looked out under them": [65535, 0], "she put them up and looked out under them she": [65535, 0], "put them up and looked out under them she seldom": [65535, 0], "them up and looked out under them she seldom or": [65535, 0], "up and looked out under them she seldom or never": [65535, 0], "and looked out under them she seldom or never looked": [65535, 0], "looked out under them she seldom or never looked through": [65535, 0], "out under them she seldom or never looked through them": [65535, 0], "under them she seldom or never looked through them for": [65535, 0], "them she seldom or never looked through them for so": [65535, 0], "she seldom or never looked through them for so small": [65535, 0], "seldom or never looked through them for so small a": [65535, 0], "or never looked through them for so small a thing": [65535, 0], "never looked through them for so small a thing as": [65535, 0], "looked through them for so small a thing as a": [65535, 0], "through them for so small a thing as a boy": [65535, 0], "them for so small a thing as a boy they": [65535, 0], "for so small a thing as a boy they were": [65535, 0], "so small a thing as a boy they were her": [65535, 0], "small a thing as a boy they were her state": [65535, 0], "a thing as a boy they were her state pair": [65535, 0], "thing as a boy they were her state pair the": [65535, 0], "as a boy they were her state pair the pride": [65535, 0], "a boy they were her state pair the pride of": [65535, 0], "boy they were her state pair the pride of her": [65535, 0], "they were her state pair the pride of her heart": [65535, 0], "were her state pair the pride of her heart and": [65535, 0], "her state pair the pride of her heart and were": [65535, 0], "state pair the pride of her heart and were built": [65535, 0], "pair the pride of her heart and were built for": [65535, 0], "the pride of her heart and were built for style": [65535, 0], "pride of her heart and were built for style not": [65535, 0], "of her heart and were built for style not service": [65535, 0], "her heart and were built for style not service she": [65535, 0], "heart and were built for style not service she could": [65535, 0], "and were built for style not service she could have": [65535, 0], "were built for style not service she could have seen": [65535, 0], "built for style not service she could have seen through": [65535, 0], "for style not service she could have seen through a": [65535, 0], "style not service she could have seen through a pair": [65535, 0], "not service she could have seen through a pair of": [65535, 0], "service she could have seen through a pair of stove": [65535, 0], "she could have seen through a pair of stove lids": [65535, 0], "could have seen through a pair of stove lids just": [65535, 0], "have seen through a pair of stove lids just as": [65535, 0], "seen through a pair of stove lids just as well": [65535, 0], "through a pair of stove lids just as well she": [65535, 0], "a pair of stove lids just as well she looked": [65535, 0], "pair of stove lids just as well she looked perplexed": [65535, 0], "of stove lids just as well she looked perplexed for": [65535, 0], "stove lids just as well she looked perplexed for a": [65535, 0], "lids just as well she looked perplexed for a moment": [65535, 0], "just as well she looked perplexed for a moment and": [65535, 0], "as well she looked perplexed for a moment and then": [65535, 0], "well she looked perplexed for a moment and then said": [65535, 0], "she looked perplexed for a moment and then said not": [65535, 0], "looked perplexed for a moment and then said not fiercely": [65535, 0], "perplexed for a moment and then said not fiercely but": [65535, 0], "for a moment and then said not fiercely but still": [65535, 0], "a moment and then said not fiercely but still loud": [65535, 0], "moment and then said not fiercely but still loud enough": [65535, 0], "and then said not fiercely but still loud enough for": [65535, 0], "then said not fiercely but still loud enough for the": [65535, 0], "said not fiercely but still loud enough for the furniture": [65535, 0], "not fiercely but still loud enough for the furniture to": [65535, 0], "fiercely but still loud enough for the furniture to hear": [65535, 0], "but still loud enough for the furniture to hear well": [65535, 0], "still loud enough for the furniture to hear well i": [65535, 0], "loud enough for the furniture to hear well i lay": [65535, 0], "enough for the furniture to hear well i lay if": [65535, 0], "for the furniture to hear well i lay if i": [65535, 0], "the furniture to hear well i lay if i get": [65535, 0], "furniture to hear well i lay if i get hold": [65535, 0], "to hear well i lay if i get hold of": [65535, 0], "hear well i lay if i get hold of you": [65535, 0], "well i lay if i get hold of you i'll": [65535, 0], "i lay if i get hold of you i'll she": [65535, 0], "lay if i get hold of you i'll she did": [65535, 0], "if i get hold of you i'll she did not": [65535, 0], "i get hold of you i'll she did not finish": [65535, 0], "get hold of you i'll she did not finish for": [65535, 0], "hold of you i'll she did not finish for by": [65535, 0], "of you i'll she did not finish for by this": [65535, 0], "you i'll she did not finish for by this time": [65535, 0], "i'll she did not finish for by this time she": [65535, 0], "she did not finish for by this time she was": [65535, 0], "did not finish for by this time she was bending": [65535, 0], "not finish for by this time she was bending down": [65535, 0], "finish for by this time she was bending down and": [65535, 0], "for by this time she was bending down and punching": [65535, 0], "by this time she was bending down and punching under": [65535, 0], "this time she was bending down and punching under the": [65535, 0], "time she was bending down and punching under the bed": [65535, 0], "she was bending down and punching under the bed with": [65535, 0], "was bending down and punching under the bed with the": [65535, 0], "bending down and punching under the bed with the broom": [65535, 0], "down and punching under the bed with the broom and": [65535, 0], "and punching under the bed with the broom and so": [65535, 0], "punching under the bed with the broom and so she": [65535, 0], "under the bed with the broom and so she needed": [65535, 0], "the bed with the broom and so she needed breath": [65535, 0], "bed with the broom and so she needed breath to": [65535, 0], "with the broom and so she needed breath to punctuate": [65535, 0], "the broom and so she needed breath to punctuate the": [65535, 0], "broom and so she needed breath to punctuate the punches": [65535, 0], "and so she needed breath to punctuate the punches with": [65535, 0], "so she needed breath to punctuate the punches with she": [65535, 0], "she needed breath to punctuate the punches with she resurrected": [65535, 0], "needed breath to punctuate the punches with she resurrected nothing": [65535, 0], "breath to punctuate the punches with she resurrected nothing but": [65535, 0], "to punctuate the punches with she resurrected nothing but the": [65535, 0], "punctuate the punches with she resurrected nothing but the cat": [65535, 0], "the punches with she resurrected nothing but the cat i": [65535, 0], "punches with she resurrected nothing but the cat i never": [65535, 0], "with she resurrected nothing but the cat i never did": [65535, 0], "she resurrected nothing but the cat i never did see": [65535, 0], "resurrected nothing but the cat i never did see the": [65535, 0], "nothing but the cat i never did see the beat": [65535, 0], "but the cat i never did see the beat of": [65535, 0], "the cat i never did see the beat of that": [65535, 0], "cat i never did see the beat of that boy": [65535, 0], "i never did see the beat of that boy she": [65535, 0], "never did see the beat of that boy she went": [65535, 0], "did see the beat of that boy she went to": [65535, 0], "see the beat of that boy she went to the": [65535, 0], "the beat of that boy she went to the open": [65535, 0], "beat of that boy she went to the open door": [65535, 0], "of that boy she went to the open door and": [65535, 0], "that boy she went to the open door and stood": [65535, 0], "boy she went to the open door and stood in": [65535, 0], "she went to the open door and stood in it": [65535, 0], "went to the open door and stood in it and": [65535, 0], "to the open door and stood in it and looked": [65535, 0], "the open door and stood in it and looked out": [65535, 0], "open door and stood in it and looked out among": [65535, 0], "door and stood in it and looked out among the": [65535, 0], "and stood in it and looked out among the tomato": [65535, 0], "stood in it and looked out among the tomato vines": [65535, 0], "in it and looked out among the tomato vines and": [65535, 0], "it and looked out among the tomato vines and jimpson": [65535, 0], "and looked out among the tomato vines and jimpson weeds": [65535, 0], "looked out among the tomato vines and jimpson weeds that": [65535, 0], "out among the tomato vines and jimpson weeds that constituted": [65535, 0], "among the tomato vines and jimpson weeds that constituted the": [65535, 0], "the tomato vines and jimpson weeds that constituted the garden": [65535, 0], "tomato vines and jimpson weeds that constituted the garden no": [65535, 0], "vines and jimpson weeds that constituted the garden no tom": [65535, 0], "and jimpson weeds that constituted the garden no tom so": [65535, 0], "jimpson weeds that constituted the garden no tom so she": [65535, 0], "weeds that constituted the garden no tom so she lifted": [65535, 0], "that constituted the garden no tom so she lifted up": [65535, 0], "constituted the garden no tom so she lifted up her": [65535, 0], "the garden no tom so she lifted up her voice": [65535, 0], "garden no tom so she lifted up her voice at": [65535, 0], "no tom so she lifted up her voice at an": [65535, 0], "tom so she lifted up her voice at an angle": [65535, 0], "so she lifted up her voice at an angle calculated": [65535, 0], "she lifted up her voice at an angle calculated for": [65535, 0], "lifted up her voice at an angle calculated for distance": [65535, 0], "up her voice at an angle calculated for distance and": [65535, 0], "her voice at an angle calculated for distance and shouted": [65535, 0], "voice at an angle calculated for distance and shouted y": [65535, 0], "at an angle calculated for distance and shouted y o": [65535, 0], "an angle calculated for distance and shouted y o u": [65535, 0], "angle calculated for distance and shouted y o u u": [65535, 0], "calculated for distance and shouted y o u u tom": [65535, 0], "for distance and shouted y o u u tom there": [65535, 0], "distance and shouted y o u u tom there was": [65535, 0], "and shouted y o u u tom there was a": [65535, 0], "shouted y o u u tom there was a slight": [65535, 0], "y o u u tom there was a slight noise": [65535, 0], "o u u tom there was a slight noise behind": [65535, 0], "u u tom there was a slight noise behind her": [65535, 0], "u tom there was a slight noise behind her and": [65535, 0], "tom there was a slight noise behind her and she": [65535, 0], "there was a slight noise behind her and she turned": [65535, 0], "was a slight noise behind her and she turned just": [65535, 0], "a slight noise behind her and she turned just in": [65535, 0], "slight noise behind her and she turned just in time": [65535, 0], "noise behind her and she turned just in time to": [65535, 0], "behind her and she turned just in time to seize": [65535, 0], "her and she turned just in time to seize a": [65535, 0], "and she turned just in time to seize a small": [65535, 0], "she turned just in time to seize a small boy": [65535, 0], "turned just in time to seize a small boy by": [65535, 0], "just in time to seize a small boy by the": [65535, 0], "in time to seize a small boy by the slack": [65535, 0], "time to seize a small boy by the slack of": [65535, 0], "to seize a small boy by the slack of his": [65535, 0], "seize a small boy by the slack of his roundabout": [65535, 0], "a small boy by the slack of his roundabout and": [65535, 0], "small boy by the slack of his roundabout and arrest": [65535, 0], "boy by the slack of his roundabout and arrest his": [65535, 0], "by the slack of his roundabout and arrest his flight": [65535, 0], "the slack of his roundabout and arrest his flight there": [65535, 0], "slack of his roundabout and arrest his flight there i": [65535, 0], "of his roundabout and arrest his flight there i might": [65535, 0], "his roundabout and arrest his flight there i might 'a'": [65535, 0], "roundabout and arrest his flight there i might 'a' thought": [65535, 0], "and arrest his flight there i might 'a' thought of": [65535, 0], "arrest his flight there i might 'a' thought of that": [65535, 0], "his flight there i might 'a' thought of that closet": [65535, 0], "flight there i might 'a' thought of that closet what": [65535, 0], "there i might 'a' thought of that closet what you": [65535, 0], "i might 'a' thought of that closet what you been": [65535, 0], "might 'a' thought of that closet what you been doing": [65535, 0], "'a' thought of that closet what you been doing in": [65535, 0], "thought of that closet what you been doing in there": [65535, 0], "of that closet what you been doing in there nothing": [65535, 0], "that closet what you been doing in there nothing nothing": [65535, 0], "closet what you been doing in there nothing nothing look": [65535, 0], "what you been doing in there nothing nothing look at": [65535, 0], "you been doing in there nothing nothing look at your": [65535, 0], "been doing in there nothing nothing look at your hands": [65535, 0], "doing in there nothing nothing look at your hands and": [65535, 0], "in there nothing nothing look at your hands and look": [65535, 0], "there nothing nothing look at your hands and look at": [65535, 0], "nothing nothing look at your hands and look at your": [65535, 0], "nothing look at your hands and look at your mouth": [65535, 0], "look at your hands and look at your mouth what": [65535, 0], "at your hands and look at your mouth what is": [65535, 0], "your hands and look at your mouth what is that": [65535, 0], "hands and look at your mouth what is that i": [65535, 0], "and look at your mouth what is that i don't": [65535, 0], "look at your mouth what is that i don't know": [65535, 0], "at your mouth what is that i don't know aunt": [65535, 0], "your mouth what is that i don't know aunt well": [65535, 0], "mouth what is that i don't know aunt well i": [65535, 0], "what is that i don't know aunt well i know": [65535, 0], "is that i don't know aunt well i know it's": [65535, 0], "that i don't know aunt well i know it's jam": [65535, 0], "i don't know aunt well i know it's jam that's": [65535, 0], "don't know aunt well i know it's jam that's what": [65535, 0], "know aunt well i know it's jam that's what it": [65535, 0], "aunt well i know it's jam that's what it is": [65535, 0], "well i know it's jam that's what it is forty": [65535, 0], "i know it's jam that's what it is forty times": [65535, 0], "know it's jam that's what it is forty times i've": [65535, 0], "it's jam that's what it is forty times i've said": [65535, 0], "jam that's what it is forty times i've said if": [65535, 0], "that's what it is forty times i've said if you": [65535, 0], "what it is forty times i've said if you didn't": [65535, 0], "it is forty times i've said if you didn't let": [65535, 0], "is forty times i've said if you didn't let that": [65535, 0], "forty times i've said if you didn't let that jam": [65535, 0], "times i've said if you didn't let that jam alone": [65535, 0], "i've said if you didn't let that jam alone i'd": [65535, 0], "said if you didn't let that jam alone i'd skin": [65535, 0], "if you didn't let that jam alone i'd skin you": [65535, 0], "you didn't let that jam alone i'd skin you hand": [65535, 0], "didn't let that jam alone i'd skin you hand me": [65535, 0], "let that jam alone i'd skin you hand me that": [65535, 0], "that jam alone i'd skin you hand me that switch": [65535, 0], "jam alone i'd skin you hand me that switch the": [65535, 0], "alone i'd skin you hand me that switch the switch": [65535, 0], "i'd skin you hand me that switch the switch hovered": [65535, 0], "skin you hand me that switch the switch hovered in": [65535, 0], "you hand me that switch the switch hovered in the": [65535, 0], "hand me that switch the switch hovered in the air": [65535, 0], "me that switch the switch hovered in the air the": [65535, 0], "that switch the switch hovered in the air the peril": [65535, 0], "switch the switch hovered in the air the peril was": [65535, 0], "the switch hovered in the air the peril was desperate": [65535, 0], "switch hovered in the air the peril was desperate my": [65535, 0], "hovered in the air the peril was desperate my look": [65535, 0], "in the air the peril was desperate my look behind": [65535, 0], "the air the peril was desperate my look behind you": [65535, 0], "air the peril was desperate my look behind you aunt": [65535, 0], "the peril was desperate my look behind you aunt the": [65535, 0], "peril was desperate my look behind you aunt the old": [65535, 0], "was desperate my look behind you aunt the old lady": [65535, 0], "desperate my look behind you aunt the old lady whirled": [65535, 0], "my look behind you aunt the old lady whirled round": [65535, 0], "look behind you aunt the old lady whirled round and": [65535, 0], "behind you aunt the old lady whirled round and snatched": [65535, 0], "you aunt the old lady whirled round and snatched her": [65535, 0], "aunt the old lady whirled round and snatched her skirts": [65535, 0], "the old lady whirled round and snatched her skirts out": [65535, 0], "old lady whirled round and snatched her skirts out of": [65535, 0], "lady whirled round and snatched her skirts out of danger": [65535, 0], "whirled round and snatched her skirts out of danger the": [65535, 0], "round and snatched her skirts out of danger the lad": [65535, 0], "and snatched her skirts out of danger the lad fled": [65535, 0], "snatched her skirts out of danger the lad fled on": [65535, 0], "her skirts out of danger the lad fled on the": [65535, 0], "skirts out of danger the lad fled on the instant": [65535, 0], "out of danger the lad fled on the instant scrambled": [65535, 0], "of danger the lad fled on the instant scrambled up": [65535, 0], "danger the lad fled on the instant scrambled up the": [65535, 0], "the lad fled on the instant scrambled up the high": [65535, 0], "lad fled on the instant scrambled up the high board": [65535, 0], "fled on the instant scrambled up the high board fence": [65535, 0], "on the instant scrambled up the high board fence and": [65535, 0], "the instant scrambled up the high board fence and disappeared": [65535, 0], "instant scrambled up the high board fence and disappeared over": [65535, 0], "scrambled up the high board fence and disappeared over it": [65535, 0], "up the high board fence and disappeared over it his": [65535, 0], "the high board fence and disappeared over it his aunt": [65535, 0], "high board fence and disappeared over it his aunt polly": [65535, 0], "board fence and disappeared over it his aunt polly stood": [65535, 0], "fence and disappeared over it his aunt polly stood surprised": [65535, 0], "and disappeared over it his aunt polly stood surprised a": [65535, 0], "disappeared over it his aunt polly stood surprised a moment": [65535, 0], "over it his aunt polly stood surprised a moment and": [65535, 0], "it his aunt polly stood surprised a moment and then": [65535, 0], "his aunt polly stood surprised a moment and then broke": [65535, 0], "aunt polly stood surprised a moment and then broke into": [65535, 0], "polly stood surprised a moment and then broke into a": [65535, 0], "stood surprised a moment and then broke into a gentle": [65535, 0], "surprised a moment and then broke into a gentle laugh": [65535, 0], "a moment and then broke into a gentle laugh hang": [65535, 0], "moment and then broke into a gentle laugh hang the": [65535, 0], "and then broke into a gentle laugh hang the boy": [65535, 0], "then broke into a gentle laugh hang the boy can't": [65535, 0], "broke into a gentle laugh hang the boy can't i": [65535, 0], "into a gentle laugh hang the boy can't i never": [65535, 0], "a gentle laugh hang the boy can't i never learn": [65535, 0], "gentle laugh hang the boy can't i never learn anything": [65535, 0], "laugh hang the boy can't i never learn anything ain't": [65535, 0], "hang the boy can't i never learn anything ain't he": [65535, 0], "the boy can't i never learn anything ain't he played": [65535, 0], "boy can't i never learn anything ain't he played me": [65535, 0], "can't i never learn anything ain't he played me tricks": [65535, 0], "i never learn anything ain't he played me tricks enough": [65535, 0], "never learn anything ain't he played me tricks enough like": [65535, 0], "learn anything ain't he played me tricks enough like that": [65535, 0], "anything ain't he played me tricks enough like that for": [65535, 0], "ain't he played me tricks enough like that for me": [65535, 0], "he played me tricks enough like that for me to": [65535, 0], "played me tricks enough like that for me to be": [65535, 0], "me tricks enough like that for me to be looking": [65535, 0], "tricks enough like that for me to be looking out": [65535, 0], "enough like that for me to be looking out for": [65535, 0], "like that for me to be looking out for him": [65535, 0], "that for me to be looking out for him by": [65535, 0], "for me to be looking out for him by this": [65535, 0], "me to be looking out for him by this time": [65535, 0], "to be looking out for him by this time but": [65535, 0], "be looking out for him by this time but old": [65535, 0], "looking out for him by this time but old fools": [65535, 0], "out for him by this time but old fools is": [65535, 0], "for him by this time but old fools is the": [65535, 0], "him by this time but old fools is the biggest": [65535, 0], "by this time but old fools is the biggest fools": [65535, 0], "this time but old fools is the biggest fools there": [65535, 0], "time but old fools is the biggest fools there is": [65535, 0], "but old fools is the biggest fools there is can't": [65535, 0], "old fools is the biggest fools there is can't learn": [65535, 0], "fools is the biggest fools there is can't learn an": [65535, 0], "is the biggest fools there is can't learn an old": [65535, 0], "the biggest fools there is can't learn an old dog": [65535, 0], "biggest fools there is can't learn an old dog new": [65535, 0], "fools there is can't learn an old dog new tricks": [65535, 0], "there is can't learn an old dog new tricks as": [65535, 0], "is can't learn an old dog new tricks as the": [65535, 0], "can't learn an old dog new tricks as the saying": [65535, 0], "learn an old dog new tricks as the saying is": [65535, 0], "an old dog new tricks as the saying is but": [65535, 0], "old dog new tricks as the saying is but my": [65535, 0], "dog new tricks as the saying is but my goodness": [65535, 0], "new tricks as the saying is but my goodness he": [65535, 0], "tricks as the saying is but my goodness he never": [65535, 0], "as the saying is but my goodness he never plays": [65535, 0], "the saying is but my goodness he never plays them": [65535, 0], "saying is but my goodness he never plays them alike": [65535, 0], "is but my goodness he never plays them alike two": [65535, 0], "but my goodness he never plays them alike two days": [65535, 0], "my goodness he never plays them alike two days and": [65535, 0], "goodness he never plays them alike two days and how": [65535, 0], "he never plays them alike two days and how is": [65535, 0], "never plays them alike two days and how is a": [65535, 0], "plays them alike two days and how is a body": [65535, 0], "them alike two days and how is a body to": [65535, 0], "alike two days and how is a body to know": [65535, 0], "two days and how is a body to know what's": [65535, 0], "days and how is a body to know what's coming": [65535, 0], "and how is a body to know what's coming he": [65535, 0], "how is a body to know what's coming he 'pears": [65535, 0], "is a body to know what's coming he 'pears to": [65535, 0], "a body to know what's coming he 'pears to know": [65535, 0], "body to know what's coming he 'pears to know just": [65535, 0], "to know what's coming he 'pears to know just how": [65535, 0], "know what's coming he 'pears to know just how long": [65535, 0], "what's coming he 'pears to know just how long he": [65535, 0], "coming he 'pears to know just how long he can": [65535, 0], "he 'pears to know just how long he can torment": [65535, 0], "'pears to know just how long he can torment me": [65535, 0], "to know just how long he can torment me before": [65535, 0], "know just how long he can torment me before i": [65535, 0], "just how long he can torment me before i get": [65535, 0], "how long he can torment me before i get my": [65535, 0], "long he can torment me before i get my dander": [65535, 0], "he can torment me before i get my dander up": [65535, 0], "can torment me before i get my dander up and": [65535, 0], "torment me before i get my dander up and he": [65535, 0], "me before i get my dander up and he knows": [65535, 0], "before i get my dander up and he knows if": [65535, 0], "i get my dander up and he knows if he": [65535, 0], "get my dander up and he knows if he can": [65535, 0], "my dander up and he knows if he can make": [65535, 0], "dander up and he knows if he can make out": [65535, 0], "up and he knows if he can make out to": [65535, 0], "and he knows if he can make out to put": [65535, 0], "he knows if he can make out to put me": [65535, 0], "knows if he can make out to put me off": [65535, 0], "if he can make out to put me off for": [65535, 0], "he can make out to put me off for a": [65535, 0], "can make out to put me off for a minute": [65535, 0], "make out to put me off for a minute or": [65535, 0], "out to put me off for a minute or make": [65535, 0], "to put me off for a minute or make me": [65535, 0], "put me off for a minute or make me laugh": [65535, 0], "me off for a minute or make me laugh it's": [65535, 0], "off for a minute or make me laugh it's all": [65535, 0], "for a minute or make me laugh it's all down": [65535, 0], "a minute or make me laugh it's all down again": [65535, 0], "minute or make me laugh it's all down again and": [65535, 0], "or make me laugh it's all down again and i": [65535, 0], "make me laugh it's all down again and i can't": [65535, 0], "me laugh it's all down again and i can't hit": [65535, 0], "laugh it's all down again and i can't hit him": [65535, 0], "it's all down again and i can't hit him a": [65535, 0], "all down again and i can't hit him a lick": [65535, 0], "down again and i can't hit him a lick i": [65535, 0], "again and i can't hit him a lick i ain't": [65535, 0], "and i can't hit him a lick i ain't doing": [65535, 0], "i can't hit him a lick i ain't doing my": [65535, 0], "can't hit him a lick i ain't doing my duty": [65535, 0], "hit him a lick i ain't doing my duty by": [65535, 0], "him a lick i ain't doing my duty by that": [65535, 0], "a lick i ain't doing my duty by that boy": [65535, 0], "lick i ain't doing my duty by that boy and": [65535, 0], "i ain't doing my duty by that boy and that's": [65535, 0], "ain't doing my duty by that boy and that's the": [65535, 0], "doing my duty by that boy and that's the lord's": [65535, 0], "my duty by that boy and that's the lord's truth": [65535, 0], "duty by that boy and that's the lord's truth goodness": [65535, 0], "by that boy and that's the lord's truth goodness knows": [65535, 0], "that boy and that's the lord's truth goodness knows spare": [65535, 0], "boy and that's the lord's truth goodness knows spare the": [65535, 0], "and that's the lord's truth goodness knows spare the rod": [65535, 0], "that's the lord's truth goodness knows spare the rod and": [65535, 0], "the lord's truth goodness knows spare the rod and spoil": [65535, 0], "lord's truth goodness knows spare the rod and spoil the": [65535, 0], "truth goodness knows spare the rod and spoil the child": [65535, 0], "goodness knows spare the rod and spoil the child as": [65535, 0], "knows spare the rod and spoil the child as the": [65535, 0], "spare the rod and spoil the child as the good": [65535, 0], "the rod and spoil the child as the good book": [65535, 0], "rod and spoil the child as the good book says": [65535, 0], "and spoil the child as the good book says i'm": [65535, 0], "spoil the child as the good book says i'm a": [65535, 0], "the child as the good book says i'm a laying": [65535, 0], "child as the good book says i'm a laying up": [65535, 0], "as the good book says i'm a laying up sin": [65535, 0], "the good book says i'm a laying up sin and": [65535, 0], "good book says i'm a laying up sin and suffering": [65535, 0], "book says i'm a laying up sin and suffering for": [65535, 0], "says i'm a laying up sin and suffering for us": [65535, 0], "i'm a laying up sin and suffering for us both": [65535, 0], "a laying up sin and suffering for us both i": [65535, 0], "laying up sin and suffering for us both i know": [65535, 0], "up sin and suffering for us both i know he's": [65535, 0], "sin and suffering for us both i know he's full": [65535, 0], "and suffering for us both i know he's full of": [65535, 0], "suffering for us both i know he's full of the": [65535, 0], "for us both i know he's full of the old": [65535, 0], "us both i know he's full of the old scratch": [65535, 0], "both i know he's full of the old scratch but": [65535, 0], "i know he's full of the old scratch but laws": [65535, 0], "know he's full of the old scratch but laws a": [65535, 0], "he's full of the old scratch but laws a me": [65535, 0], "full of the old scratch but laws a me he's": [65535, 0], "of the old scratch but laws a me he's my": [65535, 0], "the old scratch but laws a me he's my own": [65535, 0], "old scratch but laws a me he's my own dead": [65535, 0], "scratch but laws a me he's my own dead sister's": [65535, 0], "but laws a me he's my own dead sister's boy": [65535, 0], "laws a me he's my own dead sister's boy poor": [65535, 0], "a me he's my own dead sister's boy poor thing": [65535, 0], "me he's my own dead sister's boy poor thing and": [65535, 0], "he's my own dead sister's boy poor thing and i": [65535, 0], "my own dead sister's boy poor thing and i ain't": [65535, 0], "own dead sister's boy poor thing and i ain't got": [65535, 0], "dead sister's boy poor thing and i ain't got the": [65535, 0], "sister's boy poor thing and i ain't got the heart": [65535, 0], "boy poor thing and i ain't got the heart to": [65535, 0], "poor thing and i ain't got the heart to lash": [65535, 0], "thing and i ain't got the heart to lash him": [65535, 0], "and i ain't got the heart to lash him somehow": [65535, 0], "i ain't got the heart to lash him somehow every": [65535, 0], "ain't got the heart to lash him somehow every time": [65535, 0], "got the heart to lash him somehow every time i": [65535, 0], "the heart to lash him somehow every time i let": [65535, 0], "heart to lash him somehow every time i let him": [65535, 0], "to lash him somehow every time i let him off": [65535, 0], "lash him somehow every time i let him off my": [65535, 0], "him somehow every time i let him off my conscience": [65535, 0], "somehow every time i let him off my conscience does": [65535, 0], "every time i let him off my conscience does hurt": [65535, 0], "time i let him off my conscience does hurt me": [65535, 0], "i let him off my conscience does hurt me so": [65535, 0], "let him off my conscience does hurt me so and": [65535, 0], "him off my conscience does hurt me so and every": [65535, 0], "off my conscience does hurt me so and every time": [65535, 0], "my conscience does hurt me so and every time i": [65535, 0], "conscience does hurt me so and every time i hit": [65535, 0], "does hurt me so and every time i hit him": [65535, 0], "hurt me so and every time i hit him my": [65535, 0], "me so and every time i hit him my old": [65535, 0], "so and every time i hit him my old heart": [65535, 0], "and every time i hit him my old heart most": [65535, 0], "every time i hit him my old heart most breaks": [65535, 0], "time i hit him my old heart most breaks well": [65535, 0], "i hit him my old heart most breaks well a": [65535, 0], "hit him my old heart most breaks well a well": [65535, 0], "him my old heart most breaks well a well man": [65535, 0], "my old heart most breaks well a well man that": [65535, 0], "old heart most breaks well a well man that is": [65535, 0], "heart most breaks well a well man that is born": [65535, 0], "most breaks well a well man that is born of": [65535, 0], "breaks well a well man that is born of woman": [65535, 0], "well a well man that is born of woman is": [65535, 0], "a well man that is born of woman is of": [65535, 0], "well man that is born of woman is of few": [65535, 0], "man that is born of woman is of few days": [65535, 0], "that is born of woman is of few days and": [65535, 0], "is born of woman is of few days and full": [65535, 0], "born of woman is of few days and full of": [65535, 0], "of woman is of few days and full of trouble": [65535, 0], "woman is of few days and full of trouble as": [65535, 0], "is of few days and full of trouble as the": [65535, 0], "of few days and full of trouble as the scripture": [65535, 0], "few days and full of trouble as the scripture says": [65535, 0], "days and full of trouble as the scripture says and": [65535, 0], "and full of trouble as the scripture says and i": [65535, 0], "full of trouble as the scripture says and i reckon": [65535, 0], "of trouble as the scripture says and i reckon it's": [65535, 0], "trouble as the scripture says and i reckon it's so": [65535, 0], "as the scripture says and i reckon it's so he'll": [65535, 0], "the scripture says and i reckon it's so he'll play": [65535, 0], "scripture says and i reckon it's so he'll play hookey": [65535, 0], "says and i reckon it's so he'll play hookey this": [65535, 0], "and i reckon it's so he'll play hookey this evening": [65535, 0], "i reckon it's so he'll play hookey this evening and": [65535, 0], "reckon it's so he'll play hookey this evening and i'll": [65535, 0], "it's so he'll play hookey this evening and i'll just": [65535, 0], "so he'll play hookey this evening and i'll just be": [65535, 0], "he'll play hookey this evening and i'll just be obliged": [65535, 0], "play hookey this evening and i'll just be obliged to": [65535, 0], "hookey this evening and i'll just be obliged to make": [65535, 0], "this evening and i'll just be obliged to make him": [65535, 0], "evening and i'll just be obliged to make him work": [65535, 0], "and i'll just be obliged to make him work to": [65535, 0], "i'll just be obliged to make him work to morrow": [65535, 0], "just be obliged to make him work to morrow to": [65535, 0], "be obliged to make him work to morrow to punish": [65535, 0], "obliged to make him work to morrow to punish him": [65535, 0], "to make him work to morrow to punish him it's": [65535, 0], "make him work to morrow to punish him it's mighty": [65535, 0], "him work to morrow to punish him it's mighty hard": [65535, 0], "work to morrow to punish him it's mighty hard to": [65535, 0], "to morrow to punish him it's mighty hard to make": [65535, 0], "morrow to punish him it's mighty hard to make him": [65535, 0], "to punish him it's mighty hard to make him work": [65535, 0], "punish him it's mighty hard to make him work saturdays": [65535, 0], "him it's mighty hard to make him work saturdays when": [65535, 0], "it's mighty hard to make him work saturdays when all": [65535, 0], "mighty hard to make him work saturdays when all the": [65535, 0], "hard to make him work saturdays when all the boys": [65535, 0], "to make him work saturdays when all the boys is": [65535, 0], "make him work saturdays when all the boys is having": [65535, 0], "him work saturdays when all the boys is having holiday": [65535, 0], "work saturdays when all the boys is having holiday but": [65535, 0], "saturdays when all the boys is having holiday but he": [65535, 0], "when all the boys is having holiday but he hates": [65535, 0], "all the boys is having holiday but he hates work": [65535, 0], "the boys is having holiday but he hates work more": [65535, 0], "boys is having holiday but he hates work more than": [65535, 0], "is having holiday but he hates work more than he": [65535, 0], "having holiday but he hates work more than he hates": [65535, 0], "holiday but he hates work more than he hates anything": [65535, 0], "but he hates work more than he hates anything else": [65535, 0], "he hates work more than he hates anything else and": [65535, 0], "hates work more than he hates anything else and i've": [65535, 0], "work more than he hates anything else and i've got": [65535, 0], "more than he hates anything else and i've got to": [65535, 0], "than he hates anything else and i've got to do": [65535, 0], "he hates anything else and i've got to do some": [65535, 0], "hates anything else and i've got to do some of": [65535, 0], "anything else and i've got to do some of my": [65535, 0], "else and i've got to do some of my duty": [65535, 0], "and i've got to do some of my duty by": [65535, 0], "i've got to do some of my duty by him": [65535, 0], "got to do some of my duty by him or": [65535, 0], "to do some of my duty by him or i'll": [65535, 0], "do some of my duty by him or i'll be": [65535, 0], "some of my duty by him or i'll be the": [65535, 0], "of my duty by him or i'll be the ruination": [65535, 0], "my duty by him or i'll be the ruination of": [65535, 0], "duty by him or i'll be the ruination of the": [65535, 0], "by him or i'll be the ruination of the child": [65535, 0], "him or i'll be the ruination of the child tom": [65535, 0], "or i'll be the ruination of the child tom did": [65535, 0], "i'll be the ruination of the child tom did play": [65535, 0], "be the ruination of the child tom did play hookey": [65535, 0], "the ruination of the child tom did play hookey and": [65535, 0], "ruination of the child tom did play hookey and he": [65535, 0], "of the child tom did play hookey and he had": [65535, 0], "the child tom did play hookey and he had a": [65535, 0], "child tom did play hookey and he had a very": [65535, 0], "tom did play hookey and he had a very good": [65535, 0], "did play hookey and he had a very good time": [65535, 0], "play hookey and he had a very good time he": [65535, 0], "hookey and he had a very good time he got": [65535, 0], "and he had a very good time he got back": [65535, 0], "he had a very good time he got back home": [65535, 0], "had a very good time he got back home barely": [65535, 0], "a very good time he got back home barely in": [65535, 0], "very good time he got back home barely in season": [65535, 0], "good time he got back home barely in season to": [65535, 0], "time he got back home barely in season to help": [65535, 0], "he got back home barely in season to help jim": [65535, 0], "got back home barely in season to help jim the": [65535, 0], "back home barely in season to help jim the small": [65535, 0], "home barely in season to help jim the small colored": [65535, 0], "barely in season to help jim the small colored boy": [65535, 0], "in season to help jim the small colored boy saw": [65535, 0], "season to help jim the small colored boy saw next": [65535, 0], "to help jim the small colored boy saw next day's": [65535, 0], "help jim the small colored boy saw next day's wood": [65535, 0], "jim the small colored boy saw next day's wood and": [65535, 0], "the small colored boy saw next day's wood and split": [65535, 0], "small colored boy saw next day's wood and split the": [65535, 0], "colored boy saw next day's wood and split the kindlings": [65535, 0], "boy saw next day's wood and split the kindlings before": [65535, 0], "saw next day's wood and split the kindlings before supper": [65535, 0], "next day's wood and split the kindlings before supper at": [65535, 0], "day's wood and split the kindlings before supper at least": [65535, 0], "wood and split the kindlings before supper at least he": [65535, 0], "and split the kindlings before supper at least he was": [65535, 0], "split the kindlings before supper at least he was there": [65535, 0], "the kindlings before supper at least he was there in": [65535, 0], "kindlings before supper at least he was there in time": [65535, 0], "before supper at least he was there in time to": [65535, 0], "supper at least he was there in time to tell": [65535, 0], "at least he was there in time to tell his": [65535, 0], "least he was there in time to tell his adventures": [65535, 0], "he was there in time to tell his adventures to": [65535, 0], "was there in time to tell his adventures to jim": [65535, 0], "there in time to tell his adventures to jim while": [65535, 0], "in time to tell his adventures to jim while jim": [65535, 0], "time to tell his adventures to jim while jim did": [65535, 0], "to tell his adventures to jim while jim did three": [65535, 0], "tell his adventures to jim while jim did three fourths": [65535, 0], "his adventures to jim while jim did three fourths of": [65535, 0], "adventures to jim while jim did three fourths of the": [65535, 0], "to jim while jim did three fourths of the work": [65535, 0], "jim while jim did three fourths of the work tom's": [65535, 0], "while jim did three fourths of the work tom's younger": [65535, 0], "jim did three fourths of the work tom's younger brother": [65535, 0], "did three fourths of the work tom's younger brother or": [65535, 0], "three fourths of the work tom's younger brother or rather": [65535, 0], "fourths of the work tom's younger brother or rather half": [65535, 0], "of the work tom's younger brother or rather half brother": [65535, 0], "the work tom's younger brother or rather half brother sid": [65535, 0], "work tom's younger brother or rather half brother sid was": [65535, 0], "tom's younger brother or rather half brother sid was already": [65535, 0], "younger brother or rather half brother sid was already through": [65535, 0], "brother or rather half brother sid was already through with": [65535, 0], "or rather half brother sid was already through with his": [65535, 0], "rather half brother sid was already through with his part": [65535, 0], "half brother sid was already through with his part of": [65535, 0], "brother sid was already through with his part of the": [65535, 0], "sid was already through with his part of the work": [65535, 0], "was already through with his part of the work picking": [65535, 0], "already through with his part of the work picking up": [65535, 0], "through with his part of the work picking up chips": [65535, 0], "with his part of the work picking up chips for": [65535, 0], "his part of the work picking up chips for he": [65535, 0], "part of the work picking up chips for he was": [65535, 0], "of the work picking up chips for he was a": [65535, 0], "the work picking up chips for he was a quiet": [65535, 0], "work picking up chips for he was a quiet boy": [65535, 0], "picking up chips for he was a quiet boy and": [65535, 0], "up chips for he was a quiet boy and had": [65535, 0], "chips for he was a quiet boy and had no": [65535, 0], "for he was a quiet boy and had no adventurous": [65535, 0], "he was a quiet boy and had no adventurous troublesome": [65535, 0], "was a quiet boy and had no adventurous troublesome ways": [65535, 0], "a quiet boy and had no adventurous troublesome ways while": [65535, 0], "quiet boy and had no adventurous troublesome ways while tom": [65535, 0], "boy and had no adventurous troublesome ways while tom was": [65535, 0], "and had no adventurous troublesome ways while tom was eating": [65535, 0], "had no adventurous troublesome ways while tom was eating his": [65535, 0], "no adventurous troublesome ways while tom was eating his supper": [65535, 0], "adventurous troublesome ways while tom was eating his supper and": [65535, 0], "troublesome ways while tom was eating his supper and stealing": [65535, 0], "ways while tom was eating his supper and stealing sugar": [65535, 0], "while tom was eating his supper and stealing sugar as": [65535, 0], "tom was eating his supper and stealing sugar as opportunity": [65535, 0], "was eating his supper and stealing sugar as opportunity offered": [65535, 0], "eating his supper and stealing sugar as opportunity offered aunt": [65535, 0], "his supper and stealing sugar as opportunity offered aunt polly": [65535, 0], "supper and stealing sugar as opportunity offered aunt polly asked": [65535, 0], "and stealing sugar as opportunity offered aunt polly asked him": [65535, 0], "stealing sugar as opportunity offered aunt polly asked him questions": [65535, 0], "sugar as opportunity offered aunt polly asked him questions that": [65535, 0], "as opportunity offered aunt polly asked him questions that were": [65535, 0], "opportunity offered aunt polly asked him questions that were full": [65535, 0], "offered aunt polly asked him questions that were full of": [65535, 0], "aunt polly asked him questions that were full of guile": [65535, 0], "polly asked him questions that were full of guile and": [65535, 0], "asked him questions that were full of guile and very": [65535, 0], "him questions that were full of guile and very deep": [65535, 0], "questions that were full of guile and very deep for": [65535, 0], "that were full of guile and very deep for she": [65535, 0], "were full of guile and very deep for she wanted": [65535, 0], "full of guile and very deep for she wanted to": [65535, 0], "of guile and very deep for she wanted to trap": [65535, 0], "guile and very deep for she wanted to trap him": [65535, 0], "and very deep for she wanted to trap him into": [65535, 0], "very deep for she wanted to trap him into damaging": [65535, 0], "deep for she wanted to trap him into damaging revealments": [65535, 0], "for she wanted to trap him into damaging revealments like": [65535, 0], "she wanted to trap him into damaging revealments like many": [65535, 0], "wanted to trap him into damaging revealments like many other": [65535, 0], "to trap him into damaging revealments like many other simple": [65535, 0], "trap him into damaging revealments like many other simple hearted": [65535, 0], "him into damaging revealments like many other simple hearted souls": [65535, 0], "into damaging revealments like many other simple hearted souls it": [65535, 0], "damaging revealments like many other simple hearted souls it was": [65535, 0], "revealments like many other simple hearted souls it was her": [65535, 0], "like many other simple hearted souls it was her pet": [65535, 0], "many other simple hearted souls it was her pet vanity": [65535, 0], "other simple hearted souls it was her pet vanity to": [65535, 0], "simple hearted souls it was her pet vanity to believe": [65535, 0], "hearted souls it was her pet vanity to believe she": [65535, 0], "souls it was her pet vanity to believe she was": [65535, 0], "it was her pet vanity to believe she was endowed": [65535, 0], "was her pet vanity to believe she was endowed with": [65535, 0], "her pet vanity to believe she was endowed with a": [65535, 0], "pet vanity to believe she was endowed with a talent": [65535, 0], "vanity to believe she was endowed with a talent for": [65535, 0], "to believe she was endowed with a talent for dark": [65535, 0], "believe she was endowed with a talent for dark and": [65535, 0], "she was endowed with a talent for dark and mysterious": [65535, 0], "was endowed with a talent for dark and mysterious diplomacy": [65535, 0], "endowed with a talent for dark and mysterious diplomacy and": [65535, 0], "with a talent for dark and mysterious diplomacy and she": [65535, 0], "a talent for dark and mysterious diplomacy and she loved": [65535, 0], "talent for dark and mysterious diplomacy and she loved to": [65535, 0], "for dark and mysterious diplomacy and she loved to contemplate": [65535, 0], "dark and mysterious diplomacy and she loved to contemplate her": [65535, 0], "and mysterious diplomacy and she loved to contemplate her most": [65535, 0], "mysterious diplomacy and she loved to contemplate her most transparent": [65535, 0], "diplomacy and she loved to contemplate her most transparent devices": [65535, 0], "and she loved to contemplate her most transparent devices as": [65535, 0], "she loved to contemplate her most transparent devices as marvels": [65535, 0], "loved to contemplate her most transparent devices as marvels of": [65535, 0], "to contemplate her most transparent devices as marvels of low": [65535, 0], "contemplate her most transparent devices as marvels of low cunning": [65535, 0], "her most transparent devices as marvels of low cunning said": [65535, 0], "most transparent devices as marvels of low cunning said she": [65535, 0], "transparent devices as marvels of low cunning said she tom": [65535, 0], "devices as marvels of low cunning said she tom it": [65535, 0], "as marvels of low cunning said she tom it was": [65535, 0], "marvels of low cunning said she tom it was middling": [65535, 0], "of low cunning said she tom it was middling warm": [65535, 0], "low cunning said she tom it was middling warm in": [65535, 0], "cunning said she tom it was middling warm in school": [65535, 0], "said she tom it was middling warm in school warn't": [65535, 0], "she tom it was middling warm in school warn't it": [65535, 0], "tom it was middling warm in school warn't it yes'm": [65535, 0], "it was middling warm in school warn't it yes'm powerful": [65535, 0], "was middling warm in school warn't it yes'm powerful warm": [65535, 0], "middling warm in school warn't it yes'm powerful warm warn't": [65535, 0], "warm in school warn't it yes'm powerful warm warn't it": [65535, 0], "in school warn't it yes'm powerful warm warn't it yes'm": [65535, 0], "school warn't it yes'm powerful warm warn't it yes'm didn't": [65535, 0], "warn't it yes'm powerful warm warn't it yes'm didn't you": [65535, 0], "it yes'm powerful warm warn't it yes'm didn't you want": [65535, 0], "yes'm powerful warm warn't it yes'm didn't you want to": [65535, 0], "powerful warm warn't it yes'm didn't you want to go": [65535, 0], "warm warn't it yes'm didn't you want to go in": [65535, 0], "warn't it yes'm didn't you want to go in a": [65535, 0], "it yes'm didn't you want to go in a swimming": [65535, 0], "yes'm didn't you want to go in a swimming tom": [65535, 0], "didn't you want to go in a swimming tom a": [65535, 0], "you want to go in a swimming tom a bit": [65535, 0], "want to go in a swimming tom a bit of": [65535, 0], "to go in a swimming tom a bit of a": [65535, 0], "go in a swimming tom a bit of a scare": [65535, 0], "in a swimming tom a bit of a scare shot": [65535, 0], "a swimming tom a bit of a scare shot through": [65535, 0], "swimming tom a bit of a scare shot through tom": [65535, 0], "tom a bit of a scare shot through tom a": [65535, 0], "a bit of a scare shot through tom a touch": [65535, 0], "bit of a scare shot through tom a touch of": [65535, 0], "of a scare shot through tom a touch of uncomfortable": [65535, 0], "a scare shot through tom a touch of uncomfortable suspicion": [65535, 0], "scare shot through tom a touch of uncomfortable suspicion he": [65535, 0], "shot through tom a touch of uncomfortable suspicion he searched": [65535, 0], "through tom a touch of uncomfortable suspicion he searched aunt": [65535, 0], "tom a touch of uncomfortable suspicion he searched aunt polly's": [65535, 0], "a touch of uncomfortable suspicion he searched aunt polly's face": [65535, 0], "touch of uncomfortable suspicion he searched aunt polly's face but": [65535, 0], "of uncomfortable suspicion he searched aunt polly's face but it": [65535, 0], "uncomfortable suspicion he searched aunt polly's face but it told": [65535, 0], "suspicion he searched aunt polly's face but it told him": [65535, 0], "he searched aunt polly's face but it told him nothing": [65535, 0], "searched aunt polly's face but it told him nothing so": [65535, 0], "aunt polly's face but it told him nothing so he": [65535, 0], "polly's face but it told him nothing so he said": [65535, 0], "face but it told him nothing so he said no'm": [65535, 0], "but it told him nothing so he said no'm well": [65535, 0], "it told him nothing so he said no'm well not": [65535, 0], "told him nothing so he said no'm well not very": [65535, 0], "him nothing so he said no'm well not very much": [65535, 0], "nothing so he said no'm well not very much the": [65535, 0], "so he said no'm well not very much the old": [65535, 0], "he said no'm well not very much the old lady": [65535, 0], "said no'm well not very much the old lady reached": [65535, 0], "no'm well not very much the old lady reached out": [65535, 0], "well not very much the old lady reached out her": [65535, 0], "not very much the old lady reached out her hand": [65535, 0], "very much the old lady reached out her hand and": [65535, 0], "much the old lady reached out her hand and felt": [65535, 0], "the old lady reached out her hand and felt tom's": [65535, 0], "old lady reached out her hand and felt tom's shirt": [65535, 0], "lady reached out her hand and felt tom's shirt and": [65535, 0], "reached out her hand and felt tom's shirt and said": [65535, 0], "out her hand and felt tom's shirt and said but": [65535, 0], "her hand and felt tom's shirt and said but you": [65535, 0], "hand and felt tom's shirt and said but you ain't": [65535, 0], "and felt tom's shirt and said but you ain't too": [65535, 0], "felt tom's shirt and said but you ain't too warm": [65535, 0], "tom's shirt and said but you ain't too warm now": [65535, 0], "shirt and said but you ain't too warm now though": [65535, 0], "and said but you ain't too warm now though and": [65535, 0], "said but you ain't too warm now though and it": [65535, 0], "but you ain't too warm now though and it flattered": [65535, 0], "you ain't too warm now though and it flattered her": [65535, 0], "ain't too warm now though and it flattered her to": [65535, 0], "too warm now though and it flattered her to reflect": [65535, 0], "warm now though and it flattered her to reflect that": [65535, 0], "now though and it flattered her to reflect that she": [65535, 0], "though and it flattered her to reflect that she had": [65535, 0], "and it flattered her to reflect that she had discovered": [65535, 0], "it flattered her to reflect that she had discovered that": [65535, 0], "flattered her to reflect that she had discovered that the": [65535, 0], "her to reflect that she had discovered that the shirt": [65535, 0], "to reflect that she had discovered that the shirt was": [65535, 0], "reflect that she had discovered that the shirt was dry": [65535, 0], "that she had discovered that the shirt was dry without": [65535, 0], "she had discovered that the shirt was dry without anybody": [65535, 0], "had discovered that the shirt was dry without anybody knowing": [65535, 0], "discovered that the shirt was dry without anybody knowing that": [65535, 0], "that the shirt was dry without anybody knowing that that": [65535, 0], "the shirt was dry without anybody knowing that that was": [65535, 0], "shirt was dry without anybody knowing that that was what": [65535, 0], "was dry without anybody knowing that that was what she": [65535, 0], "dry without anybody knowing that that was what she had": [65535, 0], "without anybody knowing that that was what she had in": [65535, 0], "anybody knowing that that was what she had in her": [65535, 0], "knowing that that was what she had in her mind": [65535, 0], "that that was what she had in her mind but": [65535, 0], "that was what she had in her mind but in": [65535, 0], "was what she had in her mind but in spite": [65535, 0], "what she had in her mind but in spite of": [65535, 0], "she had in her mind but in spite of her": [65535, 0], "had in her mind but in spite of her tom": [65535, 0], "in her mind but in spite of her tom knew": [65535, 0], "her mind but in spite of her tom knew where": [65535, 0], "mind but in spite of her tom knew where the": [65535, 0], "but in spite of her tom knew where the wind": [65535, 0], "in spite of her tom knew where the wind lay": [65535, 0], "spite of her tom knew where the wind lay now": [65535, 0], "of her tom knew where the wind lay now so": [65535, 0], "her tom knew where the wind lay now so he": [65535, 0], "tom knew where the wind lay now so he forestalled": [65535, 0], "knew where the wind lay now so he forestalled what": [65535, 0], "where the wind lay now so he forestalled what might": [65535, 0], "the wind lay now so he forestalled what might be": [65535, 0], "wind lay now so he forestalled what might be the": [65535, 0], "lay now so he forestalled what might be the next": [65535, 0], "now so he forestalled what might be the next move": [65535, 0], "so he forestalled what might be the next move some": [65535, 0], "he forestalled what might be the next move some of": [65535, 0], "forestalled what might be the next move some of us": [65535, 0], "what might be the next move some of us pumped": [65535, 0], "might be the next move some of us pumped on": [65535, 0], "be the next move some of us pumped on our": [65535, 0], "the next move some of us pumped on our heads": [65535, 0], "next move some of us pumped on our heads mine's": [65535, 0], "move some of us pumped on our heads mine's damp": [65535, 0], "some of us pumped on our heads mine's damp yet": [65535, 0], "of us pumped on our heads mine's damp yet see": [65535, 0], "us pumped on our heads mine's damp yet see aunt": [65535, 0], "pumped on our heads mine's damp yet see aunt polly": [65535, 0], "on our heads mine's damp yet see aunt polly was": [65535, 0], "our heads mine's damp yet see aunt polly was vexed": [65535, 0], "heads mine's damp yet see aunt polly was vexed to": [65535, 0], "mine's damp yet see aunt polly was vexed to think": [65535, 0], "damp yet see aunt polly was vexed to think she": [65535, 0], "yet see aunt polly was vexed to think she had": [65535, 0], "see aunt polly was vexed to think she had overlooked": [65535, 0], "aunt polly was vexed to think she had overlooked that": [65535, 0], "polly was vexed to think she had overlooked that bit": [65535, 0], "was vexed to think she had overlooked that bit of": [65535, 0], "vexed to think she had overlooked that bit of circumstantial": [65535, 0], "to think she had overlooked that bit of circumstantial evidence": [65535, 0], "think she had overlooked that bit of circumstantial evidence and": [65535, 0], "she had overlooked that bit of circumstantial evidence and missed": [65535, 0], "had overlooked that bit of circumstantial evidence and missed a": [65535, 0], "overlooked that bit of circumstantial evidence and missed a trick": [65535, 0], "that bit of circumstantial evidence and missed a trick then": [65535, 0], "bit of circumstantial evidence and missed a trick then she": [65535, 0], "of circumstantial evidence and missed a trick then she had": [65535, 0], "circumstantial evidence and missed a trick then she had a": [65535, 0], "evidence and missed a trick then she had a new": [65535, 0], "and missed a trick then she had a new inspiration": [65535, 0], "missed a trick then she had a new inspiration tom": [65535, 0], "a trick then she had a new inspiration tom you": [65535, 0], "trick then she had a new inspiration tom you didn't": [65535, 0], "then she had a new inspiration tom you didn't have": [65535, 0], "she had a new inspiration tom you didn't have to": [65535, 0], "had a new inspiration tom you didn't have to undo": [65535, 0], "a new inspiration tom you didn't have to undo your": [65535, 0], "new inspiration tom you didn't have to undo your shirt": [65535, 0], "inspiration tom you didn't have to undo your shirt collar": [65535, 0], "tom you didn't have to undo your shirt collar where": [65535, 0], "you didn't have to undo your shirt collar where i": [65535, 0], "didn't have to undo your shirt collar where i sewed": [65535, 0], "have to undo your shirt collar where i sewed it": [65535, 0], "to undo your shirt collar where i sewed it to": [65535, 0], "undo your shirt collar where i sewed it to pump": [65535, 0], "your shirt collar where i sewed it to pump on": [65535, 0], "shirt collar where i sewed it to pump on your": [65535, 0], "collar where i sewed it to pump on your head": [65535, 0], "where i sewed it to pump on your head did": [65535, 0], "i sewed it to pump on your head did you": [65535, 0], "sewed it to pump on your head did you unbutton": [65535, 0], "it to pump on your head did you unbutton your": [65535, 0], "to pump on your head did you unbutton your jacket": [65535, 0], "pump on your head did you unbutton your jacket the": [65535, 0], "on your head did you unbutton your jacket the trouble": [65535, 0], "your head did you unbutton your jacket the trouble vanished": [65535, 0], "head did you unbutton your jacket the trouble vanished out": [65535, 0], "did you unbutton your jacket the trouble vanished out of": [65535, 0], "you unbutton your jacket the trouble vanished out of tom's": [65535, 0], "unbutton your jacket the trouble vanished out of tom's face": [65535, 0], "your jacket the trouble vanished out of tom's face he": [65535, 0], "jacket the trouble vanished out of tom's face he opened": [65535, 0], "the trouble vanished out of tom's face he opened his": [65535, 0], "trouble vanished out of tom's face he opened his jacket": [65535, 0], "vanished out of tom's face he opened his jacket his": [65535, 0], "out of tom's face he opened his jacket his shirt": [65535, 0], "of tom's face he opened his jacket his shirt collar": [65535, 0], "tom's face he opened his jacket his shirt collar was": [65535, 0], "face he opened his jacket his shirt collar was securely": [65535, 0], "he opened his jacket his shirt collar was securely sewed": [65535, 0], "opened his jacket his shirt collar was securely sewed bother": [65535, 0], "his jacket his shirt collar was securely sewed bother well": [65535, 0], "jacket his shirt collar was securely sewed bother well go": [65535, 0], "his shirt collar was securely sewed bother well go 'long": [65535, 0], "shirt collar was securely sewed bother well go 'long with": [65535, 0], "collar was securely sewed bother well go 'long with you": [65535, 0], "was securely sewed bother well go 'long with you i'd": [65535, 0], "securely sewed bother well go 'long with you i'd made": [65535, 0], "sewed bother well go 'long with you i'd made sure": [65535, 0], "bother well go 'long with you i'd made sure you'd": [65535, 0], "well go 'long with you i'd made sure you'd played": [65535, 0], "go 'long with you i'd made sure you'd played hookey": [65535, 0], "'long with you i'd made sure you'd played hookey and": [65535, 0], "with you i'd made sure you'd played hookey and been": [65535, 0], "you i'd made sure you'd played hookey and been a": [65535, 0], "i'd made sure you'd played hookey and been a swimming": [65535, 0], "made sure you'd played hookey and been a swimming but": [65535, 0], "sure you'd played hookey and been a swimming but i": [65535, 0], "you'd played hookey and been a swimming but i forgive": [65535, 0], "played hookey and been a swimming but i forgive ye": [65535, 0], "hookey and been a swimming but i forgive ye tom": [65535, 0], "and been a swimming but i forgive ye tom i": [65535, 0], "been a swimming but i forgive ye tom i reckon": [65535, 0], "a swimming but i forgive ye tom i reckon you're": [65535, 0], "swimming but i forgive ye tom i reckon you're a": [65535, 0], "but i forgive ye tom i reckon you're a kind": [65535, 0], "i forgive ye tom i reckon you're a kind of": [65535, 0], "forgive ye tom i reckon you're a kind of a": [65535, 0], "ye tom i reckon you're a kind of a singed": [65535, 0], "tom i reckon you're a kind of a singed cat": [65535, 0], "i reckon you're a kind of a singed cat as": [65535, 0], "reckon you're a kind of a singed cat as the": [65535, 0], "you're a kind of a singed cat as the saying": [65535, 0], "a kind of a singed cat as the saying is": [65535, 0], "kind of a singed cat as the saying is better'n": [65535, 0], "of a singed cat as the saying is better'n you": [65535, 0], "a singed cat as the saying is better'n you look": [65535, 0], "singed cat as the saying is better'n you look this": [65535, 0], "cat as the saying is better'n you look this time": [65535, 0], "as the saying is better'n you look this time she": [65535, 0], "the saying is better'n you look this time she was": [65535, 0], "saying is better'n you look this time she was half": [65535, 0], "is better'n you look this time she was half sorry": [65535, 0], "better'n you look this time she was half sorry her": [65535, 0], "you look this time she was half sorry her sagacity": [65535, 0], "look this time she was half sorry her sagacity had": [65535, 0], "this time she was half sorry her sagacity had miscarried": [65535, 0], "time she was half sorry her sagacity had miscarried and": [65535, 0], "she was half sorry her sagacity had miscarried and half": [65535, 0], "was half sorry her sagacity had miscarried and half glad": [65535, 0], "half sorry her sagacity had miscarried and half glad that": [65535, 0], "sorry her sagacity had miscarried and half glad that tom": [65535, 0], "her sagacity had miscarried and half glad that tom had": [65535, 0], "sagacity had miscarried and half glad that tom had stumbled": [65535, 0], "had miscarried and half glad that tom had stumbled into": [65535, 0], "miscarried and half glad that tom had stumbled into obedient": [65535, 0], "and half glad that tom had stumbled into obedient conduct": [65535, 0], "half glad that tom had stumbled into obedient conduct for": [65535, 0], "glad that tom had stumbled into obedient conduct for once": [65535, 0], "that tom had stumbled into obedient conduct for once but": [65535, 0], "tom had stumbled into obedient conduct for once but sidney": [65535, 0], "had stumbled into obedient conduct for once but sidney said": [65535, 0], "stumbled into obedient conduct for once but sidney said well": [65535, 0], "into obedient conduct for once but sidney said well now": [65535, 0], "obedient conduct for once but sidney said well now if": [65535, 0], "conduct for once but sidney said well now if i": [65535, 0], "for once but sidney said well now if i didn't": [65535, 0], "once but sidney said well now if i didn't think": [65535, 0], "but sidney said well now if i didn't think you": [65535, 0], "sidney said well now if i didn't think you sewed": [65535, 0], "said well now if i didn't think you sewed his": [65535, 0], "well now if i didn't think you sewed his collar": [65535, 0], "now if i didn't think you sewed his collar with": [65535, 0], "if i didn't think you sewed his collar with white": [65535, 0], "i didn't think you sewed his collar with white thread": [65535, 0], "didn't think you sewed his collar with white thread but": [65535, 0], "think you sewed his collar with white thread but it's": [65535, 0], "you sewed his collar with white thread but it's black": [65535, 0], "sewed his collar with white thread but it's black why": [65535, 0], "his collar with white thread but it's black why i": [65535, 0], "collar with white thread but it's black why i did": [65535, 0], "with white thread but it's black why i did sew": [65535, 0], "white thread but it's black why i did sew it": [65535, 0], "thread but it's black why i did sew it with": [65535, 0], "but it's black why i did sew it with white": [65535, 0], "it's black why i did sew it with white tom": [65535, 0], "black why i did sew it with white tom but": [65535, 0], "why i did sew it with white tom but tom": [65535, 0], "i did sew it with white tom but tom did": [65535, 0], "did sew it with white tom but tom did not": [65535, 0], "sew it with white tom but tom did not wait": [65535, 0], "it with white tom but tom did not wait for": [65535, 0], "with white tom but tom did not wait for the": [65535, 0], "white tom but tom did not wait for the rest": [65535, 0], "tom but tom did not wait for the rest as": [65535, 0], "but tom did not wait for the rest as he": [65535, 0], "tom did not wait for the rest as he went": [65535, 0], "did not wait for the rest as he went out": [65535, 0], "not wait for the rest as he went out at": [65535, 0], "wait for the rest as he went out at the": [65535, 0], "for the rest as he went out at the door": [65535, 0], "the rest as he went out at the door he": [65535, 0], "rest as he went out at the door he said": [65535, 0], "as he went out at the door he said siddy": [65535, 0], "he went out at the door he said siddy i'll": [65535, 0], "went out at the door he said siddy i'll lick": [65535, 0], "out at the door he said siddy i'll lick you": [65535, 0], "at the door he said siddy i'll lick you for": [65535, 0], "the door he said siddy i'll lick you for that": [65535, 0], "door he said siddy i'll lick you for that in": [65535, 0], "he said siddy i'll lick you for that in a": [65535, 0], "said siddy i'll lick you for that in a safe": [65535, 0], "siddy i'll lick you for that in a safe place": [65535, 0], "i'll lick you for that in a safe place tom": [65535, 0], "lick you for that in a safe place tom examined": [65535, 0], "you for that in a safe place tom examined two": [65535, 0], "for that in a safe place tom examined two large": [65535, 0], "that in a safe place tom examined two large needles": [65535, 0], "in a safe place tom examined two large needles which": [65535, 0], "a safe place tom examined two large needles which were": [65535, 0], "safe place tom examined two large needles which were thrust": [65535, 0], "place tom examined two large needles which were thrust into": [65535, 0], "tom examined two large needles which were thrust into the": [65535, 0], "examined two large needles which were thrust into the lapels": [65535, 0], "two large needles which were thrust into the lapels of": [65535, 0], "large needles which were thrust into the lapels of his": [65535, 0], "needles which were thrust into the lapels of his jacket": [65535, 0], "which were thrust into the lapels of his jacket and": [65535, 0], "were thrust into the lapels of his jacket and had": [65535, 0], "thrust into the lapels of his jacket and had thread": [65535, 0], "into the lapels of his jacket and had thread bound": [65535, 0], "the lapels of his jacket and had thread bound about": [65535, 0], "lapels of his jacket and had thread bound about them": [65535, 0], "of his jacket and had thread bound about them one": [65535, 0], "his jacket and had thread bound about them one needle": [65535, 0], "jacket and had thread bound about them one needle carried": [65535, 0], "and had thread bound about them one needle carried white": [65535, 0], "had thread bound about them one needle carried white thread": [65535, 0], "thread bound about them one needle carried white thread and": [65535, 0], "bound about them one needle carried white thread and the": [65535, 0], "about them one needle carried white thread and the other": [65535, 0], "them one needle carried white thread and the other black": [65535, 0], "one needle carried white thread and the other black he": [65535, 0], "needle carried white thread and the other black he said": [65535, 0], "carried white thread and the other black he said she'd": [65535, 0], "white thread and the other black he said she'd never": [65535, 0], "thread and the other black he said she'd never noticed": [65535, 0], "and the other black he said she'd never noticed if": [65535, 0], "the other black he said she'd never noticed if it": [65535, 0], "other black he said she'd never noticed if it hadn't": [65535, 0], "black he said she'd never noticed if it hadn't been": [65535, 0], "he said she'd never noticed if it hadn't been for": [65535, 0], "said she'd never noticed if it hadn't been for sid": [65535, 0], "she'd never noticed if it hadn't been for sid confound": [65535, 0], "never noticed if it hadn't been for sid confound it": [65535, 0], "noticed if it hadn't been for sid confound it sometimes": [65535, 0], "if it hadn't been for sid confound it sometimes she": [65535, 0], "it hadn't been for sid confound it sometimes she sews": [65535, 0], "hadn't been for sid confound it sometimes she sews it": [65535, 0], "been for sid confound it sometimes she sews it with": [65535, 0], "for sid confound it sometimes she sews it with white": [65535, 0], "sid confound it sometimes she sews it with white and": [65535, 0], "confound it sometimes she sews it with white and sometimes": [65535, 0], "it sometimes she sews it with white and sometimes she": [65535, 0], "sometimes she sews it with white and sometimes she sews": [65535, 0], "she sews it with white and sometimes she sews it": [65535, 0], "sews it with white and sometimes she sews it with": [65535, 0], "it with white and sometimes she sews it with black": [65535, 0], "with white and sometimes she sews it with black i": [65535, 0], "white and sometimes she sews it with black i wish": [65535, 0], "and sometimes she sews it with black i wish to": [65535, 0], "sometimes she sews it with black i wish to geeminy": [65535, 0], "she sews it with black i wish to geeminy she'd": [65535, 0], "sews it with black i wish to geeminy she'd stick": [65535, 0], "it with black i wish to geeminy she'd stick to": [65535, 0], "with black i wish to geeminy she'd stick to one": [65535, 0], "black i wish to geeminy she'd stick to one or": [65535, 0], "i wish to geeminy she'd stick to one or t'other": [65535, 0], "wish to geeminy she'd stick to one or t'other i": [65535, 0], "to geeminy she'd stick to one or t'other i can't": [65535, 0], "geeminy she'd stick to one or t'other i can't keep": [65535, 0], "she'd stick to one or t'other i can't keep the": [65535, 0], "stick to one or t'other i can't keep the run": [65535, 0], "to one or t'other i can't keep the run of": [65535, 0], "one or t'other i can't keep the run of 'em": [65535, 0], "or t'other i can't keep the run of 'em but": [65535, 0], "t'other i can't keep the run of 'em but i": [65535, 0], "i can't keep the run of 'em but i bet": [65535, 0], "can't keep the run of 'em but i bet you": [65535, 0], "keep the run of 'em but i bet you i'll": [65535, 0], "the run of 'em but i bet you i'll lam": [65535, 0], "run of 'em but i bet you i'll lam sid": [65535, 0], "of 'em but i bet you i'll lam sid for": [65535, 0], "'em but i bet you i'll lam sid for that": [65535, 0], "but i bet you i'll lam sid for that i'll": [65535, 0], "i bet you i'll lam sid for that i'll learn": [65535, 0], "bet you i'll lam sid for that i'll learn him": [65535, 0], "you i'll lam sid for that i'll learn him he": [65535, 0], "i'll lam sid for that i'll learn him he was": [65535, 0], "lam sid for that i'll learn him he was not": [65535, 0], "sid for that i'll learn him he was not the": [65535, 0], "for that i'll learn him he was not the model": [65535, 0], "that i'll learn him he was not the model boy": [65535, 0], "i'll learn him he was not the model boy of": [65535, 0], "learn him he was not the model boy of the": [65535, 0], "him he was not the model boy of the village": [65535, 0], "he was not the model boy of the village he": [65535, 0], "was not the model boy of the village he knew": [65535, 0], "not the model boy of the village he knew the": [65535, 0], "the model boy of the village he knew the model": [65535, 0], "model boy of the village he knew the model boy": [65535, 0], "boy of the village he knew the model boy very": [65535, 0], "of the village he knew the model boy very well": [65535, 0], "the village he knew the model boy very well though": [65535, 0], "village he knew the model boy very well though and": [65535, 0], "he knew the model boy very well though and loathed": [65535, 0], "knew the model boy very well though and loathed him": [65535, 0], "the model boy very well though and loathed him within": [65535, 0], "model boy very well though and loathed him within two": [65535, 0], "boy very well though and loathed him within two minutes": [65535, 0], "very well though and loathed him within two minutes or": [65535, 0], "well though and loathed him within two minutes or even": [65535, 0], "though and loathed him within two minutes or even less": [65535, 0], "and loathed him within two minutes or even less he": [65535, 0], "loathed him within two minutes or even less he had": [65535, 0], "him within two minutes or even less he had forgotten": [65535, 0], "within two minutes or even less he had forgotten all": [65535, 0], "two minutes or even less he had forgotten all his": [65535, 0], "minutes or even less he had forgotten all his troubles": [65535, 0], "or even less he had forgotten all his troubles not": [65535, 0], "even less he had forgotten all his troubles not because": [65535, 0], "less he had forgotten all his troubles not because his": [65535, 0], "he had forgotten all his troubles not because his troubles": [65535, 0], "had forgotten all his troubles not because his troubles were": [65535, 0], "forgotten all his troubles not because his troubles were one": [65535, 0], "all his troubles not because his troubles were one whit": [65535, 0], "his troubles not because his troubles were one whit less": [65535, 0], "troubles not because his troubles were one whit less heavy": [65535, 0], "not because his troubles were one whit less heavy and": [65535, 0], "because his troubles were one whit less heavy and bitter": [65535, 0], "his troubles were one whit less heavy and bitter to": [65535, 0], "troubles were one whit less heavy and bitter to him": [65535, 0], "were one whit less heavy and bitter to him than": [65535, 0], "one whit less heavy and bitter to him than a": [65535, 0], "whit less heavy and bitter to him than a man's": [65535, 0], "less heavy and bitter to him than a man's are": [65535, 0], "heavy and bitter to him than a man's are to": [65535, 0], "and bitter to him than a man's are to a": [65535, 0], "bitter to him than a man's are to a man": [65535, 0], "to him than a man's are to a man but": [65535, 0], "him than a man's are to a man but because": [65535, 0], "than a man's are to a man but because a": [65535, 0], "a man's are to a man but because a new": [65535, 0], "man's are to a man but because a new and": [65535, 0], "are to a man but because a new and powerful": [65535, 0], "to a man but because a new and powerful interest": [65535, 0], "a man but because a new and powerful interest bore": [65535, 0], "man but because a new and powerful interest bore them": [65535, 0], "but because a new and powerful interest bore them down": [65535, 0], "because a new and powerful interest bore them down and": [65535, 0], "a new and powerful interest bore them down and drove": [65535, 0], "new and powerful interest bore them down and drove them": [65535, 0], "and powerful interest bore them down and drove them out": [65535, 0], "powerful interest bore them down and drove them out of": [65535, 0], "interest bore them down and drove them out of his": [65535, 0], "bore them down and drove them out of his mind": [65535, 0], "them down and drove them out of his mind for": [65535, 0], "down and drove them out of his mind for the": [65535, 0], "and drove them out of his mind for the time": [65535, 0], "drove them out of his mind for the time just": [65535, 0], "them out of his mind for the time just as": [65535, 0], "out of his mind for the time just as men's": [65535, 0], "of his mind for the time just as men's misfortunes": [65535, 0], "his mind for the time just as men's misfortunes are": [65535, 0], "mind for the time just as men's misfortunes are forgotten": [65535, 0], "for the time just as men's misfortunes are forgotten in": [65535, 0], "the time just as men's misfortunes are forgotten in the": [65535, 0], "time just as men's misfortunes are forgotten in the excitement": [65535, 0], "just as men's misfortunes are forgotten in the excitement of": [65535, 0], "as men's misfortunes are forgotten in the excitement of new": [65535, 0], "men's misfortunes are forgotten in the excitement of new enterprises": [65535, 0], "misfortunes are forgotten in the excitement of new enterprises this": [65535, 0], "are forgotten in the excitement of new enterprises this new": [65535, 0], "forgotten in the excitement of new enterprises this new interest": [65535, 0], "in the excitement of new enterprises this new interest was": [65535, 0], "the excitement of new enterprises this new interest was a": [65535, 0], "excitement of new enterprises this new interest was a valued": [65535, 0], "of new enterprises this new interest was a valued novelty": [65535, 0], "new enterprises this new interest was a valued novelty in": [65535, 0], "enterprises this new interest was a valued novelty in whistling": [65535, 0], "this new interest was a valued novelty in whistling which": [65535, 0], "new interest was a valued novelty in whistling which he": [65535, 0], "interest was a valued novelty in whistling which he had": [65535, 0], "was a valued novelty in whistling which he had just": [65535, 0], "a valued novelty in whistling which he had just acquired": [65535, 0], "valued novelty in whistling which he had just acquired from": [65535, 0], "novelty in whistling which he had just acquired from a": [65535, 0], "in whistling which he had just acquired from a negro": [65535, 0], "whistling which he had just acquired from a negro and": [65535, 0], "which he had just acquired from a negro and he": [65535, 0], "he had just acquired from a negro and he was": [65535, 0], "had just acquired from a negro and he was suffering": [65535, 0], "just acquired from a negro and he was suffering to": [65535, 0], "acquired from a negro and he was suffering to practise": [65535, 0], "from a negro and he was suffering to practise it": [65535, 0], "a negro and he was suffering to practise it undisturbed": [65535, 0], "negro and he was suffering to practise it undisturbed it": [65535, 0], "and he was suffering to practise it undisturbed it consisted": [65535, 0], "he was suffering to practise it undisturbed it consisted in": [65535, 0], "was suffering to practise it undisturbed it consisted in a": [65535, 0], "suffering to practise it undisturbed it consisted in a peculiar": [65535, 0], "to practise it undisturbed it consisted in a peculiar bird": [65535, 0], "practise it undisturbed it consisted in a peculiar bird like": [65535, 0], "it undisturbed it consisted in a peculiar bird like turn": [65535, 0], "undisturbed it consisted in a peculiar bird like turn a": [65535, 0], "it consisted in a peculiar bird like turn a sort": [65535, 0], "consisted in a peculiar bird like turn a sort of": [65535, 0], "in a peculiar bird like turn a sort of liquid": [65535, 0], "a peculiar bird like turn a sort of liquid warble": [65535, 0], "peculiar bird like turn a sort of liquid warble produced": [65535, 0], "bird like turn a sort of liquid warble produced by": [65535, 0], "like turn a sort of liquid warble produced by touching": [65535, 0], "turn a sort of liquid warble produced by touching the": [65535, 0], "a sort of liquid warble produced by touching the tongue": [65535, 0], "sort of liquid warble produced by touching the tongue to": [65535, 0], "of liquid warble produced by touching the tongue to the": [65535, 0], "liquid warble produced by touching the tongue to the roof": [65535, 0], "warble produced by touching the tongue to the roof of": [65535, 0], "produced by touching the tongue to the roof of the": [65535, 0], "by touching the tongue to the roof of the mouth": [65535, 0], "touching the tongue to the roof of the mouth at": [65535, 0], "the tongue to the roof of the mouth at short": [65535, 0], "tongue to the roof of the mouth at short intervals": [65535, 0], "to the roof of the mouth at short intervals in": [65535, 0], "the roof of the mouth at short intervals in the": [65535, 0], "roof of the mouth at short intervals in the midst": [65535, 0], "of the mouth at short intervals in the midst of": [65535, 0], "the mouth at short intervals in the midst of the": [65535, 0], "mouth at short intervals in the midst of the music": [65535, 0], "at short intervals in the midst of the music the": [65535, 0], "short intervals in the midst of the music the reader": [65535, 0], "intervals in the midst of the music the reader probably": [65535, 0], "in the midst of the music the reader probably remembers": [65535, 0], "the midst of the music the reader probably remembers how": [65535, 0], "midst of the music the reader probably remembers how to": [65535, 0], "of the music the reader probably remembers how to do": [65535, 0], "the music the reader probably remembers how to do it": [65535, 0], "music the reader probably remembers how to do it if": [65535, 0], "the reader probably remembers how to do it if he": [65535, 0], "reader probably remembers how to do it if he has": [65535, 0], "probably remembers how to do it if he has ever": [65535, 0], "remembers how to do it if he has ever been": [65535, 0], "how to do it if he has ever been a": [65535, 0], "to do it if he has ever been a boy": [65535, 0], "do it if he has ever been a boy diligence": [65535, 0], "it if he has ever been a boy diligence and": [65535, 0], "if he has ever been a boy diligence and attention": [65535, 0], "he has ever been a boy diligence and attention soon": [65535, 0], "has ever been a boy diligence and attention soon gave": [65535, 0], "ever been a boy diligence and attention soon gave him": [65535, 0], "been a boy diligence and attention soon gave him the": [65535, 0], "a boy diligence and attention soon gave him the knack": [65535, 0], "boy diligence and attention soon gave him the knack of": [65535, 0], "diligence and attention soon gave him the knack of it": [65535, 0], "and attention soon gave him the knack of it and": [65535, 0], "attention soon gave him the knack of it and he": [65535, 0], "soon gave him the knack of it and he strode": [65535, 0], "gave him the knack of it and he strode down": [65535, 0], "him the knack of it and he strode down the": [65535, 0], "the knack of it and he strode down the street": [65535, 0], "knack of it and he strode down the street with": [65535, 0], "of it and he strode down the street with his": [65535, 0], "it and he strode down the street with his mouth": [65535, 0], "and he strode down the street with his mouth full": [65535, 0], "he strode down the street with his mouth full of": [65535, 0], "strode down the street with his mouth full of harmony": [65535, 0], "down the street with his mouth full of harmony and": [65535, 0], "the street with his mouth full of harmony and his": [65535, 0], "street with his mouth full of harmony and his soul": [65535, 0], "with his mouth full of harmony and his soul full": [65535, 0], "his mouth full of harmony and his soul full of": [65535, 0], "mouth full of harmony and his soul full of gratitude": [65535, 0], "full of harmony and his soul full of gratitude he": [65535, 0], "of harmony and his soul full of gratitude he felt": [65535, 0], "harmony and his soul full of gratitude he felt much": [65535, 0], "and his soul full of gratitude he felt much as": [65535, 0], "his soul full of gratitude he felt much as an": [65535, 0], "soul full of gratitude he felt much as an astronomer": [65535, 0], "full of gratitude he felt much as an astronomer feels": [65535, 0], "of gratitude he felt much as an astronomer feels who": [65535, 0], "gratitude he felt much as an astronomer feels who has": [65535, 0], "he felt much as an astronomer feels who has discovered": [65535, 0], "felt much as an astronomer feels who has discovered a": [65535, 0], "much as an astronomer feels who has discovered a new": [65535, 0], "as an astronomer feels who has discovered a new planet": [65535, 0], "an astronomer feels who has discovered a new planet no": [65535, 0], "astronomer feels who has discovered a new planet no doubt": [65535, 0], "feels who has discovered a new planet no doubt as": [65535, 0], "who has discovered a new planet no doubt as far": [65535, 0], "has discovered a new planet no doubt as far as": [65535, 0], "discovered a new planet no doubt as far as strong": [65535, 0], "a new planet no doubt as far as strong deep": [65535, 0], "new planet no doubt as far as strong deep unalloyed": [65535, 0], "planet no doubt as far as strong deep unalloyed pleasure": [65535, 0], "no doubt as far as strong deep unalloyed pleasure is": [65535, 0], "doubt as far as strong deep unalloyed pleasure is concerned": [65535, 0], "as far as strong deep unalloyed pleasure is concerned the": [65535, 0], "far as strong deep unalloyed pleasure is concerned the advantage": [65535, 0], "as strong deep unalloyed pleasure is concerned the advantage was": [65535, 0], "strong deep unalloyed pleasure is concerned the advantage was with": [65535, 0], "deep unalloyed pleasure is concerned the advantage was with the": [65535, 0], "unalloyed pleasure is concerned the advantage was with the boy": [65535, 0], "pleasure is concerned the advantage was with the boy not": [65535, 0], "is concerned the advantage was with the boy not the": [65535, 0], "concerned the advantage was with the boy not the astronomer": [65535, 0], "the advantage was with the boy not the astronomer the": [65535, 0], "advantage was with the boy not the astronomer the summer": [65535, 0], "was with the boy not the astronomer the summer evenings": [65535, 0], "with the boy not the astronomer the summer evenings were": [65535, 0], "the boy not the astronomer the summer evenings were long": [65535, 0], "boy not the astronomer the summer evenings were long it": [65535, 0], "not the astronomer the summer evenings were long it was": [65535, 0], "the astronomer the summer evenings were long it was not": [65535, 0], "astronomer the summer evenings were long it was not dark": [65535, 0], "the summer evenings were long it was not dark yet": [65535, 0], "summer evenings were long it was not dark yet presently": [65535, 0], "evenings were long it was not dark yet presently tom": [65535, 0], "were long it was not dark yet presently tom checked": [65535, 0], "long it was not dark yet presently tom checked his": [65535, 0], "it was not dark yet presently tom checked his whistle": [65535, 0], "was not dark yet presently tom checked his whistle a": [65535, 0], "not dark yet presently tom checked his whistle a stranger": [65535, 0], "dark yet presently tom checked his whistle a stranger was": [65535, 0], "yet presently tom checked his whistle a stranger was before": [65535, 0], "presently tom checked his whistle a stranger was before him": [65535, 0], "tom checked his whistle a stranger was before him a": [65535, 0], "checked his whistle a stranger was before him a boy": [65535, 0], "his whistle a stranger was before him a boy a": [65535, 0], "whistle a stranger was before him a boy a shade": [65535, 0], "a stranger was before him a boy a shade larger": [65535, 0], "stranger was before him a boy a shade larger than": [65535, 0], "was before him a boy a shade larger than himself": [65535, 0], "before him a boy a shade larger than himself a": [65535, 0], "him a boy a shade larger than himself a new": [65535, 0], "a boy a shade larger than himself a new comer": [65535, 0], "boy a shade larger than himself a new comer of": [65535, 0], "a shade larger than himself a new comer of any": [65535, 0], "shade larger than himself a new comer of any age": [65535, 0], "larger than himself a new comer of any age or": [65535, 0], "than himself a new comer of any age or either": [65535, 0], "himself a new comer of any age or either sex": [65535, 0], "a new comer of any age or either sex was": [65535, 0], "new comer of any age or either sex was an": [65535, 0], "comer of any age or either sex was an impressive": [65535, 0], "of any age or either sex was an impressive curiosity": [65535, 0], "any age or either sex was an impressive curiosity in": [65535, 0], "age or either sex was an impressive curiosity in the": [65535, 0], "or either sex was an impressive curiosity in the poor": [65535, 0], "either sex was an impressive curiosity in the poor little": [65535, 0], "sex was an impressive curiosity in the poor little shabby": [65535, 0], "was an impressive curiosity in the poor little shabby village": [65535, 0], "an impressive curiosity in the poor little shabby village of": [65535, 0], "impressive curiosity in the poor little shabby village of st": [65535, 0], "curiosity in the poor little shabby village of st petersburg": [65535, 0], "in the poor little shabby village of st petersburg this": [65535, 0], "the poor little shabby village of st petersburg this boy": [65535, 0], "poor little shabby village of st petersburg this boy was": [65535, 0], "little shabby village of st petersburg this boy was well": [65535, 0], "shabby village of st petersburg this boy was well dressed": [65535, 0], "village of st petersburg this boy was well dressed too": [65535, 0], "of st petersburg this boy was well dressed too well": [65535, 0], "st petersburg this boy was well dressed too well dressed": [65535, 0], "petersburg this boy was well dressed too well dressed on": [65535, 0], "this boy was well dressed too well dressed on a": [65535, 0], "boy was well dressed too well dressed on a week": [65535, 0], "was well dressed too well dressed on a week day": [65535, 0], "well dressed too well dressed on a week day this": [65535, 0], "dressed too well dressed on a week day this was": [65535, 0], "too well dressed on a week day this was simply": [65535, 0], "well dressed on a week day this was simply astounding": [65535, 0], "dressed on a week day this was simply astounding his": [65535, 0], "on a week day this was simply astounding his cap": [65535, 0], "a week day this was simply astounding his cap was": [65535, 0], "week day this was simply astounding his cap was a": [65535, 0], "day this was simply astounding his cap was a dainty": [65535, 0], "this was simply astounding his cap was a dainty thing": [65535, 0], "was simply astounding his cap was a dainty thing his": [65535, 0], "simply astounding his cap was a dainty thing his closebuttoned": [65535, 0], "astounding his cap was a dainty thing his closebuttoned blue": [65535, 0], "his cap was a dainty thing his closebuttoned blue cloth": [65535, 0], "cap was a dainty thing his closebuttoned blue cloth roundabout": [65535, 0], "was a dainty thing his closebuttoned blue cloth roundabout was": [65535, 0], "a dainty thing his closebuttoned blue cloth roundabout was new": [65535, 0], "dainty thing his closebuttoned blue cloth roundabout was new and": [65535, 0], "thing his closebuttoned blue cloth roundabout was new and natty": [65535, 0], "his closebuttoned blue cloth roundabout was new and natty and": [65535, 0], "closebuttoned blue cloth roundabout was new and natty and so": [65535, 0], "blue cloth roundabout was new and natty and so were": [65535, 0], "cloth roundabout was new and natty and so were his": [65535, 0], "roundabout was new and natty and so were his pantaloons": [65535, 0], "was new and natty and so were his pantaloons he": [65535, 0], "new and natty and so were his pantaloons he had": [65535, 0], "and natty and so were his pantaloons he had shoes": [65535, 0], "natty and so were his pantaloons he had shoes on": [65535, 0], "and so were his pantaloons he had shoes on and": [65535, 0], "so were his pantaloons he had shoes on and it": [65535, 0], "were his pantaloons he had shoes on and it was": [65535, 0], "his pantaloons he had shoes on and it was only": [65535, 0], "pantaloons he had shoes on and it was only friday": [65535, 0], "he had shoes on and it was only friday he": [65535, 0], "had shoes on and it was only friday he even": [65535, 0], "shoes on and it was only friday he even wore": [65535, 0], "on and it was only friday he even wore a": [65535, 0], "and it was only friday he even wore a necktie": [65535, 0], "it was only friday he even wore a necktie a": [65535, 0], "was only friday he even wore a necktie a bright": [65535, 0], "only friday he even wore a necktie a bright bit": [65535, 0], "friday he even wore a necktie a bright bit of": [65535, 0], "he even wore a necktie a bright bit of ribbon": [65535, 0], "even wore a necktie a bright bit of ribbon he": [65535, 0], "wore a necktie a bright bit of ribbon he had": [65535, 0], "a necktie a bright bit of ribbon he had a": [65535, 0], "necktie a bright bit of ribbon he had a citified": [65535, 0], "a bright bit of ribbon he had a citified air": [65535, 0], "bright bit of ribbon he had a citified air about": [65535, 0], "bit of ribbon he had a citified air about him": [65535, 0], "of ribbon he had a citified air about him that": [65535, 0], "ribbon he had a citified air about him that ate": [65535, 0], "he had a citified air about him that ate into": [65535, 0], "had a citified air about him that ate into tom's": [65535, 0], "a citified air about him that ate into tom's vitals": [65535, 0], "citified air about him that ate into tom's vitals the": [65535, 0], "air about him that ate into tom's vitals the more": [65535, 0], "about him that ate into tom's vitals the more tom": [65535, 0], "him that ate into tom's vitals the more tom stared": [65535, 0], "that ate into tom's vitals the more tom stared at": [65535, 0], "ate into tom's vitals the more tom stared at the": [65535, 0], "into tom's vitals the more tom stared at the splendid": [65535, 0], "tom's vitals the more tom stared at the splendid marvel": [65535, 0], "vitals the more tom stared at the splendid marvel the": [65535, 0], "the more tom stared at the splendid marvel the higher": [65535, 0], "more tom stared at the splendid marvel the higher he": [65535, 0], "tom stared at the splendid marvel the higher he turned": [65535, 0], "stared at the splendid marvel the higher he turned up": [65535, 0], "at the splendid marvel the higher he turned up his": [65535, 0], "the splendid marvel the higher he turned up his nose": [65535, 0], "splendid marvel the higher he turned up his nose at": [65535, 0], "marvel the higher he turned up his nose at his": [65535, 0], "the higher he turned up his nose at his finery": [65535, 0], "higher he turned up his nose at his finery and": [65535, 0], "he turned up his nose at his finery and the": [65535, 0], "turned up his nose at his finery and the shabbier": [65535, 0], "up his nose at his finery and the shabbier and": [65535, 0], "his nose at his finery and the shabbier and shabbier": [65535, 0], "nose at his finery and the shabbier and shabbier his": [65535, 0], "at his finery and the shabbier and shabbier his own": [65535, 0], "his finery and the shabbier and shabbier his own outfit": [65535, 0], "finery and the shabbier and shabbier his own outfit seemed": [65535, 0], "and the shabbier and shabbier his own outfit seemed to": [65535, 0], "the shabbier and shabbier his own outfit seemed to him": [65535, 0], "shabbier and shabbier his own outfit seemed to him to": [65535, 0], "and shabbier his own outfit seemed to him to grow": [65535, 0], "shabbier his own outfit seemed to him to grow neither": [65535, 0], "his own outfit seemed to him to grow neither boy": [65535, 0], "own outfit seemed to him to grow neither boy spoke": [65535, 0], "outfit seemed to him to grow neither boy spoke if": [65535, 0], "seemed to him to grow neither boy spoke if one": [65535, 0], "to him to grow neither boy spoke if one moved": [65535, 0], "him to grow neither boy spoke if one moved the": [65535, 0], "to grow neither boy spoke if one moved the other": [65535, 0], "grow neither boy spoke if one moved the other moved": [65535, 0], "neither boy spoke if one moved the other moved but": [65535, 0], "boy spoke if one moved the other moved but only": [65535, 0], "spoke if one moved the other moved but only sidewise": [65535, 0], "if one moved the other moved but only sidewise in": [65535, 0], "one moved the other moved but only sidewise in a": [65535, 0], "moved the other moved but only sidewise in a circle": [65535, 0], "the other moved but only sidewise in a circle they": [65535, 0], "other moved but only sidewise in a circle they kept": [65535, 0], "moved but only sidewise in a circle they kept face": [65535, 0], "but only sidewise in a circle they kept face to": [65535, 0], "only sidewise in a circle they kept face to face": [65535, 0], "sidewise in a circle they kept face to face and": [65535, 0], "in a circle they kept face to face and eye": [65535, 0], "a circle they kept face to face and eye to": [65535, 0], "circle they kept face to face and eye to eye": [65535, 0], "they kept face to face and eye to eye all": [65535, 0], "kept face to face and eye to eye all the": [65535, 0], "face to face and eye to eye all the time": [65535, 0], "to face and eye to eye all the time finally": [65535, 0], "face and eye to eye all the time finally tom": [65535, 0], "and eye to eye all the time finally tom said": [65535, 0], "eye to eye all the time finally tom said i": [65535, 0], "to eye all the time finally tom said i can": [65535, 0], "eye all the time finally tom said i can lick": [65535, 0], "all the time finally tom said i can lick you": [65535, 0], "the time finally tom said i can lick you i'd": [65535, 0], "time finally tom said i can lick you i'd like": [65535, 0], "finally tom said i can lick you i'd like to": [65535, 0], "tom said i can lick you i'd like to see": [65535, 0], "said i can lick you i'd like to see you": [65535, 0], "i can lick you i'd like to see you try": [65535, 0], "can lick you i'd like to see you try it": [65535, 0], "lick you i'd like to see you try it well": [65535, 0], "you i'd like to see you try it well i": [65535, 0], "i'd like to see you try it well i can": [65535, 0], "like to see you try it well i can do": [65535, 0], "to see you try it well i can do it": [65535, 0], "see you try it well i can do it no": [65535, 0], "you try it well i can do it no you": [65535, 0], "try it well i can do it no you can't": [65535, 0], "it well i can do it no you can't either": [65535, 0], "well i can do it no you can't either yes": [65535, 0], "i can do it no you can't either yes i": [65535, 0], "can do it no you can't either yes i can": [65535, 0], "do it no you can't either yes i can no": [65535, 0], "it no you can't either yes i can no you": [65535, 0], "no you can't either yes i can no you can't": [65535, 0], "you can't either yes i can no you can't i": [65535, 0], "can't either yes i can no you can't i can": [65535, 0], "either yes i can no you can't i can you": [65535, 0], "yes i can no you can't i can you can't": [65535, 0], "i can no you can't i can you can't can": [65535, 0], "can no you can't i can you can't can can't": [65535, 0], "no you can't i can you can't can can't an": [65535, 0], "you can't i can you can't can can't an uncomfortable": [65535, 0], "can't i can you can't can can't an uncomfortable pause": [65535, 0], "i can you can't can can't an uncomfortable pause then": [65535, 0], "can you can't can can't an uncomfortable pause then tom": [65535, 0], "you can't can can't an uncomfortable pause then tom said": [65535, 0], "can't can can't an uncomfortable pause then tom said what's": [65535, 0], "can can't an uncomfortable pause then tom said what's your": [65535, 0], "can't an uncomfortable pause then tom said what's your name": [65535, 0], "an uncomfortable pause then tom said what's your name 'tisn't": [65535, 0], "uncomfortable pause then tom said what's your name 'tisn't any": [65535, 0], "pause then tom said what's your name 'tisn't any of": [65535, 0], "then tom said what's your name 'tisn't any of your": [65535, 0], "tom said what's your name 'tisn't any of your business": [65535, 0], "said what's your name 'tisn't any of your business maybe": [65535, 0], "what's your name 'tisn't any of your business maybe well": [65535, 0], "your name 'tisn't any of your business maybe well i": [65535, 0], "name 'tisn't any of your business maybe well i 'low": [65535, 0], "'tisn't any of your business maybe well i 'low i'll": [65535, 0], "any of your business maybe well i 'low i'll make": [65535, 0], "of your business maybe well i 'low i'll make it": [65535, 0], "your business maybe well i 'low i'll make it my": [65535, 0], "business maybe well i 'low i'll make it my business": [65535, 0], "maybe well i 'low i'll make it my business well": [65535, 0], "well i 'low i'll make it my business well why": [65535, 0], "i 'low i'll make it my business well why don't": [65535, 0], "'low i'll make it my business well why don't you": [65535, 0], "i'll make it my business well why don't you if": [65535, 0], "make it my business well why don't you if you": [65535, 0], "it my business well why don't you if you say": [65535, 0], "my business well why don't you if you say much": [65535, 0], "business well why don't you if you say much i": [65535, 0], "well why don't you if you say much i will": [65535, 0], "why don't you if you say much i will much": [65535, 0], "don't you if you say much i will much much": [65535, 0], "you if you say much i will much much much": [65535, 0], "if you say much i will much much much there": [65535, 0], "you say much i will much much much there now": [65535, 0], "say much i will much much much there now oh": [65535, 0], "much i will much much much there now oh you": [65535, 0], "i will much much much there now oh you think": [65535, 0], "will much much much there now oh you think you're": [65535, 0], "much much much there now oh you think you're mighty": [65535, 0], "much much there now oh you think you're mighty smart": [65535, 0], "much there now oh you think you're mighty smart don't": [65535, 0], "there now oh you think you're mighty smart don't you": [65535, 0], "now oh you think you're mighty smart don't you i": [65535, 0], "oh you think you're mighty smart don't you i could": [65535, 0], "you think you're mighty smart don't you i could lick": [65535, 0], "think you're mighty smart don't you i could lick you": [65535, 0], "you're mighty smart don't you i could lick you with": [65535, 0], "mighty smart don't you i could lick you with one": [65535, 0], "smart don't you i could lick you with one hand": [65535, 0], "don't you i could lick you with one hand tied": [65535, 0], "you i could lick you with one hand tied behind": [65535, 0], "i could lick you with one hand tied behind me": [65535, 0], "could lick you with one hand tied behind me if": [65535, 0], "lick you with one hand tied behind me if i": [65535, 0], "you with one hand tied behind me if i wanted": [65535, 0], "with one hand tied behind me if i wanted to": [65535, 0], "one hand tied behind me if i wanted to well": [65535, 0], "hand tied behind me if i wanted to well why": [65535, 0], "tied behind me if i wanted to well why don't": [65535, 0], "behind me if i wanted to well why don't you": [65535, 0], "me if i wanted to well why don't you do": [65535, 0], "if i wanted to well why don't you do it": [65535, 0], "i wanted to well why don't you do it you": [65535, 0], "wanted to well why don't you do it you say": [65535, 0], "to well why don't you do it you say you": [65535, 0], "well why don't you do it you say you can": [65535, 0], "why don't you do it you say you can do": [65535, 0], "don't you do it you say you can do it": [65535, 0], "you do it you say you can do it well": [65535, 0], "do it you say you can do it well i": [65535, 0], "it you say you can do it well i will": [65535, 0], "you say you can do it well i will if": [65535, 0], "say you can do it well i will if you": [65535, 0], "you can do it well i will if you fool": [65535, 0], "can do it well i will if you fool with": [65535, 0], "do it well i will if you fool with me": [65535, 0], "it well i will if you fool with me oh": [65535, 0], "well i will if you fool with me oh yes": [65535, 0], "i will if you fool with me oh yes i've": [65535, 0], "will if you fool with me oh yes i've seen": [65535, 0], "if you fool with me oh yes i've seen whole": [65535, 0], "you fool with me oh yes i've seen whole families": [65535, 0], "fool with me oh yes i've seen whole families in": [65535, 0], "with me oh yes i've seen whole families in the": [65535, 0], "me oh yes i've seen whole families in the same": [65535, 0], "oh yes i've seen whole families in the same fix": [65535, 0], "yes i've seen whole families in the same fix smarty": [65535, 0], "i've seen whole families in the same fix smarty you": [65535, 0], "seen whole families in the same fix smarty you think": [65535, 0], "whole families in the same fix smarty you think you're": [65535, 0], "families in the same fix smarty you think you're some": [65535, 0], "in the same fix smarty you think you're some now": [65535, 0], "the same fix smarty you think you're some now don't": [65535, 0], "same fix smarty you think you're some now don't you": [65535, 0], "fix smarty you think you're some now don't you oh": [65535, 0], "smarty you think you're some now don't you oh what": [65535, 0], "you think you're some now don't you oh what a": [65535, 0], "think you're some now don't you oh what a hat": [65535, 0], "you're some now don't you oh what a hat you": [65535, 0], "some now don't you oh what a hat you can": [65535, 0], "now don't you oh what a hat you can lump": [65535, 0], "don't you oh what a hat you can lump that": [65535, 0], "you oh what a hat you can lump that hat": [65535, 0], "oh what a hat you can lump that hat if": [65535, 0], "what a hat you can lump that hat if you": [65535, 0], "a hat you can lump that hat if you don't": [65535, 0], "hat you can lump that hat if you don't like": [65535, 0], "you can lump that hat if you don't like it": [65535, 0], "can lump that hat if you don't like it i": [65535, 0], "lump that hat if you don't like it i dare": [65535, 0], "that hat if you don't like it i dare you": [65535, 0], "hat if you don't like it i dare you to": [65535, 0], "if you don't like it i dare you to knock": [65535, 0], "you don't like it i dare you to knock it": [65535, 0], "don't like it i dare you to knock it off": [65535, 0], "like it i dare you to knock it off and": [65535, 0], "it i dare you to knock it off and anybody": [65535, 0], "i dare you to knock it off and anybody that'll": [65535, 0], "dare you to knock it off and anybody that'll take": [65535, 0], "you to knock it off and anybody that'll take a": [65535, 0], "to knock it off and anybody that'll take a dare": [65535, 0], "knock it off and anybody that'll take a dare will": [65535, 0], "it off and anybody that'll take a dare will suck": [65535, 0], "off and anybody that'll take a dare will suck eggs": [65535, 0], "and anybody that'll take a dare will suck eggs you're": [65535, 0], "anybody that'll take a dare will suck eggs you're a": [65535, 0], "that'll take a dare will suck eggs you're a liar": [65535, 0], "take a dare will suck eggs you're a liar you're": [65535, 0], "a dare will suck eggs you're a liar you're another": [65535, 0], "dare will suck eggs you're a liar you're another you're": [65535, 0], "will suck eggs you're a liar you're another you're a": [65535, 0], "suck eggs you're a liar you're another you're a fighting": [65535, 0], "eggs you're a liar you're another you're a fighting liar": [65535, 0], "you're a liar you're another you're a fighting liar and": [65535, 0], "a liar you're another you're a fighting liar and dasn't": [65535, 0], "liar you're another you're a fighting liar and dasn't take": [65535, 0], "you're another you're a fighting liar and dasn't take it": [65535, 0], "another you're a fighting liar and dasn't take it up": [65535, 0], "you're a fighting liar and dasn't take it up aw": [65535, 0], "a fighting liar and dasn't take it up aw take": [65535, 0], "fighting liar and dasn't take it up aw take a": [65535, 0], "liar and dasn't take it up aw take a walk": [65535, 0], "and dasn't take it up aw take a walk say": [65535, 0], "dasn't take it up aw take a walk say if": [65535, 0], "take it up aw take a walk say if you": [65535, 0], "it up aw take a walk say if you give": [65535, 0], "up aw take a walk say if you give me": [65535, 0], "aw take a walk say if you give me much": [65535, 0], "take a walk say if you give me much more": [65535, 0], "a walk say if you give me much more of": [65535, 0], "walk say if you give me much more of your": [65535, 0], "say if you give me much more of your sass": [65535, 0], "if you give me much more of your sass i'll": [65535, 0], "you give me much more of your sass i'll take": [65535, 0], "give me much more of your sass i'll take and": [65535, 0], "me much more of your sass i'll take and bounce": [65535, 0], "much more of your sass i'll take and bounce a": [65535, 0], "more of your sass i'll take and bounce a rock": [65535, 0], "of your sass i'll take and bounce a rock off'n": [65535, 0], "your sass i'll take and bounce a rock off'n your": [65535, 0], "sass i'll take and bounce a rock off'n your head": [65535, 0], "i'll take and bounce a rock off'n your head oh": [65535, 0], "take and bounce a rock off'n your head oh of": [65535, 0], "and bounce a rock off'n your head oh of course": [65535, 0], "bounce a rock off'n your head oh of course you": [65535, 0], "a rock off'n your head oh of course you will": [65535, 0], "rock off'n your head oh of course you will well": [65535, 0], "off'n your head oh of course you will well i": [65535, 0], "your head oh of course you will well i will": [65535, 0], "head oh of course you will well i will well": [65535, 0], "oh of course you will well i will well why": [65535, 0], "of course you will well i will well why don't": [65535, 0], "course you will well i will well why don't you": [65535, 0], "you will well i will well why don't you do": [65535, 0], "will well i will well why don't you do it": [65535, 0], "well i will well why don't you do it then": [65535, 0], "i will well why don't you do it then what": [65535, 0], "will well why don't you do it then what do": [65535, 0], "well why don't you do it then what do you": [65535, 0], "why don't you do it then what do you keep": [65535, 0], "don't you do it then what do you keep saying": [65535, 0], "you do it then what do you keep saying you": [65535, 0], "do it then what do you keep saying you will": [65535, 0], "it then what do you keep saying you will for": [65535, 0], "then what do you keep saying you will for why": [65535, 0], "what do you keep saying you will for why don't": [65535, 0], "do you keep saying you will for why don't you": [65535, 0], "you keep saying you will for why don't you do": [65535, 0], "keep saying you will for why don't you do it": [65535, 0], "saying you will for why don't you do it it's": [65535, 0], "you will for why don't you do it it's because": [65535, 0], "will for why don't you do it it's because you're": [65535, 0], "for why don't you do it it's because you're afraid": [65535, 0], "why don't you do it it's because you're afraid i": [65535, 0], "don't you do it it's because you're afraid i ain't": [65535, 0], "you do it it's because you're afraid i ain't afraid": [65535, 0], "do it it's because you're afraid i ain't afraid you": [65535, 0], "it it's because you're afraid i ain't afraid you are": [65535, 0], "it's because you're afraid i ain't afraid you are i": [65535, 0], "because you're afraid i ain't afraid you are i ain't": [65535, 0], "you're afraid i ain't afraid you are i ain't you": [65535, 0], "afraid i ain't afraid you are i ain't you are": [65535, 0], "i ain't afraid you are i ain't you are another": [65535, 0], "ain't afraid you are i ain't you are another pause": [65535, 0], "afraid you are i ain't you are another pause and": [65535, 0], "you are i ain't you are another pause and more": [65535, 0], "are i ain't you are another pause and more eying": [65535, 0], "i ain't you are another pause and more eying and": [65535, 0], "ain't you are another pause and more eying and sidling": [65535, 0], "you are another pause and more eying and sidling around": [65535, 0], "are another pause and more eying and sidling around each": [65535, 0], "another pause and more eying and sidling around each other": [65535, 0], "pause and more eying and sidling around each other presently": [65535, 0], "and more eying and sidling around each other presently they": [65535, 0], "more eying and sidling around each other presently they were": [65535, 0], "eying and sidling around each other presently they were shoulder": [65535, 0], "and sidling around each other presently they were shoulder to": [65535, 0], "sidling around each other presently they were shoulder to shoulder": [65535, 0], "around each other presently they were shoulder to shoulder tom": [65535, 0], "each other presently they were shoulder to shoulder tom said": [65535, 0], "other presently they were shoulder to shoulder tom said get": [65535, 0], "presently they were shoulder to shoulder tom said get away": [65535, 0], "they were shoulder to shoulder tom said get away from": [65535, 0], "were shoulder to shoulder tom said get away from here": [65535, 0], "shoulder to shoulder tom said get away from here go": [65535, 0], "to shoulder tom said get away from here go away": [65535, 0], "shoulder tom said get away from here go away yourself": [65535, 0], "tom said get away from here go away yourself i": [65535, 0], "said get away from here go away yourself i won't": [65535, 0], "get away from here go away yourself i won't i": [65535, 0], "away from here go away yourself i won't i won't": [65535, 0], "from here go away yourself i won't i won't either": [65535, 0], "here go away yourself i won't i won't either so": [65535, 0], "go away yourself i won't i won't either so they": [65535, 0], "away yourself i won't i won't either so they stood": [65535, 0], "yourself i won't i won't either so they stood each": [65535, 0], "i won't i won't either so they stood each with": [65535, 0], "won't i won't either so they stood each with a": [65535, 0], "i won't either so they stood each with a foot": [65535, 0], "won't either so they stood each with a foot placed": [65535, 0], "either so they stood each with a foot placed at": [65535, 0], "so they stood each with a foot placed at an": [65535, 0], "they stood each with a foot placed at an angle": [65535, 0], "stood each with a foot placed at an angle as": [65535, 0], "each with a foot placed at an angle as a": [65535, 0], "with a foot placed at an angle as a brace": [65535, 0], "a foot placed at an angle as a brace and": [65535, 0], "foot placed at an angle as a brace and both": [65535, 0], "placed at an angle as a brace and both shoving": [65535, 0], "at an angle as a brace and both shoving with": [65535, 0], "an angle as a brace and both shoving with might": [65535, 0], "angle as a brace and both shoving with might and": [65535, 0], "as a brace and both shoving with might and main": [65535, 0], "a brace and both shoving with might and main and": [65535, 0], "brace and both shoving with might and main and glowering": [65535, 0], "and both shoving with might and main and glowering at": [65535, 0], "both shoving with might and main and glowering at each": [65535, 0], "shoving with might and main and glowering at each other": [65535, 0], "with might and main and glowering at each other with": [65535, 0], "might and main and glowering at each other with hate": [65535, 0], "and main and glowering at each other with hate but": [65535, 0], "main and glowering at each other with hate but neither": [65535, 0], "and glowering at each other with hate but neither could": [65535, 0], "glowering at each other with hate but neither could get": [65535, 0], "at each other with hate but neither could get an": [65535, 0], "each other with hate but neither could get an advantage": [65535, 0], "other with hate but neither could get an advantage after": [65535, 0], "with hate but neither could get an advantage after struggling": [65535, 0], "hate but neither could get an advantage after struggling till": [65535, 0], "but neither could get an advantage after struggling till both": [65535, 0], "neither could get an advantage after struggling till both were": [65535, 0], "could get an advantage after struggling till both were hot": [65535, 0], "get an advantage after struggling till both were hot and": [65535, 0], "an advantage after struggling till both were hot and flushed": [65535, 0], "advantage after struggling till both were hot and flushed each": [65535, 0], "after struggling till both were hot and flushed each relaxed": [65535, 0], "struggling till both were hot and flushed each relaxed his": [65535, 0], "till both were hot and flushed each relaxed his strain": [65535, 0], "both were hot and flushed each relaxed his strain with": [65535, 0], "were hot and flushed each relaxed his strain with watchful": [65535, 0], "hot and flushed each relaxed his strain with watchful caution": [65535, 0], "and flushed each relaxed his strain with watchful caution and": [65535, 0], "flushed each relaxed his strain with watchful caution and tom": [65535, 0], "each relaxed his strain with watchful caution and tom said": [65535, 0], "relaxed his strain with watchful caution and tom said you're": [65535, 0], "his strain with watchful caution and tom said you're a": [65535, 0], "strain with watchful caution and tom said you're a coward": [65535, 0], "with watchful caution and tom said you're a coward and": [65535, 0], "watchful caution and tom said you're a coward and a": [65535, 0], "caution and tom said you're a coward and a pup": [65535, 0], "and tom said you're a coward and a pup i'll": [65535, 0], "tom said you're a coward and a pup i'll tell": [65535, 0], "said you're a coward and a pup i'll tell my": [65535, 0], "you're a coward and a pup i'll tell my big": [65535, 0], "a coward and a pup i'll tell my big brother": [65535, 0], "coward and a pup i'll tell my big brother on": [65535, 0], "and a pup i'll tell my big brother on you": [65535, 0], "a pup i'll tell my big brother on you and": [65535, 0], "pup i'll tell my big brother on you and he": [65535, 0], "i'll tell my big brother on you and he can": [65535, 0], "tell my big brother on you and he can thrash": [65535, 0], "my big brother on you and he can thrash you": [65535, 0], "big brother on you and he can thrash you with": [65535, 0], "brother on you and he can thrash you with his": [65535, 0], "on you and he can thrash you with his little": [65535, 0], "you and he can thrash you with his little finger": [65535, 0], "and he can thrash you with his little finger and": [65535, 0], "he can thrash you with his little finger and i'll": [65535, 0], "can thrash you with his little finger and i'll make": [65535, 0], "thrash you with his little finger and i'll make him": [65535, 0], "you with his little finger and i'll make him do": [65535, 0], "with his little finger and i'll make him do it": [65535, 0], "his little finger and i'll make him do it too": [65535, 0], "little finger and i'll make him do it too what": [65535, 0], "finger and i'll make him do it too what do": [65535, 0], "and i'll make him do it too what do i": [65535, 0], "i'll make him do it too what do i care": [65535, 0], "make him do it too what do i care for": [65535, 0], "him do it too what do i care for your": [65535, 0], "do it too what do i care for your big": [65535, 0], "it too what do i care for your big brother": [65535, 0], "too what do i care for your big brother i've": [65535, 0], "what do i care for your big brother i've got": [65535, 0], "do i care for your big brother i've got a": [65535, 0], "i care for your big brother i've got a brother": [65535, 0], "care for your big brother i've got a brother that's": [65535, 0], "for your big brother i've got a brother that's bigger": [65535, 0], "your big brother i've got a brother that's bigger than": [65535, 0], "big brother i've got a brother that's bigger than he": [65535, 0], "brother i've got a brother that's bigger than he is": [65535, 0], "i've got a brother that's bigger than he is and": [65535, 0], "got a brother that's bigger than he is and what's": [65535, 0], "a brother that's bigger than he is and what's more": [65535, 0], "brother that's bigger than he is and what's more he": [65535, 0], "that's bigger than he is and what's more he can": [65535, 0], "bigger than he is and what's more he can throw": [65535, 0], "than he is and what's more he can throw him": [65535, 0], "he is and what's more he can throw him over": [65535, 0], "is and what's more he can throw him over that": [65535, 0], "and what's more he can throw him over that fence": [65535, 0], "what's more he can throw him over that fence too": [65535, 0], "more he can throw him over that fence too both": [65535, 0], "he can throw him over that fence too both brothers": [65535, 0], "can throw him over that fence too both brothers were": [65535, 0], "throw him over that fence too both brothers were imaginary": [65535, 0], "him over that fence too both brothers were imaginary that's": [65535, 0], "over that fence too both brothers were imaginary that's a": [65535, 0], "that fence too both brothers were imaginary that's a lie": [65535, 0], "fence too both brothers were imaginary that's a lie your": [65535, 0], "too both brothers were imaginary that's a lie your saying": [65535, 0], "both brothers were imaginary that's a lie your saying so": [65535, 0], "brothers were imaginary that's a lie your saying so don't": [65535, 0], "were imaginary that's a lie your saying so don't make": [65535, 0], "imaginary that's a lie your saying so don't make it": [65535, 0], "that's a lie your saying so don't make it so": [65535, 0], "a lie your saying so don't make it so tom": [65535, 0], "lie your saying so don't make it so tom drew": [65535, 0], "your saying so don't make it so tom drew a": [65535, 0], "saying so don't make it so tom drew a line": [65535, 0], "so don't make it so tom drew a line in": [65535, 0], "don't make it so tom drew a line in the": [65535, 0], "make it so tom drew a line in the dust": [65535, 0], "it so tom drew a line in the dust with": [65535, 0], "so tom drew a line in the dust with his": [65535, 0], "tom drew a line in the dust with his big": [65535, 0], "drew a line in the dust with his big toe": [65535, 0], "a line in the dust with his big toe and": [65535, 0], "line in the dust with his big toe and said": [65535, 0], "in the dust with his big toe and said i": [65535, 0], "the dust with his big toe and said i dare": [65535, 0], "dust with his big toe and said i dare you": [65535, 0], "with his big toe and said i dare you to": [65535, 0], "his big toe and said i dare you to step": [65535, 0], "big toe and said i dare you to step over": [65535, 0], "toe and said i dare you to step over that": [65535, 0], "and said i dare you to step over that and": [65535, 0], "said i dare you to step over that and i'll": [65535, 0], "i dare you to step over that and i'll lick": [65535, 0], "dare you to step over that and i'll lick you": [65535, 0], "you to step over that and i'll lick you till": [65535, 0], "to step over that and i'll lick you till you": [65535, 0], "step over that and i'll lick you till you can't": [65535, 0], "over that and i'll lick you till you can't stand": [65535, 0], "that and i'll lick you till you can't stand up": [65535, 0], "and i'll lick you till you can't stand up anybody": [65535, 0], "i'll lick you till you can't stand up anybody that'll": [65535, 0], "lick you till you can't stand up anybody that'll take": [65535, 0], "you till you can't stand up anybody that'll take a": [65535, 0], "till you can't stand up anybody that'll take a dare": [65535, 0], "you can't stand up anybody that'll take a dare will": [65535, 0], "can't stand up anybody that'll take a dare will steal": [65535, 0], "stand up anybody that'll take a dare will steal sheep": [65535, 0], "up anybody that'll take a dare will steal sheep the": [65535, 0], "anybody that'll take a dare will steal sheep the new": [65535, 0], "that'll take a dare will steal sheep the new boy": [65535, 0], "take a dare will steal sheep the new boy stepped": [65535, 0], "a dare will steal sheep the new boy stepped over": [65535, 0], "dare will steal sheep the new boy stepped over promptly": [65535, 0], "will steal sheep the new boy stepped over promptly and": [65535, 0], "steal sheep the new boy stepped over promptly and said": [65535, 0], "sheep the new boy stepped over promptly and said now": [65535, 0], "the new boy stepped over promptly and said now you": [65535, 0], "new boy stepped over promptly and said now you said": [65535, 0], "boy stepped over promptly and said now you said you'd": [65535, 0], "stepped over promptly and said now you said you'd do": [65535, 0], "over promptly and said now you said you'd do it": [65535, 0], "promptly and said now you said you'd do it now": [65535, 0], "and said now you said you'd do it now let's": [65535, 0], "said now you said you'd do it now let's see": [65535, 0], "now you said you'd do it now let's see you": [65535, 0], "you said you'd do it now let's see you do": [65535, 0], "said you'd do it now let's see you do it": [65535, 0], "you'd do it now let's see you do it don't": [65535, 0], "do it now let's see you do it don't you": [65535, 0], "it now let's see you do it don't you crowd": [65535, 0], "now let's see you do it don't you crowd me": [65535, 0], "let's see you do it don't you crowd me now": [65535, 0], "see you do it don't you crowd me now you": [65535, 0], "you do it don't you crowd me now you better": [65535, 0], "do it don't you crowd me now you better look": [65535, 0], "it don't you crowd me now you better look out": [65535, 0], "don't you crowd me now you better look out well": [65535, 0], "you crowd me now you better look out well you": [65535, 0], "crowd me now you better look out well you said": [65535, 0], "me now you better look out well you said you'd": [65535, 0], "now you better look out well you said you'd do": [65535, 0], "you better look out well you said you'd do it": [65535, 0], "better look out well you said you'd do it why": [65535, 0], "look out well you said you'd do it why don't": [65535, 0], "out well you said you'd do it why don't you": [65535, 0], "well you said you'd do it why don't you do": [65535, 0], "you said you'd do it why don't you do it": [65535, 0], "said you'd do it why don't you do it by": [65535, 0], "you'd do it why don't you do it by jingo": [65535, 0], "do it why don't you do it by jingo for": [65535, 0], "it why don't you do it by jingo for two": [65535, 0], "why don't you do it by jingo for two cents": [65535, 0], "don't you do it by jingo for two cents i": [65535, 0], "you do it by jingo for two cents i will": [65535, 0], "do it by jingo for two cents i will do": [65535, 0], "it by jingo for two cents i will do it": [65535, 0], "by jingo for two cents i will do it the": [65535, 0], "jingo for two cents i will do it the new": [65535, 0], "for two cents i will do it the new boy": [65535, 0], "two cents i will do it the new boy took": [65535, 0], "cents i will do it the new boy took two": [65535, 0], "i will do it the new boy took two broad": [65535, 0], "will do it the new boy took two broad coppers": [65535, 0], "do it the new boy took two broad coppers out": [65535, 0], "it the new boy took two broad coppers out of": [65535, 0], "the new boy took two broad coppers out of his": [65535, 0], "new boy took two broad coppers out of his pocket": [65535, 0], "boy took two broad coppers out of his pocket and": [65535, 0], "took two broad coppers out of his pocket and held": [65535, 0], "two broad coppers out of his pocket and held them": [65535, 0], "broad coppers out of his pocket and held them out": [65535, 0], "coppers out of his pocket and held them out with": [65535, 0], "out of his pocket and held them out with derision": [65535, 0], "of his pocket and held them out with derision tom": [65535, 0], "his pocket and held them out with derision tom struck": [65535, 0], "pocket and held them out with derision tom struck them": [65535, 0], "and held them out with derision tom struck them to": [65535, 0], "held them out with derision tom struck them to the": [65535, 0], "them out with derision tom struck them to the ground": [65535, 0], "out with derision tom struck them to the ground in": [65535, 0], "with derision tom struck them to the ground in an": [65535, 0], "derision tom struck them to the ground in an instant": [65535, 0], "tom struck them to the ground in an instant both": [65535, 0], "struck them to the ground in an instant both boys": [65535, 0], "them to the ground in an instant both boys were": [65535, 0], "to the ground in an instant both boys were rolling": [65535, 0], "the ground in an instant both boys were rolling and": [65535, 0], "ground in an instant both boys were rolling and tumbling": [65535, 0], "in an instant both boys were rolling and tumbling in": [65535, 0], "an instant both boys were rolling and tumbling in the": [65535, 0], "instant both boys were rolling and tumbling in the dirt": [65535, 0], "both boys were rolling and tumbling in the dirt gripped": [65535, 0], "boys were rolling and tumbling in the dirt gripped together": [65535, 0], "were rolling and tumbling in the dirt gripped together like": [65535, 0], "rolling and tumbling in the dirt gripped together like cats": [65535, 0], "and tumbling in the dirt gripped together like cats and": [65535, 0], "tumbling in the dirt gripped together like cats and for": [65535, 0], "in the dirt gripped together like cats and for the": [65535, 0], "the dirt gripped together like cats and for the space": [65535, 0], "dirt gripped together like cats and for the space of": [65535, 0], "gripped together like cats and for the space of a": [65535, 0], "together like cats and for the space of a minute": [65535, 0], "like cats and for the space of a minute they": [65535, 0], "cats and for the space of a minute they tugged": [65535, 0], "and for the space of a minute they tugged and": [65535, 0], "for the space of a minute they tugged and tore": [65535, 0], "the space of a minute they tugged and tore at": [65535, 0], "space of a minute they tugged and tore at each": [65535, 0], "of a minute they tugged and tore at each other's": [65535, 0], "a minute they tugged and tore at each other's hair": [65535, 0], "minute they tugged and tore at each other's hair and": [65535, 0], "they tugged and tore at each other's hair and clothes": [65535, 0], "tugged and tore at each other's hair and clothes punched": [65535, 0], "and tore at each other's hair and clothes punched and": [65535, 0], "tore at each other's hair and clothes punched and scratched": [65535, 0], "at each other's hair and clothes punched and scratched each": [65535, 0], "each other's hair and clothes punched and scratched each other's": [65535, 0], "other's hair and clothes punched and scratched each other's nose": [65535, 0], "hair and clothes punched and scratched each other's nose and": [65535, 0], "and clothes punched and scratched each other's nose and covered": [65535, 0], "clothes punched and scratched each other's nose and covered themselves": [65535, 0], "punched and scratched each other's nose and covered themselves with": [65535, 0], "and scratched each other's nose and covered themselves with dust": [65535, 0], "scratched each other's nose and covered themselves with dust and": [65535, 0], "each other's nose and covered themselves with dust and glory": [65535, 0], "other's nose and covered themselves with dust and glory presently": [65535, 0], "nose and covered themselves with dust and glory presently the": [65535, 0], "and covered themselves with dust and glory presently the confusion": [65535, 0], "covered themselves with dust and glory presently the confusion took": [65535, 0], "themselves with dust and glory presently the confusion took form": [65535, 0], "with dust and glory presently the confusion took form and": [65535, 0], "dust and glory presently the confusion took form and through": [65535, 0], "and glory presently the confusion took form and through the": [65535, 0], "glory presently the confusion took form and through the fog": [65535, 0], "presently the confusion took form and through the fog of": [65535, 0], "the confusion took form and through the fog of battle": [65535, 0], "confusion took form and through the fog of battle tom": [65535, 0], "took form and through the fog of battle tom appeared": [65535, 0], "form and through the fog of battle tom appeared seated": [65535, 0], "and through the fog of battle tom appeared seated astride": [65535, 0], "through the fog of battle tom appeared seated astride the": [65535, 0], "the fog of battle tom appeared seated astride the new": [65535, 0], "fog of battle tom appeared seated astride the new boy": [65535, 0], "of battle tom appeared seated astride the new boy and": [65535, 0], "battle tom appeared seated astride the new boy and pounding": [65535, 0], "tom appeared seated astride the new boy and pounding him": [65535, 0], "appeared seated astride the new boy and pounding him with": [65535, 0], "seated astride the new boy and pounding him with his": [65535, 0], "astride the new boy and pounding him with his fists": [65535, 0], "the new boy and pounding him with his fists holler": [65535, 0], "new boy and pounding him with his fists holler 'nuff": [65535, 0], "boy and pounding him with his fists holler 'nuff said": [65535, 0], "and pounding him with his fists holler 'nuff said he": [65535, 0], "pounding him with his fists holler 'nuff said he the": [65535, 0], "him with his fists holler 'nuff said he the boy": [65535, 0], "with his fists holler 'nuff said he the boy only": [65535, 0], "his fists holler 'nuff said he the boy only struggled": [65535, 0], "fists holler 'nuff said he the boy only struggled to": [65535, 0], "holler 'nuff said he the boy only struggled to free": [65535, 0], "'nuff said he the boy only struggled to free himself": [65535, 0], "said he the boy only struggled to free himself he": [65535, 0], "he the boy only struggled to free himself he was": [65535, 0], "the boy only struggled to free himself he was crying": [65535, 0], "boy only struggled to free himself he was crying mainly": [65535, 0], "only struggled to free himself he was crying mainly from": [65535, 0], "struggled to free himself he was crying mainly from rage": [65535, 0], "to free himself he was crying mainly from rage holler": [65535, 0], "free himself he was crying mainly from rage holler 'nuff": [65535, 0], "himself he was crying mainly from rage holler 'nuff and": [65535, 0], "he was crying mainly from rage holler 'nuff and the": [65535, 0], "was crying mainly from rage holler 'nuff and the pounding": [65535, 0], "crying mainly from rage holler 'nuff and the pounding went": [65535, 0], "mainly from rage holler 'nuff and the pounding went on": [65535, 0], "from rage holler 'nuff and the pounding went on at": [65535, 0], "rage holler 'nuff and the pounding went on at last": [65535, 0], "holler 'nuff and the pounding went on at last the": [65535, 0], "'nuff and the pounding went on at last the stranger": [65535, 0], "and the pounding went on at last the stranger got": [65535, 0], "the pounding went on at last the stranger got out": [65535, 0], "pounding went on at last the stranger got out a": [65535, 0], "went on at last the stranger got out a smothered": [65535, 0], "on at last the stranger got out a smothered 'nuff": [65535, 0], "at last the stranger got out a smothered 'nuff and": [65535, 0], "last the stranger got out a smothered 'nuff and tom": [65535, 0], "the stranger got out a smothered 'nuff and tom let": [65535, 0], "stranger got out a smothered 'nuff and tom let him": [65535, 0], "got out a smothered 'nuff and tom let him up": [65535, 0], "out a smothered 'nuff and tom let him up and": [65535, 0], "a smothered 'nuff and tom let him up and said": [65535, 0], "smothered 'nuff and tom let him up and said now": [65535, 0], "'nuff and tom let him up and said now that'll": [65535, 0], "and tom let him up and said now that'll learn": [65535, 0], "tom let him up and said now that'll learn you": [65535, 0], "let him up and said now that'll learn you better": [65535, 0], "him up and said now that'll learn you better look": [65535, 0], "up and said now that'll learn you better look out": [65535, 0], "and said now that'll learn you better look out who": [65535, 0], "said now that'll learn you better look out who you're": [65535, 0], "now that'll learn you better look out who you're fooling": [65535, 0], "that'll learn you better look out who you're fooling with": [65535, 0], "learn you better look out who you're fooling with next": [65535, 0], "you better look out who you're fooling with next time": [65535, 0], "better look out who you're fooling with next time the": [65535, 0], "look out who you're fooling with next time the new": [65535, 0], "out who you're fooling with next time the new boy": [65535, 0], "who you're fooling with next time the new boy went": [65535, 0], "you're fooling with next time the new boy went off": [65535, 0], "fooling with next time the new boy went off brushing": [65535, 0], "with next time the new boy went off brushing the": [65535, 0], "next time the new boy went off brushing the dust": [65535, 0], "time the new boy went off brushing the dust from": [65535, 0], "the new boy went off brushing the dust from his": [65535, 0], "new boy went off brushing the dust from his clothes": [65535, 0], "boy went off brushing the dust from his clothes sobbing": [65535, 0], "went off brushing the dust from his clothes sobbing snuffling": [65535, 0], "off brushing the dust from his clothes sobbing snuffling and": [65535, 0], "brushing the dust from his clothes sobbing snuffling and occasionally": [65535, 0], "the dust from his clothes sobbing snuffling and occasionally looking": [65535, 0], "dust from his clothes sobbing snuffling and occasionally looking back": [65535, 0], "from his clothes sobbing snuffling and occasionally looking back and": [65535, 0], "his clothes sobbing snuffling and occasionally looking back and shaking": [65535, 0], "clothes sobbing snuffling and occasionally looking back and shaking his": [65535, 0], "sobbing snuffling and occasionally looking back and shaking his head": [65535, 0], "snuffling and occasionally looking back and shaking his head and": [65535, 0], "and occasionally looking back and shaking his head and threatening": [65535, 0], "occasionally looking back and shaking his head and threatening what": [65535, 0], "looking back and shaking his head and threatening what he": [65535, 0], "back and shaking his head and threatening what he would": [65535, 0], "and shaking his head and threatening what he would do": [65535, 0], "shaking his head and threatening what he would do to": [65535, 0], "his head and threatening what he would do to tom": [65535, 0], "head and threatening what he would do to tom the": [65535, 0], "and threatening what he would do to tom the next": [65535, 0], "threatening what he would do to tom the next time": [65535, 0], "what he would do to tom the next time he": [65535, 0], "he would do to tom the next time he caught": [65535, 0], "would do to tom the next time he caught him": [65535, 0], "do to tom the next time he caught him out": [65535, 0], "to tom the next time he caught him out to": [65535, 0], "tom the next time he caught him out to which": [65535, 0], "the next time he caught him out to which tom": [65535, 0], "next time he caught him out to which tom responded": [65535, 0], "time he caught him out to which tom responded with": [65535, 0], "he caught him out to which tom responded with jeers": [65535, 0], "caught him out to which tom responded with jeers and": [65535, 0], "him out to which tom responded with jeers and started": [65535, 0], "out to which tom responded with jeers and started off": [65535, 0], "to which tom responded with jeers and started off in": [65535, 0], "which tom responded with jeers and started off in high": [65535, 0], "tom responded with jeers and started off in high feather": [65535, 0], "responded with jeers and started off in high feather and": [65535, 0], "with jeers and started off in high feather and as": [65535, 0], "jeers and started off in high feather and as soon": [65535, 0], "and started off in high feather and as soon as": [65535, 0], "started off in high feather and as soon as his": [65535, 0], "off in high feather and as soon as his back": [65535, 0], "in high feather and as soon as his back was": [65535, 0], "high feather and as soon as his back was turned": [65535, 0], "feather and as soon as his back was turned the": [65535, 0], "and as soon as his back was turned the new": [65535, 0], "as soon as his back was turned the new boy": [65535, 0], "soon as his back was turned the new boy snatched": [65535, 0], "as his back was turned the new boy snatched up": [65535, 0], "his back was turned the new boy snatched up a": [65535, 0], "back was turned the new boy snatched up a stone": [65535, 0], "was turned the new boy snatched up a stone threw": [65535, 0], "turned the new boy snatched up a stone threw it": [65535, 0], "the new boy snatched up a stone threw it and": [65535, 0], "new boy snatched up a stone threw it and hit": [65535, 0], "boy snatched up a stone threw it and hit him": [65535, 0], "snatched up a stone threw it and hit him between": [65535, 0], "up a stone threw it and hit him between the": [65535, 0], "a stone threw it and hit him between the shoulders": [65535, 0], "stone threw it and hit him between the shoulders and": [65535, 0], "threw it and hit him between the shoulders and then": [65535, 0], "it and hit him between the shoulders and then turned": [65535, 0], "and hit him between the shoulders and then turned tail": [65535, 0], "hit him between the shoulders and then turned tail and": [65535, 0], "him between the shoulders and then turned tail and ran": [65535, 0], "between the shoulders and then turned tail and ran like": [65535, 0], "the shoulders and then turned tail and ran like an": [65535, 0], "shoulders and then turned tail and ran like an antelope": [65535, 0], "and then turned tail and ran like an antelope tom": [65535, 0], "then turned tail and ran like an antelope tom chased": [65535, 0], "turned tail and ran like an antelope tom chased the": [65535, 0], "tail and ran like an antelope tom chased the traitor": [65535, 0], "and ran like an antelope tom chased the traitor home": [65535, 0], "ran like an antelope tom chased the traitor home and": [65535, 0], "like an antelope tom chased the traitor home and thus": [65535, 0], "an antelope tom chased the traitor home and thus found": [65535, 0], "antelope tom chased the traitor home and thus found out": [65535, 0], "tom chased the traitor home and thus found out where": [65535, 0], "chased the traitor home and thus found out where he": [65535, 0], "the traitor home and thus found out where he lived": [65535, 0], "traitor home and thus found out where he lived he": [65535, 0], "home and thus found out where he lived he then": [65535, 0], "and thus found out where he lived he then held": [65535, 0], "thus found out where he lived he then held a": [65535, 0], "found out where he lived he then held a position": [65535, 0], "out where he lived he then held a position at": [65535, 0], "where he lived he then held a position at the": [65535, 0], "he lived he then held a position at the gate": [65535, 0], "lived he then held a position at the gate for": [65535, 0], "he then held a position at the gate for some": [65535, 0], "then held a position at the gate for some time": [65535, 0], "held a position at the gate for some time daring": [65535, 0], "a position at the gate for some time daring the": [65535, 0], "position at the gate for some time daring the enemy": [65535, 0], "at the gate for some time daring the enemy to": [65535, 0], "the gate for some time daring the enemy to come": [65535, 0], "gate for some time daring the enemy to come outside": [65535, 0], "for some time daring the enemy to come outside but": [65535, 0], "some time daring the enemy to come outside but the": [65535, 0], "time daring the enemy to come outside but the enemy": [65535, 0], "daring the enemy to come outside but the enemy only": [65535, 0], "the enemy to come outside but the enemy only made": [65535, 0], "enemy to come outside but the enemy only made faces": [65535, 0], "to come outside but the enemy only made faces at": [65535, 0], "come outside but the enemy only made faces at him": [65535, 0], "outside but the enemy only made faces at him through": [65535, 0], "but the enemy only made faces at him through the": [65535, 0], "the enemy only made faces at him through the window": [65535, 0], "enemy only made faces at him through the window and": [65535, 0], "only made faces at him through the window and declined": [65535, 0], "made faces at him through the window and declined at": [65535, 0], "faces at him through the window and declined at last": [65535, 0], "at him through the window and declined at last the": [65535, 0], "him through the window and declined at last the enemy's": [65535, 0], "through the window and declined at last the enemy's mother": [65535, 0], "the window and declined at last the enemy's mother appeared": [65535, 0], "window and declined at last the enemy's mother appeared and": [65535, 0], "and declined at last the enemy's mother appeared and called": [65535, 0], "declined at last the enemy's mother appeared and called tom": [65535, 0], "at last the enemy's mother appeared and called tom a": [65535, 0], "last the enemy's mother appeared and called tom a bad": [65535, 0], "the enemy's mother appeared and called tom a bad vicious": [65535, 0], "enemy's mother appeared and called tom a bad vicious vulgar": [65535, 0], "mother appeared and called tom a bad vicious vulgar child": [65535, 0], "appeared and called tom a bad vicious vulgar child and": [65535, 0], "and called tom a bad vicious vulgar child and ordered": [65535, 0], "called tom a bad vicious vulgar child and ordered him": [65535, 0], "tom a bad vicious vulgar child and ordered him away": [65535, 0], "a bad vicious vulgar child and ordered him away so": [65535, 0], "bad vicious vulgar child and ordered him away so he": [65535, 0], "vicious vulgar child and ordered him away so he went": [65535, 0], "vulgar child and ordered him away so he went away": [65535, 0], "child and ordered him away so he went away but": [65535, 0], "and ordered him away so he went away but he": [65535, 0], "ordered him away so he went away but he said": [65535, 0], "him away so he went away but he said he": [65535, 0], "away so he went away but he said he 'lowed": [65535, 0], "so he went away but he said he 'lowed to": [65535, 0], "he went away but he said he 'lowed to lay": [65535, 0], "went away but he said he 'lowed to lay for": [65535, 0], "away but he said he 'lowed to lay for that": [65535, 0], "but he said he 'lowed to lay for that boy": [65535, 0], "he said he 'lowed to lay for that boy he": [65535, 0], "said he 'lowed to lay for that boy he got": [65535, 0], "he 'lowed to lay for that boy he got home": [65535, 0], "'lowed to lay for that boy he got home pretty": [65535, 0], "to lay for that boy he got home pretty late": [65535, 0], "lay for that boy he got home pretty late that": [65535, 0], "for that boy he got home pretty late that night": [65535, 0], "that boy he got home pretty late that night and": [65535, 0], "boy he got home pretty late that night and when": [65535, 0], "he got home pretty late that night and when he": [65535, 0], "got home pretty late that night and when he climbed": [65535, 0], "home pretty late that night and when he climbed cautiously": [65535, 0], "pretty late that night and when he climbed cautiously in": [65535, 0], "late that night and when he climbed cautiously in at": [65535, 0], "that night and when he climbed cautiously in at the": [65535, 0], "night and when he climbed cautiously in at the window": [65535, 0], "and when he climbed cautiously in at the window he": [65535, 0], "when he climbed cautiously in at the window he uncovered": [65535, 0], "he climbed cautiously in at the window he uncovered an": [65535, 0], "climbed cautiously in at the window he uncovered an ambuscade": [65535, 0], "cautiously in at the window he uncovered an ambuscade in": [65535, 0], "in at the window he uncovered an ambuscade in the": [65535, 0], "at the window he uncovered an ambuscade in the person": [65535, 0], "the window he uncovered an ambuscade in the person of": [65535, 0], "window he uncovered an ambuscade in the person of his": [65535, 0], "he uncovered an ambuscade in the person of his aunt": [65535, 0], "uncovered an ambuscade in the person of his aunt and": [65535, 0], "an ambuscade in the person of his aunt and when": [65535, 0], "ambuscade in the person of his aunt and when she": [65535, 0], "in the person of his aunt and when she saw": [65535, 0], "the person of his aunt and when she saw the": [65535, 0], "person of his aunt and when she saw the state": [65535, 0], "of his aunt and when she saw the state his": [65535, 0], "his aunt and when she saw the state his clothes": [65535, 0], "aunt and when she saw the state his clothes were": [65535, 0], "and when she saw the state his clothes were in": [65535, 0], "when she saw the state his clothes were in her": [65535, 0], "she saw the state his clothes were in her resolution": [65535, 0], "saw the state his clothes were in her resolution to": [65535, 0], "the state his clothes were in her resolution to turn": [65535, 0], "state his clothes were in her resolution to turn his": [65535, 0], "his clothes were in her resolution to turn his saturday": [65535, 0], "clothes were in her resolution to turn his saturday holiday": [65535, 0], "were in her resolution to turn his saturday holiday into": [65535, 0], "in her resolution to turn his saturday holiday into captivity": [65535, 0], "her resolution to turn his saturday holiday into captivity at": [65535, 0], "resolution to turn his saturday holiday into captivity at hard": [65535, 0], "to turn his saturday holiday into captivity at hard labor": [65535, 0], "turn his saturday holiday into captivity at hard labor became": [65535, 0], "his saturday holiday into captivity at hard labor became adamantine": [65535, 0], "saturday holiday into captivity at hard labor became adamantine in": [65535, 0], "holiday into captivity at hard labor became adamantine in its": [65535, 0], "into captivity at hard labor became adamantine in its firmness": [65535, 0], "tranquil": [65535, 0], "beamed": [65535, 0], "peaceful": [65535, 0], "family": [65535, 0], "worship": [43635, 21900], "solid": [65535, 0], "courses": [65535, 0], "scriptural": [65535, 0], "quotations": [65535, 0], "welded": [65535, 0], "thin": [32706, 32829], "mortar": [65535, 0], "originality": [65535, 0], "summit": [65535, 0], "delivered": [65535, 0], "grim": [32706, 32829], "chapter": [65535, 0], "mosaic": [65535, 0], "sinai": [65535, 0], "girded": [65535, 0], "loins": [65535, 0], "verses": [65535, 0], "learned": [65535, 0], "energies": [65535, 0], "memorizing": [65535, 0], "five": [65535, 0], "mount": [65535, 0], "shorter": [65535, 0], "general": [65535, 0], "traversing": [65535, 0], "busy": [65535, 0], "distracting": [65535, 0], "recreations": [65535, 0], "recite": [65535, 0], "blessed": [56143, 9392], "theirs": [65535, 0], "kingdom": [65535, 0], "heaven": [65535, 0], "mourn": [65535, 0], "sh": [65535, 0], "s": [1467, 64068], "h": [65535, 0], "thick": [65535, 0], "headed": [65535, 0], "teasing": [65535, 0], "manage": [65535, 0], "pressure": [65535, 0], "prospective": [65535, 0], "gain": [65535, 0], "accomplished": [65535, 0], "shining": [65535, 0], "success": [65535, 0], "brand": [65535, 0], "barlow": [65535, 0], "convulsion": [65535, 0], "delight": [32706, 32829], "foundations": [65535, 0], "true": [19609, 45926], "inconceivable": [65535, 0], "grandeur": [65535, 0], "western": [65535, 0], "weapon": [65535, 0], "possibly": [65535, 0], "counterfeited": [65535, 0], "injury": [65535, 0], "imposing": [65535, 0], "mystery": [65535, 0], "perhaps": [39262, 26273], "contrived": [65535, 0], "scarify": [65535, 0], "cupboard": [65535, 0], "arranging": [65535, 0], "bureau": [65535, 0], "dress": [65535, 0], "basin": [65535, 0], "soap": [65535, 0], "sleeves": [65535, 0], "poured": [65535, 0], "entered": [65535, 0], "wipe": [65535, 0], "diligently": [65535, 0], "towel": [65535, 0], "removed": [65535, 0], "ashamed": [65535, 0], "mustn't": [65535, 0], "disconcerted": [65535, 0], "refilled": [65535, 0], "gathering": [65535, 0], "groping": [65535, 0], "honorable": [65535, 0], "testimony": [65535, 0], "suds": [65535, 0], "dripping": [65535, 0], "emerged": [65535, 0], "satisfactory": [65535, 0], "territory": [65535, 0], "mask": [65535, 0], "below": [65535, 0], "expanse": [65535, 0], "unirrigated": [65535, 0], "soil": [65535, 0], "spread": [43635, 21900], "downward": [65535, 0], "distinction": [65535, 0], "color": [65535, 0], "saturated": [65535, 0], "neatly": [65535, 0], "brushed": [65535, 0], "curls": [65535, 0], "wrought": [21790, 43745], "symmetrical": [65535, 0], "privately": [65535, 0], "smoothed": [65535, 0], "difficulty": [65535, 0], "plastered": [65535, 0], "effeminate": [65535, 0], "bitterness": [65535, 0], "suit": [32706, 32829], "clothing": [65535, 0], "used": [65535, 0], "we": [2779, 62756], "size": [65535, 0], "wardrobe": [65535, 0], "rights": [65535, 0], "buttoned": [65535, 0], "neat": [65535, 0], "crowned": [65535, 0], "speckled": [65535, 0], "exceedingly": [65535, 0], "improved": [65535, 0], "restraint": [32706, 32829], "cleanliness": [65535, 0], "galled": [65535, 0], "hoped": [65535, 0], "forget": [65535, 0], "blighted": [65535, 0], "coated": [65535, 0], "thoroughly": [65535, 0], "tallow": [43635, 21900], "temper": [65535, 0], "persuasively": [65535, 0], "snarling": [65535, 0], "fond": [32706, 32829], "sabbath": [65535, 0], "voluntarily": [65535, 0], "stronger": [32706, 32829], "reasons": [65535, 0], "church's": [65535, 0], "backed": [65535, 0], "uncushioned": [65535, 0], "persons": [65535, 0], "edifice": [65535, 0], "plain": [32706, 32829], "affair": [65535, 0], "top": [65535, 0], "steeple": [65535, 0], "dropped": [65535, 0], "accosted": [65535, 0], "comrade": [65535, 0], "yaller": [65535, 0], "lickrish": [65535, 0], "fish": [13068, 52467], "hook": [65535, 0], "exhibited": [65535, 0], "property": [65535, 0], "changed": [65535, 0], "alleys": [65535, 0], "tickets": [65535, 0], "ones": [28026, 37509], "waylaid": [65535, 0], "buying": [65535, 0], "various": [65535, 0], "colors": [65535, 0], "fifteen": [65535, 0], "longer": [21790, 43745], "swarm": [65535, 0], "noisy": [65535, 0], "proceeded": [65535, 0], "quarrel": [65535, 0], "handy": [65535, 0], "teacher": [65535, 0], "grave": [65535, 0], "elderly": [65535, 0], "interfered": [65535, 0], "pin": [32706, 32829], "reprimand": [65535, 0], "pattern": [65535, 0], "restless": [65535, 0], "lessons": [65535, 0], "prompted": [65535, 0], "worried": [65535, 0], "reward": [65535, 0], "passage": [32706, 32829], "pay": [6531, 59004], "recitation": [65535, 0], "equalled": [65535, 0], "exchanged": [65535, 0], "superintendent": [65535, 0], "plainly": [32706, 32829], "bible": [65535, 0], "those": [27246, 38289], "pupil": [65535, 0], "readers": [65535, 0], "industry": [65535, 0], "application": [65535, 0], "memorize": [65535, 0], "dore": [10888, 54647], "bibles": [65535, 0], "german": [65535, 0], "parentage": [65535, 0], "won": [43635, 21900], "recited": [65535, 0], "stopping": [65535, 0], "mental": [65535, 0], "faculties": [65535, 0], "idiot": [32706, 32829], "grievous": [65535, 0], "misfortune": [65535, 0], "occasions": [65535, 0], "expressed": [65535, 0], "older": [65535, 0], "managed": [32706, 32829], "tedious": [65535, 0], "delivery": [65535, 0], "prizes": [65535, 0], "rare": [65535, 0], "noteworthy": [65535, 0], "successful": [65535, 0], "conspicuous": [65535, 0], "spot": [65535, 0], "scholar's": [65535, 0], "fired": [65535, 0], "ambition": [65535, 0], "lasted": [65535, 0], "hungered": [65535, 0], "unquestionably": [65535, 0], "entire": [65535, 0], "eclat": [65535, 0], "due": [10888, 54647], "pulpit": [65535, 0], "forefinger": [65535, 0], "inserted": [65535, 0], "leaves": [65535, 0], "commanded": [65535, 0], "customary": [65535, 0], "speech": [54578, 10957], "inevitable": [65535, 0], "singer": [65535, 0], "stands": [16338, 49197], "platform": [65535, 0], "sings": [65535, 0], "solo": [65535, 0], "concert": [65535, 0], "referred": [65535, 0], "slim": [65535, 0], "sandy": [65535, 0], "goatee": [65535, 0], "edge": [65535, 0], "points": [32706, 32829], "curved": [65535, 0], "abreast": [65535, 0], "corners": [65535, 0], "compelled": [65535, 0], "straight": [16338, 49197], "lookout": [65535, 0], "turning": [65535, 0], "required": [65535, 0], "propped": [65535, 0], "cravat": [65535, 0], "bank": [65535, 0], "boot": [65535, 0], "toes": [65535, 0], "sharply": [65535, 0], "fashion": [26155, 39380], "sleigh": [65535, 0], "runners": [65535, 0], "laboriously": [65535, 0], "sitting": [65535, 0], "pressed": [65535, 0], "walters": [65535, 0], "mien": [65535, 0], "sincere": [65535, 0], "sacred": [49105, 16430], "places": [65535, 0], "reverence": [65535, 0], "matters": [65535, 0], "intonation": [65535, 0], "thinks": [32706, 32829], "somewhere": [32706, 32829], "birds": [65535, 0], "applausive": [65535, 0], "learning": [65535, 0], "oration": [65535, 0], "vary": [65535, 0], "familiar": [65535, 0], "latter": [32706, 32829], "third": [65535, 0], "marred": [65535, 0], "resumption": [65535, 0], "fights": [65535, 0], "fidgetings": [65535, 0], "whisperings": [65535, 0], "extended": [65535, 0], "washing": [65535, 0], "bases": [65535, 0], "incorruptible": [65535, 0], "sound": [32706, 32829], "subsidence": [65535, 0], "walters'": [65535, 0], "conclusion": [21790, 43745], "silent": [65535, 0], "occasioned": [65535, 0], "event": [65535, 0], "entrance": [32706, 32829], "visitors": [65535, 0], "accompanied": [65535, 0], "portly": [65535, 0], "gentleman": [32706, 32829], "iron": [32706, 32829], "gray": [65535, 0], "dignified": [65535, 0], "doubtless": [65535, 0], "latter's": [65535, 0], "leading": [65535, 0], "chafings": [65535, 0], "repinings": [65535, 0], "smitten": [65535, 0], "meet": [21790, 43745], "amy": [65535, 0], "lawrence's": [65535, 0], "brook": [65535, 0], "loving": [65535, 0], "gaze": [32706, 32829], "ablaze": [65535, 0], "bliss": [65535, 0], "showing": [65535, 0], "cuffing": [65535, 0], "pulling": [65535, 0], "using": [65535, 0], "art": [2839, 62696], "fascinate": [65535, 0], "applause": [65535, 0], "exaltation": [65535, 0], "alloy": [65535, 0], "memory": [65535, 0], "humiliation": [65535, 0], "angel's": [65535, 0], "record": [65535, 0], "sand": [65535, 0], "waves": [65535, 0], "happiness": [65535, 0], "sweeping": [65535, 0], "given": [65535, 0], "highest": [32706, 32829], "honor": [21790, 43745], "introduced": [65535, 0], "prodigious": [65535, 0], "personage": [65535, 0], "judge": [65535, 0], "altogether": [32706, 32829], "august": [65535, 0], "creation": [65535, 0], "roar": [65535, 0], "constantinople": [65535, 0], "travelled": [65535, 0], "reflections": [65535, 0], "inspired": [65535, 0], "attested": [65535, 0], "silence": [65535, 0], "ranks": [65535, 0], "staring": [65535, 0], "immediately": [32706, 32829], "jings": [65535, 0], "official": [65535, 0], "bustlings": [65535, 0], "activities": [65535, 0], "delivering": [65535, 0], "judgments": [65535, 0], "discharging": [65535, 0], "directions": [65535, 0], "everywhere": [65535, 0], "target": [65535, 0], "librarian": [65535, 0], "running": [32706, 32829], "hither": [10888, 54647], "thither": [21790, 43745], "books": [65535, 0], "deal": [65535, 0], "splutter": [65535, 0], "fuss": [65535, 0], "insect": [65535, 0], "authority": [65535, 0], "delights": [65535, 0], "teachers": [65535, 0], "sweetly": [65535, 0], "boxed": [65535, 0], "patting": [65535, 0], "lovingly": [65535, 0], "scoldings": [65535, 0], "displays": [65535, 0], "discipline": [65535, 0], "sexes": [65535, 0], "library": [65535, 0], "frequently": [65535, 0], "seeming": [32706, 32829], "vexation": [65535, 0], "wads": [65535, 0], "scufflings": [65535, 0], "majestic": [65535, 0], "judicial": [65535, 0], "smile": [65535, 0], "warmed": [65535, 0], "wanting": [32706, 32829], "ecstasy": [65535, 0], "complete": [65535, 0], "deliver": [65535, 0], "exhibit": [65535, 0], "prodigy": [65535, 0], "none": [8710, 56825], "star": [65535, 0], "inquiring": [65535, 0], "worlds": [43635, 21900], "demanded": [65535, 0], "thunderbolt": [65535, 0], "clear": [65535, 0], "sky": [65535, 0], "expecting": [65535, 0], "source": [65535, 0], "certified": [65535, 0], "checks": [65535, 0], "therefore": [4665, 60870], "elevated": [65535, 0], "news": [65535, 0], "announced": [65535, 0], "stunning": [65535, 0], "surprise": [65535, 0], "decade": [65535, 0], "profound": [65535, 0], "sensation": [65535, 0], "one's": [65535, 0], "altitude": [65535, 0], "eaten": [65535, 0], "suffered": [65535, 0], "bitterest": [65535, 0], "pangs": [65535, 0], "perceived": [65535, 0], "contributed": [65535, 0], "splendor": [65535, 0], "amassed": [65535, 0], "selling": [65535, 0], "privileges": [65535, 0], "despised": [65535, 0], "dupes": [65535, 0], "wily": [65535, 0], "fraud": [65535, 0], "guileful": [65535, 0], "snake": [65535, 0], "grass": [65535, 0], "effusion": [65535, 0], "lacked": [65535, 0], "somewhat": [65535, 0], "gush": [65535, 0], "fellow's": [65535, 0], "instinct": [65535, 0], "taught": [65535, 0], "bear": [49105, 16430], "preposterous": [65535, 0], "warehoused": [65535, 0], "sheaves": [65535, 0], "wisdom": [65535, 0], "premises": [65535, 0], "dozen": [65535, 0], "capacity": [65535, 0], "lawrence": [65535, 0], "proud": [65535, 0], "grain": [65535, 0], "troubled": [43635, 21900], "dim": [65535, 0], "watched": [65535, 0], "glance": [65535, 0], "jealous": [65535, 0], "angry": [65535, 0], "tears": [65535, 0], "quaked": [65535, 0], "greatness": [65535, 0], "parent": [65535, 0], "liked": [65535, 0], "stammered": [65535, 0], "ah": [26155, 39380], "daresay": [65535, 0], "manners": [32706, 32829], "manly": [65535, 0], "fellow": [10888, 54647], "knowledge": [32706, 32829], "owing": [65535, 0], "boyhood": [65535, 0], "dear": [65535, 0], "encouraged": [65535, 0], "elegant": [65535, 0], "telling": [65535, 0], "names": [39262, 26273], "disciples": [65535, 0], "appointed": [65535, 0], "tugging": [65535, 0], "button": [65535, 0], "sheepish": [65535, 0], "blushed": [65535, 0], "simplest": [65535, 0], "question": [32706, 32829], "ask": [65535, 0], "david": [65535, 0], "goliath": [65535, 0], "curtain": [65535, 0], "charity": [65535, 0], "scene": [65535, 0], "sun rose": [65535, 0], "upon a": [65535, 0], "a tranquil": [65535, 0], "tranquil world": [65535, 0], "world and": [32706, 32829], "and beamed": [65535, 0], "beamed down": [65535, 0], "the peaceful": [65535, 0], "peaceful village": [65535, 0], "village like": [65535, 0], "a benediction": [65535, 0], "benediction breakfast": [65535, 0], "breakfast over": [65535, 0], "over aunt": [65535, 0], "polly had": [65535, 0], "had family": [65535, 0], "family worship": [65535, 0], "worship it": [65535, 0], "began with": [65535, 0], "a prayer": [65535, 0], "prayer built": [65535, 0], "built from": [65535, 0], "ground up": [65535, 0], "up of": [65535, 0], "of solid": [65535, 0], "solid courses": [65535, 0], "courses of": [65535, 0], "of scriptural": [65535, 0], "scriptural quotations": [65535, 0], "quotations welded": [65535, 0], "welded together": [65535, 0], "together with": [65535, 0], "a thin": [65535, 0], "thin mortar": [65535, 0], "mortar of": [65535, 0], "of originality": [65535, 0], "originality and": [65535, 0], "and from": [16338, 49197], "the summit": [65535, 0], "summit of": [65535, 0], "this she": [65535, 0], "she delivered": [65535, 0], "delivered a": [65535, 0], "a grim": [65535, 0], "grim chapter": [65535, 0], "chapter of": [65535, 0], "the mosaic": [65535, 0], "mosaic law": [65535, 0], "law as": [65535, 0], "as from": [32706, 32829], "from sinai": [65535, 0], "sinai then": [65535, 0], "tom girded": [65535, 0], "girded up": [65535, 0], "his loins": [65535, 0], "loins so": [65535, 0], "so to": [32706, 32829], "speak and": [65535, 0], "get his": [65535, 0], "his verses": [65535, 0], "verses sid": [65535, 0], "had learned": [65535, 0], "learned his": [65535, 0], "his lesson": [65535, 0], "lesson days": [65535, 0], "days before": [65535, 0], "before tom": [65535, 0], "tom bent": [65535, 0], "bent all": [65535, 0], "his energies": [65535, 0], "energies to": [65535, 0], "the memorizing": [65535, 0], "memorizing of": [65535, 0], "of five": [65535, 0], "five verses": [65535, 0], "verses and": [65535, 0], "chose part": [65535, 0], "sermon on": [65535, 0], "the mount": [65535, 0], "mount because": [65535, 0], "could find": [32706, 32829], "find no": [32706, 32829], "no verses": [65535, 0], "verses that": [65535, 0], "were shorter": [65535, 0], "shorter at": [65535, 0], "of half": [65535, 0], "hour tom": [65535, 0], "vague general": [65535, 0], "general idea": [65535, 0], "lesson but": [65535, 0], "more for": [65535, 0], "for his": [13068, 52467], "mind was": [65535, 0], "was traversing": [65535, 0], "traversing the": [65535, 0], "whole field": [65535, 0], "field of": [65535, 0], "human thought": [65535, 0], "his hands": [39262, 26273], "hands were": [65535, 0], "were busy": [65535, 0], "busy with": [65535, 0], "with distracting": [65535, 0], "distracting recreations": [65535, 0], "recreations mary": [65535, 0], "mary took": [65535, 0], "book to": [65535, 0], "hear him": [65535, 0], "him recite": [65535, 0], "recite and": [65535, 0], "he tried": [65535, 0], "to find": [65535, 0], "find his": [65535, 0], "his way": [32706, 32829], "way through": [65535, 0], "fog blessed": [65535, 0], "blessed are": [65535, 0], "are the": [43635, 21900], "the a": [65535, 0], "a a": [65535, 0], "poor yes": [65535, 0], "yes poor": [65535, 0], "poor blessed": [65535, 0], "poor a": [65535, 0], "a in": [65535, 0], "in spirit": [65535, 0], "spirit in": [65535, 0], "spirit blessed": [65535, 0], "poor in": [65535, 0], "spirit for": [65535, 0], "they they": [65535, 0], "they theirs": [65535, 0], "theirs for": [65535, 0], "for theirs": [65535, 0], "theirs blessed": [65535, 0], "theirs is": [65535, 0], "the kingdom": [65535, 0], "kingdom of": [65535, 0], "of heaven": [65535, 0], "heaven blessed": [65535, 0], "are they": [65535, 0], "they that": [65535, 0], "that mourn": [65535, 0], "mourn for": [65535, 0], "they sh": [65535, 0], "sh for": [65535, 0], "they a": [65535, 0], "a s": [65535, 0], "s h": [65535, 0], "h a": [65535, 0], "a for": [65535, 0], "they s": [65535, 0], "h oh": [65535, 0], "know what": [21790, 43745], "is shall": [65535, 0], "shall oh": [65535, 0], "oh shall": [65535, 0], "shall for": [65535, 0], "they shall": [65535, 0], "shall a": [65535, 0], "a shall": [65535, 0], "shall mourn": [65535, 0], "mourn a": [65535, 0], "a blessed": [65535, 0], "that shall": [43635, 21900], "shall they": [65535, 0], "that a": [65535, 0], "a they": [65535, 0], "shall what": [65535, 0], "what why": [65535, 0], "me mary": [65535, 0], "mary what": [65535, 0], "be so": [26155, 39380], "so mean": [65535, 0], "mean for": [65535, 0], "for oh": [65535, 0], "you poor": [65535, 0], "poor thick": [65535, 0], "thick headed": [65535, 0], "headed thing": [65535, 0], "thing i'm": [65535, 0], "i'm not": [65535, 0], "not teasing": [65535, 0], "teasing you": [65535, 0], "wouldn't do": [65535, 0], "do that": [65535, 0], "you must": [16338, 49197], "must go": [65535, 0], "and learn": [65535, 0], "learn it": [65535, 0], "again don't": [65535, 0], "you be": [21790, 43745], "be discouraged": [65535, 0], "discouraged tom": [65535, 0], "tom you'll": [65535, 0], "you'll manage": [65535, 0], "manage it": [65535, 0], "do i'll": [65535, 0], "you something": [65535, 0], "something ever": [65535, 0], "nice there": [65535, 0], "now that's": [65535, 0], "good boy": [65535, 0], "boy all": [65535, 0], "right what": [65535, 0], "it mary": [65535, 0], "mary tell": [65535, 0], "me what": [32706, 32829], "is never": [65535, 0], "mind tom": [65535, 0], "know if": [65535, 0], "i say": [16338, 49197], "say it's": [65535, 0], "nice it": [65535, 0], "is nice": [65535, 0], "nice you": [65535, 0], "you bet": [65535, 0], "you that's": [65535, 0], "so mary": [65535, 0], "mary all": [65535, 0], "right i'll": [65535, 0], "i'll tackle": [65535, 0], "tackle it": [65535, 0], "did tackle": [65535, 0], "and under": [65535, 0], "the double": [65535, 0], "double pressure": [65535, 0], "pressure of": [65535, 0], "of curiosity": [65535, 0], "curiosity and": [65535, 0], "and prospective": [65535, 0], "prospective gain": [65535, 0], "gain he": [65535, 0], "with such": [32706, 32829], "such spirit": [65535, 0], "spirit that": [65535, 0], "he accomplished": [65535, 0], "accomplished a": [65535, 0], "a shining": [65535, 0], "shining success": [65535, 0], "success mary": [65535, 0], "mary gave": [65535, 0], "a brand": [65535, 0], "brand new": [65535, 0], "new barlow": [65535, 0], "barlow knife": [65535, 0], "knife worth": [65535, 0], "worth twelve": [65535, 0], "twelve and": [65535, 0], "a half": [65535, 0], "half cents": [65535, 0], "cents and": [65535, 0], "the convulsion": [65535, 0], "convulsion of": [65535, 0], "of delight": [65535, 0], "delight that": [65535, 0], "that swept": [65535, 0], "system shook": [65535, 0], "his foundations": [65535, 0], "foundations true": [65535, 0], "true the": [65535, 0], "the knife": [65535, 0], "knife would": [65535, 0], "would not": [32706, 32829], "not cut": [65535, 0], "cut anything": [65535, 0], "anything but": [65535, 0], "a sure": [65535, 0], "sure enough": [65535, 0], "enough barlow": [65535, 0], "barlow and": [65535, 0], "was inconceivable": [65535, 0], "inconceivable grandeur": [65535, 0], "grandeur in": [65535, 0], "that though": [65535, 0], "though where": [65535, 0], "the western": [65535, 0], "western boys": [65535, 0], "boys ever": [65535, 0], "ever got": [65535, 0], "idea that": [65535, 0], "that such": [65535, 0], "a weapon": [65535, 0], "weapon could": [65535, 0], "could possibly": [65535, 0], "possibly be": [65535, 0], "be counterfeited": [65535, 0], "counterfeited to": [65535, 0], "its injury": [65535, 0], "injury is": [65535, 0], "is an": [21790, 43745], "an imposing": [65535, 0], "imposing mystery": [65535, 0], "mystery and": [65535, 0], "and will": [16338, 49197], "will always": [65535, 0], "always remain": [65535, 0], "remain so": [65535, 0], "so perhaps": [65535, 0], "perhaps tom": [65535, 0], "tom contrived": [65535, 0], "contrived to": [65535, 0], "to scarify": [65535, 0], "scarify the": [65535, 0], "the cupboard": [65535, 0], "cupboard with": [65535, 0], "was arranging": [65535, 0], "arranging to": [65535, 0], "begin on": [65535, 0], "the bureau": [65535, 0], "bureau when": [65535, 0], "was called": [65535, 0], "called off": [65535, 0], "off to": [65535, 0], "to dress": [65535, 0], "dress for": [65535, 0], "for sunday": [65535, 0], "school mary": [65535, 0], "tin basin": [65535, 0], "basin of": [65535, 0], "water and": [65535, 0], "of soap": [65535, 0], "soap and": [65535, 0], "went outside": [65535, 0], "outside the": [65535, 0], "and set": [65535, 0], "set the": [65535, 0], "the basin": [65535, 0], "basin on": [65535, 0], "little bench": [65535, 0], "bench there": [65535, 0], "there then": [65535, 0], "dipped the": [65535, 0], "the soap": [65535, 0], "soap in": [65535, 0], "and laid": [65535, 0], "laid it": [65535, 0], "it down": [65535, 0], "down turned": [65535, 0], "his sleeves": [65535, 0], "sleeves poured": [65535, 0], "poured out": [65535, 0], "water on": [65535, 0], "ground gently": [65535, 0], "gently and": [65535, 0], "then entered": [65535, 0], "entered the": [65535, 0], "kitchen and": [65535, 0], "to wipe": [65535, 0], "wipe his": [65535, 0], "face diligently": [65535, 0], "diligently on": [65535, 0], "the towel": [65535, 0], "towel behind": [65535, 0], "behind the": [65535, 0], "door but": [65535, 0], "but mary": [65535, 0], "mary removed": [65535, 0], "removed the": [65535, 0], "towel and": [65535, 0], "now ain't": [65535, 0], "you ashamed": [65535, 0], "ashamed tom": [65535, 0], "you mustn't": [65535, 0], "mustn't be": [65535, 0], "so bad": [65535, 0], "bad water": [65535, 0], "water won't": [65535, 0], "won't hurt": [65535, 0], "hurt you": [65535, 0], "a trifle": [65535, 0], "trifle disconcerted": [65535, 0], "disconcerted the": [65535, 0], "basin was": [65535, 0], "was refilled": [65535, 0], "refilled and": [65535, 0], "he stood": [65535, 0], "it a": [32706, 32829], "while gathering": [65535, 0], "gathering resolution": [65535, 0], "resolution took": [65535, 0], "took in": [65535, 0], "a big": [65535, 0], "big breath": [65535, 0], "breath and": [65535, 0], "began when": [65535, 0], "he entered": [65535, 0], "kitchen presently": [65535, 0], "presently with": [65535, 0], "with both": [65535, 0], "both eyes": [65535, 0], "and groping": [65535, 0], "groping for": [65535, 0], "towel with": [65535, 0], "hands an": [65535, 0], "an honorable": [65535, 0], "honorable testimony": [65535, 0], "testimony of": [65535, 0], "of suds": [65535, 0], "suds and": [65535, 0], "and water": [65535, 0], "was dripping": [65535, 0], "dripping from": [65535, 0], "but when": [65535, 0], "he emerged": [65535, 0], "emerged from": [65535, 0], "towel he": [65535, 0], "not yet": [65535, 0], "yet satisfactory": [65535, 0], "satisfactory for": [65535, 0], "the clean": [65535, 0], "clean territory": [65535, 0], "territory stopped": [65535, 0], "stopped short": [65535, 0], "short at": [65535, 0], "chin and": [65535, 0], "his jaws": [65535, 0], "jaws like": [65535, 0], "a mask": [65535, 0], "mask below": [65535, 0], "below and": [65535, 0], "and beyond": [65535, 0], "beyond this": [65535, 0], "this line": [65535, 0], "line there": [65535, 0], "a dark": [65535, 0], "dark expanse": [65535, 0], "expanse of": [65535, 0], "of unirrigated": [65535, 0], "unirrigated soil": [65535, 0], "soil that": [65535, 0], "that spread": [65535, 0], "spread downward": [65535, 0], "downward in": [65535, 0], "front and": [65535, 0], "and backward": [65535, 0], "backward around": [65535, 0], "around his": [65535, 0], "his neck": [65535, 0], "neck mary": [65535, 0], "took him": [65535, 0], "him in": [13068, 52467], "in hand": [32706, 32829], "was done": [65535, 0], "man and": [23774, 41761], "brother without": [65535, 0], "without distinction": [65535, 0], "distinction of": [65535, 0], "of color": [65535, 0], "color and": [65535, 0], "his saturated": [65535, 0], "saturated hair": [65535, 0], "hair was": [65535, 0], "was neatly": [65535, 0], "neatly brushed": [65535, 0], "brushed and": [65535, 0], "and its": [65535, 0], "its short": [65535, 0], "short curls": [65535, 0], "curls wrought": [65535, 0], "wrought into": [65535, 0], "dainty and": [65535, 0], "and symmetrical": [65535, 0], "symmetrical general": [65535, 0], "general effect": [65535, 0], "effect he": [65535, 0], "he privately": [65535, 0], "privately smoothed": [65535, 0], "smoothed out": [65535, 0], "the curls": [65535, 0], "curls with": [65535, 0], "with labor": [65535, 0], "labor and": [65535, 0], "and difficulty": [65535, 0], "difficulty and": [65535, 0], "and plastered": [65535, 0], "plastered his": [65535, 0], "his hair": [65535, 0], "hair close": [65535, 0], "close down": [65535, 0], "he held": [65535, 0], "held curls": [65535, 0], "curls to": [65535, 0], "be effeminate": [65535, 0], "effeminate and": [65535, 0], "own filled": [65535, 0], "filled his": [65535, 0], "his life": [21790, 43745], "life with": [65535, 0], "with bitterness": [65535, 0], "bitterness then": [65535, 0], "then mary": [65535, 0], "mary got": [65535, 0], "a suit": [65535, 0], "suit of": [65535, 0], "his clothing": [65535, 0], "clothing that": [65535, 0], "been used": [65535, 0], "used only": [65535, 0], "only on": [65535, 0], "sundays during": [65535, 0], "during two": [65535, 0], "two years": [65535, 0], "years they": [65535, 0], "were simply": [65535, 0], "simply called": [65535, 0], "called his": [65535, 0], "his other": [65535, 0], "other clothes": [65535, 0], "so by": [65535, 0], "that we": [10888, 54647], "we know": [32706, 32829], "the size": [65535, 0], "size of": [65535, 0], "his wardrobe": [65535, 0], "wardrobe the": [65535, 0], "girl put": [65535, 0], "put him": [65535, 0], "to rights": [65535, 0], "rights after": [65535, 0], "after he": [65535, 0], "had dressed": [65535, 0], "dressed himself": [65535, 0], "himself she": [65535, 0], "she buttoned": [65535, 0], "buttoned his": [65535, 0], "his neat": [65535, 0], "neat roundabout": [65535, 0], "roundabout up": [65535, 0], "chin turned": [65535, 0], "turned his": [65535, 0], "his vast": [65535, 0], "vast shirt": [65535, 0], "collar down": [65535, 0], "down over": [65535, 0], "over his": [65535, 0], "his shoulders": [65535, 0], "shoulders brushed": [65535, 0], "brushed him": [65535, 0], "and crowned": [65535, 0], "crowned him": [65535, 0], "his speckled": [65535, 0], "speckled straw": [65535, 0], "straw hat": [65535, 0], "hat he": [65535, 0], "he now": [65535, 0], "now looked": [65535, 0], "looked exceedingly": [65535, 0], "exceedingly improved": [65535, 0], "improved and": [65535, 0], "and uncomfortable": [65535, 0], "uncomfortable he": [65535, 0], "was fully": [65535, 0], "fully as": [65535, 0], "as uncomfortable": [65535, 0], "uncomfortable as": [65535, 0], "looked for": [65535, 0], "for there": [65535, 0], "a restraint": [65535, 0], "restraint about": [65535, 0], "about whole": [65535, 0], "whole clothes": [65535, 0], "and cleanliness": [65535, 0], "cleanliness that": [65535, 0], "that galled": [65535, 0], "galled him": [65535, 0], "he hoped": [65535, 0], "hoped that": [65535, 0], "mary would": [65535, 0], "would forget": [65535, 0], "forget his": [65535, 0], "his shoes": [65535, 0], "shoes but": [65535, 0], "the hope": [65535, 0], "hope was": [65535, 0], "was blighted": [65535, 0], "blighted she": [65535, 0], "she coated": [65535, 0], "coated them": [65535, 0], "them thoroughly": [65535, 0], "thoroughly with": [65535, 0], "with tallow": [65535, 0], "tallow as": [65535, 0], "as was": [65535, 0], "the custom": [65535, 0], "custom and": [65535, 0], "and brought": [32706, 32829], "brought them": [65535, 0], "out he": [65535, 0], "he lost": [65535, 0], "his temper": [65535, 0], "temper and": [65535, 0], "always being": [65535, 0], "being made": [65535, 0], "made to": [32706, 32829], "do everything": [65535, 0], "everything he": [65535, 0], "didn't want": [65535, 0], "do but": [65535, 0], "mary said": [65535, 0], "said persuasively": [65535, 0], "persuasively please": [65535, 0], "please tom": [65535, 0], "tom that's": [65535, 0], "boy so": [65535, 0], "got into": [65535, 0], "the shoes": [65535, 0], "shoes snarling": [65535, 0], "snarling mary": [65535, 0], "mary was": [65535, 0], "was soon": [65535, 0], "soon ready": [65535, 0], "ready and": [65535, 0], "the three": [65535, 0], "three children": [65535, 0], "children set": [65535, 0], "set out": [65535, 0], "school a": [65535, 0], "a place": [65535, 0], "place that": [21790, 43745], "tom hated": [65535, 0], "hated with": [65535, 0], "whole heart": [65535, 0], "heart but": [65535, 0], "mary were": [65535, 0], "were fond": [65535, 0], "fond of": [65535, 0], "it sabbath": [65535, 0], "sabbath school": [65535, 0], "school hours": [65535, 0], "hours were": [65535, 0], "were from": [65535, 0], "from nine": [65535, 0], "nine to": [65535, 0], "to half": [65535, 0], "ten and": [65535, 0], "then church": [65535, 0], "church service": [65535, 0], "service two": [65535, 0], "two of": [65535, 0], "the children": [32706, 32829], "children always": [65535, 0], "always remained": [65535, 0], "remained for": [65535, 0], "sermon voluntarily": [65535, 0], "voluntarily and": [65535, 0], "other always": [65535, 0], "remained too": [65535, 0], "too for": [65535, 0], "for stronger": [65535, 0], "stronger reasons": [65535, 0], "reasons the": [65535, 0], "the church's": [65535, 0], "church's high": [65535, 0], "high backed": [65535, 0], "backed uncushioned": [65535, 0], "uncushioned pews": [65535, 0], "pews would": [65535, 0], "would seat": [65535, 0], "seat about": [65535, 0], "about three": [65535, 0], "three hundred": [65535, 0], "hundred persons": [65535, 0], "persons the": [65535, 0], "the edifice": [65535, 0], "edifice was": [65535, 0], "small plain": [65535, 0], "plain affair": [65535, 0], "affair with": [65535, 0], "of pine": [65535, 0], "pine board": [65535, 0], "board tree": [65535, 0], "box on": [65535, 0], "on top": [65535, 0], "top of": [65535, 0], "it for": [13068, 52467], "a steeple": [65535, 0], "steeple at": [65535, 0], "door tom": [65535, 0], "tom dropped": [65535, 0], "dropped back": [65535, 0], "back a": [65535, 0], "a step": [65535, 0], "step and": [65535, 0], "and accosted": [65535, 0], "accosted a": [65535, 0], "sunday dressed": [65535, 0], "dressed comrade": [65535, 0], "comrade say": [65535, 0], "say billy": [65535, 0], "billy got": [65535, 0], "a yaller": [65535, 0], "yaller ticket": [65535, 0], "ticket yes": [65535, 0], "yes what'll": [65535, 0], "for her": [9332, 56203], "her what'll": [65535, 0], "give piece": [65535, 0], "of lickrish": [65535, 0], "lickrish and": [65535, 0], "a fish": [32706, 32829], "fish hook": [65535, 0], "hook less": [65535, 0], "'em tom": [65535, 0], "tom exhibited": [65535, 0], "exhibited they": [65535, 0], "were satisfactory": [65535, 0], "satisfactory and": [65535, 0], "the property": [65535, 0], "property changed": [65535, 0], "changed hands": [65535, 0], "hands then": [65535, 0], "tom traded": [65535, 0], "traded a": [65535, 0], "of white": [65535, 0], "white alleys": [65535, 0], "alleys for": [65535, 0], "for three": [65535, 0], "three red": [65535, 0], "red tickets": [65535, 0], "tickets and": [65535, 0], "and some": [65535, 0], "some small": [65535, 0], "small trifle": [65535, 0], "trifle or": [65535, 0], "or other": [32706, 32829], "other for": [65535, 0], "blue ones": [65535, 0], "ones he": [65535, 0], "he waylaid": [65535, 0], "waylaid other": [65535, 0], "other boys": [65535, 0], "boys as": [65535, 0], "as they": [32706, 32829], "on buying": [65535, 0], "buying tickets": [65535, 0], "tickets of": [65535, 0], "of various": [65535, 0], "various colors": [65535, 0], "colors ten": [65535, 0], "ten or": [65535, 0], "or fifteen": [65535, 0], "fifteen minutes": [65535, 0], "minutes longer": [65535, 0], "longer he": [65535, 0], "church now": [65535, 0], "now with": [65535, 0], "a swarm": [65535, 0], "swarm of": [65535, 0], "of clean": [65535, 0], "clean and": [65535, 0], "and noisy": [65535, 0], "noisy boys": [65535, 0], "girls proceeded": [65535, 0], "proceeded to": [65535, 0], "seat and": [65535, 0], "started a": [65535, 0], "a quarrel": [65535, 0], "quarrel with": [65535, 0], "that came": [43635, 21900], "came handy": [65535, 0], "handy the": [65535, 0], "the teacher": [65535, 0], "teacher a": [65535, 0], "a grave": [65535, 0], "grave elderly": [65535, 0], "elderly man": [65535, 0], "man interfered": [65535, 0], "interfered then": [65535, 0], "tom pulled": [65535, 0], "pulled a": [65535, 0], "a boy's": [65535, 0], "boy's hair": [65535, 0], "hair in": [65535, 0], "next bench": [65535, 0], "was absorbed": [65535, 0], "absorbed in": [65535, 0], "book when": [65535, 0], "boy turned": [65535, 0], "turned around": [65535, 0], "around stuck": [65535, 0], "stuck a": [65535, 0], "a pin": [32706, 32829], "pin in": [65535, 0], "boy presently": [65535, 0], "presently in": [65535, 0], "him say": [65535, 0], "say ouch": [65535, 0], "ouch and": [65535, 0], "new reprimand": [65535, 0], "reprimand from": [65535, 0], "his teacher": [65535, 0], "teacher tom's": [65535, 0], "tom's whole": [65535, 0], "whole class": [65535, 0], "class were": [65535, 0], "were of": [65535, 0], "a pattern": [65535, 0], "pattern restless": [65535, 0], "restless noisy": [65535, 0], "noisy and": [65535, 0], "and troublesome": [65535, 0], "troublesome when": [65535, 0], "to recite": [65535, 0], "recite their": [65535, 0], "their lessons": [65535, 0], "lessons not": [65535, 0], "not one": [32706, 32829], "of them": [21790, 43745], "them knew": [65535, 0], "knew his": [65535, 0], "verses perfectly": [65535, 0], "perfectly but": [65535, 0], "but had": [21790, 43745], "be prompted": [65535, 0], "prompted all": [65535, 0], "all along": [65535, 0], "along however": [65535, 0], "however they": [65535, 0], "they worried": [65535, 0], "worried through": [65535, 0], "through and": [65535, 0], "and each": [65535, 0], "each got": [65535, 0], "got his": [65535, 0], "his reward": [65535, 0], "reward in": [65535, 0], "in small": [65535, 0], "small blue": [65535, 0], "blue tickets": [65535, 0], "tickets each": [65535, 0], "a passage": [65535, 0], "passage of": [32706, 32829], "of scripture": [65535, 0], "scripture on": [65535, 0], "it each": [65535, 0], "each blue": [65535, 0], "ticket was": [65535, 0], "was pay": [65535, 0], "pay for": [65535, 0], "two verses": [65535, 0], "verses of": [65535, 0], "the recitation": [65535, 0], "recitation ten": [65535, 0], "ten blue": [65535, 0], "tickets equalled": [65535, 0], "equalled a": [65535, 0], "a red": [65535, 0], "red one": [65535, 0], "one and": [21790, 43745], "and could": [65535, 0], "be exchanged": [65535, 0], "exchanged for": [65535, 0], "it ten": [65535, 0], "ten red": [65535, 0], "a yellow": [65535, 0], "yellow one": [65535, 0], "one for": [65535, 0], "for ten": [65535, 0], "ten yellow": [65535, 0], "yellow tickets": [65535, 0], "tickets the": [65535, 0], "the superintendent": [65535, 0], "superintendent gave": [65535, 0], "gave a": [65535, 0], "very plainly": [65535, 0], "plainly bound": [65535, 0], "bound bible": [65535, 0], "bible worth": [65535, 0], "worth forty": [65535, 0], "forty cents": [65535, 0], "cents in": [65535, 0], "in those": [65535, 0], "those easy": [65535, 0], "easy times": [65535, 0], "times to": [65535, 0], "the pupil": [65535, 0], "pupil how": [65535, 0], "many of": [65535, 0], "my readers": [65535, 0], "readers would": [65535, 0], "the industry": [65535, 0], "industry and": [65535, 0], "and application": [65535, 0], "application to": [65535, 0], "to memorize": [65535, 0], "memorize two": [65535, 0], "thousand verses": [65535, 0], "verses even": [65535, 0], "even for": [65535, 0], "a dore": [32706, 32829], "dore bible": [65535, 0], "bible and": [65535, 0], "yet mary": [65535, 0], "mary had": [65535, 0], "had acquired": [65535, 0], "acquired two": [65535, 0], "two bibles": [65535, 0], "bibles in": [65535, 0], "way it": [65535, 0], "the patient": [65535, 0], "patient work": [65535, 0], "work of": [65535, 0], "of two": [21790, 43745], "years and": [65535, 0], "of german": [65535, 0], "german parentage": [65535, 0], "parentage had": [65535, 0], "had won": [65535, 0], "won four": [65535, 0], "four or": [65535, 0], "or five": [65535, 0], "five he": [65535, 0], "he once": [65535, 0], "once recited": [65535, 0], "recited three": [65535, 0], "three thousand": [65535, 0], "verses without": [65535, 0], "without stopping": [65535, 0], "stopping but": [65535, 0], "the strain": [65535, 0], "strain upon": [65535, 0], "his mental": [65535, 0], "mental faculties": [65535, 0], "faculties was": [65535, 0], "was little": [65535, 0], "little better": [65535, 0], "better than": [65535, 0], "than an": [65535, 0], "an idiot": [65535, 0], "idiot from": [65535, 0], "from that": [65535, 0], "day forth": [65535, 0], "forth a": [65535, 0], "a grievous": [65535, 0], "grievous misfortune": [65535, 0], "misfortune for": [65535, 0], "school for": [65535, 0], "for on": [65535, 0], "on great": [65535, 0], "great occasions": [65535, 0], "occasions before": [65535, 0], "before company": [65535, 0], "company the": [32706, 32829], "superintendent as": [65535, 0], "tom expressed": [65535, 0], "expressed it": [65535, 0], "it had": [65535, 0], "always made": [65535, 0], "made this": [65535, 0], "boy come": [65535, 0], "and spread": [65535, 0], "spread himself": [65535, 0], "himself only": [65535, 0], "only the": [65535, 0], "the older": [65535, 0], "older pupils": [65535, 0], "pupils managed": [65535, 0], "managed to": [65535, 0], "to keep": [65535, 0], "keep their": [65535, 0], "their tickets": [65535, 0], "and stick": [65535, 0], "to their": [21790, 43745], "their tedious": [65535, 0], "tedious work": [65535, 0], "work long": [65535, 0], "long enough": [65535, 0], "a bible": [65535, 0], "the delivery": [65535, 0], "delivery of": [65535, 0], "of these": [28026, 37509], "these prizes": [65535, 0], "prizes was": [65535, 0], "a rare": [65535, 0], "rare and": [65535, 0], "and noteworthy": [65535, 0], "noteworthy circumstance": [65535, 0], "circumstance the": [65535, 0], "the successful": [65535, 0], "successful pupil": [65535, 0], "pupil was": [65535, 0], "so great": [32706, 32829], "and conspicuous": [65535, 0], "conspicuous for": [65535, 0], "that on": [65535, 0], "the spot": [65535, 0], "spot every": [65535, 0], "every scholar's": [65535, 0], "scholar's heart": [65535, 0], "was fired": [65535, 0], "fired with": [65535, 0], "a fresh": [65535, 0], "fresh ambition": [65535, 0], "ambition that": [65535, 0], "that often": [65535, 0], "often lasted": [65535, 0], "lasted a": [65535, 0], "of weeks": [65535, 0], "weeks it": [65535, 0], "is possible": [65535, 0], "possible that": [65535, 0], "that tom's": [65535, 0], "tom's mental": [65535, 0], "mental stomach": [65535, 0], "stomach had": [65535, 0], "had never": [65535, 0], "never really": [65535, 0], "really hungered": [65535, 0], "hungered for": [65535, 0], "for one": [65535, 0], "of those": [32706, 32829], "those prizes": [65535, 0], "prizes but": [65535, 0], "but unquestionably": [65535, 0], "unquestionably his": [65535, 0], "his entire": [65535, 0], "entire being": [65535, 0], "being had": [65535, 0], "had for": [65535, 0], "for many": [65535, 0], "a day": [32706, 32829], "day longed": [65535, 0], "the glory": [65535, 0], "glory and": [65535, 0], "the eclat": [65535, 0], "eclat that": [65535, 0], "came with": [65535, 0], "it in": [28026, 37509], "in due": [65535, 0], "due course": [65535, 0], "course the": [65535, 0], "superintendent stood": [65535, 0], "stood up": [65535, 0], "the pulpit": [65535, 0], "pulpit with": [65535, 0], "a closed": [65535, 0], "closed hymn": [65535, 0], "hymn book": [65535, 0], "book in": [65535, 0], "his forefinger": [65535, 0], "forefinger inserted": [65535, 0], "inserted between": [65535, 0], "between its": [65535, 0], "its leaves": [65535, 0], "leaves and": [65535, 0], "and commanded": [65535, 0], "commanded attention": [65535, 0], "attention when": [65535, 0], "school superintendent": [65535, 0], "superintendent makes": [65535, 0], "makes his": [65535, 0], "his customary": [65535, 0], "customary little": [65535, 0], "little speech": [65535, 0], "speech a": [65535, 0], "a hymn": [65535, 0], "the hand": [43635, 21900], "hand is": [65535, 0], "is as": [65535, 0], "as necessary": [65535, 0], "necessary as": [65535, 0], "as is": [65535, 0], "the inevitable": [65535, 0], "inevitable sheet": [65535, 0], "sheet of": [65535, 0], "of music": [65535, 0], "music in": [65535, 0], "hand of": [65535, 0], "a singer": [65535, 0], "singer who": [65535, 0], "who stands": [65535, 0], "stands forward": [65535, 0], "forward on": [65535, 0], "the platform": [65535, 0], "platform and": [65535, 0], "and sings": [65535, 0], "sings a": [65535, 0], "a solo": [65535, 0], "solo at": [65535, 0], "at a": [43635, 21900], "a concert": [65535, 0], "concert though": [65535, 0], "though why": [65535, 0], "why is": [32706, 32829], "a mystery": [65535, 0], "mystery for": [65535, 0], "for neither": [65535, 0], "neither the": [65535, 0], "book nor": [65535, 0], "nor the": [32706, 32829], "music is": [65535, 0], "is ever": [65535, 0], "ever referred": [65535, 0], "referred to": [65535, 0], "to by": [65535, 0], "the sufferer": [65535, 0], "sufferer this": [65535, 0], "this superintendent": [65535, 0], "superintendent was": [65535, 0], "a slim": [65535, 0], "slim creature": [65535, 0], "creature of": [65535, 0], "of thirty": [65535, 0], "thirty five": [65535, 0], "five with": [65535, 0], "a sandy": [65535, 0], "sandy goatee": [65535, 0], "goatee and": [65535, 0], "and short": [65535, 0], "short sandy": [65535, 0], "sandy hair": [65535, 0], "hair he": [65535, 0], "a stiff": [65535, 0], "stiff standing": [65535, 0], "standing collar": [65535, 0], "collar whose": [65535, 0], "whose upper": [65535, 0], "upper edge": [65535, 0], "edge almost": [65535, 0], "almost reached": [65535, 0], "reached his": [65535, 0], "ears and": [65535, 0], "and whose": [65535, 0], "whose sharp": [65535, 0], "sharp points": [65535, 0], "points curved": [65535, 0], "curved forward": [65535, 0], "forward abreast": [65535, 0], "abreast the": [65535, 0], "the corners": [65535, 0], "corners of": [65535, 0], "mouth a": [65535, 0], "fence that": [65535, 0], "that compelled": [65535, 0], "compelled a": [65535, 0], "a straight": [65535, 0], "straight lookout": [65535, 0], "lookout ahead": [65535, 0], "ahead and": [65535, 0], "a turning": [65535, 0], "turning of": [65535, 0], "whole body": [65535, 0], "body when": [65535, 0], "a side": [65535, 0], "side view": [65535, 0], "view was": [65535, 0], "was required": [65535, 0], "required his": [65535, 0], "chin was": [65535, 0], "was propped": [65535, 0], "propped on": [65535, 0], "a spreading": [65535, 0], "spreading cravat": [65535, 0], "cravat which": [65535, 0], "was as": [65535, 0], "as broad": [65535, 0], "broad and": [65535, 0], "a bank": [65535, 0], "bank note": [65535, 0], "note and": [65535, 0], "had fringed": [65535, 0], "fringed ends": [65535, 0], "ends his": [65535, 0], "his boot": [65535, 0], "boot toes": [65535, 0], "toes were": [65535, 0], "were turned": [65535, 0], "turned sharply": [65535, 0], "sharply up": [65535, 0], "the fashion": [65535, 0], "fashion of": [65535, 0], "the day": [43635, 21900], "day like": [65535, 0], "like sleigh": [65535, 0], "sleigh runners": [65535, 0], "runners an": [65535, 0], "an effect": [32706, 32829], "effect patiently": [65535, 0], "patiently and": [65535, 0], "and laboriously": [65535, 0], "laboriously produced": [65535, 0], "young men": [65535, 0], "men by": [65535, 0], "by sitting": [65535, 0], "sitting with": [65535, 0], "their toes": [65535, 0], "toes pressed": [65535, 0], "pressed against": [65535, 0], "against a": [65535, 0], "a wall": [65535, 0], "wall for": [65535, 0], "for hours": [65535, 0], "hours together": [65535, 0], "together mr": [65535, 0], "mr walters": [65535, 0], "walters was": [65535, 0], "very earnest": [65535, 0], "earnest of": [65535, 0], "of mien": [65535, 0], "mien and": [65535, 0], "very sincere": [65535, 0], "sincere and": [65535, 0], "and honest": [65535, 0], "honest at": [65535, 0], "held sacred": [65535, 0], "sacred things": [65535, 0], "things and": [65535, 0], "and places": [65535, 0], "places in": [65535, 0], "in such": [49105, 16430], "such reverence": [65535, 0], "reverence and": [65535, 0], "so separated": [65535, 0], "separated them": [65535, 0], "them from": [65535, 0], "from worldly": [65535, 0], "worldly matters": [65535, 0], "matters that": [65535, 0], "that unconsciously": [65535, 0], "unconsciously to": [65535, 0], "himself his": [65535, 0], "his sunday": [65535, 0], "school voice": [65535, 0], "voice had": [65535, 0], "acquired a": [65535, 0], "peculiar intonation": [65535, 0], "intonation which": [65535, 0], "was wholly": [65535, 0], "wholly absent": [65535, 0], "absent on": [65535, 0], "on week": [65535, 0], "week days": [65535, 0], "days he": [65535, 0], "began after": [65535, 0], "after this": [65535, 0], "this fashion": [65535, 0], "fashion now": [65535, 0], "now children": [65535, 0], "children i": [65535, 0], "i want": [65535, 0], "want you": [65535, 0], "all to": [32706, 32829], "to sit": [65535, 0], "up just": [65535, 0], "as straight": [65535, 0], "straight and": [32706, 32829], "pretty as": [65535, 0], "can and": [65535, 0], "and give": [65535, 0], "me all": [65535, 0], "your attention": [65535, 0], "attention for": [65535, 0], "or two": [65535, 0], "two there": [65535, 0], "there that": [65535, 0], "it that": [13068, 52467], "way good": [65535, 0], "good little": [65535, 0], "little boys": [65535, 0], "girls should": [65535, 0], "should do": [65535, 0], "i see": [5024, 60511], "see one": [65535, 0], "one little": [65535, 0], "little girl": [65535, 0], "girl who": [65535, 0], "who is": [32706, 32829], "is looking": [65535, 0], "window i": [65535, 0], "am afraid": [65535, 0], "afraid she": [65535, 0], "she thinks": [65535, 0], "thinks i": [65535, 0], "am out": [65535, 0], "out there": [65535, 0], "there somewhere": [65535, 0], "somewhere perhaps": [65535, 0], "perhaps up": [65535, 0], "in one": [65535, 0], "the trees": [65535, 0], "trees making": [65535, 0], "making a": [65535, 0], "a speech": [65535, 0], "speech to": [65535, 0], "little birds": [65535, 0], "birds applausive": [65535, 0], "applausive titter": [65535, 0], "titter i": [65535, 0], "you how": [65535, 0], "how good": [65535, 0], "good it": [65535, 0], "makes me": [32706, 32829], "me feel": [65535, 0], "feel to": [65535, 0], "see so": [65535, 0], "so many": [65535, 0], "many bright": [65535, 0], "bright clean": [65535, 0], "clean little": [65535, 0], "little faces": [65535, 0], "faces assembled": [65535, 0], "assembled in": [32706, 32829], "place like": [65535, 0], "like this": [65535, 0], "this learning": [65535, 0], "learning to": [65535, 0], "do right": [65535, 0], "right and": [65535, 0], "be good": [65535, 0], "so forth": [65535, 0], "forth and": [21790, 43745], "not necessary": [65535, 0], "to set": [65535, 0], "set down": [65535, 0], "the oration": [65535, 0], "oration it": [65535, 0], "was of": [65535, 0], "pattern which": [65535, 0], "which does": [65535, 0], "does not": [65535, 0], "not vary": [65535, 0], "vary and": [65535, 0], "so it": [32706, 32829], "is familiar": [65535, 0], "familiar to": [65535, 0], "to us": [65535, 0], "us all": [65535, 0], "the latter": [32706, 32829], "latter third": [65535, 0], "third of": [65535, 0], "the speech": [65535, 0], "speech was": [65535, 0], "was marred": [65535, 0], "marred by": [65535, 0], "the resumption": [65535, 0], "resumption of": [65535, 0], "of fights": [65535, 0], "fights and": [65535, 0], "and other": [32706, 32829], "other recreations": [65535, 0], "recreations among": [65535, 0], "among certain": [65535, 0], "certain of": [65535, 0], "the bad": [65535, 0], "bad boys": [65535, 0], "by fidgetings": [65535, 0], "fidgetings and": [65535, 0], "and whisperings": [65535, 0], "whisperings that": [65535, 0], "that extended": [65535, 0], "extended far": [65535, 0], "far and": [65535, 0], "and wide": [65535, 0], "wide washing": [65535, 0], "washing even": [65535, 0], "even to": [65535, 0], "the bases": [65535, 0], "bases of": [65535, 0], "of isolated": [65535, 0], "isolated and": [65535, 0], "and incorruptible": [65535, 0], "incorruptible rocks": [65535, 0], "rocks like": [65535, 0], "like sid": [65535, 0], "mary but": [65535, 0], "now every": [65535, 0], "every sound": [65535, 0], "sound ceased": [65535, 0], "ceased suddenly": [65535, 0], "suddenly with": [65535, 0], "the subsidence": [65535, 0], "subsidence of": [65535, 0], "of mr": [65535, 0], "mr walters'": [65535, 0], "walters' voice": [65535, 0], "voice and": [65535, 0], "the conclusion": [65535, 0], "conclusion of": [65535, 0], "was received": [65535, 0], "a burst": [65535, 0], "of silent": [65535, 0], "silent gratitude": [65535, 0], "gratitude a": [65535, 0], "good part": [32706, 32829], "the whispering": [65535, 0], "whispering had": [65535, 0], "been occasioned": [65535, 0], "occasioned by": [65535, 0], "by an": [65535, 0], "an event": [65535, 0], "event which": [65535, 0], "was more": [65535, 0], "more or": [65535, 0], "or less": [65535, 0], "less rare": [65535, 0], "rare the": [65535, 0], "the entrance": [65535, 0], "entrance of": [65535, 0], "of visitors": [65535, 0], "visitors lawyer": [65535, 0], "lawyer thatcher": [65535, 0], "thatcher accompanied": [65535, 0], "accompanied by": [65535, 0], "very feeble": [65535, 0], "and aged": [65535, 0], "aged man": [65535, 0], "man a": [65535, 0], "a fine": [43635, 21900], "fine portly": [65535, 0], "portly middle": [65535, 0], "middle aged": [65535, 0], "aged gentleman": [65535, 0], "gentleman with": [65535, 0], "with iron": [65535, 0], "iron gray": [65535, 0], "gray hair": [65535, 0], "a dignified": [65535, 0], "dignified lady": [65535, 0], "lady who": [65535, 0], "who was": [65535, 0], "was doubtless": [65535, 0], "doubtless the": [65535, 0], "the latter's": [65535, 0], "latter's wife": [65535, 0], "wife the": [32706, 32829], "the lady": [43635, 21900], "lady was": [65535, 0], "was leading": [65535, 0], "leading a": [65535, 0], "a child": [65535, 0], "been restless": [65535, 0], "restless and": [65535, 0], "of chafings": [65535, 0], "chafings and": [65535, 0], "and repinings": [65535, 0], "repinings conscience": [65535, 0], "conscience smitten": [65535, 0], "smitten too": [65535, 0], "too he": [65535, 0], "could not": [32706, 32829], "not meet": [65535, 0], "meet amy": [65535, 0], "amy lawrence's": [65535, 0], "lawrence's eye": [65535, 0], "eye he": [65535, 0], "not brook": [65535, 0], "brook her": [65535, 0], "her loving": [65535, 0], "loving gaze": [65535, 0], "gaze but": [65535, 0], "saw this": [65535, 0], "this small": [65535, 0], "small new": [65535, 0], "comer his": [65535, 0], "soul was": [65535, 0], "was all": [65535, 0], "all ablaze": [65535, 0], "ablaze with": [65535, 0], "with bliss": [65535, 0], "bliss in": [65535, 0], "moment the": [65535, 0], "next moment": [65535, 0], "was showing": [65535, 0], "showing off": [65535, 0], "his might": [65535, 0], "might cuffing": [65535, 0], "cuffing boys": [65535, 0], "boys pulling": [65535, 0], "pulling hair": [65535, 0], "hair making": [65535, 0], "making faces": [65535, 0], "faces in": [65535, 0], "word using": [65535, 0], "using every": [65535, 0], "every art": [65535, 0], "art that": [65535, 0], "that seemed": [65535, 0], "seemed likely": [65535, 0], "likely to": [65535, 0], "to fascinate": [65535, 0], "fascinate a": [65535, 0], "a girl": [65535, 0], "girl and": [65535, 0], "and win": [65535, 0], "win her": [65535, 0], "her applause": [65535, 0], "applause his": [65535, 0], "his exaltation": [65535, 0], "exaltation had": [65535, 0], "one alloy": [65535, 0], "alloy the": [65535, 0], "the memory": [65535, 0], "memory of": [65535, 0], "his humiliation": [65535, 0], "humiliation in": [65535, 0], "this angel's": [65535, 0], "angel's garden": [65535, 0], "garden and": [65535, 0], "that record": [65535, 0], "record in": [65535, 0], "in sand": [65535, 0], "sand was": [65535, 0], "was fast": [65535, 0], "fast washing": [65535, 0], "washing out": [65535, 0], "the waves": [65535, 0], "waves of": [65535, 0], "of happiness": [65535, 0], "happiness that": [65535, 0], "were sweeping": [65535, 0], "sweeping over": [65535, 0], "the visitors": [65535, 0], "visitors were": [65535, 0], "were given": [65535, 0], "given the": [65535, 0], "the highest": [32706, 32829], "highest seat": [65535, 0], "of honor": [65535, 0], "honor and": [32706, 32829], "as mr": [65535, 0], "walters' speech": [65535, 0], "finished he": [65535, 0], "he introduced": [65535, 0], "introduced them": [65535, 0], "school the": [65535, 0], "man turned": [65535, 0], "turned out": [65535, 0], "a prodigious": [65535, 0], "prodigious personage": [65535, 0], "personage no": [65535, 0], "no less": [65535, 0], "less a": [65535, 0], "a one": [21790, 43745], "one than": [65535, 0], "than the": [65535, 0], "county judge": [65535, 0], "judge altogether": [65535, 0], "altogether the": [65535, 0], "most august": [65535, 0], "august creation": [65535, 0], "creation these": [65535, 0], "these children": [32706, 32829], "children had": [65535, 0], "had ever": [65535, 0], "ever looked": [65535, 0], "upon and": [65535, 0], "they wondered": [65535, 0], "wondered what": [65535, 0], "what kind": [65535, 0], "material he": [65535, 0], "was made": [65535, 0], "made of": [21790, 43745], "of and": [65535, 0], "they half": [65535, 0], "half wanted": [65535, 0], "him roar": [65535, 0], "roar and": [65535, 0], "were half": [65535, 0], "half afraid": [65535, 0], "afraid he": [65535, 0], "might too": [65535, 0], "was from": [65535, 0], "from constantinople": [65535, 0], "constantinople twelve": [65535, 0], "twelve miles": [65535, 0], "miles away": [65535, 0], "had travelled": [65535, 0], "travelled and": [65535, 0], "and seen": [65535, 0], "seen the": [65535, 0], "the world": [32706, 32829], "world these": [65535, 0], "these very": [65535, 0], "very eyes": [65535, 0], "eyes had": [65535, 0], "had looked": [65535, 0], "county court": [65535, 0], "court house": [65535, 0], "house which": [65535, 0], "was said": [65535, 0], "to have": [65535, 0], "tin roof": [65535, 0], "roof the": [65535, 0], "the awe": [65535, 0], "awe which": [65535, 0], "which these": [65535, 0], "these reflections": [65535, 0], "reflections inspired": [65535, 0], "inspired was": [65535, 0], "was attested": [65535, 0], "attested by": [65535, 0], "the impressive": [65535, 0], "impressive silence": [65535, 0], "silence and": [65535, 0], "the ranks": [65535, 0], "ranks of": [65535, 0], "of staring": [65535, 0], "staring eyes": [65535, 0], "eyes this": [65535, 0], "great judge": [65535, 0], "judge thatcher": [65535, 0], "thatcher brother": [65535, 0], "brother of": [65535, 0], "of their": [21790, 43745], "their own": [65535, 0], "own lawyer": [65535, 0], "lawyer jeff": [65535, 0], "thatcher immediately": [65535, 0], "immediately went": [65535, 0], "went forward": [65535, 0], "forward to": [65535, 0], "be familiar": [65535, 0], "familiar with": [65535, 0], "great man": [65535, 0], "be envied": [65535, 0], "envied by": [65535, 0], "school it": [65535, 0], "it would": [32706, 32829], "have been": [65535, 0], "been music": [65535, 0], "music to": [65535, 0], "soul to": [65535, 0], "hear the": [65535, 0], "the whisperings": [65535, 0], "whisperings look": [65535, 0], "him jim": [65535, 0], "jim he's": [65535, 0], "he's a": [43635, 21900], "going up": [65535, 0], "up there": [65535, 0], "there say": [65535, 0], "say look": [65535, 0], "look he's": [65535, 0], "to shake": [65535, 0], "shake hands": [65535, 0], "hands with": [43635, 21900], "is shaking": [65535, 0], "shaking hands": [65535, 0], "by jings": [65535, 0], "jings don't": [65535, 0], "was jeff": [65535, 0], "jeff mr": [65535, 0], "walters fell": [65535, 0], "to showing": [65535, 0], "of official": [65535, 0], "official bustlings": [65535, 0], "bustlings and": [65535, 0], "and activities": [65535, 0], "activities giving": [65535, 0], "giving orders": [65535, 0], "orders delivering": [65535, 0], "delivering judgments": [65535, 0], "judgments discharging": [65535, 0], "discharging directions": [65535, 0], "directions here": [65535, 0], "here there": [65535, 0], "there everywhere": [65535, 0], "everywhere that": [65535, 0], "find a": [65535, 0], "a target": [65535, 0], "target the": [65535, 0], "the librarian": [65535, 0], "librarian showed": [65535, 0], "showed off": [65535, 0], "off running": [65535, 0], "running hither": [65535, 0], "hither and": [32706, 32829], "and thither": [65535, 0], "thither with": [65535, 0], "arms full": [65535, 0], "of books": [65535, 0], "books and": [65535, 0], "and making": [65535, 0], "a deal": [65535, 0], "deal of": [65535, 0], "the splutter": [65535, 0], "splutter and": [65535, 0], "and fuss": [65535, 0], "fuss that": [65535, 0], "that insect": [65535, 0], "insect authority": [65535, 0], "authority delights": [65535, 0], "delights in": [65535, 0], "young lady": [65535, 0], "lady teachers": [65535, 0], "teachers showed": [65535, 0], "off bending": [65535, 0], "bending sweetly": [65535, 0], "sweetly over": [65535, 0], "over pupils": [65535, 0], "pupils that": [65535, 0], "were lately": [65535, 0], "lately being": [65535, 0], "being boxed": [65535, 0], "boxed lifting": [65535, 0], "lifting pretty": [65535, 0], "pretty warning": [65535, 0], "warning fingers": [65535, 0], "fingers at": [65535, 0], "at bad": [65535, 0], "bad little": [65535, 0], "and patting": [65535, 0], "patting good": [65535, 0], "good ones": [65535, 0], "ones lovingly": [65535, 0], "lovingly the": [65535, 0], "young gentlemen": [65535, 0], "gentlemen teachers": [65535, 0], "with small": [65535, 0], "small scoldings": [65535, 0], "scoldings and": [65535, 0], "other little": [65535, 0], "little displays": [65535, 0], "displays of": [65535, 0], "of authority": [65535, 0], "authority and": [65535, 0], "and fine": [65535, 0], "fine attention": [65535, 0], "to discipline": [65535, 0], "discipline and": [65535, 0], "most of": [65535, 0], "the teachers": [65535, 0], "teachers of": [65535, 0], "of both": [65535, 0], "both sexes": [65535, 0], "sexes found": [65535, 0], "found business": [65535, 0], "business up": [65535, 0], "the library": [65535, 0], "library by": [65535, 0], "pulpit and": [65535, 0], "was business": [65535, 0], "business that": [65535, 0], "that frequently": [65535, 0], "frequently had": [65535, 0], "done over": [65535, 0], "over again": [65535, 0], "again two": [65535, 0], "times with": [65535, 0], "with much": [65535, 0], "much seeming": [65535, 0], "seeming vexation": [65535, 0], "vexation the": [65535, 0], "little girls": [65535, 0], "girls showed": [65535, 0], "in various": [65535, 0], "various ways": [65535, 0], "ways and": [65535, 0], "boys showed": [65535, 0], "such diligence": [65535, 0], "diligence that": [65535, 0], "air was": [65535, 0], "was thick": [65535, 0], "thick with": [65535, 0], "with paper": [65535, 0], "paper wads": [65535, 0], "wads and": [65535, 0], "the murmur": [65535, 0], "murmur of": [65535, 0], "of scufflings": [65535, 0], "scufflings and": [65535, 0], "it all": [65535, 0], "man sat": [65535, 0], "sat and": [65535, 0], "beamed a": [65535, 0], "a majestic": [65535, 0], "majestic judicial": [65535, 0], "judicial smile": [65535, 0], "smile upon": [65535, 0], "upon all": [65535, 0], "and warmed": [65535, 0], "warmed himself": [65535, 0], "himself in": [65535, 0], "sun of": [65535, 0], "own grandeur": [65535, 0], "grandeur for": [65535, 0], "off too": [65535, 0], "too there": [65535, 0], "one thing": [65535, 0], "thing wanting": [65535, 0], "wanting to": [65535, 0], "make mr": [65535, 0], "walters' ecstasy": [65535, 0], "ecstasy complete": [65535, 0], "complete and": [65535, 0], "to deliver": [65535, 0], "deliver a": [65535, 0], "bible prize": [65535, 0], "and exhibit": [65535, 0], "exhibit a": [65535, 0], "a prodigy": [65535, 0], "prodigy several": [65535, 0], "several pupils": [65535, 0], "pupils had": [65535, 0], "few yellow": [65535, 0], "tickets but": [65535, 0], "but none": [65535, 0], "none had": [65535, 0], "had enough": [65535, 0], "enough he": [65535, 0], "been around": [65535, 0], "around among": [65535, 0], "the star": [65535, 0], "star pupils": [65535, 0], "pupils inquiring": [65535, 0], "inquiring he": [65535, 0], "have given": [65535, 0], "given worlds": [65535, 0], "worlds now": [65535, 0], "now to": [32706, 32829], "have that": [65535, 0], "that german": [65535, 0], "german lad": [65535, 0], "lad back": [65535, 0], "back again": [65535, 0], "again with": [65535, 0], "a sound": [65535, 0], "sound mind": [65535, 0], "now at": [32706, 32829], "this moment": [65535, 0], "moment when": [65535, 0], "when hope": [65535, 0], "was dead": [65535, 0], "dead tom": [65535, 0], "sawyer came": [65535, 0], "came forward": [65535, 0], "forward with": [65535, 0], "with nine": [65535, 0], "nine yellow": [65535, 0], "tickets nine": [65535, 0], "nine red": [65535, 0], "and ten": [65535, 0], "ones and": [65535, 0], "and demanded": [65535, 0], "demanded a": [65535, 0], "bible this": [65535, 0], "a thunderbolt": [65535, 0], "thunderbolt out": [65535, 0], "a clear": [65535, 0], "clear sky": [65535, 0], "sky walters": [65535, 0], "not expecting": [65535, 0], "expecting an": [65535, 0], "an application": [65535, 0], "application from": [65535, 0], "from this": [65535, 0], "this source": [65535, 0], "source for": [65535, 0], "next ten": [65535, 0], "ten years": [65535, 0], "years but": [65535, 0], "no getting": [65535, 0], "getting around": [65535, 0], "it here": [65535, 0], "here were": [65535, 0], "were the": [65535, 0], "the certified": [65535, 0], "certified checks": [65535, 0], "checks and": [65535, 0], "were good": [65535, 0], "for their": [21790, 43745], "their face": [65535, 0], "face tom": [65535, 0], "was therefore": [65535, 0], "therefore elevated": [65535, 0], "elevated to": [65535, 0], "place with": [65535, 0], "the judge": [65535, 0], "judge and": [65535, 0], "other elect": [65535, 0], "elect and": [65535, 0], "great news": [65535, 0], "news was": [65535, 0], "was announced": [65535, 0], "announced from": [65535, 0], "from headquarters": [65535, 0], "headquarters it": [65535, 0], "most stunning": [65535, 0], "stunning surprise": [65535, 0], "surprise of": [65535, 0], "the decade": [65535, 0], "decade and": [65535, 0], "so profound": [65535, 0], "profound was": [65535, 0], "the sensation": [65535, 0], "sensation that": [65535, 0], "it lifted": [65535, 0], "lifted the": [65535, 0], "new hero": [65535, 0], "hero up": [65535, 0], "the judicial": [65535, 0], "judicial one's": [65535, 0], "one's altitude": [65535, 0], "altitude and": [65535, 0], "school had": [65535, 0], "had two": [65535, 0], "two marvels": [65535, 0], "marvels to": [65535, 0], "to gaze": [65535, 0], "gaze upon": [65535, 0], "upon in": [65535, 0], "in place": [65535, 0], "place of": [32706, 32829], "one the": [65535, 0], "were all": [65535, 0], "all eaten": [65535, 0], "eaten up": [65535, 0], "up with": [65535, 0], "with envy": [65535, 0], "envy but": [65535, 0], "but those": [65535, 0], "those that": [32706, 32829], "that suffered": [65535, 0], "suffered the": [65535, 0], "the bitterest": [65535, 0], "bitterest pangs": [65535, 0], "pangs were": [65535, 0], "were those": [65535, 0], "those who": [65535, 0], "who perceived": [65535, 0], "perceived too": [65535, 0], "too late": [21790, 43745], "that they": [65535, 0], "they themselves": [65535, 0], "themselves had": [65535, 0], "had contributed": [65535, 0], "contributed to": [65535, 0], "this hated": [65535, 0], "hated splendor": [65535, 0], "splendor by": [65535, 0], "by trading": [65535, 0], "trading tickets": [65535, 0], "tickets to": [65535, 0], "tom for": [65535, 0], "the wealth": [65535, 0], "had amassed": [65535, 0], "amassed in": [65535, 0], "in selling": [65535, 0], "selling whitewashing": [65535, 0], "whitewashing privileges": [65535, 0], "privileges these": [65535, 0], "these despised": [65535, 0], "despised themselves": [65535, 0], "themselves as": [65535, 0], "as being": [65535, 0], "being the": [65535, 0], "the dupes": [65535, 0], "dupes of": [65535, 0], "a wily": [65535, 0], "wily fraud": [65535, 0], "fraud a": [65535, 0], "a guileful": [65535, 0], "guileful snake": [65535, 0], "snake in": [65535, 0], "the grass": [65535, 0], "grass the": [65535, 0], "prize was": [65535, 0], "was delivered": [65535, 0], "delivered to": [65535, 0], "tom with": [65535, 0], "with as": [65535, 0], "much effusion": [65535, 0], "effusion as": [65535, 0], "superintendent could": [65535, 0], "could pump": [65535, 0], "pump up": [65535, 0], "up under": [65535, 0], "the circumstances": [65535, 0], "circumstances but": [65535, 0], "it lacked": [65535, 0], "lacked somewhat": [65535, 0], "somewhat of": [65535, 0], "the true": [65535, 0], "true gush": [65535, 0], "gush for": [65535, 0], "poor fellow's": [65535, 0], "fellow's instinct": [65535, 0], "instinct taught": [65535, 0], "taught him": [65535, 0], "mystery here": [65535, 0], "here that": [65535, 0], "that could": [65535, 0], "not well": [65535, 0], "well bear": [65535, 0], "bear the": [65535, 0], "light perhaps": [65535, 0], "perhaps it": [65535, 0], "simply preposterous": [65535, 0], "preposterous that": [65535, 0], "that this": [43635, 21900], "had warehoused": [65535, 0], "warehoused two": [65535, 0], "thousand sheaves": [65535, 0], "sheaves of": [65535, 0], "scriptural wisdom": [65535, 0], "wisdom on": [65535, 0], "his premises": [65535, 0], "premises a": [65535, 0], "a dozen": [65535, 0], "dozen would": [65535, 0], "would strain": [65535, 0], "strain his": [65535, 0], "his capacity": [65535, 0], "capacity without": [65535, 0], "without a": [16338, 49197], "a doubt": [65535, 0], "doubt amy": [65535, 0], "amy lawrence": [65535, 0], "lawrence was": [65535, 0], "was proud": [65535, 0], "proud and": [65535, 0], "and glad": [65535, 0], "glad and": [65535, 0], "she tried": [65535, 0], "make tom": [65535, 0], "tom see": [65535, 0], "wouldn't look": [65535, 0], "look she": [65535, 0], "she wondered": [65535, 0], "wondered then": [65535, 0], "was just": [65535, 0], "a grain": [65535, 0], "grain troubled": [65535, 0], "troubled next": [65535, 0], "next a": [65535, 0], "a dim": [65535, 0], "dim suspicion": [65535, 0], "suspicion came": [65535, 0], "went came": [65535, 0], "came again": [65535, 0], "again she": [65535, 0], "she watched": [65535, 0], "watched a": [65535, 0], "a furtive": [65535, 0], "furtive glance": [65535, 0], "glance told": [65535, 0], "told her": [65535, 0], "her worlds": [65535, 0], "worlds and": [65535, 0], "then her": [65535, 0], "heart broke": [65535, 0], "broke and": [65535, 0], "was jealous": [65535, 0], "jealous and": [65535, 0], "and angry": [65535, 0], "angry and": [65535, 0], "the tears": [65535, 0], "tears came": [65535, 0], "she hated": [65535, 0], "hated everybody": [65535, 0], "everybody tom": [65535, 0], "tom most": [65535, 0], "all she": [65535, 0], "she thought": [65535, 0], "thought tom": [65535, 0], "was introduced": [65535, 0], "introduced to": [65535, 0], "judge but": [65535, 0], "but his": [43635, 21900], "his tongue": [65535, 0], "tongue was": [65535, 0], "was tied": [65535, 0], "tied his": [65535, 0], "his breath": [65535, 0], "breath would": [65535, 0], "would hardly": [65535, 0], "hardly come": [65535, 0], "come his": [65535, 0], "heart quaked": [65535, 0], "quaked partly": [65535, 0], "partly because": [65535, 0], "because of": [65535, 0], "the awful": [65535, 0], "awful greatness": [65535, 0], "greatness of": [65535, 0], "the man": [8165, 57370], "but mainly": [65535, 0], "mainly because": [65535, 0], "her parent": [65535, 0], "parent he": [65535, 0], "have liked": [65535, 0], "liked to": [65535, 0], "to fall": [65535, 0], "fall down": [65535, 0], "and worship": [65535, 0], "worship him": [65535, 0], "it were": [32706, 32829], "dark the": [65535, 0], "judge put": [65535, 0], "put his": [65535, 0], "hand on": [65535, 0], "on tom's": [65535, 0], "tom's head": [65535, 0], "called him": [65535, 0], "fine little": [65535, 0], "little man": [65535, 0], "and asked": [65535, 0], "him what": [65535, 0], "what his": [65535, 0], "boy stammered": [65535, 0], "stammered gasped": [65535, 0], "gasped and": [65535, 0], "oh no": [65535, 0], "no not": [32706, 32829], "not tom": [65535, 0], "is thomas": [65535, 0], "thomas ah": [65535, 0], "ah that's": [65535, 0], "i thought": [21790, 43745], "thought there": [65535, 0], "it maybe": [65535, 0], "maybe that's": [65535, 0], "that's very": [65535, 0], "well but": [32706, 32829], "but you've": [65535, 0], "you've another": [65535, 0], "another one": [65535, 0], "one i": [65535, 0], "i daresay": [65535, 0], "daresay and": [65535, 0], "and you'll": [32706, 32829], "tell it": [65535, 0], "me won't": [65535, 0], "tell the": [65535, 0], "the gentleman": [65535, 0], "gentleman your": [65535, 0], "your other": [65535, 0], "other name": [65535, 0], "name thomas": [65535, 0], "thomas said": [65535, 0], "said walters": [65535, 0], "walters and": [65535, 0], "say sir": [21790, 43745], "mustn't forget": [65535, 0], "forget your": [65535, 0], "your manners": [65535, 0], "manners thomas": [65535, 0], "sawyer sir": [65535, 0], "sir that's": [65535, 0], "it that's": [65535, 0], "boy fine": [65535, 0], "fine boy": [65535, 0], "fine manly": [65535, 0], "manly little": [65535, 0], "little fellow": [65535, 0], "fellow two": [65535, 0], "verses is": [65535, 0], "many very": [65535, 0], "very very": [65535, 0], "very great": [65535, 0], "many and": [65535, 0], "you never": [65535, 0], "never can": [65535, 0], "can be": [21790, 43745], "be sorry": [65535, 0], "sorry for": [65535, 0], "trouble you": [32706, 32829], "you took": [65535, 0], "took to": [65535, 0], "to learn": [65535, 0], "learn them": [65535, 0], "for knowledge": [65535, 0], "knowledge is": [65535, 0], "is worth": [65535, 0], "worth more": [65535, 0], "than anything": [65535, 0], "anything there": [65535, 0], "is in": [16338, 49197], "world it's": [65535, 0], "it's what": [65535, 0], "what makes": [65535, 0], "makes great": [65535, 0], "great men": [65535, 0], "and good": [21790, 43745], "good men": [65535, 0], "men you'll": [65535, 0], "you'll be": [65535, 0], "good man": [65535, 0], "man yourself": [65535, 0], "yourself some": [65535, 0], "some day": [65535, 0], "day thomas": [65535, 0], "thomas and": [65535, 0], "then you'll": [65535, 0], "you'll look": [65535, 0], "look back": [65535, 0], "all owing": [65535, 0], "owing to": [65535, 0], "the precious": [65535, 0], "precious sunday": [65535, 0], "school privileges": [65535, 0], "privileges of": [65535, 0], "my boyhood": [65535, 0], "boyhood it's": [65535, 0], "my dear": [65535, 0], "dear teachers": [65535, 0], "teachers that": [65535, 0], "that taught": [65535, 0], "taught me": [65535, 0], "learn it's": [65535, 0], "good superintendent": [65535, 0], "superintendent who": [65535, 0], "who encouraged": [65535, 0], "encouraged me": [65535, 0], "and watched": [65535, 0], "watched over": [65535, 0], "over me": [65535, 0], "gave me": [65535, 0], "beautiful bible": [65535, 0], "bible a": [65535, 0], "a splendid": [65535, 0], "splendid elegant": [65535, 0], "elegant bible": [65535, 0], "bible to": [65535, 0], "keep and": [65535, 0], "and have": [65535, 0], "have it": [65535, 0], "all for": [32706, 32829], "for my": [4665, 60870], "own always": [65535, 0], "always it's": [65535, 0], "to right": [65535, 0], "right bringing": [65535, 0], "bringing up": [65535, 0], "is what": [65535, 0], "will say": [65535, 0], "say thomas": [65535, 0], "wouldn't take": [65535, 0], "take any": [65535, 0], "any money": [65535, 0], "money for": [21790, 43745], "for those": [65535, 0], "those two": [65535, 0], "verses no": [65535, 0], "no indeed": [65535, 0], "indeed you": [65535, 0], "wouldn't and": [65535, 0], "mind telling": [65535, 0], "telling me": [65535, 0], "this lady": [65535, 0], "lady some": [65535, 0], "things you've": [65535, 0], "you've learned": [65535, 0], "learned no": [65535, 0], "know you": [21790, 43745], "wouldn't for": [65535, 0], "for we": [32706, 32829], "we are": [32706, 32829], "are proud": [65535, 0], "proud of": [65535, 0], "of little": [65535, 0], "boys that": [65535, 0], "that learn": [65535, 0], "learn now": [65535, 0], "now no": [65535, 0], "doubt you": [65535, 0], "the names": [65535, 0], "names of": [65535, 0], "the twelve": [65535, 0], "twelve disciples": [65535, 0], "disciples won't": [65535, 0], "tell us": [65535, 0], "us the": [65535, 0], "first two": [65535, 0], "two that": [65535, 0], "were appointed": [65535, 0], "appointed tom": [65535, 0], "was tugging": [65535, 0], "tugging at": [65535, 0], "a button": [65535, 0], "button hole": [65535, 0], "and looking": [65535, 0], "looking sheepish": [65535, 0], "sheepish he": [65535, 0], "he blushed": [65535, 0], "blushed now": [65535, 0], "now and": [49105, 16430], "his eyes": [65535, 0], "eyes fell": [65535, 0], "fell mr": [65535, 0], "walters' heart": [65535, 0], "heart sank": [65535, 0], "sank within": [65535, 0], "himself it": [65535, 0], "not possible": [65535, 0], "boy can": [65535, 0], "can answer": [65535, 0], "the simplest": [65535, 0], "simplest question": [65535, 0], "question why": [65535, 0], "why did": [65535, 0], "judge ask": [65535, 0], "ask him": [65535, 0], "him yet": [65535, 0], "yet he": [32706, 32829], "felt obliged": [65535, 0], "speak up": [65535, 0], "say answer": [65535, 0], "gentleman thomas": [65535, 0], "thomas don't": [65535, 0], "don't be": [65535, 0], "be afraid": [65535, 0], "afraid tom": [65535, 0], "tom still": [65535, 0], "still hung": [65535, 0], "hung fire": [65535, 0], "fire now": [65535, 0], "now i": [32706, 32829], "know you'll": [65535, 0], "me said": [65535, 0], "said the": [65535, 0], "lady the": [65535, 0], "two disciples": [65535, 0], "disciples were": [65535, 0], "were david": [65535, 0], "david and": [65535, 0], "and goliath": [65535, 0], "goliath let": [65535, 0], "let us": [65535, 0], "us draw": [65535, 0], "the curtain": [65535, 0], "curtain of": [65535, 0], "of charity": [65535, 0], "charity over": [65535, 0], "the scene": [65535, 0], "the sun rose": [65535, 0], "sun rose upon": [65535, 0], "rose upon a": [65535, 0], "upon a tranquil": [65535, 0], "a tranquil world": [65535, 0], "tranquil world and": [65535, 0], "world and beamed": [65535, 0], "and beamed down": [65535, 0], "beamed down upon": [65535, 0], "upon the peaceful": [65535, 0], "the peaceful village": [65535, 0], "peaceful village like": [65535, 0], "village like a": [65535, 0], "like a benediction": [65535, 0], "a benediction breakfast": [65535, 0], "benediction breakfast over": [65535, 0], "breakfast over aunt": [65535, 0], "over aunt polly": [65535, 0], "aunt polly had": [65535, 0], "polly had family": [65535, 0], "had family worship": [65535, 0], "family worship it": [65535, 0], "worship it began": [65535, 0], "it began with": [65535, 0], "began with a": [65535, 0], "with a prayer": [65535, 0], "a prayer built": [65535, 0], "prayer built from": [65535, 0], "built from the": [65535, 0], "from the ground": [65535, 0], "the ground up": [65535, 0], "ground up of": [65535, 0], "up of solid": [65535, 0], "of solid courses": [65535, 0], "solid courses of": [65535, 0], "courses of scriptural": [65535, 0], "of scriptural quotations": [65535, 0], "scriptural quotations welded": [65535, 0], "quotations welded together": [65535, 0], "welded together with": [65535, 0], "together with a": [65535, 0], "with a thin": [65535, 0], "a thin mortar": [65535, 0], "thin mortar of": [65535, 0], "mortar of originality": [65535, 0], "of originality and": [65535, 0], "originality and from": [65535, 0], "and from the": [32706, 32829], "from the summit": [65535, 0], "the summit of": [65535, 0], "summit of this": [65535, 0], "of this she": [65535, 0], "this she delivered": [65535, 0], "she delivered a": [65535, 0], "delivered a grim": [65535, 0], "a grim chapter": [65535, 0], "grim chapter of": [65535, 0], "chapter of the": [65535, 0], "of the mosaic": [65535, 0], "the mosaic law": [65535, 0], "mosaic law as": [65535, 0], "law as from": [65535, 0], "as from sinai": [65535, 0], "from sinai then": [65535, 0], "sinai then tom": [65535, 0], "then tom girded": [65535, 0], "tom girded up": [65535, 0], "girded up his": [65535, 0], "up his loins": [65535, 0], "his loins so": [65535, 0], "loins so to": [65535, 0], "so to speak": [65535, 0], "to speak and": [65535, 0], "speak and went": [65535, 0], "and went to": [65535, 0], "went to work": [65535, 0], "to work to": [65535, 0], "work to get": [65535, 0], "to get his": [65535, 0], "get his verses": [65535, 0], "his verses sid": [65535, 0], "verses sid had": [65535, 0], "sid had learned": [65535, 0], "had learned his": [65535, 0], "learned his lesson": [65535, 0], "his lesson days": [65535, 0], "lesson days before": [65535, 0], "days before tom": [65535, 0], "before tom bent": [65535, 0], "tom bent all": [65535, 0], "bent all his": [65535, 0], "all his energies": [65535, 0], "his energies to": [65535, 0], "energies to the": [65535, 0], "to the memorizing": [65535, 0], "the memorizing of": [65535, 0], "memorizing of five": [65535, 0], "of five verses": [65535, 0], "five verses and": [65535, 0], "verses and he": [65535, 0], "and he chose": [65535, 0], "he chose part": [65535, 0], "chose part of": [65535, 0], "the sermon on": [65535, 0], "sermon on the": [65535, 0], "on the mount": [65535, 0], "the mount because": [65535, 0], "mount because he": [65535, 0], "because he could": [65535, 0], "he could find": [65535, 0], "could find no": [32706, 32829], "find no verses": [65535, 0], "no verses that": [65535, 0], "verses that were": [65535, 0], "that were shorter": [65535, 0], "were shorter at": [65535, 0], "shorter at the": [65535, 0], "at the end": [65535, 0], "end of half": [65535, 0], "of half an": [65535, 0], "an hour tom": [65535, 0], "hour tom had": [65535, 0], "tom had a": [65535, 0], "had a vague": [65535, 0], "a vague general": [65535, 0], "vague general idea": [65535, 0], "general idea of": [65535, 0], "idea of his": [65535, 0], "of his lesson": [65535, 0], "his lesson but": [65535, 0], "lesson but no": [65535, 0], "but no more": [65535, 0], "no more for": [65535, 0], "more for his": [65535, 0], "for his mind": [65535, 0], "his mind was": [65535, 0], "mind was traversing": [65535, 0], "was traversing the": [65535, 0], "traversing the whole": [65535, 0], "the whole field": [65535, 0], "whole field of": [65535, 0], "field of human": [65535, 0], "of human thought": [65535, 0], "human thought and": [65535, 0], "thought and his": [65535, 0], "and his hands": [65535, 0], "his hands were": [65535, 0], "hands were busy": [65535, 0], "were busy with": [65535, 0], "busy with distracting": [65535, 0], "with distracting recreations": [65535, 0], "distracting recreations mary": [65535, 0], "recreations mary took": [65535, 0], "mary took his": [65535, 0], "took his book": [65535, 0], "his book to": [65535, 0], "book to hear": [65535, 0], "to hear him": [65535, 0], "hear him recite": [65535, 0], "him recite and": [65535, 0], "recite and he": [65535, 0], "and he tried": [65535, 0], "he tried to": [65535, 0], "tried to find": [65535, 0], "to find his": [65535, 0], "find his way": [65535, 0], "his way through": [65535, 0], "way through the": [65535, 0], "the fog blessed": [65535, 0], "fog blessed are": [65535, 0], "blessed are the": [65535, 0], "are the a": [65535, 0], "the a a": [65535, 0], "a a poor": [65535, 0], "a poor yes": [65535, 0], "poor yes poor": [65535, 0], "yes poor blessed": [65535, 0], "poor blessed are": [65535, 0], "are the poor": [65535, 0], "the poor a": [65535, 0], "poor a a": [65535, 0], "a a in": [65535, 0], "a in spirit": [65535, 0], "in spirit in": [65535, 0], "spirit in spirit": [65535, 0], "in spirit blessed": [65535, 0], "spirit blessed are": [65535, 0], "the poor in": [65535, 0], "poor in spirit": [65535, 0], "in spirit for": [65535, 0], "spirit for they": [65535, 0], "for they they": [65535, 0], "they they theirs": [65535, 0], "they theirs for": [65535, 0], "theirs for theirs": [65535, 0], "for theirs blessed": [65535, 0], "theirs blessed are": [65535, 0], "spirit for theirs": [65535, 0], "for theirs is": [65535, 0], "theirs is the": [65535, 0], "is the kingdom": [65535, 0], "the kingdom of": [65535, 0], "kingdom of heaven": [65535, 0], "of heaven blessed": [65535, 0], "heaven blessed are": [65535, 0], "blessed are they": [65535, 0], "are they that": [65535, 0], "they that mourn": [65535, 0], "that mourn for": [65535, 0], "mourn for they": [65535, 0], "they they sh": [65535, 0], "they sh for": [65535, 0], "sh for they": [65535, 0], "for they a": [65535, 0], "they a s": [65535, 0], "a s h": [65535, 0], "s h a": [65535, 0], "h a for": [65535, 0], "a for they": [65535, 0], "for they s": [65535, 0], "they s h": [65535, 0], "s h oh": [65535, 0], "h oh i": [65535, 0], "oh i don't": [65535, 0], "don't know what": [65535, 0], "know what it": [65535, 0], "it is shall": [65535, 0], "is shall oh": [65535, 0], "shall oh shall": [65535, 0], "oh shall for": [65535, 0], "shall for they": [65535, 0], "for they shall": [65535, 0], "they shall for": [65535, 0], "they shall a": [65535, 0], "shall a a": [65535, 0], "a a shall": [65535, 0], "a shall mourn": [65535, 0], "shall mourn a": [65535, 0], "mourn a a": [65535, 0], "a a blessed": [65535, 0], "a blessed are": [65535, 0], "they that shall": [65535, 0], "that shall they": [65535, 0], "shall they that": [65535, 0], "they that a": [65535, 0], "that a they": [65535, 0], "a they that": [65535, 0], "that shall mourn": [65535, 0], "shall mourn for": [65535, 0], "shall a shall": [65535, 0], "a shall what": [65535, 0], "shall what why": [65535, 0], "what why don't": [65535, 0], "tell me mary": [65535, 0], "me mary what": [65535, 0], "mary what do": [65535, 0], "do you want": [65535, 0], "want to be": [65535, 0], "to be so": [32706, 32829], "be so mean": [65535, 0], "so mean for": [65535, 0], "mean for oh": [65535, 0], "for oh tom": [65535, 0], "tom you poor": [65535, 0], "you poor thick": [65535, 0], "poor thick headed": [65535, 0], "thick headed thing": [65535, 0], "headed thing i'm": [65535, 0], "thing i'm not": [65535, 0], "i'm not teasing": [65535, 0], "not teasing you": [65535, 0], "teasing you i": [65535, 0], "you i wouldn't": [65535, 0], "i wouldn't do": [65535, 0], "wouldn't do that": [65535, 0], "do that you": [65535, 0], "that you must": [65535, 0], "you must go": [65535, 0], "must go and": [65535, 0], "go and learn": [65535, 0], "and learn it": [65535, 0], "learn it again": [65535, 0], "it again don't": [65535, 0], "again don't you": [65535, 0], "don't you be": [65535, 0], "you be discouraged": [65535, 0], "be discouraged tom": [65535, 0], "discouraged tom you'll": [65535, 0], "tom you'll manage": [65535, 0], "you'll manage it": [65535, 0], "manage it and": [65535, 0], "it and if": [65535, 0], "and if you": [32706, 32829], "if you do": [65535, 0], "you do i'll": [65535, 0], "do i'll give": [65535, 0], "give you something": [65535, 0], "you something ever": [65535, 0], "something ever so": [65535, 0], "so nice there": [65535, 0], "nice there now": [65535, 0], "there now that's": [65535, 0], "now that's a": [65535, 0], "that's a good": [65535, 0], "a good boy": [65535, 0], "good boy all": [65535, 0], "boy all right": [65535, 0], "all right what": [65535, 0], "right what is": [65535, 0], "is it mary": [65535, 0], "it mary tell": [65535, 0], "mary tell me": [65535, 0], "tell me what": [65535, 0], "me what it": [65535, 0], "it is never": [65535, 0], "is never you": [65535, 0], "you mind tom": [65535, 0], "mind tom you": [65535, 0], "tom you know": [65535, 0], "you know if": [65535, 0], "know if i": [65535, 0], "if i say": [65535, 0], "i say it's": [65535, 0], "say it's nice": [65535, 0], "it's nice it": [65535, 0], "nice it is": [65535, 0], "it is nice": [65535, 0], "is nice you": [65535, 0], "nice you bet": [65535, 0], "you bet you": [65535, 0], "bet you that's": [65535, 0], "you that's so": [65535, 0], "that's so mary": [65535, 0], "so mary all": [65535, 0], "mary all right": [65535, 0], "all right i'll": [65535, 0], "right i'll tackle": [65535, 0], "i'll tackle it": [65535, 0], "tackle it again": [65535, 0], "it again and": [65535, 0], "again and he": [65535, 0], "and he did": [65535, 0], "he did tackle": [65535, 0], "did tackle it": [65535, 0], "again and under": [65535, 0], "and under the": [65535, 0], "under the double": [65535, 0], "the double pressure": [65535, 0], "double pressure of": [65535, 0], "pressure of curiosity": [65535, 0], "of curiosity and": [65535, 0], "curiosity and prospective": [65535, 0], "and prospective gain": [65535, 0], "prospective gain he": [65535, 0], "gain he did": [65535, 0], "he did it": [65535, 0], "did it with": [65535, 0], "it with such": [65535, 0], "with such spirit": [65535, 0], "such spirit that": [65535, 0], "spirit that he": [65535, 0], "that he accomplished": [65535, 0], "he accomplished a": [65535, 0], "accomplished a shining": [65535, 0], "a shining success": [65535, 0], "shining success mary": [65535, 0], "success mary gave": [65535, 0], "mary gave him": [65535, 0], "gave him a": [65535, 0], "him a brand": [65535, 0], "a brand new": [65535, 0], "brand new barlow": [65535, 0], "new barlow knife": [65535, 0], "barlow knife worth": [65535, 0], "knife worth twelve": [65535, 0], "worth twelve and": [65535, 0], "twelve and a": [65535, 0], "and a half": [65535, 0], "a half cents": [65535, 0], "half cents and": [65535, 0], "cents and the": [65535, 0], "and the convulsion": [65535, 0], "the convulsion of": [65535, 0], "convulsion of delight": [65535, 0], "of delight that": [65535, 0], "delight that swept": [65535, 0], "that swept his": [65535, 0], "swept his system": [65535, 0], "his system shook": [65535, 0], "system shook him": [65535, 0], "shook him to": [65535, 0], "him to his": [32706, 32829], "to his foundations": [65535, 0], "his foundations true": [65535, 0], "foundations true the": [65535, 0], "true the knife": [65535, 0], "the knife would": [65535, 0], "knife would not": [65535, 0], "would not cut": [65535, 0], "not cut anything": [65535, 0], "cut anything but": [65535, 0], "anything but it": [65535, 0], "was a sure": [65535, 0], "a sure enough": [65535, 0], "sure enough barlow": [65535, 0], "enough barlow and": [65535, 0], "barlow and there": [65535, 0], "and there was": [65535, 0], "there was inconceivable": [65535, 0], "was inconceivable grandeur": [65535, 0], "inconceivable grandeur in": [65535, 0], "grandeur in that": [65535, 0], "in that though": [65535, 0], "that though where": [65535, 0], "though where the": [65535, 0], "where the western": [65535, 0], "the western boys": [65535, 0], "western boys ever": [65535, 0], "boys ever got": [65535, 0], "ever got the": [65535, 0], "got the idea": [65535, 0], "the idea that": [65535, 0], "idea that such": [65535, 0], "that such a": [65535, 0], "such a weapon": [65535, 0], "a weapon could": [65535, 0], "weapon could possibly": [65535, 0], "could possibly be": [65535, 0], "possibly be counterfeited": [65535, 0], "be counterfeited to": [65535, 0], "counterfeited to its": [65535, 0], "to its injury": [65535, 0], "its injury is": [65535, 0], "injury is an": [65535, 0], "is an imposing": [65535, 0], "an imposing mystery": [65535, 0], "imposing mystery and": [65535, 0], "mystery and will": [65535, 0], "and will always": [65535, 0], "will always remain": [65535, 0], "always remain so": [65535, 0], "remain so perhaps": [65535, 0], "so perhaps tom": [65535, 0], "perhaps tom contrived": [65535, 0], "tom contrived to": [65535, 0], "contrived to scarify": [65535, 0], "to scarify the": [65535, 0], "scarify the cupboard": [65535, 0], "the cupboard with": [65535, 0], "cupboard with it": [65535, 0], "with it and": [32706, 32829], "it and was": [65535, 0], "and was arranging": [65535, 0], "was arranging to": [65535, 0], "arranging to begin": [65535, 0], "to begin on": [65535, 0], "begin on the": [65535, 0], "on the bureau": [65535, 0], "the bureau when": [65535, 0], "bureau when he": [65535, 0], "he was called": [65535, 0], "was called off": [65535, 0], "called off to": [65535, 0], "off to dress": [65535, 0], "to dress for": [65535, 0], "dress for sunday": [65535, 0], "for sunday school": [65535, 0], "sunday school mary": [65535, 0], "school mary gave": [65535, 0], "him a tin": [65535, 0], "a tin basin": [65535, 0], "tin basin of": [65535, 0], "basin of water": [65535, 0], "of water and": [65535, 0], "water and a": [65535, 0], "and a piece": [65535, 0], "piece of soap": [65535, 0], "of soap and": [65535, 0], "soap and he": [65535, 0], "and he went": [65535, 0], "he went outside": [65535, 0], "went outside the": [65535, 0], "outside the door": [65535, 0], "the door and": [65535, 0], "door and set": [65535, 0], "and set the": [65535, 0], "set the basin": [65535, 0], "the basin on": [65535, 0], "basin on a": [65535, 0], "on a little": [65535, 0], "a little bench": [65535, 0], "little bench there": [65535, 0], "bench there then": [65535, 0], "there then he": [65535, 0], "then he dipped": [65535, 0], "he dipped the": [65535, 0], "dipped the soap": [65535, 0], "the soap in": [65535, 0], "soap in the": [65535, 0], "in the water": [65535, 0], "the water and": [65535, 0], "water and laid": [65535, 0], "and laid it": [65535, 0], "laid it down": [65535, 0], "it down turned": [65535, 0], "down turned up": [65535, 0], "up his sleeves": [65535, 0], "his sleeves poured": [65535, 0], "sleeves poured out": [65535, 0], "poured out the": [65535, 0], "out the water": [65535, 0], "the water on": [65535, 0], "water on the": [65535, 0], "on the ground": [65535, 0], "the ground gently": [65535, 0], "ground gently and": [65535, 0], "gently and then": [65535, 0], "and then entered": [65535, 0], "then entered the": [65535, 0], "entered the kitchen": [65535, 0], "the kitchen and": [65535, 0], "kitchen and began": [65535, 0], "began to wipe": [65535, 0], "to wipe his": [65535, 0], "wipe his face": [65535, 0], "his face diligently": [65535, 0], "face diligently on": [65535, 0], "diligently on the": [65535, 0], "on the towel": [65535, 0], "the towel behind": [65535, 0], "towel behind the": [65535, 0], "behind the door": [65535, 0], "the door but": [65535, 0], "door but mary": [65535, 0], "but mary removed": [65535, 0], "mary removed the": [65535, 0], "removed the towel": [65535, 0], "the towel and": [65535, 0], "towel and said": [65535, 0], "said now ain't": [65535, 0], "now ain't you": [65535, 0], "ain't you ashamed": [65535, 0], "you ashamed tom": [65535, 0], "ashamed tom you": [65535, 0], "tom you mustn't": [65535, 0], "you mustn't be": [65535, 0], "mustn't be so": [65535, 0], "be so bad": [65535, 0], "so bad water": [65535, 0], "bad water won't": [65535, 0], "water won't hurt": [65535, 0], "won't hurt you": [65535, 0], "hurt you tom": [65535, 0], "you tom was": [65535, 0], "tom was a": [65535, 0], "was a trifle": [65535, 0], "a trifle disconcerted": [65535, 0], "trifle disconcerted the": [65535, 0], "disconcerted the basin": [65535, 0], "the basin was": [65535, 0], "basin was refilled": [65535, 0], "was refilled and": [65535, 0], "refilled and this": [65535, 0], "and this time": [65535, 0], "time he stood": [65535, 0], "he stood over": [65535, 0], "stood over it": [65535, 0], "over it a": [65535, 0], "it a little": [65535, 0], "little while gathering": [65535, 0], "while gathering resolution": [65535, 0], "gathering resolution took": [65535, 0], "resolution took in": [65535, 0], "took in a": [65535, 0], "in a big": [65535, 0], "a big breath": [65535, 0], "big breath and": [65535, 0], "breath and began": [65535, 0], "and began when": [65535, 0], "began when he": [65535, 0], "when he entered": [65535, 0], "he entered the": [65535, 0], "the kitchen presently": [65535, 0], "kitchen presently with": [65535, 0], "presently with both": [65535, 0], "with both eyes": [65535, 0], "both eyes shut": [65535, 0], "shut and groping": [65535, 0], "and groping for": [65535, 0], "groping for the": [65535, 0], "for the towel": [65535, 0], "the towel with": [65535, 0], "towel with his": [65535, 0], "with his hands": [65535, 0], "his hands an": [65535, 0], "hands an honorable": [65535, 0], "an honorable testimony": [65535, 0], "honorable testimony of": [65535, 0], "testimony of suds": [65535, 0], "of suds and": [65535, 0], "suds and water": [65535, 0], "and water was": [65535, 0], "water was dripping": [65535, 0], "was dripping from": [65535, 0], "dripping from his": [65535, 0], "from his face": [65535, 0], "face but when": [65535, 0], "but when he": [65535, 0], "when he emerged": [65535, 0], "he emerged from": [65535, 0], "emerged from the": [65535, 0], "from the towel": [65535, 0], "the towel he": [65535, 0], "towel he was": [65535, 0], "was not yet": [65535, 0], "not yet satisfactory": [65535, 0], "yet satisfactory for": [65535, 0], "satisfactory for the": [65535, 0], "for the clean": [65535, 0], "the clean territory": [65535, 0], "clean territory stopped": [65535, 0], "territory stopped short": [65535, 0], "stopped short at": [65535, 0], "short at his": [65535, 0], "at his chin": [65535, 0], "his chin and": [65535, 0], "chin and his": [65535, 0], "and his jaws": [65535, 0], "his jaws like": [65535, 0], "jaws like a": [65535, 0], "like a mask": [65535, 0], "a mask below": [65535, 0], "mask below and": [65535, 0], "below and beyond": [65535, 0], "and beyond this": [65535, 0], "beyond this line": [65535, 0], "this line there": [65535, 0], "line there was": [65535, 0], "was a dark": [65535, 0], "a dark expanse": [65535, 0], "dark expanse of": [65535, 0], "expanse of unirrigated": [65535, 0], "of unirrigated soil": [65535, 0], "unirrigated soil that": [65535, 0], "soil that spread": [65535, 0], "that spread downward": [65535, 0], "spread downward in": [65535, 0], "downward in front": [65535, 0], "in front and": [65535, 0], "front and backward": [65535, 0], "and backward around": [65535, 0], "backward around his": [65535, 0], "around his neck": [65535, 0], "his neck mary": [65535, 0], "neck mary took": [65535, 0], "mary took him": [65535, 0], "took him in": [65535, 0], "him in hand": [65535, 0], "in hand and": [65535, 0], "hand and when": [65535, 0], "when she was": [65535, 0], "she was done": [65535, 0], "was done with": [65535, 0], "done with him": [65535, 0], "with him he": [65535, 0], "was a man": [65535, 0], "a man and": [65535, 0], "man and a": [65535, 0], "and a brother": [32706, 32829], "a brother without": [65535, 0], "brother without distinction": [65535, 0], "without distinction of": [65535, 0], "distinction of color": [65535, 0], "of color and": [65535, 0], "color and his": [65535, 0], "and his saturated": [65535, 0], "his saturated hair": [65535, 0], "saturated hair was": [65535, 0], "hair was neatly": [65535, 0], "was neatly brushed": [65535, 0], "neatly brushed and": [65535, 0], "brushed and its": [65535, 0], "and its short": [65535, 0], "its short curls": [65535, 0], "short curls wrought": [65535, 0], "curls wrought into": [65535, 0], "wrought into a": [65535, 0], "into a dainty": [65535, 0], "a dainty and": [65535, 0], "dainty and symmetrical": [65535, 0], "and symmetrical general": [65535, 0], "symmetrical general effect": [65535, 0], "general effect he": [65535, 0], "effect he privately": [65535, 0], "he privately smoothed": [65535, 0], "privately smoothed out": [65535, 0], "smoothed out the": [65535, 0], "out the curls": [65535, 0], "the curls with": [65535, 0], "curls with labor": [65535, 0], "with labor and": [65535, 0], "labor and difficulty": [65535, 0], "and difficulty and": [65535, 0], "difficulty and plastered": [65535, 0], "and plastered his": [65535, 0], "plastered his hair": [65535, 0], "his hair close": [65535, 0], "hair close down": [65535, 0], "close down to": [65535, 0], "down to his": [65535, 0], "to his head": [65535, 0], "his head for": [65535, 0], "head for he": [65535, 0], "for he held": [65535, 0], "he held curls": [65535, 0], "held curls to": [65535, 0], "curls to be": [65535, 0], "to be effeminate": [65535, 0], "be effeminate and": [65535, 0], "effeminate and his": [65535, 0], "and his own": [65535, 0], "his own filled": [65535, 0], "own filled his": [65535, 0], "filled his life": [65535, 0], "his life with": [65535, 0], "life with bitterness": [65535, 0], "with bitterness then": [65535, 0], "bitterness then mary": [65535, 0], "then mary got": [65535, 0], "mary got out": [65535, 0], "out a suit": [65535, 0], "a suit of": [65535, 0], "suit of his": [65535, 0], "of his clothing": [65535, 0], "his clothing that": [65535, 0], "clothing that had": [65535, 0], "that had been": [65535, 0], "had been used": [65535, 0], "been used only": [65535, 0], "used only on": [65535, 0], "only on sundays": [65535, 0], "on sundays during": [65535, 0], "sundays during two": [65535, 0], "during two years": [65535, 0], "two years they": [65535, 0], "years they were": [65535, 0], "they were simply": [65535, 0], "were simply called": [65535, 0], "simply called his": [65535, 0], "called his other": [65535, 0], "his other clothes": [65535, 0], "other clothes and": [65535, 0], "clothes and so": [65535, 0], "and so by": [65535, 0], "so by that": [65535, 0], "by that we": [65535, 0], "that we know": [65535, 0], "we know the": [65535, 0], "know the size": [65535, 0], "the size of": [65535, 0], "size of his": [65535, 0], "of his wardrobe": [65535, 0], "his wardrobe the": [65535, 0], "wardrobe the girl": [65535, 0], "the girl put": [65535, 0], "girl put him": [65535, 0], "put him to": [65535, 0], "him to rights": [65535, 0], "to rights after": [65535, 0], "rights after he": [65535, 0], "after he had": [65535, 0], "he had dressed": [65535, 0], "had dressed himself": [65535, 0], "dressed himself she": [65535, 0], "himself she buttoned": [65535, 0], "she buttoned his": [65535, 0], "buttoned his neat": [65535, 0], "his neat roundabout": [65535, 0], "neat roundabout up": [65535, 0], "roundabout up to": [65535, 0], "up to his": [65535, 0], "to his chin": [65535, 0], "his chin turned": [65535, 0], "chin turned his": [65535, 0], "turned his vast": [65535, 0], "his vast shirt": [65535, 0], "vast shirt collar": [65535, 0], "shirt collar down": [65535, 0], "collar down over": [65535, 0], "down over his": [65535, 0], "over his shoulders": [65535, 0], "his shoulders brushed": [65535, 0], "shoulders brushed him": [65535, 0], "brushed him off": [65535, 0], "him off and": [65535, 0], "off and crowned": [65535, 0], "and crowned him": [65535, 0], "crowned him with": [65535, 0], "with his speckled": [65535, 0], "his speckled straw": [65535, 0], "speckled straw hat": [65535, 0], "straw hat he": [65535, 0], "hat he now": [65535, 0], "he now looked": [65535, 0], "now looked exceedingly": [65535, 0], "looked exceedingly improved": [65535, 0], "exceedingly improved and": [65535, 0], "improved and uncomfortable": [65535, 0], "and uncomfortable he": [65535, 0], "uncomfortable he was": [65535, 0], "he was fully": [65535, 0], "was fully as": [65535, 0], "fully as uncomfortable": [65535, 0], "as uncomfortable as": [65535, 0], "uncomfortable as he": [65535, 0], "as he looked": [65535, 0], "he looked for": [65535, 0], "looked for there": [65535, 0], "for there was": [65535, 0], "was a restraint": [65535, 0], "a restraint about": [65535, 0], "restraint about whole": [65535, 0], "about whole clothes": [65535, 0], "whole clothes and": [65535, 0], "clothes and cleanliness": [65535, 0], "and cleanliness that": [65535, 0], "cleanliness that galled": [65535, 0], "that galled him": [65535, 0], "galled him he": [65535, 0], "him he hoped": [65535, 0], "he hoped that": [65535, 0], "hoped that mary": [65535, 0], "that mary would": [65535, 0], "mary would forget": [65535, 0], "would forget his": [65535, 0], "forget his shoes": [65535, 0], "his shoes but": [65535, 0], "shoes but the": [65535, 0], "but the hope": [65535, 0], "the hope was": [65535, 0], "hope was blighted": [65535, 0], "was blighted she": [65535, 0], "blighted she coated": [65535, 0], "she coated them": [65535, 0], "coated them thoroughly": [65535, 0], "them thoroughly with": [65535, 0], "thoroughly with tallow": [65535, 0], "with tallow as": [65535, 0], "tallow as was": [65535, 0], "as was the": [65535, 0], "was the custom": [65535, 0], "the custom and": [65535, 0], "custom and brought": [65535, 0], "and brought them": [65535, 0], "brought them out": [65535, 0], "them out he": [65535, 0], "out he lost": [65535, 0], "he lost his": [65535, 0], "lost his temper": [65535, 0], "his temper and": [65535, 0], "temper and said": [65535, 0], "and said he": [65535, 0], "said he was": [65535, 0], "was always being": [65535, 0], "always being made": [65535, 0], "being made to": [65535, 0], "made to do": [65535, 0], "to do everything": [65535, 0], "do everything he": [65535, 0], "everything he didn't": [65535, 0], "he didn't want": [65535, 0], "didn't want to": [65535, 0], "want to do": [65535, 0], "to do but": [65535, 0], "do but mary": [65535, 0], "but mary said": [65535, 0], "mary said persuasively": [65535, 0], "said persuasively please": [65535, 0], "persuasively please tom": [65535, 0], "please tom that's": [65535, 0], "tom that's a": [65535, 0], "good boy so": [65535, 0], "boy so he": [65535, 0], "so he got": [65535, 0], "he got into": [65535, 0], "got into the": [65535, 0], "into the shoes": [65535, 0], "the shoes snarling": [65535, 0], "shoes snarling mary": [65535, 0], "snarling mary was": [65535, 0], "mary was soon": [65535, 0], "was soon ready": [65535, 0], "soon ready and": [65535, 0], "ready and the": [65535, 0], "and the three": [65535, 0], "the three children": [65535, 0], "three children set": [65535, 0], "children set out": [65535, 0], "set out for": [65535, 0], "out for sunday": [65535, 0], "sunday school a": [65535, 0], "school a place": [65535, 0], "a place that": [65535, 0], "place that tom": [65535, 0], "that tom hated": [65535, 0], "tom hated with": [65535, 0], "hated with his": [65535, 0], "with his whole": [65535, 0], "his whole heart": [65535, 0], "whole heart but": [65535, 0], "heart but sid": [65535, 0], "but sid and": [65535, 0], "and mary were": [65535, 0], "mary were fond": [65535, 0], "were fond of": [65535, 0], "fond of it": [65535, 0], "of it sabbath": [65535, 0], "it sabbath school": [65535, 0], "sabbath school hours": [65535, 0], "school hours were": [65535, 0], "hours were from": [65535, 0], "were from nine": [65535, 0], "from nine to": [65535, 0], "nine to half": [65535, 0], "to half past": [65535, 0], "past ten and": [65535, 0], "ten and then": [65535, 0], "and then church": [65535, 0], "then church service": [65535, 0], "church service two": [65535, 0], "service two of": [65535, 0], "two of the": [65535, 0], "of the children": [65535, 0], "the children always": [65535, 0], "children always remained": [65535, 0], "always remained for": [65535, 0], "remained for the": [65535, 0], "for the sermon": [65535, 0], "the sermon voluntarily": [65535, 0], "sermon voluntarily and": [65535, 0], "voluntarily and the": [65535, 0], "the other always": [65535, 0], "other always remained": [65535, 0], "always remained too": [65535, 0], "remained too for": [65535, 0], "too for stronger": [65535, 0], "for stronger reasons": [65535, 0], "stronger reasons the": [65535, 0], "reasons the church's": [65535, 0], "the church's high": [65535, 0], "church's high backed": [65535, 0], "high backed uncushioned": [65535, 0], "backed uncushioned pews": [65535, 0], "uncushioned pews would": [65535, 0], "pews would seat": [65535, 0], "would seat about": [65535, 0], "seat about three": [65535, 0], "about three hundred": [65535, 0], "three hundred persons": [65535, 0], "hundred persons the": [65535, 0], "persons the edifice": [65535, 0], "the edifice was": [65535, 0], "edifice was but": [65535, 0], "but a small": [65535, 0], "a small plain": [65535, 0], "small plain affair": [65535, 0], "plain affair with": [65535, 0], "affair with a": [65535, 0], "with a sort": [65535, 0], "sort of pine": [65535, 0], "of pine board": [65535, 0], "pine board tree": [65535, 0], "board tree box": [65535, 0], "tree box on": [65535, 0], "box on top": [65535, 0], "on top of": [65535, 0], "top of it": [65535, 0], "of it for": [65535, 0], "it for a": [65535, 0], "for a steeple": [65535, 0], "a steeple at": [65535, 0], "steeple at the": [65535, 0], "the door tom": [65535, 0], "door tom dropped": [65535, 0], "tom dropped back": [65535, 0], "dropped back a": [65535, 0], "back a step": [65535, 0], "a step and": [65535, 0], "step and accosted": [65535, 0], "and accosted a": [65535, 0], "accosted a sunday": [65535, 0], "a sunday dressed": [65535, 0], "sunday dressed comrade": [65535, 0], "dressed comrade say": [65535, 0], "comrade say billy": [65535, 0], "say billy got": [65535, 0], "billy got a": [65535, 0], "got a yaller": [65535, 0], "a yaller ticket": [65535, 0], "yaller ticket yes": [65535, 0], "ticket yes what'll": [65535, 0], "yes what'll you": [65535, 0], "take for her": [65535, 0], "for her what'll": [65535, 0], "her what'll you": [65535, 0], "what'll you give": [65535, 0], "you give piece": [65535, 0], "give piece of": [65535, 0], "piece of lickrish": [65535, 0], "of lickrish and": [65535, 0], "lickrish and a": [65535, 0], "and a fish": [65535, 0], "a fish hook": [65535, 0], "fish hook less": [65535, 0], "hook less see": [65535, 0], "less see 'em": [65535, 0], "see 'em tom": [65535, 0], "'em tom exhibited": [65535, 0], "tom exhibited they": [65535, 0], "exhibited they were": [65535, 0], "they were satisfactory": [65535, 0], "were satisfactory and": [65535, 0], "satisfactory and the": [65535, 0], "and the property": [65535, 0], "the property changed": [65535, 0], "property changed hands": [65535, 0], "changed hands then": [65535, 0], "hands then tom": [65535, 0], "then tom traded": [65535, 0], "tom traded a": [65535, 0], "traded a couple": [65535, 0], "couple of white": [65535, 0], "of white alleys": [65535, 0], "white alleys for": [65535, 0], "alleys for three": [65535, 0], "for three red": [65535, 0], "three red tickets": [65535, 0], "red tickets and": [65535, 0], "tickets and some": [65535, 0], "and some small": [65535, 0], "some small trifle": [65535, 0], "small trifle or": [65535, 0], "trifle or other": [65535, 0], "or other for": [65535, 0], "other for a": [65535, 0], "for a couple": [65535, 0], "couple of blue": [65535, 0], "of blue ones": [65535, 0], "blue ones he": [65535, 0], "ones he waylaid": [65535, 0], "he waylaid other": [65535, 0], "waylaid other boys": [65535, 0], "other boys as": [65535, 0], "boys as they": [65535, 0], "as they came": [65535, 0], "they came and": [65535, 0], "and went on": [65535, 0], "went on buying": [65535, 0], "on buying tickets": [65535, 0], "buying tickets of": [65535, 0], "tickets of various": [65535, 0], "of various colors": [65535, 0], "various colors ten": [65535, 0], "colors ten or": [65535, 0], "ten or fifteen": [65535, 0], "or fifteen minutes": [65535, 0], "fifteen minutes longer": [65535, 0], "minutes longer he": [65535, 0], "longer he entered": [65535, 0], "entered the church": [65535, 0], "the church now": [65535, 0], "church now with": [65535, 0], "now with a": [65535, 0], "with a swarm": [65535, 0], "a swarm of": [65535, 0], "swarm of clean": [65535, 0], "of clean and": [65535, 0], "clean and noisy": [65535, 0], "and noisy boys": [65535, 0], "noisy boys and": [65535, 0], "and girls proceeded": [65535, 0], "girls proceeded to": [65535, 0], "proceeded to his": [65535, 0], "to his seat": [65535, 0], "his seat and": [65535, 0], "seat and started": [65535, 0], "and started a": [65535, 0], "started a quarrel": [65535, 0], "a quarrel with": [65535, 0], "quarrel with the": [65535, 0], "with the first": [65535, 0], "boy that came": [65535, 0], "that came handy": [65535, 0], "came handy the": [65535, 0], "handy the teacher": [65535, 0], "the teacher a": [65535, 0], "teacher a grave": [65535, 0], "a grave elderly": [65535, 0], "grave elderly man": [65535, 0], "elderly man interfered": [65535, 0], "man interfered then": [65535, 0], "interfered then turned": [65535, 0], "then turned his": [65535, 0], "turned his back": [65535, 0], "his back a": [65535, 0], "back a moment": [65535, 0], "moment and tom": [65535, 0], "and tom pulled": [65535, 0], "tom pulled a": [65535, 0], "pulled a boy's": [65535, 0], "a boy's hair": [65535, 0], "boy's hair in": [65535, 0], "hair in the": [65535, 0], "in the next": [65535, 0], "the next bench": [65535, 0], "next bench and": [65535, 0], "bench and was": [65535, 0], "and was absorbed": [65535, 0], "was absorbed in": [65535, 0], "absorbed in his": [65535, 0], "in his book": [65535, 0], "his book when": [65535, 0], "book when the": [65535, 0], "when the boy": [65535, 0], "the boy turned": [65535, 0], "boy turned around": [65535, 0], "turned around stuck": [65535, 0], "around stuck a": [65535, 0], "stuck a pin": [65535, 0], "a pin in": [65535, 0], "pin in another": [65535, 0], "in another boy": [65535, 0], "another boy presently": [65535, 0], "boy presently in": [65535, 0], "presently in order": [65535, 0], "order to hear": [65535, 0], "hear him say": [65535, 0], "him say ouch": [65535, 0], "say ouch and": [65535, 0], "ouch and got": [65535, 0], "and got a": [65535, 0], "got a new": [65535, 0], "a new reprimand": [65535, 0], "new reprimand from": [65535, 0], "reprimand from his": [65535, 0], "from his teacher": [65535, 0], "his teacher tom's": [65535, 0], "teacher tom's whole": [65535, 0], "tom's whole class": [65535, 0], "whole class were": [65535, 0], "class were of": [65535, 0], "were of a": [65535, 0], "of a pattern": [65535, 0], "a pattern restless": [65535, 0], "pattern restless noisy": [65535, 0], "restless noisy and": [65535, 0], "noisy and troublesome": [65535, 0], "and troublesome when": [65535, 0], "troublesome when they": [65535, 0], "when they came": [65535, 0], "came to recite": [65535, 0], "to recite their": [65535, 0], "recite their lessons": [65535, 0], "their lessons not": [65535, 0], "lessons not one": [65535, 0], "not one of": [65535, 0], "one of them": [65535, 0], "of them knew": [65535, 0], "them knew his": [65535, 0], "knew his verses": [65535, 0], "his verses perfectly": [65535, 0], "verses perfectly but": [65535, 0], "perfectly but had": [65535, 0], "but had to": [65535, 0], "had to be": [65535, 0], "to be prompted": [65535, 0], "be prompted all": [65535, 0], "prompted all along": [65535, 0], "all along however": [65535, 0], "along however they": [65535, 0], "however they worried": [65535, 0], "they worried through": [65535, 0], "worried through and": [65535, 0], "through and each": [65535, 0], "and each got": [65535, 0], "each got his": [65535, 0], "got his reward": [65535, 0], "his reward in": [65535, 0], "reward in small": [65535, 0], "in small blue": [65535, 0], "small blue tickets": [65535, 0], "blue tickets each": [65535, 0], "tickets each with": [65535, 0], "with a passage": [65535, 0], "a passage of": [65535, 0], "passage of scripture": [65535, 0], "of scripture on": [65535, 0], "scripture on it": [65535, 0], "on it each": [65535, 0], "it each blue": [65535, 0], "each blue ticket": [65535, 0], "blue ticket was": [65535, 0], "ticket was pay": [65535, 0], "was pay for": [65535, 0], "pay for two": [65535, 0], "for two verses": [65535, 0], "two verses of": [65535, 0], "verses of the": [65535, 0], "of the recitation": [65535, 0], "the recitation ten": [65535, 0], "recitation ten blue": [65535, 0], "ten blue tickets": [65535, 0], "blue tickets equalled": [65535, 0], "tickets equalled a": [65535, 0], "equalled a red": [65535, 0], "a red one": [65535, 0], "red one and": [65535, 0], "one and could": [65535, 0], "and could be": [65535, 0], "could be exchanged": [65535, 0], "be exchanged for": [65535, 0], "exchanged for it": [65535, 0], "for it ten": [65535, 0], "it ten red": [65535, 0], "ten red tickets": [65535, 0], "red tickets equalled": [65535, 0], "equalled a yellow": [65535, 0], "a yellow one": [65535, 0], "yellow one for": [65535, 0], "one for ten": [65535, 0], "for ten yellow": [65535, 0], "ten yellow tickets": [65535, 0], "yellow tickets the": [65535, 0], "tickets the superintendent": [65535, 0], "the superintendent gave": [65535, 0], "superintendent gave a": [65535, 0], "gave a very": [65535, 0], "a very plainly": [65535, 0], "very plainly bound": [65535, 0], "plainly bound bible": [65535, 0], "bound bible worth": [65535, 0], "bible worth forty": [65535, 0], "worth forty cents": [65535, 0], "forty cents in": [65535, 0], "cents in those": [65535, 0], "in those easy": [65535, 0], "those easy times": [65535, 0], "easy times to": [65535, 0], "times to the": [65535, 0], "to the pupil": [65535, 0], "the pupil how": [65535, 0], "pupil how many": [65535, 0], "how many of": [65535, 0], "many of my": [65535, 0], "of my readers": [65535, 0], "my readers would": [65535, 0], "readers would have": [65535, 0], "would have the": [65535, 0], "have the industry": [65535, 0], "the industry and": [65535, 0], "industry and application": [65535, 0], "and application to": [65535, 0], "application to memorize": [65535, 0], "to memorize two": [65535, 0], "memorize two thousand": [65535, 0], "two thousand verses": [65535, 0], "thousand verses even": [65535, 0], "verses even for": [65535, 0], "even for a": [65535, 0], "for a dore": [65535, 0], "a dore bible": [65535, 0], "dore bible and": [65535, 0], "bible and yet": [65535, 0], "and yet mary": [65535, 0], "yet mary had": [65535, 0], "mary had acquired": [65535, 0], "had acquired two": [65535, 0], "acquired two bibles": [65535, 0], "two bibles in": [65535, 0], "bibles in this": [65535, 0], "in this way": [65535, 0], "this way it": [65535, 0], "way it was": [65535, 0], "was the patient": [65535, 0], "the patient work": [65535, 0], "patient work of": [65535, 0], "work of two": [65535, 0], "of two years": [65535, 0], "two years and": [65535, 0], "years and a": [65535, 0], "and a boy": [65535, 0], "a boy of": [65535, 0], "boy of german": [65535, 0], "of german parentage": [65535, 0], "german parentage had": [65535, 0], "parentage had won": [65535, 0], "had won four": [65535, 0], "won four or": [65535, 0], "four or five": [65535, 0], "or five he": [65535, 0], "five he once": [65535, 0], "he once recited": [65535, 0], "once recited three": [65535, 0], "recited three thousand": [65535, 0], "three thousand verses": [65535, 0], "thousand verses without": [65535, 0], "verses without stopping": [65535, 0], "without stopping but": [65535, 0], "stopping but the": [65535, 0], "but the strain": [65535, 0], "the strain upon": [65535, 0], "strain upon his": [65535, 0], "upon his mental": [65535, 0], "his mental faculties": [65535, 0], "mental faculties was": [65535, 0], "faculties was too": [65535, 0], "too great and": [65535, 0], "great and he": [65535, 0], "he was little": [65535, 0], "was little better": [65535, 0], "little better than": [65535, 0], "better than an": [65535, 0], "than an idiot": [65535, 0], "an idiot from": [65535, 0], "idiot from that": [65535, 0], "from that day": [65535, 0], "that day forth": [65535, 0], "day forth a": [65535, 0], "forth a grievous": [65535, 0], "a grievous misfortune": [65535, 0], "grievous misfortune for": [65535, 0], "misfortune for the": [65535, 0], "for the school": [65535, 0], "the school for": [65535, 0], "school for on": [65535, 0], "for on great": [65535, 0], "on great occasions": [65535, 0], "great occasions before": [65535, 0], "occasions before company": [65535, 0], "before company the": [65535, 0], "company the superintendent": [65535, 0], "the superintendent as": [65535, 0], "superintendent as tom": [65535, 0], "as tom expressed": [65535, 0], "tom expressed it": [65535, 0], "expressed it had": [65535, 0], "it had always": [65535, 0], "had always made": [65535, 0], "always made this": [65535, 0], "made this boy": [65535, 0], "this boy come": [65535, 0], "boy come out": [65535, 0], "come out and": [65535, 0], "out and spread": [65535, 0], "and spread himself": [65535, 0], "spread himself only": [65535, 0], "himself only the": [65535, 0], "only the older": [65535, 0], "the older pupils": [65535, 0], "older pupils managed": [65535, 0], "pupils managed to": [65535, 0], "managed to keep": [65535, 0], "to keep their": [65535, 0], "keep their tickets": [65535, 0], "their tickets and": [65535, 0], "tickets and stick": [65535, 0], "and stick to": [65535, 0], "stick to their": [65535, 0], "to their tedious": [65535, 0], "their tedious work": [65535, 0], "tedious work long": [65535, 0], "work long enough": [65535, 0], "long enough to": [65535, 0], "enough to get": [65535, 0], "to get a": [65535, 0], "get a bible": [65535, 0], "a bible and": [65535, 0], "bible and so": [65535, 0], "and so the": [65535, 0], "so the delivery": [65535, 0], "the delivery of": [65535, 0], "delivery of one": [65535, 0], "of one of": [65535, 0], "one of these": [43635, 21900], "of these prizes": [65535, 0], "these prizes was": [65535, 0], "prizes was a": [65535, 0], "was a rare": [65535, 0], "a rare and": [65535, 0], "rare and noteworthy": [65535, 0], "and noteworthy circumstance": [65535, 0], "noteworthy circumstance the": [65535, 0], "circumstance the successful": [65535, 0], "the successful pupil": [65535, 0], "successful pupil was": [65535, 0], "pupil was so": [65535, 0], "was so great": [65535, 0], "so great and": [65535, 0], "great and conspicuous": [65535, 0], "and conspicuous for": [65535, 0], "conspicuous for that": [65535, 0], "for that day": [65535, 0], "that day that": [65535, 0], "day that on": [65535, 0], "that on the": [65535, 0], "on the spot": [65535, 0], "the spot every": [65535, 0], "spot every scholar's": [65535, 0], "every scholar's heart": [65535, 0], "scholar's heart was": [65535, 0], "heart was fired": [65535, 0], "was fired with": [65535, 0], "fired with a": [65535, 0], "with a fresh": [65535, 0], "a fresh ambition": [65535, 0], "fresh ambition that": [65535, 0], "ambition that often": [65535, 0], "that often lasted": [65535, 0], "often lasted a": [65535, 0], "lasted a couple": [65535, 0], "couple of weeks": [65535, 0], "of weeks it": [65535, 0], "weeks it is": [65535, 0], "it is possible": [65535, 0], "is possible that": [65535, 0], "possible that tom's": [65535, 0], "that tom's mental": [65535, 0], "tom's mental stomach": [65535, 0], "mental stomach had": [65535, 0], "stomach had never": [65535, 0], "had never really": [65535, 0], "never really hungered": [65535, 0], "really hungered for": [65535, 0], "hungered for one": [65535, 0], "for one of": [65535, 0], "one of those": [65535, 0], "of those prizes": [65535, 0], "those prizes but": [65535, 0], "prizes but unquestionably": [65535, 0], "but unquestionably his": [65535, 0], "unquestionably his entire": [65535, 0], "his entire being": [65535, 0], "entire being had": [65535, 0], "being had for": [65535, 0], "had for many": [65535, 0], "for many a": [65535, 0], "many a day": [65535, 0], "a day longed": [65535, 0], "day longed for": [65535, 0], "longed for the": [65535, 0], "for the glory": [65535, 0], "the glory and": [65535, 0], "glory and the": [65535, 0], "and the eclat": [65535, 0], "the eclat that": [65535, 0], "eclat that came": [65535, 0], "that came with": [65535, 0], "came with it": [65535, 0], "with it in": [65535, 0], "it in due": [65535, 0], "in due course": [65535, 0], "due course the": [65535, 0], "course the superintendent": [65535, 0], "the superintendent stood": [65535, 0], "superintendent stood up": [65535, 0], "stood up in": [65535, 0], "up in front": [65535, 0], "of the pulpit": [65535, 0], "the pulpit with": [65535, 0], "pulpit with a": [65535, 0], "with a closed": [65535, 0], "a closed hymn": [65535, 0], "closed hymn book": [65535, 0], "hymn book in": [65535, 0], "book in his": [65535, 0], "in his hand": [65535, 0], "his hand and": [65535, 0], "hand and his": [65535, 0], "and his forefinger": [65535, 0], "his forefinger inserted": [65535, 0], "forefinger inserted between": [65535, 0], "inserted between its": [65535, 0], "between its leaves": [65535, 0], "its leaves and": [65535, 0], "leaves and commanded": [65535, 0], "and commanded attention": [65535, 0], "commanded attention when": [65535, 0], "attention when a": [65535, 0], "when a sunday": [65535, 0], "a sunday school": [65535, 0], "sunday school superintendent": [65535, 0], "school superintendent makes": [65535, 0], "superintendent makes his": [65535, 0], "makes his customary": [65535, 0], "his customary little": [65535, 0], "customary little speech": [65535, 0], "little speech a": [65535, 0], "speech a hymn": [65535, 0], "a hymn book": [65535, 0], "book in the": [65535, 0], "in the hand": [65535, 0], "the hand is": [65535, 0], "hand is as": [65535, 0], "is as necessary": [65535, 0], "as necessary as": [65535, 0], "necessary as is": [65535, 0], "as is the": [65535, 0], "is the inevitable": [65535, 0], "the inevitable sheet": [65535, 0], "inevitable sheet of": [65535, 0], "sheet of music": [65535, 0], "of music in": [65535, 0], "music in the": [65535, 0], "the hand of": [65535, 0], "hand of a": [65535, 0], "of a singer": [65535, 0], "a singer who": [65535, 0], "singer who stands": [65535, 0], "who stands forward": [65535, 0], "stands forward on": [65535, 0], "forward on the": [65535, 0], "on the platform": [65535, 0], "the platform and": [65535, 0], "platform and sings": [65535, 0], "and sings a": [65535, 0], "sings a solo": [65535, 0], "a solo at": [65535, 0], "solo at a": [65535, 0], "at a concert": [65535, 0], "a concert though": [65535, 0], "concert though why": [65535, 0], "though why is": [65535, 0], "why is a": [65535, 0], "is a mystery": [65535, 0], "a mystery for": [65535, 0], "mystery for neither": [65535, 0], "for neither the": [65535, 0], "neither the hymn": [65535, 0], "the hymn book": [65535, 0], "hymn book nor": [65535, 0], "book nor the": [65535, 0], "nor the sheet": [65535, 0], "the sheet of": [65535, 0], "of music is": [65535, 0], "music is ever": [65535, 0], "is ever referred": [65535, 0], "ever referred to": [65535, 0], "referred to by": [65535, 0], "to by the": [65535, 0], "by the sufferer": [65535, 0], "the sufferer this": [65535, 0], "sufferer this superintendent": [65535, 0], "this superintendent was": [65535, 0], "superintendent was a": [65535, 0], "was a slim": [65535, 0], "a slim creature": [65535, 0], "slim creature of": [65535, 0], "creature of thirty": [65535, 0], "of thirty five": [65535, 0], "thirty five with": [65535, 0], "five with a": [65535, 0], "with a sandy": [65535, 0], "a sandy goatee": [65535, 0], "sandy goatee and": [65535, 0], "goatee and short": [65535, 0], "and short sandy": [65535, 0], "short sandy hair": [65535, 0], "sandy hair he": [65535, 0], "hair he wore": [65535, 0], "he wore a": [65535, 0], "wore a stiff": [65535, 0], "a stiff standing": [65535, 0], "stiff standing collar": [65535, 0], "standing collar whose": [65535, 0], "collar whose upper": [65535, 0], "whose upper edge": [65535, 0], "upper edge almost": [65535, 0], "edge almost reached": [65535, 0], "almost reached his": [65535, 0], "reached his ears": [65535, 0], "his ears and": [65535, 0], "ears and whose": [65535, 0], "and whose sharp": [65535, 0], "whose sharp points": [65535, 0], "sharp points curved": [65535, 0], "points curved forward": [65535, 0], "curved forward abreast": [65535, 0], "forward abreast the": [65535, 0], "abreast the corners": [65535, 0], "the corners of": [65535, 0], "corners of his": [65535, 0], "of his mouth": [65535, 0], "his mouth a": [65535, 0], "mouth a fence": [65535, 0], "a fence that": [65535, 0], "fence that compelled": [65535, 0], "that compelled a": [65535, 0], "compelled a straight": [65535, 0], "a straight lookout": [65535, 0], "straight lookout ahead": [65535, 0], "lookout ahead and": [65535, 0], "ahead and a": [65535, 0], "and a turning": [65535, 0], "a turning of": [65535, 0], "turning of the": [65535, 0], "of the whole": [65535, 0], "the whole body": [65535, 0], "whole body when": [65535, 0], "body when a": [65535, 0], "when a side": [65535, 0], "a side view": [65535, 0], "side view was": [65535, 0], "view was required": [65535, 0], "was required his": [65535, 0], "required his chin": [65535, 0], "his chin was": [65535, 0], "chin was propped": [65535, 0], "was propped on": [65535, 0], "propped on a": [65535, 0], "on a spreading": [65535, 0], "a spreading cravat": [65535, 0], "spreading cravat which": [65535, 0], "cravat which was": [65535, 0], "which was as": [65535, 0], "was as broad": [65535, 0], "as broad and": [65535, 0], "broad and as": [65535, 0], "and as long": [65535, 0], "long as a": [65535, 0], "as a bank": [65535, 0], "a bank note": [65535, 0], "bank note and": [65535, 0], "note and had": [65535, 0], "and had fringed": [65535, 0], "had fringed ends": [65535, 0], "fringed ends his": [65535, 0], "ends his boot": [65535, 0], "his boot toes": [65535, 0], "boot toes were": [65535, 0], "toes were turned": [65535, 0], "were turned sharply": [65535, 0], "turned sharply up": [65535, 0], "sharply up in": [65535, 0], "up in the": [65535, 0], "in the fashion": [65535, 0], "the fashion of": [65535, 0], "fashion of the": [65535, 0], "of the day": [32706, 32829], "the day like": [65535, 0], "day like sleigh": [65535, 0], "like sleigh runners": [65535, 0], "sleigh runners an": [65535, 0], "runners an effect": [65535, 0], "an effect patiently": [65535, 0], "effect patiently and": [65535, 0], "patiently and laboriously": [65535, 0], "and laboriously produced": [65535, 0], "laboriously produced by": [65535, 0], "produced by the": [65535, 0], "by the young": [65535, 0], "the young men": [65535, 0], "young men by": [65535, 0], "men by sitting": [65535, 0], "by sitting with": [65535, 0], "sitting with their": [65535, 0], "with their toes": [65535, 0], "their toes pressed": [65535, 0], "toes pressed against": [65535, 0], "pressed against a": [65535, 0], "against a wall": [65535, 0], "a wall for": [65535, 0], "wall for hours": [65535, 0], "for hours together": [65535, 0], "hours together mr": [65535, 0], "together mr walters": [65535, 0], "mr walters was": [65535, 0], "walters was very": [65535, 0], "was very earnest": [65535, 0], "very earnest of": [65535, 0], "earnest of mien": [65535, 0], "of mien and": [65535, 0], "mien and very": [65535, 0], "and very sincere": [65535, 0], "very sincere and": [65535, 0], "sincere and honest": [65535, 0], "and honest at": [65535, 0], "honest at heart": [65535, 0], "at heart and": [65535, 0], "heart and he": [65535, 0], "and he held": [65535, 0], "he held sacred": [65535, 0], "held sacred things": [65535, 0], "sacred things and": [65535, 0], "things and places": [65535, 0], "and places in": [65535, 0], "places in such": [65535, 0], "in such reverence": [65535, 0], "such reverence and": [65535, 0], "reverence and so": [65535, 0], "and so separated": [65535, 0], "so separated them": [65535, 0], "separated them from": [65535, 0], "them from worldly": [65535, 0], "from worldly matters": [65535, 0], "worldly matters that": [65535, 0], "matters that unconsciously": [65535, 0], "that unconsciously to": [65535, 0], "unconsciously to himself": [65535, 0], "to himself his": [65535, 0], "himself his sunday": [65535, 0], "his sunday school": [65535, 0], "sunday school voice": [65535, 0], "school voice had": [65535, 0], "voice had acquired": [65535, 0], "had acquired a": [65535, 0], "acquired a peculiar": [65535, 0], "a peculiar intonation": [65535, 0], "peculiar intonation which": [65535, 0], "intonation which was": [65535, 0], "which was wholly": [65535, 0], "was wholly absent": [65535, 0], "wholly absent on": [65535, 0], "absent on week": [65535, 0], "on week days": [65535, 0], "week days he": [65535, 0], "days he began": [65535, 0], "he began after": [65535, 0], "began after this": [65535, 0], "after this fashion": [65535, 0], "this fashion now": [65535, 0], "fashion now children": [65535, 0], "now children i": [65535, 0], "children i want": [65535, 0], "i want you": [65535, 0], "want you all": [65535, 0], "you all to": [65535, 0], "all to sit": [65535, 0], "to sit up": [65535, 0], "sit up just": [65535, 0], "up just as": [65535, 0], "just as straight": [65535, 0], "as straight and": [65535, 0], "straight and pretty": [65535, 0], "and pretty as": [65535, 0], "pretty as you": [65535, 0], "as you can": [65535, 0], "you can and": [65535, 0], "can and give": [65535, 0], "and give me": [65535, 0], "give me all": [65535, 0], "me all your": [65535, 0], "all your attention": [65535, 0], "your attention for": [65535, 0], "attention for a": [65535, 0], "minute or two": [65535, 0], "or two there": [65535, 0], "two there that": [65535, 0], "there that is": [65535, 0], "that is it": [65535, 0], "is it that": [65535, 0], "it that is": [65535, 0], "that is the": [32706, 32829], "is the way": [65535, 0], "the way good": [65535, 0], "way good little": [65535, 0], "good little boys": [65535, 0], "little boys and": [65535, 0], "and girls should": [65535, 0], "girls should do": [65535, 0], "should do i": [65535, 0], "do i see": [65535, 0], "i see one": [65535, 0], "see one little": [65535, 0], "one little girl": [65535, 0], "little girl who": [65535, 0], "girl who is": [65535, 0], "who is looking": [65535, 0], "is looking out": [65535, 0], "looking out of": [65535, 0], "the window i": [65535, 0], "window i am": [65535, 0], "i am afraid": [65535, 0], "am afraid she": [65535, 0], "afraid she thinks": [65535, 0], "she thinks i": [65535, 0], "thinks i am": [65535, 0], "i am out": [65535, 0], "am out there": [65535, 0], "out there somewhere": [65535, 0], "there somewhere perhaps": [65535, 0], "somewhere perhaps up": [65535, 0], "perhaps up in": [65535, 0], "up in one": [65535, 0], "in one of": [65535, 0], "one of the": [32706, 32829], "of the trees": [65535, 0], "the trees making": [65535, 0], "trees making a": [65535, 0], "making a speech": [65535, 0], "a speech to": [65535, 0], "speech to the": [65535, 0], "to the little": [65535, 0], "the little birds": [65535, 0], "little birds applausive": [65535, 0], "birds applausive titter": [65535, 0], "applausive titter i": [65535, 0], "titter i want": [65535, 0], "i want to": [65535, 0], "want to tell": [65535, 0], "to tell you": [65535, 0], "tell you how": [65535, 0], "you how good": [65535, 0], "how good it": [65535, 0], "good it makes": [65535, 0], "it makes me": [65535, 0], "makes me feel": [65535, 0], "me feel to": [65535, 0], "feel to see": [65535, 0], "to see so": [65535, 0], "see so many": [65535, 0], "so many bright": [65535, 0], "many bright clean": [65535, 0], "bright clean little": [65535, 0], "clean little faces": [65535, 0], "little faces assembled": [65535, 0], "faces assembled in": [65535, 0], "assembled in a": [65535, 0], "in a place": [65535, 0], "a place like": [65535, 0], "place like this": [65535, 0], "like this learning": [65535, 0], "this learning to": [65535, 0], "learning to do": [65535, 0], "to do right": [65535, 0], "do right and": [65535, 0], "right and be": [65535, 0], "and be good": [65535, 0], "be good and": [65535, 0], "good and so": [65535, 0], "and so forth": [65535, 0], "so forth and": [65535, 0], "forth and so": [65535, 0], "so on it": [65535, 0], "on it is": [65535, 0], "it is not": [43635, 21900], "is not necessary": [65535, 0], "not necessary to": [65535, 0], "necessary to set": [65535, 0], "to set down": [65535, 0], "set down the": [65535, 0], "down the rest": [65535, 0], "of the oration": [65535, 0], "the oration it": [65535, 0], "oration it was": [65535, 0], "it was of": [65535, 0], "was of a": [65535, 0], "a pattern which": [65535, 0], "pattern which does": [65535, 0], "which does not": [65535, 0], "does not vary": [65535, 0], "not vary and": [65535, 0], "vary and so": [65535, 0], "and so it": [65535, 0], "so it is": [65535, 0], "it is familiar": [65535, 0], "is familiar to": [65535, 0], "familiar to us": [65535, 0], "to us all": [65535, 0], "us all the": [65535, 0], "all the latter": [65535, 0], "the latter third": [65535, 0], "latter third of": [65535, 0], "third of the": [65535, 0], "of the speech": [65535, 0], "the speech was": [65535, 0], "speech was marred": [65535, 0], "was marred by": [65535, 0], "marred by the": [65535, 0], "by the resumption": [65535, 0], "the resumption of": [65535, 0], "resumption of fights": [65535, 0], "of fights and": [65535, 0], "fights and other": [65535, 0], "and other recreations": [65535, 0], "other recreations among": [65535, 0], "recreations among certain": [65535, 0], "among certain of": [65535, 0], "certain of the": [65535, 0], "of the bad": [65535, 0], "the bad boys": [65535, 0], "bad boys and": [65535, 0], "boys and by": [65535, 0], "and by fidgetings": [65535, 0], "by fidgetings and": [65535, 0], "fidgetings and whisperings": [65535, 0], "and whisperings that": [65535, 0], "whisperings that extended": [65535, 0], "that extended far": [65535, 0], "extended far and": [65535, 0], "far and wide": [65535, 0], "and wide washing": [65535, 0], "wide washing even": [65535, 0], "washing even to": [65535, 0], "even to the": [65535, 0], "to the bases": [65535, 0], "the bases of": [65535, 0], "bases of isolated": [65535, 0], "of isolated and": [65535, 0], "isolated and incorruptible": [65535, 0], "and incorruptible rocks": [65535, 0], "incorruptible rocks like": [65535, 0], "rocks like sid": [65535, 0], "like sid and": [65535, 0], "and mary but": [65535, 0], "mary but now": [65535, 0], "but now every": [65535, 0], "now every sound": [65535, 0], "every sound ceased": [65535, 0], "sound ceased suddenly": [65535, 0], "ceased suddenly with": [65535, 0], "suddenly with the": [65535, 0], "with the subsidence": [65535, 0], "the subsidence of": [65535, 0], "subsidence of mr": [65535, 0], "of mr walters'": [65535, 0], "mr walters' voice": [65535, 0], "walters' voice and": [65535, 0], "voice and the": [65535, 0], "and the conclusion": [65535, 0], "the conclusion of": [65535, 0], "conclusion of the": [65535, 0], "speech was received": [65535, 0], "was received with": [65535, 0], "with a burst": [65535, 0], "a burst of": [65535, 0], "burst of silent": [65535, 0], "of silent gratitude": [65535, 0], "silent gratitude a": [65535, 0], "gratitude a good": [65535, 0], "a good part": [65535, 0], "good part of": [65535, 0], "of the whispering": [65535, 0], "the whispering had": [65535, 0], "whispering had been": [65535, 0], "had been occasioned": [65535, 0], "been occasioned by": [65535, 0], "occasioned by an": [65535, 0], "by an event": [65535, 0], "an event which": [65535, 0], "event which was": [65535, 0], "which was more": [65535, 0], "was more or": [65535, 0], "more or less": [65535, 0], "or less rare": [65535, 0], "less rare the": [65535, 0], "rare the entrance": [65535, 0], "the entrance of": [65535, 0], "entrance of visitors": [65535, 0], "of visitors lawyer": [65535, 0], "visitors lawyer thatcher": [65535, 0], "lawyer thatcher accompanied": [65535, 0], "thatcher accompanied by": [65535, 0], "accompanied by a": [65535, 0], "by a very": [65535, 0], "a very feeble": [65535, 0], "very feeble and": [65535, 0], "feeble and aged": [65535, 0], "and aged man": [65535, 0], "aged man a": [65535, 0], "man a fine": [65535, 0], "a fine portly": [65535, 0], "fine portly middle": [65535, 0], "portly middle aged": [65535, 0], "middle aged gentleman": [65535, 0], "aged gentleman with": [65535, 0], "gentleman with iron": [65535, 0], "with iron gray": [65535, 0], "iron gray hair": [65535, 0], "gray hair and": [65535, 0], "hair and a": [65535, 0], "and a dignified": [65535, 0], "a dignified lady": [65535, 0], "dignified lady who": [65535, 0], "lady who was": [65535, 0], "who was doubtless": [65535, 0], "was doubtless the": [65535, 0], "doubtless the latter's": [65535, 0], "the latter's wife": [65535, 0], "latter's wife the": [65535, 0], "wife the lady": [65535, 0], "the lady was": [65535, 0], "lady was leading": [65535, 0], "was leading a": [65535, 0], "leading a child": [65535, 0], "a child tom": [65535, 0], "child tom had": [65535, 0], "tom had been": [65535, 0], "had been restless": [65535, 0], "been restless and": [65535, 0], "restless and full": [65535, 0], "full of chafings": [65535, 0], "of chafings and": [65535, 0], "chafings and repinings": [65535, 0], "and repinings conscience": [65535, 0], "repinings conscience smitten": [65535, 0], "conscience smitten too": [65535, 0], "smitten too he": [65535, 0], "too he could": [65535, 0], "he could not": [65535, 0], "could not meet": [65535, 0], "not meet amy": [65535, 0], "meet amy lawrence's": [65535, 0], "amy lawrence's eye": [65535, 0], "lawrence's eye he": [65535, 0], "eye he could": [65535, 0], "could not brook": [65535, 0], "not brook her": [65535, 0], "brook her loving": [65535, 0], "her loving gaze": [65535, 0], "loving gaze but": [65535, 0], "gaze but when": [65535, 0], "he saw this": [65535, 0], "saw this small": [65535, 0], "this small new": [65535, 0], "small new comer": [65535, 0], "new comer his": [65535, 0], "comer his soul": [65535, 0], "his soul was": [65535, 0], "soul was all": [65535, 0], "was all ablaze": [65535, 0], "all ablaze with": [65535, 0], "ablaze with bliss": [65535, 0], "with bliss in": [65535, 0], "bliss in a": [65535, 0], "in a moment": [65535, 0], "a moment the": [65535, 0], "moment the next": [65535, 0], "the next moment": [65535, 0], "next moment he": [65535, 0], "he was showing": [65535, 0], "was showing off": [65535, 0], "showing off with": [65535, 0], "off with all": [65535, 0], "with all his": [65535, 0], "all his might": [65535, 0], "his might cuffing": [65535, 0], "might cuffing boys": [65535, 0], "cuffing boys pulling": [65535, 0], "boys pulling hair": [65535, 0], "pulling hair making": [65535, 0], "hair making faces": [65535, 0], "making faces in": [65535, 0], "faces in a": [65535, 0], "a word using": [65535, 0], "word using every": [65535, 0], "using every art": [65535, 0], "every art that": [65535, 0], "art that seemed": [65535, 0], "that seemed likely": [65535, 0], "seemed likely to": [65535, 0], "likely to fascinate": [65535, 0], "to fascinate a": [65535, 0], "fascinate a girl": [65535, 0], "a girl and": [65535, 0], "girl and win": [65535, 0], "and win her": [65535, 0], "win her applause": [65535, 0], "her applause his": [65535, 0], "applause his exaltation": [65535, 0], "his exaltation had": [65535, 0], "exaltation had but": [65535, 0], "but one alloy": [65535, 0], "one alloy the": [65535, 0], "alloy the memory": [65535, 0], "the memory of": [65535, 0], "memory of his": [65535, 0], "of his humiliation": [65535, 0], "his humiliation in": [65535, 0], "humiliation in this": [65535, 0], "in this angel's": [65535, 0], "this angel's garden": [65535, 0], "angel's garden and": [65535, 0], "garden and that": [65535, 0], "and that record": [65535, 0], "that record in": [65535, 0], "record in sand": [65535, 0], "in sand was": [65535, 0], "sand was fast": [65535, 0], "was fast washing": [65535, 0], "fast washing out": [65535, 0], "washing out under": [65535, 0], "out under the": [65535, 0], "under the waves": [65535, 0], "the waves of": [65535, 0], "waves of happiness": [65535, 0], "of happiness that": [65535, 0], "happiness that were": [65535, 0], "that were sweeping": [65535, 0], "were sweeping over": [65535, 0], "sweeping over it": [65535, 0], "over it now": [65535, 0], "it now the": [65535, 0], "now the visitors": [65535, 0], "the visitors were": [65535, 0], "visitors were given": [65535, 0], "were given the": [65535, 0], "given the highest": [65535, 0], "the highest seat": [65535, 0], "highest seat of": [65535, 0], "seat of honor": [65535, 0], "of honor and": [65535, 0], "honor and as": [65535, 0], "soon as mr": [65535, 0], "as mr walters'": [65535, 0], "mr walters' speech": [65535, 0], "walters' speech was": [65535, 0], "speech was finished": [65535, 0], "was finished he": [65535, 0], "finished he introduced": [65535, 0], "he introduced them": [65535, 0], "introduced them to": [65535, 0], "to the school": [65535, 0], "the school the": [65535, 0], "school the middle": [65535, 0], "the middle aged": [65535, 0], "middle aged man": [65535, 0], "aged man turned": [65535, 0], "man turned out": [65535, 0], "turned out to": [65535, 0], "out to be": [65535, 0], "to be a": [32706, 32829], "be a prodigious": [65535, 0], "a prodigious personage": [65535, 0], "prodigious personage no": [65535, 0], "personage no less": [65535, 0], "no less a": [65535, 0], "less a one": [65535, 0], "a one than": [65535, 0], "one than the": [65535, 0], "than the county": [65535, 0], "the county judge": [65535, 0], "county judge altogether": [65535, 0], "judge altogether the": [65535, 0], "altogether the most": [65535, 0], "the most august": [65535, 0], "most august creation": [65535, 0], "august creation these": [65535, 0], "creation these children": [65535, 0], "these children had": [65535, 0], "children had ever": [65535, 0], "had ever looked": [65535, 0], "ever looked upon": [65535, 0], "looked upon and": [65535, 0], "upon and they": [65535, 0], "and they wondered": [65535, 0], "they wondered what": [65535, 0], "wondered what kind": [65535, 0], "what kind of": [65535, 0], "kind of material": [65535, 0], "of material he": [65535, 0], "material he was": [65535, 0], "he was made": [65535, 0], "was made of": [65535, 0], "made of and": [65535, 0], "of and they": [65535, 0], "and they half": [65535, 0], "they half wanted": [65535, 0], "half wanted to": [65535, 0], "wanted to hear": [65535, 0], "hear him roar": [65535, 0], "him roar and": [65535, 0], "roar and were": [65535, 0], "and were half": [65535, 0], "were half afraid": [65535, 0], "half afraid he": [65535, 0], "afraid he might": [65535, 0], "he might too": [65535, 0], "might too he": [65535, 0], "too he was": [65535, 0], "he was from": [65535, 0], "was from constantinople": [65535, 0], "from constantinople twelve": [65535, 0], "constantinople twelve miles": [65535, 0], "twelve miles away": [65535, 0], "miles away so": [65535, 0], "he had travelled": [65535, 0], "had travelled and": [65535, 0], "travelled and seen": [65535, 0], "and seen the": [65535, 0], "seen the world": [65535, 0], "the world these": [65535, 0], "world these very": [65535, 0], "these very eyes": [65535, 0], "very eyes had": [65535, 0], "eyes had looked": [65535, 0], "had looked upon": [65535, 0], "looked upon the": [65535, 0], "upon the county": [65535, 0], "the county court": [65535, 0], "county court house": [65535, 0], "court house which": [65535, 0], "house which was": [65535, 0], "which was said": [65535, 0], "was said to": [65535, 0], "said to have": [65535, 0], "to have a": [65535, 0], "have a tin": [65535, 0], "a tin roof": [65535, 0], "tin roof the": [65535, 0], "roof the awe": [65535, 0], "the awe which": [65535, 0], "awe which these": [65535, 0], "which these reflections": [65535, 0], "these reflections inspired": [65535, 0], "reflections inspired was": [65535, 0], "inspired was attested": [65535, 0], "was attested by": [65535, 0], "attested by the": [65535, 0], "by the impressive": [65535, 0], "the impressive silence": [65535, 0], "impressive silence and": [65535, 0], "silence and the": [65535, 0], "and the ranks": [65535, 0], "the ranks of": [65535, 0], "ranks of staring": [65535, 0], "of staring eyes": [65535, 0], "staring eyes this": [65535, 0], "eyes this was": [65535, 0], "this was the": [65535, 0], "was the great": [65535, 0], "the great judge": [65535, 0], "great judge thatcher": [65535, 0], "judge thatcher brother": [65535, 0], "thatcher brother of": [65535, 0], "brother of their": [65535, 0], "of their own": [65535, 0], "their own lawyer": [65535, 0], "own lawyer jeff": [65535, 0], "lawyer jeff thatcher": [65535, 0], "jeff thatcher immediately": [65535, 0], "thatcher immediately went": [65535, 0], "immediately went forward": [65535, 0], "went forward to": [65535, 0], "forward to be": [65535, 0], "to be familiar": [65535, 0], "be familiar with": [65535, 0], "familiar with the": [65535, 0], "with the great": [65535, 0], "the great man": [65535, 0], "great man and": [65535, 0], "man and be": [65535, 0], "and be envied": [65535, 0], "be envied by": [65535, 0], "envied by the": [65535, 0], "by the school": [65535, 0], "the school it": [65535, 0], "school it would": [65535, 0], "it would have": [65535, 0], "would have been": [65535, 0], "have been music": [65535, 0], "been music to": [65535, 0], "music to his": [65535, 0], "to his soul": [65535, 0], "his soul to": [65535, 0], "soul to hear": [65535, 0], "to hear the": [65535, 0], "hear the whisperings": [65535, 0], "the whisperings look": [65535, 0], "whisperings look at": [65535, 0], "look at him": [65535, 0], "at him jim": [65535, 0], "him jim he's": [65535, 0], "jim he's a": [65535, 0], "he's a going": [65535, 0], "a going up": [65535, 0], "going up there": [65535, 0], "up there say": [65535, 0], "there say look": [65535, 0], "say look he's": [65535, 0], "look he's a": [65535, 0], "going to shake": [65535, 0], "to shake hands": [65535, 0], "shake hands with": [65535, 0], "hands with him": [65535, 0], "him he is": [65535, 0], "he is shaking": [65535, 0], "is shaking hands": [65535, 0], "shaking hands with": [65535, 0], "with him by": [65535, 0], "him by jings": [65535, 0], "by jings don't": [65535, 0], "jings don't you": [65535, 0], "wish you was": [65535, 0], "you was jeff": [65535, 0], "was jeff mr": [65535, 0], "jeff mr walters": [65535, 0], "mr walters fell": [65535, 0], "walters fell to": [65535, 0], "fell to showing": [65535, 0], "to showing off": [65535, 0], "with all sorts": [65535, 0], "sorts of official": [65535, 0], "of official bustlings": [65535, 0], "official bustlings and": [65535, 0], "bustlings and activities": [65535, 0], "and activities giving": [65535, 0], "activities giving orders": [65535, 0], "giving orders delivering": [65535, 0], "orders delivering judgments": [65535, 0], "delivering judgments discharging": [65535, 0], "judgments discharging directions": [65535, 0], "discharging directions here": [65535, 0], "directions here there": [65535, 0], "here there everywhere": [65535, 0], "there everywhere that": [65535, 0], "everywhere that he": [65535, 0], "that he could": [65535, 0], "could find a": [65535, 0], "find a target": [65535, 0], "a target the": [65535, 0], "target the librarian": [65535, 0], "the librarian showed": [65535, 0], "librarian showed off": [65535, 0], "showed off running": [65535, 0], "off running hither": [65535, 0], "running hither and": [65535, 0], "hither and thither": [65535, 0], "and thither with": [65535, 0], "thither with his": [65535, 0], "his arms full": [65535, 0], "arms full of": [65535, 0], "full of books": [65535, 0], "of books and": [65535, 0], "books and making": [65535, 0], "and making a": [65535, 0], "making a deal": [65535, 0], "a deal of": [65535, 0], "deal of the": [65535, 0], "of the splutter": [65535, 0], "the splutter and": [65535, 0], "splutter and fuss": [65535, 0], "and fuss that": [65535, 0], "fuss that insect": [65535, 0], "that insect authority": [65535, 0], "insect authority delights": [65535, 0], "authority delights in": [65535, 0], "delights in the": [65535, 0], "in the young": [65535, 0], "the young lady": [65535, 0], "young lady teachers": [65535, 0], "lady teachers showed": [65535, 0], "teachers showed off": [65535, 0], "showed off bending": [65535, 0], "off bending sweetly": [65535, 0], "bending sweetly over": [65535, 0], "sweetly over pupils": [65535, 0], "over pupils that": [65535, 0], "pupils that were": [65535, 0], "that were lately": [65535, 0], "were lately being": [65535, 0], "lately being boxed": [65535, 0], "being boxed lifting": [65535, 0], "boxed lifting pretty": [65535, 0], "lifting pretty warning": [65535, 0], "pretty warning fingers": [65535, 0], "warning fingers at": [65535, 0], "fingers at bad": [65535, 0], "at bad little": [65535, 0], "bad little boys": [65535, 0], "boys and patting": [65535, 0], "and patting good": [65535, 0], "patting good ones": [65535, 0], "good ones lovingly": [65535, 0], "ones lovingly the": [65535, 0], "lovingly the young": [65535, 0], "the young gentlemen": [65535, 0], "young gentlemen teachers": [65535, 0], "gentlemen teachers showed": [65535, 0], "showed off with": [65535, 0], "off with small": [65535, 0], "with small scoldings": [65535, 0], "small scoldings and": [65535, 0], "scoldings and other": [65535, 0], "and other little": [65535, 0], "other little displays": [65535, 0], "little displays of": [65535, 0], "displays of authority": [65535, 0], "of authority and": [65535, 0], "authority and fine": [65535, 0], "and fine attention": [65535, 0], "fine attention to": [65535, 0], "attention to discipline": [65535, 0], "to discipline and": [65535, 0], "discipline and most": [65535, 0], "and most of": [65535, 0], "most of the": [65535, 0], "of the teachers": [65535, 0], "the teachers of": [65535, 0], "teachers of both": [65535, 0], "of both sexes": [65535, 0], "both sexes found": [65535, 0], "sexes found business": [65535, 0], "found business up": [65535, 0], "business up at": [65535, 0], "at the library": [65535, 0], "the library by": [65535, 0], "library by the": [65535, 0], "by the pulpit": [65535, 0], "the pulpit and": [65535, 0], "pulpit and it": [65535, 0], "it was business": [65535, 0], "was business that": [65535, 0], "business that frequently": [65535, 0], "that frequently had": [65535, 0], "frequently had to": [65535, 0], "be done over": [65535, 0], "done over again": [65535, 0], "over again two": [65535, 0], "again two or": [65535, 0], "or three times": [65535, 0], "three times with": [65535, 0], "times with much": [65535, 0], "with much seeming": [65535, 0], "much seeming vexation": [65535, 0], "seeming vexation the": [65535, 0], "vexation the little": [65535, 0], "the little girls": [65535, 0], "little girls showed": [65535, 0], "girls showed off": [65535, 0], "showed off in": [65535, 0], "off in various": [65535, 0], "in various ways": [65535, 0], "various ways and": [65535, 0], "ways and the": [65535, 0], "the little boys": [65535, 0], "little boys showed": [65535, 0], "boys showed off": [65535, 0], "off with such": [65535, 0], "with such diligence": [65535, 0], "such diligence that": [65535, 0], "diligence that the": [65535, 0], "that the air": [65535, 0], "the air was": [65535, 0], "air was thick": [65535, 0], "was thick with": [65535, 0], "thick with paper": [65535, 0], "with paper wads": [65535, 0], "paper wads and": [65535, 0], "wads and the": [65535, 0], "and the murmur": [65535, 0], "the murmur of": [65535, 0], "murmur of scufflings": [65535, 0], "of scufflings and": [65535, 0], "scufflings and above": [65535, 0], "above it all": [65535, 0], "it all the": [65535, 0], "all the great": [65535, 0], "great man sat": [65535, 0], "man sat and": [65535, 0], "sat and beamed": [65535, 0], "and beamed a": [65535, 0], "beamed a majestic": [65535, 0], "a majestic judicial": [65535, 0], "majestic judicial smile": [65535, 0], "judicial smile upon": [65535, 0], "smile upon all": [65535, 0], "upon all the": [65535, 0], "all the house": [65535, 0], "house and warmed": [65535, 0], "and warmed himself": [65535, 0], "warmed himself in": [65535, 0], "himself in the": [65535, 0], "the sun of": [65535, 0], "sun of his": [65535, 0], "of his own": [65535, 0], "his own grandeur": [65535, 0], "own grandeur for": [65535, 0], "grandeur for he": [65535, 0], "showing off too": [65535, 0], "off too there": [65535, 0], "too there was": [65535, 0], "there was only": [65535, 0], "was only one": [65535, 0], "only one thing": [65535, 0], "one thing wanting": [65535, 0], "thing wanting to": [65535, 0], "wanting to make": [65535, 0], "to make mr": [65535, 0], "make mr walters'": [65535, 0], "mr walters' ecstasy": [65535, 0], "walters' ecstasy complete": [65535, 0], "ecstasy complete and": [65535, 0], "complete and that": [65535, 0], "and that was": [65535, 0], "that was a": [65535, 0], "was a chance": [65535, 0], "chance to deliver": [65535, 0], "to deliver a": [65535, 0], "deliver a bible": [65535, 0], "a bible prize": [65535, 0], "bible prize and": [65535, 0], "prize and exhibit": [65535, 0], "and exhibit a": [65535, 0], "exhibit a prodigy": [65535, 0], "a prodigy several": [65535, 0], "prodigy several pupils": [65535, 0], "several pupils had": [65535, 0], "pupils had a": [65535, 0], "had a few": [65535, 0], "a few yellow": [65535, 0], "few yellow tickets": [65535, 0], "yellow tickets but": [65535, 0], "tickets but none": [65535, 0], "but none had": [65535, 0], "none had enough": [65535, 0], "had enough he": [65535, 0], "enough he had": [65535, 0], "had been around": [65535, 0], "been around among": [65535, 0], "around among the": [65535, 0], "among the star": [65535, 0], "the star pupils": [65535, 0], "star pupils inquiring": [65535, 0], "pupils inquiring he": [65535, 0], "inquiring he would": [65535, 0], "would have given": [65535, 0], "have given worlds": [65535, 0], "given worlds now": [65535, 0], "worlds now to": [65535, 0], "now to have": [65535, 0], "to have that": [65535, 0], "have that german": [65535, 0], "that german lad": [65535, 0], "german lad back": [65535, 0], "lad back again": [65535, 0], "back again with": [65535, 0], "again with a": [65535, 0], "with a sound": [65535, 0], "a sound mind": [65535, 0], "sound mind and": [65535, 0], "mind and now": [65535, 0], "and now at": [65535, 0], "now at this": [65535, 0], "at this moment": [65535, 0], "this moment when": [65535, 0], "moment when hope": [65535, 0], "when hope was": [65535, 0], "hope was dead": [65535, 0], "was dead tom": [65535, 0], "dead tom sawyer": [65535, 0], "tom sawyer came": [65535, 0], "sawyer came forward": [65535, 0], "came forward with": [65535, 0], "forward with nine": [65535, 0], "with nine yellow": [65535, 0], "nine yellow tickets": [65535, 0], "yellow tickets nine": [65535, 0], "tickets nine red": [65535, 0], "nine red tickets": [65535, 0], "tickets and ten": [65535, 0], "and ten blue": [65535, 0], "ten blue ones": [65535, 0], "blue ones and": [65535, 0], "ones and demanded": [65535, 0], "and demanded a": [65535, 0], "demanded a bible": [65535, 0], "a bible this": [65535, 0], "bible this was": [65535, 0], "this was a": [65535, 0], "was a thunderbolt": [65535, 0], "a thunderbolt out": [65535, 0], "thunderbolt out of": [65535, 0], "out of a": [65535, 0], "of a clear": [65535, 0], "a clear sky": [65535, 0], "clear sky walters": [65535, 0], "sky walters was": [65535, 0], "walters was not": [65535, 0], "was not expecting": [65535, 0], "not expecting an": [65535, 0], "expecting an application": [65535, 0], "an application from": [65535, 0], "application from this": [65535, 0], "from this source": [65535, 0], "this source for": [65535, 0], "source for the": [65535, 0], "for the next": [65535, 0], "the next ten": [65535, 0], "next ten years": [65535, 0], "ten years but": [65535, 0], "years but there": [65535, 0], "was no getting": [65535, 0], "no getting around": [65535, 0], "getting around it": [65535, 0], "around it here": [65535, 0], "it here were": [65535, 0], "here were the": [65535, 0], "were the certified": [65535, 0], "the certified checks": [65535, 0], "certified checks and": [65535, 0], "checks and they": [65535, 0], "they were good": [65535, 0], "were good for": [65535, 0], "good for their": [65535, 0], "for their face": [65535, 0], "their face tom": [65535, 0], "face tom was": [65535, 0], "tom was therefore": [65535, 0], "was therefore elevated": [65535, 0], "therefore elevated to": [65535, 0], "elevated to a": [65535, 0], "to a place": [65535, 0], "a place with": [65535, 0], "place with the": [65535, 0], "with the judge": [65535, 0], "the judge and": [65535, 0], "judge and the": [65535, 0], "the other elect": [65535, 0], "other elect and": [65535, 0], "elect and the": [65535, 0], "and the great": [65535, 0], "the great news": [65535, 0], "great news was": [65535, 0], "news was announced": [65535, 0], "was announced from": [65535, 0], "announced from headquarters": [65535, 0], "from headquarters it": [65535, 0], "headquarters it was": [65535, 0], "was the most": [65535, 0], "the most stunning": [65535, 0], "most stunning surprise": [65535, 0], "stunning surprise of": [65535, 0], "surprise of the": [65535, 0], "of the decade": [65535, 0], "the decade and": [65535, 0], "decade and so": [65535, 0], "and so profound": [65535, 0], "so profound was": [65535, 0], "profound was the": [65535, 0], "was the sensation": [65535, 0], "the sensation that": [65535, 0], "sensation that it": [65535, 0], "that it lifted": [65535, 0], "it lifted the": [65535, 0], "lifted the new": [65535, 0], "the new hero": [65535, 0], "new hero up": [65535, 0], "hero up to": [65535, 0], "up to the": [65535, 0], "to the judicial": [65535, 0], "the judicial one's": [65535, 0], "judicial one's altitude": [65535, 0], "one's altitude and": [65535, 0], "altitude and the": [65535, 0], "and the school": [65535, 0], "the school had": [65535, 0], "school had two": [65535, 0], "had two marvels": [65535, 0], "two marvels to": [65535, 0], "marvels to gaze": [65535, 0], "to gaze upon": [65535, 0], "gaze upon in": [65535, 0], "upon in place": [65535, 0], "in place of": [65535, 0], "place of one": [65535, 0], "of one the": [65535, 0], "one the boys": [65535, 0], "the boys were": [65535, 0], "boys were all": [65535, 0], "were all eaten": [65535, 0], "all eaten up": [65535, 0], "eaten up with": [65535, 0], "up with envy": [65535, 0], "with envy but": [65535, 0], "envy but those": [65535, 0], "but those that": [65535, 0], "those that suffered": [65535, 0], "that suffered the": [65535, 0], "suffered the bitterest": [65535, 0], "the bitterest pangs": [65535, 0], "bitterest pangs were": [65535, 0], "pangs were those": [65535, 0], "were those who": [65535, 0], "those who perceived": [65535, 0], "who perceived too": [65535, 0], "perceived too late": [65535, 0], "too late that": [65535, 0], "late that they": [65535, 0], "that they themselves": [65535, 0], "they themselves had": [65535, 0], "themselves had contributed": [65535, 0], "had contributed to": [65535, 0], "contributed to this": [65535, 0], "to this hated": [65535, 0], "this hated splendor": [65535, 0], "hated splendor by": [65535, 0], "splendor by trading": [65535, 0], "by trading tickets": [65535, 0], "trading tickets to": [65535, 0], "tickets to tom": [65535, 0], "to tom for": [65535, 0], "tom for the": [65535, 0], "for the wealth": [65535, 0], "the wealth he": [65535, 0], "he had amassed": [65535, 0], "had amassed in": [65535, 0], "amassed in selling": [65535, 0], "in selling whitewashing": [65535, 0], "selling whitewashing privileges": [65535, 0], "whitewashing privileges these": [65535, 0], "privileges these despised": [65535, 0], "these despised themselves": [65535, 0], "despised themselves as": [65535, 0], "themselves as being": [65535, 0], "as being the": [65535, 0], "being the dupes": [65535, 0], "the dupes of": [65535, 0], "dupes of a": [65535, 0], "of a wily": [65535, 0], "a wily fraud": [65535, 0], "wily fraud a": [65535, 0], "fraud a guileful": [65535, 0], "a guileful snake": [65535, 0], "guileful snake in": [65535, 0], "snake in the": [65535, 0], "in the grass": [65535, 0], "the grass the": [65535, 0], "grass the prize": [65535, 0], "the prize was": [65535, 0], "prize was delivered": [65535, 0], "was delivered to": [65535, 0], "delivered to tom": [65535, 0], "to tom with": [65535, 0], "tom with as": [65535, 0], "with as much": [65535, 0], "as much effusion": [65535, 0], "much effusion as": [65535, 0], "effusion as the": [65535, 0], "as the superintendent": [65535, 0], "the superintendent could": [65535, 0], "superintendent could pump": [65535, 0], "could pump up": [65535, 0], "pump up under": [65535, 0], "up under the": [65535, 0], "under the circumstances": [65535, 0], "the circumstances but": [65535, 0], "circumstances but it": [65535, 0], "but it lacked": [65535, 0], "it lacked somewhat": [65535, 0], "lacked somewhat of": [65535, 0], "somewhat of the": [65535, 0], "of the true": [65535, 0], "the true gush": [65535, 0], "true gush for": [65535, 0], "gush for the": [65535, 0], "for the poor": [65535, 0], "the poor fellow's": [65535, 0], "poor fellow's instinct": [65535, 0], "fellow's instinct taught": [65535, 0], "instinct taught him": [65535, 0], "taught him that": [65535, 0], "him that there": [65535, 0], "was a mystery": [65535, 0], "a mystery here": [65535, 0], "mystery here that": [65535, 0], "here that could": [65535, 0], "that could not": [65535, 0], "could not well": [65535, 0], "not well bear": [65535, 0], "well bear the": [65535, 0], "bear the light": [65535, 0], "the light perhaps": [65535, 0], "light perhaps it": [65535, 0], "perhaps it was": [65535, 0], "it was simply": [65535, 0], "was simply preposterous": [65535, 0], "simply preposterous that": [65535, 0], "preposterous that this": [65535, 0], "that this boy": [65535, 0], "this boy had": [65535, 0], "boy had warehoused": [65535, 0], "had warehoused two": [65535, 0], "warehoused two thousand": [65535, 0], "two thousand sheaves": [65535, 0], "thousand sheaves of": [65535, 0], "sheaves of scriptural": [65535, 0], "of scriptural wisdom": [65535, 0], "scriptural wisdom on": [65535, 0], "wisdom on his": [65535, 0], "on his premises": [65535, 0], "his premises a": [65535, 0], "premises a dozen": [65535, 0], "a dozen would": [65535, 0], "dozen would strain": [65535, 0], "would strain his": [65535, 0], "strain his capacity": [65535, 0], "his capacity without": [65535, 0], "capacity without a": [65535, 0], "without a doubt": [65535, 0], "a doubt amy": [65535, 0], "doubt amy lawrence": [65535, 0], "amy lawrence was": [65535, 0], "lawrence was proud": [65535, 0], "was proud and": [65535, 0], "proud and glad": [65535, 0], "and glad and": [65535, 0], "glad and she": [65535, 0], "and she tried": [65535, 0], "she tried to": [65535, 0], "tried to make": [65535, 0], "to make tom": [65535, 0], "make tom see": [65535, 0], "tom see it": [65535, 0], "see it in": [65535, 0], "it in her": [65535, 0], "in her face": [65535, 0], "her face but": [65535, 0], "face but he": [65535, 0], "but he wouldn't": [65535, 0], "he wouldn't look": [65535, 0], "wouldn't look she": [65535, 0], "look she wondered": [65535, 0], "she wondered then": [65535, 0], "wondered then she": [65535, 0], "then she was": [65535, 0], "she was just": [65535, 0], "was just a": [65535, 0], "just a grain": [65535, 0], "a grain troubled": [65535, 0], "grain troubled next": [65535, 0], "troubled next a": [65535, 0], "next a dim": [65535, 0], "a dim suspicion": [65535, 0], "dim suspicion came": [65535, 0], "suspicion came and": [65535, 0], "and went came": [65535, 0], "went came again": [65535, 0], "came again she": [65535, 0], "again she watched": [65535, 0], "she watched a": [65535, 0], "watched a furtive": [65535, 0], "a furtive glance": [65535, 0], "furtive glance told": [65535, 0], "glance told her": [65535, 0], "told her worlds": [65535, 0], "her worlds and": [65535, 0], "worlds and then": [65535, 0], "and then her": [65535, 0], "then her heart": [65535, 0], "her heart broke": [65535, 0], "heart broke and": [65535, 0], "broke and she": [65535, 0], "and she was": [65535, 0], "she was jealous": [65535, 0], "was jealous and": [65535, 0], "jealous and angry": [65535, 0], "and angry and": [65535, 0], "angry and the": [65535, 0], "and the tears": [65535, 0], "the tears came": [65535, 0], "tears came and": [65535, 0], "came and she": [65535, 0], "and she hated": [65535, 0], "she hated everybody": [65535, 0], "hated everybody tom": [65535, 0], "everybody tom most": [65535, 0], "tom most of": [65535, 0], "most of all": [65535, 0], "of all she": [65535, 0], "all she thought": [65535, 0], "she thought tom": [65535, 0], "thought tom was": [65535, 0], "tom was introduced": [65535, 0], "was introduced to": [65535, 0], "introduced to the": [65535, 0], "to the judge": [65535, 0], "the judge but": [65535, 0], "judge but his": [65535, 0], "but his tongue": [65535, 0], "his tongue was": [65535, 0], "tongue was tied": [65535, 0], "was tied his": [65535, 0], "tied his breath": [65535, 0], "his breath would": [65535, 0], "breath would hardly": [65535, 0], "would hardly come": [65535, 0], "hardly come his": [65535, 0], "come his heart": [65535, 0], "his heart quaked": [65535, 0], "heart quaked partly": [65535, 0], "quaked partly because": [65535, 0], "partly because of": [65535, 0], "because of the": [65535, 0], "of the awful": [65535, 0], "the awful greatness": [65535, 0], "awful greatness of": [65535, 0], "greatness of the": [65535, 0], "of the man": [65535, 0], "the man but": [65535, 0], "man but mainly": [65535, 0], "but mainly because": [65535, 0], "mainly because he": [65535, 0], "he was her": [65535, 0], "was her parent": [65535, 0], "her parent he": [65535, 0], "parent he would": [65535, 0], "would have liked": [65535, 0], "have liked to": [65535, 0], "liked to fall": [65535, 0], "to fall down": [65535, 0], "fall down and": [65535, 0], "down and worship": [65535, 0], "and worship him": [65535, 0], "worship him if": [65535, 0], "him if it": [65535, 0], "if it were": [32706, 32829], "it were in": [65535, 0], "were in the": [65535, 0], "the dark the": [65535, 0], "dark the judge": [65535, 0], "the judge put": [65535, 0], "judge put his": [65535, 0], "put his hand": [65535, 0], "his hand on": [65535, 0], "hand on tom's": [65535, 0], "on tom's head": [65535, 0], "tom's head and": [65535, 0], "head and called": [65535, 0], "and called him": [65535, 0], "called him a": [65535, 0], "him a fine": [65535, 0], "a fine little": [65535, 0], "fine little man": [65535, 0], "little man and": [65535, 0], "man and asked": [65535, 0], "and asked him": [65535, 0], "asked him what": [65535, 0], "him what his": [65535, 0], "what his name": [65535, 0], "name was the": [65535, 0], "was the boy": [65535, 0], "the boy stammered": [65535, 0], "boy stammered gasped": [65535, 0], "stammered gasped and": [65535, 0], "gasped and got": [65535, 0], "it out tom": [65535, 0], "out tom oh": [65535, 0], "tom oh no": [65535, 0], "oh no not": [65535, 0], "no not tom": [65535, 0], "not tom it": [65535, 0], "tom it is": [65535, 0], "it is thomas": [65535, 0], "is thomas ah": [65535, 0], "thomas ah that's": [65535, 0], "ah that's it": [65535, 0], "that's it i": [65535, 0], "it i thought": [65535, 0], "i thought there": [65535, 0], "thought there was": [65535, 0], "there was more": [65535, 0], "was more to": [65535, 0], "more to it": [65535, 0], "to it maybe": [65535, 0], "it maybe that's": [65535, 0], "maybe that's very": [65535, 0], "that's very well": [65535, 0], "very well but": [65535, 0], "well but you've": [65535, 0], "but you've another": [65535, 0], "you've another one": [65535, 0], "another one i": [65535, 0], "one i daresay": [65535, 0], "i daresay and": [65535, 0], "daresay and you'll": [65535, 0], "and you'll tell": [32706, 32829], "you'll tell it": [65535, 0], "tell it to": [65535, 0], "it to me": [65535, 0], "to me won't": [65535, 0], "me won't you": [65535, 0], "won't you tell": [65535, 0], "you tell the": [65535, 0], "tell the gentleman": [65535, 0], "the gentleman your": [65535, 0], "gentleman your other": [65535, 0], "your other name": [65535, 0], "other name thomas": [65535, 0], "name thomas said": [65535, 0], "thomas said walters": [65535, 0], "said walters and": [65535, 0], "walters and say": [65535, 0], "and say sir": [65535, 0], "say sir you": [65535, 0], "sir you mustn't": [65535, 0], "you mustn't forget": [65535, 0], "mustn't forget your": [65535, 0], "forget your manners": [65535, 0], "your manners thomas": [65535, 0], "manners thomas sawyer": [65535, 0], "thomas sawyer sir": [65535, 0], "sawyer sir that's": [65535, 0], "sir that's it": [65535, 0], "that's it that's": [65535, 0], "it that's a": [65535, 0], "good boy fine": [65535, 0], "boy fine boy": [65535, 0], "fine boy fine": [65535, 0], "boy fine manly": [65535, 0], "fine manly little": [65535, 0], "manly little fellow": [65535, 0], "little fellow two": [65535, 0], "fellow two thousand": [65535, 0], "thousand verses is": [65535, 0], "verses is a": [65535, 0], "is a great": [65535, 0], "great many very": [65535, 0], "many very very": [65535, 0], "very very great": [65535, 0], "very great many": [65535, 0], "great many and": [65535, 0], "many and you": [65535, 0], "and you never": [65535, 0], "you never can": [65535, 0], "never can be": [65535, 0], "can be sorry": [65535, 0], "be sorry for": [65535, 0], "sorry for the": [65535, 0], "for the trouble": [65535, 0], "the trouble you": [65535, 0], "trouble you took": [65535, 0], "you took to": [65535, 0], "took to learn": [65535, 0], "to learn them": [65535, 0], "learn them for": [65535, 0], "them for knowledge": [65535, 0], "for knowledge is": [65535, 0], "knowledge is worth": [65535, 0], "is worth more": [65535, 0], "worth more than": [65535, 0], "more than anything": [65535, 0], "than anything there": [65535, 0], "anything there is": [65535, 0], "there is in": [65535, 0], "is in the": [65535, 0], "in the world": [65535, 0], "the world it's": [65535, 0], "world it's what": [65535, 0], "it's what makes": [65535, 0], "what makes great": [65535, 0], "makes great men": [65535, 0], "great men and": [65535, 0], "men and good": [65535, 0], "and good men": [65535, 0], "good men you'll": [65535, 0], "men you'll be": [65535, 0], "you'll be a": [65535, 0], "be a great": [65535, 0], "a great man": [65535, 0], "and a good": [65535, 0], "a good man": [65535, 0], "good man yourself": [65535, 0], "man yourself some": [65535, 0], "yourself some day": [65535, 0], "some day thomas": [65535, 0], "day thomas and": [65535, 0], "thomas and then": [65535, 0], "and then you'll": [65535, 0], "then you'll look": [65535, 0], "you'll look back": [65535, 0], "look back and": [65535, 0], "back and say": [65535, 0], "and say it's": [65535, 0], "say it's all": [65535, 0], "it's all owing": [65535, 0], "all owing to": [65535, 0], "owing to the": [65535, 0], "to the precious": [65535, 0], "the precious sunday": [65535, 0], "precious sunday school": [65535, 0], "sunday school privileges": [65535, 0], "school privileges of": [65535, 0], "privileges of my": [65535, 0], "of my boyhood": [65535, 0], "my boyhood it's": [65535, 0], "boyhood it's all": [65535, 0], "owing to my": [65535, 0], "to my dear": [65535, 0], "my dear teachers": [65535, 0], "dear teachers that": [65535, 0], "teachers that taught": [65535, 0], "that taught me": [65535, 0], "taught me to": [65535, 0], "me to learn": [65535, 0], "to learn it's": [65535, 0], "learn it's all": [65535, 0], "to the good": [65535, 0], "the good superintendent": [65535, 0], "good superintendent who": [65535, 0], "superintendent who encouraged": [65535, 0], "who encouraged me": [65535, 0], "encouraged me and": [65535, 0], "me and watched": [65535, 0], "and watched over": [65535, 0], "watched over me": [65535, 0], "over me and": [65535, 0], "me and gave": [65535, 0], "and gave me": [65535, 0], "gave me a": [65535, 0], "me a beautiful": [65535, 0], "a beautiful bible": [65535, 0], "beautiful bible a": [65535, 0], "bible a splendid": [65535, 0], "a splendid elegant": [65535, 0], "splendid elegant bible": [65535, 0], "elegant bible to": [65535, 0], "bible to keep": [65535, 0], "to keep and": [65535, 0], "keep and have": [65535, 0], "and have it": [65535, 0], "have it all": [65535, 0], "it all for": [65535, 0], "all for my": [65535, 0], "for my own": [65535, 0], "my own always": [65535, 0], "own always it's": [65535, 0], "always it's all": [65535, 0], "owing to right": [65535, 0], "to right bringing": [65535, 0], "right bringing up": [65535, 0], "bringing up that": [65535, 0], "up that is": [65535, 0], "that is what": [65535, 0], "is what you": [65535, 0], "what you will": [32706, 32829], "you will say": [65535, 0], "will say thomas": [65535, 0], "say thomas and": [65535, 0], "thomas and you": [65535, 0], "and you wouldn't": [65535, 0], "you wouldn't take": [65535, 0], "wouldn't take any": [65535, 0], "take any money": [65535, 0], "any money for": [65535, 0], "money for those": [65535, 0], "for those two": [65535, 0], "those two thousand": [65535, 0], "thousand verses no": [65535, 0], "verses no indeed": [65535, 0], "no indeed you": [65535, 0], "indeed you wouldn't": [65535, 0], "you wouldn't and": [65535, 0], "wouldn't and now": [65535, 0], "and now you": [65535, 0], "now you wouldn't": [65535, 0], "you wouldn't mind": [65535, 0], "wouldn't mind telling": [65535, 0], "mind telling me": [65535, 0], "telling me and": [65535, 0], "me and this": [32706, 32829], "and this lady": [65535, 0], "this lady some": [65535, 0], "lady some of": [65535, 0], "some of the": [65535, 0], "of the things": [65535, 0], "the things you've": [65535, 0], "things you've learned": [65535, 0], "you've learned no": [65535, 0], "learned no i": [65535, 0], "no i know": [65535, 0], "i know you": [32706, 32829], "know you wouldn't": [65535, 0], "you wouldn't for": [65535, 0], "wouldn't for we": [65535, 0], "for we are": [65535, 0], "we are proud": [65535, 0], "are proud of": [65535, 0], "proud of little": [65535, 0], "of little boys": [65535, 0], "little boys that": [65535, 0], "boys that learn": [65535, 0], "that learn now": [65535, 0], "learn now no": [65535, 0], "now no doubt": [65535, 0], "no doubt you": [65535, 0], "doubt you know": [65535, 0], "you know the": [65535, 0], "know the names": [65535, 0], "the names of": [65535, 0], "names of all": [65535, 0], "all the twelve": [65535, 0], "the twelve disciples": [65535, 0], "twelve disciples won't": [65535, 0], "disciples won't you": [65535, 0], "you tell us": [65535, 0], "tell us the": [65535, 0], "us the names": [65535, 0], "names of the": [65535, 0], "of the first": [65535, 0], "the first two": [65535, 0], "first two that": [65535, 0], "two that were": [65535, 0], "that were appointed": [65535, 0], "were appointed tom": [65535, 0], "appointed tom was": [65535, 0], "tom was tugging": [65535, 0], "was tugging at": [65535, 0], "tugging at a": [65535, 0], "at a button": [65535, 0], "a button hole": [65535, 0], "button hole and": [65535, 0], "hole and looking": [65535, 0], "and looking sheepish": [65535, 0], "looking sheepish he": [65535, 0], "sheepish he blushed": [65535, 0], "he blushed now": [65535, 0], "blushed now and": [65535, 0], "now and his": [65535, 0], "and his eyes": [65535, 0], "his eyes fell": [65535, 0], "eyes fell mr": [65535, 0], "fell mr walters'": [65535, 0], "mr walters' heart": [65535, 0], "walters' heart sank": [65535, 0], "heart sank within": [65535, 0], "sank within him": [65535, 0], "within him he": [65535, 0], "him he said": [65535, 0], "to himself it": [65535, 0], "himself it is": [65535, 0], "is not possible": [65535, 0], "not possible that": [65535, 0], "possible that the": [65535, 0], "that the boy": [65535, 0], "the boy can": [65535, 0], "boy can answer": [65535, 0], "can answer the": [65535, 0], "answer the simplest": [65535, 0], "the simplest question": [65535, 0], "simplest question why": [65535, 0], "question why did": [65535, 0], "why did the": [65535, 0], "did the judge": [65535, 0], "the judge ask": [65535, 0], "judge ask him": [65535, 0], "ask him yet": [65535, 0], "him yet he": [65535, 0], "yet he felt": [65535, 0], "he felt obliged": [65535, 0], "felt obliged to": [65535, 0], "obliged to speak": [65535, 0], "to speak up": [65535, 0], "speak up and": [65535, 0], "up and say": [65535, 0], "and say answer": [65535, 0], "say answer the": [65535, 0], "answer the gentleman": [65535, 0], "the gentleman thomas": [65535, 0], "gentleman thomas don't": [65535, 0], "thomas don't be": [65535, 0], "don't be afraid": [65535, 0], "be afraid tom": [65535, 0], "afraid tom still": [65535, 0], "tom still hung": [65535, 0], "still hung fire": [65535, 0], "hung fire now": [65535, 0], "fire now i": [65535, 0], "now i know": [65535, 0], "i know you'll": [65535, 0], "know you'll tell": [65535, 0], "you'll tell me": [32706, 32829], "tell me said": [65535, 0], "me said the": [65535, 0], "said the lady": [65535, 0], "the lady the": [65535, 0], "lady the names": [65535, 0], "first two disciples": [65535, 0], "two disciples were": [65535, 0], "disciples were david": [65535, 0], "were david and": [65535, 0], "david and goliath": [65535, 0], "and goliath let": [65535, 0], "goliath let us": [65535, 0], "let us draw": [65535, 0], "us draw the": [65535, 0], "draw the curtain": [65535, 0], "the curtain of": [65535, 0], "curtain of charity": [65535, 0], "of charity over": [65535, 0], "charity over the": [65535, 0], "over the rest": [65535, 0], "of the scene": [65535, 0], "the sun rose upon": [65535, 0], "sun rose upon a": [65535, 0], "rose upon a tranquil": [65535, 0], "upon a tranquil world": [65535, 0], "a tranquil world and": [65535, 0], "tranquil world and beamed": [65535, 0], "world and beamed down": [65535, 0], "and beamed down upon": [65535, 0], "beamed down upon the": [65535, 0], "down upon the peaceful": [65535, 0], "upon the peaceful village": [65535, 0], "the peaceful village like": [65535, 0], "peaceful village like a": [65535, 0], "village like a benediction": [65535, 0], "like a benediction breakfast": [65535, 0], "a benediction breakfast over": [65535, 0], "benediction breakfast over aunt": [65535, 0], "breakfast over aunt polly": [65535, 0], "over aunt polly had": [65535, 0], "aunt polly had family": [65535, 0], "polly had family worship": [65535, 0], "had family worship it": [65535, 0], "family worship it began": [65535, 0], "worship it began with": [65535, 0], "it began with a": [65535, 0], "began with a prayer": [65535, 0], "with a prayer built": [65535, 0], "a prayer built from": [65535, 0], "prayer built from the": [65535, 0], "built from the ground": [65535, 0], "from the ground up": [65535, 0], "the ground up of": [65535, 0], "ground up of solid": [65535, 0], "up of solid courses": [65535, 0], "of solid courses of": [65535, 0], "solid courses of scriptural": [65535, 0], "courses of scriptural quotations": [65535, 0], "of scriptural quotations welded": [65535, 0], "scriptural quotations welded together": [65535, 0], "quotations welded together with": [65535, 0], "welded together with a": [65535, 0], "together with a thin": [65535, 0], "with a thin mortar": [65535, 0], "a thin mortar of": [65535, 0], "thin mortar of originality": [65535, 0], "mortar of originality and": [65535, 0], "of originality and from": [65535, 0], "originality and from the": [65535, 0], "and from the summit": [65535, 0], "from the summit of": [65535, 0], "the summit of this": [65535, 0], "summit of this she": [65535, 0], "of this she delivered": [65535, 0], "this she delivered a": [65535, 0], "she delivered a grim": [65535, 0], "delivered a grim chapter": [65535, 0], "a grim chapter of": [65535, 0], "grim chapter of the": [65535, 0], "chapter of the mosaic": [65535, 0], "of the mosaic law": [65535, 0], "the mosaic law as": [65535, 0], "mosaic law as from": [65535, 0], "law as from sinai": [65535, 0], "as from sinai then": [65535, 0], "from sinai then tom": [65535, 0], "sinai then tom girded": [65535, 0], "then tom girded up": [65535, 0], "tom girded up his": [65535, 0], "girded up his loins": [65535, 0], "up his loins so": [65535, 0], "his loins so to": [65535, 0], "loins so to speak": [65535, 0], "so to speak and": [65535, 0], "to speak and went": [65535, 0], "speak and went to": [65535, 0], "and went to work": [65535, 0], "went to work to": [65535, 0], "to work to get": [65535, 0], "work to get his": [65535, 0], "to get his verses": [65535, 0], "get his verses sid": [65535, 0], "his verses sid had": [65535, 0], "verses sid had learned": [65535, 0], "sid had learned his": [65535, 0], "had learned his lesson": [65535, 0], "learned his lesson days": [65535, 0], "his lesson days before": [65535, 0], "lesson days before tom": [65535, 0], "days before tom bent": [65535, 0], "before tom bent all": [65535, 0], "tom bent all his": [65535, 0], "bent all his energies": [65535, 0], "all his energies to": [65535, 0], "his energies to the": [65535, 0], "energies to the memorizing": [65535, 0], "to the memorizing of": [65535, 0], "the memorizing of five": [65535, 0], "memorizing of five verses": [65535, 0], "of five verses and": [65535, 0], "five verses and he": [65535, 0], "verses and he chose": [65535, 0], "and he chose part": [65535, 0], "he chose part of": [65535, 0], "chose part of the": [65535, 0], "part of the sermon": [65535, 0], "of the sermon on": [65535, 0], "the sermon on the": [65535, 0], "sermon on the mount": [65535, 0], "on the mount because": [65535, 0], "the mount because he": [65535, 0], "mount because he could": [65535, 0], "because he could find": [65535, 0], "he could find no": [65535, 0], "could find no verses": [65535, 0], "find no verses that": [65535, 0], "no verses that were": [65535, 0], "verses that were shorter": [65535, 0], "that were shorter at": [65535, 0], "were shorter at the": [65535, 0], "shorter at the end": [65535, 0], "at the end of": [65535, 0], "the end of half": [65535, 0], "end of half an": [65535, 0], "of half an hour": [65535, 0], "half an hour tom": [65535, 0], "an hour tom had": [65535, 0], "hour tom had a": [65535, 0], "tom had a vague": [65535, 0], "had a vague general": [65535, 0], "a vague general idea": [65535, 0], "vague general idea of": [65535, 0], "general idea of his": [65535, 0], "idea of his lesson": [65535, 0], "of his lesson but": [65535, 0], "his lesson but no": [65535, 0], "lesson but no more": [65535, 0], "but no more for": [65535, 0], "no more for his": [65535, 0], "more for his mind": [65535, 0], "for his mind was": [65535, 0], "his mind was traversing": [65535, 0], "mind was traversing the": [65535, 0], "was traversing the whole": [65535, 0], "traversing the whole field": [65535, 0], "the whole field of": [65535, 0], "whole field of human": [65535, 0], "field of human thought": [65535, 0], "of human thought and": [65535, 0], "human thought and his": [65535, 0], "thought and his hands": [65535, 0], "and his hands were": [65535, 0], "his hands were busy": [65535, 0], "hands were busy with": [65535, 0], "were busy with distracting": [65535, 0], "busy with distracting recreations": [65535, 0], "with distracting recreations mary": [65535, 0], "distracting recreations mary took": [65535, 0], "recreations mary took his": [65535, 0], "mary took his book": [65535, 0], "took his book to": [65535, 0], "his book to hear": [65535, 0], "book to hear him": [65535, 0], "to hear him recite": [65535, 0], "hear him recite and": [65535, 0], "him recite and he": [65535, 0], "recite and he tried": [65535, 0], "and he tried to": [65535, 0], "he tried to find": [65535, 0], "tried to find his": [65535, 0], "to find his way": [65535, 0], "find his way through": [65535, 0], "his way through the": [65535, 0], "way through the fog": [65535, 0], "through the fog blessed": [65535, 0], "the fog blessed are": [65535, 0], "fog blessed are the": [65535, 0], "blessed are the a": [65535, 0], "are the a a": [65535, 0], "the a a poor": [65535, 0], "a a poor yes": [65535, 0], "a poor yes poor": [65535, 0], "poor yes poor blessed": [65535, 0], "yes poor blessed are": [65535, 0], "poor blessed are the": [65535, 0], "blessed are the poor": [65535, 0], "are the poor a": [65535, 0], "the poor a a": [65535, 0], "poor a a in": [65535, 0], "a a in spirit": [65535, 0], "a in spirit in": [65535, 0], "in spirit in spirit": [65535, 0], "spirit in spirit blessed": [65535, 0], "in spirit blessed are": [65535, 0], "spirit blessed are the": [65535, 0], "are the poor in": [65535, 0], "the poor in spirit": [65535, 0], "poor in spirit for": [65535, 0], "in spirit for they": [65535, 0], "spirit for they they": [65535, 0], "for they they theirs": [65535, 0], "they they theirs for": [65535, 0], "they theirs for theirs": [65535, 0], "theirs for theirs blessed": [65535, 0], "for theirs blessed are": [65535, 0], "theirs blessed are the": [65535, 0], "in spirit for theirs": [65535, 0], "spirit for theirs is": [65535, 0], "for theirs is the": [65535, 0], "theirs is the kingdom": [65535, 0], "is the kingdom of": [65535, 0], "the kingdom of heaven": [65535, 0], "kingdom of heaven blessed": [65535, 0], "of heaven blessed are": [65535, 0], "heaven blessed are they": [65535, 0], "blessed are they that": [65535, 0], "are they that mourn": [65535, 0], "they that mourn for": [65535, 0], "that mourn for they": [65535, 0], "mourn for they they": [65535, 0], "for they they sh": [65535, 0], "they they sh for": [65535, 0], "they sh for they": [65535, 0], "sh for they a": [65535, 0], "for they a s": [65535, 0], "they a s h": [65535, 0], "a s h a": [65535, 0], "s h a for": [65535, 0], "h a for they": [65535, 0], "a for they s": [65535, 0], "for they s h": [65535, 0], "they s h oh": [65535, 0], "s h oh i": [65535, 0], "h oh i don't": [65535, 0], "oh i don't know": [65535, 0], "i don't know what": [65535, 0], "don't know what it": [65535, 0], "know what it is": [65535, 0], "what it is shall": [65535, 0], "it is shall oh": [65535, 0], "is shall oh shall": [65535, 0], "shall oh shall for": [65535, 0], "oh shall for they": [65535, 0], "shall for they shall": [65535, 0], "for they shall for": [65535, 0], "they shall for they": [65535, 0], "for they shall a": [65535, 0], "they shall a a": [65535, 0], "shall a a shall": [65535, 0], "a a shall mourn": [65535, 0], "a shall mourn a": [65535, 0], "shall mourn a a": [65535, 0], "mourn a a blessed": [65535, 0], "a a blessed are": [65535, 0], "a blessed are they": [65535, 0], "are they that shall": [65535, 0], "they that shall they": [65535, 0], "that shall they that": [65535, 0], "shall they that a": [65535, 0], "they that a they": [65535, 0], "that a they that": [65535, 0], "a they that shall": [65535, 0], "they that shall mourn": [65535, 0], "that shall mourn for": [65535, 0], "shall mourn for they": [65535, 0], "mourn for they shall": [65535, 0], "they shall a shall": [65535, 0], "shall a shall what": [65535, 0], "a shall what why": [65535, 0], "shall what why don't": [65535, 0], "what why don't you": [65535, 0], "why don't you tell": [65535, 0], "don't you tell me": [65535, 0], "you tell me mary": [65535, 0], "tell me mary what": [65535, 0], "me mary what do": [65535, 0], "mary what do you": [65535, 0], "what do you want": [65535, 0], "do you want to": [65535, 0], "you want to be": [65535, 0], "want to be so": [65535, 0], "to be so mean": [65535, 0], "be so mean for": [65535, 0], "so mean for oh": [65535, 0], "mean for oh tom": [65535, 0], "for oh tom you": [65535, 0], "oh tom you poor": [65535, 0], "tom you poor thick": [65535, 0], "you poor thick headed": [65535, 0], "poor thick headed thing": [65535, 0], "thick headed thing i'm": [65535, 0], "headed thing i'm not": [65535, 0], "thing i'm not teasing": [65535, 0], "i'm not teasing you": [65535, 0], "not teasing you i": [65535, 0], "teasing you i wouldn't": [65535, 0], "you i wouldn't do": [65535, 0], "i wouldn't do that": [65535, 0], "wouldn't do that you": [65535, 0], "do that you must": [65535, 0], "that you must go": [65535, 0], "you must go and": [65535, 0], "must go and learn": [65535, 0], "go and learn it": [65535, 0], "and learn it again": [65535, 0], "learn it again don't": [65535, 0], "it again don't you": [65535, 0], "again don't you be": [65535, 0], "don't you be discouraged": [65535, 0], "you be discouraged tom": [65535, 0], "be discouraged tom you'll": [65535, 0], "discouraged tom you'll manage": [65535, 0], "tom you'll manage it": [65535, 0], "you'll manage it and": [65535, 0], "manage it and if": [65535, 0], "it and if you": [65535, 0], "and if you do": [65535, 0], "if you do i'll": [65535, 0], "you do i'll give": [65535, 0], "do i'll give you": [65535, 0], "i'll give you something": [65535, 0], "give you something ever": [65535, 0], "you something ever so": [65535, 0], "something ever so nice": [65535, 0], "ever so nice there": [65535, 0], "so nice there now": [65535, 0], "nice there now that's": [65535, 0], "there now that's a": [65535, 0], "now that's a good": [65535, 0], "that's a good boy": [65535, 0], "a good boy all": [65535, 0], "good boy all right": [65535, 0], "boy all right what": [65535, 0], "all right what is": [65535, 0], "right what is it": [65535, 0], "what is it mary": [65535, 0], "is it mary tell": [65535, 0], "it mary tell me": [65535, 0], "mary tell me what": [65535, 0], "tell me what it": [65535, 0], "me what it is": [65535, 0], "what it is never": [65535, 0], "it is never you": [65535, 0], "is never you mind": [65535, 0], "never you mind tom": [65535, 0], "you mind tom you": [65535, 0], "mind tom you know": [65535, 0], "tom you know if": [65535, 0], "you know if i": [65535, 0], "know if i say": [65535, 0], "if i say it's": [65535, 0], "i say it's nice": [65535, 0], "say it's nice it": [65535, 0], "it's nice it is": [65535, 0], "nice it is nice": [65535, 0], "it is nice you": [65535, 0], "is nice you bet": [65535, 0], "nice you bet you": [65535, 0], "you bet you that's": [65535, 0], "bet you that's so": [65535, 0], "you that's so mary": [65535, 0], "that's so mary all": [65535, 0], "so mary all right": [65535, 0], "mary all right i'll": [65535, 0], "all right i'll tackle": [65535, 0], "right i'll tackle it": [65535, 0], "i'll tackle it again": [65535, 0], "tackle it again and": [65535, 0], "it again and he": [65535, 0], "again and he did": [65535, 0], "and he did tackle": [65535, 0], "he did tackle it": [65535, 0], "did tackle it again": [65535, 0], "it again and under": [65535, 0], "again and under the": [65535, 0], "and under the double": [65535, 0], "under the double pressure": [65535, 0], "the double pressure of": [65535, 0], "double pressure of curiosity": [65535, 0], "pressure of curiosity and": [65535, 0], "of curiosity and prospective": [65535, 0], "curiosity and prospective gain": [65535, 0], "and prospective gain he": [65535, 0], "prospective gain he did": [65535, 0], "gain he did it": [65535, 0], "he did it with": [65535, 0], "did it with such": [65535, 0], "it with such spirit": [65535, 0], "with such spirit that": [65535, 0], "such spirit that he": [65535, 0], "spirit that he accomplished": [65535, 0], "that he accomplished a": [65535, 0], "he accomplished a shining": [65535, 0], "accomplished a shining success": [65535, 0], "a shining success mary": [65535, 0], "shining success mary gave": [65535, 0], "success mary gave him": [65535, 0], "mary gave him a": [65535, 0], "gave him a brand": [65535, 0], "him a brand new": [65535, 0], "a brand new barlow": [65535, 0], "brand new barlow knife": [65535, 0], "new barlow knife worth": [65535, 0], "barlow knife worth twelve": [65535, 0], "knife worth twelve and": [65535, 0], "worth twelve and a": [65535, 0], "twelve and a half": [65535, 0], "and a half cents": [65535, 0], "a half cents and": [65535, 0], "half cents and the": [65535, 0], "cents and the convulsion": [65535, 0], "and the convulsion of": [65535, 0], "the convulsion of delight": [65535, 0], "convulsion of delight that": [65535, 0], "of delight that swept": [65535, 0], "delight that swept his": [65535, 0], "that swept his system": [65535, 0], "swept his system shook": [65535, 0], "his system shook him": [65535, 0], "system shook him to": [65535, 0], "shook him to his": [65535, 0], "him to his foundations": [65535, 0], "to his foundations true": [65535, 0], "his foundations true the": [65535, 0], "foundations true the knife": [65535, 0], "true the knife would": [65535, 0], "the knife would not": [65535, 0], "knife would not cut": [65535, 0], "would not cut anything": [65535, 0], "not cut anything but": [65535, 0], "cut anything but it": [65535, 0], "anything but it was": [65535, 0], "but it was a": [65535, 0], "it was a sure": [65535, 0], "was a sure enough": [65535, 0], "a sure enough barlow": [65535, 0], "sure enough barlow and": [65535, 0], "enough barlow and there": [65535, 0], "barlow and there was": [65535, 0], "and there was inconceivable": [65535, 0], "there was inconceivable grandeur": [65535, 0], "was inconceivable grandeur in": [65535, 0], "inconceivable grandeur in that": [65535, 0], "grandeur in that though": [65535, 0], "in that though where": [65535, 0], "that though where the": [65535, 0], "though where the western": [65535, 0], "where the western boys": [65535, 0], "the western boys ever": [65535, 0], "western boys ever got": [65535, 0], "boys ever got the": [65535, 0], "ever got the idea": [65535, 0], "got the idea that": [65535, 0], "the idea that such": [65535, 0], "idea that such a": [65535, 0], "that such a weapon": [65535, 0], "such a weapon could": [65535, 0], "a weapon could possibly": [65535, 0], "weapon could possibly be": [65535, 0], "could possibly be counterfeited": [65535, 0], "possibly be counterfeited to": [65535, 0], "be counterfeited to its": [65535, 0], "counterfeited to its injury": [65535, 0], "to its injury is": [65535, 0], "its injury is an": [65535, 0], "injury is an imposing": [65535, 0], "is an imposing mystery": [65535, 0], "an imposing mystery and": [65535, 0], "imposing mystery and will": [65535, 0], "mystery and will always": [65535, 0], "and will always remain": [65535, 0], "will always remain so": [65535, 0], "always remain so perhaps": [65535, 0], "remain so perhaps tom": [65535, 0], "so perhaps tom contrived": [65535, 0], "perhaps tom contrived to": [65535, 0], "tom contrived to scarify": [65535, 0], "contrived to scarify the": [65535, 0], "to scarify the cupboard": [65535, 0], "scarify the cupboard with": [65535, 0], "the cupboard with it": [65535, 0], "cupboard with it and": [65535, 0], "with it and was": [65535, 0], "it and was arranging": [65535, 0], "and was arranging to": [65535, 0], "was arranging to begin": [65535, 0], "arranging to begin on": [65535, 0], "to begin on the": [65535, 0], "begin on the bureau": [65535, 0], "on the bureau when": [65535, 0], "the bureau when he": [65535, 0], "bureau when he was": [65535, 0], "when he was called": [65535, 0], "he was called off": [65535, 0], "was called off to": [65535, 0], "called off to dress": [65535, 0], "off to dress for": [65535, 0], "to dress for sunday": [65535, 0], "dress for sunday school": [65535, 0], "for sunday school mary": [65535, 0], "sunday school mary gave": [65535, 0], "school mary gave him": [65535, 0], "gave him a tin": [65535, 0], "him a tin basin": [65535, 0], "a tin basin of": [65535, 0], "tin basin of water": [65535, 0], "basin of water and": [65535, 0], "of water and a": [65535, 0], "water and a piece": [65535, 0], "and a piece of": [65535, 0], "a piece of soap": [65535, 0], "piece of soap and": [65535, 0], "of soap and he": [65535, 0], "soap and he went": [65535, 0], "and he went outside": [65535, 0], "he went outside the": [65535, 0], "went outside the door": [65535, 0], "outside the door and": [65535, 0], "the door and set": [65535, 0], "door and set the": [65535, 0], "and set the basin": [65535, 0], "set the basin on": [65535, 0], "the basin on a": [65535, 0], "basin on a little": [65535, 0], "on a little bench": [65535, 0], "a little bench there": [65535, 0], "little bench there then": [65535, 0], "bench there then he": [65535, 0], "there then he dipped": [65535, 0], "then he dipped the": [65535, 0], "he dipped the soap": [65535, 0], "dipped the soap in": [65535, 0], "the soap in the": [65535, 0], "soap in the water": [65535, 0], "in the water and": [65535, 0], "the water and laid": [65535, 0], "water and laid it": [65535, 0], "and laid it down": [65535, 0], "laid it down turned": [65535, 0], "it down turned up": [65535, 0], "down turned up his": [65535, 0], "turned up his sleeves": [65535, 0], "up his sleeves poured": [65535, 0], "his sleeves poured out": [65535, 0], "sleeves poured out the": [65535, 0], "poured out the water": [65535, 0], "out the water on": [65535, 0], "the water on the": [65535, 0], "water on the ground": [65535, 0], "on the ground gently": [65535, 0], "the ground gently and": [65535, 0], "ground gently and then": [65535, 0], "gently and then entered": [65535, 0], "and then entered the": [65535, 0], "then entered the kitchen": [65535, 0], "entered the kitchen and": [65535, 0], "the kitchen and began": [65535, 0], "kitchen and began to": [65535, 0], "and began to wipe": [65535, 0], "began to wipe his": [65535, 0], "to wipe his face": [65535, 0], "wipe his face diligently": [65535, 0], "his face diligently on": [65535, 0], "face diligently on the": [65535, 0], "diligently on the towel": [65535, 0], "on the towel behind": [65535, 0], "the towel behind the": [65535, 0], "towel behind the door": [65535, 0], "behind the door but": [65535, 0], "the door but mary": [65535, 0], "door but mary removed": [65535, 0], "but mary removed the": [65535, 0], "mary removed the towel": [65535, 0], "removed the towel and": [65535, 0], "the towel and said": [65535, 0], "towel and said now": [65535, 0], "and said now ain't": [65535, 0], "said now ain't you": [65535, 0], "now ain't you ashamed": [65535, 0], "ain't you ashamed tom": [65535, 0], "you ashamed tom you": [65535, 0], "ashamed tom you mustn't": [65535, 0], "tom you mustn't be": [65535, 0], "you mustn't be so": [65535, 0], "mustn't be so bad": [65535, 0], "be so bad water": [65535, 0], "so bad water won't": [65535, 0], "bad water won't hurt": [65535, 0], "water won't hurt you": [65535, 0], "won't hurt you tom": [65535, 0], "hurt you tom was": [65535, 0], "you tom was a": [65535, 0], "tom was a trifle": [65535, 0], "was a trifle disconcerted": [65535, 0], "a trifle disconcerted the": [65535, 0], "trifle disconcerted the basin": [65535, 0], "disconcerted the basin was": [65535, 0], "the basin was refilled": [65535, 0], "basin was refilled and": [65535, 0], "was refilled and this": [65535, 0], "refilled and this time": [65535, 0], "and this time he": [65535, 0], "this time he stood": [65535, 0], "time he stood over": [65535, 0], "he stood over it": [65535, 0], "stood over it a": [65535, 0], "over it a little": [65535, 0], "it a little while": [65535, 0], "a little while gathering": [65535, 0], "little while gathering resolution": [65535, 0], "while gathering resolution took": [65535, 0], "gathering resolution took in": [65535, 0], "resolution took in a": [65535, 0], "took in a big": [65535, 0], "in a big breath": [65535, 0], "a big breath and": [65535, 0], "big breath and began": [65535, 0], "breath and began when": [65535, 0], "and began when he": [65535, 0], "began when he entered": [65535, 0], "when he entered the": [65535, 0], "he entered the kitchen": [65535, 0], "entered the kitchen presently": [65535, 0], "the kitchen presently with": [65535, 0], "kitchen presently with both": [65535, 0], "presently with both eyes": [65535, 0], "with both eyes shut": [65535, 0], "both eyes shut and": [65535, 0], "eyes shut and groping": [65535, 0], "shut and groping for": [65535, 0], "and groping for the": [65535, 0], "groping for the towel": [65535, 0], "for the towel with": [65535, 0], "the towel with his": [65535, 0], "towel with his hands": [65535, 0], "with his hands an": [65535, 0], "his hands an honorable": [65535, 0], "hands an honorable testimony": [65535, 0], "an honorable testimony of": [65535, 0], "honorable testimony of suds": [65535, 0], "testimony of suds and": [65535, 0], "of suds and water": [65535, 0], "suds and water was": [65535, 0], "and water was dripping": [65535, 0], "water was dripping from": [65535, 0], "was dripping from his": [65535, 0], "dripping from his face": [65535, 0], "from his face but": [65535, 0], "his face but when": [65535, 0], "face but when he": [65535, 0], "but when he emerged": [65535, 0], "when he emerged from": [65535, 0], "he emerged from the": [65535, 0], "emerged from the towel": [65535, 0], "from the towel he": [65535, 0], "the towel he was": [65535, 0], "towel he was not": [65535, 0], "he was not yet": [65535, 0], "was not yet satisfactory": [65535, 0], "not yet satisfactory for": [65535, 0], "yet satisfactory for the": [65535, 0], "satisfactory for the clean": [65535, 0], "for the clean territory": [65535, 0], "the clean territory stopped": [65535, 0], "clean territory stopped short": [65535, 0], "territory stopped short at": [65535, 0], "stopped short at his": [65535, 0], "short at his chin": [65535, 0], "at his chin and": [65535, 0], "his chin and his": [65535, 0], "chin and his jaws": [65535, 0], "and his jaws like": [65535, 0], "his jaws like a": [65535, 0], "jaws like a mask": [65535, 0], "like a mask below": [65535, 0], "a mask below and": [65535, 0], "mask below and beyond": [65535, 0], "below and beyond this": [65535, 0], "and beyond this line": [65535, 0], "beyond this line there": [65535, 0], "this line there was": [65535, 0], "line there was a": [65535, 0], "there was a dark": [65535, 0], "was a dark expanse": [65535, 0], "a dark expanse of": [65535, 0], "dark expanse of unirrigated": [65535, 0], "expanse of unirrigated soil": [65535, 0], "of unirrigated soil that": [65535, 0], "unirrigated soil that spread": [65535, 0], "soil that spread downward": [65535, 0], "that spread downward in": [65535, 0], "spread downward in front": [65535, 0], "downward in front and": [65535, 0], "in front and backward": [65535, 0], "front and backward around": [65535, 0], "and backward around his": [65535, 0], "backward around his neck": [65535, 0], "around his neck mary": [65535, 0], "his neck mary took": [65535, 0], "neck mary took him": [65535, 0], "mary took him in": [65535, 0], "took him in hand": [65535, 0], "him in hand and": [65535, 0], "in hand and when": [65535, 0], "hand and when she": [65535, 0], "and when she was": [65535, 0], "when she was done": [65535, 0], "she was done with": [65535, 0], "was done with him": [65535, 0], "done with him he": [65535, 0], "with him he was": [65535, 0], "him he was a": [65535, 0], "he was a man": [65535, 0], "was a man and": [65535, 0], "a man and a": [65535, 0], "man and a brother": [65535, 0], "and a brother without": [65535, 0], "a brother without distinction": [65535, 0], "brother without distinction of": [65535, 0], "without distinction of color": [65535, 0], "distinction of color and": [65535, 0], "of color and his": [65535, 0], "color and his saturated": [65535, 0], "and his saturated hair": [65535, 0], "his saturated hair was": [65535, 0], "saturated hair was neatly": [65535, 0], "hair was neatly brushed": [65535, 0], "was neatly brushed and": [65535, 0], "neatly brushed and its": [65535, 0], "brushed and its short": [65535, 0], "and its short curls": [65535, 0], "its short curls wrought": [65535, 0], "short curls wrought into": [65535, 0], "curls wrought into a": [65535, 0], "wrought into a dainty": [65535, 0], "into a dainty and": [65535, 0], "a dainty and symmetrical": [65535, 0], "dainty and symmetrical general": [65535, 0], "and symmetrical general effect": [65535, 0], "symmetrical general effect he": [65535, 0], "general effect he privately": [65535, 0], "effect he privately smoothed": [65535, 0], "he privately smoothed out": [65535, 0], "privately smoothed out the": [65535, 0], "smoothed out the curls": [65535, 0], "out the curls with": [65535, 0], "the curls with labor": [65535, 0], "curls with labor and": [65535, 0], "with labor and difficulty": [65535, 0], "labor and difficulty and": [65535, 0], "and difficulty and plastered": [65535, 0], "difficulty and plastered his": [65535, 0], "and plastered his hair": [65535, 0], "plastered his hair close": [65535, 0], "his hair close down": [65535, 0], "hair close down to": [65535, 0], "close down to his": [65535, 0], "down to his head": [65535, 0], "to his head for": [65535, 0], "his head for he": [65535, 0], "head for he held": [65535, 0], "for he held curls": [65535, 0], "he held curls to": [65535, 0], "held curls to be": [65535, 0], "curls to be effeminate": [65535, 0], "to be effeminate and": [65535, 0], "be effeminate and his": [65535, 0], "effeminate and his own": [65535, 0], "and his own filled": [65535, 0], "his own filled his": [65535, 0], "own filled his life": [65535, 0], "filled his life with": [65535, 0], "his life with bitterness": [65535, 0], "life with bitterness then": [65535, 0], "with bitterness then mary": [65535, 0], "bitterness then mary got": [65535, 0], "then mary got out": [65535, 0], "mary got out a": [65535, 0], "got out a suit": [65535, 0], "out a suit of": [65535, 0], "a suit of his": [65535, 0], "suit of his clothing": [65535, 0], "of his clothing that": [65535, 0], "his clothing that had": [65535, 0], "clothing that had been": [65535, 0], "that had been used": [65535, 0], "had been used only": [65535, 0], "been used only on": [65535, 0], "used only on sundays": [65535, 0], "only on sundays during": [65535, 0], "on sundays during two": [65535, 0], "sundays during two years": [65535, 0], "during two years they": [65535, 0], "two years they were": [65535, 0], "years they were simply": [65535, 0], "they were simply called": [65535, 0], "were simply called his": [65535, 0], "simply called his other": [65535, 0], "called his other clothes": [65535, 0], "his other clothes and": [65535, 0], "other clothes and so": [65535, 0], "clothes and so by": [65535, 0], "and so by that": [65535, 0], "so by that we": [65535, 0], "by that we know": [65535, 0], "that we know the": [65535, 0], "we know the size": [65535, 0], "know the size of": [65535, 0], "the size of his": [65535, 0], "size of his wardrobe": [65535, 0], "of his wardrobe the": [65535, 0], "his wardrobe the girl": [65535, 0], "wardrobe the girl put": [65535, 0], "the girl put him": [65535, 0], "girl put him to": [65535, 0], "put him to rights": [65535, 0], "him to rights after": [65535, 0], "to rights after he": [65535, 0], "rights after he had": [65535, 0], "after he had dressed": [65535, 0], "he had dressed himself": [65535, 0], "had dressed himself she": [65535, 0], "dressed himself she buttoned": [65535, 0], "himself she buttoned his": [65535, 0], "she buttoned his neat": [65535, 0], "buttoned his neat roundabout": [65535, 0], "his neat roundabout up": [65535, 0], "neat roundabout up to": [65535, 0], "roundabout up to his": [65535, 0], "up to his chin": [65535, 0], "to his chin turned": [65535, 0], "his chin turned his": [65535, 0], "chin turned his vast": [65535, 0], "turned his vast shirt": [65535, 0], "his vast shirt collar": [65535, 0], "vast shirt collar down": [65535, 0], "shirt collar down over": [65535, 0], "collar down over his": [65535, 0], "down over his shoulders": [65535, 0], "over his shoulders brushed": [65535, 0], "his shoulders brushed him": [65535, 0], "shoulders brushed him off": [65535, 0], "brushed him off and": [65535, 0], "him off and crowned": [65535, 0], "off and crowned him": [65535, 0], "and crowned him with": [65535, 0], "crowned him with his": [65535, 0], "him with his speckled": [65535, 0], "with his speckled straw": [65535, 0], "his speckled straw hat": [65535, 0], "speckled straw hat he": [65535, 0], "straw hat he now": [65535, 0], "hat he now looked": [65535, 0], "he now looked exceedingly": [65535, 0], "now looked exceedingly improved": [65535, 0], "looked exceedingly improved and": [65535, 0], "exceedingly improved and uncomfortable": [65535, 0], "improved and uncomfortable he": [65535, 0], "and uncomfortable he was": [65535, 0], "uncomfortable he was fully": [65535, 0], "he was fully as": [65535, 0], "was fully as uncomfortable": [65535, 0], "fully as uncomfortable as": [65535, 0], "as uncomfortable as he": [65535, 0], "uncomfortable as he looked": [65535, 0], "as he looked for": [65535, 0], "he looked for there": [65535, 0], "looked for there was": [65535, 0], "for there was a": [65535, 0], "there was a restraint": [65535, 0], "was a restraint about": [65535, 0], "a restraint about whole": [65535, 0], "restraint about whole clothes": [65535, 0], "about whole clothes and": [65535, 0], "whole clothes and cleanliness": [65535, 0], "clothes and cleanliness that": [65535, 0], "and cleanliness that galled": [65535, 0], "cleanliness that galled him": [65535, 0], "that galled him he": [65535, 0], "galled him he hoped": [65535, 0], "him he hoped that": [65535, 0], "he hoped that mary": [65535, 0], "hoped that mary would": [65535, 0], "that mary would forget": [65535, 0], "mary would forget his": [65535, 0], "would forget his shoes": [65535, 0], "forget his shoes but": [65535, 0], "his shoes but the": [65535, 0], "shoes but the hope": [65535, 0], "but the hope was": [65535, 0], "the hope was blighted": [65535, 0], "hope was blighted she": [65535, 0], "was blighted she coated": [65535, 0], "blighted she coated them": [65535, 0], "she coated them thoroughly": [65535, 0], "coated them thoroughly with": [65535, 0], "them thoroughly with tallow": [65535, 0], "thoroughly with tallow as": [65535, 0], "with tallow as was": [65535, 0], "tallow as was the": [65535, 0], "as was the custom": [65535, 0], "was the custom and": [65535, 0], "the custom and brought": [65535, 0], "custom and brought them": [65535, 0], "and brought them out": [65535, 0], "brought them out he": [65535, 0], "them out he lost": [65535, 0], "out he lost his": [65535, 0], "he lost his temper": [65535, 0], "lost his temper and": [65535, 0], "his temper and said": [65535, 0], "temper and said he": [65535, 0], "and said he was": [65535, 0], "said he was always": [65535, 0], "he was always being": [65535, 0], "was always being made": [65535, 0], "always being made to": [65535, 0], "being made to do": [65535, 0], "made to do everything": [65535, 0], "to do everything he": [65535, 0], "do everything he didn't": [65535, 0], "everything he didn't want": [65535, 0], "he didn't want to": [65535, 0], "didn't want to do": [65535, 0], "want to do but": [65535, 0], "to do but mary": [65535, 0], "do but mary said": [65535, 0], "but mary said persuasively": [65535, 0], "mary said persuasively please": [65535, 0], "said persuasively please tom": [65535, 0], "persuasively please tom that's": [65535, 0], "please tom that's a": [65535, 0], "tom that's a good": [65535, 0], "a good boy so": [65535, 0], "good boy so he": [65535, 0], "boy so he got": [65535, 0], "so he got into": [65535, 0], "he got into the": [65535, 0], "got into the shoes": [65535, 0], "into the shoes snarling": [65535, 0], "the shoes snarling mary": [65535, 0], "shoes snarling mary was": [65535, 0], "snarling mary was soon": [65535, 0], "mary was soon ready": [65535, 0], "was soon ready and": [65535, 0], "soon ready and the": [65535, 0], "ready and the three": [65535, 0], "and the three children": [65535, 0], "the three children set": [65535, 0], "three children set out": [65535, 0], "children set out for": [65535, 0], "set out for sunday": [65535, 0], "out for sunday school": [65535, 0], "for sunday school a": [65535, 0], "sunday school a place": [65535, 0], "school a place that": [65535, 0], "a place that tom": [65535, 0], "place that tom hated": [65535, 0], "that tom hated with": [65535, 0], "tom hated with his": [65535, 0], "hated with his whole": [65535, 0], "with his whole heart": [65535, 0], "his whole heart but": [65535, 0], "whole heart but sid": [65535, 0], "heart but sid and": [65535, 0], "but sid and mary": [65535, 0], "sid and mary were": [65535, 0], "and mary were fond": [65535, 0], "mary were fond of": [65535, 0], "were fond of it": [65535, 0], "fond of it sabbath": [65535, 0], "of it sabbath school": [65535, 0], "it sabbath school hours": [65535, 0], "sabbath school hours were": [65535, 0], "school hours were from": [65535, 0], "hours were from nine": [65535, 0], "were from nine to": [65535, 0], "from nine to half": [65535, 0], "nine to half past": [65535, 0], "to half past ten": [65535, 0], "half past ten and": [65535, 0], "past ten and then": [65535, 0], "ten and then church": [65535, 0], "and then church service": [65535, 0], "then church service two": [65535, 0], "church service two of": [65535, 0], "service two of the": [65535, 0], "two of the children": [65535, 0], "of the children always": [65535, 0], "the children always remained": [65535, 0], "children always remained for": [65535, 0], "always remained for the": [65535, 0], "remained for the sermon": [65535, 0], "for the sermon voluntarily": [65535, 0], "the sermon voluntarily and": [65535, 0], "sermon voluntarily and the": [65535, 0], "voluntarily and the other": [65535, 0], "and the other always": [65535, 0], "the other always remained": [65535, 0], "other always remained too": [65535, 0], "always remained too for": [65535, 0], "remained too for stronger": [65535, 0], "too for stronger reasons": [65535, 0], "for stronger reasons the": [65535, 0], "stronger reasons the church's": [65535, 0], "reasons the church's high": [65535, 0], "the church's high backed": [65535, 0], "church's high backed uncushioned": [65535, 0], "high backed uncushioned pews": [65535, 0], "backed uncushioned pews would": [65535, 0], "uncushioned pews would seat": [65535, 0], "pews would seat about": [65535, 0], "would seat about three": [65535, 0], "seat about three hundred": [65535, 0], "about three hundred persons": [65535, 0], "three hundred persons the": [65535, 0], "hundred persons the edifice": [65535, 0], "persons the edifice was": [65535, 0], "the edifice was but": [65535, 0], "edifice was but a": [65535, 0], "was but a small": [65535, 0], "but a small plain": [65535, 0], "a small plain affair": [65535, 0], "small plain affair with": [65535, 0], "plain affair with a": [65535, 0], "affair with a sort": [65535, 0], "with a sort of": [65535, 0], "a sort of pine": [65535, 0], "sort of pine board": [65535, 0], "of pine board tree": [65535, 0], "pine board tree box": [65535, 0], "board tree box on": [65535, 0], "tree box on top": [65535, 0], "box on top of": [65535, 0], "on top of it": [65535, 0], "top of it for": [65535, 0], "of it for a": [65535, 0], "it for a steeple": [65535, 0], "for a steeple at": [65535, 0], "a steeple at the": [65535, 0], "steeple at the door": [65535, 0], "at the door tom": [65535, 0], "the door tom dropped": [65535, 0], "door tom dropped back": [65535, 0], "tom dropped back a": [65535, 0], "dropped back a step": [65535, 0], "back a step and": [65535, 0], "a step and accosted": [65535, 0], "step and accosted a": [65535, 0], "and accosted a sunday": [65535, 0], "accosted a sunday dressed": [65535, 0], "a sunday dressed comrade": [65535, 0], "sunday dressed comrade say": [65535, 0], "dressed comrade say billy": [65535, 0], "comrade say billy got": [65535, 0], "say billy got a": [65535, 0], "billy got a yaller": [65535, 0], "got a yaller ticket": [65535, 0], "a yaller ticket yes": [65535, 0], "yaller ticket yes what'll": [65535, 0], "ticket yes what'll you": [65535, 0], "yes what'll you take": [65535, 0], "you take for her": [65535, 0], "take for her what'll": [65535, 0], "for her what'll you": [65535, 0], "her what'll you give": [65535, 0], "what'll you give piece": [65535, 0], "you give piece of": [65535, 0], "give piece of lickrish": [65535, 0], "piece of lickrish and": [65535, 0], "of lickrish and a": [65535, 0], "lickrish and a fish": [65535, 0], "and a fish hook": [65535, 0], "a fish hook less": [65535, 0], "fish hook less see": [65535, 0], "hook less see 'em": [65535, 0], "less see 'em tom": [65535, 0], "see 'em tom exhibited": [65535, 0], "'em tom exhibited they": [65535, 0], "tom exhibited they were": [65535, 0], "exhibited they were satisfactory": [65535, 0], "they were satisfactory and": [65535, 0], "were satisfactory and the": [65535, 0], "satisfactory and the property": [65535, 0], "and the property changed": [65535, 0], "the property changed hands": [65535, 0], "property changed hands then": [65535, 0], "changed hands then tom": [65535, 0], "hands then tom traded": [65535, 0], "then tom traded a": [65535, 0], "tom traded a couple": [65535, 0], "traded a couple of": [65535, 0], "a couple of white": [65535, 0], "couple of white alleys": [65535, 0], "of white alleys for": [65535, 0], "white alleys for three": [65535, 0], "alleys for three red": [65535, 0], "for three red tickets": [65535, 0], "three red tickets and": [65535, 0], "red tickets and some": [65535, 0], "tickets and some small": [65535, 0], "and some small trifle": [65535, 0], "some small trifle or": [65535, 0], "small trifle or other": [65535, 0], "trifle or other for": [65535, 0], "or other for a": [65535, 0], "other for a couple": [65535, 0], "for a couple of": [65535, 0], "a couple of blue": [65535, 0], "couple of blue ones": [65535, 0], "of blue ones he": [65535, 0], "blue ones he waylaid": [65535, 0], "ones he waylaid other": [65535, 0], "he waylaid other boys": [65535, 0], "waylaid other boys as": [65535, 0], "other boys as they": [65535, 0], "boys as they came": [65535, 0], "as they came and": [65535, 0], "they came and went": [65535, 0], "came and went on": [65535, 0], "and went on buying": [65535, 0], "went on buying tickets": [65535, 0], "on buying tickets of": [65535, 0], "buying tickets of various": [65535, 0], "tickets of various colors": [65535, 0], "of various colors ten": [65535, 0], "various colors ten or": [65535, 0], "colors ten or fifteen": [65535, 0], "ten or fifteen minutes": [65535, 0], "or fifteen minutes longer": [65535, 0], "fifteen minutes longer he": [65535, 0], "minutes longer he entered": [65535, 0], "longer he entered the": [65535, 0], "he entered the church": [65535, 0], "entered the church now": [65535, 0], "the church now with": [65535, 0], "church now with a": [65535, 0], "now with a swarm": [65535, 0], "with a swarm of": [65535, 0], "a swarm of clean": [65535, 0], "swarm of clean and": [65535, 0], "of clean and noisy": [65535, 0], "clean and noisy boys": [65535, 0], "and noisy boys and": [65535, 0], "noisy boys and girls": [65535, 0], "boys and girls proceeded": [65535, 0], "and girls proceeded to": [65535, 0], "girls proceeded to his": [65535, 0], "proceeded to his seat": [65535, 0], "to his seat and": [65535, 0], "his seat and started": [65535, 0], "seat and started a": [65535, 0], "and started a quarrel": [65535, 0], "started a quarrel with": [65535, 0], "a quarrel with the": [65535, 0], "quarrel with the first": [65535, 0], "with the first boy": [65535, 0], "first boy that came": [65535, 0], "boy that came handy": [65535, 0], "that came handy the": [65535, 0], "came handy the teacher": [65535, 0], "handy the teacher a": [65535, 0], "the teacher a grave": [65535, 0], "teacher a grave elderly": [65535, 0], "a grave elderly man": [65535, 0], "grave elderly man interfered": [65535, 0], "elderly man interfered then": [65535, 0], "man interfered then turned": [65535, 0], "interfered then turned his": [65535, 0], "then turned his back": [65535, 0], "turned his back a": [65535, 0], "his back a moment": [65535, 0], "back a moment and": [65535, 0], "a moment and tom": [65535, 0], "moment and tom pulled": [65535, 0], "and tom pulled a": [65535, 0], "tom pulled a boy's": [65535, 0], "pulled a boy's hair": [65535, 0], "a boy's hair in": [65535, 0], "boy's hair in the": [65535, 0], "hair in the next": [65535, 0], "in the next bench": [65535, 0], "the next bench and": [65535, 0], "next bench and was": [65535, 0], "bench and was absorbed": [65535, 0], "and was absorbed in": [65535, 0], "was absorbed in his": [65535, 0], "absorbed in his book": [65535, 0], "in his book when": [65535, 0], "his book when the": [65535, 0], "book when the boy": [65535, 0], "when the boy turned": [65535, 0], "the boy turned around": [65535, 0], "boy turned around stuck": [65535, 0], "turned around stuck a": [65535, 0], "around stuck a pin": [65535, 0], "stuck a pin in": [65535, 0], "a pin in another": [65535, 0], "pin in another boy": [65535, 0], "in another boy presently": [65535, 0], "another boy presently in": [65535, 0], "boy presently in order": [65535, 0], "presently in order to": [65535, 0], "in order to hear": [65535, 0], "order to hear him": [65535, 0], "to hear him say": [65535, 0], "hear him say ouch": [65535, 0], "him say ouch and": [65535, 0], "say ouch and got": [65535, 0], "ouch and got a": [65535, 0], "and got a new": [65535, 0], "got a new reprimand": [65535, 0], "a new reprimand from": [65535, 0], "new reprimand from his": [65535, 0], "reprimand from his teacher": [65535, 0], "from his teacher tom's": [65535, 0], "his teacher tom's whole": [65535, 0], "teacher tom's whole class": [65535, 0], "tom's whole class were": [65535, 0], "whole class were of": [65535, 0], "class were of a": [65535, 0], "were of a pattern": [65535, 0], "of a pattern restless": [65535, 0], "a pattern restless noisy": [65535, 0], "pattern restless noisy and": [65535, 0], "restless noisy and troublesome": [65535, 0], "noisy and troublesome when": [65535, 0], "and troublesome when they": [65535, 0], "troublesome when they came": [65535, 0], "when they came to": [65535, 0], "they came to recite": [65535, 0], "came to recite their": [65535, 0], "to recite their lessons": [65535, 0], "recite their lessons not": [65535, 0], "their lessons not one": [65535, 0], "lessons not one of": [65535, 0], "not one of them": [65535, 0], "one of them knew": [65535, 0], "of them knew his": [65535, 0], "them knew his verses": [65535, 0], "knew his verses perfectly": [65535, 0], "his verses perfectly but": [65535, 0], "verses perfectly but had": [65535, 0], "perfectly but had to": [65535, 0], "but had to be": [65535, 0], "had to be prompted": [65535, 0], "to be prompted all": [65535, 0], "be prompted all along": [65535, 0], "prompted all along however": [65535, 0], "all along however they": [65535, 0], "along however they worried": [65535, 0], "however they worried through": [65535, 0], "they worried through and": [65535, 0], "worried through and each": [65535, 0], "through and each got": [65535, 0], "and each got his": [65535, 0], "each got his reward": [65535, 0], "got his reward in": [65535, 0], "his reward in small": [65535, 0], "reward in small blue": [65535, 0], "in small blue tickets": [65535, 0], "small blue tickets each": [65535, 0], "blue tickets each with": [65535, 0], "tickets each with a": [65535, 0], "each with a passage": [65535, 0], "with a passage of": [65535, 0], "a passage of scripture": [65535, 0], "passage of scripture on": [65535, 0], "of scripture on it": [65535, 0], "scripture on it each": [65535, 0], "on it each blue": [65535, 0], "it each blue ticket": [65535, 0], "each blue ticket was": [65535, 0], "blue ticket was pay": [65535, 0], "ticket was pay for": [65535, 0], "was pay for two": [65535, 0], "pay for two verses": [65535, 0], "for two verses of": [65535, 0], "two verses of the": [65535, 0], "verses of the recitation": [65535, 0], "of the recitation ten": [65535, 0], "the recitation ten blue": [65535, 0], "recitation ten blue tickets": [65535, 0], "ten blue tickets equalled": [65535, 0], "blue tickets equalled a": [65535, 0], "tickets equalled a red": [65535, 0], "equalled a red one": [65535, 0], "a red one and": [65535, 0], "red one and could": [65535, 0], "one and could be": [65535, 0], "and could be exchanged": [65535, 0], "could be exchanged for": [65535, 0], "be exchanged for it": [65535, 0], "exchanged for it ten": [65535, 0], "for it ten red": [65535, 0], "it ten red tickets": [65535, 0], "ten red tickets equalled": [65535, 0], "red tickets equalled a": [65535, 0], "tickets equalled a yellow": [65535, 0], "equalled a yellow one": [65535, 0], "a yellow one for": [65535, 0], "yellow one for ten": [65535, 0], "one for ten yellow": [65535, 0], "for ten yellow tickets": [65535, 0], "ten yellow tickets the": [65535, 0], "yellow tickets the superintendent": [65535, 0], "tickets the superintendent gave": [65535, 0], "the superintendent gave a": [65535, 0], "superintendent gave a very": [65535, 0], "gave a very plainly": [65535, 0], "a very plainly bound": [65535, 0], "very plainly bound bible": [65535, 0], "plainly bound bible worth": [65535, 0], "bound bible worth forty": [65535, 0], "bible worth forty cents": [65535, 0], "worth forty cents in": [65535, 0], "forty cents in those": [65535, 0], "cents in those easy": [65535, 0], "in those easy times": [65535, 0], "those easy times to": [65535, 0], "easy times to the": [65535, 0], "times to the pupil": [65535, 0], "to the pupil how": [65535, 0], "the pupil how many": [65535, 0], "pupil how many of": [65535, 0], "how many of my": [65535, 0], "many of my readers": [65535, 0], "of my readers would": [65535, 0], "my readers would have": [65535, 0], "readers would have the": [65535, 0], "would have the industry": [65535, 0], "have the industry and": [65535, 0], "the industry and application": [65535, 0], "industry and application to": [65535, 0], "and application to memorize": [65535, 0], "application to memorize two": [65535, 0], "to memorize two thousand": [65535, 0], "memorize two thousand verses": [65535, 0], "two thousand verses even": [65535, 0], "thousand verses even for": [65535, 0], "verses even for a": [65535, 0], "even for a dore": [65535, 0], "for a dore bible": [65535, 0], "a dore bible and": [65535, 0], "dore bible and yet": [65535, 0], "bible and yet mary": [65535, 0], "and yet mary had": [65535, 0], "yet mary had acquired": [65535, 0], "mary had acquired two": [65535, 0], "had acquired two bibles": [65535, 0], "acquired two bibles in": [65535, 0], "two bibles in this": [65535, 0], "bibles in this way": [65535, 0], "in this way it": [65535, 0], "this way it was": [65535, 0], "way it was the": [65535, 0], "it was the patient": [65535, 0], "was the patient work": [65535, 0], "the patient work of": [65535, 0], "patient work of two": [65535, 0], "work of two years": [65535, 0], "of two years and": [65535, 0], "two years and a": [65535, 0], "years and a boy": [65535, 0], "and a boy of": [65535, 0], "a boy of german": [65535, 0], "boy of german parentage": [65535, 0], "of german parentage had": [65535, 0], "german parentage had won": [65535, 0], "parentage had won four": [65535, 0], "had won four or": [65535, 0], "won four or five": [65535, 0], "four or five he": [65535, 0], "or five he once": [65535, 0], "five he once recited": [65535, 0], "he once recited three": [65535, 0], "once recited three thousand": [65535, 0], "recited three thousand verses": [65535, 0], "three thousand verses without": [65535, 0], "thousand verses without stopping": [65535, 0], "verses without stopping but": [65535, 0], "without stopping but the": [65535, 0], "stopping but the strain": [65535, 0], "but the strain upon": [65535, 0], "the strain upon his": [65535, 0], "strain upon his mental": [65535, 0], "upon his mental faculties": [65535, 0], "his mental faculties was": [65535, 0], "mental faculties was too": [65535, 0], "faculties was too great": [65535, 0], "was too great and": [65535, 0], "too great and he": [65535, 0], "great and he was": [65535, 0], "and he was little": [65535, 0], "he was little better": [65535, 0], "was little better than": [65535, 0], "little better than an": [65535, 0], "better than an idiot": [65535, 0], "than an idiot from": [65535, 0], "an idiot from that": [65535, 0], "idiot from that day": [65535, 0], "from that day forth": [65535, 0], "that day forth a": [65535, 0], "day forth a grievous": [65535, 0], "forth a grievous misfortune": [65535, 0], "a grievous misfortune for": [65535, 0], "grievous misfortune for the": [65535, 0], "misfortune for the school": [65535, 0], "for the school for": [65535, 0], "the school for on": [65535, 0], "school for on great": [65535, 0], "for on great occasions": [65535, 0], "on great occasions before": [65535, 0], "great occasions before company": [65535, 0], "occasions before company the": [65535, 0], "before company the superintendent": [65535, 0], "company the superintendent as": [65535, 0], "the superintendent as tom": [65535, 0], "superintendent as tom expressed": [65535, 0], "as tom expressed it": [65535, 0], "tom expressed it had": [65535, 0], "expressed it had always": [65535, 0], "it had always made": [65535, 0], "had always made this": [65535, 0], "always made this boy": [65535, 0], "made this boy come": [65535, 0], "this boy come out": [65535, 0], "boy come out and": [65535, 0], "come out and spread": [65535, 0], "out and spread himself": [65535, 0], "and spread himself only": [65535, 0], "spread himself only the": [65535, 0], "himself only the older": [65535, 0], "only the older pupils": [65535, 0], "the older pupils managed": [65535, 0], "older pupils managed to": [65535, 0], "pupils managed to keep": [65535, 0], "managed to keep their": [65535, 0], "to keep their tickets": [65535, 0], "keep their tickets and": [65535, 0], "their tickets and stick": [65535, 0], "tickets and stick to": [65535, 0], "and stick to their": [65535, 0], "stick to their tedious": [65535, 0], "to their tedious work": [65535, 0], "their tedious work long": [65535, 0], "tedious work long enough": [65535, 0], "work long enough to": [65535, 0], "long enough to get": [65535, 0], "enough to get a": [65535, 0], "to get a bible": [65535, 0], "get a bible and": [65535, 0], "a bible and so": [65535, 0], "bible and so the": [65535, 0], "and so the delivery": [65535, 0], "so the delivery of": [65535, 0], "the delivery of one": [65535, 0], "delivery of one of": [65535, 0], "of one of these": [65535, 0], "one of these prizes": [65535, 0], "of these prizes was": [65535, 0], "these prizes was a": [65535, 0], "prizes was a rare": [65535, 0], "was a rare and": [65535, 0], "a rare and noteworthy": [65535, 0], "rare and noteworthy circumstance": [65535, 0], "and noteworthy circumstance the": [65535, 0], "noteworthy circumstance the successful": [65535, 0], "circumstance the successful pupil": [65535, 0], "the successful pupil was": [65535, 0], "successful pupil was so": [65535, 0], "pupil was so great": [65535, 0], "was so great and": [65535, 0], "so great and conspicuous": [65535, 0], "great and conspicuous for": [65535, 0], "and conspicuous for that": [65535, 0], "conspicuous for that day": [65535, 0], "for that day that": [65535, 0], "that day that on": [65535, 0], "day that on the": [65535, 0], "that on the spot": [65535, 0], "on the spot every": [65535, 0], "the spot every scholar's": [65535, 0], "spot every scholar's heart": [65535, 0], "every scholar's heart was": [65535, 0], "scholar's heart was fired": [65535, 0], "heart was fired with": [65535, 0], "was fired with a": [65535, 0], "fired with a fresh": [65535, 0], "with a fresh ambition": [65535, 0], "a fresh ambition that": [65535, 0], "fresh ambition that often": [65535, 0], "ambition that often lasted": [65535, 0], "that often lasted a": [65535, 0], "often lasted a couple": [65535, 0], "lasted a couple of": [65535, 0], "a couple of weeks": [65535, 0], "couple of weeks it": [65535, 0], "of weeks it is": [65535, 0], "weeks it is possible": [65535, 0], "it is possible that": [65535, 0], "is possible that tom's": [65535, 0], "possible that tom's mental": [65535, 0], "that tom's mental stomach": [65535, 0], "tom's mental stomach had": [65535, 0], "mental stomach had never": [65535, 0], "stomach had never really": [65535, 0], "had never really hungered": [65535, 0], "never really hungered for": [65535, 0], "really hungered for one": [65535, 0], "hungered for one of": [65535, 0], "for one of those": [65535, 0], "one of those prizes": [65535, 0], "of those prizes but": [65535, 0], "those prizes but unquestionably": [65535, 0], "prizes but unquestionably his": [65535, 0], "but unquestionably his entire": [65535, 0], "unquestionably his entire being": [65535, 0], "his entire being had": [65535, 0], "entire being had for": [65535, 0], "being had for many": [65535, 0], "had for many a": [65535, 0], "for many a day": [65535, 0], "many a day longed": [65535, 0], "a day longed for": [65535, 0], "day longed for the": [65535, 0], "longed for the glory": [65535, 0], "for the glory and": [65535, 0], "the glory and the": [65535, 0], "glory and the eclat": [65535, 0], "and the eclat that": [65535, 0], "the eclat that came": [65535, 0], "eclat that came with": [65535, 0], "that came with it": [65535, 0], "came with it in": [65535, 0], "with it in due": [65535, 0], "it in due course": [65535, 0], "in due course the": [65535, 0], "due course the superintendent": [65535, 0], "course the superintendent stood": [65535, 0], "the superintendent stood up": [65535, 0], "superintendent stood up in": [65535, 0], "stood up in front": [65535, 0], "up in front of": [65535, 0], "front of the pulpit": [65535, 0], "of the pulpit with": [65535, 0], "the pulpit with a": [65535, 0], "pulpit with a closed": [65535, 0], "with a closed hymn": [65535, 0], "a closed hymn book": [65535, 0], "closed hymn book in": [65535, 0], "hymn book in his": [65535, 0], "book in his hand": [65535, 0], "in his hand and": [65535, 0], "his hand and his": [65535, 0], "hand and his forefinger": [65535, 0], "and his forefinger inserted": [65535, 0], "his forefinger inserted between": [65535, 0], "forefinger inserted between its": [65535, 0], "inserted between its leaves": [65535, 0], "between its leaves and": [65535, 0], "its leaves and commanded": [65535, 0], "leaves and commanded attention": [65535, 0], "and commanded attention when": [65535, 0], "commanded attention when a": [65535, 0], "attention when a sunday": [65535, 0], "when a sunday school": [65535, 0], "a sunday school superintendent": [65535, 0], "sunday school superintendent makes": [65535, 0], "school superintendent makes his": [65535, 0], "superintendent makes his customary": [65535, 0], "makes his customary little": [65535, 0], "his customary little speech": [65535, 0], "customary little speech a": [65535, 0], "little speech a hymn": [65535, 0], "speech a hymn book": [65535, 0], "a hymn book in": [65535, 0], "hymn book in the": [65535, 0], "book in the hand": [65535, 0], "in the hand is": [65535, 0], "the hand is as": [65535, 0], "hand is as necessary": [65535, 0], "is as necessary as": [65535, 0], "as necessary as is": [65535, 0], "necessary as is the": [65535, 0], "as is the inevitable": [65535, 0], "is the inevitable sheet": [65535, 0], "the inevitable sheet of": [65535, 0], "inevitable sheet of music": [65535, 0], "sheet of music in": [65535, 0], "of music in the": [65535, 0], "music in the hand": [65535, 0], "in the hand of": [65535, 0], "the hand of a": [65535, 0], "hand of a singer": [65535, 0], "of a singer who": [65535, 0], "a singer who stands": [65535, 0], "singer who stands forward": [65535, 0], "who stands forward on": [65535, 0], "stands forward on the": [65535, 0], "forward on the platform": [65535, 0], "on the platform and": [65535, 0], "the platform and sings": [65535, 0], "platform and sings a": [65535, 0], "and sings a solo": [65535, 0], "sings a solo at": [65535, 0], "a solo at a": [65535, 0], "solo at a concert": [65535, 0], "at a concert though": [65535, 0], "a concert though why": [65535, 0], "concert though why is": [65535, 0], "though why is a": [65535, 0], "why is a mystery": [65535, 0], "is a mystery for": [65535, 0], "a mystery for neither": [65535, 0], "mystery for neither the": [65535, 0], "for neither the hymn": [65535, 0], "neither the hymn book": [65535, 0], "the hymn book nor": [65535, 0], "hymn book nor the": [65535, 0], "book nor the sheet": [65535, 0], "nor the sheet of": [65535, 0], "the sheet of music": [65535, 0], "sheet of music is": [65535, 0], "of music is ever": [65535, 0], "music is ever referred": [65535, 0], "is ever referred to": [65535, 0], "ever referred to by": [65535, 0], "referred to by the": [65535, 0], "to by the sufferer": [65535, 0], "by the sufferer this": [65535, 0], "the sufferer this superintendent": [65535, 0], "sufferer this superintendent was": [65535, 0], "this superintendent was a": [65535, 0], "superintendent was a slim": [65535, 0], "was a slim creature": [65535, 0], "a slim creature of": [65535, 0], "slim creature of thirty": [65535, 0], "creature of thirty five": [65535, 0], "of thirty five with": [65535, 0], "thirty five with a": [65535, 0], "five with a sandy": [65535, 0], "with a sandy goatee": [65535, 0], "a sandy goatee and": [65535, 0], "sandy goatee and short": [65535, 0], "goatee and short sandy": [65535, 0], "and short sandy hair": [65535, 0], "short sandy hair he": [65535, 0], "sandy hair he wore": [65535, 0], "hair he wore a": [65535, 0], "he wore a stiff": [65535, 0], "wore a stiff standing": [65535, 0], "a stiff standing collar": [65535, 0], "stiff standing collar whose": [65535, 0], "standing collar whose upper": [65535, 0], "collar whose upper edge": [65535, 0], "whose upper edge almost": [65535, 0], "upper edge almost reached": [65535, 0], "edge almost reached his": [65535, 0], "almost reached his ears": [65535, 0], "reached his ears and": [65535, 0], "his ears and whose": [65535, 0], "ears and whose sharp": [65535, 0], "and whose sharp points": [65535, 0], "whose sharp points curved": [65535, 0], "sharp points curved forward": [65535, 0], "points curved forward abreast": [65535, 0], "curved forward abreast the": [65535, 0], "forward abreast the corners": [65535, 0], "abreast the corners of": [65535, 0], "the corners of his": [65535, 0], "corners of his mouth": [65535, 0], "of his mouth a": [65535, 0], "his mouth a fence": [65535, 0], "mouth a fence that": [65535, 0], "a fence that compelled": [65535, 0], "fence that compelled a": [65535, 0], "that compelled a straight": [65535, 0], "compelled a straight lookout": [65535, 0], "a straight lookout ahead": [65535, 0], "straight lookout ahead and": [65535, 0], "lookout ahead and a": [65535, 0], "ahead and a turning": [65535, 0], "and a turning of": [65535, 0], "a turning of the": [65535, 0], "turning of the whole": [65535, 0], "of the whole body": [65535, 0], "the whole body when": [65535, 0], "whole body when a": [65535, 0], "body when a side": [65535, 0], "when a side view": [65535, 0], "a side view was": [65535, 0], "side view was required": [65535, 0], "view was required his": [65535, 0], "was required his chin": [65535, 0], "required his chin was": [65535, 0], "his chin was propped": [65535, 0], "chin was propped on": [65535, 0], "was propped on a": [65535, 0], "propped on a spreading": [65535, 0], "on a spreading cravat": [65535, 0], "a spreading cravat which": [65535, 0], "spreading cravat which was": [65535, 0], "cravat which was as": [65535, 0], "which was as broad": [65535, 0], "was as broad and": [65535, 0], "as broad and as": [65535, 0], "broad and as long": [65535, 0], "and as long as": [65535, 0], "as long as a": [65535, 0], "long as a bank": [65535, 0], "as a bank note": [65535, 0], "a bank note and": [65535, 0], "bank note and had": [65535, 0], "note and had fringed": [65535, 0], "and had fringed ends": [65535, 0], "had fringed ends his": [65535, 0], "fringed ends his boot": [65535, 0], "ends his boot toes": [65535, 0], "his boot toes were": [65535, 0], "boot toes were turned": [65535, 0], "toes were turned sharply": [65535, 0], "were turned sharply up": [65535, 0], "turned sharply up in": [65535, 0], "sharply up in the": [65535, 0], "up in the fashion": [65535, 0], "in the fashion of": [65535, 0], "the fashion of the": [65535, 0], "fashion of the day": [65535, 0], "of the day like": [65535, 0], "the day like sleigh": [65535, 0], "day like sleigh runners": [65535, 0], "like sleigh runners an": [65535, 0], "sleigh runners an effect": [65535, 0], "runners an effect patiently": [65535, 0], "an effect patiently and": [65535, 0], "effect patiently and laboriously": [65535, 0], "patiently and laboriously produced": [65535, 0], "and laboriously produced by": [65535, 0], "laboriously produced by the": [65535, 0], "produced by the young": [65535, 0], "by the young men": [65535, 0], "the young men by": [65535, 0], "young men by sitting": [65535, 0], "men by sitting with": [65535, 0], "by sitting with their": [65535, 0], "sitting with their toes": [65535, 0], "with their toes pressed": [65535, 0], "their toes pressed against": [65535, 0], "toes pressed against a": [65535, 0], "pressed against a wall": [65535, 0], "against a wall for": [65535, 0], "a wall for hours": [65535, 0], "wall for hours together": [65535, 0], "for hours together mr": [65535, 0], "hours together mr walters": [65535, 0], "together mr walters was": [65535, 0], "mr walters was very": [65535, 0], "walters was very earnest": [65535, 0], "was very earnest of": [65535, 0], "very earnest of mien": [65535, 0], "earnest of mien and": [65535, 0], "of mien and very": [65535, 0], "mien and very sincere": [65535, 0], "and very sincere and": [65535, 0], "very sincere and honest": [65535, 0], "sincere and honest at": [65535, 0], "and honest at heart": [65535, 0], "honest at heart and": [65535, 0], "at heart and he": [65535, 0], "heart and he held": [65535, 0], "and he held sacred": [65535, 0], "he held sacred things": [65535, 0], "held sacred things and": [65535, 0], "sacred things and places": [65535, 0], "things and places in": [65535, 0], "and places in such": [65535, 0], "places in such reverence": [65535, 0], "in such reverence and": [65535, 0], "such reverence and so": [65535, 0], "reverence and so separated": [65535, 0], "and so separated them": [65535, 0], "so separated them from": [65535, 0], "separated them from worldly": [65535, 0], "them from worldly matters": [65535, 0], "from worldly matters that": [65535, 0], "worldly matters that unconsciously": [65535, 0], "matters that unconsciously to": [65535, 0], "that unconsciously to himself": [65535, 0], "unconsciously to himself his": [65535, 0], "to himself his sunday": [65535, 0], "himself his sunday school": [65535, 0], "his sunday school voice": [65535, 0], "sunday school voice had": [65535, 0], "school voice had acquired": [65535, 0], "voice had acquired a": [65535, 0], "had acquired a peculiar": [65535, 0], "acquired a peculiar intonation": [65535, 0], "a peculiar intonation which": [65535, 0], "peculiar intonation which was": [65535, 0], "intonation which was wholly": [65535, 0], "which was wholly absent": [65535, 0], "was wholly absent on": [65535, 0], "wholly absent on week": [65535, 0], "absent on week days": [65535, 0], "on week days he": [65535, 0], "week days he began": [65535, 0], "days he began after": [65535, 0], "he began after this": [65535, 0], "began after this fashion": [65535, 0], "after this fashion now": [65535, 0], "this fashion now children": [65535, 0], "fashion now children i": [65535, 0], "now children i want": [65535, 0], "children i want you": [65535, 0], "i want you all": [65535, 0], "want you all to": [65535, 0], "you all to sit": [65535, 0], "all to sit up": [65535, 0], "to sit up just": [65535, 0], "sit up just as": [65535, 0], "up just as straight": [65535, 0], "just as straight and": [65535, 0], "as straight and pretty": [65535, 0], "straight and pretty as": [65535, 0], "and pretty as you": [65535, 0], "pretty as you can": [65535, 0], "as you can and": [65535, 0], "you can and give": [65535, 0], "can and give me": [65535, 0], "and give me all": [65535, 0], "give me all your": [65535, 0], "me all your attention": [65535, 0], "all your attention for": [65535, 0], "your attention for a": [65535, 0], "attention for a minute": [65535, 0], "a minute or two": [65535, 0], "minute or two there": [65535, 0], "or two there that": [65535, 0], "two there that is": [65535, 0], "there that is it": [65535, 0], "that is it that": [65535, 0], "is it that is": [65535, 0], "it that is the": [65535, 0], "that is the way": [65535, 0], "is the way good": [65535, 0], "the way good little": [65535, 0], "way good little boys": [65535, 0], "good little boys and": [65535, 0], "little boys and girls": [65535, 0], "boys and girls should": [65535, 0], "and girls should do": [65535, 0], "girls should do i": [65535, 0], "should do i see": [65535, 0], "do i see one": [65535, 0], "i see one little": [65535, 0], "see one little girl": [65535, 0], "one little girl who": [65535, 0], "little girl who is": [65535, 0], "girl who is looking": [65535, 0], "who is looking out": [65535, 0], "is looking out of": [65535, 0], "looking out of the": [65535, 0], "of the window i": [65535, 0], "the window i am": [65535, 0], "window i am afraid": [65535, 0], "i am afraid she": [65535, 0], "am afraid she thinks": [65535, 0], "afraid she thinks i": [65535, 0], "she thinks i am": [65535, 0], "thinks i am out": [65535, 0], "i am out there": [65535, 0], "am out there somewhere": [65535, 0], "out there somewhere perhaps": [65535, 0], "there somewhere perhaps up": [65535, 0], "somewhere perhaps up in": [65535, 0], "perhaps up in one": [65535, 0], "up in one of": [65535, 0], "in one of the": [65535, 0], "one of the trees": [65535, 0], "of the trees making": [65535, 0], "the trees making a": [65535, 0], "trees making a speech": [65535, 0], "making a speech to": [65535, 0], "a speech to the": [65535, 0], "speech to the little": [65535, 0], "to the little birds": [65535, 0], "the little birds applausive": [65535, 0], "little birds applausive titter": [65535, 0], "birds applausive titter i": [65535, 0], "applausive titter i want": [65535, 0], "titter i want to": [65535, 0], "i want to tell": [65535, 0], "want to tell you": [65535, 0], "to tell you how": [65535, 0], "tell you how good": [65535, 0], "you how good it": [65535, 0], "how good it makes": [65535, 0], "good it makes me": [65535, 0], "it makes me feel": [65535, 0], "makes me feel to": [65535, 0], "me feel to see": [65535, 0], "feel to see so": [65535, 0], "to see so many": [65535, 0], "see so many bright": [65535, 0], "so many bright clean": [65535, 0], "many bright clean little": [65535, 0], "bright clean little faces": [65535, 0], "clean little faces assembled": [65535, 0], "little faces assembled in": [65535, 0], "faces assembled in a": [65535, 0], "assembled in a place": [65535, 0], "in a place like": [65535, 0], "a place like this": [65535, 0], "place like this learning": [65535, 0], "like this learning to": [65535, 0], "this learning to do": [65535, 0], "learning to do right": [65535, 0], "to do right and": [65535, 0], "do right and be": [65535, 0], "right and be good": [65535, 0], "and be good and": [65535, 0], "be good and so": [65535, 0], "good and so forth": [65535, 0], "and so forth and": [65535, 0], "so forth and so": [65535, 0], "forth and so on": [65535, 0], "and so on it": [65535, 0], "so on it is": [65535, 0], "on it is not": [65535, 0], "it is not necessary": [65535, 0], "is not necessary to": [65535, 0], "not necessary to set": [65535, 0], "necessary to set down": [65535, 0], "to set down the": [65535, 0], "set down the rest": [65535, 0], "down the rest of": [65535, 0], "rest of the oration": [65535, 0], "of the oration it": [65535, 0], "the oration it was": [65535, 0], "oration it was of": [65535, 0], "it was of a": [65535, 0], "was of a pattern": [65535, 0], "of a pattern which": [65535, 0], "a pattern which does": [65535, 0], "pattern which does not": [65535, 0], "which does not vary": [65535, 0], "does not vary and": [65535, 0], "not vary and so": [65535, 0], "vary and so it": [65535, 0], "and so it is": [65535, 0], "so it is familiar": [65535, 0], "it is familiar to": [65535, 0], "is familiar to us": [65535, 0], "familiar to us all": [65535, 0], "to us all the": [65535, 0], "us all the latter": [65535, 0], "all the latter third": [65535, 0], "the latter third of": [65535, 0], "latter third of the": [65535, 0], "third of the speech": [65535, 0], "of the speech was": [65535, 0], "the speech was marred": [65535, 0], "speech was marred by": [65535, 0], "was marred by the": [65535, 0], "marred by the resumption": [65535, 0], "by the resumption of": [65535, 0], "the resumption of fights": [65535, 0], "resumption of fights and": [65535, 0], "of fights and other": [65535, 0], "fights and other recreations": [65535, 0], "and other recreations among": [65535, 0], "other recreations among certain": [65535, 0], "recreations among certain of": [65535, 0], "among certain of the": [65535, 0], "certain of the bad": [65535, 0], "of the bad boys": [65535, 0], "the bad boys and": [65535, 0], "bad boys and by": [65535, 0], "boys and by fidgetings": [65535, 0], "and by fidgetings and": [65535, 0], "by fidgetings and whisperings": [65535, 0], "fidgetings and whisperings that": [65535, 0], "and whisperings that extended": [65535, 0], "whisperings that extended far": [65535, 0], "that extended far and": [65535, 0], "extended far and wide": [65535, 0], "far and wide washing": [65535, 0], "and wide washing even": [65535, 0], "wide washing even to": [65535, 0], "washing even to the": [65535, 0], "even to the bases": [65535, 0], "to the bases of": [65535, 0], "the bases of isolated": [65535, 0], "bases of isolated and": [65535, 0], "of isolated and incorruptible": [65535, 0], "isolated and incorruptible rocks": [65535, 0], "and incorruptible rocks like": [65535, 0], "incorruptible rocks like sid": [65535, 0], "rocks like sid and": [65535, 0], "like sid and mary": [65535, 0], "sid and mary but": [65535, 0], "and mary but now": [65535, 0], "mary but now every": [65535, 0], "but now every sound": [65535, 0], "now every sound ceased": [65535, 0], "every sound ceased suddenly": [65535, 0], "sound ceased suddenly with": [65535, 0], "ceased suddenly with the": [65535, 0], "suddenly with the subsidence": [65535, 0], "with the subsidence of": [65535, 0], "the subsidence of mr": [65535, 0], "subsidence of mr walters'": [65535, 0], "of mr walters' voice": [65535, 0], "mr walters' voice and": [65535, 0], "walters' voice and the": [65535, 0], "voice and the conclusion": [65535, 0], "and the conclusion of": [65535, 0], "the conclusion of the": [65535, 0], "conclusion of the speech": [65535, 0], "the speech was received": [65535, 0], "speech was received with": [65535, 0], "was received with a": [65535, 0], "received with a burst": [65535, 0], "with a burst of": [65535, 0], "a burst of silent": [65535, 0], "burst of silent gratitude": [65535, 0], "of silent gratitude a": [65535, 0], "silent gratitude a good": [65535, 0], "gratitude a good part": [65535, 0], "a good part of": [65535, 0], "good part of the": [65535, 0], "part of the whispering": [65535, 0], "of the whispering had": [65535, 0], "the whispering had been": [65535, 0], "whispering had been occasioned": [65535, 0], "had been occasioned by": [65535, 0], "been occasioned by an": [65535, 0], "occasioned by an event": [65535, 0], "by an event which": [65535, 0], "an event which was": [65535, 0], "event which was more": [65535, 0], "which was more or": [65535, 0], "was more or less": [65535, 0], "more or less rare": [65535, 0], "or less rare the": [65535, 0], "less rare the entrance": [65535, 0], "rare the entrance of": [65535, 0], "the entrance of visitors": [65535, 0], "entrance of visitors lawyer": [65535, 0], "of visitors lawyer thatcher": [65535, 0], "visitors lawyer thatcher accompanied": [65535, 0], "lawyer thatcher accompanied by": [65535, 0], "thatcher accompanied by a": [65535, 0], "accompanied by a very": [65535, 0], "by a very feeble": [65535, 0], "a very feeble and": [65535, 0], "very feeble and aged": [65535, 0], "feeble and aged man": [65535, 0], "and aged man a": [65535, 0], "aged man a fine": [65535, 0], "man a fine portly": [65535, 0], "a fine portly middle": [65535, 0], "fine portly middle aged": [65535, 0], "portly middle aged gentleman": [65535, 0], "middle aged gentleman with": [65535, 0], "aged gentleman with iron": [65535, 0], "gentleman with iron gray": [65535, 0], "with iron gray hair": [65535, 0], "iron gray hair and": [65535, 0], "gray hair and a": [65535, 0], "hair and a dignified": [65535, 0], "and a dignified lady": [65535, 0], "a dignified lady who": [65535, 0], "dignified lady who was": [65535, 0], "lady who was doubtless": [65535, 0], "who was doubtless the": [65535, 0], "was doubtless the latter's": [65535, 0], "doubtless the latter's wife": [65535, 0], "the latter's wife the": [65535, 0], "latter's wife the lady": [65535, 0], "wife the lady was": [65535, 0], "the lady was leading": [65535, 0], "lady was leading a": [65535, 0], "was leading a child": [65535, 0], "leading a child tom": [65535, 0], "a child tom had": [65535, 0], "child tom had been": [65535, 0], "tom had been restless": [65535, 0], "had been restless and": [65535, 0], "been restless and full": [65535, 0], "restless and full of": [65535, 0], "and full of chafings": [65535, 0], "full of chafings and": [65535, 0], "of chafings and repinings": [65535, 0], "chafings and repinings conscience": [65535, 0], "and repinings conscience smitten": [65535, 0], "repinings conscience smitten too": [65535, 0], "conscience smitten too he": [65535, 0], "smitten too he could": [65535, 0], "too he could not": [65535, 0], "he could not meet": [65535, 0], "could not meet amy": [65535, 0], "not meet amy lawrence's": [65535, 0], "meet amy lawrence's eye": [65535, 0], "amy lawrence's eye he": [65535, 0], "lawrence's eye he could": [65535, 0], "eye he could not": [65535, 0], "he could not brook": [65535, 0], "could not brook her": [65535, 0], "not brook her loving": [65535, 0], "brook her loving gaze": [65535, 0], "her loving gaze but": [65535, 0], "loving gaze but when": [65535, 0], "gaze but when he": [65535, 0], "but when he saw": [65535, 0], "when he saw this": [65535, 0], "he saw this small": [65535, 0], "saw this small new": [65535, 0], "this small new comer": [65535, 0], "small new comer his": [65535, 0], "new comer his soul": [65535, 0], "comer his soul was": [65535, 0], "his soul was all": [65535, 0], "soul was all ablaze": [65535, 0], "was all ablaze with": [65535, 0], "all ablaze with bliss": [65535, 0], "ablaze with bliss in": [65535, 0], "with bliss in a": [65535, 0], "bliss in a moment": [65535, 0], "in a moment the": [65535, 0], "a moment the next": [65535, 0], "moment the next moment": [65535, 0], "the next moment he": [65535, 0], "next moment he was": [65535, 0], "moment he was showing": [65535, 0], "he was showing off": [65535, 0], "was showing off with": [65535, 0], "showing off with all": [65535, 0], "off with all his": [65535, 0], "with all his might": [65535, 0], "all his might cuffing": [65535, 0], "his might cuffing boys": [65535, 0], "might cuffing boys pulling": [65535, 0], "cuffing boys pulling hair": [65535, 0], "boys pulling hair making": [65535, 0], "pulling hair making faces": [65535, 0], "hair making faces in": [65535, 0], "making faces in a": [65535, 0], "faces in a word": [65535, 0], "in a word using": [65535, 0], "a word using every": [65535, 0], "word using every art": [65535, 0], "using every art that": [65535, 0], "every art that seemed": [65535, 0], "art that seemed likely": [65535, 0], "that seemed likely to": [65535, 0], "seemed likely to fascinate": [65535, 0], "likely to fascinate a": [65535, 0], "to fascinate a girl": [65535, 0], "fascinate a girl and": [65535, 0], "a girl and win": [65535, 0], "girl and win her": [65535, 0], "and win her applause": [65535, 0], "win her applause his": [65535, 0], "her applause his exaltation": [65535, 0], "applause his exaltation had": [65535, 0], "his exaltation had but": [65535, 0], "exaltation had but one": [65535, 0], "had but one alloy": [65535, 0], "but one alloy the": [65535, 0], "one alloy the memory": [65535, 0], "alloy the memory of": [65535, 0], "the memory of his": [65535, 0], "memory of his humiliation": [65535, 0], "of his humiliation in": [65535, 0], "his humiliation in this": [65535, 0], "humiliation in this angel's": [65535, 0], "in this angel's garden": [65535, 0], "this angel's garden and": [65535, 0], "angel's garden and that": [65535, 0], "garden and that record": [65535, 0], "and that record in": [65535, 0], "that record in sand": [65535, 0], "record in sand was": [65535, 0], "in sand was fast": [65535, 0], "sand was fast washing": [65535, 0], "was fast washing out": [65535, 0], "fast washing out under": [65535, 0], "washing out under the": [65535, 0], "out under the waves": [65535, 0], "under the waves of": [65535, 0], "the waves of happiness": [65535, 0], "waves of happiness that": [65535, 0], "of happiness that were": [65535, 0], "happiness that were sweeping": [65535, 0], "that were sweeping over": [65535, 0], "were sweeping over it": [65535, 0], "sweeping over it now": [65535, 0], "over it now the": [65535, 0], "it now the visitors": [65535, 0], "now the visitors were": [65535, 0], "the visitors were given": [65535, 0], "visitors were given the": [65535, 0], "were given the highest": [65535, 0], "given the highest seat": [65535, 0], "the highest seat of": [65535, 0], "highest seat of honor": [65535, 0], "seat of honor and": [65535, 0], "of honor and as": [65535, 0], "honor and as soon": [65535, 0], "as soon as mr": [65535, 0], "soon as mr walters'": [65535, 0], "as mr walters' speech": [65535, 0], "mr walters' speech was": [65535, 0], "walters' speech was finished": [65535, 0], "speech was finished he": [65535, 0], "was finished he introduced": [65535, 0], "finished he introduced them": [65535, 0], "he introduced them to": [65535, 0], "introduced them to the": [65535, 0], "them to the school": [65535, 0], "to the school the": [65535, 0], "the school the middle": [65535, 0], "school the middle aged": [65535, 0], "the middle aged man": [65535, 0], "middle aged man turned": [65535, 0], "aged man turned out": [65535, 0], "man turned out to": [65535, 0], "turned out to be": [65535, 0], "out to be a": [65535, 0], "to be a prodigious": [65535, 0], "be a prodigious personage": [65535, 0], "a prodigious personage no": [65535, 0], "prodigious personage no less": [65535, 0], "personage no less a": [65535, 0], "no less a one": [65535, 0], "less a one than": [65535, 0], "a one than the": [65535, 0], "one than the county": [65535, 0], "than the county judge": [65535, 0], "the county judge altogether": [65535, 0], "county judge altogether the": [65535, 0], "judge altogether the most": [65535, 0], "altogether the most august": [65535, 0], "the most august creation": [65535, 0], "most august creation these": [65535, 0], "august creation these children": [65535, 0], "creation these children had": [65535, 0], "these children had ever": [65535, 0], "children had ever looked": [65535, 0], "had ever looked upon": [65535, 0], "ever looked upon and": [65535, 0], "looked upon and they": [65535, 0], "upon and they wondered": [65535, 0], "and they wondered what": [65535, 0], "they wondered what kind": [65535, 0], "wondered what kind of": [65535, 0], "what kind of material": [65535, 0], "kind of material he": [65535, 0], "of material he was": [65535, 0], "material he was made": [65535, 0], "he was made of": [65535, 0], "was made of and": [65535, 0], "made of and they": [65535, 0], "of and they half": [65535, 0], "and they half wanted": [65535, 0], "they half wanted to": [65535, 0], "half wanted to hear": [65535, 0], "wanted to hear him": [65535, 0], "to hear him roar": [65535, 0], "hear him roar and": [65535, 0], "him roar and were": [65535, 0], "roar and were half": [65535, 0], "and were half afraid": [65535, 0], "were half afraid he": [65535, 0], "half afraid he might": [65535, 0], "afraid he might too": [65535, 0], "he might too he": [65535, 0], "might too he was": [65535, 0], "too he was from": [65535, 0], "he was from constantinople": [65535, 0], "was from constantinople twelve": [65535, 0], "from constantinople twelve miles": [65535, 0], "constantinople twelve miles away": [65535, 0], "twelve miles away so": [65535, 0], "miles away so he": [65535, 0], "away so he had": [65535, 0], "so he had travelled": [65535, 0], "he had travelled and": [65535, 0], "had travelled and seen": [65535, 0], "travelled and seen the": [65535, 0], "and seen the world": [65535, 0], "seen the world these": [65535, 0], "the world these very": [65535, 0], "world these very eyes": [65535, 0], "these very eyes had": [65535, 0], "very eyes had looked": [65535, 0], "eyes had looked upon": [65535, 0], "had looked upon the": [65535, 0], "looked upon the county": [65535, 0], "upon the county court": [65535, 0], "the county court house": [65535, 0], "county court house which": [65535, 0], "court house which was": [65535, 0], "house which was said": [65535, 0], "which was said to": [65535, 0], "was said to have": [65535, 0], "said to have a": [65535, 0], "to have a tin": [65535, 0], "have a tin roof": [65535, 0], "a tin roof the": [65535, 0], "tin roof the awe": [65535, 0], "roof the awe which": [65535, 0], "the awe which these": [65535, 0], "awe which these reflections": [65535, 0], "which these reflections inspired": [65535, 0], "these reflections inspired was": [65535, 0], "reflections inspired was attested": [65535, 0], "inspired was attested by": [65535, 0], "was attested by the": [65535, 0], "attested by the impressive": [65535, 0], "by the impressive silence": [65535, 0], "the impressive silence and": [65535, 0], "impressive silence and the": [65535, 0], "silence and the ranks": [65535, 0], "and the ranks of": [65535, 0], "the ranks of staring": [65535, 0], "ranks of staring eyes": [65535, 0], "of staring eyes this": [65535, 0], "staring eyes this was": [65535, 0], "eyes this was the": [65535, 0], "this was the great": [65535, 0], "was the great judge": [65535, 0], "the great judge thatcher": [65535, 0], "great judge thatcher brother": [65535, 0], "judge thatcher brother of": [65535, 0], "thatcher brother of their": [65535, 0], "brother of their own": [65535, 0], "of their own lawyer": [65535, 0], "their own lawyer jeff": [65535, 0], "own lawyer jeff thatcher": [65535, 0], "lawyer jeff thatcher immediately": [65535, 0], "jeff thatcher immediately went": [65535, 0], "thatcher immediately went forward": [65535, 0], "immediately went forward to": [65535, 0], "went forward to be": [65535, 0], "forward to be familiar": [65535, 0], "to be familiar with": [65535, 0], "be familiar with the": [65535, 0], "familiar with the great": [65535, 0], "with the great man": [65535, 0], "the great man and": [65535, 0], "great man and be": [65535, 0], "man and be envied": [65535, 0], "and be envied by": [65535, 0], "be envied by the": [65535, 0], "envied by the school": [65535, 0], "by the school it": [65535, 0], "the school it would": [65535, 0], "school it would have": [65535, 0], "it would have been": [65535, 0], "would have been music": [65535, 0], "have been music to": [65535, 0], "been music to his": [65535, 0], "music to his soul": [65535, 0], "to his soul to": [65535, 0], "his soul to hear": [65535, 0], "soul to hear the": [65535, 0], "to hear the whisperings": [65535, 0], "hear the whisperings look": [65535, 0], "the whisperings look at": [65535, 0], "whisperings look at him": [65535, 0], "look at him jim": [65535, 0], "at him jim he's": [65535, 0], "him jim he's a": [65535, 0], "jim he's a going": [65535, 0], "he's a going up": [65535, 0], "a going up there": [65535, 0], "going up there say": [65535, 0], "up there say look": [65535, 0], "there say look he's": [65535, 0], "say look he's a": [65535, 0], "look he's a going": [65535, 0], "he's a going to": [65535, 0], "a going to shake": [65535, 0], "going to shake hands": [65535, 0], "to shake hands with": [65535, 0], "shake hands with him": [65535, 0], "hands with him he": [65535, 0], "with him he is": [65535, 0], "him he is shaking": [65535, 0], "he is shaking hands": [65535, 0], "is shaking hands with": [65535, 0], "shaking hands with him": [65535, 0], "hands with him by": [65535, 0], "with him by jings": [65535, 0], "him by jings don't": [65535, 0], "by jings don't you": [65535, 0], "jings don't you wish": [65535, 0], "you wish you was": [65535, 0], "wish you was jeff": [65535, 0], "you was jeff mr": [65535, 0], "was jeff mr walters": [65535, 0], "jeff mr walters fell": [65535, 0], "mr walters fell to": [65535, 0], "walters fell to showing": [65535, 0], "fell to showing off": [65535, 0], "to showing off with": [65535, 0], "off with all sorts": [65535, 0], "with all sorts of": [65535, 0], "all sorts of official": [65535, 0], "sorts of official bustlings": [65535, 0], "of official bustlings and": [65535, 0], "official bustlings and activities": [65535, 0], "bustlings and activities giving": [65535, 0], "and activities giving orders": [65535, 0], "activities giving orders delivering": [65535, 0], "giving orders delivering judgments": [65535, 0], "orders delivering judgments discharging": [65535, 0], "delivering judgments discharging directions": [65535, 0], "judgments discharging directions here": [65535, 0], "discharging directions here there": [65535, 0], "directions here there everywhere": [65535, 0], "here there everywhere that": [65535, 0], "there everywhere that he": [65535, 0], "everywhere that he could": [65535, 0], "that he could find": [65535, 0], "he could find a": [65535, 0], "could find a target": [65535, 0], "find a target the": [65535, 0], "a target the librarian": [65535, 0], "target the librarian showed": [65535, 0], "the librarian showed off": [65535, 0], "librarian showed off running": [65535, 0], "showed off running hither": [65535, 0], "off running hither and": [65535, 0], "running hither and thither": [65535, 0], "hither and thither with": [65535, 0], "and thither with his": [65535, 0], "thither with his arms": [65535, 0], "with his arms full": [65535, 0], "his arms full of": [65535, 0], "arms full of books": [65535, 0], "full of books and": [65535, 0], "of books and making": [65535, 0], "books and making a": [65535, 0], "and making a deal": [65535, 0], "making a deal of": [65535, 0], "a deal of the": [65535, 0], "deal of the splutter": [65535, 0], "of the splutter and": [65535, 0], "the splutter and fuss": [65535, 0], "splutter and fuss that": [65535, 0], "and fuss that insect": [65535, 0], "fuss that insect authority": [65535, 0], "that insect authority delights": [65535, 0], "insect authority delights in": [65535, 0], "authority delights in the": [65535, 0], "delights in the young": [65535, 0], "in the young lady": [65535, 0], "the young lady teachers": [65535, 0], "young lady teachers showed": [65535, 0], "lady teachers showed off": [65535, 0], "teachers showed off bending": [65535, 0], "showed off bending sweetly": [65535, 0], "off bending sweetly over": [65535, 0], "bending sweetly over pupils": [65535, 0], "sweetly over pupils that": [65535, 0], "over pupils that were": [65535, 0], "pupils that were lately": [65535, 0], "that were lately being": [65535, 0], "were lately being boxed": [65535, 0], "lately being boxed lifting": [65535, 0], "being boxed lifting pretty": [65535, 0], "boxed lifting pretty warning": [65535, 0], "lifting pretty warning fingers": [65535, 0], "pretty warning fingers at": [65535, 0], "warning fingers at bad": [65535, 0], "fingers at bad little": [65535, 0], "at bad little boys": [65535, 0], "bad little boys and": [65535, 0], "little boys and patting": [65535, 0], "boys and patting good": [65535, 0], "and patting good ones": [65535, 0], "patting good ones lovingly": [65535, 0], "good ones lovingly the": [65535, 0], "ones lovingly the young": [65535, 0], "lovingly the young gentlemen": [65535, 0], "the young gentlemen teachers": [65535, 0], "young gentlemen teachers showed": [65535, 0], "gentlemen teachers showed off": [65535, 0], "teachers showed off with": [65535, 0], "showed off with small": [65535, 0], "off with small scoldings": [65535, 0], "with small scoldings and": [65535, 0], "small scoldings and other": [65535, 0], "scoldings and other little": [65535, 0], "and other little displays": [65535, 0], "other little displays of": [65535, 0], "little displays of authority": [65535, 0], "displays of authority and": [65535, 0], "of authority and fine": [65535, 0], "authority and fine attention": [65535, 0], "and fine attention to": [65535, 0], "fine attention to discipline": [65535, 0], "attention to discipline and": [65535, 0], "to discipline and most": [65535, 0], "discipline and most of": [65535, 0], "and most of the": [65535, 0], "most of the teachers": [65535, 0], "of the teachers of": [65535, 0], "the teachers of both": [65535, 0], "teachers of both sexes": [65535, 0], "of both sexes found": [65535, 0], "both sexes found business": [65535, 0], "sexes found business up": [65535, 0], "found business up at": [65535, 0], "business up at the": [65535, 0], "up at the library": [65535, 0], "at the library by": [65535, 0], "the library by the": [65535, 0], "library by the pulpit": [65535, 0], "by the pulpit and": [65535, 0], "the pulpit and it": [65535, 0], "pulpit and it was": [65535, 0], "and it was business": [65535, 0], "it was business that": [65535, 0], "was business that frequently": [65535, 0], "business that frequently had": [65535, 0], "that frequently had to": [65535, 0], "frequently had to be": [65535, 0], "had to be done": [65535, 0], "to be done over": [65535, 0], "be done over again": [65535, 0], "done over again two": [65535, 0], "over again two or": [65535, 0], "again two or three": [65535, 0], "two or three times": [65535, 0], "or three times with": [65535, 0], "three times with much": [65535, 0], "times with much seeming": [65535, 0], "with much seeming vexation": [65535, 0], "much seeming vexation the": [65535, 0], "seeming vexation the little": [65535, 0], "vexation the little girls": [65535, 0], "the little girls showed": [65535, 0], "little girls showed off": [65535, 0], "girls showed off in": [65535, 0], "showed off in various": [65535, 0], "off in various ways": [65535, 0], "in various ways and": [65535, 0], "various ways and the": [65535, 0], "ways and the little": [65535, 0], "and the little boys": [65535, 0], "the little boys showed": [65535, 0], "little boys showed off": [65535, 0], "boys showed off with": [65535, 0], "showed off with such": [65535, 0], "off with such diligence": [65535, 0], "with such diligence that": [65535, 0], "such diligence that the": [65535, 0], "diligence that the air": [65535, 0], "that the air was": [65535, 0], "the air was thick": [65535, 0], "air was thick with": [65535, 0], "was thick with paper": [65535, 0], "thick with paper wads": [65535, 0], "with paper wads and": [65535, 0], "paper wads and the": [65535, 0], "wads and the murmur": [65535, 0], "and the murmur of": [65535, 0], "the murmur of scufflings": [65535, 0], "murmur of scufflings and": [65535, 0], "of scufflings and above": [65535, 0], "scufflings and above it": [65535, 0], "and above it all": [65535, 0], "above it all the": [65535, 0], "it all the great": [65535, 0], "all the great man": [65535, 0], "the great man sat": [65535, 0], "great man sat and": [65535, 0], "man sat and beamed": [65535, 0], "sat and beamed a": [65535, 0], "and beamed a majestic": [65535, 0], "beamed a majestic judicial": [65535, 0], "a majestic judicial smile": [65535, 0], "majestic judicial smile upon": [65535, 0], "judicial smile upon all": [65535, 0], "smile upon all the": [65535, 0], "upon all the house": [65535, 0], "all the house and": [65535, 0], "the house and warmed": [65535, 0], "house and warmed himself": [65535, 0], "and warmed himself in": [65535, 0], "warmed himself in the": [65535, 0], "himself in the sun": [65535, 0], "in the sun of": [65535, 0], "the sun of his": [65535, 0], "sun of his own": [65535, 0], "of his own grandeur": [65535, 0], "his own grandeur for": [65535, 0], "own grandeur for he": [65535, 0], "grandeur for he was": [65535, 0], "for he was showing": [65535, 0], "was showing off too": [65535, 0], "showing off too there": [65535, 0], "off too there was": [65535, 0], "too there was only": [65535, 0], "there was only one": [65535, 0], "was only one thing": [65535, 0], "only one thing wanting": [65535, 0], "one thing wanting to": [65535, 0], "thing wanting to make": [65535, 0], "wanting to make mr": [65535, 0], "to make mr walters'": [65535, 0], "make mr walters' ecstasy": [65535, 0], "mr walters' ecstasy complete": [65535, 0], "walters' ecstasy complete and": [65535, 0], "ecstasy complete and that": [65535, 0], "complete and that was": [65535, 0], "and that was a": [65535, 0], "that was a chance": [65535, 0], "was a chance to": [65535, 0], "a chance to deliver": [65535, 0], "chance to deliver a": [65535, 0], "to deliver a bible": [65535, 0], "deliver a bible prize": [65535, 0], "a bible prize and": [65535, 0], "bible prize and exhibit": [65535, 0], "prize and exhibit a": [65535, 0], "and exhibit a prodigy": [65535, 0], "exhibit a prodigy several": [65535, 0], "a prodigy several pupils": [65535, 0], "prodigy several pupils had": [65535, 0], "several pupils had a": [65535, 0], "pupils had a few": [65535, 0], "had a few yellow": [65535, 0], "a few yellow tickets": [65535, 0], "few yellow tickets but": [65535, 0], "yellow tickets but none": [65535, 0], "tickets but none had": [65535, 0], "but none had enough": [65535, 0], "none had enough he": [65535, 0], "had enough he had": [65535, 0], "enough he had been": [65535, 0], "he had been around": [65535, 0], "had been around among": [65535, 0], "been around among the": [65535, 0], "around among the star": [65535, 0], "among the star pupils": [65535, 0], "the star pupils inquiring": [65535, 0], "star pupils inquiring he": [65535, 0], "pupils inquiring he would": [65535, 0], "inquiring he would have": [65535, 0], "he would have given": [65535, 0], "would have given worlds": [65535, 0], "have given worlds now": [65535, 0], "given worlds now to": [65535, 0], "worlds now to have": [65535, 0], "now to have that": [65535, 0], "to have that german": [65535, 0], "have that german lad": [65535, 0], "that german lad back": [65535, 0], "german lad back again": [65535, 0], "lad back again with": [65535, 0], "back again with a": [65535, 0], "again with a sound": [65535, 0], "with a sound mind": [65535, 0], "a sound mind and": [65535, 0], "sound mind and now": [65535, 0], "mind and now at": [65535, 0], "and now at this": [65535, 0], "now at this moment": [65535, 0], "at this moment when": [65535, 0], "this moment when hope": [65535, 0], "moment when hope was": [65535, 0], "when hope was dead": [65535, 0], "hope was dead tom": [65535, 0], "was dead tom sawyer": [65535, 0], "dead tom sawyer came": [65535, 0], "tom sawyer came forward": [65535, 0], "sawyer came forward with": [65535, 0], "came forward with nine": [65535, 0], "forward with nine yellow": [65535, 0], "with nine yellow tickets": [65535, 0], "nine yellow tickets nine": [65535, 0], "yellow tickets nine red": [65535, 0], "tickets nine red tickets": [65535, 0], "nine red tickets and": [65535, 0], "red tickets and ten": [65535, 0], "tickets and ten blue": [65535, 0], "and ten blue ones": [65535, 0], "ten blue ones and": [65535, 0], "blue ones and demanded": [65535, 0], "ones and demanded a": [65535, 0], "and demanded a bible": [65535, 0], "demanded a bible this": [65535, 0], "a bible this was": [65535, 0], "bible this was a": [65535, 0], "this was a thunderbolt": [65535, 0], "was a thunderbolt out": [65535, 0], "a thunderbolt out of": [65535, 0], "thunderbolt out of a": [65535, 0], "out of a clear": [65535, 0], "of a clear sky": [65535, 0], "a clear sky walters": [65535, 0], "clear sky walters was": [65535, 0], "sky walters was not": [65535, 0], "walters was not expecting": [65535, 0], "was not expecting an": [65535, 0], "not expecting an application": [65535, 0], "expecting an application from": [65535, 0], "an application from this": [65535, 0], "application from this source": [65535, 0], "from this source for": [65535, 0], "this source for the": [65535, 0], "source for the next": [65535, 0], "for the next ten": [65535, 0], "the next ten years": [65535, 0], "next ten years but": [65535, 0], "ten years but there": [65535, 0], "years but there was": [65535, 0], "but there was no": [65535, 0], "there was no getting": [65535, 0], "was no getting around": [65535, 0], "no getting around it": [65535, 0], "getting around it here": [65535, 0], "around it here were": [65535, 0], "it here were the": [65535, 0], "here were the certified": [65535, 0], "were the certified checks": [65535, 0], "the certified checks and": [65535, 0], "certified checks and they": [65535, 0], "checks and they were": [65535, 0], "and they were good": [65535, 0], "they were good for": [65535, 0], "were good for their": [65535, 0], "good for their face": [65535, 0], "for their face tom": [65535, 0], "their face tom was": [65535, 0], "face tom was therefore": [65535, 0], "tom was therefore elevated": [65535, 0], "was therefore elevated to": [65535, 0], "therefore elevated to a": [65535, 0], "elevated to a place": [65535, 0], "to a place with": [65535, 0], "a place with the": [65535, 0], "place with the judge": [65535, 0], "with the judge and": [65535, 0], "the judge and the": [65535, 0], "judge and the other": [65535, 0], "and the other elect": [65535, 0], "the other elect and": [65535, 0], "other elect and the": [65535, 0], "elect and the great": [65535, 0], "and the great news": [65535, 0], "the great news was": [65535, 0], "great news was announced": [65535, 0], "news was announced from": [65535, 0], "was announced from headquarters": [65535, 0], "announced from headquarters it": [65535, 0], "from headquarters it was": [65535, 0], "headquarters it was the": [65535, 0], "it was the most": [65535, 0], "was the most stunning": [65535, 0], "the most stunning surprise": [65535, 0], "most stunning surprise of": [65535, 0], "stunning surprise of the": [65535, 0], "surprise of the decade": [65535, 0], "of the decade and": [65535, 0], "the decade and so": [65535, 0], "decade and so profound": [65535, 0], "and so profound was": [65535, 0], "so profound was the": [65535, 0], "profound was the sensation": [65535, 0], "was the sensation that": [65535, 0], "the sensation that it": [65535, 0], "sensation that it lifted": [65535, 0], "that it lifted the": [65535, 0], "it lifted the new": [65535, 0], "lifted the new hero": [65535, 0], "the new hero up": [65535, 0], "new hero up to": [65535, 0], "hero up to the": [65535, 0], "up to the judicial": [65535, 0], "to the judicial one's": [65535, 0], "the judicial one's altitude": [65535, 0], "judicial one's altitude and": [65535, 0], "one's altitude and the": [65535, 0], "altitude and the school": [65535, 0], "and the school had": [65535, 0], "the school had two": [65535, 0], "school had two marvels": [65535, 0], "had two marvels to": [65535, 0], "two marvels to gaze": [65535, 0], "marvels to gaze upon": [65535, 0], "to gaze upon in": [65535, 0], "gaze upon in place": [65535, 0], "upon in place of": [65535, 0], "in place of one": [65535, 0], "place of one the": [65535, 0], "of one the boys": [65535, 0], "one the boys were": [65535, 0], "the boys were all": [65535, 0], "boys were all eaten": [65535, 0], "were all eaten up": [65535, 0], "all eaten up with": [65535, 0], "eaten up with envy": [65535, 0], "up with envy but": [65535, 0], "with envy but those": [65535, 0], "envy but those that": [65535, 0], "but those that suffered": [65535, 0], "those that suffered the": [65535, 0], "that suffered the bitterest": [65535, 0], "suffered the bitterest pangs": [65535, 0], "the bitterest pangs were": [65535, 0], "bitterest pangs were those": [65535, 0], "pangs were those who": [65535, 0], "were those who perceived": [65535, 0], "those who perceived too": [65535, 0], "who perceived too late": [65535, 0], "perceived too late that": [65535, 0], "too late that they": [65535, 0], "late that they themselves": [65535, 0], "that they themselves had": [65535, 0], "they themselves had contributed": [65535, 0], "themselves had contributed to": [65535, 0], "had contributed to this": [65535, 0], "contributed to this hated": [65535, 0], "to this hated splendor": [65535, 0], "this hated splendor by": [65535, 0], "hated splendor by trading": [65535, 0], "splendor by trading tickets": [65535, 0], "by trading tickets to": [65535, 0], "trading tickets to tom": [65535, 0], "tickets to tom for": [65535, 0], "to tom for the": [65535, 0], "tom for the wealth": [65535, 0], "for the wealth he": [65535, 0], "the wealth he had": [65535, 0], "wealth he had amassed": [65535, 0], "he had amassed in": [65535, 0], "had amassed in selling": [65535, 0], "amassed in selling whitewashing": [65535, 0], "in selling whitewashing privileges": [65535, 0], "selling whitewashing privileges these": [65535, 0], "whitewashing privileges these despised": [65535, 0], "privileges these despised themselves": [65535, 0], "these despised themselves as": [65535, 0], "despised themselves as being": [65535, 0], "themselves as being the": [65535, 0], "as being the dupes": [65535, 0], "being the dupes of": [65535, 0], "the dupes of a": [65535, 0], "dupes of a wily": [65535, 0], "of a wily fraud": [65535, 0], "a wily fraud a": [65535, 0], "wily fraud a guileful": [65535, 0], "fraud a guileful snake": [65535, 0], "a guileful snake in": [65535, 0], "guileful snake in the": [65535, 0], "snake in the grass": [65535, 0], "in the grass the": [65535, 0], "the grass the prize": [65535, 0], "grass the prize was": [65535, 0], "the prize was delivered": [65535, 0], "prize was delivered to": [65535, 0], "was delivered to tom": [65535, 0], "delivered to tom with": [65535, 0], "to tom with as": [65535, 0], "tom with as much": [65535, 0], "with as much effusion": [65535, 0], "as much effusion as": [65535, 0], "much effusion as the": [65535, 0], "effusion as the superintendent": [65535, 0], "as the superintendent could": [65535, 0], "the superintendent could pump": [65535, 0], "superintendent could pump up": [65535, 0], "could pump up under": [65535, 0], "pump up under the": [65535, 0], "up under the circumstances": [65535, 0], "under the circumstances but": [65535, 0], "the circumstances but it": [65535, 0], "circumstances but it lacked": [65535, 0], "but it lacked somewhat": [65535, 0], "it lacked somewhat of": [65535, 0], "lacked somewhat of the": [65535, 0], "somewhat of the true": [65535, 0], "of the true gush": [65535, 0], "the true gush for": [65535, 0], "true gush for the": [65535, 0], "gush for the poor": [65535, 0], "for the poor fellow's": [65535, 0], "the poor fellow's instinct": [65535, 0], "poor fellow's instinct taught": [65535, 0], "fellow's instinct taught him": [65535, 0], "instinct taught him that": [65535, 0], "taught him that there": [65535, 0], "him that there was": [65535, 0], "that there was a": [65535, 0], "there was a mystery": [65535, 0], "was a mystery here": [65535, 0], "a mystery here that": [65535, 0], "mystery here that could": [65535, 0], "here that could not": [65535, 0], "that could not well": [65535, 0], "could not well bear": [65535, 0], "not well bear the": [65535, 0], "well bear the light": [65535, 0], "bear the light perhaps": [65535, 0], "the light perhaps it": [65535, 0], "light perhaps it was": [65535, 0], "perhaps it was simply": [65535, 0], "it was simply preposterous": [65535, 0], "was simply preposterous that": [65535, 0], "simply preposterous that this": [65535, 0], "preposterous that this boy": [65535, 0], "that this boy had": [65535, 0], "this boy had warehoused": [65535, 0], "boy had warehoused two": [65535, 0], "had warehoused two thousand": [65535, 0], "warehoused two thousand sheaves": [65535, 0], "two thousand sheaves of": [65535, 0], "thousand sheaves of scriptural": [65535, 0], "sheaves of scriptural wisdom": [65535, 0], "of scriptural wisdom on": [65535, 0], "scriptural wisdom on his": [65535, 0], "wisdom on his premises": [65535, 0], "on his premises a": [65535, 0], "his premises a dozen": [65535, 0], "premises a dozen would": [65535, 0], "a dozen would strain": [65535, 0], "dozen would strain his": [65535, 0], "would strain his capacity": [65535, 0], "strain his capacity without": [65535, 0], "his capacity without a": [65535, 0], "capacity without a doubt": [65535, 0], "without a doubt amy": [65535, 0], "a doubt amy lawrence": [65535, 0], "doubt amy lawrence was": [65535, 0], "amy lawrence was proud": [65535, 0], "lawrence was proud and": [65535, 0], "was proud and glad": [65535, 0], "proud and glad and": [65535, 0], "and glad and she": [65535, 0], "glad and she tried": [65535, 0], "and she tried to": [65535, 0], "she tried to make": [65535, 0], "tried to make tom": [65535, 0], "to make tom see": [65535, 0], "make tom see it": [65535, 0], "tom see it in": [65535, 0], "see it in her": [65535, 0], "it in her face": [65535, 0], "in her face but": [65535, 0], "her face but he": [65535, 0], "face but he wouldn't": [65535, 0], "but he wouldn't look": [65535, 0], "he wouldn't look she": [65535, 0], "wouldn't look she wondered": [65535, 0], "look she wondered then": [65535, 0], "she wondered then she": [65535, 0], "wondered then she was": [65535, 0], "then she was just": [65535, 0], "she was just a": [65535, 0], "was just a grain": [65535, 0], "just a grain troubled": [65535, 0], "a grain troubled next": [65535, 0], "grain troubled next a": [65535, 0], "troubled next a dim": [65535, 0], "next a dim suspicion": [65535, 0], "a dim suspicion came": [65535, 0], "dim suspicion came and": [65535, 0], "suspicion came and went": [65535, 0], "came and went came": [65535, 0], "and went came again": [65535, 0], "went came again she": [65535, 0], "came again she watched": [65535, 0], "again she watched a": [65535, 0], "she watched a furtive": [65535, 0], "watched a furtive glance": [65535, 0], "a furtive glance told": [65535, 0], "furtive glance told her": [65535, 0], "glance told her worlds": [65535, 0], "told her worlds and": [65535, 0], "her worlds and then": [65535, 0], "worlds and then her": [65535, 0], "and then her heart": [65535, 0], "then her heart broke": [65535, 0], "her heart broke and": [65535, 0], "heart broke and she": [65535, 0], "broke and she was": [65535, 0], "and she was jealous": [65535, 0], "she was jealous and": [65535, 0], "was jealous and angry": [65535, 0], "jealous and angry and": [65535, 0], "and angry and the": [65535, 0], "angry and the tears": [65535, 0], "and the tears came": [65535, 0], "the tears came and": [65535, 0], "tears came and she": [65535, 0], "came and she hated": [65535, 0], "and she hated everybody": [65535, 0], "she hated everybody tom": [65535, 0], "hated everybody tom most": [65535, 0], "everybody tom most of": [65535, 0], "tom most of all": [65535, 0], "most of all she": [65535, 0], "of all she thought": [65535, 0], "all she thought tom": [65535, 0], "she thought tom was": [65535, 0], "thought tom was introduced": [65535, 0], "tom was introduced to": [65535, 0], "was introduced to the": [65535, 0], "introduced to the judge": [65535, 0], "to the judge but": [65535, 0], "the judge but his": [65535, 0], "judge but his tongue": [65535, 0], "but his tongue was": [65535, 0], "his tongue was tied": [65535, 0], "tongue was tied his": [65535, 0], "was tied his breath": [65535, 0], "tied his breath would": [65535, 0], "his breath would hardly": [65535, 0], "breath would hardly come": [65535, 0], "would hardly come his": [65535, 0], "hardly come his heart": [65535, 0], "come his heart quaked": [65535, 0], "his heart quaked partly": [65535, 0], "heart quaked partly because": [65535, 0], "quaked partly because of": [65535, 0], "partly because of the": [65535, 0], "because of the awful": [65535, 0], "of the awful greatness": [65535, 0], "the awful greatness of": [65535, 0], "awful greatness of the": [65535, 0], "greatness of the man": [65535, 0], "of the man but": [65535, 0], "the man but mainly": [65535, 0], "man but mainly because": [65535, 0], "but mainly because he": [65535, 0], "mainly because he was": [65535, 0], "because he was her": [65535, 0], "he was her parent": [65535, 0], "was her parent he": [65535, 0], "her parent he would": [65535, 0], "parent he would have": [65535, 0], "he would have liked": [65535, 0], "would have liked to": [65535, 0], "have liked to fall": [65535, 0], "liked to fall down": [65535, 0], "to fall down and": [65535, 0], "fall down and worship": [65535, 0], "down and worship him": [65535, 0], "and worship him if": [65535, 0], "worship him if it": [65535, 0], "him if it were": [65535, 0], "if it were in": [65535, 0], "it were in the": [65535, 0], "were in the dark": [65535, 0], "in the dark the": [65535, 0], "the dark the judge": [65535, 0], "dark the judge put": [65535, 0], "the judge put his": [65535, 0], "judge put his hand": [65535, 0], "put his hand on": [65535, 0], "his hand on tom's": [65535, 0], "hand on tom's head": [65535, 0], "on tom's head and": [65535, 0], "tom's head and called": [65535, 0], "head and called him": [65535, 0], "and called him a": [65535, 0], "called him a fine": [65535, 0], "him a fine little": [65535, 0], "a fine little man": [65535, 0], "fine little man and": [65535, 0], "little man and asked": [65535, 0], "man and asked him": [65535, 0], "and asked him what": [65535, 0], "asked him what his": [65535, 0], "him what his name": [65535, 0], "what his name was": [65535, 0], "his name was the": [65535, 0], "name was the boy": [65535, 0], "was the boy stammered": [65535, 0], "the boy stammered gasped": [65535, 0], "boy stammered gasped and": [65535, 0], "stammered gasped and got": [65535, 0], "gasped and got it": [65535, 0], "got it out tom": [65535, 0], "it out tom oh": [65535, 0], "out tom oh no": [65535, 0], "tom oh no not": [65535, 0], "oh no not tom": [65535, 0], "no not tom it": [65535, 0], "not tom it is": [65535, 0], "tom it is thomas": [65535, 0], "it is thomas ah": [65535, 0], "is thomas ah that's": [65535, 0], "thomas ah that's it": [65535, 0], "ah that's it i": [65535, 0], "that's it i thought": [65535, 0], "it i thought there": [65535, 0], "i thought there was": [65535, 0], "thought there was more": [65535, 0], "there was more to": [65535, 0], "was more to it": [65535, 0], "more to it maybe": [65535, 0], "to it maybe that's": [65535, 0], "it maybe that's very": [65535, 0], "maybe that's very well": [65535, 0], "that's very well but": [65535, 0], "very well but you've": [65535, 0], "well but you've another": [65535, 0], "but you've another one": [65535, 0], "you've another one i": [65535, 0], "another one i daresay": [65535, 0], "one i daresay and": [65535, 0], "i daresay and you'll": [65535, 0], "daresay and you'll tell": [65535, 0], "and you'll tell it": [65535, 0], "you'll tell it to": [65535, 0], "tell it to me": [65535, 0], "it to me won't": [65535, 0], "to me won't you": [65535, 0], "me won't you tell": [65535, 0], "won't you tell the": [65535, 0], "you tell the gentleman": [65535, 0], "tell the gentleman your": [65535, 0], "the gentleman your other": [65535, 0], "gentleman your other name": [65535, 0], "your other name thomas": [65535, 0], "other name thomas said": [65535, 0], "name thomas said walters": [65535, 0], "thomas said walters and": [65535, 0], "said walters and say": [65535, 0], "walters and say sir": [65535, 0], "and say sir you": [65535, 0], "say sir you mustn't": [65535, 0], "sir you mustn't forget": [65535, 0], "you mustn't forget your": [65535, 0], "mustn't forget your manners": [65535, 0], "forget your manners thomas": [65535, 0], "your manners thomas sawyer": [65535, 0], "manners thomas sawyer sir": [65535, 0], "thomas sawyer sir that's": [65535, 0], "sawyer sir that's it": [65535, 0], "sir that's it that's": [65535, 0], "that's it that's a": [65535, 0], "it that's a good": [65535, 0], "a good boy fine": [65535, 0], "good boy fine boy": [65535, 0], "boy fine boy fine": [65535, 0], "fine boy fine manly": [65535, 0], "boy fine manly little": [65535, 0], "fine manly little fellow": [65535, 0], "manly little fellow two": [65535, 0], "little fellow two thousand": [65535, 0], "fellow two thousand verses": [65535, 0], "two thousand verses is": [65535, 0], "thousand verses is a": [65535, 0], "verses is a great": [65535, 0], "is a great many": [65535, 0], "a great many very": [65535, 0], "great many very very": [65535, 0], "many very very great": [65535, 0], "very very great many": [65535, 0], "very great many and": [65535, 0], "great many and you": [65535, 0], "many and you never": [65535, 0], "and you never can": [65535, 0], "you never can be": [65535, 0], "never can be sorry": [65535, 0], "can be sorry for": [65535, 0], "be sorry for the": [65535, 0], "sorry for the trouble": [65535, 0], "for the trouble you": [65535, 0], "the trouble you took": [65535, 0], "trouble you took to": [65535, 0], "you took to learn": [65535, 0], "took to learn them": [65535, 0], "to learn them for": [65535, 0], "learn them for knowledge": [65535, 0], "them for knowledge is": [65535, 0], "for knowledge is worth": [65535, 0], "knowledge is worth more": [65535, 0], "is worth more than": [65535, 0], "worth more than anything": [65535, 0], "more than anything there": [65535, 0], "than anything there is": [65535, 0], "anything there is in": [65535, 0], "there is in the": [65535, 0], "is in the world": [65535, 0], "in the world it's": [65535, 0], "the world it's what": [65535, 0], "world it's what makes": [65535, 0], "it's what makes great": [65535, 0], "what makes great men": [65535, 0], "makes great men and": [65535, 0], "great men and good": [65535, 0], "men and good men": [65535, 0], "and good men you'll": [65535, 0], "good men you'll be": [65535, 0], "men you'll be a": [65535, 0], "you'll be a great": [65535, 0], "be a great man": [65535, 0], "a great man and": [65535, 0], "great man and a": [65535, 0], "man and a good": [65535, 0], "and a good man": [65535, 0], "a good man yourself": [65535, 0], "good man yourself some": [65535, 0], "man yourself some day": [65535, 0], "yourself some day thomas": [65535, 0], "some day thomas and": [65535, 0], "day thomas and then": [65535, 0], "thomas and then you'll": [65535, 0], "and then you'll look": [65535, 0], "then you'll look back": [65535, 0], "you'll look back and": [65535, 0], "look back and say": [65535, 0], "back and say it's": [65535, 0], "and say it's all": [65535, 0], "say it's all owing": [65535, 0], "it's all owing to": [65535, 0], "all owing to the": [65535, 0], "owing to the precious": [65535, 0], "to the precious sunday": [65535, 0], "the precious sunday school": [65535, 0], "precious sunday school privileges": [65535, 0], "sunday school privileges of": [65535, 0], "school privileges of my": [65535, 0], "privileges of my boyhood": [65535, 0], "of my boyhood it's": [65535, 0], "my boyhood it's all": [65535, 0], "boyhood it's all owing": [65535, 0], "all owing to my": [65535, 0], "owing to my dear": [65535, 0], "to my dear teachers": [65535, 0], "my dear teachers that": [65535, 0], "dear teachers that taught": [65535, 0], "teachers that taught me": [65535, 0], "that taught me to": [65535, 0], "taught me to learn": [65535, 0], "me to learn it's": [65535, 0], "to learn it's all": [65535, 0], "learn it's all owing": [65535, 0], "owing to the good": [65535, 0], "to the good superintendent": [65535, 0], "the good superintendent who": [65535, 0], "good superintendent who encouraged": [65535, 0], "superintendent who encouraged me": [65535, 0], "who encouraged me and": [65535, 0], "encouraged me and watched": [65535, 0], "me and watched over": [65535, 0], "and watched over me": [65535, 0], "watched over me and": [65535, 0], "over me and gave": [65535, 0], "me and gave me": [65535, 0], "and gave me a": [65535, 0], "gave me a beautiful": [65535, 0], "me a beautiful bible": [65535, 0], "a beautiful bible a": [65535, 0], "beautiful bible a splendid": [65535, 0], "bible a splendid elegant": [65535, 0], "a splendid elegant bible": [65535, 0], "splendid elegant bible to": [65535, 0], "elegant bible to keep": [65535, 0], "bible to keep and": [65535, 0], "to keep and have": [65535, 0], "keep and have it": [65535, 0], "and have it all": [65535, 0], "have it all for": [65535, 0], "it all for my": [65535, 0], "all for my own": [65535, 0], "for my own always": [65535, 0], "my own always it's": [65535, 0], "own always it's all": [65535, 0], "always it's all owing": [65535, 0], "all owing to right": [65535, 0], "owing to right bringing": [65535, 0], "to right bringing up": [65535, 0], "right bringing up that": [65535, 0], "bringing up that is": [65535, 0], "up that is what": [65535, 0], "that is what you": [65535, 0], "is what you will": [65535, 0], "what you will say": [65535, 0], "you will say thomas": [65535, 0], "will say thomas and": [65535, 0], "say thomas and you": [65535, 0], "thomas and you wouldn't": [65535, 0], "and you wouldn't take": [65535, 0], "you wouldn't take any": [65535, 0], "wouldn't take any money": [65535, 0], "take any money for": [65535, 0], "any money for those": [65535, 0], "money for those two": [65535, 0], "for those two thousand": [65535, 0], "those two thousand verses": [65535, 0], "two thousand verses no": [65535, 0], "thousand verses no indeed": [65535, 0], "verses no indeed you": [65535, 0], "no indeed you wouldn't": [65535, 0], "indeed you wouldn't and": [65535, 0], "you wouldn't and now": [65535, 0], "wouldn't and now you": [65535, 0], "and now you wouldn't": [65535, 0], "now you wouldn't mind": [65535, 0], "you wouldn't mind telling": [65535, 0], "wouldn't mind telling me": [65535, 0], "mind telling me and": [65535, 0], "telling me and this": [65535, 0], "me and this lady": [65535, 0], "and this lady some": [65535, 0], "this lady some of": [65535, 0], "lady some of the": [65535, 0], "some of the things": [65535, 0], "of the things you've": [65535, 0], "the things you've learned": [65535, 0], "things you've learned no": [65535, 0], "you've learned no i": [65535, 0], "learned no i know": [65535, 0], "no i know you": [65535, 0], "i know you wouldn't": [65535, 0], "know you wouldn't for": [65535, 0], "you wouldn't for we": [65535, 0], "wouldn't for we are": [65535, 0], "for we are proud": [65535, 0], "we are proud of": [65535, 0], "are proud of little": [65535, 0], "proud of little boys": [65535, 0], "of little boys that": [65535, 0], "little boys that learn": [65535, 0], "boys that learn now": [65535, 0], "that learn now no": [65535, 0], "learn now no doubt": [65535, 0], "now no doubt you": [65535, 0], "no doubt you know": [65535, 0], "doubt you know the": [65535, 0], "you know the names": [65535, 0], "know the names of": [65535, 0], "the names of all": [65535, 0], "names of all the": [65535, 0], "of all the twelve": [65535, 0], "all the twelve disciples": [65535, 0], "the twelve disciples won't": [65535, 0], "twelve disciples won't you": [65535, 0], "disciples won't you tell": [65535, 0], "won't you tell us": [65535, 0], "you tell us the": [65535, 0], "tell us the names": [65535, 0], "us the names of": [65535, 0], "the names of the": [65535, 0], "names of the first": [65535, 0], "of the first two": [65535, 0], "the first two that": [65535, 0], "first two that were": [65535, 0], "two that were appointed": [65535, 0], "that were appointed tom": [65535, 0], "were appointed tom was": [65535, 0], "appointed tom was tugging": [65535, 0], "tom was tugging at": [65535, 0], "was tugging at a": [65535, 0], "tugging at a button": [65535, 0], "at a button hole": [65535, 0], "a button hole and": [65535, 0], "button hole and looking": [65535, 0], "hole and looking sheepish": [65535, 0], "and looking sheepish he": [65535, 0], "looking sheepish he blushed": [65535, 0], "sheepish he blushed now": [65535, 0], "he blushed now and": [65535, 0], "blushed now and his": [65535, 0], "now and his eyes": [65535, 0], "and his eyes fell": [65535, 0], "his eyes fell mr": [65535, 0], "eyes fell mr walters'": [65535, 0], "fell mr walters' heart": [65535, 0], "mr walters' heart sank": [65535, 0], "walters' heart sank within": [65535, 0], "heart sank within him": [65535, 0], "sank within him he": [65535, 0], "within him he said": [65535, 0], "him he said to": [65535, 0], "said to himself it": [65535, 0], "to himself it is": [65535, 0], "himself it is not": [65535, 0], "it is not possible": [65535, 0], "is not possible that": [65535, 0], "not possible that the": [65535, 0], "possible that the boy": [65535, 0], "that the boy can": [65535, 0], "the boy can answer": [65535, 0], "boy can answer the": [65535, 0], "can answer the simplest": [65535, 0], "answer the simplest question": [65535, 0], "the simplest question why": [65535, 0], "simplest question why did": [65535, 0], "question why did the": [65535, 0], "why did the judge": [65535, 0], "did the judge ask": [65535, 0], "the judge ask him": [65535, 0], "judge ask him yet": [65535, 0], "ask him yet he": [65535, 0], "him yet he felt": [65535, 0], "yet he felt obliged": [65535, 0], "he felt obliged to": [65535, 0], "felt obliged to speak": [65535, 0], "obliged to speak up": [65535, 0], "to speak up and": [65535, 0], "speak up and say": [65535, 0], "up and say answer": [65535, 0], "and say answer the": [65535, 0], "say answer the gentleman": [65535, 0], "answer the gentleman thomas": [65535, 0], "the gentleman thomas don't": [65535, 0], "gentleman thomas don't be": [65535, 0], "thomas don't be afraid": [65535, 0], "don't be afraid tom": [65535, 0], "be afraid tom still": [65535, 0], "afraid tom still hung": [65535, 0], "tom still hung fire": [65535, 0], "still hung fire now": [65535, 0], "hung fire now i": [65535, 0], "fire now i know": [65535, 0], "now i know you'll": [65535, 0], "i know you'll tell": [65535, 0], "know you'll tell me": [65535, 0], "you'll tell me said": [65535, 0], "tell me said the": [65535, 0], "me said the lady": [65535, 0], "said the lady the": [65535, 0], "the lady the names": [65535, 0], "lady the names of": [65535, 0], "the first two disciples": [65535, 0], "first two disciples were": [65535, 0], "two disciples were david": [65535, 0], "disciples were david and": [65535, 0], "were david and goliath": [65535, 0], "david and goliath let": [65535, 0], "and goliath let us": [65535, 0], "goliath let us draw": [65535, 0], "let us draw the": [65535, 0], "us draw the curtain": [65535, 0], "draw the curtain of": [65535, 0], "the curtain of charity": [65535, 0], "curtain of charity over": [65535, 0], "of charity over the": [65535, 0], "charity over the rest": [65535, 0], "over the rest of": [65535, 0], "rest of the scene": [65535, 0], "the sun rose upon a": [65535, 0], "sun rose upon a tranquil": [65535, 0], "rose upon a tranquil world": [65535, 0], "upon a tranquil world and": [65535, 0], "a tranquil world and beamed": [65535, 0], "tranquil world and beamed down": [65535, 0], "world and beamed down upon": [65535, 0], "and beamed down upon the": [65535, 0], "beamed down upon the peaceful": [65535, 0], "down upon the peaceful village": [65535, 0], "upon the peaceful village like": [65535, 0], "the peaceful village like a": [65535, 0], "peaceful village like a benediction": [65535, 0], "village like a benediction breakfast": [65535, 0], "like a benediction breakfast over": [65535, 0], "a benediction breakfast over aunt": [65535, 0], "benediction breakfast over aunt polly": [65535, 0], "breakfast over aunt polly had": [65535, 0], "over aunt polly had family": [65535, 0], "aunt polly had family worship": [65535, 0], "polly had family worship it": [65535, 0], "had family worship it began": [65535, 0], "family worship it began with": [65535, 0], "worship it began with a": [65535, 0], "it began with a prayer": [65535, 0], "began with a prayer built": [65535, 0], "with a prayer built from": [65535, 0], "a prayer built from the": [65535, 0], "prayer built from the ground": [65535, 0], "built from the ground up": [65535, 0], "from the ground up of": [65535, 0], "the ground up of solid": [65535, 0], "ground up of solid courses": [65535, 0], "up of solid courses of": [65535, 0], "of solid courses of scriptural": [65535, 0], "solid courses of scriptural quotations": [65535, 0], "courses of scriptural quotations welded": [65535, 0], "of scriptural quotations welded together": [65535, 0], "scriptural quotations welded together with": [65535, 0], "quotations welded together with a": [65535, 0], "welded together with a thin": [65535, 0], "together with a thin mortar": [65535, 0], "with a thin mortar of": [65535, 0], "a thin mortar of originality": [65535, 0], "thin mortar of originality and": [65535, 0], "mortar of originality and from": [65535, 0], "of originality and from the": [65535, 0], "originality and from the summit": [65535, 0], "and from the summit of": [65535, 0], "from the summit of this": [65535, 0], "the summit of this she": [65535, 0], "summit of this she delivered": [65535, 0], "of this she delivered a": [65535, 0], "this she delivered a grim": [65535, 0], "she delivered a grim chapter": [65535, 0], "delivered a grim chapter of": [65535, 0], "a grim chapter of the": [65535, 0], "grim chapter of the mosaic": [65535, 0], "chapter of the mosaic law": [65535, 0], "of the mosaic law as": [65535, 0], "the mosaic law as from": [65535, 0], "mosaic law as from sinai": [65535, 0], "law as from sinai then": [65535, 0], "as from sinai then tom": [65535, 0], "from sinai then tom girded": [65535, 0], "sinai then tom girded up": [65535, 0], "then tom girded up his": [65535, 0], "tom girded up his loins": [65535, 0], "girded up his loins so": [65535, 0], "up his loins so to": [65535, 0], "his loins so to speak": [65535, 0], "loins so to speak and": [65535, 0], "so to speak and went": [65535, 0], "to speak and went to": [65535, 0], "speak and went to work": [65535, 0], "and went to work to": [65535, 0], "went to work to get": [65535, 0], "to work to get his": [65535, 0], "work to get his verses": [65535, 0], "to get his verses sid": [65535, 0], "get his verses sid had": [65535, 0], "his verses sid had learned": [65535, 0], "verses sid had learned his": [65535, 0], "sid had learned his lesson": [65535, 0], "had learned his lesson days": [65535, 0], "learned his lesson days before": [65535, 0], "his lesson days before tom": [65535, 0], "lesson days before tom bent": [65535, 0], "days before tom bent all": [65535, 0], "before tom bent all his": [65535, 0], "tom bent all his energies": [65535, 0], "bent all his energies to": [65535, 0], "all his energies to the": [65535, 0], "his energies to the memorizing": [65535, 0], "energies to the memorizing of": [65535, 0], "to the memorizing of five": [65535, 0], "the memorizing of five verses": [65535, 0], "memorizing of five verses and": [65535, 0], "of five verses and he": [65535, 0], "five verses and he chose": [65535, 0], "verses and he chose part": [65535, 0], "and he chose part of": [65535, 0], "he chose part of the": [65535, 0], "chose part of the sermon": [65535, 0], "part of the sermon on": [65535, 0], "of the sermon on the": [65535, 0], "the sermon on the mount": [65535, 0], "sermon on the mount because": [65535, 0], "on the mount because he": [65535, 0], "the mount because he could": [65535, 0], "mount because he could find": [65535, 0], "because he could find no": [65535, 0], "he could find no verses": [65535, 0], "could find no verses that": [65535, 0], "find no verses that were": [65535, 0], "no verses that were shorter": [65535, 0], "verses that were shorter at": [65535, 0], "that were shorter at the": [65535, 0], "were shorter at the end": [65535, 0], "shorter at the end of": [65535, 0], "at the end of half": [65535, 0], "the end of half an": [65535, 0], "end of half an hour": [65535, 0], "of half an hour tom": [65535, 0], "half an hour tom had": [65535, 0], "an hour tom had a": [65535, 0], "hour tom had a vague": [65535, 0], "tom had a vague general": [65535, 0], "had a vague general idea": [65535, 0], "a vague general idea of": [65535, 0], "vague general idea of his": [65535, 0], "general idea of his lesson": [65535, 0], "idea of his lesson but": [65535, 0], "of his lesson but no": [65535, 0], "his lesson but no more": [65535, 0], "lesson but no more for": [65535, 0], "but no more for his": [65535, 0], "no more for his mind": [65535, 0], "more for his mind was": [65535, 0], "for his mind was traversing": [65535, 0], "his mind was traversing the": [65535, 0], "mind was traversing the whole": [65535, 0], "was traversing the whole field": [65535, 0], "traversing the whole field of": [65535, 0], "the whole field of human": [65535, 0], "whole field of human thought": [65535, 0], "field of human thought and": [65535, 0], "of human thought and his": [65535, 0], "human thought and his hands": [65535, 0], "thought and his hands were": [65535, 0], "and his hands were busy": [65535, 0], "his hands were busy with": [65535, 0], "hands were busy with distracting": [65535, 0], "were busy with distracting recreations": [65535, 0], "busy with distracting recreations mary": [65535, 0], "with distracting recreations mary took": [65535, 0], "distracting recreations mary took his": [65535, 0], "recreations mary took his book": [65535, 0], "mary took his book to": [65535, 0], "took his book to hear": [65535, 0], "his book to hear him": [65535, 0], "book to hear him recite": [65535, 0], "to hear him recite and": [65535, 0], "hear him recite and he": [65535, 0], "him recite and he tried": [65535, 0], "recite and he tried to": [65535, 0], "and he tried to find": [65535, 0], "he tried to find his": [65535, 0], "tried to find his way": [65535, 0], "to find his way through": [65535, 0], "find his way through the": [65535, 0], "his way through the fog": [65535, 0], "way through the fog blessed": [65535, 0], "through the fog blessed are": [65535, 0], "the fog blessed are the": [65535, 0], "fog blessed are the a": [65535, 0], "blessed are the a a": [65535, 0], "are the a a poor": [65535, 0], "the a a poor yes": [65535, 0], "a a poor yes poor": [65535, 0], "a poor yes poor blessed": [65535, 0], "poor yes poor blessed are": [65535, 0], "yes poor blessed are the": [65535, 0], "poor blessed are the poor": [65535, 0], "blessed are the poor a": [65535, 0], "are the poor a a": [65535, 0], "the poor a a in": [65535, 0], "poor a a in spirit": [65535, 0], "a a in spirit in": [65535, 0], "a in spirit in spirit": [65535, 0], "in spirit in spirit blessed": [65535, 0], "spirit in spirit blessed are": [65535, 0], "in spirit blessed are the": [65535, 0], "spirit blessed are the poor": [65535, 0], "blessed are the poor in": [65535, 0], "are the poor in spirit": [65535, 0], "the poor in spirit for": [65535, 0], "poor in spirit for they": [65535, 0], "in spirit for they they": [65535, 0], "spirit for they they theirs": [65535, 0], "for they they theirs for": [65535, 0], "they they theirs for theirs": [65535, 0], "they theirs for theirs blessed": [65535, 0], "theirs for theirs blessed are": [65535, 0], "for theirs blessed are the": [65535, 0], "theirs blessed are the poor": [65535, 0], "poor in spirit for theirs": [65535, 0], "in spirit for theirs is": [65535, 0], "spirit for theirs is the": [65535, 0], "for theirs is the kingdom": [65535, 0], "theirs is the kingdom of": [65535, 0], "is the kingdom of heaven": [65535, 0], "the kingdom of heaven blessed": [65535, 0], "kingdom of heaven blessed are": [65535, 0], "of heaven blessed are they": [65535, 0], "heaven blessed are they that": [65535, 0], "blessed are they that mourn": [65535, 0], "are they that mourn for": [65535, 0], "they that mourn for they": [65535, 0], "that mourn for they they": [65535, 0], "mourn for they they sh": [65535, 0], "for they they sh for": [65535, 0], "they they sh for they": [65535, 0], "they sh for they a": [65535, 0], "sh for they a s": [65535, 0], "for they a s h": [65535, 0], "they a s h a": [65535, 0], "a s h a for": [65535, 0], "s h a for they": [65535, 0], "h a for they s": [65535, 0], "a for they s h": [65535, 0], "for they s h oh": [65535, 0], "they s h oh i": [65535, 0], "s h oh i don't": [65535, 0], "h oh i don't know": [65535, 0], "oh i don't know what": [65535, 0], "i don't know what it": [65535, 0], "don't know what it is": [65535, 0], "know what it is shall": [65535, 0], "what it is shall oh": [65535, 0], "it is shall oh shall": [65535, 0], "is shall oh shall for": [65535, 0], "shall oh shall for they": [65535, 0], "oh shall for they shall": [65535, 0], "shall for they shall for": [65535, 0], "for they shall for they": [65535, 0], "they shall for they shall": [65535, 0], "shall for they shall a": [65535, 0], "for they shall a a": [65535, 0], "they shall a a shall": [65535, 0], "shall a a shall mourn": [65535, 0], "a a shall mourn a": [65535, 0], "a shall mourn a a": [65535, 0], "shall mourn a a blessed": [65535, 0], "mourn a a blessed are": [65535, 0], "a a blessed are they": [65535, 0], "a blessed are they that": [65535, 0], "blessed are they that shall": [65535, 0], "are they that shall they": [65535, 0], "they that shall they that": [65535, 0], "that shall they that a": [65535, 0], "shall they that a they": [65535, 0], "they that a they that": [65535, 0], "that a they that shall": [65535, 0], "a they that shall mourn": [65535, 0], "they that shall mourn for": [65535, 0], "that shall mourn for they": [65535, 0], "shall mourn for they shall": [65535, 0], "mourn for they shall a": [65535, 0], "for they shall a shall": [65535, 0], "they shall a shall what": [65535, 0], "shall a shall what why": [65535, 0], "a shall what why don't": [65535, 0], "shall what why don't you": [65535, 0], "what why don't you tell": [65535, 0], "why don't you tell me": [65535, 0], "don't you tell me mary": [65535, 0], "you tell me mary what": [65535, 0], "tell me mary what do": [65535, 0], "me mary what do you": [65535, 0], "mary what do you want": [65535, 0], "what do you want to": [65535, 0], "do you want to be": [65535, 0], "you want to be so": [65535, 0], "want to be so mean": [65535, 0], "to be so mean for": [65535, 0], "be so mean for oh": [65535, 0], "so mean for oh tom": [65535, 0], "mean for oh tom you": [65535, 0], "for oh tom you poor": [65535, 0], "oh tom you poor thick": [65535, 0], "tom you poor thick headed": [65535, 0], "you poor thick headed thing": [65535, 0], "poor thick headed thing i'm": [65535, 0], "thick headed thing i'm not": [65535, 0], "headed thing i'm not teasing": [65535, 0], "thing i'm not teasing you": [65535, 0], "i'm not teasing you i": [65535, 0], "not teasing you i wouldn't": [65535, 0], "teasing you i wouldn't do": [65535, 0], "you i wouldn't do that": [65535, 0], "i wouldn't do that you": [65535, 0], "wouldn't do that you must": [65535, 0], "do that you must go": [65535, 0], "that you must go and": [65535, 0], "you must go and learn": [65535, 0], "must go and learn it": [65535, 0], "go and learn it again": [65535, 0], "and learn it again don't": [65535, 0], "learn it again don't you": [65535, 0], "it again don't you be": [65535, 0], "again don't you be discouraged": [65535, 0], "don't you be discouraged tom": [65535, 0], "you be discouraged tom you'll": [65535, 0], "be discouraged tom you'll manage": [65535, 0], "discouraged tom you'll manage it": [65535, 0], "tom you'll manage it and": [65535, 0], "you'll manage it and if": [65535, 0], "manage it and if you": [65535, 0], "it and if you do": [65535, 0], "and if you do i'll": [65535, 0], "if you do i'll give": [65535, 0], "you do i'll give you": [65535, 0], "do i'll give you something": [65535, 0], "i'll give you something ever": [65535, 0], "give you something ever so": [65535, 0], "you something ever so nice": [65535, 0], "something ever so nice there": [65535, 0], "ever so nice there now": [65535, 0], "so nice there now that's": [65535, 0], "nice there now that's a": [65535, 0], "there now that's a good": [65535, 0], "now that's a good boy": [65535, 0], "that's a good boy all": [65535, 0], "a good boy all right": [65535, 0], "good boy all right what": [65535, 0], "boy all right what is": [65535, 0], "all right what is it": [65535, 0], "right what is it mary": [65535, 0], "what is it mary tell": [65535, 0], "is it mary tell me": [65535, 0], "it mary tell me what": [65535, 0], "mary tell me what it": [65535, 0], "tell me what it is": [65535, 0], "me what it is never": [65535, 0], "what it is never you": [65535, 0], "it is never you mind": [65535, 0], "is never you mind tom": [65535, 0], "never you mind tom you": [65535, 0], "you mind tom you know": [65535, 0], "mind tom you know if": [65535, 0], "tom you know if i": [65535, 0], "you know if i say": [65535, 0], "know if i say it's": [65535, 0], "if i say it's nice": [65535, 0], "i say it's nice it": [65535, 0], "say it's nice it is": [65535, 0], "it's nice it is nice": [65535, 0], "nice it is nice you": [65535, 0], "it is nice you bet": [65535, 0], "is nice you bet you": [65535, 0], "nice you bet you that's": [65535, 0], "you bet you that's so": [65535, 0], "bet you that's so mary": [65535, 0], "you that's so mary all": [65535, 0], "that's so mary all right": [65535, 0], "so mary all right i'll": [65535, 0], "mary all right i'll tackle": [65535, 0], "all right i'll tackle it": [65535, 0], "right i'll tackle it again": [65535, 0], "i'll tackle it again and": [65535, 0], "tackle it again and he": [65535, 0], "it again and he did": [65535, 0], "again and he did tackle": [65535, 0], "and he did tackle it": [65535, 0], "he did tackle it again": [65535, 0], "did tackle it again and": [65535, 0], "tackle it again and under": [65535, 0], "it again and under the": [65535, 0], "again and under the double": [65535, 0], "and under the double pressure": [65535, 0], "under the double pressure of": [65535, 0], "the double pressure of curiosity": [65535, 0], "double pressure of curiosity and": [65535, 0], "pressure of curiosity and prospective": [65535, 0], "of curiosity and prospective gain": [65535, 0], "curiosity and prospective gain he": [65535, 0], "and prospective gain he did": [65535, 0], "prospective gain he did it": [65535, 0], "gain he did it with": [65535, 0], "he did it with such": [65535, 0], "did it with such spirit": [65535, 0], "it with such spirit that": [65535, 0], "with such spirit that he": [65535, 0], "such spirit that he accomplished": [65535, 0], "spirit that he accomplished a": [65535, 0], "that he accomplished a shining": [65535, 0], "he accomplished a shining success": [65535, 0], "accomplished a shining success mary": [65535, 0], "a shining success mary gave": [65535, 0], "shining success mary gave him": [65535, 0], "success mary gave him a": [65535, 0], "mary gave him a brand": [65535, 0], "gave him a brand new": [65535, 0], "him a brand new barlow": [65535, 0], "a brand new barlow knife": [65535, 0], "brand new barlow knife worth": [65535, 0], "new barlow knife worth twelve": [65535, 0], "barlow knife worth twelve and": [65535, 0], "knife worth twelve and a": [65535, 0], "worth twelve and a half": [65535, 0], "twelve and a half cents": [65535, 0], "and a half cents and": [65535, 0], "a half cents and the": [65535, 0], "half cents and the convulsion": [65535, 0], "cents and the convulsion of": [65535, 0], "and the convulsion of delight": [65535, 0], "the convulsion of delight that": [65535, 0], "convulsion of delight that swept": [65535, 0], "of delight that swept his": [65535, 0], "delight that swept his system": [65535, 0], "that swept his system shook": [65535, 0], "swept his system shook him": [65535, 0], "his system shook him to": [65535, 0], "system shook him to his": [65535, 0], "shook him to his foundations": [65535, 0], "him to his foundations true": [65535, 0], "to his foundations true the": [65535, 0], "his foundations true the knife": [65535, 0], "foundations true the knife would": [65535, 0], "true the knife would not": [65535, 0], "the knife would not cut": [65535, 0], "knife would not cut anything": [65535, 0], "would not cut anything but": [65535, 0], "not cut anything but it": [65535, 0], "cut anything but it was": [65535, 0], "anything but it was a": [65535, 0], "but it was a sure": [65535, 0], "it was a sure enough": [65535, 0], "was a sure enough barlow": [65535, 0], "a sure enough barlow and": [65535, 0], "sure enough barlow and there": [65535, 0], "enough barlow and there was": [65535, 0], "barlow and there was inconceivable": [65535, 0], "and there was inconceivable grandeur": [65535, 0], "there was inconceivable grandeur in": [65535, 0], "was inconceivable grandeur in that": [65535, 0], "inconceivable grandeur in that though": [65535, 0], "grandeur in that though where": [65535, 0], "in that though where the": [65535, 0], "that though where the western": [65535, 0], "though where the western boys": [65535, 0], "where the western boys ever": [65535, 0], "the western boys ever got": [65535, 0], "western boys ever got the": [65535, 0], "boys ever got the idea": [65535, 0], "ever got the idea that": [65535, 0], "got the idea that such": [65535, 0], "the idea that such a": [65535, 0], "idea that such a weapon": [65535, 0], "that such a weapon could": [65535, 0], "such a weapon could possibly": [65535, 0], "a weapon could possibly be": [65535, 0], "weapon could possibly be counterfeited": [65535, 0], "could possibly be counterfeited to": [65535, 0], "possibly be counterfeited to its": [65535, 0], "be counterfeited to its injury": [65535, 0], "counterfeited to its injury is": [65535, 0], "to its injury is an": [65535, 0], "its injury is an imposing": [65535, 0], "injury is an imposing mystery": [65535, 0], "is an imposing mystery and": [65535, 0], "an imposing mystery and will": [65535, 0], "imposing mystery and will always": [65535, 0], "mystery and will always remain": [65535, 0], "and will always remain so": [65535, 0], "will always remain so perhaps": [65535, 0], "always remain so perhaps tom": [65535, 0], "remain so perhaps tom contrived": [65535, 0], "so perhaps tom contrived to": [65535, 0], "perhaps tom contrived to scarify": [65535, 0], "tom contrived to scarify the": [65535, 0], "contrived to scarify the cupboard": [65535, 0], "to scarify the cupboard with": [65535, 0], "scarify the cupboard with it": [65535, 0], "the cupboard with it and": [65535, 0], "cupboard with it and was": [65535, 0], "with it and was arranging": [65535, 0], "it and was arranging to": [65535, 0], "and was arranging to begin": [65535, 0], "was arranging to begin on": [65535, 0], "arranging to begin on the": [65535, 0], "to begin on the bureau": [65535, 0], "begin on the bureau when": [65535, 0], "on the bureau when he": [65535, 0], "the bureau when he was": [65535, 0], "bureau when he was called": [65535, 0], "when he was called off": [65535, 0], "he was called off to": [65535, 0], "was called off to dress": [65535, 0], "called off to dress for": [65535, 0], "off to dress for sunday": [65535, 0], "to dress for sunday school": [65535, 0], "dress for sunday school mary": [65535, 0], "for sunday school mary gave": [65535, 0], "sunday school mary gave him": [65535, 0], "school mary gave him a": [65535, 0], "mary gave him a tin": [65535, 0], "gave him a tin basin": [65535, 0], "him a tin basin of": [65535, 0], "a tin basin of water": [65535, 0], "tin basin of water and": [65535, 0], "basin of water and a": [65535, 0], "of water and a piece": [65535, 0], "water and a piece of": [65535, 0], "and a piece of soap": [65535, 0], "a piece of soap and": [65535, 0], "piece of soap and he": [65535, 0], "of soap and he went": [65535, 0], "soap and he went outside": [65535, 0], "and he went outside the": [65535, 0], "he went outside the door": [65535, 0], "went outside the door and": [65535, 0], "outside the door and set": [65535, 0], "the door and set the": [65535, 0], "door and set the basin": [65535, 0], "and set the basin on": [65535, 0], "set the basin on a": [65535, 0], "the basin on a little": [65535, 0], "basin on a little bench": [65535, 0], "on a little bench there": [65535, 0], "a little bench there then": [65535, 0], "little bench there then he": [65535, 0], "bench there then he dipped": [65535, 0], "there then he dipped the": [65535, 0], "then he dipped the soap": [65535, 0], "he dipped the soap in": [65535, 0], "dipped the soap in the": [65535, 0], "the soap in the water": [65535, 0], "soap in the water and": [65535, 0], "in the water and laid": [65535, 0], "the water and laid it": [65535, 0], "water and laid it down": [65535, 0], "and laid it down turned": [65535, 0], "laid it down turned up": [65535, 0], "it down turned up his": [65535, 0], "down turned up his sleeves": [65535, 0], "turned up his sleeves poured": [65535, 0], "up his sleeves poured out": [65535, 0], "his sleeves poured out the": [65535, 0], "sleeves poured out the water": [65535, 0], "poured out the water on": [65535, 0], "out the water on the": [65535, 0], "the water on the ground": [65535, 0], "water on the ground gently": [65535, 0], "on the ground gently and": [65535, 0], "the ground gently and then": [65535, 0], "ground gently and then entered": [65535, 0], "gently and then entered the": [65535, 0], "and then entered the kitchen": [65535, 0], "then entered the kitchen and": [65535, 0], "entered the kitchen and began": [65535, 0], "the kitchen and began to": [65535, 0], "kitchen and began to wipe": [65535, 0], "and began to wipe his": [65535, 0], "began to wipe his face": [65535, 0], "to wipe his face diligently": [65535, 0], "wipe his face diligently on": [65535, 0], "his face diligently on the": [65535, 0], "face diligently on the towel": [65535, 0], "diligently on the towel behind": [65535, 0], "on the towel behind the": [65535, 0], "the towel behind the door": [65535, 0], "towel behind the door but": [65535, 0], "behind the door but mary": [65535, 0], "the door but mary removed": [65535, 0], "door but mary removed the": [65535, 0], "but mary removed the towel": [65535, 0], "mary removed the towel and": [65535, 0], "removed the towel and said": [65535, 0], "the towel and said now": [65535, 0], "towel and said now ain't": [65535, 0], "and said now ain't you": [65535, 0], "said now ain't you ashamed": [65535, 0], "now ain't you ashamed tom": [65535, 0], "ain't you ashamed tom you": [65535, 0], "you ashamed tom you mustn't": [65535, 0], "ashamed tom you mustn't be": [65535, 0], "tom you mustn't be so": [65535, 0], "you mustn't be so bad": [65535, 0], "mustn't be so bad water": [65535, 0], "be so bad water won't": [65535, 0], "so bad water won't hurt": [65535, 0], "bad water won't hurt you": [65535, 0], "water won't hurt you tom": [65535, 0], "won't hurt you tom was": [65535, 0], "hurt you tom was a": [65535, 0], "you tom was a trifle": [65535, 0], "tom was a trifle disconcerted": [65535, 0], "was a trifle disconcerted the": [65535, 0], "a trifle disconcerted the basin": [65535, 0], "trifle disconcerted the basin was": [65535, 0], "disconcerted the basin was refilled": [65535, 0], "the basin was refilled and": [65535, 0], "basin was refilled and this": [65535, 0], "was refilled and this time": [65535, 0], "refilled and this time he": [65535, 0], "and this time he stood": [65535, 0], "this time he stood over": [65535, 0], "time he stood over it": [65535, 0], "he stood over it a": [65535, 0], "stood over it a little": [65535, 0], "over it a little while": [65535, 0], "it a little while gathering": [65535, 0], "a little while gathering resolution": [65535, 0], "little while gathering resolution took": [65535, 0], "while gathering resolution took in": [65535, 0], "gathering resolution took in a": [65535, 0], "resolution took in a big": [65535, 0], "took in a big breath": [65535, 0], "in a big breath and": [65535, 0], "a big breath and began": [65535, 0], "big breath and began when": [65535, 0], "breath and began when he": [65535, 0], "and began when he entered": [65535, 0], "began when he entered the": [65535, 0], "when he entered the kitchen": [65535, 0], "he entered the kitchen presently": [65535, 0], "entered the kitchen presently with": [65535, 0], "the kitchen presently with both": [65535, 0], "kitchen presently with both eyes": [65535, 0], "presently with both eyes shut": [65535, 0], "with both eyes shut and": [65535, 0], "both eyes shut and groping": [65535, 0], "eyes shut and groping for": [65535, 0], "shut and groping for the": [65535, 0], "and groping for the towel": [65535, 0], "groping for the towel with": [65535, 0], "for the towel with his": [65535, 0], "the towel with his hands": [65535, 0], "towel with his hands an": [65535, 0], "with his hands an honorable": [65535, 0], "his hands an honorable testimony": [65535, 0], "hands an honorable testimony of": [65535, 0], "an honorable testimony of suds": [65535, 0], "honorable testimony of suds and": [65535, 0], "testimony of suds and water": [65535, 0], "of suds and water was": [65535, 0], "suds and water was dripping": [65535, 0], "and water was dripping from": [65535, 0], "water was dripping from his": [65535, 0], "was dripping from his face": [65535, 0], "dripping from his face but": [65535, 0], "from his face but when": [65535, 0], "his face but when he": [65535, 0], "face but when he emerged": [65535, 0], "but when he emerged from": [65535, 0], "when he emerged from the": [65535, 0], "he emerged from the towel": [65535, 0], "emerged from the towel he": [65535, 0], "from the towel he was": [65535, 0], "the towel he was not": [65535, 0], "towel he was not yet": [65535, 0], "he was not yet satisfactory": [65535, 0], "was not yet satisfactory for": [65535, 0], "not yet satisfactory for the": [65535, 0], "yet satisfactory for the clean": [65535, 0], "satisfactory for the clean territory": [65535, 0], "for the clean territory stopped": [65535, 0], "the clean territory stopped short": [65535, 0], "clean territory stopped short at": [65535, 0], "territory stopped short at his": [65535, 0], "stopped short at his chin": [65535, 0], "short at his chin and": [65535, 0], "at his chin and his": [65535, 0], "his chin and his jaws": [65535, 0], "chin and his jaws like": [65535, 0], "and his jaws like a": [65535, 0], "his jaws like a mask": [65535, 0], "jaws like a mask below": [65535, 0], "like a mask below and": [65535, 0], "a mask below and beyond": [65535, 0], "mask below and beyond this": [65535, 0], "below and beyond this line": [65535, 0], "and beyond this line there": [65535, 0], "beyond this line there was": [65535, 0], "this line there was a": [65535, 0], "line there was a dark": [65535, 0], "there was a dark expanse": [65535, 0], "was a dark expanse of": [65535, 0], "a dark expanse of unirrigated": [65535, 0], "dark expanse of unirrigated soil": [65535, 0], "expanse of unirrigated soil that": [65535, 0], "of unirrigated soil that spread": [65535, 0], "unirrigated soil that spread downward": [65535, 0], "soil that spread downward in": [65535, 0], "that spread downward in front": [65535, 0], "spread downward in front and": [65535, 0], "downward in front and backward": [65535, 0], "in front and backward around": [65535, 0], "front and backward around his": [65535, 0], "and backward around his neck": [65535, 0], "backward around his neck mary": [65535, 0], "around his neck mary took": [65535, 0], "his neck mary took him": [65535, 0], "neck mary took him in": [65535, 0], "mary took him in hand": [65535, 0], "took him in hand and": [65535, 0], "him in hand and when": [65535, 0], "in hand and when she": [65535, 0], "hand and when she was": [65535, 0], "and when she was done": [65535, 0], "when she was done with": [65535, 0], "she was done with him": [65535, 0], "was done with him he": [65535, 0], "done with him he was": [65535, 0], "with him he was a": [65535, 0], "him he was a man": [65535, 0], "he was a man and": [65535, 0], "was a man and a": [65535, 0], "a man and a brother": [65535, 0], "man and a brother without": [65535, 0], "and a brother without distinction": [65535, 0], "a brother without distinction of": [65535, 0], "brother without distinction of color": [65535, 0], "without distinction of color and": [65535, 0], "distinction of color and his": [65535, 0], "of color and his saturated": [65535, 0], "color and his saturated hair": [65535, 0], "and his saturated hair was": [65535, 0], "his saturated hair was neatly": [65535, 0], "saturated hair was neatly brushed": [65535, 0], "hair was neatly brushed and": [65535, 0], "was neatly brushed and its": [65535, 0], "neatly brushed and its short": [65535, 0], "brushed and its short curls": [65535, 0], "and its short curls wrought": [65535, 0], "its short curls wrought into": [65535, 0], "short curls wrought into a": [65535, 0], "curls wrought into a dainty": [65535, 0], "wrought into a dainty and": [65535, 0], "into a dainty and symmetrical": [65535, 0], "a dainty and symmetrical general": [65535, 0], "dainty and symmetrical general effect": [65535, 0], "and symmetrical general effect he": [65535, 0], "symmetrical general effect he privately": [65535, 0], "general effect he privately smoothed": [65535, 0], "effect he privately smoothed out": [65535, 0], "he privately smoothed out the": [65535, 0], "privately smoothed out the curls": [65535, 0], "smoothed out the curls with": [65535, 0], "out the curls with labor": [65535, 0], "the curls with labor and": [65535, 0], "curls with labor and difficulty": [65535, 0], "with labor and difficulty and": [65535, 0], "labor and difficulty and plastered": [65535, 0], "and difficulty and plastered his": [65535, 0], "difficulty and plastered his hair": [65535, 0], "and plastered his hair close": [65535, 0], "plastered his hair close down": [65535, 0], "his hair close down to": [65535, 0], "hair close down to his": [65535, 0], "close down to his head": [65535, 0], "down to his head for": [65535, 0], "to his head for he": [65535, 0], "his head for he held": [65535, 0], "head for he held curls": [65535, 0], "for he held curls to": [65535, 0], "he held curls to be": [65535, 0], "held curls to be effeminate": [65535, 0], "curls to be effeminate and": [65535, 0], "to be effeminate and his": [65535, 0], "be effeminate and his own": [65535, 0], "effeminate and his own filled": [65535, 0], "and his own filled his": [65535, 0], "his own filled his life": [65535, 0], "own filled his life with": [65535, 0], "filled his life with bitterness": [65535, 0], "his life with bitterness then": [65535, 0], "life with bitterness then mary": [65535, 0], "with bitterness then mary got": [65535, 0], "bitterness then mary got out": [65535, 0], "then mary got out a": [65535, 0], "mary got out a suit": [65535, 0], "got out a suit of": [65535, 0], "out a suit of his": [65535, 0], "a suit of his clothing": [65535, 0], "suit of his clothing that": [65535, 0], "of his clothing that had": [65535, 0], "his clothing that had been": [65535, 0], "clothing that had been used": [65535, 0], "that had been used only": [65535, 0], "had been used only on": [65535, 0], "been used only on sundays": [65535, 0], "used only on sundays during": [65535, 0], "only on sundays during two": [65535, 0], "on sundays during two years": [65535, 0], "sundays during two years they": [65535, 0], "during two years they were": [65535, 0], "two years they were simply": [65535, 0], "years they were simply called": [65535, 0], "they were simply called his": [65535, 0], "were simply called his other": [65535, 0], "simply called his other clothes": [65535, 0], "called his other clothes and": [65535, 0], "his other clothes and so": [65535, 0], "other clothes and so by": [65535, 0], "clothes and so by that": [65535, 0], "and so by that we": [65535, 0], "so by that we know": [65535, 0], "by that we know the": [65535, 0], "that we know the size": [65535, 0], "we know the size of": [65535, 0], "know the size of his": [65535, 0], "the size of his wardrobe": [65535, 0], "size of his wardrobe the": [65535, 0], "of his wardrobe the girl": [65535, 0], "his wardrobe the girl put": [65535, 0], "wardrobe the girl put him": [65535, 0], "the girl put him to": [65535, 0], "girl put him to rights": [65535, 0], "put him to rights after": [65535, 0], "him to rights after he": [65535, 0], "to rights after he had": [65535, 0], "rights after he had dressed": [65535, 0], "after he had dressed himself": [65535, 0], "he had dressed himself she": [65535, 0], "had dressed himself she buttoned": [65535, 0], "dressed himself she buttoned his": [65535, 0], "himself she buttoned his neat": [65535, 0], "she buttoned his neat roundabout": [65535, 0], "buttoned his neat roundabout up": [65535, 0], "his neat roundabout up to": [65535, 0], "neat roundabout up to his": [65535, 0], "roundabout up to his chin": [65535, 0], "up to his chin turned": [65535, 0], "to his chin turned his": [65535, 0], "his chin turned his vast": [65535, 0], "chin turned his vast shirt": [65535, 0], "turned his vast shirt collar": [65535, 0], "his vast shirt collar down": [65535, 0], "vast shirt collar down over": [65535, 0], "shirt collar down over his": [65535, 0], "collar down over his shoulders": [65535, 0], "down over his shoulders brushed": [65535, 0], "over his shoulders brushed him": [65535, 0], "his shoulders brushed him off": [65535, 0], "shoulders brushed him off and": [65535, 0], "brushed him off and crowned": [65535, 0], "him off and crowned him": [65535, 0], "off and crowned him with": [65535, 0], "and crowned him with his": [65535, 0], "crowned him with his speckled": [65535, 0], "him with his speckled straw": [65535, 0], "with his speckled straw hat": [65535, 0], "his speckled straw hat he": [65535, 0], "speckled straw hat he now": [65535, 0], "straw hat he now looked": [65535, 0], "hat he now looked exceedingly": [65535, 0], "he now looked exceedingly improved": [65535, 0], "now looked exceedingly improved and": [65535, 0], "looked exceedingly improved and uncomfortable": [65535, 0], "exceedingly improved and uncomfortable he": [65535, 0], "improved and uncomfortable he was": [65535, 0], "and uncomfortable he was fully": [65535, 0], "uncomfortable he was fully as": [65535, 0], "he was fully as uncomfortable": [65535, 0], "was fully as uncomfortable as": [65535, 0], "fully as uncomfortable as he": [65535, 0], "as uncomfortable as he looked": [65535, 0], "uncomfortable as he looked for": [65535, 0], "as he looked for there": [65535, 0], "he looked for there was": [65535, 0], "looked for there was a": [65535, 0], "for there was a restraint": [65535, 0], "there was a restraint about": [65535, 0], "was a restraint about whole": [65535, 0], "a restraint about whole clothes": [65535, 0], "restraint about whole clothes and": [65535, 0], "about whole clothes and cleanliness": [65535, 0], "whole clothes and cleanliness that": [65535, 0], "clothes and cleanliness that galled": [65535, 0], "and cleanliness that galled him": [65535, 0], "cleanliness that galled him he": [65535, 0], "that galled him he hoped": [65535, 0], "galled him he hoped that": [65535, 0], "him he hoped that mary": [65535, 0], "he hoped that mary would": [65535, 0], "hoped that mary would forget": [65535, 0], "that mary would forget his": [65535, 0], "mary would forget his shoes": [65535, 0], "would forget his shoes but": [65535, 0], "forget his shoes but the": [65535, 0], "his shoes but the hope": [65535, 0], "shoes but the hope was": [65535, 0], "but the hope was blighted": [65535, 0], "the hope was blighted she": [65535, 0], "hope was blighted she coated": [65535, 0], "was blighted she coated them": [65535, 0], "blighted she coated them thoroughly": [65535, 0], "she coated them thoroughly with": [65535, 0], "coated them thoroughly with tallow": [65535, 0], "them thoroughly with tallow as": [65535, 0], "thoroughly with tallow as was": [65535, 0], "with tallow as was the": [65535, 0], "tallow as was the custom": [65535, 0], "as was the custom and": [65535, 0], "was the custom and brought": [65535, 0], "the custom and brought them": [65535, 0], "custom and brought them out": [65535, 0], "and brought them out he": [65535, 0], "brought them out he lost": [65535, 0], "them out he lost his": [65535, 0], "out he lost his temper": [65535, 0], "he lost his temper and": [65535, 0], "lost his temper and said": [65535, 0], "his temper and said he": [65535, 0], "temper and said he was": [65535, 0], "and said he was always": [65535, 0], "said he was always being": [65535, 0], "he was always being made": [65535, 0], "was always being made to": [65535, 0], "always being made to do": [65535, 0], "being made to do everything": [65535, 0], "made to do everything he": [65535, 0], "to do everything he didn't": [65535, 0], "do everything he didn't want": [65535, 0], "everything he didn't want to": [65535, 0], "he didn't want to do": [65535, 0], "didn't want to do but": [65535, 0], "want to do but mary": [65535, 0], "to do but mary said": [65535, 0], "do but mary said persuasively": [65535, 0], "but mary said persuasively please": [65535, 0], "mary said persuasively please tom": [65535, 0], "said persuasively please tom that's": [65535, 0], "persuasively please tom that's a": [65535, 0], "please tom that's a good": [65535, 0], "tom that's a good boy": [65535, 0], "that's a good boy so": [65535, 0], "a good boy so he": [65535, 0], "good boy so he got": [65535, 0], "boy so he got into": [65535, 0], "so he got into the": [65535, 0], "he got into the shoes": [65535, 0], "got into the shoes snarling": [65535, 0], "into the shoes snarling mary": [65535, 0], "the shoes snarling mary was": [65535, 0], "shoes snarling mary was soon": [65535, 0], "snarling mary was soon ready": [65535, 0], "mary was soon ready and": [65535, 0], "was soon ready and the": [65535, 0], "soon ready and the three": [65535, 0], "ready and the three children": [65535, 0], "and the three children set": [65535, 0], "the three children set out": [65535, 0], "three children set out for": [65535, 0], "children set out for sunday": [65535, 0], "set out for sunday school": [65535, 0], "out for sunday school a": [65535, 0], "for sunday school a place": [65535, 0], "sunday school a place that": [65535, 0], "school a place that tom": [65535, 0], "a place that tom hated": [65535, 0], "place that tom hated with": [65535, 0], "that tom hated with his": [65535, 0], "tom hated with his whole": [65535, 0], "hated with his whole heart": [65535, 0], "with his whole heart but": [65535, 0], "his whole heart but sid": [65535, 0], "whole heart but sid and": [65535, 0], "heart but sid and mary": [65535, 0], "but sid and mary were": [65535, 0], "sid and mary were fond": [65535, 0], "and mary were fond of": [65535, 0], "mary were fond of it": [65535, 0], "were fond of it sabbath": [65535, 0], "fond of it sabbath school": [65535, 0], "of it sabbath school hours": [65535, 0], "it sabbath school hours were": [65535, 0], "sabbath school hours were from": [65535, 0], "school hours were from nine": [65535, 0], "hours were from nine to": [65535, 0], "were from nine to half": [65535, 0], "from nine to half past": [65535, 0], "nine to half past ten": [65535, 0], "to half past ten and": [65535, 0], "half past ten and then": [65535, 0], "past ten and then church": [65535, 0], "ten and then church service": [65535, 0], "and then church service two": [65535, 0], "then church service two of": [65535, 0], "church service two of the": [65535, 0], "service two of the children": [65535, 0], "two of the children always": [65535, 0], "of the children always remained": [65535, 0], "the children always remained for": [65535, 0], "children always remained for the": [65535, 0], "always remained for the sermon": [65535, 0], "remained for the sermon voluntarily": [65535, 0], "for the sermon voluntarily and": [65535, 0], "the sermon voluntarily and the": [65535, 0], "sermon voluntarily and the other": [65535, 0], "voluntarily and the other always": [65535, 0], "and the other always remained": [65535, 0], "the other always remained too": [65535, 0], "other always remained too for": [65535, 0], "always remained too for stronger": [65535, 0], "remained too for stronger reasons": [65535, 0], "too for stronger reasons the": [65535, 0], "for stronger reasons the church's": [65535, 0], "stronger reasons the church's high": [65535, 0], "reasons the church's high backed": [65535, 0], "the church's high backed uncushioned": [65535, 0], "church's high backed uncushioned pews": [65535, 0], "high backed uncushioned pews would": [65535, 0], "backed uncushioned pews would seat": [65535, 0], "uncushioned pews would seat about": [65535, 0], "pews would seat about three": [65535, 0], "would seat about three hundred": [65535, 0], "seat about three hundred persons": [65535, 0], "about three hundred persons the": [65535, 0], "three hundred persons the edifice": [65535, 0], "hundred persons the edifice was": [65535, 0], "persons the edifice was but": [65535, 0], "the edifice was but a": [65535, 0], "edifice was but a small": [65535, 0], "was but a small plain": [65535, 0], "but a small plain affair": [65535, 0], "a small plain affair with": [65535, 0], "small plain affair with a": [65535, 0], "plain affair with a sort": [65535, 0], "affair with a sort of": [65535, 0], "with a sort of pine": [65535, 0], "a sort of pine board": [65535, 0], "sort of pine board tree": [65535, 0], "of pine board tree box": [65535, 0], "pine board tree box on": [65535, 0], "board tree box on top": [65535, 0], "tree box on top of": [65535, 0], "box on top of it": [65535, 0], "on top of it for": [65535, 0], "top of it for a": [65535, 0], "of it for a steeple": [65535, 0], "it for a steeple at": [65535, 0], "for a steeple at the": [65535, 0], "a steeple at the door": [65535, 0], "steeple at the door tom": [65535, 0], "at the door tom dropped": [65535, 0], "the door tom dropped back": [65535, 0], "door tom dropped back a": [65535, 0], "tom dropped back a step": [65535, 0], "dropped back a step and": [65535, 0], "back a step and accosted": [65535, 0], "a step and accosted a": [65535, 0], "step and accosted a sunday": [65535, 0], "and accosted a sunday dressed": [65535, 0], "accosted a sunday dressed comrade": [65535, 0], "a sunday dressed comrade say": [65535, 0], "sunday dressed comrade say billy": [65535, 0], "dressed comrade say billy got": [65535, 0], "comrade say billy got a": [65535, 0], "say billy got a yaller": [65535, 0], "billy got a yaller ticket": [65535, 0], "got a yaller ticket yes": [65535, 0], "a yaller ticket yes what'll": [65535, 0], "yaller ticket yes what'll you": [65535, 0], "ticket yes what'll you take": [65535, 0], "yes what'll you take for": [65535, 0], "what'll you take for her": [65535, 0], "you take for her what'll": [65535, 0], "take for her what'll you": [65535, 0], "for her what'll you give": [65535, 0], "her what'll you give piece": [65535, 0], "what'll you give piece of": [65535, 0], "you give piece of lickrish": [65535, 0], "give piece of lickrish and": [65535, 0], "piece of lickrish and a": [65535, 0], "of lickrish and a fish": [65535, 0], "lickrish and a fish hook": [65535, 0], "and a fish hook less": [65535, 0], "a fish hook less see": [65535, 0], "fish hook less see 'em": [65535, 0], "hook less see 'em tom": [65535, 0], "less see 'em tom exhibited": [65535, 0], "see 'em tom exhibited they": [65535, 0], "'em tom exhibited they were": [65535, 0], "tom exhibited they were satisfactory": [65535, 0], "exhibited they were satisfactory and": [65535, 0], "they were satisfactory and the": [65535, 0], "were satisfactory and the property": [65535, 0], "satisfactory and the property changed": [65535, 0], "and the property changed hands": [65535, 0], "the property changed hands then": [65535, 0], "property changed hands then tom": [65535, 0], "changed hands then tom traded": [65535, 0], "hands then tom traded a": [65535, 0], "then tom traded a couple": [65535, 0], "tom traded a couple of": [65535, 0], "traded a couple of white": [65535, 0], "a couple of white alleys": [65535, 0], "couple of white alleys for": [65535, 0], "of white alleys for three": [65535, 0], "white alleys for three red": [65535, 0], "alleys for three red tickets": [65535, 0], "for three red tickets and": [65535, 0], "three red tickets and some": [65535, 0], "red tickets and some small": [65535, 0], "tickets and some small trifle": [65535, 0], "and some small trifle or": [65535, 0], "some small trifle or other": [65535, 0], "small trifle or other for": [65535, 0], "trifle or other for a": [65535, 0], "or other for a couple": [65535, 0], "other for a couple of": [65535, 0], "for a couple of blue": [65535, 0], "a couple of blue ones": [65535, 0], "couple of blue ones he": [65535, 0], "of blue ones he waylaid": [65535, 0], "blue ones he waylaid other": [65535, 0], "ones he waylaid other boys": [65535, 0], "he waylaid other boys as": [65535, 0], "waylaid other boys as they": [65535, 0], "other boys as they came": [65535, 0], "boys as they came and": [65535, 0], "as they came and went": [65535, 0], "they came and went on": [65535, 0], "came and went on buying": [65535, 0], "and went on buying tickets": [65535, 0], "went on buying tickets of": [65535, 0], "on buying tickets of various": [65535, 0], "buying tickets of various colors": [65535, 0], "tickets of various colors ten": [65535, 0], "of various colors ten or": [65535, 0], "various colors ten or fifteen": [65535, 0], "colors ten or fifteen minutes": [65535, 0], "ten or fifteen minutes longer": [65535, 0], "or fifteen minutes longer he": [65535, 0], "fifteen minutes longer he entered": [65535, 0], "minutes longer he entered the": [65535, 0], "longer he entered the church": [65535, 0], "he entered the church now": [65535, 0], "entered the church now with": [65535, 0], "the church now with a": [65535, 0], "church now with a swarm": [65535, 0], "now with a swarm of": [65535, 0], "with a swarm of clean": [65535, 0], "a swarm of clean and": [65535, 0], "swarm of clean and noisy": [65535, 0], "of clean and noisy boys": [65535, 0], "clean and noisy boys and": [65535, 0], "and noisy boys and girls": [65535, 0], "noisy boys and girls proceeded": [65535, 0], "boys and girls proceeded to": [65535, 0], "and girls proceeded to his": [65535, 0], "girls proceeded to his seat": [65535, 0], "proceeded to his seat and": [65535, 0], "to his seat and started": [65535, 0], "his seat and started a": [65535, 0], "seat and started a quarrel": [65535, 0], "and started a quarrel with": [65535, 0], "started a quarrel with the": [65535, 0], "a quarrel with the first": [65535, 0], "quarrel with the first boy": [65535, 0], "with the first boy that": [65535, 0], "the first boy that came": [65535, 0], "first boy that came handy": [65535, 0], "boy that came handy the": [65535, 0], "that came handy the teacher": [65535, 0], "came handy the teacher a": [65535, 0], "handy the teacher a grave": [65535, 0], "the teacher a grave elderly": [65535, 0], "teacher a grave elderly man": [65535, 0], "a grave elderly man interfered": [65535, 0], "grave elderly man interfered then": [65535, 0], "elderly man interfered then turned": [65535, 0], "man interfered then turned his": [65535, 0], "interfered then turned his back": [65535, 0], "then turned his back a": [65535, 0], "turned his back a moment": [65535, 0], "his back a moment and": [65535, 0], "back a moment and tom": [65535, 0], "a moment and tom pulled": [65535, 0], "moment and tom pulled a": [65535, 0], "and tom pulled a boy's": [65535, 0], "tom pulled a boy's hair": [65535, 0], "pulled a boy's hair in": [65535, 0], "a boy's hair in the": [65535, 0], "boy's hair in the next": [65535, 0], "hair in the next bench": [65535, 0], "in the next bench and": [65535, 0], "the next bench and was": [65535, 0], "next bench and was absorbed": [65535, 0], "bench and was absorbed in": [65535, 0], "and was absorbed in his": [65535, 0], "was absorbed in his book": [65535, 0], "absorbed in his book when": [65535, 0], "in his book when the": [65535, 0], "his book when the boy": [65535, 0], "book when the boy turned": [65535, 0], "when the boy turned around": [65535, 0], "the boy turned around stuck": [65535, 0], "boy turned around stuck a": [65535, 0], "turned around stuck a pin": [65535, 0], "around stuck a pin in": [65535, 0], "stuck a pin in another": [65535, 0], "a pin in another boy": [65535, 0], "pin in another boy presently": [65535, 0], "in another boy presently in": [65535, 0], "another boy presently in order": [65535, 0], "boy presently in order to": [65535, 0], "presently in order to hear": [65535, 0], "in order to hear him": [65535, 0], "order to hear him say": [65535, 0], "to hear him say ouch": [65535, 0], "hear him say ouch and": [65535, 0], "him say ouch and got": [65535, 0], "say ouch and got a": [65535, 0], "ouch and got a new": [65535, 0], "and got a new reprimand": [65535, 0], "got a new reprimand from": [65535, 0], "a new reprimand from his": [65535, 0], "new reprimand from his teacher": [65535, 0], "reprimand from his teacher tom's": [65535, 0], "from his teacher tom's whole": [65535, 0], "his teacher tom's whole class": [65535, 0], "teacher tom's whole class were": [65535, 0], "tom's whole class were of": [65535, 0], "whole class were of a": [65535, 0], "class were of a pattern": [65535, 0], "were of a pattern restless": [65535, 0], "of a pattern restless noisy": [65535, 0], "a pattern restless noisy and": [65535, 0], "pattern restless noisy and troublesome": [65535, 0], "restless noisy and troublesome when": [65535, 0], "noisy and troublesome when they": [65535, 0], "and troublesome when they came": [65535, 0], "troublesome when they came to": [65535, 0], "when they came to recite": [65535, 0], "they came to recite their": [65535, 0], "came to recite their lessons": [65535, 0], "to recite their lessons not": [65535, 0], "recite their lessons not one": [65535, 0], "their lessons not one of": [65535, 0], "lessons not one of them": [65535, 0], "not one of them knew": [65535, 0], "one of them knew his": [65535, 0], "of them knew his verses": [65535, 0], "them knew his verses perfectly": [65535, 0], "knew his verses perfectly but": [65535, 0], "his verses perfectly but had": [65535, 0], "verses perfectly but had to": [65535, 0], "perfectly but had to be": [65535, 0], "but had to be prompted": [65535, 0], "had to be prompted all": [65535, 0], "to be prompted all along": [65535, 0], "be prompted all along however": [65535, 0], "prompted all along however they": [65535, 0], "all along however they worried": [65535, 0], "along however they worried through": [65535, 0], "however they worried through and": [65535, 0], "they worried through and each": [65535, 0], "worried through and each got": [65535, 0], "through and each got his": [65535, 0], "and each got his reward": [65535, 0], "each got his reward in": [65535, 0], "got his reward in small": [65535, 0], "his reward in small blue": [65535, 0], "reward in small blue tickets": [65535, 0], "in small blue tickets each": [65535, 0], "small blue tickets each with": [65535, 0], "blue tickets each with a": [65535, 0], "tickets each with a passage": [65535, 0], "each with a passage of": [65535, 0], "with a passage of scripture": [65535, 0], "a passage of scripture on": [65535, 0], "passage of scripture on it": [65535, 0], "of scripture on it each": [65535, 0], "scripture on it each blue": [65535, 0], "on it each blue ticket": [65535, 0], "it each blue ticket was": [65535, 0], "each blue ticket was pay": [65535, 0], "blue ticket was pay for": [65535, 0], "ticket was pay for two": [65535, 0], "was pay for two verses": [65535, 0], "pay for two verses of": [65535, 0], "for two verses of the": [65535, 0], "two verses of the recitation": [65535, 0], "verses of the recitation ten": [65535, 0], "of the recitation ten blue": [65535, 0], "the recitation ten blue tickets": [65535, 0], "recitation ten blue tickets equalled": [65535, 0], "ten blue tickets equalled a": [65535, 0], "blue tickets equalled a red": [65535, 0], "tickets equalled a red one": [65535, 0], "equalled a red one and": [65535, 0], "a red one and could": [65535, 0], "red one and could be": [65535, 0], "one and could be exchanged": [65535, 0], "and could be exchanged for": [65535, 0], "could be exchanged for it": [65535, 0], "be exchanged for it ten": [65535, 0], "exchanged for it ten red": [65535, 0], "for it ten red tickets": [65535, 0], "it ten red tickets equalled": [65535, 0], "ten red tickets equalled a": [65535, 0], "red tickets equalled a yellow": [65535, 0], "tickets equalled a yellow one": [65535, 0], "equalled a yellow one for": [65535, 0], "a yellow one for ten": [65535, 0], "yellow one for ten yellow": [65535, 0], "one for ten yellow tickets": [65535, 0], "for ten yellow tickets the": [65535, 0], "ten yellow tickets the superintendent": [65535, 0], "yellow tickets the superintendent gave": [65535, 0], "tickets the superintendent gave a": [65535, 0], "the superintendent gave a very": [65535, 0], "superintendent gave a very plainly": [65535, 0], "gave a very plainly bound": [65535, 0], "a very plainly bound bible": [65535, 0], "very plainly bound bible worth": [65535, 0], "plainly bound bible worth forty": [65535, 0], "bound bible worth forty cents": [65535, 0], "bible worth forty cents in": [65535, 0], "worth forty cents in those": [65535, 0], "forty cents in those easy": [65535, 0], "cents in those easy times": [65535, 0], "in those easy times to": [65535, 0], "those easy times to the": [65535, 0], "easy times to the pupil": [65535, 0], "times to the pupil how": [65535, 0], "to the pupil how many": [65535, 0], "the pupil how many of": [65535, 0], "pupil how many of my": [65535, 0], "how many of my readers": [65535, 0], "many of my readers would": [65535, 0], "of my readers would have": [65535, 0], "my readers would have the": [65535, 0], "readers would have the industry": [65535, 0], "would have the industry and": [65535, 0], "have the industry and application": [65535, 0], "the industry and application to": [65535, 0], "industry and application to memorize": [65535, 0], "and application to memorize two": [65535, 0], "application to memorize two thousand": [65535, 0], "to memorize two thousand verses": [65535, 0], "memorize two thousand verses even": [65535, 0], "two thousand verses even for": [65535, 0], "thousand verses even for a": [65535, 0], "verses even for a dore": [65535, 0], "even for a dore bible": [65535, 0], "for a dore bible and": [65535, 0], "a dore bible and yet": [65535, 0], "dore bible and yet mary": [65535, 0], "bible and yet mary had": [65535, 0], "and yet mary had acquired": [65535, 0], "yet mary had acquired two": [65535, 0], "mary had acquired two bibles": [65535, 0], "had acquired two bibles in": [65535, 0], "acquired two bibles in this": [65535, 0], "two bibles in this way": [65535, 0], "bibles in this way it": [65535, 0], "in this way it was": [65535, 0], "this way it was the": [65535, 0], "way it was the patient": [65535, 0], "it was the patient work": [65535, 0], "was the patient work of": [65535, 0], "the patient work of two": [65535, 0], "patient work of two years": [65535, 0], "work of two years and": [65535, 0], "of two years and a": [65535, 0], "two years and a boy": [65535, 0], "years and a boy of": [65535, 0], "and a boy of german": [65535, 0], "a boy of german parentage": [65535, 0], "boy of german parentage had": [65535, 0], "of german parentage had won": [65535, 0], "german parentage had won four": [65535, 0], "parentage had won four or": [65535, 0], "had won four or five": [65535, 0], "won four or five he": [65535, 0], "four or five he once": [65535, 0], "or five he once recited": [65535, 0], "five he once recited three": [65535, 0], "he once recited three thousand": [65535, 0], "once recited three thousand verses": [65535, 0], "recited three thousand verses without": [65535, 0], "three thousand verses without stopping": [65535, 0], "thousand verses without stopping but": [65535, 0], "verses without stopping but the": [65535, 0], "without stopping but the strain": [65535, 0], "stopping but the strain upon": [65535, 0], "but the strain upon his": [65535, 0], "the strain upon his mental": [65535, 0], "strain upon his mental faculties": [65535, 0], "upon his mental faculties was": [65535, 0], "his mental faculties was too": [65535, 0], "mental faculties was too great": [65535, 0], "faculties was too great and": [65535, 0], "was too great and he": [65535, 0], "too great and he was": [65535, 0], "great and he was little": [65535, 0], "and he was little better": [65535, 0], "he was little better than": [65535, 0], "was little better than an": [65535, 0], "little better than an idiot": [65535, 0], "better than an idiot from": [65535, 0], "than an idiot from that": [65535, 0], "an idiot from that day": [65535, 0], "idiot from that day forth": [65535, 0], "from that day forth a": [65535, 0], "that day forth a grievous": [65535, 0], "day forth a grievous misfortune": [65535, 0], "forth a grievous misfortune for": [65535, 0], "a grievous misfortune for the": [65535, 0], "grievous misfortune for the school": [65535, 0], "misfortune for the school for": [65535, 0], "for the school for on": [65535, 0], "the school for on great": [65535, 0], "school for on great occasions": [65535, 0], "for on great occasions before": [65535, 0], "on great occasions before company": [65535, 0], "great occasions before company the": [65535, 0], "occasions before company the superintendent": [65535, 0], "before company the superintendent as": [65535, 0], "company the superintendent as tom": [65535, 0], "the superintendent as tom expressed": [65535, 0], "superintendent as tom expressed it": [65535, 0], "as tom expressed it had": [65535, 0], "tom expressed it had always": [65535, 0], "expressed it had always made": [65535, 0], "it had always made this": [65535, 0], "had always made this boy": [65535, 0], "always made this boy come": [65535, 0], "made this boy come out": [65535, 0], "this boy come out and": [65535, 0], "boy come out and spread": [65535, 0], "come out and spread himself": [65535, 0], "out and spread himself only": [65535, 0], "and spread himself only the": [65535, 0], "spread himself only the older": [65535, 0], "himself only the older pupils": [65535, 0], "only the older pupils managed": [65535, 0], "the older pupils managed to": [65535, 0], "older pupils managed to keep": [65535, 0], "pupils managed to keep their": [65535, 0], "managed to keep their tickets": [65535, 0], "to keep their tickets and": [65535, 0], "keep their tickets and stick": [65535, 0], "their tickets and stick to": [65535, 0], "tickets and stick to their": [65535, 0], "and stick to their tedious": [65535, 0], "stick to their tedious work": [65535, 0], "to their tedious work long": [65535, 0], "their tedious work long enough": [65535, 0], "tedious work long enough to": [65535, 0], "work long enough to get": [65535, 0], "long enough to get a": [65535, 0], "enough to get a bible": [65535, 0], "to get a bible and": [65535, 0], "get a bible and so": [65535, 0], "a bible and so the": [65535, 0], "bible and so the delivery": [65535, 0], "and so the delivery of": [65535, 0], "so the delivery of one": [65535, 0], "the delivery of one of": [65535, 0], "delivery of one of these": [65535, 0], "of one of these prizes": [65535, 0], "one of these prizes was": [65535, 0], "of these prizes was a": [65535, 0], "these prizes was a rare": [65535, 0], "prizes was a rare and": [65535, 0], "was a rare and noteworthy": [65535, 0], "a rare and noteworthy circumstance": [65535, 0], "rare and noteworthy circumstance the": [65535, 0], "and noteworthy circumstance the successful": [65535, 0], "noteworthy circumstance the successful pupil": [65535, 0], "circumstance the successful pupil was": [65535, 0], "the successful pupil was so": [65535, 0], "successful pupil was so great": [65535, 0], "pupil was so great and": [65535, 0], "was so great and conspicuous": [65535, 0], "so great and conspicuous for": [65535, 0], "great and conspicuous for that": [65535, 0], "and conspicuous for that day": [65535, 0], "conspicuous for that day that": [65535, 0], "for that day that on": [65535, 0], "that day that on the": [65535, 0], "day that on the spot": [65535, 0], "that on the spot every": [65535, 0], "on the spot every scholar's": [65535, 0], "the spot every scholar's heart": [65535, 0], "spot every scholar's heart was": [65535, 0], "every scholar's heart was fired": [65535, 0], "scholar's heart was fired with": [65535, 0], "heart was fired with a": [65535, 0], "was fired with a fresh": [65535, 0], "fired with a fresh ambition": [65535, 0], "with a fresh ambition that": [65535, 0], "a fresh ambition that often": [65535, 0], "fresh ambition that often lasted": [65535, 0], "ambition that often lasted a": [65535, 0], "that often lasted a couple": [65535, 0], "often lasted a couple of": [65535, 0], "lasted a couple of weeks": [65535, 0], "a couple of weeks it": [65535, 0], "couple of weeks it is": [65535, 0], "of weeks it is possible": [65535, 0], "weeks it is possible that": [65535, 0], "it is possible that tom's": [65535, 0], "is possible that tom's mental": [65535, 0], "possible that tom's mental stomach": [65535, 0], "that tom's mental stomach had": [65535, 0], "tom's mental stomach had never": [65535, 0], "mental stomach had never really": [65535, 0], "stomach had never really hungered": [65535, 0], "had never really hungered for": [65535, 0], "never really hungered for one": [65535, 0], "really hungered for one of": [65535, 0], "hungered for one of those": [65535, 0], "for one of those prizes": [65535, 0], "one of those prizes but": [65535, 0], "of those prizes but unquestionably": [65535, 0], "those prizes but unquestionably his": [65535, 0], "prizes but unquestionably his entire": [65535, 0], "but unquestionably his entire being": [65535, 0], "unquestionably his entire being had": [65535, 0], "his entire being had for": [65535, 0], "entire being had for many": [65535, 0], "being had for many a": [65535, 0], "had for many a day": [65535, 0], "for many a day longed": [65535, 0], "many a day longed for": [65535, 0], "a day longed for the": [65535, 0], "day longed for the glory": [65535, 0], "longed for the glory and": [65535, 0], "for the glory and the": [65535, 0], "the glory and the eclat": [65535, 0], "glory and the eclat that": [65535, 0], "and the eclat that came": [65535, 0], "the eclat that came with": [65535, 0], "eclat that came with it": [65535, 0], "that came with it in": [65535, 0], "came with it in due": [65535, 0], "with it in due course": [65535, 0], "it in due course the": [65535, 0], "in due course the superintendent": [65535, 0], "due course the superintendent stood": [65535, 0], "course the superintendent stood up": [65535, 0], "the superintendent stood up in": [65535, 0], "superintendent stood up in front": [65535, 0], "stood up in front of": [65535, 0], "up in front of the": [65535, 0], "in front of the pulpit": [65535, 0], "front of the pulpit with": [65535, 0], "of the pulpit with a": [65535, 0], "the pulpit with a closed": [65535, 0], "pulpit with a closed hymn": [65535, 0], "with a closed hymn book": [65535, 0], "a closed hymn book in": [65535, 0], "closed hymn book in his": [65535, 0], "hymn book in his hand": [65535, 0], "book in his hand and": [65535, 0], "in his hand and his": [65535, 0], "his hand and his forefinger": [65535, 0], "hand and his forefinger inserted": [65535, 0], "and his forefinger inserted between": [65535, 0], "his forefinger inserted between its": [65535, 0], "forefinger inserted between its leaves": [65535, 0], "inserted between its leaves and": [65535, 0], "between its leaves and commanded": [65535, 0], "its leaves and commanded attention": [65535, 0], "leaves and commanded attention when": [65535, 0], "and commanded attention when a": [65535, 0], "commanded attention when a sunday": [65535, 0], "attention when a sunday school": [65535, 0], "when a sunday school superintendent": [65535, 0], "a sunday school superintendent makes": [65535, 0], "sunday school superintendent makes his": [65535, 0], "school superintendent makes his customary": [65535, 0], "superintendent makes his customary little": [65535, 0], "makes his customary little speech": [65535, 0], "his customary little speech a": [65535, 0], "customary little speech a hymn": [65535, 0], "little speech a hymn book": [65535, 0], "speech a hymn book in": [65535, 0], "a hymn book in the": [65535, 0], "hymn book in the hand": [65535, 0], "book in the hand is": [65535, 0], "in the hand is as": [65535, 0], "the hand is as necessary": [65535, 0], "hand is as necessary as": [65535, 0], "is as necessary as is": [65535, 0], "as necessary as is the": [65535, 0], "necessary as is the inevitable": [65535, 0], "as is the inevitable sheet": [65535, 0], "is the inevitable sheet of": [65535, 0], "the inevitable sheet of music": [65535, 0], "inevitable sheet of music in": [65535, 0], "sheet of music in the": [65535, 0], "of music in the hand": [65535, 0], "music in the hand of": [65535, 0], "in the hand of a": [65535, 0], "the hand of a singer": [65535, 0], "hand of a singer who": [65535, 0], "of a singer who stands": [65535, 0], "a singer who stands forward": [65535, 0], "singer who stands forward on": [65535, 0], "who stands forward on the": [65535, 0], "stands forward on the platform": [65535, 0], "forward on the platform and": [65535, 0], "on the platform and sings": [65535, 0], "the platform and sings a": [65535, 0], "platform and sings a solo": [65535, 0], "and sings a solo at": [65535, 0], "sings a solo at a": [65535, 0], "a solo at a concert": [65535, 0], "solo at a concert though": [65535, 0], "at a concert though why": [65535, 0], "a concert though why is": [65535, 0], "concert though why is a": [65535, 0], "though why is a mystery": [65535, 0], "why is a mystery for": [65535, 0], "is a mystery for neither": [65535, 0], "a mystery for neither the": [65535, 0], "mystery for neither the hymn": [65535, 0], "for neither the hymn book": [65535, 0], "neither the hymn book nor": [65535, 0], "the hymn book nor the": [65535, 0], "hymn book nor the sheet": [65535, 0], "book nor the sheet of": [65535, 0], "nor the sheet of music": [65535, 0], "the sheet of music is": [65535, 0], "sheet of music is ever": [65535, 0], "of music is ever referred": [65535, 0], "music is ever referred to": [65535, 0], "is ever referred to by": [65535, 0], "ever referred to by the": [65535, 0], "referred to by the sufferer": [65535, 0], "to by the sufferer this": [65535, 0], "by the sufferer this superintendent": [65535, 0], "the sufferer this superintendent was": [65535, 0], "sufferer this superintendent was a": [65535, 0], "this superintendent was a slim": [65535, 0], "superintendent was a slim creature": [65535, 0], "was a slim creature of": [65535, 0], "a slim creature of thirty": [65535, 0], "slim creature of thirty five": [65535, 0], "creature of thirty five with": [65535, 0], "of thirty five with a": [65535, 0], "thirty five with a sandy": [65535, 0], "five with a sandy goatee": [65535, 0], "with a sandy goatee and": [65535, 0], "a sandy goatee and short": [65535, 0], "sandy goatee and short sandy": [65535, 0], "goatee and short sandy hair": [65535, 0], "and short sandy hair he": [65535, 0], "short sandy hair he wore": [65535, 0], "sandy hair he wore a": [65535, 0], "hair he wore a stiff": [65535, 0], "he wore a stiff standing": [65535, 0], "wore a stiff standing collar": [65535, 0], "a stiff standing collar whose": [65535, 0], "stiff standing collar whose upper": [65535, 0], "standing collar whose upper edge": [65535, 0], "collar whose upper edge almost": [65535, 0], "whose upper edge almost reached": [65535, 0], "upper edge almost reached his": [65535, 0], "edge almost reached his ears": [65535, 0], "almost reached his ears and": [65535, 0], "reached his ears and whose": [65535, 0], "his ears and whose sharp": [65535, 0], "ears and whose sharp points": [65535, 0], "and whose sharp points curved": [65535, 0], "whose sharp points curved forward": [65535, 0], "sharp points curved forward abreast": [65535, 0], "points curved forward abreast the": [65535, 0], "curved forward abreast the corners": [65535, 0], "forward abreast the corners of": [65535, 0], "abreast the corners of his": [65535, 0], "the corners of his mouth": [65535, 0], "corners of his mouth a": [65535, 0], "of his mouth a fence": [65535, 0], "his mouth a fence that": [65535, 0], "mouth a fence that compelled": [65535, 0], "a fence that compelled a": [65535, 0], "fence that compelled a straight": [65535, 0], "that compelled a straight lookout": [65535, 0], "compelled a straight lookout ahead": [65535, 0], "a straight lookout ahead and": [65535, 0], "straight lookout ahead and a": [65535, 0], "lookout ahead and a turning": [65535, 0], "ahead and a turning of": [65535, 0], "and a turning of the": [65535, 0], "a turning of the whole": [65535, 0], "turning of the whole body": [65535, 0], "of the whole body when": [65535, 0], "the whole body when a": [65535, 0], "whole body when a side": [65535, 0], "body when a side view": [65535, 0], "when a side view was": [65535, 0], "a side view was required": [65535, 0], "side view was required his": [65535, 0], "view was required his chin": [65535, 0], "was required his chin was": [65535, 0], "required his chin was propped": [65535, 0], "his chin was propped on": [65535, 0], "chin was propped on a": [65535, 0], "was propped on a spreading": [65535, 0], "propped on a spreading cravat": [65535, 0], "on a spreading cravat which": [65535, 0], "a spreading cravat which was": [65535, 0], "spreading cravat which was as": [65535, 0], "cravat which was as broad": [65535, 0], "which was as broad and": [65535, 0], "was as broad and as": [65535, 0], "as broad and as long": [65535, 0], "broad and as long as": [65535, 0], "and as long as a": [65535, 0], "as long as a bank": [65535, 0], "long as a bank note": [65535, 0], "as a bank note and": [65535, 0], "a bank note and had": [65535, 0], "bank note and had fringed": [65535, 0], "note and had fringed ends": [65535, 0], "and had fringed ends his": [65535, 0], "had fringed ends his boot": [65535, 0], "fringed ends his boot toes": [65535, 0], "ends his boot toes were": [65535, 0], "his boot toes were turned": [65535, 0], "boot toes were turned sharply": [65535, 0], "toes were turned sharply up": [65535, 0], "were turned sharply up in": [65535, 0], "turned sharply up in the": [65535, 0], "sharply up in the fashion": [65535, 0], "up in the fashion of": [65535, 0], "in the fashion of the": [65535, 0], "the fashion of the day": [65535, 0], "fashion of the day like": [65535, 0], "of the day like sleigh": [65535, 0], "the day like sleigh runners": [65535, 0], "day like sleigh runners an": [65535, 0], "like sleigh runners an effect": [65535, 0], "sleigh runners an effect patiently": [65535, 0], "runners an effect patiently and": [65535, 0], "an effect patiently and laboriously": [65535, 0], "effect patiently and laboriously produced": [65535, 0], "patiently and laboriously produced by": [65535, 0], "and laboriously produced by the": [65535, 0], "laboriously produced by the young": [65535, 0], "produced by the young men": [65535, 0], "by the young men by": [65535, 0], "the young men by sitting": [65535, 0], "young men by sitting with": [65535, 0], "men by sitting with their": [65535, 0], "by sitting with their toes": [65535, 0], "sitting with their toes pressed": [65535, 0], "with their toes pressed against": [65535, 0], "their toes pressed against a": [65535, 0], "toes pressed against a wall": [65535, 0], "pressed against a wall for": [65535, 0], "against a wall for hours": [65535, 0], "a wall for hours together": [65535, 0], "wall for hours together mr": [65535, 0], "for hours together mr walters": [65535, 0], "hours together mr walters was": [65535, 0], "together mr walters was very": [65535, 0], "mr walters was very earnest": [65535, 0], "walters was very earnest of": [65535, 0], "was very earnest of mien": [65535, 0], "very earnest of mien and": [65535, 0], "earnest of mien and very": [65535, 0], "of mien and very sincere": [65535, 0], "mien and very sincere and": [65535, 0], "and very sincere and honest": [65535, 0], "very sincere and honest at": [65535, 0], "sincere and honest at heart": [65535, 0], "and honest at heart and": [65535, 0], "honest at heart and he": [65535, 0], "at heart and he held": [65535, 0], "heart and he held sacred": [65535, 0], "and he held sacred things": [65535, 0], "he held sacred things and": [65535, 0], "held sacred things and places": [65535, 0], "sacred things and places in": [65535, 0], "things and places in such": [65535, 0], "and places in such reverence": [65535, 0], "places in such reverence and": [65535, 0], "in such reverence and so": [65535, 0], "such reverence and so separated": [65535, 0], "reverence and so separated them": [65535, 0], "and so separated them from": [65535, 0], "so separated them from worldly": [65535, 0], "separated them from worldly matters": [65535, 0], "them from worldly matters that": [65535, 0], "from worldly matters that unconsciously": [65535, 0], "worldly matters that unconsciously to": [65535, 0], "matters that unconsciously to himself": [65535, 0], "that unconsciously to himself his": [65535, 0], "unconsciously to himself his sunday": [65535, 0], "to himself his sunday school": [65535, 0], "himself his sunday school voice": [65535, 0], "his sunday school voice had": [65535, 0], "sunday school voice had acquired": [65535, 0], "school voice had acquired a": [65535, 0], "voice had acquired a peculiar": [65535, 0], "had acquired a peculiar intonation": [65535, 0], "acquired a peculiar intonation which": [65535, 0], "a peculiar intonation which was": [65535, 0], "peculiar intonation which was wholly": [65535, 0], "intonation which was wholly absent": [65535, 0], "which was wholly absent on": [65535, 0], "was wholly absent on week": [65535, 0], "wholly absent on week days": [65535, 0], "absent on week days he": [65535, 0], "on week days he began": [65535, 0], "week days he began after": [65535, 0], "days he began after this": [65535, 0], "he began after this fashion": [65535, 0], "began after this fashion now": [65535, 0], "after this fashion now children": [65535, 0], "this fashion now children i": [65535, 0], "fashion now children i want": [65535, 0], "now children i want you": [65535, 0], "children i want you all": [65535, 0], "i want you all to": [65535, 0], "want you all to sit": [65535, 0], "you all to sit up": [65535, 0], "all to sit up just": [65535, 0], "to sit up just as": [65535, 0], "sit up just as straight": [65535, 0], "up just as straight and": [65535, 0], "just as straight and pretty": [65535, 0], "as straight and pretty as": [65535, 0], "straight and pretty as you": [65535, 0], "and pretty as you can": [65535, 0], "pretty as you can and": [65535, 0], "as you can and give": [65535, 0], "you can and give me": [65535, 0], "can and give me all": [65535, 0], "and give me all your": [65535, 0], "give me all your attention": [65535, 0], "me all your attention for": [65535, 0], "all your attention for a": [65535, 0], "your attention for a minute": [65535, 0], "attention for a minute or": [65535, 0], "for a minute or two": [65535, 0], "a minute or two there": [65535, 0], "minute or two there that": [65535, 0], "or two there that is": [65535, 0], "two there that is it": [65535, 0], "there that is it that": [65535, 0], "that is it that is": [65535, 0], "is it that is the": [65535, 0], "it that is the way": [65535, 0], "that is the way good": [65535, 0], "is the way good little": [65535, 0], "the way good little boys": [65535, 0], "way good little boys and": [65535, 0], "good little boys and girls": [65535, 0], "little boys and girls should": [65535, 0], "boys and girls should do": [65535, 0], "and girls should do i": [65535, 0], "girls should do i see": [65535, 0], "should do i see one": [65535, 0], "do i see one little": [65535, 0], "i see one little girl": [65535, 0], "see one little girl who": [65535, 0], "one little girl who is": [65535, 0], "little girl who is looking": [65535, 0], "girl who is looking out": [65535, 0], "who is looking out of": [65535, 0], "is looking out of the": [65535, 0], "looking out of the window": [65535, 0], "out of the window i": [65535, 0], "of the window i am": [65535, 0], "the window i am afraid": [65535, 0], "window i am afraid she": [65535, 0], "i am afraid she thinks": [65535, 0], "am afraid she thinks i": [65535, 0], "afraid she thinks i am": [65535, 0], "she thinks i am out": [65535, 0], "thinks i am out there": [65535, 0], "i am out there somewhere": [65535, 0], "am out there somewhere perhaps": [65535, 0], "out there somewhere perhaps up": [65535, 0], "there somewhere perhaps up in": [65535, 0], "somewhere perhaps up in one": [65535, 0], "perhaps up in one of": [65535, 0], "up in one of the": [65535, 0], "in one of the trees": [65535, 0], "one of the trees making": [65535, 0], "of the trees making a": [65535, 0], "the trees making a speech": [65535, 0], "trees making a speech to": [65535, 0], "making a speech to the": [65535, 0], "a speech to the little": [65535, 0], "speech to the little birds": [65535, 0], "to the little birds applausive": [65535, 0], "the little birds applausive titter": [65535, 0], "little birds applausive titter i": [65535, 0], "birds applausive titter i want": [65535, 0], "applausive titter i want to": [65535, 0], "titter i want to tell": [65535, 0], "i want to tell you": [65535, 0], "want to tell you how": [65535, 0], "to tell you how good": [65535, 0], "tell you how good it": [65535, 0], "you how good it makes": [65535, 0], "how good it makes me": [65535, 0], "good it makes me feel": [65535, 0], "it makes me feel to": [65535, 0], "makes me feel to see": [65535, 0], "me feel to see so": [65535, 0], "feel to see so many": [65535, 0], "to see so many bright": [65535, 0], "see so many bright clean": [65535, 0], "so many bright clean little": [65535, 0], "many bright clean little faces": [65535, 0], "bright clean little faces assembled": [65535, 0], "clean little faces assembled in": [65535, 0], "little faces assembled in a": [65535, 0], "faces assembled in a place": [65535, 0], "assembled in a place like": [65535, 0], "in a place like this": [65535, 0], "a place like this learning": [65535, 0], "place like this learning to": [65535, 0], "like this learning to do": [65535, 0], "this learning to do right": [65535, 0], "learning to do right and": [65535, 0], "to do right and be": [65535, 0], "do right and be good": [65535, 0], "right and be good and": [65535, 0], "and be good and so": [65535, 0], "be good and so forth": [65535, 0], "good and so forth and": [65535, 0], "and so forth and so": [65535, 0], "so forth and so on": [65535, 0], "forth and so on it": [65535, 0], "and so on it is": [65535, 0], "so on it is not": [65535, 0], "on it is not necessary": [65535, 0], "it is not necessary to": [65535, 0], "is not necessary to set": [65535, 0], "not necessary to set down": [65535, 0], "necessary to set down the": [65535, 0], "to set down the rest": [65535, 0], "set down the rest of": [65535, 0], "down the rest of the": [65535, 0], "the rest of the oration": [65535, 0], "rest of the oration it": [65535, 0], "of the oration it was": [65535, 0], "the oration it was of": [65535, 0], "oration it was of a": [65535, 0], "it was of a pattern": [65535, 0], "was of a pattern which": [65535, 0], "of a pattern which does": [65535, 0], "a pattern which does not": [65535, 0], "pattern which does not vary": [65535, 0], "which does not vary and": [65535, 0], "does not vary and so": [65535, 0], "not vary and so it": [65535, 0], "vary and so it is": [65535, 0], "and so it is familiar": [65535, 0], "so it is familiar to": [65535, 0], "it is familiar to us": [65535, 0], "is familiar to us all": [65535, 0], "familiar to us all the": [65535, 0], "to us all the latter": [65535, 0], "us all the latter third": [65535, 0], "all the latter third of": [65535, 0], "the latter third of the": [65535, 0], "latter third of the speech": [65535, 0], "third of the speech was": [65535, 0], "of the speech was marred": [65535, 0], "the speech was marred by": [65535, 0], "speech was marred by the": [65535, 0], "was marred by the resumption": [65535, 0], "marred by the resumption of": [65535, 0], "by the resumption of fights": [65535, 0], "the resumption of fights and": [65535, 0], "resumption of fights and other": [65535, 0], "of fights and other recreations": [65535, 0], "fights and other recreations among": [65535, 0], "and other recreations among certain": [65535, 0], "other recreations among certain of": [65535, 0], "recreations among certain of the": [65535, 0], "among certain of the bad": [65535, 0], "certain of the bad boys": [65535, 0], "of the bad boys and": [65535, 0], "the bad boys and by": [65535, 0], "bad boys and by fidgetings": [65535, 0], "boys and by fidgetings and": [65535, 0], "and by fidgetings and whisperings": [65535, 0], "by fidgetings and whisperings that": [65535, 0], "fidgetings and whisperings that extended": [65535, 0], "and whisperings that extended far": [65535, 0], "whisperings that extended far and": [65535, 0], "that extended far and wide": [65535, 0], "extended far and wide washing": [65535, 0], "far and wide washing even": [65535, 0], "and wide washing even to": [65535, 0], "wide washing even to the": [65535, 0], "washing even to the bases": [65535, 0], "even to the bases of": [65535, 0], "to the bases of isolated": [65535, 0], "the bases of isolated and": [65535, 0], "bases of isolated and incorruptible": [65535, 0], "of isolated and incorruptible rocks": [65535, 0], "isolated and incorruptible rocks like": [65535, 0], "and incorruptible rocks like sid": [65535, 0], "incorruptible rocks like sid and": [65535, 0], "rocks like sid and mary": [65535, 0], "like sid and mary but": [65535, 0], "sid and mary but now": [65535, 0], "and mary but now every": [65535, 0], "mary but now every sound": [65535, 0], "but now every sound ceased": [65535, 0], "now every sound ceased suddenly": [65535, 0], "every sound ceased suddenly with": [65535, 0], "sound ceased suddenly with the": [65535, 0], "ceased suddenly with the subsidence": [65535, 0], "suddenly with the subsidence of": [65535, 0], "with the subsidence of mr": [65535, 0], "the subsidence of mr walters'": [65535, 0], "subsidence of mr walters' voice": [65535, 0], "of mr walters' voice and": [65535, 0], "mr walters' voice and the": [65535, 0], "walters' voice and the conclusion": [65535, 0], "voice and the conclusion of": [65535, 0], "and the conclusion of the": [65535, 0], "the conclusion of the speech": [65535, 0], "conclusion of the speech was": [65535, 0], "of the speech was received": [65535, 0], "the speech was received with": [65535, 0], "speech was received with a": [65535, 0], "was received with a burst": [65535, 0], "received with a burst of": [65535, 0], "with a burst of silent": [65535, 0], "a burst of silent gratitude": [65535, 0], "burst of silent gratitude a": [65535, 0], "of silent gratitude a good": [65535, 0], "silent gratitude a good part": [65535, 0], "gratitude a good part of": [65535, 0], "a good part of the": [65535, 0], "good part of the whispering": [65535, 0], "part of the whispering had": [65535, 0], "of the whispering had been": [65535, 0], "the whispering had been occasioned": [65535, 0], "whispering had been occasioned by": [65535, 0], "had been occasioned by an": [65535, 0], "been occasioned by an event": [65535, 0], "occasioned by an event which": [65535, 0], "by an event which was": [65535, 0], "an event which was more": [65535, 0], "event which was more or": [65535, 0], "which was more or less": [65535, 0], "was more or less rare": [65535, 0], "more or less rare the": [65535, 0], "or less rare the entrance": [65535, 0], "less rare the entrance of": [65535, 0], "rare the entrance of visitors": [65535, 0], "the entrance of visitors lawyer": [65535, 0], "entrance of visitors lawyer thatcher": [65535, 0], "of visitors lawyer thatcher accompanied": [65535, 0], "visitors lawyer thatcher accompanied by": [65535, 0], "lawyer thatcher accompanied by a": [65535, 0], "thatcher accompanied by a very": [65535, 0], "accompanied by a very feeble": [65535, 0], "by a very feeble and": [65535, 0], "a very feeble and aged": [65535, 0], "very feeble and aged man": [65535, 0], "feeble and aged man a": [65535, 0], "and aged man a fine": [65535, 0], "aged man a fine portly": [65535, 0], "man a fine portly middle": [65535, 0], "a fine portly middle aged": [65535, 0], "fine portly middle aged gentleman": [65535, 0], "portly middle aged gentleman with": [65535, 0], "middle aged gentleman with iron": [65535, 0], "aged gentleman with iron gray": [65535, 0], "gentleman with iron gray hair": [65535, 0], "with iron gray hair and": [65535, 0], "iron gray hair and a": [65535, 0], "gray hair and a dignified": [65535, 0], "hair and a dignified lady": [65535, 0], "and a dignified lady who": [65535, 0], "a dignified lady who was": [65535, 0], "dignified lady who was doubtless": [65535, 0], "lady who was doubtless the": [65535, 0], "who was doubtless the latter's": [65535, 0], "was doubtless the latter's wife": [65535, 0], "doubtless the latter's wife the": [65535, 0], "the latter's wife the lady": [65535, 0], "latter's wife the lady was": [65535, 0], "wife the lady was leading": [65535, 0], "the lady was leading a": [65535, 0], "lady was leading a child": [65535, 0], "was leading a child tom": [65535, 0], "leading a child tom had": [65535, 0], "a child tom had been": [65535, 0], "child tom had been restless": [65535, 0], "tom had been restless and": [65535, 0], "had been restless and full": [65535, 0], "been restless and full of": [65535, 0], "restless and full of chafings": [65535, 0], "and full of chafings and": [65535, 0], "full of chafings and repinings": [65535, 0], "of chafings and repinings conscience": [65535, 0], "chafings and repinings conscience smitten": [65535, 0], "and repinings conscience smitten too": [65535, 0], "repinings conscience smitten too he": [65535, 0], "conscience smitten too he could": [65535, 0], "smitten too he could not": [65535, 0], "too he could not meet": [65535, 0], "he could not meet amy": [65535, 0], "could not meet amy lawrence's": [65535, 0], "not meet amy lawrence's eye": [65535, 0], "meet amy lawrence's eye he": [65535, 0], "amy lawrence's eye he could": [65535, 0], "lawrence's eye he could not": [65535, 0], "eye he could not brook": [65535, 0], "he could not brook her": [65535, 0], "could not brook her loving": [65535, 0], "not brook her loving gaze": [65535, 0], "brook her loving gaze but": [65535, 0], "her loving gaze but when": [65535, 0], "loving gaze but when he": [65535, 0], "gaze but when he saw": [65535, 0], "but when he saw this": [65535, 0], "when he saw this small": [65535, 0], "he saw this small new": [65535, 0], "saw this small new comer": [65535, 0], "this small new comer his": [65535, 0], "small new comer his soul": [65535, 0], "new comer his soul was": [65535, 0], "comer his soul was all": [65535, 0], "his soul was all ablaze": [65535, 0], "soul was all ablaze with": [65535, 0], "was all ablaze with bliss": [65535, 0], "all ablaze with bliss in": [65535, 0], "ablaze with bliss in a": [65535, 0], "with bliss in a moment": [65535, 0], "bliss in a moment the": [65535, 0], "in a moment the next": [65535, 0], "a moment the next moment": [65535, 0], "moment the next moment he": [65535, 0], "the next moment he was": [65535, 0], "next moment he was showing": [65535, 0], "moment he was showing off": [65535, 0], "he was showing off with": [65535, 0], "was showing off with all": [65535, 0], "showing off with all his": [65535, 0], "off with all his might": [65535, 0], "with all his might cuffing": [65535, 0], "all his might cuffing boys": [65535, 0], "his might cuffing boys pulling": [65535, 0], "might cuffing boys pulling hair": [65535, 0], "cuffing boys pulling hair making": [65535, 0], "boys pulling hair making faces": [65535, 0], "pulling hair making faces in": [65535, 0], "hair making faces in a": [65535, 0], "making faces in a word": [65535, 0], "faces in a word using": [65535, 0], "in a word using every": [65535, 0], "a word using every art": [65535, 0], "word using every art that": [65535, 0], "using every art that seemed": [65535, 0], "every art that seemed likely": [65535, 0], "art that seemed likely to": [65535, 0], "that seemed likely to fascinate": [65535, 0], "seemed likely to fascinate a": [65535, 0], "likely to fascinate a girl": [65535, 0], "to fascinate a girl and": [65535, 0], "fascinate a girl and win": [65535, 0], "a girl and win her": [65535, 0], "girl and win her applause": [65535, 0], "and win her applause his": [65535, 0], "win her applause his exaltation": [65535, 0], "her applause his exaltation had": [65535, 0], "applause his exaltation had but": [65535, 0], "his exaltation had but one": [65535, 0], "exaltation had but one alloy": [65535, 0], "had but one alloy the": [65535, 0], "but one alloy the memory": [65535, 0], "one alloy the memory of": [65535, 0], "alloy the memory of his": [65535, 0], "the memory of his humiliation": [65535, 0], "memory of his humiliation in": [65535, 0], "of his humiliation in this": [65535, 0], "his humiliation in this angel's": [65535, 0], "humiliation in this angel's garden": [65535, 0], "in this angel's garden and": [65535, 0], "this angel's garden and that": [65535, 0], "angel's garden and that record": [65535, 0], "garden and that record in": [65535, 0], "and that record in sand": [65535, 0], "that record in sand was": [65535, 0], "record in sand was fast": [65535, 0], "in sand was fast washing": [65535, 0], "sand was fast washing out": [65535, 0], "was fast washing out under": [65535, 0], "fast washing out under the": [65535, 0], "washing out under the waves": [65535, 0], "out under the waves of": [65535, 0], "under the waves of happiness": [65535, 0], "the waves of happiness that": [65535, 0], "waves of happiness that were": [65535, 0], "of happiness that were sweeping": [65535, 0], "happiness that were sweeping over": [65535, 0], "that were sweeping over it": [65535, 0], "were sweeping over it now": [65535, 0], "sweeping over it now the": [65535, 0], "over it now the visitors": [65535, 0], "it now the visitors were": [65535, 0], "now the visitors were given": [65535, 0], "the visitors were given the": [65535, 0], "visitors were given the highest": [65535, 0], "were given the highest seat": [65535, 0], "given the highest seat of": [65535, 0], "the highest seat of honor": [65535, 0], "highest seat of honor and": [65535, 0], "seat of honor and as": [65535, 0], "of honor and as soon": [65535, 0], "honor and as soon as": [65535, 0], "and as soon as mr": [65535, 0], "as soon as mr walters'": [65535, 0], "soon as mr walters' speech": [65535, 0], "as mr walters' speech was": [65535, 0], "mr walters' speech was finished": [65535, 0], "walters' speech was finished he": [65535, 0], "speech was finished he introduced": [65535, 0], "was finished he introduced them": [65535, 0], "finished he introduced them to": [65535, 0], "he introduced them to the": [65535, 0], "introduced them to the school": [65535, 0], "them to the school the": [65535, 0], "to the school the middle": [65535, 0], "the school the middle aged": [65535, 0], "school the middle aged man": [65535, 0], "the middle aged man turned": [65535, 0], "middle aged man turned out": [65535, 0], "aged man turned out to": [65535, 0], "man turned out to be": [65535, 0], "turned out to be a": [65535, 0], "out to be a prodigious": [65535, 0], "to be a prodigious personage": [65535, 0], "be a prodigious personage no": [65535, 0], "a prodigious personage no less": [65535, 0], "prodigious personage no less a": [65535, 0], "personage no less a one": [65535, 0], "no less a one than": [65535, 0], "less a one than the": [65535, 0], "a one than the county": [65535, 0], "one than the county judge": [65535, 0], "than the county judge altogether": [65535, 0], "the county judge altogether the": [65535, 0], "county judge altogether the most": [65535, 0], "judge altogether the most august": [65535, 0], "altogether the most august creation": [65535, 0], "the most august creation these": [65535, 0], "most august creation these children": [65535, 0], "august creation these children had": [65535, 0], "creation these children had ever": [65535, 0], "these children had ever looked": [65535, 0], "children had ever looked upon": [65535, 0], "had ever looked upon and": [65535, 0], "ever looked upon and they": [65535, 0], "looked upon and they wondered": [65535, 0], "upon and they wondered what": [65535, 0], "and they wondered what kind": [65535, 0], "they wondered what kind of": [65535, 0], "wondered what kind of material": [65535, 0], "what kind of material he": [65535, 0], "kind of material he was": [65535, 0], "of material he was made": [65535, 0], "material he was made of": [65535, 0], "he was made of and": [65535, 0], "was made of and they": [65535, 0], "made of and they half": [65535, 0], "of and they half wanted": [65535, 0], "and they half wanted to": [65535, 0], "they half wanted to hear": [65535, 0], "half wanted to hear him": [65535, 0], "wanted to hear him roar": [65535, 0], "to hear him roar and": [65535, 0], "hear him roar and were": [65535, 0], "him roar and were half": [65535, 0], "roar and were half afraid": [65535, 0], "and were half afraid he": [65535, 0], "were half afraid he might": [65535, 0], "half afraid he might too": [65535, 0], "afraid he might too he": [65535, 0], "he might too he was": [65535, 0], "might too he was from": [65535, 0], "too he was from constantinople": [65535, 0], "he was from constantinople twelve": [65535, 0], "was from constantinople twelve miles": [65535, 0], "from constantinople twelve miles away": [65535, 0], "constantinople twelve miles away so": [65535, 0], "twelve miles away so he": [65535, 0], "miles away so he had": [65535, 0], "away so he had travelled": [65535, 0], "so he had travelled and": [65535, 0], "he had travelled and seen": [65535, 0], "had travelled and seen the": [65535, 0], "travelled and seen the world": [65535, 0], "and seen the world these": [65535, 0], "seen the world these very": [65535, 0], "the world these very eyes": [65535, 0], "world these very eyes had": [65535, 0], "these very eyes had looked": [65535, 0], "very eyes had looked upon": [65535, 0], "eyes had looked upon the": [65535, 0], "had looked upon the county": [65535, 0], "looked upon the county court": [65535, 0], "upon the county court house": [65535, 0], "the county court house which": [65535, 0], "county court house which was": [65535, 0], "court house which was said": [65535, 0], "house which was said to": [65535, 0], "which was said to have": [65535, 0], "was said to have a": [65535, 0], "said to have a tin": [65535, 0], "to have a tin roof": [65535, 0], "have a tin roof the": [65535, 0], "a tin roof the awe": [65535, 0], "tin roof the awe which": [65535, 0], "roof the awe which these": [65535, 0], "the awe which these reflections": [65535, 0], "awe which these reflections inspired": [65535, 0], "which these reflections inspired was": [65535, 0], "these reflections inspired was attested": [65535, 0], "reflections inspired was attested by": [65535, 0], "inspired was attested by the": [65535, 0], "was attested by the impressive": [65535, 0], "attested by the impressive silence": [65535, 0], "by the impressive silence and": [65535, 0], "the impressive silence and the": [65535, 0], "impressive silence and the ranks": [65535, 0], "silence and the ranks of": [65535, 0], "and the ranks of staring": [65535, 0], "the ranks of staring eyes": [65535, 0], "ranks of staring eyes this": [65535, 0], "of staring eyes this was": [65535, 0], "staring eyes this was the": [65535, 0], "eyes this was the great": [65535, 0], "this was the great judge": [65535, 0], "was the great judge thatcher": [65535, 0], "the great judge thatcher brother": [65535, 0], "great judge thatcher brother of": [65535, 0], "judge thatcher brother of their": [65535, 0], "thatcher brother of their own": [65535, 0], "brother of their own lawyer": [65535, 0], "of their own lawyer jeff": [65535, 0], "their own lawyer jeff thatcher": [65535, 0], "own lawyer jeff thatcher immediately": [65535, 0], "lawyer jeff thatcher immediately went": [65535, 0], "jeff thatcher immediately went forward": [65535, 0], "thatcher immediately went forward to": [65535, 0], "immediately went forward to be": [65535, 0], "went forward to be familiar": [65535, 0], "forward to be familiar with": [65535, 0], "to be familiar with the": [65535, 0], "be familiar with the great": [65535, 0], "familiar with the great man": [65535, 0], "with the great man and": [65535, 0], "the great man and be": [65535, 0], "great man and be envied": [65535, 0], "man and be envied by": [65535, 0], "and be envied by the": [65535, 0], "be envied by the school": [65535, 0], "envied by the school it": [65535, 0], "by the school it would": [65535, 0], "the school it would have": [65535, 0], "school it would have been": [65535, 0], "it would have been music": [65535, 0], "would have been music to": [65535, 0], "have been music to his": [65535, 0], "been music to his soul": [65535, 0], "music to his soul to": [65535, 0], "to his soul to hear": [65535, 0], "his soul to hear the": [65535, 0], "soul to hear the whisperings": [65535, 0], "to hear the whisperings look": [65535, 0], "hear the whisperings look at": [65535, 0], "the whisperings look at him": [65535, 0], "whisperings look at him jim": [65535, 0], "look at him jim he's": [65535, 0], "at him jim he's a": [65535, 0], "him jim he's a going": [65535, 0], "jim he's a going up": [65535, 0], "he's a going up there": [65535, 0], "a going up there say": [65535, 0], "going up there say look": [65535, 0], "up there say look he's": [65535, 0], "there say look he's a": [65535, 0], "say look he's a going": [65535, 0], "look he's a going to": [65535, 0], "he's a going to shake": [65535, 0], "a going to shake hands": [65535, 0], "going to shake hands with": [65535, 0], "to shake hands with him": [65535, 0], "shake hands with him he": [65535, 0], "hands with him he is": [65535, 0], "with him he is shaking": [65535, 0], "him he is shaking hands": [65535, 0], "he is shaking hands with": [65535, 0], "is shaking hands with him": [65535, 0], "shaking hands with him by": [65535, 0], "hands with him by jings": [65535, 0], "with him by jings don't": [65535, 0], "him by jings don't you": [65535, 0], "by jings don't you wish": [65535, 0], "jings don't you wish you": [65535, 0], "don't you wish you was": [65535, 0], "you wish you was jeff": [65535, 0], "wish you was jeff mr": [65535, 0], "you was jeff mr walters": [65535, 0], "was jeff mr walters fell": [65535, 0], "jeff mr walters fell to": [65535, 0], "mr walters fell to showing": [65535, 0], "walters fell to showing off": [65535, 0], "fell to showing off with": [65535, 0], "to showing off with all": [65535, 0], "showing off with all sorts": [65535, 0], "off with all sorts of": [65535, 0], "with all sorts of official": [65535, 0], "all sorts of official bustlings": [65535, 0], "sorts of official bustlings and": [65535, 0], "of official bustlings and activities": [65535, 0], "official bustlings and activities giving": [65535, 0], "bustlings and activities giving orders": [65535, 0], "and activities giving orders delivering": [65535, 0], "activities giving orders delivering judgments": [65535, 0], "giving orders delivering judgments discharging": [65535, 0], "orders delivering judgments discharging directions": [65535, 0], "delivering judgments discharging directions here": [65535, 0], "judgments discharging directions here there": [65535, 0], "discharging directions here there everywhere": [65535, 0], "directions here there everywhere that": [65535, 0], "here there everywhere that he": [65535, 0], "there everywhere that he could": [65535, 0], "everywhere that he could find": [65535, 0], "that he could find a": [65535, 0], "he could find a target": [65535, 0], "could find a target the": [65535, 0], "find a target the librarian": [65535, 0], "a target the librarian showed": [65535, 0], "target the librarian showed off": [65535, 0], "the librarian showed off running": [65535, 0], "librarian showed off running hither": [65535, 0], "showed off running hither and": [65535, 0], "off running hither and thither": [65535, 0], "running hither and thither with": [65535, 0], "hither and thither with his": [65535, 0], "and thither with his arms": [65535, 0], "thither with his arms full": [65535, 0], "with his arms full of": [65535, 0], "his arms full of books": [65535, 0], "arms full of books and": [65535, 0], "full of books and making": [65535, 0], "of books and making a": [65535, 0], "books and making a deal": [65535, 0], "and making a deal of": [65535, 0], "making a deal of the": [65535, 0], "a deal of the splutter": [65535, 0], "deal of the splutter and": [65535, 0], "of the splutter and fuss": [65535, 0], "the splutter and fuss that": [65535, 0], "splutter and fuss that insect": [65535, 0], "and fuss that insect authority": [65535, 0], "fuss that insect authority delights": [65535, 0], "that insect authority delights in": [65535, 0], "insect authority delights in the": [65535, 0], "authority delights in the young": [65535, 0], "delights in the young lady": [65535, 0], "in the young lady teachers": [65535, 0], "the young lady teachers showed": [65535, 0], "young lady teachers showed off": [65535, 0], "lady teachers showed off bending": [65535, 0], "teachers showed off bending sweetly": [65535, 0], "showed off bending sweetly over": [65535, 0], "off bending sweetly over pupils": [65535, 0], "bending sweetly over pupils that": [65535, 0], "sweetly over pupils that were": [65535, 0], "over pupils that were lately": [65535, 0], "pupils that were lately being": [65535, 0], "that were lately being boxed": [65535, 0], "were lately being boxed lifting": [65535, 0], "lately being boxed lifting pretty": [65535, 0], "being boxed lifting pretty warning": [65535, 0], "boxed lifting pretty warning fingers": [65535, 0], "lifting pretty warning fingers at": [65535, 0], "pretty warning fingers at bad": [65535, 0], "warning fingers at bad little": [65535, 0], "fingers at bad little boys": [65535, 0], "at bad little boys and": [65535, 0], "bad little boys and patting": [65535, 0], "little boys and patting good": [65535, 0], "boys and patting good ones": [65535, 0], "and patting good ones lovingly": [65535, 0], "patting good ones lovingly the": [65535, 0], "good ones lovingly the young": [65535, 0], "ones lovingly the young gentlemen": [65535, 0], "lovingly the young gentlemen teachers": [65535, 0], "the young gentlemen teachers showed": [65535, 0], "young gentlemen teachers showed off": [65535, 0], "gentlemen teachers showed off with": [65535, 0], "teachers showed off with small": [65535, 0], "showed off with small scoldings": [65535, 0], "off with small scoldings and": [65535, 0], "with small scoldings and other": [65535, 0], "small scoldings and other little": [65535, 0], "scoldings and other little displays": [65535, 0], "and other little displays of": [65535, 0], "other little displays of authority": [65535, 0], "little displays of authority and": [65535, 0], "displays of authority and fine": [65535, 0], "of authority and fine attention": [65535, 0], "authority and fine attention to": [65535, 0], "and fine attention to discipline": [65535, 0], "fine attention to discipline and": [65535, 0], "attention to discipline and most": [65535, 0], "to discipline and most of": [65535, 0], "discipline and most of the": [65535, 0], "and most of the teachers": [65535, 0], "most of the teachers of": [65535, 0], "of the teachers of both": [65535, 0], "the teachers of both sexes": [65535, 0], "teachers of both sexes found": [65535, 0], "of both sexes found business": [65535, 0], "both sexes found business up": [65535, 0], "sexes found business up at": [65535, 0], "found business up at the": [65535, 0], "business up at the library": [65535, 0], "up at the library by": [65535, 0], "at the library by the": [65535, 0], "the library by the pulpit": [65535, 0], "library by the pulpit and": [65535, 0], "by the pulpit and it": [65535, 0], "the pulpit and it was": [65535, 0], "pulpit and it was business": [65535, 0], "and it was business that": [65535, 0], "it was business that frequently": [65535, 0], "was business that frequently had": [65535, 0], "business that frequently had to": [65535, 0], "that frequently had to be": [65535, 0], "frequently had to be done": [65535, 0], "had to be done over": [65535, 0], "to be done over again": [65535, 0], "be done over again two": [65535, 0], "done over again two or": [65535, 0], "over again two or three": [65535, 0], "again two or three times": [65535, 0], "two or three times with": [65535, 0], "or three times with much": [65535, 0], "three times with much seeming": [65535, 0], "times with much seeming vexation": [65535, 0], "with much seeming vexation the": [65535, 0], "much seeming vexation the little": [65535, 0], "seeming vexation the little girls": [65535, 0], "vexation the little girls showed": [65535, 0], "the little girls showed off": [65535, 0], "little girls showed off in": [65535, 0], "girls showed off in various": [65535, 0], "showed off in various ways": [65535, 0], "off in various ways and": [65535, 0], "in various ways and the": [65535, 0], "various ways and the little": [65535, 0], "ways and the little boys": [65535, 0], "and the little boys showed": [65535, 0], "the little boys showed off": [65535, 0], "little boys showed off with": [65535, 0], "boys showed off with such": [65535, 0], "showed off with such diligence": [65535, 0], "off with such diligence that": [65535, 0], "with such diligence that the": [65535, 0], "such diligence that the air": [65535, 0], "diligence that the air was": [65535, 0], "that the air was thick": [65535, 0], "the air was thick with": [65535, 0], "air was thick with paper": [65535, 0], "was thick with paper wads": [65535, 0], "thick with paper wads and": [65535, 0], "with paper wads and the": [65535, 0], "paper wads and the murmur": [65535, 0], "wads and the murmur of": [65535, 0], "and the murmur of scufflings": [65535, 0], "the murmur of scufflings and": [65535, 0], "murmur of scufflings and above": [65535, 0], "of scufflings and above it": [65535, 0], "scufflings and above it all": [65535, 0], "and above it all the": [65535, 0], "above it all the great": [65535, 0], "it all the great man": [65535, 0], "all the great man sat": [65535, 0], "the great man sat and": [65535, 0], "great man sat and beamed": [65535, 0], "man sat and beamed a": [65535, 0], "sat and beamed a majestic": [65535, 0], "and beamed a majestic judicial": [65535, 0], "beamed a majestic judicial smile": [65535, 0], "a majestic judicial smile upon": [65535, 0], "majestic judicial smile upon all": [65535, 0], "judicial smile upon all the": [65535, 0], "smile upon all the house": [65535, 0], "upon all the house and": [65535, 0], "all the house and warmed": [65535, 0], "the house and warmed himself": [65535, 0], "house and warmed himself in": [65535, 0], "and warmed himself in the": [65535, 0], "warmed himself in the sun": [65535, 0], "himself in the sun of": [65535, 0], "in the sun of his": [65535, 0], "the sun of his own": [65535, 0], "sun of his own grandeur": [65535, 0], "of his own grandeur for": [65535, 0], "his own grandeur for he": [65535, 0], "own grandeur for he was": [65535, 0], "grandeur for he was showing": [65535, 0], "for he was showing off": [65535, 0], "he was showing off too": [65535, 0], "was showing off too there": [65535, 0], "showing off too there was": [65535, 0], "off too there was only": [65535, 0], "too there was only one": [65535, 0], "there was only one thing": [65535, 0], "was only one thing wanting": [65535, 0], "only one thing wanting to": [65535, 0], "one thing wanting to make": [65535, 0], "thing wanting to make mr": [65535, 0], "wanting to make mr walters'": [65535, 0], "to make mr walters' ecstasy": [65535, 0], "make mr walters' ecstasy complete": [65535, 0], "mr walters' ecstasy complete and": [65535, 0], "walters' ecstasy complete and that": [65535, 0], "ecstasy complete and that was": [65535, 0], "complete and that was a": [65535, 0], "and that was a chance": [65535, 0], "that was a chance to": [65535, 0], "was a chance to deliver": [65535, 0], "a chance to deliver a": [65535, 0], "chance to deliver a bible": [65535, 0], "to deliver a bible prize": [65535, 0], "deliver a bible prize and": [65535, 0], "a bible prize and exhibit": [65535, 0], "bible prize and exhibit a": [65535, 0], "prize and exhibit a prodigy": [65535, 0], "and exhibit a prodigy several": [65535, 0], "exhibit a prodigy several pupils": [65535, 0], "a prodigy several pupils had": [65535, 0], "prodigy several pupils had a": [65535, 0], "several pupils had a few": [65535, 0], "pupils had a few yellow": [65535, 0], "had a few yellow tickets": [65535, 0], "a few yellow tickets but": [65535, 0], "few yellow tickets but none": [65535, 0], "yellow tickets but none had": [65535, 0], "tickets but none had enough": [65535, 0], "but none had enough he": [65535, 0], "none had enough he had": [65535, 0], "had enough he had been": [65535, 0], "enough he had been around": [65535, 0], "he had been around among": [65535, 0], "had been around among the": [65535, 0], "been around among the star": [65535, 0], "around among the star pupils": [65535, 0], "among the star pupils inquiring": [65535, 0], "the star pupils inquiring he": [65535, 0], "star pupils inquiring he would": [65535, 0], "pupils inquiring he would have": [65535, 0], "inquiring he would have given": [65535, 0], "he would have given worlds": [65535, 0], "would have given worlds now": [65535, 0], "have given worlds now to": [65535, 0], "given worlds now to have": [65535, 0], "worlds now to have that": [65535, 0], "now to have that german": [65535, 0], "to have that german lad": [65535, 0], "have that german lad back": [65535, 0], "that german lad back again": [65535, 0], "german lad back again with": [65535, 0], "lad back again with a": [65535, 0], "back again with a sound": [65535, 0], "again with a sound mind": [65535, 0], "with a sound mind and": [65535, 0], "a sound mind and now": [65535, 0], "sound mind and now at": [65535, 0], "mind and now at this": [65535, 0], "and now at this moment": [65535, 0], "now at this moment when": [65535, 0], "at this moment when hope": [65535, 0], "this moment when hope was": [65535, 0], "moment when hope was dead": [65535, 0], "when hope was dead tom": [65535, 0], "hope was dead tom sawyer": [65535, 0], "was dead tom sawyer came": [65535, 0], "dead tom sawyer came forward": [65535, 0], "tom sawyer came forward with": [65535, 0], "sawyer came forward with nine": [65535, 0], "came forward with nine yellow": [65535, 0], "forward with nine yellow tickets": [65535, 0], "with nine yellow tickets nine": [65535, 0], "nine yellow tickets nine red": [65535, 0], "yellow tickets nine red tickets": [65535, 0], "tickets nine red tickets and": [65535, 0], "nine red tickets and ten": [65535, 0], "red tickets and ten blue": [65535, 0], "tickets and ten blue ones": [65535, 0], "and ten blue ones and": [65535, 0], "ten blue ones and demanded": [65535, 0], "blue ones and demanded a": [65535, 0], "ones and demanded a bible": [65535, 0], "and demanded a bible this": [65535, 0], "demanded a bible this was": [65535, 0], "a bible this was a": [65535, 0], "bible this was a thunderbolt": [65535, 0], "this was a thunderbolt out": [65535, 0], "was a thunderbolt out of": [65535, 0], "a thunderbolt out of a": [65535, 0], "thunderbolt out of a clear": [65535, 0], "out of a clear sky": [65535, 0], "of a clear sky walters": [65535, 0], "a clear sky walters was": [65535, 0], "clear sky walters was not": [65535, 0], "sky walters was not expecting": [65535, 0], "walters was not expecting an": [65535, 0], "was not expecting an application": [65535, 0], "not expecting an application from": [65535, 0], "expecting an application from this": [65535, 0], "an application from this source": [65535, 0], "application from this source for": [65535, 0], "from this source for the": [65535, 0], "this source for the next": [65535, 0], "source for the next ten": [65535, 0], "for the next ten years": [65535, 0], "the next ten years but": [65535, 0], "next ten years but there": [65535, 0], "ten years but there was": [65535, 0], "years but there was no": [65535, 0], "but there was no getting": [65535, 0], "there was no getting around": [65535, 0], "was no getting around it": [65535, 0], "no getting around it here": [65535, 0], "getting around it here were": [65535, 0], "around it here were the": [65535, 0], "it here were the certified": [65535, 0], "here were the certified checks": [65535, 0], "were the certified checks and": [65535, 0], "the certified checks and they": [65535, 0], "certified checks and they were": [65535, 0], "checks and they were good": [65535, 0], "and they were good for": [65535, 0], "they were good for their": [65535, 0], "were good for their face": [65535, 0], "good for their face tom": [65535, 0], "for their face tom was": [65535, 0], "their face tom was therefore": [65535, 0], "face tom was therefore elevated": [65535, 0], "tom was therefore elevated to": [65535, 0], "was therefore elevated to a": [65535, 0], "therefore elevated to a place": [65535, 0], "elevated to a place with": [65535, 0], "to a place with the": [65535, 0], "a place with the judge": [65535, 0], "place with the judge and": [65535, 0], "with the judge and the": [65535, 0], "the judge and the other": [65535, 0], "judge and the other elect": [65535, 0], "and the other elect and": [65535, 0], "the other elect and the": [65535, 0], "other elect and the great": [65535, 0], "elect and the great news": [65535, 0], "and the great news was": [65535, 0], "the great news was announced": [65535, 0], "great news was announced from": [65535, 0], "news was announced from headquarters": [65535, 0], "was announced from headquarters it": [65535, 0], "announced from headquarters it was": [65535, 0], "from headquarters it was the": [65535, 0], "headquarters it was the most": [65535, 0], "it was the most stunning": [65535, 0], "was the most stunning surprise": [65535, 0], "the most stunning surprise of": [65535, 0], "most stunning surprise of the": [65535, 0], "stunning surprise of the decade": [65535, 0], "surprise of the decade and": [65535, 0], "of the decade and so": [65535, 0], "the decade and so profound": [65535, 0], "decade and so profound was": [65535, 0], "and so profound was the": [65535, 0], "so profound was the sensation": [65535, 0], "profound was the sensation that": [65535, 0], "was the sensation that it": [65535, 0], "the sensation that it lifted": [65535, 0], "sensation that it lifted the": [65535, 0], "that it lifted the new": [65535, 0], "it lifted the new hero": [65535, 0], "lifted the new hero up": [65535, 0], "the new hero up to": [65535, 0], "new hero up to the": [65535, 0], "hero up to the judicial": [65535, 0], "up to the judicial one's": [65535, 0], "to the judicial one's altitude": [65535, 0], "the judicial one's altitude and": [65535, 0], "judicial one's altitude and the": [65535, 0], "one's altitude and the school": [65535, 0], "altitude and the school had": [65535, 0], "and the school had two": [65535, 0], "the school had two marvels": [65535, 0], "school had two marvels to": [65535, 0], "had two marvels to gaze": [65535, 0], "two marvels to gaze upon": [65535, 0], "marvels to gaze upon in": [65535, 0], "to gaze upon in place": [65535, 0], "gaze upon in place of": [65535, 0], "upon in place of one": [65535, 0], "in place of one the": [65535, 0], "place of one the boys": [65535, 0], "of one the boys were": [65535, 0], "one the boys were all": [65535, 0], "the boys were all eaten": [65535, 0], "boys were all eaten up": [65535, 0], "were all eaten up with": [65535, 0], "all eaten up with envy": [65535, 0], "eaten up with envy but": [65535, 0], "up with envy but those": [65535, 0], "with envy but those that": [65535, 0], "envy but those that suffered": [65535, 0], "but those that suffered the": [65535, 0], "those that suffered the bitterest": [65535, 0], "that suffered the bitterest pangs": [65535, 0], "suffered the bitterest pangs were": [65535, 0], "the bitterest pangs were those": [65535, 0], "bitterest pangs were those who": [65535, 0], "pangs were those who perceived": [65535, 0], "were those who perceived too": [65535, 0], "those who perceived too late": [65535, 0], "who perceived too late that": [65535, 0], "perceived too late that they": [65535, 0], "too late that they themselves": [65535, 0], "late that they themselves had": [65535, 0], "that they themselves had contributed": [65535, 0], "they themselves had contributed to": [65535, 0], "themselves had contributed to this": [65535, 0], "had contributed to this hated": [65535, 0], "contributed to this hated splendor": [65535, 0], "to this hated splendor by": [65535, 0], "this hated splendor by trading": [65535, 0], "hated splendor by trading tickets": [65535, 0], "splendor by trading tickets to": [65535, 0], "by trading tickets to tom": [65535, 0], "trading tickets to tom for": [65535, 0], "tickets to tom for the": [65535, 0], "to tom for the wealth": [65535, 0], "tom for the wealth he": [65535, 0], "for the wealth he had": [65535, 0], "the wealth he had amassed": [65535, 0], "wealth he had amassed in": [65535, 0], "he had amassed in selling": [65535, 0], "had amassed in selling whitewashing": [65535, 0], "amassed in selling whitewashing privileges": [65535, 0], "in selling whitewashing privileges these": [65535, 0], "selling whitewashing privileges these despised": [65535, 0], "whitewashing privileges these despised themselves": [65535, 0], "privileges these despised themselves as": [65535, 0], "these despised themselves as being": [65535, 0], "despised themselves as being the": [65535, 0], "themselves as being the dupes": [65535, 0], "as being the dupes of": [65535, 0], "being the dupes of a": [65535, 0], "the dupes of a wily": [65535, 0], "dupes of a wily fraud": [65535, 0], "of a wily fraud a": [65535, 0], "a wily fraud a guileful": [65535, 0], "wily fraud a guileful snake": [65535, 0], "fraud a guileful snake in": [65535, 0], "a guileful snake in the": [65535, 0], "guileful snake in the grass": [65535, 0], "snake in the grass the": [65535, 0], "in the grass the prize": [65535, 0], "the grass the prize was": [65535, 0], "grass the prize was delivered": [65535, 0], "the prize was delivered to": [65535, 0], "prize was delivered to tom": [65535, 0], "was delivered to tom with": [65535, 0], "delivered to tom with as": [65535, 0], "to tom with as much": [65535, 0], "tom with as much effusion": [65535, 0], "with as much effusion as": [65535, 0], "as much effusion as the": [65535, 0], "much effusion as the superintendent": [65535, 0], "effusion as the superintendent could": [65535, 0], "as the superintendent could pump": [65535, 0], "the superintendent could pump up": [65535, 0], "superintendent could pump up under": [65535, 0], "could pump up under the": [65535, 0], "pump up under the circumstances": [65535, 0], "up under the circumstances but": [65535, 0], "under the circumstances but it": [65535, 0], "the circumstances but it lacked": [65535, 0], "circumstances but it lacked somewhat": [65535, 0], "but it lacked somewhat of": [65535, 0], "it lacked somewhat of the": [65535, 0], "lacked somewhat of the true": [65535, 0], "somewhat of the true gush": [65535, 0], "of the true gush for": [65535, 0], "the true gush for the": [65535, 0], "true gush for the poor": [65535, 0], "gush for the poor fellow's": [65535, 0], "for the poor fellow's instinct": [65535, 0], "the poor fellow's instinct taught": [65535, 0], "poor fellow's instinct taught him": [65535, 0], "fellow's instinct taught him that": [65535, 0], "instinct taught him that there": [65535, 0], "taught him that there was": [65535, 0], "him that there was a": [65535, 0], "that there was a mystery": [65535, 0], "there was a mystery here": [65535, 0], "was a mystery here that": [65535, 0], "a mystery here that could": [65535, 0], "mystery here that could not": [65535, 0], "here that could not well": [65535, 0], "that could not well bear": [65535, 0], "could not well bear the": [65535, 0], "not well bear the light": [65535, 0], "well bear the light perhaps": [65535, 0], "bear the light perhaps it": [65535, 0], "the light perhaps it was": [65535, 0], "light perhaps it was simply": [65535, 0], "perhaps it was simply preposterous": [65535, 0], "it was simply preposterous that": [65535, 0], "was simply preposterous that this": [65535, 0], "simply preposterous that this boy": [65535, 0], "preposterous that this boy had": [65535, 0], "that this boy had warehoused": [65535, 0], "this boy had warehoused two": [65535, 0], "boy had warehoused two thousand": [65535, 0], "had warehoused two thousand sheaves": [65535, 0], "warehoused two thousand sheaves of": [65535, 0], "two thousand sheaves of scriptural": [65535, 0], "thousand sheaves of scriptural wisdom": [65535, 0], "sheaves of scriptural wisdom on": [65535, 0], "of scriptural wisdom on his": [65535, 0], "scriptural wisdom on his premises": [65535, 0], "wisdom on his premises a": [65535, 0], "on his premises a dozen": [65535, 0], "his premises a dozen would": [65535, 0], "premises a dozen would strain": [65535, 0], "a dozen would strain his": [65535, 0], "dozen would strain his capacity": [65535, 0], "would strain his capacity without": [65535, 0], "strain his capacity without a": [65535, 0], "his capacity without a doubt": [65535, 0], "capacity without a doubt amy": [65535, 0], "without a doubt amy lawrence": [65535, 0], "a doubt amy lawrence was": [65535, 0], "doubt amy lawrence was proud": [65535, 0], "amy lawrence was proud and": [65535, 0], "lawrence was proud and glad": [65535, 0], "was proud and glad and": [65535, 0], "proud and glad and she": [65535, 0], "and glad and she tried": [65535, 0], "glad and she tried to": [65535, 0], "and she tried to make": [65535, 0], "she tried to make tom": [65535, 0], "tried to make tom see": [65535, 0], "to make tom see it": [65535, 0], "make tom see it in": [65535, 0], "tom see it in her": [65535, 0], "see it in her face": [65535, 0], "it in her face but": [65535, 0], "in her face but he": [65535, 0], "her face but he wouldn't": [65535, 0], "face but he wouldn't look": [65535, 0], "but he wouldn't look she": [65535, 0], "he wouldn't look she wondered": [65535, 0], "wouldn't look she wondered then": [65535, 0], "look she wondered then she": [65535, 0], "she wondered then she was": [65535, 0], "wondered then she was just": [65535, 0], "then she was just a": [65535, 0], "she was just a grain": [65535, 0], "was just a grain troubled": [65535, 0], "just a grain troubled next": [65535, 0], "a grain troubled next a": [65535, 0], "grain troubled next a dim": [65535, 0], "troubled next a dim suspicion": [65535, 0], "next a dim suspicion came": [65535, 0], "a dim suspicion came and": [65535, 0], "dim suspicion came and went": [65535, 0], "suspicion came and went came": [65535, 0], "came and went came again": [65535, 0], "and went came again she": [65535, 0], "went came again she watched": [65535, 0], "came again she watched a": [65535, 0], "again she watched a furtive": [65535, 0], "she watched a furtive glance": [65535, 0], "watched a furtive glance told": [65535, 0], "a furtive glance told her": [65535, 0], "furtive glance told her worlds": [65535, 0], "glance told her worlds and": [65535, 0], "told her worlds and then": [65535, 0], "her worlds and then her": [65535, 0], "worlds and then her heart": [65535, 0], "and then her heart broke": [65535, 0], "then her heart broke and": [65535, 0], "her heart broke and she": [65535, 0], "heart broke and she was": [65535, 0], "broke and she was jealous": [65535, 0], "and she was jealous and": [65535, 0], "she was jealous and angry": [65535, 0], "was jealous and angry and": [65535, 0], "jealous and angry and the": [65535, 0], "and angry and the tears": [65535, 0], "angry and the tears came": [65535, 0], "and the tears came and": [65535, 0], "the tears came and she": [65535, 0], "tears came and she hated": [65535, 0], "came and she hated everybody": [65535, 0], "and she hated everybody tom": [65535, 0], "she hated everybody tom most": [65535, 0], "hated everybody tom most of": [65535, 0], "everybody tom most of all": [65535, 0], "tom most of all she": [65535, 0], "most of all she thought": [65535, 0], "of all she thought tom": [65535, 0], "all she thought tom was": [65535, 0], "she thought tom was introduced": [65535, 0], "thought tom was introduced to": [65535, 0], "tom was introduced to the": [65535, 0], "was introduced to the judge": [65535, 0], "introduced to the judge but": [65535, 0], "to the judge but his": [65535, 0], "the judge but his tongue": [65535, 0], "judge but his tongue was": [65535, 0], "but his tongue was tied": [65535, 0], "his tongue was tied his": [65535, 0], "tongue was tied his breath": [65535, 0], "was tied his breath would": [65535, 0], "tied his breath would hardly": [65535, 0], "his breath would hardly come": [65535, 0], "breath would hardly come his": [65535, 0], "would hardly come his heart": [65535, 0], "hardly come his heart quaked": [65535, 0], "come his heart quaked partly": [65535, 0], "his heart quaked partly because": [65535, 0], "heart quaked partly because of": [65535, 0], "quaked partly because of the": [65535, 0], "partly because of the awful": [65535, 0], "because of the awful greatness": [65535, 0], "of the awful greatness of": [65535, 0], "the awful greatness of the": [65535, 0], "awful greatness of the man": [65535, 0], "greatness of the man but": [65535, 0], "of the man but mainly": [65535, 0], "the man but mainly because": [65535, 0], "man but mainly because he": [65535, 0], "but mainly because he was": [65535, 0], "mainly because he was her": [65535, 0], "because he was her parent": [65535, 0], "he was her parent he": [65535, 0], "was her parent he would": [65535, 0], "her parent he would have": [65535, 0], "parent he would have liked": [65535, 0], "he would have liked to": [65535, 0], "would have liked to fall": [65535, 0], "have liked to fall down": [65535, 0], "liked to fall down and": [65535, 0], "to fall down and worship": [65535, 0], "fall down and worship him": [65535, 0], "down and worship him if": [65535, 0], "and worship him if it": [65535, 0], "worship him if it were": [65535, 0], "him if it were in": [65535, 0], "if it were in the": [65535, 0], "it were in the dark": [65535, 0], "were in the dark the": [65535, 0], "in the dark the judge": [65535, 0], "the dark the judge put": [65535, 0], "dark the judge put his": [65535, 0], "the judge put his hand": [65535, 0], "judge put his hand on": [65535, 0], "put his hand on tom's": [65535, 0], "his hand on tom's head": [65535, 0], "hand on tom's head and": [65535, 0], "on tom's head and called": [65535, 0], "tom's head and called him": [65535, 0], "head and called him a": [65535, 0], "and called him a fine": [65535, 0], "called him a fine little": [65535, 0], "him a fine little man": [65535, 0], "a fine little man and": [65535, 0], "fine little man and asked": [65535, 0], "little man and asked him": [65535, 0], "man and asked him what": [65535, 0], "and asked him what his": [65535, 0], "asked him what his name": [65535, 0], "him what his name was": [65535, 0], "what his name was the": [65535, 0], "his name was the boy": [65535, 0], "name was the boy stammered": [65535, 0], "was the boy stammered gasped": [65535, 0], "the boy stammered gasped and": [65535, 0], "boy stammered gasped and got": [65535, 0], "stammered gasped and got it": [65535, 0], "gasped and got it out": [65535, 0], "and got it out tom": [65535, 0], "got it out tom oh": [65535, 0], "it out tom oh no": [65535, 0], "out tom oh no not": [65535, 0], "tom oh no not tom": [65535, 0], "oh no not tom it": [65535, 0], "no not tom it is": [65535, 0], "not tom it is thomas": [65535, 0], "tom it is thomas ah": [65535, 0], "it is thomas ah that's": [65535, 0], "is thomas ah that's it": [65535, 0], "thomas ah that's it i": [65535, 0], "ah that's it i thought": [65535, 0], "that's it i thought there": [65535, 0], "it i thought there was": [65535, 0], "i thought there was more": [65535, 0], "thought there was more to": [65535, 0], "there was more to it": [65535, 0], "was more to it maybe": [65535, 0], "more to it maybe that's": [65535, 0], "to it maybe that's very": [65535, 0], "it maybe that's very well": [65535, 0], "maybe that's very well but": [65535, 0], "that's very well but you've": [65535, 0], "very well but you've another": [65535, 0], "well but you've another one": [65535, 0], "but you've another one i": [65535, 0], "you've another one i daresay": [65535, 0], "another one i daresay and": [65535, 0], "one i daresay and you'll": [65535, 0], "i daresay and you'll tell": [65535, 0], "daresay and you'll tell it": [65535, 0], "and you'll tell it to": [65535, 0], "you'll tell it to me": [65535, 0], "tell it to me won't": [65535, 0], "it to me won't you": [65535, 0], "to me won't you tell": [65535, 0], "me won't you tell the": [65535, 0], "won't you tell the gentleman": [65535, 0], "you tell the gentleman your": [65535, 0], "tell the gentleman your other": [65535, 0], "the gentleman your other name": [65535, 0], "gentleman your other name thomas": [65535, 0], "your other name thomas said": [65535, 0], "other name thomas said walters": [65535, 0], "name thomas said walters and": [65535, 0], "thomas said walters and say": [65535, 0], "said walters and say sir": [65535, 0], "walters and say sir you": [65535, 0], "and say sir you mustn't": [65535, 0], "say sir you mustn't forget": [65535, 0], "sir you mustn't forget your": [65535, 0], "you mustn't forget your manners": [65535, 0], "mustn't forget your manners thomas": [65535, 0], "forget your manners thomas sawyer": [65535, 0], "your manners thomas sawyer sir": [65535, 0], "manners thomas sawyer sir that's": [65535, 0], "thomas sawyer sir that's it": [65535, 0], "sawyer sir that's it that's": [65535, 0], "sir that's it that's a": [65535, 0], "that's it that's a good": [65535, 0], "it that's a good boy": [65535, 0], "that's a good boy fine": [65535, 0], "a good boy fine boy": [65535, 0], "good boy fine boy fine": [65535, 0], "boy fine boy fine manly": [65535, 0], "fine boy fine manly little": [65535, 0], "boy fine manly little fellow": [65535, 0], "fine manly little fellow two": [65535, 0], "manly little fellow two thousand": [65535, 0], "little fellow two thousand verses": [65535, 0], "fellow two thousand verses is": [65535, 0], "two thousand verses is a": [65535, 0], "thousand verses is a great": [65535, 0], "verses is a great many": [65535, 0], "is a great many very": [65535, 0], "a great many very very": [65535, 0], "great many very very great": [65535, 0], "many very very great many": [65535, 0], "very very great many and": [65535, 0], "very great many and you": [65535, 0], "great many and you never": [65535, 0], "many and you never can": [65535, 0], "and you never can be": [65535, 0], "you never can be sorry": [65535, 0], "never can be sorry for": [65535, 0], "can be sorry for the": [65535, 0], "be sorry for the trouble": [65535, 0], "sorry for the trouble you": [65535, 0], "for the trouble you took": [65535, 0], "the trouble you took to": [65535, 0], "trouble you took to learn": [65535, 0], "you took to learn them": [65535, 0], "took to learn them for": [65535, 0], "to learn them for knowledge": [65535, 0], "learn them for knowledge is": [65535, 0], "them for knowledge is worth": [65535, 0], "for knowledge is worth more": [65535, 0], "knowledge is worth more than": [65535, 0], "is worth more than anything": [65535, 0], "worth more than anything there": [65535, 0], "more than anything there is": [65535, 0], "than anything there is in": [65535, 0], "anything there is in the": [65535, 0], "there is in the world": [65535, 0], "is in the world it's": [65535, 0], "in the world it's what": [65535, 0], "the world it's what makes": [65535, 0], "world it's what makes great": [65535, 0], "it's what makes great men": [65535, 0], "what makes great men and": [65535, 0], "makes great men and good": [65535, 0], "great men and good men": [65535, 0], "men and good men you'll": [65535, 0], "and good men you'll be": [65535, 0], "good men you'll be a": [65535, 0], "men you'll be a great": [65535, 0], "you'll be a great man": [65535, 0], "be a great man and": [65535, 0], "a great man and a": [65535, 0], "great man and a good": [65535, 0], "man and a good man": [65535, 0], "and a good man yourself": [65535, 0], "a good man yourself some": [65535, 0], "good man yourself some day": [65535, 0], "man yourself some day thomas": [65535, 0], "yourself some day thomas and": [65535, 0], "some day thomas and then": [65535, 0], "day thomas and then you'll": [65535, 0], "thomas and then you'll look": [65535, 0], "and then you'll look back": [65535, 0], "then you'll look back and": [65535, 0], "you'll look back and say": [65535, 0], "look back and say it's": [65535, 0], "back and say it's all": [65535, 0], "and say it's all owing": [65535, 0], "say it's all owing to": [65535, 0], "it's all owing to the": [65535, 0], "all owing to the precious": [65535, 0], "owing to the precious sunday": [65535, 0], "to the precious sunday school": [65535, 0], "the precious sunday school privileges": [65535, 0], "precious sunday school privileges of": [65535, 0], "sunday school privileges of my": [65535, 0], "school privileges of my boyhood": [65535, 0], "privileges of my boyhood it's": [65535, 0], "of my boyhood it's all": [65535, 0], "my boyhood it's all owing": [65535, 0], "boyhood it's all owing to": [65535, 0], "it's all owing to my": [65535, 0], "all owing to my dear": [65535, 0], "owing to my dear teachers": [65535, 0], "to my dear teachers that": [65535, 0], "my dear teachers that taught": [65535, 0], "dear teachers that taught me": [65535, 0], "teachers that taught me to": [65535, 0], "that taught me to learn": [65535, 0], "taught me to learn it's": [65535, 0], "me to learn it's all": [65535, 0], "to learn it's all owing": [65535, 0], "learn it's all owing to": [65535, 0], "all owing to the good": [65535, 0], "owing to the good superintendent": [65535, 0], "to the good superintendent who": [65535, 0], "the good superintendent who encouraged": [65535, 0], "good superintendent who encouraged me": [65535, 0], "superintendent who encouraged me and": [65535, 0], "who encouraged me and watched": [65535, 0], "encouraged me and watched over": [65535, 0], "me and watched over me": [65535, 0], "and watched over me and": [65535, 0], "watched over me and gave": [65535, 0], "over me and gave me": [65535, 0], "me and gave me a": [65535, 0], "and gave me a beautiful": [65535, 0], "gave me a beautiful bible": [65535, 0], "me a beautiful bible a": [65535, 0], "a beautiful bible a splendid": [65535, 0], "beautiful bible a splendid elegant": [65535, 0], "bible a splendid elegant bible": [65535, 0], "a splendid elegant bible to": [65535, 0], "splendid elegant bible to keep": [65535, 0], "elegant bible to keep and": [65535, 0], "bible to keep and have": [65535, 0], "to keep and have it": [65535, 0], "keep and have it all": [65535, 0], "and have it all for": [65535, 0], "have it all for my": [65535, 0], "it all for my own": [65535, 0], "all for my own always": [65535, 0], "for my own always it's": [65535, 0], "my own always it's all": [65535, 0], "own always it's all owing": [65535, 0], "always it's all owing to": [65535, 0], "it's all owing to right": [65535, 0], "all owing to right bringing": [65535, 0], "owing to right bringing up": [65535, 0], "to right bringing up that": [65535, 0], "right bringing up that is": [65535, 0], "bringing up that is what": [65535, 0], "up that is what you": [65535, 0], "that is what you will": [65535, 0], "is what you will say": [65535, 0], "what you will say thomas": [65535, 0], "you will say thomas and": [65535, 0], "will say thomas and you": [65535, 0], "say thomas and you wouldn't": [65535, 0], "thomas and you wouldn't take": [65535, 0], "and you wouldn't take any": [65535, 0], "you wouldn't take any money": [65535, 0], "wouldn't take any money for": [65535, 0], "take any money for those": [65535, 0], "any money for those two": [65535, 0], "money for those two thousand": [65535, 0], "for those two thousand verses": [65535, 0], "those two thousand verses no": [65535, 0], "two thousand verses no indeed": [65535, 0], "thousand verses no indeed you": [65535, 0], "verses no indeed you wouldn't": [65535, 0], "no indeed you wouldn't and": [65535, 0], "indeed you wouldn't and now": [65535, 0], "you wouldn't and now you": [65535, 0], "wouldn't and now you wouldn't": [65535, 0], "and now you wouldn't mind": [65535, 0], "now you wouldn't mind telling": [65535, 0], "you wouldn't mind telling me": [65535, 0], "wouldn't mind telling me and": [65535, 0], "mind telling me and this": [65535, 0], "telling me and this lady": [65535, 0], "me and this lady some": [65535, 0], "and this lady some of": [65535, 0], "this lady some of the": [65535, 0], "lady some of the things": [65535, 0], "some of the things you've": [65535, 0], "of the things you've learned": [65535, 0], "the things you've learned no": [65535, 0], "things you've learned no i": [65535, 0], "you've learned no i know": [65535, 0], "learned no i know you": [65535, 0], "no i know you wouldn't": [65535, 0], "i know you wouldn't for": [65535, 0], "know you wouldn't for we": [65535, 0], "you wouldn't for we are": [65535, 0], "wouldn't for we are proud": [65535, 0], "for we are proud of": [65535, 0], "we are proud of little": [65535, 0], "are proud of little boys": [65535, 0], "proud of little boys that": [65535, 0], "of little boys that learn": [65535, 0], "little boys that learn now": [65535, 0], "boys that learn now no": [65535, 0], "that learn now no doubt": [65535, 0], "learn now no doubt you": [65535, 0], "now no doubt you know": [65535, 0], "no doubt you know the": [65535, 0], "doubt you know the names": [65535, 0], "you know the names of": [65535, 0], "know the names of all": [65535, 0], "the names of all the": [65535, 0], "names of all the twelve": [65535, 0], "of all the twelve disciples": [65535, 0], "all the twelve disciples won't": [65535, 0], "the twelve disciples won't you": [65535, 0], "twelve disciples won't you tell": [65535, 0], "disciples won't you tell us": [65535, 0], "won't you tell us the": [65535, 0], "you tell us the names": [65535, 0], "tell us the names of": [65535, 0], "us the names of the": [65535, 0], "the names of the first": [65535, 0], "names of the first two": [65535, 0], "of the first two that": [65535, 0], "the first two that were": [65535, 0], "first two that were appointed": [65535, 0], "two that were appointed tom": [65535, 0], "that were appointed tom was": [65535, 0], "were appointed tom was tugging": [65535, 0], "appointed tom was tugging at": [65535, 0], "tom was tugging at a": [65535, 0], "was tugging at a button": [65535, 0], "tugging at a button hole": [65535, 0], "at a button hole and": [65535, 0], "a button hole and looking": [65535, 0], "button hole and looking sheepish": [65535, 0], "hole and looking sheepish he": [65535, 0], "and looking sheepish he blushed": [65535, 0], "looking sheepish he blushed now": [65535, 0], "sheepish he blushed now and": [65535, 0], "he blushed now and his": [65535, 0], "blushed now and his eyes": [65535, 0], "now and his eyes fell": [65535, 0], "and his eyes fell mr": [65535, 0], "his eyes fell mr walters'": [65535, 0], "eyes fell mr walters' heart": [65535, 0], "fell mr walters' heart sank": [65535, 0], "mr walters' heart sank within": [65535, 0], "walters' heart sank within him": [65535, 0], "heart sank within him he": [65535, 0], "sank within him he said": [65535, 0], "within him he said to": [65535, 0], "him he said to himself": [65535, 0], "he said to himself it": [65535, 0], "said to himself it is": [65535, 0], "to himself it is not": [65535, 0], "himself it is not possible": [65535, 0], "it is not possible that": [65535, 0], "is not possible that the": [65535, 0], "not possible that the boy": [65535, 0], "possible that the boy can": [65535, 0], "that the boy can answer": [65535, 0], "the boy can answer the": [65535, 0], "boy can answer the simplest": [65535, 0], "can answer the simplest question": [65535, 0], "answer the simplest question why": [65535, 0], "the simplest question why did": [65535, 0], "simplest question why did the": [65535, 0], "question why did the judge": [65535, 0], "why did the judge ask": [65535, 0], "did the judge ask him": [65535, 0], "the judge ask him yet": [65535, 0], "judge ask him yet he": [65535, 0], "ask him yet he felt": [65535, 0], "him yet he felt obliged": [65535, 0], "yet he felt obliged to": [65535, 0], "he felt obliged to speak": [65535, 0], "felt obliged to speak up": [65535, 0], "obliged to speak up and": [65535, 0], "to speak up and say": [65535, 0], "speak up and say answer": [65535, 0], "up and say answer the": [65535, 0], "and say answer the gentleman": [65535, 0], "say answer the gentleman thomas": [65535, 0], "answer the gentleman thomas don't": [65535, 0], "the gentleman thomas don't be": [65535, 0], "gentleman thomas don't be afraid": [65535, 0], "thomas don't be afraid tom": [65535, 0], "don't be afraid tom still": [65535, 0], "be afraid tom still hung": [65535, 0], "afraid tom still hung fire": [65535, 0], "tom still hung fire now": [65535, 0], "still hung fire now i": [65535, 0], "hung fire now i know": [65535, 0], "fire now i know you'll": [65535, 0], "now i know you'll tell": [65535, 0], "i know you'll tell me": [65535, 0], "know you'll tell me said": [65535, 0], "you'll tell me said the": [65535, 0], "tell me said the lady": [65535, 0], "me said the lady the": [65535, 0], "said the lady the names": [65535, 0], "the lady the names of": [65535, 0], "lady the names of the": [65535, 0], "of the first two disciples": [65535, 0], "the first two disciples were": [65535, 0], "first two disciples were david": [65535, 0], "two disciples were david and": [65535, 0], "disciples were david and goliath": [65535, 0], "were david and goliath let": [65535, 0], "david and goliath let us": [65535, 0], "and goliath let us draw": [65535, 0], "goliath let us draw the": [65535, 0], "let us draw the curtain": [65535, 0], "us draw the curtain of": [65535, 0], "draw the curtain of charity": [65535, 0], "the curtain of charity over": [65535, 0], "curtain of charity over the": [65535, 0], "of charity over the rest": [65535, 0], "charity over the rest of": [65535, 0], "over the rest of the": [65535, 0], "the rest of the scene": [65535, 0], "the sun rose upon a tranquil": [65535, 0], "sun rose upon a tranquil world": [65535, 0], "rose upon a tranquil world and": [65535, 0], "upon a tranquil world and beamed": [65535, 0], "a tranquil world and beamed down": [65535, 0], "tranquil world and beamed down upon": [65535, 0], "world and beamed down upon the": [65535, 0], "and beamed down upon the peaceful": [65535, 0], "beamed down upon the peaceful village": [65535, 0], "down upon the peaceful village like": [65535, 0], "upon the peaceful village like a": [65535, 0], "the peaceful village like a benediction": [65535, 0], "peaceful village like a benediction breakfast": [65535, 0], "village like a benediction breakfast over": [65535, 0], "like a benediction breakfast over aunt": [65535, 0], "a benediction breakfast over aunt polly": [65535, 0], "benediction breakfast over aunt polly had": [65535, 0], "breakfast over aunt polly had family": [65535, 0], "over aunt polly had family worship": [65535, 0], "aunt polly had family worship it": [65535, 0], "polly had family worship it began": [65535, 0], "had family worship it began with": [65535, 0], "family worship it began with a": [65535, 0], "worship it began with a prayer": [65535, 0], "it began with a prayer built": [65535, 0], "began with a prayer built from": [65535, 0], "with a prayer built from the": [65535, 0], "a prayer built from the ground": [65535, 0], "prayer built from the ground up": [65535, 0], "built from the ground up of": [65535, 0], "from the ground up of solid": [65535, 0], "the ground up of solid courses": [65535, 0], "ground up of solid courses of": [65535, 0], "up of solid courses of scriptural": [65535, 0], "of solid courses of scriptural quotations": [65535, 0], "solid courses of scriptural quotations welded": [65535, 0], "courses of scriptural quotations welded together": [65535, 0], "of scriptural quotations welded together with": [65535, 0], "scriptural quotations welded together with a": [65535, 0], "quotations welded together with a thin": [65535, 0], "welded together with a thin mortar": [65535, 0], "together with a thin mortar of": [65535, 0], "with a thin mortar of originality": [65535, 0], "a thin mortar of originality and": [65535, 0], "thin mortar of originality and from": [65535, 0], "mortar of originality and from the": [65535, 0], "of originality and from the summit": [65535, 0], "originality and from the summit of": [65535, 0], "and from the summit of this": [65535, 0], "from the summit of this she": [65535, 0], "the summit of this she delivered": [65535, 0], "summit of this she delivered a": [65535, 0], "of this she delivered a grim": [65535, 0], "this she delivered a grim chapter": [65535, 0], "she delivered a grim chapter of": [65535, 0], "delivered a grim chapter of the": [65535, 0], "a grim chapter of the mosaic": [65535, 0], "grim chapter of the mosaic law": [65535, 0], "chapter of the mosaic law as": [65535, 0], "of the mosaic law as from": [65535, 0], "the mosaic law as from sinai": [65535, 0], "mosaic law as from sinai then": [65535, 0], "law as from sinai then tom": [65535, 0], "as from sinai then tom girded": [65535, 0], "from sinai then tom girded up": [65535, 0], "sinai then tom girded up his": [65535, 0], "then tom girded up his loins": [65535, 0], "tom girded up his loins so": [65535, 0], "girded up his loins so to": [65535, 0], "up his loins so to speak": [65535, 0], "his loins so to speak and": [65535, 0], "loins so to speak and went": [65535, 0], "so to speak and went to": [65535, 0], "to speak and went to work": [65535, 0], "speak and went to work to": [65535, 0], "and went to work to get": [65535, 0], "went to work to get his": [65535, 0], "to work to get his verses": [65535, 0], "work to get his verses sid": [65535, 0], "to get his verses sid had": [65535, 0], "get his verses sid had learned": [65535, 0], "his verses sid had learned his": [65535, 0], "verses sid had learned his lesson": [65535, 0], "sid had learned his lesson days": [65535, 0], "had learned his lesson days before": [65535, 0], "learned his lesson days before tom": [65535, 0], "his lesson days before tom bent": [65535, 0], "lesson days before tom bent all": [65535, 0], "days before tom bent all his": [65535, 0], "before tom bent all his energies": [65535, 0], "tom bent all his energies to": [65535, 0], "bent all his energies to the": [65535, 0], "all his energies to the memorizing": [65535, 0], "his energies to the memorizing of": [65535, 0], "energies to the memorizing of five": [65535, 0], "to the memorizing of five verses": [65535, 0], "the memorizing of five verses and": [65535, 0], "memorizing of five verses and he": [65535, 0], "of five verses and he chose": [65535, 0], "five verses and he chose part": [65535, 0], "verses and he chose part of": [65535, 0], "and he chose part of the": [65535, 0], "he chose part of the sermon": [65535, 0], "chose part of the sermon on": [65535, 0], "part of the sermon on the": [65535, 0], "of the sermon on the mount": [65535, 0], "the sermon on the mount because": [65535, 0], "sermon on the mount because he": [65535, 0], "on the mount because he could": [65535, 0], "the mount because he could find": [65535, 0], "mount because he could find no": [65535, 0], "because he could find no verses": [65535, 0], "he could find no verses that": [65535, 0], "could find no verses that were": [65535, 0], "find no verses that were shorter": [65535, 0], "no verses that were shorter at": [65535, 0], "verses that were shorter at the": [65535, 0], "that were shorter at the end": [65535, 0], "were shorter at the end of": [65535, 0], "shorter at the end of half": [65535, 0], "at the end of half an": [65535, 0], "the end of half an hour": [65535, 0], "end of half an hour tom": [65535, 0], "of half an hour tom had": [65535, 0], "half an hour tom had a": [65535, 0], "an hour tom had a vague": [65535, 0], "hour tom had a vague general": [65535, 0], "tom had a vague general idea": [65535, 0], "had a vague general idea of": [65535, 0], "a vague general idea of his": [65535, 0], "vague general idea of his lesson": [65535, 0], "general idea of his lesson but": [65535, 0], "idea of his lesson but no": [65535, 0], "of his lesson but no more": [65535, 0], "his lesson but no more for": [65535, 0], "lesson but no more for his": [65535, 0], "but no more for his mind": [65535, 0], "no more for his mind was": [65535, 0], "more for his mind was traversing": [65535, 0], "for his mind was traversing the": [65535, 0], "his mind was traversing the whole": [65535, 0], "mind was traversing the whole field": [65535, 0], "was traversing the whole field of": [65535, 0], "traversing the whole field of human": [65535, 0], "the whole field of human thought": [65535, 0], "whole field of human thought and": [65535, 0], "field of human thought and his": [65535, 0], "of human thought and his hands": [65535, 0], "human thought and his hands were": [65535, 0], "thought and his hands were busy": [65535, 0], "and his hands were busy with": [65535, 0], "his hands were busy with distracting": [65535, 0], "hands were busy with distracting recreations": [65535, 0], "were busy with distracting recreations mary": [65535, 0], "busy with distracting recreations mary took": [65535, 0], "with distracting recreations mary took his": [65535, 0], "distracting recreations mary took his book": [65535, 0], "recreations mary took his book to": [65535, 0], "mary took his book to hear": [65535, 0], "took his book to hear him": [65535, 0], "his book to hear him recite": [65535, 0], "book to hear him recite and": [65535, 0], "to hear him recite and he": [65535, 0], "hear him recite and he tried": [65535, 0], "him recite and he tried to": [65535, 0], "recite and he tried to find": [65535, 0], "and he tried to find his": [65535, 0], "he tried to find his way": [65535, 0], "tried to find his way through": [65535, 0], "to find his way through the": [65535, 0], "find his way through the fog": [65535, 0], "his way through the fog blessed": [65535, 0], "way through the fog blessed are": [65535, 0], "through the fog blessed are the": [65535, 0], "the fog blessed are the a": [65535, 0], "fog blessed are the a a": [65535, 0], "blessed are the a a poor": [65535, 0], "are the a a poor yes": [65535, 0], "the a a poor yes poor": [65535, 0], "a a poor yes poor blessed": [65535, 0], "a poor yes poor blessed are": [65535, 0], "poor yes poor blessed are the": [65535, 0], "yes poor blessed are the poor": [65535, 0], "poor blessed are the poor a": [65535, 0], "blessed are the poor a a": [65535, 0], "are the poor a a in": [65535, 0], "the poor a a in spirit": [65535, 0], "poor a a in spirit in": [65535, 0], "a a in spirit in spirit": [65535, 0], "a in spirit in spirit blessed": [65535, 0], "in spirit in spirit blessed are": [65535, 0], "spirit in spirit blessed are the": [65535, 0], "in spirit blessed are the poor": [65535, 0], "spirit blessed are the poor in": [65535, 0], "blessed are the poor in spirit": [65535, 0], "are the poor in spirit for": [65535, 0], "the poor in spirit for they": [65535, 0], "poor in spirit for they they": [65535, 0], "in spirit for they they theirs": [65535, 0], "spirit for they they theirs for": [65535, 0], "for they they theirs for theirs": [65535, 0], "they they theirs for theirs blessed": [65535, 0], "they theirs for theirs blessed are": [65535, 0], "theirs for theirs blessed are the": [65535, 0], "for theirs blessed are the poor": [65535, 0], "theirs blessed are the poor in": [65535, 0], "the poor in spirit for theirs": [65535, 0], "poor in spirit for theirs is": [65535, 0], "in spirit for theirs is the": [65535, 0], "spirit for theirs is the kingdom": [65535, 0], "for theirs is the kingdom of": [65535, 0], "theirs is the kingdom of heaven": [65535, 0], "is the kingdom of heaven blessed": [65535, 0], "the kingdom of heaven blessed are": [65535, 0], "kingdom of heaven blessed are they": [65535, 0], "of heaven blessed are they that": [65535, 0], "heaven blessed are they that mourn": [65535, 0], "blessed are they that mourn for": [65535, 0], "are they that mourn for they": [65535, 0], "they that mourn for they they": [65535, 0], "that mourn for they they sh": [65535, 0], "mourn for they they sh for": [65535, 0], "for they they sh for they": [65535, 0], "they they sh for they a": [65535, 0], "they sh for they a s": [65535, 0], "sh for they a s h": [65535, 0], "for they a s h a": [65535, 0], "they a s h a for": [65535, 0], "a s h a for they": [65535, 0], "s h a for they s": [65535, 0], "h a for they s h": [65535, 0], "a for they s h oh": [65535, 0], "for they s h oh i": [65535, 0], "they s h oh i don't": [65535, 0], "s h oh i don't know": [65535, 0], "h oh i don't know what": [65535, 0], "oh i don't know what it": [65535, 0], "i don't know what it is": [65535, 0], "don't know what it is shall": [65535, 0], "know what it is shall oh": [65535, 0], "what it is shall oh shall": [65535, 0], "it is shall oh shall for": [65535, 0], "is shall oh shall for they": [65535, 0], "shall oh shall for they shall": [65535, 0], "oh shall for they shall for": [65535, 0], "shall for they shall for they": [65535, 0], "for they shall for they shall": [65535, 0], "they shall for they shall a": [65535, 0], "shall for they shall a a": [65535, 0], "for they shall a a shall": [65535, 0], "they shall a a shall mourn": [65535, 0], "shall a a shall mourn a": [65535, 0], "a a shall mourn a a": [65535, 0], "a shall mourn a a blessed": [65535, 0], "shall mourn a a blessed are": [65535, 0], "mourn a a blessed are they": [65535, 0], "a a blessed are they that": [65535, 0], "a blessed are they that shall": [65535, 0], "blessed are they that shall they": [65535, 0], "are they that shall they that": [65535, 0], "they that shall they that a": [65535, 0], "that shall they that a they": [65535, 0], "shall they that a they that": [65535, 0], "they that a they that shall": [65535, 0], "that a they that shall mourn": [65535, 0], "a they that shall mourn for": [65535, 0], "they that shall mourn for they": [65535, 0], "that shall mourn for they shall": [65535, 0], "shall mourn for they shall a": [65535, 0], "mourn for they shall a shall": [65535, 0], "for they shall a shall what": [65535, 0], "they shall a shall what why": [65535, 0], "shall a shall what why don't": [65535, 0], "a shall what why don't you": [65535, 0], "shall what why don't you tell": [65535, 0], "what why don't you tell me": [65535, 0], "why don't you tell me mary": [65535, 0], "don't you tell me mary what": [65535, 0], "you tell me mary what do": [65535, 0], "tell me mary what do you": [65535, 0], "me mary what do you want": [65535, 0], "mary what do you want to": [65535, 0], "what do you want to be": [65535, 0], "do you want to be so": [65535, 0], "you want to be so mean": [65535, 0], "want to be so mean for": [65535, 0], "to be so mean for oh": [65535, 0], "be so mean for oh tom": [65535, 0], "so mean for oh tom you": [65535, 0], "mean for oh tom you poor": [65535, 0], "for oh tom you poor thick": [65535, 0], "oh tom you poor thick headed": [65535, 0], "tom you poor thick headed thing": [65535, 0], "you poor thick headed thing i'm": [65535, 0], "poor thick headed thing i'm not": [65535, 0], "thick headed thing i'm not teasing": [65535, 0], "headed thing i'm not teasing you": [65535, 0], "thing i'm not teasing you i": [65535, 0], "i'm not teasing you i wouldn't": [65535, 0], "not teasing you i wouldn't do": [65535, 0], "teasing you i wouldn't do that": [65535, 0], "you i wouldn't do that you": [65535, 0], "i wouldn't do that you must": [65535, 0], "wouldn't do that you must go": [65535, 0], "do that you must go and": [65535, 0], "that you must go and learn": [65535, 0], "you must go and learn it": [65535, 0], "must go and learn it again": [65535, 0], "go and learn it again don't": [65535, 0], "and learn it again don't you": [65535, 0], "learn it again don't you be": [65535, 0], "it again don't you be discouraged": [65535, 0], "again don't you be discouraged tom": [65535, 0], "don't you be discouraged tom you'll": [65535, 0], "you be discouraged tom you'll manage": [65535, 0], "be discouraged tom you'll manage it": [65535, 0], "discouraged tom you'll manage it and": [65535, 0], "tom you'll manage it and if": [65535, 0], "you'll manage it and if you": [65535, 0], "manage it and if you do": [65535, 0], "it and if you do i'll": [65535, 0], "and if you do i'll give": [65535, 0], "if you do i'll give you": [65535, 0], "you do i'll give you something": [65535, 0], "do i'll give you something ever": [65535, 0], "i'll give you something ever so": [65535, 0], "give you something ever so nice": [65535, 0], "you something ever so nice there": [65535, 0], "something ever so nice there now": [65535, 0], "ever so nice there now that's": [65535, 0], "so nice there now that's a": [65535, 0], "nice there now that's a good": [65535, 0], "there now that's a good boy": [65535, 0], "now that's a good boy all": [65535, 0], "that's a good boy all right": [65535, 0], "a good boy all right what": [65535, 0], "good boy all right what is": [65535, 0], "boy all right what is it": [65535, 0], "all right what is it mary": [65535, 0], "right what is it mary tell": [65535, 0], "what is it mary tell me": [65535, 0], "is it mary tell me what": [65535, 0], "it mary tell me what it": [65535, 0], "mary tell me what it is": [65535, 0], "tell me what it is never": [65535, 0], "me what it is never you": [65535, 0], "what it is never you mind": [65535, 0], "it is never you mind tom": [65535, 0], "is never you mind tom you": [65535, 0], "never you mind tom you know": [65535, 0], "you mind tom you know if": [65535, 0], "mind tom you know if i": [65535, 0], "tom you know if i say": [65535, 0], "you know if i say it's": [65535, 0], "know if i say it's nice": [65535, 0], "if i say it's nice it": [65535, 0], "i say it's nice it is": [65535, 0], "say it's nice it is nice": [65535, 0], "it's nice it is nice you": [65535, 0], "nice it is nice you bet": [65535, 0], "it is nice you bet you": [65535, 0], "is nice you bet you that's": [65535, 0], "nice you bet you that's so": [65535, 0], "you bet you that's so mary": [65535, 0], "bet you that's so mary all": [65535, 0], "you that's so mary all right": [65535, 0], "that's so mary all right i'll": [65535, 0], "so mary all right i'll tackle": [65535, 0], "mary all right i'll tackle it": [65535, 0], "all right i'll tackle it again": [65535, 0], "right i'll tackle it again and": [65535, 0], "i'll tackle it again and he": [65535, 0], "tackle it again and he did": [65535, 0], "it again and he did tackle": [65535, 0], "again and he did tackle it": [65535, 0], "and he did tackle it again": [65535, 0], "he did tackle it again and": [65535, 0], "did tackle it again and under": [65535, 0], "tackle it again and under the": [65535, 0], "it again and under the double": [65535, 0], "again and under the double pressure": [65535, 0], "and under the double pressure of": [65535, 0], "under the double pressure of curiosity": [65535, 0], "the double pressure of curiosity and": [65535, 0], "double pressure of curiosity and prospective": [65535, 0], "pressure of curiosity and prospective gain": [65535, 0], "of curiosity and prospective gain he": [65535, 0], "curiosity and prospective gain he did": [65535, 0], "and prospective gain he did it": [65535, 0], "prospective gain he did it with": [65535, 0], "gain he did it with such": [65535, 0], "he did it with such spirit": [65535, 0], "did it with such spirit that": [65535, 0], "it with such spirit that he": [65535, 0], "with such spirit that he accomplished": [65535, 0], "such spirit that he accomplished a": [65535, 0], "spirit that he accomplished a shining": [65535, 0], "that he accomplished a shining success": [65535, 0], "he accomplished a shining success mary": [65535, 0], "accomplished a shining success mary gave": [65535, 0], "a shining success mary gave him": [65535, 0], "shining success mary gave him a": [65535, 0], "success mary gave him a brand": [65535, 0], "mary gave him a brand new": [65535, 0], "gave him a brand new barlow": [65535, 0], "him a brand new barlow knife": [65535, 0], "a brand new barlow knife worth": [65535, 0], "brand new barlow knife worth twelve": [65535, 0], "new barlow knife worth twelve and": [65535, 0], "barlow knife worth twelve and a": [65535, 0], "knife worth twelve and a half": [65535, 0], "worth twelve and a half cents": [65535, 0], "twelve and a half cents and": [65535, 0], "and a half cents and the": [65535, 0], "a half cents and the convulsion": [65535, 0], "half cents and the convulsion of": [65535, 0], "cents and the convulsion of delight": [65535, 0], "and the convulsion of delight that": [65535, 0], "the convulsion of delight that swept": [65535, 0], "convulsion of delight that swept his": [65535, 0], "of delight that swept his system": [65535, 0], "delight that swept his system shook": [65535, 0], "that swept his system shook him": [65535, 0], "swept his system shook him to": [65535, 0], "his system shook him to his": [65535, 0], "system shook him to his foundations": [65535, 0], "shook him to his foundations true": [65535, 0], "him to his foundations true the": [65535, 0], "to his foundations true the knife": [65535, 0], "his foundations true the knife would": [65535, 0], "foundations true the knife would not": [65535, 0], "true the knife would not cut": [65535, 0], "the knife would not cut anything": [65535, 0], "knife would not cut anything but": [65535, 0], "would not cut anything but it": [65535, 0], "not cut anything but it was": [65535, 0], "cut anything but it was a": [65535, 0], "anything but it was a sure": [65535, 0], "but it was a sure enough": [65535, 0], "it was a sure enough barlow": [65535, 0], "was a sure enough barlow and": [65535, 0], "a sure enough barlow and there": [65535, 0], "sure enough barlow and there was": [65535, 0], "enough barlow and there was inconceivable": [65535, 0], "barlow and there was inconceivable grandeur": [65535, 0], "and there was inconceivable grandeur in": [65535, 0], "there was inconceivable grandeur in that": [65535, 0], "was inconceivable grandeur in that though": [65535, 0], "inconceivable grandeur in that though where": [65535, 0], "grandeur in that though where the": [65535, 0], "in that though where the western": [65535, 0], "that though where the western boys": [65535, 0], "though where the western boys ever": [65535, 0], "where the western boys ever got": [65535, 0], "the western boys ever got the": [65535, 0], "western boys ever got the idea": [65535, 0], "boys ever got the idea that": [65535, 0], "ever got the idea that such": [65535, 0], "got the idea that such a": [65535, 0], "the idea that such a weapon": [65535, 0], "idea that such a weapon could": [65535, 0], "that such a weapon could possibly": [65535, 0], "such a weapon could possibly be": [65535, 0], "a weapon could possibly be counterfeited": [65535, 0], "weapon could possibly be counterfeited to": [65535, 0], "could possibly be counterfeited to its": [65535, 0], "possibly be counterfeited to its injury": [65535, 0], "be counterfeited to its injury is": [65535, 0], "counterfeited to its injury is an": [65535, 0], "to its injury is an imposing": [65535, 0], "its injury is an imposing mystery": [65535, 0], "injury is an imposing mystery and": [65535, 0], "is an imposing mystery and will": [65535, 0], "an imposing mystery and will always": [65535, 0], "imposing mystery and will always remain": [65535, 0], "mystery and will always remain so": [65535, 0], "and will always remain so perhaps": [65535, 0], "will always remain so perhaps tom": [65535, 0], "always remain so perhaps tom contrived": [65535, 0], "remain so perhaps tom contrived to": [65535, 0], "so perhaps tom contrived to scarify": [65535, 0], "perhaps tom contrived to scarify the": [65535, 0], "tom contrived to scarify the cupboard": [65535, 0], "contrived to scarify the cupboard with": [65535, 0], "to scarify the cupboard with it": [65535, 0], "scarify the cupboard with it and": [65535, 0], "the cupboard with it and was": [65535, 0], "cupboard with it and was arranging": [65535, 0], "with it and was arranging to": [65535, 0], "it and was arranging to begin": [65535, 0], "and was arranging to begin on": [65535, 0], "was arranging to begin on the": [65535, 0], "arranging to begin on the bureau": [65535, 0], "to begin on the bureau when": [65535, 0], "begin on the bureau when he": [65535, 0], "on the bureau when he was": [65535, 0], "the bureau when he was called": [65535, 0], "bureau when he was called off": [65535, 0], "when he was called off to": [65535, 0], "he was called off to dress": [65535, 0], "was called off to dress for": [65535, 0], "called off to dress for sunday": [65535, 0], "off to dress for sunday school": [65535, 0], "to dress for sunday school mary": [65535, 0], "dress for sunday school mary gave": [65535, 0], "for sunday school mary gave him": [65535, 0], "sunday school mary gave him a": [65535, 0], "school mary gave him a tin": [65535, 0], "mary gave him a tin basin": [65535, 0], "gave him a tin basin of": [65535, 0], "him a tin basin of water": [65535, 0], "a tin basin of water and": [65535, 0], "tin basin of water and a": [65535, 0], "basin of water and a piece": [65535, 0], "of water and a piece of": [65535, 0], "water and a piece of soap": [65535, 0], "and a piece of soap and": [65535, 0], "a piece of soap and he": [65535, 0], "piece of soap and he went": [65535, 0], "of soap and he went outside": [65535, 0], "soap and he went outside the": [65535, 0], "and he went outside the door": [65535, 0], "he went outside the door and": [65535, 0], "went outside the door and set": [65535, 0], "outside the door and set the": [65535, 0], "the door and set the basin": [65535, 0], "door and set the basin on": [65535, 0], "and set the basin on a": [65535, 0], "set the basin on a little": [65535, 0], "the basin on a little bench": [65535, 0], "basin on a little bench there": [65535, 0], "on a little bench there then": [65535, 0], "a little bench there then he": [65535, 0], "little bench there then he dipped": [65535, 0], "bench there then he dipped the": [65535, 0], "there then he dipped the soap": [65535, 0], "then he dipped the soap in": [65535, 0], "he dipped the soap in the": [65535, 0], "dipped the soap in the water": [65535, 0], "the soap in the water and": [65535, 0], "soap in the water and laid": [65535, 0], "in the water and laid it": [65535, 0], "the water and laid it down": [65535, 0], "water and laid it down turned": [65535, 0], "and laid it down turned up": [65535, 0], "laid it down turned up his": [65535, 0], "it down turned up his sleeves": [65535, 0], "down turned up his sleeves poured": [65535, 0], "turned up his sleeves poured out": [65535, 0], "up his sleeves poured out the": [65535, 0], "his sleeves poured out the water": [65535, 0], "sleeves poured out the water on": [65535, 0], "poured out the water on the": [65535, 0], "out the water on the ground": [65535, 0], "the water on the ground gently": [65535, 0], "water on the ground gently and": [65535, 0], "on the ground gently and then": [65535, 0], "the ground gently and then entered": [65535, 0], "ground gently and then entered the": [65535, 0], "gently and then entered the kitchen": [65535, 0], "and then entered the kitchen and": [65535, 0], "then entered the kitchen and began": [65535, 0], "entered the kitchen and began to": [65535, 0], "the kitchen and began to wipe": [65535, 0], "kitchen and began to wipe his": [65535, 0], "and began to wipe his face": [65535, 0], "began to wipe his face diligently": [65535, 0], "to wipe his face diligently on": [65535, 0], "wipe his face diligently on the": [65535, 0], "his face diligently on the towel": [65535, 0], "face diligently on the towel behind": [65535, 0], "diligently on the towel behind the": [65535, 0], "on the towel behind the door": [65535, 0], "the towel behind the door but": [65535, 0], "towel behind the door but mary": [65535, 0], "behind the door but mary removed": [65535, 0], "the door but mary removed the": [65535, 0], "door but mary removed the towel": [65535, 0], "but mary removed the towel and": [65535, 0], "mary removed the towel and said": [65535, 0], "removed the towel and said now": [65535, 0], "the towel and said now ain't": [65535, 0], "towel and said now ain't you": [65535, 0], "and said now ain't you ashamed": [65535, 0], "said now ain't you ashamed tom": [65535, 0], "now ain't you ashamed tom you": [65535, 0], "ain't you ashamed tom you mustn't": [65535, 0], "you ashamed tom you mustn't be": [65535, 0], "ashamed tom you mustn't be so": [65535, 0], "tom you mustn't be so bad": [65535, 0], "you mustn't be so bad water": [65535, 0], "mustn't be so bad water won't": [65535, 0], "be so bad water won't hurt": [65535, 0], "so bad water won't hurt you": [65535, 0], "bad water won't hurt you tom": [65535, 0], "water won't hurt you tom was": [65535, 0], "won't hurt you tom was a": [65535, 0], "hurt you tom was a trifle": [65535, 0], "you tom was a trifle disconcerted": [65535, 0], "tom was a trifle disconcerted the": [65535, 0], "was a trifle disconcerted the basin": [65535, 0], "a trifle disconcerted the basin was": [65535, 0], "trifle disconcerted the basin was refilled": [65535, 0], "disconcerted the basin was refilled and": [65535, 0], "the basin was refilled and this": [65535, 0], "basin was refilled and this time": [65535, 0], "was refilled and this time he": [65535, 0], "refilled and this time he stood": [65535, 0], "and this time he stood over": [65535, 0], "this time he stood over it": [65535, 0], "time he stood over it a": [65535, 0], "he stood over it a little": [65535, 0], "stood over it a little while": [65535, 0], "over it a little while gathering": [65535, 0], "it a little while gathering resolution": [65535, 0], "a little while gathering resolution took": [65535, 0], "little while gathering resolution took in": [65535, 0], "while gathering resolution took in a": [65535, 0], "gathering resolution took in a big": [65535, 0], "resolution took in a big breath": [65535, 0], "took in a big breath and": [65535, 0], "in a big breath and began": [65535, 0], "a big breath and began when": [65535, 0], "big breath and began when he": [65535, 0], "breath and began when he entered": [65535, 0], "and began when he entered the": [65535, 0], "began when he entered the kitchen": [65535, 0], "when he entered the kitchen presently": [65535, 0], "he entered the kitchen presently with": [65535, 0], "entered the kitchen presently with both": [65535, 0], "the kitchen presently with both eyes": [65535, 0], "kitchen presently with both eyes shut": [65535, 0], "presently with both eyes shut and": [65535, 0], "with both eyes shut and groping": [65535, 0], "both eyes shut and groping for": [65535, 0], "eyes shut and groping for the": [65535, 0], "shut and groping for the towel": [65535, 0], "and groping for the towel with": [65535, 0], "groping for the towel with his": [65535, 0], "for the towel with his hands": [65535, 0], "the towel with his hands an": [65535, 0], "towel with his hands an honorable": [65535, 0], "with his hands an honorable testimony": [65535, 0], "his hands an honorable testimony of": [65535, 0], "hands an honorable testimony of suds": [65535, 0], "an honorable testimony of suds and": [65535, 0], "honorable testimony of suds and water": [65535, 0], "testimony of suds and water was": [65535, 0], "of suds and water was dripping": [65535, 0], "suds and water was dripping from": [65535, 0], "and water was dripping from his": [65535, 0], "water was dripping from his face": [65535, 0], "was dripping from his face but": [65535, 0], "dripping from his face but when": [65535, 0], "from his face but when he": [65535, 0], "his face but when he emerged": [65535, 0], "face but when he emerged from": [65535, 0], "but when he emerged from the": [65535, 0], "when he emerged from the towel": [65535, 0], "he emerged from the towel he": [65535, 0], "emerged from the towel he was": [65535, 0], "from the towel he was not": [65535, 0], "the towel he was not yet": [65535, 0], "towel he was not yet satisfactory": [65535, 0], "he was not yet satisfactory for": [65535, 0], "was not yet satisfactory for the": [65535, 0], "not yet satisfactory for the clean": [65535, 0], "yet satisfactory for the clean territory": [65535, 0], "satisfactory for the clean territory stopped": [65535, 0], "for the clean territory stopped short": [65535, 0], "the clean territory stopped short at": [65535, 0], "clean territory stopped short at his": [65535, 0], "territory stopped short at his chin": [65535, 0], "stopped short at his chin and": [65535, 0], "short at his chin and his": [65535, 0], "at his chin and his jaws": [65535, 0], "his chin and his jaws like": [65535, 0], "chin and his jaws like a": [65535, 0], "and his jaws like a mask": [65535, 0], "his jaws like a mask below": [65535, 0], "jaws like a mask below and": [65535, 0], "like a mask below and beyond": [65535, 0], "a mask below and beyond this": [65535, 0], "mask below and beyond this line": [65535, 0], "below and beyond this line there": [65535, 0], "and beyond this line there was": [65535, 0], "beyond this line there was a": [65535, 0], "this line there was a dark": [65535, 0], "line there was a dark expanse": [65535, 0], "there was a dark expanse of": [65535, 0], "was a dark expanse of unirrigated": [65535, 0], "a dark expanse of unirrigated soil": [65535, 0], "dark expanse of unirrigated soil that": [65535, 0], "expanse of unirrigated soil that spread": [65535, 0], "of unirrigated soil that spread downward": [65535, 0], "unirrigated soil that spread downward in": [65535, 0], "soil that spread downward in front": [65535, 0], "that spread downward in front and": [65535, 0], "spread downward in front and backward": [65535, 0], "downward in front and backward around": [65535, 0], "in front and backward around his": [65535, 0], "front and backward around his neck": [65535, 0], "and backward around his neck mary": [65535, 0], "backward around his neck mary took": [65535, 0], "around his neck mary took him": [65535, 0], "his neck mary took him in": [65535, 0], "neck mary took him in hand": [65535, 0], "mary took him in hand and": [65535, 0], "took him in hand and when": [65535, 0], "him in hand and when she": [65535, 0], "in hand and when she was": [65535, 0], "hand and when she was done": [65535, 0], "and when she was done with": [65535, 0], "when she was done with him": [65535, 0], "she was done with him he": [65535, 0], "was done with him he was": [65535, 0], "done with him he was a": [65535, 0], "with him he was a man": [65535, 0], "him he was a man and": [65535, 0], "he was a man and a": [65535, 0], "was a man and a brother": [65535, 0], "a man and a brother without": [65535, 0], "man and a brother without distinction": [65535, 0], "and a brother without distinction of": [65535, 0], "a brother without distinction of color": [65535, 0], "brother without distinction of color and": [65535, 0], "without distinction of color and his": [65535, 0], "distinction of color and his saturated": [65535, 0], "of color and his saturated hair": [65535, 0], "color and his saturated hair was": [65535, 0], "and his saturated hair was neatly": [65535, 0], "his saturated hair was neatly brushed": [65535, 0], "saturated hair was neatly brushed and": [65535, 0], "hair was neatly brushed and its": [65535, 0], "was neatly brushed and its short": [65535, 0], "neatly brushed and its short curls": [65535, 0], "brushed and its short curls wrought": [65535, 0], "and its short curls wrought into": [65535, 0], "its short curls wrought into a": [65535, 0], "short curls wrought into a dainty": [65535, 0], "curls wrought into a dainty and": [65535, 0], "wrought into a dainty and symmetrical": [65535, 0], "into a dainty and symmetrical general": [65535, 0], "a dainty and symmetrical general effect": [65535, 0], "dainty and symmetrical general effect he": [65535, 0], "and symmetrical general effect he privately": [65535, 0], "symmetrical general effect he privately smoothed": [65535, 0], "general effect he privately smoothed out": [65535, 0], "effect he privately smoothed out the": [65535, 0], "he privately smoothed out the curls": [65535, 0], "privately smoothed out the curls with": [65535, 0], "smoothed out the curls with labor": [65535, 0], "out the curls with labor and": [65535, 0], "the curls with labor and difficulty": [65535, 0], "curls with labor and difficulty and": [65535, 0], "with labor and difficulty and plastered": [65535, 0], "labor and difficulty and plastered his": [65535, 0], "and difficulty and plastered his hair": [65535, 0], "difficulty and plastered his hair close": [65535, 0], "and plastered his hair close down": [65535, 0], "plastered his hair close down to": [65535, 0], "his hair close down to his": [65535, 0], "hair close down to his head": [65535, 0], "close down to his head for": [65535, 0], "down to his head for he": [65535, 0], "to his head for he held": [65535, 0], "his head for he held curls": [65535, 0], "head for he held curls to": [65535, 0], "for he held curls to be": [65535, 0], "he held curls to be effeminate": [65535, 0], "held curls to be effeminate and": [65535, 0], "curls to be effeminate and his": [65535, 0], "to be effeminate and his own": [65535, 0], "be effeminate and his own filled": [65535, 0], "effeminate and his own filled his": [65535, 0], "and his own filled his life": [65535, 0], "his own filled his life with": [65535, 0], "own filled his life with bitterness": [65535, 0], "filled his life with bitterness then": [65535, 0], "his life with bitterness then mary": [65535, 0], "life with bitterness then mary got": [65535, 0], "with bitterness then mary got out": [65535, 0], "bitterness then mary got out a": [65535, 0], "then mary got out a suit": [65535, 0], "mary got out a suit of": [65535, 0], "got out a suit of his": [65535, 0], "out a suit of his clothing": [65535, 0], "a suit of his clothing that": [65535, 0], "suit of his clothing that had": [65535, 0], "of his clothing that had been": [65535, 0], "his clothing that had been used": [65535, 0], "clothing that had been used only": [65535, 0], "that had been used only on": [65535, 0], "had been used only on sundays": [65535, 0], "been used only on sundays during": [65535, 0], "used only on sundays during two": [65535, 0], "only on sundays during two years": [65535, 0], "on sundays during two years they": [65535, 0], "sundays during two years they were": [65535, 0], "during two years they were simply": [65535, 0], "two years they were simply called": [65535, 0], "years they were simply called his": [65535, 0], "they were simply called his other": [65535, 0], "were simply called his other clothes": [65535, 0], "simply called his other clothes and": [65535, 0], "called his other clothes and so": [65535, 0], "his other clothes and so by": [65535, 0], "other clothes and so by that": [65535, 0], "clothes and so by that we": [65535, 0], "and so by that we know": [65535, 0], "so by that we know the": [65535, 0], "by that we know the size": [65535, 0], "that we know the size of": [65535, 0], "we know the size of his": [65535, 0], "know the size of his wardrobe": [65535, 0], "the size of his wardrobe the": [65535, 0], "size of his wardrobe the girl": [65535, 0], "of his wardrobe the girl put": [65535, 0], "his wardrobe the girl put him": [65535, 0], "wardrobe the girl put him to": [65535, 0], "the girl put him to rights": [65535, 0], "girl put him to rights after": [65535, 0], "put him to rights after he": [65535, 0], "him to rights after he had": [65535, 0], "to rights after he had dressed": [65535, 0], "rights after he had dressed himself": [65535, 0], "after he had dressed himself she": [65535, 0], "he had dressed himself she buttoned": [65535, 0], "had dressed himself she buttoned his": [65535, 0], "dressed himself she buttoned his neat": [65535, 0], "himself she buttoned his neat roundabout": [65535, 0], "she buttoned his neat roundabout up": [65535, 0], "buttoned his neat roundabout up to": [65535, 0], "his neat roundabout up to his": [65535, 0], "neat roundabout up to his chin": [65535, 0], "roundabout up to his chin turned": [65535, 0], "up to his chin turned his": [65535, 0], "to his chin turned his vast": [65535, 0], "his chin turned his vast shirt": [65535, 0], "chin turned his vast shirt collar": [65535, 0], "turned his vast shirt collar down": [65535, 0], "his vast shirt collar down over": [65535, 0], "vast shirt collar down over his": [65535, 0], "shirt collar down over his shoulders": [65535, 0], "collar down over his shoulders brushed": [65535, 0], "down over his shoulders brushed him": [65535, 0], "over his shoulders brushed him off": [65535, 0], "his shoulders brushed him off and": [65535, 0], "shoulders brushed him off and crowned": [65535, 0], "brushed him off and crowned him": [65535, 0], "him off and crowned him with": [65535, 0], "off and crowned him with his": [65535, 0], "and crowned him with his speckled": [65535, 0], "crowned him with his speckled straw": [65535, 0], "him with his speckled straw hat": [65535, 0], "with his speckled straw hat he": [65535, 0], "his speckled straw hat he now": [65535, 0], "speckled straw hat he now looked": [65535, 0], "straw hat he now looked exceedingly": [65535, 0], "hat he now looked exceedingly improved": [65535, 0], "he now looked exceedingly improved and": [65535, 0], "now looked exceedingly improved and uncomfortable": [65535, 0], "looked exceedingly improved and uncomfortable he": [65535, 0], "exceedingly improved and uncomfortable he was": [65535, 0], "improved and uncomfortable he was fully": [65535, 0], "and uncomfortable he was fully as": [65535, 0], "uncomfortable he was fully as uncomfortable": [65535, 0], "he was fully as uncomfortable as": [65535, 0], "was fully as uncomfortable as he": [65535, 0], "fully as uncomfortable as he looked": [65535, 0], "as uncomfortable as he looked for": [65535, 0], "uncomfortable as he looked for there": [65535, 0], "as he looked for there was": [65535, 0], "he looked for there was a": [65535, 0], "looked for there was a restraint": [65535, 0], "for there was a restraint about": [65535, 0], "there was a restraint about whole": [65535, 0], "was a restraint about whole clothes": [65535, 0], "a restraint about whole clothes and": [65535, 0], "restraint about whole clothes and cleanliness": [65535, 0], "about whole clothes and cleanliness that": [65535, 0], "whole clothes and cleanliness that galled": [65535, 0], "clothes and cleanliness that galled him": [65535, 0], "and cleanliness that galled him he": [65535, 0], "cleanliness that galled him he hoped": [65535, 0], "that galled him he hoped that": [65535, 0], "galled him he hoped that mary": [65535, 0], "him he hoped that mary would": [65535, 0], "he hoped that mary would forget": [65535, 0], "hoped that mary would forget his": [65535, 0], "that mary would forget his shoes": [65535, 0], "mary would forget his shoes but": [65535, 0], "would forget his shoes but the": [65535, 0], "forget his shoes but the hope": [65535, 0], "his shoes but the hope was": [65535, 0], "shoes but the hope was blighted": [65535, 0], "but the hope was blighted she": [65535, 0], "the hope was blighted she coated": [65535, 0], "hope was blighted she coated them": [65535, 0], "was blighted she coated them thoroughly": [65535, 0], "blighted she coated them thoroughly with": [65535, 0], "she coated them thoroughly with tallow": [65535, 0], "coated them thoroughly with tallow as": [65535, 0], "them thoroughly with tallow as was": [65535, 0], "thoroughly with tallow as was the": [65535, 0], "with tallow as was the custom": [65535, 0], "tallow as was the custom and": [65535, 0], "as was the custom and brought": [65535, 0], "was the custom and brought them": [65535, 0], "the custom and brought them out": [65535, 0], "custom and brought them out he": [65535, 0], "and brought them out he lost": [65535, 0], "brought them out he lost his": [65535, 0], "them out he lost his temper": [65535, 0], "out he lost his temper and": [65535, 0], "he lost his temper and said": [65535, 0], "lost his temper and said he": [65535, 0], "his temper and said he was": [65535, 0], "temper and said he was always": [65535, 0], "and said he was always being": [65535, 0], "said he was always being made": [65535, 0], "he was always being made to": [65535, 0], "was always being made to do": [65535, 0], "always being made to do everything": [65535, 0], "being made to do everything he": [65535, 0], "made to do everything he didn't": [65535, 0], "to do everything he didn't want": [65535, 0], "do everything he didn't want to": [65535, 0], "everything he didn't want to do": [65535, 0], "he didn't want to do but": [65535, 0], "didn't want to do but mary": [65535, 0], "want to do but mary said": [65535, 0], "to do but mary said persuasively": [65535, 0], "do but mary said persuasively please": [65535, 0], "but mary said persuasively please tom": [65535, 0], "mary said persuasively please tom that's": [65535, 0], "said persuasively please tom that's a": [65535, 0], "persuasively please tom that's a good": [65535, 0], "please tom that's a good boy": [65535, 0], "tom that's a good boy so": [65535, 0], "that's a good boy so he": [65535, 0], "a good boy so he got": [65535, 0], "good boy so he got into": [65535, 0], "boy so he got into the": [65535, 0], "so he got into the shoes": [65535, 0], "he got into the shoes snarling": [65535, 0], "got into the shoes snarling mary": [65535, 0], "into the shoes snarling mary was": [65535, 0], "the shoes snarling mary was soon": [65535, 0], "shoes snarling mary was soon ready": [65535, 0], "snarling mary was soon ready and": [65535, 0], "mary was soon ready and the": [65535, 0], "was soon ready and the three": [65535, 0], "soon ready and the three children": [65535, 0], "ready and the three children set": [65535, 0], "and the three children set out": [65535, 0], "the three children set out for": [65535, 0], "three children set out for sunday": [65535, 0], "children set out for sunday school": [65535, 0], "set out for sunday school a": [65535, 0], "out for sunday school a place": [65535, 0], "for sunday school a place that": [65535, 0], "sunday school a place that tom": [65535, 0], "school a place that tom hated": [65535, 0], "a place that tom hated with": [65535, 0], "place that tom hated with his": [65535, 0], "that tom hated with his whole": [65535, 0], "tom hated with his whole heart": [65535, 0], "hated with his whole heart but": [65535, 0], "with his whole heart but sid": [65535, 0], "his whole heart but sid and": [65535, 0], "whole heart but sid and mary": [65535, 0], "heart but sid and mary were": [65535, 0], "but sid and mary were fond": [65535, 0], "sid and mary were fond of": [65535, 0], "and mary were fond of it": [65535, 0], "mary were fond of it sabbath": [65535, 0], "were fond of it sabbath school": [65535, 0], "fond of it sabbath school hours": [65535, 0], "of it sabbath school hours were": [65535, 0], "it sabbath school hours were from": [65535, 0], "sabbath school hours were from nine": [65535, 0], "school hours were from nine to": [65535, 0], "hours were from nine to half": [65535, 0], "were from nine to half past": [65535, 0], "from nine to half past ten": [65535, 0], "nine to half past ten and": [65535, 0], "to half past ten and then": [65535, 0], "half past ten and then church": [65535, 0], "past ten and then church service": [65535, 0], "ten and then church service two": [65535, 0], "and then church service two of": [65535, 0], "then church service two of the": [65535, 0], "church service two of the children": [65535, 0], "service two of the children always": [65535, 0], "two of the children always remained": [65535, 0], "of the children always remained for": [65535, 0], "the children always remained for the": [65535, 0], "children always remained for the sermon": [65535, 0], "always remained for the sermon voluntarily": [65535, 0], "remained for the sermon voluntarily and": [65535, 0], "for the sermon voluntarily and the": [65535, 0], "the sermon voluntarily and the other": [65535, 0], "sermon voluntarily and the other always": [65535, 0], "voluntarily and the other always remained": [65535, 0], "and the other always remained too": [65535, 0], "the other always remained too for": [65535, 0], "other always remained too for stronger": [65535, 0], "always remained too for stronger reasons": [65535, 0], "remained too for stronger reasons the": [65535, 0], "too for stronger reasons the church's": [65535, 0], "for stronger reasons the church's high": [65535, 0], "stronger reasons the church's high backed": [65535, 0], "reasons the church's high backed uncushioned": [65535, 0], "the church's high backed uncushioned pews": [65535, 0], "church's high backed uncushioned pews would": [65535, 0], "high backed uncushioned pews would seat": [65535, 0], "backed uncushioned pews would seat about": [65535, 0], "uncushioned pews would seat about three": [65535, 0], "pews would seat about three hundred": [65535, 0], "would seat about three hundred persons": [65535, 0], "seat about three hundred persons the": [65535, 0], "about three hundred persons the edifice": [65535, 0], "three hundred persons the edifice was": [65535, 0], "hundred persons the edifice was but": [65535, 0], "persons the edifice was but a": [65535, 0], "the edifice was but a small": [65535, 0], "edifice was but a small plain": [65535, 0], "was but a small plain affair": [65535, 0], "but a small plain affair with": [65535, 0], "a small plain affair with a": [65535, 0], "small plain affair with a sort": [65535, 0], "plain affair with a sort of": [65535, 0], "affair with a sort of pine": [65535, 0], "with a sort of pine board": [65535, 0], "a sort of pine board tree": [65535, 0], "sort of pine board tree box": [65535, 0], "of pine board tree box on": [65535, 0], "pine board tree box on top": [65535, 0], "board tree box on top of": [65535, 0], "tree box on top of it": [65535, 0], "box on top of it for": [65535, 0], "on top of it for a": [65535, 0], "top of it for a steeple": [65535, 0], "of it for a steeple at": [65535, 0], "it for a steeple at the": [65535, 0], "for a steeple at the door": [65535, 0], "a steeple at the door tom": [65535, 0], "steeple at the door tom dropped": [65535, 0], "at the door tom dropped back": [65535, 0], "the door tom dropped back a": [65535, 0], "door tom dropped back a step": [65535, 0], "tom dropped back a step and": [65535, 0], "dropped back a step and accosted": [65535, 0], "back a step and accosted a": [65535, 0], "a step and accosted a sunday": [65535, 0], "step and accosted a sunday dressed": [65535, 0], "and accosted a sunday dressed comrade": [65535, 0], "accosted a sunday dressed comrade say": [65535, 0], "a sunday dressed comrade say billy": [65535, 0], "sunday dressed comrade say billy got": [65535, 0], "dressed comrade say billy got a": [65535, 0], "comrade say billy got a yaller": [65535, 0], "say billy got a yaller ticket": [65535, 0], "billy got a yaller ticket yes": [65535, 0], "got a yaller ticket yes what'll": [65535, 0], "a yaller ticket yes what'll you": [65535, 0], "yaller ticket yes what'll you take": [65535, 0], "ticket yes what'll you take for": [65535, 0], "yes what'll you take for her": [65535, 0], "what'll you take for her what'll": [65535, 0], "you take for her what'll you": [65535, 0], "take for her what'll you give": [65535, 0], "for her what'll you give piece": [65535, 0], "her what'll you give piece of": [65535, 0], "what'll you give piece of lickrish": [65535, 0], "you give piece of lickrish and": [65535, 0], "give piece of lickrish and a": [65535, 0], "piece of lickrish and a fish": [65535, 0], "of lickrish and a fish hook": [65535, 0], "lickrish and a fish hook less": [65535, 0], "and a fish hook less see": [65535, 0], "a fish hook less see 'em": [65535, 0], "fish hook less see 'em tom": [65535, 0], "hook less see 'em tom exhibited": [65535, 0], "less see 'em tom exhibited they": [65535, 0], "see 'em tom exhibited they were": [65535, 0], "'em tom exhibited they were satisfactory": [65535, 0], "tom exhibited they were satisfactory and": [65535, 0], "exhibited they were satisfactory and the": [65535, 0], "they were satisfactory and the property": [65535, 0], "were satisfactory and the property changed": [65535, 0], "satisfactory and the property changed hands": [65535, 0], "and the property changed hands then": [65535, 0], "the property changed hands then tom": [65535, 0], "property changed hands then tom traded": [65535, 0], "changed hands then tom traded a": [65535, 0], "hands then tom traded a couple": [65535, 0], "then tom traded a couple of": [65535, 0], "tom traded a couple of white": [65535, 0], "traded a couple of white alleys": [65535, 0], "a couple of white alleys for": [65535, 0], "couple of white alleys for three": [65535, 0], "of white alleys for three red": [65535, 0], "white alleys for three red tickets": [65535, 0], "alleys for three red tickets and": [65535, 0], "for three red tickets and some": [65535, 0], "three red tickets and some small": [65535, 0], "red tickets and some small trifle": [65535, 0], "tickets and some small trifle or": [65535, 0], "and some small trifle or other": [65535, 0], "some small trifle or other for": [65535, 0], "small trifle or other for a": [65535, 0], "trifle or other for a couple": [65535, 0], "or other for a couple of": [65535, 0], "other for a couple of blue": [65535, 0], "for a couple of blue ones": [65535, 0], "a couple of blue ones he": [65535, 0], "couple of blue ones he waylaid": [65535, 0], "of blue ones he waylaid other": [65535, 0], "blue ones he waylaid other boys": [65535, 0], "ones he waylaid other boys as": [65535, 0], "he waylaid other boys as they": [65535, 0], "waylaid other boys as they came": [65535, 0], "other boys as they came and": [65535, 0], "boys as they came and went": [65535, 0], "as they came and went on": [65535, 0], "they came and went on buying": [65535, 0], "came and went on buying tickets": [65535, 0], "and went on buying tickets of": [65535, 0], "went on buying tickets of various": [65535, 0], "on buying tickets of various colors": [65535, 0], "buying tickets of various colors ten": [65535, 0], "tickets of various colors ten or": [65535, 0], "of various colors ten or fifteen": [65535, 0], "various colors ten or fifteen minutes": [65535, 0], "colors ten or fifteen minutes longer": [65535, 0], "ten or fifteen minutes longer he": [65535, 0], "or fifteen minutes longer he entered": [65535, 0], "fifteen minutes longer he entered the": [65535, 0], "minutes longer he entered the church": [65535, 0], "longer he entered the church now": [65535, 0], "he entered the church now with": [65535, 0], "entered the church now with a": [65535, 0], "the church now with a swarm": [65535, 0], "church now with a swarm of": [65535, 0], "now with a swarm of clean": [65535, 0], "with a swarm of clean and": [65535, 0], "a swarm of clean and noisy": [65535, 0], "swarm of clean and noisy boys": [65535, 0], "of clean and noisy boys and": [65535, 0], "clean and noisy boys and girls": [65535, 0], "and noisy boys and girls proceeded": [65535, 0], "noisy boys and girls proceeded to": [65535, 0], "boys and girls proceeded to his": [65535, 0], "and girls proceeded to his seat": [65535, 0], "girls proceeded to his seat and": [65535, 0], "proceeded to his seat and started": [65535, 0], "to his seat and started a": [65535, 0], "his seat and started a quarrel": [65535, 0], "seat and started a quarrel with": [65535, 0], "and started a quarrel with the": [65535, 0], "started a quarrel with the first": [65535, 0], "a quarrel with the first boy": [65535, 0], "quarrel with the first boy that": [65535, 0], "with the first boy that came": [65535, 0], "the first boy that came handy": [65535, 0], "first boy that came handy the": [65535, 0], "boy that came handy the teacher": [65535, 0], "that came handy the teacher a": [65535, 0], "came handy the teacher a grave": [65535, 0], "handy the teacher a grave elderly": [65535, 0], "the teacher a grave elderly man": [65535, 0], "teacher a grave elderly man interfered": [65535, 0], "a grave elderly man interfered then": [65535, 0], "grave elderly man interfered then turned": [65535, 0], "elderly man interfered then turned his": [65535, 0], "man interfered then turned his back": [65535, 0], "interfered then turned his back a": [65535, 0], "then turned his back a moment": [65535, 0], "turned his back a moment and": [65535, 0], "his back a moment and tom": [65535, 0], "back a moment and tom pulled": [65535, 0], "a moment and tom pulled a": [65535, 0], "moment and tom pulled a boy's": [65535, 0], "and tom pulled a boy's hair": [65535, 0], "tom pulled a boy's hair in": [65535, 0], "pulled a boy's hair in the": [65535, 0], "a boy's hair in the next": [65535, 0], "boy's hair in the next bench": [65535, 0], "hair in the next bench and": [65535, 0], "in the next bench and was": [65535, 0], "the next bench and was absorbed": [65535, 0], "next bench and was absorbed in": [65535, 0], "bench and was absorbed in his": [65535, 0], "and was absorbed in his book": [65535, 0], "was absorbed in his book when": [65535, 0], "absorbed in his book when the": [65535, 0], "in his book when the boy": [65535, 0], "his book when the boy turned": [65535, 0], "book when the boy turned around": [65535, 0], "when the boy turned around stuck": [65535, 0], "the boy turned around stuck a": [65535, 0], "boy turned around stuck a pin": [65535, 0], "turned around stuck a pin in": [65535, 0], "around stuck a pin in another": [65535, 0], "stuck a pin in another boy": [65535, 0], "a pin in another boy presently": [65535, 0], "pin in another boy presently in": [65535, 0], "in another boy presently in order": [65535, 0], "another boy presently in order to": [65535, 0], "boy presently in order to hear": [65535, 0], "presently in order to hear him": [65535, 0], "in order to hear him say": [65535, 0], "order to hear him say ouch": [65535, 0], "to hear him say ouch and": [65535, 0], "hear him say ouch and got": [65535, 0], "him say ouch and got a": [65535, 0], "say ouch and got a new": [65535, 0], "ouch and got a new reprimand": [65535, 0], "and got a new reprimand from": [65535, 0], "got a new reprimand from his": [65535, 0], "a new reprimand from his teacher": [65535, 0], "new reprimand from his teacher tom's": [65535, 0], "reprimand from his teacher tom's whole": [65535, 0], "from his teacher tom's whole class": [65535, 0], "his teacher tom's whole class were": [65535, 0], "teacher tom's whole class were of": [65535, 0], "tom's whole class were of a": [65535, 0], "whole class were of a pattern": [65535, 0], "class were of a pattern restless": [65535, 0], "were of a pattern restless noisy": [65535, 0], "of a pattern restless noisy and": [65535, 0], "a pattern restless noisy and troublesome": [65535, 0], "pattern restless noisy and troublesome when": [65535, 0], "restless noisy and troublesome when they": [65535, 0], "noisy and troublesome when they came": [65535, 0], "and troublesome when they came to": [65535, 0], "troublesome when they came to recite": [65535, 0], "when they came to recite their": [65535, 0], "they came to recite their lessons": [65535, 0], "came to recite their lessons not": [65535, 0], "to recite their lessons not one": [65535, 0], "recite their lessons not one of": [65535, 0], "their lessons not one of them": [65535, 0], "lessons not one of them knew": [65535, 0], "not one of them knew his": [65535, 0], "one of them knew his verses": [65535, 0], "of them knew his verses perfectly": [65535, 0], "them knew his verses perfectly but": [65535, 0], "knew his verses perfectly but had": [65535, 0], "his verses perfectly but had to": [65535, 0], "verses perfectly but had to be": [65535, 0], "perfectly but had to be prompted": [65535, 0], "but had to be prompted all": [65535, 0], "had to be prompted all along": [65535, 0], "to be prompted all along however": [65535, 0], "be prompted all along however they": [65535, 0], "prompted all along however they worried": [65535, 0], "all along however they worried through": [65535, 0], "along however they worried through and": [65535, 0], "however they worried through and each": [65535, 0], "they worried through and each got": [65535, 0], "worried through and each got his": [65535, 0], "through and each got his reward": [65535, 0], "and each got his reward in": [65535, 0], "each got his reward in small": [65535, 0], "got his reward in small blue": [65535, 0], "his reward in small blue tickets": [65535, 0], "reward in small blue tickets each": [65535, 0], "in small blue tickets each with": [65535, 0], "small blue tickets each with a": [65535, 0], "blue tickets each with a passage": [65535, 0], "tickets each with a passage of": [65535, 0], "each with a passage of scripture": [65535, 0], "with a passage of scripture on": [65535, 0], "a passage of scripture on it": [65535, 0], "passage of scripture on it each": [65535, 0], "of scripture on it each blue": [65535, 0], "scripture on it each blue ticket": [65535, 0], "on it each blue ticket was": [65535, 0], "it each blue ticket was pay": [65535, 0], "each blue ticket was pay for": [65535, 0], "blue ticket was pay for two": [65535, 0], "ticket was pay for two verses": [65535, 0], "was pay for two verses of": [65535, 0], "pay for two verses of the": [65535, 0], "for two verses of the recitation": [65535, 0], "two verses of the recitation ten": [65535, 0], "verses of the recitation ten blue": [65535, 0], "of the recitation ten blue tickets": [65535, 0], "the recitation ten blue tickets equalled": [65535, 0], "recitation ten blue tickets equalled a": [65535, 0], "ten blue tickets equalled a red": [65535, 0], "blue tickets equalled a red one": [65535, 0], "tickets equalled a red one and": [65535, 0], "equalled a red one and could": [65535, 0], "a red one and could be": [65535, 0], "red one and could be exchanged": [65535, 0], "one and could be exchanged for": [65535, 0], "and could be exchanged for it": [65535, 0], "could be exchanged for it ten": [65535, 0], "be exchanged for it ten red": [65535, 0], "exchanged for it ten red tickets": [65535, 0], "for it ten red tickets equalled": [65535, 0], "it ten red tickets equalled a": [65535, 0], "ten red tickets equalled a yellow": [65535, 0], "red tickets equalled a yellow one": [65535, 0], "tickets equalled a yellow one for": [65535, 0], "equalled a yellow one for ten": [65535, 0], "a yellow one for ten yellow": [65535, 0], "yellow one for ten yellow tickets": [65535, 0], "one for ten yellow tickets the": [65535, 0], "for ten yellow tickets the superintendent": [65535, 0], "ten yellow tickets the superintendent gave": [65535, 0], "yellow tickets the superintendent gave a": [65535, 0], "tickets the superintendent gave a very": [65535, 0], "the superintendent gave a very plainly": [65535, 0], "superintendent gave a very plainly bound": [65535, 0], "gave a very plainly bound bible": [65535, 0], "a very plainly bound bible worth": [65535, 0], "very plainly bound bible worth forty": [65535, 0], "plainly bound bible worth forty cents": [65535, 0], "bound bible worth forty cents in": [65535, 0], "bible worth forty cents in those": [65535, 0], "worth forty cents in those easy": [65535, 0], "forty cents in those easy times": [65535, 0], "cents in those easy times to": [65535, 0], "in those easy times to the": [65535, 0], "those easy times to the pupil": [65535, 0], "easy times to the pupil how": [65535, 0], "times to the pupil how many": [65535, 0], "to the pupil how many of": [65535, 0], "the pupil how many of my": [65535, 0], "pupil how many of my readers": [65535, 0], "how many of my readers would": [65535, 0], "many of my readers would have": [65535, 0], "of my readers would have the": [65535, 0], "my readers would have the industry": [65535, 0], "readers would have the industry and": [65535, 0], "would have the industry and application": [65535, 0], "have the industry and application to": [65535, 0], "the industry and application to memorize": [65535, 0], "industry and application to memorize two": [65535, 0], "and application to memorize two thousand": [65535, 0], "application to memorize two thousand verses": [65535, 0], "to memorize two thousand verses even": [65535, 0], "memorize two thousand verses even for": [65535, 0], "two thousand verses even for a": [65535, 0], "thousand verses even for a dore": [65535, 0], "verses even for a dore bible": [65535, 0], "even for a dore bible and": [65535, 0], "for a dore bible and yet": [65535, 0], "a dore bible and yet mary": [65535, 0], "dore bible and yet mary had": [65535, 0], "bible and yet mary had acquired": [65535, 0], "and yet mary had acquired two": [65535, 0], "yet mary had acquired two bibles": [65535, 0], "mary had acquired two bibles in": [65535, 0], "had acquired two bibles in this": [65535, 0], "acquired two bibles in this way": [65535, 0], "two bibles in this way it": [65535, 0], "bibles in this way it was": [65535, 0], "in this way it was the": [65535, 0], "this way it was the patient": [65535, 0], "way it was the patient work": [65535, 0], "it was the patient work of": [65535, 0], "was the patient work of two": [65535, 0], "the patient work of two years": [65535, 0], "patient work of two years and": [65535, 0], "work of two years and a": [65535, 0], "of two years and a boy": [65535, 0], "two years and a boy of": [65535, 0], "years and a boy of german": [65535, 0], "and a boy of german parentage": [65535, 0], "a boy of german parentage had": [65535, 0], "boy of german parentage had won": [65535, 0], "of german parentage had won four": [65535, 0], "german parentage had won four or": [65535, 0], "parentage had won four or five": [65535, 0], "had won four or five he": [65535, 0], "won four or five he once": [65535, 0], "four or five he once recited": [65535, 0], "or five he once recited three": [65535, 0], "five he once recited three thousand": [65535, 0], "he once recited three thousand verses": [65535, 0], "once recited three thousand verses without": [65535, 0], "recited three thousand verses without stopping": [65535, 0], "three thousand verses without stopping but": [65535, 0], "thousand verses without stopping but the": [65535, 0], "verses without stopping but the strain": [65535, 0], "without stopping but the strain upon": [65535, 0], "stopping but the strain upon his": [65535, 0], "but the strain upon his mental": [65535, 0], "the strain upon his mental faculties": [65535, 0], "strain upon his mental faculties was": [65535, 0], "upon his mental faculties was too": [65535, 0], "his mental faculties was too great": [65535, 0], "mental faculties was too great and": [65535, 0], "faculties was too great and he": [65535, 0], "was too great and he was": [65535, 0], "too great and he was little": [65535, 0], "great and he was little better": [65535, 0], "and he was little better than": [65535, 0], "he was little better than an": [65535, 0], "was little better than an idiot": [65535, 0], "little better than an idiot from": [65535, 0], "better than an idiot from that": [65535, 0], "than an idiot from that day": [65535, 0], "an idiot from that day forth": [65535, 0], "idiot from that day forth a": [65535, 0], "from that day forth a grievous": [65535, 0], "that day forth a grievous misfortune": [65535, 0], "day forth a grievous misfortune for": [65535, 0], "forth a grievous misfortune for the": [65535, 0], "a grievous misfortune for the school": [65535, 0], "grievous misfortune for the school for": [65535, 0], "misfortune for the school for on": [65535, 0], "for the school for on great": [65535, 0], "the school for on great occasions": [65535, 0], "school for on great occasions before": [65535, 0], "for on great occasions before company": [65535, 0], "on great occasions before company the": [65535, 0], "great occasions before company the superintendent": [65535, 0], "occasions before company the superintendent as": [65535, 0], "before company the superintendent as tom": [65535, 0], "company the superintendent as tom expressed": [65535, 0], "the superintendent as tom expressed it": [65535, 0], "superintendent as tom expressed it had": [65535, 0], "as tom expressed it had always": [65535, 0], "tom expressed it had always made": [65535, 0], "expressed it had always made this": [65535, 0], "it had always made this boy": [65535, 0], "had always made this boy come": [65535, 0], "always made this boy come out": [65535, 0], "made this boy come out and": [65535, 0], "this boy come out and spread": [65535, 0], "boy come out and spread himself": [65535, 0], "come out and spread himself only": [65535, 0], "out and spread himself only the": [65535, 0], "and spread himself only the older": [65535, 0], "spread himself only the older pupils": [65535, 0], "himself only the older pupils managed": [65535, 0], "only the older pupils managed to": [65535, 0], "the older pupils managed to keep": [65535, 0], "older pupils managed to keep their": [65535, 0], "pupils managed to keep their tickets": [65535, 0], "managed to keep their tickets and": [65535, 0], "to keep their tickets and stick": [65535, 0], "keep their tickets and stick to": [65535, 0], "their tickets and stick to their": [65535, 0], "tickets and stick to their tedious": [65535, 0], "and stick to their tedious work": [65535, 0], "stick to their tedious work long": [65535, 0], "to their tedious work long enough": [65535, 0], "their tedious work long enough to": [65535, 0], "tedious work long enough to get": [65535, 0], "work long enough to get a": [65535, 0], "long enough to get a bible": [65535, 0], "enough to get a bible and": [65535, 0], "to get a bible and so": [65535, 0], "get a bible and so the": [65535, 0], "a bible and so the delivery": [65535, 0], "bible and so the delivery of": [65535, 0], "and so the delivery of one": [65535, 0], "so the delivery of one of": [65535, 0], "the delivery of one of these": [65535, 0], "delivery of one of these prizes": [65535, 0], "of one of these prizes was": [65535, 0], "one of these prizes was a": [65535, 0], "of these prizes was a rare": [65535, 0], "these prizes was a rare and": [65535, 0], "prizes was a rare and noteworthy": [65535, 0], "was a rare and noteworthy circumstance": [65535, 0], "a rare and noteworthy circumstance the": [65535, 0], "rare and noteworthy circumstance the successful": [65535, 0], "and noteworthy circumstance the successful pupil": [65535, 0], "noteworthy circumstance the successful pupil was": [65535, 0], "circumstance the successful pupil was so": [65535, 0], "the successful pupil was so great": [65535, 0], "successful pupil was so great and": [65535, 0], "pupil was so great and conspicuous": [65535, 0], "was so great and conspicuous for": [65535, 0], "so great and conspicuous for that": [65535, 0], "great and conspicuous for that day": [65535, 0], "and conspicuous for that day that": [65535, 0], "conspicuous for that day that on": [65535, 0], "for that day that on the": [65535, 0], "that day that on the spot": [65535, 0], "day that on the spot every": [65535, 0], "that on the spot every scholar's": [65535, 0], "on the spot every scholar's heart": [65535, 0], "the spot every scholar's heart was": [65535, 0], "spot every scholar's heart was fired": [65535, 0], "every scholar's heart was fired with": [65535, 0], "scholar's heart was fired with a": [65535, 0], "heart was fired with a fresh": [65535, 0], "was fired with a fresh ambition": [65535, 0], "fired with a fresh ambition that": [65535, 0], "with a fresh ambition that often": [65535, 0], "a fresh ambition that often lasted": [65535, 0], "fresh ambition that often lasted a": [65535, 0], "ambition that often lasted a couple": [65535, 0], "that often lasted a couple of": [65535, 0], "often lasted a couple of weeks": [65535, 0], "lasted a couple of weeks it": [65535, 0], "a couple of weeks it is": [65535, 0], "couple of weeks it is possible": [65535, 0], "of weeks it is possible that": [65535, 0], "weeks it is possible that tom's": [65535, 0], "it is possible that tom's mental": [65535, 0], "is possible that tom's mental stomach": [65535, 0], "possible that tom's mental stomach had": [65535, 0], "that tom's mental stomach had never": [65535, 0], "tom's mental stomach had never really": [65535, 0], "mental stomach had never really hungered": [65535, 0], "stomach had never really hungered for": [65535, 0], "had never really hungered for one": [65535, 0], "never really hungered for one of": [65535, 0], "really hungered for one of those": [65535, 0], "hungered for one of those prizes": [65535, 0], "for one of those prizes but": [65535, 0], "one of those prizes but unquestionably": [65535, 0], "of those prizes but unquestionably his": [65535, 0], "those prizes but unquestionably his entire": [65535, 0], "prizes but unquestionably his entire being": [65535, 0], "but unquestionably his entire being had": [65535, 0], "unquestionably his entire being had for": [65535, 0], "his entire being had for many": [65535, 0], "entire being had for many a": [65535, 0], "being had for many a day": [65535, 0], "had for many a day longed": [65535, 0], "for many a day longed for": [65535, 0], "many a day longed for the": [65535, 0], "a day longed for the glory": [65535, 0], "day longed for the glory and": [65535, 0], "longed for the glory and the": [65535, 0], "for the glory and the eclat": [65535, 0], "the glory and the eclat that": [65535, 0], "glory and the eclat that came": [65535, 0], "and the eclat that came with": [65535, 0], "the eclat that came with it": [65535, 0], "eclat that came with it in": [65535, 0], "that came with it in due": [65535, 0], "came with it in due course": [65535, 0], "with it in due course the": [65535, 0], "it in due course the superintendent": [65535, 0], "in due course the superintendent stood": [65535, 0], "due course the superintendent stood up": [65535, 0], "course the superintendent stood up in": [65535, 0], "the superintendent stood up in front": [65535, 0], "superintendent stood up in front of": [65535, 0], "stood up in front of the": [65535, 0], "up in front of the pulpit": [65535, 0], "in front of the pulpit with": [65535, 0], "front of the pulpit with a": [65535, 0], "of the pulpit with a closed": [65535, 0], "the pulpit with a closed hymn": [65535, 0], "pulpit with a closed hymn book": [65535, 0], "with a closed hymn book in": [65535, 0], "a closed hymn book in his": [65535, 0], "closed hymn book in his hand": [65535, 0], "hymn book in his hand and": [65535, 0], "book in his hand and his": [65535, 0], "in his hand and his forefinger": [65535, 0], "his hand and his forefinger inserted": [65535, 0], "hand and his forefinger inserted between": [65535, 0], "and his forefinger inserted between its": [65535, 0], "his forefinger inserted between its leaves": [65535, 0], "forefinger inserted between its leaves and": [65535, 0], "inserted between its leaves and commanded": [65535, 0], "between its leaves and commanded attention": [65535, 0], "its leaves and commanded attention when": [65535, 0], "leaves and commanded attention when a": [65535, 0], "and commanded attention when a sunday": [65535, 0], "commanded attention when a sunday school": [65535, 0], "attention when a sunday school superintendent": [65535, 0], "when a sunday school superintendent makes": [65535, 0], "a sunday school superintendent makes his": [65535, 0], "sunday school superintendent makes his customary": [65535, 0], "school superintendent makes his customary little": [65535, 0], "superintendent makes his customary little speech": [65535, 0], "makes his customary little speech a": [65535, 0], "his customary little speech a hymn": [65535, 0], "customary little speech a hymn book": [65535, 0], "little speech a hymn book in": [65535, 0], "speech a hymn book in the": [65535, 0], "a hymn book in the hand": [65535, 0], "hymn book in the hand is": [65535, 0], "book in the hand is as": [65535, 0], "in the hand is as necessary": [65535, 0], "the hand is as necessary as": [65535, 0], "hand is as necessary as is": [65535, 0], "is as necessary as is the": [65535, 0], "as necessary as is the inevitable": [65535, 0], "necessary as is the inevitable sheet": [65535, 0], "as is the inevitable sheet of": [65535, 0], "is the inevitable sheet of music": [65535, 0], "the inevitable sheet of music in": [65535, 0], "inevitable sheet of music in the": [65535, 0], "sheet of music in the hand": [65535, 0], "of music in the hand of": [65535, 0], "music in the hand of a": [65535, 0], "in the hand of a singer": [65535, 0], "the hand of a singer who": [65535, 0], "hand of a singer who stands": [65535, 0], "of a singer who stands forward": [65535, 0], "a singer who stands forward on": [65535, 0], "singer who stands forward on the": [65535, 0], "who stands forward on the platform": [65535, 0], "stands forward on the platform and": [65535, 0], "forward on the platform and sings": [65535, 0], "on the platform and sings a": [65535, 0], "the platform and sings a solo": [65535, 0], "platform and sings a solo at": [65535, 0], "and sings a solo at a": [65535, 0], "sings a solo at a concert": [65535, 0], "a solo at a concert though": [65535, 0], "solo at a concert though why": [65535, 0], "at a concert though why is": [65535, 0], "a concert though why is a": [65535, 0], "concert though why is a mystery": [65535, 0], "though why is a mystery for": [65535, 0], "why is a mystery for neither": [65535, 0], "is a mystery for neither the": [65535, 0], "a mystery for neither the hymn": [65535, 0], "mystery for neither the hymn book": [65535, 0], "for neither the hymn book nor": [65535, 0], "neither the hymn book nor the": [65535, 0], "the hymn book nor the sheet": [65535, 0], "hymn book nor the sheet of": [65535, 0], "book nor the sheet of music": [65535, 0], "nor the sheet of music is": [65535, 0], "the sheet of music is ever": [65535, 0], "sheet of music is ever referred": [65535, 0], "of music is ever referred to": [65535, 0], "music is ever referred to by": [65535, 0], "is ever referred to by the": [65535, 0], "ever referred to by the sufferer": [65535, 0], "referred to by the sufferer this": [65535, 0], "to by the sufferer this superintendent": [65535, 0], "by the sufferer this superintendent was": [65535, 0], "the sufferer this superintendent was a": [65535, 0], "sufferer this superintendent was a slim": [65535, 0], "this superintendent was a slim creature": [65535, 0], "superintendent was a slim creature of": [65535, 0], "was a slim creature of thirty": [65535, 0], "a slim creature of thirty five": [65535, 0], "slim creature of thirty five with": [65535, 0], "creature of thirty five with a": [65535, 0], "of thirty five with a sandy": [65535, 0], "thirty five with a sandy goatee": [65535, 0], "five with a sandy goatee and": [65535, 0], "with a sandy goatee and short": [65535, 0], "a sandy goatee and short sandy": [65535, 0], "sandy goatee and short sandy hair": [65535, 0], "goatee and short sandy hair he": [65535, 0], "and short sandy hair he wore": [65535, 0], "short sandy hair he wore a": [65535, 0], "sandy hair he wore a stiff": [65535, 0], "hair he wore a stiff standing": [65535, 0], "he wore a stiff standing collar": [65535, 0], "wore a stiff standing collar whose": [65535, 0], "a stiff standing collar whose upper": [65535, 0], "stiff standing collar whose upper edge": [65535, 0], "standing collar whose upper edge almost": [65535, 0], "collar whose upper edge almost reached": [65535, 0], "whose upper edge almost reached his": [65535, 0], "upper edge almost reached his ears": [65535, 0], "edge almost reached his ears and": [65535, 0], "almost reached his ears and whose": [65535, 0], "reached his ears and whose sharp": [65535, 0], "his ears and whose sharp points": [65535, 0], "ears and whose sharp points curved": [65535, 0], "and whose sharp points curved forward": [65535, 0], "whose sharp points curved forward abreast": [65535, 0], "sharp points curved forward abreast the": [65535, 0], "points curved forward abreast the corners": [65535, 0], "curved forward abreast the corners of": [65535, 0], "forward abreast the corners of his": [65535, 0], "abreast the corners of his mouth": [65535, 0], "the corners of his mouth a": [65535, 0], "corners of his mouth a fence": [65535, 0], "of his mouth a fence that": [65535, 0], "his mouth a fence that compelled": [65535, 0], "mouth a fence that compelled a": [65535, 0], "a fence that compelled a straight": [65535, 0], "fence that compelled a straight lookout": [65535, 0], "that compelled a straight lookout ahead": [65535, 0], "compelled a straight lookout ahead and": [65535, 0], "a straight lookout ahead and a": [65535, 0], "straight lookout ahead and a turning": [65535, 0], "lookout ahead and a turning of": [65535, 0], "ahead and a turning of the": [65535, 0], "and a turning of the whole": [65535, 0], "a turning of the whole body": [65535, 0], "turning of the whole body when": [65535, 0], "of the whole body when a": [65535, 0], "the whole body when a side": [65535, 0], "whole body when a side view": [65535, 0], "body when a side view was": [65535, 0], "when a side view was required": [65535, 0], "a side view was required his": [65535, 0], "side view was required his chin": [65535, 0], "view was required his chin was": [65535, 0], "was required his chin was propped": [65535, 0], "required his chin was propped on": [65535, 0], "his chin was propped on a": [65535, 0], "chin was propped on a spreading": [65535, 0], "was propped on a spreading cravat": [65535, 0], "propped on a spreading cravat which": [65535, 0], "on a spreading cravat which was": [65535, 0], "a spreading cravat which was as": [65535, 0], "spreading cravat which was as broad": [65535, 0], "cravat which was as broad and": [65535, 0], "which was as broad and as": [65535, 0], "was as broad and as long": [65535, 0], "as broad and as long as": [65535, 0], "broad and as long as a": [65535, 0], "and as long as a bank": [65535, 0], "as long as a bank note": [65535, 0], "long as a bank note and": [65535, 0], "as a bank note and had": [65535, 0], "a bank note and had fringed": [65535, 0], "bank note and had fringed ends": [65535, 0], "note and had fringed ends his": [65535, 0], "and had fringed ends his boot": [65535, 0], "had fringed ends his boot toes": [65535, 0], "fringed ends his boot toes were": [65535, 0], "ends his boot toes were turned": [65535, 0], "his boot toes were turned sharply": [65535, 0], "boot toes were turned sharply up": [65535, 0], "toes were turned sharply up in": [65535, 0], "were turned sharply up in the": [65535, 0], "turned sharply up in the fashion": [65535, 0], "sharply up in the fashion of": [65535, 0], "up in the fashion of the": [65535, 0], "in the fashion of the day": [65535, 0], "the fashion of the day like": [65535, 0], "fashion of the day like sleigh": [65535, 0], "of the day like sleigh runners": [65535, 0], "the day like sleigh runners an": [65535, 0], "day like sleigh runners an effect": [65535, 0], "like sleigh runners an effect patiently": [65535, 0], "sleigh runners an effect patiently and": [65535, 0], "runners an effect patiently and laboriously": [65535, 0], "an effect patiently and laboriously produced": [65535, 0], "effect patiently and laboriously produced by": [65535, 0], "patiently and laboriously produced by the": [65535, 0], "and laboriously produced by the young": [65535, 0], "laboriously produced by the young men": [65535, 0], "produced by the young men by": [65535, 0], "by the young men by sitting": [65535, 0], "the young men by sitting with": [65535, 0], "young men by sitting with their": [65535, 0], "men by sitting with their toes": [65535, 0], "by sitting with their toes pressed": [65535, 0], "sitting with their toes pressed against": [65535, 0], "with their toes pressed against a": [65535, 0], "their toes pressed against a wall": [65535, 0], "toes pressed against a wall for": [65535, 0], "pressed against a wall for hours": [65535, 0], "against a wall for hours together": [65535, 0], "a wall for hours together mr": [65535, 0], "wall for hours together mr walters": [65535, 0], "for hours together mr walters was": [65535, 0], "hours together mr walters was very": [65535, 0], "together mr walters was very earnest": [65535, 0], "mr walters was very earnest of": [65535, 0], "walters was very earnest of mien": [65535, 0], "was very earnest of mien and": [65535, 0], "very earnest of mien and very": [65535, 0], "earnest of mien and very sincere": [65535, 0], "of mien and very sincere and": [65535, 0], "mien and very sincere and honest": [65535, 0], "and very sincere and honest at": [65535, 0], "very sincere and honest at heart": [65535, 0], "sincere and honest at heart and": [65535, 0], "and honest at heart and he": [65535, 0], "honest at heart and he held": [65535, 0], "at heart and he held sacred": [65535, 0], "heart and he held sacred things": [65535, 0], "and he held sacred things and": [65535, 0], "he held sacred things and places": [65535, 0], "held sacred things and places in": [65535, 0], "sacred things and places in such": [65535, 0], "things and places in such reverence": [65535, 0], "and places in such reverence and": [65535, 0], "places in such reverence and so": [65535, 0], "in such reverence and so separated": [65535, 0], "such reverence and so separated them": [65535, 0], "reverence and so separated them from": [65535, 0], "and so separated them from worldly": [65535, 0], "so separated them from worldly matters": [65535, 0], "separated them from worldly matters that": [65535, 0], "them from worldly matters that unconsciously": [65535, 0], "from worldly matters that unconsciously to": [65535, 0], "worldly matters that unconsciously to himself": [65535, 0], "matters that unconsciously to himself his": [65535, 0], "that unconsciously to himself his sunday": [65535, 0], "unconsciously to himself his sunday school": [65535, 0], "to himself his sunday school voice": [65535, 0], "himself his sunday school voice had": [65535, 0], "his sunday school voice had acquired": [65535, 0], "sunday school voice had acquired a": [65535, 0], "school voice had acquired a peculiar": [65535, 0], "voice had acquired a peculiar intonation": [65535, 0], "had acquired a peculiar intonation which": [65535, 0], "acquired a peculiar intonation which was": [65535, 0], "a peculiar intonation which was wholly": [65535, 0], "peculiar intonation which was wholly absent": [65535, 0], "intonation which was wholly absent on": [65535, 0], "which was wholly absent on week": [65535, 0], "was wholly absent on week days": [65535, 0], "wholly absent on week days he": [65535, 0], "absent on week days he began": [65535, 0], "on week days he began after": [65535, 0], "week days he began after this": [65535, 0], "days he began after this fashion": [65535, 0], "he began after this fashion now": [65535, 0], "began after this fashion now children": [65535, 0], "after this fashion now children i": [65535, 0], "this fashion now children i want": [65535, 0], "fashion now children i want you": [65535, 0], "now children i want you all": [65535, 0], "children i want you all to": [65535, 0], "i want you all to sit": [65535, 0], "want you all to sit up": [65535, 0], "you all to sit up just": [65535, 0], "all to sit up just as": [65535, 0], "to sit up just as straight": [65535, 0], "sit up just as straight and": [65535, 0], "up just as straight and pretty": [65535, 0], "just as straight and pretty as": [65535, 0], "as straight and pretty as you": [65535, 0], "straight and pretty as you can": [65535, 0], "and pretty as you can and": [65535, 0], "pretty as you can and give": [65535, 0], "as you can and give me": [65535, 0], "you can and give me all": [65535, 0], "can and give me all your": [65535, 0], "and give me all your attention": [65535, 0], "give me all your attention for": [65535, 0], "me all your attention for a": [65535, 0], "all your attention for a minute": [65535, 0], "your attention for a minute or": [65535, 0], "attention for a minute or two": [65535, 0], "for a minute or two there": [65535, 0], "a minute or two there that": [65535, 0], "minute or two there that is": [65535, 0], "or two there that is it": [65535, 0], "two there that is it that": [65535, 0], "there that is it that is": [65535, 0], "that is it that is the": [65535, 0], "is it that is the way": [65535, 0], "it that is the way good": [65535, 0], "that is the way good little": [65535, 0], "is the way good little boys": [65535, 0], "the way good little boys and": [65535, 0], "way good little boys and girls": [65535, 0], "good little boys and girls should": [65535, 0], "little boys and girls should do": [65535, 0], "boys and girls should do i": [65535, 0], "and girls should do i see": [65535, 0], "girls should do i see one": [65535, 0], "should do i see one little": [65535, 0], "do i see one little girl": [65535, 0], "i see one little girl who": [65535, 0], "see one little girl who is": [65535, 0], "one little girl who is looking": [65535, 0], "little girl who is looking out": [65535, 0], "girl who is looking out of": [65535, 0], "who is looking out of the": [65535, 0], "is looking out of the window": [65535, 0], "looking out of the window i": [65535, 0], "out of the window i am": [65535, 0], "of the window i am afraid": [65535, 0], "the window i am afraid she": [65535, 0], "window i am afraid she thinks": [65535, 0], "i am afraid she thinks i": [65535, 0], "am afraid she thinks i am": [65535, 0], "afraid she thinks i am out": [65535, 0], "she thinks i am out there": [65535, 0], "thinks i am out there somewhere": [65535, 0], "i am out there somewhere perhaps": [65535, 0], "am out there somewhere perhaps up": [65535, 0], "out there somewhere perhaps up in": [65535, 0], "there somewhere perhaps up in one": [65535, 0], "somewhere perhaps up in one of": [65535, 0], "perhaps up in one of the": [65535, 0], "up in one of the trees": [65535, 0], "in one of the trees making": [65535, 0], "one of the trees making a": [65535, 0], "of the trees making a speech": [65535, 0], "the trees making a speech to": [65535, 0], "trees making a speech to the": [65535, 0], "making a speech to the little": [65535, 0], "a speech to the little birds": [65535, 0], "speech to the little birds applausive": [65535, 0], "to the little birds applausive titter": [65535, 0], "the little birds applausive titter i": [65535, 0], "little birds applausive titter i want": [65535, 0], "birds applausive titter i want to": [65535, 0], "applausive titter i want to tell": [65535, 0], "titter i want to tell you": [65535, 0], "i want to tell you how": [65535, 0], "want to tell you how good": [65535, 0], "to tell you how good it": [65535, 0], "tell you how good it makes": [65535, 0], "you how good it makes me": [65535, 0], "how good it makes me feel": [65535, 0], "good it makes me feel to": [65535, 0], "it makes me feel to see": [65535, 0], "makes me feel to see so": [65535, 0], "me feel to see so many": [65535, 0], "feel to see so many bright": [65535, 0], "to see so many bright clean": [65535, 0], "see so many bright clean little": [65535, 0], "so many bright clean little faces": [65535, 0], "many bright clean little faces assembled": [65535, 0], "bright clean little faces assembled in": [65535, 0], "clean little faces assembled in a": [65535, 0], "little faces assembled in a place": [65535, 0], "faces assembled in a place like": [65535, 0], "assembled in a place like this": [65535, 0], "in a place like this learning": [65535, 0], "a place like this learning to": [65535, 0], "place like this learning to do": [65535, 0], "like this learning to do right": [65535, 0], "this learning to do right and": [65535, 0], "learning to do right and be": [65535, 0], "to do right and be good": [65535, 0], "do right and be good and": [65535, 0], "right and be good and so": [65535, 0], "and be good and so forth": [65535, 0], "be good and so forth and": [65535, 0], "good and so forth and so": [65535, 0], "and so forth and so on": [65535, 0], "so forth and so on it": [65535, 0], "forth and so on it is": [65535, 0], "and so on it is not": [65535, 0], "so on it is not necessary": [65535, 0], "on it is not necessary to": [65535, 0], "it is not necessary to set": [65535, 0], "is not necessary to set down": [65535, 0], "not necessary to set down the": [65535, 0], "necessary to set down the rest": [65535, 0], "to set down the rest of": [65535, 0], "set down the rest of the": [65535, 0], "down the rest of the oration": [65535, 0], "the rest of the oration it": [65535, 0], "rest of the oration it was": [65535, 0], "of the oration it was of": [65535, 0], "the oration it was of a": [65535, 0], "oration it was of a pattern": [65535, 0], "it was of a pattern which": [65535, 0], "was of a pattern which does": [65535, 0], "of a pattern which does not": [65535, 0], "a pattern which does not vary": [65535, 0], "pattern which does not vary and": [65535, 0], "which does not vary and so": [65535, 0], "does not vary and so it": [65535, 0], "not vary and so it is": [65535, 0], "vary and so it is familiar": [65535, 0], "and so it is familiar to": [65535, 0], "so it is familiar to us": [65535, 0], "it is familiar to us all": [65535, 0], "is familiar to us all the": [65535, 0], "familiar to us all the latter": [65535, 0], "to us all the latter third": [65535, 0], "us all the latter third of": [65535, 0], "all the latter third of the": [65535, 0], "the latter third of the speech": [65535, 0], "latter third of the speech was": [65535, 0], "third of the speech was marred": [65535, 0], "of the speech was marred by": [65535, 0], "the speech was marred by the": [65535, 0], "speech was marred by the resumption": [65535, 0], "was marred by the resumption of": [65535, 0], "marred by the resumption of fights": [65535, 0], "by the resumption of fights and": [65535, 0], "the resumption of fights and other": [65535, 0], "resumption of fights and other recreations": [65535, 0], "of fights and other recreations among": [65535, 0], "fights and other recreations among certain": [65535, 0], "and other recreations among certain of": [65535, 0], "other recreations among certain of the": [65535, 0], "recreations among certain of the bad": [65535, 0], "among certain of the bad boys": [65535, 0], "certain of the bad boys and": [65535, 0], "of the bad boys and by": [65535, 0], "the bad boys and by fidgetings": [65535, 0], "bad boys and by fidgetings and": [65535, 0], "boys and by fidgetings and whisperings": [65535, 0], "and by fidgetings and whisperings that": [65535, 0], "by fidgetings and whisperings that extended": [65535, 0], "fidgetings and whisperings that extended far": [65535, 0], "and whisperings that extended far and": [65535, 0], "whisperings that extended far and wide": [65535, 0], "that extended far and wide washing": [65535, 0], "extended far and wide washing even": [65535, 0], "far and wide washing even to": [65535, 0], "and wide washing even to the": [65535, 0], "wide washing even to the bases": [65535, 0], "washing even to the bases of": [65535, 0], "even to the bases of isolated": [65535, 0], "to the bases of isolated and": [65535, 0], "the bases of isolated and incorruptible": [65535, 0], "bases of isolated and incorruptible rocks": [65535, 0], "of isolated and incorruptible rocks like": [65535, 0], "isolated and incorruptible rocks like sid": [65535, 0], "and incorruptible rocks like sid and": [65535, 0], "incorruptible rocks like sid and mary": [65535, 0], "rocks like sid and mary but": [65535, 0], "like sid and mary but now": [65535, 0], "sid and mary but now every": [65535, 0], "and mary but now every sound": [65535, 0], "mary but now every sound ceased": [65535, 0], "but now every sound ceased suddenly": [65535, 0], "now every sound ceased suddenly with": [65535, 0], "every sound ceased suddenly with the": [65535, 0], "sound ceased suddenly with the subsidence": [65535, 0], "ceased suddenly with the subsidence of": [65535, 0], "suddenly with the subsidence of mr": [65535, 0], "with the subsidence of mr walters'": [65535, 0], "the subsidence of mr walters' voice": [65535, 0], "subsidence of mr walters' voice and": [65535, 0], "of mr walters' voice and the": [65535, 0], "mr walters' voice and the conclusion": [65535, 0], "walters' voice and the conclusion of": [65535, 0], "voice and the conclusion of the": [65535, 0], "and the conclusion of the speech": [65535, 0], "the conclusion of the speech was": [65535, 0], "conclusion of the speech was received": [65535, 0], "of the speech was received with": [65535, 0], "the speech was received with a": [65535, 0], "speech was received with a burst": [65535, 0], "was received with a burst of": [65535, 0], "received with a burst of silent": [65535, 0], "with a burst of silent gratitude": [65535, 0], "a burst of silent gratitude a": [65535, 0], "burst of silent gratitude a good": [65535, 0], "of silent gratitude a good part": [65535, 0], "silent gratitude a good part of": [65535, 0], "gratitude a good part of the": [65535, 0], "a good part of the whispering": [65535, 0], "good part of the whispering had": [65535, 0], "part of the whispering had been": [65535, 0], "of the whispering had been occasioned": [65535, 0], "the whispering had been occasioned by": [65535, 0], "whispering had been occasioned by an": [65535, 0], "had been occasioned by an event": [65535, 0], "been occasioned by an event which": [65535, 0], "occasioned by an event which was": [65535, 0], "by an event which was more": [65535, 0], "an event which was more or": [65535, 0], "event which was more or less": [65535, 0], "which was more or less rare": [65535, 0], "was more or less rare the": [65535, 0], "more or less rare the entrance": [65535, 0], "or less rare the entrance of": [65535, 0], "less rare the entrance of visitors": [65535, 0], "rare the entrance of visitors lawyer": [65535, 0], "the entrance of visitors lawyer thatcher": [65535, 0], "entrance of visitors lawyer thatcher accompanied": [65535, 0], "of visitors lawyer thatcher accompanied by": [65535, 0], "visitors lawyer thatcher accompanied by a": [65535, 0], "lawyer thatcher accompanied by a very": [65535, 0], "thatcher accompanied by a very feeble": [65535, 0], "accompanied by a very feeble and": [65535, 0], "by a very feeble and aged": [65535, 0], "a very feeble and aged man": [65535, 0], "very feeble and aged man a": [65535, 0], "feeble and aged man a fine": [65535, 0], "and aged man a fine portly": [65535, 0], "aged man a fine portly middle": [65535, 0], "man a fine portly middle aged": [65535, 0], "a fine portly middle aged gentleman": [65535, 0], "fine portly middle aged gentleman with": [65535, 0], "portly middle aged gentleman with iron": [65535, 0], "middle aged gentleman with iron gray": [65535, 0], "aged gentleman with iron gray hair": [65535, 0], "gentleman with iron gray hair and": [65535, 0], "with iron gray hair and a": [65535, 0], "iron gray hair and a dignified": [65535, 0], "gray hair and a dignified lady": [65535, 0], "hair and a dignified lady who": [65535, 0], "and a dignified lady who was": [65535, 0], "a dignified lady who was doubtless": [65535, 0], "dignified lady who was doubtless the": [65535, 0], "lady who was doubtless the latter's": [65535, 0], "who was doubtless the latter's wife": [65535, 0], "was doubtless the latter's wife the": [65535, 0], "doubtless the latter's wife the lady": [65535, 0], "the latter's wife the lady was": [65535, 0], "latter's wife the lady was leading": [65535, 0], "wife the lady was leading a": [65535, 0], "the lady was leading a child": [65535, 0], "lady was leading a child tom": [65535, 0], "was leading a child tom had": [65535, 0], "leading a child tom had been": [65535, 0], "a child tom had been restless": [65535, 0], "child tom had been restless and": [65535, 0], "tom had been restless and full": [65535, 0], "had been restless and full of": [65535, 0], "been restless and full of chafings": [65535, 0], "restless and full of chafings and": [65535, 0], "and full of chafings and repinings": [65535, 0], "full of chafings and repinings conscience": [65535, 0], "of chafings and repinings conscience smitten": [65535, 0], "chafings and repinings conscience smitten too": [65535, 0], "and repinings conscience smitten too he": [65535, 0], "repinings conscience smitten too he could": [65535, 0], "conscience smitten too he could not": [65535, 0], "smitten too he could not meet": [65535, 0], "too he could not meet amy": [65535, 0], "he could not meet amy lawrence's": [65535, 0], "could not meet amy lawrence's eye": [65535, 0], "not meet amy lawrence's eye he": [65535, 0], "meet amy lawrence's eye he could": [65535, 0], "amy lawrence's eye he could not": [65535, 0], "lawrence's eye he could not brook": [65535, 0], "eye he could not brook her": [65535, 0], "he could not brook her loving": [65535, 0], "could not brook her loving gaze": [65535, 0], "not brook her loving gaze but": [65535, 0], "brook her loving gaze but when": [65535, 0], "her loving gaze but when he": [65535, 0], "loving gaze but when he saw": [65535, 0], "gaze but when he saw this": [65535, 0], "but when he saw this small": [65535, 0], "when he saw this small new": [65535, 0], "he saw this small new comer": [65535, 0], "saw this small new comer his": [65535, 0], "this small new comer his soul": [65535, 0], "small new comer his soul was": [65535, 0], "new comer his soul was all": [65535, 0], "comer his soul was all ablaze": [65535, 0], "his soul was all ablaze with": [65535, 0], "soul was all ablaze with bliss": [65535, 0], "was all ablaze with bliss in": [65535, 0], "all ablaze with bliss in a": [65535, 0], "ablaze with bliss in a moment": [65535, 0], "with bliss in a moment the": [65535, 0], "bliss in a moment the next": [65535, 0], "in a moment the next moment": [65535, 0], "a moment the next moment he": [65535, 0], "moment the next moment he was": [65535, 0], "the next moment he was showing": [65535, 0], "next moment he was showing off": [65535, 0], "moment he was showing off with": [65535, 0], "he was showing off with all": [65535, 0], "was showing off with all his": [65535, 0], "showing off with all his might": [65535, 0], "off with all his might cuffing": [65535, 0], "with all his might cuffing boys": [65535, 0], "all his might cuffing boys pulling": [65535, 0], "his might cuffing boys pulling hair": [65535, 0], "might cuffing boys pulling hair making": [65535, 0], "cuffing boys pulling hair making faces": [65535, 0], "boys pulling hair making faces in": [65535, 0], "pulling hair making faces in a": [65535, 0], "hair making faces in a word": [65535, 0], "making faces in a word using": [65535, 0], "faces in a word using every": [65535, 0], "in a word using every art": [65535, 0], "a word using every art that": [65535, 0], "word using every art that seemed": [65535, 0], "using every art that seemed likely": [65535, 0], "every art that seemed likely to": [65535, 0], "art that seemed likely to fascinate": [65535, 0], "that seemed likely to fascinate a": [65535, 0], "seemed likely to fascinate a girl": [65535, 0], "likely to fascinate a girl and": [65535, 0], "to fascinate a girl and win": [65535, 0], "fascinate a girl and win her": [65535, 0], "a girl and win her applause": [65535, 0], "girl and win her applause his": [65535, 0], "and win her applause his exaltation": [65535, 0], "win her applause his exaltation had": [65535, 0], "her applause his exaltation had but": [65535, 0], "applause his exaltation had but one": [65535, 0], "his exaltation had but one alloy": [65535, 0], "exaltation had but one alloy the": [65535, 0], "had but one alloy the memory": [65535, 0], "but one alloy the memory of": [65535, 0], "one alloy the memory of his": [65535, 0], "alloy the memory of his humiliation": [65535, 0], "the memory of his humiliation in": [65535, 0], "memory of his humiliation in this": [65535, 0], "of his humiliation in this angel's": [65535, 0], "his humiliation in this angel's garden": [65535, 0], "humiliation in this angel's garden and": [65535, 0], "in this angel's garden and that": [65535, 0], "this angel's garden and that record": [65535, 0], "angel's garden and that record in": [65535, 0], "garden and that record in sand": [65535, 0], "and that record in sand was": [65535, 0], "that record in sand was fast": [65535, 0], "record in sand was fast washing": [65535, 0], "in sand was fast washing out": [65535, 0], "sand was fast washing out under": [65535, 0], "was fast washing out under the": [65535, 0], "fast washing out under the waves": [65535, 0], "washing out under the waves of": [65535, 0], "out under the waves of happiness": [65535, 0], "under the waves of happiness that": [65535, 0], "the waves of happiness that were": [65535, 0], "waves of happiness that were sweeping": [65535, 0], "of happiness that were sweeping over": [65535, 0], "happiness that were sweeping over it": [65535, 0], "that were sweeping over it now": [65535, 0], "were sweeping over it now the": [65535, 0], "sweeping over it now the visitors": [65535, 0], "over it now the visitors were": [65535, 0], "it now the visitors were given": [65535, 0], "now the visitors were given the": [65535, 0], "the visitors were given the highest": [65535, 0], "visitors were given the highest seat": [65535, 0], "were given the highest seat of": [65535, 0], "given the highest seat of honor": [65535, 0], "the highest seat of honor and": [65535, 0], "highest seat of honor and as": [65535, 0], "seat of honor and as soon": [65535, 0], "of honor and as soon as": [65535, 0], "honor and as soon as mr": [65535, 0], "and as soon as mr walters'": [65535, 0], "as soon as mr walters' speech": [65535, 0], "soon as mr walters' speech was": [65535, 0], "as mr walters' speech was finished": [65535, 0], "mr walters' speech was finished he": [65535, 0], "walters' speech was finished he introduced": [65535, 0], "speech was finished he introduced them": [65535, 0], "was finished he introduced them to": [65535, 0], "finished he introduced them to the": [65535, 0], "he introduced them to the school": [65535, 0], "introduced them to the school the": [65535, 0], "them to the school the middle": [65535, 0], "to the school the middle aged": [65535, 0], "the school the middle aged man": [65535, 0], "school the middle aged man turned": [65535, 0], "the middle aged man turned out": [65535, 0], "middle aged man turned out to": [65535, 0], "aged man turned out to be": [65535, 0], "man turned out to be a": [65535, 0], "turned out to be a prodigious": [65535, 0], "out to be a prodigious personage": [65535, 0], "to be a prodigious personage no": [65535, 0], "be a prodigious personage no less": [65535, 0], "a prodigious personage no less a": [65535, 0], "prodigious personage no less a one": [65535, 0], "personage no less a one than": [65535, 0], "no less a one than the": [65535, 0], "less a one than the county": [65535, 0], "a one than the county judge": [65535, 0], "one than the county judge altogether": [65535, 0], "than the county judge altogether the": [65535, 0], "the county judge altogether the most": [65535, 0], "county judge altogether the most august": [65535, 0], "judge altogether the most august creation": [65535, 0], "altogether the most august creation these": [65535, 0], "the most august creation these children": [65535, 0], "most august creation these children had": [65535, 0], "august creation these children had ever": [65535, 0], "creation these children had ever looked": [65535, 0], "these children had ever looked upon": [65535, 0], "children had ever looked upon and": [65535, 0], "had ever looked upon and they": [65535, 0], "ever looked upon and they wondered": [65535, 0], "looked upon and they wondered what": [65535, 0], "upon and they wondered what kind": [65535, 0], "and they wondered what kind of": [65535, 0], "they wondered what kind of material": [65535, 0], "wondered what kind of material he": [65535, 0], "what kind of material he was": [65535, 0], "kind of material he was made": [65535, 0], "of material he was made of": [65535, 0], "material he was made of and": [65535, 0], "he was made of and they": [65535, 0], "was made of and they half": [65535, 0], "made of and they half wanted": [65535, 0], "of and they half wanted to": [65535, 0], "and they half wanted to hear": [65535, 0], "they half wanted to hear him": [65535, 0], "half wanted to hear him roar": [65535, 0], "wanted to hear him roar and": [65535, 0], "to hear him roar and were": [65535, 0], "hear him roar and were half": [65535, 0], "him roar and were half afraid": [65535, 0], "roar and were half afraid he": [65535, 0], "and were half afraid he might": [65535, 0], "were half afraid he might too": [65535, 0], "half afraid he might too he": [65535, 0], "afraid he might too he was": [65535, 0], "he might too he was from": [65535, 0], "might too he was from constantinople": [65535, 0], "too he was from constantinople twelve": [65535, 0], "he was from constantinople twelve miles": [65535, 0], "was from constantinople twelve miles away": [65535, 0], "from constantinople twelve miles away so": [65535, 0], "constantinople twelve miles away so he": [65535, 0], "twelve miles away so he had": [65535, 0], "miles away so he had travelled": [65535, 0], "away so he had travelled and": [65535, 0], "so he had travelled and seen": [65535, 0], "he had travelled and seen the": [65535, 0], "had travelled and seen the world": [65535, 0], "travelled and seen the world these": [65535, 0], "and seen the world these very": [65535, 0], "seen the world these very eyes": [65535, 0], "the world these very eyes had": [65535, 0], "world these very eyes had looked": [65535, 0], "these very eyes had looked upon": [65535, 0], "very eyes had looked upon the": [65535, 0], "eyes had looked upon the county": [65535, 0], "had looked upon the county court": [65535, 0], "looked upon the county court house": [65535, 0], "upon the county court house which": [65535, 0], "the county court house which was": [65535, 0], "county court house which was said": [65535, 0], "court house which was said to": [65535, 0], "house which was said to have": [65535, 0], "which was said to have a": [65535, 0], "was said to have a tin": [65535, 0], "said to have a tin roof": [65535, 0], "to have a tin roof the": [65535, 0], "have a tin roof the awe": [65535, 0], "a tin roof the awe which": [65535, 0], "tin roof the awe which these": [65535, 0], "roof the awe which these reflections": [65535, 0], "the awe which these reflections inspired": [65535, 0], "awe which these reflections inspired was": [65535, 0], "which these reflections inspired was attested": [65535, 0], "these reflections inspired was attested by": [65535, 0], "reflections inspired was attested by the": [65535, 0], "inspired was attested by the impressive": [65535, 0], "was attested by the impressive silence": [65535, 0], "attested by the impressive silence and": [65535, 0], "by the impressive silence and the": [65535, 0], "the impressive silence and the ranks": [65535, 0], "impressive silence and the ranks of": [65535, 0], "silence and the ranks of staring": [65535, 0], "and the ranks of staring eyes": [65535, 0], "the ranks of staring eyes this": [65535, 0], "ranks of staring eyes this was": [65535, 0], "of staring eyes this was the": [65535, 0], "staring eyes this was the great": [65535, 0], "eyes this was the great judge": [65535, 0], "this was the great judge thatcher": [65535, 0], "was the great judge thatcher brother": [65535, 0], "the great judge thatcher brother of": [65535, 0], "great judge thatcher brother of their": [65535, 0], "judge thatcher brother of their own": [65535, 0], "thatcher brother of their own lawyer": [65535, 0], "brother of their own lawyer jeff": [65535, 0], "of their own lawyer jeff thatcher": [65535, 0], "their own lawyer jeff thatcher immediately": [65535, 0], "own lawyer jeff thatcher immediately went": [65535, 0], "lawyer jeff thatcher immediately went forward": [65535, 0], "jeff thatcher immediately went forward to": [65535, 0], "thatcher immediately went forward to be": [65535, 0], "immediately went forward to be familiar": [65535, 0], "went forward to be familiar with": [65535, 0], "forward to be familiar with the": [65535, 0], "to be familiar with the great": [65535, 0], "be familiar with the great man": [65535, 0], "familiar with the great man and": [65535, 0], "with the great man and be": [65535, 0], "the great man and be envied": [65535, 0], "great man and be envied by": [65535, 0], "man and be envied by the": [65535, 0], "and be envied by the school": [65535, 0], "be envied by the school it": [65535, 0], "envied by the school it would": [65535, 0], "by the school it would have": [65535, 0], "the school it would have been": [65535, 0], "school it would have been music": [65535, 0], "it would have been music to": [65535, 0], "would have been music to his": [65535, 0], "have been music to his soul": [65535, 0], "been music to his soul to": [65535, 0], "music to his soul to hear": [65535, 0], "to his soul to hear the": [65535, 0], "his soul to hear the whisperings": [65535, 0], "soul to hear the whisperings look": [65535, 0], "to hear the whisperings look at": [65535, 0], "hear the whisperings look at him": [65535, 0], "the whisperings look at him jim": [65535, 0], "whisperings look at him jim he's": [65535, 0], "look at him jim he's a": [65535, 0], "at him jim he's a going": [65535, 0], "him jim he's a going up": [65535, 0], "jim he's a going up there": [65535, 0], "he's a going up there say": [65535, 0], "a going up there say look": [65535, 0], "going up there say look he's": [65535, 0], "up there say look he's a": [65535, 0], "there say look he's a going": [65535, 0], "say look he's a going to": [65535, 0], "look he's a going to shake": [65535, 0], "he's a going to shake hands": [65535, 0], "a going to shake hands with": [65535, 0], "going to shake hands with him": [65535, 0], "to shake hands with him he": [65535, 0], "shake hands with him he is": [65535, 0], "hands with him he is shaking": [65535, 0], "with him he is shaking hands": [65535, 0], "him he is shaking hands with": [65535, 0], "he is shaking hands with him": [65535, 0], "is shaking hands with him by": [65535, 0], "shaking hands with him by jings": [65535, 0], "hands with him by jings don't": [65535, 0], "with him by jings don't you": [65535, 0], "him by jings don't you wish": [65535, 0], "by jings don't you wish you": [65535, 0], "jings don't you wish you was": [65535, 0], "don't you wish you was jeff": [65535, 0], "you wish you was jeff mr": [65535, 0], "wish you was jeff mr walters": [65535, 0], "you was jeff mr walters fell": [65535, 0], "was jeff mr walters fell to": [65535, 0], "jeff mr walters fell to showing": [65535, 0], "mr walters fell to showing off": [65535, 0], "walters fell to showing off with": [65535, 0], "fell to showing off with all": [65535, 0], "to showing off with all sorts": [65535, 0], "showing off with all sorts of": [65535, 0], "off with all sorts of official": [65535, 0], "with all sorts of official bustlings": [65535, 0], "all sorts of official bustlings and": [65535, 0], "sorts of official bustlings and activities": [65535, 0], "of official bustlings and activities giving": [65535, 0], "official bustlings and activities giving orders": [65535, 0], "bustlings and activities giving orders delivering": [65535, 0], "and activities giving orders delivering judgments": [65535, 0], "activities giving orders delivering judgments discharging": [65535, 0], "giving orders delivering judgments discharging directions": [65535, 0], "orders delivering judgments discharging directions here": [65535, 0], "delivering judgments discharging directions here there": [65535, 0], "judgments discharging directions here there everywhere": [65535, 0], "discharging directions here there everywhere that": [65535, 0], "directions here there everywhere that he": [65535, 0], "here there everywhere that he could": [65535, 0], "there everywhere that he could find": [65535, 0], "everywhere that he could find a": [65535, 0], "that he could find a target": [65535, 0], "he could find a target the": [65535, 0], "could find a target the librarian": [65535, 0], "find a target the librarian showed": [65535, 0], "a target the librarian showed off": [65535, 0], "target the librarian showed off running": [65535, 0], "the librarian showed off running hither": [65535, 0], "librarian showed off running hither and": [65535, 0], "showed off running hither and thither": [65535, 0], "off running hither and thither with": [65535, 0], "running hither and thither with his": [65535, 0], "hither and thither with his arms": [65535, 0], "and thither with his arms full": [65535, 0], "thither with his arms full of": [65535, 0], "with his arms full of books": [65535, 0], "his arms full of books and": [65535, 0], "arms full of books and making": [65535, 0], "full of books and making a": [65535, 0], "of books and making a deal": [65535, 0], "books and making a deal of": [65535, 0], "and making a deal of the": [65535, 0], "making a deal of the splutter": [65535, 0], "a deal of the splutter and": [65535, 0], "deal of the splutter and fuss": [65535, 0], "of the splutter and fuss that": [65535, 0], "the splutter and fuss that insect": [65535, 0], "splutter and fuss that insect authority": [65535, 0], "and fuss that insect authority delights": [65535, 0], "fuss that insect authority delights in": [65535, 0], "that insect authority delights in the": [65535, 0], "insect authority delights in the young": [65535, 0], "authority delights in the young lady": [65535, 0], "delights in the young lady teachers": [65535, 0], "in the young lady teachers showed": [65535, 0], "the young lady teachers showed off": [65535, 0], "young lady teachers showed off bending": [65535, 0], "lady teachers showed off bending sweetly": [65535, 0], "teachers showed off bending sweetly over": [65535, 0], "showed off bending sweetly over pupils": [65535, 0], "off bending sweetly over pupils that": [65535, 0], "bending sweetly over pupils that were": [65535, 0], "sweetly over pupils that were lately": [65535, 0], "over pupils that were lately being": [65535, 0], "pupils that were lately being boxed": [65535, 0], "that were lately being boxed lifting": [65535, 0], "were lately being boxed lifting pretty": [65535, 0], "lately being boxed lifting pretty warning": [65535, 0], "being boxed lifting pretty warning fingers": [65535, 0], "boxed lifting pretty warning fingers at": [65535, 0], "lifting pretty warning fingers at bad": [65535, 0], "pretty warning fingers at bad little": [65535, 0], "warning fingers at bad little boys": [65535, 0], "fingers at bad little boys and": [65535, 0], "at bad little boys and patting": [65535, 0], "bad little boys and patting good": [65535, 0], "little boys and patting good ones": [65535, 0], "boys and patting good ones lovingly": [65535, 0], "and patting good ones lovingly the": [65535, 0], "patting good ones lovingly the young": [65535, 0], "good ones lovingly the young gentlemen": [65535, 0], "ones lovingly the young gentlemen teachers": [65535, 0], "lovingly the young gentlemen teachers showed": [65535, 0], "the young gentlemen teachers showed off": [65535, 0], "young gentlemen teachers showed off with": [65535, 0], "gentlemen teachers showed off with small": [65535, 0], "teachers showed off with small scoldings": [65535, 0], "showed off with small scoldings and": [65535, 0], "off with small scoldings and other": [65535, 0], "with small scoldings and other little": [65535, 0], "small scoldings and other little displays": [65535, 0], "scoldings and other little displays of": [65535, 0], "and other little displays of authority": [65535, 0], "other little displays of authority and": [65535, 0], "little displays of authority and fine": [65535, 0], "displays of authority and fine attention": [65535, 0], "of authority and fine attention to": [65535, 0], "authority and fine attention to discipline": [65535, 0], "and fine attention to discipline and": [65535, 0], "fine attention to discipline and most": [65535, 0], "attention to discipline and most of": [65535, 0], "to discipline and most of the": [65535, 0], "discipline and most of the teachers": [65535, 0], "and most of the teachers of": [65535, 0], "most of the teachers of both": [65535, 0], "of the teachers of both sexes": [65535, 0], "the teachers of both sexes found": [65535, 0], "teachers of both sexes found business": [65535, 0], "of both sexes found business up": [65535, 0], "both sexes found business up at": [65535, 0], "sexes found business up at the": [65535, 0], "found business up at the library": [65535, 0], "business up at the library by": [65535, 0], "up at the library by the": [65535, 0], "at the library by the pulpit": [65535, 0], "the library by the pulpit and": [65535, 0], "library by the pulpit and it": [65535, 0], "by the pulpit and it was": [65535, 0], "the pulpit and it was business": [65535, 0], "pulpit and it was business that": [65535, 0], "and it was business that frequently": [65535, 0], "it was business that frequently had": [65535, 0], "was business that frequently had to": [65535, 0], "business that frequently had to be": [65535, 0], "that frequently had to be done": [65535, 0], "frequently had to be done over": [65535, 0], "had to be done over again": [65535, 0], "to be done over again two": [65535, 0], "be done over again two or": [65535, 0], "done over again two or three": [65535, 0], "over again two or three times": [65535, 0], "again two or three times with": [65535, 0], "two or three times with much": [65535, 0], "or three times with much seeming": [65535, 0], "three times with much seeming vexation": [65535, 0], "times with much seeming vexation the": [65535, 0], "with much seeming vexation the little": [65535, 0], "much seeming vexation the little girls": [65535, 0], "seeming vexation the little girls showed": [65535, 0], "vexation the little girls showed off": [65535, 0], "the little girls showed off in": [65535, 0], "little girls showed off in various": [65535, 0], "girls showed off in various ways": [65535, 0], "showed off in various ways and": [65535, 0], "off in various ways and the": [65535, 0], "in various ways and the little": [65535, 0], "various ways and the little boys": [65535, 0], "ways and the little boys showed": [65535, 0], "and the little boys showed off": [65535, 0], "the little boys showed off with": [65535, 0], "little boys showed off with such": [65535, 0], "boys showed off with such diligence": [65535, 0], "showed off with such diligence that": [65535, 0], "off with such diligence that the": [65535, 0], "with such diligence that the air": [65535, 0], "such diligence that the air was": [65535, 0], "diligence that the air was thick": [65535, 0], "that the air was thick with": [65535, 0], "the air was thick with paper": [65535, 0], "air was thick with paper wads": [65535, 0], "was thick with paper wads and": [65535, 0], "thick with paper wads and the": [65535, 0], "with paper wads and the murmur": [65535, 0], "paper wads and the murmur of": [65535, 0], "wads and the murmur of scufflings": [65535, 0], "and the murmur of scufflings and": [65535, 0], "the murmur of scufflings and above": [65535, 0], "murmur of scufflings and above it": [65535, 0], "of scufflings and above it all": [65535, 0], "scufflings and above it all the": [65535, 0], "and above it all the great": [65535, 0], "above it all the great man": [65535, 0], "it all the great man sat": [65535, 0], "all the great man sat and": [65535, 0], "the great man sat and beamed": [65535, 0], "great man sat and beamed a": [65535, 0], "man sat and beamed a majestic": [65535, 0], "sat and beamed a majestic judicial": [65535, 0], "and beamed a majestic judicial smile": [65535, 0], "beamed a majestic judicial smile upon": [65535, 0], "a majestic judicial smile upon all": [65535, 0], "majestic judicial smile upon all the": [65535, 0], "judicial smile upon all the house": [65535, 0], "smile upon all the house and": [65535, 0], "upon all the house and warmed": [65535, 0], "all the house and warmed himself": [65535, 0], "the house and warmed himself in": [65535, 0], "house and warmed himself in the": [65535, 0], "and warmed himself in the sun": [65535, 0], "warmed himself in the sun of": [65535, 0], "himself in the sun of his": [65535, 0], "in the sun of his own": [65535, 0], "the sun of his own grandeur": [65535, 0], "sun of his own grandeur for": [65535, 0], "of his own grandeur for he": [65535, 0], "his own grandeur for he was": [65535, 0], "own grandeur for he was showing": [65535, 0], "grandeur for he was showing off": [65535, 0], "for he was showing off too": [65535, 0], "he was showing off too there": [65535, 0], "was showing off too there was": [65535, 0], "showing off too there was only": [65535, 0], "off too there was only one": [65535, 0], "too there was only one thing": [65535, 0], "there was only one thing wanting": [65535, 0], "was only one thing wanting to": [65535, 0], "only one thing wanting to make": [65535, 0], "one thing wanting to make mr": [65535, 0], "thing wanting to make mr walters'": [65535, 0], "wanting to make mr walters' ecstasy": [65535, 0], "to make mr walters' ecstasy complete": [65535, 0], "make mr walters' ecstasy complete and": [65535, 0], "mr walters' ecstasy complete and that": [65535, 0], "walters' ecstasy complete and that was": [65535, 0], "ecstasy complete and that was a": [65535, 0], "complete and that was a chance": [65535, 0], "and that was a chance to": [65535, 0], "that was a chance to deliver": [65535, 0], "was a chance to deliver a": [65535, 0], "a chance to deliver a bible": [65535, 0], "chance to deliver a bible prize": [65535, 0], "to deliver a bible prize and": [65535, 0], "deliver a bible prize and exhibit": [65535, 0], "a bible prize and exhibit a": [65535, 0], "bible prize and exhibit a prodigy": [65535, 0], "prize and exhibit a prodigy several": [65535, 0], "and exhibit a prodigy several pupils": [65535, 0], "exhibit a prodigy several pupils had": [65535, 0], "a prodigy several pupils had a": [65535, 0], "prodigy several pupils had a few": [65535, 0], "several pupils had a few yellow": [65535, 0], "pupils had a few yellow tickets": [65535, 0], "had a few yellow tickets but": [65535, 0], "a few yellow tickets but none": [65535, 0], "few yellow tickets but none had": [65535, 0], "yellow tickets but none had enough": [65535, 0], "tickets but none had enough he": [65535, 0], "but none had enough he had": [65535, 0], "none had enough he had been": [65535, 0], "had enough he had been around": [65535, 0], "enough he had been around among": [65535, 0], "he had been around among the": [65535, 0], "had been around among the star": [65535, 0], "been around among the star pupils": [65535, 0], "around among the star pupils inquiring": [65535, 0], "among the star pupils inquiring he": [65535, 0], "the star pupils inquiring he would": [65535, 0], "star pupils inquiring he would have": [65535, 0], "pupils inquiring he would have given": [65535, 0], "inquiring he would have given worlds": [65535, 0], "he would have given worlds now": [65535, 0], "would have given worlds now to": [65535, 0], "have given worlds now to have": [65535, 0], "given worlds now to have that": [65535, 0], "worlds now to have that german": [65535, 0], "now to have that german lad": [65535, 0], "to have that german lad back": [65535, 0], "have that german lad back again": [65535, 0], "that german lad back again with": [65535, 0], "german lad back again with a": [65535, 0], "lad back again with a sound": [65535, 0], "back again with a sound mind": [65535, 0], "again with a sound mind and": [65535, 0], "with a sound mind and now": [65535, 0], "a sound mind and now at": [65535, 0], "sound mind and now at this": [65535, 0], "mind and now at this moment": [65535, 0], "and now at this moment when": [65535, 0], "now at this moment when hope": [65535, 0], "at this moment when hope was": [65535, 0], "this moment when hope was dead": [65535, 0], "moment when hope was dead tom": [65535, 0], "when hope was dead tom sawyer": [65535, 0], "hope was dead tom sawyer came": [65535, 0], "was dead tom sawyer came forward": [65535, 0], "dead tom sawyer came forward with": [65535, 0], "tom sawyer came forward with nine": [65535, 0], "sawyer came forward with nine yellow": [65535, 0], "came forward with nine yellow tickets": [65535, 0], "forward with nine yellow tickets nine": [65535, 0], "with nine yellow tickets nine red": [65535, 0], "nine yellow tickets nine red tickets": [65535, 0], "yellow tickets nine red tickets and": [65535, 0], "tickets nine red tickets and ten": [65535, 0], "nine red tickets and ten blue": [65535, 0], "red tickets and ten blue ones": [65535, 0], "tickets and ten blue ones and": [65535, 0], "and ten blue ones and demanded": [65535, 0], "ten blue ones and demanded a": [65535, 0], "blue ones and demanded a bible": [65535, 0], "ones and demanded a bible this": [65535, 0], "and demanded a bible this was": [65535, 0], "demanded a bible this was a": [65535, 0], "a bible this was a thunderbolt": [65535, 0], "bible this was a thunderbolt out": [65535, 0], "this was a thunderbolt out of": [65535, 0], "was a thunderbolt out of a": [65535, 0], "a thunderbolt out of a clear": [65535, 0], "thunderbolt out of a clear sky": [65535, 0], "out of a clear sky walters": [65535, 0], "of a clear sky walters was": [65535, 0], "a clear sky walters was not": [65535, 0], "clear sky walters was not expecting": [65535, 0], "sky walters was not expecting an": [65535, 0], "walters was not expecting an application": [65535, 0], "was not expecting an application from": [65535, 0], "not expecting an application from this": [65535, 0], "expecting an application from this source": [65535, 0], "an application from this source for": [65535, 0], "application from this source for the": [65535, 0], "from this source for the next": [65535, 0], "this source for the next ten": [65535, 0], "source for the next ten years": [65535, 0], "for the next ten years but": [65535, 0], "the next ten years but there": [65535, 0], "next ten years but there was": [65535, 0], "ten years but there was no": [65535, 0], "years but there was no getting": [65535, 0], "but there was no getting around": [65535, 0], "there was no getting around it": [65535, 0], "was no getting around it here": [65535, 0], "no getting around it here were": [65535, 0], "getting around it here were the": [65535, 0], "around it here were the certified": [65535, 0], "it here were the certified checks": [65535, 0], "here were the certified checks and": [65535, 0], "were the certified checks and they": [65535, 0], "the certified checks and they were": [65535, 0], "certified checks and they were good": [65535, 0], "checks and they were good for": [65535, 0], "and they were good for their": [65535, 0], "they were good for their face": [65535, 0], "were good for their face tom": [65535, 0], "good for their face tom was": [65535, 0], "for their face tom was therefore": [65535, 0], "their face tom was therefore elevated": [65535, 0], "face tom was therefore elevated to": [65535, 0], "tom was therefore elevated to a": [65535, 0], "was therefore elevated to a place": [65535, 0], "therefore elevated to a place with": [65535, 0], "elevated to a place with the": [65535, 0], "to a place with the judge": [65535, 0], "a place with the judge and": [65535, 0], "place with the judge and the": [65535, 0], "with the judge and the other": [65535, 0], "the judge and the other elect": [65535, 0], "judge and the other elect and": [65535, 0], "and the other elect and the": [65535, 0], "the other elect and the great": [65535, 0], "other elect and the great news": [65535, 0], "elect and the great news was": [65535, 0], "and the great news was announced": [65535, 0], "the great news was announced from": [65535, 0], "great news was announced from headquarters": [65535, 0], "news was announced from headquarters it": [65535, 0], "was announced from headquarters it was": [65535, 0], "announced from headquarters it was the": [65535, 0], "from headquarters it was the most": [65535, 0], "headquarters it was the most stunning": [65535, 0], "it was the most stunning surprise": [65535, 0], "was the most stunning surprise of": [65535, 0], "the most stunning surprise of the": [65535, 0], "most stunning surprise of the decade": [65535, 0], "stunning surprise of the decade and": [65535, 0], "surprise of the decade and so": [65535, 0], "of the decade and so profound": [65535, 0], "the decade and so profound was": [65535, 0], "decade and so profound was the": [65535, 0], "and so profound was the sensation": [65535, 0], "so profound was the sensation that": [65535, 0], "profound was the sensation that it": [65535, 0], "was the sensation that it lifted": [65535, 0], "the sensation that it lifted the": [65535, 0], "sensation that it lifted the new": [65535, 0], "that it lifted the new hero": [65535, 0], "it lifted the new hero up": [65535, 0], "lifted the new hero up to": [65535, 0], "the new hero up to the": [65535, 0], "new hero up to the judicial": [65535, 0], "hero up to the judicial one's": [65535, 0], "up to the judicial one's altitude": [65535, 0], "to the judicial one's altitude and": [65535, 0], "the judicial one's altitude and the": [65535, 0], "judicial one's altitude and the school": [65535, 0], "one's altitude and the school had": [65535, 0], "altitude and the school had two": [65535, 0], "and the school had two marvels": [65535, 0], "the school had two marvels to": [65535, 0], "school had two marvels to gaze": [65535, 0], "had two marvels to gaze upon": [65535, 0], "two marvels to gaze upon in": [65535, 0], "marvels to gaze upon in place": [65535, 0], "to gaze upon in place of": [65535, 0], "gaze upon in place of one": [65535, 0], "upon in place of one the": [65535, 0], "in place of one the boys": [65535, 0], "place of one the boys were": [65535, 0], "of one the boys were all": [65535, 0], "one the boys were all eaten": [65535, 0], "the boys were all eaten up": [65535, 0], "boys were all eaten up with": [65535, 0], "were all eaten up with envy": [65535, 0], "all eaten up with envy but": [65535, 0], "eaten up with envy but those": [65535, 0], "up with envy but those that": [65535, 0], "with envy but those that suffered": [65535, 0], "envy but those that suffered the": [65535, 0], "but those that suffered the bitterest": [65535, 0], "those that suffered the bitterest pangs": [65535, 0], "that suffered the bitterest pangs were": [65535, 0], "suffered the bitterest pangs were those": [65535, 0], "the bitterest pangs were those who": [65535, 0], "bitterest pangs were those who perceived": [65535, 0], "pangs were those who perceived too": [65535, 0], "were those who perceived too late": [65535, 0], "those who perceived too late that": [65535, 0], "who perceived too late that they": [65535, 0], "perceived too late that they themselves": [65535, 0], "too late that they themselves had": [65535, 0], "late that they themselves had contributed": [65535, 0], "that they themselves had contributed to": [65535, 0], "they themselves had contributed to this": [65535, 0], "themselves had contributed to this hated": [65535, 0], "had contributed to this hated splendor": [65535, 0], "contributed to this hated splendor by": [65535, 0], "to this hated splendor by trading": [65535, 0], "this hated splendor by trading tickets": [65535, 0], "hated splendor by trading tickets to": [65535, 0], "splendor by trading tickets to tom": [65535, 0], "by trading tickets to tom for": [65535, 0], "trading tickets to tom for the": [65535, 0], "tickets to tom for the wealth": [65535, 0], "to tom for the wealth he": [65535, 0], "tom for the wealth he had": [65535, 0], "for the wealth he had amassed": [65535, 0], "the wealth he had amassed in": [65535, 0], "wealth he had amassed in selling": [65535, 0], "he had amassed in selling whitewashing": [65535, 0], "had amassed in selling whitewashing privileges": [65535, 0], "amassed in selling whitewashing privileges these": [65535, 0], "in selling whitewashing privileges these despised": [65535, 0], "selling whitewashing privileges these despised themselves": [65535, 0], "whitewashing privileges these despised themselves as": [65535, 0], "privileges these despised themselves as being": [65535, 0], "these despised themselves as being the": [65535, 0], "despised themselves as being the dupes": [65535, 0], "themselves as being the dupes of": [65535, 0], "as being the dupes of a": [65535, 0], "being the dupes of a wily": [65535, 0], "the dupes of a wily fraud": [65535, 0], "dupes of a wily fraud a": [65535, 0], "of a wily fraud a guileful": [65535, 0], "a wily fraud a guileful snake": [65535, 0], "wily fraud a guileful snake in": [65535, 0], "fraud a guileful snake in the": [65535, 0], "a guileful snake in the grass": [65535, 0], "guileful snake in the grass the": [65535, 0], "snake in the grass the prize": [65535, 0], "in the grass the prize was": [65535, 0], "the grass the prize was delivered": [65535, 0], "grass the prize was delivered to": [65535, 0], "the prize was delivered to tom": [65535, 0], "prize was delivered to tom with": [65535, 0], "was delivered to tom with as": [65535, 0], "delivered to tom with as much": [65535, 0], "to tom with as much effusion": [65535, 0], "tom with as much effusion as": [65535, 0], "with as much effusion as the": [65535, 0], "as much effusion as the superintendent": [65535, 0], "much effusion as the superintendent could": [65535, 0], "effusion as the superintendent could pump": [65535, 0], "as the superintendent could pump up": [65535, 0], "the superintendent could pump up under": [65535, 0], "superintendent could pump up under the": [65535, 0], "could pump up under the circumstances": [65535, 0], "pump up under the circumstances but": [65535, 0], "up under the circumstances but it": [65535, 0], "under the circumstances but it lacked": [65535, 0], "the circumstances but it lacked somewhat": [65535, 0], "circumstances but it lacked somewhat of": [65535, 0], "but it lacked somewhat of the": [65535, 0], "it lacked somewhat of the true": [65535, 0], "lacked somewhat of the true gush": [65535, 0], "somewhat of the true gush for": [65535, 0], "of the true gush for the": [65535, 0], "the true gush for the poor": [65535, 0], "true gush for the poor fellow's": [65535, 0], "gush for the poor fellow's instinct": [65535, 0], "for the poor fellow's instinct taught": [65535, 0], "the poor fellow's instinct taught him": [65535, 0], "poor fellow's instinct taught him that": [65535, 0], "fellow's instinct taught him that there": [65535, 0], "instinct taught him that there was": [65535, 0], "taught him that there was a": [65535, 0], "him that there was a mystery": [65535, 0], "that there was a mystery here": [65535, 0], "there was a mystery here that": [65535, 0], "was a mystery here that could": [65535, 0], "a mystery here that could not": [65535, 0], "mystery here that could not well": [65535, 0], "here that could not well bear": [65535, 0], "that could not well bear the": [65535, 0], "could not well bear the light": [65535, 0], "not well bear the light perhaps": [65535, 0], "well bear the light perhaps it": [65535, 0], "bear the light perhaps it was": [65535, 0], "the light perhaps it was simply": [65535, 0], "light perhaps it was simply preposterous": [65535, 0], "perhaps it was simply preposterous that": [65535, 0], "it was simply preposterous that this": [65535, 0], "was simply preposterous that this boy": [65535, 0], "simply preposterous that this boy had": [65535, 0], "preposterous that this boy had warehoused": [65535, 0], "that this boy had warehoused two": [65535, 0], "this boy had warehoused two thousand": [65535, 0], "boy had warehoused two thousand sheaves": [65535, 0], "had warehoused two thousand sheaves of": [65535, 0], "warehoused two thousand sheaves of scriptural": [65535, 0], "two thousand sheaves of scriptural wisdom": [65535, 0], "thousand sheaves of scriptural wisdom on": [65535, 0], "sheaves of scriptural wisdom on his": [65535, 0], "of scriptural wisdom on his premises": [65535, 0], "scriptural wisdom on his premises a": [65535, 0], "wisdom on his premises a dozen": [65535, 0], "on his premises a dozen would": [65535, 0], "his premises a dozen would strain": [65535, 0], "premises a dozen would strain his": [65535, 0], "a dozen would strain his capacity": [65535, 0], "dozen would strain his capacity without": [65535, 0], "would strain his capacity without a": [65535, 0], "strain his capacity without a doubt": [65535, 0], "his capacity without a doubt amy": [65535, 0], "capacity without a doubt amy lawrence": [65535, 0], "without a doubt amy lawrence was": [65535, 0], "a doubt amy lawrence was proud": [65535, 0], "doubt amy lawrence was proud and": [65535, 0], "amy lawrence was proud and glad": [65535, 0], "lawrence was proud and glad and": [65535, 0], "was proud and glad and she": [65535, 0], "proud and glad and she tried": [65535, 0], "and glad and she tried to": [65535, 0], "glad and she tried to make": [65535, 0], "and she tried to make tom": [65535, 0], "she tried to make tom see": [65535, 0], "tried to make tom see it": [65535, 0], "to make tom see it in": [65535, 0], "make tom see it in her": [65535, 0], "tom see it in her face": [65535, 0], "see it in her face but": [65535, 0], "it in her face but he": [65535, 0], "in her face but he wouldn't": [65535, 0], "her face but he wouldn't look": [65535, 0], "face but he wouldn't look she": [65535, 0], "but he wouldn't look she wondered": [65535, 0], "he wouldn't look she wondered then": [65535, 0], "wouldn't look she wondered then she": [65535, 0], "look she wondered then she was": [65535, 0], "she wondered then she was just": [65535, 0], "wondered then she was just a": [65535, 0], "then she was just a grain": [65535, 0], "she was just a grain troubled": [65535, 0], "was just a grain troubled next": [65535, 0], "just a grain troubled next a": [65535, 0], "a grain troubled next a dim": [65535, 0], "grain troubled next a dim suspicion": [65535, 0], "troubled next a dim suspicion came": [65535, 0], "next a dim suspicion came and": [65535, 0], "a dim suspicion came and went": [65535, 0], "dim suspicion came and went came": [65535, 0], "suspicion came and went came again": [65535, 0], "came and went came again she": [65535, 0], "and went came again she watched": [65535, 0], "went came again she watched a": [65535, 0], "came again she watched a furtive": [65535, 0], "again she watched a furtive glance": [65535, 0], "she watched a furtive glance told": [65535, 0], "watched a furtive glance told her": [65535, 0], "a furtive glance told her worlds": [65535, 0], "furtive glance told her worlds and": [65535, 0], "glance told her worlds and then": [65535, 0], "told her worlds and then her": [65535, 0], "her worlds and then her heart": [65535, 0], "worlds and then her heart broke": [65535, 0], "and then her heart broke and": [65535, 0], "then her heart broke and she": [65535, 0], "her heart broke and she was": [65535, 0], "heart broke and she was jealous": [65535, 0], "broke and she was jealous and": [65535, 0], "and she was jealous and angry": [65535, 0], "she was jealous and angry and": [65535, 0], "was jealous and angry and the": [65535, 0], "jealous and angry and the tears": [65535, 0], "and angry and the tears came": [65535, 0], "angry and the tears came and": [65535, 0], "and the tears came and she": [65535, 0], "the tears came and she hated": [65535, 0], "tears came and she hated everybody": [65535, 0], "came and she hated everybody tom": [65535, 0], "and she hated everybody tom most": [65535, 0], "she hated everybody tom most of": [65535, 0], "hated everybody tom most of all": [65535, 0], "everybody tom most of all she": [65535, 0], "tom most of all she thought": [65535, 0], "most of all she thought tom": [65535, 0], "of all she thought tom was": [65535, 0], "all she thought tom was introduced": [65535, 0], "she thought tom was introduced to": [65535, 0], "thought tom was introduced to the": [65535, 0], "tom was introduced to the judge": [65535, 0], "was introduced to the judge but": [65535, 0], "introduced to the judge but his": [65535, 0], "to the judge but his tongue": [65535, 0], "the judge but his tongue was": [65535, 0], "judge but his tongue was tied": [65535, 0], "but his tongue was tied his": [65535, 0], "his tongue was tied his breath": [65535, 0], "tongue was tied his breath would": [65535, 0], "was tied his breath would hardly": [65535, 0], "tied his breath would hardly come": [65535, 0], "his breath would hardly come his": [65535, 0], "breath would hardly come his heart": [65535, 0], "would hardly come his heart quaked": [65535, 0], "hardly come his heart quaked partly": [65535, 0], "come his heart quaked partly because": [65535, 0], "his heart quaked partly because of": [65535, 0], "heart quaked partly because of the": [65535, 0], "quaked partly because of the awful": [65535, 0], "partly because of the awful greatness": [65535, 0], "because of the awful greatness of": [65535, 0], "of the awful greatness of the": [65535, 0], "the awful greatness of the man": [65535, 0], "awful greatness of the man but": [65535, 0], "greatness of the man but mainly": [65535, 0], "of the man but mainly because": [65535, 0], "the man but mainly because he": [65535, 0], "man but mainly because he was": [65535, 0], "but mainly because he was her": [65535, 0], "mainly because he was her parent": [65535, 0], "because he was her parent he": [65535, 0], "he was her parent he would": [65535, 0], "was her parent he would have": [65535, 0], "her parent he would have liked": [65535, 0], "parent he would have liked to": [65535, 0], "he would have liked to fall": [65535, 0], "would have liked to fall down": [65535, 0], "have liked to fall down and": [65535, 0], "liked to fall down and worship": [65535, 0], "to fall down and worship him": [65535, 0], "fall down and worship him if": [65535, 0], "down and worship him if it": [65535, 0], "and worship him if it were": [65535, 0], "worship him if it were in": [65535, 0], "him if it were in the": [65535, 0], "if it were in the dark": [65535, 0], "it were in the dark the": [65535, 0], "were in the dark the judge": [65535, 0], "in the dark the judge put": [65535, 0], "the dark the judge put his": [65535, 0], "dark the judge put his hand": [65535, 0], "the judge put his hand on": [65535, 0], "judge put his hand on tom's": [65535, 0], "put his hand on tom's head": [65535, 0], "his hand on tom's head and": [65535, 0], "hand on tom's head and called": [65535, 0], "on tom's head and called him": [65535, 0], "tom's head and called him a": [65535, 0], "head and called him a fine": [65535, 0], "and called him a fine little": [65535, 0], "called him a fine little man": [65535, 0], "him a fine little man and": [65535, 0], "a fine little man and asked": [65535, 0], "fine little man and asked him": [65535, 0], "little man and asked him what": [65535, 0], "man and asked him what his": [65535, 0], "and asked him what his name": [65535, 0], "asked him what his name was": [65535, 0], "him what his name was the": [65535, 0], "what his name was the boy": [65535, 0], "his name was the boy stammered": [65535, 0], "name was the boy stammered gasped": [65535, 0], "was the boy stammered gasped and": [65535, 0], "the boy stammered gasped and got": [65535, 0], "boy stammered gasped and got it": [65535, 0], "stammered gasped and got it out": [65535, 0], "gasped and got it out tom": [65535, 0], "and got it out tom oh": [65535, 0], "got it out tom oh no": [65535, 0], "it out tom oh no not": [65535, 0], "out tom oh no not tom": [65535, 0], "tom oh no not tom it": [65535, 0], "oh no not tom it is": [65535, 0], "no not tom it is thomas": [65535, 0], "not tom it is thomas ah": [65535, 0], "tom it is thomas ah that's": [65535, 0], "it is thomas ah that's it": [65535, 0], "is thomas ah that's it i": [65535, 0], "thomas ah that's it i thought": [65535, 0], "ah that's it i thought there": [65535, 0], "that's it i thought there was": [65535, 0], "it i thought there was more": [65535, 0], "i thought there was more to": [65535, 0], "thought there was more to it": [65535, 0], "there was more to it maybe": [65535, 0], "was more to it maybe that's": [65535, 0], "more to it maybe that's very": [65535, 0], "to it maybe that's very well": [65535, 0], "it maybe that's very well but": [65535, 0], "maybe that's very well but you've": [65535, 0], "that's very well but you've another": [65535, 0], "very well but you've another one": [65535, 0], "well but you've another one i": [65535, 0], "but you've another one i daresay": [65535, 0], "you've another one i daresay and": [65535, 0], "another one i daresay and you'll": [65535, 0], "one i daresay and you'll tell": [65535, 0], "i daresay and you'll tell it": [65535, 0], "daresay and you'll tell it to": [65535, 0], "and you'll tell it to me": [65535, 0], "you'll tell it to me won't": [65535, 0], "tell it to me won't you": [65535, 0], "it to me won't you tell": [65535, 0], "to me won't you tell the": [65535, 0], "me won't you tell the gentleman": [65535, 0], "won't you tell the gentleman your": [65535, 0], "you tell the gentleman your other": [65535, 0], "tell the gentleman your other name": [65535, 0], "the gentleman your other name thomas": [65535, 0], "gentleman your other name thomas said": [65535, 0], "your other name thomas said walters": [65535, 0], "other name thomas said walters and": [65535, 0], "name thomas said walters and say": [65535, 0], "thomas said walters and say sir": [65535, 0], "said walters and say sir you": [65535, 0], "walters and say sir you mustn't": [65535, 0], "and say sir you mustn't forget": [65535, 0], "say sir you mustn't forget your": [65535, 0], "sir you mustn't forget your manners": [65535, 0], "you mustn't forget your manners thomas": [65535, 0], "mustn't forget your manners thomas sawyer": [65535, 0], "forget your manners thomas sawyer sir": [65535, 0], "your manners thomas sawyer sir that's": [65535, 0], "manners thomas sawyer sir that's it": [65535, 0], "thomas sawyer sir that's it that's": [65535, 0], "sawyer sir that's it that's a": [65535, 0], "sir that's it that's a good": [65535, 0], "that's it that's a good boy": [65535, 0], "it that's a good boy fine": [65535, 0], "that's a good boy fine boy": [65535, 0], "a good boy fine boy fine": [65535, 0], "good boy fine boy fine manly": [65535, 0], "boy fine boy fine manly little": [65535, 0], "fine boy fine manly little fellow": [65535, 0], "boy fine manly little fellow two": [65535, 0], "fine manly little fellow two thousand": [65535, 0], "manly little fellow two thousand verses": [65535, 0], "little fellow two thousand verses is": [65535, 0], "fellow two thousand verses is a": [65535, 0], "two thousand verses is a great": [65535, 0], "thousand verses is a great many": [65535, 0], "verses is a great many very": [65535, 0], "is a great many very very": [65535, 0], "a great many very very great": [65535, 0], "great many very very great many": [65535, 0], "many very very great many and": [65535, 0], "very very great many and you": [65535, 0], "very great many and you never": [65535, 0], "great many and you never can": [65535, 0], "many and you never can be": [65535, 0], "and you never can be sorry": [65535, 0], "you never can be sorry for": [65535, 0], "never can be sorry for the": [65535, 0], "can be sorry for the trouble": [65535, 0], "be sorry for the trouble you": [65535, 0], "sorry for the trouble you took": [65535, 0], "for the trouble you took to": [65535, 0], "the trouble you took to learn": [65535, 0], "trouble you took to learn them": [65535, 0], "you took to learn them for": [65535, 0], "took to learn them for knowledge": [65535, 0], "to learn them for knowledge is": [65535, 0], "learn them for knowledge is worth": [65535, 0], "them for knowledge is worth more": [65535, 0], "for knowledge is worth more than": [65535, 0], "knowledge is worth more than anything": [65535, 0], "is worth more than anything there": [65535, 0], "worth more than anything there is": [65535, 0], "more than anything there is in": [65535, 0], "than anything there is in the": [65535, 0], "anything there is in the world": [65535, 0], "there is in the world it's": [65535, 0], "is in the world it's what": [65535, 0], "in the world it's what makes": [65535, 0], "the world it's what makes great": [65535, 0], "world it's what makes great men": [65535, 0], "it's what makes great men and": [65535, 0], "what makes great men and good": [65535, 0], "makes great men and good men": [65535, 0], "great men and good men you'll": [65535, 0], "men and good men you'll be": [65535, 0], "and good men you'll be a": [65535, 0], "good men you'll be a great": [65535, 0], "men you'll be a great man": [65535, 0], "you'll be a great man and": [65535, 0], "be a great man and a": [65535, 0], "a great man and a good": [65535, 0], "great man and a good man": [65535, 0], "man and a good man yourself": [65535, 0], "and a good man yourself some": [65535, 0], "a good man yourself some day": [65535, 0], "good man yourself some day thomas": [65535, 0], "man yourself some day thomas and": [65535, 0], "yourself some day thomas and then": [65535, 0], "some day thomas and then you'll": [65535, 0], "day thomas and then you'll look": [65535, 0], "thomas and then you'll look back": [65535, 0], "and then you'll look back and": [65535, 0], "then you'll look back and say": [65535, 0], "you'll look back and say it's": [65535, 0], "look back and say it's all": [65535, 0], "back and say it's all owing": [65535, 0], "and say it's all owing to": [65535, 0], "say it's all owing to the": [65535, 0], "it's all owing to the precious": [65535, 0], "all owing to the precious sunday": [65535, 0], "owing to the precious sunday school": [65535, 0], "to the precious sunday school privileges": [65535, 0], "the precious sunday school privileges of": [65535, 0], "precious sunday school privileges of my": [65535, 0], "sunday school privileges of my boyhood": [65535, 0], "school privileges of my boyhood it's": [65535, 0], "privileges of my boyhood it's all": [65535, 0], "of my boyhood it's all owing": [65535, 0], "my boyhood it's all owing to": [65535, 0], "boyhood it's all owing to my": [65535, 0], "it's all owing to my dear": [65535, 0], "all owing to my dear teachers": [65535, 0], "owing to my dear teachers that": [65535, 0], "to my dear teachers that taught": [65535, 0], "my dear teachers that taught me": [65535, 0], "dear teachers that taught me to": [65535, 0], "teachers that taught me to learn": [65535, 0], "that taught me to learn it's": [65535, 0], "taught me to learn it's all": [65535, 0], "me to learn it's all owing": [65535, 0], "to learn it's all owing to": [65535, 0], "learn it's all owing to the": [65535, 0], "it's all owing to the good": [65535, 0], "all owing to the good superintendent": [65535, 0], "owing to the good superintendent who": [65535, 0], "to the good superintendent who encouraged": [65535, 0], "the good superintendent who encouraged me": [65535, 0], "good superintendent who encouraged me and": [65535, 0], "superintendent who encouraged me and watched": [65535, 0], "who encouraged me and watched over": [65535, 0], "encouraged me and watched over me": [65535, 0], "me and watched over me and": [65535, 0], "and watched over me and gave": [65535, 0], "watched over me and gave me": [65535, 0], "over me and gave me a": [65535, 0], "me and gave me a beautiful": [65535, 0], "and gave me a beautiful bible": [65535, 0], "gave me a beautiful bible a": [65535, 0], "me a beautiful bible a splendid": [65535, 0], "a beautiful bible a splendid elegant": [65535, 0], "beautiful bible a splendid elegant bible": [65535, 0], "bible a splendid elegant bible to": [65535, 0], "a splendid elegant bible to keep": [65535, 0], "splendid elegant bible to keep and": [65535, 0], "elegant bible to keep and have": [65535, 0], "bible to keep and have it": [65535, 0], "to keep and have it all": [65535, 0], "keep and have it all for": [65535, 0], "and have it all for my": [65535, 0], "have it all for my own": [65535, 0], "it all for my own always": [65535, 0], "all for my own always it's": [65535, 0], "for my own always it's all": [65535, 0], "my own always it's all owing": [65535, 0], "own always it's all owing to": [65535, 0], "always it's all owing to right": [65535, 0], "it's all owing to right bringing": [65535, 0], "all owing to right bringing up": [65535, 0], "owing to right bringing up that": [65535, 0], "to right bringing up that is": [65535, 0], "right bringing up that is what": [65535, 0], "bringing up that is what you": [65535, 0], "up that is what you will": [65535, 0], "that is what you will say": [65535, 0], "is what you will say thomas": [65535, 0], "what you will say thomas and": [65535, 0], "you will say thomas and you": [65535, 0], "will say thomas and you wouldn't": [65535, 0], "say thomas and you wouldn't take": [65535, 0], "thomas and you wouldn't take any": [65535, 0], "and you wouldn't take any money": [65535, 0], "you wouldn't take any money for": [65535, 0], "wouldn't take any money for those": [65535, 0], "take any money for those two": [65535, 0], "any money for those two thousand": [65535, 0], "money for those two thousand verses": [65535, 0], "for those two thousand verses no": [65535, 0], "those two thousand verses no indeed": [65535, 0], "two thousand verses no indeed you": [65535, 0], "thousand verses no indeed you wouldn't": [65535, 0], "verses no indeed you wouldn't and": [65535, 0], "no indeed you wouldn't and now": [65535, 0], "indeed you wouldn't and now you": [65535, 0], "you wouldn't and now you wouldn't": [65535, 0], "wouldn't and now you wouldn't mind": [65535, 0], "and now you wouldn't mind telling": [65535, 0], "now you wouldn't mind telling me": [65535, 0], "you wouldn't mind telling me and": [65535, 0], "wouldn't mind telling me and this": [65535, 0], "mind telling me and this lady": [65535, 0], "telling me and this lady some": [65535, 0], "me and this lady some of": [65535, 0], "and this lady some of the": [65535, 0], "this lady some of the things": [65535, 0], "lady some of the things you've": [65535, 0], "some of the things you've learned": [65535, 0], "of the things you've learned no": [65535, 0], "the things you've learned no i": [65535, 0], "things you've learned no i know": [65535, 0], "you've learned no i know you": [65535, 0], "learned no i know you wouldn't": [65535, 0], "no i know you wouldn't for": [65535, 0], "i know you wouldn't for we": [65535, 0], "know you wouldn't for we are": [65535, 0], "you wouldn't for we are proud": [65535, 0], "wouldn't for we are proud of": [65535, 0], "for we are proud of little": [65535, 0], "we are proud of little boys": [65535, 0], "are proud of little boys that": [65535, 0], "proud of little boys that learn": [65535, 0], "of little boys that learn now": [65535, 0], "little boys that learn now no": [65535, 0], "boys that learn now no doubt": [65535, 0], "that learn now no doubt you": [65535, 0], "learn now no doubt you know": [65535, 0], "now no doubt you know the": [65535, 0], "no doubt you know the names": [65535, 0], "doubt you know the names of": [65535, 0], "you know the names of all": [65535, 0], "know the names of all the": [65535, 0], "the names of all the twelve": [65535, 0], "names of all the twelve disciples": [65535, 0], "of all the twelve disciples won't": [65535, 0], "all the twelve disciples won't you": [65535, 0], "the twelve disciples won't you tell": [65535, 0], "twelve disciples won't you tell us": [65535, 0], "disciples won't you tell us the": [65535, 0], "won't you tell us the names": [65535, 0], "you tell us the names of": [65535, 0], "tell us the names of the": [65535, 0], "us the names of the first": [65535, 0], "the names of the first two": [65535, 0], "names of the first two that": [65535, 0], "of the first two that were": [65535, 0], "the first two that were appointed": [65535, 0], "first two that were appointed tom": [65535, 0], "two that were appointed tom was": [65535, 0], "that were appointed tom was tugging": [65535, 0], "were appointed tom was tugging at": [65535, 0], "appointed tom was tugging at a": [65535, 0], "tom was tugging at a button": [65535, 0], "was tugging at a button hole": [65535, 0], "tugging at a button hole and": [65535, 0], "at a button hole and looking": [65535, 0], "a button hole and looking sheepish": [65535, 0], "button hole and looking sheepish he": [65535, 0], "hole and looking sheepish he blushed": [65535, 0], "and looking sheepish he blushed now": [65535, 0], "looking sheepish he blushed now and": [65535, 0], "sheepish he blushed now and his": [65535, 0], "he blushed now and his eyes": [65535, 0], "blushed now and his eyes fell": [65535, 0], "now and his eyes fell mr": [65535, 0], "and his eyes fell mr walters'": [65535, 0], "his eyes fell mr walters' heart": [65535, 0], "eyes fell mr walters' heart sank": [65535, 0], "fell mr walters' heart sank within": [65535, 0], "mr walters' heart sank within him": [65535, 0], "walters' heart sank within him he": [65535, 0], "heart sank within him he said": [65535, 0], "sank within him he said to": [65535, 0], "within him he said to himself": [65535, 0], "him he said to himself it": [65535, 0], "he said to himself it is": [65535, 0], "said to himself it is not": [65535, 0], "to himself it is not possible": [65535, 0], "himself it is not possible that": [65535, 0], "it is not possible that the": [65535, 0], "is not possible that the boy": [65535, 0], "not possible that the boy can": [65535, 0], "possible that the boy can answer": [65535, 0], "that the boy can answer the": [65535, 0], "the boy can answer the simplest": [65535, 0], "boy can answer the simplest question": [65535, 0], "can answer the simplest question why": [65535, 0], "answer the simplest question why did": [65535, 0], "the simplest question why did the": [65535, 0], "simplest question why did the judge": [65535, 0], "question why did the judge ask": [65535, 0], "why did the judge ask him": [65535, 0], "did the judge ask him yet": [65535, 0], "the judge ask him yet he": [65535, 0], "judge ask him yet he felt": [65535, 0], "ask him yet he felt obliged": [65535, 0], "him yet he felt obliged to": [65535, 0], "yet he felt obliged to speak": [65535, 0], "he felt obliged to speak up": [65535, 0], "felt obliged to speak up and": [65535, 0], "obliged to speak up and say": [65535, 0], "to speak up and say answer": [65535, 0], "speak up and say answer the": [65535, 0], "up and say answer the gentleman": [65535, 0], "and say answer the gentleman thomas": [65535, 0], "say answer the gentleman thomas don't": [65535, 0], "answer the gentleman thomas don't be": [65535, 0], "the gentleman thomas don't be afraid": [65535, 0], "gentleman thomas don't be afraid tom": [65535, 0], "thomas don't be afraid tom still": [65535, 0], "don't be afraid tom still hung": [65535, 0], "be afraid tom still hung fire": [65535, 0], "afraid tom still hung fire now": [65535, 0], "tom still hung fire now i": [65535, 0], "still hung fire now i know": [65535, 0], "hung fire now i know you'll": [65535, 0], "fire now i know you'll tell": [65535, 0], "now i know you'll tell me": [65535, 0], "i know you'll tell me said": [65535, 0], "know you'll tell me said the": [65535, 0], "you'll tell me said the lady": [65535, 0], "tell me said the lady the": [65535, 0], "me said the lady the names": [65535, 0], "said the lady the names of": [65535, 0], "the lady the names of the": [65535, 0], "lady the names of the first": [65535, 0], "names of the first two disciples": [65535, 0], "of the first two disciples were": [65535, 0], "the first two disciples were david": [65535, 0], "first two disciples were david and": [65535, 0], "two disciples were david and goliath": [65535, 0], "disciples were david and goliath let": [65535, 0], "were david and goliath let us": [65535, 0], "david and goliath let us draw": [65535, 0], "and goliath let us draw the": [65535, 0], "goliath let us draw the curtain": [65535, 0], "let us draw the curtain of": [65535, 0], "us draw the curtain of charity": [65535, 0], "draw the curtain of charity over": [65535, 0], "the curtain of charity over the": [65535, 0], "curtain of charity over the rest": [65535, 0], "of charity over the rest of": [65535, 0], "charity over the rest of the": [65535, 0], "over the rest of the scene": [65535, 0], "the sun rose upon a tranquil world": [65535, 0], "sun rose upon a tranquil world and": [65535, 0], "rose upon a tranquil world and beamed": [65535, 0], "upon a tranquil world and beamed down": [65535, 0], "a tranquil world and beamed down upon": [65535, 0], "tranquil world and beamed down upon the": [65535, 0], "world and beamed down upon the peaceful": [65535, 0], "and beamed down upon the peaceful village": [65535, 0], "beamed down upon the peaceful village like": [65535, 0], "down upon the peaceful village like a": [65535, 0], "upon the peaceful village like a benediction": [65535, 0], "the peaceful village like a benediction breakfast": [65535, 0], "peaceful village like a benediction breakfast over": [65535, 0], "village like a benediction breakfast over aunt": [65535, 0], "like a benediction breakfast over aunt polly": [65535, 0], "a benediction breakfast over aunt polly had": [65535, 0], "benediction breakfast over aunt polly had family": [65535, 0], "breakfast over aunt polly had family worship": [65535, 0], "over aunt polly had family worship it": [65535, 0], "aunt polly had family worship it began": [65535, 0], "polly had family worship it began with": [65535, 0], "had family worship it began with a": [65535, 0], "family worship it began with a prayer": [65535, 0], "worship it began with a prayer built": [65535, 0], "it began with a prayer built from": [65535, 0], "began with a prayer built from the": [65535, 0], "with a prayer built from the ground": [65535, 0], "a prayer built from the ground up": [65535, 0], "prayer built from the ground up of": [65535, 0], "built from the ground up of solid": [65535, 0], "from the ground up of solid courses": [65535, 0], "the ground up of solid courses of": [65535, 0], "ground up of solid courses of scriptural": [65535, 0], "up of solid courses of scriptural quotations": [65535, 0], "of solid courses of scriptural quotations welded": [65535, 0], "solid courses of scriptural quotations welded together": [65535, 0], "courses of scriptural quotations welded together with": [65535, 0], "of scriptural quotations welded together with a": [65535, 0], "scriptural quotations welded together with a thin": [65535, 0], "quotations welded together with a thin mortar": [65535, 0], "welded together with a thin mortar of": [65535, 0], "together with a thin mortar of originality": [65535, 0], "with a thin mortar of originality and": [65535, 0], "a thin mortar of originality and from": [65535, 0], "thin mortar of originality and from the": [65535, 0], "mortar of originality and from the summit": [65535, 0], "of originality and from the summit of": [65535, 0], "originality and from the summit of this": [65535, 0], "and from the summit of this she": [65535, 0], "from the summit of this she delivered": [65535, 0], "the summit of this she delivered a": [65535, 0], "summit of this she delivered a grim": [65535, 0], "of this she delivered a grim chapter": [65535, 0], "this she delivered a grim chapter of": [65535, 0], "she delivered a grim chapter of the": [65535, 0], "delivered a grim chapter of the mosaic": [65535, 0], "a grim chapter of the mosaic law": [65535, 0], "grim chapter of the mosaic law as": [65535, 0], "chapter of the mosaic law as from": [65535, 0], "of the mosaic law as from sinai": [65535, 0], "the mosaic law as from sinai then": [65535, 0], "mosaic law as from sinai then tom": [65535, 0], "law as from sinai then tom girded": [65535, 0], "as from sinai then tom girded up": [65535, 0], "from sinai then tom girded up his": [65535, 0], "sinai then tom girded up his loins": [65535, 0], "then tom girded up his loins so": [65535, 0], "tom girded up his loins so to": [65535, 0], "girded up his loins so to speak": [65535, 0], "up his loins so to speak and": [65535, 0], "his loins so to speak and went": [65535, 0], "loins so to speak and went to": [65535, 0], "so to speak and went to work": [65535, 0], "to speak and went to work to": [65535, 0], "speak and went to work to get": [65535, 0], "and went to work to get his": [65535, 0], "went to work to get his verses": [65535, 0], "to work to get his verses sid": [65535, 0], "work to get his verses sid had": [65535, 0], "to get his verses sid had learned": [65535, 0], "get his verses sid had learned his": [65535, 0], "his verses sid had learned his lesson": [65535, 0], "verses sid had learned his lesson days": [65535, 0], "sid had learned his lesson days before": [65535, 0], "had learned his lesson days before tom": [65535, 0], "learned his lesson days before tom bent": [65535, 0], "his lesson days before tom bent all": [65535, 0], "lesson days before tom bent all his": [65535, 0], "days before tom bent all his energies": [65535, 0], "before tom bent all his energies to": [65535, 0], "tom bent all his energies to the": [65535, 0], "bent all his energies to the memorizing": [65535, 0], "all his energies to the memorizing of": [65535, 0], "his energies to the memorizing of five": [65535, 0], "energies to the memorizing of five verses": [65535, 0], "to the memorizing of five verses and": [65535, 0], "the memorizing of five verses and he": [65535, 0], "memorizing of five verses and he chose": [65535, 0], "of five verses and he chose part": [65535, 0], "five verses and he chose part of": [65535, 0], "verses and he chose part of the": [65535, 0], "and he chose part of the sermon": [65535, 0], "he chose part of the sermon on": [65535, 0], "chose part of the sermon on the": [65535, 0], "part of the sermon on the mount": [65535, 0], "of the sermon on the mount because": [65535, 0], "the sermon on the mount because he": [65535, 0], "sermon on the mount because he could": [65535, 0], "on the mount because he could find": [65535, 0], "the mount because he could find no": [65535, 0], "mount because he could find no verses": [65535, 0], "because he could find no verses that": [65535, 0], "he could find no verses that were": [65535, 0], "could find no verses that were shorter": [65535, 0], "find no verses that were shorter at": [65535, 0], "no verses that were shorter at the": [65535, 0], "verses that were shorter at the end": [65535, 0], "that were shorter at the end of": [65535, 0], "were shorter at the end of half": [65535, 0], "shorter at the end of half an": [65535, 0], "at the end of half an hour": [65535, 0], "the end of half an hour tom": [65535, 0], "end of half an hour tom had": [65535, 0], "of half an hour tom had a": [65535, 0], "half an hour tom had a vague": [65535, 0], "an hour tom had a vague general": [65535, 0], "hour tom had a vague general idea": [65535, 0], "tom had a vague general idea of": [65535, 0], "had a vague general idea of his": [65535, 0], "a vague general idea of his lesson": [65535, 0], "vague general idea of his lesson but": [65535, 0], "general idea of his lesson but no": [65535, 0], "idea of his lesson but no more": [65535, 0], "of his lesson but no more for": [65535, 0], "his lesson but no more for his": [65535, 0], "lesson but no more for his mind": [65535, 0], "but no more for his mind was": [65535, 0], "no more for his mind was traversing": [65535, 0], "more for his mind was traversing the": [65535, 0], "for his mind was traversing the whole": [65535, 0], "his mind was traversing the whole field": [65535, 0], "mind was traversing the whole field of": [65535, 0], "was traversing the whole field of human": [65535, 0], "traversing the whole field of human thought": [65535, 0], "the whole field of human thought and": [65535, 0], "whole field of human thought and his": [65535, 0], "field of human thought and his hands": [65535, 0], "of human thought and his hands were": [65535, 0], "human thought and his hands were busy": [65535, 0], "thought and his hands were busy with": [65535, 0], "and his hands were busy with distracting": [65535, 0], "his hands were busy with distracting recreations": [65535, 0], "hands were busy with distracting recreations mary": [65535, 0], "were busy with distracting recreations mary took": [65535, 0], "busy with distracting recreations mary took his": [65535, 0], "with distracting recreations mary took his book": [65535, 0], "distracting recreations mary took his book to": [65535, 0], "recreations mary took his book to hear": [65535, 0], "mary took his book to hear him": [65535, 0], "took his book to hear him recite": [65535, 0], "his book to hear him recite and": [65535, 0], "book to hear him recite and he": [65535, 0], "to hear him recite and he tried": [65535, 0], "hear him recite and he tried to": [65535, 0], "him recite and he tried to find": [65535, 0], "recite and he tried to find his": [65535, 0], "and he tried to find his way": [65535, 0], "he tried to find his way through": [65535, 0], "tried to find his way through the": [65535, 0], "to find his way through the fog": [65535, 0], "find his way through the fog blessed": [65535, 0], "his way through the fog blessed are": [65535, 0], "way through the fog blessed are the": [65535, 0], "through the fog blessed are the a": [65535, 0], "the fog blessed are the a a": [65535, 0], "fog blessed are the a a poor": [65535, 0], "blessed are the a a poor yes": [65535, 0], "are the a a poor yes poor": [65535, 0], "the a a poor yes poor blessed": [65535, 0], "a a poor yes poor blessed are": [65535, 0], "a poor yes poor blessed are the": [65535, 0], "poor yes poor blessed are the poor": [65535, 0], "yes poor blessed are the poor a": [65535, 0], "poor blessed are the poor a a": [65535, 0], "blessed are the poor a a in": [65535, 0], "are the poor a a in spirit": [65535, 0], "the poor a a in spirit in": [65535, 0], "poor a a in spirit in spirit": [65535, 0], "a a in spirit in spirit blessed": [65535, 0], "a in spirit in spirit blessed are": [65535, 0], "in spirit in spirit blessed are the": [65535, 0], "spirit in spirit blessed are the poor": [65535, 0], "in spirit blessed are the poor in": [65535, 0], "spirit blessed are the poor in spirit": [65535, 0], "blessed are the poor in spirit for": [65535, 0], "are the poor in spirit for they": [65535, 0], "the poor in spirit for they they": [65535, 0], "poor in spirit for they they theirs": [65535, 0], "in spirit for they they theirs for": [65535, 0], "spirit for they they theirs for theirs": [65535, 0], "for they they theirs for theirs blessed": [65535, 0], "they they theirs for theirs blessed are": [65535, 0], "they theirs for theirs blessed are the": [65535, 0], "theirs for theirs blessed are the poor": [65535, 0], "for theirs blessed are the poor in": [65535, 0], "theirs blessed are the poor in spirit": [65535, 0], "are the poor in spirit for theirs": [65535, 0], "the poor in spirit for theirs is": [65535, 0], "poor in spirit for theirs is the": [65535, 0], "in spirit for theirs is the kingdom": [65535, 0], "spirit for theirs is the kingdom of": [65535, 0], "for theirs is the kingdom of heaven": [65535, 0], "theirs is the kingdom of heaven blessed": [65535, 0], "is the kingdom of heaven blessed are": [65535, 0], "the kingdom of heaven blessed are they": [65535, 0], "kingdom of heaven blessed are they that": [65535, 0], "of heaven blessed are they that mourn": [65535, 0], "heaven blessed are they that mourn for": [65535, 0], "blessed are they that mourn for they": [65535, 0], "are they that mourn for they they": [65535, 0], "they that mourn for they they sh": [65535, 0], "that mourn for they they sh for": [65535, 0], "mourn for they they sh for they": [65535, 0], "for they they sh for they a": [65535, 0], "they they sh for they a s": [65535, 0], "they sh for they a s h": [65535, 0], "sh for they a s h a": [65535, 0], "for they a s h a for": [65535, 0], "they a s h a for they": [65535, 0], "a s h a for they s": [65535, 0], "s h a for they s h": [65535, 0], "h a for they s h oh": [65535, 0], "a for they s h oh i": [65535, 0], "for they s h oh i don't": [65535, 0], "they s h oh i don't know": [65535, 0], "s h oh i don't know what": [65535, 0], "h oh i don't know what it": [65535, 0], "oh i don't know what it is": [65535, 0], "i don't know what it is shall": [65535, 0], "don't know what it is shall oh": [65535, 0], "know what it is shall oh shall": [65535, 0], "what it is shall oh shall for": [65535, 0], "it is shall oh shall for they": [65535, 0], "is shall oh shall for they shall": [65535, 0], "shall oh shall for they shall for": [65535, 0], "oh shall for they shall for they": [65535, 0], "shall for they shall for they shall": [65535, 0], "for they shall for they shall a": [65535, 0], "they shall for they shall a a": [65535, 0], "shall for they shall a a shall": [65535, 0], "for they shall a a shall mourn": [65535, 0], "they shall a a shall mourn a": [65535, 0], "shall a a shall mourn a a": [65535, 0], "a a shall mourn a a blessed": [65535, 0], "a shall mourn a a blessed are": [65535, 0], "shall mourn a a blessed are they": [65535, 0], "mourn a a blessed are they that": [65535, 0], "a a blessed are they that shall": [65535, 0], "a blessed are they that shall they": [65535, 0], "blessed are they that shall they that": [65535, 0], "are they that shall they that a": [65535, 0], "they that shall they that a they": [65535, 0], "that shall they that a they that": [65535, 0], "shall they that a they that shall": [65535, 0], "they that a they that shall mourn": [65535, 0], "that a they that shall mourn for": [65535, 0], "a they that shall mourn for they": [65535, 0], "they that shall mourn for they shall": [65535, 0], "that shall mourn for they shall a": [65535, 0], "shall mourn for they shall a shall": [65535, 0], "mourn for they shall a shall what": [65535, 0], "for they shall a shall what why": [65535, 0], "they shall a shall what why don't": [65535, 0], "shall a shall what why don't you": [65535, 0], "a shall what why don't you tell": [65535, 0], "shall what why don't you tell me": [65535, 0], "what why don't you tell me mary": [65535, 0], "why don't you tell me mary what": [65535, 0], "don't you tell me mary what do": [65535, 0], "you tell me mary what do you": [65535, 0], "tell me mary what do you want": [65535, 0], "me mary what do you want to": [65535, 0], "mary what do you want to be": [65535, 0], "what do you want to be so": [65535, 0], "do you want to be so mean": [65535, 0], "you want to be so mean for": [65535, 0], "want to be so mean for oh": [65535, 0], "to be so mean for oh tom": [65535, 0], "be so mean for oh tom you": [65535, 0], "so mean for oh tom you poor": [65535, 0], "mean for oh tom you poor thick": [65535, 0], "for oh tom you poor thick headed": [65535, 0], "oh tom you poor thick headed thing": [65535, 0], "tom you poor thick headed thing i'm": [65535, 0], "you poor thick headed thing i'm not": [65535, 0], "poor thick headed thing i'm not teasing": [65535, 0], "thick headed thing i'm not teasing you": [65535, 0], "headed thing i'm not teasing you i": [65535, 0], "thing i'm not teasing you i wouldn't": [65535, 0], "i'm not teasing you i wouldn't do": [65535, 0], "not teasing you i wouldn't do that": [65535, 0], "teasing you i wouldn't do that you": [65535, 0], "you i wouldn't do that you must": [65535, 0], "i wouldn't do that you must go": [65535, 0], "wouldn't do that you must go and": [65535, 0], "do that you must go and learn": [65535, 0], "that you must go and learn it": [65535, 0], "you must go and learn it again": [65535, 0], "must go and learn it again don't": [65535, 0], "go and learn it again don't you": [65535, 0], "and learn it again don't you be": [65535, 0], "learn it again don't you be discouraged": [65535, 0], "it again don't you be discouraged tom": [65535, 0], "again don't you be discouraged tom you'll": [65535, 0], "don't you be discouraged tom you'll manage": [65535, 0], "you be discouraged tom you'll manage it": [65535, 0], "be discouraged tom you'll manage it and": [65535, 0], "discouraged tom you'll manage it and if": [65535, 0], "tom you'll manage it and if you": [65535, 0], "you'll manage it and if you do": [65535, 0], "manage it and if you do i'll": [65535, 0], "it and if you do i'll give": [65535, 0], "and if you do i'll give you": [65535, 0], "if you do i'll give you something": [65535, 0], "you do i'll give you something ever": [65535, 0], "do i'll give you something ever so": [65535, 0], "i'll give you something ever so nice": [65535, 0], "give you something ever so nice there": [65535, 0], "you something ever so nice there now": [65535, 0], "something ever so nice there now that's": [65535, 0], "ever so nice there now that's a": [65535, 0], "so nice there now that's a good": [65535, 0], "nice there now that's a good boy": [65535, 0], "there now that's a good boy all": [65535, 0], "now that's a good boy all right": [65535, 0], "that's a good boy all right what": [65535, 0], "a good boy all right what is": [65535, 0], "good boy all right what is it": [65535, 0], "boy all right what is it mary": [65535, 0], "all right what is it mary tell": [65535, 0], "right what is it mary tell me": [65535, 0], "what is it mary tell me what": [65535, 0], "is it mary tell me what it": [65535, 0], "it mary tell me what it is": [65535, 0], "mary tell me what it is never": [65535, 0], "tell me what it is never you": [65535, 0], "me what it is never you mind": [65535, 0], "what it is never you mind tom": [65535, 0], "it is never you mind tom you": [65535, 0], "is never you mind tom you know": [65535, 0], "never you mind tom you know if": [65535, 0], "you mind tom you know if i": [65535, 0], "mind tom you know if i say": [65535, 0], "tom you know if i say it's": [65535, 0], "you know if i say it's nice": [65535, 0], "know if i say it's nice it": [65535, 0], "if i say it's nice it is": [65535, 0], "i say it's nice it is nice": [65535, 0], "say it's nice it is nice you": [65535, 0], "it's nice it is nice you bet": [65535, 0], "nice it is nice you bet you": [65535, 0], "it is nice you bet you that's": [65535, 0], "is nice you bet you that's so": [65535, 0], "nice you bet you that's so mary": [65535, 0], "you bet you that's so mary all": [65535, 0], "bet you that's so mary all right": [65535, 0], "you that's so mary all right i'll": [65535, 0], "that's so mary all right i'll tackle": [65535, 0], "so mary all right i'll tackle it": [65535, 0], "mary all right i'll tackle it again": [65535, 0], "all right i'll tackle it again and": [65535, 0], "right i'll tackle it again and he": [65535, 0], "i'll tackle it again and he did": [65535, 0], "tackle it again and he did tackle": [65535, 0], "it again and he did tackle it": [65535, 0], "again and he did tackle it again": [65535, 0], "and he did tackle it again and": [65535, 0], "he did tackle it again and under": [65535, 0], "did tackle it again and under the": [65535, 0], "tackle it again and under the double": [65535, 0], "it again and under the double pressure": [65535, 0], "again and under the double pressure of": [65535, 0], "and under the double pressure of curiosity": [65535, 0], "under the double pressure of curiosity and": [65535, 0], "the double pressure of curiosity and prospective": [65535, 0], "double pressure of curiosity and prospective gain": [65535, 0], "pressure of curiosity and prospective gain he": [65535, 0], "of curiosity and prospective gain he did": [65535, 0], "curiosity and prospective gain he did it": [65535, 0], "and prospective gain he did it with": [65535, 0], "prospective gain he did it with such": [65535, 0], "gain he did it with such spirit": [65535, 0], "he did it with such spirit that": [65535, 0], "did it with such spirit that he": [65535, 0], "it with such spirit that he accomplished": [65535, 0], "with such spirit that he accomplished a": [65535, 0], "such spirit that he accomplished a shining": [65535, 0], "spirit that he accomplished a shining success": [65535, 0], "that he accomplished a shining success mary": [65535, 0], "he accomplished a shining success mary gave": [65535, 0], "accomplished a shining success mary gave him": [65535, 0], "a shining success mary gave him a": [65535, 0], "shining success mary gave him a brand": [65535, 0], "success mary gave him a brand new": [65535, 0], "mary gave him a brand new barlow": [65535, 0], "gave him a brand new barlow knife": [65535, 0], "him a brand new barlow knife worth": [65535, 0], "a brand new barlow knife worth twelve": [65535, 0], "brand new barlow knife worth twelve and": [65535, 0], "new barlow knife worth twelve and a": [65535, 0], "barlow knife worth twelve and a half": [65535, 0], "knife worth twelve and a half cents": [65535, 0], "worth twelve and a half cents and": [65535, 0], "twelve and a half cents and the": [65535, 0], "and a half cents and the convulsion": [65535, 0], "a half cents and the convulsion of": [65535, 0], "half cents and the convulsion of delight": [65535, 0], "cents and the convulsion of delight that": [65535, 0], "and the convulsion of delight that swept": [65535, 0], "the convulsion of delight that swept his": [65535, 0], "convulsion of delight that swept his system": [65535, 0], "of delight that swept his system shook": [65535, 0], "delight that swept his system shook him": [65535, 0], "that swept his system shook him to": [65535, 0], "swept his system shook him to his": [65535, 0], "his system shook him to his foundations": [65535, 0], "system shook him to his foundations true": [65535, 0], "shook him to his foundations true the": [65535, 0], "him to his foundations true the knife": [65535, 0], "to his foundations true the knife would": [65535, 0], "his foundations true the knife would not": [65535, 0], "foundations true the knife would not cut": [65535, 0], "true the knife would not cut anything": [65535, 0], "the knife would not cut anything but": [65535, 0], "knife would not cut anything but it": [65535, 0], "would not cut anything but it was": [65535, 0], "not cut anything but it was a": [65535, 0], "cut anything but it was a sure": [65535, 0], "anything but it was a sure enough": [65535, 0], "but it was a sure enough barlow": [65535, 0], "it was a sure enough barlow and": [65535, 0], "was a sure enough barlow and there": [65535, 0], "a sure enough barlow and there was": [65535, 0], "sure enough barlow and there was inconceivable": [65535, 0], "enough barlow and there was inconceivable grandeur": [65535, 0], "barlow and there was inconceivable grandeur in": [65535, 0], "and there was inconceivable grandeur in that": [65535, 0], "there was inconceivable grandeur in that though": [65535, 0], "was inconceivable grandeur in that though where": [65535, 0], "inconceivable grandeur in that though where the": [65535, 0], "grandeur in that though where the western": [65535, 0], "in that though where the western boys": [65535, 0], "that though where the western boys ever": [65535, 0], "though where the western boys ever got": [65535, 0], "where the western boys ever got the": [65535, 0], "the western boys ever got the idea": [65535, 0], "western boys ever got the idea that": [65535, 0], "boys ever got the idea that such": [65535, 0], "ever got the idea that such a": [65535, 0], "got the idea that such a weapon": [65535, 0], "the idea that such a weapon could": [65535, 0], "idea that such a weapon could possibly": [65535, 0], "that such a weapon could possibly be": [65535, 0], "such a weapon could possibly be counterfeited": [65535, 0], "a weapon could possibly be counterfeited to": [65535, 0], "weapon could possibly be counterfeited to its": [65535, 0], "could possibly be counterfeited to its injury": [65535, 0], "possibly be counterfeited to its injury is": [65535, 0], "be counterfeited to its injury is an": [65535, 0], "counterfeited to its injury is an imposing": [65535, 0], "to its injury is an imposing mystery": [65535, 0], "its injury is an imposing mystery and": [65535, 0], "injury is an imposing mystery and will": [65535, 0], "is an imposing mystery and will always": [65535, 0], "an imposing mystery and will always remain": [65535, 0], "imposing mystery and will always remain so": [65535, 0], "mystery and will always remain so perhaps": [65535, 0], "and will always remain so perhaps tom": [65535, 0], "will always remain so perhaps tom contrived": [65535, 0], "always remain so perhaps tom contrived to": [65535, 0], "remain so perhaps tom contrived to scarify": [65535, 0], "so perhaps tom contrived to scarify the": [65535, 0], "perhaps tom contrived to scarify the cupboard": [65535, 0], "tom contrived to scarify the cupboard with": [65535, 0], "contrived to scarify the cupboard with it": [65535, 0], "to scarify the cupboard with it and": [65535, 0], "scarify the cupboard with it and was": [65535, 0], "the cupboard with it and was arranging": [65535, 0], "cupboard with it and was arranging to": [65535, 0], "with it and was arranging to begin": [65535, 0], "it and was arranging to begin on": [65535, 0], "and was arranging to begin on the": [65535, 0], "was arranging to begin on the bureau": [65535, 0], "arranging to begin on the bureau when": [65535, 0], "to begin on the bureau when he": [65535, 0], "begin on the bureau when he was": [65535, 0], "on the bureau when he was called": [65535, 0], "the bureau when he was called off": [65535, 0], "bureau when he was called off to": [65535, 0], "when he was called off to dress": [65535, 0], "he was called off to dress for": [65535, 0], "was called off to dress for sunday": [65535, 0], "called off to dress for sunday school": [65535, 0], "off to dress for sunday school mary": [65535, 0], "to dress for sunday school mary gave": [65535, 0], "dress for sunday school mary gave him": [65535, 0], "for sunday school mary gave him a": [65535, 0], "sunday school mary gave him a tin": [65535, 0], "school mary gave him a tin basin": [65535, 0], "mary gave him a tin basin of": [65535, 0], "gave him a tin basin of water": [65535, 0], "him a tin basin of water and": [65535, 0], "a tin basin of water and a": [65535, 0], "tin basin of water and a piece": [65535, 0], "basin of water and a piece of": [65535, 0], "of water and a piece of soap": [65535, 0], "water and a piece of soap and": [65535, 0], "and a piece of soap and he": [65535, 0], "a piece of soap and he went": [65535, 0], "piece of soap and he went outside": [65535, 0], "of soap and he went outside the": [65535, 0], "soap and he went outside the door": [65535, 0], "and he went outside the door and": [65535, 0], "he went outside the door and set": [65535, 0], "went outside the door and set the": [65535, 0], "outside the door and set the basin": [65535, 0], "the door and set the basin on": [65535, 0], "door and set the basin on a": [65535, 0], "and set the basin on a little": [65535, 0], "set the basin on a little bench": [65535, 0], "the basin on a little bench there": [65535, 0], "basin on a little bench there then": [65535, 0], "on a little bench there then he": [65535, 0], "a little bench there then he dipped": [65535, 0], "little bench there then he dipped the": [65535, 0], "bench there then he dipped the soap": [65535, 0], "there then he dipped the soap in": [65535, 0], "then he dipped the soap in the": [65535, 0], "he dipped the soap in the water": [65535, 0], "dipped the soap in the water and": [65535, 0], "the soap in the water and laid": [65535, 0], "soap in the water and laid it": [65535, 0], "in the water and laid it down": [65535, 0], "the water and laid it down turned": [65535, 0], "water and laid it down turned up": [65535, 0], "and laid it down turned up his": [65535, 0], "laid it down turned up his sleeves": [65535, 0], "it down turned up his sleeves poured": [65535, 0], "down turned up his sleeves poured out": [65535, 0], "turned up his sleeves poured out the": [65535, 0], "up his sleeves poured out the water": [65535, 0], "his sleeves poured out the water on": [65535, 0], "sleeves poured out the water on the": [65535, 0], "poured out the water on the ground": [65535, 0], "out the water on the ground gently": [65535, 0], "the water on the ground gently and": [65535, 0], "water on the ground gently and then": [65535, 0], "on the ground gently and then entered": [65535, 0], "the ground gently and then entered the": [65535, 0], "ground gently and then entered the kitchen": [65535, 0], "gently and then entered the kitchen and": [65535, 0], "and then entered the kitchen and began": [65535, 0], "then entered the kitchen and began to": [65535, 0], "entered the kitchen and began to wipe": [65535, 0], "the kitchen and began to wipe his": [65535, 0], "kitchen and began to wipe his face": [65535, 0], "and began to wipe his face diligently": [65535, 0], "began to wipe his face diligently on": [65535, 0], "to wipe his face diligently on the": [65535, 0], "wipe his face diligently on the towel": [65535, 0], "his face diligently on the towel behind": [65535, 0], "face diligently on the towel behind the": [65535, 0], "diligently on the towel behind the door": [65535, 0], "on the towel behind the door but": [65535, 0], "the towel behind the door but mary": [65535, 0], "towel behind the door but mary removed": [65535, 0], "behind the door but mary removed the": [65535, 0], "the door but mary removed the towel": [65535, 0], "door but mary removed the towel and": [65535, 0], "but mary removed the towel and said": [65535, 0], "mary removed the towel and said now": [65535, 0], "removed the towel and said now ain't": [65535, 0], "the towel and said now ain't you": [65535, 0], "towel and said now ain't you ashamed": [65535, 0], "and said now ain't you ashamed tom": [65535, 0], "said now ain't you ashamed tom you": [65535, 0], "now ain't you ashamed tom you mustn't": [65535, 0], "ain't you ashamed tom you mustn't be": [65535, 0], "you ashamed tom you mustn't be so": [65535, 0], "ashamed tom you mustn't be so bad": [65535, 0], "tom you mustn't be so bad water": [65535, 0], "you mustn't be so bad water won't": [65535, 0], "mustn't be so bad water won't hurt": [65535, 0], "be so bad water won't hurt you": [65535, 0], "so bad water won't hurt you tom": [65535, 0], "bad water won't hurt you tom was": [65535, 0], "water won't hurt you tom was a": [65535, 0], "won't hurt you tom was a trifle": [65535, 0], "hurt you tom was a trifle disconcerted": [65535, 0], "you tom was a trifle disconcerted the": [65535, 0], "tom was a trifle disconcerted the basin": [65535, 0], "was a trifle disconcerted the basin was": [65535, 0], "a trifle disconcerted the basin was refilled": [65535, 0], "trifle disconcerted the basin was refilled and": [65535, 0], "disconcerted the basin was refilled and this": [65535, 0], "the basin was refilled and this time": [65535, 0], "basin was refilled and this time he": [65535, 0], "was refilled and this time he stood": [65535, 0], "refilled and this time he stood over": [65535, 0], "and this time he stood over it": [65535, 0], "this time he stood over it a": [65535, 0], "time he stood over it a little": [65535, 0], "he stood over it a little while": [65535, 0], "stood over it a little while gathering": [65535, 0], "over it a little while gathering resolution": [65535, 0], "it a little while gathering resolution took": [65535, 0], "a little while gathering resolution took in": [65535, 0], "little while gathering resolution took in a": [65535, 0], "while gathering resolution took in a big": [65535, 0], "gathering resolution took in a big breath": [65535, 0], "resolution took in a big breath and": [65535, 0], "took in a big breath and began": [65535, 0], "in a big breath and began when": [65535, 0], "a big breath and began when he": [65535, 0], "big breath and began when he entered": [65535, 0], "breath and began when he entered the": [65535, 0], "and began when he entered the kitchen": [65535, 0], "began when he entered the kitchen presently": [65535, 0], "when he entered the kitchen presently with": [65535, 0], "he entered the kitchen presently with both": [65535, 0], "entered the kitchen presently with both eyes": [65535, 0], "the kitchen presently with both eyes shut": [65535, 0], "kitchen presently with both eyes shut and": [65535, 0], "presently with both eyes shut and groping": [65535, 0], "with both eyes shut and groping for": [65535, 0], "both eyes shut and groping for the": [65535, 0], "eyes shut and groping for the towel": [65535, 0], "shut and groping for the towel with": [65535, 0], "and groping for the towel with his": [65535, 0], "groping for the towel with his hands": [65535, 0], "for the towel with his hands an": [65535, 0], "the towel with his hands an honorable": [65535, 0], "towel with his hands an honorable testimony": [65535, 0], "with his hands an honorable testimony of": [65535, 0], "his hands an honorable testimony of suds": [65535, 0], "hands an honorable testimony of suds and": [65535, 0], "an honorable testimony of suds and water": [65535, 0], "honorable testimony of suds and water was": [65535, 0], "testimony of suds and water was dripping": [65535, 0], "of suds and water was dripping from": [65535, 0], "suds and water was dripping from his": [65535, 0], "and water was dripping from his face": [65535, 0], "water was dripping from his face but": [65535, 0], "was dripping from his face but when": [65535, 0], "dripping from his face but when he": [65535, 0], "from his face but when he emerged": [65535, 0], "his face but when he emerged from": [65535, 0], "face but when he emerged from the": [65535, 0], "but when he emerged from the towel": [65535, 0], "when he emerged from the towel he": [65535, 0], "he emerged from the towel he was": [65535, 0], "emerged from the towel he was not": [65535, 0], "from the towel he was not yet": [65535, 0], "the towel he was not yet satisfactory": [65535, 0], "towel he was not yet satisfactory for": [65535, 0], "he was not yet satisfactory for the": [65535, 0], "was not yet satisfactory for the clean": [65535, 0], "not yet satisfactory for the clean territory": [65535, 0], "yet satisfactory for the clean territory stopped": [65535, 0], "satisfactory for the clean territory stopped short": [65535, 0], "for the clean territory stopped short at": [65535, 0], "the clean territory stopped short at his": [65535, 0], "clean territory stopped short at his chin": [65535, 0], "territory stopped short at his chin and": [65535, 0], "stopped short at his chin and his": [65535, 0], "short at his chin and his jaws": [65535, 0], "at his chin and his jaws like": [65535, 0], "his chin and his jaws like a": [65535, 0], "chin and his jaws like a mask": [65535, 0], "and his jaws like a mask below": [65535, 0], "his jaws like a mask below and": [65535, 0], "jaws like a mask below and beyond": [65535, 0], "like a mask below and beyond this": [65535, 0], "a mask below and beyond this line": [65535, 0], "mask below and beyond this line there": [65535, 0], "below and beyond this line there was": [65535, 0], "and beyond this line there was a": [65535, 0], "beyond this line there was a dark": [65535, 0], "this line there was a dark expanse": [65535, 0], "line there was a dark expanse of": [65535, 0], "there was a dark expanse of unirrigated": [65535, 0], "was a dark expanse of unirrigated soil": [65535, 0], "a dark expanse of unirrigated soil that": [65535, 0], "dark expanse of unirrigated soil that spread": [65535, 0], "expanse of unirrigated soil that spread downward": [65535, 0], "of unirrigated soil that spread downward in": [65535, 0], "unirrigated soil that spread downward in front": [65535, 0], "soil that spread downward in front and": [65535, 0], "that spread downward in front and backward": [65535, 0], "spread downward in front and backward around": [65535, 0], "downward in front and backward around his": [65535, 0], "in front and backward around his neck": [65535, 0], "front and backward around his neck mary": [65535, 0], "and backward around his neck mary took": [65535, 0], "backward around his neck mary took him": [65535, 0], "around his neck mary took him in": [65535, 0], "his neck mary took him in hand": [65535, 0], "neck mary took him in hand and": [65535, 0], "mary took him in hand and when": [65535, 0], "took him in hand and when she": [65535, 0], "him in hand and when she was": [65535, 0], "in hand and when she was done": [65535, 0], "hand and when she was done with": [65535, 0], "and when she was done with him": [65535, 0], "when she was done with him he": [65535, 0], "she was done with him he was": [65535, 0], "was done with him he was a": [65535, 0], "done with him he was a man": [65535, 0], "with him he was a man and": [65535, 0], "him he was a man and a": [65535, 0], "he was a man and a brother": [65535, 0], "was a man and a brother without": [65535, 0], "a man and a brother without distinction": [65535, 0], "man and a brother without distinction of": [65535, 0], "and a brother without distinction of color": [65535, 0], "a brother without distinction of color and": [65535, 0], "brother without distinction of color and his": [65535, 0], "without distinction of color and his saturated": [65535, 0], "distinction of color and his saturated hair": [65535, 0], "of color and his saturated hair was": [65535, 0], "color and his saturated hair was neatly": [65535, 0], "and his saturated hair was neatly brushed": [65535, 0], "his saturated hair was neatly brushed and": [65535, 0], "saturated hair was neatly brushed and its": [65535, 0], "hair was neatly brushed and its short": [65535, 0], "was neatly brushed and its short curls": [65535, 0], "neatly brushed and its short curls wrought": [65535, 0], "brushed and its short curls wrought into": [65535, 0], "and its short curls wrought into a": [65535, 0], "its short curls wrought into a dainty": [65535, 0], "short curls wrought into a dainty and": [65535, 0], "curls wrought into a dainty and symmetrical": [65535, 0], "wrought into a dainty and symmetrical general": [65535, 0], "into a dainty and symmetrical general effect": [65535, 0], "a dainty and symmetrical general effect he": [65535, 0], "dainty and symmetrical general effect he privately": [65535, 0], "and symmetrical general effect he privately smoothed": [65535, 0], "symmetrical general effect he privately smoothed out": [65535, 0], "general effect he privately smoothed out the": [65535, 0], "effect he privately smoothed out the curls": [65535, 0], "he privately smoothed out the curls with": [65535, 0], "privately smoothed out the curls with labor": [65535, 0], "smoothed out the curls with labor and": [65535, 0], "out the curls with labor and difficulty": [65535, 0], "the curls with labor and difficulty and": [65535, 0], "curls with labor and difficulty and plastered": [65535, 0], "with labor and difficulty and plastered his": [65535, 0], "labor and difficulty and plastered his hair": [65535, 0], "and difficulty and plastered his hair close": [65535, 0], "difficulty and plastered his hair close down": [65535, 0], "and plastered his hair close down to": [65535, 0], "plastered his hair close down to his": [65535, 0], "his hair close down to his head": [65535, 0], "hair close down to his head for": [65535, 0], "close down to his head for he": [65535, 0], "down to his head for he held": [65535, 0], "to his head for he held curls": [65535, 0], "his head for he held curls to": [65535, 0], "head for he held curls to be": [65535, 0], "for he held curls to be effeminate": [65535, 0], "he held curls to be effeminate and": [65535, 0], "held curls to be effeminate and his": [65535, 0], "curls to be effeminate and his own": [65535, 0], "to be effeminate and his own filled": [65535, 0], "be effeminate and his own filled his": [65535, 0], "effeminate and his own filled his life": [65535, 0], "and his own filled his life with": [65535, 0], "his own filled his life with bitterness": [65535, 0], "own filled his life with bitterness then": [65535, 0], "filled his life with bitterness then mary": [65535, 0], "his life with bitterness then mary got": [65535, 0], "life with bitterness then mary got out": [65535, 0], "with bitterness then mary got out a": [65535, 0], "bitterness then mary got out a suit": [65535, 0], "then mary got out a suit of": [65535, 0], "mary got out a suit of his": [65535, 0], "got out a suit of his clothing": [65535, 0], "out a suit of his clothing that": [65535, 0], "a suit of his clothing that had": [65535, 0], "suit of his clothing that had been": [65535, 0], "of his clothing that had been used": [65535, 0], "his clothing that had been used only": [65535, 0], "clothing that had been used only on": [65535, 0], "that had been used only on sundays": [65535, 0], "had been used only on sundays during": [65535, 0], "been used only on sundays during two": [65535, 0], "used only on sundays during two years": [65535, 0], "only on sundays during two years they": [65535, 0], "on sundays during two years they were": [65535, 0], "sundays during two years they were simply": [65535, 0], "during two years they were simply called": [65535, 0], "two years they were simply called his": [65535, 0], "years they were simply called his other": [65535, 0], "they were simply called his other clothes": [65535, 0], "were simply called his other clothes and": [65535, 0], "simply called his other clothes and so": [65535, 0], "called his other clothes and so by": [65535, 0], "his other clothes and so by that": [65535, 0], "other clothes and so by that we": [65535, 0], "clothes and so by that we know": [65535, 0], "and so by that we know the": [65535, 0], "so by that we know the size": [65535, 0], "by that we know the size of": [65535, 0], "that we know the size of his": [65535, 0], "we know the size of his wardrobe": [65535, 0], "know the size of his wardrobe the": [65535, 0], "the size of his wardrobe the girl": [65535, 0], "size of his wardrobe the girl put": [65535, 0], "of his wardrobe the girl put him": [65535, 0], "his wardrobe the girl put him to": [65535, 0], "wardrobe the girl put him to rights": [65535, 0], "the girl put him to rights after": [65535, 0], "girl put him to rights after he": [65535, 0], "put him to rights after he had": [65535, 0], "him to rights after he had dressed": [65535, 0], "to rights after he had dressed himself": [65535, 0], "rights after he had dressed himself she": [65535, 0], "after he had dressed himself she buttoned": [65535, 0], "he had dressed himself she buttoned his": [65535, 0], "had dressed himself she buttoned his neat": [65535, 0], "dressed himself she buttoned his neat roundabout": [65535, 0], "himself she buttoned his neat roundabout up": [65535, 0], "she buttoned his neat roundabout up to": [65535, 0], "buttoned his neat roundabout up to his": [65535, 0], "his neat roundabout up to his chin": [65535, 0], "neat roundabout up to his chin turned": [65535, 0], "roundabout up to his chin turned his": [65535, 0], "up to his chin turned his vast": [65535, 0], "to his chin turned his vast shirt": [65535, 0], "his chin turned his vast shirt collar": [65535, 0], "chin turned his vast shirt collar down": [65535, 0], "turned his vast shirt collar down over": [65535, 0], "his vast shirt collar down over his": [65535, 0], "vast shirt collar down over his shoulders": [65535, 0], "shirt collar down over his shoulders brushed": [65535, 0], "collar down over his shoulders brushed him": [65535, 0], "down over his shoulders brushed him off": [65535, 0], "over his shoulders brushed him off and": [65535, 0], "his shoulders brushed him off and crowned": [65535, 0], "shoulders brushed him off and crowned him": [65535, 0], "brushed him off and crowned him with": [65535, 0], "him off and crowned him with his": [65535, 0], "off and crowned him with his speckled": [65535, 0], "and crowned him with his speckled straw": [65535, 0], "crowned him with his speckled straw hat": [65535, 0], "him with his speckled straw hat he": [65535, 0], "with his speckled straw hat he now": [65535, 0], "his speckled straw hat he now looked": [65535, 0], "speckled straw hat he now looked exceedingly": [65535, 0], "straw hat he now looked exceedingly improved": [65535, 0], "hat he now looked exceedingly improved and": [65535, 0], "he now looked exceedingly improved and uncomfortable": [65535, 0], "now looked exceedingly improved and uncomfortable he": [65535, 0], "looked exceedingly improved and uncomfortable he was": [65535, 0], "exceedingly improved and uncomfortable he was fully": [65535, 0], "improved and uncomfortable he was fully as": [65535, 0], "and uncomfortable he was fully as uncomfortable": [65535, 0], "uncomfortable he was fully as uncomfortable as": [65535, 0], "he was fully as uncomfortable as he": [65535, 0], "was fully as uncomfortable as he looked": [65535, 0], "fully as uncomfortable as he looked for": [65535, 0], "as uncomfortable as he looked for there": [65535, 0], "uncomfortable as he looked for there was": [65535, 0], "as he looked for there was a": [65535, 0], "he looked for there was a restraint": [65535, 0], "looked for there was a restraint about": [65535, 0], "for there was a restraint about whole": [65535, 0], "there was a restraint about whole clothes": [65535, 0], "was a restraint about whole clothes and": [65535, 0], "a restraint about whole clothes and cleanliness": [65535, 0], "restraint about whole clothes and cleanliness that": [65535, 0], "about whole clothes and cleanliness that galled": [65535, 0], "whole clothes and cleanliness that galled him": [65535, 0], "clothes and cleanliness that galled him he": [65535, 0], "and cleanliness that galled him he hoped": [65535, 0], "cleanliness that galled him he hoped that": [65535, 0], "that galled him he hoped that mary": [65535, 0], "galled him he hoped that mary would": [65535, 0], "him he hoped that mary would forget": [65535, 0], "he hoped that mary would forget his": [65535, 0], "hoped that mary would forget his shoes": [65535, 0], "that mary would forget his shoes but": [65535, 0], "mary would forget his shoes but the": [65535, 0], "would forget his shoes but the hope": [65535, 0], "forget his shoes but the hope was": [65535, 0], "his shoes but the hope was blighted": [65535, 0], "shoes but the hope was blighted she": [65535, 0], "but the hope was blighted she coated": [65535, 0], "the hope was blighted she coated them": [65535, 0], "hope was blighted she coated them thoroughly": [65535, 0], "was blighted she coated them thoroughly with": [65535, 0], "blighted she coated them thoroughly with tallow": [65535, 0], "she coated them thoroughly with tallow as": [65535, 0], "coated them thoroughly with tallow as was": [65535, 0], "them thoroughly with tallow as was the": [65535, 0], "thoroughly with tallow as was the custom": [65535, 0], "with tallow as was the custom and": [65535, 0], "tallow as was the custom and brought": [65535, 0], "as was the custom and brought them": [65535, 0], "was the custom and brought them out": [65535, 0], "the custom and brought them out he": [65535, 0], "custom and brought them out he lost": [65535, 0], "and brought them out he lost his": [65535, 0], "brought them out he lost his temper": [65535, 0], "them out he lost his temper and": [65535, 0], "out he lost his temper and said": [65535, 0], "he lost his temper and said he": [65535, 0], "lost his temper and said he was": [65535, 0], "his temper and said he was always": [65535, 0], "temper and said he was always being": [65535, 0], "and said he was always being made": [65535, 0], "said he was always being made to": [65535, 0], "he was always being made to do": [65535, 0], "was always being made to do everything": [65535, 0], "always being made to do everything he": [65535, 0], "being made to do everything he didn't": [65535, 0], "made to do everything he didn't want": [65535, 0], "to do everything he didn't want to": [65535, 0], "do everything he didn't want to do": [65535, 0], "everything he didn't want to do but": [65535, 0], "he didn't want to do but mary": [65535, 0], "didn't want to do but mary said": [65535, 0], "want to do but mary said persuasively": [65535, 0], "to do but mary said persuasively please": [65535, 0], "do but mary said persuasively please tom": [65535, 0], "but mary said persuasively please tom that's": [65535, 0], "mary said persuasively please tom that's a": [65535, 0], "said persuasively please tom that's a good": [65535, 0], "persuasively please tom that's a good boy": [65535, 0], "please tom that's a good boy so": [65535, 0], "tom that's a good boy so he": [65535, 0], "that's a good boy so he got": [65535, 0], "a good boy so he got into": [65535, 0], "good boy so he got into the": [65535, 0], "boy so he got into the shoes": [65535, 0], "so he got into the shoes snarling": [65535, 0], "he got into the shoes snarling mary": [65535, 0], "got into the shoes snarling mary was": [65535, 0], "into the shoes snarling mary was soon": [65535, 0], "the shoes snarling mary was soon ready": [65535, 0], "shoes snarling mary was soon ready and": [65535, 0], "snarling mary was soon ready and the": [65535, 0], "mary was soon ready and the three": [65535, 0], "was soon ready and the three children": [65535, 0], "soon ready and the three children set": [65535, 0], "ready and the three children set out": [65535, 0], "and the three children set out for": [65535, 0], "the three children set out for sunday": [65535, 0], "three children set out for sunday school": [65535, 0], "children set out for sunday school a": [65535, 0], "set out for sunday school a place": [65535, 0], "out for sunday school a place that": [65535, 0], "for sunday school a place that tom": [65535, 0], "sunday school a place that tom hated": [65535, 0], "school a place that tom hated with": [65535, 0], "a place that tom hated with his": [65535, 0], "place that tom hated with his whole": [65535, 0], "that tom hated with his whole heart": [65535, 0], "tom hated with his whole heart but": [65535, 0], "hated with his whole heart but sid": [65535, 0], "with his whole heart but sid and": [65535, 0], "his whole heart but sid and mary": [65535, 0], "whole heart but sid and mary were": [65535, 0], "heart but sid and mary were fond": [65535, 0], "but sid and mary were fond of": [65535, 0], "sid and mary were fond of it": [65535, 0], "and mary were fond of it sabbath": [65535, 0], "mary were fond of it sabbath school": [65535, 0], "were fond of it sabbath school hours": [65535, 0], "fond of it sabbath school hours were": [65535, 0], "of it sabbath school hours were from": [65535, 0], "it sabbath school hours were from nine": [65535, 0], "sabbath school hours were from nine to": [65535, 0], "school hours were from nine to half": [65535, 0], "hours were from nine to half past": [65535, 0], "were from nine to half past ten": [65535, 0], "from nine to half past ten and": [65535, 0], "nine to half past ten and then": [65535, 0], "to half past ten and then church": [65535, 0], "half past ten and then church service": [65535, 0], "past ten and then church service two": [65535, 0], "ten and then church service two of": [65535, 0], "and then church service two of the": [65535, 0], "then church service two of the children": [65535, 0], "church service two of the children always": [65535, 0], "service two of the children always remained": [65535, 0], "two of the children always remained for": [65535, 0], "of the children always remained for the": [65535, 0], "the children always remained for the sermon": [65535, 0], "children always remained for the sermon voluntarily": [65535, 0], "always remained for the sermon voluntarily and": [65535, 0], "remained for the sermon voluntarily and the": [65535, 0], "for the sermon voluntarily and the other": [65535, 0], "the sermon voluntarily and the other always": [65535, 0], "sermon voluntarily and the other always remained": [65535, 0], "voluntarily and the other always remained too": [65535, 0], "and the other always remained too for": [65535, 0], "the other always remained too for stronger": [65535, 0], "other always remained too for stronger reasons": [65535, 0], "always remained too for stronger reasons the": [65535, 0], "remained too for stronger reasons the church's": [65535, 0], "too for stronger reasons the church's high": [65535, 0], "for stronger reasons the church's high backed": [65535, 0], "stronger reasons the church's high backed uncushioned": [65535, 0], "reasons the church's high backed uncushioned pews": [65535, 0], "the church's high backed uncushioned pews would": [65535, 0], "church's high backed uncushioned pews would seat": [65535, 0], "high backed uncushioned pews would seat about": [65535, 0], "backed uncushioned pews would seat about three": [65535, 0], "uncushioned pews would seat about three hundred": [65535, 0], "pews would seat about three hundred persons": [65535, 0], "would seat about three hundred persons the": [65535, 0], "seat about three hundred persons the edifice": [65535, 0], "about three hundred persons the edifice was": [65535, 0], "three hundred persons the edifice was but": [65535, 0], "hundred persons the edifice was but a": [65535, 0], "persons the edifice was but a small": [65535, 0], "the edifice was but a small plain": [65535, 0], "edifice was but a small plain affair": [65535, 0], "was but a small plain affair with": [65535, 0], "but a small plain affair with a": [65535, 0], "a small plain affair with a sort": [65535, 0], "small plain affair with a sort of": [65535, 0], "plain affair with a sort of pine": [65535, 0], "affair with a sort of pine board": [65535, 0], "with a sort of pine board tree": [65535, 0], "a sort of pine board tree box": [65535, 0], "sort of pine board tree box on": [65535, 0], "of pine board tree box on top": [65535, 0], "pine board tree box on top of": [65535, 0], "board tree box on top of it": [65535, 0], "tree box on top of it for": [65535, 0], "box on top of it for a": [65535, 0], "on top of it for a steeple": [65535, 0], "top of it for a steeple at": [65535, 0], "of it for a steeple at the": [65535, 0], "it for a steeple at the door": [65535, 0], "for a steeple at the door tom": [65535, 0], "a steeple at the door tom dropped": [65535, 0], "steeple at the door tom dropped back": [65535, 0], "at the door tom dropped back a": [65535, 0], "the door tom dropped back a step": [65535, 0], "door tom dropped back a step and": [65535, 0], "tom dropped back a step and accosted": [65535, 0], "dropped back a step and accosted a": [65535, 0], "back a step and accosted a sunday": [65535, 0], "a step and accosted a sunday dressed": [65535, 0], "step and accosted a sunday dressed comrade": [65535, 0], "and accosted a sunday dressed comrade say": [65535, 0], "accosted a sunday dressed comrade say billy": [65535, 0], "a sunday dressed comrade say billy got": [65535, 0], "sunday dressed comrade say billy got a": [65535, 0], "dressed comrade say billy got a yaller": [65535, 0], "comrade say billy got a yaller ticket": [65535, 0], "say billy got a yaller ticket yes": [65535, 0], "billy got a yaller ticket yes what'll": [65535, 0], "got a yaller ticket yes what'll you": [65535, 0], "a yaller ticket yes what'll you take": [65535, 0], "yaller ticket yes what'll you take for": [65535, 0], "ticket yes what'll you take for her": [65535, 0], "yes what'll you take for her what'll": [65535, 0], "what'll you take for her what'll you": [65535, 0], "you take for her what'll you give": [65535, 0], "take for her what'll you give piece": [65535, 0], "for her what'll you give piece of": [65535, 0], "her what'll you give piece of lickrish": [65535, 0], "what'll you give piece of lickrish and": [65535, 0], "you give piece of lickrish and a": [65535, 0], "give piece of lickrish and a fish": [65535, 0], "piece of lickrish and a fish hook": [65535, 0], "of lickrish and a fish hook less": [65535, 0], "lickrish and a fish hook less see": [65535, 0], "and a fish hook less see 'em": [65535, 0], "a fish hook less see 'em tom": [65535, 0], "fish hook less see 'em tom exhibited": [65535, 0], "hook less see 'em tom exhibited they": [65535, 0], "less see 'em tom exhibited they were": [65535, 0], "see 'em tom exhibited they were satisfactory": [65535, 0], "'em tom exhibited they were satisfactory and": [65535, 0], "tom exhibited they were satisfactory and the": [65535, 0], "exhibited they were satisfactory and the property": [65535, 0], "they were satisfactory and the property changed": [65535, 0], "were satisfactory and the property changed hands": [65535, 0], "satisfactory and the property changed hands then": [65535, 0], "and the property changed hands then tom": [65535, 0], "the property changed hands then tom traded": [65535, 0], "property changed hands then tom traded a": [65535, 0], "changed hands then tom traded a couple": [65535, 0], "hands then tom traded a couple of": [65535, 0], "then tom traded a couple of white": [65535, 0], "tom traded a couple of white alleys": [65535, 0], "traded a couple of white alleys for": [65535, 0], "a couple of white alleys for three": [65535, 0], "couple of white alleys for three red": [65535, 0], "of white alleys for three red tickets": [65535, 0], "white alleys for three red tickets and": [65535, 0], "alleys for three red tickets and some": [65535, 0], "for three red tickets and some small": [65535, 0], "three red tickets and some small trifle": [65535, 0], "red tickets and some small trifle or": [65535, 0], "tickets and some small trifle or other": [65535, 0], "and some small trifle or other for": [65535, 0], "some small trifle or other for a": [65535, 0], "small trifle or other for a couple": [65535, 0], "trifle or other for a couple of": [65535, 0], "or other for a couple of blue": [65535, 0], "other for a couple of blue ones": [65535, 0], "for a couple of blue ones he": [65535, 0], "a couple of blue ones he waylaid": [65535, 0], "couple of blue ones he waylaid other": [65535, 0], "of blue ones he waylaid other boys": [65535, 0], "blue ones he waylaid other boys as": [65535, 0], "ones he waylaid other boys as they": [65535, 0], "he waylaid other boys as they came": [65535, 0], "waylaid other boys as they came and": [65535, 0], "other boys as they came and went": [65535, 0], "boys as they came and went on": [65535, 0], "as they came and went on buying": [65535, 0], "they came and went on buying tickets": [65535, 0], "came and went on buying tickets of": [65535, 0], "and went on buying tickets of various": [65535, 0], "went on buying tickets of various colors": [65535, 0], "on buying tickets of various colors ten": [65535, 0], "buying tickets of various colors ten or": [65535, 0], "tickets of various colors ten or fifteen": [65535, 0], "of various colors ten or fifteen minutes": [65535, 0], "various colors ten or fifteen minutes longer": [65535, 0], "colors ten or fifteen minutes longer he": [65535, 0], "ten or fifteen minutes longer he entered": [65535, 0], "or fifteen minutes longer he entered the": [65535, 0], "fifteen minutes longer he entered the church": [65535, 0], "minutes longer he entered the church now": [65535, 0], "longer he entered the church now with": [65535, 0], "he entered the church now with a": [65535, 0], "entered the church now with a swarm": [65535, 0], "the church now with a swarm of": [65535, 0], "church now with a swarm of clean": [65535, 0], "now with a swarm of clean and": [65535, 0], "with a swarm of clean and noisy": [65535, 0], "a swarm of clean and noisy boys": [65535, 0], "swarm of clean and noisy boys and": [65535, 0], "of clean and noisy boys and girls": [65535, 0], "clean and noisy boys and girls proceeded": [65535, 0], "and noisy boys and girls proceeded to": [65535, 0], "noisy boys and girls proceeded to his": [65535, 0], "boys and girls proceeded to his seat": [65535, 0], "and girls proceeded to his seat and": [65535, 0], "girls proceeded to his seat and started": [65535, 0], "proceeded to his seat and started a": [65535, 0], "to his seat and started a quarrel": [65535, 0], "his seat and started a quarrel with": [65535, 0], "seat and started a quarrel with the": [65535, 0], "and started a quarrel with the first": [65535, 0], "started a quarrel with the first boy": [65535, 0], "a quarrel with the first boy that": [65535, 0], "quarrel with the first boy that came": [65535, 0], "with the first boy that came handy": [65535, 0], "the first boy that came handy the": [65535, 0], "first boy that came handy the teacher": [65535, 0], "boy that came handy the teacher a": [65535, 0], "that came handy the teacher a grave": [65535, 0], "came handy the teacher a grave elderly": [65535, 0], "handy the teacher a grave elderly man": [65535, 0], "the teacher a grave elderly man interfered": [65535, 0], "teacher a grave elderly man interfered then": [65535, 0], "a grave elderly man interfered then turned": [65535, 0], "grave elderly man interfered then turned his": [65535, 0], "elderly man interfered then turned his back": [65535, 0], "man interfered then turned his back a": [65535, 0], "interfered then turned his back a moment": [65535, 0], "then turned his back a moment and": [65535, 0], "turned his back a moment and tom": [65535, 0], "his back a moment and tom pulled": [65535, 0], "back a moment and tom pulled a": [65535, 0], "a moment and tom pulled a boy's": [65535, 0], "moment and tom pulled a boy's hair": [65535, 0], "and tom pulled a boy's hair in": [65535, 0], "tom pulled a boy's hair in the": [65535, 0], "pulled a boy's hair in the next": [65535, 0], "a boy's hair in the next bench": [65535, 0], "boy's hair in the next bench and": [65535, 0], "hair in the next bench and was": [65535, 0], "in the next bench and was absorbed": [65535, 0], "the next bench and was absorbed in": [65535, 0], "next bench and was absorbed in his": [65535, 0], "bench and was absorbed in his book": [65535, 0], "and was absorbed in his book when": [65535, 0], "was absorbed in his book when the": [65535, 0], "absorbed in his book when the boy": [65535, 0], "in his book when the boy turned": [65535, 0], "his book when the boy turned around": [65535, 0], "book when the boy turned around stuck": [65535, 0], "when the boy turned around stuck a": [65535, 0], "the boy turned around stuck a pin": [65535, 0], "boy turned around stuck a pin in": [65535, 0], "turned around stuck a pin in another": [65535, 0], "around stuck a pin in another boy": [65535, 0], "stuck a pin in another boy presently": [65535, 0], "a pin in another boy presently in": [65535, 0], "pin in another boy presently in order": [65535, 0], "in another boy presently in order to": [65535, 0], "another boy presently in order to hear": [65535, 0], "boy presently in order to hear him": [65535, 0], "presently in order to hear him say": [65535, 0], "in order to hear him say ouch": [65535, 0], "order to hear him say ouch and": [65535, 0], "to hear him say ouch and got": [65535, 0], "hear him say ouch and got a": [65535, 0], "him say ouch and got a new": [65535, 0], "say ouch and got a new reprimand": [65535, 0], "ouch and got a new reprimand from": [65535, 0], "and got a new reprimand from his": [65535, 0], "got a new reprimand from his teacher": [65535, 0], "a new reprimand from his teacher tom's": [65535, 0], "new reprimand from his teacher tom's whole": [65535, 0], "reprimand from his teacher tom's whole class": [65535, 0], "from his teacher tom's whole class were": [65535, 0], "his teacher tom's whole class were of": [65535, 0], "teacher tom's whole class were of a": [65535, 0], "tom's whole class were of a pattern": [65535, 0], "whole class were of a pattern restless": [65535, 0], "class were of a pattern restless noisy": [65535, 0], "were of a pattern restless noisy and": [65535, 0], "of a pattern restless noisy and troublesome": [65535, 0], "a pattern restless noisy and troublesome when": [65535, 0], "pattern restless noisy and troublesome when they": [65535, 0], "restless noisy and troublesome when they came": [65535, 0], "noisy and troublesome when they came to": [65535, 0], "and troublesome when they came to recite": [65535, 0], "troublesome when they came to recite their": [65535, 0], "when they came to recite their lessons": [65535, 0], "they came to recite their lessons not": [65535, 0], "came to recite their lessons not one": [65535, 0], "to recite their lessons not one of": [65535, 0], "recite their lessons not one of them": [65535, 0], "their lessons not one of them knew": [65535, 0], "lessons not one of them knew his": [65535, 0], "not one of them knew his verses": [65535, 0], "one of them knew his verses perfectly": [65535, 0], "of them knew his verses perfectly but": [65535, 0], "them knew his verses perfectly but had": [65535, 0], "knew his verses perfectly but had to": [65535, 0], "his verses perfectly but had to be": [65535, 0], "verses perfectly but had to be prompted": [65535, 0], "perfectly but had to be prompted all": [65535, 0], "but had to be prompted all along": [65535, 0], "had to be prompted all along however": [65535, 0], "to be prompted all along however they": [65535, 0], "be prompted all along however they worried": [65535, 0], "prompted all along however they worried through": [65535, 0], "all along however they worried through and": [65535, 0], "along however they worried through and each": [65535, 0], "however they worried through and each got": [65535, 0], "they worried through and each got his": [65535, 0], "worried through and each got his reward": [65535, 0], "through and each got his reward in": [65535, 0], "and each got his reward in small": [65535, 0], "each got his reward in small blue": [65535, 0], "got his reward in small blue tickets": [65535, 0], "his reward in small blue tickets each": [65535, 0], "reward in small blue tickets each with": [65535, 0], "in small blue tickets each with a": [65535, 0], "small blue tickets each with a passage": [65535, 0], "blue tickets each with a passage of": [65535, 0], "tickets each with a passage of scripture": [65535, 0], "each with a passage of scripture on": [65535, 0], "with a passage of scripture on it": [65535, 0], "a passage of scripture on it each": [65535, 0], "passage of scripture on it each blue": [65535, 0], "of scripture on it each blue ticket": [65535, 0], "scripture on it each blue ticket was": [65535, 0], "on it each blue ticket was pay": [65535, 0], "it each blue ticket was pay for": [65535, 0], "each blue ticket was pay for two": [65535, 0], "blue ticket was pay for two verses": [65535, 0], "ticket was pay for two verses of": [65535, 0], "was pay for two verses of the": [65535, 0], "pay for two verses of the recitation": [65535, 0], "for two verses of the recitation ten": [65535, 0], "two verses of the recitation ten blue": [65535, 0], "verses of the recitation ten blue tickets": [65535, 0], "of the recitation ten blue tickets equalled": [65535, 0], "the recitation ten blue tickets equalled a": [65535, 0], "recitation ten blue tickets equalled a red": [65535, 0], "ten blue tickets equalled a red one": [65535, 0], "blue tickets equalled a red one and": [65535, 0], "tickets equalled a red one and could": [65535, 0], "equalled a red one and could be": [65535, 0], "a red one and could be exchanged": [65535, 0], "red one and could be exchanged for": [65535, 0], "one and could be exchanged for it": [65535, 0], "and could be exchanged for it ten": [65535, 0], "could be exchanged for it ten red": [65535, 0], "be exchanged for it ten red tickets": [65535, 0], "exchanged for it ten red tickets equalled": [65535, 0], "for it ten red tickets equalled a": [65535, 0], "it ten red tickets equalled a yellow": [65535, 0], "ten red tickets equalled a yellow one": [65535, 0], "red tickets equalled a yellow one for": [65535, 0], "tickets equalled a yellow one for ten": [65535, 0], "equalled a yellow one for ten yellow": [65535, 0], "a yellow one for ten yellow tickets": [65535, 0], "yellow one for ten yellow tickets the": [65535, 0], "one for ten yellow tickets the superintendent": [65535, 0], "for ten yellow tickets the superintendent gave": [65535, 0], "ten yellow tickets the superintendent gave a": [65535, 0], "yellow tickets the superintendent gave a very": [65535, 0], "tickets the superintendent gave a very plainly": [65535, 0], "the superintendent gave a very plainly bound": [65535, 0], "superintendent gave a very plainly bound bible": [65535, 0], "gave a very plainly bound bible worth": [65535, 0], "a very plainly bound bible worth forty": [65535, 0], "very plainly bound bible worth forty cents": [65535, 0], "plainly bound bible worth forty cents in": [65535, 0], "bound bible worth forty cents in those": [65535, 0], "bible worth forty cents in those easy": [65535, 0], "worth forty cents in those easy times": [65535, 0], "forty cents in those easy times to": [65535, 0], "cents in those easy times to the": [65535, 0], "in those easy times to the pupil": [65535, 0], "those easy times to the pupil how": [65535, 0], "easy times to the pupil how many": [65535, 0], "times to the pupil how many of": [65535, 0], "to the pupil how many of my": [65535, 0], "the pupil how many of my readers": [65535, 0], "pupil how many of my readers would": [65535, 0], "how many of my readers would have": [65535, 0], "many of my readers would have the": [65535, 0], "of my readers would have the industry": [65535, 0], "my readers would have the industry and": [65535, 0], "readers would have the industry and application": [65535, 0], "would have the industry and application to": [65535, 0], "have the industry and application to memorize": [65535, 0], "the industry and application to memorize two": [65535, 0], "industry and application to memorize two thousand": [65535, 0], "and application to memorize two thousand verses": [65535, 0], "application to memorize two thousand verses even": [65535, 0], "to memorize two thousand verses even for": [65535, 0], "memorize two thousand verses even for a": [65535, 0], "two thousand verses even for a dore": [65535, 0], "thousand verses even for a dore bible": [65535, 0], "verses even for a dore bible and": [65535, 0], "even for a dore bible and yet": [65535, 0], "for a dore bible and yet mary": [65535, 0], "a dore bible and yet mary had": [65535, 0], "dore bible and yet mary had acquired": [65535, 0], "bible and yet mary had acquired two": [65535, 0], "and yet mary had acquired two bibles": [65535, 0], "yet mary had acquired two bibles in": [65535, 0], "mary had acquired two bibles in this": [65535, 0], "had acquired two bibles in this way": [65535, 0], "acquired two bibles in this way it": [65535, 0], "two bibles in this way it was": [65535, 0], "bibles in this way it was the": [65535, 0], "in this way it was the patient": [65535, 0], "this way it was the patient work": [65535, 0], "way it was the patient work of": [65535, 0], "it was the patient work of two": [65535, 0], "was the patient work of two years": [65535, 0], "the patient work of two years and": [65535, 0], "patient work of two years and a": [65535, 0], "work of two years and a boy": [65535, 0], "of two years and a boy of": [65535, 0], "two years and a boy of german": [65535, 0], "years and a boy of german parentage": [65535, 0], "and a boy of german parentage had": [65535, 0], "a boy of german parentage had won": [65535, 0], "boy of german parentage had won four": [65535, 0], "of german parentage had won four or": [65535, 0], "german parentage had won four or five": [65535, 0], "parentage had won four or five he": [65535, 0], "had won four or five he once": [65535, 0], "won four or five he once recited": [65535, 0], "four or five he once recited three": [65535, 0], "or five he once recited three thousand": [65535, 0], "five he once recited three thousand verses": [65535, 0], "he once recited three thousand verses without": [65535, 0], "once recited three thousand verses without stopping": [65535, 0], "recited three thousand verses without stopping but": [65535, 0], "three thousand verses without stopping but the": [65535, 0], "thousand verses without stopping but the strain": [65535, 0], "verses without stopping but the strain upon": [65535, 0], "without stopping but the strain upon his": [65535, 0], "stopping but the strain upon his mental": [65535, 0], "but the strain upon his mental faculties": [65535, 0], "the strain upon his mental faculties was": [65535, 0], "strain upon his mental faculties was too": [65535, 0], "upon his mental faculties was too great": [65535, 0], "his mental faculties was too great and": [65535, 0], "mental faculties was too great and he": [65535, 0], "faculties was too great and he was": [65535, 0], "was too great and he was little": [65535, 0], "too great and he was little better": [65535, 0], "great and he was little better than": [65535, 0], "and he was little better than an": [65535, 0], "he was little better than an idiot": [65535, 0], "was little better than an idiot from": [65535, 0], "little better than an idiot from that": [65535, 0], "better than an idiot from that day": [65535, 0], "than an idiot from that day forth": [65535, 0], "an idiot from that day forth a": [65535, 0], "idiot from that day forth a grievous": [65535, 0], "from that day forth a grievous misfortune": [65535, 0], "that day forth a grievous misfortune for": [65535, 0], "day forth a grievous misfortune for the": [65535, 0], "forth a grievous misfortune for the school": [65535, 0], "a grievous misfortune for the school for": [65535, 0], "grievous misfortune for the school for on": [65535, 0], "misfortune for the school for on great": [65535, 0], "for the school for on great occasions": [65535, 0], "the school for on great occasions before": [65535, 0], "school for on great occasions before company": [65535, 0], "for on great occasions before company the": [65535, 0], "on great occasions before company the superintendent": [65535, 0], "great occasions before company the superintendent as": [65535, 0], "occasions before company the superintendent as tom": [65535, 0], "before company the superintendent as tom expressed": [65535, 0], "company the superintendent as tom expressed it": [65535, 0], "the superintendent as tom expressed it had": [65535, 0], "superintendent as tom expressed it had always": [65535, 0], "as tom expressed it had always made": [65535, 0], "tom expressed it had always made this": [65535, 0], "expressed it had always made this boy": [65535, 0], "it had always made this boy come": [65535, 0], "had always made this boy come out": [65535, 0], "always made this boy come out and": [65535, 0], "made this boy come out and spread": [65535, 0], "this boy come out and spread himself": [65535, 0], "boy come out and spread himself only": [65535, 0], "come out and spread himself only the": [65535, 0], "out and spread himself only the older": [65535, 0], "and spread himself only the older pupils": [65535, 0], "spread himself only the older pupils managed": [65535, 0], "himself only the older pupils managed to": [65535, 0], "only the older pupils managed to keep": [65535, 0], "the older pupils managed to keep their": [65535, 0], "older pupils managed to keep their tickets": [65535, 0], "pupils managed to keep their tickets and": [65535, 0], "managed to keep their tickets and stick": [65535, 0], "to keep their tickets and stick to": [65535, 0], "keep their tickets and stick to their": [65535, 0], "their tickets and stick to their tedious": [65535, 0], "tickets and stick to their tedious work": [65535, 0], "and stick to their tedious work long": [65535, 0], "stick to their tedious work long enough": [65535, 0], "to their tedious work long enough to": [65535, 0], "their tedious work long enough to get": [65535, 0], "tedious work long enough to get a": [65535, 0], "work long enough to get a bible": [65535, 0], "long enough to get a bible and": [65535, 0], "enough to get a bible and so": [65535, 0], "to get a bible and so the": [65535, 0], "get a bible and so the delivery": [65535, 0], "a bible and so the delivery of": [65535, 0], "bible and so the delivery of one": [65535, 0], "and so the delivery of one of": [65535, 0], "so the delivery of one of these": [65535, 0], "the delivery of one of these prizes": [65535, 0], "delivery of one of these prizes was": [65535, 0], "of one of these prizes was a": [65535, 0], "one of these prizes was a rare": [65535, 0], "of these prizes was a rare and": [65535, 0], "these prizes was a rare and noteworthy": [65535, 0], "prizes was a rare and noteworthy circumstance": [65535, 0], "was a rare and noteworthy circumstance the": [65535, 0], "a rare and noteworthy circumstance the successful": [65535, 0], "rare and noteworthy circumstance the successful pupil": [65535, 0], "and noteworthy circumstance the successful pupil was": [65535, 0], "noteworthy circumstance the successful pupil was so": [65535, 0], "circumstance the successful pupil was so great": [65535, 0], "the successful pupil was so great and": [65535, 0], "successful pupil was so great and conspicuous": [65535, 0], "pupil was so great and conspicuous for": [65535, 0], "was so great and conspicuous for that": [65535, 0], "so great and conspicuous for that day": [65535, 0], "great and conspicuous for that day that": [65535, 0], "and conspicuous for that day that on": [65535, 0], "conspicuous for that day that on the": [65535, 0], "for that day that on the spot": [65535, 0], "that day that on the spot every": [65535, 0], "day that on the spot every scholar's": [65535, 0], "that on the spot every scholar's heart": [65535, 0], "on the spot every scholar's heart was": [65535, 0], "the spot every scholar's heart was fired": [65535, 0], "spot every scholar's heart was fired with": [65535, 0], "every scholar's heart was fired with a": [65535, 0], "scholar's heart was fired with a fresh": [65535, 0], "heart was fired with a fresh ambition": [65535, 0], "was fired with a fresh ambition that": [65535, 0], "fired with a fresh ambition that often": [65535, 0], "with a fresh ambition that often lasted": [65535, 0], "a fresh ambition that often lasted a": [65535, 0], "fresh ambition that often lasted a couple": [65535, 0], "ambition that often lasted a couple of": [65535, 0], "that often lasted a couple of weeks": [65535, 0], "often lasted a couple of weeks it": [65535, 0], "lasted a couple of weeks it is": [65535, 0], "a couple of weeks it is possible": [65535, 0], "couple of weeks it is possible that": [65535, 0], "of weeks it is possible that tom's": [65535, 0], "weeks it is possible that tom's mental": [65535, 0], "it is possible that tom's mental stomach": [65535, 0], "is possible that tom's mental stomach had": [65535, 0], "possible that tom's mental stomach had never": [65535, 0], "that tom's mental stomach had never really": [65535, 0], "tom's mental stomach had never really hungered": [65535, 0], "mental stomach had never really hungered for": [65535, 0], "stomach had never really hungered for one": [65535, 0], "had never really hungered for one of": [65535, 0], "never really hungered for one of those": [65535, 0], "really hungered for one of those prizes": [65535, 0], "hungered for one of those prizes but": [65535, 0], "for one of those prizes but unquestionably": [65535, 0], "one of those prizes but unquestionably his": [65535, 0], "of those prizes but unquestionably his entire": [65535, 0], "those prizes but unquestionably his entire being": [65535, 0], "prizes but unquestionably his entire being had": [65535, 0], "but unquestionably his entire being had for": [65535, 0], "unquestionably his entire being had for many": [65535, 0], "his entire being had for many a": [65535, 0], "entire being had for many a day": [65535, 0], "being had for many a day longed": [65535, 0], "had for many a day longed for": [65535, 0], "for many a day longed for the": [65535, 0], "many a day longed for the glory": [65535, 0], "a day longed for the glory and": [65535, 0], "day longed for the glory and the": [65535, 0], "longed for the glory and the eclat": [65535, 0], "for the glory and the eclat that": [65535, 0], "the glory and the eclat that came": [65535, 0], "glory and the eclat that came with": [65535, 0], "and the eclat that came with it": [65535, 0], "the eclat that came with it in": [65535, 0], "eclat that came with it in due": [65535, 0], "that came with it in due course": [65535, 0], "came with it in due course the": [65535, 0], "with it in due course the superintendent": [65535, 0], "it in due course the superintendent stood": [65535, 0], "in due course the superintendent stood up": [65535, 0], "due course the superintendent stood up in": [65535, 0], "course the superintendent stood up in front": [65535, 0], "the superintendent stood up in front of": [65535, 0], "superintendent stood up in front of the": [65535, 0], "stood up in front of the pulpit": [65535, 0], "up in front of the pulpit with": [65535, 0], "in front of the pulpit with a": [65535, 0], "front of the pulpit with a closed": [65535, 0], "of the pulpit with a closed hymn": [65535, 0], "the pulpit with a closed hymn book": [65535, 0], "pulpit with a closed hymn book in": [65535, 0], "with a closed hymn book in his": [65535, 0], "a closed hymn book in his hand": [65535, 0], "closed hymn book in his hand and": [65535, 0], "hymn book in his hand and his": [65535, 0], "book in his hand and his forefinger": [65535, 0], "in his hand and his forefinger inserted": [65535, 0], "his hand and his forefinger inserted between": [65535, 0], "hand and his forefinger inserted between its": [65535, 0], "and his forefinger inserted between its leaves": [65535, 0], "his forefinger inserted between its leaves and": [65535, 0], "forefinger inserted between its leaves and commanded": [65535, 0], "inserted between its leaves and commanded attention": [65535, 0], "between its leaves and commanded attention when": [65535, 0], "its leaves and commanded attention when a": [65535, 0], "leaves and commanded attention when a sunday": [65535, 0], "and commanded attention when a sunday school": [65535, 0], "commanded attention when a sunday school superintendent": [65535, 0], "attention when a sunday school superintendent makes": [65535, 0], "when a sunday school superintendent makes his": [65535, 0], "a sunday school superintendent makes his customary": [65535, 0], "sunday school superintendent makes his customary little": [65535, 0], "school superintendent makes his customary little speech": [65535, 0], "superintendent makes his customary little speech a": [65535, 0], "makes his customary little speech a hymn": [65535, 0], "his customary little speech a hymn book": [65535, 0], "customary little speech a hymn book in": [65535, 0], "little speech a hymn book in the": [65535, 0], "speech a hymn book in the hand": [65535, 0], "a hymn book in the hand is": [65535, 0], "hymn book in the hand is as": [65535, 0], "book in the hand is as necessary": [65535, 0], "in the hand is as necessary as": [65535, 0], "the hand is as necessary as is": [65535, 0], "hand is as necessary as is the": [65535, 0], "is as necessary as is the inevitable": [65535, 0], "as necessary as is the inevitable sheet": [65535, 0], "necessary as is the inevitable sheet of": [65535, 0], "as is the inevitable sheet of music": [65535, 0], "is the inevitable sheet of music in": [65535, 0], "the inevitable sheet of music in the": [65535, 0], "inevitable sheet of music in the hand": [65535, 0], "sheet of music in the hand of": [65535, 0], "of music in the hand of a": [65535, 0], "music in the hand of a singer": [65535, 0], "in the hand of a singer who": [65535, 0], "the hand of a singer who stands": [65535, 0], "hand of a singer who stands forward": [65535, 0], "of a singer who stands forward on": [65535, 0], "a singer who stands forward on the": [65535, 0], "singer who stands forward on the platform": [65535, 0], "who stands forward on the platform and": [65535, 0], "stands forward on the platform and sings": [65535, 0], "forward on the platform and sings a": [65535, 0], "on the platform and sings a solo": [65535, 0], "the platform and sings a solo at": [65535, 0], "platform and sings a solo at a": [65535, 0], "and sings a solo at a concert": [65535, 0], "sings a solo at a concert though": [65535, 0], "a solo at a concert though why": [65535, 0], "solo at a concert though why is": [65535, 0], "at a concert though why is a": [65535, 0], "a concert though why is a mystery": [65535, 0], "concert though why is a mystery for": [65535, 0], "though why is a mystery for neither": [65535, 0], "why is a mystery for neither the": [65535, 0], "is a mystery for neither the hymn": [65535, 0], "a mystery for neither the hymn book": [65535, 0], "mystery for neither the hymn book nor": [65535, 0], "for neither the hymn book nor the": [65535, 0], "neither the hymn book nor the sheet": [65535, 0], "the hymn book nor the sheet of": [65535, 0], "hymn book nor the sheet of music": [65535, 0], "book nor the sheet of music is": [65535, 0], "nor the sheet of music is ever": [65535, 0], "the sheet of music is ever referred": [65535, 0], "sheet of music is ever referred to": [65535, 0], "of music is ever referred to by": [65535, 0], "music is ever referred to by the": [65535, 0], "is ever referred to by the sufferer": [65535, 0], "ever referred to by the sufferer this": [65535, 0], "referred to by the sufferer this superintendent": [65535, 0], "to by the sufferer this superintendent was": [65535, 0], "by the sufferer this superintendent was a": [65535, 0], "the sufferer this superintendent was a slim": [65535, 0], "sufferer this superintendent was a slim creature": [65535, 0], "this superintendent was a slim creature of": [65535, 0], "superintendent was a slim creature of thirty": [65535, 0], "was a slim creature of thirty five": [65535, 0], "a slim creature of thirty five with": [65535, 0], "slim creature of thirty five with a": [65535, 0], "creature of thirty five with a sandy": [65535, 0], "of thirty five with a sandy goatee": [65535, 0], "thirty five with a sandy goatee and": [65535, 0], "five with a sandy goatee and short": [65535, 0], "with a sandy goatee and short sandy": [65535, 0], "a sandy goatee and short sandy hair": [65535, 0], "sandy goatee and short sandy hair he": [65535, 0], "goatee and short sandy hair he wore": [65535, 0], "and short sandy hair he wore a": [65535, 0], "short sandy hair he wore a stiff": [65535, 0], "sandy hair he wore a stiff standing": [65535, 0], "hair he wore a stiff standing collar": [65535, 0], "he wore a stiff standing collar whose": [65535, 0], "wore a stiff standing collar whose upper": [65535, 0], "a stiff standing collar whose upper edge": [65535, 0], "stiff standing collar whose upper edge almost": [65535, 0], "standing collar whose upper edge almost reached": [65535, 0], "collar whose upper edge almost reached his": [65535, 0], "whose upper edge almost reached his ears": [65535, 0], "upper edge almost reached his ears and": [65535, 0], "edge almost reached his ears and whose": [65535, 0], "almost reached his ears and whose sharp": [65535, 0], "reached his ears and whose sharp points": [65535, 0], "his ears and whose sharp points curved": [65535, 0], "ears and whose sharp points curved forward": [65535, 0], "and whose sharp points curved forward abreast": [65535, 0], "whose sharp points curved forward abreast the": [65535, 0], "sharp points curved forward abreast the corners": [65535, 0], "points curved forward abreast the corners of": [65535, 0], "curved forward abreast the corners of his": [65535, 0], "forward abreast the corners of his mouth": [65535, 0], "abreast the corners of his mouth a": [65535, 0], "the corners of his mouth a fence": [65535, 0], "corners of his mouth a fence that": [65535, 0], "of his mouth a fence that compelled": [65535, 0], "his mouth a fence that compelled a": [65535, 0], "mouth a fence that compelled a straight": [65535, 0], "a fence that compelled a straight lookout": [65535, 0], "fence that compelled a straight lookout ahead": [65535, 0], "that compelled a straight lookout ahead and": [65535, 0], "compelled a straight lookout ahead and a": [65535, 0], "a straight lookout ahead and a turning": [65535, 0], "straight lookout ahead and a turning of": [65535, 0], "lookout ahead and a turning of the": [65535, 0], "ahead and a turning of the whole": [65535, 0], "and a turning of the whole body": [65535, 0], "a turning of the whole body when": [65535, 0], "turning of the whole body when a": [65535, 0], "of the whole body when a side": [65535, 0], "the whole body when a side view": [65535, 0], "whole body when a side view was": [65535, 0], "body when a side view was required": [65535, 0], "when a side view was required his": [65535, 0], "a side view was required his chin": [65535, 0], "side view was required his chin was": [65535, 0], "view was required his chin was propped": [65535, 0], "was required his chin was propped on": [65535, 0], "required his chin was propped on a": [65535, 0], "his chin was propped on a spreading": [65535, 0], "chin was propped on a spreading cravat": [65535, 0], "was propped on a spreading cravat which": [65535, 0], "propped on a spreading cravat which was": [65535, 0], "on a spreading cravat which was as": [65535, 0], "a spreading cravat which was as broad": [65535, 0], "spreading cravat which was as broad and": [65535, 0], "cravat which was as broad and as": [65535, 0], "which was as broad and as long": [65535, 0], "was as broad and as long as": [65535, 0], "as broad and as long as a": [65535, 0], "broad and as long as a bank": [65535, 0], "and as long as a bank note": [65535, 0], "as long as a bank note and": [65535, 0], "long as a bank note and had": [65535, 0], "as a bank note and had fringed": [65535, 0], "a bank note and had fringed ends": [65535, 0], "bank note and had fringed ends his": [65535, 0], "note and had fringed ends his boot": [65535, 0], "and had fringed ends his boot toes": [65535, 0], "had fringed ends his boot toes were": [65535, 0], "fringed ends his boot toes were turned": [65535, 0], "ends his boot toes were turned sharply": [65535, 0], "his boot toes were turned sharply up": [65535, 0], "boot toes were turned sharply up in": [65535, 0], "toes were turned sharply up in the": [65535, 0], "were turned sharply up in the fashion": [65535, 0], "turned sharply up in the fashion of": [65535, 0], "sharply up in the fashion of the": [65535, 0], "up in the fashion of the day": [65535, 0], "in the fashion of the day like": [65535, 0], "the fashion of the day like sleigh": [65535, 0], "fashion of the day like sleigh runners": [65535, 0], "of the day like sleigh runners an": [65535, 0], "the day like sleigh runners an effect": [65535, 0], "day like sleigh runners an effect patiently": [65535, 0], "like sleigh runners an effect patiently and": [65535, 0], "sleigh runners an effect patiently and laboriously": [65535, 0], "runners an effect patiently and laboriously produced": [65535, 0], "an effect patiently and laboriously produced by": [65535, 0], "effect patiently and laboriously produced by the": [65535, 0], "patiently and laboriously produced by the young": [65535, 0], "and laboriously produced by the young men": [65535, 0], "laboriously produced by the young men by": [65535, 0], "produced by the young men by sitting": [65535, 0], "by the young men by sitting with": [65535, 0], "the young men by sitting with their": [65535, 0], "young men by sitting with their toes": [65535, 0], "men by sitting with their toes pressed": [65535, 0], "by sitting with their toes pressed against": [65535, 0], "sitting with their toes pressed against a": [65535, 0], "with their toes pressed against a wall": [65535, 0], "their toes pressed against a wall for": [65535, 0], "toes pressed against a wall for hours": [65535, 0], "pressed against a wall for hours together": [65535, 0], "against a wall for hours together mr": [65535, 0], "a wall for hours together mr walters": [65535, 0], "wall for hours together mr walters was": [65535, 0], "for hours together mr walters was very": [65535, 0], "hours together mr walters was very earnest": [65535, 0], "together mr walters was very earnest of": [65535, 0], "mr walters was very earnest of mien": [65535, 0], "walters was very earnest of mien and": [65535, 0], "was very earnest of mien and very": [65535, 0], "very earnest of mien and very sincere": [65535, 0], "earnest of mien and very sincere and": [65535, 0], "of mien and very sincere and honest": [65535, 0], "mien and very sincere and honest at": [65535, 0], "and very sincere and honest at heart": [65535, 0], "very sincere and honest at heart and": [65535, 0], "sincere and honest at heart and he": [65535, 0], "and honest at heart and he held": [65535, 0], "honest at heart and he held sacred": [65535, 0], "at heart and he held sacred things": [65535, 0], "heart and he held sacred things and": [65535, 0], "and he held sacred things and places": [65535, 0], "he held sacred things and places in": [65535, 0], "held sacred things and places in such": [65535, 0], "sacred things and places in such reverence": [65535, 0], "things and places in such reverence and": [65535, 0], "and places in such reverence and so": [65535, 0], "places in such reverence and so separated": [65535, 0], "in such reverence and so separated them": [65535, 0], "such reverence and so separated them from": [65535, 0], "reverence and so separated them from worldly": [65535, 0], "and so separated them from worldly matters": [65535, 0], "so separated them from worldly matters that": [65535, 0], "separated them from worldly matters that unconsciously": [65535, 0], "them from worldly matters that unconsciously to": [65535, 0], "from worldly matters that unconsciously to himself": [65535, 0], "worldly matters that unconsciously to himself his": [65535, 0], "matters that unconsciously to himself his sunday": [65535, 0], "that unconsciously to himself his sunday school": [65535, 0], "unconsciously to himself his sunday school voice": [65535, 0], "to himself his sunday school voice had": [65535, 0], "himself his sunday school voice had acquired": [65535, 0], "his sunday school voice had acquired a": [65535, 0], "sunday school voice had acquired a peculiar": [65535, 0], "school voice had acquired a peculiar intonation": [65535, 0], "voice had acquired a peculiar intonation which": [65535, 0], "had acquired a peculiar intonation which was": [65535, 0], "acquired a peculiar intonation which was wholly": [65535, 0], "a peculiar intonation which was wholly absent": [65535, 0], "peculiar intonation which was wholly absent on": [65535, 0], "intonation which was wholly absent on week": [65535, 0], "which was wholly absent on week days": [65535, 0], "was wholly absent on week days he": [65535, 0], "wholly absent on week days he began": [65535, 0], "absent on week days he began after": [65535, 0], "on week days he began after this": [65535, 0], "week days he began after this fashion": [65535, 0], "days he began after this fashion now": [65535, 0], "he began after this fashion now children": [65535, 0], "began after this fashion now children i": [65535, 0], "after this fashion now children i want": [65535, 0], "this fashion now children i want you": [65535, 0], "fashion now children i want you all": [65535, 0], "now children i want you all to": [65535, 0], "children i want you all to sit": [65535, 0], "i want you all to sit up": [65535, 0], "want you all to sit up just": [65535, 0], "you all to sit up just as": [65535, 0], "all to sit up just as straight": [65535, 0], "to sit up just as straight and": [65535, 0], "sit up just as straight and pretty": [65535, 0], "up just as straight and pretty as": [65535, 0], "just as straight and pretty as you": [65535, 0], "as straight and pretty as you can": [65535, 0], "straight and pretty as you can and": [65535, 0], "and pretty as you can and give": [65535, 0], "pretty as you can and give me": [65535, 0], "as you can and give me all": [65535, 0], "you can and give me all your": [65535, 0], "can and give me all your attention": [65535, 0], "and give me all your attention for": [65535, 0], "give me all your attention for a": [65535, 0], "me all your attention for a minute": [65535, 0], "all your attention for a minute or": [65535, 0], "your attention for a minute or two": [65535, 0], "attention for a minute or two there": [65535, 0], "for a minute or two there that": [65535, 0], "a minute or two there that is": [65535, 0], "minute or two there that is it": [65535, 0], "or two there that is it that": [65535, 0], "two there that is it that is": [65535, 0], "there that is it that is the": [65535, 0], "that is it that is the way": [65535, 0], "is it that is the way good": [65535, 0], "it that is the way good little": [65535, 0], "that is the way good little boys": [65535, 0], "is the way good little boys and": [65535, 0], "the way good little boys and girls": [65535, 0], "way good little boys and girls should": [65535, 0], "good little boys and girls should do": [65535, 0], "little boys and girls should do i": [65535, 0], "boys and girls should do i see": [65535, 0], "and girls should do i see one": [65535, 0], "girls should do i see one little": [65535, 0], "should do i see one little girl": [65535, 0], "do i see one little girl who": [65535, 0], "i see one little girl who is": [65535, 0], "see one little girl who is looking": [65535, 0], "one little girl who is looking out": [65535, 0], "little girl who is looking out of": [65535, 0], "girl who is looking out of the": [65535, 0], "who is looking out of the window": [65535, 0], "is looking out of the window i": [65535, 0], "looking out of the window i am": [65535, 0], "out of the window i am afraid": [65535, 0], "of the window i am afraid she": [65535, 0], "the window i am afraid she thinks": [65535, 0], "window i am afraid she thinks i": [65535, 0], "i am afraid she thinks i am": [65535, 0], "am afraid she thinks i am out": [65535, 0], "afraid she thinks i am out there": [65535, 0], "she thinks i am out there somewhere": [65535, 0], "thinks i am out there somewhere perhaps": [65535, 0], "i am out there somewhere perhaps up": [65535, 0], "am out there somewhere perhaps up in": [65535, 0], "out there somewhere perhaps up in one": [65535, 0], "there somewhere perhaps up in one of": [65535, 0], "somewhere perhaps up in one of the": [65535, 0], "perhaps up in one of the trees": [65535, 0], "up in one of the trees making": [65535, 0], "in one of the trees making a": [65535, 0], "one of the trees making a speech": [65535, 0], "of the trees making a speech to": [65535, 0], "the trees making a speech to the": [65535, 0], "trees making a speech to the little": [65535, 0], "making a speech to the little birds": [65535, 0], "a speech to the little birds applausive": [65535, 0], "speech to the little birds applausive titter": [65535, 0], "to the little birds applausive titter i": [65535, 0], "the little birds applausive titter i want": [65535, 0], "little birds applausive titter i want to": [65535, 0], "birds applausive titter i want to tell": [65535, 0], "applausive titter i want to tell you": [65535, 0], "titter i want to tell you how": [65535, 0], "i want to tell you how good": [65535, 0], "want to tell you how good it": [65535, 0], "to tell you how good it makes": [65535, 0], "tell you how good it makes me": [65535, 0], "you how good it makes me feel": [65535, 0], "how good it makes me feel to": [65535, 0], "good it makes me feel to see": [65535, 0], "it makes me feel to see so": [65535, 0], "makes me feel to see so many": [65535, 0], "me feel to see so many bright": [65535, 0], "feel to see so many bright clean": [65535, 0], "to see so many bright clean little": [65535, 0], "see so many bright clean little faces": [65535, 0], "so many bright clean little faces assembled": [65535, 0], "many bright clean little faces assembled in": [65535, 0], "bright clean little faces assembled in a": [65535, 0], "clean little faces assembled in a place": [65535, 0], "little faces assembled in a place like": [65535, 0], "faces assembled in a place like this": [65535, 0], "assembled in a place like this learning": [65535, 0], "in a place like this learning to": [65535, 0], "a place like this learning to do": [65535, 0], "place like this learning to do right": [65535, 0], "like this learning to do right and": [65535, 0], "this learning to do right and be": [65535, 0], "learning to do right and be good": [65535, 0], "to do right and be good and": [65535, 0], "do right and be good and so": [65535, 0], "right and be good and so forth": [65535, 0], "and be good and so forth and": [65535, 0], "be good and so forth and so": [65535, 0], "good and so forth and so on": [65535, 0], "and so forth and so on it": [65535, 0], "so forth and so on it is": [65535, 0], "forth and so on it is not": [65535, 0], "and so on it is not necessary": [65535, 0], "so on it is not necessary to": [65535, 0], "on it is not necessary to set": [65535, 0], "it is not necessary to set down": [65535, 0], "is not necessary to set down the": [65535, 0], "not necessary to set down the rest": [65535, 0], "necessary to set down the rest of": [65535, 0], "to set down the rest of the": [65535, 0], "set down the rest of the oration": [65535, 0], "down the rest of the oration it": [65535, 0], "the rest of the oration it was": [65535, 0], "rest of the oration it was of": [65535, 0], "of the oration it was of a": [65535, 0], "the oration it was of a pattern": [65535, 0], "oration it was of a pattern which": [65535, 0], "it was of a pattern which does": [65535, 0], "was of a pattern which does not": [65535, 0], "of a pattern which does not vary": [65535, 0], "a pattern which does not vary and": [65535, 0], "pattern which does not vary and so": [65535, 0], "which does not vary and so it": [65535, 0], "does not vary and so it is": [65535, 0], "not vary and so it is familiar": [65535, 0], "vary and so it is familiar to": [65535, 0], "and so it is familiar to us": [65535, 0], "so it is familiar to us all": [65535, 0], "it is familiar to us all the": [65535, 0], "is familiar to us all the latter": [65535, 0], "familiar to us all the latter third": [65535, 0], "to us all the latter third of": [65535, 0], "us all the latter third of the": [65535, 0], "all the latter third of the speech": [65535, 0], "the latter third of the speech was": [65535, 0], "latter third of the speech was marred": [65535, 0], "third of the speech was marred by": [65535, 0], "of the speech was marred by the": [65535, 0], "the speech was marred by the resumption": [65535, 0], "speech was marred by the resumption of": [65535, 0], "was marred by the resumption of fights": [65535, 0], "marred by the resumption of fights and": [65535, 0], "by the resumption of fights and other": [65535, 0], "the resumption of fights and other recreations": [65535, 0], "resumption of fights and other recreations among": [65535, 0], "of fights and other recreations among certain": [65535, 0], "fights and other recreations among certain of": [65535, 0], "and other recreations among certain of the": [65535, 0], "other recreations among certain of the bad": [65535, 0], "recreations among certain of the bad boys": [65535, 0], "among certain of the bad boys and": [65535, 0], "certain of the bad boys and by": [65535, 0], "of the bad boys and by fidgetings": [65535, 0], "the bad boys and by fidgetings and": [65535, 0], "bad boys and by fidgetings and whisperings": [65535, 0], "boys and by fidgetings and whisperings that": [65535, 0], "and by fidgetings and whisperings that extended": [65535, 0], "by fidgetings and whisperings that extended far": [65535, 0], "fidgetings and whisperings that extended far and": [65535, 0], "and whisperings that extended far and wide": [65535, 0], "whisperings that extended far and wide washing": [65535, 0], "that extended far and wide washing even": [65535, 0], "extended far and wide washing even to": [65535, 0], "far and wide washing even to the": [65535, 0], "and wide washing even to the bases": [65535, 0], "wide washing even to the bases of": [65535, 0], "washing even to the bases of isolated": [65535, 0], "even to the bases of isolated and": [65535, 0], "to the bases of isolated and incorruptible": [65535, 0], "the bases of isolated and incorruptible rocks": [65535, 0], "bases of isolated and incorruptible rocks like": [65535, 0], "of isolated and incorruptible rocks like sid": [65535, 0], "isolated and incorruptible rocks like sid and": [65535, 0], "and incorruptible rocks like sid and mary": [65535, 0], "incorruptible rocks like sid and mary but": [65535, 0], "rocks like sid and mary but now": [65535, 0], "like sid and mary but now every": [65535, 0], "sid and mary but now every sound": [65535, 0], "and mary but now every sound ceased": [65535, 0], "mary but now every sound ceased suddenly": [65535, 0], "but now every sound ceased suddenly with": [65535, 0], "now every sound ceased suddenly with the": [65535, 0], "every sound ceased suddenly with the subsidence": [65535, 0], "sound ceased suddenly with the subsidence of": [65535, 0], "ceased suddenly with the subsidence of mr": [65535, 0], "suddenly with the subsidence of mr walters'": [65535, 0], "with the subsidence of mr walters' voice": [65535, 0], "the subsidence of mr walters' voice and": [65535, 0], "subsidence of mr walters' voice and the": [65535, 0], "of mr walters' voice and the conclusion": [65535, 0], "mr walters' voice and the conclusion of": [65535, 0], "walters' voice and the conclusion of the": [65535, 0], "voice and the conclusion of the speech": [65535, 0], "and the conclusion of the speech was": [65535, 0], "the conclusion of the speech was received": [65535, 0], "conclusion of the speech was received with": [65535, 0], "of the speech was received with a": [65535, 0], "the speech was received with a burst": [65535, 0], "speech was received with a burst of": [65535, 0], "was received with a burst of silent": [65535, 0], "received with a burst of silent gratitude": [65535, 0], "with a burst of silent gratitude a": [65535, 0], "a burst of silent gratitude a good": [65535, 0], "burst of silent gratitude a good part": [65535, 0], "of silent gratitude a good part of": [65535, 0], "silent gratitude a good part of the": [65535, 0], "gratitude a good part of the whispering": [65535, 0], "a good part of the whispering had": [65535, 0], "good part of the whispering had been": [65535, 0], "part of the whispering had been occasioned": [65535, 0], "of the whispering had been occasioned by": [65535, 0], "the whispering had been occasioned by an": [65535, 0], "whispering had been occasioned by an event": [65535, 0], "had been occasioned by an event which": [65535, 0], "been occasioned by an event which was": [65535, 0], "occasioned by an event which was more": [65535, 0], "by an event which was more or": [65535, 0], "an event which was more or less": [65535, 0], "event which was more or less rare": [65535, 0], "which was more or less rare the": [65535, 0], "was more or less rare the entrance": [65535, 0], "more or less rare the entrance of": [65535, 0], "or less rare the entrance of visitors": [65535, 0], "less rare the entrance of visitors lawyer": [65535, 0], "rare the entrance of visitors lawyer thatcher": [65535, 0], "the entrance of visitors lawyer thatcher accompanied": [65535, 0], "entrance of visitors lawyer thatcher accompanied by": [65535, 0], "of visitors lawyer thatcher accompanied by a": [65535, 0], "visitors lawyer thatcher accompanied by a very": [65535, 0], "lawyer thatcher accompanied by a very feeble": [65535, 0], "thatcher accompanied by a very feeble and": [65535, 0], "accompanied by a very feeble and aged": [65535, 0], "by a very feeble and aged man": [65535, 0], "a very feeble and aged man a": [65535, 0], "very feeble and aged man a fine": [65535, 0], "feeble and aged man a fine portly": [65535, 0], "and aged man a fine portly middle": [65535, 0], "aged man a fine portly middle aged": [65535, 0], "man a fine portly middle aged gentleman": [65535, 0], "a fine portly middle aged gentleman with": [65535, 0], "fine portly middle aged gentleman with iron": [65535, 0], "portly middle aged gentleman with iron gray": [65535, 0], "middle aged gentleman with iron gray hair": [65535, 0], "aged gentleman with iron gray hair and": [65535, 0], "gentleman with iron gray hair and a": [65535, 0], "with iron gray hair and a dignified": [65535, 0], "iron gray hair and a dignified lady": [65535, 0], "gray hair and a dignified lady who": [65535, 0], "hair and a dignified lady who was": [65535, 0], "and a dignified lady who was doubtless": [65535, 0], "a dignified lady who was doubtless the": [65535, 0], "dignified lady who was doubtless the latter's": [65535, 0], "lady who was doubtless the latter's wife": [65535, 0], "who was doubtless the latter's wife the": [65535, 0], "was doubtless the latter's wife the lady": [65535, 0], "doubtless the latter's wife the lady was": [65535, 0], "the latter's wife the lady was leading": [65535, 0], "latter's wife the lady was leading a": [65535, 0], "wife the lady was leading a child": [65535, 0], "the lady was leading a child tom": [65535, 0], "lady was leading a child tom had": [65535, 0], "was leading a child tom had been": [65535, 0], "leading a child tom had been restless": [65535, 0], "a child tom had been restless and": [65535, 0], "child tom had been restless and full": [65535, 0], "tom had been restless and full of": [65535, 0], "had been restless and full of chafings": [65535, 0], "been restless and full of chafings and": [65535, 0], "restless and full of chafings and repinings": [65535, 0], "and full of chafings and repinings conscience": [65535, 0], "full of chafings and repinings conscience smitten": [65535, 0], "of chafings and repinings conscience smitten too": [65535, 0], "chafings and repinings conscience smitten too he": [65535, 0], "and repinings conscience smitten too he could": [65535, 0], "repinings conscience smitten too he could not": [65535, 0], "conscience smitten too he could not meet": [65535, 0], "smitten too he could not meet amy": [65535, 0], "too he could not meet amy lawrence's": [65535, 0], "he could not meet amy lawrence's eye": [65535, 0], "could not meet amy lawrence's eye he": [65535, 0], "not meet amy lawrence's eye he could": [65535, 0], "meet amy lawrence's eye he could not": [65535, 0], "amy lawrence's eye he could not brook": [65535, 0], "lawrence's eye he could not brook her": [65535, 0], "eye he could not brook her loving": [65535, 0], "he could not brook her loving gaze": [65535, 0], "could not brook her loving gaze but": [65535, 0], "not brook her loving gaze but when": [65535, 0], "brook her loving gaze but when he": [65535, 0], "her loving gaze but when he saw": [65535, 0], "loving gaze but when he saw this": [65535, 0], "gaze but when he saw this small": [65535, 0], "but when he saw this small new": [65535, 0], "when he saw this small new comer": [65535, 0], "he saw this small new comer his": [65535, 0], "saw this small new comer his soul": [65535, 0], "this small new comer his soul was": [65535, 0], "small new comer his soul was all": [65535, 0], "new comer his soul was all ablaze": [65535, 0], "comer his soul was all ablaze with": [65535, 0], "his soul was all ablaze with bliss": [65535, 0], "soul was all ablaze with bliss in": [65535, 0], "was all ablaze with bliss in a": [65535, 0], "all ablaze with bliss in a moment": [65535, 0], "ablaze with bliss in a moment the": [65535, 0], "with bliss in a moment the next": [65535, 0], "bliss in a moment the next moment": [65535, 0], "in a moment the next moment he": [65535, 0], "a moment the next moment he was": [65535, 0], "moment the next moment he was showing": [65535, 0], "the next moment he was showing off": [65535, 0], "next moment he was showing off with": [65535, 0], "moment he was showing off with all": [65535, 0], "he was showing off with all his": [65535, 0], "was showing off with all his might": [65535, 0], "showing off with all his might cuffing": [65535, 0], "off with all his might cuffing boys": [65535, 0], "with all his might cuffing boys pulling": [65535, 0], "all his might cuffing boys pulling hair": [65535, 0], "his might cuffing boys pulling hair making": [65535, 0], "might cuffing boys pulling hair making faces": [65535, 0], "cuffing boys pulling hair making faces in": [65535, 0], "boys pulling hair making faces in a": [65535, 0], "pulling hair making faces in a word": [65535, 0], "hair making faces in a word using": [65535, 0], "making faces in a word using every": [65535, 0], "faces in a word using every art": [65535, 0], "in a word using every art that": [65535, 0], "a word using every art that seemed": [65535, 0], "word using every art that seemed likely": [65535, 0], "using every art that seemed likely to": [65535, 0], "every art that seemed likely to fascinate": [65535, 0], "art that seemed likely to fascinate a": [65535, 0], "that seemed likely to fascinate a girl": [65535, 0], "seemed likely to fascinate a girl and": [65535, 0], "likely to fascinate a girl and win": [65535, 0], "to fascinate a girl and win her": [65535, 0], "fascinate a girl and win her applause": [65535, 0], "a girl and win her applause his": [65535, 0], "girl and win her applause his exaltation": [65535, 0], "and win her applause his exaltation had": [65535, 0], "win her applause his exaltation had but": [65535, 0], "her applause his exaltation had but one": [65535, 0], "applause his exaltation had but one alloy": [65535, 0], "his exaltation had but one alloy the": [65535, 0], "exaltation had but one alloy the memory": [65535, 0], "had but one alloy the memory of": [65535, 0], "but one alloy the memory of his": [65535, 0], "one alloy the memory of his humiliation": [65535, 0], "alloy the memory of his humiliation in": [65535, 0], "the memory of his humiliation in this": [65535, 0], "memory of his humiliation in this angel's": [65535, 0], "of his humiliation in this angel's garden": [65535, 0], "his humiliation in this angel's garden and": [65535, 0], "humiliation in this angel's garden and that": [65535, 0], "in this angel's garden and that record": [65535, 0], "this angel's garden and that record in": [65535, 0], "angel's garden and that record in sand": [65535, 0], "garden and that record in sand was": [65535, 0], "and that record in sand was fast": [65535, 0], "that record in sand was fast washing": [65535, 0], "record in sand was fast washing out": [65535, 0], "in sand was fast washing out under": [65535, 0], "sand was fast washing out under the": [65535, 0], "was fast washing out under the waves": [65535, 0], "fast washing out under the waves of": [65535, 0], "washing out under the waves of happiness": [65535, 0], "out under the waves of happiness that": [65535, 0], "under the waves of happiness that were": [65535, 0], "the waves of happiness that were sweeping": [65535, 0], "waves of happiness that were sweeping over": [65535, 0], "of happiness that were sweeping over it": [65535, 0], "happiness that were sweeping over it now": [65535, 0], "that were sweeping over it now the": [65535, 0], "were sweeping over it now the visitors": [65535, 0], "sweeping over it now the visitors were": [65535, 0], "over it now the visitors were given": [65535, 0], "it now the visitors were given the": [65535, 0], "now the visitors were given the highest": [65535, 0], "the visitors were given the highest seat": [65535, 0], "visitors were given the highest seat of": [65535, 0], "were given the highest seat of honor": [65535, 0], "given the highest seat of honor and": [65535, 0], "the highest seat of honor and as": [65535, 0], "highest seat of honor and as soon": [65535, 0], "seat of honor and as soon as": [65535, 0], "of honor and as soon as mr": [65535, 0], "honor and as soon as mr walters'": [65535, 0], "and as soon as mr walters' speech": [65535, 0], "as soon as mr walters' speech was": [65535, 0], "soon as mr walters' speech was finished": [65535, 0], "as mr walters' speech was finished he": [65535, 0], "mr walters' speech was finished he introduced": [65535, 0], "walters' speech was finished he introduced them": [65535, 0], "speech was finished he introduced them to": [65535, 0], "was finished he introduced them to the": [65535, 0], "finished he introduced them to the school": [65535, 0], "he introduced them to the school the": [65535, 0], "introduced them to the school the middle": [65535, 0], "them to the school the middle aged": [65535, 0], "to the school the middle aged man": [65535, 0], "the school the middle aged man turned": [65535, 0], "school the middle aged man turned out": [65535, 0], "the middle aged man turned out to": [65535, 0], "middle aged man turned out to be": [65535, 0], "aged man turned out to be a": [65535, 0], "man turned out to be a prodigious": [65535, 0], "turned out to be a prodigious personage": [65535, 0], "out to be a prodigious personage no": [65535, 0], "to be a prodigious personage no less": [65535, 0], "be a prodigious personage no less a": [65535, 0], "a prodigious personage no less a one": [65535, 0], "prodigious personage no less a one than": [65535, 0], "personage no less a one than the": [65535, 0], "no less a one than the county": [65535, 0], "less a one than the county judge": [65535, 0], "a one than the county judge altogether": [65535, 0], "one than the county judge altogether the": [65535, 0], "than the county judge altogether the most": [65535, 0], "the county judge altogether the most august": [65535, 0], "county judge altogether the most august creation": [65535, 0], "judge altogether the most august creation these": [65535, 0], "altogether the most august creation these children": [65535, 0], "the most august creation these children had": [65535, 0], "most august creation these children had ever": [65535, 0], "august creation these children had ever looked": [65535, 0], "creation these children had ever looked upon": [65535, 0], "these children had ever looked upon and": [65535, 0], "children had ever looked upon and they": [65535, 0], "had ever looked upon and they wondered": [65535, 0], "ever looked upon and they wondered what": [65535, 0], "looked upon and they wondered what kind": [65535, 0], "upon and they wondered what kind of": [65535, 0], "and they wondered what kind of material": [65535, 0], "they wondered what kind of material he": [65535, 0], "wondered what kind of material he was": [65535, 0], "what kind of material he was made": [65535, 0], "kind of material he was made of": [65535, 0], "of material he was made of and": [65535, 0], "material he was made of and they": [65535, 0], "he was made of and they half": [65535, 0], "was made of and they half wanted": [65535, 0], "made of and they half wanted to": [65535, 0], "of and they half wanted to hear": [65535, 0], "and they half wanted to hear him": [65535, 0], "they half wanted to hear him roar": [65535, 0], "half wanted to hear him roar and": [65535, 0], "wanted to hear him roar and were": [65535, 0], "to hear him roar and were half": [65535, 0], "hear him roar and were half afraid": [65535, 0], "him roar and were half afraid he": [65535, 0], "roar and were half afraid he might": [65535, 0], "and were half afraid he might too": [65535, 0], "were half afraid he might too he": [65535, 0], "half afraid he might too he was": [65535, 0], "afraid he might too he was from": [65535, 0], "he might too he was from constantinople": [65535, 0], "might too he was from constantinople twelve": [65535, 0], "too he was from constantinople twelve miles": [65535, 0], "he was from constantinople twelve miles away": [65535, 0], "was from constantinople twelve miles away so": [65535, 0], "from constantinople twelve miles away so he": [65535, 0], "constantinople twelve miles away so he had": [65535, 0], "twelve miles away so he had travelled": [65535, 0], "miles away so he had travelled and": [65535, 0], "away so he had travelled and seen": [65535, 0], "so he had travelled and seen the": [65535, 0], "he had travelled and seen the world": [65535, 0], "had travelled and seen the world these": [65535, 0], "travelled and seen the world these very": [65535, 0], "and seen the world these very eyes": [65535, 0], "seen the world these very eyes had": [65535, 0], "the world these very eyes had looked": [65535, 0], "world these very eyes had looked upon": [65535, 0], "these very eyes had looked upon the": [65535, 0], "very eyes had looked upon the county": [65535, 0], "eyes had looked upon the county court": [65535, 0], "had looked upon the county court house": [65535, 0], "looked upon the county court house which": [65535, 0], "upon the county court house which was": [65535, 0], "the county court house which was said": [65535, 0], "county court house which was said to": [65535, 0], "court house which was said to have": [65535, 0], "house which was said to have a": [65535, 0], "which was said to have a tin": [65535, 0], "was said to have a tin roof": [65535, 0], "said to have a tin roof the": [65535, 0], "to have a tin roof the awe": [65535, 0], "have a tin roof the awe which": [65535, 0], "a tin roof the awe which these": [65535, 0], "tin roof the awe which these reflections": [65535, 0], "roof the awe which these reflections inspired": [65535, 0], "the awe which these reflections inspired was": [65535, 0], "awe which these reflections inspired was attested": [65535, 0], "which these reflections inspired was attested by": [65535, 0], "these reflections inspired was attested by the": [65535, 0], "reflections inspired was attested by the impressive": [65535, 0], "inspired was attested by the impressive silence": [65535, 0], "was attested by the impressive silence and": [65535, 0], "attested by the impressive silence and the": [65535, 0], "by the impressive silence and the ranks": [65535, 0], "the impressive silence and the ranks of": [65535, 0], "impressive silence and the ranks of staring": [65535, 0], "silence and the ranks of staring eyes": [65535, 0], "and the ranks of staring eyes this": [65535, 0], "the ranks of staring eyes this was": [65535, 0], "ranks of staring eyes this was the": [65535, 0], "of staring eyes this was the great": [65535, 0], "staring eyes this was the great judge": [65535, 0], "eyes this was the great judge thatcher": [65535, 0], "this was the great judge thatcher brother": [65535, 0], "was the great judge thatcher brother of": [65535, 0], "the great judge thatcher brother of their": [65535, 0], "great judge thatcher brother of their own": [65535, 0], "judge thatcher brother of their own lawyer": [65535, 0], "thatcher brother of their own lawyer jeff": [65535, 0], "brother of their own lawyer jeff thatcher": [65535, 0], "of their own lawyer jeff thatcher immediately": [65535, 0], "their own lawyer jeff thatcher immediately went": [65535, 0], "own lawyer jeff thatcher immediately went forward": [65535, 0], "lawyer jeff thatcher immediately went forward to": [65535, 0], "jeff thatcher immediately went forward to be": [65535, 0], "thatcher immediately went forward to be familiar": [65535, 0], "immediately went forward to be familiar with": [65535, 0], "went forward to be familiar with the": [65535, 0], "forward to be familiar with the great": [65535, 0], "to be familiar with the great man": [65535, 0], "be familiar with the great man and": [65535, 0], "familiar with the great man and be": [65535, 0], "with the great man and be envied": [65535, 0], "the great man and be envied by": [65535, 0], "great man and be envied by the": [65535, 0], "man and be envied by the school": [65535, 0], "and be envied by the school it": [65535, 0], "be envied by the school it would": [65535, 0], "envied by the school it would have": [65535, 0], "by the school it would have been": [65535, 0], "the school it would have been music": [65535, 0], "school it would have been music to": [65535, 0], "it would have been music to his": [65535, 0], "would have been music to his soul": [65535, 0], "have been music to his soul to": [65535, 0], "been music to his soul to hear": [65535, 0], "music to his soul to hear the": [65535, 0], "to his soul to hear the whisperings": [65535, 0], "his soul to hear the whisperings look": [65535, 0], "soul to hear the whisperings look at": [65535, 0], "to hear the whisperings look at him": [65535, 0], "hear the whisperings look at him jim": [65535, 0], "the whisperings look at him jim he's": [65535, 0], "whisperings look at him jim he's a": [65535, 0], "look at him jim he's a going": [65535, 0], "at him jim he's a going up": [65535, 0], "him jim he's a going up there": [65535, 0], "jim he's a going up there say": [65535, 0], "he's a going up there say look": [65535, 0], "a going up there say look he's": [65535, 0], "going up there say look he's a": [65535, 0], "up there say look he's a going": [65535, 0], "there say look he's a going to": [65535, 0], "say look he's a going to shake": [65535, 0], "look he's a going to shake hands": [65535, 0], "he's a going to shake hands with": [65535, 0], "a going to shake hands with him": [65535, 0], "going to shake hands with him he": [65535, 0], "to shake hands with him he is": [65535, 0], "shake hands with him he is shaking": [65535, 0], "hands with him he is shaking hands": [65535, 0], "with him he is shaking hands with": [65535, 0], "him he is shaking hands with him": [65535, 0], "he is shaking hands with him by": [65535, 0], "is shaking hands with him by jings": [65535, 0], "shaking hands with him by jings don't": [65535, 0], "hands with him by jings don't you": [65535, 0], "with him by jings don't you wish": [65535, 0], "him by jings don't you wish you": [65535, 0], "by jings don't you wish you was": [65535, 0], "jings don't you wish you was jeff": [65535, 0], "don't you wish you was jeff mr": [65535, 0], "you wish you was jeff mr walters": [65535, 0], "wish you was jeff mr walters fell": [65535, 0], "you was jeff mr walters fell to": [65535, 0], "was jeff mr walters fell to showing": [65535, 0], "jeff mr walters fell to showing off": [65535, 0], "mr walters fell to showing off with": [65535, 0], "walters fell to showing off with all": [65535, 0], "fell to showing off with all sorts": [65535, 0], "to showing off with all sorts of": [65535, 0], "showing off with all sorts of official": [65535, 0], "off with all sorts of official bustlings": [65535, 0], "with all sorts of official bustlings and": [65535, 0], "all sorts of official bustlings and activities": [65535, 0], "sorts of official bustlings and activities giving": [65535, 0], "of official bustlings and activities giving orders": [65535, 0], "official bustlings and activities giving orders delivering": [65535, 0], "bustlings and activities giving orders delivering judgments": [65535, 0], "and activities giving orders delivering judgments discharging": [65535, 0], "activities giving orders delivering judgments discharging directions": [65535, 0], "giving orders delivering judgments discharging directions here": [65535, 0], "orders delivering judgments discharging directions here there": [65535, 0], "delivering judgments discharging directions here there everywhere": [65535, 0], "judgments discharging directions here there everywhere that": [65535, 0], "discharging directions here there everywhere that he": [65535, 0], "directions here there everywhere that he could": [65535, 0], "here there everywhere that he could find": [65535, 0], "there everywhere that he could find a": [65535, 0], "everywhere that he could find a target": [65535, 0], "that he could find a target the": [65535, 0], "he could find a target the librarian": [65535, 0], "could find a target the librarian showed": [65535, 0], "find a target the librarian showed off": [65535, 0], "a target the librarian showed off running": [65535, 0], "target the librarian showed off running hither": [65535, 0], "the librarian showed off running hither and": [65535, 0], "librarian showed off running hither and thither": [65535, 0], "showed off running hither and thither with": [65535, 0], "off running hither and thither with his": [65535, 0], "running hither and thither with his arms": [65535, 0], "hither and thither with his arms full": [65535, 0], "and thither with his arms full of": [65535, 0], "thither with his arms full of books": [65535, 0], "with his arms full of books and": [65535, 0], "his arms full of books and making": [65535, 0], "arms full of books and making a": [65535, 0], "full of books and making a deal": [65535, 0], "of books and making a deal of": [65535, 0], "books and making a deal of the": [65535, 0], "and making a deal of the splutter": [65535, 0], "making a deal of the splutter and": [65535, 0], "a deal of the splutter and fuss": [65535, 0], "deal of the splutter and fuss that": [65535, 0], "of the splutter and fuss that insect": [65535, 0], "the splutter and fuss that insect authority": [65535, 0], "splutter and fuss that insect authority delights": [65535, 0], "and fuss that insect authority delights in": [65535, 0], "fuss that insect authority delights in the": [65535, 0], "that insect authority delights in the young": [65535, 0], "insect authority delights in the young lady": [65535, 0], "authority delights in the young lady teachers": [65535, 0], "delights in the young lady teachers showed": [65535, 0], "in the young lady teachers showed off": [65535, 0], "the young lady teachers showed off bending": [65535, 0], "young lady teachers showed off bending sweetly": [65535, 0], "lady teachers showed off bending sweetly over": [65535, 0], "teachers showed off bending sweetly over pupils": [65535, 0], "showed off bending sweetly over pupils that": [65535, 0], "off bending sweetly over pupils that were": [65535, 0], "bending sweetly over pupils that were lately": [65535, 0], "sweetly over pupils that were lately being": [65535, 0], "over pupils that were lately being boxed": [65535, 0], "pupils that were lately being boxed lifting": [65535, 0], "that were lately being boxed lifting pretty": [65535, 0], "were lately being boxed lifting pretty warning": [65535, 0], "lately being boxed lifting pretty warning fingers": [65535, 0], "being boxed lifting pretty warning fingers at": [65535, 0], "boxed lifting pretty warning fingers at bad": [65535, 0], "lifting pretty warning fingers at bad little": [65535, 0], "pretty warning fingers at bad little boys": [65535, 0], "warning fingers at bad little boys and": [65535, 0], "fingers at bad little boys and patting": [65535, 0], "at bad little boys and patting good": [65535, 0], "bad little boys and patting good ones": [65535, 0], "little boys and patting good ones lovingly": [65535, 0], "boys and patting good ones lovingly the": [65535, 0], "and patting good ones lovingly the young": [65535, 0], "patting good ones lovingly the young gentlemen": [65535, 0], "good ones lovingly the young gentlemen teachers": [65535, 0], "ones lovingly the young gentlemen teachers showed": [65535, 0], "lovingly the young gentlemen teachers showed off": [65535, 0], "the young gentlemen teachers showed off with": [65535, 0], "young gentlemen teachers showed off with small": [65535, 0], "gentlemen teachers showed off with small scoldings": [65535, 0], "teachers showed off with small scoldings and": [65535, 0], "showed off with small scoldings and other": [65535, 0], "off with small scoldings and other little": [65535, 0], "with small scoldings and other little displays": [65535, 0], "small scoldings and other little displays of": [65535, 0], "scoldings and other little displays of authority": [65535, 0], "and other little displays of authority and": [65535, 0], "other little displays of authority and fine": [65535, 0], "little displays of authority and fine attention": [65535, 0], "displays of authority and fine attention to": [65535, 0], "of authority and fine attention to discipline": [65535, 0], "authority and fine attention to discipline and": [65535, 0], "and fine attention to discipline and most": [65535, 0], "fine attention to discipline and most of": [65535, 0], "attention to discipline and most of the": [65535, 0], "to discipline and most of the teachers": [65535, 0], "discipline and most of the teachers of": [65535, 0], "and most of the teachers of both": [65535, 0], "most of the teachers of both sexes": [65535, 0], "of the teachers of both sexes found": [65535, 0], "the teachers of both sexes found business": [65535, 0], "teachers of both sexes found business up": [65535, 0], "of both sexes found business up at": [65535, 0], "both sexes found business up at the": [65535, 0], "sexes found business up at the library": [65535, 0], "found business up at the library by": [65535, 0], "business up at the library by the": [65535, 0], "up at the library by the pulpit": [65535, 0], "at the library by the pulpit and": [65535, 0], "the library by the pulpit and it": [65535, 0], "library by the pulpit and it was": [65535, 0], "by the pulpit and it was business": [65535, 0], "the pulpit and it was business that": [65535, 0], "pulpit and it was business that frequently": [65535, 0], "and it was business that frequently had": [65535, 0], "it was business that frequently had to": [65535, 0], "was business that frequently had to be": [65535, 0], "business that frequently had to be done": [65535, 0], "that frequently had to be done over": [65535, 0], "frequently had to be done over again": [65535, 0], "had to be done over again two": [65535, 0], "to be done over again two or": [65535, 0], "be done over again two or three": [65535, 0], "done over again two or three times": [65535, 0], "over again two or three times with": [65535, 0], "again two or three times with much": [65535, 0], "two or three times with much seeming": [65535, 0], "or three times with much seeming vexation": [65535, 0], "three times with much seeming vexation the": [65535, 0], "times with much seeming vexation the little": [65535, 0], "with much seeming vexation the little girls": [65535, 0], "much seeming vexation the little girls showed": [65535, 0], "seeming vexation the little girls showed off": [65535, 0], "vexation the little girls showed off in": [65535, 0], "the little girls showed off in various": [65535, 0], "little girls showed off in various ways": [65535, 0], "girls showed off in various ways and": [65535, 0], "showed off in various ways and the": [65535, 0], "off in various ways and the little": [65535, 0], "in various ways and the little boys": [65535, 0], "various ways and the little boys showed": [65535, 0], "ways and the little boys showed off": [65535, 0], "and the little boys showed off with": [65535, 0], "the little boys showed off with such": [65535, 0], "little boys showed off with such diligence": [65535, 0], "boys showed off with such diligence that": [65535, 0], "showed off with such diligence that the": [65535, 0], "off with such diligence that the air": [65535, 0], "with such diligence that the air was": [65535, 0], "such diligence that the air was thick": [65535, 0], "diligence that the air was thick with": [65535, 0], "that the air was thick with paper": [65535, 0], "the air was thick with paper wads": [65535, 0], "air was thick with paper wads and": [65535, 0], "was thick with paper wads and the": [65535, 0], "thick with paper wads and the murmur": [65535, 0], "with paper wads and the murmur of": [65535, 0], "paper wads and the murmur of scufflings": [65535, 0], "wads and the murmur of scufflings and": [65535, 0], "and the murmur of scufflings and above": [65535, 0], "the murmur of scufflings and above it": [65535, 0], "murmur of scufflings and above it all": [65535, 0], "of scufflings and above it all the": [65535, 0], "scufflings and above it all the great": [65535, 0], "and above it all the great man": [65535, 0], "above it all the great man sat": [65535, 0], "it all the great man sat and": [65535, 0], "all the great man sat and beamed": [65535, 0], "the great man sat and beamed a": [65535, 0], "great man sat and beamed a majestic": [65535, 0], "man sat and beamed a majestic judicial": [65535, 0], "sat and beamed a majestic judicial smile": [65535, 0], "and beamed a majestic judicial smile upon": [65535, 0], "beamed a majestic judicial smile upon all": [65535, 0], "a majestic judicial smile upon all the": [65535, 0], "majestic judicial smile upon all the house": [65535, 0], "judicial smile upon all the house and": [65535, 0], "smile upon all the house and warmed": [65535, 0], "upon all the house and warmed himself": [65535, 0], "all the house and warmed himself in": [65535, 0], "the house and warmed himself in the": [65535, 0], "house and warmed himself in the sun": [65535, 0], "and warmed himself in the sun of": [65535, 0], "warmed himself in the sun of his": [65535, 0], "himself in the sun of his own": [65535, 0], "in the sun of his own grandeur": [65535, 0], "the sun of his own grandeur for": [65535, 0], "sun of his own grandeur for he": [65535, 0], "of his own grandeur for he was": [65535, 0], "his own grandeur for he was showing": [65535, 0], "own grandeur for he was showing off": [65535, 0], "grandeur for he was showing off too": [65535, 0], "for he was showing off too there": [65535, 0], "he was showing off too there was": [65535, 0], "was showing off too there was only": [65535, 0], "showing off too there was only one": [65535, 0], "off too there was only one thing": [65535, 0], "too there was only one thing wanting": [65535, 0], "there was only one thing wanting to": [65535, 0], "was only one thing wanting to make": [65535, 0], "only one thing wanting to make mr": [65535, 0], "one thing wanting to make mr walters'": [65535, 0], "thing wanting to make mr walters' ecstasy": [65535, 0], "wanting to make mr walters' ecstasy complete": [65535, 0], "to make mr walters' ecstasy complete and": [65535, 0], "make mr walters' ecstasy complete and that": [65535, 0], "mr walters' ecstasy complete and that was": [65535, 0], "walters' ecstasy complete and that was a": [65535, 0], "ecstasy complete and that was a chance": [65535, 0], "complete and that was a chance to": [65535, 0], "and that was a chance to deliver": [65535, 0], "that was a chance to deliver a": [65535, 0], "was a chance to deliver a bible": [65535, 0], "a chance to deliver a bible prize": [65535, 0], "chance to deliver a bible prize and": [65535, 0], "to deliver a bible prize and exhibit": [65535, 0], "deliver a bible prize and exhibit a": [65535, 0], "a bible prize and exhibit a prodigy": [65535, 0], "bible prize and exhibit a prodigy several": [65535, 0], "prize and exhibit a prodigy several pupils": [65535, 0], "and exhibit a prodigy several pupils had": [65535, 0], "exhibit a prodigy several pupils had a": [65535, 0], "a prodigy several pupils had a few": [65535, 0], "prodigy several pupils had a few yellow": [65535, 0], "several pupils had a few yellow tickets": [65535, 0], "pupils had a few yellow tickets but": [65535, 0], "had a few yellow tickets but none": [65535, 0], "a few yellow tickets but none had": [65535, 0], "few yellow tickets but none had enough": [65535, 0], "yellow tickets but none had enough he": [65535, 0], "tickets but none had enough he had": [65535, 0], "but none had enough he had been": [65535, 0], "none had enough he had been around": [65535, 0], "had enough he had been around among": [65535, 0], "enough he had been around among the": [65535, 0], "he had been around among the star": [65535, 0], "had been around among the star pupils": [65535, 0], "been around among the star pupils inquiring": [65535, 0], "around among the star pupils inquiring he": [65535, 0], "among the star pupils inquiring he would": [65535, 0], "the star pupils inquiring he would have": [65535, 0], "star pupils inquiring he would have given": [65535, 0], "pupils inquiring he would have given worlds": [65535, 0], "inquiring he would have given worlds now": [65535, 0], "he would have given worlds now to": [65535, 0], "would have given worlds now to have": [65535, 0], "have given worlds now to have that": [65535, 0], "given worlds now to have that german": [65535, 0], "worlds now to have that german lad": [65535, 0], "now to have that german lad back": [65535, 0], "to have that german lad back again": [65535, 0], "have that german lad back again with": [65535, 0], "that german lad back again with a": [65535, 0], "german lad back again with a sound": [65535, 0], "lad back again with a sound mind": [65535, 0], "back again with a sound mind and": [65535, 0], "again with a sound mind and now": [65535, 0], "with a sound mind and now at": [65535, 0], "a sound mind and now at this": [65535, 0], "sound mind and now at this moment": [65535, 0], "mind and now at this moment when": [65535, 0], "and now at this moment when hope": [65535, 0], "now at this moment when hope was": [65535, 0], "at this moment when hope was dead": [65535, 0], "this moment when hope was dead tom": [65535, 0], "moment when hope was dead tom sawyer": [65535, 0], "when hope was dead tom sawyer came": [65535, 0], "hope was dead tom sawyer came forward": [65535, 0], "was dead tom sawyer came forward with": [65535, 0], "dead tom sawyer came forward with nine": [65535, 0], "tom sawyer came forward with nine yellow": [65535, 0], "sawyer came forward with nine yellow tickets": [65535, 0], "came forward with nine yellow tickets nine": [65535, 0], "forward with nine yellow tickets nine red": [65535, 0], "with nine yellow tickets nine red tickets": [65535, 0], "nine yellow tickets nine red tickets and": [65535, 0], "yellow tickets nine red tickets and ten": [65535, 0], "tickets nine red tickets and ten blue": [65535, 0], "nine red tickets and ten blue ones": [65535, 0], "red tickets and ten blue ones and": [65535, 0], "tickets and ten blue ones and demanded": [65535, 0], "and ten blue ones and demanded a": [65535, 0], "ten blue ones and demanded a bible": [65535, 0], "blue ones and demanded a bible this": [65535, 0], "ones and demanded a bible this was": [65535, 0], "and demanded a bible this was a": [65535, 0], "demanded a bible this was a thunderbolt": [65535, 0], "a bible this was a thunderbolt out": [65535, 0], "bible this was a thunderbolt out of": [65535, 0], "this was a thunderbolt out of a": [65535, 0], "was a thunderbolt out of a clear": [65535, 0], "a thunderbolt out of a clear sky": [65535, 0], "thunderbolt out of a clear sky walters": [65535, 0], "out of a clear sky walters was": [65535, 0], "of a clear sky walters was not": [65535, 0], "a clear sky walters was not expecting": [65535, 0], "clear sky walters was not expecting an": [65535, 0], "sky walters was not expecting an application": [65535, 0], "walters was not expecting an application from": [65535, 0], "was not expecting an application from this": [65535, 0], "not expecting an application from this source": [65535, 0], "expecting an application from this source for": [65535, 0], "an application from this source for the": [65535, 0], "application from this source for the next": [65535, 0], "from this source for the next ten": [65535, 0], "this source for the next ten years": [65535, 0], "source for the next ten years but": [65535, 0], "for the next ten years but there": [65535, 0], "the next ten years but there was": [65535, 0], "next ten years but there was no": [65535, 0], "ten years but there was no getting": [65535, 0], "years but there was no getting around": [65535, 0], "but there was no getting around it": [65535, 0], "there was no getting around it here": [65535, 0], "was no getting around it here were": [65535, 0], "no getting around it here were the": [65535, 0], "getting around it here were the certified": [65535, 0], "around it here were the certified checks": [65535, 0], "it here were the certified checks and": [65535, 0], "here were the certified checks and they": [65535, 0], "were the certified checks and they were": [65535, 0], "the certified checks and they were good": [65535, 0], "certified checks and they were good for": [65535, 0], "checks and they were good for their": [65535, 0], "and they were good for their face": [65535, 0], "they were good for their face tom": [65535, 0], "were good for their face tom was": [65535, 0], "good for their face tom was therefore": [65535, 0], "for their face tom was therefore elevated": [65535, 0], "their face tom was therefore elevated to": [65535, 0], "face tom was therefore elevated to a": [65535, 0], "tom was therefore elevated to a place": [65535, 0], "was therefore elevated to a place with": [65535, 0], "therefore elevated to a place with the": [65535, 0], "elevated to a place with the judge": [65535, 0], "to a place with the judge and": [65535, 0], "a place with the judge and the": [65535, 0], "place with the judge and the other": [65535, 0], "with the judge and the other elect": [65535, 0], "the judge and the other elect and": [65535, 0], "judge and the other elect and the": [65535, 0], "and the other elect and the great": [65535, 0], "the other elect and the great news": [65535, 0], "other elect and the great news was": [65535, 0], "elect and the great news was announced": [65535, 0], "and the great news was announced from": [65535, 0], "the great news was announced from headquarters": [65535, 0], "great news was announced from headquarters it": [65535, 0], "news was announced from headquarters it was": [65535, 0], "was announced from headquarters it was the": [65535, 0], "announced from headquarters it was the most": [65535, 0], "from headquarters it was the most stunning": [65535, 0], "headquarters it was the most stunning surprise": [65535, 0], "it was the most stunning surprise of": [65535, 0], "was the most stunning surprise of the": [65535, 0], "the most stunning surprise of the decade": [65535, 0], "most stunning surprise of the decade and": [65535, 0], "stunning surprise of the decade and so": [65535, 0], "surprise of the decade and so profound": [65535, 0], "of the decade and so profound was": [65535, 0], "the decade and so profound was the": [65535, 0], "decade and so profound was the sensation": [65535, 0], "and so profound was the sensation that": [65535, 0], "so profound was the sensation that it": [65535, 0], "profound was the sensation that it lifted": [65535, 0], "was the sensation that it lifted the": [65535, 0], "the sensation that it lifted the new": [65535, 0], "sensation that it lifted the new hero": [65535, 0], "that it lifted the new hero up": [65535, 0], "it lifted the new hero up to": [65535, 0], "lifted the new hero up to the": [65535, 0], "the new hero up to the judicial": [65535, 0], "new hero up to the judicial one's": [65535, 0], "hero up to the judicial one's altitude": [65535, 0], "up to the judicial one's altitude and": [65535, 0], "to the judicial one's altitude and the": [65535, 0], "the judicial one's altitude and the school": [65535, 0], "judicial one's altitude and the school had": [65535, 0], "one's altitude and the school had two": [65535, 0], "altitude and the school had two marvels": [65535, 0], "and the school had two marvels to": [65535, 0], "the school had two marvels to gaze": [65535, 0], "school had two marvels to gaze upon": [65535, 0], "had two marvels to gaze upon in": [65535, 0], "two marvels to gaze upon in place": [65535, 0], "marvels to gaze upon in place of": [65535, 0], "to gaze upon in place of one": [65535, 0], "gaze upon in place of one the": [65535, 0], "upon in place of one the boys": [65535, 0], "in place of one the boys were": [65535, 0], "place of one the boys were all": [65535, 0], "of one the boys were all eaten": [65535, 0], "one the boys were all eaten up": [65535, 0], "the boys were all eaten up with": [65535, 0], "boys were all eaten up with envy": [65535, 0], "were all eaten up with envy but": [65535, 0], "all eaten up with envy but those": [65535, 0], "eaten up with envy but those that": [65535, 0], "up with envy but those that suffered": [65535, 0], "with envy but those that suffered the": [65535, 0], "envy but those that suffered the bitterest": [65535, 0], "but those that suffered the bitterest pangs": [65535, 0], "those that suffered the bitterest pangs were": [65535, 0], "that suffered the bitterest pangs were those": [65535, 0], "suffered the bitterest pangs were those who": [65535, 0], "the bitterest pangs were those who perceived": [65535, 0], "bitterest pangs were those who perceived too": [65535, 0], "pangs were those who perceived too late": [65535, 0], "were those who perceived too late that": [65535, 0], "those who perceived too late that they": [65535, 0], "who perceived too late that they themselves": [65535, 0], "perceived too late that they themselves had": [65535, 0], "too late that they themselves had contributed": [65535, 0], "late that they themselves had contributed to": [65535, 0], "that they themselves had contributed to this": [65535, 0], "they themselves had contributed to this hated": [65535, 0], "themselves had contributed to this hated splendor": [65535, 0], "had contributed to this hated splendor by": [65535, 0], "contributed to this hated splendor by trading": [65535, 0], "to this hated splendor by trading tickets": [65535, 0], "this hated splendor by trading tickets to": [65535, 0], "hated splendor by trading tickets to tom": [65535, 0], "splendor by trading tickets to tom for": [65535, 0], "by trading tickets to tom for the": [65535, 0], "trading tickets to tom for the wealth": [65535, 0], "tickets to tom for the wealth he": [65535, 0], "to tom for the wealth he had": [65535, 0], "tom for the wealth he had amassed": [65535, 0], "for the wealth he had amassed in": [65535, 0], "the wealth he had amassed in selling": [65535, 0], "wealth he had amassed in selling whitewashing": [65535, 0], "he had amassed in selling whitewashing privileges": [65535, 0], "had amassed in selling whitewashing privileges these": [65535, 0], "amassed in selling whitewashing privileges these despised": [65535, 0], "in selling whitewashing privileges these despised themselves": [65535, 0], "selling whitewashing privileges these despised themselves as": [65535, 0], "whitewashing privileges these despised themselves as being": [65535, 0], "privileges these despised themselves as being the": [65535, 0], "these despised themselves as being the dupes": [65535, 0], "despised themselves as being the dupes of": [65535, 0], "themselves as being the dupes of a": [65535, 0], "as being the dupes of a wily": [65535, 0], "being the dupes of a wily fraud": [65535, 0], "the dupes of a wily fraud a": [65535, 0], "dupes of a wily fraud a guileful": [65535, 0], "of a wily fraud a guileful snake": [65535, 0], "a wily fraud a guileful snake in": [65535, 0], "wily fraud a guileful snake in the": [65535, 0], "fraud a guileful snake in the grass": [65535, 0], "a guileful snake in the grass the": [65535, 0], "guileful snake in the grass the prize": [65535, 0], "snake in the grass the prize was": [65535, 0], "in the grass the prize was delivered": [65535, 0], "the grass the prize was delivered to": [65535, 0], "grass the prize was delivered to tom": [65535, 0], "the prize was delivered to tom with": [65535, 0], "prize was delivered to tom with as": [65535, 0], "was delivered to tom with as much": [65535, 0], "delivered to tom with as much effusion": [65535, 0], "to tom with as much effusion as": [65535, 0], "tom with as much effusion as the": [65535, 0], "with as much effusion as the superintendent": [65535, 0], "as much effusion as the superintendent could": [65535, 0], "much effusion as the superintendent could pump": [65535, 0], "effusion as the superintendent could pump up": [65535, 0], "as the superintendent could pump up under": [65535, 0], "the superintendent could pump up under the": [65535, 0], "superintendent could pump up under the circumstances": [65535, 0], "could pump up under the circumstances but": [65535, 0], "pump up under the circumstances but it": [65535, 0], "up under the circumstances but it lacked": [65535, 0], "under the circumstances but it lacked somewhat": [65535, 0], "the circumstances but it lacked somewhat of": [65535, 0], "circumstances but it lacked somewhat of the": [65535, 0], "but it lacked somewhat of the true": [65535, 0], "it lacked somewhat of the true gush": [65535, 0], "lacked somewhat of the true gush for": [65535, 0], "somewhat of the true gush for the": [65535, 0], "of the true gush for the poor": [65535, 0], "the true gush for the poor fellow's": [65535, 0], "true gush for the poor fellow's instinct": [65535, 0], "gush for the poor fellow's instinct taught": [65535, 0], "for the poor fellow's instinct taught him": [65535, 0], "the poor fellow's instinct taught him that": [65535, 0], "poor fellow's instinct taught him that there": [65535, 0], "fellow's instinct taught him that there was": [65535, 0], "instinct taught him that there was a": [65535, 0], "taught him that there was a mystery": [65535, 0], "him that there was a mystery here": [65535, 0], "that there was a mystery here that": [65535, 0], "there was a mystery here that could": [65535, 0], "was a mystery here that could not": [65535, 0], "a mystery here that could not well": [65535, 0], "mystery here that could not well bear": [65535, 0], "here that could not well bear the": [65535, 0], "that could not well bear the light": [65535, 0], "could not well bear the light perhaps": [65535, 0], "not well bear the light perhaps it": [65535, 0], "well bear the light perhaps it was": [65535, 0], "bear the light perhaps it was simply": [65535, 0], "the light perhaps it was simply preposterous": [65535, 0], "light perhaps it was simply preposterous that": [65535, 0], "perhaps it was simply preposterous that this": [65535, 0], "it was simply preposterous that this boy": [65535, 0], "was simply preposterous that this boy had": [65535, 0], "simply preposterous that this boy had warehoused": [65535, 0], "preposterous that this boy had warehoused two": [65535, 0], "that this boy had warehoused two thousand": [65535, 0], "this boy had warehoused two thousand sheaves": [65535, 0], "boy had warehoused two thousand sheaves of": [65535, 0], "had warehoused two thousand sheaves of scriptural": [65535, 0], "warehoused two thousand sheaves of scriptural wisdom": [65535, 0], "two thousand sheaves of scriptural wisdom on": [65535, 0], "thousand sheaves of scriptural wisdom on his": [65535, 0], "sheaves of scriptural wisdom on his premises": [65535, 0], "of scriptural wisdom on his premises a": [65535, 0], "scriptural wisdom on his premises a dozen": [65535, 0], "wisdom on his premises a dozen would": [65535, 0], "on his premises a dozen would strain": [65535, 0], "his premises a dozen would strain his": [65535, 0], "premises a dozen would strain his capacity": [65535, 0], "a dozen would strain his capacity without": [65535, 0], "dozen would strain his capacity without a": [65535, 0], "would strain his capacity without a doubt": [65535, 0], "strain his capacity without a doubt amy": [65535, 0], "his capacity without a doubt amy lawrence": [65535, 0], "capacity without a doubt amy lawrence was": [65535, 0], "without a doubt amy lawrence was proud": [65535, 0], "a doubt amy lawrence was proud and": [65535, 0], "doubt amy lawrence was proud and glad": [65535, 0], "amy lawrence was proud and glad and": [65535, 0], "lawrence was proud and glad and she": [65535, 0], "was proud and glad and she tried": [65535, 0], "proud and glad and she tried to": [65535, 0], "and glad and she tried to make": [65535, 0], "glad and she tried to make tom": [65535, 0], "and she tried to make tom see": [65535, 0], "she tried to make tom see it": [65535, 0], "tried to make tom see it in": [65535, 0], "to make tom see it in her": [65535, 0], "make tom see it in her face": [65535, 0], "tom see it in her face but": [65535, 0], "see it in her face but he": [65535, 0], "it in her face but he wouldn't": [65535, 0], "in her face but he wouldn't look": [65535, 0], "her face but he wouldn't look she": [65535, 0], "face but he wouldn't look she wondered": [65535, 0], "but he wouldn't look she wondered then": [65535, 0], "he wouldn't look she wondered then she": [65535, 0], "wouldn't look she wondered then she was": [65535, 0], "look she wondered then she was just": [65535, 0], "she wondered then she was just a": [65535, 0], "wondered then she was just a grain": [65535, 0], "then she was just a grain troubled": [65535, 0], "she was just a grain troubled next": [65535, 0], "was just a grain troubled next a": [65535, 0], "just a grain troubled next a dim": [65535, 0], "a grain troubled next a dim suspicion": [65535, 0], "grain troubled next a dim suspicion came": [65535, 0], "troubled next a dim suspicion came and": [65535, 0], "next a dim suspicion came and went": [65535, 0], "a dim suspicion came and went came": [65535, 0], "dim suspicion came and went came again": [65535, 0], "suspicion came and went came again she": [65535, 0], "came and went came again she watched": [65535, 0], "and went came again she watched a": [65535, 0], "went came again she watched a furtive": [65535, 0], "came again she watched a furtive glance": [65535, 0], "again she watched a furtive glance told": [65535, 0], "she watched a furtive glance told her": [65535, 0], "watched a furtive glance told her worlds": [65535, 0], "a furtive glance told her worlds and": [65535, 0], "furtive glance told her worlds and then": [65535, 0], "glance told her worlds and then her": [65535, 0], "told her worlds and then her heart": [65535, 0], "her worlds and then her heart broke": [65535, 0], "worlds and then her heart broke and": [65535, 0], "and then her heart broke and she": [65535, 0], "then her heart broke and she was": [65535, 0], "her heart broke and she was jealous": [65535, 0], "heart broke and she was jealous and": [65535, 0], "broke and she was jealous and angry": [65535, 0], "and she was jealous and angry and": [65535, 0], "she was jealous and angry and the": [65535, 0], "was jealous and angry and the tears": [65535, 0], "jealous and angry and the tears came": [65535, 0], "and angry and the tears came and": [65535, 0], "angry and the tears came and she": [65535, 0], "and the tears came and she hated": [65535, 0], "the tears came and she hated everybody": [65535, 0], "tears came and she hated everybody tom": [65535, 0], "came and she hated everybody tom most": [65535, 0], "and she hated everybody tom most of": [65535, 0], "she hated everybody tom most of all": [65535, 0], "hated everybody tom most of all she": [65535, 0], "everybody tom most of all she thought": [65535, 0], "tom most of all she thought tom": [65535, 0], "most of all she thought tom was": [65535, 0], "of all she thought tom was introduced": [65535, 0], "all she thought tom was introduced to": [65535, 0], "she thought tom was introduced to the": [65535, 0], "thought tom was introduced to the judge": [65535, 0], "tom was introduced to the judge but": [65535, 0], "was introduced to the judge but his": [65535, 0], "introduced to the judge but his tongue": [65535, 0], "to the judge but his tongue was": [65535, 0], "the judge but his tongue was tied": [65535, 0], "judge but his tongue was tied his": [65535, 0], "but his tongue was tied his breath": [65535, 0], "his tongue was tied his breath would": [65535, 0], "tongue was tied his breath would hardly": [65535, 0], "was tied his breath would hardly come": [65535, 0], "tied his breath would hardly come his": [65535, 0], "his breath would hardly come his heart": [65535, 0], "breath would hardly come his heart quaked": [65535, 0], "would hardly come his heart quaked partly": [65535, 0], "hardly come his heart quaked partly because": [65535, 0], "come his heart quaked partly because of": [65535, 0], "his heart quaked partly because of the": [65535, 0], "heart quaked partly because of the awful": [65535, 0], "quaked partly because of the awful greatness": [65535, 0], "partly because of the awful greatness of": [65535, 0], "because of the awful greatness of the": [65535, 0], "of the awful greatness of the man": [65535, 0], "the awful greatness of the man but": [65535, 0], "awful greatness of the man but mainly": [65535, 0], "greatness of the man but mainly because": [65535, 0], "of the man but mainly because he": [65535, 0], "the man but mainly because he was": [65535, 0], "man but mainly because he was her": [65535, 0], "but mainly because he was her parent": [65535, 0], "mainly because he was her parent he": [65535, 0], "because he was her parent he would": [65535, 0], "he was her parent he would have": [65535, 0], "was her parent he would have liked": [65535, 0], "her parent he would have liked to": [65535, 0], "parent he would have liked to fall": [65535, 0], "he would have liked to fall down": [65535, 0], "would have liked to fall down and": [65535, 0], "have liked to fall down and worship": [65535, 0], "liked to fall down and worship him": [65535, 0], "to fall down and worship him if": [65535, 0], "fall down and worship him if it": [65535, 0], "down and worship him if it were": [65535, 0], "and worship him if it were in": [65535, 0], "worship him if it were in the": [65535, 0], "him if it were in the dark": [65535, 0], "if it were in the dark the": [65535, 0], "it were in the dark the judge": [65535, 0], "were in the dark the judge put": [65535, 0], "in the dark the judge put his": [65535, 0], "the dark the judge put his hand": [65535, 0], "dark the judge put his hand on": [65535, 0], "the judge put his hand on tom's": [65535, 0], "judge put his hand on tom's head": [65535, 0], "put his hand on tom's head and": [65535, 0], "his hand on tom's head and called": [65535, 0], "hand on tom's head and called him": [65535, 0], "on tom's head and called him a": [65535, 0], "tom's head and called him a fine": [65535, 0], "head and called him a fine little": [65535, 0], "and called him a fine little man": [65535, 0], "called him a fine little man and": [65535, 0], "him a fine little man and asked": [65535, 0], "a fine little man and asked him": [65535, 0], "fine little man and asked him what": [65535, 0], "little man and asked him what his": [65535, 0], "man and asked him what his name": [65535, 0], "and asked him what his name was": [65535, 0], "asked him what his name was the": [65535, 0], "him what his name was the boy": [65535, 0], "what his name was the boy stammered": [65535, 0], "his name was the boy stammered gasped": [65535, 0], "name was the boy stammered gasped and": [65535, 0], "was the boy stammered gasped and got": [65535, 0], "the boy stammered gasped and got it": [65535, 0], "boy stammered gasped and got it out": [65535, 0], "stammered gasped and got it out tom": [65535, 0], "gasped and got it out tom oh": [65535, 0], "and got it out tom oh no": [65535, 0], "got it out tom oh no not": [65535, 0], "it out tom oh no not tom": [65535, 0], "out tom oh no not tom it": [65535, 0], "tom oh no not tom it is": [65535, 0], "oh no not tom it is thomas": [65535, 0], "no not tom it is thomas ah": [65535, 0], "not tom it is thomas ah that's": [65535, 0], "tom it is thomas ah that's it": [65535, 0], "it is thomas ah that's it i": [65535, 0], "is thomas ah that's it i thought": [65535, 0], "thomas ah that's it i thought there": [65535, 0], "ah that's it i thought there was": [65535, 0], "that's it i thought there was more": [65535, 0], "it i thought there was more to": [65535, 0], "i thought there was more to it": [65535, 0], "thought there was more to it maybe": [65535, 0], "there was more to it maybe that's": [65535, 0], "was more to it maybe that's very": [65535, 0], "more to it maybe that's very well": [65535, 0], "to it maybe that's very well but": [65535, 0], "it maybe that's very well but you've": [65535, 0], "maybe that's very well but you've another": [65535, 0], "that's very well but you've another one": [65535, 0], "very well but you've another one i": [65535, 0], "well but you've another one i daresay": [65535, 0], "but you've another one i daresay and": [65535, 0], "you've another one i daresay and you'll": [65535, 0], "another one i daresay and you'll tell": [65535, 0], "one i daresay and you'll tell it": [65535, 0], "i daresay and you'll tell it to": [65535, 0], "daresay and you'll tell it to me": [65535, 0], "and you'll tell it to me won't": [65535, 0], "you'll tell it to me won't you": [65535, 0], "tell it to me won't you tell": [65535, 0], "it to me won't you tell the": [65535, 0], "to me won't you tell the gentleman": [65535, 0], "me won't you tell the gentleman your": [65535, 0], "won't you tell the gentleman your other": [65535, 0], "you tell the gentleman your other name": [65535, 0], "tell the gentleman your other name thomas": [65535, 0], "the gentleman your other name thomas said": [65535, 0], "gentleman your other name thomas said walters": [65535, 0], "your other name thomas said walters and": [65535, 0], "other name thomas said walters and say": [65535, 0], "name thomas said walters and say sir": [65535, 0], "thomas said walters and say sir you": [65535, 0], "said walters and say sir you mustn't": [65535, 0], "walters and say sir you mustn't forget": [65535, 0], "and say sir you mustn't forget your": [65535, 0], "say sir you mustn't forget your manners": [65535, 0], "sir you mustn't forget your manners thomas": [65535, 0], "you mustn't forget your manners thomas sawyer": [65535, 0], "mustn't forget your manners thomas sawyer sir": [65535, 0], "forget your manners thomas sawyer sir that's": [65535, 0], "your manners thomas sawyer sir that's it": [65535, 0], "manners thomas sawyer sir that's it that's": [65535, 0], "thomas sawyer sir that's it that's a": [65535, 0], "sawyer sir that's it that's a good": [65535, 0], "sir that's it that's a good boy": [65535, 0], "that's it that's a good boy fine": [65535, 0], "it that's a good boy fine boy": [65535, 0], "that's a good boy fine boy fine": [65535, 0], "a good boy fine boy fine manly": [65535, 0], "good boy fine boy fine manly little": [65535, 0], "boy fine boy fine manly little fellow": [65535, 0], "fine boy fine manly little fellow two": [65535, 0], "boy fine manly little fellow two thousand": [65535, 0], "fine manly little fellow two thousand verses": [65535, 0], "manly little fellow two thousand verses is": [65535, 0], "little fellow two thousand verses is a": [65535, 0], "fellow two thousand verses is a great": [65535, 0], "two thousand verses is a great many": [65535, 0], "thousand verses is a great many very": [65535, 0], "verses is a great many very very": [65535, 0], "is a great many very very great": [65535, 0], "a great many very very great many": [65535, 0], "great many very very great many and": [65535, 0], "many very very great many and you": [65535, 0], "very very great many and you never": [65535, 0], "very great many and you never can": [65535, 0], "great many and you never can be": [65535, 0], "many and you never can be sorry": [65535, 0], "and you never can be sorry for": [65535, 0], "you never can be sorry for the": [65535, 0], "never can be sorry for the trouble": [65535, 0], "can be sorry for the trouble you": [65535, 0], "be sorry for the trouble you took": [65535, 0], "sorry for the trouble you took to": [65535, 0], "for the trouble you took to learn": [65535, 0], "the trouble you took to learn them": [65535, 0], "trouble you took to learn them for": [65535, 0], "you took to learn them for knowledge": [65535, 0], "took to learn them for knowledge is": [65535, 0], "to learn them for knowledge is worth": [65535, 0], "learn them for knowledge is worth more": [65535, 0], "them for knowledge is worth more than": [65535, 0], "for knowledge is worth more than anything": [65535, 0], "knowledge is worth more than anything there": [65535, 0], "is worth more than anything there is": [65535, 0], "worth more than anything there is in": [65535, 0], "more than anything there is in the": [65535, 0], "than anything there is in the world": [65535, 0], "anything there is in the world it's": [65535, 0], "there is in the world it's what": [65535, 0], "is in the world it's what makes": [65535, 0], "in the world it's what makes great": [65535, 0], "the world it's what makes great men": [65535, 0], "world it's what makes great men and": [65535, 0], "it's what makes great men and good": [65535, 0], "what makes great men and good men": [65535, 0], "makes great men and good men you'll": [65535, 0], "great men and good men you'll be": [65535, 0], "men and good men you'll be a": [65535, 0], "and good men you'll be a great": [65535, 0], "good men you'll be a great man": [65535, 0], "men you'll be a great man and": [65535, 0], "you'll be a great man and a": [65535, 0], "be a great man and a good": [65535, 0], "a great man and a good man": [65535, 0], "great man and a good man yourself": [65535, 0], "man and a good man yourself some": [65535, 0], "and a good man yourself some day": [65535, 0], "a good man yourself some day thomas": [65535, 0], "good man yourself some day thomas and": [65535, 0], "man yourself some day thomas and then": [65535, 0], "yourself some day thomas and then you'll": [65535, 0], "some day thomas and then you'll look": [65535, 0], "day thomas and then you'll look back": [65535, 0], "thomas and then you'll look back and": [65535, 0], "and then you'll look back and say": [65535, 0], "then you'll look back and say it's": [65535, 0], "you'll look back and say it's all": [65535, 0], "look back and say it's all owing": [65535, 0], "back and say it's all owing to": [65535, 0], "and say it's all owing to the": [65535, 0], "say it's all owing to the precious": [65535, 0], "it's all owing to the precious sunday": [65535, 0], "all owing to the precious sunday school": [65535, 0], "owing to the precious sunday school privileges": [65535, 0], "to the precious sunday school privileges of": [65535, 0], "the precious sunday school privileges of my": [65535, 0], "precious sunday school privileges of my boyhood": [65535, 0], "sunday school privileges of my boyhood it's": [65535, 0], "school privileges of my boyhood it's all": [65535, 0], "privileges of my boyhood it's all owing": [65535, 0], "of my boyhood it's all owing to": [65535, 0], "my boyhood it's all owing to my": [65535, 0], "boyhood it's all owing to my dear": [65535, 0], "it's all owing to my dear teachers": [65535, 0], "all owing to my dear teachers that": [65535, 0], "owing to my dear teachers that taught": [65535, 0], "to my dear teachers that taught me": [65535, 0], "my dear teachers that taught me to": [65535, 0], "dear teachers that taught me to learn": [65535, 0], "teachers that taught me to learn it's": [65535, 0], "that taught me to learn it's all": [65535, 0], "taught me to learn it's all owing": [65535, 0], "me to learn it's all owing to": [65535, 0], "to learn it's all owing to the": [65535, 0], "learn it's all owing to the good": [65535, 0], "it's all owing to the good superintendent": [65535, 0], "all owing to the good superintendent who": [65535, 0], "owing to the good superintendent who encouraged": [65535, 0], "to the good superintendent who encouraged me": [65535, 0], "the good superintendent who encouraged me and": [65535, 0], "good superintendent who encouraged me and watched": [65535, 0], "superintendent who encouraged me and watched over": [65535, 0], "who encouraged me and watched over me": [65535, 0], "encouraged me and watched over me and": [65535, 0], "me and watched over me and gave": [65535, 0], "and watched over me and gave me": [65535, 0], "watched over me and gave me a": [65535, 0], "over me and gave me a beautiful": [65535, 0], "me and gave me a beautiful bible": [65535, 0], "and gave me a beautiful bible a": [65535, 0], "gave me a beautiful bible a splendid": [65535, 0], "me a beautiful bible a splendid elegant": [65535, 0], "a beautiful bible a splendid elegant bible": [65535, 0], "beautiful bible a splendid elegant bible to": [65535, 0], "bible a splendid elegant bible to keep": [65535, 0], "a splendid elegant bible to keep and": [65535, 0], "splendid elegant bible to keep and have": [65535, 0], "elegant bible to keep and have it": [65535, 0], "bible to keep and have it all": [65535, 0], "to keep and have it all for": [65535, 0], "keep and have it all for my": [65535, 0], "and have it all for my own": [65535, 0], "have it all for my own always": [65535, 0], "it all for my own always it's": [65535, 0], "all for my own always it's all": [65535, 0], "for my own always it's all owing": [65535, 0], "my own always it's all owing to": [65535, 0], "own always it's all owing to right": [65535, 0], "always it's all owing to right bringing": [65535, 0], "it's all owing to right bringing up": [65535, 0], "all owing to right bringing up that": [65535, 0], "owing to right bringing up that is": [65535, 0], "to right bringing up that is what": [65535, 0], "right bringing up that is what you": [65535, 0], "bringing up that is what you will": [65535, 0], "up that is what you will say": [65535, 0], "that is what you will say thomas": [65535, 0], "is what you will say thomas and": [65535, 0], "what you will say thomas and you": [65535, 0], "you will say thomas and you wouldn't": [65535, 0], "will say thomas and you wouldn't take": [65535, 0], "say thomas and you wouldn't take any": [65535, 0], "thomas and you wouldn't take any money": [65535, 0], "and you wouldn't take any money for": [65535, 0], "you wouldn't take any money for those": [65535, 0], "wouldn't take any money for those two": [65535, 0], "take any money for those two thousand": [65535, 0], "any money for those two thousand verses": [65535, 0], "money for those two thousand verses no": [65535, 0], "for those two thousand verses no indeed": [65535, 0], "those two thousand verses no indeed you": [65535, 0], "two thousand verses no indeed you wouldn't": [65535, 0], "thousand verses no indeed you wouldn't and": [65535, 0], "verses no indeed you wouldn't and now": [65535, 0], "no indeed you wouldn't and now you": [65535, 0], "indeed you wouldn't and now you wouldn't": [65535, 0], "you wouldn't and now you wouldn't mind": [65535, 0], "wouldn't and now you wouldn't mind telling": [65535, 0], "and now you wouldn't mind telling me": [65535, 0], "now you wouldn't mind telling me and": [65535, 0], "you wouldn't mind telling me and this": [65535, 0], "wouldn't mind telling me and this lady": [65535, 0], "mind telling me and this lady some": [65535, 0], "telling me and this lady some of": [65535, 0], "me and this lady some of the": [65535, 0], "and this lady some of the things": [65535, 0], "this lady some of the things you've": [65535, 0], "lady some of the things you've learned": [65535, 0], "some of the things you've learned no": [65535, 0], "of the things you've learned no i": [65535, 0], "the things you've learned no i know": [65535, 0], "things you've learned no i know you": [65535, 0], "you've learned no i know you wouldn't": [65535, 0], "learned no i know you wouldn't for": [65535, 0], "no i know you wouldn't for we": [65535, 0], "i know you wouldn't for we are": [65535, 0], "know you wouldn't for we are proud": [65535, 0], "you wouldn't for we are proud of": [65535, 0], "wouldn't for we are proud of little": [65535, 0], "for we are proud of little boys": [65535, 0], "we are proud of little boys that": [65535, 0], "are proud of little boys that learn": [65535, 0], "proud of little boys that learn now": [65535, 0], "of little boys that learn now no": [65535, 0], "little boys that learn now no doubt": [65535, 0], "boys that learn now no doubt you": [65535, 0], "that learn now no doubt you know": [65535, 0], "learn now no doubt you know the": [65535, 0], "now no doubt you know the names": [65535, 0], "no doubt you know the names of": [65535, 0], "doubt you know the names of all": [65535, 0], "you know the names of all the": [65535, 0], "know the names of all the twelve": [65535, 0], "the names of all the twelve disciples": [65535, 0], "names of all the twelve disciples won't": [65535, 0], "of all the twelve disciples won't you": [65535, 0], "all the twelve disciples won't you tell": [65535, 0], "the twelve disciples won't you tell us": [65535, 0], "twelve disciples won't you tell us the": [65535, 0], "disciples won't you tell us the names": [65535, 0], "won't you tell us the names of": [65535, 0], "you tell us the names of the": [65535, 0], "tell us the names of the first": [65535, 0], "us the names of the first two": [65535, 0], "the names of the first two that": [65535, 0], "names of the first two that were": [65535, 0], "of the first two that were appointed": [65535, 0], "the first two that were appointed tom": [65535, 0], "first two that were appointed tom was": [65535, 0], "two that were appointed tom was tugging": [65535, 0], "that were appointed tom was tugging at": [65535, 0], "were appointed tom was tugging at a": [65535, 0], "appointed tom was tugging at a button": [65535, 0], "tom was tugging at a button hole": [65535, 0], "was tugging at a button hole and": [65535, 0], "tugging at a button hole and looking": [65535, 0], "at a button hole and looking sheepish": [65535, 0], "a button hole and looking sheepish he": [65535, 0], "button hole and looking sheepish he blushed": [65535, 0], "hole and looking sheepish he blushed now": [65535, 0], "and looking sheepish he blushed now and": [65535, 0], "looking sheepish he blushed now and his": [65535, 0], "sheepish he blushed now and his eyes": [65535, 0], "he blushed now and his eyes fell": [65535, 0], "blushed now and his eyes fell mr": [65535, 0], "now and his eyes fell mr walters'": [65535, 0], "and his eyes fell mr walters' heart": [65535, 0], "his eyes fell mr walters' heart sank": [65535, 0], "eyes fell mr walters' heart sank within": [65535, 0], "fell mr walters' heart sank within him": [65535, 0], "mr walters' heart sank within him he": [65535, 0], "walters' heart sank within him he said": [65535, 0], "heart sank within him he said to": [65535, 0], "sank within him he said to himself": [65535, 0], "within him he said to himself it": [65535, 0], "him he said to himself it is": [65535, 0], "he said to himself it is not": [65535, 0], "said to himself it is not possible": [65535, 0], "to himself it is not possible that": [65535, 0], "himself it is not possible that the": [65535, 0], "it is not possible that the boy": [65535, 0], "is not possible that the boy can": [65535, 0], "not possible that the boy can answer": [65535, 0], "possible that the boy can answer the": [65535, 0], "that the boy can answer the simplest": [65535, 0], "the boy can answer the simplest question": [65535, 0], "boy can answer the simplest question why": [65535, 0], "can answer the simplest question why did": [65535, 0], "answer the simplest question why did the": [65535, 0], "the simplest question why did the judge": [65535, 0], "simplest question why did the judge ask": [65535, 0], "question why did the judge ask him": [65535, 0], "why did the judge ask him yet": [65535, 0], "did the judge ask him yet he": [65535, 0], "the judge ask him yet he felt": [65535, 0], "judge ask him yet he felt obliged": [65535, 0], "ask him yet he felt obliged to": [65535, 0], "him yet he felt obliged to speak": [65535, 0], "yet he felt obliged to speak up": [65535, 0], "he felt obliged to speak up and": [65535, 0], "felt obliged to speak up and say": [65535, 0], "obliged to speak up and say answer": [65535, 0], "to speak up and say answer the": [65535, 0], "speak up and say answer the gentleman": [65535, 0], "up and say answer the gentleman thomas": [65535, 0], "and say answer the gentleman thomas don't": [65535, 0], "say answer the gentleman thomas don't be": [65535, 0], "answer the gentleman thomas don't be afraid": [65535, 0], "the gentleman thomas don't be afraid tom": [65535, 0], "gentleman thomas don't be afraid tom still": [65535, 0], "thomas don't be afraid tom still hung": [65535, 0], "don't be afraid tom still hung fire": [65535, 0], "be afraid tom still hung fire now": [65535, 0], "afraid tom still hung fire now i": [65535, 0], "tom still hung fire now i know": [65535, 0], "still hung fire now i know you'll": [65535, 0], "hung fire now i know you'll tell": [65535, 0], "fire now i know you'll tell me": [65535, 0], "now i know you'll tell me said": [65535, 0], "i know you'll tell me said the": [65535, 0], "know you'll tell me said the lady": [65535, 0], "you'll tell me said the lady the": [65535, 0], "tell me said the lady the names": [65535, 0], "me said the lady the names of": [65535, 0], "said the lady the names of the": [65535, 0], "the lady the names of the first": [65535, 0], "lady the names of the first two": [65535, 0], "the names of the first two disciples": [65535, 0], "names of the first two disciples were": [65535, 0], "of the first two disciples were david": [65535, 0], "the first two disciples were david and": [65535, 0], "first two disciples were david and goliath": [65535, 0], "two disciples were david and goliath let": [65535, 0], "disciples were david and goliath let us": [65535, 0], "were david and goliath let us draw": [65535, 0], "david and goliath let us draw the": [65535, 0], "and goliath let us draw the curtain": [65535, 0], "goliath let us draw the curtain of": [65535, 0], "let us draw the curtain of charity": [65535, 0], "us draw the curtain of charity over": [65535, 0], "draw the curtain of charity over the": [65535, 0], "the curtain of charity over the rest": [65535, 0], "curtain of charity over the rest of": [65535, 0], "of charity over the rest of the": [65535, 0], "charity over the rest of the scene": [65535, 0], "the sun rose upon a tranquil world and": [65535, 0], "sun rose upon a tranquil world and beamed": [65535, 0], "rose upon a tranquil world and beamed down": [65535, 0], "upon a tranquil world and beamed down upon": [65535, 0], "a tranquil world and beamed down upon the": [65535, 0], "tranquil world and beamed down upon the peaceful": [65535, 0], "world and beamed down upon the peaceful village": [65535, 0], "and beamed down upon the peaceful village like": [65535, 0], "beamed down upon the peaceful village like a": [65535, 0], "down upon the peaceful village like a benediction": [65535, 0], "upon the peaceful village like a benediction breakfast": [65535, 0], "the peaceful village like a benediction breakfast over": [65535, 0], "peaceful village like a benediction breakfast over aunt": [65535, 0], "village like a benediction breakfast over aunt polly": [65535, 0], "like a benediction breakfast over aunt polly had": [65535, 0], "a benediction breakfast over aunt polly had family": [65535, 0], "benediction breakfast over aunt polly had family worship": [65535, 0], "breakfast over aunt polly had family worship it": [65535, 0], "over aunt polly had family worship it began": [65535, 0], "aunt polly had family worship it began with": [65535, 0], "polly had family worship it began with a": [65535, 0], "had family worship it began with a prayer": [65535, 0], "family worship it began with a prayer built": [65535, 0], "worship it began with a prayer built from": [65535, 0], "it began with a prayer built from the": [65535, 0], "began with a prayer built from the ground": [65535, 0], "with a prayer built from the ground up": [65535, 0], "a prayer built from the ground up of": [65535, 0], "prayer built from the ground up of solid": [65535, 0], "built from the ground up of solid courses": [65535, 0], "from the ground up of solid courses of": [65535, 0], "the ground up of solid courses of scriptural": [65535, 0], "ground up of solid courses of scriptural quotations": [65535, 0], "up of solid courses of scriptural quotations welded": [65535, 0], "of solid courses of scriptural quotations welded together": [65535, 0], "solid courses of scriptural quotations welded together with": [65535, 0], "courses of scriptural quotations welded together with a": [65535, 0], "of scriptural quotations welded together with a thin": [65535, 0], "scriptural quotations welded together with a thin mortar": [65535, 0], "quotations welded together with a thin mortar of": [65535, 0], "welded together with a thin mortar of originality": [65535, 0], "together with a thin mortar of originality and": [65535, 0], "with a thin mortar of originality and from": [65535, 0], "a thin mortar of originality and from the": [65535, 0], "thin mortar of originality and from the summit": [65535, 0], "mortar of originality and from the summit of": [65535, 0], "of originality and from the summit of this": [65535, 0], "originality and from the summit of this she": [65535, 0], "and from the summit of this she delivered": [65535, 0], "from the summit of this she delivered a": [65535, 0], "the summit of this she delivered a grim": [65535, 0], "summit of this she delivered a grim chapter": [65535, 0], "of this she delivered a grim chapter of": [65535, 0], "this she delivered a grim chapter of the": [65535, 0], "she delivered a grim chapter of the mosaic": [65535, 0], "delivered a grim chapter of the mosaic law": [65535, 0], "a grim chapter of the mosaic law as": [65535, 0], "grim chapter of the mosaic law as from": [65535, 0], "chapter of the mosaic law as from sinai": [65535, 0], "of the mosaic law as from sinai then": [65535, 0], "the mosaic law as from sinai then tom": [65535, 0], "mosaic law as from sinai then tom girded": [65535, 0], "law as from sinai then tom girded up": [65535, 0], "as from sinai then tom girded up his": [65535, 0], "from sinai then tom girded up his loins": [65535, 0], "sinai then tom girded up his loins so": [65535, 0], "then tom girded up his loins so to": [65535, 0], "tom girded up his loins so to speak": [65535, 0], "girded up his loins so to speak and": [65535, 0], "up his loins so to speak and went": [65535, 0], "his loins so to speak and went to": [65535, 0], "loins so to speak and went to work": [65535, 0], "so to speak and went to work to": [65535, 0], "to speak and went to work to get": [65535, 0], "speak and went to work to get his": [65535, 0], "and went to work to get his verses": [65535, 0], "went to work to get his verses sid": [65535, 0], "to work to get his verses sid had": [65535, 0], "work to get his verses sid had learned": [65535, 0], "to get his verses sid had learned his": [65535, 0], "get his verses sid had learned his lesson": [65535, 0], "his verses sid had learned his lesson days": [65535, 0], "verses sid had learned his lesson days before": [65535, 0], "sid had learned his lesson days before tom": [65535, 0], "had learned his lesson days before tom bent": [65535, 0], "learned his lesson days before tom bent all": [65535, 0], "his lesson days before tom bent all his": [65535, 0], "lesson days before tom bent all his energies": [65535, 0], "days before tom bent all his energies to": [65535, 0], "before tom bent all his energies to the": [65535, 0], "tom bent all his energies to the memorizing": [65535, 0], "bent all his energies to the memorizing of": [65535, 0], "all his energies to the memorizing of five": [65535, 0], "his energies to the memorizing of five verses": [65535, 0], "energies to the memorizing of five verses and": [65535, 0], "to the memorizing of five verses and he": [65535, 0], "the memorizing of five verses and he chose": [65535, 0], "memorizing of five verses and he chose part": [65535, 0], "of five verses and he chose part of": [65535, 0], "five verses and he chose part of the": [65535, 0], "verses and he chose part of the sermon": [65535, 0], "and he chose part of the sermon on": [65535, 0], "he chose part of the sermon on the": [65535, 0], "chose part of the sermon on the mount": [65535, 0], "part of the sermon on the mount because": [65535, 0], "of the sermon on the mount because he": [65535, 0], "the sermon on the mount because he could": [65535, 0], "sermon on the mount because he could find": [65535, 0], "on the mount because he could find no": [65535, 0], "the mount because he could find no verses": [65535, 0], "mount because he could find no verses that": [65535, 0], "because he could find no verses that were": [65535, 0], "he could find no verses that were shorter": [65535, 0], "could find no verses that were shorter at": [65535, 0], "find no verses that were shorter at the": [65535, 0], "no verses that were shorter at the end": [65535, 0], "verses that were shorter at the end of": [65535, 0], "that were shorter at the end of half": [65535, 0], "were shorter at the end of half an": [65535, 0], "shorter at the end of half an hour": [65535, 0], "at the end of half an hour tom": [65535, 0], "the end of half an hour tom had": [65535, 0], "end of half an hour tom had a": [65535, 0], "of half an hour tom had a vague": [65535, 0], "half an hour tom had a vague general": [65535, 0], "an hour tom had a vague general idea": [65535, 0], "hour tom had a vague general idea of": [65535, 0], "tom had a vague general idea of his": [65535, 0], "had a vague general idea of his lesson": [65535, 0], "a vague general idea of his lesson but": [65535, 0], "vague general idea of his lesson but no": [65535, 0], "general idea of his lesson but no more": [65535, 0], "idea of his lesson but no more for": [65535, 0], "of his lesson but no more for his": [65535, 0], "his lesson but no more for his mind": [65535, 0], "lesson but no more for his mind was": [65535, 0], "but no more for his mind was traversing": [65535, 0], "no more for his mind was traversing the": [65535, 0], "more for his mind was traversing the whole": [65535, 0], "for his mind was traversing the whole field": [65535, 0], "his mind was traversing the whole field of": [65535, 0], "mind was traversing the whole field of human": [65535, 0], "was traversing the whole field of human thought": [65535, 0], "traversing the whole field of human thought and": [65535, 0], "the whole field of human thought and his": [65535, 0], "whole field of human thought and his hands": [65535, 0], "field of human thought and his hands were": [65535, 0], "of human thought and his hands were busy": [65535, 0], "human thought and his hands were busy with": [65535, 0], "thought and his hands were busy with distracting": [65535, 0], "and his hands were busy with distracting recreations": [65535, 0], "his hands were busy with distracting recreations mary": [65535, 0], "hands were busy with distracting recreations mary took": [65535, 0], "were busy with distracting recreations mary took his": [65535, 0], "busy with distracting recreations mary took his book": [65535, 0], "with distracting recreations mary took his book to": [65535, 0], "distracting recreations mary took his book to hear": [65535, 0], "recreations mary took his book to hear him": [65535, 0], "mary took his book to hear him recite": [65535, 0], "took his book to hear him recite and": [65535, 0], "his book to hear him recite and he": [65535, 0], "book to hear him recite and he tried": [65535, 0], "to hear him recite and he tried to": [65535, 0], "hear him recite and he tried to find": [65535, 0], "him recite and he tried to find his": [65535, 0], "recite and he tried to find his way": [65535, 0], "and he tried to find his way through": [65535, 0], "he tried to find his way through the": [65535, 0], "tried to find his way through the fog": [65535, 0], "to find his way through the fog blessed": [65535, 0], "find his way through the fog blessed are": [65535, 0], "his way through the fog blessed are the": [65535, 0], "way through the fog blessed are the a": [65535, 0], "through the fog blessed are the a a": [65535, 0], "the fog blessed are the a a poor": [65535, 0], "fog blessed are the a a poor yes": [65535, 0], "blessed are the a a poor yes poor": [65535, 0], "are the a a poor yes poor blessed": [65535, 0], "the a a poor yes poor blessed are": [65535, 0], "a a poor yes poor blessed are the": [65535, 0], "a poor yes poor blessed are the poor": [65535, 0], "poor yes poor blessed are the poor a": [65535, 0], "yes poor blessed are the poor a a": [65535, 0], "poor blessed are the poor a a in": [65535, 0], "blessed are the poor a a in spirit": [65535, 0], "are the poor a a in spirit in": [65535, 0], "the poor a a in spirit in spirit": [65535, 0], "poor a a in spirit in spirit blessed": [65535, 0], "a a in spirit in spirit blessed are": [65535, 0], "a in spirit in spirit blessed are the": [65535, 0], "in spirit in spirit blessed are the poor": [65535, 0], "spirit in spirit blessed are the poor in": [65535, 0], "in spirit blessed are the poor in spirit": [65535, 0], "spirit blessed are the poor in spirit for": [65535, 0], "blessed are the poor in spirit for they": [65535, 0], "are the poor in spirit for they they": [65535, 0], "the poor in spirit for they they theirs": [65535, 0], "poor in spirit for they they theirs for": [65535, 0], "in spirit for they they theirs for theirs": [65535, 0], "spirit for they they theirs for theirs blessed": [65535, 0], "for they they theirs for theirs blessed are": [65535, 0], "they they theirs for theirs blessed are the": [65535, 0], "they theirs for theirs blessed are the poor": [65535, 0], "theirs for theirs blessed are the poor in": [65535, 0], "for theirs blessed are the poor in spirit": [65535, 0], "theirs blessed are the poor in spirit for": [65535, 0], "blessed are the poor in spirit for theirs": [65535, 0], "are the poor in spirit for theirs is": [65535, 0], "the poor in spirit for theirs is the": [65535, 0], "poor in spirit for theirs is the kingdom": [65535, 0], "in spirit for theirs is the kingdom of": [65535, 0], "spirit for theirs is the kingdom of heaven": [65535, 0], "for theirs is the kingdom of heaven blessed": [65535, 0], "theirs is the kingdom of heaven blessed are": [65535, 0], "is the kingdom of heaven blessed are they": [65535, 0], "the kingdom of heaven blessed are they that": [65535, 0], "kingdom of heaven blessed are they that mourn": [65535, 0], "of heaven blessed are they that mourn for": [65535, 0], "heaven blessed are they that mourn for they": [65535, 0], "blessed are they that mourn for they they": [65535, 0], "are they that mourn for they they sh": [65535, 0], "they that mourn for they they sh for": [65535, 0], "that mourn for they they sh for they": [65535, 0], "mourn for they they sh for they a": [65535, 0], "for they they sh for they a s": [65535, 0], "they they sh for they a s h": [65535, 0], "they sh for they a s h a": [65535, 0], "sh for they a s h a for": [65535, 0], "for they a s h a for they": [65535, 0], "they a s h a for they s": [65535, 0], "a s h a for they s h": [65535, 0], "s h a for they s h oh": [65535, 0], "h a for they s h oh i": [65535, 0], "a for they s h oh i don't": [65535, 0], "for they s h oh i don't know": [65535, 0], "they s h oh i don't know what": [65535, 0], "s h oh i don't know what it": [65535, 0], "h oh i don't know what it is": [65535, 0], "oh i don't know what it is shall": [65535, 0], "i don't know what it is shall oh": [65535, 0], "don't know what it is shall oh shall": [65535, 0], "know what it is shall oh shall for": [65535, 0], "what it is shall oh shall for they": [65535, 0], "it is shall oh shall for they shall": [65535, 0], "is shall oh shall for they shall for": [65535, 0], "shall oh shall for they shall for they": [65535, 0], "oh shall for they shall for they shall": [65535, 0], "shall for they shall for they shall a": [65535, 0], "for they shall for they shall a a": [65535, 0], "they shall for they shall a a shall": [65535, 0], "shall for they shall a a shall mourn": [65535, 0], "for they shall a a shall mourn a": [65535, 0], "they shall a a shall mourn a a": [65535, 0], "shall a a shall mourn a a blessed": [65535, 0], "a a shall mourn a a blessed are": [65535, 0], "a shall mourn a a blessed are they": [65535, 0], "shall mourn a a blessed are they that": [65535, 0], "mourn a a blessed are they that shall": [65535, 0], "a a blessed are they that shall they": [65535, 0], "a blessed are they that shall they that": [65535, 0], "blessed are they that shall they that a": [65535, 0], "are they that shall they that a they": [65535, 0], "they that shall they that a they that": [65535, 0], "that shall they that a they that shall": [65535, 0], "shall they that a they that shall mourn": [65535, 0], "they that a they that shall mourn for": [65535, 0], "that a they that shall mourn for they": [65535, 0], "a they that shall mourn for they shall": [65535, 0], "they that shall mourn for they shall a": [65535, 0], "that shall mourn for they shall a shall": [65535, 0], "shall mourn for they shall a shall what": [65535, 0], "mourn for they shall a shall what why": [65535, 0], "for they shall a shall what why don't": [65535, 0], "they shall a shall what why don't you": [65535, 0], "shall a shall what why don't you tell": [65535, 0], "a shall what why don't you tell me": [65535, 0], "shall what why don't you tell me mary": [65535, 0], "what why don't you tell me mary what": [65535, 0], "why don't you tell me mary what do": [65535, 0], "don't you tell me mary what do you": [65535, 0], "you tell me mary what do you want": [65535, 0], "tell me mary what do you want to": [65535, 0], "me mary what do you want to be": [65535, 0], "mary what do you want to be so": [65535, 0], "what do you want to be so mean": [65535, 0], "do you want to be so mean for": [65535, 0], "you want to be so mean for oh": [65535, 0], "want to be so mean for oh tom": [65535, 0], "to be so mean for oh tom you": [65535, 0], "be so mean for oh tom you poor": [65535, 0], "so mean for oh tom you poor thick": [65535, 0], "mean for oh tom you poor thick headed": [65535, 0], "for oh tom you poor thick headed thing": [65535, 0], "oh tom you poor thick headed thing i'm": [65535, 0], "tom you poor thick headed thing i'm not": [65535, 0], "you poor thick headed thing i'm not teasing": [65535, 0], "poor thick headed thing i'm not teasing you": [65535, 0], "thick headed thing i'm not teasing you i": [65535, 0], "headed thing i'm not teasing you i wouldn't": [65535, 0], "thing i'm not teasing you i wouldn't do": [65535, 0], "i'm not teasing you i wouldn't do that": [65535, 0], "not teasing you i wouldn't do that you": [65535, 0], "teasing you i wouldn't do that you must": [65535, 0], "you i wouldn't do that you must go": [65535, 0], "i wouldn't do that you must go and": [65535, 0], "wouldn't do that you must go and learn": [65535, 0], "do that you must go and learn it": [65535, 0], "that you must go and learn it again": [65535, 0], "you must go and learn it again don't": [65535, 0], "must go and learn it again don't you": [65535, 0], "go and learn it again don't you be": [65535, 0], "and learn it again don't you be discouraged": [65535, 0], "learn it again don't you be discouraged tom": [65535, 0], "it again don't you be discouraged tom you'll": [65535, 0], "again don't you be discouraged tom you'll manage": [65535, 0], "don't you be discouraged tom you'll manage it": [65535, 0], "you be discouraged tom you'll manage it and": [65535, 0], "be discouraged tom you'll manage it and if": [65535, 0], "discouraged tom you'll manage it and if you": [65535, 0], "tom you'll manage it and if you do": [65535, 0], "you'll manage it and if you do i'll": [65535, 0], "manage it and if you do i'll give": [65535, 0], "it and if you do i'll give you": [65535, 0], "and if you do i'll give you something": [65535, 0], "if you do i'll give you something ever": [65535, 0], "you do i'll give you something ever so": [65535, 0], "do i'll give you something ever so nice": [65535, 0], "i'll give you something ever so nice there": [65535, 0], "give you something ever so nice there now": [65535, 0], "you something ever so nice there now that's": [65535, 0], "something ever so nice there now that's a": [65535, 0], "ever so nice there now that's a good": [65535, 0], "so nice there now that's a good boy": [65535, 0], "nice there now that's a good boy all": [65535, 0], "there now that's a good boy all right": [65535, 0], "now that's a good boy all right what": [65535, 0], "that's a good boy all right what is": [65535, 0], "a good boy all right what is it": [65535, 0], "good boy all right what is it mary": [65535, 0], "boy all right what is it mary tell": [65535, 0], "all right what is it mary tell me": [65535, 0], "right what is it mary tell me what": [65535, 0], "what is it mary tell me what it": [65535, 0], "is it mary tell me what it is": [65535, 0], "it mary tell me what it is never": [65535, 0], "mary tell me what it is never you": [65535, 0], "tell me what it is never you mind": [65535, 0], "me what it is never you mind tom": [65535, 0], "what it is never you mind tom you": [65535, 0], "it is never you mind tom you know": [65535, 0], "is never you mind tom you know if": [65535, 0], "never you mind tom you know if i": [65535, 0], "you mind tom you know if i say": [65535, 0], "mind tom you know if i say it's": [65535, 0], "tom you know if i say it's nice": [65535, 0], "you know if i say it's nice it": [65535, 0], "know if i say it's nice it is": [65535, 0], "if i say it's nice it is nice": [65535, 0], "i say it's nice it is nice you": [65535, 0], "say it's nice it is nice you bet": [65535, 0], "it's nice it is nice you bet you": [65535, 0], "nice it is nice you bet you that's": [65535, 0], "it is nice you bet you that's so": [65535, 0], "is nice you bet you that's so mary": [65535, 0], "nice you bet you that's so mary all": [65535, 0], "you bet you that's so mary all right": [65535, 0], "bet you that's so mary all right i'll": [65535, 0], "you that's so mary all right i'll tackle": [65535, 0], "that's so mary all right i'll tackle it": [65535, 0], "so mary all right i'll tackle it again": [65535, 0], "mary all right i'll tackle it again and": [65535, 0], "all right i'll tackle it again and he": [65535, 0], "right i'll tackle it again and he did": [65535, 0], "i'll tackle it again and he did tackle": [65535, 0], "tackle it again and he did tackle it": [65535, 0], "it again and he did tackle it again": [65535, 0], "again and he did tackle it again and": [65535, 0], "and he did tackle it again and under": [65535, 0], "he did tackle it again and under the": [65535, 0], "did tackle it again and under the double": [65535, 0], "tackle it again and under the double pressure": [65535, 0], "it again and under the double pressure of": [65535, 0], "again and under the double pressure of curiosity": [65535, 0], "and under the double pressure of curiosity and": [65535, 0], "under the double pressure of curiosity and prospective": [65535, 0], "the double pressure of curiosity and prospective gain": [65535, 0], "double pressure of curiosity and prospective gain he": [65535, 0], "pressure of curiosity and prospective gain he did": [65535, 0], "of curiosity and prospective gain he did it": [65535, 0], "curiosity and prospective gain he did it with": [65535, 0], "and prospective gain he did it with such": [65535, 0], "prospective gain he did it with such spirit": [65535, 0], "gain he did it with such spirit that": [65535, 0], "he did it with such spirit that he": [65535, 0], "did it with such spirit that he accomplished": [65535, 0], "it with such spirit that he accomplished a": [65535, 0], "with such spirit that he accomplished a shining": [65535, 0], "such spirit that he accomplished a shining success": [65535, 0], "spirit that he accomplished a shining success mary": [65535, 0], "that he accomplished a shining success mary gave": [65535, 0], "he accomplished a shining success mary gave him": [65535, 0], "accomplished a shining success mary gave him a": [65535, 0], "a shining success mary gave him a brand": [65535, 0], "shining success mary gave him a brand new": [65535, 0], "success mary gave him a brand new barlow": [65535, 0], "mary gave him a brand new barlow knife": [65535, 0], "gave him a brand new barlow knife worth": [65535, 0], "him a brand new barlow knife worth twelve": [65535, 0], "a brand new barlow knife worth twelve and": [65535, 0], "brand new barlow knife worth twelve and a": [65535, 0], "new barlow knife worth twelve and a half": [65535, 0], "barlow knife worth twelve and a half cents": [65535, 0], "knife worth twelve and a half cents and": [65535, 0], "worth twelve and a half cents and the": [65535, 0], "twelve and a half cents and the convulsion": [65535, 0], "and a half cents and the convulsion of": [65535, 0], "a half cents and the convulsion of delight": [65535, 0], "half cents and the convulsion of delight that": [65535, 0], "cents and the convulsion of delight that swept": [65535, 0], "and the convulsion of delight that swept his": [65535, 0], "the convulsion of delight that swept his system": [65535, 0], "convulsion of delight that swept his system shook": [65535, 0], "of delight that swept his system shook him": [65535, 0], "delight that swept his system shook him to": [65535, 0], "that swept his system shook him to his": [65535, 0], "swept his system shook him to his foundations": [65535, 0], "his system shook him to his foundations true": [65535, 0], "system shook him to his foundations true the": [65535, 0], "shook him to his foundations true the knife": [65535, 0], "him to his foundations true the knife would": [65535, 0], "to his foundations true the knife would not": [65535, 0], "his foundations true the knife would not cut": [65535, 0], "foundations true the knife would not cut anything": [65535, 0], "true the knife would not cut anything but": [65535, 0], "the knife would not cut anything but it": [65535, 0], "knife would not cut anything but it was": [65535, 0], "would not cut anything but it was a": [65535, 0], "not cut anything but it was a sure": [65535, 0], "cut anything but it was a sure enough": [65535, 0], "anything but it was a sure enough barlow": [65535, 0], "but it was a sure enough barlow and": [65535, 0], "it was a sure enough barlow and there": [65535, 0], "was a sure enough barlow and there was": [65535, 0], "a sure enough barlow and there was inconceivable": [65535, 0], "sure enough barlow and there was inconceivable grandeur": [65535, 0], "enough barlow and there was inconceivable grandeur in": [65535, 0], "barlow and there was inconceivable grandeur in that": [65535, 0], "and there was inconceivable grandeur in that though": [65535, 0], "there was inconceivable grandeur in that though where": [65535, 0], "was inconceivable grandeur in that though where the": [65535, 0], "inconceivable grandeur in that though where the western": [65535, 0], "grandeur in that though where the western boys": [65535, 0], "in that though where the western boys ever": [65535, 0], "that though where the western boys ever got": [65535, 0], "though where the western boys ever got the": [65535, 0], "where the western boys ever got the idea": [65535, 0], "the western boys ever got the idea that": [65535, 0], "western boys ever got the idea that such": [65535, 0], "boys ever got the idea that such a": [65535, 0], "ever got the idea that such a weapon": [65535, 0], "got the idea that such a weapon could": [65535, 0], "the idea that such a weapon could possibly": [65535, 0], "idea that such a weapon could possibly be": [65535, 0], "that such a weapon could possibly be counterfeited": [65535, 0], "such a weapon could possibly be counterfeited to": [65535, 0], "a weapon could possibly be counterfeited to its": [65535, 0], "weapon could possibly be counterfeited to its injury": [65535, 0], "could possibly be counterfeited to its injury is": [65535, 0], "possibly be counterfeited to its injury is an": [65535, 0], "be counterfeited to its injury is an imposing": [65535, 0], "counterfeited to its injury is an imposing mystery": [65535, 0], "to its injury is an imposing mystery and": [65535, 0], "its injury is an imposing mystery and will": [65535, 0], "injury is an imposing mystery and will always": [65535, 0], "is an imposing mystery and will always remain": [65535, 0], "an imposing mystery and will always remain so": [65535, 0], "imposing mystery and will always remain so perhaps": [65535, 0], "mystery and will always remain so perhaps tom": [65535, 0], "and will always remain so perhaps tom contrived": [65535, 0], "will always remain so perhaps tom contrived to": [65535, 0], "always remain so perhaps tom contrived to scarify": [65535, 0], "remain so perhaps tom contrived to scarify the": [65535, 0], "so perhaps tom contrived to scarify the cupboard": [65535, 0], "perhaps tom contrived to scarify the cupboard with": [65535, 0], "tom contrived to scarify the cupboard with it": [65535, 0], "contrived to scarify the cupboard with it and": [65535, 0], "to scarify the cupboard with it and was": [65535, 0], "scarify the cupboard with it and was arranging": [65535, 0], "the cupboard with it and was arranging to": [65535, 0], "cupboard with it and was arranging to begin": [65535, 0], "with it and was arranging to begin on": [65535, 0], "it and was arranging to begin on the": [65535, 0], "and was arranging to begin on the bureau": [65535, 0], "was arranging to begin on the bureau when": [65535, 0], "arranging to begin on the bureau when he": [65535, 0], "to begin on the bureau when he was": [65535, 0], "begin on the bureau when he was called": [65535, 0], "on the bureau when he was called off": [65535, 0], "the bureau when he was called off to": [65535, 0], "bureau when he was called off to dress": [65535, 0], "when he was called off to dress for": [65535, 0], "he was called off to dress for sunday": [65535, 0], "was called off to dress for sunday school": [65535, 0], "called off to dress for sunday school mary": [65535, 0], "off to dress for sunday school mary gave": [65535, 0], "to dress for sunday school mary gave him": [65535, 0], "dress for sunday school mary gave him a": [65535, 0], "for sunday school mary gave him a tin": [65535, 0], "sunday school mary gave him a tin basin": [65535, 0], "school mary gave him a tin basin of": [65535, 0], "mary gave him a tin basin of water": [65535, 0], "gave him a tin basin of water and": [65535, 0], "him a tin basin of water and a": [65535, 0], "a tin basin of water and a piece": [65535, 0], "tin basin of water and a piece of": [65535, 0], "basin of water and a piece of soap": [65535, 0], "of water and a piece of soap and": [65535, 0], "water and a piece of soap and he": [65535, 0], "and a piece of soap and he went": [65535, 0], "a piece of soap and he went outside": [65535, 0], "piece of soap and he went outside the": [65535, 0], "of soap and he went outside the door": [65535, 0], "soap and he went outside the door and": [65535, 0], "and he went outside the door and set": [65535, 0], "he went outside the door and set the": [65535, 0], "went outside the door and set the basin": [65535, 0], "outside the door and set the basin on": [65535, 0], "the door and set the basin on a": [65535, 0], "door and set the basin on a little": [65535, 0], "and set the basin on a little bench": [65535, 0], "set the basin on a little bench there": [65535, 0], "the basin on a little bench there then": [65535, 0], "basin on a little bench there then he": [65535, 0], "on a little bench there then he dipped": [65535, 0], "a little bench there then he dipped the": [65535, 0], "little bench there then he dipped the soap": [65535, 0], "bench there then he dipped the soap in": [65535, 0], "there then he dipped the soap in the": [65535, 0], "then he dipped the soap in the water": [65535, 0], "he dipped the soap in the water and": [65535, 0], "dipped the soap in the water and laid": [65535, 0], "the soap in the water and laid it": [65535, 0], "soap in the water and laid it down": [65535, 0], "in the water and laid it down turned": [65535, 0], "the water and laid it down turned up": [65535, 0], "water and laid it down turned up his": [65535, 0], "and laid it down turned up his sleeves": [65535, 0], "laid it down turned up his sleeves poured": [65535, 0], "it down turned up his sleeves poured out": [65535, 0], "down turned up his sleeves poured out the": [65535, 0], "turned up his sleeves poured out the water": [65535, 0], "up his sleeves poured out the water on": [65535, 0], "his sleeves poured out the water on the": [65535, 0], "sleeves poured out the water on the ground": [65535, 0], "poured out the water on the ground gently": [65535, 0], "out the water on the ground gently and": [65535, 0], "the water on the ground gently and then": [65535, 0], "water on the ground gently and then entered": [65535, 0], "on the ground gently and then entered the": [65535, 0], "the ground gently and then entered the kitchen": [65535, 0], "ground gently and then entered the kitchen and": [65535, 0], "gently and then entered the kitchen and began": [65535, 0], "and then entered the kitchen and began to": [65535, 0], "then entered the kitchen and began to wipe": [65535, 0], "entered the kitchen and began to wipe his": [65535, 0], "the kitchen and began to wipe his face": [65535, 0], "kitchen and began to wipe his face diligently": [65535, 0], "and began to wipe his face diligently on": [65535, 0], "began to wipe his face diligently on the": [65535, 0], "to wipe his face diligently on the towel": [65535, 0], "wipe his face diligently on the towel behind": [65535, 0], "his face diligently on the towel behind the": [65535, 0], "face diligently on the towel behind the door": [65535, 0], "diligently on the towel behind the door but": [65535, 0], "on the towel behind the door but mary": [65535, 0], "the towel behind the door but mary removed": [65535, 0], "towel behind the door but mary removed the": [65535, 0], "behind the door but mary removed the towel": [65535, 0], "the door but mary removed the towel and": [65535, 0], "door but mary removed the towel and said": [65535, 0], "but mary removed the towel and said now": [65535, 0], "mary removed the towel and said now ain't": [65535, 0], "removed the towel and said now ain't you": [65535, 0], "the towel and said now ain't you ashamed": [65535, 0], "towel and said now ain't you ashamed tom": [65535, 0], "and said now ain't you ashamed tom you": [65535, 0], "said now ain't you ashamed tom you mustn't": [65535, 0], "now ain't you ashamed tom you mustn't be": [65535, 0], "ain't you ashamed tom you mustn't be so": [65535, 0], "you ashamed tom you mustn't be so bad": [65535, 0], "ashamed tom you mustn't be so bad water": [65535, 0], "tom you mustn't be so bad water won't": [65535, 0], "you mustn't be so bad water won't hurt": [65535, 0], "mustn't be so bad water won't hurt you": [65535, 0], "be so bad water won't hurt you tom": [65535, 0], "so bad water won't hurt you tom was": [65535, 0], "bad water won't hurt you tom was a": [65535, 0], "water won't hurt you tom was a trifle": [65535, 0], "won't hurt you tom was a trifle disconcerted": [65535, 0], "hurt you tom was a trifle disconcerted the": [65535, 0], "you tom was a trifle disconcerted the basin": [65535, 0], "tom was a trifle disconcerted the basin was": [65535, 0], "was a trifle disconcerted the basin was refilled": [65535, 0], "a trifle disconcerted the basin was refilled and": [65535, 0], "trifle disconcerted the basin was refilled and this": [65535, 0], "disconcerted the basin was refilled and this time": [65535, 0], "the basin was refilled and this time he": [65535, 0], "basin was refilled and this time he stood": [65535, 0], "was refilled and this time he stood over": [65535, 0], "refilled and this time he stood over it": [65535, 0], "and this time he stood over it a": [65535, 0], "this time he stood over it a little": [65535, 0], "time he stood over it a little while": [65535, 0], "he stood over it a little while gathering": [65535, 0], "stood over it a little while gathering resolution": [65535, 0], "over it a little while gathering resolution took": [65535, 0], "it a little while gathering resolution took in": [65535, 0], "a little while gathering resolution took in a": [65535, 0], "little while gathering resolution took in a big": [65535, 0], "while gathering resolution took in a big breath": [65535, 0], "gathering resolution took in a big breath and": [65535, 0], "resolution took in a big breath and began": [65535, 0], "took in a big breath and began when": [65535, 0], "in a big breath and began when he": [65535, 0], "a big breath and began when he entered": [65535, 0], "big breath and began when he entered the": [65535, 0], "breath and began when he entered the kitchen": [65535, 0], "and began when he entered the kitchen presently": [65535, 0], "began when he entered the kitchen presently with": [65535, 0], "when he entered the kitchen presently with both": [65535, 0], "he entered the kitchen presently with both eyes": [65535, 0], "entered the kitchen presently with both eyes shut": [65535, 0], "the kitchen presently with both eyes shut and": [65535, 0], "kitchen presently with both eyes shut and groping": [65535, 0], "presently with both eyes shut and groping for": [65535, 0], "with both eyes shut and groping for the": [65535, 0], "both eyes shut and groping for the towel": [65535, 0], "eyes shut and groping for the towel with": [65535, 0], "shut and groping for the towel with his": [65535, 0], "and groping for the towel with his hands": [65535, 0], "groping for the towel with his hands an": [65535, 0], "for the towel with his hands an honorable": [65535, 0], "the towel with his hands an honorable testimony": [65535, 0], "towel with his hands an honorable testimony of": [65535, 0], "with his hands an honorable testimony of suds": [65535, 0], "his hands an honorable testimony of suds and": [65535, 0], "hands an honorable testimony of suds and water": [65535, 0], "an honorable testimony of suds and water was": [65535, 0], "honorable testimony of suds and water was dripping": [65535, 0], "testimony of suds and water was dripping from": [65535, 0], "of suds and water was dripping from his": [65535, 0], "suds and water was dripping from his face": [65535, 0], "and water was dripping from his face but": [65535, 0], "water was dripping from his face but when": [65535, 0], "was dripping from his face but when he": [65535, 0], "dripping from his face but when he emerged": [65535, 0], "from his face but when he emerged from": [65535, 0], "his face but when he emerged from the": [65535, 0], "face but when he emerged from the towel": [65535, 0], "but when he emerged from the towel he": [65535, 0], "when he emerged from the towel he was": [65535, 0], "he emerged from the towel he was not": [65535, 0], "emerged from the towel he was not yet": [65535, 0], "from the towel he was not yet satisfactory": [65535, 0], "the towel he was not yet satisfactory for": [65535, 0], "towel he was not yet satisfactory for the": [65535, 0], "he was not yet satisfactory for the clean": [65535, 0], "was not yet satisfactory for the clean territory": [65535, 0], "not yet satisfactory for the clean territory stopped": [65535, 0], "yet satisfactory for the clean territory stopped short": [65535, 0], "satisfactory for the clean territory stopped short at": [65535, 0], "for the clean territory stopped short at his": [65535, 0], "the clean territory stopped short at his chin": [65535, 0], "clean territory stopped short at his chin and": [65535, 0], "territory stopped short at his chin and his": [65535, 0], "stopped short at his chin and his jaws": [65535, 0], "short at his chin and his jaws like": [65535, 0], "at his chin and his jaws like a": [65535, 0], "his chin and his jaws like a mask": [65535, 0], "chin and his jaws like a mask below": [65535, 0], "and his jaws like a mask below and": [65535, 0], "his jaws like a mask below and beyond": [65535, 0], "jaws like a mask below and beyond this": [65535, 0], "like a mask below and beyond this line": [65535, 0], "a mask below and beyond this line there": [65535, 0], "mask below and beyond this line there was": [65535, 0], "below and beyond this line there was a": [65535, 0], "and beyond this line there was a dark": [65535, 0], "beyond this line there was a dark expanse": [65535, 0], "this line there was a dark expanse of": [65535, 0], "line there was a dark expanse of unirrigated": [65535, 0], "there was a dark expanse of unirrigated soil": [65535, 0], "was a dark expanse of unirrigated soil that": [65535, 0], "a dark expanse of unirrigated soil that spread": [65535, 0], "dark expanse of unirrigated soil that spread downward": [65535, 0], "expanse of unirrigated soil that spread downward in": [65535, 0], "of unirrigated soil that spread downward in front": [65535, 0], "unirrigated soil that spread downward in front and": [65535, 0], "soil that spread downward in front and backward": [65535, 0], "that spread downward in front and backward around": [65535, 0], "spread downward in front and backward around his": [65535, 0], "downward in front and backward around his neck": [65535, 0], "in front and backward around his neck mary": [65535, 0], "front and backward around his neck mary took": [65535, 0], "and backward around his neck mary took him": [65535, 0], "backward around his neck mary took him in": [65535, 0], "around his neck mary took him in hand": [65535, 0], "his neck mary took him in hand and": [65535, 0], "neck mary took him in hand and when": [65535, 0], "mary took him in hand and when she": [65535, 0], "took him in hand and when she was": [65535, 0], "him in hand and when she was done": [65535, 0], "in hand and when she was done with": [65535, 0], "hand and when she was done with him": [65535, 0], "and when she was done with him he": [65535, 0], "when she was done with him he was": [65535, 0], "she was done with him he was a": [65535, 0], "was done with him he was a man": [65535, 0], "done with him he was a man and": [65535, 0], "with him he was a man and a": [65535, 0], "him he was a man and a brother": [65535, 0], "he was a man and a brother without": [65535, 0], "was a man and a brother without distinction": [65535, 0], "a man and a brother without distinction of": [65535, 0], "man and a brother without distinction of color": [65535, 0], "and a brother without distinction of color and": [65535, 0], "a brother without distinction of color and his": [65535, 0], "brother without distinction of color and his saturated": [65535, 0], "without distinction of color and his saturated hair": [65535, 0], "distinction of color and his saturated hair was": [65535, 0], "of color and his saturated hair was neatly": [65535, 0], "color and his saturated hair was neatly brushed": [65535, 0], "and his saturated hair was neatly brushed and": [65535, 0], "his saturated hair was neatly brushed and its": [65535, 0], "saturated hair was neatly brushed and its short": [65535, 0], "hair was neatly brushed and its short curls": [65535, 0], "was neatly brushed and its short curls wrought": [65535, 0], "neatly brushed and its short curls wrought into": [65535, 0], "brushed and its short curls wrought into a": [65535, 0], "and its short curls wrought into a dainty": [65535, 0], "its short curls wrought into a dainty and": [65535, 0], "short curls wrought into a dainty and symmetrical": [65535, 0], "curls wrought into a dainty and symmetrical general": [65535, 0], "wrought into a dainty and symmetrical general effect": [65535, 0], "into a dainty and symmetrical general effect he": [65535, 0], "a dainty and symmetrical general effect he privately": [65535, 0], "dainty and symmetrical general effect he privately smoothed": [65535, 0], "and symmetrical general effect he privately smoothed out": [65535, 0], "symmetrical general effect he privately smoothed out the": [65535, 0], "general effect he privately smoothed out the curls": [65535, 0], "effect he privately smoothed out the curls with": [65535, 0], "he privately smoothed out the curls with labor": [65535, 0], "privately smoothed out the curls with labor and": [65535, 0], "smoothed out the curls with labor and difficulty": [65535, 0], "out the curls with labor and difficulty and": [65535, 0], "the curls with labor and difficulty and plastered": [65535, 0], "curls with labor and difficulty and plastered his": [65535, 0], "with labor and difficulty and plastered his hair": [65535, 0], "labor and difficulty and plastered his hair close": [65535, 0], "and difficulty and plastered his hair close down": [65535, 0], "difficulty and plastered his hair close down to": [65535, 0], "and plastered his hair close down to his": [65535, 0], "plastered his hair close down to his head": [65535, 0], "his hair close down to his head for": [65535, 0], "hair close down to his head for he": [65535, 0], "close down to his head for he held": [65535, 0], "down to his head for he held curls": [65535, 0], "to his head for he held curls to": [65535, 0], "his head for he held curls to be": [65535, 0], "head for he held curls to be effeminate": [65535, 0], "for he held curls to be effeminate and": [65535, 0], "he held curls to be effeminate and his": [65535, 0], "held curls to be effeminate and his own": [65535, 0], "curls to be effeminate and his own filled": [65535, 0], "to be effeminate and his own filled his": [65535, 0], "be effeminate and his own filled his life": [65535, 0], "effeminate and his own filled his life with": [65535, 0], "and his own filled his life with bitterness": [65535, 0], "his own filled his life with bitterness then": [65535, 0], "own filled his life with bitterness then mary": [65535, 0], "filled his life with bitterness then mary got": [65535, 0], "his life with bitterness then mary got out": [65535, 0], "life with bitterness then mary got out a": [65535, 0], "with bitterness then mary got out a suit": [65535, 0], "bitterness then mary got out a suit of": [65535, 0], "then mary got out a suit of his": [65535, 0], "mary got out a suit of his clothing": [65535, 0], "got out a suit of his clothing that": [65535, 0], "out a suit of his clothing that had": [65535, 0], "a suit of his clothing that had been": [65535, 0], "suit of his clothing that had been used": [65535, 0], "of his clothing that had been used only": [65535, 0], "his clothing that had been used only on": [65535, 0], "clothing that had been used only on sundays": [65535, 0], "that had been used only on sundays during": [65535, 0], "had been used only on sundays during two": [65535, 0], "been used only on sundays during two years": [65535, 0], "used only on sundays during two years they": [65535, 0], "only on sundays during two years they were": [65535, 0], "on sundays during two years they were simply": [65535, 0], "sundays during two years they were simply called": [65535, 0], "during two years they were simply called his": [65535, 0], "two years they were simply called his other": [65535, 0], "years they were simply called his other clothes": [65535, 0], "they were simply called his other clothes and": [65535, 0], "were simply called his other clothes and so": [65535, 0], "simply called his other clothes and so by": [65535, 0], "called his other clothes and so by that": [65535, 0], "his other clothes and so by that we": [65535, 0], "other clothes and so by that we know": [65535, 0], "clothes and so by that we know the": [65535, 0], "and so by that we know the size": [65535, 0], "so by that we know the size of": [65535, 0], "by that we know the size of his": [65535, 0], "that we know the size of his wardrobe": [65535, 0], "we know the size of his wardrobe the": [65535, 0], "know the size of his wardrobe the girl": [65535, 0], "the size of his wardrobe the girl put": [65535, 0], "size of his wardrobe the girl put him": [65535, 0], "of his wardrobe the girl put him to": [65535, 0], "his wardrobe the girl put him to rights": [65535, 0], "wardrobe the girl put him to rights after": [65535, 0], "the girl put him to rights after he": [65535, 0], "girl put him to rights after he had": [65535, 0], "put him to rights after he had dressed": [65535, 0], "him to rights after he had dressed himself": [65535, 0], "to rights after he had dressed himself she": [65535, 0], "rights after he had dressed himself she buttoned": [65535, 0], "after he had dressed himself she buttoned his": [65535, 0], "he had dressed himself she buttoned his neat": [65535, 0], "had dressed himself she buttoned his neat roundabout": [65535, 0], "dressed himself she buttoned his neat roundabout up": [65535, 0], "himself she buttoned his neat roundabout up to": [65535, 0], "she buttoned his neat roundabout up to his": [65535, 0], "buttoned his neat roundabout up to his chin": [65535, 0], "his neat roundabout up to his chin turned": [65535, 0], "neat roundabout up to his chin turned his": [65535, 0], "roundabout up to his chin turned his vast": [65535, 0], "up to his chin turned his vast shirt": [65535, 0], "to his chin turned his vast shirt collar": [65535, 0], "his chin turned his vast shirt collar down": [65535, 0], "chin turned his vast shirt collar down over": [65535, 0], "turned his vast shirt collar down over his": [65535, 0], "his vast shirt collar down over his shoulders": [65535, 0], "vast shirt collar down over his shoulders brushed": [65535, 0], "shirt collar down over his shoulders brushed him": [65535, 0], "collar down over his shoulders brushed him off": [65535, 0], "down over his shoulders brushed him off and": [65535, 0], "over his shoulders brushed him off and crowned": [65535, 0], "his shoulders brushed him off and crowned him": [65535, 0], "shoulders brushed him off and crowned him with": [65535, 0], "brushed him off and crowned him with his": [65535, 0], "him off and crowned him with his speckled": [65535, 0], "off and crowned him with his speckled straw": [65535, 0], "and crowned him with his speckled straw hat": [65535, 0], "crowned him with his speckled straw hat he": [65535, 0], "him with his speckled straw hat he now": [65535, 0], "with his speckled straw hat he now looked": [65535, 0], "his speckled straw hat he now looked exceedingly": [65535, 0], "speckled straw hat he now looked exceedingly improved": [65535, 0], "straw hat he now looked exceedingly improved and": [65535, 0], "hat he now looked exceedingly improved and uncomfortable": [65535, 0], "he now looked exceedingly improved and uncomfortable he": [65535, 0], "now looked exceedingly improved and uncomfortable he was": [65535, 0], "looked exceedingly improved and uncomfortable he was fully": [65535, 0], "exceedingly improved and uncomfortable he was fully as": [65535, 0], "improved and uncomfortable he was fully as uncomfortable": [65535, 0], "and uncomfortable he was fully as uncomfortable as": [65535, 0], "uncomfortable he was fully as uncomfortable as he": [65535, 0], "he was fully as uncomfortable as he looked": [65535, 0], "was fully as uncomfortable as he looked for": [65535, 0], "fully as uncomfortable as he looked for there": [65535, 0], "as uncomfortable as he looked for there was": [65535, 0], "uncomfortable as he looked for there was a": [65535, 0], "as he looked for there was a restraint": [65535, 0], "he looked for there was a restraint about": [65535, 0], "looked for there was a restraint about whole": [65535, 0], "for there was a restraint about whole clothes": [65535, 0], "there was a restraint about whole clothes and": [65535, 0], "was a restraint about whole clothes and cleanliness": [65535, 0], "a restraint about whole clothes and cleanliness that": [65535, 0], "restraint about whole clothes and cleanliness that galled": [65535, 0], "about whole clothes and cleanliness that galled him": [65535, 0], "whole clothes and cleanliness that galled him he": [65535, 0], "clothes and cleanliness that galled him he hoped": [65535, 0], "and cleanliness that galled him he hoped that": [65535, 0], "cleanliness that galled him he hoped that mary": [65535, 0], "that galled him he hoped that mary would": [65535, 0], "galled him he hoped that mary would forget": [65535, 0], "him he hoped that mary would forget his": [65535, 0], "he hoped that mary would forget his shoes": [65535, 0], "hoped that mary would forget his shoes but": [65535, 0], "that mary would forget his shoes but the": [65535, 0], "mary would forget his shoes but the hope": [65535, 0], "would forget his shoes but the hope was": [65535, 0], "forget his shoes but the hope was blighted": [65535, 0], "his shoes but the hope was blighted she": [65535, 0], "shoes but the hope was blighted she coated": [65535, 0], "but the hope was blighted she coated them": [65535, 0], "the hope was blighted she coated them thoroughly": [65535, 0], "hope was blighted she coated them thoroughly with": [65535, 0], "was blighted she coated them thoroughly with tallow": [65535, 0], "blighted she coated them thoroughly with tallow as": [65535, 0], "she coated them thoroughly with tallow as was": [65535, 0], "coated them thoroughly with tallow as was the": [65535, 0], "them thoroughly with tallow as was the custom": [65535, 0], "thoroughly with tallow as was the custom and": [65535, 0], "with tallow as was the custom and brought": [65535, 0], "tallow as was the custom and brought them": [65535, 0], "as was the custom and brought them out": [65535, 0], "was the custom and brought them out he": [65535, 0], "the custom and brought them out he lost": [65535, 0], "custom and brought them out he lost his": [65535, 0], "and brought them out he lost his temper": [65535, 0], "brought them out he lost his temper and": [65535, 0], "them out he lost his temper and said": [65535, 0], "out he lost his temper and said he": [65535, 0], "he lost his temper and said he was": [65535, 0], "lost his temper and said he was always": [65535, 0], "his temper and said he was always being": [65535, 0], "temper and said he was always being made": [65535, 0], "and said he was always being made to": [65535, 0], "said he was always being made to do": [65535, 0], "he was always being made to do everything": [65535, 0], "was always being made to do everything he": [65535, 0], "always being made to do everything he didn't": [65535, 0], "being made to do everything he didn't want": [65535, 0], "made to do everything he didn't want to": [65535, 0], "to do everything he didn't want to do": [65535, 0], "do everything he didn't want to do but": [65535, 0], "everything he didn't want to do but mary": [65535, 0], "he didn't want to do but mary said": [65535, 0], "didn't want to do but mary said persuasively": [65535, 0], "want to do but mary said persuasively please": [65535, 0], "to do but mary said persuasively please tom": [65535, 0], "do but mary said persuasively please tom that's": [65535, 0], "but mary said persuasively please tom that's a": [65535, 0], "mary said persuasively please tom that's a good": [65535, 0], "said persuasively please tom that's a good boy": [65535, 0], "persuasively please tom that's a good boy so": [65535, 0], "please tom that's a good boy so he": [65535, 0], "tom that's a good boy so he got": [65535, 0], "that's a good boy so he got into": [65535, 0], "a good boy so he got into the": [65535, 0], "good boy so he got into the shoes": [65535, 0], "boy so he got into the shoes snarling": [65535, 0], "so he got into the shoes snarling mary": [65535, 0], "he got into the shoes snarling mary was": [65535, 0], "got into the shoes snarling mary was soon": [65535, 0], "into the shoes snarling mary was soon ready": [65535, 0], "the shoes snarling mary was soon ready and": [65535, 0], "shoes snarling mary was soon ready and the": [65535, 0], "snarling mary was soon ready and the three": [65535, 0], "mary was soon ready and the three children": [65535, 0], "was soon ready and the three children set": [65535, 0], "soon ready and the three children set out": [65535, 0], "ready and the three children set out for": [65535, 0], "and the three children set out for sunday": [65535, 0], "the three children set out for sunday school": [65535, 0], "three children set out for sunday school a": [65535, 0], "children set out for sunday school a place": [65535, 0], "set out for sunday school a place that": [65535, 0], "out for sunday school a place that tom": [65535, 0], "for sunday school a place that tom hated": [65535, 0], "sunday school a place that tom hated with": [65535, 0], "school a place that tom hated with his": [65535, 0], "a place that tom hated with his whole": [65535, 0], "place that tom hated with his whole heart": [65535, 0], "that tom hated with his whole heart but": [65535, 0], "tom hated with his whole heart but sid": [65535, 0], "hated with his whole heart but sid and": [65535, 0], "with his whole heart but sid and mary": [65535, 0], "his whole heart but sid and mary were": [65535, 0], "whole heart but sid and mary were fond": [65535, 0], "heart but sid and mary were fond of": [65535, 0], "but sid and mary were fond of it": [65535, 0], "sid and mary were fond of it sabbath": [65535, 0], "and mary were fond of it sabbath school": [65535, 0], "mary were fond of it sabbath school hours": [65535, 0], "were fond of it sabbath school hours were": [65535, 0], "fond of it sabbath school hours were from": [65535, 0], "of it sabbath school hours were from nine": [65535, 0], "it sabbath school hours were from nine to": [65535, 0], "sabbath school hours were from nine to half": [65535, 0], "school hours were from nine to half past": [65535, 0], "hours were from nine to half past ten": [65535, 0], "were from nine to half past ten and": [65535, 0], "from nine to half past ten and then": [65535, 0], "nine to half past ten and then church": [65535, 0], "to half past ten and then church service": [65535, 0], "half past ten and then church service two": [65535, 0], "past ten and then church service two of": [65535, 0], "ten and then church service two of the": [65535, 0], "and then church service two of the children": [65535, 0], "then church service two of the children always": [65535, 0], "church service two of the children always remained": [65535, 0], "service two of the children always remained for": [65535, 0], "two of the children always remained for the": [65535, 0], "of the children always remained for the sermon": [65535, 0], "the children always remained for the sermon voluntarily": [65535, 0], "children always remained for the sermon voluntarily and": [65535, 0], "always remained for the sermon voluntarily and the": [65535, 0], "remained for the sermon voluntarily and the other": [65535, 0], "for the sermon voluntarily and the other always": [65535, 0], "the sermon voluntarily and the other always remained": [65535, 0], "sermon voluntarily and the other always remained too": [65535, 0], "voluntarily and the other always remained too for": [65535, 0], "and the other always remained too for stronger": [65535, 0], "the other always remained too for stronger reasons": [65535, 0], "other always remained too for stronger reasons the": [65535, 0], "always remained too for stronger reasons the church's": [65535, 0], "remained too for stronger reasons the church's high": [65535, 0], "too for stronger reasons the church's high backed": [65535, 0], "for stronger reasons the church's high backed uncushioned": [65535, 0], "stronger reasons the church's high backed uncushioned pews": [65535, 0], "reasons the church's high backed uncushioned pews would": [65535, 0], "the church's high backed uncushioned pews would seat": [65535, 0], "church's high backed uncushioned pews would seat about": [65535, 0], "high backed uncushioned pews would seat about three": [65535, 0], "backed uncushioned pews would seat about three hundred": [65535, 0], "uncushioned pews would seat about three hundred persons": [65535, 0], "pews would seat about three hundred persons the": [65535, 0], "would seat about three hundred persons the edifice": [65535, 0], "seat about three hundred persons the edifice was": [65535, 0], "about three hundred persons the edifice was but": [65535, 0], "three hundred persons the edifice was but a": [65535, 0], "hundred persons the edifice was but a small": [65535, 0], "persons the edifice was but a small plain": [65535, 0], "the edifice was but a small plain affair": [65535, 0], "edifice was but a small plain affair with": [65535, 0], "was but a small plain affair with a": [65535, 0], "but a small plain affair with a sort": [65535, 0], "a small plain affair with a sort of": [65535, 0], "small plain affair with a sort of pine": [65535, 0], "plain affair with a sort of pine board": [65535, 0], "affair with a sort of pine board tree": [65535, 0], "with a sort of pine board tree box": [65535, 0], "a sort of pine board tree box on": [65535, 0], "sort of pine board tree box on top": [65535, 0], "of pine board tree box on top of": [65535, 0], "pine board tree box on top of it": [65535, 0], "board tree box on top of it for": [65535, 0], "tree box on top of it for a": [65535, 0], "box on top of it for a steeple": [65535, 0], "on top of it for a steeple at": [65535, 0], "top of it for a steeple at the": [65535, 0], "of it for a steeple at the door": [65535, 0], "it for a steeple at the door tom": [65535, 0], "for a steeple at the door tom dropped": [65535, 0], "a steeple at the door tom dropped back": [65535, 0], "steeple at the door tom dropped back a": [65535, 0], "at the door tom dropped back a step": [65535, 0], "the door tom dropped back a step and": [65535, 0], "door tom dropped back a step and accosted": [65535, 0], "tom dropped back a step and accosted a": [65535, 0], "dropped back a step and accosted a sunday": [65535, 0], "back a step and accosted a sunday dressed": [65535, 0], "a step and accosted a sunday dressed comrade": [65535, 0], "step and accosted a sunday dressed comrade say": [65535, 0], "and accosted a sunday dressed comrade say billy": [65535, 0], "accosted a sunday dressed comrade say billy got": [65535, 0], "a sunday dressed comrade say billy got a": [65535, 0], "sunday dressed comrade say billy got a yaller": [65535, 0], "dressed comrade say billy got a yaller ticket": [65535, 0], "comrade say billy got a yaller ticket yes": [65535, 0], "say billy got a yaller ticket yes what'll": [65535, 0], "billy got a yaller ticket yes what'll you": [65535, 0], "got a yaller ticket yes what'll you take": [65535, 0], "a yaller ticket yes what'll you take for": [65535, 0], "yaller ticket yes what'll you take for her": [65535, 0], "ticket yes what'll you take for her what'll": [65535, 0], "yes what'll you take for her what'll you": [65535, 0], "what'll you take for her what'll you give": [65535, 0], "you take for her what'll you give piece": [65535, 0], "take for her what'll you give piece of": [65535, 0], "for her what'll you give piece of lickrish": [65535, 0], "her what'll you give piece of lickrish and": [65535, 0], "what'll you give piece of lickrish and a": [65535, 0], "you give piece of lickrish and a fish": [65535, 0], "give piece of lickrish and a fish hook": [65535, 0], "piece of lickrish and a fish hook less": [65535, 0], "of lickrish and a fish hook less see": [65535, 0], "lickrish and a fish hook less see 'em": [65535, 0], "and a fish hook less see 'em tom": [65535, 0], "a fish hook less see 'em tom exhibited": [65535, 0], "fish hook less see 'em tom exhibited they": [65535, 0], "hook less see 'em tom exhibited they were": [65535, 0], "less see 'em tom exhibited they were satisfactory": [65535, 0], "see 'em tom exhibited they were satisfactory and": [65535, 0], "'em tom exhibited they were satisfactory and the": [65535, 0], "tom exhibited they were satisfactory and the property": [65535, 0], "exhibited they were satisfactory and the property changed": [65535, 0], "they were satisfactory and the property changed hands": [65535, 0], "were satisfactory and the property changed hands then": [65535, 0], "satisfactory and the property changed hands then tom": [65535, 0], "and the property changed hands then tom traded": [65535, 0], "the property changed hands then tom traded a": [65535, 0], "property changed hands then tom traded a couple": [65535, 0], "changed hands then tom traded a couple of": [65535, 0], "hands then tom traded a couple of white": [65535, 0], "then tom traded a couple of white alleys": [65535, 0], "tom traded a couple of white alleys for": [65535, 0], "traded a couple of white alleys for three": [65535, 0], "a couple of white alleys for three red": [65535, 0], "couple of white alleys for three red tickets": [65535, 0], "of white alleys for three red tickets and": [65535, 0], "white alleys for three red tickets and some": [65535, 0], "alleys for three red tickets and some small": [65535, 0], "for three red tickets and some small trifle": [65535, 0], "three red tickets and some small trifle or": [65535, 0], "red tickets and some small trifle or other": [65535, 0], "tickets and some small trifle or other for": [65535, 0], "and some small trifle or other for a": [65535, 0], "some small trifle or other for a couple": [65535, 0], "small trifle or other for a couple of": [65535, 0], "trifle or other for a couple of blue": [65535, 0], "or other for a couple of blue ones": [65535, 0], "other for a couple of blue ones he": [65535, 0], "for a couple of blue ones he waylaid": [65535, 0], "a couple of blue ones he waylaid other": [65535, 0], "couple of blue ones he waylaid other boys": [65535, 0], "of blue ones he waylaid other boys as": [65535, 0], "blue ones he waylaid other boys as they": [65535, 0], "ones he waylaid other boys as they came": [65535, 0], "he waylaid other boys as they came and": [65535, 0], "waylaid other boys as they came and went": [65535, 0], "other boys as they came and went on": [65535, 0], "boys as they came and went on buying": [65535, 0], "as they came and went on buying tickets": [65535, 0], "they came and went on buying tickets of": [65535, 0], "came and went on buying tickets of various": [65535, 0], "and went on buying tickets of various colors": [65535, 0], "went on buying tickets of various colors ten": [65535, 0], "on buying tickets of various colors ten or": [65535, 0], "buying tickets of various colors ten or fifteen": [65535, 0], "tickets of various colors ten or fifteen minutes": [65535, 0], "of various colors ten or fifteen minutes longer": [65535, 0], "various colors ten or fifteen minutes longer he": [65535, 0], "colors ten or fifteen minutes longer he entered": [65535, 0], "ten or fifteen minutes longer he entered the": [65535, 0], "or fifteen minutes longer he entered the church": [65535, 0], "fifteen minutes longer he entered the church now": [65535, 0], "minutes longer he entered the church now with": [65535, 0], "longer he entered the church now with a": [65535, 0], "he entered the church now with a swarm": [65535, 0], "entered the church now with a swarm of": [65535, 0], "the church now with a swarm of clean": [65535, 0], "church now with a swarm of clean and": [65535, 0], "now with a swarm of clean and noisy": [65535, 0], "with a swarm of clean and noisy boys": [65535, 0], "a swarm of clean and noisy boys and": [65535, 0], "swarm of clean and noisy boys and girls": [65535, 0], "of clean and noisy boys and girls proceeded": [65535, 0], "clean and noisy boys and girls proceeded to": [65535, 0], "and noisy boys and girls proceeded to his": [65535, 0], "noisy boys and girls proceeded to his seat": [65535, 0], "boys and girls proceeded to his seat and": [65535, 0], "and girls proceeded to his seat and started": [65535, 0], "girls proceeded to his seat and started a": [65535, 0], "proceeded to his seat and started a quarrel": [65535, 0], "to his seat and started a quarrel with": [65535, 0], "his seat and started a quarrel with the": [65535, 0], "seat and started a quarrel with the first": [65535, 0], "and started a quarrel with the first boy": [65535, 0], "started a quarrel with the first boy that": [65535, 0], "a quarrel with the first boy that came": [65535, 0], "quarrel with the first boy that came handy": [65535, 0], "with the first boy that came handy the": [65535, 0], "the first boy that came handy the teacher": [65535, 0], "first boy that came handy the teacher a": [65535, 0], "boy that came handy the teacher a grave": [65535, 0], "that came handy the teacher a grave elderly": [65535, 0], "came handy the teacher a grave elderly man": [65535, 0], "handy the teacher a grave elderly man interfered": [65535, 0], "the teacher a grave elderly man interfered then": [65535, 0], "teacher a grave elderly man interfered then turned": [65535, 0], "a grave elderly man interfered then turned his": [65535, 0], "grave elderly man interfered then turned his back": [65535, 0], "elderly man interfered then turned his back a": [65535, 0], "man interfered then turned his back a moment": [65535, 0], "interfered then turned his back a moment and": [65535, 0], "then turned his back a moment and tom": [65535, 0], "turned his back a moment and tom pulled": [65535, 0], "his back a moment and tom pulled a": [65535, 0], "back a moment and tom pulled a boy's": [65535, 0], "a moment and tom pulled a boy's hair": [65535, 0], "moment and tom pulled a boy's hair in": [65535, 0], "and tom pulled a boy's hair in the": [65535, 0], "tom pulled a boy's hair in the next": [65535, 0], "pulled a boy's hair in the next bench": [65535, 0], "a boy's hair in the next bench and": [65535, 0], "boy's hair in the next bench and was": [65535, 0], "hair in the next bench and was absorbed": [65535, 0], "in the next bench and was absorbed in": [65535, 0], "the next bench and was absorbed in his": [65535, 0], "next bench and was absorbed in his book": [65535, 0], "bench and was absorbed in his book when": [65535, 0], "and was absorbed in his book when the": [65535, 0], "was absorbed in his book when the boy": [65535, 0], "absorbed in his book when the boy turned": [65535, 0], "in his book when the boy turned around": [65535, 0], "his book when the boy turned around stuck": [65535, 0], "book when the boy turned around stuck a": [65535, 0], "when the boy turned around stuck a pin": [65535, 0], "the boy turned around stuck a pin in": [65535, 0], "boy turned around stuck a pin in another": [65535, 0], "turned around stuck a pin in another boy": [65535, 0], "around stuck a pin in another boy presently": [65535, 0], "stuck a pin in another boy presently in": [65535, 0], "a pin in another boy presently in order": [65535, 0], "pin in another boy presently in order to": [65535, 0], "in another boy presently in order to hear": [65535, 0], "another boy presently in order to hear him": [65535, 0], "boy presently in order to hear him say": [65535, 0], "presently in order to hear him say ouch": [65535, 0], "in order to hear him say ouch and": [65535, 0], "order to hear him say ouch and got": [65535, 0], "to hear him say ouch and got a": [65535, 0], "hear him say ouch and got a new": [65535, 0], "him say ouch and got a new reprimand": [65535, 0], "say ouch and got a new reprimand from": [65535, 0], "ouch and got a new reprimand from his": [65535, 0], "and got a new reprimand from his teacher": [65535, 0], "got a new reprimand from his teacher tom's": [65535, 0], "a new reprimand from his teacher tom's whole": [65535, 0], "new reprimand from his teacher tom's whole class": [65535, 0], "reprimand from his teacher tom's whole class were": [65535, 0], "from his teacher tom's whole class were of": [65535, 0], "his teacher tom's whole class were of a": [65535, 0], "teacher tom's whole class were of a pattern": [65535, 0], "tom's whole class were of a pattern restless": [65535, 0], "whole class were of a pattern restless noisy": [65535, 0], "class were of a pattern restless noisy and": [65535, 0], "were of a pattern restless noisy and troublesome": [65535, 0], "of a pattern restless noisy and troublesome when": [65535, 0], "a pattern restless noisy and troublesome when they": [65535, 0], "pattern restless noisy and troublesome when they came": [65535, 0], "restless noisy and troublesome when they came to": [65535, 0], "noisy and troublesome when they came to recite": [65535, 0], "and troublesome when they came to recite their": [65535, 0], "troublesome when they came to recite their lessons": [65535, 0], "when they came to recite their lessons not": [65535, 0], "they came to recite their lessons not one": [65535, 0], "came to recite their lessons not one of": [65535, 0], "to recite their lessons not one of them": [65535, 0], "recite their lessons not one of them knew": [65535, 0], "their lessons not one of them knew his": [65535, 0], "lessons not one of them knew his verses": [65535, 0], "not one of them knew his verses perfectly": [65535, 0], "one of them knew his verses perfectly but": [65535, 0], "of them knew his verses perfectly but had": [65535, 0], "them knew his verses perfectly but had to": [65535, 0], "knew his verses perfectly but had to be": [65535, 0], "his verses perfectly but had to be prompted": [65535, 0], "verses perfectly but had to be prompted all": [65535, 0], "perfectly but had to be prompted all along": [65535, 0], "but had to be prompted all along however": [65535, 0], "had to be prompted all along however they": [65535, 0], "to be prompted all along however they worried": [65535, 0], "be prompted all along however they worried through": [65535, 0], "prompted all along however they worried through and": [65535, 0], "all along however they worried through and each": [65535, 0], "along however they worried through and each got": [65535, 0], "however they worried through and each got his": [65535, 0], "they worried through and each got his reward": [65535, 0], "worried through and each got his reward in": [65535, 0], "through and each got his reward in small": [65535, 0], "and each got his reward in small blue": [65535, 0], "each got his reward in small blue tickets": [65535, 0], "got his reward in small blue tickets each": [65535, 0], "his reward in small blue tickets each with": [65535, 0], "reward in small blue tickets each with a": [65535, 0], "in small blue tickets each with a passage": [65535, 0], "small blue tickets each with a passage of": [65535, 0], "blue tickets each with a passage of scripture": [65535, 0], "tickets each with a passage of scripture on": [65535, 0], "each with a passage of scripture on it": [65535, 0], "with a passage of scripture on it each": [65535, 0], "a passage of scripture on it each blue": [65535, 0], "passage of scripture on it each blue ticket": [65535, 0], "of scripture on it each blue ticket was": [65535, 0], "scripture on it each blue ticket was pay": [65535, 0], "on it each blue ticket was pay for": [65535, 0], "it each blue ticket was pay for two": [65535, 0], "each blue ticket was pay for two verses": [65535, 0], "blue ticket was pay for two verses of": [65535, 0], "ticket was pay for two verses of the": [65535, 0], "was pay for two verses of the recitation": [65535, 0], "pay for two verses of the recitation ten": [65535, 0], "for two verses of the recitation ten blue": [65535, 0], "two verses of the recitation ten blue tickets": [65535, 0], "verses of the recitation ten blue tickets equalled": [65535, 0], "of the recitation ten blue tickets equalled a": [65535, 0], "the recitation ten blue tickets equalled a red": [65535, 0], "recitation ten blue tickets equalled a red one": [65535, 0], "ten blue tickets equalled a red one and": [65535, 0], "blue tickets equalled a red one and could": [65535, 0], "tickets equalled a red one and could be": [65535, 0], "equalled a red one and could be exchanged": [65535, 0], "a red one and could be exchanged for": [65535, 0], "red one and could be exchanged for it": [65535, 0], "one and could be exchanged for it ten": [65535, 0], "and could be exchanged for it ten red": [65535, 0], "could be exchanged for it ten red tickets": [65535, 0], "be exchanged for it ten red tickets equalled": [65535, 0], "exchanged for it ten red tickets equalled a": [65535, 0], "for it ten red tickets equalled a yellow": [65535, 0], "it ten red tickets equalled a yellow one": [65535, 0], "ten red tickets equalled a yellow one for": [65535, 0], "red tickets equalled a yellow one for ten": [65535, 0], "tickets equalled a yellow one for ten yellow": [65535, 0], "equalled a yellow one for ten yellow tickets": [65535, 0], "a yellow one for ten yellow tickets the": [65535, 0], "yellow one for ten yellow tickets the superintendent": [65535, 0], "one for ten yellow tickets the superintendent gave": [65535, 0], "for ten yellow tickets the superintendent gave a": [65535, 0], "ten yellow tickets the superintendent gave a very": [65535, 0], "yellow tickets the superintendent gave a very plainly": [65535, 0], "tickets the superintendent gave a very plainly bound": [65535, 0], "the superintendent gave a very plainly bound bible": [65535, 0], "superintendent gave a very plainly bound bible worth": [65535, 0], "gave a very plainly bound bible worth forty": [65535, 0], "a very plainly bound bible worth forty cents": [65535, 0], "very plainly bound bible worth forty cents in": [65535, 0], "plainly bound bible worth forty cents in those": [65535, 0], "bound bible worth forty cents in those easy": [65535, 0], "bible worth forty cents in those easy times": [65535, 0], "worth forty cents in those easy times to": [65535, 0], "forty cents in those easy times to the": [65535, 0], "cents in those easy times to the pupil": [65535, 0], "in those easy times to the pupil how": [65535, 0], "those easy times to the pupil how many": [65535, 0], "easy times to the pupil how many of": [65535, 0], "times to the pupil how many of my": [65535, 0], "to the pupil how many of my readers": [65535, 0], "the pupil how many of my readers would": [65535, 0], "pupil how many of my readers would have": [65535, 0], "how many of my readers would have the": [65535, 0], "many of my readers would have the industry": [65535, 0], "of my readers would have the industry and": [65535, 0], "my readers would have the industry and application": [65535, 0], "readers would have the industry and application to": [65535, 0], "would have the industry and application to memorize": [65535, 0], "have the industry and application to memorize two": [65535, 0], "the industry and application to memorize two thousand": [65535, 0], "industry and application to memorize two thousand verses": [65535, 0], "and application to memorize two thousand verses even": [65535, 0], "application to memorize two thousand verses even for": [65535, 0], "to memorize two thousand verses even for a": [65535, 0], "memorize two thousand verses even for a dore": [65535, 0], "two thousand verses even for a dore bible": [65535, 0], "thousand verses even for a dore bible and": [65535, 0], "verses even for a dore bible and yet": [65535, 0], "even for a dore bible and yet mary": [65535, 0], "for a dore bible and yet mary had": [65535, 0], "a dore bible and yet mary had acquired": [65535, 0], "dore bible and yet mary had acquired two": [65535, 0], "bible and yet mary had acquired two bibles": [65535, 0], "and yet mary had acquired two bibles in": [65535, 0], "yet mary had acquired two bibles in this": [65535, 0], "mary had acquired two bibles in this way": [65535, 0], "had acquired two bibles in this way it": [65535, 0], "acquired two bibles in this way it was": [65535, 0], "two bibles in this way it was the": [65535, 0], "bibles in this way it was the patient": [65535, 0], "in this way it was the patient work": [65535, 0], "this way it was the patient work of": [65535, 0], "way it was the patient work of two": [65535, 0], "it was the patient work of two years": [65535, 0], "was the patient work of two years and": [65535, 0], "the patient work of two years and a": [65535, 0], "patient work of two years and a boy": [65535, 0], "work of two years and a boy of": [65535, 0], "of two years and a boy of german": [65535, 0], "two years and a boy of german parentage": [65535, 0], "years and a boy of german parentage had": [65535, 0], "and a boy of german parentage had won": [65535, 0], "a boy of german parentage had won four": [65535, 0], "boy of german parentage had won four or": [65535, 0], "of german parentage had won four or five": [65535, 0], "german parentage had won four or five he": [65535, 0], "parentage had won four or five he once": [65535, 0], "had won four or five he once recited": [65535, 0], "won four or five he once recited three": [65535, 0], "four or five he once recited three thousand": [65535, 0], "or five he once recited three thousand verses": [65535, 0], "five he once recited three thousand verses without": [65535, 0], "he once recited three thousand verses without stopping": [65535, 0], "once recited three thousand verses without stopping but": [65535, 0], "recited three thousand verses without stopping but the": [65535, 0], "three thousand verses without stopping but the strain": [65535, 0], "thousand verses without stopping but the strain upon": [65535, 0], "verses without stopping but the strain upon his": [65535, 0], "without stopping but the strain upon his mental": [65535, 0], "stopping but the strain upon his mental faculties": [65535, 0], "but the strain upon his mental faculties was": [65535, 0], "the strain upon his mental faculties was too": [65535, 0], "strain upon his mental faculties was too great": [65535, 0], "upon his mental faculties was too great and": [65535, 0], "his mental faculties was too great and he": [65535, 0], "mental faculties was too great and he was": [65535, 0], "faculties was too great and he was little": [65535, 0], "was too great and he was little better": [65535, 0], "too great and he was little better than": [65535, 0], "great and he was little better than an": [65535, 0], "and he was little better than an idiot": [65535, 0], "he was little better than an idiot from": [65535, 0], "was little better than an idiot from that": [65535, 0], "little better than an idiot from that day": [65535, 0], "better than an idiot from that day forth": [65535, 0], "than an idiot from that day forth a": [65535, 0], "an idiot from that day forth a grievous": [65535, 0], "idiot from that day forth a grievous misfortune": [65535, 0], "from that day forth a grievous misfortune for": [65535, 0], "that day forth a grievous misfortune for the": [65535, 0], "day forth a grievous misfortune for the school": [65535, 0], "forth a grievous misfortune for the school for": [65535, 0], "a grievous misfortune for the school for on": [65535, 0], "grievous misfortune for the school for on great": [65535, 0], "misfortune for the school for on great occasions": [65535, 0], "for the school for on great occasions before": [65535, 0], "the school for on great occasions before company": [65535, 0], "school for on great occasions before company the": [65535, 0], "for on great occasions before company the superintendent": [65535, 0], "on great occasions before company the superintendent as": [65535, 0], "great occasions before company the superintendent as tom": [65535, 0], "occasions before company the superintendent as tom expressed": [65535, 0], "before company the superintendent as tom expressed it": [65535, 0], "company the superintendent as tom expressed it had": [65535, 0], "the superintendent as tom expressed it had always": [65535, 0], "superintendent as tom expressed it had always made": [65535, 0], "as tom expressed it had always made this": [65535, 0], "tom expressed it had always made this boy": [65535, 0], "expressed it had always made this boy come": [65535, 0], "it had always made this boy come out": [65535, 0], "had always made this boy come out and": [65535, 0], "always made this boy come out and spread": [65535, 0], "made this boy come out and spread himself": [65535, 0], "this boy come out and spread himself only": [65535, 0], "boy come out and spread himself only the": [65535, 0], "come out and spread himself only the older": [65535, 0], "out and spread himself only the older pupils": [65535, 0], "and spread himself only the older pupils managed": [65535, 0], "spread himself only the older pupils managed to": [65535, 0], "himself only the older pupils managed to keep": [65535, 0], "only the older pupils managed to keep their": [65535, 0], "the older pupils managed to keep their tickets": [65535, 0], "older pupils managed to keep their tickets and": [65535, 0], "pupils managed to keep their tickets and stick": [65535, 0], "managed to keep their tickets and stick to": [65535, 0], "to keep their tickets and stick to their": [65535, 0], "keep their tickets and stick to their tedious": [65535, 0], "their tickets and stick to their tedious work": [65535, 0], "tickets and stick to their tedious work long": [65535, 0], "and stick to their tedious work long enough": [65535, 0], "stick to their tedious work long enough to": [65535, 0], "to their tedious work long enough to get": [65535, 0], "their tedious work long enough to get a": [65535, 0], "tedious work long enough to get a bible": [65535, 0], "work long enough to get a bible and": [65535, 0], "long enough to get a bible and so": [65535, 0], "enough to get a bible and so the": [65535, 0], "to get a bible and so the delivery": [65535, 0], "get a bible and so the delivery of": [65535, 0], "a bible and so the delivery of one": [65535, 0], "bible and so the delivery of one of": [65535, 0], "and so the delivery of one of these": [65535, 0], "so the delivery of one of these prizes": [65535, 0], "the delivery of one of these prizes was": [65535, 0], "delivery of one of these prizes was a": [65535, 0], "of one of these prizes was a rare": [65535, 0], "one of these prizes was a rare and": [65535, 0], "of these prizes was a rare and noteworthy": [65535, 0], "these prizes was a rare and noteworthy circumstance": [65535, 0], "prizes was a rare and noteworthy circumstance the": [65535, 0], "was a rare and noteworthy circumstance the successful": [65535, 0], "a rare and noteworthy circumstance the successful pupil": [65535, 0], "rare and noteworthy circumstance the successful pupil was": [65535, 0], "and noteworthy circumstance the successful pupil was so": [65535, 0], "noteworthy circumstance the successful pupil was so great": [65535, 0], "circumstance the successful pupil was so great and": [65535, 0], "the successful pupil was so great and conspicuous": [65535, 0], "successful pupil was so great and conspicuous for": [65535, 0], "pupil was so great and conspicuous for that": [65535, 0], "was so great and conspicuous for that day": [65535, 0], "so great and conspicuous for that day that": [65535, 0], "great and conspicuous for that day that on": [65535, 0], "and conspicuous for that day that on the": [65535, 0], "conspicuous for that day that on the spot": [65535, 0], "for that day that on the spot every": [65535, 0], "that day that on the spot every scholar's": [65535, 0], "day that on the spot every scholar's heart": [65535, 0], "that on the spot every scholar's heart was": [65535, 0], "on the spot every scholar's heart was fired": [65535, 0], "the spot every scholar's heart was fired with": [65535, 0], "spot every scholar's heart was fired with a": [65535, 0], "every scholar's heart was fired with a fresh": [65535, 0], "scholar's heart was fired with a fresh ambition": [65535, 0], "heart was fired with a fresh ambition that": [65535, 0], "was fired with a fresh ambition that often": [65535, 0], "fired with a fresh ambition that often lasted": [65535, 0], "with a fresh ambition that often lasted a": [65535, 0], "a fresh ambition that often lasted a couple": [65535, 0], "fresh ambition that often lasted a couple of": [65535, 0], "ambition that often lasted a couple of weeks": [65535, 0], "that often lasted a couple of weeks it": [65535, 0], "often lasted a couple of weeks it is": [65535, 0], "lasted a couple of weeks it is possible": [65535, 0], "a couple of weeks it is possible that": [65535, 0], "couple of weeks it is possible that tom's": [65535, 0], "of weeks it is possible that tom's mental": [65535, 0], "weeks it is possible that tom's mental stomach": [65535, 0], "it is possible that tom's mental stomach had": [65535, 0], "is possible that tom's mental stomach had never": [65535, 0], "possible that tom's mental stomach had never really": [65535, 0], "that tom's mental stomach had never really hungered": [65535, 0], "tom's mental stomach had never really hungered for": [65535, 0], "mental stomach had never really hungered for one": [65535, 0], "stomach had never really hungered for one of": [65535, 0], "had never really hungered for one of those": [65535, 0], "never really hungered for one of those prizes": [65535, 0], "really hungered for one of those prizes but": [65535, 0], "hungered for one of those prizes but unquestionably": [65535, 0], "for one of those prizes but unquestionably his": [65535, 0], "one of those prizes but unquestionably his entire": [65535, 0], "of those prizes but unquestionably his entire being": [65535, 0], "those prizes but unquestionably his entire being had": [65535, 0], "prizes but unquestionably his entire being had for": [65535, 0], "but unquestionably his entire being had for many": [65535, 0], "unquestionably his entire being had for many a": [65535, 0], "his entire being had for many a day": [65535, 0], "entire being had for many a day longed": [65535, 0], "being had for many a day longed for": [65535, 0], "had for many a day longed for the": [65535, 0], "for many a day longed for the glory": [65535, 0], "many a day longed for the glory and": [65535, 0], "a day longed for the glory and the": [65535, 0], "day longed for the glory and the eclat": [65535, 0], "longed for the glory and the eclat that": [65535, 0], "for the glory and the eclat that came": [65535, 0], "the glory and the eclat that came with": [65535, 0], "glory and the eclat that came with it": [65535, 0], "and the eclat that came with it in": [65535, 0], "the eclat that came with it in due": [65535, 0], "eclat that came with it in due course": [65535, 0], "that came with it in due course the": [65535, 0], "came with it in due course the superintendent": [65535, 0], "with it in due course the superintendent stood": [65535, 0], "it in due course the superintendent stood up": [65535, 0], "in due course the superintendent stood up in": [65535, 0], "due course the superintendent stood up in front": [65535, 0], "course the superintendent stood up in front of": [65535, 0], "the superintendent stood up in front of the": [65535, 0], "superintendent stood up in front of the pulpit": [65535, 0], "stood up in front of the pulpit with": [65535, 0], "up in front of the pulpit with a": [65535, 0], "in front of the pulpit with a closed": [65535, 0], "front of the pulpit with a closed hymn": [65535, 0], "of the pulpit with a closed hymn book": [65535, 0], "the pulpit with a closed hymn book in": [65535, 0], "pulpit with a closed hymn book in his": [65535, 0], "with a closed hymn book in his hand": [65535, 0], "a closed hymn book in his hand and": [65535, 0], "closed hymn book in his hand and his": [65535, 0], "hymn book in his hand and his forefinger": [65535, 0], "book in his hand and his forefinger inserted": [65535, 0], "in his hand and his forefinger inserted between": [65535, 0], "his hand and his forefinger inserted between its": [65535, 0], "hand and his forefinger inserted between its leaves": [65535, 0], "and his forefinger inserted between its leaves and": [65535, 0], "his forefinger inserted between its leaves and commanded": [65535, 0], "forefinger inserted between its leaves and commanded attention": [65535, 0], "inserted between its leaves and commanded attention when": [65535, 0], "between its leaves and commanded attention when a": [65535, 0], "its leaves and commanded attention when a sunday": [65535, 0], "leaves and commanded attention when a sunday school": [65535, 0], "and commanded attention when a sunday school superintendent": [65535, 0], "commanded attention when a sunday school superintendent makes": [65535, 0], "attention when a sunday school superintendent makes his": [65535, 0], "when a sunday school superintendent makes his customary": [65535, 0], "a sunday school superintendent makes his customary little": [65535, 0], "sunday school superintendent makes his customary little speech": [65535, 0], "school superintendent makes his customary little speech a": [65535, 0], "superintendent makes his customary little speech a hymn": [65535, 0], "makes his customary little speech a hymn book": [65535, 0], "his customary little speech a hymn book in": [65535, 0], "customary little speech a hymn book in the": [65535, 0], "little speech a hymn book in the hand": [65535, 0], "speech a hymn book in the hand is": [65535, 0], "a hymn book in the hand is as": [65535, 0], "hymn book in the hand is as necessary": [65535, 0], "book in the hand is as necessary as": [65535, 0], "in the hand is as necessary as is": [65535, 0], "the hand is as necessary as is the": [65535, 0], "hand is as necessary as is the inevitable": [65535, 0], "is as necessary as is the inevitable sheet": [65535, 0], "as necessary as is the inevitable sheet of": [65535, 0], "necessary as is the inevitable sheet of music": [65535, 0], "as is the inevitable sheet of music in": [65535, 0], "is the inevitable sheet of music in the": [65535, 0], "the inevitable sheet of music in the hand": [65535, 0], "inevitable sheet of music in the hand of": [65535, 0], "sheet of music in the hand of a": [65535, 0], "of music in the hand of a singer": [65535, 0], "music in the hand of a singer who": [65535, 0], "in the hand of a singer who stands": [65535, 0], "the hand of a singer who stands forward": [65535, 0], "hand of a singer who stands forward on": [65535, 0], "of a singer who stands forward on the": [65535, 0], "a singer who stands forward on the platform": [65535, 0], "singer who stands forward on the platform and": [65535, 0], "who stands forward on the platform and sings": [65535, 0], "stands forward on the platform and sings a": [65535, 0], "forward on the platform and sings a solo": [65535, 0], "on the platform and sings a solo at": [65535, 0], "the platform and sings a solo at a": [65535, 0], "platform and sings a solo at a concert": [65535, 0], "and sings a solo at a concert though": [65535, 0], "sings a solo at a concert though why": [65535, 0], "a solo at a concert though why is": [65535, 0], "solo at a concert though why is a": [65535, 0], "at a concert though why is a mystery": [65535, 0], "a concert though why is a mystery for": [65535, 0], "concert though why is a mystery for neither": [65535, 0], "though why is a mystery for neither the": [65535, 0], "why is a mystery for neither the hymn": [65535, 0], "is a mystery for neither the hymn book": [65535, 0], "a mystery for neither the hymn book nor": [65535, 0], "mystery for neither the hymn book nor the": [65535, 0], "for neither the hymn book nor the sheet": [65535, 0], "neither the hymn book nor the sheet of": [65535, 0], "the hymn book nor the sheet of music": [65535, 0], "hymn book nor the sheet of music is": [65535, 0], "book nor the sheet of music is ever": [65535, 0], "nor the sheet of music is ever referred": [65535, 0], "the sheet of music is ever referred to": [65535, 0], "sheet of music is ever referred to by": [65535, 0], "of music is ever referred to by the": [65535, 0], "music is ever referred to by the sufferer": [65535, 0], "is ever referred to by the sufferer this": [65535, 0], "ever referred to by the sufferer this superintendent": [65535, 0], "referred to by the sufferer this superintendent was": [65535, 0], "to by the sufferer this superintendent was a": [65535, 0], "by the sufferer this superintendent was a slim": [65535, 0], "the sufferer this superintendent was a slim creature": [65535, 0], "sufferer this superintendent was a slim creature of": [65535, 0], "this superintendent was a slim creature of thirty": [65535, 0], "superintendent was a slim creature of thirty five": [65535, 0], "was a slim creature of thirty five with": [65535, 0], "a slim creature of thirty five with a": [65535, 0], "slim creature of thirty five with a sandy": [65535, 0], "creature of thirty five with a sandy goatee": [65535, 0], "of thirty five with a sandy goatee and": [65535, 0], "thirty five with a sandy goatee and short": [65535, 0], "five with a sandy goatee and short sandy": [65535, 0], "with a sandy goatee and short sandy hair": [65535, 0], "a sandy goatee and short sandy hair he": [65535, 0], "sandy goatee and short sandy hair he wore": [65535, 0], "goatee and short sandy hair he wore a": [65535, 0], "and short sandy hair he wore a stiff": [65535, 0], "short sandy hair he wore a stiff standing": [65535, 0], "sandy hair he wore a stiff standing collar": [65535, 0], "hair he wore a stiff standing collar whose": [65535, 0], "he wore a stiff standing collar whose upper": [65535, 0], "wore a stiff standing collar whose upper edge": [65535, 0], "a stiff standing collar whose upper edge almost": [65535, 0], "stiff standing collar whose upper edge almost reached": [65535, 0], "standing collar whose upper edge almost reached his": [65535, 0], "collar whose upper edge almost reached his ears": [65535, 0], "whose upper edge almost reached his ears and": [65535, 0], "upper edge almost reached his ears and whose": [65535, 0], "edge almost reached his ears and whose sharp": [65535, 0], "almost reached his ears and whose sharp points": [65535, 0], "reached his ears and whose sharp points curved": [65535, 0], "his ears and whose sharp points curved forward": [65535, 0], "ears and whose sharp points curved forward abreast": [65535, 0], "and whose sharp points curved forward abreast the": [65535, 0], "whose sharp points curved forward abreast the corners": [65535, 0], "sharp points curved forward abreast the corners of": [65535, 0], "points curved forward abreast the corners of his": [65535, 0], "curved forward abreast the corners of his mouth": [65535, 0], "forward abreast the corners of his mouth a": [65535, 0], "abreast the corners of his mouth a fence": [65535, 0], "the corners of his mouth a fence that": [65535, 0], "corners of his mouth a fence that compelled": [65535, 0], "of his mouth a fence that compelled a": [65535, 0], "his mouth a fence that compelled a straight": [65535, 0], "mouth a fence that compelled a straight lookout": [65535, 0], "a fence that compelled a straight lookout ahead": [65535, 0], "fence that compelled a straight lookout ahead and": [65535, 0], "that compelled a straight lookout ahead and a": [65535, 0], "compelled a straight lookout ahead and a turning": [65535, 0], "a straight lookout ahead and a turning of": [65535, 0], "straight lookout ahead and a turning of the": [65535, 0], "lookout ahead and a turning of the whole": [65535, 0], "ahead and a turning of the whole body": [65535, 0], "and a turning of the whole body when": [65535, 0], "a turning of the whole body when a": [65535, 0], "turning of the whole body when a side": [65535, 0], "of the whole body when a side view": [65535, 0], "the whole body when a side view was": [65535, 0], "whole body when a side view was required": [65535, 0], "body when a side view was required his": [65535, 0], "when a side view was required his chin": [65535, 0], "a side view was required his chin was": [65535, 0], "side view was required his chin was propped": [65535, 0], "view was required his chin was propped on": [65535, 0], "was required his chin was propped on a": [65535, 0], "required his chin was propped on a spreading": [65535, 0], "his chin was propped on a spreading cravat": [65535, 0], "chin was propped on a spreading cravat which": [65535, 0], "was propped on a spreading cravat which was": [65535, 0], "propped on a spreading cravat which was as": [65535, 0], "on a spreading cravat which was as broad": [65535, 0], "a spreading cravat which was as broad and": [65535, 0], "spreading cravat which was as broad and as": [65535, 0], "cravat which was as broad and as long": [65535, 0], "which was as broad and as long as": [65535, 0], "was as broad and as long as a": [65535, 0], "as broad and as long as a bank": [65535, 0], "broad and as long as a bank note": [65535, 0], "and as long as a bank note and": [65535, 0], "as long as a bank note and had": [65535, 0], "long as a bank note and had fringed": [65535, 0], "as a bank note and had fringed ends": [65535, 0], "a bank note and had fringed ends his": [65535, 0], "bank note and had fringed ends his boot": [65535, 0], "note and had fringed ends his boot toes": [65535, 0], "and had fringed ends his boot toes were": [65535, 0], "had fringed ends his boot toes were turned": [65535, 0], "fringed ends his boot toes were turned sharply": [65535, 0], "ends his boot toes were turned sharply up": [65535, 0], "his boot toes were turned sharply up in": [65535, 0], "boot toes were turned sharply up in the": [65535, 0], "toes were turned sharply up in the fashion": [65535, 0], "were turned sharply up in the fashion of": [65535, 0], "turned sharply up in the fashion of the": [65535, 0], "sharply up in the fashion of the day": [65535, 0], "up in the fashion of the day like": [65535, 0], "in the fashion of the day like sleigh": [65535, 0], "the fashion of the day like sleigh runners": [65535, 0], "fashion of the day like sleigh runners an": [65535, 0], "of the day like sleigh runners an effect": [65535, 0], "the day like sleigh runners an effect patiently": [65535, 0], "day like sleigh runners an effect patiently and": [65535, 0], "like sleigh runners an effect patiently and laboriously": [65535, 0], "sleigh runners an effect patiently and laboriously produced": [65535, 0], "runners an effect patiently and laboriously produced by": [65535, 0], "an effect patiently and laboriously produced by the": [65535, 0], "effect patiently and laboriously produced by the young": [65535, 0], "patiently and laboriously produced by the young men": [65535, 0], "and laboriously produced by the young men by": [65535, 0], "laboriously produced by the young men by sitting": [65535, 0], "produced by the young men by sitting with": [65535, 0], "by the young men by sitting with their": [65535, 0], "the young men by sitting with their toes": [65535, 0], "young men by sitting with their toes pressed": [65535, 0], "men by sitting with their toes pressed against": [65535, 0], "by sitting with their toes pressed against a": [65535, 0], "sitting with their toes pressed against a wall": [65535, 0], "with their toes pressed against a wall for": [65535, 0], "their toes pressed against a wall for hours": [65535, 0], "toes pressed against a wall for hours together": [65535, 0], "pressed against a wall for hours together mr": [65535, 0], "against a wall for hours together mr walters": [65535, 0], "a wall for hours together mr walters was": [65535, 0], "wall for hours together mr walters was very": [65535, 0], "for hours together mr walters was very earnest": [65535, 0], "hours together mr walters was very earnest of": [65535, 0], "together mr walters was very earnest of mien": [65535, 0], "mr walters was very earnest of mien and": [65535, 0], "walters was very earnest of mien and very": [65535, 0], "was very earnest of mien and very sincere": [65535, 0], "very earnest of mien and very sincere and": [65535, 0], "earnest of mien and very sincere and honest": [65535, 0], "of mien and very sincere and honest at": [65535, 0], "mien and very sincere and honest at heart": [65535, 0], "and very sincere and honest at heart and": [65535, 0], "very sincere and honest at heart and he": [65535, 0], "sincere and honest at heart and he held": [65535, 0], "and honest at heart and he held sacred": [65535, 0], "honest at heart and he held sacred things": [65535, 0], "at heart and he held sacred things and": [65535, 0], "heart and he held sacred things and places": [65535, 0], "and he held sacred things and places in": [65535, 0], "he held sacred things and places in such": [65535, 0], "held sacred things and places in such reverence": [65535, 0], "sacred things and places in such reverence and": [65535, 0], "things and places in such reverence and so": [65535, 0], "and places in such reverence and so separated": [65535, 0], "places in such reverence and so separated them": [65535, 0], "in such reverence and so separated them from": [65535, 0], "such reverence and so separated them from worldly": [65535, 0], "reverence and so separated them from worldly matters": [65535, 0], "and so separated them from worldly matters that": [65535, 0], "so separated them from worldly matters that unconsciously": [65535, 0], "separated them from worldly matters that unconsciously to": [65535, 0], "them from worldly matters that unconsciously to himself": [65535, 0], "from worldly matters that unconsciously to himself his": [65535, 0], "worldly matters that unconsciously to himself his sunday": [65535, 0], "matters that unconsciously to himself his sunday school": [65535, 0], "that unconsciously to himself his sunday school voice": [65535, 0], "unconsciously to himself his sunday school voice had": [65535, 0], "to himself his sunday school voice had acquired": [65535, 0], "himself his sunday school voice had acquired a": [65535, 0], "his sunday school voice had acquired a peculiar": [65535, 0], "sunday school voice had acquired a peculiar intonation": [65535, 0], "school voice had acquired a peculiar intonation which": [65535, 0], "voice had acquired a peculiar intonation which was": [65535, 0], "had acquired a peculiar intonation which was wholly": [65535, 0], "acquired a peculiar intonation which was wholly absent": [65535, 0], "a peculiar intonation which was wholly absent on": [65535, 0], "peculiar intonation which was wholly absent on week": [65535, 0], "intonation which was wholly absent on week days": [65535, 0], "which was wholly absent on week days he": [65535, 0], "was wholly absent on week days he began": [65535, 0], "wholly absent on week days he began after": [65535, 0], "absent on week days he began after this": [65535, 0], "on week days he began after this fashion": [65535, 0], "week days he began after this fashion now": [65535, 0], "days he began after this fashion now children": [65535, 0], "he began after this fashion now children i": [65535, 0], "began after this fashion now children i want": [65535, 0], "after this fashion now children i want you": [65535, 0], "this fashion now children i want you all": [65535, 0], "fashion now children i want you all to": [65535, 0], "now children i want you all to sit": [65535, 0], "children i want you all to sit up": [65535, 0], "i want you all to sit up just": [65535, 0], "want you all to sit up just as": [65535, 0], "you all to sit up just as straight": [65535, 0], "all to sit up just as straight and": [65535, 0], "to sit up just as straight and pretty": [65535, 0], "sit up just as straight and pretty as": [65535, 0], "up just as straight and pretty as you": [65535, 0], "just as straight and pretty as you can": [65535, 0], "as straight and pretty as you can and": [65535, 0], "straight and pretty as you can and give": [65535, 0], "and pretty as you can and give me": [65535, 0], "pretty as you can and give me all": [65535, 0], "as you can and give me all your": [65535, 0], "you can and give me all your attention": [65535, 0], "can and give me all your attention for": [65535, 0], "and give me all your attention for a": [65535, 0], "give me all your attention for a minute": [65535, 0], "me all your attention for a minute or": [65535, 0], "all your attention for a minute or two": [65535, 0], "your attention for a minute or two there": [65535, 0], "attention for a minute or two there that": [65535, 0], "for a minute or two there that is": [65535, 0], "a minute or two there that is it": [65535, 0], "minute or two there that is it that": [65535, 0], "or two there that is it that is": [65535, 0], "two there that is it that is the": [65535, 0], "there that is it that is the way": [65535, 0], "that is it that is the way good": [65535, 0], "is it that is the way good little": [65535, 0], "it that is the way good little boys": [65535, 0], "that is the way good little boys and": [65535, 0], "is the way good little boys and girls": [65535, 0], "the way good little boys and girls should": [65535, 0], "way good little boys and girls should do": [65535, 0], "good little boys and girls should do i": [65535, 0], "little boys and girls should do i see": [65535, 0], "boys and girls should do i see one": [65535, 0], "and girls should do i see one little": [65535, 0], "girls should do i see one little girl": [65535, 0], "should do i see one little girl who": [65535, 0], "do i see one little girl who is": [65535, 0], "i see one little girl who is looking": [65535, 0], "see one little girl who is looking out": [65535, 0], "one little girl who is looking out of": [65535, 0], "little girl who is looking out of the": [65535, 0], "girl who is looking out of the window": [65535, 0], "who is looking out of the window i": [65535, 0], "is looking out of the window i am": [65535, 0], "looking out of the window i am afraid": [65535, 0], "out of the window i am afraid she": [65535, 0], "of the window i am afraid she thinks": [65535, 0], "the window i am afraid she thinks i": [65535, 0], "window i am afraid she thinks i am": [65535, 0], "i am afraid she thinks i am out": [65535, 0], "am afraid she thinks i am out there": [65535, 0], "afraid she thinks i am out there somewhere": [65535, 0], "she thinks i am out there somewhere perhaps": [65535, 0], "thinks i am out there somewhere perhaps up": [65535, 0], "i am out there somewhere perhaps up in": [65535, 0], "am out there somewhere perhaps up in one": [65535, 0], "out there somewhere perhaps up in one of": [65535, 0], "there somewhere perhaps up in one of the": [65535, 0], "somewhere perhaps up in one of the trees": [65535, 0], "perhaps up in one of the trees making": [65535, 0], "up in one of the trees making a": [65535, 0], "in one of the trees making a speech": [65535, 0], "one of the trees making a speech to": [65535, 0], "of the trees making a speech to the": [65535, 0], "the trees making a speech to the little": [65535, 0], "trees making a speech to the little birds": [65535, 0], "making a speech to the little birds applausive": [65535, 0], "a speech to the little birds applausive titter": [65535, 0], "speech to the little birds applausive titter i": [65535, 0], "to the little birds applausive titter i want": [65535, 0], "the little birds applausive titter i want to": [65535, 0], "little birds applausive titter i want to tell": [65535, 0], "birds applausive titter i want to tell you": [65535, 0], "applausive titter i want to tell you how": [65535, 0], "titter i want to tell you how good": [65535, 0], "i want to tell you how good it": [65535, 0], "want to tell you how good it makes": [65535, 0], "to tell you how good it makes me": [65535, 0], "tell you how good it makes me feel": [65535, 0], "you how good it makes me feel to": [65535, 0], "how good it makes me feel to see": [65535, 0], "good it makes me feel to see so": [65535, 0], "it makes me feel to see so many": [65535, 0], "makes me feel to see so many bright": [65535, 0], "me feel to see so many bright clean": [65535, 0], "feel to see so many bright clean little": [65535, 0], "to see so many bright clean little faces": [65535, 0], "see so many bright clean little faces assembled": [65535, 0], "so many bright clean little faces assembled in": [65535, 0], "many bright clean little faces assembled in a": [65535, 0], "bright clean little faces assembled in a place": [65535, 0], "clean little faces assembled in a place like": [65535, 0], "little faces assembled in a place like this": [65535, 0], "faces assembled in a place like this learning": [65535, 0], "assembled in a place like this learning to": [65535, 0], "in a place like this learning to do": [65535, 0], "a place like this learning to do right": [65535, 0], "place like this learning to do right and": [65535, 0], "like this learning to do right and be": [65535, 0], "this learning to do right and be good": [65535, 0], "learning to do right and be good and": [65535, 0], "to do right and be good and so": [65535, 0], "do right and be good and so forth": [65535, 0], "right and be good and so forth and": [65535, 0], "and be good and so forth and so": [65535, 0], "be good and so forth and so on": [65535, 0], "good and so forth and so on it": [65535, 0], "and so forth and so on it is": [65535, 0], "so forth and so on it is not": [65535, 0], "forth and so on it is not necessary": [65535, 0], "and so on it is not necessary to": [65535, 0], "so on it is not necessary to set": [65535, 0], "on it is not necessary to set down": [65535, 0], "it is not necessary to set down the": [65535, 0], "is not necessary to set down the rest": [65535, 0], "not necessary to set down the rest of": [65535, 0], "necessary to set down the rest of the": [65535, 0], "to set down the rest of the oration": [65535, 0], "set down the rest of the oration it": [65535, 0], "down the rest of the oration it was": [65535, 0], "the rest of the oration it was of": [65535, 0], "rest of the oration it was of a": [65535, 0], "of the oration it was of a pattern": [65535, 0], "the oration it was of a pattern which": [65535, 0], "oration it was of a pattern which does": [65535, 0], "it was of a pattern which does not": [65535, 0], "was of a pattern which does not vary": [65535, 0], "of a pattern which does not vary and": [65535, 0], "a pattern which does not vary and so": [65535, 0], "pattern which does not vary and so it": [65535, 0], "which does not vary and so it is": [65535, 0], "does not vary and so it is familiar": [65535, 0], "not vary and so it is familiar to": [65535, 0], "vary and so it is familiar to us": [65535, 0], "and so it is familiar to us all": [65535, 0], "so it is familiar to us all the": [65535, 0], "it is familiar to us all the latter": [65535, 0], "is familiar to us all the latter third": [65535, 0], "familiar to us all the latter third of": [65535, 0], "to us all the latter third of the": [65535, 0], "us all the latter third of the speech": [65535, 0], "all the latter third of the speech was": [65535, 0], "the latter third of the speech was marred": [65535, 0], "latter third of the speech was marred by": [65535, 0], "third of the speech was marred by the": [65535, 0], "of the speech was marred by the resumption": [65535, 0], "the speech was marred by the resumption of": [65535, 0], "speech was marred by the resumption of fights": [65535, 0], "was marred by the resumption of fights and": [65535, 0], "marred by the resumption of fights and other": [65535, 0], "by the resumption of fights and other recreations": [65535, 0], "the resumption of fights and other recreations among": [65535, 0], "resumption of fights and other recreations among certain": [65535, 0], "of fights and other recreations among certain of": [65535, 0], "fights and other recreations among certain of the": [65535, 0], "and other recreations among certain of the bad": [65535, 0], "other recreations among certain of the bad boys": [65535, 0], "recreations among certain of the bad boys and": [65535, 0], "among certain of the bad boys and by": [65535, 0], "certain of the bad boys and by fidgetings": [65535, 0], "of the bad boys and by fidgetings and": [65535, 0], "the bad boys and by fidgetings and whisperings": [65535, 0], "bad boys and by fidgetings and whisperings that": [65535, 0], "boys and by fidgetings and whisperings that extended": [65535, 0], "and by fidgetings and whisperings that extended far": [65535, 0], "by fidgetings and whisperings that extended far and": [65535, 0], "fidgetings and whisperings that extended far and wide": [65535, 0], "and whisperings that extended far and wide washing": [65535, 0], "whisperings that extended far and wide washing even": [65535, 0], "that extended far and wide washing even to": [65535, 0], "extended far and wide washing even to the": [65535, 0], "far and wide washing even to the bases": [65535, 0], "and wide washing even to the bases of": [65535, 0], "wide washing even to the bases of isolated": [65535, 0], "washing even to the bases of isolated and": [65535, 0], "even to the bases of isolated and incorruptible": [65535, 0], "to the bases of isolated and incorruptible rocks": [65535, 0], "the bases of isolated and incorruptible rocks like": [65535, 0], "bases of isolated and incorruptible rocks like sid": [65535, 0], "of isolated and incorruptible rocks like sid and": [65535, 0], "isolated and incorruptible rocks like sid and mary": [65535, 0], "and incorruptible rocks like sid and mary but": [65535, 0], "incorruptible rocks like sid and mary but now": [65535, 0], "rocks like sid and mary but now every": [65535, 0], "like sid and mary but now every sound": [65535, 0], "sid and mary but now every sound ceased": [65535, 0], "and mary but now every sound ceased suddenly": [65535, 0], "mary but now every sound ceased suddenly with": [65535, 0], "but now every sound ceased suddenly with the": [65535, 0], "now every sound ceased suddenly with the subsidence": [65535, 0], "every sound ceased suddenly with the subsidence of": [65535, 0], "sound ceased suddenly with the subsidence of mr": [65535, 0], "ceased suddenly with the subsidence of mr walters'": [65535, 0], "suddenly with the subsidence of mr walters' voice": [65535, 0], "with the subsidence of mr walters' voice and": [65535, 0], "the subsidence of mr walters' voice and the": [65535, 0], "subsidence of mr walters' voice and the conclusion": [65535, 0], "of mr walters' voice and the conclusion of": [65535, 0], "mr walters' voice and the conclusion of the": [65535, 0], "walters' voice and the conclusion of the speech": [65535, 0], "voice and the conclusion of the speech was": [65535, 0], "and the conclusion of the speech was received": [65535, 0], "the conclusion of the speech was received with": [65535, 0], "conclusion of the speech was received with a": [65535, 0], "of the speech was received with a burst": [65535, 0], "the speech was received with a burst of": [65535, 0], "speech was received with a burst of silent": [65535, 0], "was received with a burst of silent gratitude": [65535, 0], "received with a burst of silent gratitude a": [65535, 0], "with a burst of silent gratitude a good": [65535, 0], "a burst of silent gratitude a good part": [65535, 0], "burst of silent gratitude a good part of": [65535, 0], "of silent gratitude a good part of the": [65535, 0], "silent gratitude a good part of the whispering": [65535, 0], "gratitude a good part of the whispering had": [65535, 0], "a good part of the whispering had been": [65535, 0], "good part of the whispering had been occasioned": [65535, 0], "part of the whispering had been occasioned by": [65535, 0], "of the whispering had been occasioned by an": [65535, 0], "the whispering had been occasioned by an event": [65535, 0], "whispering had been occasioned by an event which": [65535, 0], "had been occasioned by an event which was": [65535, 0], "been occasioned by an event which was more": [65535, 0], "occasioned by an event which was more or": [65535, 0], "by an event which was more or less": [65535, 0], "an event which was more or less rare": [65535, 0], "event which was more or less rare the": [65535, 0], "which was more or less rare the entrance": [65535, 0], "was more or less rare the entrance of": [65535, 0], "more or less rare the entrance of visitors": [65535, 0], "or less rare the entrance of visitors lawyer": [65535, 0], "less rare the entrance of visitors lawyer thatcher": [65535, 0], "rare the entrance of visitors lawyer thatcher accompanied": [65535, 0], "the entrance of visitors lawyer thatcher accompanied by": [65535, 0], "entrance of visitors lawyer thatcher accompanied by a": [65535, 0], "of visitors lawyer thatcher accompanied by a very": [65535, 0], "visitors lawyer thatcher accompanied by a very feeble": [65535, 0], "lawyer thatcher accompanied by a very feeble and": [65535, 0], "thatcher accompanied by a very feeble and aged": [65535, 0], "accompanied by a very feeble and aged man": [65535, 0], "by a very feeble and aged man a": [65535, 0], "a very feeble and aged man a fine": [65535, 0], "very feeble and aged man a fine portly": [65535, 0], "feeble and aged man a fine portly middle": [65535, 0], "and aged man a fine portly middle aged": [65535, 0], "aged man a fine portly middle aged gentleman": [65535, 0], "man a fine portly middle aged gentleman with": [65535, 0], "a fine portly middle aged gentleman with iron": [65535, 0], "fine portly middle aged gentleman with iron gray": [65535, 0], "portly middle aged gentleman with iron gray hair": [65535, 0], "middle aged gentleman with iron gray hair and": [65535, 0], "aged gentleman with iron gray hair and a": [65535, 0], "gentleman with iron gray hair and a dignified": [65535, 0], "with iron gray hair and a dignified lady": [65535, 0], "iron gray hair and a dignified lady who": [65535, 0], "gray hair and a dignified lady who was": [65535, 0], "hair and a dignified lady who was doubtless": [65535, 0], "and a dignified lady who was doubtless the": [65535, 0], "a dignified lady who was doubtless the latter's": [65535, 0], "dignified lady who was doubtless the latter's wife": [65535, 0], "lady who was doubtless the latter's wife the": [65535, 0], "who was doubtless the latter's wife the lady": [65535, 0], "was doubtless the latter's wife the lady was": [65535, 0], "doubtless the latter's wife the lady was leading": [65535, 0], "the latter's wife the lady was leading a": [65535, 0], "latter's wife the lady was leading a child": [65535, 0], "wife the lady was leading a child tom": [65535, 0], "the lady was leading a child tom had": [65535, 0], "lady was leading a child tom had been": [65535, 0], "was leading a child tom had been restless": [65535, 0], "leading a child tom had been restless and": [65535, 0], "a child tom had been restless and full": [65535, 0], "child tom had been restless and full of": [65535, 0], "tom had been restless and full of chafings": [65535, 0], "had been restless and full of chafings and": [65535, 0], "been restless and full of chafings and repinings": [65535, 0], "restless and full of chafings and repinings conscience": [65535, 0], "and full of chafings and repinings conscience smitten": [65535, 0], "full of chafings and repinings conscience smitten too": [65535, 0], "of chafings and repinings conscience smitten too he": [65535, 0], "chafings and repinings conscience smitten too he could": [65535, 0], "and repinings conscience smitten too he could not": [65535, 0], "repinings conscience smitten too he could not meet": [65535, 0], "conscience smitten too he could not meet amy": [65535, 0], "smitten too he could not meet amy lawrence's": [65535, 0], "too he could not meet amy lawrence's eye": [65535, 0], "he could not meet amy lawrence's eye he": [65535, 0], "could not meet amy lawrence's eye he could": [65535, 0], "not meet amy lawrence's eye he could not": [65535, 0], "meet amy lawrence's eye he could not brook": [65535, 0], "amy lawrence's eye he could not brook her": [65535, 0], "lawrence's eye he could not brook her loving": [65535, 0], "eye he could not brook her loving gaze": [65535, 0], "he could not brook her loving gaze but": [65535, 0], "could not brook her loving gaze but when": [65535, 0], "not brook her loving gaze but when he": [65535, 0], "brook her loving gaze but when he saw": [65535, 0], "her loving gaze but when he saw this": [65535, 0], "loving gaze but when he saw this small": [65535, 0], "gaze but when he saw this small new": [65535, 0], "but when he saw this small new comer": [65535, 0], "when he saw this small new comer his": [65535, 0], "he saw this small new comer his soul": [65535, 0], "saw this small new comer his soul was": [65535, 0], "this small new comer his soul was all": [65535, 0], "small new comer his soul was all ablaze": [65535, 0], "new comer his soul was all ablaze with": [65535, 0], "comer his soul was all ablaze with bliss": [65535, 0], "his soul was all ablaze with bliss in": [65535, 0], "soul was all ablaze with bliss in a": [65535, 0], "was all ablaze with bliss in a moment": [65535, 0], "all ablaze with bliss in a moment the": [65535, 0], "ablaze with bliss in a moment the next": [65535, 0], "with bliss in a moment the next moment": [65535, 0], "bliss in a moment the next moment he": [65535, 0], "in a moment the next moment he was": [65535, 0], "a moment the next moment he was showing": [65535, 0], "moment the next moment he was showing off": [65535, 0], "the next moment he was showing off with": [65535, 0], "next moment he was showing off with all": [65535, 0], "moment he was showing off with all his": [65535, 0], "he was showing off with all his might": [65535, 0], "was showing off with all his might cuffing": [65535, 0], "showing off with all his might cuffing boys": [65535, 0], "off with all his might cuffing boys pulling": [65535, 0], "with all his might cuffing boys pulling hair": [65535, 0], "all his might cuffing boys pulling hair making": [65535, 0], "his might cuffing boys pulling hair making faces": [65535, 0], "might cuffing boys pulling hair making faces in": [65535, 0], "cuffing boys pulling hair making faces in a": [65535, 0], "boys pulling hair making faces in a word": [65535, 0], "pulling hair making faces in a word using": [65535, 0], "hair making faces in a word using every": [65535, 0], "making faces in a word using every art": [65535, 0], "faces in a word using every art that": [65535, 0], "in a word using every art that seemed": [65535, 0], "a word using every art that seemed likely": [65535, 0], "word using every art that seemed likely to": [65535, 0], "using every art that seemed likely to fascinate": [65535, 0], "every art that seemed likely to fascinate a": [65535, 0], "art that seemed likely to fascinate a girl": [65535, 0], "that seemed likely to fascinate a girl and": [65535, 0], "seemed likely to fascinate a girl and win": [65535, 0], "likely to fascinate a girl and win her": [65535, 0], "to fascinate a girl and win her applause": [65535, 0], "fascinate a girl and win her applause his": [65535, 0], "a girl and win her applause his exaltation": [65535, 0], "girl and win her applause his exaltation had": [65535, 0], "and win her applause his exaltation had but": [65535, 0], "win her applause his exaltation had but one": [65535, 0], "her applause his exaltation had but one alloy": [65535, 0], "applause his exaltation had but one alloy the": [65535, 0], "his exaltation had but one alloy the memory": [65535, 0], "exaltation had but one alloy the memory of": [65535, 0], "had but one alloy the memory of his": [65535, 0], "but one alloy the memory of his humiliation": [65535, 0], "one alloy the memory of his humiliation in": [65535, 0], "alloy the memory of his humiliation in this": [65535, 0], "the memory of his humiliation in this angel's": [65535, 0], "memory of his humiliation in this angel's garden": [65535, 0], "of his humiliation in this angel's garden and": [65535, 0], "his humiliation in this angel's garden and that": [65535, 0], "humiliation in this angel's garden and that record": [65535, 0], "in this angel's garden and that record in": [65535, 0], "this angel's garden and that record in sand": [65535, 0], "angel's garden and that record in sand was": [65535, 0], "garden and that record in sand was fast": [65535, 0], "and that record in sand was fast washing": [65535, 0], "that record in sand was fast washing out": [65535, 0], "record in sand was fast washing out under": [65535, 0], "in sand was fast washing out under the": [65535, 0], "sand was fast washing out under the waves": [65535, 0], "was fast washing out under the waves of": [65535, 0], "fast washing out under the waves of happiness": [65535, 0], "washing out under the waves of happiness that": [65535, 0], "out under the waves of happiness that were": [65535, 0], "under the waves of happiness that were sweeping": [65535, 0], "the waves of happiness that were sweeping over": [65535, 0], "waves of happiness that were sweeping over it": [65535, 0], "of happiness that were sweeping over it now": [65535, 0], "happiness that were sweeping over it now the": [65535, 0], "that were sweeping over it now the visitors": [65535, 0], "were sweeping over it now the visitors were": [65535, 0], "sweeping over it now the visitors were given": [65535, 0], "over it now the visitors were given the": [65535, 0], "it now the visitors were given the highest": [65535, 0], "now the visitors were given the highest seat": [65535, 0], "the visitors were given the highest seat of": [65535, 0], "visitors were given the highest seat of honor": [65535, 0], "were given the highest seat of honor and": [65535, 0], "given the highest seat of honor and as": [65535, 0], "the highest seat of honor and as soon": [65535, 0], "highest seat of honor and as soon as": [65535, 0], "seat of honor and as soon as mr": [65535, 0], "of honor and as soon as mr walters'": [65535, 0], "honor and as soon as mr walters' speech": [65535, 0], "and as soon as mr walters' speech was": [65535, 0], "as soon as mr walters' speech was finished": [65535, 0], "soon as mr walters' speech was finished he": [65535, 0], "as mr walters' speech was finished he introduced": [65535, 0], "mr walters' speech was finished he introduced them": [65535, 0], "walters' speech was finished he introduced them to": [65535, 0], "speech was finished he introduced them to the": [65535, 0], "was finished he introduced them to the school": [65535, 0], "finished he introduced them to the school the": [65535, 0], "he introduced them to the school the middle": [65535, 0], "introduced them to the school the middle aged": [65535, 0], "them to the school the middle aged man": [65535, 0], "to the school the middle aged man turned": [65535, 0], "the school the middle aged man turned out": [65535, 0], "school the middle aged man turned out to": [65535, 0], "the middle aged man turned out to be": [65535, 0], "middle aged man turned out to be a": [65535, 0], "aged man turned out to be a prodigious": [65535, 0], "man turned out to be a prodigious personage": [65535, 0], "turned out to be a prodigious personage no": [65535, 0], "out to be a prodigious personage no less": [65535, 0], "to be a prodigious personage no less a": [65535, 0], "be a prodigious personage no less a one": [65535, 0], "a prodigious personage no less a one than": [65535, 0], "prodigious personage no less a one than the": [65535, 0], "personage no less a one than the county": [65535, 0], "no less a one than the county judge": [65535, 0], "less a one than the county judge altogether": [65535, 0], "a one than the county judge altogether the": [65535, 0], "one than the county judge altogether the most": [65535, 0], "than the county judge altogether the most august": [65535, 0], "the county judge altogether the most august creation": [65535, 0], "county judge altogether the most august creation these": [65535, 0], "judge altogether the most august creation these children": [65535, 0], "altogether the most august creation these children had": [65535, 0], "the most august creation these children had ever": [65535, 0], "most august creation these children had ever looked": [65535, 0], "august creation these children had ever looked upon": [65535, 0], "creation these children had ever looked upon and": [65535, 0], "these children had ever looked upon and they": [65535, 0], "children had ever looked upon and they wondered": [65535, 0], "had ever looked upon and they wondered what": [65535, 0], "ever looked upon and they wondered what kind": [65535, 0], "looked upon and they wondered what kind of": [65535, 0], "upon and they wondered what kind of material": [65535, 0], "and they wondered what kind of material he": [65535, 0], "they wondered what kind of material he was": [65535, 0], "wondered what kind of material he was made": [65535, 0], "what kind of material he was made of": [65535, 0], "kind of material he was made of and": [65535, 0], "of material he was made of and they": [65535, 0], "material he was made of and they half": [65535, 0], "he was made of and they half wanted": [65535, 0], "was made of and they half wanted to": [65535, 0], "made of and they half wanted to hear": [65535, 0], "of and they half wanted to hear him": [65535, 0], "and they half wanted to hear him roar": [65535, 0], "they half wanted to hear him roar and": [65535, 0], "half wanted to hear him roar and were": [65535, 0], "wanted to hear him roar and were half": [65535, 0], "to hear him roar and were half afraid": [65535, 0], "hear him roar and were half afraid he": [65535, 0], "him roar and were half afraid he might": [65535, 0], "roar and were half afraid he might too": [65535, 0], "and were half afraid he might too he": [65535, 0], "were half afraid he might too he was": [65535, 0], "half afraid he might too he was from": [65535, 0], "afraid he might too he was from constantinople": [65535, 0], "he might too he was from constantinople twelve": [65535, 0], "might too he was from constantinople twelve miles": [65535, 0], "too he was from constantinople twelve miles away": [65535, 0], "he was from constantinople twelve miles away so": [65535, 0], "was from constantinople twelve miles away so he": [65535, 0], "from constantinople twelve miles away so he had": [65535, 0], "constantinople twelve miles away so he had travelled": [65535, 0], "twelve miles away so he had travelled and": [65535, 0], "miles away so he had travelled and seen": [65535, 0], "away so he had travelled and seen the": [65535, 0], "so he had travelled and seen the world": [65535, 0], "he had travelled and seen the world these": [65535, 0], "had travelled and seen the world these very": [65535, 0], "travelled and seen the world these very eyes": [65535, 0], "and seen the world these very eyes had": [65535, 0], "seen the world these very eyes had looked": [65535, 0], "the world these very eyes had looked upon": [65535, 0], "world these very eyes had looked upon the": [65535, 0], "these very eyes had looked upon the county": [65535, 0], "very eyes had looked upon the county court": [65535, 0], "eyes had looked upon the county court house": [65535, 0], "had looked upon the county court house which": [65535, 0], "looked upon the county court house which was": [65535, 0], "upon the county court house which was said": [65535, 0], "the county court house which was said to": [65535, 0], "county court house which was said to have": [65535, 0], "court house which was said to have a": [65535, 0], "house which was said to have a tin": [65535, 0], "which was said to have a tin roof": [65535, 0], "was said to have a tin roof the": [65535, 0], "said to have a tin roof the awe": [65535, 0], "to have a tin roof the awe which": [65535, 0], "have a tin roof the awe which these": [65535, 0], "a tin roof the awe which these reflections": [65535, 0], "tin roof the awe which these reflections inspired": [65535, 0], "roof the awe which these reflections inspired was": [65535, 0], "the awe which these reflections inspired was attested": [65535, 0], "awe which these reflections inspired was attested by": [65535, 0], "which these reflections inspired was attested by the": [65535, 0], "these reflections inspired was attested by the impressive": [65535, 0], "reflections inspired was attested by the impressive silence": [65535, 0], "inspired was attested by the impressive silence and": [65535, 0], "was attested by the impressive silence and the": [65535, 0], "attested by the impressive silence and the ranks": [65535, 0], "by the impressive silence and the ranks of": [65535, 0], "the impressive silence and the ranks of staring": [65535, 0], "impressive silence and the ranks of staring eyes": [65535, 0], "silence and the ranks of staring eyes this": [65535, 0], "and the ranks of staring eyes this was": [65535, 0], "the ranks of staring eyes this was the": [65535, 0], "ranks of staring eyes this was the great": [65535, 0], "of staring eyes this was the great judge": [65535, 0], "staring eyes this was the great judge thatcher": [65535, 0], "eyes this was the great judge thatcher brother": [65535, 0], "this was the great judge thatcher brother of": [65535, 0], "was the great judge thatcher brother of their": [65535, 0], "the great judge thatcher brother of their own": [65535, 0], "great judge thatcher brother of their own lawyer": [65535, 0], "judge thatcher brother of their own lawyer jeff": [65535, 0], "thatcher brother of their own lawyer jeff thatcher": [65535, 0], "brother of their own lawyer jeff thatcher immediately": [65535, 0], "of their own lawyer jeff thatcher immediately went": [65535, 0], "their own lawyer jeff thatcher immediately went forward": [65535, 0], "own lawyer jeff thatcher immediately went forward to": [65535, 0], "lawyer jeff thatcher immediately went forward to be": [65535, 0], "jeff thatcher immediately went forward to be familiar": [65535, 0], "thatcher immediately went forward to be familiar with": [65535, 0], "immediately went forward to be familiar with the": [65535, 0], "went forward to be familiar with the great": [65535, 0], "forward to be familiar with the great man": [65535, 0], "to be familiar with the great man and": [65535, 0], "be familiar with the great man and be": [65535, 0], "familiar with the great man and be envied": [65535, 0], "with the great man and be envied by": [65535, 0], "the great man and be envied by the": [65535, 0], "great man and be envied by the school": [65535, 0], "man and be envied by the school it": [65535, 0], "and be envied by the school it would": [65535, 0], "be envied by the school it would have": [65535, 0], "envied by the school it would have been": [65535, 0], "by the school it would have been music": [65535, 0], "the school it would have been music to": [65535, 0], "school it would have been music to his": [65535, 0], "it would have been music to his soul": [65535, 0], "would have been music to his soul to": [65535, 0], "have been music to his soul to hear": [65535, 0], "been music to his soul to hear the": [65535, 0], "music to his soul to hear the whisperings": [65535, 0], "to his soul to hear the whisperings look": [65535, 0], "his soul to hear the whisperings look at": [65535, 0], "soul to hear the whisperings look at him": [65535, 0], "to hear the whisperings look at him jim": [65535, 0], "hear the whisperings look at him jim he's": [65535, 0], "the whisperings look at him jim he's a": [65535, 0], "whisperings look at him jim he's a going": [65535, 0], "look at him jim he's a going up": [65535, 0], "at him jim he's a going up there": [65535, 0], "him jim he's a going up there say": [65535, 0], "jim he's a going up there say look": [65535, 0], "he's a going up there say look he's": [65535, 0], "a going up there say look he's a": [65535, 0], "going up there say look he's a going": [65535, 0], "up there say look he's a going to": [65535, 0], "there say look he's a going to shake": [65535, 0], "say look he's a going to shake hands": [65535, 0], "look he's a going to shake hands with": [65535, 0], "he's a going to shake hands with him": [65535, 0], "a going to shake hands with him he": [65535, 0], "going to shake hands with him he is": [65535, 0], "to shake hands with him he is shaking": [65535, 0], "shake hands with him he is shaking hands": [65535, 0], "hands with him he is shaking hands with": [65535, 0], "with him he is shaking hands with him": [65535, 0], "him he is shaking hands with him by": [65535, 0], "he is shaking hands with him by jings": [65535, 0], "is shaking hands with him by jings don't": [65535, 0], "shaking hands with him by jings don't you": [65535, 0], "hands with him by jings don't you wish": [65535, 0], "with him by jings don't you wish you": [65535, 0], "him by jings don't you wish you was": [65535, 0], "by jings don't you wish you was jeff": [65535, 0], "jings don't you wish you was jeff mr": [65535, 0], "don't you wish you was jeff mr walters": [65535, 0], "you wish you was jeff mr walters fell": [65535, 0], "wish you was jeff mr walters fell to": [65535, 0], "you was jeff mr walters fell to showing": [65535, 0], "was jeff mr walters fell to showing off": [65535, 0], "jeff mr walters fell to showing off with": [65535, 0], "mr walters fell to showing off with all": [65535, 0], "walters fell to showing off with all sorts": [65535, 0], "fell to showing off with all sorts of": [65535, 0], "to showing off with all sorts of official": [65535, 0], "showing off with all sorts of official bustlings": [65535, 0], "off with all sorts of official bustlings and": [65535, 0], "with all sorts of official bustlings and activities": [65535, 0], "all sorts of official bustlings and activities giving": [65535, 0], "sorts of official bustlings and activities giving orders": [65535, 0], "of official bustlings and activities giving orders delivering": [65535, 0], "official bustlings and activities giving orders delivering judgments": [65535, 0], "bustlings and activities giving orders delivering judgments discharging": [65535, 0], "and activities giving orders delivering judgments discharging directions": [65535, 0], "activities giving orders delivering judgments discharging directions here": [65535, 0], "giving orders delivering judgments discharging directions here there": [65535, 0], "orders delivering judgments discharging directions here there everywhere": [65535, 0], "delivering judgments discharging directions here there everywhere that": [65535, 0], "judgments discharging directions here there everywhere that he": [65535, 0], "discharging directions here there everywhere that he could": [65535, 0], "directions here there everywhere that he could find": [65535, 0], "here there everywhere that he could find a": [65535, 0], "there everywhere that he could find a target": [65535, 0], "everywhere that he could find a target the": [65535, 0], "that he could find a target the librarian": [65535, 0], "he could find a target the librarian showed": [65535, 0], "could find a target the librarian showed off": [65535, 0], "find a target the librarian showed off running": [65535, 0], "a target the librarian showed off running hither": [65535, 0], "target the librarian showed off running hither and": [65535, 0], "the librarian showed off running hither and thither": [65535, 0], "librarian showed off running hither and thither with": [65535, 0], "showed off running hither and thither with his": [65535, 0], "off running hither and thither with his arms": [65535, 0], "running hither and thither with his arms full": [65535, 0], "hither and thither with his arms full of": [65535, 0], "and thither with his arms full of books": [65535, 0], "thither with his arms full of books and": [65535, 0], "with his arms full of books and making": [65535, 0], "his arms full of books and making a": [65535, 0], "arms full of books and making a deal": [65535, 0], "full of books and making a deal of": [65535, 0], "of books and making a deal of the": [65535, 0], "books and making a deal of the splutter": [65535, 0], "and making a deal of the splutter and": [65535, 0], "making a deal of the splutter and fuss": [65535, 0], "a deal of the splutter and fuss that": [65535, 0], "deal of the splutter and fuss that insect": [65535, 0], "of the splutter and fuss that insect authority": [65535, 0], "the splutter and fuss that insect authority delights": [65535, 0], "splutter and fuss that insect authority delights in": [65535, 0], "and fuss that insect authority delights in the": [65535, 0], "fuss that insect authority delights in the young": [65535, 0], "that insect authority delights in the young lady": [65535, 0], "insect authority delights in the young lady teachers": [65535, 0], "authority delights in the young lady teachers showed": [65535, 0], "delights in the young lady teachers showed off": [65535, 0], "in the young lady teachers showed off bending": [65535, 0], "the young lady teachers showed off bending sweetly": [65535, 0], "young lady teachers showed off bending sweetly over": [65535, 0], "lady teachers showed off bending sweetly over pupils": [65535, 0], "teachers showed off bending sweetly over pupils that": [65535, 0], "showed off bending sweetly over pupils that were": [65535, 0], "off bending sweetly over pupils that were lately": [65535, 0], "bending sweetly over pupils that were lately being": [65535, 0], "sweetly over pupils that were lately being boxed": [65535, 0], "over pupils that were lately being boxed lifting": [65535, 0], "pupils that were lately being boxed lifting pretty": [65535, 0], "that were lately being boxed lifting pretty warning": [65535, 0], "were lately being boxed lifting pretty warning fingers": [65535, 0], "lately being boxed lifting pretty warning fingers at": [65535, 0], "being boxed lifting pretty warning fingers at bad": [65535, 0], "boxed lifting pretty warning fingers at bad little": [65535, 0], "lifting pretty warning fingers at bad little boys": [65535, 0], "pretty warning fingers at bad little boys and": [65535, 0], "warning fingers at bad little boys and patting": [65535, 0], "fingers at bad little boys and patting good": [65535, 0], "at bad little boys and patting good ones": [65535, 0], "bad little boys and patting good ones lovingly": [65535, 0], "little boys and patting good ones lovingly the": [65535, 0], "boys and patting good ones lovingly the young": [65535, 0], "and patting good ones lovingly the young gentlemen": [65535, 0], "patting good ones lovingly the young gentlemen teachers": [65535, 0], "good ones lovingly the young gentlemen teachers showed": [65535, 0], "ones lovingly the young gentlemen teachers showed off": [65535, 0], "lovingly the young gentlemen teachers showed off with": [65535, 0], "the young gentlemen teachers showed off with small": [65535, 0], "young gentlemen teachers showed off with small scoldings": [65535, 0], "gentlemen teachers showed off with small scoldings and": [65535, 0], "teachers showed off with small scoldings and other": [65535, 0], "showed off with small scoldings and other little": [65535, 0], "off with small scoldings and other little displays": [65535, 0], "with small scoldings and other little displays of": [65535, 0], "small scoldings and other little displays of authority": [65535, 0], "scoldings and other little displays of authority and": [65535, 0], "and other little displays of authority and fine": [65535, 0], "other little displays of authority and fine attention": [65535, 0], "little displays of authority and fine attention to": [65535, 0], "displays of authority and fine attention to discipline": [65535, 0], "of authority and fine attention to discipline and": [65535, 0], "authority and fine attention to discipline and most": [65535, 0], "and fine attention to discipline and most of": [65535, 0], "fine attention to discipline and most of the": [65535, 0], "attention to discipline and most of the teachers": [65535, 0], "to discipline and most of the teachers of": [65535, 0], "discipline and most of the teachers of both": [65535, 0], "and most of the teachers of both sexes": [65535, 0], "most of the teachers of both sexes found": [65535, 0], "of the teachers of both sexes found business": [65535, 0], "the teachers of both sexes found business up": [65535, 0], "teachers of both sexes found business up at": [65535, 0], "of both sexes found business up at the": [65535, 0], "both sexes found business up at the library": [65535, 0], "sexes found business up at the library by": [65535, 0], "found business up at the library by the": [65535, 0], "business up at the library by the pulpit": [65535, 0], "up at the library by the pulpit and": [65535, 0], "at the library by the pulpit and it": [65535, 0], "the library by the pulpit and it was": [65535, 0], "library by the pulpit and it was business": [65535, 0], "by the pulpit and it was business that": [65535, 0], "the pulpit and it was business that frequently": [65535, 0], "pulpit and it was business that frequently had": [65535, 0], "and it was business that frequently had to": [65535, 0], "it was business that frequently had to be": [65535, 0], "was business that frequently had to be done": [65535, 0], "business that frequently had to be done over": [65535, 0], "that frequently had to be done over again": [65535, 0], "frequently had to be done over again two": [65535, 0], "had to be done over again two or": [65535, 0], "to be done over again two or three": [65535, 0], "be done over again two or three times": [65535, 0], "done over again two or three times with": [65535, 0], "over again two or three times with much": [65535, 0], "again two or three times with much seeming": [65535, 0], "two or three times with much seeming vexation": [65535, 0], "or three times with much seeming vexation the": [65535, 0], "three times with much seeming vexation the little": [65535, 0], "times with much seeming vexation the little girls": [65535, 0], "with much seeming vexation the little girls showed": [65535, 0], "much seeming vexation the little girls showed off": [65535, 0], "seeming vexation the little girls showed off in": [65535, 0], "vexation the little girls showed off in various": [65535, 0], "the little girls showed off in various ways": [65535, 0], "little girls showed off in various ways and": [65535, 0], "girls showed off in various ways and the": [65535, 0], "showed off in various ways and the little": [65535, 0], "off in various ways and the little boys": [65535, 0], "in various ways and the little boys showed": [65535, 0], "various ways and the little boys showed off": [65535, 0], "ways and the little boys showed off with": [65535, 0], "and the little boys showed off with such": [65535, 0], "the little boys showed off with such diligence": [65535, 0], "little boys showed off with such diligence that": [65535, 0], "boys showed off with such diligence that the": [65535, 0], "showed off with such diligence that the air": [65535, 0], "off with such diligence that the air was": [65535, 0], "with such diligence that the air was thick": [65535, 0], "such diligence that the air was thick with": [65535, 0], "diligence that the air was thick with paper": [65535, 0], "that the air was thick with paper wads": [65535, 0], "the air was thick with paper wads and": [65535, 0], "air was thick with paper wads and the": [65535, 0], "was thick with paper wads and the murmur": [65535, 0], "thick with paper wads and the murmur of": [65535, 0], "with paper wads and the murmur of scufflings": [65535, 0], "paper wads and the murmur of scufflings and": [65535, 0], "wads and the murmur of scufflings and above": [65535, 0], "and the murmur of scufflings and above it": [65535, 0], "the murmur of scufflings and above it all": [65535, 0], "murmur of scufflings and above it all the": [65535, 0], "of scufflings and above it all the great": [65535, 0], "scufflings and above it all the great man": [65535, 0], "and above it all the great man sat": [65535, 0], "above it all the great man sat and": [65535, 0], "it all the great man sat and beamed": [65535, 0], "all the great man sat and beamed a": [65535, 0], "the great man sat and beamed a majestic": [65535, 0], "great man sat and beamed a majestic judicial": [65535, 0], "man sat and beamed a majestic judicial smile": [65535, 0], "sat and beamed a majestic judicial smile upon": [65535, 0], "and beamed a majestic judicial smile upon all": [65535, 0], "beamed a majestic judicial smile upon all the": [65535, 0], "a majestic judicial smile upon all the house": [65535, 0], "majestic judicial smile upon all the house and": [65535, 0], "judicial smile upon all the house and warmed": [65535, 0], "smile upon all the house and warmed himself": [65535, 0], "upon all the house and warmed himself in": [65535, 0], "all the house and warmed himself in the": [65535, 0], "the house and warmed himself in the sun": [65535, 0], "house and warmed himself in the sun of": [65535, 0], "and warmed himself in the sun of his": [65535, 0], "warmed himself in the sun of his own": [65535, 0], "himself in the sun of his own grandeur": [65535, 0], "in the sun of his own grandeur for": [65535, 0], "the sun of his own grandeur for he": [65535, 0], "sun of his own grandeur for he was": [65535, 0], "of his own grandeur for he was showing": [65535, 0], "his own grandeur for he was showing off": [65535, 0], "own grandeur for he was showing off too": [65535, 0], "grandeur for he was showing off too there": [65535, 0], "for he was showing off too there was": [65535, 0], "he was showing off too there was only": [65535, 0], "was showing off too there was only one": [65535, 0], "showing off too there was only one thing": [65535, 0], "off too there was only one thing wanting": [65535, 0], "too there was only one thing wanting to": [65535, 0], "there was only one thing wanting to make": [65535, 0], "was only one thing wanting to make mr": [65535, 0], "only one thing wanting to make mr walters'": [65535, 0], "one thing wanting to make mr walters' ecstasy": [65535, 0], "thing wanting to make mr walters' ecstasy complete": [65535, 0], "wanting to make mr walters' ecstasy complete and": [65535, 0], "to make mr walters' ecstasy complete and that": [65535, 0], "make mr walters' ecstasy complete and that was": [65535, 0], "mr walters' ecstasy complete and that was a": [65535, 0], "walters' ecstasy complete and that was a chance": [65535, 0], "ecstasy complete and that was a chance to": [65535, 0], "complete and that was a chance to deliver": [65535, 0], "and that was a chance to deliver a": [65535, 0], "that was a chance to deliver a bible": [65535, 0], "was a chance to deliver a bible prize": [65535, 0], "a chance to deliver a bible prize and": [65535, 0], "chance to deliver a bible prize and exhibit": [65535, 0], "to deliver a bible prize and exhibit a": [65535, 0], "deliver a bible prize and exhibit a prodigy": [65535, 0], "a bible prize and exhibit a prodigy several": [65535, 0], "bible prize and exhibit a prodigy several pupils": [65535, 0], "prize and exhibit a prodigy several pupils had": [65535, 0], "and exhibit a prodigy several pupils had a": [65535, 0], "exhibit a prodigy several pupils had a few": [65535, 0], "a prodigy several pupils had a few yellow": [65535, 0], "prodigy several pupils had a few yellow tickets": [65535, 0], "several pupils had a few yellow tickets but": [65535, 0], "pupils had a few yellow tickets but none": [65535, 0], "had a few yellow tickets but none had": [65535, 0], "a few yellow tickets but none had enough": [65535, 0], "few yellow tickets but none had enough he": [65535, 0], "yellow tickets but none had enough he had": [65535, 0], "tickets but none had enough he had been": [65535, 0], "but none had enough he had been around": [65535, 0], "none had enough he had been around among": [65535, 0], "had enough he had been around among the": [65535, 0], "enough he had been around among the star": [65535, 0], "he had been around among the star pupils": [65535, 0], "had been around among the star pupils inquiring": [65535, 0], "been around among the star pupils inquiring he": [65535, 0], "around among the star pupils inquiring he would": [65535, 0], "among the star pupils inquiring he would have": [65535, 0], "the star pupils inquiring he would have given": [65535, 0], "star pupils inquiring he would have given worlds": [65535, 0], "pupils inquiring he would have given worlds now": [65535, 0], "inquiring he would have given worlds now to": [65535, 0], "he would have given worlds now to have": [65535, 0], "would have given worlds now to have that": [65535, 0], "have given worlds now to have that german": [65535, 0], "given worlds now to have that german lad": [65535, 0], "worlds now to have that german lad back": [65535, 0], "now to have that german lad back again": [65535, 0], "to have that german lad back again with": [65535, 0], "have that german lad back again with a": [65535, 0], "that german lad back again with a sound": [65535, 0], "german lad back again with a sound mind": [65535, 0], "lad back again with a sound mind and": [65535, 0], "back again with a sound mind and now": [65535, 0], "again with a sound mind and now at": [65535, 0], "with a sound mind and now at this": [65535, 0], "a sound mind and now at this moment": [65535, 0], "sound mind and now at this moment when": [65535, 0], "mind and now at this moment when hope": [65535, 0], "and now at this moment when hope was": [65535, 0], "now at this moment when hope was dead": [65535, 0], "at this moment when hope was dead tom": [65535, 0], "this moment when hope was dead tom sawyer": [65535, 0], "moment when hope was dead tom sawyer came": [65535, 0], "when hope was dead tom sawyer came forward": [65535, 0], "hope was dead tom sawyer came forward with": [65535, 0], "was dead tom sawyer came forward with nine": [65535, 0], "dead tom sawyer came forward with nine yellow": [65535, 0], "tom sawyer came forward with nine yellow tickets": [65535, 0], "sawyer came forward with nine yellow tickets nine": [65535, 0], "came forward with nine yellow tickets nine red": [65535, 0], "forward with nine yellow tickets nine red tickets": [65535, 0], "with nine yellow tickets nine red tickets and": [65535, 0], "nine yellow tickets nine red tickets and ten": [65535, 0], "yellow tickets nine red tickets and ten blue": [65535, 0], "tickets nine red tickets and ten blue ones": [65535, 0], "nine red tickets and ten blue ones and": [65535, 0], "red tickets and ten blue ones and demanded": [65535, 0], "tickets and ten blue ones and demanded a": [65535, 0], "and ten blue ones and demanded a bible": [65535, 0], "ten blue ones and demanded a bible this": [65535, 0], "blue ones and demanded a bible this was": [65535, 0], "ones and demanded a bible this was a": [65535, 0], "and demanded a bible this was a thunderbolt": [65535, 0], "demanded a bible this was a thunderbolt out": [65535, 0], "a bible this was a thunderbolt out of": [65535, 0], "bible this was a thunderbolt out of a": [65535, 0], "this was a thunderbolt out of a clear": [65535, 0], "was a thunderbolt out of a clear sky": [65535, 0], "a thunderbolt out of a clear sky walters": [65535, 0], "thunderbolt out of a clear sky walters was": [65535, 0], "out of a clear sky walters was not": [65535, 0], "of a clear sky walters was not expecting": [65535, 0], "a clear sky walters was not expecting an": [65535, 0], "clear sky walters was not expecting an application": [65535, 0], "sky walters was not expecting an application from": [65535, 0], "walters was not expecting an application from this": [65535, 0], "was not expecting an application from this source": [65535, 0], "not expecting an application from this source for": [65535, 0], "expecting an application from this source for the": [65535, 0], "an application from this source for the next": [65535, 0], "application from this source for the next ten": [65535, 0], "from this source for the next ten years": [65535, 0], "this source for the next ten years but": [65535, 0], "source for the next ten years but there": [65535, 0], "for the next ten years but there was": [65535, 0], "the next ten years but there was no": [65535, 0], "next ten years but there was no getting": [65535, 0], "ten years but there was no getting around": [65535, 0], "years but there was no getting around it": [65535, 0], "but there was no getting around it here": [65535, 0], "there was no getting around it here were": [65535, 0], "was no getting around it here were the": [65535, 0], "no getting around it here were the certified": [65535, 0], "getting around it here were the certified checks": [65535, 0], "around it here were the certified checks and": [65535, 0], "it here were the certified checks and they": [65535, 0], "here were the certified checks and they were": [65535, 0], "were the certified checks and they were good": [65535, 0], "the certified checks and they were good for": [65535, 0], "certified checks and they were good for their": [65535, 0], "checks and they were good for their face": [65535, 0], "and they were good for their face tom": [65535, 0], "they were good for their face tom was": [65535, 0], "were good for their face tom was therefore": [65535, 0], "good for their face tom was therefore elevated": [65535, 0], "for their face tom was therefore elevated to": [65535, 0], "their face tom was therefore elevated to a": [65535, 0], "face tom was therefore elevated to a place": [65535, 0], "tom was therefore elevated to a place with": [65535, 0], "was therefore elevated to a place with the": [65535, 0], "therefore elevated to a place with the judge": [65535, 0], "elevated to a place with the judge and": [65535, 0], "to a place with the judge and the": [65535, 0], "a place with the judge and the other": [65535, 0], "place with the judge and the other elect": [65535, 0], "with the judge and the other elect and": [65535, 0], "the judge and the other elect and the": [65535, 0], "judge and the other elect and the great": [65535, 0], "and the other elect and the great news": [65535, 0], "the other elect and the great news was": [65535, 0], "other elect and the great news was announced": [65535, 0], "elect and the great news was announced from": [65535, 0], "and the great news was announced from headquarters": [65535, 0], "the great news was announced from headquarters it": [65535, 0], "great news was announced from headquarters it was": [65535, 0], "news was announced from headquarters it was the": [65535, 0], "was announced from headquarters it was the most": [65535, 0], "announced from headquarters it was the most stunning": [65535, 0], "from headquarters it was the most stunning surprise": [65535, 0], "headquarters it was the most stunning surprise of": [65535, 0], "it was the most stunning surprise of the": [65535, 0], "was the most stunning surprise of the decade": [65535, 0], "the most stunning surprise of the decade and": [65535, 0], "most stunning surprise of the decade and so": [65535, 0], "stunning surprise of the decade and so profound": [65535, 0], "surprise of the decade and so profound was": [65535, 0], "of the decade and so profound was the": [65535, 0], "the decade and so profound was the sensation": [65535, 0], "decade and so profound was the sensation that": [65535, 0], "and so profound was the sensation that it": [65535, 0], "so profound was the sensation that it lifted": [65535, 0], "profound was the sensation that it lifted the": [65535, 0], "was the sensation that it lifted the new": [65535, 0], "the sensation that it lifted the new hero": [65535, 0], "sensation that it lifted the new hero up": [65535, 0], "that it lifted the new hero up to": [65535, 0], "it lifted the new hero up to the": [65535, 0], "lifted the new hero up to the judicial": [65535, 0], "the new hero up to the judicial one's": [65535, 0], "new hero up to the judicial one's altitude": [65535, 0], "hero up to the judicial one's altitude and": [65535, 0], "up to the judicial one's altitude and the": [65535, 0], "to the judicial one's altitude and the school": [65535, 0], "the judicial one's altitude and the school had": [65535, 0], "judicial one's altitude and the school had two": [65535, 0], "one's altitude and the school had two marvels": [65535, 0], "altitude and the school had two marvels to": [65535, 0], "and the school had two marvels to gaze": [65535, 0], "the school had two marvels to gaze upon": [65535, 0], "school had two marvels to gaze upon in": [65535, 0], "had two marvels to gaze upon in place": [65535, 0], "two marvels to gaze upon in place of": [65535, 0], "marvels to gaze upon in place of one": [65535, 0], "to gaze upon in place of one the": [65535, 0], "gaze upon in place of one the boys": [65535, 0], "upon in place of one the boys were": [65535, 0], "in place of one the boys were all": [65535, 0], "place of one the boys were all eaten": [65535, 0], "of one the boys were all eaten up": [65535, 0], "one the boys were all eaten up with": [65535, 0], "the boys were all eaten up with envy": [65535, 0], "boys were all eaten up with envy but": [65535, 0], "were all eaten up with envy but those": [65535, 0], "all eaten up with envy but those that": [65535, 0], "eaten up with envy but those that suffered": [65535, 0], "up with envy but those that suffered the": [65535, 0], "with envy but those that suffered the bitterest": [65535, 0], "envy but those that suffered the bitterest pangs": [65535, 0], "but those that suffered the bitterest pangs were": [65535, 0], "those that suffered the bitterest pangs were those": [65535, 0], "that suffered the bitterest pangs were those who": [65535, 0], "suffered the bitterest pangs were those who perceived": [65535, 0], "the bitterest pangs were those who perceived too": [65535, 0], "bitterest pangs were those who perceived too late": [65535, 0], "pangs were those who perceived too late that": [65535, 0], "were those who perceived too late that they": [65535, 0], "those who perceived too late that they themselves": [65535, 0], "who perceived too late that they themselves had": [65535, 0], "perceived too late that they themselves had contributed": [65535, 0], "too late that they themselves had contributed to": [65535, 0], "late that they themselves had contributed to this": [65535, 0], "that they themselves had contributed to this hated": [65535, 0], "they themselves had contributed to this hated splendor": [65535, 0], "themselves had contributed to this hated splendor by": [65535, 0], "had contributed to this hated splendor by trading": [65535, 0], "contributed to this hated splendor by trading tickets": [65535, 0], "to this hated splendor by trading tickets to": [65535, 0], "this hated splendor by trading tickets to tom": [65535, 0], "hated splendor by trading tickets to tom for": [65535, 0], "splendor by trading tickets to tom for the": [65535, 0], "by trading tickets to tom for the wealth": [65535, 0], "trading tickets to tom for the wealth he": [65535, 0], "tickets to tom for the wealth he had": [65535, 0], "to tom for the wealth he had amassed": [65535, 0], "tom for the wealth he had amassed in": [65535, 0], "for the wealth he had amassed in selling": [65535, 0], "the wealth he had amassed in selling whitewashing": [65535, 0], "wealth he had amassed in selling whitewashing privileges": [65535, 0], "he had amassed in selling whitewashing privileges these": [65535, 0], "had amassed in selling whitewashing privileges these despised": [65535, 0], "amassed in selling whitewashing privileges these despised themselves": [65535, 0], "in selling whitewashing privileges these despised themselves as": [65535, 0], "selling whitewashing privileges these despised themselves as being": [65535, 0], "whitewashing privileges these despised themselves as being the": [65535, 0], "privileges these despised themselves as being the dupes": [65535, 0], "these despised themselves as being the dupes of": [65535, 0], "despised themselves as being the dupes of a": [65535, 0], "themselves as being the dupes of a wily": [65535, 0], "as being the dupes of a wily fraud": [65535, 0], "being the dupes of a wily fraud a": [65535, 0], "the dupes of a wily fraud a guileful": [65535, 0], "dupes of a wily fraud a guileful snake": [65535, 0], "of a wily fraud a guileful snake in": [65535, 0], "a wily fraud a guileful snake in the": [65535, 0], "wily fraud a guileful snake in the grass": [65535, 0], "fraud a guileful snake in the grass the": [65535, 0], "a guileful snake in the grass the prize": [65535, 0], "guileful snake in the grass the prize was": [65535, 0], "snake in the grass the prize was delivered": [65535, 0], "in the grass the prize was delivered to": [65535, 0], "the grass the prize was delivered to tom": [65535, 0], "grass the prize was delivered to tom with": [65535, 0], "the prize was delivered to tom with as": [65535, 0], "prize was delivered to tom with as much": [65535, 0], "was delivered to tom with as much effusion": [65535, 0], "delivered to tom with as much effusion as": [65535, 0], "to tom with as much effusion as the": [65535, 0], "tom with as much effusion as the superintendent": [65535, 0], "with as much effusion as the superintendent could": [65535, 0], "as much effusion as the superintendent could pump": [65535, 0], "much effusion as the superintendent could pump up": [65535, 0], "effusion as the superintendent could pump up under": [65535, 0], "as the superintendent could pump up under the": [65535, 0], "the superintendent could pump up under the circumstances": [65535, 0], "superintendent could pump up under the circumstances but": [65535, 0], "could pump up under the circumstances but it": [65535, 0], "pump up under the circumstances but it lacked": [65535, 0], "up under the circumstances but it lacked somewhat": [65535, 0], "under the circumstances but it lacked somewhat of": [65535, 0], "the circumstances but it lacked somewhat of the": [65535, 0], "circumstances but it lacked somewhat of the true": [65535, 0], "but it lacked somewhat of the true gush": [65535, 0], "it lacked somewhat of the true gush for": [65535, 0], "lacked somewhat of the true gush for the": [65535, 0], "somewhat of the true gush for the poor": [65535, 0], "of the true gush for the poor fellow's": [65535, 0], "the true gush for the poor fellow's instinct": [65535, 0], "true gush for the poor fellow's instinct taught": [65535, 0], "gush for the poor fellow's instinct taught him": [65535, 0], "for the poor fellow's instinct taught him that": [65535, 0], "the poor fellow's instinct taught him that there": [65535, 0], "poor fellow's instinct taught him that there was": [65535, 0], "fellow's instinct taught him that there was a": [65535, 0], "instinct taught him that there was a mystery": [65535, 0], "taught him that there was a mystery here": [65535, 0], "him that there was a mystery here that": [65535, 0], "that there was a mystery here that could": [65535, 0], "there was a mystery here that could not": [65535, 0], "was a mystery here that could not well": [65535, 0], "a mystery here that could not well bear": [65535, 0], "mystery here that could not well bear the": [65535, 0], "here that could not well bear the light": [65535, 0], "that could not well bear the light perhaps": [65535, 0], "could not well bear the light perhaps it": [65535, 0], "not well bear the light perhaps it was": [65535, 0], "well bear the light perhaps it was simply": [65535, 0], "bear the light perhaps it was simply preposterous": [65535, 0], "the light perhaps it was simply preposterous that": [65535, 0], "light perhaps it was simply preposterous that this": [65535, 0], "perhaps it was simply preposterous that this boy": [65535, 0], "it was simply preposterous that this boy had": [65535, 0], "was simply preposterous that this boy had warehoused": [65535, 0], "simply preposterous that this boy had warehoused two": [65535, 0], "preposterous that this boy had warehoused two thousand": [65535, 0], "that this boy had warehoused two thousand sheaves": [65535, 0], "this boy had warehoused two thousand sheaves of": [65535, 0], "boy had warehoused two thousand sheaves of scriptural": [65535, 0], "had warehoused two thousand sheaves of scriptural wisdom": [65535, 0], "warehoused two thousand sheaves of scriptural wisdom on": [65535, 0], "two thousand sheaves of scriptural wisdom on his": [65535, 0], "thousand sheaves of scriptural wisdom on his premises": [65535, 0], "sheaves of scriptural wisdom on his premises a": [65535, 0], "of scriptural wisdom on his premises a dozen": [65535, 0], "scriptural wisdom on his premises a dozen would": [65535, 0], "wisdom on his premises a dozen would strain": [65535, 0], "on his premises a dozen would strain his": [65535, 0], "his premises a dozen would strain his capacity": [65535, 0], "premises a dozen would strain his capacity without": [65535, 0], "a dozen would strain his capacity without a": [65535, 0], "dozen would strain his capacity without a doubt": [65535, 0], "would strain his capacity without a doubt amy": [65535, 0], "strain his capacity without a doubt amy lawrence": [65535, 0], "his capacity without a doubt amy lawrence was": [65535, 0], "capacity without a doubt amy lawrence was proud": [65535, 0], "without a doubt amy lawrence was proud and": [65535, 0], "a doubt amy lawrence was proud and glad": [65535, 0], "doubt amy lawrence was proud and glad and": [65535, 0], "amy lawrence was proud and glad and she": [65535, 0], "lawrence was proud and glad and she tried": [65535, 0], "was proud and glad and she tried to": [65535, 0], "proud and glad and she tried to make": [65535, 0], "and glad and she tried to make tom": [65535, 0], "glad and she tried to make tom see": [65535, 0], "and she tried to make tom see it": [65535, 0], "she tried to make tom see it in": [65535, 0], "tried to make tom see it in her": [65535, 0], "to make tom see it in her face": [65535, 0], "make tom see it in her face but": [65535, 0], "tom see it in her face but he": [65535, 0], "see it in her face but he wouldn't": [65535, 0], "it in her face but he wouldn't look": [65535, 0], "in her face but he wouldn't look she": [65535, 0], "her face but he wouldn't look she wondered": [65535, 0], "face but he wouldn't look she wondered then": [65535, 0], "but he wouldn't look she wondered then she": [65535, 0], "he wouldn't look she wondered then she was": [65535, 0], "wouldn't look she wondered then she was just": [65535, 0], "look she wondered then she was just a": [65535, 0], "she wondered then she was just a grain": [65535, 0], "wondered then she was just a grain troubled": [65535, 0], "then she was just a grain troubled next": [65535, 0], "she was just a grain troubled next a": [65535, 0], "was just a grain troubled next a dim": [65535, 0], "just a grain troubled next a dim suspicion": [65535, 0], "a grain troubled next a dim suspicion came": [65535, 0], "grain troubled next a dim suspicion came and": [65535, 0], "troubled next a dim suspicion came and went": [65535, 0], "next a dim suspicion came and went came": [65535, 0], "a dim suspicion came and went came again": [65535, 0], "dim suspicion came and went came again she": [65535, 0], "suspicion came and went came again she watched": [65535, 0], "came and went came again she watched a": [65535, 0], "and went came again she watched a furtive": [65535, 0], "went came again she watched a furtive glance": [65535, 0], "came again she watched a furtive glance told": [65535, 0], "again she watched a furtive glance told her": [65535, 0], "she watched a furtive glance told her worlds": [65535, 0], "watched a furtive glance told her worlds and": [65535, 0], "a furtive glance told her worlds and then": [65535, 0], "furtive glance told her worlds and then her": [65535, 0], "glance told her worlds and then her heart": [65535, 0], "told her worlds and then her heart broke": [65535, 0], "her worlds and then her heart broke and": [65535, 0], "worlds and then her heart broke and she": [65535, 0], "and then her heart broke and she was": [65535, 0], "then her heart broke and she was jealous": [65535, 0], "her heart broke and she was jealous and": [65535, 0], "heart broke and she was jealous and angry": [65535, 0], "broke and she was jealous and angry and": [65535, 0], "and she was jealous and angry and the": [65535, 0], "she was jealous and angry and the tears": [65535, 0], "was jealous and angry and the tears came": [65535, 0], "jealous and angry and the tears came and": [65535, 0], "and angry and the tears came and she": [65535, 0], "angry and the tears came and she hated": [65535, 0], "and the tears came and she hated everybody": [65535, 0], "the tears came and she hated everybody tom": [65535, 0], "tears came and she hated everybody tom most": [65535, 0], "came and she hated everybody tom most of": [65535, 0], "and she hated everybody tom most of all": [65535, 0], "she hated everybody tom most of all she": [65535, 0], "hated everybody tom most of all she thought": [65535, 0], "everybody tom most of all she thought tom": [65535, 0], "tom most of all she thought tom was": [65535, 0], "most of all she thought tom was introduced": [65535, 0], "of all she thought tom was introduced to": [65535, 0], "all she thought tom was introduced to the": [65535, 0], "she thought tom was introduced to the judge": [65535, 0], "thought tom was introduced to the judge but": [65535, 0], "tom was introduced to the judge but his": [65535, 0], "was introduced to the judge but his tongue": [65535, 0], "introduced to the judge but his tongue was": [65535, 0], "to the judge but his tongue was tied": [65535, 0], "the judge but his tongue was tied his": [65535, 0], "judge but his tongue was tied his breath": [65535, 0], "but his tongue was tied his breath would": [65535, 0], "his tongue was tied his breath would hardly": [65535, 0], "tongue was tied his breath would hardly come": [65535, 0], "was tied his breath would hardly come his": [65535, 0], "tied his breath would hardly come his heart": [65535, 0], "his breath would hardly come his heart quaked": [65535, 0], "breath would hardly come his heart quaked partly": [65535, 0], "would hardly come his heart quaked partly because": [65535, 0], "hardly come his heart quaked partly because of": [65535, 0], "come his heart quaked partly because of the": [65535, 0], "his heart quaked partly because of the awful": [65535, 0], "heart quaked partly because of the awful greatness": [65535, 0], "quaked partly because of the awful greatness of": [65535, 0], "partly because of the awful greatness of the": [65535, 0], "because of the awful greatness of the man": [65535, 0], "of the awful greatness of the man but": [65535, 0], "the awful greatness of the man but mainly": [65535, 0], "awful greatness of the man but mainly because": [65535, 0], "greatness of the man but mainly because he": [65535, 0], "of the man but mainly because he was": [65535, 0], "the man but mainly because he was her": [65535, 0], "man but mainly because he was her parent": [65535, 0], "but mainly because he was her parent he": [65535, 0], "mainly because he was her parent he would": [65535, 0], "because he was her parent he would have": [65535, 0], "he was her parent he would have liked": [65535, 0], "was her parent he would have liked to": [65535, 0], "her parent he would have liked to fall": [65535, 0], "parent he would have liked to fall down": [65535, 0], "he would have liked to fall down and": [65535, 0], "would have liked to fall down and worship": [65535, 0], "have liked to fall down and worship him": [65535, 0], "liked to fall down and worship him if": [65535, 0], "to fall down and worship him if it": [65535, 0], "fall down and worship him if it were": [65535, 0], "down and worship him if it were in": [65535, 0], "and worship him if it were in the": [65535, 0], "worship him if it were in the dark": [65535, 0], "him if it were in the dark the": [65535, 0], "if it were in the dark the judge": [65535, 0], "it were in the dark the judge put": [65535, 0], "were in the dark the judge put his": [65535, 0], "in the dark the judge put his hand": [65535, 0], "the dark the judge put his hand on": [65535, 0], "dark the judge put his hand on tom's": [65535, 0], "the judge put his hand on tom's head": [65535, 0], "judge put his hand on tom's head and": [65535, 0], "put his hand on tom's head and called": [65535, 0], "his hand on tom's head and called him": [65535, 0], "hand on tom's head and called him a": [65535, 0], "on tom's head and called him a fine": [65535, 0], "tom's head and called him a fine little": [65535, 0], "head and called him a fine little man": [65535, 0], "and called him a fine little man and": [65535, 0], "called him a fine little man and asked": [65535, 0], "him a fine little man and asked him": [65535, 0], "a fine little man and asked him what": [65535, 0], "fine little man and asked him what his": [65535, 0], "little man and asked him what his name": [65535, 0], "man and asked him what his name was": [65535, 0], "and asked him what his name was the": [65535, 0], "asked him what his name was the boy": [65535, 0], "him what his name was the boy stammered": [65535, 0], "what his name was the boy stammered gasped": [65535, 0], "his name was the boy stammered gasped and": [65535, 0], "name was the boy stammered gasped and got": [65535, 0], "was the boy stammered gasped and got it": [65535, 0], "the boy stammered gasped and got it out": [65535, 0], "boy stammered gasped and got it out tom": [65535, 0], "stammered gasped and got it out tom oh": [65535, 0], "gasped and got it out tom oh no": [65535, 0], "and got it out tom oh no not": [65535, 0], "got it out tom oh no not tom": [65535, 0], "it out tom oh no not tom it": [65535, 0], "out tom oh no not tom it is": [65535, 0], "tom oh no not tom it is thomas": [65535, 0], "oh no not tom it is thomas ah": [65535, 0], "no not tom it is thomas ah that's": [65535, 0], "not tom it is thomas ah that's it": [65535, 0], "tom it is thomas ah that's it i": [65535, 0], "it is thomas ah that's it i thought": [65535, 0], "is thomas ah that's it i thought there": [65535, 0], "thomas ah that's it i thought there was": [65535, 0], "ah that's it i thought there was more": [65535, 0], "that's it i thought there was more to": [65535, 0], "it i thought there was more to it": [65535, 0], "i thought there was more to it maybe": [65535, 0], "thought there was more to it maybe that's": [65535, 0], "there was more to it maybe that's very": [65535, 0], "was more to it maybe that's very well": [65535, 0], "more to it maybe that's very well but": [65535, 0], "to it maybe that's very well but you've": [65535, 0], "it maybe that's very well but you've another": [65535, 0], "maybe that's very well but you've another one": [65535, 0], "that's very well but you've another one i": [65535, 0], "very well but you've another one i daresay": [65535, 0], "well but you've another one i daresay and": [65535, 0], "but you've another one i daresay and you'll": [65535, 0], "you've another one i daresay and you'll tell": [65535, 0], "another one i daresay and you'll tell it": [65535, 0], "one i daresay and you'll tell it to": [65535, 0], "i daresay and you'll tell it to me": [65535, 0], "daresay and you'll tell it to me won't": [65535, 0], "and you'll tell it to me won't you": [65535, 0], "you'll tell it to me won't you tell": [65535, 0], "tell it to me won't you tell the": [65535, 0], "it to me won't you tell the gentleman": [65535, 0], "to me won't you tell the gentleman your": [65535, 0], "me won't you tell the gentleman your other": [65535, 0], "won't you tell the gentleman your other name": [65535, 0], "you tell the gentleman your other name thomas": [65535, 0], "tell the gentleman your other name thomas said": [65535, 0], "the gentleman your other name thomas said walters": [65535, 0], "gentleman your other name thomas said walters and": [65535, 0], "your other name thomas said walters and say": [65535, 0], "other name thomas said walters and say sir": [65535, 0], "name thomas said walters and say sir you": [65535, 0], "thomas said walters and say sir you mustn't": [65535, 0], "said walters and say sir you mustn't forget": [65535, 0], "walters and say sir you mustn't forget your": [65535, 0], "and say sir you mustn't forget your manners": [65535, 0], "say sir you mustn't forget your manners thomas": [65535, 0], "sir you mustn't forget your manners thomas sawyer": [65535, 0], "you mustn't forget your manners thomas sawyer sir": [65535, 0], "mustn't forget your manners thomas sawyer sir that's": [65535, 0], "forget your manners thomas sawyer sir that's it": [65535, 0], "your manners thomas sawyer sir that's it that's": [65535, 0], "manners thomas sawyer sir that's it that's a": [65535, 0], "thomas sawyer sir that's it that's a good": [65535, 0], "sawyer sir that's it that's a good boy": [65535, 0], "sir that's it that's a good boy fine": [65535, 0], "that's it that's a good boy fine boy": [65535, 0], "it that's a good boy fine boy fine": [65535, 0], "that's a good boy fine boy fine manly": [65535, 0], "a good boy fine boy fine manly little": [65535, 0], "good boy fine boy fine manly little fellow": [65535, 0], "boy fine boy fine manly little fellow two": [65535, 0], "fine boy fine manly little fellow two thousand": [65535, 0], "boy fine manly little fellow two thousand verses": [65535, 0], "fine manly little fellow two thousand verses is": [65535, 0], "manly little fellow two thousand verses is a": [65535, 0], "little fellow two thousand verses is a great": [65535, 0], "fellow two thousand verses is a great many": [65535, 0], "two thousand verses is a great many very": [65535, 0], "thousand verses is a great many very very": [65535, 0], "verses is a great many very very great": [65535, 0], "is a great many very very great many": [65535, 0], "a great many very very great many and": [65535, 0], "great many very very great many and you": [65535, 0], "many very very great many and you never": [65535, 0], "very very great many and you never can": [65535, 0], "very great many and you never can be": [65535, 0], "great many and you never can be sorry": [65535, 0], "many and you never can be sorry for": [65535, 0], "and you never can be sorry for the": [65535, 0], "you never can be sorry for the trouble": [65535, 0], "never can be sorry for the trouble you": [65535, 0], "can be sorry for the trouble you took": [65535, 0], "be sorry for the trouble you took to": [65535, 0], "sorry for the trouble you took to learn": [65535, 0], "for the trouble you took to learn them": [65535, 0], "the trouble you took to learn them for": [65535, 0], "trouble you took to learn them for knowledge": [65535, 0], "you took to learn them for knowledge is": [65535, 0], "took to learn them for knowledge is worth": [65535, 0], "to learn them for knowledge is worth more": [65535, 0], "learn them for knowledge is worth more than": [65535, 0], "them for knowledge is worth more than anything": [65535, 0], "for knowledge is worth more than anything there": [65535, 0], "knowledge is worth more than anything there is": [65535, 0], "is worth more than anything there is in": [65535, 0], "worth more than anything there is in the": [65535, 0], "more than anything there is in the world": [65535, 0], "than anything there is in the world it's": [65535, 0], "anything there is in the world it's what": [65535, 0], "there is in the world it's what makes": [65535, 0], "is in the world it's what makes great": [65535, 0], "in the world it's what makes great men": [65535, 0], "the world it's what makes great men and": [65535, 0], "world it's what makes great men and good": [65535, 0], "it's what makes great men and good men": [65535, 0], "what makes great men and good men you'll": [65535, 0], "makes great men and good men you'll be": [65535, 0], "great men and good men you'll be a": [65535, 0], "men and good men you'll be a great": [65535, 0], "and good men you'll be a great man": [65535, 0], "good men you'll be a great man and": [65535, 0], "men you'll be a great man and a": [65535, 0], "you'll be a great man and a good": [65535, 0], "be a great man and a good man": [65535, 0], "a great man and a good man yourself": [65535, 0], "great man and a good man yourself some": [65535, 0], "man and a good man yourself some day": [65535, 0], "and a good man yourself some day thomas": [65535, 0], "a good man yourself some day thomas and": [65535, 0], "good man yourself some day thomas and then": [65535, 0], "man yourself some day thomas and then you'll": [65535, 0], "yourself some day thomas and then you'll look": [65535, 0], "some day thomas and then you'll look back": [65535, 0], "day thomas and then you'll look back and": [65535, 0], "thomas and then you'll look back and say": [65535, 0], "and then you'll look back and say it's": [65535, 0], "then you'll look back and say it's all": [65535, 0], "you'll look back and say it's all owing": [65535, 0], "look back and say it's all owing to": [65535, 0], "back and say it's all owing to the": [65535, 0], "and say it's all owing to the precious": [65535, 0], "say it's all owing to the precious sunday": [65535, 0], "it's all owing to the precious sunday school": [65535, 0], "all owing to the precious sunday school privileges": [65535, 0], "owing to the precious sunday school privileges of": [65535, 0], "to the precious sunday school privileges of my": [65535, 0], "the precious sunday school privileges of my boyhood": [65535, 0], "precious sunday school privileges of my boyhood it's": [65535, 0], "sunday school privileges of my boyhood it's all": [65535, 0], "school privileges of my boyhood it's all owing": [65535, 0], "privileges of my boyhood it's all owing to": [65535, 0], "of my boyhood it's all owing to my": [65535, 0], "my boyhood it's all owing to my dear": [65535, 0], "boyhood it's all owing to my dear teachers": [65535, 0], "it's all owing to my dear teachers that": [65535, 0], "all owing to my dear teachers that taught": [65535, 0], "owing to my dear teachers that taught me": [65535, 0], "to my dear teachers that taught me to": [65535, 0], "my dear teachers that taught me to learn": [65535, 0], "dear teachers that taught me to learn it's": [65535, 0], "teachers that taught me to learn it's all": [65535, 0], "that taught me to learn it's all owing": [65535, 0], "taught me to learn it's all owing to": [65535, 0], "me to learn it's all owing to the": [65535, 0], "to learn it's all owing to the good": [65535, 0], "learn it's all owing to the good superintendent": [65535, 0], "it's all owing to the good superintendent who": [65535, 0], "all owing to the good superintendent who encouraged": [65535, 0], "owing to the good superintendent who encouraged me": [65535, 0], "to the good superintendent who encouraged me and": [65535, 0], "the good superintendent who encouraged me and watched": [65535, 0], "good superintendent who encouraged me and watched over": [65535, 0], "superintendent who encouraged me and watched over me": [65535, 0], "who encouraged me and watched over me and": [65535, 0], "encouraged me and watched over me and gave": [65535, 0], "me and watched over me and gave me": [65535, 0], "and watched over me and gave me a": [65535, 0], "watched over me and gave me a beautiful": [65535, 0], "over me and gave me a beautiful bible": [65535, 0], "me and gave me a beautiful bible a": [65535, 0], "and gave me a beautiful bible a splendid": [65535, 0], "gave me a beautiful bible a splendid elegant": [65535, 0], "me a beautiful bible a splendid elegant bible": [65535, 0], "a beautiful bible a splendid elegant bible to": [65535, 0], "beautiful bible a splendid elegant bible to keep": [65535, 0], "bible a splendid elegant bible to keep and": [65535, 0], "a splendid elegant bible to keep and have": [65535, 0], "splendid elegant bible to keep and have it": [65535, 0], "elegant bible to keep and have it all": [65535, 0], "bible to keep and have it all for": [65535, 0], "to keep and have it all for my": [65535, 0], "keep and have it all for my own": [65535, 0], "and have it all for my own always": [65535, 0], "have it all for my own always it's": [65535, 0], "it all for my own always it's all": [65535, 0], "all for my own always it's all owing": [65535, 0], "for my own always it's all owing to": [65535, 0], "my own always it's all owing to right": [65535, 0], "own always it's all owing to right bringing": [65535, 0], "always it's all owing to right bringing up": [65535, 0], "it's all owing to right bringing up that": [65535, 0], "all owing to right bringing up that is": [65535, 0], "owing to right bringing up that is what": [65535, 0], "to right bringing up that is what you": [65535, 0], "right bringing up that is what you will": [65535, 0], "bringing up that is what you will say": [65535, 0], "up that is what you will say thomas": [65535, 0], "that is what you will say thomas and": [65535, 0], "is what you will say thomas and you": [65535, 0], "what you will say thomas and you wouldn't": [65535, 0], "you will say thomas and you wouldn't take": [65535, 0], "will say thomas and you wouldn't take any": [65535, 0], "say thomas and you wouldn't take any money": [65535, 0], "thomas and you wouldn't take any money for": [65535, 0], "and you wouldn't take any money for those": [65535, 0], "you wouldn't take any money for those two": [65535, 0], "wouldn't take any money for those two thousand": [65535, 0], "take any money for those two thousand verses": [65535, 0], "any money for those two thousand verses no": [65535, 0], "money for those two thousand verses no indeed": [65535, 0], "for those two thousand verses no indeed you": [65535, 0], "those two thousand verses no indeed you wouldn't": [65535, 0], "two thousand verses no indeed you wouldn't and": [65535, 0], "thousand verses no indeed you wouldn't and now": [65535, 0], "verses no indeed you wouldn't and now you": [65535, 0], "no indeed you wouldn't and now you wouldn't": [65535, 0], "indeed you wouldn't and now you wouldn't mind": [65535, 0], "you wouldn't and now you wouldn't mind telling": [65535, 0], "wouldn't and now you wouldn't mind telling me": [65535, 0], "and now you wouldn't mind telling me and": [65535, 0], "now you wouldn't mind telling me and this": [65535, 0], "you wouldn't mind telling me and this lady": [65535, 0], "wouldn't mind telling me and this lady some": [65535, 0], "mind telling me and this lady some of": [65535, 0], "telling me and this lady some of the": [65535, 0], "me and this lady some of the things": [65535, 0], "and this lady some of the things you've": [65535, 0], "this lady some of the things you've learned": [65535, 0], "lady some of the things you've learned no": [65535, 0], "some of the things you've learned no i": [65535, 0], "of the things you've learned no i know": [65535, 0], "the things you've learned no i know you": [65535, 0], "things you've learned no i know you wouldn't": [65535, 0], "you've learned no i know you wouldn't for": [65535, 0], "learned no i know you wouldn't for we": [65535, 0], "no i know you wouldn't for we are": [65535, 0], "i know you wouldn't for we are proud": [65535, 0], "know you wouldn't for we are proud of": [65535, 0], "you wouldn't for we are proud of little": [65535, 0], "wouldn't for we are proud of little boys": [65535, 0], "for we are proud of little boys that": [65535, 0], "we are proud of little boys that learn": [65535, 0], "are proud of little boys that learn now": [65535, 0], "proud of little boys that learn now no": [65535, 0], "of little boys that learn now no doubt": [65535, 0], "little boys that learn now no doubt you": [65535, 0], "boys that learn now no doubt you know": [65535, 0], "that learn now no doubt you know the": [65535, 0], "learn now no doubt you know the names": [65535, 0], "now no doubt you know the names of": [65535, 0], "no doubt you know the names of all": [65535, 0], "doubt you know the names of all the": [65535, 0], "you know the names of all the twelve": [65535, 0], "know the names of all the twelve disciples": [65535, 0], "the names of all the twelve disciples won't": [65535, 0], "names of all the twelve disciples won't you": [65535, 0], "of all the twelve disciples won't you tell": [65535, 0], "all the twelve disciples won't you tell us": [65535, 0], "the twelve disciples won't you tell us the": [65535, 0], "twelve disciples won't you tell us the names": [65535, 0], "disciples won't you tell us the names of": [65535, 0], "won't you tell us the names of the": [65535, 0], "you tell us the names of the first": [65535, 0], "tell us the names of the first two": [65535, 0], "us the names of the first two that": [65535, 0], "the names of the first two that were": [65535, 0], "names of the first two that were appointed": [65535, 0], "of the first two that were appointed tom": [65535, 0], "the first two that were appointed tom was": [65535, 0], "first two that were appointed tom was tugging": [65535, 0], "two that were appointed tom was tugging at": [65535, 0], "that were appointed tom was tugging at a": [65535, 0], "were appointed tom was tugging at a button": [65535, 0], "appointed tom was tugging at a button hole": [65535, 0], "tom was tugging at a button hole and": [65535, 0], "was tugging at a button hole and looking": [65535, 0], "tugging at a button hole and looking sheepish": [65535, 0], "at a button hole and looking sheepish he": [65535, 0], "a button hole and looking sheepish he blushed": [65535, 0], "button hole and looking sheepish he blushed now": [65535, 0], "hole and looking sheepish he blushed now and": [65535, 0], "and looking sheepish he blushed now and his": [65535, 0], "looking sheepish he blushed now and his eyes": [65535, 0], "sheepish he blushed now and his eyes fell": [65535, 0], "he blushed now and his eyes fell mr": [65535, 0], "blushed now and his eyes fell mr walters'": [65535, 0], "now and his eyes fell mr walters' heart": [65535, 0], "and his eyes fell mr walters' heart sank": [65535, 0], "his eyes fell mr walters' heart sank within": [65535, 0], "eyes fell mr walters' heart sank within him": [65535, 0], "fell mr walters' heart sank within him he": [65535, 0], "mr walters' heart sank within him he said": [65535, 0], "walters' heart sank within him he said to": [65535, 0], "heart sank within him he said to himself": [65535, 0], "sank within him he said to himself it": [65535, 0], "within him he said to himself it is": [65535, 0], "him he said to himself it is not": [65535, 0], "he said to himself it is not possible": [65535, 0], "said to himself it is not possible that": [65535, 0], "to himself it is not possible that the": [65535, 0], "himself it is not possible that the boy": [65535, 0], "it is not possible that the boy can": [65535, 0], "is not possible that the boy can answer": [65535, 0], "not possible that the boy can answer the": [65535, 0], "possible that the boy can answer the simplest": [65535, 0], "that the boy can answer the simplest question": [65535, 0], "the boy can answer the simplest question why": [65535, 0], "boy can answer the simplest question why did": [65535, 0], "can answer the simplest question why did the": [65535, 0], "answer the simplest question why did the judge": [65535, 0], "the simplest question why did the judge ask": [65535, 0], "simplest question why did the judge ask him": [65535, 0], "question why did the judge ask him yet": [65535, 0], "why did the judge ask him yet he": [65535, 0], "did the judge ask him yet he felt": [65535, 0], "the judge ask him yet he felt obliged": [65535, 0], "judge ask him yet he felt obliged to": [65535, 0], "ask him yet he felt obliged to speak": [65535, 0], "him yet he felt obliged to speak up": [65535, 0], "yet he felt obliged to speak up and": [65535, 0], "he felt obliged to speak up and say": [65535, 0], "felt obliged to speak up and say answer": [65535, 0], "obliged to speak up and say answer the": [65535, 0], "to speak up and say answer the gentleman": [65535, 0], "speak up and say answer the gentleman thomas": [65535, 0], "up and say answer the gentleman thomas don't": [65535, 0], "and say answer the gentleman thomas don't be": [65535, 0], "say answer the gentleman thomas don't be afraid": [65535, 0], "answer the gentleman thomas don't be afraid tom": [65535, 0], "the gentleman thomas don't be afraid tom still": [65535, 0], "gentleman thomas don't be afraid tom still hung": [65535, 0], "thomas don't be afraid tom still hung fire": [65535, 0], "don't be afraid tom still hung fire now": [65535, 0], "be afraid tom still hung fire now i": [65535, 0], "afraid tom still hung fire now i know": [65535, 0], "tom still hung fire now i know you'll": [65535, 0], "still hung fire now i know you'll tell": [65535, 0], "hung fire now i know you'll tell me": [65535, 0], "fire now i know you'll tell me said": [65535, 0], "now i know you'll tell me said the": [65535, 0], "i know you'll tell me said the lady": [65535, 0], "know you'll tell me said the lady the": [65535, 0], "you'll tell me said the lady the names": [65535, 0], "tell me said the lady the names of": [65535, 0], "me said the lady the names of the": [65535, 0], "said the lady the names of the first": [65535, 0], "the lady the names of the first two": [65535, 0], "lady the names of the first two disciples": [65535, 0], "the names of the first two disciples were": [65535, 0], "names of the first two disciples were david": [65535, 0], "of the first two disciples were david and": [65535, 0], "the first two disciples were david and goliath": [65535, 0], "first two disciples were david and goliath let": [65535, 0], "two disciples were david and goliath let us": [65535, 0], "disciples were david and goliath let us draw": [65535, 0], "were david and goliath let us draw the": [65535, 0], "david and goliath let us draw the curtain": [65535, 0], "and goliath let us draw the curtain of": [65535, 0], "goliath let us draw the curtain of charity": [65535, 0], "let us draw the curtain of charity over": [65535, 0], "us draw the curtain of charity over the": [65535, 0], "draw the curtain of charity over the rest": [65535, 0], "the curtain of charity over the rest of": [65535, 0], "curtain of charity over the rest of the": [65535, 0], "of charity over the rest of the scene": [65535, 0], "the sun rose upon a tranquil world and beamed": [65535, 0], "sun rose upon a tranquil world and beamed down": [65535, 0], "rose upon a tranquil world and beamed down upon": [65535, 0], "upon a tranquil world and beamed down upon the": [65535, 0], "a tranquil world and beamed down upon the peaceful": [65535, 0], "tranquil world and beamed down upon the peaceful village": [65535, 0], "world and beamed down upon the peaceful village like": [65535, 0], "and beamed down upon the peaceful village like a": [65535, 0], "beamed down upon the peaceful village like a benediction": [65535, 0], "down upon the peaceful village like a benediction breakfast": [65535, 0], "upon the peaceful village like a benediction breakfast over": [65535, 0], "the peaceful village like a benediction breakfast over aunt": [65535, 0], "peaceful village like a benediction breakfast over aunt polly": [65535, 0], "village like a benediction breakfast over aunt polly had": [65535, 0], "like a benediction breakfast over aunt polly had family": [65535, 0], "a benediction breakfast over aunt polly had family worship": [65535, 0], "benediction breakfast over aunt polly had family worship it": [65535, 0], "breakfast over aunt polly had family worship it began": [65535, 0], "over aunt polly had family worship it began with": [65535, 0], "aunt polly had family worship it began with a": [65535, 0], "polly had family worship it began with a prayer": [65535, 0], "had family worship it began with a prayer built": [65535, 0], "family worship it began with a prayer built from": [65535, 0], "worship it began with a prayer built from the": [65535, 0], "it began with a prayer built from the ground": [65535, 0], "began with a prayer built from the ground up": [65535, 0], "with a prayer built from the ground up of": [65535, 0], "a prayer built from the ground up of solid": [65535, 0], "prayer built from the ground up of solid courses": [65535, 0], "built from the ground up of solid courses of": [65535, 0], "from the ground up of solid courses of scriptural": [65535, 0], "the ground up of solid courses of scriptural quotations": [65535, 0], "ground up of solid courses of scriptural quotations welded": [65535, 0], "up of solid courses of scriptural quotations welded together": [65535, 0], "of solid courses of scriptural quotations welded together with": [65535, 0], "solid courses of scriptural quotations welded together with a": [65535, 0], "courses of scriptural quotations welded together with a thin": [65535, 0], "of scriptural quotations welded together with a thin mortar": [65535, 0], "scriptural quotations welded together with a thin mortar of": [65535, 0], "quotations welded together with a thin mortar of originality": [65535, 0], "welded together with a thin mortar of originality and": [65535, 0], "together with a thin mortar of originality and from": [65535, 0], "with a thin mortar of originality and from the": [65535, 0], "a thin mortar of originality and from the summit": [65535, 0], "thin mortar of originality and from the summit of": [65535, 0], "mortar of originality and from the summit of this": [65535, 0], "of originality and from the summit of this she": [65535, 0], "originality and from the summit of this she delivered": [65535, 0], "and from the summit of this she delivered a": [65535, 0], "from the summit of this she delivered a grim": [65535, 0], "the summit of this she delivered a grim chapter": [65535, 0], "summit of this she delivered a grim chapter of": [65535, 0], "of this she delivered a grim chapter of the": [65535, 0], "this she delivered a grim chapter of the mosaic": [65535, 0], "she delivered a grim chapter of the mosaic law": [65535, 0], "delivered a grim chapter of the mosaic law as": [65535, 0], "a grim chapter of the mosaic law as from": [65535, 0], "grim chapter of the mosaic law as from sinai": [65535, 0], "chapter of the mosaic law as from sinai then": [65535, 0], "of the mosaic law as from sinai then tom": [65535, 0], "the mosaic law as from sinai then tom girded": [65535, 0], "mosaic law as from sinai then tom girded up": [65535, 0], "law as from sinai then tom girded up his": [65535, 0], "as from sinai then tom girded up his loins": [65535, 0], "from sinai then tom girded up his loins so": [65535, 0], "sinai then tom girded up his loins so to": [65535, 0], "then tom girded up his loins so to speak": [65535, 0], "tom girded up his loins so to speak and": [65535, 0], "girded up his loins so to speak and went": [65535, 0], "up his loins so to speak and went to": [65535, 0], "his loins so to speak and went to work": [65535, 0], "loins so to speak and went to work to": [65535, 0], "so to speak and went to work to get": [65535, 0], "to speak and went to work to get his": [65535, 0], "speak and went to work to get his verses": [65535, 0], "and went to work to get his verses sid": [65535, 0], "went to work to get his verses sid had": [65535, 0], "to work to get his verses sid had learned": [65535, 0], "work to get his verses sid had learned his": [65535, 0], "to get his verses sid had learned his lesson": [65535, 0], "get his verses sid had learned his lesson days": [65535, 0], "his verses sid had learned his lesson days before": [65535, 0], "verses sid had learned his lesson days before tom": [65535, 0], "sid had learned his lesson days before tom bent": [65535, 0], "had learned his lesson days before tom bent all": [65535, 0], "learned his lesson days before tom bent all his": [65535, 0], "his lesson days before tom bent all his energies": [65535, 0], "lesson days before tom bent all his energies to": [65535, 0], "days before tom bent all his energies to the": [65535, 0], "before tom bent all his energies to the memorizing": [65535, 0], "tom bent all his energies to the memorizing of": [65535, 0], "bent all his energies to the memorizing of five": [65535, 0], "all his energies to the memorizing of five verses": [65535, 0], "his energies to the memorizing of five verses and": [65535, 0], "energies to the memorizing of five verses and he": [65535, 0], "to the memorizing of five verses and he chose": [65535, 0], "the memorizing of five verses and he chose part": [65535, 0], "memorizing of five verses and he chose part of": [65535, 0], "of five verses and he chose part of the": [65535, 0], "five verses and he chose part of the sermon": [65535, 0], "verses and he chose part of the sermon on": [65535, 0], "and he chose part of the sermon on the": [65535, 0], "he chose part of the sermon on the mount": [65535, 0], "chose part of the sermon on the mount because": [65535, 0], "part of the sermon on the mount because he": [65535, 0], "of the sermon on the mount because he could": [65535, 0], "the sermon on the mount because he could find": [65535, 0], "sermon on the mount because he could find no": [65535, 0], "on the mount because he could find no verses": [65535, 0], "the mount because he could find no verses that": [65535, 0], "mount because he could find no verses that were": [65535, 0], "because he could find no verses that were shorter": [65535, 0], "he could find no verses that were shorter at": [65535, 0], "could find no verses that were shorter at the": [65535, 0], "find no verses that were shorter at the end": [65535, 0], "no verses that were shorter at the end of": [65535, 0], "verses that were shorter at the end of half": [65535, 0], "that were shorter at the end of half an": [65535, 0], "were shorter at the end of half an hour": [65535, 0], "shorter at the end of half an hour tom": [65535, 0], "at the end of half an hour tom had": [65535, 0], "the end of half an hour tom had a": [65535, 0], "end of half an hour tom had a vague": [65535, 0], "of half an hour tom had a vague general": [65535, 0], "half an hour tom had a vague general idea": [65535, 0], "an hour tom had a vague general idea of": [65535, 0], "hour tom had a vague general idea of his": [65535, 0], "tom had a vague general idea of his lesson": [65535, 0], "had a vague general idea of his lesson but": [65535, 0], "a vague general idea of his lesson but no": [65535, 0], "vague general idea of his lesson but no more": [65535, 0], "general idea of his lesson but no more for": [65535, 0], "idea of his lesson but no more for his": [65535, 0], "of his lesson but no more for his mind": [65535, 0], "his lesson but no more for his mind was": [65535, 0], "lesson but no more for his mind was traversing": [65535, 0], "but no more for his mind was traversing the": [65535, 0], "no more for his mind was traversing the whole": [65535, 0], "more for his mind was traversing the whole field": [65535, 0], "for his mind was traversing the whole field of": [65535, 0], "his mind was traversing the whole field of human": [65535, 0], "mind was traversing the whole field of human thought": [65535, 0], "was traversing the whole field of human thought and": [65535, 0], "traversing the whole field of human thought and his": [65535, 0], "the whole field of human thought and his hands": [65535, 0], "whole field of human thought and his hands were": [65535, 0], "field of human thought and his hands were busy": [65535, 0], "of human thought and his hands were busy with": [65535, 0], "human thought and his hands were busy with distracting": [65535, 0], "thought and his hands were busy with distracting recreations": [65535, 0], "and his hands were busy with distracting recreations mary": [65535, 0], "his hands were busy with distracting recreations mary took": [65535, 0], "hands were busy with distracting recreations mary took his": [65535, 0], "were busy with distracting recreations mary took his book": [65535, 0], "busy with distracting recreations mary took his book to": [65535, 0], "with distracting recreations mary took his book to hear": [65535, 0], "distracting recreations mary took his book to hear him": [65535, 0], "recreations mary took his book to hear him recite": [65535, 0], "mary took his book to hear him recite and": [65535, 0], "took his book to hear him recite and he": [65535, 0], "his book to hear him recite and he tried": [65535, 0], "book to hear him recite and he tried to": [65535, 0], "to hear him recite and he tried to find": [65535, 0], "hear him recite and he tried to find his": [65535, 0], "him recite and he tried to find his way": [65535, 0], "recite and he tried to find his way through": [65535, 0], "and he tried to find his way through the": [65535, 0], "he tried to find his way through the fog": [65535, 0], "tried to find his way through the fog blessed": [65535, 0], "to find his way through the fog blessed are": [65535, 0], "find his way through the fog blessed are the": [65535, 0], "his way through the fog blessed are the a": [65535, 0], "way through the fog blessed are the a a": [65535, 0], "through the fog blessed are the a a poor": [65535, 0], "the fog blessed are the a a poor yes": [65535, 0], "fog blessed are the a a poor yes poor": [65535, 0], "blessed are the a a poor yes poor blessed": [65535, 0], "are the a a poor yes poor blessed are": [65535, 0], "the a a poor yes poor blessed are the": [65535, 0], "a a poor yes poor blessed are the poor": [65535, 0], "a poor yes poor blessed are the poor a": [65535, 0], "poor yes poor blessed are the poor a a": [65535, 0], "yes poor blessed are the poor a a in": [65535, 0], "poor blessed are the poor a a in spirit": [65535, 0], "blessed are the poor a a in spirit in": [65535, 0], "are the poor a a in spirit in spirit": [65535, 0], "the poor a a in spirit in spirit blessed": [65535, 0], "poor a a in spirit in spirit blessed are": [65535, 0], "a a in spirit in spirit blessed are the": [65535, 0], "a in spirit in spirit blessed are the poor": [65535, 0], "in spirit in spirit blessed are the poor in": [65535, 0], "spirit in spirit blessed are the poor in spirit": [65535, 0], "in spirit blessed are the poor in spirit for": [65535, 0], "spirit blessed are the poor in spirit for they": [65535, 0], "blessed are the poor in spirit for they they": [65535, 0], "are the poor in spirit for they they theirs": [65535, 0], "the poor in spirit for they they theirs for": [65535, 0], "poor in spirit for they they theirs for theirs": [65535, 0], "in spirit for they they theirs for theirs blessed": [65535, 0], "spirit for they they theirs for theirs blessed are": [65535, 0], "for they they theirs for theirs blessed are the": [65535, 0], "they they theirs for theirs blessed are the poor": [65535, 0], "they theirs for theirs blessed are the poor in": [65535, 0], "theirs for theirs blessed are the poor in spirit": [65535, 0], "for theirs blessed are the poor in spirit for": [65535, 0], "theirs blessed are the poor in spirit for theirs": [65535, 0], "blessed are the poor in spirit for theirs is": [65535, 0], "are the poor in spirit for theirs is the": [65535, 0], "the poor in spirit for theirs is the kingdom": [65535, 0], "poor in spirit for theirs is the kingdom of": [65535, 0], "in spirit for theirs is the kingdom of heaven": [65535, 0], "spirit for theirs is the kingdom of heaven blessed": [65535, 0], "for theirs is the kingdom of heaven blessed are": [65535, 0], "theirs is the kingdom of heaven blessed are they": [65535, 0], "is the kingdom of heaven blessed are they that": [65535, 0], "the kingdom of heaven blessed are they that mourn": [65535, 0], "kingdom of heaven blessed are they that mourn for": [65535, 0], "of heaven blessed are they that mourn for they": [65535, 0], "heaven blessed are they that mourn for they they": [65535, 0], "blessed are they that mourn for they they sh": [65535, 0], "are they that mourn for they they sh for": [65535, 0], "they that mourn for they they sh for they": [65535, 0], "that mourn for they they sh for they a": [65535, 0], "mourn for they they sh for they a s": [65535, 0], "for they they sh for they a s h": [65535, 0], "they they sh for they a s h a": [65535, 0], "they sh for they a s h a for": [65535, 0], "sh for they a s h a for they": [65535, 0], "for they a s h a for they s": [65535, 0], "they a s h a for they s h": [65535, 0], "a s h a for they s h oh": [65535, 0], "s h a for they s h oh i": [65535, 0], "h a for they s h oh i don't": [65535, 0], "a for they s h oh i don't know": [65535, 0], "for they s h oh i don't know what": [65535, 0], "they s h oh i don't know what it": [65535, 0], "s h oh i don't know what it is": [65535, 0], "h oh i don't know what it is shall": [65535, 0], "oh i don't know what it is shall oh": [65535, 0], "i don't know what it is shall oh shall": [65535, 0], "don't know what it is shall oh shall for": [65535, 0], "know what it is shall oh shall for they": [65535, 0], "what it is shall oh shall for they shall": [65535, 0], "it is shall oh shall for they shall for": [65535, 0], "is shall oh shall for they shall for they": [65535, 0], "shall oh shall for they shall for they shall": [65535, 0], "oh shall for they shall for they shall a": [65535, 0], "shall for they shall for they shall a a": [65535, 0], "for they shall for they shall a a shall": [65535, 0], "they shall for they shall a a shall mourn": [65535, 0], "shall for they shall a a shall mourn a": [65535, 0], "for they shall a a shall mourn a a": [65535, 0], "they shall a a shall mourn a a blessed": [65535, 0], "shall a a shall mourn a a blessed are": [65535, 0], "a a shall mourn a a blessed are they": [65535, 0], "a shall mourn a a blessed are they that": [65535, 0], "shall mourn a a blessed are they that shall": [65535, 0], "mourn a a blessed are they that shall they": [65535, 0], "a a blessed are they that shall they that": [65535, 0], "a blessed are they that shall they that a": [65535, 0], "blessed are they that shall they that a they": [65535, 0], "are they that shall they that a they that": [65535, 0], "they that shall they that a they that shall": [65535, 0], "that shall they that a they that shall mourn": [65535, 0], "shall they that a they that shall mourn for": [65535, 0], "they that a they that shall mourn for they": [65535, 0], "that a they that shall mourn for they shall": [65535, 0], "a they that shall mourn for they shall a": [65535, 0], "they that shall mourn for they shall a shall": [65535, 0], "that shall mourn for they shall a shall what": [65535, 0], "shall mourn for they shall a shall what why": [65535, 0], "mourn for they shall a shall what why don't": [65535, 0], "for they shall a shall what why don't you": [65535, 0], "they shall a shall what why don't you tell": [65535, 0], "shall a shall what why don't you tell me": [65535, 0], "a shall what why don't you tell me mary": [65535, 0], "shall what why don't you tell me mary what": [65535, 0], "what why don't you tell me mary what do": [65535, 0], "why don't you tell me mary what do you": [65535, 0], "don't you tell me mary what do you want": [65535, 0], "you tell me mary what do you want to": [65535, 0], "tell me mary what do you want to be": [65535, 0], "me mary what do you want to be so": [65535, 0], "mary what do you want to be so mean": [65535, 0], "what do you want to be so mean for": [65535, 0], "do you want to be so mean for oh": [65535, 0], "you want to be so mean for oh tom": [65535, 0], "want to be so mean for oh tom you": [65535, 0], "to be so mean for oh tom you poor": [65535, 0], "be so mean for oh tom you poor thick": [65535, 0], "so mean for oh tom you poor thick headed": [65535, 0], "mean for oh tom you poor thick headed thing": [65535, 0], "for oh tom you poor thick headed thing i'm": [65535, 0], "oh tom you poor thick headed thing i'm not": [65535, 0], "tom you poor thick headed thing i'm not teasing": [65535, 0], "you poor thick headed thing i'm not teasing you": [65535, 0], "poor thick headed thing i'm not teasing you i": [65535, 0], "thick headed thing i'm not teasing you i wouldn't": [65535, 0], "headed thing i'm not teasing you i wouldn't do": [65535, 0], "thing i'm not teasing you i wouldn't do that": [65535, 0], "i'm not teasing you i wouldn't do that you": [65535, 0], "not teasing you i wouldn't do that you must": [65535, 0], "teasing you i wouldn't do that you must go": [65535, 0], "you i wouldn't do that you must go and": [65535, 0], "i wouldn't do that you must go and learn": [65535, 0], "wouldn't do that you must go and learn it": [65535, 0], "do that you must go and learn it again": [65535, 0], "that you must go and learn it again don't": [65535, 0], "you must go and learn it again don't you": [65535, 0], "must go and learn it again don't you be": [65535, 0], "go and learn it again don't you be discouraged": [65535, 0], "and learn it again don't you be discouraged tom": [65535, 0], "learn it again don't you be discouraged tom you'll": [65535, 0], "it again don't you be discouraged tom you'll manage": [65535, 0], "again don't you be discouraged tom you'll manage it": [65535, 0], "don't you be discouraged tom you'll manage it and": [65535, 0], "you be discouraged tom you'll manage it and if": [65535, 0], "be discouraged tom you'll manage it and if you": [65535, 0], "discouraged tom you'll manage it and if you do": [65535, 0], "tom you'll manage it and if you do i'll": [65535, 0], "you'll manage it and if you do i'll give": [65535, 0], "manage it and if you do i'll give you": [65535, 0], "it and if you do i'll give you something": [65535, 0], "and if you do i'll give you something ever": [65535, 0], "if you do i'll give you something ever so": [65535, 0], "you do i'll give you something ever so nice": [65535, 0], "do i'll give you something ever so nice there": [65535, 0], "i'll give you something ever so nice there now": [65535, 0], "give you something ever so nice there now that's": [65535, 0], "you something ever so nice there now that's a": [65535, 0], "something ever so nice there now that's a good": [65535, 0], "ever so nice there now that's a good boy": [65535, 0], "so nice there now that's a good boy all": [65535, 0], "nice there now that's a good boy all right": [65535, 0], "there now that's a good boy all right what": [65535, 0], "now that's a good boy all right what is": [65535, 0], "that's a good boy all right what is it": [65535, 0], "a good boy all right what is it mary": [65535, 0], "good boy all right what is it mary tell": [65535, 0], "boy all right what is it mary tell me": [65535, 0], "all right what is it mary tell me what": [65535, 0], "right what is it mary tell me what it": [65535, 0], "what is it mary tell me what it is": [65535, 0], "is it mary tell me what it is never": [65535, 0], "it mary tell me what it is never you": [65535, 0], "mary tell me what it is never you mind": [65535, 0], "tell me what it is never you mind tom": [65535, 0], "me what it is never you mind tom you": [65535, 0], "what it is never you mind tom you know": [65535, 0], "it is never you mind tom you know if": [65535, 0], "is never you mind tom you know if i": [65535, 0], "never you mind tom you know if i say": [65535, 0], "you mind tom you know if i say it's": [65535, 0], "mind tom you know if i say it's nice": [65535, 0], "tom you know if i say it's nice it": [65535, 0], "you know if i say it's nice it is": [65535, 0], "know if i say it's nice it is nice": [65535, 0], "if i say it's nice it is nice you": [65535, 0], "i say it's nice it is nice you bet": [65535, 0], "say it's nice it is nice you bet you": [65535, 0], "it's nice it is nice you bet you that's": [65535, 0], "nice it is nice you bet you that's so": [65535, 0], "it is nice you bet you that's so mary": [65535, 0], "is nice you bet you that's so mary all": [65535, 0], "nice you bet you that's so mary all right": [65535, 0], "you bet you that's so mary all right i'll": [65535, 0], "bet you that's so mary all right i'll tackle": [65535, 0], "you that's so mary all right i'll tackle it": [65535, 0], "that's so mary all right i'll tackle it again": [65535, 0], "so mary all right i'll tackle it again and": [65535, 0], "mary all right i'll tackle it again and he": [65535, 0], "all right i'll tackle it again and he did": [65535, 0], "right i'll tackle it again and he did tackle": [65535, 0], "i'll tackle it again and he did tackle it": [65535, 0], "tackle it again and he did tackle it again": [65535, 0], "it again and he did tackle it again and": [65535, 0], "again and he did tackle it again and under": [65535, 0], "and he did tackle it again and under the": [65535, 0], "he did tackle it again and under the double": [65535, 0], "did tackle it again and under the double pressure": [65535, 0], "tackle it again and under the double pressure of": [65535, 0], "it again and under the double pressure of curiosity": [65535, 0], "again and under the double pressure of curiosity and": [65535, 0], "and under the double pressure of curiosity and prospective": [65535, 0], "under the double pressure of curiosity and prospective gain": [65535, 0], "the double pressure of curiosity and prospective gain he": [65535, 0], "double pressure of curiosity and prospective gain he did": [65535, 0], "pressure of curiosity and prospective gain he did it": [65535, 0], "of curiosity and prospective gain he did it with": [65535, 0], "curiosity and prospective gain he did it with such": [65535, 0], "and prospective gain he did it with such spirit": [65535, 0], "prospective gain he did it with such spirit that": [65535, 0], "gain he did it with such spirit that he": [65535, 0], "he did it with such spirit that he accomplished": [65535, 0], "did it with such spirit that he accomplished a": [65535, 0], "it with such spirit that he accomplished a shining": [65535, 0], "with such spirit that he accomplished a shining success": [65535, 0], "such spirit that he accomplished a shining success mary": [65535, 0], "spirit that he accomplished a shining success mary gave": [65535, 0], "that he accomplished a shining success mary gave him": [65535, 0], "he accomplished a shining success mary gave him a": [65535, 0], "accomplished a shining success mary gave him a brand": [65535, 0], "a shining success mary gave him a brand new": [65535, 0], "shining success mary gave him a brand new barlow": [65535, 0], "success mary gave him a brand new barlow knife": [65535, 0], "mary gave him a brand new barlow knife worth": [65535, 0], "gave him a brand new barlow knife worth twelve": [65535, 0], "him a brand new barlow knife worth twelve and": [65535, 0], "a brand new barlow knife worth twelve and a": [65535, 0], "brand new barlow knife worth twelve and a half": [65535, 0], "new barlow knife worth twelve and a half cents": [65535, 0], "barlow knife worth twelve and a half cents and": [65535, 0], "knife worth twelve and a half cents and the": [65535, 0], "worth twelve and a half cents and the convulsion": [65535, 0], "twelve and a half cents and the convulsion of": [65535, 0], "and a half cents and the convulsion of delight": [65535, 0], "a half cents and the convulsion of delight that": [65535, 0], "half cents and the convulsion of delight that swept": [65535, 0], "cents and the convulsion of delight that swept his": [65535, 0], "and the convulsion of delight that swept his system": [65535, 0], "the convulsion of delight that swept his system shook": [65535, 0], "convulsion of delight that swept his system shook him": [65535, 0], "of delight that swept his system shook him to": [65535, 0], "delight that swept his system shook him to his": [65535, 0], "that swept his system shook him to his foundations": [65535, 0], "swept his system shook him to his foundations true": [65535, 0], "his system shook him to his foundations true the": [65535, 0], "system shook him to his foundations true the knife": [65535, 0], "shook him to his foundations true the knife would": [65535, 0], "him to his foundations true the knife would not": [65535, 0], "to his foundations true the knife would not cut": [65535, 0], "his foundations true the knife would not cut anything": [65535, 0], "foundations true the knife would not cut anything but": [65535, 0], "true the knife would not cut anything but it": [65535, 0], "the knife would not cut anything but it was": [65535, 0], "knife would not cut anything but it was a": [65535, 0], "would not cut anything but it was a sure": [65535, 0], "not cut anything but it was a sure enough": [65535, 0], "cut anything but it was a sure enough barlow": [65535, 0], "anything but it was a sure enough barlow and": [65535, 0], "but it was a sure enough barlow and there": [65535, 0], "it was a sure enough barlow and there was": [65535, 0], "was a sure enough barlow and there was inconceivable": [65535, 0], "a sure enough barlow and there was inconceivable grandeur": [65535, 0], "sure enough barlow and there was inconceivable grandeur in": [65535, 0], "enough barlow and there was inconceivable grandeur in that": [65535, 0], "barlow and there was inconceivable grandeur in that though": [65535, 0], "and there was inconceivable grandeur in that though where": [65535, 0], "there was inconceivable grandeur in that though where the": [65535, 0], "was inconceivable grandeur in that though where the western": [65535, 0], "inconceivable grandeur in that though where the western boys": [65535, 0], "grandeur in that though where the western boys ever": [65535, 0], "in that though where the western boys ever got": [65535, 0], "that though where the western boys ever got the": [65535, 0], "though where the western boys ever got the idea": [65535, 0], "where the western boys ever got the idea that": [65535, 0], "the western boys ever got the idea that such": [65535, 0], "western boys ever got the idea that such a": [65535, 0], "boys ever got the idea that such a weapon": [65535, 0], "ever got the idea that such a weapon could": [65535, 0], "got the idea that such a weapon could possibly": [65535, 0], "the idea that such a weapon could possibly be": [65535, 0], "idea that such a weapon could possibly be counterfeited": [65535, 0], "that such a weapon could possibly be counterfeited to": [65535, 0], "such a weapon could possibly be counterfeited to its": [65535, 0], "a weapon could possibly be counterfeited to its injury": [65535, 0], "weapon could possibly be counterfeited to its injury is": [65535, 0], "could possibly be counterfeited to its injury is an": [65535, 0], "possibly be counterfeited to its injury is an imposing": [65535, 0], "be counterfeited to its injury is an imposing mystery": [65535, 0], "counterfeited to its injury is an imposing mystery and": [65535, 0], "to its injury is an imposing mystery and will": [65535, 0], "its injury is an imposing mystery and will always": [65535, 0], "injury is an imposing mystery and will always remain": [65535, 0], "is an imposing mystery and will always remain so": [65535, 0], "an imposing mystery and will always remain so perhaps": [65535, 0], "imposing mystery and will always remain so perhaps tom": [65535, 0], "mystery and will always remain so perhaps tom contrived": [65535, 0], "and will always remain so perhaps tom contrived to": [65535, 0], "will always remain so perhaps tom contrived to scarify": [65535, 0], "always remain so perhaps tom contrived to scarify the": [65535, 0], "remain so perhaps tom contrived to scarify the cupboard": [65535, 0], "so perhaps tom contrived to scarify the cupboard with": [65535, 0], "perhaps tom contrived to scarify the cupboard with it": [65535, 0], "tom contrived to scarify the cupboard with it and": [65535, 0], "contrived to scarify the cupboard with it and was": [65535, 0], "to scarify the cupboard with it and was arranging": [65535, 0], "scarify the cupboard with it and was arranging to": [65535, 0], "the cupboard with it and was arranging to begin": [65535, 0], "cupboard with it and was arranging to begin on": [65535, 0], "with it and was arranging to begin on the": [65535, 0], "it and was arranging to begin on the bureau": [65535, 0], "and was arranging to begin on the bureau when": [65535, 0], "was arranging to begin on the bureau when he": [65535, 0], "arranging to begin on the bureau when he was": [65535, 0], "to begin on the bureau when he was called": [65535, 0], "begin on the bureau when he was called off": [65535, 0], "on the bureau when he was called off to": [65535, 0], "the bureau when he was called off to dress": [65535, 0], "bureau when he was called off to dress for": [65535, 0], "when he was called off to dress for sunday": [65535, 0], "he was called off to dress for sunday school": [65535, 0], "was called off to dress for sunday school mary": [65535, 0], "called off to dress for sunday school mary gave": [65535, 0], "off to dress for sunday school mary gave him": [65535, 0], "to dress for sunday school mary gave him a": [65535, 0], "dress for sunday school mary gave him a tin": [65535, 0], "for sunday school mary gave him a tin basin": [65535, 0], "sunday school mary gave him a tin basin of": [65535, 0], "school mary gave him a tin basin of water": [65535, 0], "mary gave him a tin basin of water and": [65535, 0], "gave him a tin basin of water and a": [65535, 0], "him a tin basin of water and a piece": [65535, 0], "a tin basin of water and a piece of": [65535, 0], "tin basin of water and a piece of soap": [65535, 0], "basin of water and a piece of soap and": [65535, 0], "of water and a piece of soap and he": [65535, 0], "water and a piece of soap and he went": [65535, 0], "and a piece of soap and he went outside": [65535, 0], "a piece of soap and he went outside the": [65535, 0], "piece of soap and he went outside the door": [65535, 0], "of soap and he went outside the door and": [65535, 0], "soap and he went outside the door and set": [65535, 0], "and he went outside the door and set the": [65535, 0], "he went outside the door and set the basin": [65535, 0], "went outside the door and set the basin on": [65535, 0], "outside the door and set the basin on a": [65535, 0], "the door and set the basin on a little": [65535, 0], "door and set the basin on a little bench": [65535, 0], "and set the basin on a little bench there": [65535, 0], "set the basin on a little bench there then": [65535, 0], "the basin on a little bench there then he": [65535, 0], "basin on a little bench there then he dipped": [65535, 0], "on a little bench there then he dipped the": [65535, 0], "a little bench there then he dipped the soap": [65535, 0], "little bench there then he dipped the soap in": [65535, 0], "bench there then he dipped the soap in the": [65535, 0], "there then he dipped the soap in the water": [65535, 0], "then he dipped the soap in the water and": [65535, 0], "he dipped the soap in the water and laid": [65535, 0], "dipped the soap in the water and laid it": [65535, 0], "the soap in the water and laid it down": [65535, 0], "soap in the water and laid it down turned": [65535, 0], "in the water and laid it down turned up": [65535, 0], "the water and laid it down turned up his": [65535, 0], "water and laid it down turned up his sleeves": [65535, 0], "and laid it down turned up his sleeves poured": [65535, 0], "laid it down turned up his sleeves poured out": [65535, 0], "it down turned up his sleeves poured out the": [65535, 0], "down turned up his sleeves poured out the water": [65535, 0], "turned up his sleeves poured out the water on": [65535, 0], "up his sleeves poured out the water on the": [65535, 0], "his sleeves poured out the water on the ground": [65535, 0], "sleeves poured out the water on the ground gently": [65535, 0], "poured out the water on the ground gently and": [65535, 0], "out the water on the ground gently and then": [65535, 0], "the water on the ground gently and then entered": [65535, 0], "water on the ground gently and then entered the": [65535, 0], "on the ground gently and then entered the kitchen": [65535, 0], "the ground gently and then entered the kitchen and": [65535, 0], "ground gently and then entered the kitchen and began": [65535, 0], "gently and then entered the kitchen and began to": [65535, 0], "and then entered the kitchen and began to wipe": [65535, 0], "then entered the kitchen and began to wipe his": [65535, 0], "entered the kitchen and began to wipe his face": [65535, 0], "the kitchen and began to wipe his face diligently": [65535, 0], "kitchen and began to wipe his face diligently on": [65535, 0], "and began to wipe his face diligently on the": [65535, 0], "began to wipe his face diligently on the towel": [65535, 0], "to wipe his face diligently on the towel behind": [65535, 0], "wipe his face diligently on the towel behind the": [65535, 0], "his face diligently on the towel behind the door": [65535, 0], "face diligently on the towel behind the door but": [65535, 0], "diligently on the towel behind the door but mary": [65535, 0], "on the towel behind the door but mary removed": [65535, 0], "the towel behind the door but mary removed the": [65535, 0], "towel behind the door but mary removed the towel": [65535, 0], "behind the door but mary removed the towel and": [65535, 0], "the door but mary removed the towel and said": [65535, 0], "door but mary removed the towel and said now": [65535, 0], "but mary removed the towel and said now ain't": [65535, 0], "mary removed the towel and said now ain't you": [65535, 0], "removed the towel and said now ain't you ashamed": [65535, 0], "the towel and said now ain't you ashamed tom": [65535, 0], "towel and said now ain't you ashamed tom you": [65535, 0], "and said now ain't you ashamed tom you mustn't": [65535, 0], "said now ain't you ashamed tom you mustn't be": [65535, 0], "now ain't you ashamed tom you mustn't be so": [65535, 0], "ain't you ashamed tom you mustn't be so bad": [65535, 0], "you ashamed tom you mustn't be so bad water": [65535, 0], "ashamed tom you mustn't be so bad water won't": [65535, 0], "tom you mustn't be so bad water won't hurt": [65535, 0], "you mustn't be so bad water won't hurt you": [65535, 0], "mustn't be so bad water won't hurt you tom": [65535, 0], "be so bad water won't hurt you tom was": [65535, 0], "so bad water won't hurt you tom was a": [65535, 0], "bad water won't hurt you tom was a trifle": [65535, 0], "water won't hurt you tom was a trifle disconcerted": [65535, 0], "won't hurt you tom was a trifle disconcerted the": [65535, 0], "hurt you tom was a trifle disconcerted the basin": [65535, 0], "you tom was a trifle disconcerted the basin was": [65535, 0], "tom was a trifle disconcerted the basin was refilled": [65535, 0], "was a trifle disconcerted the basin was refilled and": [65535, 0], "a trifle disconcerted the basin was refilled and this": [65535, 0], "trifle disconcerted the basin was refilled and this time": [65535, 0], "disconcerted the basin was refilled and this time he": [65535, 0], "the basin was refilled and this time he stood": [65535, 0], "basin was refilled and this time he stood over": [65535, 0], "was refilled and this time he stood over it": [65535, 0], "refilled and this time he stood over it a": [65535, 0], "and this time he stood over it a little": [65535, 0], "this time he stood over it a little while": [65535, 0], "time he stood over it a little while gathering": [65535, 0], "he stood over it a little while gathering resolution": [65535, 0], "stood over it a little while gathering resolution took": [65535, 0], "over it a little while gathering resolution took in": [65535, 0], "it a little while gathering resolution took in a": [65535, 0], "a little while gathering resolution took in a big": [65535, 0], "little while gathering resolution took in a big breath": [65535, 0], "while gathering resolution took in a big breath and": [65535, 0], "gathering resolution took in a big breath and began": [65535, 0], "resolution took in a big breath and began when": [65535, 0], "took in a big breath and began when he": [65535, 0], "in a big breath and began when he entered": [65535, 0], "a big breath and began when he entered the": [65535, 0], "big breath and began when he entered the kitchen": [65535, 0], "breath and began when he entered the kitchen presently": [65535, 0], "and began when he entered the kitchen presently with": [65535, 0], "began when he entered the kitchen presently with both": [65535, 0], "when he entered the kitchen presently with both eyes": [65535, 0], "he entered the kitchen presently with both eyes shut": [65535, 0], "entered the kitchen presently with both eyes shut and": [65535, 0], "the kitchen presently with both eyes shut and groping": [65535, 0], "kitchen presently with both eyes shut and groping for": [65535, 0], "presently with both eyes shut and groping for the": [65535, 0], "with both eyes shut and groping for the towel": [65535, 0], "both eyes shut and groping for the towel with": [65535, 0], "eyes shut and groping for the towel with his": [65535, 0], "shut and groping for the towel with his hands": [65535, 0], "and groping for the towel with his hands an": [65535, 0], "groping for the towel with his hands an honorable": [65535, 0], "for the towel with his hands an honorable testimony": [65535, 0], "the towel with his hands an honorable testimony of": [65535, 0], "towel with his hands an honorable testimony of suds": [65535, 0], "with his hands an honorable testimony of suds and": [65535, 0], "his hands an honorable testimony of suds and water": [65535, 0], "hands an honorable testimony of suds and water was": [65535, 0], "an honorable testimony of suds and water was dripping": [65535, 0], "honorable testimony of suds and water was dripping from": [65535, 0], "testimony of suds and water was dripping from his": [65535, 0], "of suds and water was dripping from his face": [65535, 0], "suds and water was dripping from his face but": [65535, 0], "and water was dripping from his face but when": [65535, 0], "water was dripping from his face but when he": [65535, 0], "was dripping from his face but when he emerged": [65535, 0], "dripping from his face but when he emerged from": [65535, 0], "from his face but when he emerged from the": [65535, 0], "his face but when he emerged from the towel": [65535, 0], "face but when he emerged from the towel he": [65535, 0], "but when he emerged from the towel he was": [65535, 0], "when he emerged from the towel he was not": [65535, 0], "he emerged from the towel he was not yet": [65535, 0], "emerged from the towel he was not yet satisfactory": [65535, 0], "from the towel he was not yet satisfactory for": [65535, 0], "the towel he was not yet satisfactory for the": [65535, 0], "towel he was not yet satisfactory for the clean": [65535, 0], "he was not yet satisfactory for the clean territory": [65535, 0], "was not yet satisfactory for the clean territory stopped": [65535, 0], "not yet satisfactory for the clean territory stopped short": [65535, 0], "yet satisfactory for the clean territory stopped short at": [65535, 0], "satisfactory for the clean territory stopped short at his": [65535, 0], "for the clean territory stopped short at his chin": [65535, 0], "the clean territory stopped short at his chin and": [65535, 0], "clean territory stopped short at his chin and his": [65535, 0], "territory stopped short at his chin and his jaws": [65535, 0], "stopped short at his chin and his jaws like": [65535, 0], "short at his chin and his jaws like a": [65535, 0], "at his chin and his jaws like a mask": [65535, 0], "his chin and his jaws like a mask below": [65535, 0], "chin and his jaws like a mask below and": [65535, 0], "and his jaws like a mask below and beyond": [65535, 0], "his jaws like a mask below and beyond this": [65535, 0], "jaws like a mask below and beyond this line": [65535, 0], "like a mask below and beyond this line there": [65535, 0], "a mask below and beyond this line there was": [65535, 0], "mask below and beyond this line there was a": [65535, 0], "below and beyond this line there was a dark": [65535, 0], "and beyond this line there was a dark expanse": [65535, 0], "beyond this line there was a dark expanse of": [65535, 0], "this line there was a dark expanse of unirrigated": [65535, 0], "line there was a dark expanse of unirrigated soil": [65535, 0], "there was a dark expanse of unirrigated soil that": [65535, 0], "was a dark expanse of unirrigated soil that spread": [65535, 0], "a dark expanse of unirrigated soil that spread downward": [65535, 0], "dark expanse of unirrigated soil that spread downward in": [65535, 0], "expanse of unirrigated soil that spread downward in front": [65535, 0], "of unirrigated soil that spread downward in front and": [65535, 0], "unirrigated soil that spread downward in front and backward": [65535, 0], "soil that spread downward in front and backward around": [65535, 0], "that spread downward in front and backward around his": [65535, 0], "spread downward in front and backward around his neck": [65535, 0], "downward in front and backward around his neck mary": [65535, 0], "in front and backward around his neck mary took": [65535, 0], "front and backward around his neck mary took him": [65535, 0], "and backward around his neck mary took him in": [65535, 0], "backward around his neck mary took him in hand": [65535, 0], "around his neck mary took him in hand and": [65535, 0], "his neck mary took him in hand and when": [65535, 0], "neck mary took him in hand and when she": [65535, 0], "mary took him in hand and when she was": [65535, 0], "took him in hand and when she was done": [65535, 0], "him in hand and when she was done with": [65535, 0], "in hand and when she was done with him": [65535, 0], "hand and when she was done with him he": [65535, 0], "and when she was done with him he was": [65535, 0], "when she was done with him he was a": [65535, 0], "she was done with him he was a man": [65535, 0], "was done with him he was a man and": [65535, 0], "done with him he was a man and a": [65535, 0], "with him he was a man and a brother": [65535, 0], "him he was a man and a brother without": [65535, 0], "he was a man and a brother without distinction": [65535, 0], "was a man and a brother without distinction of": [65535, 0], "a man and a brother without distinction of color": [65535, 0], "man and a brother without distinction of color and": [65535, 0], "and a brother without distinction of color and his": [65535, 0], "a brother without distinction of color and his saturated": [65535, 0], "brother without distinction of color and his saturated hair": [65535, 0], "without distinction of color and his saturated hair was": [65535, 0], "distinction of color and his saturated hair was neatly": [65535, 0], "of color and his saturated hair was neatly brushed": [65535, 0], "color and his saturated hair was neatly brushed and": [65535, 0], "and his saturated hair was neatly brushed and its": [65535, 0], "his saturated hair was neatly brushed and its short": [65535, 0], "saturated hair was neatly brushed and its short curls": [65535, 0], "hair was neatly brushed and its short curls wrought": [65535, 0], "was neatly brushed and its short curls wrought into": [65535, 0], "neatly brushed and its short curls wrought into a": [65535, 0], "brushed and its short curls wrought into a dainty": [65535, 0], "and its short curls wrought into a dainty and": [65535, 0], "its short curls wrought into a dainty and symmetrical": [65535, 0], "short curls wrought into a dainty and symmetrical general": [65535, 0], "curls wrought into a dainty and symmetrical general effect": [65535, 0], "wrought into a dainty and symmetrical general effect he": [65535, 0], "into a dainty and symmetrical general effect he privately": [65535, 0], "a dainty and symmetrical general effect he privately smoothed": [65535, 0], "dainty and symmetrical general effect he privately smoothed out": [65535, 0], "and symmetrical general effect he privately smoothed out the": [65535, 0], "symmetrical general effect he privately smoothed out the curls": [65535, 0], "general effect he privately smoothed out the curls with": [65535, 0], "effect he privately smoothed out the curls with labor": [65535, 0], "he privately smoothed out the curls with labor and": [65535, 0], "privately smoothed out the curls with labor and difficulty": [65535, 0], "smoothed out the curls with labor and difficulty and": [65535, 0], "out the curls with labor and difficulty and plastered": [65535, 0], "the curls with labor and difficulty and plastered his": [65535, 0], "curls with labor and difficulty and plastered his hair": [65535, 0], "with labor and difficulty and plastered his hair close": [65535, 0], "labor and difficulty and plastered his hair close down": [65535, 0], "and difficulty and plastered his hair close down to": [65535, 0], "difficulty and plastered his hair close down to his": [65535, 0], "and plastered his hair close down to his head": [65535, 0], "plastered his hair close down to his head for": [65535, 0], "his hair close down to his head for he": [65535, 0], "hair close down to his head for he held": [65535, 0], "close down to his head for he held curls": [65535, 0], "down to his head for he held curls to": [65535, 0], "to his head for he held curls to be": [65535, 0], "his head for he held curls to be effeminate": [65535, 0], "head for he held curls to be effeminate and": [65535, 0], "for he held curls to be effeminate and his": [65535, 0], "he held curls to be effeminate and his own": [65535, 0], "held curls to be effeminate and his own filled": [65535, 0], "curls to be effeminate and his own filled his": [65535, 0], "to be effeminate and his own filled his life": [65535, 0], "be effeminate and his own filled his life with": [65535, 0], "effeminate and his own filled his life with bitterness": [65535, 0], "and his own filled his life with bitterness then": [65535, 0], "his own filled his life with bitterness then mary": [65535, 0], "own filled his life with bitterness then mary got": [65535, 0], "filled his life with bitterness then mary got out": [65535, 0], "his life with bitterness then mary got out a": [65535, 0], "life with bitterness then mary got out a suit": [65535, 0], "with bitterness then mary got out a suit of": [65535, 0], "bitterness then mary got out a suit of his": [65535, 0], "then mary got out a suit of his clothing": [65535, 0], "mary got out a suit of his clothing that": [65535, 0], "got out a suit of his clothing that had": [65535, 0], "out a suit of his clothing that had been": [65535, 0], "a suit of his clothing that had been used": [65535, 0], "suit of his clothing that had been used only": [65535, 0], "of his clothing that had been used only on": [65535, 0], "his clothing that had been used only on sundays": [65535, 0], "clothing that had been used only on sundays during": [65535, 0], "that had been used only on sundays during two": [65535, 0], "had been used only on sundays during two years": [65535, 0], "been used only on sundays during two years they": [65535, 0], "used only on sundays during two years they were": [65535, 0], "only on sundays during two years they were simply": [65535, 0], "on sundays during two years they were simply called": [65535, 0], "sundays during two years they were simply called his": [65535, 0], "during two years they were simply called his other": [65535, 0], "two years they were simply called his other clothes": [65535, 0], "years they were simply called his other clothes and": [65535, 0], "they were simply called his other clothes and so": [65535, 0], "were simply called his other clothes and so by": [65535, 0], "simply called his other clothes and so by that": [65535, 0], "called his other clothes and so by that we": [65535, 0], "his other clothes and so by that we know": [65535, 0], "other clothes and so by that we know the": [65535, 0], "clothes and so by that we know the size": [65535, 0], "and so by that we know the size of": [65535, 0], "so by that we know the size of his": [65535, 0], "by that we know the size of his wardrobe": [65535, 0], "that we know the size of his wardrobe the": [65535, 0], "we know the size of his wardrobe the girl": [65535, 0], "know the size of his wardrobe the girl put": [65535, 0], "the size of his wardrobe the girl put him": [65535, 0], "size of his wardrobe the girl put him to": [65535, 0], "of his wardrobe the girl put him to rights": [65535, 0], "his wardrobe the girl put him to rights after": [65535, 0], "wardrobe the girl put him to rights after he": [65535, 0], "the girl put him to rights after he had": [65535, 0], "girl put him to rights after he had dressed": [65535, 0], "put him to rights after he had dressed himself": [65535, 0], "him to rights after he had dressed himself she": [65535, 0], "to rights after he had dressed himself she buttoned": [65535, 0], "rights after he had dressed himself she buttoned his": [65535, 0], "after he had dressed himself she buttoned his neat": [65535, 0], "he had dressed himself she buttoned his neat roundabout": [65535, 0], "had dressed himself she buttoned his neat roundabout up": [65535, 0], "dressed himself she buttoned his neat roundabout up to": [65535, 0], "himself she buttoned his neat roundabout up to his": [65535, 0], "she buttoned his neat roundabout up to his chin": [65535, 0], "buttoned his neat roundabout up to his chin turned": [65535, 0], "his neat roundabout up to his chin turned his": [65535, 0], "neat roundabout up to his chin turned his vast": [65535, 0], "roundabout up to his chin turned his vast shirt": [65535, 0], "up to his chin turned his vast shirt collar": [65535, 0], "to his chin turned his vast shirt collar down": [65535, 0], "his chin turned his vast shirt collar down over": [65535, 0], "chin turned his vast shirt collar down over his": [65535, 0], "turned his vast shirt collar down over his shoulders": [65535, 0], "his vast shirt collar down over his shoulders brushed": [65535, 0], "vast shirt collar down over his shoulders brushed him": [65535, 0], "shirt collar down over his shoulders brushed him off": [65535, 0], "collar down over his shoulders brushed him off and": [65535, 0], "down over his shoulders brushed him off and crowned": [65535, 0], "over his shoulders brushed him off and crowned him": [65535, 0], "his shoulders brushed him off and crowned him with": [65535, 0], "shoulders brushed him off and crowned him with his": [65535, 0], "brushed him off and crowned him with his speckled": [65535, 0], "him off and crowned him with his speckled straw": [65535, 0], "off and crowned him with his speckled straw hat": [65535, 0], "and crowned him with his speckled straw hat he": [65535, 0], "crowned him with his speckled straw hat he now": [65535, 0], "him with his speckled straw hat he now looked": [65535, 0], "with his speckled straw hat he now looked exceedingly": [65535, 0], "his speckled straw hat he now looked exceedingly improved": [65535, 0], "speckled straw hat he now looked exceedingly improved and": [65535, 0], "straw hat he now looked exceedingly improved and uncomfortable": [65535, 0], "hat he now looked exceedingly improved and uncomfortable he": [65535, 0], "he now looked exceedingly improved and uncomfortable he was": [65535, 0], "now looked exceedingly improved and uncomfortable he was fully": [65535, 0], "looked exceedingly improved and uncomfortable he was fully as": [65535, 0], "exceedingly improved and uncomfortable he was fully as uncomfortable": [65535, 0], "improved and uncomfortable he was fully as uncomfortable as": [65535, 0], "and uncomfortable he was fully as uncomfortable as he": [65535, 0], "uncomfortable he was fully as uncomfortable as he looked": [65535, 0], "he was fully as uncomfortable as he looked for": [65535, 0], "was fully as uncomfortable as he looked for there": [65535, 0], "fully as uncomfortable as he looked for there was": [65535, 0], "as uncomfortable as he looked for there was a": [65535, 0], "uncomfortable as he looked for there was a restraint": [65535, 0], "as he looked for there was a restraint about": [65535, 0], "he looked for there was a restraint about whole": [65535, 0], "looked for there was a restraint about whole clothes": [65535, 0], "for there was a restraint about whole clothes and": [65535, 0], "there was a restraint about whole clothes and cleanliness": [65535, 0], "was a restraint about whole clothes and cleanliness that": [65535, 0], "a restraint about whole clothes and cleanliness that galled": [65535, 0], "restraint about whole clothes and cleanliness that galled him": [65535, 0], "about whole clothes and cleanliness that galled him he": [65535, 0], "whole clothes and cleanliness that galled him he hoped": [65535, 0], "clothes and cleanliness that galled him he hoped that": [65535, 0], "and cleanliness that galled him he hoped that mary": [65535, 0], "cleanliness that galled him he hoped that mary would": [65535, 0], "that galled him he hoped that mary would forget": [65535, 0], "galled him he hoped that mary would forget his": [65535, 0], "him he hoped that mary would forget his shoes": [65535, 0], "he hoped that mary would forget his shoes but": [65535, 0], "hoped that mary would forget his shoes but the": [65535, 0], "that mary would forget his shoes but the hope": [65535, 0], "mary would forget his shoes but the hope was": [65535, 0], "would forget his shoes but the hope was blighted": [65535, 0], "forget his shoes but the hope was blighted she": [65535, 0], "his shoes but the hope was blighted she coated": [65535, 0], "shoes but the hope was blighted she coated them": [65535, 0], "but the hope was blighted she coated them thoroughly": [65535, 0], "the hope was blighted she coated them thoroughly with": [65535, 0], "hope was blighted she coated them thoroughly with tallow": [65535, 0], "was blighted she coated them thoroughly with tallow as": [65535, 0], "blighted she coated them thoroughly with tallow as was": [65535, 0], "she coated them thoroughly with tallow as was the": [65535, 0], "coated them thoroughly with tallow as was the custom": [65535, 0], "them thoroughly with tallow as was the custom and": [65535, 0], "thoroughly with tallow as was the custom and brought": [65535, 0], "with tallow as was the custom and brought them": [65535, 0], "tallow as was the custom and brought them out": [65535, 0], "as was the custom and brought them out he": [65535, 0], "was the custom and brought them out he lost": [65535, 0], "the custom and brought them out he lost his": [65535, 0], "custom and brought them out he lost his temper": [65535, 0], "and brought them out he lost his temper and": [65535, 0], "brought them out he lost his temper and said": [65535, 0], "them out he lost his temper and said he": [65535, 0], "out he lost his temper and said he was": [65535, 0], "he lost his temper and said he was always": [65535, 0], "lost his temper and said he was always being": [65535, 0], "his temper and said he was always being made": [65535, 0], "temper and said he was always being made to": [65535, 0], "and said he was always being made to do": [65535, 0], "said he was always being made to do everything": [65535, 0], "he was always being made to do everything he": [65535, 0], "was always being made to do everything he didn't": [65535, 0], "always being made to do everything he didn't want": [65535, 0], "being made to do everything he didn't want to": [65535, 0], "made to do everything he didn't want to do": [65535, 0], "to do everything he didn't want to do but": [65535, 0], "do everything he didn't want to do but mary": [65535, 0], "everything he didn't want to do but mary said": [65535, 0], "he didn't want to do but mary said persuasively": [65535, 0], "didn't want to do but mary said persuasively please": [65535, 0], "want to do but mary said persuasively please tom": [65535, 0], "to do but mary said persuasively please tom that's": [65535, 0], "do but mary said persuasively please tom that's a": [65535, 0], "but mary said persuasively please tom that's a good": [65535, 0], "mary said persuasively please tom that's a good boy": [65535, 0], "said persuasively please tom that's a good boy so": [65535, 0], "persuasively please tom that's a good boy so he": [65535, 0], "please tom that's a good boy so he got": [65535, 0], "tom that's a good boy so he got into": [65535, 0], "that's a good boy so he got into the": [65535, 0], "a good boy so he got into the shoes": [65535, 0], "good boy so he got into the shoes snarling": [65535, 0], "boy so he got into the shoes snarling mary": [65535, 0], "so he got into the shoes snarling mary was": [65535, 0], "he got into the shoes snarling mary was soon": [65535, 0], "got into the shoes snarling mary was soon ready": [65535, 0], "into the shoes snarling mary was soon ready and": [65535, 0], "the shoes snarling mary was soon ready and the": [65535, 0], "shoes snarling mary was soon ready and the three": [65535, 0], "snarling mary was soon ready and the three children": [65535, 0], "mary was soon ready and the three children set": [65535, 0], "was soon ready and the three children set out": [65535, 0], "soon ready and the three children set out for": [65535, 0], "ready and the three children set out for sunday": [65535, 0], "and the three children set out for sunday school": [65535, 0], "the three children set out for sunday school a": [65535, 0], "three children set out for sunday school a place": [65535, 0], "children set out for sunday school a place that": [65535, 0], "set out for sunday school a place that tom": [65535, 0], "out for sunday school a place that tom hated": [65535, 0], "for sunday school a place that tom hated with": [65535, 0], "sunday school a place that tom hated with his": [65535, 0], "school a place that tom hated with his whole": [65535, 0], "a place that tom hated with his whole heart": [65535, 0], "place that tom hated with his whole heart but": [65535, 0], "that tom hated with his whole heart but sid": [65535, 0], "tom hated with his whole heart but sid and": [65535, 0], "hated with his whole heart but sid and mary": [65535, 0], "with his whole heart but sid and mary were": [65535, 0], "his whole heart but sid and mary were fond": [65535, 0], "whole heart but sid and mary were fond of": [65535, 0], "heart but sid and mary were fond of it": [65535, 0], "but sid and mary were fond of it sabbath": [65535, 0], "sid and mary were fond of it sabbath school": [65535, 0], "and mary were fond of it sabbath school hours": [65535, 0], "mary were fond of it sabbath school hours were": [65535, 0], "were fond of it sabbath school hours were from": [65535, 0], "fond of it sabbath school hours were from nine": [65535, 0], "of it sabbath school hours were from nine to": [65535, 0], "it sabbath school hours were from nine to half": [65535, 0], "sabbath school hours were from nine to half past": [65535, 0], "school hours were from nine to half past ten": [65535, 0], "hours were from nine to half past ten and": [65535, 0], "were from nine to half past ten and then": [65535, 0], "from nine to half past ten and then church": [65535, 0], "nine to half past ten and then church service": [65535, 0], "to half past ten and then church service two": [65535, 0], "half past ten and then church service two of": [65535, 0], "past ten and then church service two of the": [65535, 0], "ten and then church service two of the children": [65535, 0], "and then church service two of the children always": [65535, 0], "then church service two of the children always remained": [65535, 0], "church service two of the children always remained for": [65535, 0], "service two of the children always remained for the": [65535, 0], "two of the children always remained for the sermon": [65535, 0], "of the children always remained for the sermon voluntarily": [65535, 0], "the children always remained for the sermon voluntarily and": [65535, 0], "children always remained for the sermon voluntarily and the": [65535, 0], "always remained for the sermon voluntarily and the other": [65535, 0], "remained for the sermon voluntarily and the other always": [65535, 0], "for the sermon voluntarily and the other always remained": [65535, 0], "the sermon voluntarily and the other always remained too": [65535, 0], "sermon voluntarily and the other always remained too for": [65535, 0], "voluntarily and the other always remained too for stronger": [65535, 0], "and the other always remained too for stronger reasons": [65535, 0], "the other always remained too for stronger reasons the": [65535, 0], "other always remained too for stronger reasons the church's": [65535, 0], "always remained too for stronger reasons the church's high": [65535, 0], "remained too for stronger reasons the church's high backed": [65535, 0], "too for stronger reasons the church's high backed uncushioned": [65535, 0], "for stronger reasons the church's high backed uncushioned pews": [65535, 0], "stronger reasons the church's high backed uncushioned pews would": [65535, 0], "reasons the church's high backed uncushioned pews would seat": [65535, 0], "the church's high backed uncushioned pews would seat about": [65535, 0], "church's high backed uncushioned pews would seat about three": [65535, 0], "high backed uncushioned pews would seat about three hundred": [65535, 0], "backed uncushioned pews would seat about three hundred persons": [65535, 0], "uncushioned pews would seat about three hundred persons the": [65535, 0], "pews would seat about three hundred persons the edifice": [65535, 0], "would seat about three hundred persons the edifice was": [65535, 0], "seat about three hundred persons the edifice was but": [65535, 0], "about three hundred persons the edifice was but a": [65535, 0], "three hundred persons the edifice was but a small": [65535, 0], "hundred persons the edifice was but a small plain": [65535, 0], "persons the edifice was but a small plain affair": [65535, 0], "the edifice was but a small plain affair with": [65535, 0], "edifice was but a small plain affair with a": [65535, 0], "was but a small plain affair with a sort": [65535, 0], "but a small plain affair with a sort of": [65535, 0], "a small plain affair with a sort of pine": [65535, 0], "small plain affair with a sort of pine board": [65535, 0], "plain affair with a sort of pine board tree": [65535, 0], "affair with a sort of pine board tree box": [65535, 0], "with a sort of pine board tree box on": [65535, 0], "a sort of pine board tree box on top": [65535, 0], "sort of pine board tree box on top of": [65535, 0], "of pine board tree box on top of it": [65535, 0], "pine board tree box on top of it for": [65535, 0], "board tree box on top of it for a": [65535, 0], "tree box on top of it for a steeple": [65535, 0], "box on top of it for a steeple at": [65535, 0], "on top of it for a steeple at the": [65535, 0], "top of it for a steeple at the door": [65535, 0], "of it for a steeple at the door tom": [65535, 0], "it for a steeple at the door tom dropped": [65535, 0], "for a steeple at the door tom dropped back": [65535, 0], "a steeple at the door tom dropped back a": [65535, 0], "steeple at the door tom dropped back a step": [65535, 0], "at the door tom dropped back a step and": [65535, 0], "the door tom dropped back a step and accosted": [65535, 0], "door tom dropped back a step and accosted a": [65535, 0], "tom dropped back a step and accosted a sunday": [65535, 0], "dropped back a step and accosted a sunday dressed": [65535, 0], "back a step and accosted a sunday dressed comrade": [65535, 0], "a step and accosted a sunday dressed comrade say": [65535, 0], "step and accosted a sunday dressed comrade say billy": [65535, 0], "and accosted a sunday dressed comrade say billy got": [65535, 0], "accosted a sunday dressed comrade say billy got a": [65535, 0], "a sunday dressed comrade say billy got a yaller": [65535, 0], "sunday dressed comrade say billy got a yaller ticket": [65535, 0], "dressed comrade say billy got a yaller ticket yes": [65535, 0], "comrade say billy got a yaller ticket yes what'll": [65535, 0], "say billy got a yaller ticket yes what'll you": [65535, 0], "billy got a yaller ticket yes what'll you take": [65535, 0], "got a yaller ticket yes what'll you take for": [65535, 0], "a yaller ticket yes what'll you take for her": [65535, 0], "yaller ticket yes what'll you take for her what'll": [65535, 0], "ticket yes what'll you take for her what'll you": [65535, 0], "yes what'll you take for her what'll you give": [65535, 0], "what'll you take for her what'll you give piece": [65535, 0], "you take for her what'll you give piece of": [65535, 0], "take for her what'll you give piece of lickrish": [65535, 0], "for her what'll you give piece of lickrish and": [65535, 0], "her what'll you give piece of lickrish and a": [65535, 0], "what'll you give piece of lickrish and a fish": [65535, 0], "you give piece of lickrish and a fish hook": [65535, 0], "give piece of lickrish and a fish hook less": [65535, 0], "piece of lickrish and a fish hook less see": [65535, 0], "of lickrish and a fish hook less see 'em": [65535, 0], "lickrish and a fish hook less see 'em tom": [65535, 0], "and a fish hook less see 'em tom exhibited": [65535, 0], "a fish hook less see 'em tom exhibited they": [65535, 0], "fish hook less see 'em tom exhibited they were": [65535, 0], "hook less see 'em tom exhibited they were satisfactory": [65535, 0], "less see 'em tom exhibited they were satisfactory and": [65535, 0], "see 'em tom exhibited they were satisfactory and the": [65535, 0], "'em tom exhibited they were satisfactory and the property": [65535, 0], "tom exhibited they were satisfactory and the property changed": [65535, 0], "exhibited they were satisfactory and the property changed hands": [65535, 0], "they were satisfactory and the property changed hands then": [65535, 0], "were satisfactory and the property changed hands then tom": [65535, 0], "satisfactory and the property changed hands then tom traded": [65535, 0], "and the property changed hands then tom traded a": [65535, 0], "the property changed hands then tom traded a couple": [65535, 0], "property changed hands then tom traded a couple of": [65535, 0], "changed hands then tom traded a couple of white": [65535, 0], "hands then tom traded a couple of white alleys": [65535, 0], "then tom traded a couple of white alleys for": [65535, 0], "tom traded a couple of white alleys for three": [65535, 0], "traded a couple of white alleys for three red": [65535, 0], "a couple of white alleys for three red tickets": [65535, 0], "couple of white alleys for three red tickets and": [65535, 0], "of white alleys for three red tickets and some": [65535, 0], "white alleys for three red tickets and some small": [65535, 0], "alleys for three red tickets and some small trifle": [65535, 0], "for three red tickets and some small trifle or": [65535, 0], "three red tickets and some small trifle or other": [65535, 0], "red tickets and some small trifle or other for": [65535, 0], "tickets and some small trifle or other for a": [65535, 0], "and some small trifle or other for a couple": [65535, 0], "some small trifle or other for a couple of": [65535, 0], "small trifle or other for a couple of blue": [65535, 0], "trifle or other for a couple of blue ones": [65535, 0], "or other for a couple of blue ones he": [65535, 0], "other for a couple of blue ones he waylaid": [65535, 0], "for a couple of blue ones he waylaid other": [65535, 0], "a couple of blue ones he waylaid other boys": [65535, 0], "couple of blue ones he waylaid other boys as": [65535, 0], "of blue ones he waylaid other boys as they": [65535, 0], "blue ones he waylaid other boys as they came": [65535, 0], "ones he waylaid other boys as they came and": [65535, 0], "he waylaid other boys as they came and went": [65535, 0], "waylaid other boys as they came and went on": [65535, 0], "other boys as they came and went on buying": [65535, 0], "boys as they came and went on buying tickets": [65535, 0], "as they came and went on buying tickets of": [65535, 0], "they came and went on buying tickets of various": [65535, 0], "came and went on buying tickets of various colors": [65535, 0], "and went on buying tickets of various colors ten": [65535, 0], "went on buying tickets of various colors ten or": [65535, 0], "on buying tickets of various colors ten or fifteen": [65535, 0], "buying tickets of various colors ten or fifteen minutes": [65535, 0], "tickets of various colors ten or fifteen minutes longer": [65535, 0], "of various colors ten or fifteen minutes longer he": [65535, 0], "various colors ten or fifteen minutes longer he entered": [65535, 0], "colors ten or fifteen minutes longer he entered the": [65535, 0], "ten or fifteen minutes longer he entered the church": [65535, 0], "or fifteen minutes longer he entered the church now": [65535, 0], "fifteen minutes longer he entered the church now with": [65535, 0], "minutes longer he entered the church now with a": [65535, 0], "longer he entered the church now with a swarm": [65535, 0], "he entered the church now with a swarm of": [65535, 0], "entered the church now with a swarm of clean": [65535, 0], "the church now with a swarm of clean and": [65535, 0], "church now with a swarm of clean and noisy": [65535, 0], "now with a swarm of clean and noisy boys": [65535, 0], "with a swarm of clean and noisy boys and": [65535, 0], "a swarm of clean and noisy boys and girls": [65535, 0], "swarm of clean and noisy boys and girls proceeded": [65535, 0], "of clean and noisy boys and girls proceeded to": [65535, 0], "clean and noisy boys and girls proceeded to his": [65535, 0], "and noisy boys and girls proceeded to his seat": [65535, 0], "noisy boys and girls proceeded to his seat and": [65535, 0], "boys and girls proceeded to his seat and started": [65535, 0], "and girls proceeded to his seat and started a": [65535, 0], "girls proceeded to his seat and started a quarrel": [65535, 0], "proceeded to his seat and started a quarrel with": [65535, 0], "to his seat and started a quarrel with the": [65535, 0], "his seat and started a quarrel with the first": [65535, 0], "seat and started a quarrel with the first boy": [65535, 0], "and started a quarrel with the first boy that": [65535, 0], "started a quarrel with the first boy that came": [65535, 0], "a quarrel with the first boy that came handy": [65535, 0], "quarrel with the first boy that came handy the": [65535, 0], "with the first boy that came handy the teacher": [65535, 0], "the first boy that came handy the teacher a": [65535, 0], "first boy that came handy the teacher a grave": [65535, 0], "boy that came handy the teacher a grave elderly": [65535, 0], "that came handy the teacher a grave elderly man": [65535, 0], "came handy the teacher a grave elderly man interfered": [65535, 0], "handy the teacher a grave elderly man interfered then": [65535, 0], "the teacher a grave elderly man interfered then turned": [65535, 0], "teacher a grave elderly man interfered then turned his": [65535, 0], "a grave elderly man interfered then turned his back": [65535, 0], "grave elderly man interfered then turned his back a": [65535, 0], "elderly man interfered then turned his back a moment": [65535, 0], "man interfered then turned his back a moment and": [65535, 0], "interfered then turned his back a moment and tom": [65535, 0], "then turned his back a moment and tom pulled": [65535, 0], "turned his back a moment and tom pulled a": [65535, 0], "his back a moment and tom pulled a boy's": [65535, 0], "back a moment and tom pulled a boy's hair": [65535, 0], "a moment and tom pulled a boy's hair in": [65535, 0], "moment and tom pulled a boy's hair in the": [65535, 0], "and tom pulled a boy's hair in the next": [65535, 0], "tom pulled a boy's hair in the next bench": [65535, 0], "pulled a boy's hair in the next bench and": [65535, 0], "a boy's hair in the next bench and was": [65535, 0], "boy's hair in the next bench and was absorbed": [65535, 0], "hair in the next bench and was absorbed in": [65535, 0], "in the next bench and was absorbed in his": [65535, 0], "the next bench and was absorbed in his book": [65535, 0], "next bench and was absorbed in his book when": [65535, 0], "bench and was absorbed in his book when the": [65535, 0], "and was absorbed in his book when the boy": [65535, 0], "was absorbed in his book when the boy turned": [65535, 0], "absorbed in his book when the boy turned around": [65535, 0], "in his book when the boy turned around stuck": [65535, 0], "his book when the boy turned around stuck a": [65535, 0], "book when the boy turned around stuck a pin": [65535, 0], "when the boy turned around stuck a pin in": [65535, 0], "the boy turned around stuck a pin in another": [65535, 0], "boy turned around stuck a pin in another boy": [65535, 0], "turned around stuck a pin in another boy presently": [65535, 0], "around stuck a pin in another boy presently in": [65535, 0], "stuck a pin in another boy presently in order": [65535, 0], "a pin in another boy presently in order to": [65535, 0], "pin in another boy presently in order to hear": [65535, 0], "in another boy presently in order to hear him": [65535, 0], "another boy presently in order to hear him say": [65535, 0], "boy presently in order to hear him say ouch": [65535, 0], "presently in order to hear him say ouch and": [65535, 0], "in order to hear him say ouch and got": [65535, 0], "order to hear him say ouch and got a": [65535, 0], "to hear him say ouch and got a new": [65535, 0], "hear him say ouch and got a new reprimand": [65535, 0], "him say ouch and got a new reprimand from": [65535, 0], "say ouch and got a new reprimand from his": [65535, 0], "ouch and got a new reprimand from his teacher": [65535, 0], "and got a new reprimand from his teacher tom's": [65535, 0], "got a new reprimand from his teacher tom's whole": [65535, 0], "a new reprimand from his teacher tom's whole class": [65535, 0], "new reprimand from his teacher tom's whole class were": [65535, 0], "reprimand from his teacher tom's whole class were of": [65535, 0], "from his teacher tom's whole class were of a": [65535, 0], "his teacher tom's whole class were of a pattern": [65535, 0], "teacher tom's whole class were of a pattern restless": [65535, 0], "tom's whole class were of a pattern restless noisy": [65535, 0], "whole class were of a pattern restless noisy and": [65535, 0], "class were of a pattern restless noisy and troublesome": [65535, 0], "were of a pattern restless noisy and troublesome when": [65535, 0], "of a pattern restless noisy and troublesome when they": [65535, 0], "a pattern restless noisy and troublesome when they came": [65535, 0], "pattern restless noisy and troublesome when they came to": [65535, 0], "restless noisy and troublesome when they came to recite": [65535, 0], "noisy and troublesome when they came to recite their": [65535, 0], "and troublesome when they came to recite their lessons": [65535, 0], "troublesome when they came to recite their lessons not": [65535, 0], "when they came to recite their lessons not one": [65535, 0], "they came to recite their lessons not one of": [65535, 0], "came to recite their lessons not one of them": [65535, 0], "to recite their lessons not one of them knew": [65535, 0], "recite their lessons not one of them knew his": [65535, 0], "their lessons not one of them knew his verses": [65535, 0], "lessons not one of them knew his verses perfectly": [65535, 0], "not one of them knew his verses perfectly but": [65535, 0], "one of them knew his verses perfectly but had": [65535, 0], "of them knew his verses perfectly but had to": [65535, 0], "them knew his verses perfectly but had to be": [65535, 0], "knew his verses perfectly but had to be prompted": [65535, 0], "his verses perfectly but had to be prompted all": [65535, 0], "verses perfectly but had to be prompted all along": [65535, 0], "perfectly but had to be prompted all along however": [65535, 0], "but had to be prompted all along however they": [65535, 0], "had to be prompted all along however they worried": [65535, 0], "to be prompted all along however they worried through": [65535, 0], "be prompted all along however they worried through and": [65535, 0], "prompted all along however they worried through and each": [65535, 0], "all along however they worried through and each got": [65535, 0], "along however they worried through and each got his": [65535, 0], "however they worried through and each got his reward": [65535, 0], "they worried through and each got his reward in": [65535, 0], "worried through and each got his reward in small": [65535, 0], "through and each got his reward in small blue": [65535, 0], "and each got his reward in small blue tickets": [65535, 0], "each got his reward in small blue tickets each": [65535, 0], "got his reward in small blue tickets each with": [65535, 0], "his reward in small blue tickets each with a": [65535, 0], "reward in small blue tickets each with a passage": [65535, 0], "in small blue tickets each with a passage of": [65535, 0], "small blue tickets each with a passage of scripture": [65535, 0], "blue tickets each with a passage of scripture on": [65535, 0], "tickets each with a passage of scripture on it": [65535, 0], "each with a passage of scripture on it each": [65535, 0], "with a passage of scripture on it each blue": [65535, 0], "a passage of scripture on it each blue ticket": [65535, 0], "passage of scripture on it each blue ticket was": [65535, 0], "of scripture on it each blue ticket was pay": [65535, 0], "scripture on it each blue ticket was pay for": [65535, 0], "on it each blue ticket was pay for two": [65535, 0], "it each blue ticket was pay for two verses": [65535, 0], "each blue ticket was pay for two verses of": [65535, 0], "blue ticket was pay for two verses of the": [65535, 0], "ticket was pay for two verses of the recitation": [65535, 0], "was pay for two verses of the recitation ten": [65535, 0], "pay for two verses of the recitation ten blue": [65535, 0], "for two verses of the recitation ten blue tickets": [65535, 0], "two verses of the recitation ten blue tickets equalled": [65535, 0], "verses of the recitation ten blue tickets equalled a": [65535, 0], "of the recitation ten blue tickets equalled a red": [65535, 0], "the recitation ten blue tickets equalled a red one": [65535, 0], "recitation ten blue tickets equalled a red one and": [65535, 0], "ten blue tickets equalled a red one and could": [65535, 0], "blue tickets equalled a red one and could be": [65535, 0], "tickets equalled a red one and could be exchanged": [65535, 0], "equalled a red one and could be exchanged for": [65535, 0], "a red one and could be exchanged for it": [65535, 0], "red one and could be exchanged for it ten": [65535, 0], "one and could be exchanged for it ten red": [65535, 0], "and could be exchanged for it ten red tickets": [65535, 0], "could be exchanged for it ten red tickets equalled": [65535, 0], "be exchanged for it ten red tickets equalled a": [65535, 0], "exchanged for it ten red tickets equalled a yellow": [65535, 0], "for it ten red tickets equalled a yellow one": [65535, 0], "it ten red tickets equalled a yellow one for": [65535, 0], "ten red tickets equalled a yellow one for ten": [65535, 0], "red tickets equalled a yellow one for ten yellow": [65535, 0], "tickets equalled a yellow one for ten yellow tickets": [65535, 0], "equalled a yellow one for ten yellow tickets the": [65535, 0], "a yellow one for ten yellow tickets the superintendent": [65535, 0], "yellow one for ten yellow tickets the superintendent gave": [65535, 0], "one for ten yellow tickets the superintendent gave a": [65535, 0], "for ten yellow tickets the superintendent gave a very": [65535, 0], "ten yellow tickets the superintendent gave a very plainly": [65535, 0], "yellow tickets the superintendent gave a very plainly bound": [65535, 0], "tickets the superintendent gave a very plainly bound bible": [65535, 0], "the superintendent gave a very plainly bound bible worth": [65535, 0], "superintendent gave a very plainly bound bible worth forty": [65535, 0], "gave a very plainly bound bible worth forty cents": [65535, 0], "a very plainly bound bible worth forty cents in": [65535, 0], "very plainly bound bible worth forty cents in those": [65535, 0], "plainly bound bible worth forty cents in those easy": [65535, 0], "bound bible worth forty cents in those easy times": [65535, 0], "bible worth forty cents in those easy times to": [65535, 0], "worth forty cents in those easy times to the": [65535, 0], "forty cents in those easy times to the pupil": [65535, 0], "cents in those easy times to the pupil how": [65535, 0], "in those easy times to the pupil how many": [65535, 0], "those easy times to the pupil how many of": [65535, 0], "easy times to the pupil how many of my": [65535, 0], "times to the pupil how many of my readers": [65535, 0], "to the pupil how many of my readers would": [65535, 0], "the pupil how many of my readers would have": [65535, 0], "pupil how many of my readers would have the": [65535, 0], "how many of my readers would have the industry": [65535, 0], "many of my readers would have the industry and": [65535, 0], "of my readers would have the industry and application": [65535, 0], "my readers would have the industry and application to": [65535, 0], "readers would have the industry and application to memorize": [65535, 0], "would have the industry and application to memorize two": [65535, 0], "have the industry and application to memorize two thousand": [65535, 0], "the industry and application to memorize two thousand verses": [65535, 0], "industry and application to memorize two thousand verses even": [65535, 0], "and application to memorize two thousand verses even for": [65535, 0], "application to memorize two thousand verses even for a": [65535, 0], "to memorize two thousand verses even for a dore": [65535, 0], "memorize two thousand verses even for a dore bible": [65535, 0], "two thousand verses even for a dore bible and": [65535, 0], "thousand verses even for a dore bible and yet": [65535, 0], "verses even for a dore bible and yet mary": [65535, 0], "even for a dore bible and yet mary had": [65535, 0], "for a dore bible and yet mary had acquired": [65535, 0], "a dore bible and yet mary had acquired two": [65535, 0], "dore bible and yet mary had acquired two bibles": [65535, 0], "bible and yet mary had acquired two bibles in": [65535, 0], "and yet mary had acquired two bibles in this": [65535, 0], "yet mary had acquired two bibles in this way": [65535, 0], "mary had acquired two bibles in this way it": [65535, 0], "had acquired two bibles in this way it was": [65535, 0], "acquired two bibles in this way it was the": [65535, 0], "two bibles in this way it was the patient": [65535, 0], "bibles in this way it was the patient work": [65535, 0], "in this way it was the patient work of": [65535, 0], "this way it was the patient work of two": [65535, 0], "way it was the patient work of two years": [65535, 0], "it was the patient work of two years and": [65535, 0], "was the patient work of two years and a": [65535, 0], "the patient work of two years and a boy": [65535, 0], "patient work of two years and a boy of": [65535, 0], "work of two years and a boy of german": [65535, 0], "of two years and a boy of german parentage": [65535, 0], "two years and a boy of german parentage had": [65535, 0], "years and a boy of german parentage had won": [65535, 0], "and a boy of german parentage had won four": [65535, 0], "a boy of german parentage had won four or": [65535, 0], "boy of german parentage had won four or five": [65535, 0], "of german parentage had won four or five he": [65535, 0], "german parentage had won four or five he once": [65535, 0], "parentage had won four or five he once recited": [65535, 0], "had won four or five he once recited three": [65535, 0], "won four or five he once recited three thousand": [65535, 0], "four or five he once recited three thousand verses": [65535, 0], "or five he once recited three thousand verses without": [65535, 0], "five he once recited three thousand verses without stopping": [65535, 0], "he once recited three thousand verses without stopping but": [65535, 0], "once recited three thousand verses without stopping but the": [65535, 0], "recited three thousand verses without stopping but the strain": [65535, 0], "three thousand verses without stopping but the strain upon": [65535, 0], "thousand verses without stopping but the strain upon his": [65535, 0], "verses without stopping but the strain upon his mental": [65535, 0], "without stopping but the strain upon his mental faculties": [65535, 0], "stopping but the strain upon his mental faculties was": [65535, 0], "but the strain upon his mental faculties was too": [65535, 0], "the strain upon his mental faculties was too great": [65535, 0], "strain upon his mental faculties was too great and": [65535, 0], "upon his mental faculties was too great and he": [65535, 0], "his mental faculties was too great and he was": [65535, 0], "mental faculties was too great and he was little": [65535, 0], "faculties was too great and he was little better": [65535, 0], "was too great and he was little better than": [65535, 0], "too great and he was little better than an": [65535, 0], "great and he was little better than an idiot": [65535, 0], "and he was little better than an idiot from": [65535, 0], "he was little better than an idiot from that": [65535, 0], "was little better than an idiot from that day": [65535, 0], "little better than an idiot from that day forth": [65535, 0], "better than an idiot from that day forth a": [65535, 0], "than an idiot from that day forth a grievous": [65535, 0], "an idiot from that day forth a grievous misfortune": [65535, 0], "idiot from that day forth a grievous misfortune for": [65535, 0], "from that day forth a grievous misfortune for the": [65535, 0], "that day forth a grievous misfortune for the school": [65535, 0], "day forth a grievous misfortune for the school for": [65535, 0], "forth a grievous misfortune for the school for on": [65535, 0], "a grievous misfortune for the school for on great": [65535, 0], "grievous misfortune for the school for on great occasions": [65535, 0], "misfortune for the school for on great occasions before": [65535, 0], "for the school for on great occasions before company": [65535, 0], "the school for on great occasions before company the": [65535, 0], "school for on great occasions before company the superintendent": [65535, 0], "for on great occasions before company the superintendent as": [65535, 0], "on great occasions before company the superintendent as tom": [65535, 0], "great occasions before company the superintendent as tom expressed": [65535, 0], "occasions before company the superintendent as tom expressed it": [65535, 0], "before company the superintendent as tom expressed it had": [65535, 0], "company the superintendent as tom expressed it had always": [65535, 0], "the superintendent as tom expressed it had always made": [65535, 0], "superintendent as tom expressed it had always made this": [65535, 0], "as tom expressed it had always made this boy": [65535, 0], "tom expressed it had always made this boy come": [65535, 0], "expressed it had always made this boy come out": [65535, 0], "it had always made this boy come out and": [65535, 0], "had always made this boy come out and spread": [65535, 0], "always made this boy come out and spread himself": [65535, 0], "made this boy come out and spread himself only": [65535, 0], "this boy come out and spread himself only the": [65535, 0], "boy come out and spread himself only the older": [65535, 0], "come out and spread himself only the older pupils": [65535, 0], "out and spread himself only the older pupils managed": [65535, 0], "and spread himself only the older pupils managed to": [65535, 0], "spread himself only the older pupils managed to keep": [65535, 0], "himself only the older pupils managed to keep their": [65535, 0], "only the older pupils managed to keep their tickets": [65535, 0], "the older pupils managed to keep their tickets and": [65535, 0], "older pupils managed to keep their tickets and stick": [65535, 0], "pupils managed to keep their tickets and stick to": [65535, 0], "managed to keep their tickets and stick to their": [65535, 0], "to keep their tickets and stick to their tedious": [65535, 0], "keep their tickets and stick to their tedious work": [65535, 0], "their tickets and stick to their tedious work long": [65535, 0], "tickets and stick to their tedious work long enough": [65535, 0], "and stick to their tedious work long enough to": [65535, 0], "stick to their tedious work long enough to get": [65535, 0], "to their tedious work long enough to get a": [65535, 0], "their tedious work long enough to get a bible": [65535, 0], "tedious work long enough to get a bible and": [65535, 0], "work long enough to get a bible and so": [65535, 0], "long enough to get a bible and so the": [65535, 0], "enough to get a bible and so the delivery": [65535, 0], "to get a bible and so the delivery of": [65535, 0], "get a bible and so the delivery of one": [65535, 0], "a bible and so the delivery of one of": [65535, 0], "bible and so the delivery of one of these": [65535, 0], "and so the delivery of one of these prizes": [65535, 0], "so the delivery of one of these prizes was": [65535, 0], "the delivery of one of these prizes was a": [65535, 0], "delivery of one of these prizes was a rare": [65535, 0], "of one of these prizes was a rare and": [65535, 0], "one of these prizes was a rare and noteworthy": [65535, 0], "of these prizes was a rare and noteworthy circumstance": [65535, 0], "these prizes was a rare and noteworthy circumstance the": [65535, 0], "prizes was a rare and noteworthy circumstance the successful": [65535, 0], "was a rare and noteworthy circumstance the successful pupil": [65535, 0], "a rare and noteworthy circumstance the successful pupil was": [65535, 0], "rare and noteworthy circumstance the successful pupil was so": [65535, 0], "and noteworthy circumstance the successful pupil was so great": [65535, 0], "noteworthy circumstance the successful pupil was so great and": [65535, 0], "circumstance the successful pupil was so great and conspicuous": [65535, 0], "the successful pupil was so great and conspicuous for": [65535, 0], "successful pupil was so great and conspicuous for that": [65535, 0], "pupil was so great and conspicuous for that day": [65535, 0], "was so great and conspicuous for that day that": [65535, 0], "so great and conspicuous for that day that on": [65535, 0], "great and conspicuous for that day that on the": [65535, 0], "and conspicuous for that day that on the spot": [65535, 0], "conspicuous for that day that on the spot every": [65535, 0], "for that day that on the spot every scholar's": [65535, 0], "that day that on the spot every scholar's heart": [65535, 0], "day that on the spot every scholar's heart was": [65535, 0], "that on the spot every scholar's heart was fired": [65535, 0], "on the spot every scholar's heart was fired with": [65535, 0], "the spot every scholar's heart was fired with a": [65535, 0], "spot every scholar's heart was fired with a fresh": [65535, 0], "every scholar's heart was fired with a fresh ambition": [65535, 0], "scholar's heart was fired with a fresh ambition that": [65535, 0], "heart was fired with a fresh ambition that often": [65535, 0], "was fired with a fresh ambition that often lasted": [65535, 0], "fired with a fresh ambition that often lasted a": [65535, 0], "with a fresh ambition that often lasted a couple": [65535, 0], "a fresh ambition that often lasted a couple of": [65535, 0], "fresh ambition that often lasted a couple of weeks": [65535, 0], "ambition that often lasted a couple of weeks it": [65535, 0], "that often lasted a couple of weeks it is": [65535, 0], "often lasted a couple of weeks it is possible": [65535, 0], "lasted a couple of weeks it is possible that": [65535, 0], "a couple of weeks it is possible that tom's": [65535, 0], "couple of weeks it is possible that tom's mental": [65535, 0], "of weeks it is possible that tom's mental stomach": [65535, 0], "weeks it is possible that tom's mental stomach had": [65535, 0], "it is possible that tom's mental stomach had never": [65535, 0], "is possible that tom's mental stomach had never really": [65535, 0], "possible that tom's mental stomach had never really hungered": [65535, 0], "that tom's mental stomach had never really hungered for": [65535, 0], "tom's mental stomach had never really hungered for one": [65535, 0], "mental stomach had never really hungered for one of": [65535, 0], "stomach had never really hungered for one of those": [65535, 0], "had never really hungered for one of those prizes": [65535, 0], "never really hungered for one of those prizes but": [65535, 0], "really hungered for one of those prizes but unquestionably": [65535, 0], "hungered for one of those prizes but unquestionably his": [65535, 0], "for one of those prizes but unquestionably his entire": [65535, 0], "one of those prizes but unquestionably his entire being": [65535, 0], "of those prizes but unquestionably his entire being had": [65535, 0], "those prizes but unquestionably his entire being had for": [65535, 0], "prizes but unquestionably his entire being had for many": [65535, 0], "but unquestionably his entire being had for many a": [65535, 0], "unquestionably his entire being had for many a day": [65535, 0], "his entire being had for many a day longed": [65535, 0], "entire being had for many a day longed for": [65535, 0], "being had for many a day longed for the": [65535, 0], "had for many a day longed for the glory": [65535, 0], "for many a day longed for the glory and": [65535, 0], "many a day longed for the glory and the": [65535, 0], "a day longed for the glory and the eclat": [65535, 0], "day longed for the glory and the eclat that": [65535, 0], "longed for the glory and the eclat that came": [65535, 0], "for the glory and the eclat that came with": [65535, 0], "the glory and the eclat that came with it": [65535, 0], "glory and the eclat that came with it in": [65535, 0], "and the eclat that came with it in due": [65535, 0], "the eclat that came with it in due course": [65535, 0], "eclat that came with it in due course the": [65535, 0], "that came with it in due course the superintendent": [65535, 0], "came with it in due course the superintendent stood": [65535, 0], "with it in due course the superintendent stood up": [65535, 0], "it in due course the superintendent stood up in": [65535, 0], "in due course the superintendent stood up in front": [65535, 0], "due course the superintendent stood up in front of": [65535, 0], "course the superintendent stood up in front of the": [65535, 0], "the superintendent stood up in front of the pulpit": [65535, 0], "superintendent stood up in front of the pulpit with": [65535, 0], "stood up in front of the pulpit with a": [65535, 0], "up in front of the pulpit with a closed": [65535, 0], "in front of the pulpit with a closed hymn": [65535, 0], "front of the pulpit with a closed hymn book": [65535, 0], "of the pulpit with a closed hymn book in": [65535, 0], "the pulpit with a closed hymn book in his": [65535, 0], "pulpit with a closed hymn book in his hand": [65535, 0], "with a closed hymn book in his hand and": [65535, 0], "a closed hymn book in his hand and his": [65535, 0], "closed hymn book in his hand and his forefinger": [65535, 0], "hymn book in his hand and his forefinger inserted": [65535, 0], "book in his hand and his forefinger inserted between": [65535, 0], "in his hand and his forefinger inserted between its": [65535, 0], "his hand and his forefinger inserted between its leaves": [65535, 0], "hand and his forefinger inserted between its leaves and": [65535, 0], "and his forefinger inserted between its leaves and commanded": [65535, 0], "his forefinger inserted between its leaves and commanded attention": [65535, 0], "forefinger inserted between its leaves and commanded attention when": [65535, 0], "inserted between its leaves and commanded attention when a": [65535, 0], "between its leaves and commanded attention when a sunday": [65535, 0], "its leaves and commanded attention when a sunday school": [65535, 0], "leaves and commanded attention when a sunday school superintendent": [65535, 0], "and commanded attention when a sunday school superintendent makes": [65535, 0], "commanded attention when a sunday school superintendent makes his": [65535, 0], "attention when a sunday school superintendent makes his customary": [65535, 0], "when a sunday school superintendent makes his customary little": [65535, 0], "a sunday school superintendent makes his customary little speech": [65535, 0], "sunday school superintendent makes his customary little speech a": [65535, 0], "school superintendent makes his customary little speech a hymn": [65535, 0], "superintendent makes his customary little speech a hymn book": [65535, 0], "makes his customary little speech a hymn book in": [65535, 0], "his customary little speech a hymn book in the": [65535, 0], "customary little speech a hymn book in the hand": [65535, 0], "little speech a hymn book in the hand is": [65535, 0], "speech a hymn book in the hand is as": [65535, 0], "a hymn book in the hand is as necessary": [65535, 0], "hymn book in the hand is as necessary as": [65535, 0], "book in the hand is as necessary as is": [65535, 0], "in the hand is as necessary as is the": [65535, 0], "the hand is as necessary as is the inevitable": [65535, 0], "hand is as necessary as is the inevitable sheet": [65535, 0], "is as necessary as is the inevitable sheet of": [65535, 0], "as necessary as is the inevitable sheet of music": [65535, 0], "necessary as is the inevitable sheet of music in": [65535, 0], "as is the inevitable sheet of music in the": [65535, 0], "is the inevitable sheet of music in the hand": [65535, 0], "the inevitable sheet of music in the hand of": [65535, 0], "inevitable sheet of music in the hand of a": [65535, 0], "sheet of music in the hand of a singer": [65535, 0], "of music in the hand of a singer who": [65535, 0], "music in the hand of a singer who stands": [65535, 0], "in the hand of a singer who stands forward": [65535, 0], "the hand of a singer who stands forward on": [65535, 0], "hand of a singer who stands forward on the": [65535, 0], "of a singer who stands forward on the platform": [65535, 0], "a singer who stands forward on the platform and": [65535, 0], "singer who stands forward on the platform and sings": [65535, 0], "who stands forward on the platform and sings a": [65535, 0], "stands forward on the platform and sings a solo": [65535, 0], "forward on the platform and sings a solo at": [65535, 0], "on the platform and sings a solo at a": [65535, 0], "the platform and sings a solo at a concert": [65535, 0], "platform and sings a solo at a concert though": [65535, 0], "and sings a solo at a concert though why": [65535, 0], "sings a solo at a concert though why is": [65535, 0], "a solo at a concert though why is a": [65535, 0], "solo at a concert though why is a mystery": [65535, 0], "at a concert though why is a mystery for": [65535, 0], "a concert though why is a mystery for neither": [65535, 0], "concert though why is a mystery for neither the": [65535, 0], "though why is a mystery for neither the hymn": [65535, 0], "why is a mystery for neither the hymn book": [65535, 0], "is a mystery for neither the hymn book nor": [65535, 0], "a mystery for neither the hymn book nor the": [65535, 0], "mystery for neither the hymn book nor the sheet": [65535, 0], "for neither the hymn book nor the sheet of": [65535, 0], "neither the hymn book nor the sheet of music": [65535, 0], "the hymn book nor the sheet of music is": [65535, 0], "hymn book nor the sheet of music is ever": [65535, 0], "book nor the sheet of music is ever referred": [65535, 0], "nor the sheet of music is ever referred to": [65535, 0], "the sheet of music is ever referred to by": [65535, 0], "sheet of music is ever referred to by the": [65535, 0], "of music is ever referred to by the sufferer": [65535, 0], "music is ever referred to by the sufferer this": [65535, 0], "is ever referred to by the sufferer this superintendent": [65535, 0], "ever referred to by the sufferer this superintendent was": [65535, 0], "referred to by the sufferer this superintendent was a": [65535, 0], "to by the sufferer this superintendent was a slim": [65535, 0], "by the sufferer this superintendent was a slim creature": [65535, 0], "the sufferer this superintendent was a slim creature of": [65535, 0], "sufferer this superintendent was a slim creature of thirty": [65535, 0], "this superintendent was a slim creature of thirty five": [65535, 0], "superintendent was a slim creature of thirty five with": [65535, 0], "was a slim creature of thirty five with a": [65535, 0], "a slim creature of thirty five with a sandy": [65535, 0], "slim creature of thirty five with a sandy goatee": [65535, 0], "creature of thirty five with a sandy goatee and": [65535, 0], "of thirty five with a sandy goatee and short": [65535, 0], "thirty five with a sandy goatee and short sandy": [65535, 0], "five with a sandy goatee and short sandy hair": [65535, 0], "with a sandy goatee and short sandy hair he": [65535, 0], "a sandy goatee and short sandy hair he wore": [65535, 0], "sandy goatee and short sandy hair he wore a": [65535, 0], "goatee and short sandy hair he wore a stiff": [65535, 0], "and short sandy hair he wore a stiff standing": [65535, 0], "short sandy hair he wore a stiff standing collar": [65535, 0], "sandy hair he wore a stiff standing collar whose": [65535, 0], "hair he wore a stiff standing collar whose upper": [65535, 0], "he wore a stiff standing collar whose upper edge": [65535, 0], "wore a stiff standing collar whose upper edge almost": [65535, 0], "a stiff standing collar whose upper edge almost reached": [65535, 0], "stiff standing collar whose upper edge almost reached his": [65535, 0], "standing collar whose upper edge almost reached his ears": [65535, 0], "collar whose upper edge almost reached his ears and": [65535, 0], "whose upper edge almost reached his ears and whose": [65535, 0], "upper edge almost reached his ears and whose sharp": [65535, 0], "edge almost reached his ears and whose sharp points": [65535, 0], "almost reached his ears and whose sharp points curved": [65535, 0], "reached his ears and whose sharp points curved forward": [65535, 0], "his ears and whose sharp points curved forward abreast": [65535, 0], "ears and whose sharp points curved forward abreast the": [65535, 0], "and whose sharp points curved forward abreast the corners": [65535, 0], "whose sharp points curved forward abreast the corners of": [65535, 0], "sharp points curved forward abreast the corners of his": [65535, 0], "points curved forward abreast the corners of his mouth": [65535, 0], "curved forward abreast the corners of his mouth a": [65535, 0], "forward abreast the corners of his mouth a fence": [65535, 0], "abreast the corners of his mouth a fence that": [65535, 0], "the corners of his mouth a fence that compelled": [65535, 0], "corners of his mouth a fence that compelled a": [65535, 0], "of his mouth a fence that compelled a straight": [65535, 0], "his mouth a fence that compelled a straight lookout": [65535, 0], "mouth a fence that compelled a straight lookout ahead": [65535, 0], "a fence that compelled a straight lookout ahead and": [65535, 0], "fence that compelled a straight lookout ahead and a": [65535, 0], "that compelled a straight lookout ahead and a turning": [65535, 0], "compelled a straight lookout ahead and a turning of": [65535, 0], "a straight lookout ahead and a turning of the": [65535, 0], "straight lookout ahead and a turning of the whole": [65535, 0], "lookout ahead and a turning of the whole body": [65535, 0], "ahead and a turning of the whole body when": [65535, 0], "and a turning of the whole body when a": [65535, 0], "a turning of the whole body when a side": [65535, 0], "turning of the whole body when a side view": [65535, 0], "of the whole body when a side view was": [65535, 0], "the whole body when a side view was required": [65535, 0], "whole body when a side view was required his": [65535, 0], "body when a side view was required his chin": [65535, 0], "when a side view was required his chin was": [65535, 0], "a side view was required his chin was propped": [65535, 0], "side view was required his chin was propped on": [65535, 0], "view was required his chin was propped on a": [65535, 0], "was required his chin was propped on a spreading": [65535, 0], "required his chin was propped on a spreading cravat": [65535, 0], "his chin was propped on a spreading cravat which": [65535, 0], "chin was propped on a spreading cravat which was": [65535, 0], "was propped on a spreading cravat which was as": [65535, 0], "propped on a spreading cravat which was as broad": [65535, 0], "on a spreading cravat which was as broad and": [65535, 0], "a spreading cravat which was as broad and as": [65535, 0], "spreading cravat which was as broad and as long": [65535, 0], "cravat which was as broad and as long as": [65535, 0], "which was as broad and as long as a": [65535, 0], "was as broad and as long as a bank": [65535, 0], "as broad and as long as a bank note": [65535, 0], "broad and as long as a bank note and": [65535, 0], "and as long as a bank note and had": [65535, 0], "as long as a bank note and had fringed": [65535, 0], "long as a bank note and had fringed ends": [65535, 0], "as a bank note and had fringed ends his": [65535, 0], "a bank note and had fringed ends his boot": [65535, 0], "bank note and had fringed ends his boot toes": [65535, 0], "note and had fringed ends his boot toes were": [65535, 0], "and had fringed ends his boot toes were turned": [65535, 0], "had fringed ends his boot toes were turned sharply": [65535, 0], "fringed ends his boot toes were turned sharply up": [65535, 0], "ends his boot toes were turned sharply up in": [65535, 0], "his boot toes were turned sharply up in the": [65535, 0], "boot toes were turned sharply up in the fashion": [65535, 0], "toes were turned sharply up in the fashion of": [65535, 0], "were turned sharply up in the fashion of the": [65535, 0], "turned sharply up in the fashion of the day": [65535, 0], "sharply up in the fashion of the day like": [65535, 0], "up in the fashion of the day like sleigh": [65535, 0], "in the fashion of the day like sleigh runners": [65535, 0], "the fashion of the day like sleigh runners an": [65535, 0], "fashion of the day like sleigh runners an effect": [65535, 0], "of the day like sleigh runners an effect patiently": [65535, 0], "the day like sleigh runners an effect patiently and": [65535, 0], "day like sleigh runners an effect patiently and laboriously": [65535, 0], "like sleigh runners an effect patiently and laboriously produced": [65535, 0], "sleigh runners an effect patiently and laboriously produced by": [65535, 0], "runners an effect patiently and laboriously produced by the": [65535, 0], "an effect patiently and laboriously produced by the young": [65535, 0], "effect patiently and laboriously produced by the young men": [65535, 0], "patiently and laboriously produced by the young men by": [65535, 0], "and laboriously produced by the young men by sitting": [65535, 0], "laboriously produced by the young men by sitting with": [65535, 0], "produced by the young men by sitting with their": [65535, 0], "by the young men by sitting with their toes": [65535, 0], "the young men by sitting with their toes pressed": [65535, 0], "young men by sitting with their toes pressed against": [65535, 0], "men by sitting with their toes pressed against a": [65535, 0], "by sitting with their toes pressed against a wall": [65535, 0], "sitting with their toes pressed against a wall for": [65535, 0], "with their toes pressed against a wall for hours": [65535, 0], "their toes pressed against a wall for hours together": [65535, 0], "toes pressed against a wall for hours together mr": [65535, 0], "pressed against a wall for hours together mr walters": [65535, 0], "against a wall for hours together mr walters was": [65535, 0], "a wall for hours together mr walters was very": [65535, 0], "wall for hours together mr walters was very earnest": [65535, 0], "for hours together mr walters was very earnest of": [65535, 0], "hours together mr walters was very earnest of mien": [65535, 0], "together mr walters was very earnest of mien and": [65535, 0], "mr walters was very earnest of mien and very": [65535, 0], "walters was very earnest of mien and very sincere": [65535, 0], "was very earnest of mien and very sincere and": [65535, 0], "very earnest of mien and very sincere and honest": [65535, 0], "earnest of mien and very sincere and honest at": [65535, 0], "of mien and very sincere and honest at heart": [65535, 0], "mien and very sincere and honest at heart and": [65535, 0], "and very sincere and honest at heart and he": [65535, 0], "very sincere and honest at heart and he held": [65535, 0], "sincere and honest at heart and he held sacred": [65535, 0], "and honest at heart and he held sacred things": [65535, 0], "honest at heart and he held sacred things and": [65535, 0], "at heart and he held sacred things and places": [65535, 0], "heart and he held sacred things and places in": [65535, 0], "and he held sacred things and places in such": [65535, 0], "he held sacred things and places in such reverence": [65535, 0], "held sacred things and places in such reverence and": [65535, 0], "sacred things and places in such reverence and so": [65535, 0], "things and places in such reverence and so separated": [65535, 0], "and places in such reverence and so separated them": [65535, 0], "places in such reverence and so separated them from": [65535, 0], "in such reverence and so separated them from worldly": [65535, 0], "such reverence and so separated them from worldly matters": [65535, 0], "reverence and so separated them from worldly matters that": [65535, 0], "and so separated them from worldly matters that unconsciously": [65535, 0], "so separated them from worldly matters that unconsciously to": [65535, 0], "separated them from worldly matters that unconsciously to himself": [65535, 0], "them from worldly matters that unconsciously to himself his": [65535, 0], "from worldly matters that unconsciously to himself his sunday": [65535, 0], "worldly matters that unconsciously to himself his sunday school": [65535, 0], "matters that unconsciously to himself his sunday school voice": [65535, 0], "that unconsciously to himself his sunday school voice had": [65535, 0], "unconsciously to himself his sunday school voice had acquired": [65535, 0], "to himself his sunday school voice had acquired a": [65535, 0], "himself his sunday school voice had acquired a peculiar": [65535, 0], "his sunday school voice had acquired a peculiar intonation": [65535, 0], "sunday school voice had acquired a peculiar intonation which": [65535, 0], "school voice had acquired a peculiar intonation which was": [65535, 0], "voice had acquired a peculiar intonation which was wholly": [65535, 0], "had acquired a peculiar intonation which was wholly absent": [65535, 0], "acquired a peculiar intonation which was wholly absent on": [65535, 0], "a peculiar intonation which was wholly absent on week": [65535, 0], "peculiar intonation which was wholly absent on week days": [65535, 0], "intonation which was wholly absent on week days he": [65535, 0], "which was wholly absent on week days he began": [65535, 0], "was wholly absent on week days he began after": [65535, 0], "wholly absent on week days he began after this": [65535, 0], "absent on week days he began after this fashion": [65535, 0], "on week days he began after this fashion now": [65535, 0], "week days he began after this fashion now children": [65535, 0], "days he began after this fashion now children i": [65535, 0], "he began after this fashion now children i want": [65535, 0], "began after this fashion now children i want you": [65535, 0], "after this fashion now children i want you all": [65535, 0], "this fashion now children i want you all to": [65535, 0], "fashion now children i want you all to sit": [65535, 0], "now children i want you all to sit up": [65535, 0], "children i want you all to sit up just": [65535, 0], "i want you all to sit up just as": [65535, 0], "want you all to sit up just as straight": [65535, 0], "you all to sit up just as straight and": [65535, 0], "all to sit up just as straight and pretty": [65535, 0], "to sit up just as straight and pretty as": [65535, 0], "sit up just as straight and pretty as you": [65535, 0], "up just as straight and pretty as you can": [65535, 0], "just as straight and pretty as you can and": [65535, 0], "as straight and pretty as you can and give": [65535, 0], "straight and pretty as you can and give me": [65535, 0], "and pretty as you can and give me all": [65535, 0], "pretty as you can and give me all your": [65535, 0], "as you can and give me all your attention": [65535, 0], "you can and give me all your attention for": [65535, 0], "can and give me all your attention for a": [65535, 0], "and give me all your attention for a minute": [65535, 0], "give me all your attention for a minute or": [65535, 0], "me all your attention for a minute or two": [65535, 0], "all your attention for a minute or two there": [65535, 0], "your attention for a minute or two there that": [65535, 0], "attention for a minute or two there that is": [65535, 0], "for a minute or two there that is it": [65535, 0], "a minute or two there that is it that": [65535, 0], "minute or two there that is it that is": [65535, 0], "or two there that is it that is the": [65535, 0], "two there that is it that is the way": [65535, 0], "there that is it that is the way good": [65535, 0], "that is it that is the way good little": [65535, 0], "is it that is the way good little boys": [65535, 0], "it that is the way good little boys and": [65535, 0], "that is the way good little boys and girls": [65535, 0], "is the way good little boys and girls should": [65535, 0], "the way good little boys and girls should do": [65535, 0], "way good little boys and girls should do i": [65535, 0], "good little boys and girls should do i see": [65535, 0], "little boys and girls should do i see one": [65535, 0], "boys and girls should do i see one little": [65535, 0], "and girls should do i see one little girl": [65535, 0], "girls should do i see one little girl who": [65535, 0], "should do i see one little girl who is": [65535, 0], "do i see one little girl who is looking": [65535, 0], "i see one little girl who is looking out": [65535, 0], "see one little girl who is looking out of": [65535, 0], "one little girl who is looking out of the": [65535, 0], "little girl who is looking out of the window": [65535, 0], "girl who is looking out of the window i": [65535, 0], "who is looking out of the window i am": [65535, 0], "is looking out of the window i am afraid": [65535, 0], "looking out of the window i am afraid she": [65535, 0], "out of the window i am afraid she thinks": [65535, 0], "of the window i am afraid she thinks i": [65535, 0], "the window i am afraid she thinks i am": [65535, 0], "window i am afraid she thinks i am out": [65535, 0], "i am afraid she thinks i am out there": [65535, 0], "am afraid she thinks i am out there somewhere": [65535, 0], "afraid she thinks i am out there somewhere perhaps": [65535, 0], "she thinks i am out there somewhere perhaps up": [65535, 0], "thinks i am out there somewhere perhaps up in": [65535, 0], "i am out there somewhere perhaps up in one": [65535, 0], "am out there somewhere perhaps up in one of": [65535, 0], "out there somewhere perhaps up in one of the": [65535, 0], "there somewhere perhaps up in one of the trees": [65535, 0], "somewhere perhaps up in one of the trees making": [65535, 0], "perhaps up in one of the trees making a": [65535, 0], "up in one of the trees making a speech": [65535, 0], "in one of the trees making a speech to": [65535, 0], "one of the trees making a speech to the": [65535, 0], "of the trees making a speech to the little": [65535, 0], "the trees making a speech to the little birds": [65535, 0], "trees making a speech to the little birds applausive": [65535, 0], "making a speech to the little birds applausive titter": [65535, 0], "a speech to the little birds applausive titter i": [65535, 0], "speech to the little birds applausive titter i want": [65535, 0], "to the little birds applausive titter i want to": [65535, 0], "the little birds applausive titter i want to tell": [65535, 0], "little birds applausive titter i want to tell you": [65535, 0], "birds applausive titter i want to tell you how": [65535, 0], "applausive titter i want to tell you how good": [65535, 0], "titter i want to tell you how good it": [65535, 0], "i want to tell you how good it makes": [65535, 0], "want to tell you how good it makes me": [65535, 0], "to tell you how good it makes me feel": [65535, 0], "tell you how good it makes me feel to": [65535, 0], "you how good it makes me feel to see": [65535, 0], "how good it makes me feel to see so": [65535, 0], "good it makes me feel to see so many": [65535, 0], "it makes me feel to see so many bright": [65535, 0], "makes me feel to see so many bright clean": [65535, 0], "me feel to see so many bright clean little": [65535, 0], "feel to see so many bright clean little faces": [65535, 0], "to see so many bright clean little faces assembled": [65535, 0], "see so many bright clean little faces assembled in": [65535, 0], "so many bright clean little faces assembled in a": [65535, 0], "many bright clean little faces assembled in a place": [65535, 0], "bright clean little faces assembled in a place like": [65535, 0], "clean little faces assembled in a place like this": [65535, 0], "little faces assembled in a place like this learning": [65535, 0], "faces assembled in a place like this learning to": [65535, 0], "assembled in a place like this learning to do": [65535, 0], "in a place like this learning to do right": [65535, 0], "a place like this learning to do right and": [65535, 0], "place like this learning to do right and be": [65535, 0], "like this learning to do right and be good": [65535, 0], "this learning to do right and be good and": [65535, 0], "learning to do right and be good and so": [65535, 0], "to do right and be good and so forth": [65535, 0], "do right and be good and so forth and": [65535, 0], "right and be good and so forth and so": [65535, 0], "and be good and so forth and so on": [65535, 0], "be good and so forth and so on it": [65535, 0], "good and so forth and so on it is": [65535, 0], "and so forth and so on it is not": [65535, 0], "so forth and so on it is not necessary": [65535, 0], "forth and so on it is not necessary to": [65535, 0], "and so on it is not necessary to set": [65535, 0], "so on it is not necessary to set down": [65535, 0], "on it is not necessary to set down the": [65535, 0], "it is not necessary to set down the rest": [65535, 0], "is not necessary to set down the rest of": [65535, 0], "not necessary to set down the rest of the": [65535, 0], "necessary to set down the rest of the oration": [65535, 0], "to set down the rest of the oration it": [65535, 0], "set down the rest of the oration it was": [65535, 0], "down the rest of the oration it was of": [65535, 0], "the rest of the oration it was of a": [65535, 0], "rest of the oration it was of a pattern": [65535, 0], "of the oration it was of a pattern which": [65535, 0], "the oration it was of a pattern which does": [65535, 0], "oration it was of a pattern which does not": [65535, 0], "it was of a pattern which does not vary": [65535, 0], "was of a pattern which does not vary and": [65535, 0], "of a pattern which does not vary and so": [65535, 0], "a pattern which does not vary and so it": [65535, 0], "pattern which does not vary and so it is": [65535, 0], "which does not vary and so it is familiar": [65535, 0], "does not vary and so it is familiar to": [65535, 0], "not vary and so it is familiar to us": [65535, 0], "vary and so it is familiar to us all": [65535, 0], "and so it is familiar to us all the": [65535, 0], "so it is familiar to us all the latter": [65535, 0], "it is familiar to us all the latter third": [65535, 0], "is familiar to us all the latter third of": [65535, 0], "familiar to us all the latter third of the": [65535, 0], "to us all the latter third of the speech": [65535, 0], "us all the latter third of the speech was": [65535, 0], "all the latter third of the speech was marred": [65535, 0], "the latter third of the speech was marred by": [65535, 0], "latter third of the speech was marred by the": [65535, 0], "third of the speech was marred by the resumption": [65535, 0], "of the speech was marred by the resumption of": [65535, 0], "the speech was marred by the resumption of fights": [65535, 0], "speech was marred by the resumption of fights and": [65535, 0], "was marred by the resumption of fights and other": [65535, 0], "marred by the resumption of fights and other recreations": [65535, 0], "by the resumption of fights and other recreations among": [65535, 0], "the resumption of fights and other recreations among certain": [65535, 0], "resumption of fights and other recreations among certain of": [65535, 0], "of fights and other recreations among certain of the": [65535, 0], "fights and other recreations among certain of the bad": [65535, 0], "and other recreations among certain of the bad boys": [65535, 0], "other recreations among certain of the bad boys and": [65535, 0], "recreations among certain of the bad boys and by": [65535, 0], "among certain of the bad boys and by fidgetings": [65535, 0], "certain of the bad boys and by fidgetings and": [65535, 0], "of the bad boys and by fidgetings and whisperings": [65535, 0], "the bad boys and by fidgetings and whisperings that": [65535, 0], "bad boys and by fidgetings and whisperings that extended": [65535, 0], "boys and by fidgetings and whisperings that extended far": [65535, 0], "and by fidgetings and whisperings that extended far and": [65535, 0], "by fidgetings and whisperings that extended far and wide": [65535, 0], "fidgetings and whisperings that extended far and wide washing": [65535, 0], "and whisperings that extended far and wide washing even": [65535, 0], "whisperings that extended far and wide washing even to": [65535, 0], "that extended far and wide washing even to the": [65535, 0], "extended far and wide washing even to the bases": [65535, 0], "far and wide washing even to the bases of": [65535, 0], "and wide washing even to the bases of isolated": [65535, 0], "wide washing even to the bases of isolated and": [65535, 0], "washing even to the bases of isolated and incorruptible": [65535, 0], "even to the bases of isolated and incorruptible rocks": [65535, 0], "to the bases of isolated and incorruptible rocks like": [65535, 0], "the bases of isolated and incorruptible rocks like sid": [65535, 0], "bases of isolated and incorruptible rocks like sid and": [65535, 0], "of isolated and incorruptible rocks like sid and mary": [65535, 0], "isolated and incorruptible rocks like sid and mary but": [65535, 0], "and incorruptible rocks like sid and mary but now": [65535, 0], "incorruptible rocks like sid and mary but now every": [65535, 0], "rocks like sid and mary but now every sound": [65535, 0], "like sid and mary but now every sound ceased": [65535, 0], "sid and mary but now every sound ceased suddenly": [65535, 0], "and mary but now every sound ceased suddenly with": [65535, 0], "mary but now every sound ceased suddenly with the": [65535, 0], "but now every sound ceased suddenly with the subsidence": [65535, 0], "now every sound ceased suddenly with the subsidence of": [65535, 0], "every sound ceased suddenly with the subsidence of mr": [65535, 0], "sound ceased suddenly with the subsidence of mr walters'": [65535, 0], "ceased suddenly with the subsidence of mr walters' voice": [65535, 0], "suddenly with the subsidence of mr walters' voice and": [65535, 0], "with the subsidence of mr walters' voice and the": [65535, 0], "the subsidence of mr walters' voice and the conclusion": [65535, 0], "subsidence of mr walters' voice and the conclusion of": [65535, 0], "of mr walters' voice and the conclusion of the": [65535, 0], "mr walters' voice and the conclusion of the speech": [65535, 0], "walters' voice and the conclusion of the speech was": [65535, 0], "voice and the conclusion of the speech was received": [65535, 0], "and the conclusion of the speech was received with": [65535, 0], "the conclusion of the speech was received with a": [65535, 0], "conclusion of the speech was received with a burst": [65535, 0], "of the speech was received with a burst of": [65535, 0], "the speech was received with a burst of silent": [65535, 0], "speech was received with a burst of silent gratitude": [65535, 0], "was received with a burst of silent gratitude a": [65535, 0], "received with a burst of silent gratitude a good": [65535, 0], "with a burst of silent gratitude a good part": [65535, 0], "a burst of silent gratitude a good part of": [65535, 0], "burst of silent gratitude a good part of the": [65535, 0], "of silent gratitude a good part of the whispering": [65535, 0], "silent gratitude a good part of the whispering had": [65535, 0], "gratitude a good part of the whispering had been": [65535, 0], "a good part of the whispering had been occasioned": [65535, 0], "good part of the whispering had been occasioned by": [65535, 0], "part of the whispering had been occasioned by an": [65535, 0], "of the whispering had been occasioned by an event": [65535, 0], "the whispering had been occasioned by an event which": [65535, 0], "whispering had been occasioned by an event which was": [65535, 0], "had been occasioned by an event which was more": [65535, 0], "been occasioned by an event which was more or": [65535, 0], "occasioned by an event which was more or less": [65535, 0], "by an event which was more or less rare": [65535, 0], "an event which was more or less rare the": [65535, 0], "event which was more or less rare the entrance": [65535, 0], "which was more or less rare the entrance of": [65535, 0], "was more or less rare the entrance of visitors": [65535, 0], "more or less rare the entrance of visitors lawyer": [65535, 0], "or less rare the entrance of visitors lawyer thatcher": [65535, 0], "less rare the entrance of visitors lawyer thatcher accompanied": [65535, 0], "rare the entrance of visitors lawyer thatcher accompanied by": [65535, 0], "the entrance of visitors lawyer thatcher accompanied by a": [65535, 0], "entrance of visitors lawyer thatcher accompanied by a very": [65535, 0], "of visitors lawyer thatcher accompanied by a very feeble": [65535, 0], "visitors lawyer thatcher accompanied by a very feeble and": [65535, 0], "lawyer thatcher accompanied by a very feeble and aged": [65535, 0], "thatcher accompanied by a very feeble and aged man": [65535, 0], "accompanied by a very feeble and aged man a": [65535, 0], "by a very feeble and aged man a fine": [65535, 0], "a very feeble and aged man a fine portly": [65535, 0], "very feeble and aged man a fine portly middle": [65535, 0], "feeble and aged man a fine portly middle aged": [65535, 0], "and aged man a fine portly middle aged gentleman": [65535, 0], "aged man a fine portly middle aged gentleman with": [65535, 0], "man a fine portly middle aged gentleman with iron": [65535, 0], "a fine portly middle aged gentleman with iron gray": [65535, 0], "fine portly middle aged gentleman with iron gray hair": [65535, 0], "portly middle aged gentleman with iron gray hair and": [65535, 0], "middle aged gentleman with iron gray hair and a": [65535, 0], "aged gentleman with iron gray hair and a dignified": [65535, 0], "gentleman with iron gray hair and a dignified lady": [65535, 0], "with iron gray hair and a dignified lady who": [65535, 0], "iron gray hair and a dignified lady who was": [65535, 0], "gray hair and a dignified lady who was doubtless": [65535, 0], "hair and a dignified lady who was doubtless the": [65535, 0], "and a dignified lady who was doubtless the latter's": [65535, 0], "a dignified lady who was doubtless the latter's wife": [65535, 0], "dignified lady who was doubtless the latter's wife the": [65535, 0], "lady who was doubtless the latter's wife the lady": [65535, 0], "who was doubtless the latter's wife the lady was": [65535, 0], "was doubtless the latter's wife the lady was leading": [65535, 0], "doubtless the latter's wife the lady was leading a": [65535, 0], "the latter's wife the lady was leading a child": [65535, 0], "latter's wife the lady was leading a child tom": [65535, 0], "wife the lady was leading a child tom had": [65535, 0], "the lady was leading a child tom had been": [65535, 0], "lady was leading a child tom had been restless": [65535, 0], "was leading a child tom had been restless and": [65535, 0], "leading a child tom had been restless and full": [65535, 0], "a child tom had been restless and full of": [65535, 0], "child tom had been restless and full of chafings": [65535, 0], "tom had been restless and full of chafings and": [65535, 0], "had been restless and full of chafings and repinings": [65535, 0], "been restless and full of chafings and repinings conscience": [65535, 0], "restless and full of chafings and repinings conscience smitten": [65535, 0], "and full of chafings and repinings conscience smitten too": [65535, 0], "full of chafings and repinings conscience smitten too he": [65535, 0], "of chafings and repinings conscience smitten too he could": [65535, 0], "chafings and repinings conscience smitten too he could not": [65535, 0], "and repinings conscience smitten too he could not meet": [65535, 0], "repinings conscience smitten too he could not meet amy": [65535, 0], "conscience smitten too he could not meet amy lawrence's": [65535, 0], "smitten too he could not meet amy lawrence's eye": [65535, 0], "too he could not meet amy lawrence's eye he": [65535, 0], "he could not meet amy lawrence's eye he could": [65535, 0], "could not meet amy lawrence's eye he could not": [65535, 0], "not meet amy lawrence's eye he could not brook": [65535, 0], "meet amy lawrence's eye he could not brook her": [65535, 0], "amy lawrence's eye he could not brook her loving": [65535, 0], "lawrence's eye he could not brook her loving gaze": [65535, 0], "eye he could not brook her loving gaze but": [65535, 0], "he could not brook her loving gaze but when": [65535, 0], "could not brook her loving gaze but when he": [65535, 0], "not brook her loving gaze but when he saw": [65535, 0], "brook her loving gaze but when he saw this": [65535, 0], "her loving gaze but when he saw this small": [65535, 0], "loving gaze but when he saw this small new": [65535, 0], "gaze but when he saw this small new comer": [65535, 0], "but when he saw this small new comer his": [65535, 0], "when he saw this small new comer his soul": [65535, 0], "he saw this small new comer his soul was": [65535, 0], "saw this small new comer his soul was all": [65535, 0], "this small new comer his soul was all ablaze": [65535, 0], "small new comer his soul was all ablaze with": [65535, 0], "new comer his soul was all ablaze with bliss": [65535, 0], "comer his soul was all ablaze with bliss in": [65535, 0], "his soul was all ablaze with bliss in a": [65535, 0], "soul was all ablaze with bliss in a moment": [65535, 0], "was all ablaze with bliss in a moment the": [65535, 0], "all ablaze with bliss in a moment the next": [65535, 0], "ablaze with bliss in a moment the next moment": [65535, 0], "with bliss in a moment the next moment he": [65535, 0], "bliss in a moment the next moment he was": [65535, 0], "in a moment the next moment he was showing": [65535, 0], "a moment the next moment he was showing off": [65535, 0], "moment the next moment he was showing off with": [65535, 0], "the next moment he was showing off with all": [65535, 0], "next moment he was showing off with all his": [65535, 0], "moment he was showing off with all his might": [65535, 0], "he was showing off with all his might cuffing": [65535, 0], "was showing off with all his might cuffing boys": [65535, 0], "showing off with all his might cuffing boys pulling": [65535, 0], "off with all his might cuffing boys pulling hair": [65535, 0], "with all his might cuffing boys pulling hair making": [65535, 0], "all his might cuffing boys pulling hair making faces": [65535, 0], "his might cuffing boys pulling hair making faces in": [65535, 0], "might cuffing boys pulling hair making faces in a": [65535, 0], "cuffing boys pulling hair making faces in a word": [65535, 0], "boys pulling hair making faces in a word using": [65535, 0], "pulling hair making faces in a word using every": [65535, 0], "hair making faces in a word using every art": [65535, 0], "making faces in a word using every art that": [65535, 0], "faces in a word using every art that seemed": [65535, 0], "in a word using every art that seemed likely": [65535, 0], "a word using every art that seemed likely to": [65535, 0], "word using every art that seemed likely to fascinate": [65535, 0], "using every art that seemed likely to fascinate a": [65535, 0], "every art that seemed likely to fascinate a girl": [65535, 0], "art that seemed likely to fascinate a girl and": [65535, 0], "that seemed likely to fascinate a girl and win": [65535, 0], "seemed likely to fascinate a girl and win her": [65535, 0], "likely to fascinate a girl and win her applause": [65535, 0], "to fascinate a girl and win her applause his": [65535, 0], "fascinate a girl and win her applause his exaltation": [65535, 0], "a girl and win her applause his exaltation had": [65535, 0], "girl and win her applause his exaltation had but": [65535, 0], "and win her applause his exaltation had but one": [65535, 0], "win her applause his exaltation had but one alloy": [65535, 0], "her applause his exaltation had but one alloy the": [65535, 0], "applause his exaltation had but one alloy the memory": [65535, 0], "his exaltation had but one alloy the memory of": [65535, 0], "exaltation had but one alloy the memory of his": [65535, 0], "had but one alloy the memory of his humiliation": [65535, 0], "but one alloy the memory of his humiliation in": [65535, 0], "one alloy the memory of his humiliation in this": [65535, 0], "alloy the memory of his humiliation in this angel's": [65535, 0], "the memory of his humiliation in this angel's garden": [65535, 0], "memory of his humiliation in this angel's garden and": [65535, 0], "of his humiliation in this angel's garden and that": [65535, 0], "his humiliation in this angel's garden and that record": [65535, 0], "humiliation in this angel's garden and that record in": [65535, 0], "in this angel's garden and that record in sand": [65535, 0], "this angel's garden and that record in sand was": [65535, 0], "angel's garden and that record in sand was fast": [65535, 0], "garden and that record in sand was fast washing": [65535, 0], "and that record in sand was fast washing out": [65535, 0], "that record in sand was fast washing out under": [65535, 0], "record in sand was fast washing out under the": [65535, 0], "in sand was fast washing out under the waves": [65535, 0], "sand was fast washing out under the waves of": [65535, 0], "was fast washing out under the waves of happiness": [65535, 0], "fast washing out under the waves of happiness that": [65535, 0], "washing out under the waves of happiness that were": [65535, 0], "out under the waves of happiness that were sweeping": [65535, 0], "under the waves of happiness that were sweeping over": [65535, 0], "the waves of happiness that were sweeping over it": [65535, 0], "waves of happiness that were sweeping over it now": [65535, 0], "of happiness that were sweeping over it now the": [65535, 0], "happiness that were sweeping over it now the visitors": [65535, 0], "that were sweeping over it now the visitors were": [65535, 0], "were sweeping over it now the visitors were given": [65535, 0], "sweeping over it now the visitors were given the": [65535, 0], "over it now the visitors were given the highest": [65535, 0], "it now the visitors were given the highest seat": [65535, 0], "now the visitors were given the highest seat of": [65535, 0], "the visitors were given the highest seat of honor": [65535, 0], "visitors were given the highest seat of honor and": [65535, 0], "were given the highest seat of honor and as": [65535, 0], "given the highest seat of honor and as soon": [65535, 0], "the highest seat of honor and as soon as": [65535, 0], "highest seat of honor and as soon as mr": [65535, 0], "seat of honor and as soon as mr walters'": [65535, 0], "of honor and as soon as mr walters' speech": [65535, 0], "honor and as soon as mr walters' speech was": [65535, 0], "and as soon as mr walters' speech was finished": [65535, 0], "as soon as mr walters' speech was finished he": [65535, 0], "soon as mr walters' speech was finished he introduced": [65535, 0], "as mr walters' speech was finished he introduced them": [65535, 0], "mr walters' speech was finished he introduced them to": [65535, 0], "walters' speech was finished he introduced them to the": [65535, 0], "speech was finished he introduced them to the school": [65535, 0], "was finished he introduced them to the school the": [65535, 0], "finished he introduced them to the school the middle": [65535, 0], "he introduced them to the school the middle aged": [65535, 0], "introduced them to the school the middle aged man": [65535, 0], "them to the school the middle aged man turned": [65535, 0], "to the school the middle aged man turned out": [65535, 0], "the school the middle aged man turned out to": [65535, 0], "school the middle aged man turned out to be": [65535, 0], "the middle aged man turned out to be a": [65535, 0], "middle aged man turned out to be a prodigious": [65535, 0], "aged man turned out to be a prodigious personage": [65535, 0], "man turned out to be a prodigious personage no": [65535, 0], "turned out to be a prodigious personage no less": [65535, 0], "out to be a prodigious personage no less a": [65535, 0], "to be a prodigious personage no less a one": [65535, 0], "be a prodigious personage no less a one than": [65535, 0], "a prodigious personage no less a one than the": [65535, 0], "prodigious personage no less a one than the county": [65535, 0], "personage no less a one than the county judge": [65535, 0], "no less a one than the county judge altogether": [65535, 0], "less a one than the county judge altogether the": [65535, 0], "a one than the county judge altogether the most": [65535, 0], "one than the county judge altogether the most august": [65535, 0], "than the county judge altogether the most august creation": [65535, 0], "the county judge altogether the most august creation these": [65535, 0], "county judge altogether the most august creation these children": [65535, 0], "judge altogether the most august creation these children had": [65535, 0], "altogether the most august creation these children had ever": [65535, 0], "the most august creation these children had ever looked": [65535, 0], "most august creation these children had ever looked upon": [65535, 0], "august creation these children had ever looked upon and": [65535, 0], "creation these children had ever looked upon and they": [65535, 0], "these children had ever looked upon and they wondered": [65535, 0], "children had ever looked upon and they wondered what": [65535, 0], "had ever looked upon and they wondered what kind": [65535, 0], "ever looked upon and they wondered what kind of": [65535, 0], "looked upon and they wondered what kind of material": [65535, 0], "upon and they wondered what kind of material he": [65535, 0], "and they wondered what kind of material he was": [65535, 0], "they wondered what kind of material he was made": [65535, 0], "wondered what kind of material he was made of": [65535, 0], "what kind of material he was made of and": [65535, 0], "kind of material he was made of and they": [65535, 0], "of material he was made of and they half": [65535, 0], "material he was made of and they half wanted": [65535, 0], "he was made of and they half wanted to": [65535, 0], "was made of and they half wanted to hear": [65535, 0], "made of and they half wanted to hear him": [65535, 0], "of and they half wanted to hear him roar": [65535, 0], "and they half wanted to hear him roar and": [65535, 0], "they half wanted to hear him roar and were": [65535, 0], "half wanted to hear him roar and were half": [65535, 0], "wanted to hear him roar and were half afraid": [65535, 0], "to hear him roar and were half afraid he": [65535, 0], "hear him roar and were half afraid he might": [65535, 0], "him roar and were half afraid he might too": [65535, 0], "roar and were half afraid he might too he": [65535, 0], "and were half afraid he might too he was": [65535, 0], "were half afraid he might too he was from": [65535, 0], "half afraid he might too he was from constantinople": [65535, 0], "afraid he might too he was from constantinople twelve": [65535, 0], "he might too he was from constantinople twelve miles": [65535, 0], "might too he was from constantinople twelve miles away": [65535, 0], "too he was from constantinople twelve miles away so": [65535, 0], "he was from constantinople twelve miles away so he": [65535, 0], "was from constantinople twelve miles away so he had": [65535, 0], "from constantinople twelve miles away so he had travelled": [65535, 0], "constantinople twelve miles away so he had travelled and": [65535, 0], "twelve miles away so he had travelled and seen": [65535, 0], "miles away so he had travelled and seen the": [65535, 0], "away so he had travelled and seen the world": [65535, 0], "so he had travelled and seen the world these": [65535, 0], "he had travelled and seen the world these very": [65535, 0], "had travelled and seen the world these very eyes": [65535, 0], "travelled and seen the world these very eyes had": [65535, 0], "and seen the world these very eyes had looked": [65535, 0], "seen the world these very eyes had looked upon": [65535, 0], "the world these very eyes had looked upon the": [65535, 0], "world these very eyes had looked upon the county": [65535, 0], "these very eyes had looked upon the county court": [65535, 0], "very eyes had looked upon the county court house": [65535, 0], "eyes had looked upon the county court house which": [65535, 0], "had looked upon the county court house which was": [65535, 0], "looked upon the county court house which was said": [65535, 0], "upon the county court house which was said to": [65535, 0], "the county court house which was said to have": [65535, 0], "county court house which was said to have a": [65535, 0], "court house which was said to have a tin": [65535, 0], "house which was said to have a tin roof": [65535, 0], "which was said to have a tin roof the": [65535, 0], "was said to have a tin roof the awe": [65535, 0], "said to have a tin roof the awe which": [65535, 0], "to have a tin roof the awe which these": [65535, 0], "have a tin roof the awe which these reflections": [65535, 0], "a tin roof the awe which these reflections inspired": [65535, 0], "tin roof the awe which these reflections inspired was": [65535, 0], "roof the awe which these reflections inspired was attested": [65535, 0], "the awe which these reflections inspired was attested by": [65535, 0], "awe which these reflections inspired was attested by the": [65535, 0], "which these reflections inspired was attested by the impressive": [65535, 0], "these reflections inspired was attested by the impressive silence": [65535, 0], "reflections inspired was attested by the impressive silence and": [65535, 0], "inspired was attested by the impressive silence and the": [65535, 0], "was attested by the impressive silence and the ranks": [65535, 0], "attested by the impressive silence and the ranks of": [65535, 0], "by the impressive silence and the ranks of staring": [65535, 0], "the impressive silence and the ranks of staring eyes": [65535, 0], "impressive silence and the ranks of staring eyes this": [65535, 0], "silence and the ranks of staring eyes this was": [65535, 0], "and the ranks of staring eyes this was the": [65535, 0], "the ranks of staring eyes this was the great": [65535, 0], "ranks of staring eyes this was the great judge": [65535, 0], "of staring eyes this was the great judge thatcher": [65535, 0], "staring eyes this was the great judge thatcher brother": [65535, 0], "eyes this was the great judge thatcher brother of": [65535, 0], "this was the great judge thatcher brother of their": [65535, 0], "was the great judge thatcher brother of their own": [65535, 0], "the great judge thatcher brother of their own lawyer": [65535, 0], "great judge thatcher brother of their own lawyer jeff": [65535, 0], "judge thatcher brother of their own lawyer jeff thatcher": [65535, 0], "thatcher brother of their own lawyer jeff thatcher immediately": [65535, 0], "brother of their own lawyer jeff thatcher immediately went": [65535, 0], "of their own lawyer jeff thatcher immediately went forward": [65535, 0], "their own lawyer jeff thatcher immediately went forward to": [65535, 0], "own lawyer jeff thatcher immediately went forward to be": [65535, 0], "lawyer jeff thatcher immediately went forward to be familiar": [65535, 0], "jeff thatcher immediately went forward to be familiar with": [65535, 0], "thatcher immediately went forward to be familiar with the": [65535, 0], "immediately went forward to be familiar with the great": [65535, 0], "went forward to be familiar with the great man": [65535, 0], "forward to be familiar with the great man and": [65535, 0], "to be familiar with the great man and be": [65535, 0], "be familiar with the great man and be envied": [65535, 0], "familiar with the great man and be envied by": [65535, 0], "with the great man and be envied by the": [65535, 0], "the great man and be envied by the school": [65535, 0], "great man and be envied by the school it": [65535, 0], "man and be envied by the school it would": [65535, 0], "and be envied by the school it would have": [65535, 0], "be envied by the school it would have been": [65535, 0], "envied by the school it would have been music": [65535, 0], "by the school it would have been music to": [65535, 0], "the school it would have been music to his": [65535, 0], "school it would have been music to his soul": [65535, 0], "it would have been music to his soul to": [65535, 0], "would have been music to his soul to hear": [65535, 0], "have been music to his soul to hear the": [65535, 0], "been music to his soul to hear the whisperings": [65535, 0], "music to his soul to hear the whisperings look": [65535, 0], "to his soul to hear the whisperings look at": [65535, 0], "his soul to hear the whisperings look at him": [65535, 0], "soul to hear the whisperings look at him jim": [65535, 0], "to hear the whisperings look at him jim he's": [65535, 0], "hear the whisperings look at him jim he's a": [65535, 0], "the whisperings look at him jim he's a going": [65535, 0], "whisperings look at him jim he's a going up": [65535, 0], "look at him jim he's a going up there": [65535, 0], "at him jim he's a going up there say": [65535, 0], "him jim he's a going up there say look": [65535, 0], "jim he's a going up there say look he's": [65535, 0], "he's a going up there say look he's a": [65535, 0], "a going up there say look he's a going": [65535, 0], "going up there say look he's a going to": [65535, 0], "up there say look he's a going to shake": [65535, 0], "there say look he's a going to shake hands": [65535, 0], "say look he's a going to shake hands with": [65535, 0], "look he's a going to shake hands with him": [65535, 0], "he's a going to shake hands with him he": [65535, 0], "a going to shake hands with him he is": [65535, 0], "going to shake hands with him he is shaking": [65535, 0], "to shake hands with him he is shaking hands": [65535, 0], "shake hands with him he is shaking hands with": [65535, 0], "hands with him he is shaking hands with him": [65535, 0], "with him he is shaking hands with him by": [65535, 0], "him he is shaking hands with him by jings": [65535, 0], "he is shaking hands with him by jings don't": [65535, 0], "is shaking hands with him by jings don't you": [65535, 0], "shaking hands with him by jings don't you wish": [65535, 0], "hands with him by jings don't you wish you": [65535, 0], "with him by jings don't you wish you was": [65535, 0], "him by jings don't you wish you was jeff": [65535, 0], "by jings don't you wish you was jeff mr": [65535, 0], "jings don't you wish you was jeff mr walters": [65535, 0], "don't you wish you was jeff mr walters fell": [65535, 0], "you wish you was jeff mr walters fell to": [65535, 0], "wish you was jeff mr walters fell to showing": [65535, 0], "you was jeff mr walters fell to showing off": [65535, 0], "was jeff mr walters fell to showing off with": [65535, 0], "jeff mr walters fell to showing off with all": [65535, 0], "mr walters fell to showing off with all sorts": [65535, 0], "walters fell to showing off with all sorts of": [65535, 0], "fell to showing off with all sorts of official": [65535, 0], "to showing off with all sorts of official bustlings": [65535, 0], "showing off with all sorts of official bustlings and": [65535, 0], "off with all sorts of official bustlings and activities": [65535, 0], "with all sorts of official bustlings and activities giving": [65535, 0], "all sorts of official bustlings and activities giving orders": [65535, 0], "sorts of official bustlings and activities giving orders delivering": [65535, 0], "of official bustlings and activities giving orders delivering judgments": [65535, 0], "official bustlings and activities giving orders delivering judgments discharging": [65535, 0], "bustlings and activities giving orders delivering judgments discharging directions": [65535, 0], "and activities giving orders delivering judgments discharging directions here": [65535, 0], "activities giving orders delivering judgments discharging directions here there": [65535, 0], "giving orders delivering judgments discharging directions here there everywhere": [65535, 0], "orders delivering judgments discharging directions here there everywhere that": [65535, 0], "delivering judgments discharging directions here there everywhere that he": [65535, 0], "judgments discharging directions here there everywhere that he could": [65535, 0], "discharging directions here there everywhere that he could find": [65535, 0], "directions here there everywhere that he could find a": [65535, 0], "here there everywhere that he could find a target": [65535, 0], "there everywhere that he could find a target the": [65535, 0], "everywhere that he could find a target the librarian": [65535, 0], "that he could find a target the librarian showed": [65535, 0], "he could find a target the librarian showed off": [65535, 0], "could find a target the librarian showed off running": [65535, 0], "find a target the librarian showed off running hither": [65535, 0], "a target the librarian showed off running hither and": [65535, 0], "target the librarian showed off running hither and thither": [65535, 0], "the librarian showed off running hither and thither with": [65535, 0], "librarian showed off running hither and thither with his": [65535, 0], "showed off running hither and thither with his arms": [65535, 0], "off running hither and thither with his arms full": [65535, 0], "running hither and thither with his arms full of": [65535, 0], "hither and thither with his arms full of books": [65535, 0], "and thither with his arms full of books and": [65535, 0], "thither with his arms full of books and making": [65535, 0], "with his arms full of books and making a": [65535, 0], "his arms full of books and making a deal": [65535, 0], "arms full of books and making a deal of": [65535, 0], "full of books and making a deal of the": [65535, 0], "of books and making a deal of the splutter": [65535, 0], "books and making a deal of the splutter and": [65535, 0], "and making a deal of the splutter and fuss": [65535, 0], "making a deal of the splutter and fuss that": [65535, 0], "a deal of the splutter and fuss that insect": [65535, 0], "deal of the splutter and fuss that insect authority": [65535, 0], "of the splutter and fuss that insect authority delights": [65535, 0], "the splutter and fuss that insect authority delights in": [65535, 0], "splutter and fuss that insect authority delights in the": [65535, 0], "and fuss that insect authority delights in the young": [65535, 0], "fuss that insect authority delights in the young lady": [65535, 0], "that insect authority delights in the young lady teachers": [65535, 0], "insect authority delights in the young lady teachers showed": [65535, 0], "authority delights in the young lady teachers showed off": [65535, 0], "delights in the young lady teachers showed off bending": [65535, 0], "in the young lady teachers showed off bending sweetly": [65535, 0], "the young lady teachers showed off bending sweetly over": [65535, 0], "young lady teachers showed off bending sweetly over pupils": [65535, 0], "lady teachers showed off bending sweetly over pupils that": [65535, 0], "teachers showed off bending sweetly over pupils that were": [65535, 0], "showed off bending sweetly over pupils that were lately": [65535, 0], "off bending sweetly over pupils that were lately being": [65535, 0], "bending sweetly over pupils that were lately being boxed": [65535, 0], "sweetly over pupils that were lately being boxed lifting": [65535, 0], "over pupils that were lately being boxed lifting pretty": [65535, 0], "pupils that were lately being boxed lifting pretty warning": [65535, 0], "that were lately being boxed lifting pretty warning fingers": [65535, 0], "were lately being boxed lifting pretty warning fingers at": [65535, 0], "lately being boxed lifting pretty warning fingers at bad": [65535, 0], "being boxed lifting pretty warning fingers at bad little": [65535, 0], "boxed lifting pretty warning fingers at bad little boys": [65535, 0], "lifting pretty warning fingers at bad little boys and": [65535, 0], "pretty warning fingers at bad little boys and patting": [65535, 0], "warning fingers at bad little boys and patting good": [65535, 0], "fingers at bad little boys and patting good ones": [65535, 0], "at bad little boys and patting good ones lovingly": [65535, 0], "bad little boys and patting good ones lovingly the": [65535, 0], "little boys and patting good ones lovingly the young": [65535, 0], "boys and patting good ones lovingly the young gentlemen": [65535, 0], "and patting good ones lovingly the young gentlemen teachers": [65535, 0], "patting good ones lovingly the young gentlemen teachers showed": [65535, 0], "good ones lovingly the young gentlemen teachers showed off": [65535, 0], "ones lovingly the young gentlemen teachers showed off with": [65535, 0], "lovingly the young gentlemen teachers showed off with small": [65535, 0], "the young gentlemen teachers showed off with small scoldings": [65535, 0], "young gentlemen teachers showed off with small scoldings and": [65535, 0], "gentlemen teachers showed off with small scoldings and other": [65535, 0], "teachers showed off with small scoldings and other little": [65535, 0], "showed off with small scoldings and other little displays": [65535, 0], "off with small scoldings and other little displays of": [65535, 0], "with small scoldings and other little displays of authority": [65535, 0], "small scoldings and other little displays of authority and": [65535, 0], "scoldings and other little displays of authority and fine": [65535, 0], "and other little displays of authority and fine attention": [65535, 0], "other little displays of authority and fine attention to": [65535, 0], "little displays of authority and fine attention to discipline": [65535, 0], "displays of authority and fine attention to discipline and": [65535, 0], "of authority and fine attention to discipline and most": [65535, 0], "authority and fine attention to discipline and most of": [65535, 0], "and fine attention to discipline and most of the": [65535, 0], "fine attention to discipline and most of the teachers": [65535, 0], "attention to discipline and most of the teachers of": [65535, 0], "to discipline and most of the teachers of both": [65535, 0], "discipline and most of the teachers of both sexes": [65535, 0], "and most of the teachers of both sexes found": [65535, 0], "most of the teachers of both sexes found business": [65535, 0], "of the teachers of both sexes found business up": [65535, 0], "the teachers of both sexes found business up at": [65535, 0], "teachers of both sexes found business up at the": [65535, 0], "of both sexes found business up at the library": [65535, 0], "both sexes found business up at the library by": [65535, 0], "sexes found business up at the library by the": [65535, 0], "found business up at the library by the pulpit": [65535, 0], "business up at the library by the pulpit and": [65535, 0], "up at the library by the pulpit and it": [65535, 0], "at the library by the pulpit and it was": [65535, 0], "the library by the pulpit and it was business": [65535, 0], "library by the pulpit and it was business that": [65535, 0], "by the pulpit and it was business that frequently": [65535, 0], "the pulpit and it was business that frequently had": [65535, 0], "pulpit and it was business that frequently had to": [65535, 0], "and it was business that frequently had to be": [65535, 0], "it was business that frequently had to be done": [65535, 0], "was business that frequently had to be done over": [65535, 0], "business that frequently had to be done over again": [65535, 0], "that frequently had to be done over again two": [65535, 0], "frequently had to be done over again two or": [65535, 0], "had to be done over again two or three": [65535, 0], "to be done over again two or three times": [65535, 0], "be done over again two or three times with": [65535, 0], "done over again two or three times with much": [65535, 0], "over again two or three times with much seeming": [65535, 0], "again two or three times with much seeming vexation": [65535, 0], "two or three times with much seeming vexation the": [65535, 0], "or three times with much seeming vexation the little": [65535, 0], "three times with much seeming vexation the little girls": [65535, 0], "times with much seeming vexation the little girls showed": [65535, 0], "with much seeming vexation the little girls showed off": [65535, 0], "much seeming vexation the little girls showed off in": [65535, 0], "seeming vexation the little girls showed off in various": [65535, 0], "vexation the little girls showed off in various ways": [65535, 0], "the little girls showed off in various ways and": [65535, 0], "little girls showed off in various ways and the": [65535, 0], "girls showed off in various ways and the little": [65535, 0], "showed off in various ways and the little boys": [65535, 0], "off in various ways and the little boys showed": [65535, 0], "in various ways and the little boys showed off": [65535, 0], "various ways and the little boys showed off with": [65535, 0], "ways and the little boys showed off with such": [65535, 0], "and the little boys showed off with such diligence": [65535, 0], "the little boys showed off with such diligence that": [65535, 0], "little boys showed off with such diligence that the": [65535, 0], "boys showed off with such diligence that the air": [65535, 0], "showed off with such diligence that the air was": [65535, 0], "off with such diligence that the air was thick": [65535, 0], "with such diligence that the air was thick with": [65535, 0], "such diligence that the air was thick with paper": [65535, 0], "diligence that the air was thick with paper wads": [65535, 0], "that the air was thick with paper wads and": [65535, 0], "the air was thick with paper wads and the": [65535, 0], "air was thick with paper wads and the murmur": [65535, 0], "was thick with paper wads and the murmur of": [65535, 0], "thick with paper wads and the murmur of scufflings": [65535, 0], "with paper wads and the murmur of scufflings and": [65535, 0], "paper wads and the murmur of scufflings and above": [65535, 0], "wads and the murmur of scufflings and above it": [65535, 0], "and the murmur of scufflings and above it all": [65535, 0], "the murmur of scufflings and above it all the": [65535, 0], "murmur of scufflings and above it all the great": [65535, 0], "of scufflings and above it all the great man": [65535, 0], "scufflings and above it all the great man sat": [65535, 0], "and above it all the great man sat and": [65535, 0], "above it all the great man sat and beamed": [65535, 0], "it all the great man sat and beamed a": [65535, 0], "all the great man sat and beamed a majestic": [65535, 0], "the great man sat and beamed a majestic judicial": [65535, 0], "great man sat and beamed a majestic judicial smile": [65535, 0], "man sat and beamed a majestic judicial smile upon": [65535, 0], "sat and beamed a majestic judicial smile upon all": [65535, 0], "and beamed a majestic judicial smile upon all the": [65535, 0], "beamed a majestic judicial smile upon all the house": [65535, 0], "a majestic judicial smile upon all the house and": [65535, 0], "majestic judicial smile upon all the house and warmed": [65535, 0], "judicial smile upon all the house and warmed himself": [65535, 0], "smile upon all the house and warmed himself in": [65535, 0], "upon all the house and warmed himself in the": [65535, 0], "all the house and warmed himself in the sun": [65535, 0], "the house and warmed himself in the sun of": [65535, 0], "house and warmed himself in the sun of his": [65535, 0], "and warmed himself in the sun of his own": [65535, 0], "warmed himself in the sun of his own grandeur": [65535, 0], "himself in the sun of his own grandeur for": [65535, 0], "in the sun of his own grandeur for he": [65535, 0], "the sun of his own grandeur for he was": [65535, 0], "sun of his own grandeur for he was showing": [65535, 0], "of his own grandeur for he was showing off": [65535, 0], "his own grandeur for he was showing off too": [65535, 0], "own grandeur for he was showing off too there": [65535, 0], "grandeur for he was showing off too there was": [65535, 0], "for he was showing off too there was only": [65535, 0], "he was showing off too there was only one": [65535, 0], "was showing off too there was only one thing": [65535, 0], "showing off too there was only one thing wanting": [65535, 0], "off too there was only one thing wanting to": [65535, 0], "too there was only one thing wanting to make": [65535, 0], "there was only one thing wanting to make mr": [65535, 0], "was only one thing wanting to make mr walters'": [65535, 0], "only one thing wanting to make mr walters' ecstasy": [65535, 0], "one thing wanting to make mr walters' ecstasy complete": [65535, 0], "thing wanting to make mr walters' ecstasy complete and": [65535, 0], "wanting to make mr walters' ecstasy complete and that": [65535, 0], "to make mr walters' ecstasy complete and that was": [65535, 0], "make mr walters' ecstasy complete and that was a": [65535, 0], "mr walters' ecstasy complete and that was a chance": [65535, 0], "walters' ecstasy complete and that was a chance to": [65535, 0], "ecstasy complete and that was a chance to deliver": [65535, 0], "complete and that was a chance to deliver a": [65535, 0], "and that was a chance to deliver a bible": [65535, 0], "that was a chance to deliver a bible prize": [65535, 0], "was a chance to deliver a bible prize and": [65535, 0], "a chance to deliver a bible prize and exhibit": [65535, 0], "chance to deliver a bible prize and exhibit a": [65535, 0], "to deliver a bible prize and exhibit a prodigy": [65535, 0], "deliver a bible prize and exhibit a prodigy several": [65535, 0], "a bible prize and exhibit a prodigy several pupils": [65535, 0], "bible prize and exhibit a prodigy several pupils had": [65535, 0], "prize and exhibit a prodigy several pupils had a": [65535, 0], "and exhibit a prodigy several pupils had a few": [65535, 0], "exhibit a prodigy several pupils had a few yellow": [65535, 0], "a prodigy several pupils had a few yellow tickets": [65535, 0], "prodigy several pupils had a few yellow tickets but": [65535, 0], "several pupils had a few yellow tickets but none": [65535, 0], "pupils had a few yellow tickets but none had": [65535, 0], "had a few yellow tickets but none had enough": [65535, 0], "a few yellow tickets but none had enough he": [65535, 0], "few yellow tickets but none had enough he had": [65535, 0], "yellow tickets but none had enough he had been": [65535, 0], "tickets but none had enough he had been around": [65535, 0], "but none had enough he had been around among": [65535, 0], "none had enough he had been around among the": [65535, 0], "had enough he had been around among the star": [65535, 0], "enough he had been around among the star pupils": [65535, 0], "he had been around among the star pupils inquiring": [65535, 0], "had been around among the star pupils inquiring he": [65535, 0], "been around among the star pupils inquiring he would": [65535, 0], "around among the star pupils inquiring he would have": [65535, 0], "among the star pupils inquiring he would have given": [65535, 0], "the star pupils inquiring he would have given worlds": [65535, 0], "star pupils inquiring he would have given worlds now": [65535, 0], "pupils inquiring he would have given worlds now to": [65535, 0], "inquiring he would have given worlds now to have": [65535, 0], "he would have given worlds now to have that": [65535, 0], "would have given worlds now to have that german": [65535, 0], "have given worlds now to have that german lad": [65535, 0], "given worlds now to have that german lad back": [65535, 0], "worlds now to have that german lad back again": [65535, 0], "now to have that german lad back again with": [65535, 0], "to have that german lad back again with a": [65535, 0], "have that german lad back again with a sound": [65535, 0], "that german lad back again with a sound mind": [65535, 0], "german lad back again with a sound mind and": [65535, 0], "lad back again with a sound mind and now": [65535, 0], "back again with a sound mind and now at": [65535, 0], "again with a sound mind and now at this": [65535, 0], "with a sound mind and now at this moment": [65535, 0], "a sound mind and now at this moment when": [65535, 0], "sound mind and now at this moment when hope": [65535, 0], "mind and now at this moment when hope was": [65535, 0], "and now at this moment when hope was dead": [65535, 0], "now at this moment when hope was dead tom": [65535, 0], "at this moment when hope was dead tom sawyer": [65535, 0], "this moment when hope was dead tom sawyer came": [65535, 0], "moment when hope was dead tom sawyer came forward": [65535, 0], "when hope was dead tom sawyer came forward with": [65535, 0], "hope was dead tom sawyer came forward with nine": [65535, 0], "was dead tom sawyer came forward with nine yellow": [65535, 0], "dead tom sawyer came forward with nine yellow tickets": [65535, 0], "tom sawyer came forward with nine yellow tickets nine": [65535, 0], "sawyer came forward with nine yellow tickets nine red": [65535, 0], "came forward with nine yellow tickets nine red tickets": [65535, 0], "forward with nine yellow tickets nine red tickets and": [65535, 0], "with nine yellow tickets nine red tickets and ten": [65535, 0], "nine yellow tickets nine red tickets and ten blue": [65535, 0], "yellow tickets nine red tickets and ten blue ones": [65535, 0], "tickets nine red tickets and ten blue ones and": [65535, 0], "nine red tickets and ten blue ones and demanded": [65535, 0], "red tickets and ten blue ones and demanded a": [65535, 0], "tickets and ten blue ones and demanded a bible": [65535, 0], "and ten blue ones and demanded a bible this": [65535, 0], "ten blue ones and demanded a bible this was": [65535, 0], "blue ones and demanded a bible this was a": [65535, 0], "ones and demanded a bible this was a thunderbolt": [65535, 0], "and demanded a bible this was a thunderbolt out": [65535, 0], "demanded a bible this was a thunderbolt out of": [65535, 0], "a bible this was a thunderbolt out of a": [65535, 0], "bible this was a thunderbolt out of a clear": [65535, 0], "this was a thunderbolt out of a clear sky": [65535, 0], "was a thunderbolt out of a clear sky walters": [65535, 0], "a thunderbolt out of a clear sky walters was": [65535, 0], "thunderbolt out of a clear sky walters was not": [65535, 0], "out of a clear sky walters was not expecting": [65535, 0], "of a clear sky walters was not expecting an": [65535, 0], "a clear sky walters was not expecting an application": [65535, 0], "clear sky walters was not expecting an application from": [65535, 0], "sky walters was not expecting an application from this": [65535, 0], "walters was not expecting an application from this source": [65535, 0], "was not expecting an application from this source for": [65535, 0], "not expecting an application from this source for the": [65535, 0], "expecting an application from this source for the next": [65535, 0], "an application from this source for the next ten": [65535, 0], "application from this source for the next ten years": [65535, 0], "from this source for the next ten years but": [65535, 0], "this source for the next ten years but there": [65535, 0], "source for the next ten years but there was": [65535, 0], "for the next ten years but there was no": [65535, 0], "the next ten years but there was no getting": [65535, 0], "next ten years but there was no getting around": [65535, 0], "ten years but there was no getting around it": [65535, 0], "years but there was no getting around it here": [65535, 0], "but there was no getting around it here were": [65535, 0], "there was no getting around it here were the": [65535, 0], "was no getting around it here were the certified": [65535, 0], "no getting around it here were the certified checks": [65535, 0], "getting around it here were the certified checks and": [65535, 0], "around it here were the certified checks and they": [65535, 0], "it here were the certified checks and they were": [65535, 0], "here were the certified checks and they were good": [65535, 0], "were the certified checks and they were good for": [65535, 0], "the certified checks and they were good for their": [65535, 0], "certified checks and they were good for their face": [65535, 0], "checks and they were good for their face tom": [65535, 0], "and they were good for their face tom was": [65535, 0], "they were good for their face tom was therefore": [65535, 0], "were good for their face tom was therefore elevated": [65535, 0], "good for their face tom was therefore elevated to": [65535, 0], "for their face tom was therefore elevated to a": [65535, 0], "their face tom was therefore elevated to a place": [65535, 0], "face tom was therefore elevated to a place with": [65535, 0], "tom was therefore elevated to a place with the": [65535, 0], "was therefore elevated to a place with the judge": [65535, 0], "therefore elevated to a place with the judge and": [65535, 0], "elevated to a place with the judge and the": [65535, 0], "to a place with the judge and the other": [65535, 0], "a place with the judge and the other elect": [65535, 0], "place with the judge and the other elect and": [65535, 0], "with the judge and the other elect and the": [65535, 0], "the judge and the other elect and the great": [65535, 0], "judge and the other elect and the great news": [65535, 0], "and the other elect and the great news was": [65535, 0], "the other elect and the great news was announced": [65535, 0], "other elect and the great news was announced from": [65535, 0], "elect and the great news was announced from headquarters": [65535, 0], "and the great news was announced from headquarters it": [65535, 0], "the great news was announced from headquarters it was": [65535, 0], "great news was announced from headquarters it was the": [65535, 0], "news was announced from headquarters it was the most": [65535, 0], "was announced from headquarters it was the most stunning": [65535, 0], "announced from headquarters it was the most stunning surprise": [65535, 0], "from headquarters it was the most stunning surprise of": [65535, 0], "headquarters it was the most stunning surprise of the": [65535, 0], "it was the most stunning surprise of the decade": [65535, 0], "was the most stunning surprise of the decade and": [65535, 0], "the most stunning surprise of the decade and so": [65535, 0], "most stunning surprise of the decade and so profound": [65535, 0], "stunning surprise of the decade and so profound was": [65535, 0], "surprise of the decade and so profound was the": [65535, 0], "of the decade and so profound was the sensation": [65535, 0], "the decade and so profound was the sensation that": [65535, 0], "decade and so profound was the sensation that it": [65535, 0], "and so profound was the sensation that it lifted": [65535, 0], "so profound was the sensation that it lifted the": [65535, 0], "profound was the sensation that it lifted the new": [65535, 0], "was the sensation that it lifted the new hero": [65535, 0], "the sensation that it lifted the new hero up": [65535, 0], "sensation that it lifted the new hero up to": [65535, 0], "that it lifted the new hero up to the": [65535, 0], "it lifted the new hero up to the judicial": [65535, 0], "lifted the new hero up to the judicial one's": [65535, 0], "the new hero up to the judicial one's altitude": [65535, 0], "new hero up to the judicial one's altitude and": [65535, 0], "hero up to the judicial one's altitude and the": [65535, 0], "up to the judicial one's altitude and the school": [65535, 0], "to the judicial one's altitude and the school had": [65535, 0], "the judicial one's altitude and the school had two": [65535, 0], "judicial one's altitude and the school had two marvels": [65535, 0], "one's altitude and the school had two marvels to": [65535, 0], "altitude and the school had two marvels to gaze": [65535, 0], "and the school had two marvels to gaze upon": [65535, 0], "the school had two marvels to gaze upon in": [65535, 0], "school had two marvels to gaze upon in place": [65535, 0], "had two marvels to gaze upon in place of": [65535, 0], "two marvels to gaze upon in place of one": [65535, 0], "marvels to gaze upon in place of one the": [65535, 0], "to gaze upon in place of one the boys": [65535, 0], "gaze upon in place of one the boys were": [65535, 0], "upon in place of one the boys were all": [65535, 0], "in place of one the boys were all eaten": [65535, 0], "place of one the boys were all eaten up": [65535, 0], "of one the boys were all eaten up with": [65535, 0], "one the boys were all eaten up with envy": [65535, 0], "the boys were all eaten up with envy but": [65535, 0], "boys were all eaten up with envy but those": [65535, 0], "were all eaten up with envy but those that": [65535, 0], "all eaten up with envy but those that suffered": [65535, 0], "eaten up with envy but those that suffered the": [65535, 0], "up with envy but those that suffered the bitterest": [65535, 0], "with envy but those that suffered the bitterest pangs": [65535, 0], "envy but those that suffered the bitterest pangs were": [65535, 0], "but those that suffered the bitterest pangs were those": [65535, 0], "those that suffered the bitterest pangs were those who": [65535, 0], "that suffered the bitterest pangs were those who perceived": [65535, 0], "suffered the bitterest pangs were those who perceived too": [65535, 0], "the bitterest pangs were those who perceived too late": [65535, 0], "bitterest pangs were those who perceived too late that": [65535, 0], "pangs were those who perceived too late that they": [65535, 0], "were those who perceived too late that they themselves": [65535, 0], "those who perceived too late that they themselves had": [65535, 0], "who perceived too late that they themselves had contributed": [65535, 0], "perceived too late that they themselves had contributed to": [65535, 0], "too late that they themselves had contributed to this": [65535, 0], "late that they themselves had contributed to this hated": [65535, 0], "that they themselves had contributed to this hated splendor": [65535, 0], "they themselves had contributed to this hated splendor by": [65535, 0], "themselves had contributed to this hated splendor by trading": [65535, 0], "had contributed to this hated splendor by trading tickets": [65535, 0], "contributed to this hated splendor by trading tickets to": [65535, 0], "to this hated splendor by trading tickets to tom": [65535, 0], "this hated splendor by trading tickets to tom for": [65535, 0], "hated splendor by trading tickets to tom for the": [65535, 0], "splendor by trading tickets to tom for the wealth": [65535, 0], "by trading tickets to tom for the wealth he": [65535, 0], "trading tickets to tom for the wealth he had": [65535, 0], "tickets to tom for the wealth he had amassed": [65535, 0], "to tom for the wealth he had amassed in": [65535, 0], "tom for the wealth he had amassed in selling": [65535, 0], "for the wealth he had amassed in selling whitewashing": [65535, 0], "the wealth he had amassed in selling whitewashing privileges": [65535, 0], "wealth he had amassed in selling whitewashing privileges these": [65535, 0], "he had amassed in selling whitewashing privileges these despised": [65535, 0], "had amassed in selling whitewashing privileges these despised themselves": [65535, 0], "amassed in selling whitewashing privileges these despised themselves as": [65535, 0], "in selling whitewashing privileges these despised themselves as being": [65535, 0], "selling whitewashing privileges these despised themselves as being the": [65535, 0], "whitewashing privileges these despised themselves as being the dupes": [65535, 0], "privileges these despised themselves as being the dupes of": [65535, 0], "these despised themselves as being the dupes of a": [65535, 0], "despised themselves as being the dupes of a wily": [65535, 0], "themselves as being the dupes of a wily fraud": [65535, 0], "as being the dupes of a wily fraud a": [65535, 0], "being the dupes of a wily fraud a guileful": [65535, 0], "the dupes of a wily fraud a guileful snake": [65535, 0], "dupes of a wily fraud a guileful snake in": [65535, 0], "of a wily fraud a guileful snake in the": [65535, 0], "a wily fraud a guileful snake in the grass": [65535, 0], "wily fraud a guileful snake in the grass the": [65535, 0], "fraud a guileful snake in the grass the prize": [65535, 0], "a guileful snake in the grass the prize was": [65535, 0], "guileful snake in the grass the prize was delivered": [65535, 0], "snake in the grass the prize was delivered to": [65535, 0], "in the grass the prize was delivered to tom": [65535, 0], "the grass the prize was delivered to tom with": [65535, 0], "grass the prize was delivered to tom with as": [65535, 0], "the prize was delivered to tom with as much": [65535, 0], "prize was delivered to tom with as much effusion": [65535, 0], "was delivered to tom with as much effusion as": [65535, 0], "delivered to tom with as much effusion as the": [65535, 0], "to tom with as much effusion as the superintendent": [65535, 0], "tom with as much effusion as the superintendent could": [65535, 0], "with as much effusion as the superintendent could pump": [65535, 0], "as much effusion as the superintendent could pump up": [65535, 0], "much effusion as the superintendent could pump up under": [65535, 0], "effusion as the superintendent could pump up under the": [65535, 0], "as the superintendent could pump up under the circumstances": [65535, 0], "the superintendent could pump up under the circumstances but": [65535, 0], "superintendent could pump up under the circumstances but it": [65535, 0], "could pump up under the circumstances but it lacked": [65535, 0], "pump up under the circumstances but it lacked somewhat": [65535, 0], "up under the circumstances but it lacked somewhat of": [65535, 0], "under the circumstances but it lacked somewhat of the": [65535, 0], "the circumstances but it lacked somewhat of the true": [65535, 0], "circumstances but it lacked somewhat of the true gush": [65535, 0], "but it lacked somewhat of the true gush for": [65535, 0], "it lacked somewhat of the true gush for the": [65535, 0], "lacked somewhat of the true gush for the poor": [65535, 0], "somewhat of the true gush for the poor fellow's": [65535, 0], "of the true gush for the poor fellow's instinct": [65535, 0], "the true gush for the poor fellow's instinct taught": [65535, 0], "true gush for the poor fellow's instinct taught him": [65535, 0], "gush for the poor fellow's instinct taught him that": [65535, 0], "for the poor fellow's instinct taught him that there": [65535, 0], "the poor fellow's instinct taught him that there was": [65535, 0], "poor fellow's instinct taught him that there was a": [65535, 0], "fellow's instinct taught him that there was a mystery": [65535, 0], "instinct taught him that there was a mystery here": [65535, 0], "taught him that there was a mystery here that": [65535, 0], "him that there was a mystery here that could": [65535, 0], "that there was a mystery here that could not": [65535, 0], "there was a mystery here that could not well": [65535, 0], "was a mystery here that could not well bear": [65535, 0], "a mystery here that could not well bear the": [65535, 0], "mystery here that could not well bear the light": [65535, 0], "here that could not well bear the light perhaps": [65535, 0], "that could not well bear the light perhaps it": [65535, 0], "could not well bear the light perhaps it was": [65535, 0], "not well bear the light perhaps it was simply": [65535, 0], "well bear the light perhaps it was simply preposterous": [65535, 0], "bear the light perhaps it was simply preposterous that": [65535, 0], "the light perhaps it was simply preposterous that this": [65535, 0], "light perhaps it was simply preposterous that this boy": [65535, 0], "perhaps it was simply preposterous that this boy had": [65535, 0], "it was simply preposterous that this boy had warehoused": [65535, 0], "was simply preposterous that this boy had warehoused two": [65535, 0], "simply preposterous that this boy had warehoused two thousand": [65535, 0], "preposterous that this boy had warehoused two thousand sheaves": [65535, 0], "that this boy had warehoused two thousand sheaves of": [65535, 0], "this boy had warehoused two thousand sheaves of scriptural": [65535, 0], "boy had warehoused two thousand sheaves of scriptural wisdom": [65535, 0], "had warehoused two thousand sheaves of scriptural wisdom on": [65535, 0], "warehoused two thousand sheaves of scriptural wisdom on his": [65535, 0], "two thousand sheaves of scriptural wisdom on his premises": [65535, 0], "thousand sheaves of scriptural wisdom on his premises a": [65535, 0], "sheaves of scriptural wisdom on his premises a dozen": [65535, 0], "of scriptural wisdom on his premises a dozen would": [65535, 0], "scriptural wisdom on his premises a dozen would strain": [65535, 0], "wisdom on his premises a dozen would strain his": [65535, 0], "on his premises a dozen would strain his capacity": [65535, 0], "his premises a dozen would strain his capacity without": [65535, 0], "premises a dozen would strain his capacity without a": [65535, 0], "a dozen would strain his capacity without a doubt": [65535, 0], "dozen would strain his capacity without a doubt amy": [65535, 0], "would strain his capacity without a doubt amy lawrence": [65535, 0], "strain his capacity without a doubt amy lawrence was": [65535, 0], "his capacity without a doubt amy lawrence was proud": [65535, 0], "capacity without a doubt amy lawrence was proud and": [65535, 0], "without a doubt amy lawrence was proud and glad": [65535, 0], "a doubt amy lawrence was proud and glad and": [65535, 0], "doubt amy lawrence was proud and glad and she": [65535, 0], "amy lawrence was proud and glad and she tried": [65535, 0], "lawrence was proud and glad and she tried to": [65535, 0], "was proud and glad and she tried to make": [65535, 0], "proud and glad and she tried to make tom": [65535, 0], "and glad and she tried to make tom see": [65535, 0], "glad and she tried to make tom see it": [65535, 0], "and she tried to make tom see it in": [65535, 0], "she tried to make tom see it in her": [65535, 0], "tried to make tom see it in her face": [65535, 0], "to make tom see it in her face but": [65535, 0], "make tom see it in her face but he": [65535, 0], "tom see it in her face but he wouldn't": [65535, 0], "see it in her face but he wouldn't look": [65535, 0], "it in her face but he wouldn't look she": [65535, 0], "in her face but he wouldn't look she wondered": [65535, 0], "her face but he wouldn't look she wondered then": [65535, 0], "face but he wouldn't look she wondered then she": [65535, 0], "but he wouldn't look she wondered then she was": [65535, 0], "he wouldn't look she wondered then she was just": [65535, 0], "wouldn't look she wondered then she was just a": [65535, 0], "look she wondered then she was just a grain": [65535, 0], "she wondered then she was just a grain troubled": [65535, 0], "wondered then she was just a grain troubled next": [65535, 0], "then she was just a grain troubled next a": [65535, 0], "she was just a grain troubled next a dim": [65535, 0], "was just a grain troubled next a dim suspicion": [65535, 0], "just a grain troubled next a dim suspicion came": [65535, 0], "a grain troubled next a dim suspicion came and": [65535, 0], "grain troubled next a dim suspicion came and went": [65535, 0], "troubled next a dim suspicion came and went came": [65535, 0], "next a dim suspicion came and went came again": [65535, 0], "a dim suspicion came and went came again she": [65535, 0], "dim suspicion came and went came again she watched": [65535, 0], "suspicion came and went came again she watched a": [65535, 0], "came and went came again she watched a furtive": [65535, 0], "and went came again she watched a furtive glance": [65535, 0], "went came again she watched a furtive glance told": [65535, 0], "came again she watched a furtive glance told her": [65535, 0], "again she watched a furtive glance told her worlds": [65535, 0], "she watched a furtive glance told her worlds and": [65535, 0], "watched a furtive glance told her worlds and then": [65535, 0], "a furtive glance told her worlds and then her": [65535, 0], "furtive glance told her worlds and then her heart": [65535, 0], "glance told her worlds and then her heart broke": [65535, 0], "told her worlds and then her heart broke and": [65535, 0], "her worlds and then her heart broke and she": [65535, 0], "worlds and then her heart broke and she was": [65535, 0], "and then her heart broke and she was jealous": [65535, 0], "then her heart broke and she was jealous and": [65535, 0], "her heart broke and she was jealous and angry": [65535, 0], "heart broke and she was jealous and angry and": [65535, 0], "broke and she was jealous and angry and the": [65535, 0], "and she was jealous and angry and the tears": [65535, 0], "she was jealous and angry and the tears came": [65535, 0], "was jealous and angry and the tears came and": [65535, 0], "jealous and angry and the tears came and she": [65535, 0], "and angry and the tears came and she hated": [65535, 0], "angry and the tears came and she hated everybody": [65535, 0], "and the tears came and she hated everybody tom": [65535, 0], "the tears came and she hated everybody tom most": [65535, 0], "tears came and she hated everybody tom most of": [65535, 0], "came and she hated everybody tom most of all": [65535, 0], "and she hated everybody tom most of all she": [65535, 0], "she hated everybody tom most of all she thought": [65535, 0], "hated everybody tom most of all she thought tom": [65535, 0], "everybody tom most of all she thought tom was": [65535, 0], "tom most of all she thought tom was introduced": [65535, 0], "most of all she thought tom was introduced to": [65535, 0], "of all she thought tom was introduced to the": [65535, 0], "all she thought tom was introduced to the judge": [65535, 0], "she thought tom was introduced to the judge but": [65535, 0], "thought tom was introduced to the judge but his": [65535, 0], "tom was introduced to the judge but his tongue": [65535, 0], "was introduced to the judge but his tongue was": [65535, 0], "introduced to the judge but his tongue was tied": [65535, 0], "to the judge but his tongue was tied his": [65535, 0], "the judge but his tongue was tied his breath": [65535, 0], "judge but his tongue was tied his breath would": [65535, 0], "but his tongue was tied his breath would hardly": [65535, 0], "his tongue was tied his breath would hardly come": [65535, 0], "tongue was tied his breath would hardly come his": [65535, 0], "was tied his breath would hardly come his heart": [65535, 0], "tied his breath would hardly come his heart quaked": [65535, 0], "his breath would hardly come his heart quaked partly": [65535, 0], "breath would hardly come his heart quaked partly because": [65535, 0], "would hardly come his heart quaked partly because of": [65535, 0], "hardly come his heart quaked partly because of the": [65535, 0], "come his heart quaked partly because of the awful": [65535, 0], "his heart quaked partly because of the awful greatness": [65535, 0], "heart quaked partly because of the awful greatness of": [65535, 0], "quaked partly because of the awful greatness of the": [65535, 0], "partly because of the awful greatness of the man": [65535, 0], "because of the awful greatness of the man but": [65535, 0], "of the awful greatness of the man but mainly": [65535, 0], "the awful greatness of the man but mainly because": [65535, 0], "awful greatness of the man but mainly because he": [65535, 0], "greatness of the man but mainly because he was": [65535, 0], "of the man but mainly because he was her": [65535, 0], "the man but mainly because he was her parent": [65535, 0], "man but mainly because he was her parent he": [65535, 0], "but mainly because he was her parent he would": [65535, 0], "mainly because he was her parent he would have": [65535, 0], "because he was her parent he would have liked": [65535, 0], "he was her parent he would have liked to": [65535, 0], "was her parent he would have liked to fall": [65535, 0], "her parent he would have liked to fall down": [65535, 0], "parent he would have liked to fall down and": [65535, 0], "he would have liked to fall down and worship": [65535, 0], "would have liked to fall down and worship him": [65535, 0], "have liked to fall down and worship him if": [65535, 0], "liked to fall down and worship him if it": [65535, 0], "to fall down and worship him if it were": [65535, 0], "fall down and worship him if it were in": [65535, 0], "down and worship him if it were in the": [65535, 0], "and worship him if it were in the dark": [65535, 0], "worship him if it were in the dark the": [65535, 0], "him if it were in the dark the judge": [65535, 0], "if it were in the dark the judge put": [65535, 0], "it were in the dark the judge put his": [65535, 0], "were in the dark the judge put his hand": [65535, 0], "in the dark the judge put his hand on": [65535, 0], "the dark the judge put his hand on tom's": [65535, 0], "dark the judge put his hand on tom's head": [65535, 0], "the judge put his hand on tom's head and": [65535, 0], "judge put his hand on tom's head and called": [65535, 0], "put his hand on tom's head and called him": [65535, 0], "his hand on tom's head and called him a": [65535, 0], "hand on tom's head and called him a fine": [65535, 0], "on tom's head and called him a fine little": [65535, 0], "tom's head and called him a fine little man": [65535, 0], "head and called him a fine little man and": [65535, 0], "and called him a fine little man and asked": [65535, 0], "called him a fine little man and asked him": [65535, 0], "him a fine little man and asked him what": [65535, 0], "a fine little man and asked him what his": [65535, 0], "fine little man and asked him what his name": [65535, 0], "little man and asked him what his name was": [65535, 0], "man and asked him what his name was the": [65535, 0], "and asked him what his name was the boy": [65535, 0], "asked him what his name was the boy stammered": [65535, 0], "him what his name was the boy stammered gasped": [65535, 0], "what his name was the boy stammered gasped and": [65535, 0], "his name was the boy stammered gasped and got": [65535, 0], "name was the boy stammered gasped and got it": [65535, 0], "was the boy stammered gasped and got it out": [65535, 0], "the boy stammered gasped and got it out tom": [65535, 0], "boy stammered gasped and got it out tom oh": [65535, 0], "stammered gasped and got it out tom oh no": [65535, 0], "gasped and got it out tom oh no not": [65535, 0], "and got it out tom oh no not tom": [65535, 0], "got it out tom oh no not tom it": [65535, 0], "it out tom oh no not tom it is": [65535, 0], "out tom oh no not tom it is thomas": [65535, 0], "tom oh no not tom it is thomas ah": [65535, 0], "oh no not tom it is thomas ah that's": [65535, 0], "no not tom it is thomas ah that's it": [65535, 0], "not tom it is thomas ah that's it i": [65535, 0], "tom it is thomas ah that's it i thought": [65535, 0], "it is thomas ah that's it i thought there": [65535, 0], "is thomas ah that's it i thought there was": [65535, 0], "thomas ah that's it i thought there was more": [65535, 0], "ah that's it i thought there was more to": [65535, 0], "that's it i thought there was more to it": [65535, 0], "it i thought there was more to it maybe": [65535, 0], "i thought there was more to it maybe that's": [65535, 0], "thought there was more to it maybe that's very": [65535, 0], "there was more to it maybe that's very well": [65535, 0], "was more to it maybe that's very well but": [65535, 0], "more to it maybe that's very well but you've": [65535, 0], "to it maybe that's very well but you've another": [65535, 0], "it maybe that's very well but you've another one": [65535, 0], "maybe that's very well but you've another one i": [65535, 0], "that's very well but you've another one i daresay": [65535, 0], "very well but you've another one i daresay and": [65535, 0], "well but you've another one i daresay and you'll": [65535, 0], "but you've another one i daresay and you'll tell": [65535, 0], "you've another one i daresay and you'll tell it": [65535, 0], "another one i daresay and you'll tell it to": [65535, 0], "one i daresay and you'll tell it to me": [65535, 0], "i daresay and you'll tell it to me won't": [65535, 0], "daresay and you'll tell it to me won't you": [65535, 0], "and you'll tell it to me won't you tell": [65535, 0], "you'll tell it to me won't you tell the": [65535, 0], "tell it to me won't you tell the gentleman": [65535, 0], "it to me won't you tell the gentleman your": [65535, 0], "to me won't you tell the gentleman your other": [65535, 0], "me won't you tell the gentleman your other name": [65535, 0], "won't you tell the gentleman your other name thomas": [65535, 0], "you tell the gentleman your other name thomas said": [65535, 0], "tell the gentleman your other name thomas said walters": [65535, 0], "the gentleman your other name thomas said walters and": [65535, 0], "gentleman your other name thomas said walters and say": [65535, 0], "your other name thomas said walters and say sir": [65535, 0], "other name thomas said walters and say sir you": [65535, 0], "name thomas said walters and say sir you mustn't": [65535, 0], "thomas said walters and say sir you mustn't forget": [65535, 0], "said walters and say sir you mustn't forget your": [65535, 0], "walters and say sir you mustn't forget your manners": [65535, 0], "and say sir you mustn't forget your manners thomas": [65535, 0], "say sir you mustn't forget your manners thomas sawyer": [65535, 0], "sir you mustn't forget your manners thomas sawyer sir": [65535, 0], "you mustn't forget your manners thomas sawyer sir that's": [65535, 0], "mustn't forget your manners thomas sawyer sir that's it": [65535, 0], "forget your manners thomas sawyer sir that's it that's": [65535, 0], "your manners thomas sawyer sir that's it that's a": [65535, 0], "manners thomas sawyer sir that's it that's a good": [65535, 0], "thomas sawyer sir that's it that's a good boy": [65535, 0], "sawyer sir that's it that's a good boy fine": [65535, 0], "sir that's it that's a good boy fine boy": [65535, 0], "that's it that's a good boy fine boy fine": [65535, 0], "it that's a good boy fine boy fine manly": [65535, 0], "that's a good boy fine boy fine manly little": [65535, 0], "a good boy fine boy fine manly little fellow": [65535, 0], "good boy fine boy fine manly little fellow two": [65535, 0], "boy fine boy fine manly little fellow two thousand": [65535, 0], "fine boy fine manly little fellow two thousand verses": [65535, 0], "boy fine manly little fellow two thousand verses is": [65535, 0], "fine manly little fellow two thousand verses is a": [65535, 0], "manly little fellow two thousand verses is a great": [65535, 0], "little fellow two thousand verses is a great many": [65535, 0], "fellow two thousand verses is a great many very": [65535, 0], "two thousand verses is a great many very very": [65535, 0], "thousand verses is a great many very very great": [65535, 0], "verses is a great many very very great many": [65535, 0], "is a great many very very great many and": [65535, 0], "a great many very very great many and you": [65535, 0], "great many very very great many and you never": [65535, 0], "many very very great many and you never can": [65535, 0], "very very great many and you never can be": [65535, 0], "very great many and you never can be sorry": [65535, 0], "great many and you never can be sorry for": [65535, 0], "many and you never can be sorry for the": [65535, 0], "and you never can be sorry for the trouble": [65535, 0], "you never can be sorry for the trouble you": [65535, 0], "never can be sorry for the trouble you took": [65535, 0], "can be sorry for the trouble you took to": [65535, 0], "be sorry for the trouble you took to learn": [65535, 0], "sorry for the trouble you took to learn them": [65535, 0], "for the trouble you took to learn them for": [65535, 0], "the trouble you took to learn them for knowledge": [65535, 0], "trouble you took to learn them for knowledge is": [65535, 0], "you took to learn them for knowledge is worth": [65535, 0], "took to learn them for knowledge is worth more": [65535, 0], "to learn them for knowledge is worth more than": [65535, 0], "learn them for knowledge is worth more than anything": [65535, 0], "them for knowledge is worth more than anything there": [65535, 0], "for knowledge is worth more than anything there is": [65535, 0], "knowledge is worth more than anything there is in": [65535, 0], "is worth more than anything there is in the": [65535, 0], "worth more than anything there is in the world": [65535, 0], "more than anything there is in the world it's": [65535, 0], "than anything there is in the world it's what": [65535, 0], "anything there is in the world it's what makes": [65535, 0], "there is in the world it's what makes great": [65535, 0], "is in the world it's what makes great men": [65535, 0], "in the world it's what makes great men and": [65535, 0], "the world it's what makes great men and good": [65535, 0], "world it's what makes great men and good men": [65535, 0], "it's what makes great men and good men you'll": [65535, 0], "what makes great men and good men you'll be": [65535, 0], "makes great men and good men you'll be a": [65535, 0], "great men and good men you'll be a great": [65535, 0], "men and good men you'll be a great man": [65535, 0], "and good men you'll be a great man and": [65535, 0], "good men you'll be a great man and a": [65535, 0], "men you'll be a great man and a good": [65535, 0], "you'll be a great man and a good man": [65535, 0], "be a great man and a good man yourself": [65535, 0], "a great man and a good man yourself some": [65535, 0], "great man and a good man yourself some day": [65535, 0], "man and a good man yourself some day thomas": [65535, 0], "and a good man yourself some day thomas and": [65535, 0], "a good man yourself some day thomas and then": [65535, 0], "good man yourself some day thomas and then you'll": [65535, 0], "man yourself some day thomas and then you'll look": [65535, 0], "yourself some day thomas and then you'll look back": [65535, 0], "some day thomas and then you'll look back and": [65535, 0], "day thomas and then you'll look back and say": [65535, 0], "thomas and then you'll look back and say it's": [65535, 0], "and then you'll look back and say it's all": [65535, 0], "then you'll look back and say it's all owing": [65535, 0], "you'll look back and say it's all owing to": [65535, 0], "look back and say it's all owing to the": [65535, 0], "back and say it's all owing to the precious": [65535, 0], "and say it's all owing to the precious sunday": [65535, 0], "say it's all owing to the precious sunday school": [65535, 0], "it's all owing to the precious sunday school privileges": [65535, 0], "all owing to the precious sunday school privileges of": [65535, 0], "owing to the precious sunday school privileges of my": [65535, 0], "to the precious sunday school privileges of my boyhood": [65535, 0], "the precious sunday school privileges of my boyhood it's": [65535, 0], "precious sunday school privileges of my boyhood it's all": [65535, 0], "sunday school privileges of my boyhood it's all owing": [65535, 0], "school privileges of my boyhood it's all owing to": [65535, 0], "privileges of my boyhood it's all owing to my": [65535, 0], "of my boyhood it's all owing to my dear": [65535, 0], "my boyhood it's all owing to my dear teachers": [65535, 0], "boyhood it's all owing to my dear teachers that": [65535, 0], "it's all owing to my dear teachers that taught": [65535, 0], "all owing to my dear teachers that taught me": [65535, 0], "owing to my dear teachers that taught me to": [65535, 0], "to my dear teachers that taught me to learn": [65535, 0], "my dear teachers that taught me to learn it's": [65535, 0], "dear teachers that taught me to learn it's all": [65535, 0], "teachers that taught me to learn it's all owing": [65535, 0], "that taught me to learn it's all owing to": [65535, 0], "taught me to learn it's all owing to the": [65535, 0], "me to learn it's all owing to the good": [65535, 0], "to learn it's all owing to the good superintendent": [65535, 0], "learn it's all owing to the good superintendent who": [65535, 0], "it's all owing to the good superintendent who encouraged": [65535, 0], "all owing to the good superintendent who encouraged me": [65535, 0], "owing to the good superintendent who encouraged me and": [65535, 0], "to the good superintendent who encouraged me and watched": [65535, 0], "the good superintendent who encouraged me and watched over": [65535, 0], "good superintendent who encouraged me and watched over me": [65535, 0], "superintendent who encouraged me and watched over me and": [65535, 0], "who encouraged me and watched over me and gave": [65535, 0], "encouraged me and watched over me and gave me": [65535, 0], "me and watched over me and gave me a": [65535, 0], "and watched over me and gave me a beautiful": [65535, 0], "watched over me and gave me a beautiful bible": [65535, 0], "over me and gave me a beautiful bible a": [65535, 0], "me and gave me a beautiful bible a splendid": [65535, 0], "and gave me a beautiful bible a splendid elegant": [65535, 0], "gave me a beautiful bible a splendid elegant bible": [65535, 0], "me a beautiful bible a splendid elegant bible to": [65535, 0], "a beautiful bible a splendid elegant bible to keep": [65535, 0], "beautiful bible a splendid elegant bible to keep and": [65535, 0], "bible a splendid elegant bible to keep and have": [65535, 0], "a splendid elegant bible to keep and have it": [65535, 0], "splendid elegant bible to keep and have it all": [65535, 0], "elegant bible to keep and have it all for": [65535, 0], "bible to keep and have it all for my": [65535, 0], "to keep and have it all for my own": [65535, 0], "keep and have it all for my own always": [65535, 0], "and have it all for my own always it's": [65535, 0], "have it all for my own always it's all": [65535, 0], "it all for my own always it's all owing": [65535, 0], "all for my own always it's all owing to": [65535, 0], "for my own always it's all owing to right": [65535, 0], "my own always it's all owing to right bringing": [65535, 0], "own always it's all owing to right bringing up": [65535, 0], "always it's all owing to right bringing up that": [65535, 0], "it's all owing to right bringing up that is": [65535, 0], "all owing to right bringing up that is what": [65535, 0], "owing to right bringing up that is what you": [65535, 0], "to right bringing up that is what you will": [65535, 0], "right bringing up that is what you will say": [65535, 0], "bringing up that is what you will say thomas": [65535, 0], "up that is what you will say thomas and": [65535, 0], "that is what you will say thomas and you": [65535, 0], "is what you will say thomas and you wouldn't": [65535, 0], "what you will say thomas and you wouldn't take": [65535, 0], "you will say thomas and you wouldn't take any": [65535, 0], "will say thomas and you wouldn't take any money": [65535, 0], "say thomas and you wouldn't take any money for": [65535, 0], "thomas and you wouldn't take any money for those": [65535, 0], "and you wouldn't take any money for those two": [65535, 0], "you wouldn't take any money for those two thousand": [65535, 0], "wouldn't take any money for those two thousand verses": [65535, 0], "take any money for those two thousand verses no": [65535, 0], "any money for those two thousand verses no indeed": [65535, 0], "money for those two thousand verses no indeed you": [65535, 0], "for those two thousand verses no indeed you wouldn't": [65535, 0], "those two thousand verses no indeed you wouldn't and": [65535, 0], "two thousand verses no indeed you wouldn't and now": [65535, 0], "thousand verses no indeed you wouldn't and now you": [65535, 0], "verses no indeed you wouldn't and now you wouldn't": [65535, 0], "no indeed you wouldn't and now you wouldn't mind": [65535, 0], "indeed you wouldn't and now you wouldn't mind telling": [65535, 0], "you wouldn't and now you wouldn't mind telling me": [65535, 0], "wouldn't and now you wouldn't mind telling me and": [65535, 0], "and now you wouldn't mind telling me and this": [65535, 0], "now you wouldn't mind telling me and this lady": [65535, 0], "you wouldn't mind telling me and this lady some": [65535, 0], "wouldn't mind telling me and this lady some of": [65535, 0], "mind telling me and this lady some of the": [65535, 0], "telling me and this lady some of the things": [65535, 0], "me and this lady some of the things you've": [65535, 0], "and this lady some of the things you've learned": [65535, 0], "this lady some of the things you've learned no": [65535, 0], "lady some of the things you've learned no i": [65535, 0], "some of the things you've learned no i know": [65535, 0], "of the things you've learned no i know you": [65535, 0], "the things you've learned no i know you wouldn't": [65535, 0], "things you've learned no i know you wouldn't for": [65535, 0], "you've learned no i know you wouldn't for we": [65535, 0], "learned no i know you wouldn't for we are": [65535, 0], "no i know you wouldn't for we are proud": [65535, 0], "i know you wouldn't for we are proud of": [65535, 0], "know you wouldn't for we are proud of little": [65535, 0], "you wouldn't for we are proud of little boys": [65535, 0], "wouldn't for we are proud of little boys that": [65535, 0], "for we are proud of little boys that learn": [65535, 0], "we are proud of little boys that learn now": [65535, 0], "are proud of little boys that learn now no": [65535, 0], "proud of little boys that learn now no doubt": [65535, 0], "of little boys that learn now no doubt you": [65535, 0], "little boys that learn now no doubt you know": [65535, 0], "boys that learn now no doubt you know the": [65535, 0], "that learn now no doubt you know the names": [65535, 0], "learn now no doubt you know the names of": [65535, 0], "now no doubt you know the names of all": [65535, 0], "no doubt you know the names of all the": [65535, 0], "doubt you know the names of all the twelve": [65535, 0], "you know the names of all the twelve disciples": [65535, 0], "know the names of all the twelve disciples won't": [65535, 0], "the names of all the twelve disciples won't you": [65535, 0], "names of all the twelve disciples won't you tell": [65535, 0], "of all the twelve disciples won't you tell us": [65535, 0], "all the twelve disciples won't you tell us the": [65535, 0], "the twelve disciples won't you tell us the names": [65535, 0], "twelve disciples won't you tell us the names of": [65535, 0], "disciples won't you tell us the names of the": [65535, 0], "won't you tell us the names of the first": [65535, 0], "you tell us the names of the first two": [65535, 0], "tell us the names of the first two that": [65535, 0], "us the names of the first two that were": [65535, 0], "the names of the first two that were appointed": [65535, 0], "names of the first two that were appointed tom": [65535, 0], "of the first two that were appointed tom was": [65535, 0], "the first two that were appointed tom was tugging": [65535, 0], "first two that were appointed tom was tugging at": [65535, 0], "two that were appointed tom was tugging at a": [65535, 0], "that were appointed tom was tugging at a button": [65535, 0], "were appointed tom was tugging at a button hole": [65535, 0], "appointed tom was tugging at a button hole and": [65535, 0], "tom was tugging at a button hole and looking": [65535, 0], "was tugging at a button hole and looking sheepish": [65535, 0], "tugging at a button hole and looking sheepish he": [65535, 0], "at a button hole and looking sheepish he blushed": [65535, 0], "a button hole and looking sheepish he blushed now": [65535, 0], "button hole and looking sheepish he blushed now and": [65535, 0], "hole and looking sheepish he blushed now and his": [65535, 0], "and looking sheepish he blushed now and his eyes": [65535, 0], "looking sheepish he blushed now and his eyes fell": [65535, 0], "sheepish he blushed now and his eyes fell mr": [65535, 0], "he blushed now and his eyes fell mr walters'": [65535, 0], "blushed now and his eyes fell mr walters' heart": [65535, 0], "now and his eyes fell mr walters' heart sank": [65535, 0], "and his eyes fell mr walters' heart sank within": [65535, 0], "his eyes fell mr walters' heart sank within him": [65535, 0], "eyes fell mr walters' heart sank within him he": [65535, 0], "fell mr walters' heart sank within him he said": [65535, 0], "mr walters' heart sank within him he said to": [65535, 0], "walters' heart sank within him he said to himself": [65535, 0], "heart sank within him he said to himself it": [65535, 0], "sank within him he said to himself it is": [65535, 0], "within him he said to himself it is not": [65535, 0], "him he said to himself it is not possible": [65535, 0], "he said to himself it is not possible that": [65535, 0], "said to himself it is not possible that the": [65535, 0], "to himself it is not possible that the boy": [65535, 0], "himself it is not possible that the boy can": [65535, 0], "it is not possible that the boy can answer": [65535, 0], "is not possible that the boy can answer the": [65535, 0], "not possible that the boy can answer the simplest": [65535, 0], "possible that the boy can answer the simplest question": [65535, 0], "that the boy can answer the simplest question why": [65535, 0], "the boy can answer the simplest question why did": [65535, 0], "boy can answer the simplest question why did the": [65535, 0], "can answer the simplest question why did the judge": [65535, 0], "answer the simplest question why did the judge ask": [65535, 0], "the simplest question why did the judge ask him": [65535, 0], "simplest question why did the judge ask him yet": [65535, 0], "question why did the judge ask him yet he": [65535, 0], "why did the judge ask him yet he felt": [65535, 0], "did the judge ask him yet he felt obliged": [65535, 0], "the judge ask him yet he felt obliged to": [65535, 0], "judge ask him yet he felt obliged to speak": [65535, 0], "ask him yet he felt obliged to speak up": [65535, 0], "him yet he felt obliged to speak up and": [65535, 0], "yet he felt obliged to speak up and say": [65535, 0], "he felt obliged to speak up and say answer": [65535, 0], "felt obliged to speak up and say answer the": [65535, 0], "obliged to speak up and say answer the gentleman": [65535, 0], "to speak up and say answer the gentleman thomas": [65535, 0], "speak up and say answer the gentleman thomas don't": [65535, 0], "up and say answer the gentleman thomas don't be": [65535, 0], "and say answer the gentleman thomas don't be afraid": [65535, 0], "say answer the gentleman thomas don't be afraid tom": [65535, 0], "answer the gentleman thomas don't be afraid tom still": [65535, 0], "the gentleman thomas don't be afraid tom still hung": [65535, 0], "gentleman thomas don't be afraid tom still hung fire": [65535, 0], "thomas don't be afraid tom still hung fire now": [65535, 0], "don't be afraid tom still hung fire now i": [65535, 0], "be afraid tom still hung fire now i know": [65535, 0], "afraid tom still hung fire now i know you'll": [65535, 0], "tom still hung fire now i know you'll tell": [65535, 0], "still hung fire now i know you'll tell me": [65535, 0], "hung fire now i know you'll tell me said": [65535, 0], "fire now i know you'll tell me said the": [65535, 0], "now i know you'll tell me said the lady": [65535, 0], "i know you'll tell me said the lady the": [65535, 0], "know you'll tell me said the lady the names": [65535, 0], "you'll tell me said the lady the names of": [65535, 0], "tell me said the lady the names of the": [65535, 0], "me said the lady the names of the first": [65535, 0], "said the lady the names of the first two": [65535, 0], "the lady the names of the first two disciples": [65535, 0], "lady the names of the first two disciples were": [65535, 0], "the names of the first two disciples were david": [65535, 0], "names of the first two disciples were david and": [65535, 0], "of the first two disciples were david and goliath": [65535, 0], "the first two disciples were david and goliath let": [65535, 0], "first two disciples were david and goliath let us": [65535, 0], "two disciples were david and goliath let us draw": [65535, 0], "disciples were david and goliath let us draw the": [65535, 0], "were david and goliath let us draw the curtain": [65535, 0], "david and goliath let us draw the curtain of": [65535, 0], "and goliath let us draw the curtain of charity": [65535, 0], "goliath let us draw the curtain of charity over": [65535, 0], "let us draw the curtain of charity over the": [65535, 0], "us draw the curtain of charity over the rest": [65535, 0], "draw the curtain of charity over the rest of": [65535, 0], "the curtain of charity over the rest of the": [65535, 0], "curtain of charity over the rest of the scene": [65535, 0], "the sun rose upon a tranquil world and beamed down": [65535, 0], "sun rose upon a tranquil world and beamed down upon": [65535, 0], "rose upon a tranquil world and beamed down upon the": [65535, 0], "upon a tranquil world and beamed down upon the peaceful": [65535, 0], "a tranquil world and beamed down upon the peaceful village": [65535, 0], "tranquil world and beamed down upon the peaceful village like": [65535, 0], "world and beamed down upon the peaceful village like a": [65535, 0], "and beamed down upon the peaceful village like a benediction": [65535, 0], "beamed down upon the peaceful village like a benediction breakfast": [65535, 0], "down upon the peaceful village like a benediction breakfast over": [65535, 0], "upon the peaceful village like a benediction breakfast over aunt": [65535, 0], "the peaceful village like a benediction breakfast over aunt polly": [65535, 0], "peaceful village like a benediction breakfast over aunt polly had": [65535, 0], "village like a benediction breakfast over aunt polly had family": [65535, 0], "like a benediction breakfast over aunt polly had family worship": [65535, 0], "a benediction breakfast over aunt polly had family worship it": [65535, 0], "benediction breakfast over aunt polly had family worship it began": [65535, 0], "breakfast over aunt polly had family worship it began with": [65535, 0], "over aunt polly had family worship it began with a": [65535, 0], "aunt polly had family worship it began with a prayer": [65535, 0], "polly had family worship it began with a prayer built": [65535, 0], "had family worship it began with a prayer built from": [65535, 0], "family worship it began with a prayer built from the": [65535, 0], "worship it began with a prayer built from the ground": [65535, 0], "it began with a prayer built from the ground up": [65535, 0], "began with a prayer built from the ground up of": [65535, 0], "with a prayer built from the ground up of solid": [65535, 0], "a prayer built from the ground up of solid courses": [65535, 0], "prayer built from the ground up of solid courses of": [65535, 0], "built from the ground up of solid courses of scriptural": [65535, 0], "from the ground up of solid courses of scriptural quotations": [65535, 0], "the ground up of solid courses of scriptural quotations welded": [65535, 0], "ground up of solid courses of scriptural quotations welded together": [65535, 0], "up of solid courses of scriptural quotations welded together with": [65535, 0], "of solid courses of scriptural quotations welded together with a": [65535, 0], "solid courses of scriptural quotations welded together with a thin": [65535, 0], "courses of scriptural quotations welded together with a thin mortar": [65535, 0], "of scriptural quotations welded together with a thin mortar of": [65535, 0], "scriptural quotations welded together with a thin mortar of originality": [65535, 0], "quotations welded together with a thin mortar of originality and": [65535, 0], "welded together with a thin mortar of originality and from": [65535, 0], "together with a thin mortar of originality and from the": [65535, 0], "with a thin mortar of originality and from the summit": [65535, 0], "a thin mortar of originality and from the summit of": [65535, 0], "thin mortar of originality and from the summit of this": [65535, 0], "mortar of originality and from the summit of this she": [65535, 0], "of originality and from the summit of this she delivered": [65535, 0], "originality and from the summit of this she delivered a": [65535, 0], "and from the summit of this she delivered a grim": [65535, 0], "from the summit of this she delivered a grim chapter": [65535, 0], "the summit of this she delivered a grim chapter of": [65535, 0], "summit of this she delivered a grim chapter of the": [65535, 0], "of this she delivered a grim chapter of the mosaic": [65535, 0], "this she delivered a grim chapter of the mosaic law": [65535, 0], "she delivered a grim chapter of the mosaic law as": [65535, 0], "delivered a grim chapter of the mosaic law as from": [65535, 0], "a grim chapter of the mosaic law as from sinai": [65535, 0], "grim chapter of the mosaic law as from sinai then": [65535, 0], "chapter of the mosaic law as from sinai then tom": [65535, 0], "of the mosaic law as from sinai then tom girded": [65535, 0], "the mosaic law as from sinai then tom girded up": [65535, 0], "mosaic law as from sinai then tom girded up his": [65535, 0], "law as from sinai then tom girded up his loins": [65535, 0], "as from sinai then tom girded up his loins so": [65535, 0], "from sinai then tom girded up his loins so to": [65535, 0], "sinai then tom girded up his loins so to speak": [65535, 0], "then tom girded up his loins so to speak and": [65535, 0], "tom girded up his loins so to speak and went": [65535, 0], "girded up his loins so to speak and went to": [65535, 0], "up his loins so to speak and went to work": [65535, 0], "his loins so to speak and went to work to": [65535, 0], "loins so to speak and went to work to get": [65535, 0], "so to speak and went to work to get his": [65535, 0], "to speak and went to work to get his verses": [65535, 0], "speak and went to work to get his verses sid": [65535, 0], "and went to work to get his verses sid had": [65535, 0], "went to work to get his verses sid had learned": [65535, 0], "to work to get his verses sid had learned his": [65535, 0], "work to get his verses sid had learned his lesson": [65535, 0], "to get his verses sid had learned his lesson days": [65535, 0], "get his verses sid had learned his lesson days before": [65535, 0], "his verses sid had learned his lesson days before tom": [65535, 0], "verses sid had learned his lesson days before tom bent": [65535, 0], "sid had learned his lesson days before tom bent all": [65535, 0], "had learned his lesson days before tom bent all his": [65535, 0], "learned his lesson days before tom bent all his energies": [65535, 0], "his lesson days before tom bent all his energies to": [65535, 0], "lesson days before tom bent all his energies to the": [65535, 0], "days before tom bent all his energies to the memorizing": [65535, 0], "before tom bent all his energies to the memorizing of": [65535, 0], "tom bent all his energies to the memorizing of five": [65535, 0], "bent all his energies to the memorizing of five verses": [65535, 0], "all his energies to the memorizing of five verses and": [65535, 0], "his energies to the memorizing of five verses and he": [65535, 0], "energies to the memorizing of five verses and he chose": [65535, 0], "to the memorizing of five verses and he chose part": [65535, 0], "the memorizing of five verses and he chose part of": [65535, 0], "memorizing of five verses and he chose part of the": [65535, 0], "of five verses and he chose part of the sermon": [65535, 0], "five verses and he chose part of the sermon on": [65535, 0], "verses and he chose part of the sermon on the": [65535, 0], "and he chose part of the sermon on the mount": [65535, 0], "he chose part of the sermon on the mount because": [65535, 0], "chose part of the sermon on the mount because he": [65535, 0], "part of the sermon on the mount because he could": [65535, 0], "of the sermon on the mount because he could find": [65535, 0], "the sermon on the mount because he could find no": [65535, 0], "sermon on the mount because he could find no verses": [65535, 0], "on the mount because he could find no verses that": [65535, 0], "the mount because he could find no verses that were": [65535, 0], "mount because he could find no verses that were shorter": [65535, 0], "because he could find no verses that were shorter at": [65535, 0], "he could find no verses that were shorter at the": [65535, 0], "could find no verses that were shorter at the end": [65535, 0], "find no verses that were shorter at the end of": [65535, 0], "no verses that were shorter at the end of half": [65535, 0], "verses that were shorter at the end of half an": [65535, 0], "that were shorter at the end of half an hour": [65535, 0], "were shorter at the end of half an hour tom": [65535, 0], "shorter at the end of half an hour tom had": [65535, 0], "at the end of half an hour tom had a": [65535, 0], "the end of half an hour tom had a vague": [65535, 0], "end of half an hour tom had a vague general": [65535, 0], "of half an hour tom had a vague general idea": [65535, 0], "half an hour tom had a vague general idea of": [65535, 0], "an hour tom had a vague general idea of his": [65535, 0], "hour tom had a vague general idea of his lesson": [65535, 0], "tom had a vague general idea of his lesson but": [65535, 0], "had a vague general idea of his lesson but no": [65535, 0], "a vague general idea of his lesson but no more": [65535, 0], "vague general idea of his lesson but no more for": [65535, 0], "general idea of his lesson but no more for his": [65535, 0], "idea of his lesson but no more for his mind": [65535, 0], "of his lesson but no more for his mind was": [65535, 0], "his lesson but no more for his mind was traversing": [65535, 0], "lesson but no more for his mind was traversing the": [65535, 0], "but no more for his mind was traversing the whole": [65535, 0], "no more for his mind was traversing the whole field": [65535, 0], "more for his mind was traversing the whole field of": [65535, 0], "for his mind was traversing the whole field of human": [65535, 0], "his mind was traversing the whole field of human thought": [65535, 0], "mind was traversing the whole field of human thought and": [65535, 0], "was traversing the whole field of human thought and his": [65535, 0], "traversing the whole field of human thought and his hands": [65535, 0], "the whole field of human thought and his hands were": [65535, 0], "whole field of human thought and his hands were busy": [65535, 0], "field of human thought and his hands were busy with": [65535, 0], "of human thought and his hands were busy with distracting": [65535, 0], "human thought and his hands were busy with distracting recreations": [65535, 0], "thought and his hands were busy with distracting recreations mary": [65535, 0], "and his hands were busy with distracting recreations mary took": [65535, 0], "his hands were busy with distracting recreations mary took his": [65535, 0], "hands were busy with distracting recreations mary took his book": [65535, 0], "were busy with distracting recreations mary took his book to": [65535, 0], "busy with distracting recreations mary took his book to hear": [65535, 0], "with distracting recreations mary took his book to hear him": [65535, 0], "distracting recreations mary took his book to hear him recite": [65535, 0], "recreations mary took his book to hear him recite and": [65535, 0], "mary took his book to hear him recite and he": [65535, 0], "took his book to hear him recite and he tried": [65535, 0], "his book to hear him recite and he tried to": [65535, 0], "book to hear him recite and he tried to find": [65535, 0], "to hear him recite and he tried to find his": [65535, 0], "hear him recite and he tried to find his way": [65535, 0], "him recite and he tried to find his way through": [65535, 0], "recite and he tried to find his way through the": [65535, 0], "and he tried to find his way through the fog": [65535, 0], "he tried to find his way through the fog blessed": [65535, 0], "tried to find his way through the fog blessed are": [65535, 0], "to find his way through the fog blessed are the": [65535, 0], "find his way through the fog blessed are the a": [65535, 0], "his way through the fog blessed are the a a": [65535, 0], "way through the fog blessed are the a a poor": [65535, 0], "through the fog blessed are the a a poor yes": [65535, 0], "the fog blessed are the a a poor yes poor": [65535, 0], "fog blessed are the a a poor yes poor blessed": [65535, 0], "blessed are the a a poor yes poor blessed are": [65535, 0], "are the a a poor yes poor blessed are the": [65535, 0], "the a a poor yes poor blessed are the poor": [65535, 0], "a a poor yes poor blessed are the poor a": [65535, 0], "a poor yes poor blessed are the poor a a": [65535, 0], "poor yes poor blessed are the poor a a in": [65535, 0], "yes poor blessed are the poor a a in spirit": [65535, 0], "poor blessed are the poor a a in spirit in": [65535, 0], "blessed are the poor a a in spirit in spirit": [65535, 0], "are the poor a a in spirit in spirit blessed": [65535, 0], "the poor a a in spirit in spirit blessed are": [65535, 0], "poor a a in spirit in spirit blessed are the": [65535, 0], "a a in spirit in spirit blessed are the poor": [65535, 0], "a in spirit in spirit blessed are the poor in": [65535, 0], "in spirit in spirit blessed are the poor in spirit": [65535, 0], "spirit in spirit blessed are the poor in spirit for": [65535, 0], "in spirit blessed are the poor in spirit for they": [65535, 0], "spirit blessed are the poor in spirit for they they": [65535, 0], "blessed are the poor in spirit for they they theirs": [65535, 0], "are the poor in spirit for they they theirs for": [65535, 0], "the poor in spirit for they they theirs for theirs": [65535, 0], "poor in spirit for they they theirs for theirs blessed": [65535, 0], "in spirit for they they theirs for theirs blessed are": [65535, 0], "spirit for they they theirs for theirs blessed are the": [65535, 0], "for they they theirs for theirs blessed are the poor": [65535, 0], "they they theirs for theirs blessed are the poor in": [65535, 0], "they theirs for theirs blessed are the poor in spirit": [65535, 0], "theirs for theirs blessed are the poor in spirit for": [65535, 0], "for theirs blessed are the poor in spirit for theirs": [65535, 0], "theirs blessed are the poor in spirit for theirs is": [65535, 0], "blessed are the poor in spirit for theirs is the": [65535, 0], "are the poor in spirit for theirs is the kingdom": [65535, 0], "the poor in spirit for theirs is the kingdom of": [65535, 0], "poor in spirit for theirs is the kingdom of heaven": [65535, 0], "in spirit for theirs is the kingdom of heaven blessed": [65535, 0], "spirit for theirs is the kingdom of heaven blessed are": [65535, 0], "for theirs is the kingdom of heaven blessed are they": [65535, 0], "theirs is the kingdom of heaven blessed are they that": [65535, 0], "is the kingdom of heaven blessed are they that mourn": [65535, 0], "the kingdom of heaven blessed are they that mourn for": [65535, 0], "kingdom of heaven blessed are they that mourn for they": [65535, 0], "of heaven blessed are they that mourn for they they": [65535, 0], "heaven blessed are they that mourn for they they sh": [65535, 0], "blessed are they that mourn for they they sh for": [65535, 0], "are they that mourn for they they sh for they": [65535, 0], "they that mourn for they they sh for they a": [65535, 0], "that mourn for they they sh for they a s": [65535, 0], "mourn for they they sh for they a s h": [65535, 0], "for they they sh for they a s h a": [65535, 0], "they they sh for they a s h a for": [65535, 0], "they sh for they a s h a for they": [65535, 0], "sh for they a s h a for they s": [65535, 0], "for they a s h a for they s h": [65535, 0], "they a s h a for they s h oh": [65535, 0], "a s h a for they s h oh i": [65535, 0], "s h a for they s h oh i don't": [65535, 0], "h a for they s h oh i don't know": [65535, 0], "a for they s h oh i don't know what": [65535, 0], "for they s h oh i don't know what it": [65535, 0], "they s h oh i don't know what it is": [65535, 0], "s h oh i don't know what it is shall": [65535, 0], "h oh i don't know what it is shall oh": [65535, 0], "oh i don't know what it is shall oh shall": [65535, 0], "i don't know what it is shall oh shall for": [65535, 0], "don't know what it is shall oh shall for they": [65535, 0], "know what it is shall oh shall for they shall": [65535, 0], "what it is shall oh shall for they shall for": [65535, 0], "it is shall oh shall for they shall for they": [65535, 0], "is shall oh shall for they shall for they shall": [65535, 0], "shall oh shall for they shall for they shall a": [65535, 0], "oh shall for they shall for they shall a a": [65535, 0], "shall for they shall for they shall a a shall": [65535, 0], "for they shall for they shall a a shall mourn": [65535, 0], "they shall for they shall a a shall mourn a": [65535, 0], "shall for they shall a a shall mourn a a": [65535, 0], "for they shall a a shall mourn a a blessed": [65535, 0], "they shall a a shall mourn a a blessed are": [65535, 0], "shall a a shall mourn a a blessed are they": [65535, 0], "a a shall mourn a a blessed are they that": [65535, 0], "a shall mourn a a blessed are they that shall": [65535, 0], "shall mourn a a blessed are they that shall they": [65535, 0], "mourn a a blessed are they that shall they that": [65535, 0], "a a blessed are they that shall they that a": [65535, 0], "a blessed are they that shall they that a they": [65535, 0], "blessed are they that shall they that a they that": [65535, 0], "are they that shall they that a they that shall": [65535, 0], "they that shall they that a they that shall mourn": [65535, 0], "that shall they that a they that shall mourn for": [65535, 0], "shall they that a they that shall mourn for they": [65535, 0], "they that a they that shall mourn for they shall": [65535, 0], "that a they that shall mourn for they shall a": [65535, 0], "a they that shall mourn for they shall a shall": [65535, 0], "they that shall mourn for they shall a shall what": [65535, 0], "that shall mourn for they shall a shall what why": [65535, 0], "shall mourn for they shall a shall what why don't": [65535, 0], "mourn for they shall a shall what why don't you": [65535, 0], "for they shall a shall what why don't you tell": [65535, 0], "they shall a shall what why don't you tell me": [65535, 0], "shall a shall what why don't you tell me mary": [65535, 0], "a shall what why don't you tell me mary what": [65535, 0], "shall what why don't you tell me mary what do": [65535, 0], "what why don't you tell me mary what do you": [65535, 0], "why don't you tell me mary what do you want": [65535, 0], "don't you tell me mary what do you want to": [65535, 0], "you tell me mary what do you want to be": [65535, 0], "tell me mary what do you want to be so": [65535, 0], "me mary what do you want to be so mean": [65535, 0], "mary what do you want to be so mean for": [65535, 0], "what do you want to be so mean for oh": [65535, 0], "do you want to be so mean for oh tom": [65535, 0], "you want to be so mean for oh tom you": [65535, 0], "want to be so mean for oh tom you poor": [65535, 0], "to be so mean for oh tom you poor thick": [65535, 0], "be so mean for oh tom you poor thick headed": [65535, 0], "so mean for oh tom you poor thick headed thing": [65535, 0], "mean for oh tom you poor thick headed thing i'm": [65535, 0], "for oh tom you poor thick headed thing i'm not": [65535, 0], "oh tom you poor thick headed thing i'm not teasing": [65535, 0], "tom you poor thick headed thing i'm not teasing you": [65535, 0], "you poor thick headed thing i'm not teasing you i": [65535, 0], "poor thick headed thing i'm not teasing you i wouldn't": [65535, 0], "thick headed thing i'm not teasing you i wouldn't do": [65535, 0], "headed thing i'm not teasing you i wouldn't do that": [65535, 0], "thing i'm not teasing you i wouldn't do that you": [65535, 0], "i'm not teasing you i wouldn't do that you must": [65535, 0], "not teasing you i wouldn't do that you must go": [65535, 0], "teasing you i wouldn't do that you must go and": [65535, 0], "you i wouldn't do that you must go and learn": [65535, 0], "i wouldn't do that you must go and learn it": [65535, 0], "wouldn't do that you must go and learn it again": [65535, 0], "do that you must go and learn it again don't": [65535, 0], "that you must go and learn it again don't you": [65535, 0], "you must go and learn it again don't you be": [65535, 0], "must go and learn it again don't you be discouraged": [65535, 0], "go and learn it again don't you be discouraged tom": [65535, 0], "and learn it again don't you be discouraged tom you'll": [65535, 0], "learn it again don't you be discouraged tom you'll manage": [65535, 0], "it again don't you be discouraged tom you'll manage it": [65535, 0], "again don't you be discouraged tom you'll manage it and": [65535, 0], "don't you be discouraged tom you'll manage it and if": [65535, 0], "you be discouraged tom you'll manage it and if you": [65535, 0], "be discouraged tom you'll manage it and if you do": [65535, 0], "discouraged tom you'll manage it and if you do i'll": [65535, 0], "tom you'll manage it and if you do i'll give": [65535, 0], "you'll manage it and if you do i'll give you": [65535, 0], "manage it and if you do i'll give you something": [65535, 0], "it and if you do i'll give you something ever": [65535, 0], "and if you do i'll give you something ever so": [65535, 0], "if you do i'll give you something ever so nice": [65535, 0], "you do i'll give you something ever so nice there": [65535, 0], "do i'll give you something ever so nice there now": [65535, 0], "i'll give you something ever so nice there now that's": [65535, 0], "give you something ever so nice there now that's a": [65535, 0], "you something ever so nice there now that's a good": [65535, 0], "something ever so nice there now that's a good boy": [65535, 0], "ever so nice there now that's a good boy all": [65535, 0], "so nice there now that's a good boy all right": [65535, 0], "nice there now that's a good boy all right what": [65535, 0], "there now that's a good boy all right what is": [65535, 0], "now that's a good boy all right what is it": [65535, 0], "that's a good boy all right what is it mary": [65535, 0], "a good boy all right what is it mary tell": [65535, 0], "good boy all right what is it mary tell me": [65535, 0], "boy all right what is it mary tell me what": [65535, 0], "all right what is it mary tell me what it": [65535, 0], "right what is it mary tell me what it is": [65535, 0], "what is it mary tell me what it is never": [65535, 0], "is it mary tell me what it is never you": [65535, 0], "it mary tell me what it is never you mind": [65535, 0], "mary tell me what it is never you mind tom": [65535, 0], "tell me what it is never you mind tom you": [65535, 0], "me what it is never you mind tom you know": [65535, 0], "what it is never you mind tom you know if": [65535, 0], "it is never you mind tom you know if i": [65535, 0], "is never you mind tom you know if i say": [65535, 0], "never you mind tom you know if i say it's": [65535, 0], "you mind tom you know if i say it's nice": [65535, 0], "mind tom you know if i say it's nice it": [65535, 0], "tom you know if i say it's nice it is": [65535, 0], "you know if i say it's nice it is nice": [65535, 0], "know if i say it's nice it is nice you": [65535, 0], "if i say it's nice it is nice you bet": [65535, 0], "i say it's nice it is nice you bet you": [65535, 0], "say it's nice it is nice you bet you that's": [65535, 0], "it's nice it is nice you bet you that's so": [65535, 0], "nice it is nice you bet you that's so mary": [65535, 0], "it is nice you bet you that's so mary all": [65535, 0], "is nice you bet you that's so mary all right": [65535, 0], "nice you bet you that's so mary all right i'll": [65535, 0], "you bet you that's so mary all right i'll tackle": [65535, 0], "bet you that's so mary all right i'll tackle it": [65535, 0], "you that's so mary all right i'll tackle it again": [65535, 0], "that's so mary all right i'll tackle it again and": [65535, 0], "so mary all right i'll tackle it again and he": [65535, 0], "mary all right i'll tackle it again and he did": [65535, 0], "all right i'll tackle it again and he did tackle": [65535, 0], "right i'll tackle it again and he did tackle it": [65535, 0], "i'll tackle it again and he did tackle it again": [65535, 0], "tackle it again and he did tackle it again and": [65535, 0], "it again and he did tackle it again and under": [65535, 0], "again and he did tackle it again and under the": [65535, 0], "and he did tackle it again and under the double": [65535, 0], "he did tackle it again and under the double pressure": [65535, 0], "did tackle it again and under the double pressure of": [65535, 0], "tackle it again and under the double pressure of curiosity": [65535, 0], "it again and under the double pressure of curiosity and": [65535, 0], "again and under the double pressure of curiosity and prospective": [65535, 0], "and under the double pressure of curiosity and prospective gain": [65535, 0], "under the double pressure of curiosity and prospective gain he": [65535, 0], "the double pressure of curiosity and prospective gain he did": [65535, 0], "double pressure of curiosity and prospective gain he did it": [65535, 0], "pressure of curiosity and prospective gain he did it with": [65535, 0], "of curiosity and prospective gain he did it with such": [65535, 0], "curiosity and prospective gain he did it with such spirit": [65535, 0], "and prospective gain he did it with such spirit that": [65535, 0], "prospective gain he did it with such spirit that he": [65535, 0], "gain he did it with such spirit that he accomplished": [65535, 0], "he did it with such spirit that he accomplished a": [65535, 0], "did it with such spirit that he accomplished a shining": [65535, 0], "it with such spirit that he accomplished a shining success": [65535, 0], "with such spirit that he accomplished a shining success mary": [65535, 0], "such spirit that he accomplished a shining success mary gave": [65535, 0], "spirit that he accomplished a shining success mary gave him": [65535, 0], "that he accomplished a shining success mary gave him a": [65535, 0], "he accomplished a shining success mary gave him a brand": [65535, 0], "accomplished a shining success mary gave him a brand new": [65535, 0], "a shining success mary gave him a brand new barlow": [65535, 0], "shining success mary gave him a brand new barlow knife": [65535, 0], "success mary gave him a brand new barlow knife worth": [65535, 0], "mary gave him a brand new barlow knife worth twelve": [65535, 0], "gave him a brand new barlow knife worth twelve and": [65535, 0], "him a brand new barlow knife worth twelve and a": [65535, 0], "a brand new barlow knife worth twelve and a half": [65535, 0], "brand new barlow knife worth twelve and a half cents": [65535, 0], "new barlow knife worth twelve and a half cents and": [65535, 0], "barlow knife worth twelve and a half cents and the": [65535, 0], "knife worth twelve and a half cents and the convulsion": [65535, 0], "worth twelve and a half cents and the convulsion of": [65535, 0], "twelve and a half cents and the convulsion of delight": [65535, 0], "and a half cents and the convulsion of delight that": [65535, 0], "a half cents and the convulsion of delight that swept": [65535, 0], "half cents and the convulsion of delight that swept his": [65535, 0], "cents and the convulsion of delight that swept his system": [65535, 0], "and the convulsion of delight that swept his system shook": [65535, 0], "the convulsion of delight that swept his system shook him": [65535, 0], "convulsion of delight that swept his system shook him to": [65535, 0], "of delight that swept his system shook him to his": [65535, 0], "delight that swept his system shook him to his foundations": [65535, 0], "that swept his system shook him to his foundations true": [65535, 0], "swept his system shook him to his foundations true the": [65535, 0], "his system shook him to his foundations true the knife": [65535, 0], "system shook him to his foundations true the knife would": [65535, 0], "shook him to his foundations true the knife would not": [65535, 0], "him to his foundations true the knife would not cut": [65535, 0], "to his foundations true the knife would not cut anything": [65535, 0], "his foundations true the knife would not cut anything but": [65535, 0], "foundations true the knife would not cut anything but it": [65535, 0], "true the knife would not cut anything but it was": [65535, 0], "the knife would not cut anything but it was a": [65535, 0], "knife would not cut anything but it was a sure": [65535, 0], "would not cut anything but it was a sure enough": [65535, 0], "not cut anything but it was a sure enough barlow": [65535, 0], "cut anything but it was a sure enough barlow and": [65535, 0], "anything but it was a sure enough barlow and there": [65535, 0], "but it was a sure enough barlow and there was": [65535, 0], "it was a sure enough barlow and there was inconceivable": [65535, 0], "was a sure enough barlow and there was inconceivable grandeur": [65535, 0], "a sure enough barlow and there was inconceivable grandeur in": [65535, 0], "sure enough barlow and there was inconceivable grandeur in that": [65535, 0], "enough barlow and there was inconceivable grandeur in that though": [65535, 0], "barlow and there was inconceivable grandeur in that though where": [65535, 0], "and there was inconceivable grandeur in that though where the": [65535, 0], "there was inconceivable grandeur in that though where the western": [65535, 0], "was inconceivable grandeur in that though where the western boys": [65535, 0], "inconceivable grandeur in that though where the western boys ever": [65535, 0], "grandeur in that though where the western boys ever got": [65535, 0], "in that though where the western boys ever got the": [65535, 0], "that though where the western boys ever got the idea": [65535, 0], "though where the western boys ever got the idea that": [65535, 0], "where the western boys ever got the idea that such": [65535, 0], "the western boys ever got the idea that such a": [65535, 0], "western boys ever got the idea that such a weapon": [65535, 0], "boys ever got the idea that such a weapon could": [65535, 0], "ever got the idea that such a weapon could possibly": [65535, 0], "got the idea that such a weapon could possibly be": [65535, 0], "the idea that such a weapon could possibly be counterfeited": [65535, 0], "idea that such a weapon could possibly be counterfeited to": [65535, 0], "that such a weapon could possibly be counterfeited to its": [65535, 0], "such a weapon could possibly be counterfeited to its injury": [65535, 0], "a weapon could possibly be counterfeited to its injury is": [65535, 0], "weapon could possibly be counterfeited to its injury is an": [65535, 0], "could possibly be counterfeited to its injury is an imposing": [65535, 0], "possibly be counterfeited to its injury is an imposing mystery": [65535, 0], "be counterfeited to its injury is an imposing mystery and": [65535, 0], "counterfeited to its injury is an imposing mystery and will": [65535, 0], "to its injury is an imposing mystery and will always": [65535, 0], "its injury is an imposing mystery and will always remain": [65535, 0], "injury is an imposing mystery and will always remain so": [65535, 0], "is an imposing mystery and will always remain so perhaps": [65535, 0], "an imposing mystery and will always remain so perhaps tom": [65535, 0], "imposing mystery and will always remain so perhaps tom contrived": [65535, 0], "mystery and will always remain so perhaps tom contrived to": [65535, 0], "and will always remain so perhaps tom contrived to scarify": [65535, 0], "will always remain so perhaps tom contrived to scarify the": [65535, 0], "always remain so perhaps tom contrived to scarify the cupboard": [65535, 0], "remain so perhaps tom contrived to scarify the cupboard with": [65535, 0], "so perhaps tom contrived to scarify the cupboard with it": [65535, 0], "perhaps tom contrived to scarify the cupboard with it and": [65535, 0], "tom contrived to scarify the cupboard with it and was": [65535, 0], "contrived to scarify the cupboard with it and was arranging": [65535, 0], "to scarify the cupboard with it and was arranging to": [65535, 0], "scarify the cupboard with it and was arranging to begin": [65535, 0], "the cupboard with it and was arranging to begin on": [65535, 0], "cupboard with it and was arranging to begin on the": [65535, 0], "with it and was arranging to begin on the bureau": [65535, 0], "it and was arranging to begin on the bureau when": [65535, 0], "and was arranging to begin on the bureau when he": [65535, 0], "was arranging to begin on the bureau when he was": [65535, 0], "arranging to begin on the bureau when he was called": [65535, 0], "to begin on the bureau when he was called off": [65535, 0], "begin on the bureau when he was called off to": [65535, 0], "on the bureau when he was called off to dress": [65535, 0], "the bureau when he was called off to dress for": [65535, 0], "bureau when he was called off to dress for sunday": [65535, 0], "when he was called off to dress for sunday school": [65535, 0], "he was called off to dress for sunday school mary": [65535, 0], "was called off to dress for sunday school mary gave": [65535, 0], "called off to dress for sunday school mary gave him": [65535, 0], "off to dress for sunday school mary gave him a": [65535, 0], "to dress for sunday school mary gave him a tin": [65535, 0], "dress for sunday school mary gave him a tin basin": [65535, 0], "for sunday school mary gave him a tin basin of": [65535, 0], "sunday school mary gave him a tin basin of water": [65535, 0], "school mary gave him a tin basin of water and": [65535, 0], "mary gave him a tin basin of water and a": [65535, 0], "gave him a tin basin of water and a piece": [65535, 0], "him a tin basin of water and a piece of": [65535, 0], "a tin basin of water and a piece of soap": [65535, 0], "tin basin of water and a piece of soap and": [65535, 0], "basin of water and a piece of soap and he": [65535, 0], "of water and a piece of soap and he went": [65535, 0], "water and a piece of soap and he went outside": [65535, 0], "and a piece of soap and he went outside the": [65535, 0], "a piece of soap and he went outside the door": [65535, 0], "piece of soap and he went outside the door and": [65535, 0], "of soap and he went outside the door and set": [65535, 0], "soap and he went outside the door and set the": [65535, 0], "and he went outside the door and set the basin": [65535, 0], "he went outside the door and set the basin on": [65535, 0], "went outside the door and set the basin on a": [65535, 0], "outside the door and set the basin on a little": [65535, 0], "the door and set the basin on a little bench": [65535, 0], "door and set the basin on a little bench there": [65535, 0], "and set the basin on a little bench there then": [65535, 0], "set the basin on a little bench there then he": [65535, 0], "the basin on a little bench there then he dipped": [65535, 0], "basin on a little bench there then he dipped the": [65535, 0], "on a little bench there then he dipped the soap": [65535, 0], "a little bench there then he dipped the soap in": [65535, 0], "little bench there then he dipped the soap in the": [65535, 0], "bench there then he dipped the soap in the water": [65535, 0], "there then he dipped the soap in the water and": [65535, 0], "then he dipped the soap in the water and laid": [65535, 0], "he dipped the soap in the water and laid it": [65535, 0], "dipped the soap in the water and laid it down": [65535, 0], "the soap in the water and laid it down turned": [65535, 0], "soap in the water and laid it down turned up": [65535, 0], "in the water and laid it down turned up his": [65535, 0], "the water and laid it down turned up his sleeves": [65535, 0], "water and laid it down turned up his sleeves poured": [65535, 0], "and laid it down turned up his sleeves poured out": [65535, 0], "laid it down turned up his sleeves poured out the": [65535, 0], "it down turned up his sleeves poured out the water": [65535, 0], "down turned up his sleeves poured out the water on": [65535, 0], "turned up his sleeves poured out the water on the": [65535, 0], "up his sleeves poured out the water on the ground": [65535, 0], "his sleeves poured out the water on the ground gently": [65535, 0], "sleeves poured out the water on the ground gently and": [65535, 0], "poured out the water on the ground gently and then": [65535, 0], "out the water on the ground gently and then entered": [65535, 0], "the water on the ground gently and then entered the": [65535, 0], "water on the ground gently and then entered the kitchen": [65535, 0], "on the ground gently and then entered the kitchen and": [65535, 0], "the ground gently and then entered the kitchen and began": [65535, 0], "ground gently and then entered the kitchen and began to": [65535, 0], "gently and then entered the kitchen and began to wipe": [65535, 0], "and then entered the kitchen and began to wipe his": [65535, 0], "then entered the kitchen and began to wipe his face": [65535, 0], "entered the kitchen and began to wipe his face diligently": [65535, 0], "the kitchen and began to wipe his face diligently on": [65535, 0], "kitchen and began to wipe his face diligently on the": [65535, 0], "and began to wipe his face diligently on the towel": [65535, 0], "began to wipe his face diligently on the towel behind": [65535, 0], "to wipe his face diligently on the towel behind the": [65535, 0], "wipe his face diligently on the towel behind the door": [65535, 0], "his face diligently on the towel behind the door but": [65535, 0], "face diligently on the towel behind the door but mary": [65535, 0], "diligently on the towel behind the door but mary removed": [65535, 0], "on the towel behind the door but mary removed the": [65535, 0], "the towel behind the door but mary removed the towel": [65535, 0], "towel behind the door but mary removed the towel and": [65535, 0], "behind the door but mary removed the towel and said": [65535, 0], "the door but mary removed the towel and said now": [65535, 0], "door but mary removed the towel and said now ain't": [65535, 0], "but mary removed the towel and said now ain't you": [65535, 0], "mary removed the towel and said now ain't you ashamed": [65535, 0], "removed the towel and said now ain't you ashamed tom": [65535, 0], "the towel and said now ain't you ashamed tom you": [65535, 0], "towel and said now ain't you ashamed tom you mustn't": [65535, 0], "and said now ain't you ashamed tom you mustn't be": [65535, 0], "said now ain't you ashamed tom you mustn't be so": [65535, 0], "now ain't you ashamed tom you mustn't be so bad": [65535, 0], "ain't you ashamed tom you mustn't be so bad water": [65535, 0], "you ashamed tom you mustn't be so bad water won't": [65535, 0], "ashamed tom you mustn't be so bad water won't hurt": [65535, 0], "tom you mustn't be so bad water won't hurt you": [65535, 0], "you mustn't be so bad water won't hurt you tom": [65535, 0], "mustn't be so bad water won't hurt you tom was": [65535, 0], "be so bad water won't hurt you tom was a": [65535, 0], "so bad water won't hurt you tom was a trifle": [65535, 0], "bad water won't hurt you tom was a trifle disconcerted": [65535, 0], "water won't hurt you tom was a trifle disconcerted the": [65535, 0], "won't hurt you tom was a trifle disconcerted the basin": [65535, 0], "hurt you tom was a trifle disconcerted the basin was": [65535, 0], "you tom was a trifle disconcerted the basin was refilled": [65535, 0], "tom was a trifle disconcerted the basin was refilled and": [65535, 0], "was a trifle disconcerted the basin was refilled and this": [65535, 0], "a trifle disconcerted the basin was refilled and this time": [65535, 0], "trifle disconcerted the basin was refilled and this time he": [65535, 0], "disconcerted the basin was refilled and this time he stood": [65535, 0], "the basin was refilled and this time he stood over": [65535, 0], "basin was refilled and this time he stood over it": [65535, 0], "was refilled and this time he stood over it a": [65535, 0], "refilled and this time he stood over it a little": [65535, 0], "and this time he stood over it a little while": [65535, 0], "this time he stood over it a little while gathering": [65535, 0], "time he stood over it a little while gathering resolution": [65535, 0], "he stood over it a little while gathering resolution took": [65535, 0], "stood over it a little while gathering resolution took in": [65535, 0], "over it a little while gathering resolution took in a": [65535, 0], "it a little while gathering resolution took in a big": [65535, 0], "a little while gathering resolution took in a big breath": [65535, 0], "little while gathering resolution took in a big breath and": [65535, 0], "while gathering resolution took in a big breath and began": [65535, 0], "gathering resolution took in a big breath and began when": [65535, 0], "resolution took in a big breath and began when he": [65535, 0], "took in a big breath and began when he entered": [65535, 0], "in a big breath and began when he entered the": [65535, 0], "a big breath and began when he entered the kitchen": [65535, 0], "big breath and began when he entered the kitchen presently": [65535, 0], "breath and began when he entered the kitchen presently with": [65535, 0], "and began when he entered the kitchen presently with both": [65535, 0], "began when he entered the kitchen presently with both eyes": [65535, 0], "when he entered the kitchen presently with both eyes shut": [65535, 0], "he entered the kitchen presently with both eyes shut and": [65535, 0], "entered the kitchen presently with both eyes shut and groping": [65535, 0], "the kitchen presently with both eyes shut and groping for": [65535, 0], "kitchen presently with both eyes shut and groping for the": [65535, 0], "presently with both eyes shut and groping for the towel": [65535, 0], "with both eyes shut and groping for the towel with": [65535, 0], "both eyes shut and groping for the towel with his": [65535, 0], "eyes shut and groping for the towel with his hands": [65535, 0], "shut and groping for the towel with his hands an": [65535, 0], "and groping for the towel with his hands an honorable": [65535, 0], "groping for the towel with his hands an honorable testimony": [65535, 0], "for the towel with his hands an honorable testimony of": [65535, 0], "the towel with his hands an honorable testimony of suds": [65535, 0], "towel with his hands an honorable testimony of suds and": [65535, 0], "with his hands an honorable testimony of suds and water": [65535, 0], "his hands an honorable testimony of suds and water was": [65535, 0], "hands an honorable testimony of suds and water was dripping": [65535, 0], "an honorable testimony of suds and water was dripping from": [65535, 0], "honorable testimony of suds and water was dripping from his": [65535, 0], "testimony of suds and water was dripping from his face": [65535, 0], "of suds and water was dripping from his face but": [65535, 0], "suds and water was dripping from his face but when": [65535, 0], "and water was dripping from his face but when he": [65535, 0], "water was dripping from his face but when he emerged": [65535, 0], "was dripping from his face but when he emerged from": [65535, 0], "dripping from his face but when he emerged from the": [65535, 0], "from his face but when he emerged from the towel": [65535, 0], "his face but when he emerged from the towel he": [65535, 0], "face but when he emerged from the towel he was": [65535, 0], "but when he emerged from the towel he was not": [65535, 0], "when he emerged from the towel he was not yet": [65535, 0], "he emerged from the towel he was not yet satisfactory": [65535, 0], "emerged from the towel he was not yet satisfactory for": [65535, 0], "from the towel he was not yet satisfactory for the": [65535, 0], "the towel he was not yet satisfactory for the clean": [65535, 0], "towel he was not yet satisfactory for the clean territory": [65535, 0], "he was not yet satisfactory for the clean territory stopped": [65535, 0], "was not yet satisfactory for the clean territory stopped short": [65535, 0], "not yet satisfactory for the clean territory stopped short at": [65535, 0], "yet satisfactory for the clean territory stopped short at his": [65535, 0], "satisfactory for the clean territory stopped short at his chin": [65535, 0], "for the clean territory stopped short at his chin and": [65535, 0], "the clean territory stopped short at his chin and his": [65535, 0], "clean territory stopped short at his chin and his jaws": [65535, 0], "territory stopped short at his chin and his jaws like": [65535, 0], "stopped short at his chin and his jaws like a": [65535, 0], "short at his chin and his jaws like a mask": [65535, 0], "at his chin and his jaws like a mask below": [65535, 0], "his chin and his jaws like a mask below and": [65535, 0], "chin and his jaws like a mask below and beyond": [65535, 0], "and his jaws like a mask below and beyond this": [65535, 0], "his jaws like a mask below and beyond this line": [65535, 0], "jaws like a mask below and beyond this line there": [65535, 0], "like a mask below and beyond this line there was": [65535, 0], "a mask below and beyond this line there was a": [65535, 0], "mask below and beyond this line there was a dark": [65535, 0], "below and beyond this line there was a dark expanse": [65535, 0], "and beyond this line there was a dark expanse of": [65535, 0], "beyond this line there was a dark expanse of unirrigated": [65535, 0], "this line there was a dark expanse of unirrigated soil": [65535, 0], "line there was a dark expanse of unirrigated soil that": [65535, 0], "there was a dark expanse of unirrigated soil that spread": [65535, 0], "was a dark expanse of unirrigated soil that spread downward": [65535, 0], "a dark expanse of unirrigated soil that spread downward in": [65535, 0], "dark expanse of unirrigated soil that spread downward in front": [65535, 0], "expanse of unirrigated soil that spread downward in front and": [65535, 0], "of unirrigated soil that spread downward in front and backward": [65535, 0], "unirrigated soil that spread downward in front and backward around": [65535, 0], "soil that spread downward in front and backward around his": [65535, 0], "that spread downward in front and backward around his neck": [65535, 0], "spread downward in front and backward around his neck mary": [65535, 0], "downward in front and backward around his neck mary took": [65535, 0], "in front and backward around his neck mary took him": [65535, 0], "front and backward around his neck mary took him in": [65535, 0], "and backward around his neck mary took him in hand": [65535, 0], "backward around his neck mary took him in hand and": [65535, 0], "around his neck mary took him in hand and when": [65535, 0], "his neck mary took him in hand and when she": [65535, 0], "neck mary took him in hand and when she was": [65535, 0], "mary took him in hand and when she was done": [65535, 0], "took him in hand and when she was done with": [65535, 0], "him in hand and when she was done with him": [65535, 0], "in hand and when she was done with him he": [65535, 0], "hand and when she was done with him he was": [65535, 0], "and when she was done with him he was a": [65535, 0], "when she was done with him he was a man": [65535, 0], "she was done with him he was a man and": [65535, 0], "was done with him he was a man and a": [65535, 0], "done with him he was a man and a brother": [65535, 0], "with him he was a man and a brother without": [65535, 0], "him he was a man and a brother without distinction": [65535, 0], "he was a man and a brother without distinction of": [65535, 0], "was a man and a brother without distinction of color": [65535, 0], "a man and a brother without distinction of color and": [65535, 0], "man and a brother without distinction of color and his": [65535, 0], "and a brother without distinction of color and his saturated": [65535, 0], "a brother without distinction of color and his saturated hair": [65535, 0], "brother without distinction of color and his saturated hair was": [65535, 0], "without distinction of color and his saturated hair was neatly": [65535, 0], "distinction of color and his saturated hair was neatly brushed": [65535, 0], "of color and his saturated hair was neatly brushed and": [65535, 0], "color and his saturated hair was neatly brushed and its": [65535, 0], "and his saturated hair was neatly brushed and its short": [65535, 0], "his saturated hair was neatly brushed and its short curls": [65535, 0], "saturated hair was neatly brushed and its short curls wrought": [65535, 0], "hair was neatly brushed and its short curls wrought into": [65535, 0], "was neatly brushed and its short curls wrought into a": [65535, 0], "neatly brushed and its short curls wrought into a dainty": [65535, 0], "brushed and its short curls wrought into a dainty and": [65535, 0], "and its short curls wrought into a dainty and symmetrical": [65535, 0], "its short curls wrought into a dainty and symmetrical general": [65535, 0], "short curls wrought into a dainty and symmetrical general effect": [65535, 0], "curls wrought into a dainty and symmetrical general effect he": [65535, 0], "wrought into a dainty and symmetrical general effect he privately": [65535, 0], "into a dainty and symmetrical general effect he privately smoothed": [65535, 0], "a dainty and symmetrical general effect he privately smoothed out": [65535, 0], "dainty and symmetrical general effect he privately smoothed out the": [65535, 0], "and symmetrical general effect he privately smoothed out the curls": [65535, 0], "symmetrical general effect he privately smoothed out the curls with": [65535, 0], "general effect he privately smoothed out the curls with labor": [65535, 0], "effect he privately smoothed out the curls with labor and": [65535, 0], "he privately smoothed out the curls with labor and difficulty": [65535, 0], "privately smoothed out the curls with labor and difficulty and": [65535, 0], "smoothed out the curls with labor and difficulty and plastered": [65535, 0], "out the curls with labor and difficulty and plastered his": [65535, 0], "the curls with labor and difficulty and plastered his hair": [65535, 0], "curls with labor and difficulty and plastered his hair close": [65535, 0], "with labor and difficulty and plastered his hair close down": [65535, 0], "labor and difficulty and plastered his hair close down to": [65535, 0], "and difficulty and plastered his hair close down to his": [65535, 0], "difficulty and plastered his hair close down to his head": [65535, 0], "and plastered his hair close down to his head for": [65535, 0], "plastered his hair close down to his head for he": [65535, 0], "his hair close down to his head for he held": [65535, 0], "hair close down to his head for he held curls": [65535, 0], "close down to his head for he held curls to": [65535, 0], "down to his head for he held curls to be": [65535, 0], "to his head for he held curls to be effeminate": [65535, 0], "his head for he held curls to be effeminate and": [65535, 0], "head for he held curls to be effeminate and his": [65535, 0], "for he held curls to be effeminate and his own": [65535, 0], "he held curls to be effeminate and his own filled": [65535, 0], "held curls to be effeminate and his own filled his": [65535, 0], "curls to be effeminate and his own filled his life": [65535, 0], "to be effeminate and his own filled his life with": [65535, 0], "be effeminate and his own filled his life with bitterness": [65535, 0], "effeminate and his own filled his life with bitterness then": [65535, 0], "and his own filled his life with bitterness then mary": [65535, 0], "his own filled his life with bitterness then mary got": [65535, 0], "own filled his life with bitterness then mary got out": [65535, 0], "filled his life with bitterness then mary got out a": [65535, 0], "his life with bitterness then mary got out a suit": [65535, 0], "life with bitterness then mary got out a suit of": [65535, 0], "with bitterness then mary got out a suit of his": [65535, 0], "bitterness then mary got out a suit of his clothing": [65535, 0], "then mary got out a suit of his clothing that": [65535, 0], "mary got out a suit of his clothing that had": [65535, 0], "got out a suit of his clothing that had been": [65535, 0], "out a suit of his clothing that had been used": [65535, 0], "a suit of his clothing that had been used only": [65535, 0], "suit of his clothing that had been used only on": [65535, 0], "of his clothing that had been used only on sundays": [65535, 0], "his clothing that had been used only on sundays during": [65535, 0], "clothing that had been used only on sundays during two": [65535, 0], "that had been used only on sundays during two years": [65535, 0], "had been used only on sundays during two years they": [65535, 0], "been used only on sundays during two years they were": [65535, 0], "used only on sundays during two years they were simply": [65535, 0], "only on sundays during two years they were simply called": [65535, 0], "on sundays during two years they were simply called his": [65535, 0], "sundays during two years they were simply called his other": [65535, 0], "during two years they were simply called his other clothes": [65535, 0], "two years they were simply called his other clothes and": [65535, 0], "years they were simply called his other clothes and so": [65535, 0], "they were simply called his other clothes and so by": [65535, 0], "were simply called his other clothes and so by that": [65535, 0], "simply called his other clothes and so by that we": [65535, 0], "called his other clothes and so by that we know": [65535, 0], "his other clothes and so by that we know the": [65535, 0], "other clothes and so by that we know the size": [65535, 0], "clothes and so by that we know the size of": [65535, 0], "and so by that we know the size of his": [65535, 0], "so by that we know the size of his wardrobe": [65535, 0], "by that we know the size of his wardrobe the": [65535, 0], "that we know the size of his wardrobe the girl": [65535, 0], "we know the size of his wardrobe the girl put": [65535, 0], "know the size of his wardrobe the girl put him": [65535, 0], "the size of his wardrobe the girl put him to": [65535, 0], "size of his wardrobe the girl put him to rights": [65535, 0], "of his wardrobe the girl put him to rights after": [65535, 0], "his wardrobe the girl put him to rights after he": [65535, 0], "wardrobe the girl put him to rights after he had": [65535, 0], "the girl put him to rights after he had dressed": [65535, 0], "girl put him to rights after he had dressed himself": [65535, 0], "put him to rights after he had dressed himself she": [65535, 0], "him to rights after he had dressed himself she buttoned": [65535, 0], "to rights after he had dressed himself she buttoned his": [65535, 0], "rights after he had dressed himself she buttoned his neat": [65535, 0], "after he had dressed himself she buttoned his neat roundabout": [65535, 0], "he had dressed himself she buttoned his neat roundabout up": [65535, 0], "had dressed himself she buttoned his neat roundabout up to": [65535, 0], "dressed himself she buttoned his neat roundabout up to his": [65535, 0], "himself she buttoned his neat roundabout up to his chin": [65535, 0], "she buttoned his neat roundabout up to his chin turned": [65535, 0], "buttoned his neat roundabout up to his chin turned his": [65535, 0], "his neat roundabout up to his chin turned his vast": [65535, 0], "neat roundabout up to his chin turned his vast shirt": [65535, 0], "roundabout up to his chin turned his vast shirt collar": [65535, 0], "up to his chin turned his vast shirt collar down": [65535, 0], "to his chin turned his vast shirt collar down over": [65535, 0], "his chin turned his vast shirt collar down over his": [65535, 0], "chin turned his vast shirt collar down over his shoulders": [65535, 0], "turned his vast shirt collar down over his shoulders brushed": [65535, 0], "his vast shirt collar down over his shoulders brushed him": [65535, 0], "vast shirt collar down over his shoulders brushed him off": [65535, 0], "shirt collar down over his shoulders brushed him off and": [65535, 0], "collar down over his shoulders brushed him off and crowned": [65535, 0], "down over his shoulders brushed him off and crowned him": [65535, 0], "over his shoulders brushed him off and crowned him with": [65535, 0], "his shoulders brushed him off and crowned him with his": [65535, 0], "shoulders brushed him off and crowned him with his speckled": [65535, 0], "brushed him off and crowned him with his speckled straw": [65535, 0], "him off and crowned him with his speckled straw hat": [65535, 0], "off and crowned him with his speckled straw hat he": [65535, 0], "and crowned him with his speckled straw hat he now": [65535, 0], "crowned him with his speckled straw hat he now looked": [65535, 0], "him with his speckled straw hat he now looked exceedingly": [65535, 0], "with his speckled straw hat he now looked exceedingly improved": [65535, 0], "his speckled straw hat he now looked exceedingly improved and": [65535, 0], "speckled straw hat he now looked exceedingly improved and uncomfortable": [65535, 0], "straw hat he now looked exceedingly improved and uncomfortable he": [65535, 0], "hat he now looked exceedingly improved and uncomfortable he was": [65535, 0], "he now looked exceedingly improved and uncomfortable he was fully": [65535, 0], "now looked exceedingly improved and uncomfortable he was fully as": [65535, 0], "looked exceedingly improved and uncomfortable he was fully as uncomfortable": [65535, 0], "exceedingly improved and uncomfortable he was fully as uncomfortable as": [65535, 0], "improved and uncomfortable he was fully as uncomfortable as he": [65535, 0], "and uncomfortable he was fully as uncomfortable as he looked": [65535, 0], "uncomfortable he was fully as uncomfortable as he looked for": [65535, 0], "he was fully as uncomfortable as he looked for there": [65535, 0], "was fully as uncomfortable as he looked for there was": [65535, 0], "fully as uncomfortable as he looked for there was a": [65535, 0], "as uncomfortable as he looked for there was a restraint": [65535, 0], "uncomfortable as he looked for there was a restraint about": [65535, 0], "as he looked for there was a restraint about whole": [65535, 0], "he looked for there was a restraint about whole clothes": [65535, 0], "looked for there was a restraint about whole clothes and": [65535, 0], "for there was a restraint about whole clothes and cleanliness": [65535, 0], "there was a restraint about whole clothes and cleanliness that": [65535, 0], "was a restraint about whole clothes and cleanliness that galled": [65535, 0], "a restraint about whole clothes and cleanliness that galled him": [65535, 0], "restraint about whole clothes and cleanliness that galled him he": [65535, 0], "about whole clothes and cleanliness that galled him he hoped": [65535, 0], "whole clothes and cleanliness that galled him he hoped that": [65535, 0], "clothes and cleanliness that galled him he hoped that mary": [65535, 0], "and cleanliness that galled him he hoped that mary would": [65535, 0], "cleanliness that galled him he hoped that mary would forget": [65535, 0], "that galled him he hoped that mary would forget his": [65535, 0], "galled him he hoped that mary would forget his shoes": [65535, 0], "him he hoped that mary would forget his shoes but": [65535, 0], "he hoped that mary would forget his shoes but the": [65535, 0], "hoped that mary would forget his shoes but the hope": [65535, 0], "that mary would forget his shoes but the hope was": [65535, 0], "mary would forget his shoes but the hope was blighted": [65535, 0], "would forget his shoes but the hope was blighted she": [65535, 0], "forget his shoes but the hope was blighted she coated": [65535, 0], "his shoes but the hope was blighted she coated them": [65535, 0], "shoes but the hope was blighted she coated them thoroughly": [65535, 0], "but the hope was blighted she coated them thoroughly with": [65535, 0], "the hope was blighted she coated them thoroughly with tallow": [65535, 0], "hope was blighted she coated them thoroughly with tallow as": [65535, 0], "was blighted she coated them thoroughly with tallow as was": [65535, 0], "blighted she coated them thoroughly with tallow as was the": [65535, 0], "she coated them thoroughly with tallow as was the custom": [65535, 0], "coated them thoroughly with tallow as was the custom and": [65535, 0], "them thoroughly with tallow as was the custom and brought": [65535, 0], "thoroughly with tallow as was the custom and brought them": [65535, 0], "with tallow as was the custom and brought them out": [65535, 0], "tallow as was the custom and brought them out he": [65535, 0], "as was the custom and brought them out he lost": [65535, 0], "was the custom and brought them out he lost his": [65535, 0], "the custom and brought them out he lost his temper": [65535, 0], "custom and brought them out he lost his temper and": [65535, 0], "and brought them out he lost his temper and said": [65535, 0], "brought them out he lost his temper and said he": [65535, 0], "them out he lost his temper and said he was": [65535, 0], "out he lost his temper and said he was always": [65535, 0], "he lost his temper and said he was always being": [65535, 0], "lost his temper and said he was always being made": [65535, 0], "his temper and said he was always being made to": [65535, 0], "temper and said he was always being made to do": [65535, 0], "and said he was always being made to do everything": [65535, 0], "said he was always being made to do everything he": [65535, 0], "he was always being made to do everything he didn't": [65535, 0], "was always being made to do everything he didn't want": [65535, 0], "always being made to do everything he didn't want to": [65535, 0], "being made to do everything he didn't want to do": [65535, 0], "made to do everything he didn't want to do but": [65535, 0], "to do everything he didn't want to do but mary": [65535, 0], "do everything he didn't want to do but mary said": [65535, 0], "everything he didn't want to do but mary said persuasively": [65535, 0], "he didn't want to do but mary said persuasively please": [65535, 0], "didn't want to do but mary said persuasively please tom": [65535, 0], "want to do but mary said persuasively please tom that's": [65535, 0], "to do but mary said persuasively please tom that's a": [65535, 0], "do but mary said persuasively please tom that's a good": [65535, 0], "but mary said persuasively please tom that's a good boy": [65535, 0], "mary said persuasively please tom that's a good boy so": [65535, 0], "said persuasively please tom that's a good boy so he": [65535, 0], "persuasively please tom that's a good boy so he got": [65535, 0], "please tom that's a good boy so he got into": [65535, 0], "tom that's a good boy so he got into the": [65535, 0], "that's a good boy so he got into the shoes": [65535, 0], "a good boy so he got into the shoes snarling": [65535, 0], "good boy so he got into the shoes snarling mary": [65535, 0], "boy so he got into the shoes snarling mary was": [65535, 0], "so he got into the shoes snarling mary was soon": [65535, 0], "he got into the shoes snarling mary was soon ready": [65535, 0], "got into the shoes snarling mary was soon ready and": [65535, 0], "into the shoes snarling mary was soon ready and the": [65535, 0], "the shoes snarling mary was soon ready and the three": [65535, 0], "shoes snarling mary was soon ready and the three children": [65535, 0], "snarling mary was soon ready and the three children set": [65535, 0], "mary was soon ready and the three children set out": [65535, 0], "was soon ready and the three children set out for": [65535, 0], "soon ready and the three children set out for sunday": [65535, 0], "ready and the three children set out for sunday school": [65535, 0], "and the three children set out for sunday school a": [65535, 0], "the three children set out for sunday school a place": [65535, 0], "three children set out for sunday school a place that": [65535, 0], "children set out for sunday school a place that tom": [65535, 0], "set out for sunday school a place that tom hated": [65535, 0], "out for sunday school a place that tom hated with": [65535, 0], "for sunday school a place that tom hated with his": [65535, 0], "sunday school a place that tom hated with his whole": [65535, 0], "school a place that tom hated with his whole heart": [65535, 0], "a place that tom hated with his whole heart but": [65535, 0], "place that tom hated with his whole heart but sid": [65535, 0], "that tom hated with his whole heart but sid and": [65535, 0], "tom hated with his whole heart but sid and mary": [65535, 0], "hated with his whole heart but sid and mary were": [65535, 0], "with his whole heart but sid and mary were fond": [65535, 0], "his whole heart but sid and mary were fond of": [65535, 0], "whole heart but sid and mary were fond of it": [65535, 0], "heart but sid and mary were fond of it sabbath": [65535, 0], "but sid and mary were fond of it sabbath school": [65535, 0], "sid and mary were fond of it sabbath school hours": [65535, 0], "and mary were fond of it sabbath school hours were": [65535, 0], "mary were fond of it sabbath school hours were from": [65535, 0], "were fond of it sabbath school hours were from nine": [65535, 0], "fond of it sabbath school hours were from nine to": [65535, 0], "of it sabbath school hours were from nine to half": [65535, 0], "it sabbath school hours were from nine to half past": [65535, 0], "sabbath school hours were from nine to half past ten": [65535, 0], "school hours were from nine to half past ten and": [65535, 0], "hours were from nine to half past ten and then": [65535, 0], "were from nine to half past ten and then church": [65535, 0], "from nine to half past ten and then church service": [65535, 0], "nine to half past ten and then church service two": [65535, 0], "to half past ten and then church service two of": [65535, 0], "half past ten and then church service two of the": [65535, 0], "past ten and then church service two of the children": [65535, 0], "ten and then church service two of the children always": [65535, 0], "and then church service two of the children always remained": [65535, 0], "then church service two of the children always remained for": [65535, 0], "church service two of the children always remained for the": [65535, 0], "service two of the children always remained for the sermon": [65535, 0], "two of the children always remained for the sermon voluntarily": [65535, 0], "of the children always remained for the sermon voluntarily and": [65535, 0], "the children always remained for the sermon voluntarily and the": [65535, 0], "children always remained for the sermon voluntarily and the other": [65535, 0], "always remained for the sermon voluntarily and the other always": [65535, 0], "remained for the sermon voluntarily and the other always remained": [65535, 0], "for the sermon voluntarily and the other always remained too": [65535, 0], "the sermon voluntarily and the other always remained too for": [65535, 0], "sermon voluntarily and the other always remained too for stronger": [65535, 0], "voluntarily and the other always remained too for stronger reasons": [65535, 0], "and the other always remained too for stronger reasons the": [65535, 0], "the other always remained too for stronger reasons the church's": [65535, 0], "other always remained too for stronger reasons the church's high": [65535, 0], "always remained too for stronger reasons the church's high backed": [65535, 0], "remained too for stronger reasons the church's high backed uncushioned": [65535, 0], "too for stronger reasons the church's high backed uncushioned pews": [65535, 0], "for stronger reasons the church's high backed uncushioned pews would": [65535, 0], "stronger reasons the church's high backed uncushioned pews would seat": [65535, 0], "reasons the church's high backed uncushioned pews would seat about": [65535, 0], "the church's high backed uncushioned pews would seat about three": [65535, 0], "church's high backed uncushioned pews would seat about three hundred": [65535, 0], "high backed uncushioned pews would seat about three hundred persons": [65535, 0], "backed uncushioned pews would seat about three hundred persons the": [65535, 0], "uncushioned pews would seat about three hundred persons the edifice": [65535, 0], "pews would seat about three hundred persons the edifice was": [65535, 0], "would seat about three hundred persons the edifice was but": [65535, 0], "seat about three hundred persons the edifice was but a": [65535, 0], "about three hundred persons the edifice was but a small": [65535, 0], "three hundred persons the edifice was but a small plain": [65535, 0], "hundred persons the edifice was but a small plain affair": [65535, 0], "persons the edifice was but a small plain affair with": [65535, 0], "the edifice was but a small plain affair with a": [65535, 0], "edifice was but a small plain affair with a sort": [65535, 0], "was but a small plain affair with a sort of": [65535, 0], "but a small plain affair with a sort of pine": [65535, 0], "a small plain affair with a sort of pine board": [65535, 0], "small plain affair with a sort of pine board tree": [65535, 0], "plain affair with a sort of pine board tree box": [65535, 0], "affair with a sort of pine board tree box on": [65535, 0], "with a sort of pine board tree box on top": [65535, 0], "a sort of pine board tree box on top of": [65535, 0], "sort of pine board tree box on top of it": [65535, 0], "of pine board tree box on top of it for": [65535, 0], "pine board tree box on top of it for a": [65535, 0], "board tree box on top of it for a steeple": [65535, 0], "tree box on top of it for a steeple at": [65535, 0], "box on top of it for a steeple at the": [65535, 0], "on top of it for a steeple at the door": [65535, 0], "top of it for a steeple at the door tom": [65535, 0], "of it for a steeple at the door tom dropped": [65535, 0], "it for a steeple at the door tom dropped back": [65535, 0], "for a steeple at the door tom dropped back a": [65535, 0], "a steeple at the door tom dropped back a step": [65535, 0], "steeple at the door tom dropped back a step and": [65535, 0], "at the door tom dropped back a step and accosted": [65535, 0], "the door tom dropped back a step and accosted a": [65535, 0], "door tom dropped back a step and accosted a sunday": [65535, 0], "tom dropped back a step and accosted a sunday dressed": [65535, 0], "dropped back a step and accosted a sunday dressed comrade": [65535, 0], "back a step and accosted a sunday dressed comrade say": [65535, 0], "a step and accosted a sunday dressed comrade say billy": [65535, 0], "step and accosted a sunday dressed comrade say billy got": [65535, 0], "and accosted a sunday dressed comrade say billy got a": [65535, 0], "accosted a sunday dressed comrade say billy got a yaller": [65535, 0], "a sunday dressed comrade say billy got a yaller ticket": [65535, 0], "sunday dressed comrade say billy got a yaller ticket yes": [65535, 0], "dressed comrade say billy got a yaller ticket yes what'll": [65535, 0], "comrade say billy got a yaller ticket yes what'll you": [65535, 0], "say billy got a yaller ticket yes what'll you take": [65535, 0], "billy got a yaller ticket yes what'll you take for": [65535, 0], "got a yaller ticket yes what'll you take for her": [65535, 0], "a yaller ticket yes what'll you take for her what'll": [65535, 0], "yaller ticket yes what'll you take for her what'll you": [65535, 0], "ticket yes what'll you take for her what'll you give": [65535, 0], "yes what'll you take for her what'll you give piece": [65535, 0], "what'll you take for her what'll you give piece of": [65535, 0], "you take for her what'll you give piece of lickrish": [65535, 0], "take for her what'll you give piece of lickrish and": [65535, 0], "for her what'll you give piece of lickrish and a": [65535, 0], "her what'll you give piece of lickrish and a fish": [65535, 0], "what'll you give piece of lickrish and a fish hook": [65535, 0], "you give piece of lickrish and a fish hook less": [65535, 0], "give piece of lickrish and a fish hook less see": [65535, 0], "piece of lickrish and a fish hook less see 'em": [65535, 0], "of lickrish and a fish hook less see 'em tom": [65535, 0], "lickrish and a fish hook less see 'em tom exhibited": [65535, 0], "and a fish hook less see 'em tom exhibited they": [65535, 0], "a fish hook less see 'em tom exhibited they were": [65535, 0], "fish hook less see 'em tom exhibited they were satisfactory": [65535, 0], "hook less see 'em tom exhibited they were satisfactory and": [65535, 0], "less see 'em tom exhibited they were satisfactory and the": [65535, 0], "see 'em tom exhibited they were satisfactory and the property": [65535, 0], "'em tom exhibited they were satisfactory and the property changed": [65535, 0], "tom exhibited they were satisfactory and the property changed hands": [65535, 0], "exhibited they were satisfactory and the property changed hands then": [65535, 0], "they were satisfactory and the property changed hands then tom": [65535, 0], "were satisfactory and the property changed hands then tom traded": [65535, 0], "satisfactory and the property changed hands then tom traded a": [65535, 0], "and the property changed hands then tom traded a couple": [65535, 0], "the property changed hands then tom traded a couple of": [65535, 0], "property changed hands then tom traded a couple of white": [65535, 0], "changed hands then tom traded a couple of white alleys": [65535, 0], "hands then tom traded a couple of white alleys for": [65535, 0], "then tom traded a couple of white alleys for three": [65535, 0], "tom traded a couple of white alleys for three red": [65535, 0], "traded a couple of white alleys for three red tickets": [65535, 0], "a couple of white alleys for three red tickets and": [65535, 0], "couple of white alleys for three red tickets and some": [65535, 0], "of white alleys for three red tickets and some small": [65535, 0], "white alleys for three red tickets and some small trifle": [65535, 0], "alleys for three red tickets and some small trifle or": [65535, 0], "for three red tickets and some small trifle or other": [65535, 0], "three red tickets and some small trifle or other for": [65535, 0], "red tickets and some small trifle or other for a": [65535, 0], "tickets and some small trifle or other for a couple": [65535, 0], "and some small trifle or other for a couple of": [65535, 0], "some small trifle or other for a couple of blue": [65535, 0], "small trifle or other for a couple of blue ones": [65535, 0], "trifle or other for a couple of blue ones he": [65535, 0], "or other for a couple of blue ones he waylaid": [65535, 0], "other for a couple of blue ones he waylaid other": [65535, 0], "for a couple of blue ones he waylaid other boys": [65535, 0], "a couple of blue ones he waylaid other boys as": [65535, 0], "couple of blue ones he waylaid other boys as they": [65535, 0], "of blue ones he waylaid other boys as they came": [65535, 0], "blue ones he waylaid other boys as they came and": [65535, 0], "ones he waylaid other boys as they came and went": [65535, 0], "he waylaid other boys as they came and went on": [65535, 0], "waylaid other boys as they came and went on buying": [65535, 0], "other boys as they came and went on buying tickets": [65535, 0], "boys as they came and went on buying tickets of": [65535, 0], "as they came and went on buying tickets of various": [65535, 0], "they came and went on buying tickets of various colors": [65535, 0], "came and went on buying tickets of various colors ten": [65535, 0], "and went on buying tickets of various colors ten or": [65535, 0], "went on buying tickets of various colors ten or fifteen": [65535, 0], "on buying tickets of various colors ten or fifteen minutes": [65535, 0], "buying tickets of various colors ten or fifteen minutes longer": [65535, 0], "tickets of various colors ten or fifteen minutes longer he": [65535, 0], "of various colors ten or fifteen minutes longer he entered": [65535, 0], "various colors ten or fifteen minutes longer he entered the": [65535, 0], "colors ten or fifteen minutes longer he entered the church": [65535, 0], "ten or fifteen minutes longer he entered the church now": [65535, 0], "or fifteen minutes longer he entered the church now with": [65535, 0], "fifteen minutes longer he entered the church now with a": [65535, 0], "minutes longer he entered the church now with a swarm": [65535, 0], "longer he entered the church now with a swarm of": [65535, 0], "he entered the church now with a swarm of clean": [65535, 0], "entered the church now with a swarm of clean and": [65535, 0], "the church now with a swarm of clean and noisy": [65535, 0], "church now with a swarm of clean and noisy boys": [65535, 0], "now with a swarm of clean and noisy boys and": [65535, 0], "with a swarm of clean and noisy boys and girls": [65535, 0], "a swarm of clean and noisy boys and girls proceeded": [65535, 0], "swarm of clean and noisy boys and girls proceeded to": [65535, 0], "of clean and noisy boys and girls proceeded to his": [65535, 0], "clean and noisy boys and girls proceeded to his seat": [65535, 0], "and noisy boys and girls proceeded to his seat and": [65535, 0], "noisy boys and girls proceeded to his seat and started": [65535, 0], "boys and girls proceeded to his seat and started a": [65535, 0], "and girls proceeded to his seat and started a quarrel": [65535, 0], "girls proceeded to his seat and started a quarrel with": [65535, 0], "proceeded to his seat and started a quarrel with the": [65535, 0], "to his seat and started a quarrel with the first": [65535, 0], "his seat and started a quarrel with the first boy": [65535, 0], "seat and started a quarrel with the first boy that": [65535, 0], "and started a quarrel with the first boy that came": [65535, 0], "started a quarrel with the first boy that came handy": [65535, 0], "a quarrel with the first boy that came handy the": [65535, 0], "quarrel with the first boy that came handy the teacher": [65535, 0], "with the first boy that came handy the teacher a": [65535, 0], "the first boy that came handy the teacher a grave": [65535, 0], "first boy that came handy the teacher a grave elderly": [65535, 0], "boy that came handy the teacher a grave elderly man": [65535, 0], "that came handy the teacher a grave elderly man interfered": [65535, 0], "came handy the teacher a grave elderly man interfered then": [65535, 0], "handy the teacher a grave elderly man interfered then turned": [65535, 0], "the teacher a grave elderly man interfered then turned his": [65535, 0], "teacher a grave elderly man interfered then turned his back": [65535, 0], "a grave elderly man interfered then turned his back a": [65535, 0], "grave elderly man interfered then turned his back a moment": [65535, 0], "elderly man interfered then turned his back a moment and": [65535, 0], "man interfered then turned his back a moment and tom": [65535, 0], "interfered then turned his back a moment and tom pulled": [65535, 0], "then turned his back a moment and tom pulled a": [65535, 0], "turned his back a moment and tom pulled a boy's": [65535, 0], "his back a moment and tom pulled a boy's hair": [65535, 0], "back a moment and tom pulled a boy's hair in": [65535, 0], "a moment and tom pulled a boy's hair in the": [65535, 0], "moment and tom pulled a boy's hair in the next": [65535, 0], "and tom pulled a boy's hair in the next bench": [65535, 0], "tom pulled a boy's hair in the next bench and": [65535, 0], "pulled a boy's hair in the next bench and was": [65535, 0], "a boy's hair in the next bench and was absorbed": [65535, 0], "boy's hair in the next bench and was absorbed in": [65535, 0], "hair in the next bench and was absorbed in his": [65535, 0], "in the next bench and was absorbed in his book": [65535, 0], "the next bench and was absorbed in his book when": [65535, 0], "next bench and was absorbed in his book when the": [65535, 0], "bench and was absorbed in his book when the boy": [65535, 0], "and was absorbed in his book when the boy turned": [65535, 0], "was absorbed in his book when the boy turned around": [65535, 0], "absorbed in his book when the boy turned around stuck": [65535, 0], "in his book when the boy turned around stuck a": [65535, 0], "his book when the boy turned around stuck a pin": [65535, 0], "book when the boy turned around stuck a pin in": [65535, 0], "when the boy turned around stuck a pin in another": [65535, 0], "the boy turned around stuck a pin in another boy": [65535, 0], "boy turned around stuck a pin in another boy presently": [65535, 0], "turned around stuck a pin in another boy presently in": [65535, 0], "around stuck a pin in another boy presently in order": [65535, 0], "stuck a pin in another boy presently in order to": [65535, 0], "a pin in another boy presently in order to hear": [65535, 0], "pin in another boy presently in order to hear him": [65535, 0], "in another boy presently in order to hear him say": [65535, 0], "another boy presently in order to hear him say ouch": [65535, 0], "boy presently in order to hear him say ouch and": [65535, 0], "presently in order to hear him say ouch and got": [65535, 0], "in order to hear him say ouch and got a": [65535, 0], "order to hear him say ouch and got a new": [65535, 0], "to hear him say ouch and got a new reprimand": [65535, 0], "hear him say ouch and got a new reprimand from": [65535, 0], "him say ouch and got a new reprimand from his": [65535, 0], "say ouch and got a new reprimand from his teacher": [65535, 0], "ouch and got a new reprimand from his teacher tom's": [65535, 0], "and got a new reprimand from his teacher tom's whole": [65535, 0], "got a new reprimand from his teacher tom's whole class": [65535, 0], "a new reprimand from his teacher tom's whole class were": [65535, 0], "new reprimand from his teacher tom's whole class were of": [65535, 0], "reprimand from his teacher tom's whole class were of a": [65535, 0], "from his teacher tom's whole class were of a pattern": [65535, 0], "his teacher tom's whole class were of a pattern restless": [65535, 0], "teacher tom's whole class were of a pattern restless noisy": [65535, 0], "tom's whole class were of a pattern restless noisy and": [65535, 0], "whole class were of a pattern restless noisy and troublesome": [65535, 0], "class were of a pattern restless noisy and troublesome when": [65535, 0], "were of a pattern restless noisy and troublesome when they": [65535, 0], "of a pattern restless noisy and troublesome when they came": [65535, 0], "a pattern restless noisy and troublesome when they came to": [65535, 0], "pattern restless noisy and troublesome when they came to recite": [65535, 0], "restless noisy and troublesome when they came to recite their": [65535, 0], "noisy and troublesome when they came to recite their lessons": [65535, 0], "and troublesome when they came to recite their lessons not": [65535, 0], "troublesome when they came to recite their lessons not one": [65535, 0], "when they came to recite their lessons not one of": [65535, 0], "they came to recite their lessons not one of them": [65535, 0], "came to recite their lessons not one of them knew": [65535, 0], "to recite their lessons not one of them knew his": [65535, 0], "recite their lessons not one of them knew his verses": [65535, 0], "their lessons not one of them knew his verses perfectly": [65535, 0], "lessons not one of them knew his verses perfectly but": [65535, 0], "not one of them knew his verses perfectly but had": [65535, 0], "one of them knew his verses perfectly but had to": [65535, 0], "of them knew his verses perfectly but had to be": [65535, 0], "them knew his verses perfectly but had to be prompted": [65535, 0], "knew his verses perfectly but had to be prompted all": [65535, 0], "his verses perfectly but had to be prompted all along": [65535, 0], "verses perfectly but had to be prompted all along however": [65535, 0], "perfectly but had to be prompted all along however they": [65535, 0], "but had to be prompted all along however they worried": [65535, 0], "had to be prompted all along however they worried through": [65535, 0], "to be prompted all along however they worried through and": [65535, 0], "be prompted all along however they worried through and each": [65535, 0], "prompted all along however they worried through and each got": [65535, 0], "all along however they worried through and each got his": [65535, 0], "along however they worried through and each got his reward": [65535, 0], "however they worried through and each got his reward in": [65535, 0], "they worried through and each got his reward in small": [65535, 0], "worried through and each got his reward in small blue": [65535, 0], "through and each got his reward in small blue tickets": [65535, 0], "and each got his reward in small blue tickets each": [65535, 0], "each got his reward in small blue tickets each with": [65535, 0], "got his reward in small blue tickets each with a": [65535, 0], "his reward in small blue tickets each with a passage": [65535, 0], "reward in small blue tickets each with a passage of": [65535, 0], "in small blue tickets each with a passage of scripture": [65535, 0], "small blue tickets each with a passage of scripture on": [65535, 0], "blue tickets each with a passage of scripture on it": [65535, 0], "tickets each with a passage of scripture on it each": [65535, 0], "each with a passage of scripture on it each blue": [65535, 0], "with a passage of scripture on it each blue ticket": [65535, 0], "a passage of scripture on it each blue ticket was": [65535, 0], "passage of scripture on it each blue ticket was pay": [65535, 0], "of scripture on it each blue ticket was pay for": [65535, 0], "scripture on it each blue ticket was pay for two": [65535, 0], "on it each blue ticket was pay for two verses": [65535, 0], "it each blue ticket was pay for two verses of": [65535, 0], "each blue ticket was pay for two verses of the": [65535, 0], "blue ticket was pay for two verses of the recitation": [65535, 0], "ticket was pay for two verses of the recitation ten": [65535, 0], "was pay for two verses of the recitation ten blue": [65535, 0], "pay for two verses of the recitation ten blue tickets": [65535, 0], "for two verses of the recitation ten blue tickets equalled": [65535, 0], "two verses of the recitation ten blue tickets equalled a": [65535, 0], "verses of the recitation ten blue tickets equalled a red": [65535, 0], "of the recitation ten blue tickets equalled a red one": [65535, 0], "the recitation ten blue tickets equalled a red one and": [65535, 0], "recitation ten blue tickets equalled a red one and could": [65535, 0], "ten blue tickets equalled a red one and could be": [65535, 0], "blue tickets equalled a red one and could be exchanged": [65535, 0], "tickets equalled a red one and could be exchanged for": [65535, 0], "equalled a red one and could be exchanged for it": [65535, 0], "a red one and could be exchanged for it ten": [65535, 0], "red one and could be exchanged for it ten red": [65535, 0], "one and could be exchanged for it ten red tickets": [65535, 0], "and could be exchanged for it ten red tickets equalled": [65535, 0], "could be exchanged for it ten red tickets equalled a": [65535, 0], "be exchanged for it ten red tickets equalled a yellow": [65535, 0], "exchanged for it ten red tickets equalled a yellow one": [65535, 0], "for it ten red tickets equalled a yellow one for": [65535, 0], "it ten red tickets equalled a yellow one for ten": [65535, 0], "ten red tickets equalled a yellow one for ten yellow": [65535, 0], "red tickets equalled a yellow one for ten yellow tickets": [65535, 0], "tickets equalled a yellow one for ten yellow tickets the": [65535, 0], "equalled a yellow one for ten yellow tickets the superintendent": [65535, 0], "a yellow one for ten yellow tickets the superintendent gave": [65535, 0], "yellow one for ten yellow tickets the superintendent gave a": [65535, 0], "one for ten yellow tickets the superintendent gave a very": [65535, 0], "for ten yellow tickets the superintendent gave a very plainly": [65535, 0], "ten yellow tickets the superintendent gave a very plainly bound": [65535, 0], "yellow tickets the superintendent gave a very plainly bound bible": [65535, 0], "tickets the superintendent gave a very plainly bound bible worth": [65535, 0], "the superintendent gave a very plainly bound bible worth forty": [65535, 0], "superintendent gave a very plainly bound bible worth forty cents": [65535, 0], "gave a very plainly bound bible worth forty cents in": [65535, 0], "a very plainly bound bible worth forty cents in those": [65535, 0], "very plainly bound bible worth forty cents in those easy": [65535, 0], "plainly bound bible worth forty cents in those easy times": [65535, 0], "bound bible worth forty cents in those easy times to": [65535, 0], "bible worth forty cents in those easy times to the": [65535, 0], "worth forty cents in those easy times to the pupil": [65535, 0], "forty cents in those easy times to the pupil how": [65535, 0], "cents in those easy times to the pupil how many": [65535, 0], "in those easy times to the pupil how many of": [65535, 0], "those easy times to the pupil how many of my": [65535, 0], "easy times to the pupil how many of my readers": [65535, 0], "times to the pupil how many of my readers would": [65535, 0], "to the pupil how many of my readers would have": [65535, 0], "the pupil how many of my readers would have the": [65535, 0], "pupil how many of my readers would have the industry": [65535, 0], "how many of my readers would have the industry and": [65535, 0], "many of my readers would have the industry and application": [65535, 0], "of my readers would have the industry and application to": [65535, 0], "my readers would have the industry and application to memorize": [65535, 0], "readers would have the industry and application to memorize two": [65535, 0], "would have the industry and application to memorize two thousand": [65535, 0], "have the industry and application to memorize two thousand verses": [65535, 0], "the industry and application to memorize two thousand verses even": [65535, 0], "industry and application to memorize two thousand verses even for": [65535, 0], "and application to memorize two thousand verses even for a": [65535, 0], "application to memorize two thousand verses even for a dore": [65535, 0], "to memorize two thousand verses even for a dore bible": [65535, 0], "memorize two thousand verses even for a dore bible and": [65535, 0], "two thousand verses even for a dore bible and yet": [65535, 0], "thousand verses even for a dore bible and yet mary": [65535, 0], "verses even for a dore bible and yet mary had": [65535, 0], "even for a dore bible and yet mary had acquired": [65535, 0], "for a dore bible and yet mary had acquired two": [65535, 0], "a dore bible and yet mary had acquired two bibles": [65535, 0], "dore bible and yet mary had acquired two bibles in": [65535, 0], "bible and yet mary had acquired two bibles in this": [65535, 0], "and yet mary had acquired two bibles in this way": [65535, 0], "yet mary had acquired two bibles in this way it": [65535, 0], "mary had acquired two bibles in this way it was": [65535, 0], "had acquired two bibles in this way it was the": [65535, 0], "acquired two bibles in this way it was the patient": [65535, 0], "two bibles in this way it was the patient work": [65535, 0], "bibles in this way it was the patient work of": [65535, 0], "in this way it was the patient work of two": [65535, 0], "this way it was the patient work of two years": [65535, 0], "way it was the patient work of two years and": [65535, 0], "it was the patient work of two years and a": [65535, 0], "was the patient work of two years and a boy": [65535, 0], "the patient work of two years and a boy of": [65535, 0], "patient work of two years and a boy of german": [65535, 0], "work of two years and a boy of german parentage": [65535, 0], "of two years and a boy of german parentage had": [65535, 0], "two years and a boy of german parentage had won": [65535, 0], "years and a boy of german parentage had won four": [65535, 0], "and a boy of german parentage had won four or": [65535, 0], "a boy of german parentage had won four or five": [65535, 0], "boy of german parentage had won four or five he": [65535, 0], "of german parentage had won four or five he once": [65535, 0], "german parentage had won four or five he once recited": [65535, 0], "parentage had won four or five he once recited three": [65535, 0], "had won four or five he once recited three thousand": [65535, 0], "won four or five he once recited three thousand verses": [65535, 0], "four or five he once recited three thousand verses without": [65535, 0], "or five he once recited three thousand verses without stopping": [65535, 0], "five he once recited three thousand verses without stopping but": [65535, 0], "he once recited three thousand verses without stopping but the": [65535, 0], "once recited three thousand verses without stopping but the strain": [65535, 0], "recited three thousand verses without stopping but the strain upon": [65535, 0], "three thousand verses without stopping but the strain upon his": [65535, 0], "thousand verses without stopping but the strain upon his mental": [65535, 0], "verses without stopping but the strain upon his mental faculties": [65535, 0], "without stopping but the strain upon his mental faculties was": [65535, 0], "stopping but the strain upon his mental faculties was too": [65535, 0], "but the strain upon his mental faculties was too great": [65535, 0], "the strain upon his mental faculties was too great and": [65535, 0], "strain upon his mental faculties was too great and he": [65535, 0], "upon his mental faculties was too great and he was": [65535, 0], "his mental faculties was too great and he was little": [65535, 0], "mental faculties was too great and he was little better": [65535, 0], "faculties was too great and he was little better than": [65535, 0], "was too great and he was little better than an": [65535, 0], "too great and he was little better than an idiot": [65535, 0], "great and he was little better than an idiot from": [65535, 0], "and he was little better than an idiot from that": [65535, 0], "he was little better than an idiot from that day": [65535, 0], "was little better than an idiot from that day forth": [65535, 0], "little better than an idiot from that day forth a": [65535, 0], "better than an idiot from that day forth a grievous": [65535, 0], "than an idiot from that day forth a grievous misfortune": [65535, 0], "an idiot from that day forth a grievous misfortune for": [65535, 0], "idiot from that day forth a grievous misfortune for the": [65535, 0], "from that day forth a grievous misfortune for the school": [65535, 0], "that day forth a grievous misfortune for the school for": [65535, 0], "day forth a grievous misfortune for the school for on": [65535, 0], "forth a grievous misfortune for the school for on great": [65535, 0], "a grievous misfortune for the school for on great occasions": [65535, 0], "grievous misfortune for the school for on great occasions before": [65535, 0], "misfortune for the school for on great occasions before company": [65535, 0], "for the school for on great occasions before company the": [65535, 0], "the school for on great occasions before company the superintendent": [65535, 0], "school for on great occasions before company the superintendent as": [65535, 0], "for on great occasions before company the superintendent as tom": [65535, 0], "on great occasions before company the superintendent as tom expressed": [65535, 0], "great occasions before company the superintendent as tom expressed it": [65535, 0], "occasions before company the superintendent as tom expressed it had": [65535, 0], "before company the superintendent as tom expressed it had always": [65535, 0], "company the superintendent as tom expressed it had always made": [65535, 0], "the superintendent as tom expressed it had always made this": [65535, 0], "superintendent as tom expressed it had always made this boy": [65535, 0], "as tom expressed it had always made this boy come": [65535, 0], "tom expressed it had always made this boy come out": [65535, 0], "expressed it had always made this boy come out and": [65535, 0], "it had always made this boy come out and spread": [65535, 0], "had always made this boy come out and spread himself": [65535, 0], "always made this boy come out and spread himself only": [65535, 0], "made this boy come out and spread himself only the": [65535, 0], "this boy come out and spread himself only the older": [65535, 0], "boy come out and spread himself only the older pupils": [65535, 0], "come out and spread himself only the older pupils managed": [65535, 0], "out and spread himself only the older pupils managed to": [65535, 0], "and spread himself only the older pupils managed to keep": [65535, 0], "spread himself only the older pupils managed to keep their": [65535, 0], "himself only the older pupils managed to keep their tickets": [65535, 0], "only the older pupils managed to keep their tickets and": [65535, 0], "the older pupils managed to keep their tickets and stick": [65535, 0], "older pupils managed to keep their tickets and stick to": [65535, 0], "pupils managed to keep their tickets and stick to their": [65535, 0], "managed to keep their tickets and stick to their tedious": [65535, 0], "to keep their tickets and stick to their tedious work": [65535, 0], "keep their tickets and stick to their tedious work long": [65535, 0], "their tickets and stick to their tedious work long enough": [65535, 0], "tickets and stick to their tedious work long enough to": [65535, 0], "and stick to their tedious work long enough to get": [65535, 0], "stick to their tedious work long enough to get a": [65535, 0], "to their tedious work long enough to get a bible": [65535, 0], "their tedious work long enough to get a bible and": [65535, 0], "tedious work long enough to get a bible and so": [65535, 0], "work long enough to get a bible and so the": [65535, 0], "long enough to get a bible and so the delivery": [65535, 0], "enough to get a bible and so the delivery of": [65535, 0], "to get a bible and so the delivery of one": [65535, 0], "get a bible and so the delivery of one of": [65535, 0], "a bible and so the delivery of one of these": [65535, 0], "bible and so the delivery of one of these prizes": [65535, 0], "and so the delivery of one of these prizes was": [65535, 0], "so the delivery of one of these prizes was a": [65535, 0], "the delivery of one of these prizes was a rare": [65535, 0], "delivery of one of these prizes was a rare and": [65535, 0], "of one of these prizes was a rare and noteworthy": [65535, 0], "one of these prizes was a rare and noteworthy circumstance": [65535, 0], "of these prizes was a rare and noteworthy circumstance the": [65535, 0], "these prizes was a rare and noteworthy circumstance the successful": [65535, 0], "prizes was a rare and noteworthy circumstance the successful pupil": [65535, 0], "was a rare and noteworthy circumstance the successful pupil was": [65535, 0], "a rare and noteworthy circumstance the successful pupil was so": [65535, 0], "rare and noteworthy circumstance the successful pupil was so great": [65535, 0], "and noteworthy circumstance the successful pupil was so great and": [65535, 0], "noteworthy circumstance the successful pupil was so great and conspicuous": [65535, 0], "circumstance the successful pupil was so great and conspicuous for": [65535, 0], "the successful pupil was so great and conspicuous for that": [65535, 0], "successful pupil was so great and conspicuous for that day": [65535, 0], "pupil was so great and conspicuous for that day that": [65535, 0], "was so great and conspicuous for that day that on": [65535, 0], "so great and conspicuous for that day that on the": [65535, 0], "great and conspicuous for that day that on the spot": [65535, 0], "and conspicuous for that day that on the spot every": [65535, 0], "conspicuous for that day that on the spot every scholar's": [65535, 0], "for that day that on the spot every scholar's heart": [65535, 0], "that day that on the spot every scholar's heart was": [65535, 0], "day that on the spot every scholar's heart was fired": [65535, 0], "that on the spot every scholar's heart was fired with": [65535, 0], "on the spot every scholar's heart was fired with a": [65535, 0], "the spot every scholar's heart was fired with a fresh": [65535, 0], "spot every scholar's heart was fired with a fresh ambition": [65535, 0], "every scholar's heart was fired with a fresh ambition that": [65535, 0], "scholar's heart was fired with a fresh ambition that often": [65535, 0], "heart was fired with a fresh ambition that often lasted": [65535, 0], "was fired with a fresh ambition that often lasted a": [65535, 0], "fired with a fresh ambition that often lasted a couple": [65535, 0], "with a fresh ambition that often lasted a couple of": [65535, 0], "a fresh ambition that often lasted a couple of weeks": [65535, 0], "fresh ambition that often lasted a couple of weeks it": [65535, 0], "ambition that often lasted a couple of weeks it is": [65535, 0], "that often lasted a couple of weeks it is possible": [65535, 0], "often lasted a couple of weeks it is possible that": [65535, 0], "lasted a couple of weeks it is possible that tom's": [65535, 0], "a couple of weeks it is possible that tom's mental": [65535, 0], "couple of weeks it is possible that tom's mental stomach": [65535, 0], "of weeks it is possible that tom's mental stomach had": [65535, 0], "weeks it is possible that tom's mental stomach had never": [65535, 0], "it is possible that tom's mental stomach had never really": [65535, 0], "is possible that tom's mental stomach had never really hungered": [65535, 0], "possible that tom's mental stomach had never really hungered for": [65535, 0], "that tom's mental stomach had never really hungered for one": [65535, 0], "tom's mental stomach had never really hungered for one of": [65535, 0], "mental stomach had never really hungered for one of those": [65535, 0], "stomach had never really hungered for one of those prizes": [65535, 0], "had never really hungered for one of those prizes but": [65535, 0], "never really hungered for one of those prizes but unquestionably": [65535, 0], "really hungered for one of those prizes but unquestionably his": [65535, 0], "hungered for one of those prizes but unquestionably his entire": [65535, 0], "for one of those prizes but unquestionably his entire being": [65535, 0], "one of those prizes but unquestionably his entire being had": [65535, 0], "of those prizes but unquestionably his entire being had for": [65535, 0], "those prizes but unquestionably his entire being had for many": [65535, 0], "prizes but unquestionably his entire being had for many a": [65535, 0], "but unquestionably his entire being had for many a day": [65535, 0], "unquestionably his entire being had for many a day longed": [65535, 0], "his entire being had for many a day longed for": [65535, 0], "entire being had for many a day longed for the": [65535, 0], "being had for many a day longed for the glory": [65535, 0], "had for many a day longed for the glory and": [65535, 0], "for many a day longed for the glory and the": [65535, 0], "many a day longed for the glory and the eclat": [65535, 0], "a day longed for the glory and the eclat that": [65535, 0], "day longed for the glory and the eclat that came": [65535, 0], "longed for the glory and the eclat that came with": [65535, 0], "for the glory and the eclat that came with it": [65535, 0], "the glory and the eclat that came with it in": [65535, 0], "glory and the eclat that came with it in due": [65535, 0], "and the eclat that came with it in due course": [65535, 0], "the eclat that came with it in due course the": [65535, 0], "eclat that came with it in due course the superintendent": [65535, 0], "that came with it in due course the superintendent stood": [65535, 0], "came with it in due course the superintendent stood up": [65535, 0], "with it in due course the superintendent stood up in": [65535, 0], "it in due course the superintendent stood up in front": [65535, 0], "in due course the superintendent stood up in front of": [65535, 0], "due course the superintendent stood up in front of the": [65535, 0], "course the superintendent stood up in front of the pulpit": [65535, 0], "the superintendent stood up in front of the pulpit with": [65535, 0], "superintendent stood up in front of the pulpit with a": [65535, 0], "stood up in front of the pulpit with a closed": [65535, 0], "up in front of the pulpit with a closed hymn": [65535, 0], "in front of the pulpit with a closed hymn book": [65535, 0], "front of the pulpit with a closed hymn book in": [65535, 0], "of the pulpit with a closed hymn book in his": [65535, 0], "the pulpit with a closed hymn book in his hand": [65535, 0], "pulpit with a closed hymn book in his hand and": [65535, 0], "with a closed hymn book in his hand and his": [65535, 0], "a closed hymn book in his hand and his forefinger": [65535, 0], "closed hymn book in his hand and his forefinger inserted": [65535, 0], "hymn book in his hand and his forefinger inserted between": [65535, 0], "book in his hand and his forefinger inserted between its": [65535, 0], "in his hand and his forefinger inserted between its leaves": [65535, 0], "his hand and his forefinger inserted between its leaves and": [65535, 0], "hand and his forefinger inserted between its leaves and commanded": [65535, 0], "and his forefinger inserted between its leaves and commanded attention": [65535, 0], "his forefinger inserted between its leaves and commanded attention when": [65535, 0], "forefinger inserted between its leaves and commanded attention when a": [65535, 0], "inserted between its leaves and commanded attention when a sunday": [65535, 0], "between its leaves and commanded attention when a sunday school": [65535, 0], "its leaves and commanded attention when a sunday school superintendent": [65535, 0], "leaves and commanded attention when a sunday school superintendent makes": [65535, 0], "and commanded attention when a sunday school superintendent makes his": [65535, 0], "commanded attention when a sunday school superintendent makes his customary": [65535, 0], "attention when a sunday school superintendent makes his customary little": [65535, 0], "when a sunday school superintendent makes his customary little speech": [65535, 0], "a sunday school superintendent makes his customary little speech a": [65535, 0], "sunday school superintendent makes his customary little speech a hymn": [65535, 0], "school superintendent makes his customary little speech a hymn book": [65535, 0], "superintendent makes his customary little speech a hymn book in": [65535, 0], "makes his customary little speech a hymn book in the": [65535, 0], "his customary little speech a hymn book in the hand": [65535, 0], "customary little speech a hymn book in the hand is": [65535, 0], "little speech a hymn book in the hand is as": [65535, 0], "speech a hymn book in the hand is as necessary": [65535, 0], "a hymn book in the hand is as necessary as": [65535, 0], "hymn book in the hand is as necessary as is": [65535, 0], "book in the hand is as necessary as is the": [65535, 0], "in the hand is as necessary as is the inevitable": [65535, 0], "the hand is as necessary as is the inevitable sheet": [65535, 0], "hand is as necessary as is the inevitable sheet of": [65535, 0], "is as necessary as is the inevitable sheet of music": [65535, 0], "as necessary as is the inevitable sheet of music in": [65535, 0], "necessary as is the inevitable sheet of music in the": [65535, 0], "as is the inevitable sheet of music in the hand": [65535, 0], "is the inevitable sheet of music in the hand of": [65535, 0], "the inevitable sheet of music in the hand of a": [65535, 0], "inevitable sheet of music in the hand of a singer": [65535, 0], "sheet of music in the hand of a singer who": [65535, 0], "of music in the hand of a singer who stands": [65535, 0], "music in the hand of a singer who stands forward": [65535, 0], "in the hand of a singer who stands forward on": [65535, 0], "the hand of a singer who stands forward on the": [65535, 0], "hand of a singer who stands forward on the platform": [65535, 0], "of a singer who stands forward on the platform and": [65535, 0], "a singer who stands forward on the platform and sings": [65535, 0], "singer who stands forward on the platform and sings a": [65535, 0], "who stands forward on the platform and sings a solo": [65535, 0], "stands forward on the platform and sings a solo at": [65535, 0], "forward on the platform and sings a solo at a": [65535, 0], "on the platform and sings a solo at a concert": [65535, 0], "the platform and sings a solo at a concert though": [65535, 0], "platform and sings a solo at a concert though why": [65535, 0], "and sings a solo at a concert though why is": [65535, 0], "sings a solo at a concert though why is a": [65535, 0], "a solo at a concert though why is a mystery": [65535, 0], "solo at a concert though why is a mystery for": [65535, 0], "at a concert though why is a mystery for neither": [65535, 0], "a concert though why is a mystery for neither the": [65535, 0], "concert though why is a mystery for neither the hymn": [65535, 0], "though why is a mystery for neither the hymn book": [65535, 0], "why is a mystery for neither the hymn book nor": [65535, 0], "is a mystery for neither the hymn book nor the": [65535, 0], "a mystery for neither the hymn book nor the sheet": [65535, 0], "mystery for neither the hymn book nor the sheet of": [65535, 0], "for neither the hymn book nor the sheet of music": [65535, 0], "neither the hymn book nor the sheet of music is": [65535, 0], "the hymn book nor the sheet of music is ever": [65535, 0], "hymn book nor the sheet of music is ever referred": [65535, 0], "book nor the sheet of music is ever referred to": [65535, 0], "nor the sheet of music is ever referred to by": [65535, 0], "the sheet of music is ever referred to by the": [65535, 0], "sheet of music is ever referred to by the sufferer": [65535, 0], "of music is ever referred to by the sufferer this": [65535, 0], "music is ever referred to by the sufferer this superintendent": [65535, 0], "is ever referred to by the sufferer this superintendent was": [65535, 0], "ever referred to by the sufferer this superintendent was a": [65535, 0], "referred to by the sufferer this superintendent was a slim": [65535, 0], "to by the sufferer this superintendent was a slim creature": [65535, 0], "by the sufferer this superintendent was a slim creature of": [65535, 0], "the sufferer this superintendent was a slim creature of thirty": [65535, 0], "sufferer this superintendent was a slim creature of thirty five": [65535, 0], "this superintendent was a slim creature of thirty five with": [65535, 0], "superintendent was a slim creature of thirty five with a": [65535, 0], "was a slim creature of thirty five with a sandy": [65535, 0], "a slim creature of thirty five with a sandy goatee": [65535, 0], "slim creature of thirty five with a sandy goatee and": [65535, 0], "creature of thirty five with a sandy goatee and short": [65535, 0], "of thirty five with a sandy goatee and short sandy": [65535, 0], "thirty five with a sandy goatee and short sandy hair": [65535, 0], "five with a sandy goatee and short sandy hair he": [65535, 0], "with a sandy goatee and short sandy hair he wore": [65535, 0], "a sandy goatee and short sandy hair he wore a": [65535, 0], "sandy goatee and short sandy hair he wore a stiff": [65535, 0], "goatee and short sandy hair he wore a stiff standing": [65535, 0], "and short sandy hair he wore a stiff standing collar": [65535, 0], "short sandy hair he wore a stiff standing collar whose": [65535, 0], "sandy hair he wore a stiff standing collar whose upper": [65535, 0], "hair he wore a stiff standing collar whose upper edge": [65535, 0], "he wore a stiff standing collar whose upper edge almost": [65535, 0], "wore a stiff standing collar whose upper edge almost reached": [65535, 0], "a stiff standing collar whose upper edge almost reached his": [65535, 0], "stiff standing collar whose upper edge almost reached his ears": [65535, 0], "standing collar whose upper edge almost reached his ears and": [65535, 0], "collar whose upper edge almost reached his ears and whose": [65535, 0], "whose upper edge almost reached his ears and whose sharp": [65535, 0], "upper edge almost reached his ears and whose sharp points": [65535, 0], "edge almost reached his ears and whose sharp points curved": [65535, 0], "almost reached his ears and whose sharp points curved forward": [65535, 0], "reached his ears and whose sharp points curved forward abreast": [65535, 0], "his ears and whose sharp points curved forward abreast the": [65535, 0], "ears and whose sharp points curved forward abreast the corners": [65535, 0], "and whose sharp points curved forward abreast the corners of": [65535, 0], "whose sharp points curved forward abreast the corners of his": [65535, 0], "sharp points curved forward abreast the corners of his mouth": [65535, 0], "points curved forward abreast the corners of his mouth a": [65535, 0], "curved forward abreast the corners of his mouth a fence": [65535, 0], "forward abreast the corners of his mouth a fence that": [65535, 0], "abreast the corners of his mouth a fence that compelled": [65535, 0], "the corners of his mouth a fence that compelled a": [65535, 0], "corners of his mouth a fence that compelled a straight": [65535, 0], "of his mouth a fence that compelled a straight lookout": [65535, 0], "his mouth a fence that compelled a straight lookout ahead": [65535, 0], "mouth a fence that compelled a straight lookout ahead and": [65535, 0], "a fence that compelled a straight lookout ahead and a": [65535, 0], "fence that compelled a straight lookout ahead and a turning": [65535, 0], "that compelled a straight lookout ahead and a turning of": [65535, 0], "compelled a straight lookout ahead and a turning of the": [65535, 0], "a straight lookout ahead and a turning of the whole": [65535, 0], "straight lookout ahead and a turning of the whole body": [65535, 0], "lookout ahead and a turning of the whole body when": [65535, 0], "ahead and a turning of the whole body when a": [65535, 0], "and a turning of the whole body when a side": [65535, 0], "a turning of the whole body when a side view": [65535, 0], "turning of the whole body when a side view was": [65535, 0], "of the whole body when a side view was required": [65535, 0], "the whole body when a side view was required his": [65535, 0], "whole body when a side view was required his chin": [65535, 0], "body when a side view was required his chin was": [65535, 0], "when a side view was required his chin was propped": [65535, 0], "a side view was required his chin was propped on": [65535, 0], "side view was required his chin was propped on a": [65535, 0], "view was required his chin was propped on a spreading": [65535, 0], "was required his chin was propped on a spreading cravat": [65535, 0], "required his chin was propped on a spreading cravat which": [65535, 0], "his chin was propped on a spreading cravat which was": [65535, 0], "chin was propped on a spreading cravat which was as": [65535, 0], "was propped on a spreading cravat which was as broad": [65535, 0], "propped on a spreading cravat which was as broad and": [65535, 0], "on a spreading cravat which was as broad and as": [65535, 0], "a spreading cravat which was as broad and as long": [65535, 0], "spreading cravat which was as broad and as long as": [65535, 0], "cravat which was as broad and as long as a": [65535, 0], "which was as broad and as long as a bank": [65535, 0], "was as broad and as long as a bank note": [65535, 0], "as broad and as long as a bank note and": [65535, 0], "broad and as long as a bank note and had": [65535, 0], "and as long as a bank note and had fringed": [65535, 0], "as long as a bank note and had fringed ends": [65535, 0], "long as a bank note and had fringed ends his": [65535, 0], "as a bank note and had fringed ends his boot": [65535, 0], "a bank note and had fringed ends his boot toes": [65535, 0], "bank note and had fringed ends his boot toes were": [65535, 0], "note and had fringed ends his boot toes were turned": [65535, 0], "and had fringed ends his boot toes were turned sharply": [65535, 0], "had fringed ends his boot toes were turned sharply up": [65535, 0], "fringed ends his boot toes were turned sharply up in": [65535, 0], "ends his boot toes were turned sharply up in the": [65535, 0], "his boot toes were turned sharply up in the fashion": [65535, 0], "boot toes were turned sharply up in the fashion of": [65535, 0], "toes were turned sharply up in the fashion of the": [65535, 0], "were turned sharply up in the fashion of the day": [65535, 0], "turned sharply up in the fashion of the day like": [65535, 0], "sharply up in the fashion of the day like sleigh": [65535, 0], "up in the fashion of the day like sleigh runners": [65535, 0], "in the fashion of the day like sleigh runners an": [65535, 0], "the fashion of the day like sleigh runners an effect": [65535, 0], "fashion of the day like sleigh runners an effect patiently": [65535, 0], "of the day like sleigh runners an effect patiently and": [65535, 0], "the day like sleigh runners an effect patiently and laboriously": [65535, 0], "day like sleigh runners an effect patiently and laboriously produced": [65535, 0], "like sleigh runners an effect patiently and laboriously produced by": [65535, 0], "sleigh runners an effect patiently and laboriously produced by the": [65535, 0], "runners an effect patiently and laboriously produced by the young": [65535, 0], "an effect patiently and laboriously produced by the young men": [65535, 0], "effect patiently and laboriously produced by the young men by": [65535, 0], "patiently and laboriously produced by the young men by sitting": [65535, 0], "and laboriously produced by the young men by sitting with": [65535, 0], "laboriously produced by the young men by sitting with their": [65535, 0], "produced by the young men by sitting with their toes": [65535, 0], "by the young men by sitting with their toes pressed": [65535, 0], "the young men by sitting with their toes pressed against": [65535, 0], "young men by sitting with their toes pressed against a": [65535, 0], "men by sitting with their toes pressed against a wall": [65535, 0], "by sitting with their toes pressed against a wall for": [65535, 0], "sitting with their toes pressed against a wall for hours": [65535, 0], "with their toes pressed against a wall for hours together": [65535, 0], "their toes pressed against a wall for hours together mr": [65535, 0], "toes pressed against a wall for hours together mr walters": [65535, 0], "pressed against a wall for hours together mr walters was": [65535, 0], "against a wall for hours together mr walters was very": [65535, 0], "a wall for hours together mr walters was very earnest": [65535, 0], "wall for hours together mr walters was very earnest of": [65535, 0], "for hours together mr walters was very earnest of mien": [65535, 0], "hours together mr walters was very earnest of mien and": [65535, 0], "together mr walters was very earnest of mien and very": [65535, 0], "mr walters was very earnest of mien and very sincere": [65535, 0], "walters was very earnest of mien and very sincere and": [65535, 0], "was very earnest of mien and very sincere and honest": [65535, 0], "very earnest of mien and very sincere and honest at": [65535, 0], "earnest of mien and very sincere and honest at heart": [65535, 0], "of mien and very sincere and honest at heart and": [65535, 0], "mien and very sincere and honest at heart and he": [65535, 0], "and very sincere and honest at heart and he held": [65535, 0], "very sincere and honest at heart and he held sacred": [65535, 0], "sincere and honest at heart and he held sacred things": [65535, 0], "and honest at heart and he held sacred things and": [65535, 0], "honest at heart and he held sacred things and places": [65535, 0], "at heart and he held sacred things and places in": [65535, 0], "heart and he held sacred things and places in such": [65535, 0], "and he held sacred things and places in such reverence": [65535, 0], "he held sacred things and places in such reverence and": [65535, 0], "held sacred things and places in such reverence and so": [65535, 0], "sacred things and places in such reverence and so separated": [65535, 0], "things and places in such reverence and so separated them": [65535, 0], "and places in such reverence and so separated them from": [65535, 0], "places in such reverence and so separated them from worldly": [65535, 0], "in such reverence and so separated them from worldly matters": [65535, 0], "such reverence and so separated them from worldly matters that": [65535, 0], "reverence and so separated them from worldly matters that unconsciously": [65535, 0], "and so separated them from worldly matters that unconsciously to": [65535, 0], "so separated them from worldly matters that unconsciously to himself": [65535, 0], "separated them from worldly matters that unconsciously to himself his": [65535, 0], "them from worldly matters that unconsciously to himself his sunday": [65535, 0], "from worldly matters that unconsciously to himself his sunday school": [65535, 0], "worldly matters that unconsciously to himself his sunday school voice": [65535, 0], "matters that unconsciously to himself his sunday school voice had": [65535, 0], "that unconsciously to himself his sunday school voice had acquired": [65535, 0], "unconsciously to himself his sunday school voice had acquired a": [65535, 0], "to himself his sunday school voice had acquired a peculiar": [65535, 0], "himself his sunday school voice had acquired a peculiar intonation": [65535, 0], "his sunday school voice had acquired a peculiar intonation which": [65535, 0], "sunday school voice had acquired a peculiar intonation which was": [65535, 0], "school voice had acquired a peculiar intonation which was wholly": [65535, 0], "voice had acquired a peculiar intonation which was wholly absent": [65535, 0], "had acquired a peculiar intonation which was wholly absent on": [65535, 0], "acquired a peculiar intonation which was wholly absent on week": [65535, 0], "a peculiar intonation which was wholly absent on week days": [65535, 0], "peculiar intonation which was wholly absent on week days he": [65535, 0], "intonation which was wholly absent on week days he began": [65535, 0], "which was wholly absent on week days he began after": [65535, 0], "was wholly absent on week days he began after this": [65535, 0], "wholly absent on week days he began after this fashion": [65535, 0], "absent on week days he began after this fashion now": [65535, 0], "on week days he began after this fashion now children": [65535, 0], "week days he began after this fashion now children i": [65535, 0], "days he began after this fashion now children i want": [65535, 0], "he began after this fashion now children i want you": [65535, 0], "began after this fashion now children i want you all": [65535, 0], "after this fashion now children i want you all to": [65535, 0], "this fashion now children i want you all to sit": [65535, 0], "fashion now children i want you all to sit up": [65535, 0], "now children i want you all to sit up just": [65535, 0], "children i want you all to sit up just as": [65535, 0], "i want you all to sit up just as straight": [65535, 0], "want you all to sit up just as straight and": [65535, 0], "you all to sit up just as straight and pretty": [65535, 0], "all to sit up just as straight and pretty as": [65535, 0], "to sit up just as straight and pretty as you": [65535, 0], "sit up just as straight and pretty as you can": [65535, 0], "up just as straight and pretty as you can and": [65535, 0], "just as straight and pretty as you can and give": [65535, 0], "as straight and pretty as you can and give me": [65535, 0], "straight and pretty as you can and give me all": [65535, 0], "and pretty as you can and give me all your": [65535, 0], "pretty as you can and give me all your attention": [65535, 0], "as you can and give me all your attention for": [65535, 0], "you can and give me all your attention for a": [65535, 0], "can and give me all your attention for a minute": [65535, 0], "and give me all your attention for a minute or": [65535, 0], "give me all your attention for a minute or two": [65535, 0], "me all your attention for a minute or two there": [65535, 0], "all your attention for a minute or two there that": [65535, 0], "your attention for a minute or two there that is": [65535, 0], "attention for a minute or two there that is it": [65535, 0], "for a minute or two there that is it that": [65535, 0], "a minute or two there that is it that is": [65535, 0], "minute or two there that is it that is the": [65535, 0], "or two there that is it that is the way": [65535, 0], "two there that is it that is the way good": [65535, 0], "there that is it that is the way good little": [65535, 0], "that is it that is the way good little boys": [65535, 0], "is it that is the way good little boys and": [65535, 0], "it that is the way good little boys and girls": [65535, 0], "that is the way good little boys and girls should": [65535, 0], "is the way good little boys and girls should do": [65535, 0], "the way good little boys and girls should do i": [65535, 0], "way good little boys and girls should do i see": [65535, 0], "good little boys and girls should do i see one": [65535, 0], "little boys and girls should do i see one little": [65535, 0], "boys and girls should do i see one little girl": [65535, 0], "and girls should do i see one little girl who": [65535, 0], "girls should do i see one little girl who is": [65535, 0], "should do i see one little girl who is looking": [65535, 0], "do i see one little girl who is looking out": [65535, 0], "i see one little girl who is looking out of": [65535, 0], "see one little girl who is looking out of the": [65535, 0], "one little girl who is looking out of the window": [65535, 0], "little girl who is looking out of the window i": [65535, 0], "girl who is looking out of the window i am": [65535, 0], "who is looking out of the window i am afraid": [65535, 0], "is looking out of the window i am afraid she": [65535, 0], "looking out of the window i am afraid she thinks": [65535, 0], "out of the window i am afraid she thinks i": [65535, 0], "of the window i am afraid she thinks i am": [65535, 0], "the window i am afraid she thinks i am out": [65535, 0], "window i am afraid she thinks i am out there": [65535, 0], "i am afraid she thinks i am out there somewhere": [65535, 0], "am afraid she thinks i am out there somewhere perhaps": [65535, 0], "afraid she thinks i am out there somewhere perhaps up": [65535, 0], "she thinks i am out there somewhere perhaps up in": [65535, 0], "thinks i am out there somewhere perhaps up in one": [65535, 0], "i am out there somewhere perhaps up in one of": [65535, 0], "am out there somewhere perhaps up in one of the": [65535, 0], "out there somewhere perhaps up in one of the trees": [65535, 0], "there somewhere perhaps up in one of the trees making": [65535, 0], "somewhere perhaps up in one of the trees making a": [65535, 0], "perhaps up in one of the trees making a speech": [65535, 0], "up in one of the trees making a speech to": [65535, 0], "in one of the trees making a speech to the": [65535, 0], "one of the trees making a speech to the little": [65535, 0], "of the trees making a speech to the little birds": [65535, 0], "the trees making a speech to the little birds applausive": [65535, 0], "trees making a speech to the little birds applausive titter": [65535, 0], "making a speech to the little birds applausive titter i": [65535, 0], "a speech to the little birds applausive titter i want": [65535, 0], "speech to the little birds applausive titter i want to": [65535, 0], "to the little birds applausive titter i want to tell": [65535, 0], "the little birds applausive titter i want to tell you": [65535, 0], "little birds applausive titter i want to tell you how": [65535, 0], "birds applausive titter i want to tell you how good": [65535, 0], "applausive titter i want to tell you how good it": [65535, 0], "titter i want to tell you how good it makes": [65535, 0], "i want to tell you how good it makes me": [65535, 0], "want to tell you how good it makes me feel": [65535, 0], "to tell you how good it makes me feel to": [65535, 0], "tell you how good it makes me feel to see": [65535, 0], "you how good it makes me feel to see so": [65535, 0], "how good it makes me feel to see so many": [65535, 0], "good it makes me feel to see so many bright": [65535, 0], "it makes me feel to see so many bright clean": [65535, 0], "makes me feel to see so many bright clean little": [65535, 0], "me feel to see so many bright clean little faces": [65535, 0], "feel to see so many bright clean little faces assembled": [65535, 0], "to see so many bright clean little faces assembled in": [65535, 0], "see so many bright clean little faces assembled in a": [65535, 0], "so many bright clean little faces assembled in a place": [65535, 0], "many bright clean little faces assembled in a place like": [65535, 0], "bright clean little faces assembled in a place like this": [65535, 0], "clean little faces assembled in a place like this learning": [65535, 0], "little faces assembled in a place like this learning to": [65535, 0], "faces assembled in a place like this learning to do": [65535, 0], "assembled in a place like this learning to do right": [65535, 0], "in a place like this learning to do right and": [65535, 0], "a place like this learning to do right and be": [65535, 0], "place like this learning to do right and be good": [65535, 0], "like this learning to do right and be good and": [65535, 0], "this learning to do right and be good and so": [65535, 0], "learning to do right and be good and so forth": [65535, 0], "to do right and be good and so forth and": [65535, 0], "do right and be good and so forth and so": [65535, 0], "right and be good and so forth and so on": [65535, 0], "and be good and so forth and so on it": [65535, 0], "be good and so forth and so on it is": [65535, 0], "good and so forth and so on it is not": [65535, 0], "and so forth and so on it is not necessary": [65535, 0], "so forth and so on it is not necessary to": [65535, 0], "forth and so on it is not necessary to set": [65535, 0], "and so on it is not necessary to set down": [65535, 0], "so on it is not necessary to set down the": [65535, 0], "on it is not necessary to set down the rest": [65535, 0], "it is not necessary to set down the rest of": [65535, 0], "is not necessary to set down the rest of the": [65535, 0], "not necessary to set down the rest of the oration": [65535, 0], "necessary to set down the rest of the oration it": [65535, 0], "to set down the rest of the oration it was": [65535, 0], "set down the rest of the oration it was of": [65535, 0], "down the rest of the oration it was of a": [65535, 0], "the rest of the oration it was of a pattern": [65535, 0], "rest of the oration it was of a pattern which": [65535, 0], "of the oration it was of a pattern which does": [65535, 0], "the oration it was of a pattern which does not": [65535, 0], "oration it was of a pattern which does not vary": [65535, 0], "it was of a pattern which does not vary and": [65535, 0], "was of a pattern which does not vary and so": [65535, 0], "of a pattern which does not vary and so it": [65535, 0], "a pattern which does not vary and so it is": [65535, 0], "pattern which does not vary and so it is familiar": [65535, 0], "which does not vary and so it is familiar to": [65535, 0], "does not vary and so it is familiar to us": [65535, 0], "not vary and so it is familiar to us all": [65535, 0], "vary and so it is familiar to us all the": [65535, 0], "and so it is familiar to us all the latter": [65535, 0], "so it is familiar to us all the latter third": [65535, 0], "it is familiar to us all the latter third of": [65535, 0], "is familiar to us all the latter third of the": [65535, 0], "familiar to us all the latter third of the speech": [65535, 0], "to us all the latter third of the speech was": [65535, 0], "us all the latter third of the speech was marred": [65535, 0], "all the latter third of the speech was marred by": [65535, 0], "the latter third of the speech was marred by the": [65535, 0], "latter third of the speech was marred by the resumption": [65535, 0], "third of the speech was marred by the resumption of": [65535, 0], "of the speech was marred by the resumption of fights": [65535, 0], "the speech was marred by the resumption of fights and": [65535, 0], "speech was marred by the resumption of fights and other": [65535, 0], "was marred by the resumption of fights and other recreations": [65535, 0], "marred by the resumption of fights and other recreations among": [65535, 0], "by the resumption of fights and other recreations among certain": [65535, 0], "the resumption of fights and other recreations among certain of": [65535, 0], "resumption of fights and other recreations among certain of the": [65535, 0], "of fights and other recreations among certain of the bad": [65535, 0], "fights and other recreations among certain of the bad boys": [65535, 0], "and other recreations among certain of the bad boys and": [65535, 0], "other recreations among certain of the bad boys and by": [65535, 0], "recreations among certain of the bad boys and by fidgetings": [65535, 0], "among certain of the bad boys and by fidgetings and": [65535, 0], "certain of the bad boys and by fidgetings and whisperings": [65535, 0], "of the bad boys and by fidgetings and whisperings that": [65535, 0], "the bad boys and by fidgetings and whisperings that extended": [65535, 0], "bad boys and by fidgetings and whisperings that extended far": [65535, 0], "boys and by fidgetings and whisperings that extended far and": [65535, 0], "and by fidgetings and whisperings that extended far and wide": [65535, 0], "by fidgetings and whisperings that extended far and wide washing": [65535, 0], "fidgetings and whisperings that extended far and wide washing even": [65535, 0], "and whisperings that extended far and wide washing even to": [65535, 0], "whisperings that extended far and wide washing even to the": [65535, 0], "that extended far and wide washing even to the bases": [65535, 0], "extended far and wide washing even to the bases of": [65535, 0], "far and wide washing even to the bases of isolated": [65535, 0], "and wide washing even to the bases of isolated and": [65535, 0], "wide washing even to the bases of isolated and incorruptible": [65535, 0], "washing even to the bases of isolated and incorruptible rocks": [65535, 0], "even to the bases of isolated and incorruptible rocks like": [65535, 0], "to the bases of isolated and incorruptible rocks like sid": [65535, 0], "the bases of isolated and incorruptible rocks like sid and": [65535, 0], "bases of isolated and incorruptible rocks like sid and mary": [65535, 0], "of isolated and incorruptible rocks like sid and mary but": [65535, 0], "isolated and incorruptible rocks like sid and mary but now": [65535, 0], "and incorruptible rocks like sid and mary but now every": [65535, 0], "incorruptible rocks like sid and mary but now every sound": [65535, 0], "rocks like sid and mary but now every sound ceased": [65535, 0], "like sid and mary but now every sound ceased suddenly": [65535, 0], "sid and mary but now every sound ceased suddenly with": [65535, 0], "and mary but now every sound ceased suddenly with the": [65535, 0], "mary but now every sound ceased suddenly with the subsidence": [65535, 0], "but now every sound ceased suddenly with the subsidence of": [65535, 0], "now every sound ceased suddenly with the subsidence of mr": [65535, 0], "every sound ceased suddenly with the subsidence of mr walters'": [65535, 0], "sound ceased suddenly with the subsidence of mr walters' voice": [65535, 0], "ceased suddenly with the subsidence of mr walters' voice and": [65535, 0], "suddenly with the subsidence of mr walters' voice and the": [65535, 0], "with the subsidence of mr walters' voice and the conclusion": [65535, 0], "the subsidence of mr walters' voice and the conclusion of": [65535, 0], "subsidence of mr walters' voice and the conclusion of the": [65535, 0], "of mr walters' voice and the conclusion of the speech": [65535, 0], "mr walters' voice and the conclusion of the speech was": [65535, 0], "walters' voice and the conclusion of the speech was received": [65535, 0], "voice and the conclusion of the speech was received with": [65535, 0], "and the conclusion of the speech was received with a": [65535, 0], "the conclusion of the speech was received with a burst": [65535, 0], "conclusion of the speech was received with a burst of": [65535, 0], "of the speech was received with a burst of silent": [65535, 0], "the speech was received with a burst of silent gratitude": [65535, 0], "speech was received with a burst of silent gratitude a": [65535, 0], "was received with a burst of silent gratitude a good": [65535, 0], "received with a burst of silent gratitude a good part": [65535, 0], "with a burst of silent gratitude a good part of": [65535, 0], "a burst of silent gratitude a good part of the": [65535, 0], "burst of silent gratitude a good part of the whispering": [65535, 0], "of silent gratitude a good part of the whispering had": [65535, 0], "silent gratitude a good part of the whispering had been": [65535, 0], "gratitude a good part of the whispering had been occasioned": [65535, 0], "a good part of the whispering had been occasioned by": [65535, 0], "good part of the whispering had been occasioned by an": [65535, 0], "part of the whispering had been occasioned by an event": [65535, 0], "of the whispering had been occasioned by an event which": [65535, 0], "the whispering had been occasioned by an event which was": [65535, 0], "whispering had been occasioned by an event which was more": [65535, 0], "had been occasioned by an event which was more or": [65535, 0], "been occasioned by an event which was more or less": [65535, 0], "occasioned by an event which was more or less rare": [65535, 0], "by an event which was more or less rare the": [65535, 0], "an event which was more or less rare the entrance": [65535, 0], "event which was more or less rare the entrance of": [65535, 0], "which was more or less rare the entrance of visitors": [65535, 0], "was more or less rare the entrance of visitors lawyer": [65535, 0], "more or less rare the entrance of visitors lawyer thatcher": [65535, 0], "or less rare the entrance of visitors lawyer thatcher accompanied": [65535, 0], "less rare the entrance of visitors lawyer thatcher accompanied by": [65535, 0], "rare the entrance of visitors lawyer thatcher accompanied by a": [65535, 0], "the entrance of visitors lawyer thatcher accompanied by a very": [65535, 0], "entrance of visitors lawyer thatcher accompanied by a very feeble": [65535, 0], "of visitors lawyer thatcher accompanied by a very feeble and": [65535, 0], "visitors lawyer thatcher accompanied by a very feeble and aged": [65535, 0], "lawyer thatcher accompanied by a very feeble and aged man": [65535, 0], "thatcher accompanied by a very feeble and aged man a": [65535, 0], "accompanied by a very feeble and aged man a fine": [65535, 0], "by a very feeble and aged man a fine portly": [65535, 0], "a very feeble and aged man a fine portly middle": [65535, 0], "very feeble and aged man a fine portly middle aged": [65535, 0], "feeble and aged man a fine portly middle aged gentleman": [65535, 0], "and aged man a fine portly middle aged gentleman with": [65535, 0], "aged man a fine portly middle aged gentleman with iron": [65535, 0], "man a fine portly middle aged gentleman with iron gray": [65535, 0], "a fine portly middle aged gentleman with iron gray hair": [65535, 0], "fine portly middle aged gentleman with iron gray hair and": [65535, 0], "portly middle aged gentleman with iron gray hair and a": [65535, 0], "middle aged gentleman with iron gray hair and a dignified": [65535, 0], "aged gentleman with iron gray hair and a dignified lady": [65535, 0], "gentleman with iron gray hair and a dignified lady who": [65535, 0], "with iron gray hair and a dignified lady who was": [65535, 0], "iron gray hair and a dignified lady who was doubtless": [65535, 0], "gray hair and a dignified lady who was doubtless the": [65535, 0], "hair and a dignified lady who was doubtless the latter's": [65535, 0], "and a dignified lady who was doubtless the latter's wife": [65535, 0], "a dignified lady who was doubtless the latter's wife the": [65535, 0], "dignified lady who was doubtless the latter's wife the lady": [65535, 0], "lady who was doubtless the latter's wife the lady was": [65535, 0], "who was doubtless the latter's wife the lady was leading": [65535, 0], "was doubtless the latter's wife the lady was leading a": [65535, 0], "doubtless the latter's wife the lady was leading a child": [65535, 0], "the latter's wife the lady was leading a child tom": [65535, 0], "latter's wife the lady was leading a child tom had": [65535, 0], "wife the lady was leading a child tom had been": [65535, 0], "the lady was leading a child tom had been restless": [65535, 0], "lady was leading a child tom had been restless and": [65535, 0], "was leading a child tom had been restless and full": [65535, 0], "leading a child tom had been restless and full of": [65535, 0], "a child tom had been restless and full of chafings": [65535, 0], "child tom had been restless and full of chafings and": [65535, 0], "tom had been restless and full of chafings and repinings": [65535, 0], "had been restless and full of chafings and repinings conscience": [65535, 0], "been restless and full of chafings and repinings conscience smitten": [65535, 0], "restless and full of chafings and repinings conscience smitten too": [65535, 0], "and full of chafings and repinings conscience smitten too he": [65535, 0], "full of chafings and repinings conscience smitten too he could": [65535, 0], "of chafings and repinings conscience smitten too he could not": [65535, 0], "chafings and repinings conscience smitten too he could not meet": [65535, 0], "and repinings conscience smitten too he could not meet amy": [65535, 0], "repinings conscience smitten too he could not meet amy lawrence's": [65535, 0], "conscience smitten too he could not meet amy lawrence's eye": [65535, 0], "smitten too he could not meet amy lawrence's eye he": [65535, 0], "too he could not meet amy lawrence's eye he could": [65535, 0], "he could not meet amy lawrence's eye he could not": [65535, 0], "could not meet amy lawrence's eye he could not brook": [65535, 0], "not meet amy lawrence's eye he could not brook her": [65535, 0], "meet amy lawrence's eye he could not brook her loving": [65535, 0], "amy lawrence's eye he could not brook her loving gaze": [65535, 0], "lawrence's eye he could not brook her loving gaze but": [65535, 0], "eye he could not brook her loving gaze but when": [65535, 0], "he could not brook her loving gaze but when he": [65535, 0], "could not brook her loving gaze but when he saw": [65535, 0], "not brook her loving gaze but when he saw this": [65535, 0], "brook her loving gaze but when he saw this small": [65535, 0], "her loving gaze but when he saw this small new": [65535, 0], "loving gaze but when he saw this small new comer": [65535, 0], "gaze but when he saw this small new comer his": [65535, 0], "but when he saw this small new comer his soul": [65535, 0], "when he saw this small new comer his soul was": [65535, 0], "he saw this small new comer his soul was all": [65535, 0], "saw this small new comer his soul was all ablaze": [65535, 0], "this small new comer his soul was all ablaze with": [65535, 0], "small new comer his soul was all ablaze with bliss": [65535, 0], "new comer his soul was all ablaze with bliss in": [65535, 0], "comer his soul was all ablaze with bliss in a": [65535, 0], "his soul was all ablaze with bliss in a moment": [65535, 0], "soul was all ablaze with bliss in a moment the": [65535, 0], "was all ablaze with bliss in a moment the next": [65535, 0], "all ablaze with bliss in a moment the next moment": [65535, 0], "ablaze with bliss in a moment the next moment he": [65535, 0], "with bliss in a moment the next moment he was": [65535, 0], "bliss in a moment the next moment he was showing": [65535, 0], "in a moment the next moment he was showing off": [65535, 0], "a moment the next moment he was showing off with": [65535, 0], "moment the next moment he was showing off with all": [65535, 0], "the next moment he was showing off with all his": [65535, 0], "next moment he was showing off with all his might": [65535, 0], "moment he was showing off with all his might cuffing": [65535, 0], "he was showing off with all his might cuffing boys": [65535, 0], "was showing off with all his might cuffing boys pulling": [65535, 0], "showing off with all his might cuffing boys pulling hair": [65535, 0], "off with all his might cuffing boys pulling hair making": [65535, 0], "with all his might cuffing boys pulling hair making faces": [65535, 0], "all his might cuffing boys pulling hair making faces in": [65535, 0], "his might cuffing boys pulling hair making faces in a": [65535, 0], "might cuffing boys pulling hair making faces in a word": [65535, 0], "cuffing boys pulling hair making faces in a word using": [65535, 0], "boys pulling hair making faces in a word using every": [65535, 0], "pulling hair making faces in a word using every art": [65535, 0], "hair making faces in a word using every art that": [65535, 0], "making faces in a word using every art that seemed": [65535, 0], "faces in a word using every art that seemed likely": [65535, 0], "in a word using every art that seemed likely to": [65535, 0], "a word using every art that seemed likely to fascinate": [65535, 0], "word using every art that seemed likely to fascinate a": [65535, 0], "using every art that seemed likely to fascinate a girl": [65535, 0], "every art that seemed likely to fascinate a girl and": [65535, 0], "art that seemed likely to fascinate a girl and win": [65535, 0], "that seemed likely to fascinate a girl and win her": [65535, 0], "seemed likely to fascinate a girl and win her applause": [65535, 0], "likely to fascinate a girl and win her applause his": [65535, 0], "to fascinate a girl and win her applause his exaltation": [65535, 0], "fascinate a girl and win her applause his exaltation had": [65535, 0], "a girl and win her applause his exaltation had but": [65535, 0], "girl and win her applause his exaltation had but one": [65535, 0], "and win her applause his exaltation had but one alloy": [65535, 0], "win her applause his exaltation had but one alloy the": [65535, 0], "her applause his exaltation had but one alloy the memory": [65535, 0], "applause his exaltation had but one alloy the memory of": [65535, 0], "his exaltation had but one alloy the memory of his": [65535, 0], "exaltation had but one alloy the memory of his humiliation": [65535, 0], "had but one alloy the memory of his humiliation in": [65535, 0], "but one alloy the memory of his humiliation in this": [65535, 0], "one alloy the memory of his humiliation in this angel's": [65535, 0], "alloy the memory of his humiliation in this angel's garden": [65535, 0], "the memory of his humiliation in this angel's garden and": [65535, 0], "memory of his humiliation in this angel's garden and that": [65535, 0], "of his humiliation in this angel's garden and that record": [65535, 0], "his humiliation in this angel's garden and that record in": [65535, 0], "humiliation in this angel's garden and that record in sand": [65535, 0], "in this angel's garden and that record in sand was": [65535, 0], "this angel's garden and that record in sand was fast": [65535, 0], "angel's garden and that record in sand was fast washing": [65535, 0], "garden and that record in sand was fast washing out": [65535, 0], "and that record in sand was fast washing out under": [65535, 0], "that record in sand was fast washing out under the": [65535, 0], "record in sand was fast washing out under the waves": [65535, 0], "in sand was fast washing out under the waves of": [65535, 0], "sand was fast washing out under the waves of happiness": [65535, 0], "was fast washing out under the waves of happiness that": [65535, 0], "fast washing out under the waves of happiness that were": [65535, 0], "washing out under the waves of happiness that were sweeping": [65535, 0], "out under the waves of happiness that were sweeping over": [65535, 0], "under the waves of happiness that were sweeping over it": [65535, 0], "the waves of happiness that were sweeping over it now": [65535, 0], "waves of happiness that were sweeping over it now the": [65535, 0], "of happiness that were sweeping over it now the visitors": [65535, 0], "happiness that were sweeping over it now the visitors were": [65535, 0], "that were sweeping over it now the visitors were given": [65535, 0], "were sweeping over it now the visitors were given the": [65535, 0], "sweeping over it now the visitors were given the highest": [65535, 0], "over it now the visitors were given the highest seat": [65535, 0], "it now the visitors were given the highest seat of": [65535, 0], "now the visitors were given the highest seat of honor": [65535, 0], "the visitors were given the highest seat of honor and": [65535, 0], "visitors were given the highest seat of honor and as": [65535, 0], "were given the highest seat of honor and as soon": [65535, 0], "given the highest seat of honor and as soon as": [65535, 0], "the highest seat of honor and as soon as mr": [65535, 0], "highest seat of honor and as soon as mr walters'": [65535, 0], "seat of honor and as soon as mr walters' speech": [65535, 0], "of honor and as soon as mr walters' speech was": [65535, 0], "honor and as soon as mr walters' speech was finished": [65535, 0], "and as soon as mr walters' speech was finished he": [65535, 0], "as soon as mr walters' speech was finished he introduced": [65535, 0], "soon as mr walters' speech was finished he introduced them": [65535, 0], "as mr walters' speech was finished he introduced them to": [65535, 0], "mr walters' speech was finished he introduced them to the": [65535, 0], "walters' speech was finished he introduced them to the school": [65535, 0], "speech was finished he introduced them to the school the": [65535, 0], "was finished he introduced them to the school the middle": [65535, 0], "finished he introduced them to the school the middle aged": [65535, 0], "he introduced them to the school the middle aged man": [65535, 0], "introduced them to the school the middle aged man turned": [65535, 0], "them to the school the middle aged man turned out": [65535, 0], "to the school the middle aged man turned out to": [65535, 0], "the school the middle aged man turned out to be": [65535, 0], "school the middle aged man turned out to be a": [65535, 0], "the middle aged man turned out to be a prodigious": [65535, 0], "middle aged man turned out to be a prodigious personage": [65535, 0], "aged man turned out to be a prodigious personage no": [65535, 0], "man turned out to be a prodigious personage no less": [65535, 0], "turned out to be a prodigious personage no less a": [65535, 0], "out to be a prodigious personage no less a one": [65535, 0], "to be a prodigious personage no less a one than": [65535, 0], "be a prodigious personage no less a one than the": [65535, 0], "a prodigious personage no less a one than the county": [65535, 0], "prodigious personage no less a one than the county judge": [65535, 0], "personage no less a one than the county judge altogether": [65535, 0], "no less a one than the county judge altogether the": [65535, 0], "less a one than the county judge altogether the most": [65535, 0], "a one than the county judge altogether the most august": [65535, 0], "one than the county judge altogether the most august creation": [65535, 0], "than the county judge altogether the most august creation these": [65535, 0], "the county judge altogether the most august creation these children": [65535, 0], "county judge altogether the most august creation these children had": [65535, 0], "judge altogether the most august creation these children had ever": [65535, 0], "altogether the most august creation these children had ever looked": [65535, 0], "the most august creation these children had ever looked upon": [65535, 0], "most august creation these children had ever looked upon and": [65535, 0], "august creation these children had ever looked upon and they": [65535, 0], "creation these children had ever looked upon and they wondered": [65535, 0], "these children had ever looked upon and they wondered what": [65535, 0], "children had ever looked upon and they wondered what kind": [65535, 0], "had ever looked upon and they wondered what kind of": [65535, 0], "ever looked upon and they wondered what kind of material": [65535, 0], "looked upon and they wondered what kind of material he": [65535, 0], "upon and they wondered what kind of material he was": [65535, 0], "and they wondered what kind of material he was made": [65535, 0], "they wondered what kind of material he was made of": [65535, 0], "wondered what kind of material he was made of and": [65535, 0], "what kind of material he was made of and they": [65535, 0], "kind of material he was made of and they half": [65535, 0], "of material he was made of and they half wanted": [65535, 0], "material he was made of and they half wanted to": [65535, 0], "he was made of and they half wanted to hear": [65535, 0], "was made of and they half wanted to hear him": [65535, 0], "made of and they half wanted to hear him roar": [65535, 0], "of and they half wanted to hear him roar and": [65535, 0], "and they half wanted to hear him roar and were": [65535, 0], "they half wanted to hear him roar and were half": [65535, 0], "half wanted to hear him roar and were half afraid": [65535, 0], "wanted to hear him roar and were half afraid he": [65535, 0], "to hear him roar and were half afraid he might": [65535, 0], "hear him roar and were half afraid he might too": [65535, 0], "him roar and were half afraid he might too he": [65535, 0], "roar and were half afraid he might too he was": [65535, 0], "and were half afraid he might too he was from": [65535, 0], "were half afraid he might too he was from constantinople": [65535, 0], "half afraid he might too he was from constantinople twelve": [65535, 0], "afraid he might too he was from constantinople twelve miles": [65535, 0], "he might too he was from constantinople twelve miles away": [65535, 0], "might too he was from constantinople twelve miles away so": [65535, 0], "too he was from constantinople twelve miles away so he": [65535, 0], "he was from constantinople twelve miles away so he had": [65535, 0], "was from constantinople twelve miles away so he had travelled": [65535, 0], "from constantinople twelve miles away so he had travelled and": [65535, 0], "constantinople twelve miles away so he had travelled and seen": [65535, 0], "twelve miles away so he had travelled and seen the": [65535, 0], "miles away so he had travelled and seen the world": [65535, 0], "away so he had travelled and seen the world these": [65535, 0], "so he had travelled and seen the world these very": [65535, 0], "he had travelled and seen the world these very eyes": [65535, 0], "had travelled and seen the world these very eyes had": [65535, 0], "travelled and seen the world these very eyes had looked": [65535, 0], "and seen the world these very eyes had looked upon": [65535, 0], "seen the world these very eyes had looked upon the": [65535, 0], "the world these very eyes had looked upon the county": [65535, 0], "world these very eyes had looked upon the county court": [65535, 0], "these very eyes had looked upon the county court house": [65535, 0], "very eyes had looked upon the county court house which": [65535, 0], "eyes had looked upon the county court house which was": [65535, 0], "had looked upon the county court house which was said": [65535, 0], "looked upon the county court house which was said to": [65535, 0], "upon the county court house which was said to have": [65535, 0], "the county court house which was said to have a": [65535, 0], "county court house which was said to have a tin": [65535, 0], "court house which was said to have a tin roof": [65535, 0], "house which was said to have a tin roof the": [65535, 0], "which was said to have a tin roof the awe": [65535, 0], "was said to have a tin roof the awe which": [65535, 0], "said to have a tin roof the awe which these": [65535, 0], "to have a tin roof the awe which these reflections": [65535, 0], "have a tin roof the awe which these reflections inspired": [65535, 0], "a tin roof the awe which these reflections inspired was": [65535, 0], "tin roof the awe which these reflections inspired was attested": [65535, 0], "roof the awe which these reflections inspired was attested by": [65535, 0], "the awe which these reflections inspired was attested by the": [65535, 0], "awe which these reflections inspired was attested by the impressive": [65535, 0], "which these reflections inspired was attested by the impressive silence": [65535, 0], "these reflections inspired was attested by the impressive silence and": [65535, 0], "reflections inspired was attested by the impressive silence and the": [65535, 0], "inspired was attested by the impressive silence and the ranks": [65535, 0], "was attested by the impressive silence and the ranks of": [65535, 0], "attested by the impressive silence and the ranks of staring": [65535, 0], "by the impressive silence and the ranks of staring eyes": [65535, 0], "the impressive silence and the ranks of staring eyes this": [65535, 0], "impressive silence and the ranks of staring eyes this was": [65535, 0], "silence and the ranks of staring eyes this was the": [65535, 0], "and the ranks of staring eyes this was the great": [65535, 0], "the ranks of staring eyes this was the great judge": [65535, 0], "ranks of staring eyes this was the great judge thatcher": [65535, 0], "of staring eyes this was the great judge thatcher brother": [65535, 0], "staring eyes this was the great judge thatcher brother of": [65535, 0], "eyes this was the great judge thatcher brother of their": [65535, 0], "this was the great judge thatcher brother of their own": [65535, 0], "was the great judge thatcher brother of their own lawyer": [65535, 0], "the great judge thatcher brother of their own lawyer jeff": [65535, 0], "great judge thatcher brother of their own lawyer jeff thatcher": [65535, 0], "judge thatcher brother of their own lawyer jeff thatcher immediately": [65535, 0], "thatcher brother of their own lawyer jeff thatcher immediately went": [65535, 0], "brother of their own lawyer jeff thatcher immediately went forward": [65535, 0], "of their own lawyer jeff thatcher immediately went forward to": [65535, 0], "their own lawyer jeff thatcher immediately went forward to be": [65535, 0], "own lawyer jeff thatcher immediately went forward to be familiar": [65535, 0], "lawyer jeff thatcher immediately went forward to be familiar with": [65535, 0], "jeff thatcher immediately went forward to be familiar with the": [65535, 0], "thatcher immediately went forward to be familiar with the great": [65535, 0], "immediately went forward to be familiar with the great man": [65535, 0], "went forward to be familiar with the great man and": [65535, 0], "forward to be familiar with the great man and be": [65535, 0], "to be familiar with the great man and be envied": [65535, 0], "be familiar with the great man and be envied by": [65535, 0], "familiar with the great man and be envied by the": [65535, 0], "with the great man and be envied by the school": [65535, 0], "the great man and be envied by the school it": [65535, 0], "great man and be envied by the school it would": [65535, 0], "man and be envied by the school it would have": [65535, 0], "and be envied by the school it would have been": [65535, 0], "be envied by the school it would have been music": [65535, 0], "envied by the school it would have been music to": [65535, 0], "by the school it would have been music to his": [65535, 0], "the school it would have been music to his soul": [65535, 0], "school it would have been music to his soul to": [65535, 0], "it would have been music to his soul to hear": [65535, 0], "would have been music to his soul to hear the": [65535, 0], "have been music to his soul to hear the whisperings": [65535, 0], "been music to his soul to hear the whisperings look": [65535, 0], "music to his soul to hear the whisperings look at": [65535, 0], "to his soul to hear the whisperings look at him": [65535, 0], "his soul to hear the whisperings look at him jim": [65535, 0], "soul to hear the whisperings look at him jim he's": [65535, 0], "to hear the whisperings look at him jim he's a": [65535, 0], "hear the whisperings look at him jim he's a going": [65535, 0], "the whisperings look at him jim he's a going up": [65535, 0], "whisperings look at him jim he's a going up there": [65535, 0], "look at him jim he's a going up there say": [65535, 0], "at him jim he's a going up there say look": [65535, 0], "him jim he's a going up there say look he's": [65535, 0], "jim he's a going up there say look he's a": [65535, 0], "he's a going up there say look he's a going": [65535, 0], "a going up there say look he's a going to": [65535, 0], "going up there say look he's a going to shake": [65535, 0], "up there say look he's a going to shake hands": [65535, 0], "there say look he's a going to shake hands with": [65535, 0], "say look he's a going to shake hands with him": [65535, 0], "look he's a going to shake hands with him he": [65535, 0], "he's a going to shake hands with him he is": [65535, 0], "a going to shake hands with him he is shaking": [65535, 0], "going to shake hands with him he is shaking hands": [65535, 0], "to shake hands with him he is shaking hands with": [65535, 0], "shake hands with him he is shaking hands with him": [65535, 0], "hands with him he is shaking hands with him by": [65535, 0], "with him he is shaking hands with him by jings": [65535, 0], "him he is shaking hands with him by jings don't": [65535, 0], "he is shaking hands with him by jings don't you": [65535, 0], "is shaking hands with him by jings don't you wish": [65535, 0], "shaking hands with him by jings don't you wish you": [65535, 0], "hands with him by jings don't you wish you was": [65535, 0], "with him by jings don't you wish you was jeff": [65535, 0], "him by jings don't you wish you was jeff mr": [65535, 0], "by jings don't you wish you was jeff mr walters": [65535, 0], "jings don't you wish you was jeff mr walters fell": [65535, 0], "don't you wish you was jeff mr walters fell to": [65535, 0], "you wish you was jeff mr walters fell to showing": [65535, 0], "wish you was jeff mr walters fell to showing off": [65535, 0], "you was jeff mr walters fell to showing off with": [65535, 0], "was jeff mr walters fell to showing off with all": [65535, 0], "jeff mr walters fell to showing off with all sorts": [65535, 0], "mr walters fell to showing off with all sorts of": [65535, 0], "walters fell to showing off with all sorts of official": [65535, 0], "fell to showing off with all sorts of official bustlings": [65535, 0], "to showing off with all sorts of official bustlings and": [65535, 0], "showing off with all sorts of official bustlings and activities": [65535, 0], "off with all sorts of official bustlings and activities giving": [65535, 0], "with all sorts of official bustlings and activities giving orders": [65535, 0], "all sorts of official bustlings and activities giving orders delivering": [65535, 0], "sorts of official bustlings and activities giving orders delivering judgments": [65535, 0], "of official bustlings and activities giving orders delivering judgments discharging": [65535, 0], "official bustlings and activities giving orders delivering judgments discharging directions": [65535, 0], "bustlings and activities giving orders delivering judgments discharging directions here": [65535, 0], "and activities giving orders delivering judgments discharging directions here there": [65535, 0], "activities giving orders delivering judgments discharging directions here there everywhere": [65535, 0], "giving orders delivering judgments discharging directions here there everywhere that": [65535, 0], "orders delivering judgments discharging directions here there everywhere that he": [65535, 0], "delivering judgments discharging directions here there everywhere that he could": [65535, 0], "judgments discharging directions here there everywhere that he could find": [65535, 0], "discharging directions here there everywhere that he could find a": [65535, 0], "directions here there everywhere that he could find a target": [65535, 0], "here there everywhere that he could find a target the": [65535, 0], "there everywhere that he could find a target the librarian": [65535, 0], "everywhere that he could find a target the librarian showed": [65535, 0], "that he could find a target the librarian showed off": [65535, 0], "he could find a target the librarian showed off running": [65535, 0], "could find a target the librarian showed off running hither": [65535, 0], "find a target the librarian showed off running hither and": [65535, 0], "a target the librarian showed off running hither and thither": [65535, 0], "target the librarian showed off running hither and thither with": [65535, 0], "the librarian showed off running hither and thither with his": [65535, 0], "librarian showed off running hither and thither with his arms": [65535, 0], "showed off running hither and thither with his arms full": [65535, 0], "off running hither and thither with his arms full of": [65535, 0], "running hither and thither with his arms full of books": [65535, 0], "hither and thither with his arms full of books and": [65535, 0], "and thither with his arms full of books and making": [65535, 0], "thither with his arms full of books and making a": [65535, 0], "with his arms full of books and making a deal": [65535, 0], "his arms full of books and making a deal of": [65535, 0], "arms full of books and making a deal of the": [65535, 0], "full of books and making a deal of the splutter": [65535, 0], "of books and making a deal of the splutter and": [65535, 0], "books and making a deal of the splutter and fuss": [65535, 0], "and making a deal of the splutter and fuss that": [65535, 0], "making a deal of the splutter and fuss that insect": [65535, 0], "a deal of the splutter and fuss that insect authority": [65535, 0], "deal of the splutter and fuss that insect authority delights": [65535, 0], "of the splutter and fuss that insect authority delights in": [65535, 0], "the splutter and fuss that insect authority delights in the": [65535, 0], "splutter and fuss that insect authority delights in the young": [65535, 0], "and fuss that insect authority delights in the young lady": [65535, 0], "fuss that insect authority delights in the young lady teachers": [65535, 0], "that insect authority delights in the young lady teachers showed": [65535, 0], "insect authority delights in the young lady teachers showed off": [65535, 0], "authority delights in the young lady teachers showed off bending": [65535, 0], "delights in the young lady teachers showed off bending sweetly": [65535, 0], "in the young lady teachers showed off bending sweetly over": [65535, 0], "the young lady teachers showed off bending sweetly over pupils": [65535, 0], "young lady teachers showed off bending sweetly over pupils that": [65535, 0], "lady teachers showed off bending sweetly over pupils that were": [65535, 0], "teachers showed off bending sweetly over pupils that were lately": [65535, 0], "showed off bending sweetly over pupils that were lately being": [65535, 0], "off bending sweetly over pupils that were lately being boxed": [65535, 0], "bending sweetly over pupils that were lately being boxed lifting": [65535, 0], "sweetly over pupils that were lately being boxed lifting pretty": [65535, 0], "over pupils that were lately being boxed lifting pretty warning": [65535, 0], "pupils that were lately being boxed lifting pretty warning fingers": [65535, 0], "that were lately being boxed lifting pretty warning fingers at": [65535, 0], "were lately being boxed lifting pretty warning fingers at bad": [65535, 0], "lately being boxed lifting pretty warning fingers at bad little": [65535, 0], "being boxed lifting pretty warning fingers at bad little boys": [65535, 0], "boxed lifting pretty warning fingers at bad little boys and": [65535, 0], "lifting pretty warning fingers at bad little boys and patting": [65535, 0], "pretty warning fingers at bad little boys and patting good": [65535, 0], "warning fingers at bad little boys and patting good ones": [65535, 0], "fingers at bad little boys and patting good ones lovingly": [65535, 0], "at bad little boys and patting good ones lovingly the": [65535, 0], "bad little boys and patting good ones lovingly the young": [65535, 0], "little boys and patting good ones lovingly the young gentlemen": [65535, 0], "boys and patting good ones lovingly the young gentlemen teachers": [65535, 0], "and patting good ones lovingly the young gentlemen teachers showed": [65535, 0], "patting good ones lovingly the young gentlemen teachers showed off": [65535, 0], "good ones lovingly the young gentlemen teachers showed off with": [65535, 0], "ones lovingly the young gentlemen teachers showed off with small": [65535, 0], "lovingly the young gentlemen teachers showed off with small scoldings": [65535, 0], "the young gentlemen teachers showed off with small scoldings and": [65535, 0], "young gentlemen teachers showed off with small scoldings and other": [65535, 0], "gentlemen teachers showed off with small scoldings and other little": [65535, 0], "teachers showed off with small scoldings and other little displays": [65535, 0], "showed off with small scoldings and other little displays of": [65535, 0], "off with small scoldings and other little displays of authority": [65535, 0], "with small scoldings and other little displays of authority and": [65535, 0], "small scoldings and other little displays of authority and fine": [65535, 0], "scoldings and other little displays of authority and fine attention": [65535, 0], "and other little displays of authority and fine attention to": [65535, 0], "other little displays of authority and fine attention to discipline": [65535, 0], "little displays of authority and fine attention to discipline and": [65535, 0], "displays of authority and fine attention to discipline and most": [65535, 0], "of authority and fine attention to discipline and most of": [65535, 0], "authority and fine attention to discipline and most of the": [65535, 0], "and fine attention to discipline and most of the teachers": [65535, 0], "fine attention to discipline and most of the teachers of": [65535, 0], "attention to discipline and most of the teachers of both": [65535, 0], "to discipline and most of the teachers of both sexes": [65535, 0], "discipline and most of the teachers of both sexes found": [65535, 0], "and most of the teachers of both sexes found business": [65535, 0], "most of the teachers of both sexes found business up": [65535, 0], "of the teachers of both sexes found business up at": [65535, 0], "the teachers of both sexes found business up at the": [65535, 0], "teachers of both sexes found business up at the library": [65535, 0], "of both sexes found business up at the library by": [65535, 0], "both sexes found business up at the library by the": [65535, 0], "sexes found business up at the library by the pulpit": [65535, 0], "found business up at the library by the pulpit and": [65535, 0], "business up at the library by the pulpit and it": [65535, 0], "up at the library by the pulpit and it was": [65535, 0], "at the library by the pulpit and it was business": [65535, 0], "the library by the pulpit and it was business that": [65535, 0], "library by the pulpit and it was business that frequently": [65535, 0], "by the pulpit and it was business that frequently had": [65535, 0], "the pulpit and it was business that frequently had to": [65535, 0], "pulpit and it was business that frequently had to be": [65535, 0], "and it was business that frequently had to be done": [65535, 0], "it was business that frequently had to be done over": [65535, 0], "was business that frequently had to be done over again": [65535, 0], "business that frequently had to be done over again two": [65535, 0], "that frequently had to be done over again two or": [65535, 0], "frequently had to be done over again two or three": [65535, 0], "had to be done over again two or three times": [65535, 0], "to be done over again two or three times with": [65535, 0], "be done over again two or three times with much": [65535, 0], "done over again two or three times with much seeming": [65535, 0], "over again two or three times with much seeming vexation": [65535, 0], "again two or three times with much seeming vexation the": [65535, 0], "two or three times with much seeming vexation the little": [65535, 0], "or three times with much seeming vexation the little girls": [65535, 0], "three times with much seeming vexation the little girls showed": [65535, 0], "times with much seeming vexation the little girls showed off": [65535, 0], "with much seeming vexation the little girls showed off in": [65535, 0], "much seeming vexation the little girls showed off in various": [65535, 0], "seeming vexation the little girls showed off in various ways": [65535, 0], "vexation the little girls showed off in various ways and": [65535, 0], "the little girls showed off in various ways and the": [65535, 0], "little girls showed off in various ways and the little": [65535, 0], "girls showed off in various ways and the little boys": [65535, 0], "showed off in various ways and the little boys showed": [65535, 0], "off in various ways and the little boys showed off": [65535, 0], "in various ways and the little boys showed off with": [65535, 0], "various ways and the little boys showed off with such": [65535, 0], "ways and the little boys showed off with such diligence": [65535, 0], "and the little boys showed off with such diligence that": [65535, 0], "the little boys showed off with such diligence that the": [65535, 0], "little boys showed off with such diligence that the air": [65535, 0], "boys showed off with such diligence that the air was": [65535, 0], "showed off with such diligence that the air was thick": [65535, 0], "off with such diligence that the air was thick with": [65535, 0], "with such diligence that the air was thick with paper": [65535, 0], "such diligence that the air was thick with paper wads": [65535, 0], "diligence that the air was thick with paper wads and": [65535, 0], "that the air was thick with paper wads and the": [65535, 0], "the air was thick with paper wads and the murmur": [65535, 0], "air was thick with paper wads and the murmur of": [65535, 0], "was thick with paper wads and the murmur of scufflings": [65535, 0], "thick with paper wads and the murmur of scufflings and": [65535, 0], "with paper wads and the murmur of scufflings and above": [65535, 0], "paper wads and the murmur of scufflings and above it": [65535, 0], "wads and the murmur of scufflings and above it all": [65535, 0], "and the murmur of scufflings and above it all the": [65535, 0], "the murmur of scufflings and above it all the great": [65535, 0], "murmur of scufflings and above it all the great man": [65535, 0], "of scufflings and above it all the great man sat": [65535, 0], "scufflings and above it all the great man sat and": [65535, 0], "and above it all the great man sat and beamed": [65535, 0], "above it all the great man sat and beamed a": [65535, 0], "it all the great man sat and beamed a majestic": [65535, 0], "all the great man sat and beamed a majestic judicial": [65535, 0], "the great man sat and beamed a majestic judicial smile": [65535, 0], "great man sat and beamed a majestic judicial smile upon": [65535, 0], "man sat and beamed a majestic judicial smile upon all": [65535, 0], "sat and beamed a majestic judicial smile upon all the": [65535, 0], "and beamed a majestic judicial smile upon all the house": [65535, 0], "beamed a majestic judicial smile upon all the house and": [65535, 0], "a majestic judicial smile upon all the house and warmed": [65535, 0], "majestic judicial smile upon all the house and warmed himself": [65535, 0], "judicial smile upon all the house and warmed himself in": [65535, 0], "smile upon all the house and warmed himself in the": [65535, 0], "upon all the house and warmed himself in the sun": [65535, 0], "all the house and warmed himself in the sun of": [65535, 0], "the house and warmed himself in the sun of his": [65535, 0], "house and warmed himself in the sun of his own": [65535, 0], "and warmed himself in the sun of his own grandeur": [65535, 0], "warmed himself in the sun of his own grandeur for": [65535, 0], "himself in the sun of his own grandeur for he": [65535, 0], "in the sun of his own grandeur for he was": [65535, 0], "the sun of his own grandeur for he was showing": [65535, 0], "sun of his own grandeur for he was showing off": [65535, 0], "of his own grandeur for he was showing off too": [65535, 0], "his own grandeur for he was showing off too there": [65535, 0], "own grandeur for he was showing off too there was": [65535, 0], "grandeur for he was showing off too there was only": [65535, 0], "for he was showing off too there was only one": [65535, 0], "he was showing off too there was only one thing": [65535, 0], "was showing off too there was only one thing wanting": [65535, 0], "showing off too there was only one thing wanting to": [65535, 0], "off too there was only one thing wanting to make": [65535, 0], "too there was only one thing wanting to make mr": [65535, 0], "there was only one thing wanting to make mr walters'": [65535, 0], "was only one thing wanting to make mr walters' ecstasy": [65535, 0], "only one thing wanting to make mr walters' ecstasy complete": [65535, 0], "one thing wanting to make mr walters' ecstasy complete and": [65535, 0], "thing wanting to make mr walters' ecstasy complete and that": [65535, 0], "wanting to make mr walters' ecstasy complete and that was": [65535, 0], "to make mr walters' ecstasy complete and that was a": [65535, 0], "make mr walters' ecstasy complete and that was a chance": [65535, 0], "mr walters' ecstasy complete and that was a chance to": [65535, 0], "walters' ecstasy complete and that was a chance to deliver": [65535, 0], "ecstasy complete and that was a chance to deliver a": [65535, 0], "complete and that was a chance to deliver a bible": [65535, 0], "and that was a chance to deliver a bible prize": [65535, 0], "that was a chance to deliver a bible prize and": [65535, 0], "was a chance to deliver a bible prize and exhibit": [65535, 0], "a chance to deliver a bible prize and exhibit a": [65535, 0], "chance to deliver a bible prize and exhibit a prodigy": [65535, 0], "to deliver a bible prize and exhibit a prodigy several": [65535, 0], "deliver a bible prize and exhibit a prodigy several pupils": [65535, 0], "a bible prize and exhibit a prodigy several pupils had": [65535, 0], "bible prize and exhibit a prodigy several pupils had a": [65535, 0], "prize and exhibit a prodigy several pupils had a few": [65535, 0], "and exhibit a prodigy several pupils had a few yellow": [65535, 0], "exhibit a prodigy several pupils had a few yellow tickets": [65535, 0], "a prodigy several pupils had a few yellow tickets but": [65535, 0], "prodigy several pupils had a few yellow tickets but none": [65535, 0], "several pupils had a few yellow tickets but none had": [65535, 0], "pupils had a few yellow tickets but none had enough": [65535, 0], "had a few yellow tickets but none had enough he": [65535, 0], "a few yellow tickets but none had enough he had": [65535, 0], "few yellow tickets but none had enough he had been": [65535, 0], "yellow tickets but none had enough he had been around": [65535, 0], "tickets but none had enough he had been around among": [65535, 0], "but none had enough he had been around among the": [65535, 0], "none had enough he had been around among the star": [65535, 0], "had enough he had been around among the star pupils": [65535, 0], "enough he had been around among the star pupils inquiring": [65535, 0], "he had been around among the star pupils inquiring he": [65535, 0], "had been around among the star pupils inquiring he would": [65535, 0], "been around among the star pupils inquiring he would have": [65535, 0], "around among the star pupils inquiring he would have given": [65535, 0], "among the star pupils inquiring he would have given worlds": [65535, 0], "the star pupils inquiring he would have given worlds now": [65535, 0], "star pupils inquiring he would have given worlds now to": [65535, 0], "pupils inquiring he would have given worlds now to have": [65535, 0], "inquiring he would have given worlds now to have that": [65535, 0], "he would have given worlds now to have that german": [65535, 0], "would have given worlds now to have that german lad": [65535, 0], "have given worlds now to have that german lad back": [65535, 0], "given worlds now to have that german lad back again": [65535, 0], "worlds now to have that german lad back again with": [65535, 0], "now to have that german lad back again with a": [65535, 0], "to have that german lad back again with a sound": [65535, 0], "have that german lad back again with a sound mind": [65535, 0], "that german lad back again with a sound mind and": [65535, 0], "german lad back again with a sound mind and now": [65535, 0], "lad back again with a sound mind and now at": [65535, 0], "back again with a sound mind and now at this": [65535, 0], "again with a sound mind and now at this moment": [65535, 0], "with a sound mind and now at this moment when": [65535, 0], "a sound mind and now at this moment when hope": [65535, 0], "sound mind and now at this moment when hope was": [65535, 0], "mind and now at this moment when hope was dead": [65535, 0], "and now at this moment when hope was dead tom": [65535, 0], "now at this moment when hope was dead tom sawyer": [65535, 0], "at this moment when hope was dead tom sawyer came": [65535, 0], "this moment when hope was dead tom sawyer came forward": [65535, 0], "moment when hope was dead tom sawyer came forward with": [65535, 0], "when hope was dead tom sawyer came forward with nine": [65535, 0], "hope was dead tom sawyer came forward with nine yellow": [65535, 0], "was dead tom sawyer came forward with nine yellow tickets": [65535, 0], "dead tom sawyer came forward with nine yellow tickets nine": [65535, 0], "tom sawyer came forward with nine yellow tickets nine red": [65535, 0], "sawyer came forward with nine yellow tickets nine red tickets": [65535, 0], "came forward with nine yellow tickets nine red tickets and": [65535, 0], "forward with nine yellow tickets nine red tickets and ten": [65535, 0], "with nine yellow tickets nine red tickets and ten blue": [65535, 0], "nine yellow tickets nine red tickets and ten blue ones": [65535, 0], "yellow tickets nine red tickets and ten blue ones and": [65535, 0], "tickets nine red tickets and ten blue ones and demanded": [65535, 0], "nine red tickets and ten blue ones and demanded a": [65535, 0], "red tickets and ten blue ones and demanded a bible": [65535, 0], "tickets and ten blue ones and demanded a bible this": [65535, 0], "and ten blue ones and demanded a bible this was": [65535, 0], "ten blue ones and demanded a bible this was a": [65535, 0], "blue ones and demanded a bible this was a thunderbolt": [65535, 0], "ones and demanded a bible this was a thunderbolt out": [65535, 0], "and demanded a bible this was a thunderbolt out of": [65535, 0], "demanded a bible this was a thunderbolt out of a": [65535, 0], "a bible this was a thunderbolt out of a clear": [65535, 0], "bible this was a thunderbolt out of a clear sky": [65535, 0], "this was a thunderbolt out of a clear sky walters": [65535, 0], "was a thunderbolt out of a clear sky walters was": [65535, 0], "a thunderbolt out of a clear sky walters was not": [65535, 0], "thunderbolt out of a clear sky walters was not expecting": [65535, 0], "out of a clear sky walters was not expecting an": [65535, 0], "of a clear sky walters was not expecting an application": [65535, 0], "a clear sky walters was not expecting an application from": [65535, 0], "clear sky walters was not expecting an application from this": [65535, 0], "sky walters was not expecting an application from this source": [65535, 0], "walters was not expecting an application from this source for": [65535, 0], "was not expecting an application from this source for the": [65535, 0], "not expecting an application from this source for the next": [65535, 0], "expecting an application from this source for the next ten": [65535, 0], "an application from this source for the next ten years": [65535, 0], "application from this source for the next ten years but": [65535, 0], "from this source for the next ten years but there": [65535, 0], "this source for the next ten years but there was": [65535, 0], "source for the next ten years but there was no": [65535, 0], "for the next ten years but there was no getting": [65535, 0], "the next ten years but there was no getting around": [65535, 0], "next ten years but there was no getting around it": [65535, 0], "ten years but there was no getting around it here": [65535, 0], "years but there was no getting around it here were": [65535, 0], "but there was no getting around it here were the": [65535, 0], "there was no getting around it here were the certified": [65535, 0], "was no getting around it here were the certified checks": [65535, 0], "no getting around it here were the certified checks and": [65535, 0], "getting around it here were the certified checks and they": [65535, 0], "around it here were the certified checks and they were": [65535, 0], "it here were the certified checks and they were good": [65535, 0], "here were the certified checks and they were good for": [65535, 0], "were the certified checks and they were good for their": [65535, 0], "the certified checks and they were good for their face": [65535, 0], "certified checks and they were good for their face tom": [65535, 0], "checks and they were good for their face tom was": [65535, 0], "and they were good for their face tom was therefore": [65535, 0], "they were good for their face tom was therefore elevated": [65535, 0], "were good for their face tom was therefore elevated to": [65535, 0], "good for their face tom was therefore elevated to a": [65535, 0], "for their face tom was therefore elevated to a place": [65535, 0], "their face tom was therefore elevated to a place with": [65535, 0], "face tom was therefore elevated to a place with the": [65535, 0], "tom was therefore elevated to a place with the judge": [65535, 0], "was therefore elevated to a place with the judge and": [65535, 0], "therefore elevated to a place with the judge and the": [65535, 0], "elevated to a place with the judge and the other": [65535, 0], "to a place with the judge and the other elect": [65535, 0], "a place with the judge and the other elect and": [65535, 0], "place with the judge and the other elect and the": [65535, 0], "with the judge and the other elect and the great": [65535, 0], "the judge and the other elect and the great news": [65535, 0], "judge and the other elect and the great news was": [65535, 0], "and the other elect and the great news was announced": [65535, 0], "the other elect and the great news was announced from": [65535, 0], "other elect and the great news was announced from headquarters": [65535, 0], "elect and the great news was announced from headquarters it": [65535, 0], "and the great news was announced from headquarters it was": [65535, 0], "the great news was announced from headquarters it was the": [65535, 0], "great news was announced from headquarters it was the most": [65535, 0], "news was announced from headquarters it was the most stunning": [65535, 0], "was announced from headquarters it was the most stunning surprise": [65535, 0], "announced from headquarters it was the most stunning surprise of": [65535, 0], "from headquarters it was the most stunning surprise of the": [65535, 0], "headquarters it was the most stunning surprise of the decade": [65535, 0], "it was the most stunning surprise of the decade and": [65535, 0], "was the most stunning surprise of the decade and so": [65535, 0], "the most stunning surprise of the decade and so profound": [65535, 0], "most stunning surprise of the decade and so profound was": [65535, 0], "stunning surprise of the decade and so profound was the": [65535, 0], "surprise of the decade and so profound was the sensation": [65535, 0], "of the decade and so profound was the sensation that": [65535, 0], "the decade and so profound was the sensation that it": [65535, 0], "decade and so profound was the sensation that it lifted": [65535, 0], "and so profound was the sensation that it lifted the": [65535, 0], "so profound was the sensation that it lifted the new": [65535, 0], "profound was the sensation that it lifted the new hero": [65535, 0], "was the sensation that it lifted the new hero up": [65535, 0], "the sensation that it lifted the new hero up to": [65535, 0], "sensation that it lifted the new hero up to the": [65535, 0], "that it lifted the new hero up to the judicial": [65535, 0], "it lifted the new hero up to the judicial one's": [65535, 0], "lifted the new hero up to the judicial one's altitude": [65535, 0], "the new hero up to the judicial one's altitude and": [65535, 0], "new hero up to the judicial one's altitude and the": [65535, 0], "hero up to the judicial one's altitude and the school": [65535, 0], "up to the judicial one's altitude and the school had": [65535, 0], "to the judicial one's altitude and the school had two": [65535, 0], "the judicial one's altitude and the school had two marvels": [65535, 0], "judicial one's altitude and the school had two marvels to": [65535, 0], "one's altitude and the school had two marvels to gaze": [65535, 0], "altitude and the school had two marvels to gaze upon": [65535, 0], "and the school had two marvels to gaze upon in": [65535, 0], "the school had two marvels to gaze upon in place": [65535, 0], "school had two marvels to gaze upon in place of": [65535, 0], "had two marvels to gaze upon in place of one": [65535, 0], "two marvels to gaze upon in place of one the": [65535, 0], "marvels to gaze upon in place of one the boys": [65535, 0], "to gaze upon in place of one the boys were": [65535, 0], "gaze upon in place of one the boys were all": [65535, 0], "upon in place of one the boys were all eaten": [65535, 0], "in place of one the boys were all eaten up": [65535, 0], "place of one the boys were all eaten up with": [65535, 0], "of one the boys were all eaten up with envy": [65535, 0], "one the boys were all eaten up with envy but": [65535, 0], "the boys were all eaten up with envy but those": [65535, 0], "boys were all eaten up with envy but those that": [65535, 0], "were all eaten up with envy but those that suffered": [65535, 0], "all eaten up with envy but those that suffered the": [65535, 0], "eaten up with envy but those that suffered the bitterest": [65535, 0], "up with envy but those that suffered the bitterest pangs": [65535, 0], "with envy but those that suffered the bitterest pangs were": [65535, 0], "envy but those that suffered the bitterest pangs were those": [65535, 0], "but those that suffered the bitterest pangs were those who": [65535, 0], "those that suffered the bitterest pangs were those who perceived": [65535, 0], "that suffered the bitterest pangs were those who perceived too": [65535, 0], "suffered the bitterest pangs were those who perceived too late": [65535, 0], "the bitterest pangs were those who perceived too late that": [65535, 0], "bitterest pangs were those who perceived too late that they": [65535, 0], "pangs were those who perceived too late that they themselves": [65535, 0], "were those who perceived too late that they themselves had": [65535, 0], "those who perceived too late that they themselves had contributed": [65535, 0], "who perceived too late that they themselves had contributed to": [65535, 0], "perceived too late that they themselves had contributed to this": [65535, 0], "too late that they themselves had contributed to this hated": [65535, 0], "late that they themselves had contributed to this hated splendor": [65535, 0], "that they themselves had contributed to this hated splendor by": [65535, 0], "they themselves had contributed to this hated splendor by trading": [65535, 0], "themselves had contributed to this hated splendor by trading tickets": [65535, 0], "had contributed to this hated splendor by trading tickets to": [65535, 0], "contributed to this hated splendor by trading tickets to tom": [65535, 0], "to this hated splendor by trading tickets to tom for": [65535, 0], "this hated splendor by trading tickets to tom for the": [65535, 0], "hated splendor by trading tickets to tom for the wealth": [65535, 0], "splendor by trading tickets to tom for the wealth he": [65535, 0], "by trading tickets to tom for the wealth he had": [65535, 0], "trading tickets to tom for the wealth he had amassed": [65535, 0], "tickets to tom for the wealth he had amassed in": [65535, 0], "to tom for the wealth he had amassed in selling": [65535, 0], "tom for the wealth he had amassed in selling whitewashing": [65535, 0], "for the wealth he had amassed in selling whitewashing privileges": [65535, 0], "the wealth he had amassed in selling whitewashing privileges these": [65535, 0], "wealth he had amassed in selling whitewashing privileges these despised": [65535, 0], "he had amassed in selling whitewashing privileges these despised themselves": [65535, 0], "had amassed in selling whitewashing privileges these despised themselves as": [65535, 0], "amassed in selling whitewashing privileges these despised themselves as being": [65535, 0], "in selling whitewashing privileges these despised themselves as being the": [65535, 0], "selling whitewashing privileges these despised themselves as being the dupes": [65535, 0], "whitewashing privileges these despised themselves as being the dupes of": [65535, 0], "privileges these despised themselves as being the dupes of a": [65535, 0], "these despised themselves as being the dupes of a wily": [65535, 0], "despised themselves as being the dupes of a wily fraud": [65535, 0], "themselves as being the dupes of a wily fraud a": [65535, 0], "as being the dupes of a wily fraud a guileful": [65535, 0], "being the dupes of a wily fraud a guileful snake": [65535, 0], "the dupes of a wily fraud a guileful snake in": [65535, 0], "dupes of a wily fraud a guileful snake in the": [65535, 0], "of a wily fraud a guileful snake in the grass": [65535, 0], "a wily fraud a guileful snake in the grass the": [65535, 0], "wily fraud a guileful snake in the grass the prize": [65535, 0], "fraud a guileful snake in the grass the prize was": [65535, 0], "a guileful snake in the grass the prize was delivered": [65535, 0], "guileful snake in the grass the prize was delivered to": [65535, 0], "snake in the grass the prize was delivered to tom": [65535, 0], "in the grass the prize was delivered to tom with": [65535, 0], "the grass the prize was delivered to tom with as": [65535, 0], "grass the prize was delivered to tom with as much": [65535, 0], "the prize was delivered to tom with as much effusion": [65535, 0], "prize was delivered to tom with as much effusion as": [65535, 0], "was delivered to tom with as much effusion as the": [65535, 0], "delivered to tom with as much effusion as the superintendent": [65535, 0], "to tom with as much effusion as the superintendent could": [65535, 0], "tom with as much effusion as the superintendent could pump": [65535, 0], "with as much effusion as the superintendent could pump up": [65535, 0], "as much effusion as the superintendent could pump up under": [65535, 0], "much effusion as the superintendent could pump up under the": [65535, 0], "effusion as the superintendent could pump up under the circumstances": [65535, 0], "as the superintendent could pump up under the circumstances but": [65535, 0], "the superintendent could pump up under the circumstances but it": [65535, 0], "superintendent could pump up under the circumstances but it lacked": [65535, 0], "could pump up under the circumstances but it lacked somewhat": [65535, 0], "pump up under the circumstances but it lacked somewhat of": [65535, 0], "up under the circumstances but it lacked somewhat of the": [65535, 0], "under the circumstances but it lacked somewhat of the true": [65535, 0], "the circumstances but it lacked somewhat of the true gush": [65535, 0], "circumstances but it lacked somewhat of the true gush for": [65535, 0], "but it lacked somewhat of the true gush for the": [65535, 0], "it lacked somewhat of the true gush for the poor": [65535, 0], "lacked somewhat of the true gush for the poor fellow's": [65535, 0], "somewhat of the true gush for the poor fellow's instinct": [65535, 0], "of the true gush for the poor fellow's instinct taught": [65535, 0], "the true gush for the poor fellow's instinct taught him": [65535, 0], "true gush for the poor fellow's instinct taught him that": [65535, 0], "gush for the poor fellow's instinct taught him that there": [65535, 0], "for the poor fellow's instinct taught him that there was": [65535, 0], "the poor fellow's instinct taught him that there was a": [65535, 0], "poor fellow's instinct taught him that there was a mystery": [65535, 0], "fellow's instinct taught him that there was a mystery here": [65535, 0], "instinct taught him that there was a mystery here that": [65535, 0], "taught him that there was a mystery here that could": [65535, 0], "him that there was a mystery here that could not": [65535, 0], "that there was a mystery here that could not well": [65535, 0], "there was a mystery here that could not well bear": [65535, 0], "was a mystery here that could not well bear the": [65535, 0], "a mystery here that could not well bear the light": [65535, 0], "mystery here that could not well bear the light perhaps": [65535, 0], "here that could not well bear the light perhaps it": [65535, 0], "that could not well bear the light perhaps it was": [65535, 0], "could not well bear the light perhaps it was simply": [65535, 0], "not well bear the light perhaps it was simply preposterous": [65535, 0], "well bear the light perhaps it was simply preposterous that": [65535, 0], "bear the light perhaps it was simply preposterous that this": [65535, 0], "the light perhaps it was simply preposterous that this boy": [65535, 0], "light perhaps it was simply preposterous that this boy had": [65535, 0], "perhaps it was simply preposterous that this boy had warehoused": [65535, 0], "it was simply preposterous that this boy had warehoused two": [65535, 0], "was simply preposterous that this boy had warehoused two thousand": [65535, 0], "simply preposterous that this boy had warehoused two thousand sheaves": [65535, 0], "preposterous that this boy had warehoused two thousand sheaves of": [65535, 0], "that this boy had warehoused two thousand sheaves of scriptural": [65535, 0], "this boy had warehoused two thousand sheaves of scriptural wisdom": [65535, 0], "boy had warehoused two thousand sheaves of scriptural wisdom on": [65535, 0], "had warehoused two thousand sheaves of scriptural wisdom on his": [65535, 0], "warehoused two thousand sheaves of scriptural wisdom on his premises": [65535, 0], "two thousand sheaves of scriptural wisdom on his premises a": [65535, 0], "thousand sheaves of scriptural wisdom on his premises a dozen": [65535, 0], "sheaves of scriptural wisdom on his premises a dozen would": [65535, 0], "of scriptural wisdom on his premises a dozen would strain": [65535, 0], "scriptural wisdom on his premises a dozen would strain his": [65535, 0], "wisdom on his premises a dozen would strain his capacity": [65535, 0], "on his premises a dozen would strain his capacity without": [65535, 0], "his premises a dozen would strain his capacity without a": [65535, 0], "premises a dozen would strain his capacity without a doubt": [65535, 0], "a dozen would strain his capacity without a doubt amy": [65535, 0], "dozen would strain his capacity without a doubt amy lawrence": [65535, 0], "would strain his capacity without a doubt amy lawrence was": [65535, 0], "strain his capacity without a doubt amy lawrence was proud": [65535, 0], "his capacity without a doubt amy lawrence was proud and": [65535, 0], "capacity without a doubt amy lawrence was proud and glad": [65535, 0], "without a doubt amy lawrence was proud and glad and": [65535, 0], "a doubt amy lawrence was proud and glad and she": [65535, 0], "doubt amy lawrence was proud and glad and she tried": [65535, 0], "amy lawrence was proud and glad and she tried to": [65535, 0], "lawrence was proud and glad and she tried to make": [65535, 0], "was proud and glad and she tried to make tom": [65535, 0], "proud and glad and she tried to make tom see": [65535, 0], "and glad and she tried to make tom see it": [65535, 0], "glad and she tried to make tom see it in": [65535, 0], "and she tried to make tom see it in her": [65535, 0], "she tried to make tom see it in her face": [65535, 0], "tried to make tom see it in her face but": [65535, 0], "to make tom see it in her face but he": [65535, 0], "make tom see it in her face but he wouldn't": [65535, 0], "tom see it in her face but he wouldn't look": [65535, 0], "see it in her face but he wouldn't look she": [65535, 0], "it in her face but he wouldn't look she wondered": [65535, 0], "in her face but he wouldn't look she wondered then": [65535, 0], "her face but he wouldn't look she wondered then she": [65535, 0], "face but he wouldn't look she wondered then she was": [65535, 0], "but he wouldn't look she wondered then she was just": [65535, 0], "he wouldn't look she wondered then she was just a": [65535, 0], "wouldn't look she wondered then she was just a grain": [65535, 0], "look she wondered then she was just a grain troubled": [65535, 0], "she wondered then she was just a grain troubled next": [65535, 0], "wondered then she was just a grain troubled next a": [65535, 0], "then she was just a grain troubled next a dim": [65535, 0], "she was just a grain troubled next a dim suspicion": [65535, 0], "was just a grain troubled next a dim suspicion came": [65535, 0], "just a grain troubled next a dim suspicion came and": [65535, 0], "a grain troubled next a dim suspicion came and went": [65535, 0], "grain troubled next a dim suspicion came and went came": [65535, 0], "troubled next a dim suspicion came and went came again": [65535, 0], "next a dim suspicion came and went came again she": [65535, 0], "a dim suspicion came and went came again she watched": [65535, 0], "dim suspicion came and went came again she watched a": [65535, 0], "suspicion came and went came again she watched a furtive": [65535, 0], "came and went came again she watched a furtive glance": [65535, 0], "and went came again she watched a furtive glance told": [65535, 0], "went came again she watched a furtive glance told her": [65535, 0], "came again she watched a furtive glance told her worlds": [65535, 0], "again she watched a furtive glance told her worlds and": [65535, 0], "she watched a furtive glance told her worlds and then": [65535, 0], "watched a furtive glance told her worlds and then her": [65535, 0], "a furtive glance told her worlds and then her heart": [65535, 0], "furtive glance told her worlds and then her heart broke": [65535, 0], "glance told her worlds and then her heart broke and": [65535, 0], "told her worlds and then her heart broke and she": [65535, 0], "her worlds and then her heart broke and she was": [65535, 0], "worlds and then her heart broke and she was jealous": [65535, 0], "and then her heart broke and she was jealous and": [65535, 0], "then her heart broke and she was jealous and angry": [65535, 0], "her heart broke and she was jealous and angry and": [65535, 0], "heart broke and she was jealous and angry and the": [65535, 0], "broke and she was jealous and angry and the tears": [65535, 0], "and she was jealous and angry and the tears came": [65535, 0], "she was jealous and angry and the tears came and": [65535, 0], "was jealous and angry and the tears came and she": [65535, 0], "jealous and angry and the tears came and she hated": [65535, 0], "and angry and the tears came and she hated everybody": [65535, 0], "angry and the tears came and she hated everybody tom": [65535, 0], "and the tears came and she hated everybody tom most": [65535, 0], "the tears came and she hated everybody tom most of": [65535, 0], "tears came and she hated everybody tom most of all": [65535, 0], "came and she hated everybody tom most of all she": [65535, 0], "and she hated everybody tom most of all she thought": [65535, 0], "she hated everybody tom most of all she thought tom": [65535, 0], "hated everybody tom most of all she thought tom was": [65535, 0], "everybody tom most of all she thought tom was introduced": [65535, 0], "tom most of all she thought tom was introduced to": [65535, 0], "most of all she thought tom was introduced to the": [65535, 0], "of all she thought tom was introduced to the judge": [65535, 0], "all she thought tom was introduced to the judge but": [65535, 0], "she thought tom was introduced to the judge but his": [65535, 0], "thought tom was introduced to the judge but his tongue": [65535, 0], "tom was introduced to the judge but his tongue was": [65535, 0], "was introduced to the judge but his tongue was tied": [65535, 0], "introduced to the judge but his tongue was tied his": [65535, 0], "to the judge but his tongue was tied his breath": [65535, 0], "the judge but his tongue was tied his breath would": [65535, 0], "judge but his tongue was tied his breath would hardly": [65535, 0], "but his tongue was tied his breath would hardly come": [65535, 0], "his tongue was tied his breath would hardly come his": [65535, 0], "tongue was tied his breath would hardly come his heart": [65535, 0], "was tied his breath would hardly come his heart quaked": [65535, 0], "tied his breath would hardly come his heart quaked partly": [65535, 0], "his breath would hardly come his heart quaked partly because": [65535, 0], "breath would hardly come his heart quaked partly because of": [65535, 0], "would hardly come his heart quaked partly because of the": [65535, 0], "hardly come his heart quaked partly because of the awful": [65535, 0], "come his heart quaked partly because of the awful greatness": [65535, 0], "his heart quaked partly because of the awful greatness of": [65535, 0], "heart quaked partly because of the awful greatness of the": [65535, 0], "quaked partly because of the awful greatness of the man": [65535, 0], "partly because of the awful greatness of the man but": [65535, 0], "because of the awful greatness of the man but mainly": [65535, 0], "of the awful greatness of the man but mainly because": [65535, 0], "the awful greatness of the man but mainly because he": [65535, 0], "awful greatness of the man but mainly because he was": [65535, 0], "greatness of the man but mainly because he was her": [65535, 0], "of the man but mainly because he was her parent": [65535, 0], "the man but mainly because he was her parent he": [65535, 0], "man but mainly because he was her parent he would": [65535, 0], "but mainly because he was her parent he would have": [65535, 0], "mainly because he was her parent he would have liked": [65535, 0], "because he was her parent he would have liked to": [65535, 0], "he was her parent he would have liked to fall": [65535, 0], "was her parent he would have liked to fall down": [65535, 0], "her parent he would have liked to fall down and": [65535, 0], "parent he would have liked to fall down and worship": [65535, 0], "he would have liked to fall down and worship him": [65535, 0], "would have liked to fall down and worship him if": [65535, 0], "have liked to fall down and worship him if it": [65535, 0], "liked to fall down and worship him if it were": [65535, 0], "to fall down and worship him if it were in": [65535, 0], "fall down and worship him if it were in the": [65535, 0], "down and worship him if it were in the dark": [65535, 0], "and worship him if it were in the dark the": [65535, 0], "worship him if it were in the dark the judge": [65535, 0], "him if it were in the dark the judge put": [65535, 0], "if it were in the dark the judge put his": [65535, 0], "it were in the dark the judge put his hand": [65535, 0], "were in the dark the judge put his hand on": [65535, 0], "in the dark the judge put his hand on tom's": [65535, 0], "the dark the judge put his hand on tom's head": [65535, 0], "dark the judge put his hand on tom's head and": [65535, 0], "the judge put his hand on tom's head and called": [65535, 0], "judge put his hand on tom's head and called him": [65535, 0], "put his hand on tom's head and called him a": [65535, 0], "his hand on tom's head and called him a fine": [65535, 0], "hand on tom's head and called him a fine little": [65535, 0], "on tom's head and called him a fine little man": [65535, 0], "tom's head and called him a fine little man and": [65535, 0], "head and called him a fine little man and asked": [65535, 0], "and called him a fine little man and asked him": [65535, 0], "called him a fine little man and asked him what": [65535, 0], "him a fine little man and asked him what his": [65535, 0], "a fine little man and asked him what his name": [65535, 0], "fine little man and asked him what his name was": [65535, 0], "little man and asked him what his name was the": [65535, 0], "man and asked him what his name was the boy": [65535, 0], "and asked him what his name was the boy stammered": [65535, 0], "asked him what his name was the boy stammered gasped": [65535, 0], "him what his name was the boy stammered gasped and": [65535, 0], "what his name was the boy stammered gasped and got": [65535, 0], "his name was the boy stammered gasped and got it": [65535, 0], "name was the boy stammered gasped and got it out": [65535, 0], "was the boy stammered gasped and got it out tom": [65535, 0], "the boy stammered gasped and got it out tom oh": [65535, 0], "boy stammered gasped and got it out tom oh no": [65535, 0], "stammered gasped and got it out tom oh no not": [65535, 0], "gasped and got it out tom oh no not tom": [65535, 0], "and got it out tom oh no not tom it": [65535, 0], "got it out tom oh no not tom it is": [65535, 0], "it out tom oh no not tom it is thomas": [65535, 0], "out tom oh no not tom it is thomas ah": [65535, 0], "tom oh no not tom it is thomas ah that's": [65535, 0], "oh no not tom it is thomas ah that's it": [65535, 0], "no not tom it is thomas ah that's it i": [65535, 0], "not tom it is thomas ah that's it i thought": [65535, 0], "tom it is thomas ah that's it i thought there": [65535, 0], "it is thomas ah that's it i thought there was": [65535, 0], "is thomas ah that's it i thought there was more": [65535, 0], "thomas ah that's it i thought there was more to": [65535, 0], "ah that's it i thought there was more to it": [65535, 0], "that's it i thought there was more to it maybe": [65535, 0], "it i thought there was more to it maybe that's": [65535, 0], "i thought there was more to it maybe that's very": [65535, 0], "thought there was more to it maybe that's very well": [65535, 0], "there was more to it maybe that's very well but": [65535, 0], "was more to it maybe that's very well but you've": [65535, 0], "more to it maybe that's very well but you've another": [65535, 0], "to it maybe that's very well but you've another one": [65535, 0], "it maybe that's very well but you've another one i": [65535, 0], "maybe that's very well but you've another one i daresay": [65535, 0], "that's very well but you've another one i daresay and": [65535, 0], "very well but you've another one i daresay and you'll": [65535, 0], "well but you've another one i daresay and you'll tell": [65535, 0], "but you've another one i daresay and you'll tell it": [65535, 0], "you've another one i daresay and you'll tell it to": [65535, 0], "another one i daresay and you'll tell it to me": [65535, 0], "one i daresay and you'll tell it to me won't": [65535, 0], "i daresay and you'll tell it to me won't you": [65535, 0], "daresay and you'll tell it to me won't you tell": [65535, 0], "and you'll tell it to me won't you tell the": [65535, 0], "you'll tell it to me won't you tell the gentleman": [65535, 0], "tell it to me won't you tell the gentleman your": [65535, 0], "it to me won't you tell the gentleman your other": [65535, 0], "to me won't you tell the gentleman your other name": [65535, 0], "me won't you tell the gentleman your other name thomas": [65535, 0], "won't you tell the gentleman your other name thomas said": [65535, 0], "you tell the gentleman your other name thomas said walters": [65535, 0], "tell the gentleman your other name thomas said walters and": [65535, 0], "the gentleman your other name thomas said walters and say": [65535, 0], "gentleman your other name thomas said walters and say sir": [65535, 0], "your other name thomas said walters and say sir you": [65535, 0], "other name thomas said walters and say sir you mustn't": [65535, 0], "name thomas said walters and say sir you mustn't forget": [65535, 0], "thomas said walters and say sir you mustn't forget your": [65535, 0], "said walters and say sir you mustn't forget your manners": [65535, 0], "walters and say sir you mustn't forget your manners thomas": [65535, 0], "and say sir you mustn't forget your manners thomas sawyer": [65535, 0], "say sir you mustn't forget your manners thomas sawyer sir": [65535, 0], "sir you mustn't forget your manners thomas sawyer sir that's": [65535, 0], "you mustn't forget your manners thomas sawyer sir that's it": [65535, 0], "mustn't forget your manners thomas sawyer sir that's it that's": [65535, 0], "forget your manners thomas sawyer sir that's it that's a": [65535, 0], "your manners thomas sawyer sir that's it that's a good": [65535, 0], "manners thomas sawyer sir that's it that's a good boy": [65535, 0], "thomas sawyer sir that's it that's a good boy fine": [65535, 0], "sawyer sir that's it that's a good boy fine boy": [65535, 0], "sir that's it that's a good boy fine boy fine": [65535, 0], "that's it that's a good boy fine boy fine manly": [65535, 0], "it that's a good boy fine boy fine manly little": [65535, 0], "that's a good boy fine boy fine manly little fellow": [65535, 0], "a good boy fine boy fine manly little fellow two": [65535, 0], "good boy fine boy fine manly little fellow two thousand": [65535, 0], "boy fine boy fine manly little fellow two thousand verses": [65535, 0], "fine boy fine manly little fellow two thousand verses is": [65535, 0], "boy fine manly little fellow two thousand verses is a": [65535, 0], "fine manly little fellow two thousand verses is a great": [65535, 0], "manly little fellow two thousand verses is a great many": [65535, 0], "little fellow two thousand verses is a great many very": [65535, 0], "fellow two thousand verses is a great many very very": [65535, 0], "two thousand verses is a great many very very great": [65535, 0], "thousand verses is a great many very very great many": [65535, 0], "verses is a great many very very great many and": [65535, 0], "is a great many very very great many and you": [65535, 0], "a great many very very great many and you never": [65535, 0], "great many very very great many and you never can": [65535, 0], "many very very great many and you never can be": [65535, 0], "very very great many and you never can be sorry": [65535, 0], "very great many and you never can be sorry for": [65535, 0], "great many and you never can be sorry for the": [65535, 0], "many and you never can be sorry for the trouble": [65535, 0], "and you never can be sorry for the trouble you": [65535, 0], "you never can be sorry for the trouble you took": [65535, 0], "never can be sorry for the trouble you took to": [65535, 0], "can be sorry for the trouble you took to learn": [65535, 0], "be sorry for the trouble you took to learn them": [65535, 0], "sorry for the trouble you took to learn them for": [65535, 0], "for the trouble you took to learn them for knowledge": [65535, 0], "the trouble you took to learn them for knowledge is": [65535, 0], "trouble you took to learn them for knowledge is worth": [65535, 0], "you took to learn them for knowledge is worth more": [65535, 0], "took to learn them for knowledge is worth more than": [65535, 0], "to learn them for knowledge is worth more than anything": [65535, 0], "learn them for knowledge is worth more than anything there": [65535, 0], "them for knowledge is worth more than anything there is": [65535, 0], "for knowledge is worth more than anything there is in": [65535, 0], "knowledge is worth more than anything there is in the": [65535, 0], "is worth more than anything there is in the world": [65535, 0], "worth more than anything there is in the world it's": [65535, 0], "more than anything there is in the world it's what": [65535, 0], "than anything there is in the world it's what makes": [65535, 0], "anything there is in the world it's what makes great": [65535, 0], "there is in the world it's what makes great men": [65535, 0], "is in the world it's what makes great men and": [65535, 0], "in the world it's what makes great men and good": [65535, 0], "the world it's what makes great men and good men": [65535, 0], "world it's what makes great men and good men you'll": [65535, 0], "it's what makes great men and good men you'll be": [65535, 0], "what makes great men and good men you'll be a": [65535, 0], "makes great men and good men you'll be a great": [65535, 0], "great men and good men you'll be a great man": [65535, 0], "men and good men you'll be a great man and": [65535, 0], "and good men you'll be a great man and a": [65535, 0], "good men you'll be a great man and a good": [65535, 0], "men you'll be a great man and a good man": [65535, 0], "you'll be a great man and a good man yourself": [65535, 0], "be a great man and a good man yourself some": [65535, 0], "a great man and a good man yourself some day": [65535, 0], "great man and a good man yourself some day thomas": [65535, 0], "man and a good man yourself some day thomas and": [65535, 0], "and a good man yourself some day thomas and then": [65535, 0], "a good man yourself some day thomas and then you'll": [65535, 0], "good man yourself some day thomas and then you'll look": [65535, 0], "man yourself some day thomas and then you'll look back": [65535, 0], "yourself some day thomas and then you'll look back and": [65535, 0], "some day thomas and then you'll look back and say": [65535, 0], "day thomas and then you'll look back and say it's": [65535, 0], "thomas and then you'll look back and say it's all": [65535, 0], "and then you'll look back and say it's all owing": [65535, 0], "then you'll look back and say it's all owing to": [65535, 0], "you'll look back and say it's all owing to the": [65535, 0], "look back and say it's all owing to the precious": [65535, 0], "back and say it's all owing to the precious sunday": [65535, 0], "and say it's all owing to the precious sunday school": [65535, 0], "say it's all owing to the precious sunday school privileges": [65535, 0], "it's all owing to the precious sunday school privileges of": [65535, 0], "all owing to the precious sunday school privileges of my": [65535, 0], "owing to the precious sunday school privileges of my boyhood": [65535, 0], "to the precious sunday school privileges of my boyhood it's": [65535, 0], "the precious sunday school privileges of my boyhood it's all": [65535, 0], "precious sunday school privileges of my boyhood it's all owing": [65535, 0], "sunday school privileges of my boyhood it's all owing to": [65535, 0], "school privileges of my boyhood it's all owing to my": [65535, 0], "privileges of my boyhood it's all owing to my dear": [65535, 0], "of my boyhood it's all owing to my dear teachers": [65535, 0], "my boyhood it's all owing to my dear teachers that": [65535, 0], "boyhood it's all owing to my dear teachers that taught": [65535, 0], "it's all owing to my dear teachers that taught me": [65535, 0], "all owing to my dear teachers that taught me to": [65535, 0], "owing to my dear teachers that taught me to learn": [65535, 0], "to my dear teachers that taught me to learn it's": [65535, 0], "my dear teachers that taught me to learn it's all": [65535, 0], "dear teachers that taught me to learn it's all owing": [65535, 0], "teachers that taught me to learn it's all owing to": [65535, 0], "that taught me to learn it's all owing to the": [65535, 0], "taught me to learn it's all owing to the good": [65535, 0], "me to learn it's all owing to the good superintendent": [65535, 0], "to learn it's all owing to the good superintendent who": [65535, 0], "learn it's all owing to the good superintendent who encouraged": [65535, 0], "it's all owing to the good superintendent who encouraged me": [65535, 0], "all owing to the good superintendent who encouraged me and": [65535, 0], "owing to the good superintendent who encouraged me and watched": [65535, 0], "to the good superintendent who encouraged me and watched over": [65535, 0], "the good superintendent who encouraged me and watched over me": [65535, 0], "good superintendent who encouraged me and watched over me and": [65535, 0], "superintendent who encouraged me and watched over me and gave": [65535, 0], "who encouraged me and watched over me and gave me": [65535, 0], "encouraged me and watched over me and gave me a": [65535, 0], "me and watched over me and gave me a beautiful": [65535, 0], "and watched over me and gave me a beautiful bible": [65535, 0], "watched over me and gave me a beautiful bible a": [65535, 0], "over me and gave me a beautiful bible a splendid": [65535, 0], "me and gave me a beautiful bible a splendid elegant": [65535, 0], "and gave me a beautiful bible a splendid elegant bible": [65535, 0], "gave me a beautiful bible a splendid elegant bible to": [65535, 0], "me a beautiful bible a splendid elegant bible to keep": [65535, 0], "a beautiful bible a splendid elegant bible to keep and": [65535, 0], "beautiful bible a splendid elegant bible to keep and have": [65535, 0], "bible a splendid elegant bible to keep and have it": [65535, 0], "a splendid elegant bible to keep and have it all": [65535, 0], "splendid elegant bible to keep and have it all for": [65535, 0], "elegant bible to keep and have it all for my": [65535, 0], "bible to keep and have it all for my own": [65535, 0], "to keep and have it all for my own always": [65535, 0], "keep and have it all for my own always it's": [65535, 0], "and have it all for my own always it's all": [65535, 0], "have it all for my own always it's all owing": [65535, 0], "it all for my own always it's all owing to": [65535, 0], "all for my own always it's all owing to right": [65535, 0], "for my own always it's all owing to right bringing": [65535, 0], "my own always it's all owing to right bringing up": [65535, 0], "own always it's all owing to right bringing up that": [65535, 0], "always it's all owing to right bringing up that is": [65535, 0], "it's all owing to right bringing up that is what": [65535, 0], "all owing to right bringing up that is what you": [65535, 0], "owing to right bringing up that is what you will": [65535, 0], "to right bringing up that is what you will say": [65535, 0], "right bringing up that is what you will say thomas": [65535, 0], "bringing up that is what you will say thomas and": [65535, 0], "up that is what you will say thomas and you": [65535, 0], "that is what you will say thomas and you wouldn't": [65535, 0], "is what you will say thomas and you wouldn't take": [65535, 0], "what you will say thomas and you wouldn't take any": [65535, 0], "you will say thomas and you wouldn't take any money": [65535, 0], "will say thomas and you wouldn't take any money for": [65535, 0], "say thomas and you wouldn't take any money for those": [65535, 0], "thomas and you wouldn't take any money for those two": [65535, 0], "and you wouldn't take any money for those two thousand": [65535, 0], "you wouldn't take any money for those two thousand verses": [65535, 0], "wouldn't take any money for those two thousand verses no": [65535, 0], "take any money for those two thousand verses no indeed": [65535, 0], "any money for those two thousand verses no indeed you": [65535, 0], "money for those two thousand verses no indeed you wouldn't": [65535, 0], "for those two thousand verses no indeed you wouldn't and": [65535, 0], "those two thousand verses no indeed you wouldn't and now": [65535, 0], "two thousand verses no indeed you wouldn't and now you": [65535, 0], "thousand verses no indeed you wouldn't and now you wouldn't": [65535, 0], "verses no indeed you wouldn't and now you wouldn't mind": [65535, 0], "no indeed you wouldn't and now you wouldn't mind telling": [65535, 0], "indeed you wouldn't and now you wouldn't mind telling me": [65535, 0], "you wouldn't and now you wouldn't mind telling me and": [65535, 0], "wouldn't and now you wouldn't mind telling me and this": [65535, 0], "and now you wouldn't mind telling me and this lady": [65535, 0], "now you wouldn't mind telling me and this lady some": [65535, 0], "you wouldn't mind telling me and this lady some of": [65535, 0], "wouldn't mind telling me and this lady some of the": [65535, 0], "mind telling me and this lady some of the things": [65535, 0], "telling me and this lady some of the things you've": [65535, 0], "me and this lady some of the things you've learned": [65535, 0], "and this lady some of the things you've learned no": [65535, 0], "this lady some of the things you've learned no i": [65535, 0], "lady some of the things you've learned no i know": [65535, 0], "some of the things you've learned no i know you": [65535, 0], "of the things you've learned no i know you wouldn't": [65535, 0], "the things you've learned no i know you wouldn't for": [65535, 0], "things you've learned no i know you wouldn't for we": [65535, 0], "you've learned no i know you wouldn't for we are": [65535, 0], "learned no i know you wouldn't for we are proud": [65535, 0], "no i know you wouldn't for we are proud of": [65535, 0], "i know you wouldn't for we are proud of little": [65535, 0], "know you wouldn't for we are proud of little boys": [65535, 0], "you wouldn't for we are proud of little boys that": [65535, 0], "wouldn't for we are proud of little boys that learn": [65535, 0], "for we are proud of little boys that learn now": [65535, 0], "we are proud of little boys that learn now no": [65535, 0], "are proud of little boys that learn now no doubt": [65535, 0], "proud of little boys that learn now no doubt you": [65535, 0], "of little boys that learn now no doubt you know": [65535, 0], "little boys that learn now no doubt you know the": [65535, 0], "boys that learn now no doubt you know the names": [65535, 0], "that learn now no doubt you know the names of": [65535, 0], "learn now no doubt you know the names of all": [65535, 0], "now no doubt you know the names of all the": [65535, 0], "no doubt you know the names of all the twelve": [65535, 0], "doubt you know the names of all the twelve disciples": [65535, 0], "you know the names of all the twelve disciples won't": [65535, 0], "know the names of all the twelve disciples won't you": [65535, 0], "the names of all the twelve disciples won't you tell": [65535, 0], "names of all the twelve disciples won't you tell us": [65535, 0], "of all the twelve disciples won't you tell us the": [65535, 0], "all the twelve disciples won't you tell us the names": [65535, 0], "the twelve disciples won't you tell us the names of": [65535, 0], "twelve disciples won't you tell us the names of the": [65535, 0], "disciples won't you tell us the names of the first": [65535, 0], "won't you tell us the names of the first two": [65535, 0], "you tell us the names of the first two that": [65535, 0], "tell us the names of the first two that were": [65535, 0], "us the names of the first two that were appointed": [65535, 0], "the names of the first two that were appointed tom": [65535, 0], "names of the first two that were appointed tom was": [65535, 0], "of the first two that were appointed tom was tugging": [65535, 0], "the first two that were appointed tom was tugging at": [65535, 0], "first two that were appointed tom was tugging at a": [65535, 0], "two that were appointed tom was tugging at a button": [65535, 0], "that were appointed tom was tugging at a button hole": [65535, 0], "were appointed tom was tugging at a button hole and": [65535, 0], "appointed tom was tugging at a button hole and looking": [65535, 0], "tom was tugging at a button hole and looking sheepish": [65535, 0], "was tugging at a button hole and looking sheepish he": [65535, 0], "tugging at a button hole and looking sheepish he blushed": [65535, 0], "at a button hole and looking sheepish he blushed now": [65535, 0], "a button hole and looking sheepish he blushed now and": [65535, 0], "button hole and looking sheepish he blushed now and his": [65535, 0], "hole and looking sheepish he blushed now and his eyes": [65535, 0], "and looking sheepish he blushed now and his eyes fell": [65535, 0], "looking sheepish he blushed now and his eyes fell mr": [65535, 0], "sheepish he blushed now and his eyes fell mr walters'": [65535, 0], "he blushed now and his eyes fell mr walters' heart": [65535, 0], "blushed now and his eyes fell mr walters' heart sank": [65535, 0], "now and his eyes fell mr walters' heart sank within": [65535, 0], "and his eyes fell mr walters' heart sank within him": [65535, 0], "his eyes fell mr walters' heart sank within him he": [65535, 0], "eyes fell mr walters' heart sank within him he said": [65535, 0], "fell mr walters' heart sank within him he said to": [65535, 0], "mr walters' heart sank within him he said to himself": [65535, 0], "walters' heart sank within him he said to himself it": [65535, 0], "heart sank within him he said to himself it is": [65535, 0], "sank within him he said to himself it is not": [65535, 0], "within him he said to himself it is not possible": [65535, 0], "him he said to himself it is not possible that": [65535, 0], "he said to himself it is not possible that the": [65535, 0], "said to himself it is not possible that the boy": [65535, 0], "to himself it is not possible that the boy can": [65535, 0], "himself it is not possible that the boy can answer": [65535, 0], "it is not possible that the boy can answer the": [65535, 0], "is not possible that the boy can answer the simplest": [65535, 0], "not possible that the boy can answer the simplest question": [65535, 0], "possible that the boy can answer the simplest question why": [65535, 0], "that the boy can answer the simplest question why did": [65535, 0], "the boy can answer the simplest question why did the": [65535, 0], "boy can answer the simplest question why did the judge": [65535, 0], "can answer the simplest question why did the judge ask": [65535, 0], "answer the simplest question why did the judge ask him": [65535, 0], "the simplest question why did the judge ask him yet": [65535, 0], "simplest question why did the judge ask him yet he": [65535, 0], "question why did the judge ask him yet he felt": [65535, 0], "why did the judge ask him yet he felt obliged": [65535, 0], "did the judge ask him yet he felt obliged to": [65535, 0], "the judge ask him yet he felt obliged to speak": [65535, 0], "judge ask him yet he felt obliged to speak up": [65535, 0], "ask him yet he felt obliged to speak up and": [65535, 0], "him yet he felt obliged to speak up and say": [65535, 0], "yet he felt obliged to speak up and say answer": [65535, 0], "he felt obliged to speak up and say answer the": [65535, 0], "felt obliged to speak up and say answer the gentleman": [65535, 0], "obliged to speak up and say answer the gentleman thomas": [65535, 0], "to speak up and say answer the gentleman thomas don't": [65535, 0], "speak up and say answer the gentleman thomas don't be": [65535, 0], "up and say answer the gentleman thomas don't be afraid": [65535, 0], "and say answer the gentleman thomas don't be afraid tom": [65535, 0], "say answer the gentleman thomas don't be afraid tom still": [65535, 0], "answer the gentleman thomas don't be afraid tom still hung": [65535, 0], "the gentleman thomas don't be afraid tom still hung fire": [65535, 0], "gentleman thomas don't be afraid tom still hung fire now": [65535, 0], "thomas don't be afraid tom still hung fire now i": [65535, 0], "don't be afraid tom still hung fire now i know": [65535, 0], "be afraid tom still hung fire now i know you'll": [65535, 0], "afraid tom still hung fire now i know you'll tell": [65535, 0], "tom still hung fire now i know you'll tell me": [65535, 0], "still hung fire now i know you'll tell me said": [65535, 0], "hung fire now i know you'll tell me said the": [65535, 0], "fire now i know you'll tell me said the lady": [65535, 0], "now i know you'll tell me said the lady the": [65535, 0], "i know you'll tell me said the lady the names": [65535, 0], "know you'll tell me said the lady the names of": [65535, 0], "you'll tell me said the lady the names of the": [65535, 0], "tell me said the lady the names of the first": [65535, 0], "me said the lady the names of the first two": [65535, 0], "said the lady the names of the first two disciples": [65535, 0], "the lady the names of the first two disciples were": [65535, 0], "lady the names of the first two disciples were david": [65535, 0], "the names of the first two disciples were david and": [65535, 0], "names of the first two disciples were david and goliath": [65535, 0], "of the first two disciples were david and goliath let": [65535, 0], "the first two disciples were david and goliath let us": [65535, 0], "first two disciples were david and goliath let us draw": [65535, 0], "two disciples were david and goliath let us draw the": [65535, 0], "disciples were david and goliath let us draw the curtain": [65535, 0], "were david and goliath let us draw the curtain of": [65535, 0], "david and goliath let us draw the curtain of charity": [65535, 0], "and goliath let us draw the curtain of charity over": [65535, 0], "goliath let us draw the curtain of charity over the": [65535, 0], "let us draw the curtain of charity over the rest": [65535, 0], "us draw the curtain of charity over the rest of": [65535, 0], "draw the curtain of charity over the rest of the": [65535, 0], "the curtain of charity over the rest of the scene": [65535, 0], "presented": [65535, 0], "pleasant": [65535, 0], "apartment": [65535, 0], "bedroom": [65535, 0], "dining": [65535, 0], "balmy": [65535, 0], "restful": [65535, 0], "odor": [65535, 0], "drowsing": [65535, 0], "bees": [65535, 0], "nodding": [65535, 0], "knitting": [65535, 0], "asleep": [65535, 0], "safety": [32706, 32829], "deserted": [65535, 0], "seeing": [65535, 0], "power": [32706, 32829], "intrepid": [65535, 0], "mayn't": [65535, 0], "a'ready": [65535, 0], "trust": [13068, 52467], "content": [21790, 43745], "per": [65535, 0], "cent": [65535, 0], "statement": [65535, 0], "elaborately": [65535, 0], "recoated": [65535, 0], "astonishment": [65535, 0], "unspeakable": [65535, 0], "diluted": [65535, 0], "compliment": [65535, 0], "adding": [65535, 0], "tan": [65535, 0], "overcome": [65535, 0], "achievement": [65535, 0], "selected": [65535, 0], "choice": [65535, 0], "improving": [65535, 0], "lecture": [65535, 0], "value": [65535, 0], "flavor": [65535, 0], "virtuous": [65535, 0], "flourish": [65535, 0], "hooked": [65535, 0], "doughnut": [65535, 0], "skipped": [65535, 0], "starting": [65535, 0], "stairway": [65535, 0], "led": [65535, 0], "rooms": [65535, 0], "second": [32706, 32829], "clods": [65535, 0], "twinkling": [65535, 0], "raged": [65535, 0], "hail": [65535, 0], "storm": [65535, 0], "collect": [65535, 0], "sally": [65535, 0], "rescue": [32706, 32829], "seven": [65535, 0], "personal": [65535, 0], "crowded": [65535, 0], "use": [65535, 0], "calling": [65535, 0], "skirted": [65535, 0], "block": [65535, 0], "muddy": [65535, 0], "aunt's": [65535, 0], "cowstable": [65535, 0], "safely": [65535, 0], "capture": [65535, 0], "punishment": [32706, 32829], "hastened": [65535, 0], "public": [65535, 0], "square": [65535, 0], "military": [65535, 0], "companies": [65535, 0], "conflict": [65535, 0], "according": [32706, 32829], "previous": [65535, 0], "appointment": [65535, 0], "armies": [65535, 0], "bosom": [65535, 0], "friend": [8165, 57370], "commanders": [65535, 0], "condescend": [65535, 0], "smaller": [65535, 0], "fry": [65535, 0], "eminence": [65535, 0], "conducted": [65535, 0], "operations": [65535, 0], "aides": [65535, 0], "camp": [65535, 0], "army": [65535, 0], "victory": [65535, 0], "fought": [65535, 0], "prisoners": [65535, 0], "terms": [65535, 0], "disagreement": [65535, 0], "agreed": [32706, 32829], "marched": [65535, 0], "homeward": [21790, 43745], "passing": [65535, 0], "lovely": [65535, 0], "plaited": [65535, 0], "frock": [65535, 0], "embroidered": [65535, 0], "pantalettes": [65535, 0], "firing": [65535, 0], "distraction": [65535, 0], "passion": [21790, 43745], "adoration": [65535, 0], "behold": [16338, 49197], "evanescent": [65535, 0], "partiality": [65535, 0], "winning": [65535, 0], "confessed": [65535, 0], "happiest": [65535, 0], "proudest": [65535, 0], "casual": [65535, 0], "visit": [43635, 21900], "worshipped": [65535, 0], "angel": [32706, 32829], "pretended": [65535, 0], "absurd": [65535, 0], "boyish": [65535, 0], "admiration": [65535, 0], "grotesque": [65535, 0], "foolishness": [65535, 0], "dangerous": [65535, 0], "gymnastic": [65535, 0], "performances": [65535, 0], "aside": [65535, 0], "wending": [65535, 0], "grieving": [65535, 0], "hoping": [65535, 0], "tarry": [32706, 32829], "halted": [65535, 0], "heaved": [65535, 0], "sigh": [65535, 0], "threshold": [65535, 0], "pansy": [65535, 0], "flower": [65535, 0], "shaded": [65535, 0], "direction": [65535, 0], "picked": [65535, 0], "balance": [65535, 0], "tilted": [65535, 0], "efforts": [65535, 0], "edged": [65535, 0], "nearer": [65535, 0], "bare": [16338, 49197], "rested": [16338, 49197], "pliant": [65535, 0], "hopped": [65535, 0], "corner": [65535, 0], "inside": [65535, 0], "posted": [65535, 0], "anatomy": [65535, 0], "nightfall": [65535, 0], "comforted": [65535, 0], "attentions": [65535, 0], "reluctantly": [65535, 0], "visions": [65535, 0], "spirits": [65535, 0], "scolding": [65535, 0], "clodding": [65535, 0], "knuckles": [65535, 0], "rapped": [65535, 0], "takes": [21790, 43745], "immunity": [65535, 0], "bowl": [65535, 0], "glorying": [65535, 0], "nigh": [65535, 0], "unbearable": [65535, 0], "sid's": [65535, 0], "slipped": [65535, 0], "ecstasies": [65535, 0], "controlled": [65535, 0], "mischief": [65535, 0], "catch": [32706, 32829], "brimful": [65535, 0], "exultation": [65535, 0], "wreck": [65535, 0], "lightnings": [65535, 0], "wrath": [65535, 0], "sprawling": [65535, 0], "potent": [65535, 0], "palm": [65535, 0], "uplifted": [65535, 0], "'er": [65535, 0], "belting": [65535, 0], "paused": [65535, 0], "healing": [65535, 0], "pity": [65535, 0], "umf": [65535, 0], "amiss": [65535, 0], "audacious": [65535, 0], "reproached": [65535, 0], "yearned": [65535, 0], "judged": [65535, 0], "construed": [65535, 0], "wrong": [5442, 60093], "affairs": [65535, 0], "sulked": [65535, 0], "exalted": [65535, 0], "woes": [16338, 49197], "knees": [65535, 0], "morosely": [65535, 0], "gratified": [65535, 0], "consciousness": [65535, 0], "signals": [65535, 0], "yearning": [65535, 0], "film": [65535, 0], "recognition": [65535, 0], "pictured": [65535, 0], "lying": [65535, 0], "unto": [65535, 0], "death": [13068, 52467], "beseeching": [65535, 0], "forgiving": [65535, 0], "unsaid": [65535, 0], "river": [65535, 0], "pray": [3628, 61907], "god": [5024, 60511], "abuse": [65535, 0], "cold": [26155, 39380], "griefs": [65535, 0], "feelings": [65535, 0], "dreams": [65535, 0], "swallowing": [65535, 0], "choke": [65535, 0], "swam": [65535, 0], "blur": [65535, 0], "overflowed": [65535, 0], "winked": [65535, 0], "trickled": [65535, 0], "luxury": [65535, 0], "petting": [65535, 0], "cheeriness": [65535, 0], "grating": [65535, 0], "intrude": [65535, 0], "contact": [65535, 0], "cousin": [65535, 0], "danced": [65535, 0], "alive": [65535, 0], "clouds": [65535, 0], "darkness": [65535, 0], "sunshine": [65535, 0], "haunts": [32706, 32829], "sought": [32706, 32829], "desolate": [65535, 0], "log": [65535, 0], "raft": [65535, 0], "invited": [65535, 0], "outer": [65535, 0], "dreary": [65535, 0], "vastness": [65535, 0], "stream": [65535, 0], "drowned": [32706, 32829], "undergoing": [65535, 0], "routine": [65535, 0], "devised": [65535, 0], "rumpled": [65535, 0], "wilted": [65535, 0], "mightily": [65535, 0], "increased": [65535, 0], "felicity": [65535, 0], "comfort": [16338, 49197], "coldly": [32706, 32829], "pleasurable": [65535, 0], "varied": [65535, 0], "lights": [65535, 0], "threadbare": [65535, 0], "departed": [65535, 0], "o'clock": [65535, 0], "adored": [65535, 0], "candle": [65535, 0], "casting": [65535, 0], "glow": [65535, 0], "story": [32706, 32829], "presence": [16338, 49197], "threaded": [65535, 0], "stealthy": [65535, 0], "plants": [65535, 0], "emotion": [65535, 0], "disposing": [65535, 0], "clasped": [65535, 0], "breast": [65535, 0], "holding": [65535, 0], "shelter": [65535, 0], "homeless": [65535, 0], "friendly": [65535, 0], "damps": [65535, 0], "brow": [32706, 32829], "bend": [32706, 32829], "pityingly": [65535, 0], "drop": [9332, 56203], "tear": [65535, 0], "lifeless": [65535, 0], "rudely": [65535, 0], "untimely": [65535, 0], "maid": [65535, 0], "servant's": [65535, 0], "discordant": [65535, 0], "profaned": [65535, 0], "holy": [13068, 52467], "calm": [65535, 0], "deluge": [65535, 0], "drenched": [65535, 0], "prone": [65535, 0], "martyr's": [65535, 0], "remains": [65535, 0], "strangling": [65535, 0], "relieving": [65535, 0], "whiz": [65535, 0], "missile": [65535, 0], "mingled": [32706, 32829], "curse": [32706, 32829], "shivering": [65535, 0], "gloom": [65535, 0], "undressed": [65535, 0], "surveying": [65535, 0], "garments": [32706, 32829], "dip": [65535, 0], "woke": [65535, 0], "references": [65535, 0], "allusions": [65535, 0], "prayers": [21790, 43745], "omission": [65535, 0], "tom presented": [65535, 0], "presented himself": [65535, 0], "himself before": [65535, 0], "before aunt": [65535, 0], "polly who": [65535, 0], "was sitting": [65535, 0], "sitting by": [65535, 0], "an open": [65535, 0], "window in": [65535, 0], "a pleasant": [65535, 0], "pleasant rearward": [65535, 0], "rearward apartment": [65535, 0], "apartment which": [65535, 0], "was bedroom": [65535, 0], "bedroom breakfast": [65535, 0], "breakfast room": [65535, 0], "room dining": [65535, 0], "dining room": [65535, 0], "room and": [65535, 0], "and library": [65535, 0], "library combined": [65535, 0], "combined the": [65535, 0], "the balmy": [65535, 0], "balmy summer": [65535, 0], "summer air": [65535, 0], "the restful": [65535, 0], "restful quiet": [65535, 0], "quiet the": [65535, 0], "the odor": [65535, 0], "odor of": [65535, 0], "the flowers": [65535, 0], "flowers and": [65535, 0], "the drowsing": [65535, 0], "drowsing murmur": [65535, 0], "the bees": [65535, 0], "bees had": [65535, 0], "had their": [65535, 0], "their effect": [65535, 0], "effect and": [65535, 0], "was nodding": [65535, 0], "nodding over": [65535, 0], "over her": [65535, 0], "her knitting": [65535, 0], "knitting for": [65535, 0], "no company": [65535, 0], "company but": [65535, 0], "was asleep": [65535, 0], "asleep in": [65535, 0], "her lap": [65535, 0], "lap her": [65535, 0], "spectacles were": [65535, 0], "were propped": [65535, 0], "propped up": [65535, 0], "on her": [65535, 0], "her gray": [65535, 0], "gray head": [65535, 0], "for safety": [32706, 32829], "safety she": [65535, 0], "had thought": [65535, 0], "thought that": [65535, 0], "that of": [32706, 32829], "course tom": [65535, 0], "had deserted": [65535, 0], "deserted long": [65535, 0], "long ago": [65535, 0], "wondered at": [65535, 0], "at seeing": [65535, 0], "seeing him": [65535, 0], "him place": [65535, 0], "place himself": [65535, 0], "her power": [65535, 0], "power again": [65535, 0], "again in": [65535, 0], "this intrepid": [65535, 0], "intrepid way": [65535, 0], "said mayn't": [65535, 0], "mayn't i": [65535, 0], "i go": [21790, 43745], "and play": [65535, 0], "play now": [65535, 0], "now aunt": [65535, 0], "aunt what": [65535, 0], "what a'ready": [65535, 0], "a'ready how": [65535, 0], "how much": [32706, 32829], "much have": [65535, 0], "you done": [65535, 0], "done it's": [65535, 0], "all done": [65535, 0], "done aunt": [65535, 0], "aunt tom": [65535, 0], "don't lie": [65535, 0], "lie to": [65535, 0], "can't bear": [65535, 0], "bear it": [65535, 0], "ain't aunt": [65535, 0], "aunt it": [65535, 0], "is all": [65535, 0], "polly placed": [65535, 0], "placed small": [65535, 0], "small trust": [65535, 0], "trust in": [65535, 0], "such evidence": [65535, 0], "evidence she": [65535, 0], "see for": [65535, 0], "for herself": [65535, 0], "herself and": [65535, 0], "been content": [65535, 0], "content to": [65535, 0], "find twenty": [65535, 0], "twenty per": [65535, 0], "per cent": [65535, 0], "cent of": [65535, 0], "tom's statement": [65535, 0], "statement true": [65535, 0], "true when": [65535, 0], "she found": [65535, 0], "found the": [32706, 32829], "the entire": [65535, 0], "entire fence": [65535, 0], "fence whitewashed": [65535, 0], "whitewashed and": [65535, 0], "and not": [21790, 43745], "not only": [65535, 0], "only whitewashed": [65535, 0], "whitewashed but": [65535, 0], "but elaborately": [65535, 0], "elaborately coated": [65535, 0], "coated and": [65535, 0], "and recoated": [65535, 0], "recoated and": [65535, 0], "even a": [65535, 0], "a streak": [65535, 0], "streak added": [65535, 0], "added to": [65535, 0], "ground her": [65535, 0], "her astonishment": [65535, 0], "astonishment was": [65535, 0], "was almost": [65535, 0], "almost unspeakable": [65535, 0], "unspeakable she": [65535, 0], "never there's": [65535, 0], "there's no": [21790, 43745], "getting round": [65535, 0], "round it": [65535, 0], "can work": [65535, 0], "work when": [65535, 0], "a mind": [65535, 0], "mind to": [65535, 0], "she diluted": [65535, 0], "diluted the": [65535, 0], "the compliment": [65535, 0], "compliment by": [65535, 0], "by adding": [65535, 0], "adding but": [65535, 0], "it's powerful": [65535, 0], "powerful seldom": [65535, 0], "seldom you're": [65535, 0], "to i'm": [65535, 0], "i'm bound": [65535, 0], "bound to": [16338, 49197], "say well": [65535, 0], "'long and": [65535, 0], "play but": [65535, 0], "but mind": [65535, 0], "mind you": [65535, 0], "get back": [65535, 0], "back some": [65535, 0], "time in": [65535, 0], "week or": [65535, 0], "i'll tan": [65535, 0], "tan you": [65535, 0], "you she": [65535, 0], "so overcome": [65535, 0], "overcome by": [65535, 0], "the splendor": [65535, 0], "splendor of": [65535, 0], "his achievement": [65535, 0], "achievement that": [65535, 0], "she took": [65535, 0], "the closet": [65535, 0], "closet and": [65535, 0], "and selected": [65535, 0], "selected a": [65535, 0], "a choice": [65535, 0], "choice apple": [65535, 0], "and delivered": [65535, 0], "delivered it": [65535, 0], "him along": [65535, 0], "along with": [32706, 32829], "with an": [16338, 49197], "an improving": [65535, 0], "improving lecture": [65535, 0], "lecture upon": [65535, 0], "the added": [65535, 0], "added value": [65535, 0], "value and": [65535, 0], "and flavor": [65535, 0], "flavor a": [65535, 0], "a treat": [65535, 0], "treat took": [65535, 0], "to itself": [65535, 0], "itself when": [65535, 0], "it came": [65535, 0], "came without": [65535, 0], "without sin": [65535, 0], "sin through": [65535, 0], "through virtuous": [65535, 0], "virtuous effort": [65535, 0], "effort and": [65535, 0], "while she": [32706, 32829], "she closed": [65535, 0], "a happy": [65535, 0], "happy scriptural": [65535, 0], "scriptural flourish": [65535, 0], "flourish he": [65535, 0], "he hooked": [65535, 0], "hooked a": [65535, 0], "a doughnut": [65535, 0], "doughnut then": [65535, 0], "he skipped": [65535, 0], "skipped out": [65535, 0], "and saw": [65535, 0], "saw sid": [65535, 0], "sid just": [65535, 0], "just starting": [65535, 0], "starting up": [65535, 0], "the outside": [65535, 0], "outside stairway": [65535, 0], "stairway that": [65535, 0], "that led": [65535, 0], "led to": [65535, 0], "back rooms": [65535, 0], "rooms on": [65535, 0], "the second": [32706, 32829], "second floor": [65535, 0], "floor clods": [65535, 0], "clods were": [65535, 0], "were handy": [65535, 0], "handy and": [65535, 0], "was full": [65535, 0], "them in": [16338, 49197], "a twinkling": [65535, 0], "twinkling they": [65535, 0], "they raged": [65535, 0], "raged around": [65535, 0], "around sid": [65535, 0], "sid like": [65535, 0], "a hail": [65535, 0], "hail storm": [65535, 0], "storm and": [65535, 0], "and before": [65535, 0], "polly could": [65535, 0], "could collect": [65535, 0], "collect her": [65535, 0], "her surprised": [65535, 0], "surprised faculties": [65535, 0], "faculties and": [65535, 0], "and sally": [65535, 0], "sally to": [65535, 0], "the rescue": [65535, 0], "rescue six": [65535, 0], "six or": [65535, 0], "or seven": [65535, 0], "seven clods": [65535, 0], "clods had": [65535, 0], "taken personal": [65535, 0], "personal effect": [65535, 0], "gone there": [65535, 0], "a gate": [65535, 0], "gate but": [65535, 0], "but as": [65535, 0], "a general": [65535, 0], "general thing": [65535, 0], "thing he": [65535, 0], "too crowded": [65535, 0], "crowded for": [65535, 0], "for time": [65535, 0], "make use": [65535, 0], "use of": [65535, 0], "was at": [32706, 32829], "at peace": [65535, 0], "peace now": [65535, 0], "had settled": [65535, 0], "settled with": [65535, 0], "for calling": [65535, 0], "calling attention": [65535, 0], "his black": [65535, 0], "black thread": [65535, 0], "getting him": [65535, 0], "into trouble": [65535, 0], "trouble tom": [65535, 0], "tom skirted": [65535, 0], "skirted the": [65535, 0], "the block": [65535, 0], "block and": [65535, 0], "and came": [65535, 0], "came round": [65535, 0], "round into": [65535, 0], "a muddy": [65535, 0], "muddy alley": [65535, 0], "alley that": [65535, 0], "led by": [65535, 0], "his aunt's": [65535, 0], "aunt's cowstable": [65535, 0], "cowstable he": [65535, 0], "he presently": [65535, 0], "presently got": [65535, 0], "got safely": [65535, 0], "safely beyond": [65535, 0], "the reach": [65535, 0], "reach of": [65535, 0], "of capture": [65535, 0], "capture and": [65535, 0], "and punishment": [65535, 0], "punishment and": [65535, 0], "and hastened": [65535, 0], "hastened toward": [65535, 0], "the public": [65535, 0], "public square": [65535, 0], "square of": [65535, 0], "village where": [65535, 0], "where two": [65535, 0], "two military": [65535, 0], "military companies": [65535, 0], "companies of": [65535, 0], "of boys": [65535, 0], "boys had": [65535, 0], "had met": [65535, 0], "met for": [65535, 0], "for conflict": [65535, 0], "conflict according": [65535, 0], "according to": [32706, 32829], "to previous": [65535, 0], "previous appointment": [65535, 0], "appointment tom": [65535, 0], "was general": [65535, 0], "general of": [65535, 0], "these armies": [65535, 0], "armies joe": [65535, 0], "harper a": [65535, 0], "a bosom": [65535, 0], "bosom friend": [65535, 0], "friend general": [65535, 0], "other these": [65535, 0], "these two": [21790, 43745], "two great": [65535, 0], "great commanders": [65535, 0], "commanders did": [65535, 0], "not condescend": [65535, 0], "condescend to": [65535, 0], "fight in": [65535, 0], "in person": [16338, 49197], "person that": [65535, 0], "that being": [32706, 32829], "being better": [65535, 0], "better suited": [65535, 0], "suited to": [65535, 0], "the still": [65535, 0], "still smaller": [65535, 0], "smaller fry": [65535, 0], "fry but": [65535, 0], "but sat": [65535, 0], "sat together": [65535, 0], "together on": [65535, 0], "on an": [65535, 0], "an eminence": [65535, 0], "eminence and": [65535, 0], "and conducted": [65535, 0], "conducted the": [65535, 0], "field operations": [65535, 0], "operations by": [65535, 0], "by orders": [65535, 0], "orders delivered": [65535, 0], "delivered through": [65535, 0], "through aides": [65535, 0], "aides de": [65535, 0], "de camp": [65535, 0], "camp tom's": [65535, 0], "tom's army": [65535, 0], "army won": [65535, 0], "won a": [65535, 0], "great victory": [65535, 0], "victory after": [65535, 0], "long and": [65535, 0], "and hard": [65535, 0], "hard fought": [65535, 0], "fought battle": [65535, 0], "battle then": [65535, 0], "the dead": [65535, 0], "dead were": [65535, 0], "were counted": [65535, 0], "counted prisoners": [65535, 0], "prisoners exchanged": [65535, 0], "exchanged the": [65535, 0], "the terms": [65535, 0], "terms of": [65535, 0], "next disagreement": [65535, 0], "disagreement agreed": [65535, 0], "agreed upon": [65535, 0], "day for": [65535, 0], "necessary battle": [65535, 0], "battle appointed": [65535, 0], "appointed after": [65535, 0], "after which": [65535, 0], "which the": [32706, 32829], "the armies": [65535, 0], "armies fell": [65535, 0], "fell into": [65535, 0], "into line": [65535, 0], "line and": [65535, 0], "and marched": [65535, 0], "marched away": [65535, 0], "tom turned": [65535, 0], "turned homeward": [65535, 0], "homeward alone": [65535, 0], "alone as": [65535, 0], "was passing": [65535, 0], "passing by": [65535, 0], "house where": [65535, 0], "where jeff": [65535, 0], "thatcher lived": [65535, 0], "saw a": [65535, 0], "girl in": [65535, 0], "garden a": [65535, 0], "a lovely": [65535, 0], "lovely little": [65535, 0], "little blue": [65535, 0], "blue eyed": [65535, 0], "eyed creature": [65535, 0], "creature with": [65535, 0], "with yellow": [65535, 0], "hair plaited": [65535, 0], "plaited into": [65535, 0], "into two": [65535, 0], "tails white": [65535, 0], "white summer": [65535, 0], "summer frock": [65535, 0], "frock and": [65535, 0], "and embroidered": [65535, 0], "embroidered pantalettes": [65535, 0], "pantalettes the": [65535, 0], "the fresh": [65535, 0], "fresh crowned": [65535, 0], "crowned hero": [65535, 0], "hero fell": [65535, 0], "fell without": [65535, 0], "without firing": [65535, 0], "firing a": [65535, 0], "a shot": [65535, 0], "shot a": [65535, 0], "certain amy": [65535, 0], "lawrence vanished": [65535, 0], "and left": [32706, 32829], "left not": [65535, 0], "not even": [65535, 0], "a memory": [65535, 0], "of herself": [65535, 0], "herself behind": [65535, 0], "behind he": [65535, 0], "he loved": [65535, 0], "loved her": [65535, 0], "to distraction": [65535, 0], "distraction he": [65535, 0], "had regarded": [65535, 0], "regarded his": [65535, 0], "his passion": [32706, 32829], "passion as": [65535, 0], "as adoration": [65535, 0], "adoration and": [65535, 0], "and behold": [65535, 0], "behold it": [65535, 0], "little evanescent": [65535, 0], "evanescent partiality": [65535, 0], "partiality he": [65535, 0], "been months": [65535, 0], "months winning": [65535, 0], "winning her": [65535, 0], "had confessed": [65535, 0], "confessed hardly": [65535, 0], "hardly a": [65535, 0], "week ago": [65535, 0], "ago he": [65535, 0], "the happiest": [65535, 0], "happiest and": [65535, 0], "the proudest": [65535, 0], "proudest boy": [65535, 0], "world only": [65535, 0], "only seven": [65535, 0], "seven short": [65535, 0], "short days": [65535, 0], "and here": [21790, 43745], "one instant": [65535, 0], "instant of": [65535, 0], "of time": [65535, 0], "had gone": [65535, 0], "gone out": [65535, 0], "heart like": [65535, 0], "a casual": [65535, 0], "casual stranger": [65535, 0], "stranger whose": [65535, 0], "whose visit": [65535, 0], "visit is": [65535, 0], "is done": [65535, 0], "done he": [65535, 0], "he worshipped": [65535, 0], "worshipped this": [65535, 0], "new angel": [65535, 0], "angel with": [65535, 0], "with furtive": [65535, 0], "furtive eye": [65535, 0], "eye till": [65535, 0], "saw that": [65535, 0], "discovered him": [65535, 0], "him then": [65535, 0], "he pretended": [65535, 0], "pretended he": [65535, 0], "was present": [65535, 0], "to show": [32706, 32829], "show off": [65535, 0], "in all": [26155, 39380], "of absurd": [65535, 0], "absurd boyish": [65535, 0], "boyish ways": [65535, 0], "ways in": [65535, 0], "her admiration": [65535, 0], "admiration he": [65535, 0], "up this": [65535, 0], "this grotesque": [65535, 0], "grotesque foolishness": [65535, 0], "foolishness for": [65535, 0], "but by": [21790, 43745], "by while": [65535, 0], "while he": [65535, 0], "some dangerous": [65535, 0], "dangerous gymnastic": [65535, 0], "gymnastic performances": [65535, 0], "performances he": [65535, 0], "he glanced": [65535, 0], "glanced aside": [65535, 0], "aside and": [65535, 0], "was wending": [65535, 0], "wending her": [65535, 0], "her way": [65535, 0], "way toward": [65535, 0], "house tom": [65535, 0], "came up": [65535, 0], "and leaned": [65535, 0], "leaned on": [65535, 0], "it grieving": [65535, 0], "grieving and": [65535, 0], "and hoping": [65535, 0], "hoping she": [65535, 0], "would tarry": [65535, 0], "tarry yet": [65535, 0], "yet awhile": [65535, 0], "awhile longer": [65535, 0], "longer she": [65535, 0], "she halted": [65535, 0], "halted a": [65535, 0], "moment on": [65535, 0], "the steps": [65535, 0], "steps and": [65535, 0], "then moved": [65535, 0], "moved toward": [65535, 0], "tom heaved": [65535, 0], "heaved a": [65535, 0], "great sigh": [65535, 0], "sigh as": [65535, 0], "as she": [43635, 21900], "her foot": [65535, 0], "foot on": [65535, 0], "the threshold": [65535, 0], "threshold but": [65535, 0], "lit up": [65535, 0], "up right": [65535, 0], "right away": [65535, 0], "away for": [65535, 0], "she tossed": [65535, 0], "tossed a": [65535, 0], "a pansy": [65535, 0], "pansy over": [65535, 0], "fence a": [65535, 0], "moment before": [65535, 0], "before she": [65535, 0], "she disappeared": [65535, 0], "disappeared the": [65535, 0], "boy ran": [65535, 0], "ran around": [65535, 0], "around and": [65535, 0], "and stopped": [65535, 0], "stopped within": [65535, 0], "within a": [65535, 0], "foot or": [65535, 0], "the flower": [65535, 0], "flower and": [65535, 0], "then shaded": [65535, 0], "shaded his": [65535, 0], "eyes with": [65535, 0], "look down": [65535, 0], "down street": [65535, 0], "street as": [65535, 0], "something of": [65535, 0], "of interest": [65535, 0], "interest going": [65535, 0], "on in": [65535, 0], "that direction": [65535, 0], "direction presently": [65535, 0], "he picked": [65535, 0], "picked up": [65535, 0], "a straw": [65535, 0], "straw and": [65535, 0], "began trying": [65535, 0], "to balance": [65535, 0], "balance it": [65535, 0], "it on": [21790, 43745], "nose with": [65535, 0], "head tilted": [65535, 0], "tilted far": [65535, 0], "far back": [65535, 0], "he moved": [65535, 0], "moved from": [65535, 0], "from side": [65535, 0], "side to": [65535, 0], "to side": [65535, 0], "side in": [65535, 0], "his efforts": [65535, 0], "efforts he": [65535, 0], "he edged": [65535, 0], "edged nearer": [65535, 0], "nearer and": [65535, 0], "and nearer": [65535, 0], "nearer toward": [65535, 0], "the pansy": [65535, 0], "pansy finally": [65535, 0], "finally his": [65535, 0], "his bare": [65535, 0], "bare foot": [65535, 0], "foot rested": [65535, 0], "rested upon": [65535, 0], "upon it": [65535, 0], "his pliant": [65535, 0], "pliant toes": [65535, 0], "toes closed": [65535, 0], "closed upon": [65535, 0], "he hopped": [65535, 0], "hopped away": [65535, 0], "away with": [65535, 0], "the treasure": [65535, 0], "treasure and": [65535, 0], "disappeared round": [65535, 0], "round the": [65535, 0], "the corner": [65535, 0], "corner but": [65535, 0], "only for": [65535, 0], "minute only": [65535, 0], "only while": [65535, 0], "could button": [65535, 0], "button the": [65535, 0], "flower inside": [65535, 0], "inside his": [65535, 0], "jacket next": [65535, 0], "next his": [65535, 0], "heart or": [65535, 0], "or next": [65535, 0], "stomach possibly": [65535, 0], "possibly for": [65535, 0], "not much": [32706, 32829], "much posted": [65535, 0], "posted in": [65535, 0], "in anatomy": [65535, 0], "anatomy and": [65535, 0], "hypercritical anyway": [65535, 0], "anyway he": [65535, 0], "returned now": [65535, 0], "and hung": [65535, 0], "hung about": [65535, 0], "fence till": [65535, 0], "till nightfall": [65535, 0], "nightfall showing": [65535, 0], "off as": [65535, 0], "girl never": [65535, 0], "never exhibited": [65535, 0], "exhibited herself": [65535, 0], "herself again": [65535, 0], "again though": [65535, 0], "though tom": [65535, 0], "tom comforted": [65535, 0], "comforted himself": [65535, 0], "little with": [65535, 0], "hope that": [65535, 0], "been near": [65535, 0], "near some": [65535, 0], "some window": [65535, 0], "window meantime": [65535, 0], "meantime and": [65535, 0], "been aware": [65535, 0], "his attentions": [65535, 0], "attentions finally": [65535, 0], "finally he": [65535, 0], "strode home": [65535, 0], "home reluctantly": [65535, 0], "reluctantly with": [65535, 0], "his poor": [65535, 0], "poor head": [65535, 0], "head full": [65535, 0], "of visions": [65535, 0], "visions all": [65535, 0], "through supper": [65535, 0], "supper his": [65535, 0], "his spirits": [65535, 0], "spirits were": [65535, 0], "were so": [32706, 32829], "so high": [65535, 0], "high that": [65535, 0], "aunt wondered": [65535, 0], "what had": [65535, 0], "had got": [65535, 0], "child he": [65535, 0], "good scolding": [65535, 0], "scolding about": [65535, 0], "about clodding": [65535, 0], "clodding sid": [65535, 0], "and did": [16338, 49197], "not seem": [65535, 0], "to mind": [65535, 0], "mind it": [65535, 0], "the least": [65535, 0], "steal sugar": [65535, 0], "sugar under": [65535, 0], "under his": [65535, 0], "aunt's very": [65535, 0], "very nose": [65535, 0], "his knuckles": [65535, 0], "knuckles rapped": [65535, 0], "rapped for": [65535, 0], "aunt you": [65535, 0], "don't whack": [65535, 0], "whack sid": [65535, 0], "sid when": [65535, 0], "he takes": [32706, 32829], "takes it": [32706, 32829], "well sid": [65535, 0], "don't torment": [65535, 0], "torment a": [65535, 0], "body the": [65535, 0], "do you'd": [65535, 0], "you'd be": [65535, 0], "be always": [65535, 0], "always into": [65535, 0], "into that": [65535, 0], "that sugar": [65535, 0], "sugar if": [65535, 0], "warn't watching": [65535, 0], "watching you": [65535, 0], "you presently": [65535, 0], "presently she": [65535, 0], "she stepped": [65535, 0], "stepped into": [65535, 0], "sid happy": [65535, 0], "happy in": [65535, 0], "his immunity": [65535, 0], "immunity reached": [65535, 0], "reached for": [65535, 0], "the sugar": [65535, 0], "sugar bowl": [65535, 0], "bowl a": [65535, 0], "of glorying": [65535, 0], "glorying over": [65535, 0], "tom which": [65535, 0], "well nigh": [65535, 0], "nigh unbearable": [65535, 0], "unbearable but": [65535, 0], "but sid's": [65535, 0], "sid's fingers": [65535, 0], "fingers slipped": [65535, 0], "slipped and": [65535, 0], "the bowl": [65535, 0], "bowl dropped": [65535, 0], "dropped and": [65535, 0], "broke tom": [65535, 0], "in ecstasies": [65535, 0], "ecstasies in": [65535, 0], "such ecstasies": [65535, 0], "ecstasies that": [65535, 0], "even controlled": [65535, 0], "controlled his": [65535, 0], "tongue and": [65535, 0], "was silent": [65535, 0], "silent he": [65535, 0], "not speak": [65535, 0], "speak a": [32706, 32829], "word even": [65535, 0], "even when": [65535, 0], "aunt came": [65535, 0], "came in": [32706, 32829], "in but": [65535, 0], "but would": [65535, 0], "would sit": [65535, 0], "sit perfectly": [65535, 0], "perfectly still": [65535, 0], "still till": [65535, 0], "till she": [65535, 0], "she asked": [65535, 0], "asked who": [65535, 0], "who did": [65535, 0], "the mischief": [65535, 0], "mischief and": [65535, 0], "would tell": [32706, 32829], "tell and": [65535, 0], "there would": [65535, 0], "be nothing": [65535, 0], "good in": [65535, 0], "world as": [65535, 0], "that pet": [65535, 0], "pet model": [65535, 0], "model catch": [65535, 0], "catch it": [65535, 0], "so brimful": [65535, 0], "brimful of": [65535, 0], "of exultation": [65535, 0], "exultation that": [65535, 0], "could hardly": [65535, 0], "hardly hold": [65535, 0], "hold himself": [65535, 0], "himself when": [65535, 0], "lady came": [65535, 0], "came back": [65535, 0], "stood above": [65535, 0], "above the": [65535, 0], "the wreck": [65535, 0], "wreck discharging": [65535, 0], "discharging lightnings": [65535, 0], "lightnings of": [65535, 0], "of wrath": [65535, 0], "wrath from": [65535, 0], "from over": [65535, 0], "spectacles he": [65535, 0], "himself now": [65535, 0], "now it's": [65535, 0], "it's coming": [65535, 0], "coming and": [65535, 0], "next instant": [65535, 0], "instant he": [65535, 0], "was sprawling": [65535, 0], "sprawling on": [65535, 0], "floor the": [65535, 0], "the potent": [65535, 0], "potent palm": [65535, 0], "palm was": [65535, 0], "was uplifted": [65535, 0], "uplifted to": [65535, 0], "to strike": [65535, 0], "strike again": [65535, 0], "again when": [65535, 0], "tom cried": [65535, 0], "cried out": [65535, 0], "out hold": [65535, 0], "hold on": [32706, 32829], "on now": [65535, 0], "now what": [65535, 0], "what 'er": [65535, 0], "'er you": [65535, 0], "you belting": [65535, 0], "belting me": [65535, 0], "me for": [5937, 59598], "sid broke": [65535, 0], "broke it": [65535, 0], "it aunt": [65535, 0], "polly paused": [65535, 0], "paused perplexed": [65535, 0], "perplexed and": [65535, 0], "tom looked": [65535, 0], "for healing": [65535, 0], "healing pity": [65535, 0], "pity but": [65535, 0], "she got": [65535, 0], "her tongue": [65535, 0], "tongue again": [65535, 0], "she only": [65535, 0], "only said": [65535, 0], "said umf": [65535, 0], "umf well": [65535, 0], "didn't get": [65535, 0], "lick amiss": [65535, 0], "amiss i": [65535, 0], "reckon you": [65535, 0], "been into": [65535, 0], "into some": [65535, 0], "some other": [13068, 52467], "other audacious": [65535, 0], "audacious mischief": [65535, 0], "mischief when": [65535, 0], "when i": [5024, 60511], "i wasn't": [65535, 0], "wasn't around": [65535, 0], "around like": [65535, 0], "like enough": [65535, 0], "enough then": [65535, 0], "her conscience": [65535, 0], "conscience reproached": [65535, 0], "reproached her": [65535, 0], "she yearned": [65535, 0], "yearned to": [65535, 0], "say something": [65535, 0], "something kind": [65535, 0], "kind and": [65535, 0], "and loving": [65535, 0], "loving but": [65535, 0], "she judged": [65535, 0], "judged that": [65535, 0], "be construed": [65535, 0], "construed into": [65535, 0], "a confession": [65535, 0], "confession that": [65535, 0], "been in": [65535, 0], "the wrong": [32706, 32829], "wrong and": [65535, 0], "and discipline": [65535, 0], "discipline forbade": [65535, 0], "forbade that": [65535, 0], "she kept": [65535, 0], "kept silence": [65535, 0], "went about": [65535, 0], "about her": [65535, 0], "her affairs": [65535, 0], "affairs with": [65535, 0], "a troubled": [65535, 0], "troubled heart": [65535, 0], "heart tom": [65535, 0], "tom sulked": [65535, 0], "sulked in": [65535, 0], "a corner": [65535, 0], "corner and": [65535, 0], "and exalted": [65535, 0], "exalted his": [65535, 0], "his woes": [65535, 0], "woes he": [65535, 0], "heart his": [65535, 0], "aunt was": [65535, 0], "was on": [65535, 0], "her knees": [65535, 0], "knees to": [65535, 0], "was morosely": [65535, 0], "morosely gratified": [65535, 0], "gratified by": [65535, 0], "the consciousness": [65535, 0], "consciousness of": [65535, 0], "would hang": [65535, 0], "hang out": [65535, 0], "out no": [65535, 0], "no signals": [65535, 0], "signals he": [65535, 0], "would take": [32706, 32829], "take notice": [65535, 0], "notice of": [65535, 0], "of none": [65535, 0], "none he": [65535, 0], "a yearning": [65535, 0], "yearning glance": [65535, 0], "glance fell": [65535, 0], "him now": [65535, 0], "then through": [65535, 0], "a film": [65535, 0], "film of": [65535, 0], "of tears": [65535, 0], "tears but": [65535, 0], "he refused": [65535, 0], "refused recognition": [65535, 0], "recognition of": [65535, 0], "he pictured": [65535, 0], "pictured himself": [65535, 0], "himself lying": [65535, 0], "lying sick": [65535, 0], "sick unto": [65535, 0], "unto death": [65535, 0], "death and": [21790, 43745], "aunt bending": [65535, 0], "bending over": [65535, 0], "him beseeching": [65535, 0], "beseeching one": [65535, 0], "little forgiving": [65535, 0], "forgiving word": [65535, 0], "the wall": [65535, 0], "wall and": [65535, 0], "and die": [65535, 0], "die with": [65535, 0], "that word": [65535, 0], "word unsaid": [65535, 0], "unsaid ah": [65535, 0], "ah how": [65535, 0], "how would": [65535, 0], "she feel": [65535, 0], "feel then": [65535, 0], "then and": [32706, 32829], "himself brought": [65535, 0], "brought home": [65535, 0], "the river": [65535, 0], "river dead": [65535, 0], "dead with": [65535, 0], "his curls": [65535, 0], "curls all": [65535, 0], "all wet": [65535, 0], "wet and": [65535, 0], "sore heart": [65535, 0], "heart at": [65535, 0], "at rest": [65535, 0], "rest how": [65535, 0], "how she": [65535, 0], "would throw": [65535, 0], "throw herself": [65535, 0], "herself upon": [65535, 0], "how her": [65535, 0], "her tears": [65535, 0], "tears would": [65535, 0], "would fall": [65535, 0], "fall like": [65535, 0], "like rain": [65535, 0], "rain and": [65535, 0], "her lips": [65535, 0], "lips pray": [65535, 0], "pray god": [32706, 32829], "god to": [65535, 0], "to give": [65535, 0], "give her": [65535, 0], "back her": [65535, 0], "her boy": [65535, 0], "would never": [65535, 0], "never never": [65535, 0], "never abuse": [65535, 0], "abuse him": [65535, 0], "him any": [65535, 0], "more but": [65535, 0], "would lie": [65535, 0], "lie there": [65535, 0], "there cold": [65535, 0], "cold and": [65535, 0], "and white": [65535, 0], "and make": [32706, 32829], "make no": [65535, 0], "sign a": [65535, 0], "little sufferer": [65535, 0], "sufferer whose": [65535, 0], "whose griefs": [65535, 0], "griefs were": [65535, 0], "were at": [65535, 0], "end he": [65535, 0], "he so": [65535, 0], "so worked": [65535, 0], "worked upon": [65535, 0], "his feelings": [65535, 0], "feelings with": [65535, 0], "pathos of": [65535, 0], "these dreams": [65535, 0], "dreams that": [65535, 0], "keep swallowing": [65535, 0], "swallowing he": [65535, 0], "so like": [21790, 43745], "to choke": [65535, 0], "choke and": [65535, 0], "eyes swam": [65535, 0], "swam in": [65535, 0], "a blur": [65535, 0], "blur of": [65535, 0], "water which": [65535, 0], "which overflowed": [65535, 0], "overflowed when": [65535, 0], "he winked": [65535, 0], "winked and": [65535, 0], "ran down": [65535, 0], "and trickled": [65535, 0], "trickled from": [65535, 0], "and such": [65535, 0], "a luxury": [65535, 0], "luxury to": [65535, 0], "was this": [65535, 0], "this petting": [65535, 0], "petting of": [65535, 0], "sorrows that": [65535, 0], "not bear": [65535, 0], "bear to": [65535, 0], "have any": [65535, 0], "any worldly": [65535, 0], "worldly cheeriness": [65535, 0], "cheeriness or": [65535, 0], "or any": [32706, 32829], "any grating": [65535, 0], "grating delight": [65535, 0], "delight intrude": [65535, 0], "intrude upon": [65535, 0], "too sacred": [65535, 0], "sacred for": [65535, 0], "such contact": [65535, 0], "contact and": [65535, 0], "so presently": [65535, 0], "presently when": [65535, 0], "his cousin": [65535, 0], "cousin mary": [65535, 0], "mary danced": [65535, 0], "danced in": [65535, 0], "all alive": [65535, 0], "alive with": [65535, 0], "the joy": [65535, 0], "joy of": [65535, 0], "of seeing": [65535, 0], "seeing home": [65535, 0], "home again": [65535, 0], "again after": [65535, 0], "after an": [65535, 0], "an age": [65535, 0], "age long": [65535, 0], "long visit": [65535, 0], "visit of": [65535, 0], "one week": [65535, 0], "week to": [65535, 0], "country he": [65535, 0], "got up": [65535, 0], "and moved": [65535, 0], "moved in": [65535, 0], "in clouds": [65535, 0], "clouds and": [65535, 0], "and darkness": [65535, 0], "darkness out": [65535, 0], "at one": [65535, 0], "one door": [65535, 0], "door as": [65535, 0], "she brought": [65535, 0], "brought song": [65535, 0], "song and": [65535, 0], "and sunshine": [65535, 0], "sunshine in": [65535, 0], "other he": [32706, 32829], "wandered far": [65535, 0], "far from": [65535, 0], "accustomed haunts": [65535, 0], "haunts of": [65535, 0], "and sought": [65535, 0], "sought desolate": [65535, 0], "desolate places": [65535, 0], "places that": [65535, 0], "in harmony": [65535, 0], "harmony with": [65535, 0], "spirit a": [65535, 0], "a log": [65535, 0], "log raft": [65535, 0], "raft in": [65535, 0], "river invited": [65535, 0], "invited him": [65535, 0], "he seated": [65535, 0], "seated himself": [65535, 0], "himself on": [65535, 0], "its outer": [65535, 0], "outer edge": [65535, 0], "edge and": [65535, 0], "and contemplated": [65535, 0], "the dreary": [65535, 0], "dreary vastness": [65535, 0], "vastness of": [65535, 0], "the stream": [65535, 0], "stream wishing": [65535, 0], "wishing the": [65535, 0], "while that": [65535, 0], "could only": [65535, 0], "only be": [65535, 0], "be drowned": [32706, 32829], "drowned all": [65535, 0], "all at": [65535, 0], "at once": [65535, 0], "once and": [65535, 0], "and unconsciously": [65535, 0], "unconsciously without": [65535, 0], "without undergoing": [65535, 0], "undergoing the": [65535, 0], "the uncomfortable": [65535, 0], "uncomfortable routine": [65535, 0], "routine devised": [65535, 0], "devised by": [65535, 0], "by nature": [16338, 49197], "nature then": [65535, 0], "his flower": [65535, 0], "flower he": [65535, 0], "out rumpled": [65535, 0], "rumpled and": [65535, 0], "and wilted": [65535, 0], "wilted and": [65535, 0], "it mightily": [65535, 0], "mightily increased": [65535, 0], "increased his": [65535, 0], "his dismal": [65535, 0], "dismal felicity": [65535, 0], "felicity he": [65535, 0], "he wondered": [65535, 0], "would pity": [65535, 0], "pity him": [65535, 0], "she knew": [65535, 0], "knew would": [65535, 0], "she cry": [65535, 0], "cry and": [65535, 0], "and wish": [65535, 0], "wish that": [65535, 0], "a right": [65535, 0], "right to": [65535, 0], "her arms": [65535, 0], "arms around": [65535, 0], "neck and": [65535, 0], "and comfort": [65535, 0], "comfort him": [65535, 0], "or would": [65535, 0], "she turn": [65535, 0], "turn coldly": [65535, 0], "coldly away": [65535, 0], "away like": [65535, 0], "like all": [65535, 0], "the hollow": [65535, 0], "world this": [65535, 0], "this picture": [65535, 0], "picture brought": [65535, 0], "brought such": [65535, 0], "such an": [65535, 0], "an agony": [65535, 0], "agony of": [65535, 0], "of pleasurable": [65535, 0], "pleasurable suffering": [65535, 0], "suffering that": [65535, 0], "he worked": [65535, 0], "worked it": [65535, 0], "it over": [65535, 0], "and over": [65535, 0], "set it": [65535, 0], "in new": [65535, 0], "and varied": [65535, 0], "varied lights": [65535, 0], "lights till": [65535, 0], "wore it": [65535, 0], "it threadbare": [65535, 0], "threadbare at": [65535, 0], "he rose": [65535, 0], "rose up": [65535, 0], "up sighing": [65535, 0], "sighing and": [65535, 0], "and departed": [65535, 0], "departed in": [65535, 0], "the darkness": [65535, 0], "darkness about": [65535, 0], "past nine": [65535, 0], "nine or": [65535, 0], "or ten": [65535, 0], "ten o'clock": [65535, 0], "o'clock he": [65535, 0], "came along": [65535, 0], "the deserted": [65535, 0], "deserted street": [65535, 0], "street to": [65535, 0], "to where": [65535, 0], "the adored": [65535, 0], "adored unknown": [65535, 0], "unknown lived": [65535, 0], "he paused": [65535, 0], "paused a": [65535, 0], "moment no": [65535, 0], "no sound": [65535, 0], "sound fell": [65535, 0], "his listening": [65535, 0], "listening ear": [65535, 0], "ear a": [65535, 0], "a candle": [65535, 0], "candle was": [65535, 0], "was casting": [65535, 0], "casting a": [65535, 0], "a dull": [65535, 0], "dull glow": [65535, 0], "glow upon": [65535, 0], "a second": [65535, 0], "second story": [65535, 0], "story window": [65535, 0], "window was": [65535, 0], "the sacred": [65535, 0], "sacred presence": [65535, 0], "presence there": [65535, 0], "there he": [65535, 0], "climbed the": [65535, 0], "fence threaded": [65535, 0], "threaded his": [65535, 0], "his stealthy": [65535, 0], "stealthy way": [65535, 0], "the plants": [65535, 0], "plants till": [65535, 0], "stood under": [65535, 0], "under that": [65535, 0], "that window": [65535, 0], "looked up": [65535, 0], "it long": [65535, 0], "with emotion": [65535, 0], "emotion then": [65535, 0], "he laid": [65535, 0], "laid him": [65535, 0], "him down": [65535, 0], "ground under": [65535, 0], "under it": [65535, 0], "it disposing": [65535, 0], "disposing himself": [65535, 0], "himself upon": [65535, 0], "hands clasped": [65535, 0], "clasped upon": [65535, 0], "his breast": [65535, 0], "breast and": [65535, 0], "and holding": [65535, 0], "holding his": [65535, 0], "poor wilted": [65535, 0], "wilted flower": [65535, 0], "thus he": [32706, 32829], "would die": [65535, 0], "die out": [65535, 0], "the cold": [32706, 32829], "cold world": [65535, 0], "world with": [65535, 0], "no shelter": [65535, 0], "shelter over": [65535, 0], "his homeless": [65535, 0], "homeless head": [65535, 0], "head no": [65535, 0], "no friendly": [65535, 0], "friendly hand": [65535, 0], "hand to": [32706, 32829], "wipe the": [65535, 0], "the death": [32706, 32829], "death damps": [65535, 0], "damps from": [65535, 0], "his brow": [65535, 0], "brow no": [65535, 0], "no loving": [65535, 0], "loving face": [65535, 0], "to bend": [65535, 0], "bend pityingly": [65535, 0], "pityingly over": [65535, 0], "him when": [65535, 0], "great agony": [65535, 0], "agony came": [65535, 0], "thus she": [32706, 32829], "would see": [65535, 0], "out upon": [65535, 0], "the glad": [65535, 0], "glad morning": [65535, 0], "morning and": [65535, 0], "and oh": [65535, 0], "oh would": [65535, 0], "she drop": [65535, 0], "drop one": [65535, 0], "little tear": [65535, 0], "tear upon": [65535, 0], "poor lifeless": [65535, 0], "lifeless form": [65535, 0], "form would": [65535, 0], "she heave": [65535, 0], "heave one": [65535, 0], "little sigh": [65535, 0], "sigh to": [65535, 0], "bright young": [65535, 0], "young life": [65535, 0], "life so": [32706, 32829], "so rudely": [65535, 0], "rudely blighted": [65535, 0], "blighted so": [65535, 0], "so untimely": [65535, 0], "untimely cut": [65535, 0], "cut down": [65535, 0], "window went": [65535, 0], "went up": [65535, 0], "a maid": [65535, 0], "maid servant's": [65535, 0], "servant's discordant": [65535, 0], "discordant voice": [65535, 0], "voice profaned": [65535, 0], "profaned the": [65535, 0], "the holy": [65535, 0], "holy calm": [65535, 0], "calm and": [65535, 0], "a deluge": [65535, 0], "deluge of": [65535, 0], "water drenched": [65535, 0], "drenched the": [65535, 0], "the prone": [65535, 0], "prone martyr's": [65535, 0], "martyr's remains": [65535, 0], "remains the": [65535, 0], "the strangling": [65535, 0], "strangling hero": [65535, 0], "hero sprang": [65535, 0], "sprang up": [65535, 0], "a relieving": [65535, 0], "relieving snort": [65535, 0], "snort there": [65535, 0], "a whiz": [65535, 0], "whiz as": [65535, 0], "as of": [65535, 0], "a missile": [65535, 0], "missile in": [65535, 0], "air mingled": [65535, 0], "mingled with": [32706, 32829], "a curse": [65535, 0], "curse a": [65535, 0], "sound as": [65535, 0], "of shivering": [65535, 0], "shivering glass": [65535, 0], "glass followed": [65535, 0], "followed and": [65535, 0], "small vague": [65535, 0], "vague form": [65535, 0], "form went": [65535, 0], "went over": [65535, 0], "and shot": [65535, 0], "shot away": [65535, 0], "away in": [65535, 0], "the gloom": [65535, 0], "gloom not": [65535, 0], "not long": [65535, 0], "long after": [65535, 0], "after as": [65535, 0], "tom all": [65535, 0], "all undressed": [65535, 0], "undressed for": [65535, 0], "for bed": [65535, 0], "bed was": [65535, 0], "was surveying": [65535, 0], "surveying his": [65535, 0], "his drenched": [65535, 0], "drenched garments": [65535, 0], "garments by": [65535, 0], "light of": [65535, 0], "a tallow": [65535, 0], "tallow dip": [65535, 0], "dip sid": [65535, 0], "sid woke": [65535, 0], "woke up": [65535, 0], "up but": [65535, 0], "had any": [65535, 0], "any dim": [65535, 0], "dim idea": [65535, 0], "of making": [65535, 0], "making any": [65535, 0], "any references": [65535, 0], "references to": [65535, 0], "to allusions": [65535, 0], "allusions he": [65535, 0], "thought better": [65535, 0], "better of": [65535, 0], "held his": [65535, 0], "his peace": [65535, 0], "peace for": [65535, 0], "was danger": [65535, 0], "danger in": [65535, 0], "tom's eye": [65535, 0], "eye tom": [65535, 0], "turned in": [65535, 0], "in without": [65535, 0], "without the": [65535, 0], "added vexation": [65535, 0], "vexation of": [65535, 0], "of prayers": [65535, 0], "prayers and": [65535, 0], "sid made": [65535, 0], "made mental": [65535, 0], "mental note": [65535, 0], "note of": [65535, 0], "the omission": [65535, 0], "tom presented himself": [65535, 0], "presented himself before": [65535, 0], "himself before aunt": [65535, 0], "before aunt polly": [65535, 0], "aunt polly who": [65535, 0], "polly who was": [65535, 0], "who was sitting": [65535, 0], "was sitting by": [65535, 0], "sitting by an": [65535, 0], "by an open": [65535, 0], "an open window": [65535, 0], "open window in": [65535, 0], "window in a": [65535, 0], "in a pleasant": [65535, 0], "a pleasant rearward": [65535, 0], "pleasant rearward apartment": [65535, 0], "rearward apartment which": [65535, 0], "apartment which was": [65535, 0], "which was bedroom": [65535, 0], "was bedroom breakfast": [65535, 0], "bedroom breakfast room": [65535, 0], "breakfast room dining": [65535, 0], "room dining room": [65535, 0], "dining room and": [65535, 0], "room and library": [65535, 0], "and library combined": [65535, 0], "library combined the": [65535, 0], "combined the balmy": [65535, 0], "the balmy summer": [65535, 0], "balmy summer air": [65535, 0], "summer air the": [65535, 0], "air the restful": [65535, 0], "the restful quiet": [65535, 0], "restful quiet the": [65535, 0], "quiet the odor": [65535, 0], "the odor of": [65535, 0], "odor of the": [65535, 0], "of the flowers": [65535, 0], "the flowers and": [65535, 0], "flowers and the": [65535, 0], "and the drowsing": [65535, 0], "the drowsing murmur": [65535, 0], "drowsing murmur of": [65535, 0], "murmur of the": [65535, 0], "of the bees": [65535, 0], "the bees had": [65535, 0], "bees had had": [65535, 0], "had had their": [65535, 0], "had their effect": [65535, 0], "their effect and": [65535, 0], "effect and she": [65535, 0], "she was nodding": [65535, 0], "was nodding over": [65535, 0], "nodding over her": [65535, 0], "over her knitting": [65535, 0], "her knitting for": [65535, 0], "knitting for she": [65535, 0], "for she had": [65535, 0], "she had no": [65535, 0], "had no company": [65535, 0], "no company but": [65535, 0], "company but the": [65535, 0], "the cat and": [65535, 0], "cat and it": [65535, 0], "it was asleep": [65535, 0], "was asleep in": [65535, 0], "asleep in her": [65535, 0], "in her lap": [65535, 0], "her lap her": [65535, 0], "lap her spectacles": [65535, 0], "her spectacles were": [65535, 0], "spectacles were propped": [65535, 0], "were propped up": [65535, 0], "propped up on": [65535, 0], "up on her": [65535, 0], "on her gray": [65535, 0], "her gray head": [65535, 0], "gray head for": [65535, 0], "head for safety": [65535, 0], "for safety she": [65535, 0], "safety she had": [65535, 0], "she had thought": [65535, 0], "had thought that": [65535, 0], "thought that of": [65535, 0], "that of course": [65535, 0], "of course tom": [65535, 0], "course tom had": [65535, 0], "tom had deserted": [65535, 0], "had deserted long": [65535, 0], "deserted long ago": [65535, 0], "long ago and": [65535, 0], "ago and she": [65535, 0], "and she wondered": [65535, 0], "she wondered at": [65535, 0], "wondered at seeing": [65535, 0], "at seeing him": [65535, 0], "seeing him place": [65535, 0], "him place himself": [65535, 0], "place himself in": [65535, 0], "himself in her": [65535, 0], "in her power": [65535, 0], "her power again": [65535, 0], "power again in": [65535, 0], "again in this": [65535, 0], "in this intrepid": [65535, 0], "this intrepid way": [65535, 0], "intrepid way he": [65535, 0], "way he said": [65535, 0], "he said mayn't": [65535, 0], "said mayn't i": [65535, 0], "mayn't i go": [65535, 0], "i go and": [65535, 0], "go and play": [65535, 0], "and play now": [65535, 0], "play now aunt": [65535, 0], "now aunt what": [65535, 0], "aunt what a'ready": [65535, 0], "what a'ready how": [65535, 0], "a'ready how much": [65535, 0], "how much have": [65535, 0], "much have you": [65535, 0], "have you done": [65535, 0], "you done it's": [65535, 0], "done it's all": [65535, 0], "it's all done": [65535, 0], "all done aunt": [65535, 0], "done aunt tom": [65535, 0], "aunt tom don't": [65535, 0], "tom don't lie": [65535, 0], "don't lie to": [65535, 0], "lie to me": [65535, 0], "to me i": [21790, 43745], "me i can't": [65535, 0], "i can't bear": [65535, 0], "can't bear it": [65535, 0], "bear it i": [65535, 0], "it i ain't": [65535, 0], "i ain't aunt": [65535, 0], "ain't aunt it": [65535, 0], "aunt it is": [65535, 0], "it is all": [65535, 0], "is all done": [65535, 0], "done aunt polly": [65535, 0], "aunt polly placed": [65535, 0], "polly placed small": [65535, 0], "placed small trust": [65535, 0], "small trust in": [65535, 0], "trust in such": [65535, 0], "in such evidence": [65535, 0], "such evidence she": [65535, 0], "evidence she went": [65535, 0], "she went out": [65535, 0], "went out to": [65535, 0], "out to see": [65535, 0], "to see for": [65535, 0], "see for herself": [65535, 0], "for herself and": [65535, 0], "herself and she": [65535, 0], "and she would": [43635, 21900], "she would have": [65535, 0], "have been content": [65535, 0], "been content to": [65535, 0], "content to find": [65535, 0], "to find twenty": [65535, 0], "find twenty per": [65535, 0], "twenty per cent": [65535, 0], "per cent of": [65535, 0], "cent of tom's": [65535, 0], "of tom's statement": [65535, 0], "tom's statement true": [65535, 0], "statement true when": [65535, 0], "true when she": [65535, 0], "when she found": [65535, 0], "she found the": [65535, 0], "found the entire": [65535, 0], "the entire fence": [65535, 0], "entire fence whitewashed": [65535, 0], "fence whitewashed and": [65535, 0], "whitewashed and not": [65535, 0], "and not only": [65535, 0], "not only whitewashed": [65535, 0], "only whitewashed but": [65535, 0], "whitewashed but elaborately": [65535, 0], "but elaborately coated": [65535, 0], "elaborately coated and": [65535, 0], "coated and recoated": [65535, 0], "and recoated and": [65535, 0], "recoated and even": [65535, 0], "and even a": [65535, 0], "even a streak": [65535, 0], "a streak added": [65535, 0], "streak added to": [65535, 0], "added to the": [65535, 0], "the ground her": [65535, 0], "ground her astonishment": [65535, 0], "her astonishment was": [65535, 0], "astonishment was almost": [65535, 0], "was almost unspeakable": [65535, 0], "almost unspeakable she": [65535, 0], "unspeakable she said": [65535, 0], "she said well": [65535, 0], "said well i": [65535, 0], "well i never": [65535, 0], "i never there's": [65535, 0], "never there's no": [65535, 0], "there's no getting": [65535, 0], "no getting round": [65535, 0], "getting round it": [65535, 0], "round it you": [65535, 0], "it you can": [65535, 0], "you can work": [65535, 0], "can work when": [65535, 0], "work when you're": [65535, 0], "when you're a": [65535, 0], "you're a mind": [65535, 0], "a mind to": [65535, 0], "mind to tom": [65535, 0], "to tom and": [65535, 0], "tom and then": [65535, 0], "and then she": [65535, 0], "then she diluted": [65535, 0], "she diluted the": [65535, 0], "diluted the compliment": [65535, 0], "the compliment by": [65535, 0], "compliment by adding": [65535, 0], "by adding but": [65535, 0], "adding but it's": [65535, 0], "but it's powerful": [65535, 0], "it's powerful seldom": [65535, 0], "powerful seldom you're": [65535, 0], "seldom you're a": [65535, 0], "mind to i'm": [65535, 0], "to i'm bound": [65535, 0], "i'm bound to": [65535, 0], "bound to say": [65535, 0], "to say well": [65535, 0], "say well go": [65535, 0], "go 'long and": [65535, 0], "'long and play": [65535, 0], "and play but": [65535, 0], "play but mind": [65535, 0], "but mind you": [65535, 0], "mind you get": [65535, 0], "you get back": [65535, 0], "get back some": [65535, 0], "back some time": [65535, 0], "some time in": [65535, 0], "time in a": [65535, 0], "in a week": [65535, 0], "a week or": [65535, 0], "week or i'll": [65535, 0], "or i'll tan": [65535, 0], "i'll tan you": [65535, 0], "tan you she": [65535, 0], "you she was": [65535, 0], "she was so": [65535, 0], "was so overcome": [65535, 0], "so overcome by": [65535, 0], "overcome by the": [65535, 0], "by the splendor": [65535, 0], "the splendor of": [65535, 0], "splendor of his": [65535, 0], "of his achievement": [65535, 0], "his achievement that": [65535, 0], "achievement that she": [65535, 0], "that she took": [65535, 0], "she took him": [65535, 0], "took him into": [65535, 0], "him into the": [65535, 0], "into the closet": [65535, 0], "the closet and": [65535, 0], "closet and selected": [65535, 0], "and selected a": [65535, 0], "selected a choice": [65535, 0], "a choice apple": [65535, 0], "choice apple and": [65535, 0], "apple and delivered": [65535, 0], "and delivered it": [65535, 0], "delivered it to": [65535, 0], "it to him": [65535, 0], "to him along": [65535, 0], "him along with": [65535, 0], "along with an": [65535, 0], "with an improving": [65535, 0], "an improving lecture": [65535, 0], "improving lecture upon": [65535, 0], "lecture upon the": [65535, 0], "upon the added": [65535, 0], "the added value": [65535, 0], "added value and": [65535, 0], "value and flavor": [65535, 0], "and flavor a": [65535, 0], "flavor a treat": [65535, 0], "a treat took": [65535, 0], "treat took to": [65535, 0], "took to itself": [65535, 0], "to itself when": [65535, 0], "itself when it": [65535, 0], "when it came": [65535, 0], "it came without": [65535, 0], "came without sin": [65535, 0], "without sin through": [65535, 0], "sin through virtuous": [65535, 0], "through virtuous effort": [65535, 0], "virtuous effort and": [65535, 0], "effort and while": [65535, 0], "and while she": [65535, 0], "while she closed": [65535, 0], "she closed with": [65535, 0], "with a happy": [65535, 0], "a happy scriptural": [65535, 0], "happy scriptural flourish": [65535, 0], "scriptural flourish he": [65535, 0], "flourish he hooked": [65535, 0], "he hooked a": [65535, 0], "hooked a doughnut": [65535, 0], "a doughnut then": [65535, 0], "doughnut then he": [65535, 0], "then he skipped": [65535, 0], "he skipped out": [65535, 0], "skipped out and": [65535, 0], "out and saw": [65535, 0], "and saw sid": [65535, 0], "saw sid just": [65535, 0], "sid just starting": [65535, 0], "just starting up": [65535, 0], "starting up the": [65535, 0], "up the outside": [65535, 0], "the outside stairway": [65535, 0], "outside stairway that": [65535, 0], "stairway that led": [65535, 0], "that led to": [65535, 0], "led to the": [65535, 0], "to the back": [65535, 0], "the back rooms": [65535, 0], "back rooms on": [65535, 0], "rooms on the": [65535, 0], "on the second": [65535, 0], "the second floor": [65535, 0], "second floor clods": [65535, 0], "floor clods were": [65535, 0], "clods were handy": [65535, 0], "were handy and": [65535, 0], "handy and the": [65535, 0], "and the air": [65535, 0], "air was full": [65535, 0], "was full of": [65535, 0], "full of them": [65535, 0], "of them in": [65535, 0], "them in a": [65535, 0], "in a twinkling": [65535, 0], "a twinkling they": [65535, 0], "twinkling they raged": [65535, 0], "they raged around": [65535, 0], "raged around sid": [65535, 0], "around sid like": [65535, 0], "sid like a": [65535, 0], "like a hail": [65535, 0], "a hail storm": [65535, 0], "hail storm and": [65535, 0], "storm and before": [65535, 0], "and before aunt": [65535, 0], "aunt polly could": [65535, 0], "polly could collect": [65535, 0], "could collect her": [65535, 0], "collect her surprised": [65535, 0], "her surprised faculties": [65535, 0], "surprised faculties and": [65535, 0], "faculties and sally": [65535, 0], "and sally to": [65535, 0], "sally to the": [65535, 0], "to the rescue": [65535, 0], "the rescue six": [65535, 0], "rescue six or": [65535, 0], "six or seven": [65535, 0], "or seven clods": [65535, 0], "seven clods had": [65535, 0], "clods had taken": [65535, 0], "had taken personal": [65535, 0], "taken personal effect": [65535, 0], "personal effect and": [65535, 0], "effect and tom": [65535, 0], "tom was over": [65535, 0], "was over the": [65535, 0], "over the fence": [65535, 0], "fence and gone": [65535, 0], "and gone there": [65535, 0], "gone there was": [65535, 0], "was a gate": [65535, 0], "a gate but": [65535, 0], "gate but as": [65535, 0], "but as a": [65535, 0], "as a general": [65535, 0], "a general thing": [65535, 0], "general thing he": [65535, 0], "thing he was": [65535, 0], "he was too": [65535, 0], "was too crowded": [65535, 0], "too crowded for": [65535, 0], "crowded for time": [65535, 0], "for time to": [65535, 0], "time to make": [65535, 0], "to make use": [65535, 0], "make use of": [65535, 0], "use of it": [65535, 0], "of it his": [65535, 0], "it his soul": [65535, 0], "soul was at": [65535, 0], "was at peace": [65535, 0], "at peace now": [65535, 0], "peace now that": [65535, 0], "now that he": [65535, 0], "that he had": [43635, 21900], "he had settled": [65535, 0], "had settled with": [65535, 0], "settled with sid": [65535, 0], "with sid for": [65535, 0], "sid for calling": [65535, 0], "for calling attention": [65535, 0], "calling attention to": [65535, 0], "attention to his": [65535, 0], "to his black": [65535, 0], "his black thread": [65535, 0], "black thread and": [65535, 0], "thread and getting": [65535, 0], "and getting him": [65535, 0], "getting him into": [65535, 0], "him into trouble": [65535, 0], "into trouble tom": [65535, 0], "trouble tom skirted": [65535, 0], "tom skirted the": [65535, 0], "skirted the block": [65535, 0], "the block and": [65535, 0], "block and came": [65535, 0], "and came round": [65535, 0], "came round into": [65535, 0], "round into a": [65535, 0], "into a muddy": [65535, 0], "a muddy alley": [65535, 0], "muddy alley that": [65535, 0], "alley that led": [65535, 0], "that led by": [65535, 0], "led by the": [65535, 0], "by the back": [65535, 0], "back of his": [65535, 0], "of his aunt's": [65535, 0], "his aunt's cowstable": [65535, 0], "aunt's cowstable he": [65535, 0], "cowstable he presently": [65535, 0], "he presently got": [65535, 0], "presently got safely": [65535, 0], "got safely beyond": [65535, 0], "safely beyond the": [65535, 0], "beyond the reach": [65535, 0], "the reach of": [65535, 0], "reach of capture": [65535, 0], "of capture and": [65535, 0], "capture and punishment": [65535, 0], "and punishment and": [65535, 0], "punishment and hastened": [65535, 0], "and hastened toward": [65535, 0], "hastened toward the": [65535, 0], "toward the public": [65535, 0], "the public square": [65535, 0], "public square of": [65535, 0], "square of the": [65535, 0], "the village where": [65535, 0], "village where two": [65535, 0], "where two military": [65535, 0], "two military companies": [65535, 0], "military companies of": [65535, 0], "companies of boys": [65535, 0], "of boys had": [65535, 0], "boys had met": [65535, 0], "had met for": [65535, 0], "met for conflict": [65535, 0], "for conflict according": [65535, 0], "conflict according to": [65535, 0], "according to previous": [65535, 0], "to previous appointment": [65535, 0], "previous appointment tom": [65535, 0], "appointment tom was": [65535, 0], "tom was general": [65535, 0], "was general of": [65535, 0], "general of one": [65535, 0], "of these armies": [65535, 0], "these armies joe": [65535, 0], "armies joe harper": [65535, 0], "joe harper a": [65535, 0], "harper a bosom": [65535, 0], "a bosom friend": [65535, 0], "bosom friend general": [65535, 0], "friend general of": [65535, 0], "general of the": [65535, 0], "of the other": [21790, 43745], "the other these": [65535, 0], "other these two": [65535, 0], "these two great": [65535, 0], "two great commanders": [65535, 0], "great commanders did": [65535, 0], "commanders did not": [65535, 0], "did not condescend": [65535, 0], "not condescend to": [65535, 0], "condescend to fight": [65535, 0], "to fight in": [65535, 0], "fight in person": [65535, 0], "in person that": [65535, 0], "person that being": [65535, 0], "that being better": [65535, 0], "being better suited": [65535, 0], "better suited to": [65535, 0], "suited to the": [65535, 0], "to the still": [65535, 0], "the still smaller": [65535, 0], "still smaller fry": [65535, 0], "smaller fry but": [65535, 0], "fry but sat": [65535, 0], "but sat together": [65535, 0], "sat together on": [65535, 0], "together on an": [65535, 0], "on an eminence": [65535, 0], "an eminence and": [65535, 0], "eminence and conducted": [65535, 0], "and conducted the": [65535, 0], "conducted the field": [65535, 0], "the field operations": [65535, 0], "field operations by": [65535, 0], "operations by orders": [65535, 0], "by orders delivered": [65535, 0], "orders delivered through": [65535, 0], "delivered through aides": [65535, 0], "through aides de": [65535, 0], "aides de camp": [65535, 0], "de camp tom's": [65535, 0], "camp tom's army": [65535, 0], "tom's army won": [65535, 0], "army won a": [65535, 0], "won a great": [65535, 0], "a great victory": [65535, 0], "great victory after": [65535, 0], "victory after a": [65535, 0], "after a long": [65535, 0], "a long and": [65535, 0], "long and hard": [65535, 0], "and hard fought": [65535, 0], "hard fought battle": [65535, 0], "fought battle then": [65535, 0], "battle then the": [65535, 0], "then the dead": [65535, 0], "the dead were": [65535, 0], "dead were counted": [65535, 0], "were counted prisoners": [65535, 0], "counted prisoners exchanged": [65535, 0], "prisoners exchanged the": [65535, 0], "exchanged the terms": [65535, 0], "the terms of": [65535, 0], "terms of the": [65535, 0], "of the next": [65535, 0], "the next disagreement": [65535, 0], "next disagreement agreed": [65535, 0], "disagreement agreed upon": [65535, 0], "agreed upon and": [65535, 0], "upon and the": [65535, 0], "and the day": [65535, 0], "the day for": [65535, 0], "day for the": [65535, 0], "for the necessary": [65535, 0], "the necessary battle": [65535, 0], "necessary battle appointed": [65535, 0], "battle appointed after": [65535, 0], "appointed after which": [65535, 0], "after which the": [65535, 0], "which the armies": [65535, 0], "the armies fell": [65535, 0], "armies fell into": [65535, 0], "fell into line": [65535, 0], "into line and": [65535, 0], "line and marched": [65535, 0], "and marched away": [65535, 0], "marched away and": [65535, 0], "away and tom": [65535, 0], "and tom turned": [65535, 0], "tom turned homeward": [65535, 0], "turned homeward alone": [65535, 0], "homeward alone as": [65535, 0], "alone as he": [65535, 0], "as he was": [65535, 0], "he was passing": [65535, 0], "was passing by": [65535, 0], "passing by the": [65535, 0], "by the house": [65535, 0], "the house where": [65535, 0], "house where jeff": [65535, 0], "where jeff thatcher": [65535, 0], "jeff thatcher lived": [65535, 0], "thatcher lived he": [65535, 0], "lived he saw": [65535, 0], "he saw a": [65535, 0], "saw a new": [65535, 0], "a new girl": [65535, 0], "new girl in": [65535, 0], "girl in the": [65535, 0], "in the garden": [65535, 0], "the garden a": [65535, 0], "garden a lovely": [65535, 0], "a lovely little": [65535, 0], "lovely little blue": [65535, 0], "little blue eyed": [65535, 0], "blue eyed creature": [65535, 0], "eyed creature with": [65535, 0], "creature with yellow": [65535, 0], "with yellow hair": [65535, 0], "yellow hair plaited": [65535, 0], "hair plaited into": [65535, 0], "plaited into two": [65535, 0], "into two long": [65535, 0], "long tails white": [65535, 0], "tails white summer": [65535, 0], "white summer frock": [65535, 0], "summer frock and": [65535, 0], "frock and embroidered": [65535, 0], "and embroidered pantalettes": [65535, 0], "embroidered pantalettes the": [65535, 0], "pantalettes the fresh": [65535, 0], "the fresh crowned": [65535, 0], "fresh crowned hero": [65535, 0], "crowned hero fell": [65535, 0], "hero fell without": [65535, 0], "fell without firing": [65535, 0], "without firing a": [65535, 0], "firing a shot": [65535, 0], "a shot a": [65535, 0], "shot a certain": [65535, 0], "a certain amy": [65535, 0], "certain amy lawrence": [65535, 0], "amy lawrence vanished": [65535, 0], "lawrence vanished out": [65535, 0], "of his heart": [65535, 0], "heart and left": [65535, 0], "and left not": [65535, 0], "left not even": [65535, 0], "not even a": [65535, 0], "even a memory": [65535, 0], "a memory of": [65535, 0], "memory of herself": [65535, 0], "of herself behind": [65535, 0], "herself behind he": [65535, 0], "behind he had": [65535, 0], "he had thought": [65535, 0], "had thought he": [65535, 0], "thought he loved": [65535, 0], "he loved her": [65535, 0], "loved her to": [65535, 0], "her to distraction": [65535, 0], "to distraction he": [65535, 0], "distraction he had": [65535, 0], "he had regarded": [65535, 0], "had regarded his": [65535, 0], "regarded his passion": [65535, 0], "his passion as": [65535, 0], "passion as adoration": [65535, 0], "as adoration and": [65535, 0], "adoration and behold": [65535, 0], "and behold it": [65535, 0], "behold it was": [65535, 0], "only a poor": [65535, 0], "a poor little": [65535, 0], "poor little evanescent": [65535, 0], "little evanescent partiality": [65535, 0], "evanescent partiality he": [65535, 0], "partiality he had": [65535, 0], "had been months": [65535, 0], "been months winning": [65535, 0], "months winning her": [65535, 0], "winning her she": [65535, 0], "her she had": [65535, 0], "she had confessed": [65535, 0], "had confessed hardly": [65535, 0], "confessed hardly a": [65535, 0], "hardly a week": [65535, 0], "a week ago": [65535, 0], "week ago he": [65535, 0], "ago he had": [65535, 0], "had been the": [65535, 0], "been the happiest": [65535, 0], "the happiest and": [65535, 0], "happiest and the": [65535, 0], "and the proudest": [65535, 0], "the proudest boy": [65535, 0], "proudest boy in": [65535, 0], "the world only": [65535, 0], "world only seven": [65535, 0], "only seven short": [65535, 0], "seven short days": [65535, 0], "short days and": [65535, 0], "days and here": [65535, 0], "and here in": [65535, 0], "here in one": [65535, 0], "in one instant": [65535, 0], "one instant of": [65535, 0], "instant of time": [65535, 0], "of time she": [65535, 0], "time she had": [65535, 0], "she had gone": [65535, 0], "had gone out": [65535, 0], "gone out of": [65535, 0], "his heart like": [65535, 0], "heart like a": [65535, 0], "like a casual": [65535, 0], "a casual stranger": [65535, 0], "casual stranger whose": [65535, 0], "stranger whose visit": [65535, 0], "whose visit is": [65535, 0], "visit is done": [65535, 0], "is done he": [65535, 0], "done he worshipped": [65535, 0], "he worshipped this": [65535, 0], "worshipped this new": [65535, 0], "this new angel": [65535, 0], "new angel with": [65535, 0], "angel with furtive": [65535, 0], "with furtive eye": [65535, 0], "furtive eye till": [65535, 0], "eye till he": [65535, 0], "till he saw": [65535, 0], "he saw that": [65535, 0], "saw that she": [65535, 0], "had discovered him": [65535, 0], "discovered him then": [65535, 0], "him then he": [65535, 0], "then he pretended": [65535, 0], "he pretended he": [65535, 0], "pretended he did": [65535, 0], "not know she": [65535, 0], "she was present": [65535, 0], "was present and": [65535, 0], "present and began": [65535, 0], "began to show": [65535, 0], "to show off": [65535, 0], "show off in": [65535, 0], "off in all": [65535, 0], "in all sorts": [65535, 0], "sorts of absurd": [65535, 0], "of absurd boyish": [65535, 0], "absurd boyish ways": [65535, 0], "boyish ways in": [65535, 0], "ways in order": [65535, 0], "order to win": [65535, 0], "to win her": [65535, 0], "win her admiration": [65535, 0], "her admiration he": [65535, 0], "admiration he kept": [65535, 0], "he kept up": [65535, 0], "kept up this": [65535, 0], "up this grotesque": [65535, 0], "this grotesque foolishness": [65535, 0], "grotesque foolishness for": [65535, 0], "foolishness for some": [65535, 0], "some time but": [65535, 0], "time but by": [65535, 0], "but by and": [32706, 32829], "and by while": [65535, 0], "by while he": [65535, 0], "while he was": [65535, 0], "he was in": [65535, 0], "midst of some": [65535, 0], "of some dangerous": [65535, 0], "some dangerous gymnastic": [65535, 0], "dangerous gymnastic performances": [65535, 0], "gymnastic performances he": [65535, 0], "performances he glanced": [65535, 0], "he glanced aside": [65535, 0], "glanced aside and": [65535, 0], "aside and saw": [65535, 0], "and saw that": [65535, 0], "saw that the": [65535, 0], "that the little": [65535, 0], "the little girl": [65535, 0], "little girl was": [65535, 0], "girl was wending": [65535, 0], "was wending her": [65535, 0], "wending her way": [65535, 0], "her way toward": [65535, 0], "way toward the": [65535, 0], "toward the house": [65535, 0], "the house tom": [65535, 0], "house tom came": [65535, 0], "tom came up": [65535, 0], "came up to": [65535, 0], "to the fence": [65535, 0], "fence and leaned": [65535, 0], "and leaned on": [65535, 0], "leaned on it": [65535, 0], "on it grieving": [65535, 0], "it grieving and": [65535, 0], "grieving and hoping": [65535, 0], "and hoping she": [65535, 0], "hoping she would": [65535, 0], "she would tarry": [65535, 0], "would tarry yet": [65535, 0], "tarry yet awhile": [65535, 0], "yet awhile longer": [65535, 0], "awhile longer she": [65535, 0], "longer she halted": [65535, 0], "she halted a": [65535, 0], "halted a moment": [65535, 0], "a moment on": [65535, 0], "moment on the": [65535, 0], "on the steps": [65535, 0], "the steps and": [65535, 0], "steps and then": [65535, 0], "and then moved": [65535, 0], "then moved toward": [65535, 0], "moved toward the": [65535, 0], "toward the door": [65535, 0], "door tom heaved": [65535, 0], "tom heaved a": [65535, 0], "heaved a great": [65535, 0], "a great sigh": [65535, 0], "great sigh as": [65535, 0], "sigh as she": [65535, 0], "as she put": [65535, 0], "put her foot": [65535, 0], "her foot on": [65535, 0], "foot on the": [65535, 0], "on the threshold": [65535, 0], "the threshold but": [65535, 0], "threshold but his": [65535, 0], "but his face": [65535, 0], "face lit up": [65535, 0], "lit up right": [65535, 0], "up right away": [65535, 0], "right away for": [65535, 0], "away for she": [65535, 0], "for she tossed": [65535, 0], "she tossed a": [65535, 0], "tossed a pansy": [65535, 0], "a pansy over": [65535, 0], "pansy over the": [65535, 0], "the fence a": [65535, 0], "fence a moment": [65535, 0], "a moment before": [65535, 0], "moment before she": [65535, 0], "before she disappeared": [65535, 0], "she disappeared the": [65535, 0], "disappeared the boy": [65535, 0], "the boy ran": [65535, 0], "boy ran around": [65535, 0], "ran around and": [65535, 0], "around and stopped": [65535, 0], "and stopped within": [65535, 0], "stopped within a": [65535, 0], "within a foot": [65535, 0], "a foot or": [65535, 0], "foot or two": [65535, 0], "or two of": [65535, 0], "of the flower": [65535, 0], "the flower and": [65535, 0], "flower and then": [65535, 0], "and then shaded": [65535, 0], "then shaded his": [65535, 0], "shaded his eyes": [65535, 0], "his eyes with": [65535, 0], "eyes with his": [65535, 0], "with his hand": [65535, 0], "hand and began": [65535, 0], "began to look": [65535, 0], "to look down": [65535, 0], "look down street": [65535, 0], "down street as": [65535, 0], "street as if": [65535, 0], "as if he": [65535, 0], "had discovered something": [65535, 0], "discovered something of": [65535, 0], "something of interest": [65535, 0], "of interest going": [65535, 0], "interest going on": [65535, 0], "going on in": [65535, 0], "on in that": [65535, 0], "in that direction": [65535, 0], "that direction presently": [65535, 0], "direction presently he": [65535, 0], "presently he picked": [65535, 0], "he picked up": [65535, 0], "picked up a": [65535, 0], "up a straw": [65535, 0], "a straw and": [65535, 0], "straw and began": [65535, 0], "and began trying": [65535, 0], "began trying to": [65535, 0], "trying to balance": [65535, 0], "to balance it": [65535, 0], "balance it on": [65535, 0], "it on his": [65535, 0], "on his nose": [65535, 0], "his nose with": [65535, 0], "nose with his": [65535, 0], "with his head": [65535, 0], "his head tilted": [65535, 0], "head tilted far": [65535, 0], "tilted far back": [65535, 0], "far back and": [65535, 0], "back and as": [65535, 0], "and as he": [65535, 0], "as he moved": [65535, 0], "he moved from": [65535, 0], "moved from side": [65535, 0], "from side to": [65535, 0], "side to side": [65535, 0], "to side in": [65535, 0], "side in his": [65535, 0], "in his efforts": [65535, 0], "his efforts he": [65535, 0], "efforts he edged": [65535, 0], "he edged nearer": [65535, 0], "edged nearer and": [65535, 0], "nearer and nearer": [65535, 0], "and nearer toward": [65535, 0], "nearer toward the": [65535, 0], "toward the pansy": [65535, 0], "the pansy finally": [65535, 0], "pansy finally his": [65535, 0], "finally his bare": [65535, 0], "his bare foot": [65535, 0], "bare foot rested": [65535, 0], "foot rested upon": [65535, 0], "rested upon it": [65535, 0], "upon it his": [65535, 0], "it his pliant": [65535, 0], "his pliant toes": [65535, 0], "pliant toes closed": [65535, 0], "toes closed upon": [65535, 0], "closed upon it": [65535, 0], "upon it and": [65535, 0], "and he hopped": [65535, 0], "he hopped away": [65535, 0], "hopped away with": [65535, 0], "away with the": [65535, 0], "with the treasure": [65535, 0], "the treasure and": [65535, 0], "treasure and disappeared": [65535, 0], "and disappeared round": [65535, 0], "disappeared round the": [65535, 0], "round the corner": [65535, 0], "the corner but": [65535, 0], "corner but only": [65535, 0], "but only for": [65535, 0], "only for a": [65535, 0], "a minute only": [65535, 0], "minute only while": [65535, 0], "only while he": [65535, 0], "while he could": [65535, 0], "he could button": [65535, 0], "could button the": [65535, 0], "button the flower": [65535, 0], "the flower inside": [65535, 0], "flower inside his": [65535, 0], "inside his jacket": [65535, 0], "his jacket next": [65535, 0], "jacket next his": [65535, 0], "next his heart": [65535, 0], "his heart or": [65535, 0], "heart or next": [65535, 0], "or next his": [65535, 0], "next his stomach": [65535, 0], "his stomach possibly": [65535, 0], "stomach possibly for": [65535, 0], "possibly for he": [65535, 0], "was not much": [65535, 0], "not much posted": [65535, 0], "much posted in": [65535, 0], "posted in anatomy": [65535, 0], "in anatomy and": [65535, 0], "anatomy and not": [65535, 0], "and not hypercritical": [65535, 0], "not hypercritical anyway": [65535, 0], "hypercritical anyway he": [65535, 0], "anyway he returned": [65535, 0], "he returned now": [65535, 0], "returned now and": [65535, 0], "now and hung": [65535, 0], "and hung about": [65535, 0], "hung about the": [65535, 0], "about the fence": [65535, 0], "the fence till": [65535, 0], "fence till nightfall": [65535, 0], "till nightfall showing": [65535, 0], "nightfall showing off": [65535, 0], "showing off as": [65535, 0], "off as before": [65535, 0], "as before but": [65535, 0], "before but the": [65535, 0], "the girl never": [65535, 0], "girl never exhibited": [65535, 0], "never exhibited herself": [65535, 0], "exhibited herself again": [65535, 0], "herself again though": [65535, 0], "again though tom": [65535, 0], "though tom comforted": [65535, 0], "tom comforted himself": [65535, 0], "comforted himself a": [65535, 0], "himself a little": [65535, 0], "a little with": [65535, 0], "little with the": [65535, 0], "with the hope": [65535, 0], "the hope that": [65535, 0], "hope that she": [65535, 0], "she had been": [65535, 0], "had been near": [65535, 0], "been near some": [65535, 0], "near some window": [65535, 0], "some window meantime": [65535, 0], "window meantime and": [65535, 0], "meantime and been": [65535, 0], "and been aware": [65535, 0], "been aware of": [65535, 0], "aware of his": [65535, 0], "of his attentions": [65535, 0], "his attentions finally": [65535, 0], "attentions finally he": [65535, 0], "finally he strode": [65535, 0], "he strode home": [65535, 0], "strode home reluctantly": [65535, 0], "home reluctantly with": [65535, 0], "reluctantly with his": [65535, 0], "with his poor": [65535, 0], "his poor head": [65535, 0], "poor head full": [65535, 0], "head full of": [65535, 0], "full of visions": [65535, 0], "of visions all": [65535, 0], "visions all through": [65535, 0], "all through supper": [65535, 0], "through supper his": [65535, 0], "supper his spirits": [65535, 0], "his spirits were": [65535, 0], "spirits were so": [65535, 0], "were so high": [65535, 0], "so high that": [65535, 0], "high that his": [65535, 0], "that his aunt": [65535, 0], "his aunt wondered": [65535, 0], "aunt wondered what": [65535, 0], "wondered what had": [65535, 0], "what had got": [65535, 0], "had got into": [65535, 0], "into the child": [65535, 0], "the child he": [65535, 0], "child he took": [65535, 0], "took a good": [65535, 0], "a good scolding": [65535, 0], "good scolding about": [65535, 0], "scolding about clodding": [65535, 0], "about clodding sid": [65535, 0], "clodding sid and": [65535, 0], "sid and did": [65535, 0], "and did not": [21790, 43745], "did not seem": [65535, 0], "not seem to": [65535, 0], "seem to mind": [65535, 0], "to mind it": [65535, 0], "mind it in": [65535, 0], "it in the": [65535, 0], "in the least": [65535, 0], "the least he": [65535, 0], "least he tried": [65535, 0], "tried to steal": [65535, 0], "to steal sugar": [65535, 0], "steal sugar under": [65535, 0], "sugar under his": [65535, 0], "under his aunt's": [65535, 0], "his aunt's very": [65535, 0], "aunt's very nose": [65535, 0], "very nose and": [65535, 0], "nose and got": [65535, 0], "and got his": [65535, 0], "got his knuckles": [65535, 0], "his knuckles rapped": [65535, 0], "knuckles rapped for": [65535, 0], "rapped for it": [65535, 0], "for it he": [65535, 0], "it he said": [65535, 0], "said aunt you": [65535, 0], "aunt you don't": [65535, 0], "you don't whack": [65535, 0], "don't whack sid": [65535, 0], "whack sid when": [65535, 0], "sid when he": [65535, 0], "when he takes": [65535, 0], "he takes it": [32706, 32829], "takes it well": [65535, 0], "it well sid": [65535, 0], "well sid don't": [65535, 0], "sid don't torment": [65535, 0], "don't torment a": [65535, 0], "torment a body": [65535, 0], "a body the": [65535, 0], "body the way": [65535, 0], "the way you": [65535, 0], "way you do": [65535, 0], "you do you'd": [65535, 0], "do you'd be": [65535, 0], "you'd be always": [65535, 0], "be always into": [65535, 0], "always into that": [65535, 0], "into that sugar": [65535, 0], "that sugar if": [65535, 0], "sugar if i": [65535, 0], "if i warn't": [65535, 0], "i warn't watching": [65535, 0], "warn't watching you": [65535, 0], "watching you presently": [65535, 0], "you presently she": [65535, 0], "presently she stepped": [65535, 0], "she stepped into": [65535, 0], "stepped into the": [65535, 0], "into the kitchen": [65535, 0], "kitchen and sid": [65535, 0], "and sid happy": [65535, 0], "sid happy in": [65535, 0], "happy in his": [65535, 0], "in his immunity": [65535, 0], "his immunity reached": [65535, 0], "immunity reached for": [65535, 0], "reached for the": [65535, 0], "for the sugar": [65535, 0], "the sugar bowl": [65535, 0], "sugar bowl a": [65535, 0], "bowl a sort": [65535, 0], "sort of glorying": [65535, 0], "of glorying over": [65535, 0], "glorying over tom": [65535, 0], "over tom which": [65535, 0], "tom which was": [65535, 0], "which was well": [65535, 0], "was well nigh": [65535, 0], "well nigh unbearable": [65535, 0], "nigh unbearable but": [65535, 0], "unbearable but sid's": [65535, 0], "but sid's fingers": [65535, 0], "sid's fingers slipped": [65535, 0], "fingers slipped and": [65535, 0], "slipped and the": [65535, 0], "and the bowl": [65535, 0], "the bowl dropped": [65535, 0], "bowl dropped and": [65535, 0], "dropped and broke": [65535, 0], "and broke tom": [65535, 0], "broke tom was": [65535, 0], "tom was in": [65535, 0], "was in ecstasies": [65535, 0], "in ecstasies in": [65535, 0], "ecstasies in such": [65535, 0], "in such ecstasies": [65535, 0], "such ecstasies that": [65535, 0], "ecstasies that he": [65535, 0], "that he even": [65535, 0], "he even controlled": [65535, 0], "even controlled his": [65535, 0], "controlled his tongue": [65535, 0], "his tongue and": [65535, 0], "tongue and was": [65535, 0], "and was silent": [65535, 0], "was silent he": [65535, 0], "silent he said": [65535, 0], "that he would": [65535, 0], "he would not": [32706, 32829], "would not speak": [65535, 0], "not speak a": [65535, 0], "speak a word": [32706, 32829], "a word even": [65535, 0], "word even when": [65535, 0], "even when his": [65535, 0], "when his aunt": [65535, 0], "his aunt came": [65535, 0], "aunt came in": [65535, 0], "came in but": [65535, 0], "in but would": [65535, 0], "but would sit": [65535, 0], "would sit perfectly": [65535, 0], "sit perfectly still": [65535, 0], "perfectly still till": [65535, 0], "still till she": [65535, 0], "till she asked": [65535, 0], "she asked who": [65535, 0], "asked who did": [65535, 0], "who did the": [65535, 0], "did the mischief": [65535, 0], "the mischief and": [65535, 0], "mischief and then": [65535, 0], "then he would": [65535, 0], "he would tell": [65535, 0], "would tell and": [65535, 0], "tell and there": [65535, 0], "and there would": [65535, 0], "there would be": [65535, 0], "would be nothing": [65535, 0], "be nothing so": [65535, 0], "nothing so good": [65535, 0], "so good in": [65535, 0], "good in the": [65535, 0], "the world as": [65535, 0], "world as to": [65535, 0], "as to see": [65535, 0], "to see that": [65535, 0], "see that pet": [65535, 0], "that pet model": [65535, 0], "pet model catch": [65535, 0], "model catch it": [65535, 0], "catch it he": [65535, 0], "it he was": [65535, 0], "was so brimful": [65535, 0], "so brimful of": [65535, 0], "brimful of exultation": [65535, 0], "of exultation that": [65535, 0], "exultation that he": [65535, 0], "he could hardly": [65535, 0], "could hardly hold": [65535, 0], "hardly hold himself": [65535, 0], "hold himself when": [65535, 0], "himself when the": [65535, 0], "when the old": [65535, 0], "old lady came": [65535, 0], "lady came back": [65535, 0], "came back and": [65535, 0], "back and stood": [65535, 0], "and stood above": [65535, 0], "stood above the": [65535, 0], "above the wreck": [65535, 0], "the wreck discharging": [65535, 0], "wreck discharging lightnings": [65535, 0], "discharging lightnings of": [65535, 0], "lightnings of wrath": [65535, 0], "of wrath from": [65535, 0], "wrath from over": [65535, 0], "from over her": [65535, 0], "over her spectacles": [65535, 0], "her spectacles he": [65535, 0], "spectacles he said": [65535, 0], "to himself now": [65535, 0], "himself now it's": [65535, 0], "now it's coming": [65535, 0], "it's coming and": [65535, 0], "coming and the": [65535, 0], "and the next": [65535, 0], "the next instant": [65535, 0], "next instant he": [65535, 0], "instant he was": [65535, 0], "he was sprawling": [65535, 0], "was sprawling on": [65535, 0], "sprawling on the": [65535, 0], "on the floor": [65535, 0], "the floor the": [65535, 0], "floor the potent": [65535, 0], "the potent palm": [65535, 0], "potent palm was": [65535, 0], "palm was uplifted": [65535, 0], "was uplifted to": [65535, 0], "uplifted to strike": [65535, 0], "to strike again": [65535, 0], "strike again when": [65535, 0], "again when tom": [65535, 0], "when tom cried": [65535, 0], "tom cried out": [65535, 0], "cried out hold": [65535, 0], "out hold on": [65535, 0], "hold on now": [65535, 0], "on now what": [65535, 0], "now what 'er": [65535, 0], "what 'er you": [65535, 0], "'er you belting": [65535, 0], "you belting me": [65535, 0], "belting me for": [65535, 0], "me for sid": [65535, 0], "for sid broke": [65535, 0], "sid broke it": [65535, 0], "broke it aunt": [65535, 0], "it aunt polly": [65535, 0], "aunt polly paused": [65535, 0], "polly paused perplexed": [65535, 0], "paused perplexed and": [65535, 0], "perplexed and tom": [65535, 0], "and tom looked": [65535, 0], "tom looked for": [65535, 0], "looked for healing": [65535, 0], "for healing pity": [65535, 0], "healing pity but": [65535, 0], "pity but when": [65535, 0], "but when she": [65535, 0], "when she got": [65535, 0], "she got her": [65535, 0], "got her tongue": [65535, 0], "her tongue again": [65535, 0], "tongue again she": [65535, 0], "again she only": [65535, 0], "she only said": [65535, 0], "only said umf": [65535, 0], "said umf well": [65535, 0], "umf well you": [65535, 0], "well you didn't": [65535, 0], "you didn't get": [65535, 0], "didn't get a": [65535, 0], "get a lick": [65535, 0], "a lick amiss": [65535, 0], "lick amiss i": [65535, 0], "amiss i reckon": [65535, 0], "i reckon you": [65535, 0], "reckon you been": [65535, 0], "you been into": [65535, 0], "been into some": [65535, 0], "into some other": [65535, 0], "some other audacious": [65535, 0], "other audacious mischief": [65535, 0], "audacious mischief when": [65535, 0], "mischief when i": [65535, 0], "when i wasn't": [65535, 0], "i wasn't around": [65535, 0], "wasn't around like": [65535, 0], "around like enough": [65535, 0], "like enough then": [65535, 0], "enough then her": [65535, 0], "then her conscience": [65535, 0], "her conscience reproached": [65535, 0], "conscience reproached her": [65535, 0], "reproached her and": [65535, 0], "and she yearned": [65535, 0], "she yearned to": [65535, 0], "yearned to say": [65535, 0], "to say something": [65535, 0], "say something kind": [65535, 0], "something kind and": [65535, 0], "kind and loving": [65535, 0], "and loving but": [65535, 0], "loving but she": [65535, 0], "but she judged": [65535, 0], "she judged that": [65535, 0], "judged that this": [65535, 0], "that this would": [65535, 0], "this would be": [65535, 0], "would be construed": [65535, 0], "be construed into": [65535, 0], "construed into a": [65535, 0], "into a confession": [65535, 0], "a confession that": [65535, 0], "confession that she": [65535, 0], "had been in": [65535, 0], "been in the": [65535, 0], "in the wrong": [65535, 0], "the wrong and": [65535, 0], "wrong and discipline": [65535, 0], "and discipline forbade": [65535, 0], "discipline forbade that": [65535, 0], "forbade that so": [65535, 0], "that so she": [65535, 0], "so she kept": [65535, 0], "she kept silence": [65535, 0], "kept silence and": [65535, 0], "silence and went": [65535, 0], "and went about": [65535, 0], "went about her": [65535, 0], "about her affairs": [65535, 0], "her affairs with": [65535, 0], "affairs with a": [65535, 0], "with a troubled": [65535, 0], "a troubled heart": [65535, 0], "troubled heart tom": [65535, 0], "heart tom sulked": [65535, 0], "tom sulked in": [65535, 0], "sulked in a": [65535, 0], "in a corner": [65535, 0], "a corner and": [65535, 0], "corner and exalted": [65535, 0], "and exalted his": [65535, 0], "exalted his woes": [65535, 0], "his woes he": [65535, 0], "woes he knew": [65535, 0], "he knew that": [65535, 0], "knew that in": [65535, 0], "that in her": [65535, 0], "in her heart": [65535, 0], "her heart his": [65535, 0], "heart his aunt": [65535, 0], "his aunt was": [65535, 0], "aunt was on": [65535, 0], "was on her": [65535, 0], "on her knees": [65535, 0], "her knees to": [65535, 0], "knees to him": [65535, 0], "to him and": [32706, 32829], "him and he": [43635, 21900], "he was morosely": [65535, 0], "was morosely gratified": [65535, 0], "morosely gratified by": [65535, 0], "gratified by the": [65535, 0], "by the consciousness": [65535, 0], "the consciousness of": [65535, 0], "consciousness of it": [65535, 0], "of it he": [65535, 0], "it he would": [65535, 0], "he would hang": [65535, 0], "would hang out": [65535, 0], "hang out no": [65535, 0], "out no signals": [65535, 0], "no signals he": [65535, 0], "signals he would": [65535, 0], "he would take": [65535, 0], "would take notice": [65535, 0], "take notice of": [65535, 0], "notice of none": [65535, 0], "of none he": [65535, 0], "none he knew": [65535, 0], "knew that a": [65535, 0], "that a yearning": [65535, 0], "a yearning glance": [65535, 0], "yearning glance fell": [65535, 0], "glance fell upon": [65535, 0], "fell upon him": [65535, 0], "upon him now": [65535, 0], "him now and": [65535, 0], "now and then": [65535, 0], "and then through": [65535, 0], "then through a": [65535, 0], "through a film": [65535, 0], "a film of": [65535, 0], "film of tears": [65535, 0], "of tears but": [65535, 0], "tears but he": [65535, 0], "but he refused": [65535, 0], "he refused recognition": [65535, 0], "refused recognition of": [65535, 0], "recognition of it": [65535, 0], "it he pictured": [65535, 0], "he pictured himself": [65535, 0], "pictured himself lying": [65535, 0], "himself lying sick": [65535, 0], "lying sick unto": [65535, 0], "sick unto death": [65535, 0], "unto death and": [65535, 0], "death and his": [65535, 0], "and his aunt": [65535, 0], "his aunt bending": [65535, 0], "aunt bending over": [65535, 0], "bending over him": [65535, 0], "over him beseeching": [65535, 0], "him beseeching one": [65535, 0], "beseeching one little": [65535, 0], "one little forgiving": [65535, 0], "little forgiving word": [65535, 0], "forgiving word but": [65535, 0], "word but he": [65535, 0], "but he would": [43635, 21900], "he would turn": [65535, 0], "would turn his": [65535, 0], "turn his face": [65535, 0], "to the wall": [65535, 0], "the wall and": [65535, 0], "wall and die": [65535, 0], "and die with": [65535, 0], "die with that": [65535, 0], "with that word": [65535, 0], "that word unsaid": [65535, 0], "word unsaid ah": [65535, 0], "unsaid ah how": [65535, 0], "ah how would": [65535, 0], "how would she": [65535, 0], "would she feel": [65535, 0], "she feel then": [65535, 0], "feel then and": [65535, 0], "then and he": [65535, 0], "and he pictured": [65535, 0], "pictured himself brought": [65535, 0], "himself brought home": [65535, 0], "brought home from": [65535, 0], "home from the": [65535, 0], "from the river": [65535, 0], "the river dead": [65535, 0], "river dead with": [65535, 0], "dead with his": [65535, 0], "with his curls": [65535, 0], "his curls all": [65535, 0], "curls all wet": [65535, 0], "all wet and": [65535, 0], "wet and his": [65535, 0], "and his sore": [65535, 0], "his sore heart": [65535, 0], "sore heart at": [65535, 0], "heart at rest": [65535, 0], "at rest how": [65535, 0], "rest how she": [65535, 0], "how she would": [65535, 0], "she would throw": [65535, 0], "would throw herself": [65535, 0], "throw herself upon": [65535, 0], "herself upon him": [65535, 0], "upon him and": [65535, 0], "him and how": [65535, 0], "and how her": [65535, 0], "how her tears": [65535, 0], "her tears would": [65535, 0], "tears would fall": [65535, 0], "would fall like": [65535, 0], "fall like rain": [65535, 0], "like rain and": [65535, 0], "rain and her": [65535, 0], "and her lips": [65535, 0], "her lips pray": [65535, 0], "lips pray god": [65535, 0], "pray god to": [65535, 0], "god to give": [65535, 0], "to give her": [65535, 0], "give her back": [65535, 0], "her back her": [65535, 0], "back her boy": [65535, 0], "her boy and": [65535, 0], "boy and she": [65535, 0], "she would never": [65535, 0], "would never never": [65535, 0], "never never abuse": [65535, 0], "never abuse him": [65535, 0], "abuse him any": [65535, 0], "him any more": [65535, 0], "any more but": [65535, 0], "more but he": [65535, 0], "he would lie": [65535, 0], "would lie there": [65535, 0], "lie there cold": [65535, 0], "there cold and": [65535, 0], "cold and white": [65535, 0], "and white and": [65535, 0], "white and make": [65535, 0], "and make no": [65535, 0], "make no sign": [65535, 0], "no sign a": [65535, 0], "sign a poor": [65535, 0], "poor little sufferer": [65535, 0], "little sufferer whose": [65535, 0], "sufferer whose griefs": [65535, 0], "whose griefs were": [65535, 0], "griefs were at": [65535, 0], "were at an": [65535, 0], "an end he": [65535, 0], "end he so": [65535, 0], "he so worked": [65535, 0], "so worked upon": [65535, 0], "worked upon his": [65535, 0], "upon his feelings": [65535, 0], "his feelings with": [65535, 0], "feelings with the": [65535, 0], "with the pathos": [65535, 0], "the pathos of": [65535, 0], "pathos of these": [65535, 0], "of these dreams": [65535, 0], "these dreams that": [65535, 0], "dreams that he": [65535, 0], "had to keep": [65535, 0], "to keep swallowing": [65535, 0], "keep swallowing he": [65535, 0], "swallowing he was": [65535, 0], "was so like": [65535, 0], "so like to": [65535, 0], "like to choke": [65535, 0], "to choke and": [65535, 0], "choke and his": [65535, 0], "his eyes swam": [65535, 0], "eyes swam in": [65535, 0], "swam in a": [65535, 0], "in a blur": [65535, 0], "a blur of": [65535, 0], "blur of water": [65535, 0], "of water which": [65535, 0], "water which overflowed": [65535, 0], "which overflowed when": [65535, 0], "overflowed when he": [65535, 0], "when he winked": [65535, 0], "he winked and": [65535, 0], "winked and ran": [65535, 0], "and ran down": [65535, 0], "ran down and": [65535, 0], "down and trickled": [65535, 0], "and trickled from": [65535, 0], "trickled from the": [65535, 0], "from the end": [65535, 0], "end of his": [65535, 0], "of his nose": [65535, 0], "his nose and": [65535, 0], "nose and such": [65535, 0], "and such a": [65535, 0], "such a luxury": [65535, 0], "a luxury to": [65535, 0], "luxury to him": [65535, 0], "to him was": [65535, 0], "him was this": [65535, 0], "was this petting": [65535, 0], "this petting of": [65535, 0], "petting of his": [65535, 0], "of his sorrows": [65535, 0], "his sorrows that": [65535, 0], "sorrows that he": [65535, 0], "could not bear": [65535, 0], "not bear to": [65535, 0], "bear to have": [65535, 0], "to have any": [65535, 0], "have any worldly": [65535, 0], "any worldly cheeriness": [65535, 0], "worldly cheeriness or": [65535, 0], "cheeriness or any": [65535, 0], "or any grating": [65535, 0], "any grating delight": [65535, 0], "grating delight intrude": [65535, 0], "delight intrude upon": [65535, 0], "intrude upon it": [65535, 0], "upon it it": [65535, 0], "it was too": [65535, 0], "was too sacred": [65535, 0], "too sacred for": [65535, 0], "sacred for such": [65535, 0], "for such contact": [65535, 0], "such contact and": [65535, 0], "contact and so": [65535, 0], "and so presently": [65535, 0], "so presently when": [65535, 0], "presently when his": [65535, 0], "when his cousin": [65535, 0], "his cousin mary": [65535, 0], "cousin mary danced": [65535, 0], "mary danced in": [65535, 0], "danced in all": [65535, 0], "in all alive": [65535, 0], "all alive with": [65535, 0], "alive with the": [65535, 0], "with the joy": [65535, 0], "the joy of": [65535, 0], "joy of seeing": [65535, 0], "of seeing home": [65535, 0], "seeing home again": [65535, 0], "home again after": [65535, 0], "again after an": [65535, 0], "after an age": [65535, 0], "an age long": [65535, 0], "age long visit": [65535, 0], "long visit of": [65535, 0], "visit of one": [65535, 0], "of one week": [65535, 0], "one week to": [65535, 0], "week to the": [65535, 0], "to the country": [65535, 0], "the country he": [65535, 0], "country he got": [65535, 0], "he got up": [65535, 0], "got up and": [65535, 0], "up and moved": [65535, 0], "and moved in": [65535, 0], "moved in clouds": [65535, 0], "in clouds and": [65535, 0], "clouds and darkness": [65535, 0], "and darkness out": [65535, 0], "darkness out at": [65535, 0], "out at one": [65535, 0], "at one door": [65535, 0], "one door as": [65535, 0], "door as she": [65535, 0], "as she brought": [65535, 0], "she brought song": [65535, 0], "brought song and": [65535, 0], "song and sunshine": [65535, 0], "and sunshine in": [65535, 0], "sunshine in at": [65535, 0], "at the other": [65535, 0], "the other he": [65535, 0], "other he wandered": [65535, 0], "he wandered far": [65535, 0], "wandered far from": [65535, 0], "far from the": [65535, 0], "from the accustomed": [65535, 0], "the accustomed haunts": [65535, 0], "accustomed haunts of": [65535, 0], "haunts of boys": [65535, 0], "of boys and": [65535, 0], "boys and sought": [65535, 0], "and sought desolate": [65535, 0], "sought desolate places": [65535, 0], "desolate places that": [65535, 0], "places that were": [65535, 0], "that were in": [65535, 0], "were in harmony": [65535, 0], "in harmony with": [65535, 0], "harmony with his": [65535, 0], "with his spirit": [65535, 0], "his spirit a": [65535, 0], "spirit a log": [65535, 0], "a log raft": [65535, 0], "log raft in": [65535, 0], "raft in the": [65535, 0], "in the river": [65535, 0], "the river invited": [65535, 0], "river invited him": [65535, 0], "invited him and": [65535, 0], "and he seated": [65535, 0], "he seated himself": [65535, 0], "seated himself on": [65535, 0], "himself on its": [65535, 0], "on its outer": [65535, 0], "its outer edge": [65535, 0], "outer edge and": [65535, 0], "edge and contemplated": [65535, 0], "and contemplated the": [65535, 0], "contemplated the dreary": [65535, 0], "the dreary vastness": [65535, 0], "dreary vastness of": [65535, 0], "vastness of the": [65535, 0], "of the stream": [65535, 0], "the stream wishing": [65535, 0], "stream wishing the": [65535, 0], "wishing the while": [65535, 0], "the while that": [65535, 0], "while that he": [65535, 0], "he could only": [65535, 0], "could only be": [65535, 0], "only be drowned": [65535, 0], "be drowned all": [65535, 0], "drowned all at": [65535, 0], "all at once": [65535, 0], "at once and": [65535, 0], "once and unconsciously": [65535, 0], "and unconsciously without": [65535, 0], "unconsciously without undergoing": [65535, 0], "without undergoing the": [65535, 0], "undergoing the uncomfortable": [65535, 0], "the uncomfortable routine": [65535, 0], "uncomfortable routine devised": [65535, 0], "routine devised by": [65535, 0], "devised by nature": [65535, 0], "by nature then": [65535, 0], "nature then he": [65535, 0], "then he thought": [65535, 0], "he thought of": [65535, 0], "thought of his": [65535, 0], "of his flower": [65535, 0], "his flower he": [65535, 0], "flower he got": [65535, 0], "he got it": [65535, 0], "it out rumpled": [65535, 0], "out rumpled and": [65535, 0], "rumpled and wilted": [65535, 0], "and wilted and": [65535, 0], "wilted and it": [65535, 0], "and it mightily": [65535, 0], "it mightily increased": [65535, 0], "mightily increased his": [65535, 0], "increased his dismal": [65535, 0], "his dismal felicity": [65535, 0], "dismal felicity he": [65535, 0], "felicity he wondered": [65535, 0], "he wondered if": [65535, 0], "wondered if she": [65535, 0], "if she would": [65535, 0], "she would pity": [65535, 0], "would pity him": [65535, 0], "pity him if": [65535, 0], "him if she": [65535, 0], "if she knew": [65535, 0], "she knew would": [65535, 0], "knew would she": [65535, 0], "would she cry": [65535, 0], "she cry and": [65535, 0], "cry and wish": [65535, 0], "and wish that": [65535, 0], "wish that she": [65535, 0], "had a right": [65535, 0], "a right to": [65535, 0], "right to put": [65535, 0], "to put her": [32706, 32829], "put her arms": [65535, 0], "her arms around": [65535, 0], "arms around his": [65535, 0], "his neck and": [65535, 0], "neck and comfort": [65535, 0], "and comfort him": [65535, 0], "comfort him or": [65535, 0], "him or would": [65535, 0], "or would she": [65535, 0], "would she turn": [65535, 0], "she turn coldly": [65535, 0], "turn coldly away": [65535, 0], "coldly away like": [65535, 0], "away like all": [65535, 0], "like all the": [65535, 0], "all the hollow": [65535, 0], "the hollow world": [65535, 0], "hollow world this": [65535, 0], "world this picture": [65535, 0], "this picture brought": [65535, 0], "picture brought such": [65535, 0], "brought such an": [65535, 0], "such an agony": [65535, 0], "an agony of": [65535, 0], "agony of pleasurable": [65535, 0], "of pleasurable suffering": [65535, 0], "pleasurable suffering that": [65535, 0], "suffering that he": [65535, 0], "that he worked": [65535, 0], "he worked it": [65535, 0], "worked it over": [65535, 0], "it over and": [65535, 0], "over and over": [65535, 0], "and over again": [65535, 0], "over again in": [65535, 0], "again in his": [65535, 0], "in his mind": [65535, 0], "his mind and": [65535, 0], "mind and set": [65535, 0], "and set it": [65535, 0], "set it up": [65535, 0], "it up in": [65535, 0], "up in new": [65535, 0], "in new and": [65535, 0], "new and varied": [65535, 0], "and varied lights": [65535, 0], "varied lights till": [65535, 0], "lights till he": [65535, 0], "till he wore": [65535, 0], "he wore it": [65535, 0], "wore it threadbare": [65535, 0], "it threadbare at": [65535, 0], "threadbare at last": [65535, 0], "last he rose": [65535, 0], "he rose up": [65535, 0], "rose up sighing": [65535, 0], "up sighing and": [65535, 0], "sighing and departed": [65535, 0], "and departed in": [65535, 0], "departed in the": [65535, 0], "in the darkness": [65535, 0], "the darkness about": [65535, 0], "darkness about half": [65535, 0], "half past nine": [65535, 0], "past nine or": [65535, 0], "nine or ten": [65535, 0], "or ten o'clock": [65535, 0], "ten o'clock he": [65535, 0], "o'clock he came": [65535, 0], "he came along": [65535, 0], "came along the": [65535, 0], "along the deserted": [65535, 0], "the deserted street": [65535, 0], "deserted street to": [65535, 0], "street to where": [65535, 0], "to where the": [65535, 0], "where the adored": [65535, 0], "the adored unknown": [65535, 0], "adored unknown lived": [65535, 0], "unknown lived he": [65535, 0], "lived he paused": [65535, 0], "he paused a": [65535, 0], "paused a moment": [65535, 0], "a moment no": [65535, 0], "moment no sound": [65535, 0], "no sound fell": [65535, 0], "sound fell upon": [65535, 0], "fell upon his": [65535, 0], "upon his listening": [65535, 0], "his listening ear": [65535, 0], "listening ear a": [65535, 0], "ear a candle": [65535, 0], "a candle was": [65535, 0], "candle was casting": [65535, 0], "was casting a": [65535, 0], "casting a dull": [65535, 0], "a dull glow": [65535, 0], "dull glow upon": [65535, 0], "glow upon the": [65535, 0], "upon the curtain": [65535, 0], "curtain of a": [65535, 0], "of a second": [65535, 0], "a second story": [65535, 0], "second story window": [65535, 0], "story window was": [65535, 0], "window was the": [65535, 0], "was the sacred": [65535, 0], "the sacred presence": [65535, 0], "sacred presence there": [65535, 0], "presence there he": [65535, 0], "there he climbed": [65535, 0], "he climbed the": [65535, 0], "climbed the fence": [65535, 0], "the fence threaded": [65535, 0], "fence threaded his": [65535, 0], "threaded his stealthy": [65535, 0], "his stealthy way": [65535, 0], "stealthy way through": [65535, 0], "through the plants": [65535, 0], "the plants till": [65535, 0], "plants till he": [65535, 0], "till he stood": [65535, 0], "he stood under": [65535, 0], "stood under that": [65535, 0], "under that window": [65535, 0], "that window he": [65535, 0], "window he looked": [65535, 0], "he looked up": [65535, 0], "looked up at": [65535, 0], "up at it": [65535, 0], "at it long": [65535, 0], "it long and": [65535, 0], "long and with": [65535, 0], "and with emotion": [65535, 0], "with emotion then": [65535, 0], "emotion then he": [65535, 0], "then he laid": [65535, 0], "he laid him": [65535, 0], "laid him down": [65535, 0], "him down on": [65535, 0], "down on the": [65535, 0], "the ground under": [65535, 0], "ground under it": [65535, 0], "under it disposing": [65535, 0], "it disposing himself": [65535, 0], "disposing himself upon": [65535, 0], "himself upon his": [65535, 0], "upon his back": [65535, 0], "his back with": [65535, 0], "back with his": [65535, 0], "his hands clasped": [65535, 0], "hands clasped upon": [65535, 0], "clasped upon his": [65535, 0], "upon his breast": [65535, 0], "his breast and": [65535, 0], "breast and holding": [65535, 0], "and holding his": [65535, 0], "holding his poor": [65535, 0], "his poor wilted": [65535, 0], "poor wilted flower": [65535, 0], "wilted flower and": [65535, 0], "flower and thus": [65535, 0], "and thus he": [65535, 0], "thus he would": [65535, 0], "he would die": [65535, 0], "would die out": [65535, 0], "die out in": [65535, 0], "in the cold": [32706, 32829], "the cold world": [65535, 0], "cold world with": [65535, 0], "world with no": [65535, 0], "with no shelter": [65535, 0], "no shelter over": [65535, 0], "shelter over his": [65535, 0], "over his homeless": [65535, 0], "his homeless head": [65535, 0], "homeless head no": [65535, 0], "head no friendly": [65535, 0], "no friendly hand": [65535, 0], "friendly hand to": [65535, 0], "hand to wipe": [65535, 0], "to wipe the": [65535, 0], "wipe the death": [65535, 0], "the death damps": [65535, 0], "death damps from": [65535, 0], "damps from his": [65535, 0], "from his brow": [65535, 0], "his brow no": [65535, 0], "brow no loving": [65535, 0], "no loving face": [65535, 0], "loving face to": [65535, 0], "face to bend": [65535, 0], "to bend pityingly": [65535, 0], "bend pityingly over": [65535, 0], "pityingly over him": [65535, 0], "over him when": [65535, 0], "him when the": [65535, 0], "when the great": [65535, 0], "the great agony": [65535, 0], "great agony came": [65535, 0], "agony came and": [65535, 0], "came and thus": [65535, 0], "and thus she": [65535, 0], "thus she would": [65535, 0], "she would see": [65535, 0], "would see him": [65535, 0], "see him when": [65535, 0], "him when she": [65535, 0], "when she looked": [65535, 0], "she looked out": [65535, 0], "looked out upon": [65535, 0], "out upon the": [65535, 0], "upon the glad": [65535, 0], "the glad morning": [65535, 0], "glad morning and": [65535, 0], "morning and oh": [65535, 0], "and oh would": [65535, 0], "oh would she": [65535, 0], "would she drop": [65535, 0], "she drop one": [65535, 0], "drop one little": [65535, 0], "one little tear": [65535, 0], "little tear upon": [65535, 0], "tear upon his": [65535, 0], "upon his poor": [65535, 0], "his poor lifeless": [65535, 0], "poor lifeless form": [65535, 0], "lifeless form would": [65535, 0], "form would she": [65535, 0], "would she heave": [65535, 0], "she heave one": [65535, 0], "heave one little": [65535, 0], "one little sigh": [65535, 0], "little sigh to": [65535, 0], "sigh to see": [65535, 0], "to see a": [21790, 43745], "see a bright": [65535, 0], "a bright young": [65535, 0], "bright young life": [65535, 0], "young life so": [65535, 0], "life so rudely": [65535, 0], "so rudely blighted": [65535, 0], "rudely blighted so": [65535, 0], "blighted so untimely": [65535, 0], "so untimely cut": [65535, 0], "untimely cut down": [65535, 0], "cut down the": [65535, 0], "down the window": [65535, 0], "the window went": [65535, 0], "window went up": [65535, 0], "went up a": [65535, 0], "up a maid": [65535, 0], "a maid servant's": [65535, 0], "maid servant's discordant": [65535, 0], "servant's discordant voice": [65535, 0], "discordant voice profaned": [65535, 0], "voice profaned the": [65535, 0], "profaned the holy": [65535, 0], "the holy calm": [65535, 0], "holy calm and": [65535, 0], "calm and a": [65535, 0], "and a deluge": [65535, 0], "a deluge of": [65535, 0], "deluge of water": [65535, 0], "of water drenched": [65535, 0], "water drenched the": [65535, 0], "drenched the prone": [65535, 0], "the prone martyr's": [65535, 0], "prone martyr's remains": [65535, 0], "martyr's remains the": [65535, 0], "remains the strangling": [65535, 0], "the strangling hero": [65535, 0], "strangling hero sprang": [65535, 0], "hero sprang up": [65535, 0], "sprang up with": [65535, 0], "up with a": [65535, 0], "with a relieving": [65535, 0], "a relieving snort": [65535, 0], "relieving snort there": [65535, 0], "snort there was": [65535, 0], "was a whiz": [65535, 0], "a whiz as": [65535, 0], "whiz as of": [65535, 0], "as of a": [65535, 0], "of a missile": [65535, 0], "a missile in": [65535, 0], "missile in the": [65535, 0], "the air mingled": [65535, 0], "air mingled with": [65535, 0], "mingled with the": [32706, 32829], "with the murmur": [65535, 0], "murmur of a": [65535, 0], "of a curse": [65535, 0], "a curse a": [65535, 0], "curse a sound": [65535, 0], "a sound as": [65535, 0], "sound as of": [65535, 0], "as of shivering": [65535, 0], "of shivering glass": [65535, 0], "shivering glass followed": [65535, 0], "glass followed and": [65535, 0], "followed and a": [65535, 0], "and a small": [65535, 0], "a small vague": [65535, 0], "small vague form": [65535, 0], "vague form went": [65535, 0], "form went over": [65535, 0], "went over the": [65535, 0], "fence and shot": [65535, 0], "and shot away": [65535, 0], "shot away in": [65535, 0], "away in the": [65535, 0], "in the gloom": [65535, 0], "the gloom not": [65535, 0], "gloom not long": [65535, 0], "not long after": [65535, 0], "long after as": [65535, 0], "after as tom": [65535, 0], "as tom all": [65535, 0], "tom all undressed": [65535, 0], "all undressed for": [65535, 0], "undressed for bed": [65535, 0], "for bed was": [65535, 0], "bed was surveying": [65535, 0], "was surveying his": [65535, 0], "surveying his drenched": [65535, 0], "his drenched garments": [65535, 0], "drenched garments by": [65535, 0], "garments by the": [65535, 0], "by the light": [65535, 0], "the light of": [65535, 0], "light of a": [65535, 0], "of a tallow": [65535, 0], "a tallow dip": [65535, 0], "tallow dip sid": [65535, 0], "dip sid woke": [65535, 0], "sid woke up": [65535, 0], "woke up but": [65535, 0], "up but if": [65535, 0], "but if he": [65535, 0], "he had any": [65535, 0], "had any dim": [65535, 0], "any dim idea": [65535, 0], "dim idea of": [65535, 0], "idea of making": [65535, 0], "of making any": [65535, 0], "making any references": [65535, 0], "any references to": [65535, 0], "references to allusions": [65535, 0], "to allusions he": [65535, 0], "allusions he thought": [65535, 0], "he thought better": [65535, 0], "thought better of": [65535, 0], "better of it": [65535, 0], "it and held": [65535, 0], "and held his": [65535, 0], "held his peace": [65535, 0], "his peace for": [65535, 0], "peace for there": [65535, 0], "there was danger": [65535, 0], "was danger in": [65535, 0], "danger in tom's": [65535, 0], "in tom's eye": [65535, 0], "tom's eye tom": [65535, 0], "eye tom turned": [65535, 0], "tom turned in": [65535, 0], "turned in without": [65535, 0], "in without the": [65535, 0], "without the added": [65535, 0], "the added vexation": [65535, 0], "added vexation of": [65535, 0], "vexation of prayers": [65535, 0], "of prayers and": [65535, 0], "prayers and sid": [65535, 0], "and sid made": [65535, 0], "sid made mental": [65535, 0], "made mental note": [65535, 0], "mental note of": [65535, 0], "note of the": [65535, 0], "of the omission": [65535, 0], "tom presented himself before": [65535, 0], "presented himself before aunt": [65535, 0], "himself before aunt polly": [65535, 0], "before aunt polly who": [65535, 0], "aunt polly who was": [65535, 0], "polly who was sitting": [65535, 0], "who was sitting by": [65535, 0], "was sitting by an": [65535, 0], "sitting by an open": [65535, 0], "by an open window": [65535, 0], "an open window in": [65535, 0], "open window in a": [65535, 0], "window in a pleasant": [65535, 0], "in a pleasant rearward": [65535, 0], "a pleasant rearward apartment": [65535, 0], "pleasant rearward apartment which": [65535, 0], "rearward apartment which was": [65535, 0], "apartment which was bedroom": [65535, 0], "which was bedroom breakfast": [65535, 0], "was bedroom breakfast room": [65535, 0], "bedroom breakfast room dining": [65535, 0], "breakfast room dining room": [65535, 0], "room dining room and": [65535, 0], "dining room and library": [65535, 0], "room and library combined": [65535, 0], "and library combined the": [65535, 0], "library combined the balmy": [65535, 0], "combined the balmy summer": [65535, 0], "the balmy summer air": [65535, 0], "balmy summer air the": [65535, 0], "summer air the restful": [65535, 0], "air the restful quiet": [65535, 0], "the restful quiet the": [65535, 0], "restful quiet the odor": [65535, 0], "quiet the odor of": [65535, 0], "the odor of the": [65535, 0], "odor of the flowers": [65535, 0], "of the flowers and": [65535, 0], "the flowers and the": [65535, 0], "flowers and the drowsing": [65535, 0], "and the drowsing murmur": [65535, 0], "the drowsing murmur of": [65535, 0], "drowsing murmur of the": [65535, 0], "murmur of the bees": [65535, 0], "of the bees had": [65535, 0], "the bees had had": [65535, 0], "bees had had their": [65535, 0], "had had their effect": [65535, 0], "had their effect and": [65535, 0], "their effect and she": [65535, 0], "effect and she was": [65535, 0], "and she was nodding": [65535, 0], "she was nodding over": [65535, 0], "was nodding over her": [65535, 0], "nodding over her knitting": [65535, 0], "over her knitting for": [65535, 0], "her knitting for she": [65535, 0], "knitting for she had": [65535, 0], "for she had no": [65535, 0], "she had no company": [65535, 0], "had no company but": [65535, 0], "no company but the": [65535, 0], "company but the cat": [65535, 0], "but the cat and": [65535, 0], "the cat and it": [65535, 0], "cat and it was": [65535, 0], "and it was asleep": [65535, 0], "it was asleep in": [65535, 0], "was asleep in her": [65535, 0], "asleep in her lap": [65535, 0], "in her lap her": [65535, 0], "her lap her spectacles": [65535, 0], "lap her spectacles were": [65535, 0], "her spectacles were propped": [65535, 0], "spectacles were propped up": [65535, 0], "were propped up on": [65535, 0], "propped up on her": [65535, 0], "up on her gray": [65535, 0], "on her gray head": [65535, 0], "her gray head for": [65535, 0], "gray head for safety": [65535, 0], "head for safety she": [65535, 0], "for safety she had": [65535, 0], "safety she had thought": [65535, 0], "she had thought that": [65535, 0], "had thought that of": [65535, 0], "thought that of course": [65535, 0], "that of course tom": [65535, 0], "of course tom had": [65535, 0], "course tom had deserted": [65535, 0], "tom had deserted long": [65535, 0], "had deserted long ago": [65535, 0], "deserted long ago and": [65535, 0], "long ago and she": [65535, 0], "ago and she wondered": [65535, 0], "and she wondered at": [65535, 0], "she wondered at seeing": [65535, 0], "wondered at seeing him": [65535, 0], "at seeing him place": [65535, 0], "seeing him place himself": [65535, 0], "him place himself in": [65535, 0], "place himself in her": [65535, 0], "himself in her power": [65535, 0], "in her power again": [65535, 0], "her power again in": [65535, 0], "power again in this": [65535, 0], "again in this intrepid": [65535, 0], "in this intrepid way": [65535, 0], "this intrepid way he": [65535, 0], "intrepid way he said": [65535, 0], "way he said mayn't": [65535, 0], "he said mayn't i": [65535, 0], "said mayn't i go": [65535, 0], "mayn't i go and": [65535, 0], "i go and play": [65535, 0], "go and play now": [65535, 0], "and play now aunt": [65535, 0], "play now aunt what": [65535, 0], "now aunt what a'ready": [65535, 0], "aunt what a'ready how": [65535, 0], "what a'ready how much": [65535, 0], "a'ready how much have": [65535, 0], "how much have you": [65535, 0], "much have you done": [65535, 0], "have you done it's": [65535, 0], "you done it's all": [65535, 0], "done it's all done": [65535, 0], "it's all done aunt": [65535, 0], "all done aunt tom": [65535, 0], "done aunt tom don't": [65535, 0], "aunt tom don't lie": [65535, 0], "tom don't lie to": [65535, 0], "don't lie to me": [65535, 0], "lie to me i": [65535, 0], "to me i can't": [65535, 0], "me i can't bear": [65535, 0], "i can't bear it": [65535, 0], "can't bear it i": [65535, 0], "bear it i ain't": [65535, 0], "it i ain't aunt": [65535, 0], "i ain't aunt it": [65535, 0], "ain't aunt it is": [65535, 0], "aunt it is all": [65535, 0], "it is all done": [65535, 0], "is all done aunt": [65535, 0], "all done aunt polly": [65535, 0], "done aunt polly placed": [65535, 0], "aunt polly placed small": [65535, 0], "polly placed small trust": [65535, 0], "placed small trust in": [65535, 0], "small trust in such": [65535, 0], "trust in such evidence": [65535, 0], "in such evidence she": [65535, 0], "such evidence she went": [65535, 0], "evidence she went out": [65535, 0], "she went out to": [65535, 0], "went out to see": [65535, 0], "out to see for": [65535, 0], "to see for herself": [65535, 0], "see for herself and": [65535, 0], "for herself and she": [65535, 0], "herself and she would": [65535, 0], "and she would have": [65535, 0], "she would have been": [65535, 0], "would have been content": [65535, 0], "have been content to": [65535, 0], "been content to find": [65535, 0], "content to find twenty": [65535, 0], "to find twenty per": [65535, 0], "find twenty per cent": [65535, 0], "twenty per cent of": [65535, 0], "per cent of tom's": [65535, 0], "cent of tom's statement": [65535, 0], "of tom's statement true": [65535, 0], "tom's statement true when": [65535, 0], "statement true when she": [65535, 0], "true when she found": [65535, 0], "when she found the": [65535, 0], "she found the entire": [65535, 0], "found the entire fence": [65535, 0], "the entire fence whitewashed": [65535, 0], "entire fence whitewashed and": [65535, 0], "fence whitewashed and not": [65535, 0], "whitewashed and not only": [65535, 0], "and not only whitewashed": [65535, 0], "not only whitewashed but": [65535, 0], "only whitewashed but elaborately": [65535, 0], "whitewashed but elaborately coated": [65535, 0], "but elaborately coated and": [65535, 0], "elaborately coated and recoated": [65535, 0], "coated and recoated and": [65535, 0], "and recoated and even": [65535, 0], "recoated and even a": [65535, 0], "and even a streak": [65535, 0], "even a streak added": [65535, 0], "a streak added to": [65535, 0], "streak added to the": [65535, 0], "added to the ground": [65535, 0], "to the ground her": [65535, 0], "the ground her astonishment": [65535, 0], "ground her astonishment was": [65535, 0], "her astonishment was almost": [65535, 0], "astonishment was almost unspeakable": [65535, 0], "was almost unspeakable she": [65535, 0], "almost unspeakable she said": [65535, 0], "unspeakable she said well": [65535, 0], "she said well i": [65535, 0], "said well i never": [65535, 0], "well i never there's": [65535, 0], "i never there's no": [65535, 0], "never there's no getting": [65535, 0], "there's no getting round": [65535, 0], "no getting round it": [65535, 0], "getting round it you": [65535, 0], "round it you can": [65535, 0], "it you can work": [65535, 0], "you can work when": [65535, 0], "can work when you're": [65535, 0], "work when you're a": [65535, 0], "when you're a mind": [65535, 0], "you're a mind to": [65535, 0], "a mind to tom": [65535, 0], "mind to tom and": [65535, 0], "to tom and then": [65535, 0], "tom and then she": [65535, 0], "and then she diluted": [65535, 0], "then she diluted the": [65535, 0], "she diluted the compliment": [65535, 0], "diluted the compliment by": [65535, 0], "the compliment by adding": [65535, 0], "compliment by adding but": [65535, 0], "by adding but it's": [65535, 0], "adding but it's powerful": [65535, 0], "but it's powerful seldom": [65535, 0], "it's powerful seldom you're": [65535, 0], "powerful seldom you're a": [65535, 0], "seldom you're a mind": [65535, 0], "a mind to i'm": [65535, 0], "mind to i'm bound": [65535, 0], "to i'm bound to": [65535, 0], "i'm bound to say": [65535, 0], "bound to say well": [65535, 0], "to say well go": [65535, 0], "say well go 'long": [65535, 0], "well go 'long and": [65535, 0], "go 'long and play": [65535, 0], "'long and play but": [65535, 0], "and play but mind": [65535, 0], "play but mind you": [65535, 0], "but mind you get": [65535, 0], "mind you get back": [65535, 0], "you get back some": [65535, 0], "get back some time": [65535, 0], "back some time in": [65535, 0], "some time in a": [65535, 0], "time in a week": [65535, 0], "in a week or": [65535, 0], "a week or i'll": [65535, 0], "week or i'll tan": [65535, 0], "or i'll tan you": [65535, 0], "i'll tan you she": [65535, 0], "tan you she was": [65535, 0], "you she was so": [65535, 0], "she was so overcome": [65535, 0], "was so overcome by": [65535, 0], "so overcome by the": [65535, 0], "overcome by the splendor": [65535, 0], "by the splendor of": [65535, 0], "the splendor of his": [65535, 0], "splendor of his achievement": [65535, 0], "of his achievement that": [65535, 0], "his achievement that she": [65535, 0], "achievement that she took": [65535, 0], "that she took him": [65535, 0], "she took him into": [65535, 0], "took him into the": [65535, 0], "him into the closet": [65535, 0], "into the closet and": [65535, 0], "the closet and selected": [65535, 0], "closet and selected a": [65535, 0], "and selected a choice": [65535, 0], "selected a choice apple": [65535, 0], "a choice apple and": [65535, 0], "choice apple and delivered": [65535, 0], "apple and delivered it": [65535, 0], "and delivered it to": [65535, 0], "delivered it to him": [65535, 0], "it to him along": [65535, 0], "to him along with": [65535, 0], "him along with an": [65535, 0], "along with an improving": [65535, 0], "with an improving lecture": [65535, 0], "an improving lecture upon": [65535, 0], "improving lecture upon the": [65535, 0], "lecture upon the added": [65535, 0], "upon the added value": [65535, 0], "the added value and": [65535, 0], "added value and flavor": [65535, 0], "value and flavor a": [65535, 0], "and flavor a treat": [65535, 0], "flavor a treat took": [65535, 0], "a treat took to": [65535, 0], "treat took to itself": [65535, 0], "took to itself when": [65535, 0], "to itself when it": [65535, 0], "itself when it came": [65535, 0], "when it came without": [65535, 0], "it came without sin": [65535, 0], "came without sin through": [65535, 0], "without sin through virtuous": [65535, 0], "sin through virtuous effort": [65535, 0], "through virtuous effort and": [65535, 0], "virtuous effort and while": [65535, 0], "effort and while she": [65535, 0], "and while she closed": [65535, 0], "while she closed with": [65535, 0], "she closed with a": [65535, 0], "closed with a happy": [65535, 0], "with a happy scriptural": [65535, 0], "a happy scriptural flourish": [65535, 0], "happy scriptural flourish he": [65535, 0], "scriptural flourish he hooked": [65535, 0], "flourish he hooked a": [65535, 0], "he hooked a doughnut": [65535, 0], "hooked a doughnut then": [65535, 0], "a doughnut then he": [65535, 0], "doughnut then he skipped": [65535, 0], "then he skipped out": [65535, 0], "he skipped out and": [65535, 0], "skipped out and saw": [65535, 0], "out and saw sid": [65535, 0], "and saw sid just": [65535, 0], "saw sid just starting": [65535, 0], "sid just starting up": [65535, 0], "just starting up the": [65535, 0], "starting up the outside": [65535, 0], "up the outside stairway": [65535, 0], "the outside stairway that": [65535, 0], "outside stairway that led": [65535, 0], "stairway that led to": [65535, 0], "that led to the": [65535, 0], "led to the back": [65535, 0], "to the back rooms": [65535, 0], "the back rooms on": [65535, 0], "back rooms on the": [65535, 0], "rooms on the second": [65535, 0], "on the second floor": [65535, 0], "the second floor clods": [65535, 0], "second floor clods were": [65535, 0], "floor clods were handy": [65535, 0], "clods were handy and": [65535, 0], "were handy and the": [65535, 0], "handy and the air": [65535, 0], "and the air was": [65535, 0], "the air was full": [65535, 0], "air was full of": [65535, 0], "was full of them": [65535, 0], "full of them in": [65535, 0], "of them in a": [65535, 0], "them in a twinkling": [65535, 0], "in a twinkling they": [65535, 0], "a twinkling they raged": [65535, 0], "twinkling they raged around": [65535, 0], "they raged around sid": [65535, 0], "raged around sid like": [65535, 0], "around sid like a": [65535, 0], "sid like a hail": [65535, 0], "like a hail storm": [65535, 0], "a hail storm and": [65535, 0], "hail storm and before": [65535, 0], "storm and before aunt": [65535, 0], "and before aunt polly": [65535, 0], "before aunt polly could": [65535, 0], "aunt polly could collect": [65535, 0], "polly could collect her": [65535, 0], "could collect her surprised": [65535, 0], "collect her surprised faculties": [65535, 0], "her surprised faculties and": [65535, 0], "surprised faculties and sally": [65535, 0], "faculties and sally to": [65535, 0], "and sally to the": [65535, 0], "sally to the rescue": [65535, 0], "to the rescue six": [65535, 0], "the rescue six or": [65535, 0], "rescue six or seven": [65535, 0], "six or seven clods": [65535, 0], "or seven clods had": [65535, 0], "seven clods had taken": [65535, 0], "clods had taken personal": [65535, 0], "had taken personal effect": [65535, 0], "taken personal effect and": [65535, 0], "personal effect and tom": [65535, 0], "effect and tom was": [65535, 0], "and tom was over": [65535, 0], "tom was over the": [65535, 0], "was over the fence": [65535, 0], "over the fence and": [65535, 0], "the fence and gone": [65535, 0], "fence and gone there": [65535, 0], "and gone there was": [65535, 0], "gone there was a": [65535, 0], "there was a gate": [65535, 0], "was a gate but": [65535, 0], "a gate but as": [65535, 0], "gate but as a": [65535, 0], "but as a general": [65535, 0], "as a general thing": [65535, 0], "a general thing he": [65535, 0], "general thing he was": [65535, 0], "thing he was too": [65535, 0], "he was too crowded": [65535, 0], "was too crowded for": [65535, 0], "too crowded for time": [65535, 0], "crowded for time to": [65535, 0], "for time to make": [65535, 0], "time to make use": [65535, 0], "to make use of": [65535, 0], "make use of it": [65535, 0], "use of it his": [65535, 0], "of it his soul": [65535, 0], "it his soul was": [65535, 0], "his soul was at": [65535, 0], "soul was at peace": [65535, 0], "was at peace now": [65535, 0], "at peace now that": [65535, 0], "peace now that he": [65535, 0], "now that he had": [65535, 0], "that he had settled": [65535, 0], "he had settled with": [65535, 0], "had settled with sid": [65535, 0], "settled with sid for": [65535, 0], "with sid for calling": [65535, 0], "sid for calling attention": [65535, 0], "for calling attention to": [65535, 0], "calling attention to his": [65535, 0], "attention to his black": [65535, 0], "to his black thread": [65535, 0], "his black thread and": [65535, 0], "black thread and getting": [65535, 0], "thread and getting him": [65535, 0], "and getting him into": [65535, 0], "getting him into trouble": [65535, 0], "him into trouble tom": [65535, 0], "into trouble tom skirted": [65535, 0], "trouble tom skirted the": [65535, 0], "tom skirted the block": [65535, 0], "skirted the block and": [65535, 0], "the block and came": [65535, 0], "block and came round": [65535, 0], "and came round into": [65535, 0], "came round into a": [65535, 0], "round into a muddy": [65535, 0], "into a muddy alley": [65535, 0], "a muddy alley that": [65535, 0], "muddy alley that led": [65535, 0], "alley that led by": [65535, 0], "that led by the": [65535, 0], "led by the back": [65535, 0], "by the back of": [65535, 0], "the back of his": [65535, 0], "back of his aunt's": [65535, 0], "of his aunt's cowstable": [65535, 0], "his aunt's cowstable he": [65535, 0], "aunt's cowstable he presently": [65535, 0], "cowstable he presently got": [65535, 0], "he presently got safely": [65535, 0], "presently got safely beyond": [65535, 0], "got safely beyond the": [65535, 0], "safely beyond the reach": [65535, 0], "beyond the reach of": [65535, 0], "the reach of capture": [65535, 0], "reach of capture and": [65535, 0], "of capture and punishment": [65535, 0], "capture and punishment and": [65535, 0], "and punishment and hastened": [65535, 0], "punishment and hastened toward": [65535, 0], "and hastened toward the": [65535, 0], "hastened toward the public": [65535, 0], "toward the public square": [65535, 0], "the public square of": [65535, 0], "public square of the": [65535, 0], "square of the village": [65535, 0], "of the village where": [65535, 0], "the village where two": [65535, 0], "village where two military": [65535, 0], "where two military companies": [65535, 0], "two military companies of": [65535, 0], "military companies of boys": [65535, 0], "companies of boys had": [65535, 0], "of boys had met": [65535, 0], "boys had met for": [65535, 0], "had met for conflict": [65535, 0], "met for conflict according": [65535, 0], "for conflict according to": [65535, 0], "conflict according to previous": [65535, 0], "according to previous appointment": [65535, 0], "to previous appointment tom": [65535, 0], "previous appointment tom was": [65535, 0], "appointment tom was general": [65535, 0], "tom was general of": [65535, 0], "was general of one": [65535, 0], "general of one of": [65535, 0], "one of these armies": [65535, 0], "of these armies joe": [65535, 0], "these armies joe harper": [65535, 0], "armies joe harper a": [65535, 0], "joe harper a bosom": [65535, 0], "harper a bosom friend": [65535, 0], "a bosom friend general": [65535, 0], "bosom friend general of": [65535, 0], "friend general of the": [65535, 0], "general of the other": [65535, 0], "of the other these": [65535, 0], "the other these two": [65535, 0], "other these two great": [65535, 0], "these two great commanders": [65535, 0], "two great commanders did": [65535, 0], "great commanders did not": [65535, 0], "commanders did not condescend": [65535, 0], "did not condescend to": [65535, 0], "not condescend to fight": [65535, 0], "condescend to fight in": [65535, 0], "to fight in person": [65535, 0], "fight in person that": [65535, 0], "in person that being": [65535, 0], "person that being better": [65535, 0], "that being better suited": [65535, 0], "being better suited to": [65535, 0], "better suited to the": [65535, 0], "suited to the still": [65535, 0], "to the still smaller": [65535, 0], "the still smaller fry": [65535, 0], "still smaller fry but": [65535, 0], "smaller fry but sat": [65535, 0], "fry but sat together": [65535, 0], "but sat together on": [65535, 0], "sat together on an": [65535, 0], "together on an eminence": [65535, 0], "on an eminence and": [65535, 0], "an eminence and conducted": [65535, 0], "eminence and conducted the": [65535, 0], "and conducted the field": [65535, 0], "conducted the field operations": [65535, 0], "the field operations by": [65535, 0], "field operations by orders": [65535, 0], "operations by orders delivered": [65535, 0], "by orders delivered through": [65535, 0], "orders delivered through aides": [65535, 0], "delivered through aides de": [65535, 0], "through aides de camp": [65535, 0], "aides de camp tom's": [65535, 0], "de camp tom's army": [65535, 0], "camp tom's army won": [65535, 0], "tom's army won a": [65535, 0], "army won a great": [65535, 0], "won a great victory": [65535, 0], "a great victory after": [65535, 0], "great victory after a": [65535, 0], "victory after a long": [65535, 0], "after a long and": [65535, 0], "a long and hard": [65535, 0], "long and hard fought": [65535, 0], "and hard fought battle": [65535, 0], "hard fought battle then": [65535, 0], "fought battle then the": [65535, 0], "battle then the dead": [65535, 0], "then the dead were": [65535, 0], "the dead were counted": [65535, 0], "dead were counted prisoners": [65535, 0], "were counted prisoners exchanged": [65535, 0], "counted prisoners exchanged the": [65535, 0], "prisoners exchanged the terms": [65535, 0], "exchanged the terms of": [65535, 0], "the terms of the": [65535, 0], "terms of the next": [65535, 0], "of the next disagreement": [65535, 0], "the next disagreement agreed": [65535, 0], "next disagreement agreed upon": [65535, 0], "disagreement agreed upon and": [65535, 0], "agreed upon and the": [65535, 0], "upon and the day": [65535, 0], "and the day for": [65535, 0], "the day for the": [65535, 0], "day for the necessary": [65535, 0], "for the necessary battle": [65535, 0], "the necessary battle appointed": [65535, 0], "necessary battle appointed after": [65535, 0], "battle appointed after which": [65535, 0], "appointed after which the": [65535, 0], "after which the armies": [65535, 0], "which the armies fell": [65535, 0], "the armies fell into": [65535, 0], "armies fell into line": [65535, 0], "fell into line and": [65535, 0], "into line and marched": [65535, 0], "line and marched away": [65535, 0], "and marched away and": [65535, 0], "marched away and tom": [65535, 0], "away and tom turned": [65535, 0], "and tom turned homeward": [65535, 0], "tom turned homeward alone": [65535, 0], "turned homeward alone as": [65535, 0], "homeward alone as he": [65535, 0], "alone as he was": [65535, 0], "as he was passing": [65535, 0], "he was passing by": [65535, 0], "was passing by the": [65535, 0], "passing by the house": [65535, 0], "by the house where": [65535, 0], "the house where jeff": [65535, 0], "house where jeff thatcher": [65535, 0], "where jeff thatcher lived": [65535, 0], "jeff thatcher lived he": [65535, 0], "thatcher lived he saw": [65535, 0], "lived he saw a": [65535, 0], "he saw a new": [65535, 0], "saw a new girl": [65535, 0], "a new girl in": [65535, 0], "new girl in the": [65535, 0], "girl in the garden": [65535, 0], "in the garden a": [65535, 0], "the garden a lovely": [65535, 0], "garden a lovely little": [65535, 0], "a lovely little blue": [65535, 0], "lovely little blue eyed": [65535, 0], "little blue eyed creature": [65535, 0], "blue eyed creature with": [65535, 0], "eyed creature with yellow": [65535, 0], "creature with yellow hair": [65535, 0], "with yellow hair plaited": [65535, 0], "yellow hair plaited into": [65535, 0], "hair plaited into two": [65535, 0], "plaited into two long": [65535, 0], "into two long tails": [65535, 0], "two long tails white": [65535, 0], "long tails white summer": [65535, 0], "tails white summer frock": [65535, 0], "white summer frock and": [65535, 0], "summer frock and embroidered": [65535, 0], "frock and embroidered pantalettes": [65535, 0], "and embroidered pantalettes the": [65535, 0], "embroidered pantalettes the fresh": [65535, 0], "pantalettes the fresh crowned": [65535, 0], "the fresh crowned hero": [65535, 0], "fresh crowned hero fell": [65535, 0], "crowned hero fell without": [65535, 0], "hero fell without firing": [65535, 0], "fell without firing a": [65535, 0], "without firing a shot": [65535, 0], "firing a shot a": [65535, 0], "a shot a certain": [65535, 0], "shot a certain amy": [65535, 0], "a certain amy lawrence": [65535, 0], "certain amy lawrence vanished": [65535, 0], "amy lawrence vanished out": [65535, 0], "lawrence vanished out of": [65535, 0], "vanished out of his": [65535, 0], "out of his heart": [65535, 0], "of his heart and": [65535, 0], "his heart and left": [65535, 0], "heart and left not": [65535, 0], "and left not even": [65535, 0], "left not even a": [65535, 0], "not even a memory": [65535, 0], "even a memory of": [65535, 0], "a memory of herself": [65535, 0], "memory of herself behind": [65535, 0], "of herself behind he": [65535, 0], "herself behind he had": [65535, 0], "behind he had thought": [65535, 0], "he had thought he": [65535, 0], "had thought he loved": [65535, 0], "thought he loved her": [65535, 0], "he loved her to": [65535, 0], "loved her to distraction": [65535, 0], "her to distraction he": [65535, 0], "to distraction he had": [65535, 0], "distraction he had regarded": [65535, 0], "he had regarded his": [65535, 0], "had regarded his passion": [65535, 0], "regarded his passion as": [65535, 0], "his passion as adoration": [65535, 0], "passion as adoration and": [65535, 0], "as adoration and behold": [65535, 0], "adoration and behold it": [65535, 0], "and behold it was": [65535, 0], "behold it was only": [65535, 0], "it was only a": [65535, 0], "was only a poor": [65535, 0], "only a poor little": [65535, 0], "a poor little evanescent": [65535, 0], "poor little evanescent partiality": [65535, 0], "little evanescent partiality he": [65535, 0], "evanescent partiality he had": [65535, 0], "partiality he had been": [65535, 0], "he had been months": [65535, 0], "had been months winning": [65535, 0], "been months winning her": [65535, 0], "months winning her she": [65535, 0], "winning her she had": [65535, 0], "her she had confessed": [65535, 0], "she had confessed hardly": [65535, 0], "had confessed hardly a": [65535, 0], "confessed hardly a week": [65535, 0], "hardly a week ago": [65535, 0], "a week ago he": [65535, 0], "week ago he had": [65535, 0], "ago he had been": [65535, 0], "he had been the": [65535, 0], "had been the happiest": [65535, 0], "been the happiest and": [65535, 0], "the happiest and the": [65535, 0], "happiest and the proudest": [65535, 0], "and the proudest boy": [65535, 0], "the proudest boy in": [65535, 0], "proudest boy in the": [65535, 0], "boy in the world": [65535, 0], "in the world only": [65535, 0], "the world only seven": [65535, 0], "world only seven short": [65535, 0], "only seven short days": [65535, 0], "seven short days and": [65535, 0], "short days and here": [65535, 0], "days and here in": [65535, 0], "and here in one": [65535, 0], "here in one instant": [65535, 0], "in one instant of": [65535, 0], "one instant of time": [65535, 0], "instant of time she": [65535, 0], "of time she had": [65535, 0], "time she had gone": [65535, 0], "she had gone out": [65535, 0], "had gone out of": [65535, 0], "gone out of his": [65535, 0], "of his heart like": [65535, 0], "his heart like a": [65535, 0], "heart like a casual": [65535, 0], "like a casual stranger": [65535, 0], "a casual stranger whose": [65535, 0], "casual stranger whose visit": [65535, 0], "stranger whose visit is": [65535, 0], "whose visit is done": [65535, 0], "visit is done he": [65535, 0], "is done he worshipped": [65535, 0], "done he worshipped this": [65535, 0], "he worshipped this new": [65535, 0], "worshipped this new angel": [65535, 0], "this new angel with": [65535, 0], "new angel with furtive": [65535, 0], "angel with furtive eye": [65535, 0], "with furtive eye till": [65535, 0], "furtive eye till he": [65535, 0], "eye till he saw": [65535, 0], "till he saw that": [65535, 0], "he saw that she": [65535, 0], "saw that she had": [65535, 0], "she had discovered him": [65535, 0], "had discovered him then": [65535, 0], "discovered him then he": [65535, 0], "him then he pretended": [65535, 0], "then he pretended he": [65535, 0], "he pretended he did": [65535, 0], "pretended he did not": [65535, 0], "did not know she": [65535, 0], "not know she was": [65535, 0], "know she was present": [65535, 0], "she was present and": [65535, 0], "was present and began": [65535, 0], "present and began to": [65535, 0], "and began to show": [65535, 0], "began to show off": [65535, 0], "to show off in": [65535, 0], "show off in all": [65535, 0], "off in all sorts": [65535, 0], "in all sorts of": [65535, 0], "all sorts of absurd": [65535, 0], "sorts of absurd boyish": [65535, 0], "of absurd boyish ways": [65535, 0], "absurd boyish ways in": [65535, 0], "boyish ways in order": [65535, 0], "ways in order to": [65535, 0], "in order to win": [65535, 0], "order to win her": [65535, 0], "to win her admiration": [65535, 0], "win her admiration he": [65535, 0], "her admiration he kept": [65535, 0], "admiration he kept up": [65535, 0], "he kept up this": [65535, 0], "kept up this grotesque": [65535, 0], "up this grotesque foolishness": [65535, 0], "this grotesque foolishness for": [65535, 0], "grotesque foolishness for some": [65535, 0], "foolishness for some time": [65535, 0], "for some time but": [65535, 0], "some time but by": [65535, 0], "time but by and": [65535, 0], "but by and by": [32706, 32829], "by and by while": [65535, 0], "and by while he": [65535, 0], "by while he was": [65535, 0], "while he was in": [65535, 0], "he was in the": [65535, 0], "was in the midst": [65535, 0], "the midst of some": [65535, 0], "midst of some dangerous": [65535, 0], "of some dangerous gymnastic": [65535, 0], "some dangerous gymnastic performances": [65535, 0], "dangerous gymnastic performances he": [65535, 0], "gymnastic performances he glanced": [65535, 0], "performances he glanced aside": [65535, 0], "he glanced aside and": [65535, 0], "glanced aside and saw": [65535, 0], "aside and saw that": [65535, 0], "and saw that the": [65535, 0], "saw that the little": [65535, 0], "that the little girl": [65535, 0], "the little girl was": [65535, 0], "little girl was wending": [65535, 0], "girl was wending her": [65535, 0], "was wending her way": [65535, 0], "wending her way toward": [65535, 0], "her way toward the": [65535, 0], "way toward the house": [65535, 0], "toward the house tom": [65535, 0], "the house tom came": [65535, 0], "house tom came up": [65535, 0], "tom came up to": [65535, 0], "came up to the": [65535, 0], "up to the fence": [65535, 0], "to the fence and": [65535, 0], "the fence and leaned": [65535, 0], "fence and leaned on": [65535, 0], "and leaned on it": [65535, 0], "leaned on it grieving": [65535, 0], "on it grieving and": [65535, 0], "it grieving and hoping": [65535, 0], "grieving and hoping she": [65535, 0], "and hoping she would": [65535, 0], "hoping she would tarry": [65535, 0], "she would tarry yet": [65535, 0], "would tarry yet awhile": [65535, 0], "tarry yet awhile longer": [65535, 0], "yet awhile longer she": [65535, 0], "awhile longer she halted": [65535, 0], "longer she halted a": [65535, 0], "she halted a moment": [65535, 0], "halted a moment on": [65535, 0], "a moment on the": [65535, 0], "moment on the steps": [65535, 0], "on the steps and": [65535, 0], "the steps and then": [65535, 0], "steps and then moved": [65535, 0], "and then moved toward": [65535, 0], "then moved toward the": [65535, 0], "moved toward the door": [65535, 0], "toward the door tom": [65535, 0], "the door tom heaved": [65535, 0], "door tom heaved a": [65535, 0], "tom heaved a great": [65535, 0], "heaved a great sigh": [65535, 0], "a great sigh as": [65535, 0], "great sigh as she": [65535, 0], "sigh as she put": [65535, 0], "as she put her": [65535, 0], "she put her foot": [65535, 0], "put her foot on": [65535, 0], "her foot on the": [65535, 0], "foot on the threshold": [65535, 0], "on the threshold but": [65535, 0], "the threshold but his": [65535, 0], "threshold but his face": [65535, 0], "but his face lit": [65535, 0], "his face lit up": [65535, 0], "face lit up right": [65535, 0], "lit up right away": [65535, 0], "up right away for": [65535, 0], "right away for she": [65535, 0], "away for she tossed": [65535, 0], "for she tossed a": [65535, 0], "she tossed a pansy": [65535, 0], "tossed a pansy over": [65535, 0], "a pansy over the": [65535, 0], "pansy over the fence": [65535, 0], "over the fence a": [65535, 0], "the fence a moment": [65535, 0], "fence a moment before": [65535, 0], "a moment before she": [65535, 0], "moment before she disappeared": [65535, 0], "before she disappeared the": [65535, 0], "she disappeared the boy": [65535, 0], "disappeared the boy ran": [65535, 0], "the boy ran around": [65535, 0], "boy ran around and": [65535, 0], "ran around and stopped": [65535, 0], "around and stopped within": [65535, 0], "and stopped within a": [65535, 0], "stopped within a foot": [65535, 0], "within a foot or": [65535, 0], "a foot or two": [65535, 0], "foot or two of": [65535, 0], "or two of the": [65535, 0], "two of the flower": [65535, 0], "of the flower and": [65535, 0], "the flower and then": [65535, 0], "flower and then shaded": [65535, 0], "and then shaded his": [65535, 0], "then shaded his eyes": [65535, 0], "shaded his eyes with": [65535, 0], "his eyes with his": [65535, 0], "eyes with his hand": [65535, 0], "with his hand and": [65535, 0], "his hand and began": [65535, 0], "hand and began to": [65535, 0], "and began to look": [65535, 0], "began to look down": [65535, 0], "to look down street": [65535, 0], "look down street as": [65535, 0], "down street as if": [65535, 0], "street as if he": [65535, 0], "as if he had": [65535, 0], "if he had discovered": [65535, 0], "he had discovered something": [65535, 0], "had discovered something of": [65535, 0], "discovered something of interest": [65535, 0], "something of interest going": [65535, 0], "of interest going on": [65535, 0], "interest going on in": [65535, 0], "going on in that": [65535, 0], "on in that direction": [65535, 0], "in that direction presently": [65535, 0], "that direction presently he": [65535, 0], "direction presently he picked": [65535, 0], "presently he picked up": [65535, 0], "he picked up a": [65535, 0], "picked up a straw": [65535, 0], "up a straw and": [65535, 0], "a straw and began": [65535, 0], "straw and began trying": [65535, 0], "and began trying to": [65535, 0], "began trying to balance": [65535, 0], "trying to balance it": [65535, 0], "to balance it on": [65535, 0], "balance it on his": [65535, 0], "it on his nose": [65535, 0], "on his nose with": [65535, 0], "his nose with his": [65535, 0], "nose with his head": [65535, 0], "with his head tilted": [65535, 0], "his head tilted far": [65535, 0], "head tilted far back": [65535, 0], "tilted far back and": [65535, 0], "far back and as": [65535, 0], "back and as he": [65535, 0], "and as he moved": [65535, 0], "as he moved from": [65535, 0], "he moved from side": [65535, 0], "moved from side to": [65535, 0], "from side to side": [65535, 0], "side to side in": [65535, 0], "to side in his": [65535, 0], "side in his efforts": [65535, 0], "in his efforts he": [65535, 0], "his efforts he edged": [65535, 0], "efforts he edged nearer": [65535, 0], "he edged nearer and": [65535, 0], "edged nearer and nearer": [65535, 0], "nearer and nearer toward": [65535, 0], "and nearer toward the": [65535, 0], "nearer toward the pansy": [65535, 0], "toward the pansy finally": [65535, 0], "the pansy finally his": [65535, 0], "pansy finally his bare": [65535, 0], "finally his bare foot": [65535, 0], "his bare foot rested": [65535, 0], "bare foot rested upon": [65535, 0], "foot rested upon it": [65535, 0], "rested upon it his": [65535, 0], "upon it his pliant": [65535, 0], "it his pliant toes": [65535, 0], "his pliant toes closed": [65535, 0], "pliant toes closed upon": [65535, 0], "toes closed upon it": [65535, 0], "closed upon it and": [65535, 0], "upon it and he": [65535, 0], "it and he hopped": [65535, 0], "and he hopped away": [65535, 0], "he hopped away with": [65535, 0], "hopped away with the": [65535, 0], "away with the treasure": [65535, 0], "with the treasure and": [65535, 0], "the treasure and disappeared": [65535, 0], "treasure and disappeared round": [65535, 0], "and disappeared round the": [65535, 0], "disappeared round the corner": [65535, 0], "round the corner but": [65535, 0], "the corner but only": [65535, 0], "corner but only for": [65535, 0], "but only for a": [65535, 0], "only for a minute": [65535, 0], "for a minute only": [65535, 0], "a minute only while": [65535, 0], "minute only while he": [65535, 0], "only while he could": [65535, 0], "while he could button": [65535, 0], "he could button the": [65535, 0], "could button the flower": [65535, 0], "button the flower inside": [65535, 0], "the flower inside his": [65535, 0], "flower inside his jacket": [65535, 0], "inside his jacket next": [65535, 0], "his jacket next his": [65535, 0], "jacket next his heart": [65535, 0], "next his heart or": [65535, 0], "his heart or next": [65535, 0], "heart or next his": [65535, 0], "or next his stomach": [65535, 0], "next his stomach possibly": [65535, 0], "his stomach possibly for": [65535, 0], "stomach possibly for he": [65535, 0], "possibly for he was": [65535, 0], "he was not much": [65535, 0], "was not much posted": [65535, 0], "not much posted in": [65535, 0], "much posted in anatomy": [65535, 0], "posted in anatomy and": [65535, 0], "in anatomy and not": [65535, 0], "anatomy and not hypercritical": [65535, 0], "and not hypercritical anyway": [65535, 0], "not hypercritical anyway he": [65535, 0], "hypercritical anyway he returned": [65535, 0], "anyway he returned now": [65535, 0], "he returned now and": [65535, 0], "returned now and hung": [65535, 0], "now and hung about": [65535, 0], "and hung about the": [65535, 0], "hung about the fence": [65535, 0], "about the fence till": [65535, 0], "the fence till nightfall": [65535, 0], "fence till nightfall showing": [65535, 0], "till nightfall showing off": [65535, 0], "nightfall showing off as": [65535, 0], "showing off as before": [65535, 0], "off as before but": [65535, 0], "as before but the": [65535, 0], "before but the girl": [65535, 0], "but the girl never": [65535, 0], "the girl never exhibited": [65535, 0], "girl never exhibited herself": [65535, 0], "never exhibited herself again": [65535, 0], "exhibited herself again though": [65535, 0], "herself again though tom": [65535, 0], "again though tom comforted": [65535, 0], "though tom comforted himself": [65535, 0], "tom comforted himself a": [65535, 0], "comforted himself a little": [65535, 0], "himself a little with": [65535, 0], "a little with the": [65535, 0], "little with the hope": [65535, 0], "with the hope that": [65535, 0], "the hope that she": [65535, 0], "hope that she had": [65535, 0], "that she had been": [65535, 0], "she had been near": [65535, 0], "had been near some": [65535, 0], "been near some window": [65535, 0], "near some window meantime": [65535, 0], "some window meantime and": [65535, 0], "window meantime and been": [65535, 0], "meantime and been aware": [65535, 0], "and been aware of": [65535, 0], "been aware of his": [65535, 0], "aware of his attentions": [65535, 0], "of his attentions finally": [65535, 0], "his attentions finally he": [65535, 0], "attentions finally he strode": [65535, 0], "finally he strode home": [65535, 0], "he strode home reluctantly": [65535, 0], "strode home reluctantly with": [65535, 0], "home reluctantly with his": [65535, 0], "reluctantly with his poor": [65535, 0], "with his poor head": [65535, 0], "his poor head full": [65535, 0], "poor head full of": [65535, 0], "head full of visions": [65535, 0], "full of visions all": [65535, 0], "of visions all through": [65535, 0], "visions all through supper": [65535, 0], "all through supper his": [65535, 0], "through supper his spirits": [65535, 0], "supper his spirits were": [65535, 0], "his spirits were so": [65535, 0], "spirits were so high": [65535, 0], "were so high that": [65535, 0], "so high that his": [65535, 0], "high that his aunt": [65535, 0], "that his aunt wondered": [65535, 0], "his aunt wondered what": [65535, 0], "aunt wondered what had": [65535, 0], "wondered what had got": [65535, 0], "what had got into": [65535, 0], "had got into the": [65535, 0], "got into the child": [65535, 0], "into the child he": [65535, 0], "the child he took": [65535, 0], "child he took a": [65535, 0], "he took a good": [65535, 0], "took a good scolding": [65535, 0], "a good scolding about": [65535, 0], "good scolding about clodding": [65535, 0], "scolding about clodding sid": [65535, 0], "about clodding sid and": [65535, 0], "clodding sid and did": [65535, 0], "sid and did not": [65535, 0], "and did not seem": [65535, 0], "did not seem to": [65535, 0], "not seem to mind": [65535, 0], "seem to mind it": [65535, 0], "to mind it in": [65535, 0], "mind it in the": [65535, 0], "it in the least": [65535, 0], "in the least he": [65535, 0], "the least he tried": [65535, 0], "least he tried to": [65535, 0], "he tried to steal": [65535, 0], "tried to steal sugar": [65535, 0], "to steal sugar under": [65535, 0], "steal sugar under his": [65535, 0], "sugar under his aunt's": [65535, 0], "under his aunt's very": [65535, 0], "his aunt's very nose": [65535, 0], "aunt's very nose and": [65535, 0], "very nose and got": [65535, 0], "nose and got his": [65535, 0], "and got his knuckles": [65535, 0], "got his knuckles rapped": [65535, 0], "his knuckles rapped for": [65535, 0], "knuckles rapped for it": [65535, 0], "rapped for it he": [65535, 0], "for it he said": [65535, 0], "it he said aunt": [65535, 0], "he said aunt you": [65535, 0], "said aunt you don't": [65535, 0], "aunt you don't whack": [65535, 0], "you don't whack sid": [65535, 0], "don't whack sid when": [65535, 0], "whack sid when he": [65535, 0], "sid when he takes": [65535, 0], "when he takes it": [65535, 0], "he takes it well": [65535, 0], "takes it well sid": [65535, 0], "it well sid don't": [65535, 0], "well sid don't torment": [65535, 0], "sid don't torment a": [65535, 0], "don't torment a body": [65535, 0], "torment a body the": [65535, 0], "a body the way": [65535, 0], "body the way you": [65535, 0], "the way you do": [65535, 0], "way you do you'd": [65535, 0], "you do you'd be": [65535, 0], "do you'd be always": [65535, 0], "you'd be always into": [65535, 0], "be always into that": [65535, 0], "always into that sugar": [65535, 0], "into that sugar if": [65535, 0], "that sugar if i": [65535, 0], "sugar if i warn't": [65535, 0], "if i warn't watching": [65535, 0], "i warn't watching you": [65535, 0], "warn't watching you presently": [65535, 0], "watching you presently she": [65535, 0], "you presently she stepped": [65535, 0], "presently she stepped into": [65535, 0], "she stepped into the": [65535, 0], "stepped into the kitchen": [65535, 0], "into the kitchen and": [65535, 0], "the kitchen and sid": [65535, 0], "kitchen and sid happy": [65535, 0], "and sid happy in": [65535, 0], "sid happy in his": [65535, 0], "happy in his immunity": [65535, 0], "in his immunity reached": [65535, 0], "his immunity reached for": [65535, 0], "immunity reached for the": [65535, 0], "reached for the sugar": [65535, 0], "for the sugar bowl": [65535, 0], "the sugar bowl a": [65535, 0], "sugar bowl a sort": [65535, 0], "bowl a sort of": [65535, 0], "a sort of glorying": [65535, 0], "sort of glorying over": [65535, 0], "of glorying over tom": [65535, 0], "glorying over tom which": [65535, 0], "over tom which was": [65535, 0], "tom which was well": [65535, 0], "which was well nigh": [65535, 0], "was well nigh unbearable": [65535, 0], "well nigh unbearable but": [65535, 0], "nigh unbearable but sid's": [65535, 0], "unbearable but sid's fingers": [65535, 0], "but sid's fingers slipped": [65535, 0], "sid's fingers slipped and": [65535, 0], "fingers slipped and the": [65535, 0], "slipped and the bowl": [65535, 0], "and the bowl dropped": [65535, 0], "the bowl dropped and": [65535, 0], "bowl dropped and broke": [65535, 0], "dropped and broke tom": [65535, 0], "and broke tom was": [65535, 0], "broke tom was in": [65535, 0], "tom was in ecstasies": [65535, 0], "was in ecstasies in": [65535, 0], "in ecstasies in such": [65535, 0], "ecstasies in such ecstasies": [65535, 0], "in such ecstasies that": [65535, 0], "such ecstasies that he": [65535, 0], "ecstasies that he even": [65535, 0], "that he even controlled": [65535, 0], "he even controlled his": [65535, 0], "even controlled his tongue": [65535, 0], "controlled his tongue and": [65535, 0], "his tongue and was": [65535, 0], "tongue and was silent": [65535, 0], "and was silent he": [65535, 0], "was silent he said": [65535, 0], "silent he said to": [65535, 0], "himself that he would": [65535, 0], "that he would not": [65535, 0], "he would not speak": [65535, 0], "would not speak a": [65535, 0], "not speak a word": [65535, 0], "speak a word even": [65535, 0], "a word even when": [65535, 0], "word even when his": [65535, 0], "even when his aunt": [65535, 0], "when his aunt came": [65535, 0], "his aunt came in": [65535, 0], "aunt came in but": [65535, 0], "came in but would": [65535, 0], "in but would sit": [65535, 0], "but would sit perfectly": [65535, 0], "would sit perfectly still": [65535, 0], "sit perfectly still till": [65535, 0], "perfectly still till she": [65535, 0], "still till she asked": [65535, 0], "till she asked who": [65535, 0], "she asked who did": [65535, 0], "asked who did the": [65535, 0], "who did the mischief": [65535, 0], "did the mischief and": [65535, 0], "the mischief and then": [65535, 0], "mischief and then he": [65535, 0], "and then he would": [65535, 0], "then he would tell": [65535, 0], "he would tell and": [65535, 0], "would tell and there": [65535, 0], "tell and there would": [65535, 0], "and there would be": [65535, 0], "there would be nothing": [65535, 0], "would be nothing so": [65535, 0], "be nothing so good": [65535, 0], "nothing so good in": [65535, 0], "so good in the": [65535, 0], "good in the world": [65535, 0], "in the world as": [65535, 0], "the world as to": [65535, 0], "world as to see": [65535, 0], "as to see that": [65535, 0], "to see that pet": [65535, 0], "see that pet model": [65535, 0], "that pet model catch": [65535, 0], "pet model catch it": [65535, 0], "model catch it he": [65535, 0], "catch it he was": [65535, 0], "it he was so": [65535, 0], "he was so brimful": [65535, 0], "was so brimful of": [65535, 0], "so brimful of exultation": [65535, 0], "brimful of exultation that": [65535, 0], "of exultation that he": [65535, 0], "exultation that he could": [65535, 0], "that he could hardly": [65535, 0], "he could hardly hold": [65535, 0], "could hardly hold himself": [65535, 0], "hardly hold himself when": [65535, 0], "hold himself when the": [65535, 0], "himself when the old": [65535, 0], "when the old lady": [65535, 0], "the old lady came": [65535, 0], "old lady came back": [65535, 0], "lady came back and": [65535, 0], "came back and stood": [65535, 0], "back and stood above": [65535, 0], "and stood above the": [65535, 0], "stood above the wreck": [65535, 0], "above the wreck discharging": [65535, 0], "the wreck discharging lightnings": [65535, 0], "wreck discharging lightnings of": [65535, 0], "discharging lightnings of wrath": [65535, 0], "lightnings of wrath from": [65535, 0], "of wrath from over": [65535, 0], "wrath from over her": [65535, 0], "from over her spectacles": [65535, 0], "over her spectacles he": [65535, 0], "her spectacles he said": [65535, 0], "spectacles he said to": [65535, 0], "said to himself now": [65535, 0], "to himself now it's": [65535, 0], "himself now it's coming": [65535, 0], "now it's coming and": [65535, 0], "it's coming and the": [65535, 0], "coming and the next": [65535, 0], "and the next instant": [65535, 0], "the next instant he": [65535, 0], "next instant he was": [65535, 0], "instant he was sprawling": [65535, 0], "he was sprawling on": [65535, 0], "was sprawling on the": [65535, 0], "sprawling on the floor": [65535, 0], "on the floor the": [65535, 0], "the floor the potent": [65535, 0], "floor the potent palm": [65535, 0], "the potent palm was": [65535, 0], "potent palm was uplifted": [65535, 0], "palm was uplifted to": [65535, 0], "was uplifted to strike": [65535, 0], "uplifted to strike again": [65535, 0], "to strike again when": [65535, 0], "strike again when tom": [65535, 0], "again when tom cried": [65535, 0], "when tom cried out": [65535, 0], "tom cried out hold": [65535, 0], "cried out hold on": [65535, 0], "out hold on now": [65535, 0], "hold on now what": [65535, 0], "on now what 'er": [65535, 0], "now what 'er you": [65535, 0], "what 'er you belting": [65535, 0], "'er you belting me": [65535, 0], "you belting me for": [65535, 0], "belting me for sid": [65535, 0], "me for sid broke": [65535, 0], "for sid broke it": [65535, 0], "sid broke it aunt": [65535, 0], "broke it aunt polly": [65535, 0], "it aunt polly paused": [65535, 0], "aunt polly paused perplexed": [65535, 0], "polly paused perplexed and": [65535, 0], "paused perplexed and tom": [65535, 0], "perplexed and tom looked": [65535, 0], "and tom looked for": [65535, 0], "tom looked for healing": [65535, 0], "looked for healing pity": [65535, 0], "for healing pity but": [65535, 0], "healing pity but when": [65535, 0], "pity but when she": [65535, 0], "but when she got": [65535, 0], "when she got her": [65535, 0], "she got her tongue": [65535, 0], "got her tongue again": [65535, 0], "her tongue again she": [65535, 0], "tongue again she only": [65535, 0], "again she only said": [65535, 0], "she only said umf": [65535, 0], "only said umf well": [65535, 0], "said umf well you": [65535, 0], "umf well you didn't": [65535, 0], "well you didn't get": [65535, 0], "you didn't get a": [65535, 0], "didn't get a lick": [65535, 0], "get a lick amiss": [65535, 0], "a lick amiss i": [65535, 0], "lick amiss i reckon": [65535, 0], "amiss i reckon you": [65535, 0], "i reckon you been": [65535, 0], "reckon you been into": [65535, 0], "you been into some": [65535, 0], "been into some other": [65535, 0], "into some other audacious": [65535, 0], "some other audacious mischief": [65535, 0], "other audacious mischief when": [65535, 0], "audacious mischief when i": [65535, 0], "mischief when i wasn't": [65535, 0], "when i wasn't around": [65535, 0], "i wasn't around like": [65535, 0], "wasn't around like enough": [65535, 0], "around like enough then": [65535, 0], "like enough then her": [65535, 0], "enough then her conscience": [65535, 0], "then her conscience reproached": [65535, 0], "her conscience reproached her": [65535, 0], "conscience reproached her and": [65535, 0], "reproached her and she": [65535, 0], "her and she yearned": [65535, 0], "and she yearned to": [65535, 0], "she yearned to say": [65535, 0], "yearned to say something": [65535, 0], "to say something kind": [65535, 0], "say something kind and": [65535, 0], "something kind and loving": [65535, 0], "kind and loving but": [65535, 0], "and loving but she": [65535, 0], "loving but she judged": [65535, 0], "but she judged that": [65535, 0], "she judged that this": [65535, 0], "judged that this would": [65535, 0], "that this would be": [65535, 0], "this would be construed": [65535, 0], "would be construed into": [65535, 0], "be construed into a": [65535, 0], "construed into a confession": [65535, 0], "into a confession that": [65535, 0], "a confession that she": [65535, 0], "confession that she had": [65535, 0], "she had been in": [65535, 0], "had been in the": [65535, 0], "been in the wrong": [65535, 0], "in the wrong and": [65535, 0], "the wrong and discipline": [65535, 0], "wrong and discipline forbade": [65535, 0], "and discipline forbade that": [65535, 0], "discipline forbade that so": [65535, 0], "forbade that so she": [65535, 0], "that so she kept": [65535, 0], "so she kept silence": [65535, 0], "she kept silence and": [65535, 0], "kept silence and went": [65535, 0], "silence and went about": [65535, 0], "and went about her": [65535, 0], "went about her affairs": [65535, 0], "about her affairs with": [65535, 0], "her affairs with a": [65535, 0], "affairs with a troubled": [65535, 0], "with a troubled heart": [65535, 0], "a troubled heart tom": [65535, 0], "troubled heart tom sulked": [65535, 0], "heart tom sulked in": [65535, 0], "tom sulked in a": [65535, 0], "sulked in a corner": [65535, 0], "in a corner and": [65535, 0], "a corner and exalted": [65535, 0], "corner and exalted his": [65535, 0], "and exalted his woes": [65535, 0], "exalted his woes he": [65535, 0], "his woes he knew": [65535, 0], "woes he knew that": [65535, 0], "he knew that in": [65535, 0], "knew that in her": [65535, 0], "that in her heart": [65535, 0], "in her heart his": [65535, 0], "her heart his aunt": [65535, 0], "heart his aunt was": [65535, 0], "his aunt was on": [65535, 0], "aunt was on her": [65535, 0], "was on her knees": [65535, 0], "on her knees to": [65535, 0], "her knees to him": [65535, 0], "knees to him and": [65535, 0], "to him and he": [65535, 0], "him and he was": [65535, 0], "and he was morosely": [65535, 0], "he was morosely gratified": [65535, 0], "was morosely gratified by": [65535, 0], "morosely gratified by the": [65535, 0], "gratified by the consciousness": [65535, 0], "by the consciousness of": [65535, 0], "the consciousness of it": [65535, 0], "consciousness of it he": [65535, 0], "of it he would": [65535, 0], "it he would hang": [65535, 0], "he would hang out": [65535, 0], "would hang out no": [65535, 0], "hang out no signals": [65535, 0], "out no signals he": [65535, 0], "no signals he would": [65535, 0], "signals he would take": [65535, 0], "he would take notice": [65535, 0], "would take notice of": [65535, 0], "take notice of none": [65535, 0], "notice of none he": [65535, 0], "of none he knew": [65535, 0], "none he knew that": [65535, 0], "he knew that a": [65535, 0], "knew that a yearning": [65535, 0], "that a yearning glance": [65535, 0], "a yearning glance fell": [65535, 0], "yearning glance fell upon": [65535, 0], "glance fell upon him": [65535, 0], "fell upon him now": [65535, 0], "upon him now and": [65535, 0], "him now and then": [65535, 0], "now and then through": [65535, 0], "and then through a": [65535, 0], "then through a film": [65535, 0], "through a film of": [65535, 0], "a film of tears": [65535, 0], "film of tears but": [65535, 0], "of tears but he": [65535, 0], "tears but he refused": [65535, 0], "but he refused recognition": [65535, 0], "he refused recognition of": [65535, 0], "refused recognition of it": [65535, 0], "recognition of it he": [65535, 0], "of it he pictured": [65535, 0], "it he pictured himself": [65535, 0], "he pictured himself lying": [65535, 0], "pictured himself lying sick": [65535, 0], "himself lying sick unto": [65535, 0], "lying sick unto death": [65535, 0], "sick unto death and": [65535, 0], "unto death and his": [65535, 0], "death and his aunt": [65535, 0], "and his aunt bending": [65535, 0], "his aunt bending over": [65535, 0], "aunt bending over him": [65535, 0], "bending over him beseeching": [65535, 0], "over him beseeching one": [65535, 0], "him beseeching one little": [65535, 0], "beseeching one little forgiving": [65535, 0], "one little forgiving word": [65535, 0], "little forgiving word but": [65535, 0], "forgiving word but he": [65535, 0], "word but he would": [65535, 0], "but he would turn": [65535, 0], "he would turn his": [65535, 0], "would turn his face": [65535, 0], "turn his face to": [65535, 0], "face to the wall": [65535, 0], "to the wall and": [65535, 0], "the wall and die": [65535, 0], "wall and die with": [65535, 0], "and die with that": [65535, 0], "die with that word": [65535, 0], "with that word unsaid": [65535, 0], "that word unsaid ah": [65535, 0], "word unsaid ah how": [65535, 0], "unsaid ah how would": [65535, 0], "ah how would she": [65535, 0], "how would she feel": [65535, 0], "would she feel then": [65535, 0], "she feel then and": [65535, 0], "feel then and he": [65535, 0], "then and he pictured": [65535, 0], "and he pictured himself": [65535, 0], "he pictured himself brought": [65535, 0], "pictured himself brought home": [65535, 0], "himself brought home from": [65535, 0], "brought home from the": [65535, 0], "home from the river": [65535, 0], "from the river dead": [65535, 0], "the river dead with": [65535, 0], "river dead with his": [65535, 0], "dead with his curls": [65535, 0], "with his curls all": [65535, 0], "his curls all wet": [65535, 0], "curls all wet and": [65535, 0], "all wet and his": [65535, 0], "wet and his sore": [65535, 0], "and his sore heart": [65535, 0], "his sore heart at": [65535, 0], "sore heart at rest": [65535, 0], "heart at rest how": [65535, 0], "at rest how she": [65535, 0], "rest how she would": [65535, 0], "how she would throw": [65535, 0], "she would throw herself": [65535, 0], "would throw herself upon": [65535, 0], "throw herself upon him": [65535, 0], "herself upon him and": [65535, 0], "upon him and how": [65535, 0], "him and how her": [65535, 0], "and how her tears": [65535, 0], "how her tears would": [65535, 0], "her tears would fall": [65535, 0], "tears would fall like": [65535, 0], "would fall like rain": [65535, 0], "fall like rain and": [65535, 0], "like rain and her": [65535, 0], "rain and her lips": [65535, 0], "and her lips pray": [65535, 0], "her lips pray god": [65535, 0], "lips pray god to": [65535, 0], "pray god to give": [65535, 0], "god to give her": [65535, 0], "to give her back": [65535, 0], "give her back her": [65535, 0], "her back her boy": [65535, 0], "back her boy and": [65535, 0], "her boy and she": [65535, 0], "boy and she would": [65535, 0], "and she would never": [65535, 0], "she would never never": [65535, 0], "would never never abuse": [65535, 0], "never never abuse him": [65535, 0], "never abuse him any": [65535, 0], "abuse him any more": [65535, 0], "him any more but": [65535, 0], "any more but he": [65535, 0], "more but he would": [65535, 0], "but he would lie": [65535, 0], "he would lie there": [65535, 0], "would lie there cold": [65535, 0], "lie there cold and": [65535, 0], "there cold and white": [65535, 0], "cold and white and": [65535, 0], "and white and make": [65535, 0], "white and make no": [65535, 0], "and make no sign": [65535, 0], "make no sign a": [65535, 0], "no sign a poor": [65535, 0], "sign a poor little": [65535, 0], "a poor little sufferer": [65535, 0], "poor little sufferer whose": [65535, 0], "little sufferer whose griefs": [65535, 0], "sufferer whose griefs were": [65535, 0], "whose griefs were at": [65535, 0], "griefs were at an": [65535, 0], "were at an end": [65535, 0], "at an end he": [65535, 0], "an end he so": [65535, 0], "end he so worked": [65535, 0], "he so worked upon": [65535, 0], "so worked upon his": [65535, 0], "worked upon his feelings": [65535, 0], "upon his feelings with": [65535, 0], "his feelings with the": [65535, 0], "feelings with the pathos": [65535, 0], "with the pathos of": [65535, 0], "the pathos of these": [65535, 0], "pathos of these dreams": [65535, 0], "of these dreams that": [65535, 0], "these dreams that he": [65535, 0], "dreams that he had": [65535, 0], "that he had to": [65535, 0], "he had to keep": [65535, 0], "had to keep swallowing": [65535, 0], "to keep swallowing he": [65535, 0], "keep swallowing he was": [65535, 0], "swallowing he was so": [65535, 0], "he was so like": [65535, 0], "was so like to": [65535, 0], "so like to choke": [65535, 0], "like to choke and": [65535, 0], "to choke and his": [65535, 0], "choke and his eyes": [65535, 0], "and his eyes swam": [65535, 0], "his eyes swam in": [65535, 0], "eyes swam in a": [65535, 0], "swam in a blur": [65535, 0], "in a blur of": [65535, 0], "a blur of water": [65535, 0], "blur of water which": [65535, 0], "of water which overflowed": [65535, 0], "water which overflowed when": [65535, 0], "which overflowed when he": [65535, 0], "overflowed when he winked": [65535, 0], "when he winked and": [65535, 0], "he winked and ran": [65535, 0], "winked and ran down": [65535, 0], "and ran down and": [65535, 0], "ran down and trickled": [65535, 0], "down and trickled from": [65535, 0], "and trickled from the": [65535, 0], "trickled from the end": [65535, 0], "from the end of": [65535, 0], "the end of his": [65535, 0], "end of his nose": [65535, 0], "of his nose and": [65535, 0], "his nose and such": [65535, 0], "nose and such a": [65535, 0], "and such a luxury": [65535, 0], "such a luxury to": [65535, 0], "a luxury to him": [65535, 0], "luxury to him was": [65535, 0], "to him was this": [65535, 0], "him was this petting": [65535, 0], "was this petting of": [65535, 0], "this petting of his": [65535, 0], "petting of his sorrows": [65535, 0], "of his sorrows that": [65535, 0], "his sorrows that he": [65535, 0], "sorrows that he could": [65535, 0], "that he could not": [65535, 0], "he could not bear": [65535, 0], "could not bear to": [65535, 0], "not bear to have": [65535, 0], "bear to have any": [65535, 0], "to have any worldly": [65535, 0], "have any worldly cheeriness": [65535, 0], "any worldly cheeriness or": [65535, 0], "worldly cheeriness or any": [65535, 0], "cheeriness or any grating": [65535, 0], "or any grating delight": [65535, 0], "any grating delight intrude": [65535, 0], "grating delight intrude upon": [65535, 0], "delight intrude upon it": [65535, 0], "intrude upon it it": [65535, 0], "upon it it was": [65535, 0], "it it was too": [65535, 0], "it was too sacred": [65535, 0], "was too sacred for": [65535, 0], "too sacred for such": [65535, 0], "sacred for such contact": [65535, 0], "for such contact and": [65535, 0], "such contact and so": [65535, 0], "contact and so presently": [65535, 0], "and so presently when": [65535, 0], "so presently when his": [65535, 0], "presently when his cousin": [65535, 0], "when his cousin mary": [65535, 0], "his cousin mary danced": [65535, 0], "cousin mary danced in": [65535, 0], "mary danced in all": [65535, 0], "danced in all alive": [65535, 0], "in all alive with": [65535, 0], "all alive with the": [65535, 0], "alive with the joy": [65535, 0], "with the joy of": [65535, 0], "the joy of seeing": [65535, 0], "joy of seeing home": [65535, 0], "of seeing home again": [65535, 0], "seeing home again after": [65535, 0], "home again after an": [65535, 0], "again after an age": [65535, 0], "after an age long": [65535, 0], "an age long visit": [65535, 0], "age long visit of": [65535, 0], "long visit of one": [65535, 0], "visit of one week": [65535, 0], "of one week to": [65535, 0], "one week to the": [65535, 0], "week to the country": [65535, 0], "to the country he": [65535, 0], "the country he got": [65535, 0], "country he got up": [65535, 0], "he got up and": [65535, 0], "got up and moved": [65535, 0], "up and moved in": [65535, 0], "and moved in clouds": [65535, 0], "moved in clouds and": [65535, 0], "in clouds and darkness": [65535, 0], "clouds and darkness out": [65535, 0], "and darkness out at": [65535, 0], "darkness out at one": [65535, 0], "out at one door": [65535, 0], "at one door as": [65535, 0], "one door as she": [65535, 0], "door as she brought": [65535, 0], "as she brought song": [65535, 0], "she brought song and": [65535, 0], "brought song and sunshine": [65535, 0], "song and sunshine in": [65535, 0], "and sunshine in at": [65535, 0], "sunshine in at the": [65535, 0], "in at the other": [65535, 0], "at the other he": [65535, 0], "the other he wandered": [65535, 0], "other he wandered far": [65535, 0], "he wandered far from": [65535, 0], "wandered far from the": [65535, 0], "far from the accustomed": [65535, 0], "from the accustomed haunts": [65535, 0], "the accustomed haunts of": [65535, 0], "accustomed haunts of boys": [65535, 0], "haunts of boys and": [65535, 0], "of boys and sought": [65535, 0], "boys and sought desolate": [65535, 0], "and sought desolate places": [65535, 0], "sought desolate places that": [65535, 0], "desolate places that were": [65535, 0], "places that were in": [65535, 0], "that were in harmony": [65535, 0], "were in harmony with": [65535, 0], "in harmony with his": [65535, 0], "harmony with his spirit": [65535, 0], "with his spirit a": [65535, 0], "his spirit a log": [65535, 0], "spirit a log raft": [65535, 0], "a log raft in": [65535, 0], "log raft in the": [65535, 0], "raft in the river": [65535, 0], "in the river invited": [65535, 0], "the river invited him": [65535, 0], "river invited him and": [65535, 0], "invited him and he": [65535, 0], "him and he seated": [65535, 0], "and he seated himself": [65535, 0], "he seated himself on": [65535, 0], "seated himself on its": [65535, 0], "himself on its outer": [65535, 0], "on its outer edge": [65535, 0], "its outer edge and": [65535, 0], "outer edge and contemplated": [65535, 0], "edge and contemplated the": [65535, 0], "and contemplated the dreary": [65535, 0], "contemplated the dreary vastness": [65535, 0], "the dreary vastness of": [65535, 0], "dreary vastness of the": [65535, 0], "vastness of the stream": [65535, 0], "of the stream wishing": [65535, 0], "the stream wishing the": [65535, 0], "stream wishing the while": [65535, 0], "wishing the while that": [65535, 0], "the while that he": [65535, 0], "while that he could": [65535, 0], "that he could only": [65535, 0], "he could only be": [65535, 0], "could only be drowned": [65535, 0], "only be drowned all": [65535, 0], "be drowned all at": [65535, 0], "drowned all at once": [65535, 0], "all at once and": [65535, 0], "at once and unconsciously": [65535, 0], "once and unconsciously without": [65535, 0], "and unconsciously without undergoing": [65535, 0], "unconsciously without undergoing the": [65535, 0], "without undergoing the uncomfortable": [65535, 0], "undergoing the uncomfortable routine": [65535, 0], "the uncomfortable routine devised": [65535, 0], "uncomfortable routine devised by": [65535, 0], "routine devised by nature": [65535, 0], "devised by nature then": [65535, 0], "by nature then he": [65535, 0], "nature then he thought": [65535, 0], "then he thought of": [65535, 0], "he thought of his": [65535, 0], "thought of his flower": [65535, 0], "of his flower he": [65535, 0], "his flower he got": [65535, 0], "flower he got it": [65535, 0], "he got it out": [65535, 0], "got it out rumpled": [65535, 0], "it out rumpled and": [65535, 0], "out rumpled and wilted": [65535, 0], "rumpled and wilted and": [65535, 0], "and wilted and it": [65535, 0], "wilted and it mightily": [65535, 0], "and it mightily increased": [65535, 0], "it mightily increased his": [65535, 0], "mightily increased his dismal": [65535, 0], "increased his dismal felicity": [65535, 0], "his dismal felicity he": [65535, 0], "dismal felicity he wondered": [65535, 0], "felicity he wondered if": [65535, 0], "he wondered if she": [65535, 0], "wondered if she would": [65535, 0], "if she would pity": [65535, 0], "she would pity him": [65535, 0], "would pity him if": [65535, 0], "pity him if she": [65535, 0], "him if she knew": [65535, 0], "if she knew would": [65535, 0], "she knew would she": [65535, 0], "knew would she cry": [65535, 0], "would she cry and": [65535, 0], "she cry and wish": [65535, 0], "cry and wish that": [65535, 0], "and wish that she": [65535, 0], "wish that she had": [65535, 0], "that she had a": [65535, 0], "she had a right": [65535, 0], "had a right to": [65535, 0], "a right to put": [65535, 0], "right to put her": [65535, 0], "to put her arms": [65535, 0], "put her arms around": [65535, 0], "her arms around his": [65535, 0], "arms around his neck": [65535, 0], "around his neck and": [65535, 0], "his neck and comfort": [65535, 0], "neck and comfort him": [65535, 0], "and comfort him or": [65535, 0], "comfort him or would": [65535, 0], "him or would she": [65535, 0], "or would she turn": [65535, 0], "would she turn coldly": [65535, 0], "she turn coldly away": [65535, 0], "turn coldly away like": [65535, 0], "coldly away like all": [65535, 0], "away like all the": [65535, 0], "like all the hollow": [65535, 0], "all the hollow world": [65535, 0], "the hollow world this": [65535, 0], "hollow world this picture": [65535, 0], "world this picture brought": [65535, 0], "this picture brought such": [65535, 0], "picture brought such an": [65535, 0], "brought such an agony": [65535, 0], "such an agony of": [65535, 0], "an agony of pleasurable": [65535, 0], "agony of pleasurable suffering": [65535, 0], "of pleasurable suffering that": [65535, 0], "pleasurable suffering that he": [65535, 0], "suffering that he worked": [65535, 0], "that he worked it": [65535, 0], "he worked it over": [65535, 0], "worked it over and": [65535, 0], "it over and over": [65535, 0], "over and over again": [65535, 0], "and over again in": [65535, 0], "over again in his": [65535, 0], "again in his mind": [65535, 0], "in his mind and": [65535, 0], "his mind and set": [65535, 0], "mind and set it": [65535, 0], "and set it up": [65535, 0], "set it up in": [65535, 0], "it up in new": [65535, 0], "up in new and": [65535, 0], "in new and varied": [65535, 0], "new and varied lights": [65535, 0], "and varied lights till": [65535, 0], "varied lights till he": [65535, 0], "lights till he wore": [65535, 0], "till he wore it": [65535, 0], "he wore it threadbare": [65535, 0], "wore it threadbare at": [65535, 0], "it threadbare at last": [65535, 0], "threadbare at last he": [65535, 0], "at last he rose": [65535, 0], "last he rose up": [65535, 0], "he rose up sighing": [65535, 0], "rose up sighing and": [65535, 0], "up sighing and departed": [65535, 0], "sighing and departed in": [65535, 0], "and departed in the": [65535, 0], "departed in the darkness": [65535, 0], "in the darkness about": [65535, 0], "the darkness about half": [65535, 0], "darkness about half past": [65535, 0], "about half past nine": [65535, 0], "half past nine or": [65535, 0], "past nine or ten": [65535, 0], "nine or ten o'clock": [65535, 0], "or ten o'clock he": [65535, 0], "ten o'clock he came": [65535, 0], "o'clock he came along": [65535, 0], "he came along the": [65535, 0], "came along the deserted": [65535, 0], "along the deserted street": [65535, 0], "the deserted street to": [65535, 0], "deserted street to where": [65535, 0], "street to where the": [65535, 0], "to where the adored": [65535, 0], "where the adored unknown": [65535, 0], "the adored unknown lived": [65535, 0], "adored unknown lived he": [65535, 0], "unknown lived he paused": [65535, 0], "lived he paused a": [65535, 0], "he paused a moment": [65535, 0], "paused a moment no": [65535, 0], "a moment no sound": [65535, 0], "moment no sound fell": [65535, 0], "no sound fell upon": [65535, 0], "sound fell upon his": [65535, 0], "fell upon his listening": [65535, 0], "upon his listening ear": [65535, 0], "his listening ear a": [65535, 0], "listening ear a candle": [65535, 0], "ear a candle was": [65535, 0], "a candle was casting": [65535, 0], "candle was casting a": [65535, 0], "was casting a dull": [65535, 0], "casting a dull glow": [65535, 0], "a dull glow upon": [65535, 0], "dull glow upon the": [65535, 0], "glow upon the curtain": [65535, 0], "upon the curtain of": [65535, 0], "the curtain of a": [65535, 0], "curtain of a second": [65535, 0], "of a second story": [65535, 0], "a second story window": [65535, 0], "second story window was": [65535, 0], "story window was the": [65535, 0], "window was the sacred": [65535, 0], "was the sacred presence": [65535, 0], "the sacred presence there": [65535, 0], "sacred presence there he": [65535, 0], "presence there he climbed": [65535, 0], "there he climbed the": [65535, 0], "he climbed the fence": [65535, 0], "climbed the fence threaded": [65535, 0], "the fence threaded his": [65535, 0], "fence threaded his stealthy": [65535, 0], "threaded his stealthy way": [65535, 0], "his stealthy way through": [65535, 0], "stealthy way through the": [65535, 0], "way through the plants": [65535, 0], "through the plants till": [65535, 0], "the plants till he": [65535, 0], "plants till he stood": [65535, 0], "till he stood under": [65535, 0], "he stood under that": [65535, 0], "stood under that window": [65535, 0], "under that window he": [65535, 0], "that window he looked": [65535, 0], "window he looked up": [65535, 0], "he looked up at": [65535, 0], "looked up at it": [65535, 0], "up at it long": [65535, 0], "at it long and": [65535, 0], "it long and with": [65535, 0], "long and with emotion": [65535, 0], "and with emotion then": [65535, 0], "with emotion then he": [65535, 0], "emotion then he laid": [65535, 0], "then he laid him": [65535, 0], "he laid him down": [65535, 0], "laid him down on": [65535, 0], "him down on the": [65535, 0], "down on the ground": [65535, 0], "on the ground under": [65535, 0], "the ground under it": [65535, 0], "ground under it disposing": [65535, 0], "under it disposing himself": [65535, 0], "it disposing himself upon": [65535, 0], "disposing himself upon his": [65535, 0], "himself upon his back": [65535, 0], "upon his back with": [65535, 0], "his back with his": [65535, 0], "back with his hands": [65535, 0], "with his hands clasped": [65535, 0], "his hands clasped upon": [65535, 0], "hands clasped upon his": [65535, 0], "clasped upon his breast": [65535, 0], "upon his breast and": [65535, 0], "his breast and holding": [65535, 0], "breast and holding his": [65535, 0], "and holding his poor": [65535, 0], "holding his poor wilted": [65535, 0], "his poor wilted flower": [65535, 0], "poor wilted flower and": [65535, 0], "wilted flower and thus": [65535, 0], "flower and thus he": [65535, 0], "and thus he would": [65535, 0], "thus he would die": [65535, 0], "he would die out": [65535, 0], "would die out in": [65535, 0], "die out in the": [65535, 0], "out in the cold": [65535, 0], "in the cold world": [65535, 0], "the cold world with": [65535, 0], "cold world with no": [65535, 0], "world with no shelter": [65535, 0], "with no shelter over": [65535, 0], "no shelter over his": [65535, 0], "shelter over his homeless": [65535, 0], "over his homeless head": [65535, 0], "his homeless head no": [65535, 0], "homeless head no friendly": [65535, 0], "head no friendly hand": [65535, 0], "no friendly hand to": [65535, 0], "friendly hand to wipe": [65535, 0], "hand to wipe the": [65535, 0], "to wipe the death": [65535, 0], "wipe the death damps": [65535, 0], "the death damps from": [65535, 0], "death damps from his": [65535, 0], "damps from his brow": [65535, 0], "from his brow no": [65535, 0], "his brow no loving": [65535, 0], "brow no loving face": [65535, 0], "no loving face to": [65535, 0], "loving face to bend": [65535, 0], "face to bend pityingly": [65535, 0], "to bend pityingly over": [65535, 0], "bend pityingly over him": [65535, 0], "pityingly over him when": [65535, 0], "over him when the": [65535, 0], "him when the great": [65535, 0], "when the great agony": [65535, 0], "the great agony came": [65535, 0], "great agony came and": [65535, 0], "agony came and thus": [65535, 0], "came and thus she": [65535, 0], "and thus she would": [65535, 0], "thus she would see": [65535, 0], "she would see him": [65535, 0], "would see him when": [65535, 0], "see him when she": [65535, 0], "him when she looked": [65535, 0], "when she looked out": [65535, 0], "she looked out upon": [65535, 0], "looked out upon the": [65535, 0], "out upon the glad": [65535, 0], "upon the glad morning": [65535, 0], "the glad morning and": [65535, 0], "glad morning and oh": [65535, 0], "morning and oh would": [65535, 0], "and oh would she": [65535, 0], "oh would she drop": [65535, 0], "would she drop one": [65535, 0], "she drop one little": [65535, 0], "drop one little tear": [65535, 0], "one little tear upon": [65535, 0], "little tear upon his": [65535, 0], "tear upon his poor": [65535, 0], "upon his poor lifeless": [65535, 0], "his poor lifeless form": [65535, 0], "poor lifeless form would": [65535, 0], "lifeless form would she": [65535, 0], "form would she heave": [65535, 0], "would she heave one": [65535, 0], "she heave one little": [65535, 0], "heave one little sigh": [65535, 0], "one little sigh to": [65535, 0], "little sigh to see": [65535, 0], "sigh to see a": [65535, 0], "to see a bright": [65535, 0], "see a bright young": [65535, 0], "a bright young life": [65535, 0], "bright young life so": [65535, 0], "young life so rudely": [65535, 0], "life so rudely blighted": [65535, 0], "so rudely blighted so": [65535, 0], "rudely blighted so untimely": [65535, 0], "blighted so untimely cut": [65535, 0], "so untimely cut down": [65535, 0], "untimely cut down the": [65535, 0], "cut down the window": [65535, 0], "down the window went": [65535, 0], "the window went up": [65535, 0], "window went up a": [65535, 0], "went up a maid": [65535, 0], "up a maid servant's": [65535, 0], "a maid servant's discordant": [65535, 0], "maid servant's discordant voice": [65535, 0], "servant's discordant voice profaned": [65535, 0], "discordant voice profaned the": [65535, 0], "voice profaned the holy": [65535, 0], "profaned the holy calm": [65535, 0], "the holy calm and": [65535, 0], "holy calm and a": [65535, 0], "calm and a deluge": [65535, 0], "and a deluge of": [65535, 0], "a deluge of water": [65535, 0], "deluge of water drenched": [65535, 0], "of water drenched the": [65535, 0], "water drenched the prone": [65535, 0], "drenched the prone martyr's": [65535, 0], "the prone martyr's remains": [65535, 0], "prone martyr's remains the": [65535, 0], "martyr's remains the strangling": [65535, 0], "remains the strangling hero": [65535, 0], "the strangling hero sprang": [65535, 0], "strangling hero sprang up": [65535, 0], "hero sprang up with": [65535, 0], "sprang up with a": [65535, 0], "up with a relieving": [65535, 0], "with a relieving snort": [65535, 0], "a relieving snort there": [65535, 0], "relieving snort there was": [65535, 0], "snort there was a": [65535, 0], "there was a whiz": [65535, 0], "was a whiz as": [65535, 0], "a whiz as of": [65535, 0], "whiz as of a": [65535, 0], "as of a missile": [65535, 0], "of a missile in": [65535, 0], "a missile in the": [65535, 0], "missile in the air": [65535, 0], "in the air mingled": [65535, 0], "the air mingled with": [65535, 0], "air mingled with the": [65535, 0], "mingled with the murmur": [65535, 0], "with the murmur of": [65535, 0], "the murmur of a": [65535, 0], "murmur of a curse": [65535, 0], "of a curse a": [65535, 0], "a curse a sound": [65535, 0], "curse a sound as": [65535, 0], "a sound as of": [65535, 0], "sound as of shivering": [65535, 0], "as of shivering glass": [65535, 0], "of shivering glass followed": [65535, 0], "shivering glass followed and": [65535, 0], "glass followed and a": [65535, 0], "followed and a small": [65535, 0], "and a small vague": [65535, 0], "a small vague form": [65535, 0], "small vague form went": [65535, 0], "vague form went over": [65535, 0], "form went over the": [65535, 0], "went over the fence": [65535, 0], "the fence and shot": [65535, 0], "fence and shot away": [65535, 0], "and shot away in": [65535, 0], "shot away in the": [65535, 0], "away in the gloom": [65535, 0], "in the gloom not": [65535, 0], "the gloom not long": [65535, 0], "gloom not long after": [65535, 0], "not long after as": [65535, 0], "long after as tom": [65535, 0], "after as tom all": [65535, 0], "as tom all undressed": [65535, 0], "tom all undressed for": [65535, 0], "all undressed for bed": [65535, 0], "undressed for bed was": [65535, 0], "for bed was surveying": [65535, 0], "bed was surveying his": [65535, 0], "was surveying his drenched": [65535, 0], "surveying his drenched garments": [65535, 0], "his drenched garments by": [65535, 0], "drenched garments by the": [65535, 0], "garments by the light": [65535, 0], "by the light of": [65535, 0], "the light of a": [65535, 0], "light of a tallow": [65535, 0], "of a tallow dip": [65535, 0], "a tallow dip sid": [65535, 0], "tallow dip sid woke": [65535, 0], "dip sid woke up": [65535, 0], "sid woke up but": [65535, 0], "woke up but if": [65535, 0], "up but if he": [65535, 0], "but if he had": [65535, 0], "if he had any": [65535, 0], "he had any dim": [65535, 0], "had any dim idea": [65535, 0], "any dim idea of": [65535, 0], "dim idea of making": [65535, 0], "idea of making any": [65535, 0], "of making any references": [65535, 0], "making any references to": [65535, 0], "any references to allusions": [65535, 0], "references to allusions he": [65535, 0], "to allusions he thought": [65535, 0], "allusions he thought better": [65535, 0], "he thought better of": [65535, 0], "thought better of it": [65535, 0], "better of it and": [65535, 0], "of it and held": [65535, 0], "it and held his": [65535, 0], "and held his peace": [65535, 0], "held his peace for": [65535, 0], "his peace for there": [65535, 0], "peace for there was": [65535, 0], "for there was danger": [65535, 0], "there was danger in": [65535, 0], "was danger in tom's": [65535, 0], "danger in tom's eye": [65535, 0], "in tom's eye tom": [65535, 0], "tom's eye tom turned": [65535, 0], "eye tom turned in": [65535, 0], "tom turned in without": [65535, 0], "turned in without the": [65535, 0], "in without the added": [65535, 0], "without the added vexation": [65535, 0], "the added vexation of": [65535, 0], "added vexation of prayers": [65535, 0], "vexation of prayers and": [65535, 0], "of prayers and sid": [65535, 0], "prayers and sid made": [65535, 0], "and sid made mental": [65535, 0], "sid made mental note": [65535, 0], "made mental note of": [65535, 0], "mental note of the": [65535, 0], "note of the omission": [65535, 0], "tom presented himself before aunt": [65535, 0], "presented himself before aunt polly": [65535, 0], "himself before aunt polly who": [65535, 0], "before aunt polly who was": [65535, 0], "aunt polly who was sitting": [65535, 0], "polly who was sitting by": [65535, 0], "who was sitting by an": [65535, 0], "was sitting by an open": [65535, 0], "sitting by an open window": [65535, 0], "by an open window in": [65535, 0], "an open window in a": [65535, 0], "open window in a pleasant": [65535, 0], "window in a pleasant rearward": [65535, 0], "in a pleasant rearward apartment": [65535, 0], "a pleasant rearward apartment which": [65535, 0], "pleasant rearward apartment which was": [65535, 0], "rearward apartment which was bedroom": [65535, 0], "apartment which was bedroom breakfast": [65535, 0], "which was bedroom breakfast room": [65535, 0], "was bedroom breakfast room dining": [65535, 0], "bedroom breakfast room dining room": [65535, 0], "breakfast room dining room and": [65535, 0], "room dining room and library": [65535, 0], "dining room and library combined": [65535, 0], "room and library combined the": [65535, 0], "and library combined the balmy": [65535, 0], "library combined the balmy summer": [65535, 0], "combined the balmy summer air": [65535, 0], "the balmy summer air the": [65535, 0], "balmy summer air the restful": [65535, 0], "summer air the restful quiet": [65535, 0], "air the restful quiet the": [65535, 0], "the restful quiet the odor": [65535, 0], "restful quiet the odor of": [65535, 0], "quiet the odor of the": [65535, 0], "the odor of the flowers": [65535, 0], "odor of the flowers and": [65535, 0], "of the flowers and the": [65535, 0], "the flowers and the drowsing": [65535, 0], "flowers and the drowsing murmur": [65535, 0], "and the drowsing murmur of": [65535, 0], "the drowsing murmur of the": [65535, 0], "drowsing murmur of the bees": [65535, 0], "murmur of the bees had": [65535, 0], "of the bees had had": [65535, 0], "the bees had had their": [65535, 0], "bees had had their effect": [65535, 0], "had had their effect and": [65535, 0], "had their effect and she": [65535, 0], "their effect and she was": [65535, 0], "effect and she was nodding": [65535, 0], "and she was nodding over": [65535, 0], "she was nodding over her": [65535, 0], "was nodding over her knitting": [65535, 0], "nodding over her knitting for": [65535, 0], "over her knitting for she": [65535, 0], "her knitting for she had": [65535, 0], "knitting for she had no": [65535, 0], "for she had no company": [65535, 0], "she had no company but": [65535, 0], "had no company but the": [65535, 0], "no company but the cat": [65535, 0], "company but the cat and": [65535, 0], "but the cat and it": [65535, 0], "the cat and it was": [65535, 0], "cat and it was asleep": [65535, 0], "and it was asleep in": [65535, 0], "it was asleep in her": [65535, 0], "was asleep in her lap": [65535, 0], "asleep in her lap her": [65535, 0], "in her lap her spectacles": [65535, 0], "her lap her spectacles were": [65535, 0], "lap her spectacles were propped": [65535, 0], "her spectacles were propped up": [65535, 0], "spectacles were propped up on": [65535, 0], "were propped up on her": [65535, 0], "propped up on her gray": [65535, 0], "up on her gray head": [65535, 0], "on her gray head for": [65535, 0], "her gray head for safety": [65535, 0], "gray head for safety she": [65535, 0], "head for safety she had": [65535, 0], "for safety she had thought": [65535, 0], "safety she had thought that": [65535, 0], "she had thought that of": [65535, 0], "had thought that of course": [65535, 0], "thought that of course tom": [65535, 0], "that of course tom had": [65535, 0], "of course tom had deserted": [65535, 0], "course tom had deserted long": [65535, 0], "tom had deserted long ago": [65535, 0], "had deserted long ago and": [65535, 0], "deserted long ago and she": [65535, 0], "long ago and she wondered": [65535, 0], "ago and she wondered at": [65535, 0], "and she wondered at seeing": [65535, 0], "she wondered at seeing him": [65535, 0], "wondered at seeing him place": [65535, 0], "at seeing him place himself": [65535, 0], "seeing him place himself in": [65535, 0], "him place himself in her": [65535, 0], "place himself in her power": [65535, 0], "himself in her power again": [65535, 0], "in her power again in": [65535, 0], "her power again in this": [65535, 0], "power again in this intrepid": [65535, 0], "again in this intrepid way": [65535, 0], "in this intrepid way he": [65535, 0], "this intrepid way he said": [65535, 0], "intrepid way he said mayn't": [65535, 0], "way he said mayn't i": [65535, 0], "he said mayn't i go": [65535, 0], "said mayn't i go and": [65535, 0], "mayn't i go and play": [65535, 0], "i go and play now": [65535, 0], "go and play now aunt": [65535, 0], "and play now aunt what": [65535, 0], "play now aunt what a'ready": [65535, 0], "now aunt what a'ready how": [65535, 0], "aunt what a'ready how much": [65535, 0], "what a'ready how much have": [65535, 0], "a'ready how much have you": [65535, 0], "how much have you done": [65535, 0], "much have you done it's": [65535, 0], "have you done it's all": [65535, 0], "you done it's all done": [65535, 0], "done it's all done aunt": [65535, 0], "it's all done aunt tom": [65535, 0], "all done aunt tom don't": [65535, 0], "done aunt tom don't lie": [65535, 0], "aunt tom don't lie to": [65535, 0], "tom don't lie to me": [65535, 0], "don't lie to me i": [65535, 0], "lie to me i can't": [65535, 0], "to me i can't bear": [65535, 0], "me i can't bear it": [65535, 0], "i can't bear it i": [65535, 0], "can't bear it i ain't": [65535, 0], "bear it i ain't aunt": [65535, 0], "it i ain't aunt it": [65535, 0], "i ain't aunt it is": [65535, 0], "ain't aunt it is all": [65535, 0], "aunt it is all done": [65535, 0], "it is all done aunt": [65535, 0], "is all done aunt polly": [65535, 0], "all done aunt polly placed": [65535, 0], "done aunt polly placed small": [65535, 0], "aunt polly placed small trust": [65535, 0], "polly placed small trust in": [65535, 0], "placed small trust in such": [65535, 0], "small trust in such evidence": [65535, 0], "trust in such evidence she": [65535, 0], "in such evidence she went": [65535, 0], "such evidence she went out": [65535, 0], "evidence she went out to": [65535, 0], "she went out to see": [65535, 0], "went out to see for": [65535, 0], "out to see for herself": [65535, 0], "to see for herself and": [65535, 0], "see for herself and she": [65535, 0], "for herself and she would": [65535, 0], "herself and she would have": [65535, 0], "and she would have been": [65535, 0], "she would have been content": [65535, 0], "would have been content to": [65535, 0], "have been content to find": [65535, 0], "been content to find twenty": [65535, 0], "content to find twenty per": [65535, 0], "to find twenty per cent": [65535, 0], "find twenty per cent of": [65535, 0], "twenty per cent of tom's": [65535, 0], "per cent of tom's statement": [65535, 0], "cent of tom's statement true": [65535, 0], "of tom's statement true when": [65535, 0], "tom's statement true when she": [65535, 0], "statement true when she found": [65535, 0], "true when she found the": [65535, 0], "when she found the entire": [65535, 0], "she found the entire fence": [65535, 0], "found the entire fence whitewashed": [65535, 0], "the entire fence whitewashed and": [65535, 0], "entire fence whitewashed and not": [65535, 0], "fence whitewashed and not only": [65535, 0], "whitewashed and not only whitewashed": [65535, 0], "and not only whitewashed but": [65535, 0], "not only whitewashed but elaborately": [65535, 0], "only whitewashed but elaborately coated": [65535, 0], "whitewashed but elaborately coated and": [65535, 0], "but elaborately coated and recoated": [65535, 0], "elaborately coated and recoated and": [65535, 0], "coated and recoated and even": [65535, 0], "and recoated and even a": [65535, 0], "recoated and even a streak": [65535, 0], "and even a streak added": [65535, 0], "even a streak added to": [65535, 0], "a streak added to the": [65535, 0], "streak added to the ground": [65535, 0], "added to the ground her": [65535, 0], "to the ground her astonishment": [65535, 0], "the ground her astonishment was": [65535, 0], "ground her astonishment was almost": [65535, 0], "her astonishment was almost unspeakable": [65535, 0], "astonishment was almost unspeakable she": [65535, 0], "was almost unspeakable she said": [65535, 0], "almost unspeakable she said well": [65535, 0], "unspeakable she said well i": [65535, 0], "she said well i never": [65535, 0], "said well i never there's": [65535, 0], "well i never there's no": [65535, 0], "i never there's no getting": [65535, 0], "never there's no getting round": [65535, 0], "there's no getting round it": [65535, 0], "no getting round it you": [65535, 0], "getting round it you can": [65535, 0], "round it you can work": [65535, 0], "it you can work when": [65535, 0], "you can work when you're": [65535, 0], "can work when you're a": [65535, 0], "work when you're a mind": [65535, 0], "when you're a mind to": [65535, 0], "you're a mind to tom": [65535, 0], "a mind to tom and": [65535, 0], "mind to tom and then": [65535, 0], "to tom and then she": [65535, 0], "tom and then she diluted": [65535, 0], "and then she diluted the": [65535, 0], "then she diluted the compliment": [65535, 0], "she diluted the compliment by": [65535, 0], "diluted the compliment by adding": [65535, 0], "the compliment by adding but": [65535, 0], "compliment by adding but it's": [65535, 0], "by adding but it's powerful": [65535, 0], "adding but it's powerful seldom": [65535, 0], "but it's powerful seldom you're": [65535, 0], "it's powerful seldom you're a": [65535, 0], "powerful seldom you're a mind": [65535, 0], "seldom you're a mind to": [65535, 0], "you're a mind to i'm": [65535, 0], "a mind to i'm bound": [65535, 0], "mind to i'm bound to": [65535, 0], "to i'm bound to say": [65535, 0], "i'm bound to say well": [65535, 0], "bound to say well go": [65535, 0], "to say well go 'long": [65535, 0], "say well go 'long and": [65535, 0], "well go 'long and play": [65535, 0], "go 'long and play but": [65535, 0], "'long and play but mind": [65535, 0], "and play but mind you": [65535, 0], "play but mind you get": [65535, 0], "but mind you get back": [65535, 0], "mind you get back some": [65535, 0], "you get back some time": [65535, 0], "get back some time in": [65535, 0], "back some time in a": [65535, 0], "some time in a week": [65535, 0], "time in a week or": [65535, 0], "in a week or i'll": [65535, 0], "a week or i'll tan": [65535, 0], "week or i'll tan you": [65535, 0], "or i'll tan you she": [65535, 0], "i'll tan you she was": [65535, 0], "tan you she was so": [65535, 0], "you she was so overcome": [65535, 0], "she was so overcome by": [65535, 0], "was so overcome by the": [65535, 0], "so overcome by the splendor": [65535, 0], "overcome by the splendor of": [65535, 0], "by the splendor of his": [65535, 0], "the splendor of his achievement": [65535, 0], "splendor of his achievement that": [65535, 0], "of his achievement that she": [65535, 0], "his achievement that she took": [65535, 0], "achievement that she took him": [65535, 0], "that she took him into": [65535, 0], "she took him into the": [65535, 0], "took him into the closet": [65535, 0], "him into the closet and": [65535, 0], "into the closet and selected": [65535, 0], "the closet and selected a": [65535, 0], "closet and selected a choice": [65535, 0], "and selected a choice apple": [65535, 0], "selected a choice apple and": [65535, 0], "a choice apple and delivered": [65535, 0], "choice apple and delivered it": [65535, 0], "apple and delivered it to": [65535, 0], "and delivered it to him": [65535, 0], "delivered it to him along": [65535, 0], "it to him along with": [65535, 0], "to him along with an": [65535, 0], "him along with an improving": [65535, 0], "along with an improving lecture": [65535, 0], "with an improving lecture upon": [65535, 0], "an improving lecture upon the": [65535, 0], "improving lecture upon the added": [65535, 0], "lecture upon the added value": [65535, 0], "upon the added value and": [65535, 0], "the added value and flavor": [65535, 0], "added value and flavor a": [65535, 0], "value and flavor a treat": [65535, 0], "and flavor a treat took": [65535, 0], "flavor a treat took to": [65535, 0], "a treat took to itself": [65535, 0], "treat took to itself when": [65535, 0], "took to itself when it": [65535, 0], "to itself when it came": [65535, 0], "itself when it came without": [65535, 0], "when it came without sin": [65535, 0], "it came without sin through": [65535, 0], "came without sin through virtuous": [65535, 0], "without sin through virtuous effort": [65535, 0], "sin through virtuous effort and": [65535, 0], "through virtuous effort and while": [65535, 0], "virtuous effort and while she": [65535, 0], "effort and while she closed": [65535, 0], "and while she closed with": [65535, 0], "while she closed with a": [65535, 0], "she closed with a happy": [65535, 0], "closed with a happy scriptural": [65535, 0], "with a happy scriptural flourish": [65535, 0], "a happy scriptural flourish he": [65535, 0], "happy scriptural flourish he hooked": [65535, 0], "scriptural flourish he hooked a": [65535, 0], "flourish he hooked a doughnut": [65535, 0], "he hooked a doughnut then": [65535, 0], "hooked a doughnut then he": [65535, 0], "a doughnut then he skipped": [65535, 0], "doughnut then he skipped out": [65535, 0], "then he skipped out and": [65535, 0], "he skipped out and saw": [65535, 0], "skipped out and saw sid": [65535, 0], "out and saw sid just": [65535, 0], "and saw sid just starting": [65535, 0], "saw sid just starting up": [65535, 0], "sid just starting up the": [65535, 0], "just starting up the outside": [65535, 0], "starting up the outside stairway": [65535, 0], "up the outside stairway that": [65535, 0], "the outside stairway that led": [65535, 0], "outside stairway that led to": [65535, 0], "stairway that led to the": [65535, 0], "that led to the back": [65535, 0], "led to the back rooms": [65535, 0], "to the back rooms on": [65535, 0], "the back rooms on the": [65535, 0], "back rooms on the second": [65535, 0], "rooms on the second floor": [65535, 0], "on the second floor clods": [65535, 0], "the second floor clods were": [65535, 0], "second floor clods were handy": [65535, 0], "floor clods were handy and": [65535, 0], "clods were handy and the": [65535, 0], "were handy and the air": [65535, 0], "handy and the air was": [65535, 0], "and the air was full": [65535, 0], "the air was full of": [65535, 0], "air was full of them": [65535, 0], "was full of them in": [65535, 0], "full of them in a": [65535, 0], "of them in a twinkling": [65535, 0], "them in a twinkling they": [65535, 0], "in a twinkling they raged": [65535, 0], "a twinkling they raged around": [65535, 0], "twinkling they raged around sid": [65535, 0], "they raged around sid like": [65535, 0], "raged around sid like a": [65535, 0], "around sid like a hail": [65535, 0], "sid like a hail storm": [65535, 0], "like a hail storm and": [65535, 0], "a hail storm and before": [65535, 0], "hail storm and before aunt": [65535, 0], "storm and before aunt polly": [65535, 0], "and before aunt polly could": [65535, 0], "before aunt polly could collect": [65535, 0], "aunt polly could collect her": [65535, 0], "polly could collect her surprised": [65535, 0], "could collect her surprised faculties": [65535, 0], "collect her surprised faculties and": [65535, 0], "her surprised faculties and sally": [65535, 0], "surprised faculties and sally to": [65535, 0], "faculties and sally to the": [65535, 0], "and sally to the rescue": [65535, 0], "sally to the rescue six": [65535, 0], "to the rescue six or": [65535, 0], "the rescue six or seven": [65535, 0], "rescue six or seven clods": [65535, 0], "six or seven clods had": [65535, 0], "or seven clods had taken": [65535, 0], "seven clods had taken personal": [65535, 0], "clods had taken personal effect": [65535, 0], "had taken personal effect and": [65535, 0], "taken personal effect and tom": [65535, 0], "personal effect and tom was": [65535, 0], "effect and tom was over": [65535, 0], "and tom was over the": [65535, 0], "tom was over the fence": [65535, 0], "was over the fence and": [65535, 0], "over the fence and gone": [65535, 0], "the fence and gone there": [65535, 0], "fence and gone there was": [65535, 0], "and gone there was a": [65535, 0], "gone there was a gate": [65535, 0], "there was a gate but": [65535, 0], "was a gate but as": [65535, 0], "a gate but as a": [65535, 0], "gate but as a general": [65535, 0], "but as a general thing": [65535, 0], "as a general thing he": [65535, 0], "a general thing he was": [65535, 0], "general thing he was too": [65535, 0], "thing he was too crowded": [65535, 0], "he was too crowded for": [65535, 0], "was too crowded for time": [65535, 0], "too crowded for time to": [65535, 0], "crowded for time to make": [65535, 0], "for time to make use": [65535, 0], "time to make use of": [65535, 0], "to make use of it": [65535, 0], "make use of it his": [65535, 0], "use of it his soul": [65535, 0], "of it his soul was": [65535, 0], "it his soul was at": [65535, 0], "his soul was at peace": [65535, 0], "soul was at peace now": [65535, 0], "was at peace now that": [65535, 0], "at peace now that he": [65535, 0], "peace now that he had": [65535, 0], "now that he had settled": [65535, 0], "that he had settled with": [65535, 0], "he had settled with sid": [65535, 0], "had settled with sid for": [65535, 0], "settled with sid for calling": [65535, 0], "with sid for calling attention": [65535, 0], "sid for calling attention to": [65535, 0], "for calling attention to his": [65535, 0], "calling attention to his black": [65535, 0], "attention to his black thread": [65535, 0], "to his black thread and": [65535, 0], "his black thread and getting": [65535, 0], "black thread and getting him": [65535, 0], "thread and getting him into": [65535, 0], "and getting him into trouble": [65535, 0], "getting him into trouble tom": [65535, 0], "him into trouble tom skirted": [65535, 0], "into trouble tom skirted the": [65535, 0], "trouble tom skirted the block": [65535, 0], "tom skirted the block and": [65535, 0], "skirted the block and came": [65535, 0], "the block and came round": [65535, 0], "block and came round into": [65535, 0], "and came round into a": [65535, 0], "came round into a muddy": [65535, 0], "round into a muddy alley": [65535, 0], "into a muddy alley that": [65535, 0], "a muddy alley that led": [65535, 0], "muddy alley that led by": [65535, 0], "alley that led by the": [65535, 0], "that led by the back": [65535, 0], "led by the back of": [65535, 0], "by the back of his": [65535, 0], "the back of his aunt's": [65535, 0], "back of his aunt's cowstable": [65535, 0], "of his aunt's cowstable he": [65535, 0], "his aunt's cowstable he presently": [65535, 0], "aunt's cowstable he presently got": [65535, 0], "cowstable he presently got safely": [65535, 0], "he presently got safely beyond": [65535, 0], "presently got safely beyond the": [65535, 0], "got safely beyond the reach": [65535, 0], "safely beyond the reach of": [65535, 0], "beyond the reach of capture": [65535, 0], "the reach of capture and": [65535, 0], "reach of capture and punishment": [65535, 0], "of capture and punishment and": [65535, 0], "capture and punishment and hastened": [65535, 0], "and punishment and hastened toward": [65535, 0], "punishment and hastened toward the": [65535, 0], "and hastened toward the public": [65535, 0], "hastened toward the public square": [65535, 0], "toward the public square of": [65535, 0], "the public square of the": [65535, 0], "public square of the village": [65535, 0], "square of the village where": [65535, 0], "of the village where two": [65535, 0], "the village where two military": [65535, 0], "village where two military companies": [65535, 0], "where two military companies of": [65535, 0], "two military companies of boys": [65535, 0], "military companies of boys had": [65535, 0], "companies of boys had met": [65535, 0], "of boys had met for": [65535, 0], "boys had met for conflict": [65535, 0], "had met for conflict according": [65535, 0], "met for conflict according to": [65535, 0], "for conflict according to previous": [65535, 0], "conflict according to previous appointment": [65535, 0], "according to previous appointment tom": [65535, 0], "to previous appointment tom was": [65535, 0], "previous appointment tom was general": [65535, 0], "appointment tom was general of": [65535, 0], "tom was general of one": [65535, 0], "was general of one of": [65535, 0], "general of one of these": [65535, 0], "of one of these armies": [65535, 0], "one of these armies joe": [65535, 0], "of these armies joe harper": [65535, 0], "these armies joe harper a": [65535, 0], "armies joe harper a bosom": [65535, 0], "joe harper a bosom friend": [65535, 0], "harper a bosom friend general": [65535, 0], "a bosom friend general of": [65535, 0], "bosom friend general of the": [65535, 0], "friend general of the other": [65535, 0], "general of the other these": [65535, 0], "of the other these two": [65535, 0], "the other these two great": [65535, 0], "other these two great commanders": [65535, 0], "these two great commanders did": [65535, 0], "two great commanders did not": [65535, 0], "great commanders did not condescend": [65535, 0], "commanders did not condescend to": [65535, 0], "did not condescend to fight": [65535, 0], "not condescend to fight in": [65535, 0], "condescend to fight in person": [65535, 0], "to fight in person that": [65535, 0], "fight in person that being": [65535, 0], "in person that being better": [65535, 0], "person that being better suited": [65535, 0], "that being better suited to": [65535, 0], "being better suited to the": [65535, 0], "better suited to the still": [65535, 0], "suited to the still smaller": [65535, 0], "to the still smaller fry": [65535, 0], "the still smaller fry but": [65535, 0], "still smaller fry but sat": [65535, 0], "smaller fry but sat together": [65535, 0], "fry but sat together on": [65535, 0], "but sat together on an": [65535, 0], "sat together on an eminence": [65535, 0], "together on an eminence and": [65535, 0], "on an eminence and conducted": [65535, 0], "an eminence and conducted the": [65535, 0], "eminence and conducted the field": [65535, 0], "and conducted the field operations": [65535, 0], "conducted the field operations by": [65535, 0], "the field operations by orders": [65535, 0], "field operations by orders delivered": [65535, 0], "operations by orders delivered through": [65535, 0], "by orders delivered through aides": [65535, 0], "orders delivered through aides de": [65535, 0], "delivered through aides de camp": [65535, 0], "through aides de camp tom's": [65535, 0], "aides de camp tom's army": [65535, 0], "de camp tom's army won": [65535, 0], "camp tom's army won a": [65535, 0], "tom's army won a great": [65535, 0], "army won a great victory": [65535, 0], "won a great victory after": [65535, 0], "a great victory after a": [65535, 0], "great victory after a long": [65535, 0], "victory after a long and": [65535, 0], "after a long and hard": [65535, 0], "a long and hard fought": [65535, 0], "long and hard fought battle": [65535, 0], "and hard fought battle then": [65535, 0], "hard fought battle then the": [65535, 0], "fought battle then the dead": [65535, 0], "battle then the dead were": [65535, 0], "then the dead were counted": [65535, 0], "the dead were counted prisoners": [65535, 0], "dead were counted prisoners exchanged": [65535, 0], "were counted prisoners exchanged the": [65535, 0], "counted prisoners exchanged the terms": [65535, 0], "prisoners exchanged the terms of": [65535, 0], "exchanged the terms of the": [65535, 0], "the terms of the next": [65535, 0], "terms of the next disagreement": [65535, 0], "of the next disagreement agreed": [65535, 0], "the next disagreement agreed upon": [65535, 0], "next disagreement agreed upon and": [65535, 0], "disagreement agreed upon and the": [65535, 0], "agreed upon and the day": [65535, 0], "upon and the day for": [65535, 0], "and the day for the": [65535, 0], "the day for the necessary": [65535, 0], "day for the necessary battle": [65535, 0], "for the necessary battle appointed": [65535, 0], "the necessary battle appointed after": [65535, 0], "necessary battle appointed after which": [65535, 0], "battle appointed after which the": [65535, 0], "appointed after which the armies": [65535, 0], "after which the armies fell": [65535, 0], "which the armies fell into": [65535, 0], "the armies fell into line": [65535, 0], "armies fell into line and": [65535, 0], "fell into line and marched": [65535, 0], "into line and marched away": [65535, 0], "line and marched away and": [65535, 0], "and marched away and tom": [65535, 0], "marched away and tom turned": [65535, 0], "away and tom turned homeward": [65535, 0], "and tom turned homeward alone": [65535, 0], "tom turned homeward alone as": [65535, 0], "turned homeward alone as he": [65535, 0], "homeward alone as he was": [65535, 0], "alone as he was passing": [65535, 0], "as he was passing by": [65535, 0], "he was passing by the": [65535, 0], "was passing by the house": [65535, 0], "passing by the house where": [65535, 0], "by the house where jeff": [65535, 0], "the house where jeff thatcher": [65535, 0], "house where jeff thatcher lived": [65535, 0], "where jeff thatcher lived he": [65535, 0], "jeff thatcher lived he saw": [65535, 0], "thatcher lived he saw a": [65535, 0], "lived he saw a new": [65535, 0], "he saw a new girl": [65535, 0], "saw a new girl in": [65535, 0], "a new girl in the": [65535, 0], "new girl in the garden": [65535, 0], "girl in the garden a": [65535, 0], "in the garden a lovely": [65535, 0], "the garden a lovely little": [65535, 0], "garden a lovely little blue": [65535, 0], "a lovely little blue eyed": [65535, 0], "lovely little blue eyed creature": [65535, 0], "little blue eyed creature with": [65535, 0], "blue eyed creature with yellow": [65535, 0], "eyed creature with yellow hair": [65535, 0], "creature with yellow hair plaited": [65535, 0], "with yellow hair plaited into": [65535, 0], "yellow hair plaited into two": [65535, 0], "hair plaited into two long": [65535, 0], "plaited into two long tails": [65535, 0], "into two long tails white": [65535, 0], "two long tails white summer": [65535, 0], "long tails white summer frock": [65535, 0], "tails white summer frock and": [65535, 0], "white summer frock and embroidered": [65535, 0], "summer frock and embroidered pantalettes": [65535, 0], "frock and embroidered pantalettes the": [65535, 0], "and embroidered pantalettes the fresh": [65535, 0], "embroidered pantalettes the fresh crowned": [65535, 0], "pantalettes the fresh crowned hero": [65535, 0], "the fresh crowned hero fell": [65535, 0], "fresh crowned hero fell without": [65535, 0], "crowned hero fell without firing": [65535, 0], "hero fell without firing a": [65535, 0], "fell without firing a shot": [65535, 0], "without firing a shot a": [65535, 0], "firing a shot a certain": [65535, 0], "a shot a certain amy": [65535, 0], "shot a certain amy lawrence": [65535, 0], "a certain amy lawrence vanished": [65535, 0], "certain amy lawrence vanished out": [65535, 0], "amy lawrence vanished out of": [65535, 0], "lawrence vanished out of his": [65535, 0], "vanished out of his heart": [65535, 0], "out of his heart and": [65535, 0], "of his heart and left": [65535, 0], "his heart and left not": [65535, 0], "heart and left not even": [65535, 0], "and left not even a": [65535, 0], "left not even a memory": [65535, 0], "not even a memory of": [65535, 0], "even a memory of herself": [65535, 0], "a memory of herself behind": [65535, 0], "memory of herself behind he": [65535, 0], "of herself behind he had": [65535, 0], "herself behind he had thought": [65535, 0], "behind he had thought he": [65535, 0], "he had thought he loved": [65535, 0], "had thought he loved her": [65535, 0], "thought he loved her to": [65535, 0], "he loved her to distraction": [65535, 0], "loved her to distraction he": [65535, 0], "her to distraction he had": [65535, 0], "to distraction he had regarded": [65535, 0], "distraction he had regarded his": [65535, 0], "he had regarded his passion": [65535, 0], "had regarded his passion as": [65535, 0], "regarded his passion as adoration": [65535, 0], "his passion as adoration and": [65535, 0], "passion as adoration and behold": [65535, 0], "as adoration and behold it": [65535, 0], "adoration and behold it was": [65535, 0], "and behold it was only": [65535, 0], "behold it was only a": [65535, 0], "it was only a poor": [65535, 0], "was only a poor little": [65535, 0], "only a poor little evanescent": [65535, 0], "a poor little evanescent partiality": [65535, 0], "poor little evanescent partiality he": [65535, 0], "little evanescent partiality he had": [65535, 0], "evanescent partiality he had been": [65535, 0], "partiality he had been months": [65535, 0], "he had been months winning": [65535, 0], "had been months winning her": [65535, 0], "been months winning her she": [65535, 0], "months winning her she had": [65535, 0], "winning her she had confessed": [65535, 0], "her she had confessed hardly": [65535, 0], "she had confessed hardly a": [65535, 0], "had confessed hardly a week": [65535, 0], "confessed hardly a week ago": [65535, 0], "hardly a week ago he": [65535, 0], "a week ago he had": [65535, 0], "week ago he had been": [65535, 0], "ago he had been the": [65535, 0], "he had been the happiest": [65535, 0], "had been the happiest and": [65535, 0], "been the happiest and the": [65535, 0], "the happiest and the proudest": [65535, 0], "happiest and the proudest boy": [65535, 0], "and the proudest boy in": [65535, 0], "the proudest boy in the": [65535, 0], "proudest boy in the world": [65535, 0], "boy in the world only": [65535, 0], "in the world only seven": [65535, 0], "the world only seven short": [65535, 0], "world only seven short days": [65535, 0], "only seven short days and": [65535, 0], "seven short days and here": [65535, 0], "short days and here in": [65535, 0], "days and here in one": [65535, 0], "and here in one instant": [65535, 0], "here in one instant of": [65535, 0], "in one instant of time": [65535, 0], "one instant of time she": [65535, 0], "instant of time she had": [65535, 0], "of time she had gone": [65535, 0], "time she had gone out": [65535, 0], "she had gone out of": [65535, 0], "had gone out of his": [65535, 0], "gone out of his heart": [65535, 0], "out of his heart like": [65535, 0], "of his heart like a": [65535, 0], "his heart like a casual": [65535, 0], "heart like a casual stranger": [65535, 0], "like a casual stranger whose": [65535, 0], "a casual stranger whose visit": [65535, 0], "casual stranger whose visit is": [65535, 0], "stranger whose visit is done": [65535, 0], "whose visit is done he": [65535, 0], "visit is done he worshipped": [65535, 0], "is done he worshipped this": [65535, 0], "done he worshipped this new": [65535, 0], "he worshipped this new angel": [65535, 0], "worshipped this new angel with": [65535, 0], "this new angel with furtive": [65535, 0], "new angel with furtive eye": [65535, 0], "angel with furtive eye till": [65535, 0], "with furtive eye till he": [65535, 0], "furtive eye till he saw": [65535, 0], "eye till he saw that": [65535, 0], "till he saw that she": [65535, 0], "he saw that she had": [65535, 0], "saw that she had discovered": [65535, 0], "that she had discovered him": [65535, 0], "she had discovered him then": [65535, 0], "had discovered him then he": [65535, 0], "discovered him then he pretended": [65535, 0], "him then he pretended he": [65535, 0], "then he pretended he did": [65535, 0], "he pretended he did not": [65535, 0], "pretended he did not know": [65535, 0], "he did not know she": [65535, 0], "did not know she was": [65535, 0], "not know she was present": [65535, 0], "know she was present and": [65535, 0], "she was present and began": [65535, 0], "was present and began to": [65535, 0], "present and began to show": [65535, 0], "and began to show off": [65535, 0], "began to show off in": [65535, 0], "to show off in all": [65535, 0], "show off in all sorts": [65535, 0], "off in all sorts of": [65535, 0], "in all sorts of absurd": [65535, 0], "all sorts of absurd boyish": [65535, 0], "sorts of absurd boyish ways": [65535, 0], "of absurd boyish ways in": [65535, 0], "absurd boyish ways in order": [65535, 0], "boyish ways in order to": [65535, 0], "ways in order to win": [65535, 0], "in order to win her": [65535, 0], "order to win her admiration": [65535, 0], "to win her admiration he": [65535, 0], "win her admiration he kept": [65535, 0], "her admiration he kept up": [65535, 0], "admiration he kept up this": [65535, 0], "he kept up this grotesque": [65535, 0], "kept up this grotesque foolishness": [65535, 0], "up this grotesque foolishness for": [65535, 0], "this grotesque foolishness for some": [65535, 0], "grotesque foolishness for some time": [65535, 0], "foolishness for some time but": [65535, 0], "for some time but by": [65535, 0], "some time but by and": [65535, 0], "time but by and by": [65535, 0], "but by and by while": [65535, 0], "by and by while he": [65535, 0], "and by while he was": [65535, 0], "by while he was in": [65535, 0], "while he was in the": [65535, 0], "he was in the midst": [65535, 0], "was in the midst of": [65535, 0], "in the midst of some": [65535, 0], "the midst of some dangerous": [65535, 0], "midst of some dangerous gymnastic": [65535, 0], "of some dangerous gymnastic performances": [65535, 0], "some dangerous gymnastic performances he": [65535, 0], "dangerous gymnastic performances he glanced": [65535, 0], "gymnastic performances he glanced aside": [65535, 0], "performances he glanced aside and": [65535, 0], "he glanced aside and saw": [65535, 0], "glanced aside and saw that": [65535, 0], "aside and saw that the": [65535, 0], "and saw that the little": [65535, 0], "saw that the little girl": [65535, 0], "that the little girl was": [65535, 0], "the little girl was wending": [65535, 0], "little girl was wending her": [65535, 0], "girl was wending her way": [65535, 0], "was wending her way toward": [65535, 0], "wending her way toward the": [65535, 0], "her way toward the house": [65535, 0], "way toward the house tom": [65535, 0], "toward the house tom came": [65535, 0], "the house tom came up": [65535, 0], "house tom came up to": [65535, 0], "tom came up to the": [65535, 0], "came up to the fence": [65535, 0], "up to the fence and": [65535, 0], "to the fence and leaned": [65535, 0], "the fence and leaned on": [65535, 0], "fence and leaned on it": [65535, 0], "and leaned on it grieving": [65535, 0], "leaned on it grieving and": [65535, 0], "on it grieving and hoping": [65535, 0], "it grieving and hoping she": [65535, 0], "grieving and hoping she would": [65535, 0], "and hoping she would tarry": [65535, 0], "hoping she would tarry yet": [65535, 0], "she would tarry yet awhile": [65535, 0], "would tarry yet awhile longer": [65535, 0], "tarry yet awhile longer she": [65535, 0], "yet awhile longer she halted": [65535, 0], "awhile longer she halted a": [65535, 0], "longer she halted a moment": [65535, 0], "she halted a moment on": [65535, 0], "halted a moment on the": [65535, 0], "a moment on the steps": [65535, 0], "moment on the steps and": [65535, 0], "on the steps and then": [65535, 0], "the steps and then moved": [65535, 0], "steps and then moved toward": [65535, 0], "and then moved toward the": [65535, 0], "then moved toward the door": [65535, 0], "moved toward the door tom": [65535, 0], "toward the door tom heaved": [65535, 0], "the door tom heaved a": [65535, 0], "door tom heaved a great": [65535, 0], "tom heaved a great sigh": [65535, 0], "heaved a great sigh as": [65535, 0], "a great sigh as she": [65535, 0], "great sigh as she put": [65535, 0], "sigh as she put her": [65535, 0], "as she put her foot": [65535, 0], "she put her foot on": [65535, 0], "put her foot on the": [65535, 0], "her foot on the threshold": [65535, 0], "foot on the threshold but": [65535, 0], "on the threshold but his": [65535, 0], "the threshold but his face": [65535, 0], "threshold but his face lit": [65535, 0], "but his face lit up": [65535, 0], "his face lit up right": [65535, 0], "face lit up right away": [65535, 0], "lit up right away for": [65535, 0], "up right away for she": [65535, 0], "right away for she tossed": [65535, 0], "away for she tossed a": [65535, 0], "for she tossed a pansy": [65535, 0], "she tossed a pansy over": [65535, 0], "tossed a pansy over the": [65535, 0], "a pansy over the fence": [65535, 0], "pansy over the fence a": [65535, 0], "over the fence a moment": [65535, 0], "the fence a moment before": [65535, 0], "fence a moment before she": [65535, 0], "a moment before she disappeared": [65535, 0], "moment before she disappeared the": [65535, 0], "before she disappeared the boy": [65535, 0], "she disappeared the boy ran": [65535, 0], "disappeared the boy ran around": [65535, 0], "the boy ran around and": [65535, 0], "boy ran around and stopped": [65535, 0], "ran around and stopped within": [65535, 0], "around and stopped within a": [65535, 0], "and stopped within a foot": [65535, 0], "stopped within a foot or": [65535, 0], "within a foot or two": [65535, 0], "a foot or two of": [65535, 0], "foot or two of the": [65535, 0], "or two of the flower": [65535, 0], "two of the flower and": [65535, 0], "of the flower and then": [65535, 0], "the flower and then shaded": [65535, 0], "flower and then shaded his": [65535, 0], "and then shaded his eyes": [65535, 0], "then shaded his eyes with": [65535, 0], "shaded his eyes with his": [65535, 0], "his eyes with his hand": [65535, 0], "eyes with his hand and": [65535, 0], "with his hand and began": [65535, 0], "his hand and began to": [65535, 0], "hand and began to look": [65535, 0], "and began to look down": [65535, 0], "began to look down street": [65535, 0], "to look down street as": [65535, 0], "look down street as if": [65535, 0], "down street as if he": [65535, 0], "street as if he had": [65535, 0], "as if he had discovered": [65535, 0], "if he had discovered something": [65535, 0], "he had discovered something of": [65535, 0], "had discovered something of interest": [65535, 0], "discovered something of interest going": [65535, 0], "something of interest going on": [65535, 0], "of interest going on in": [65535, 0], "interest going on in that": [65535, 0], "going on in that direction": [65535, 0], "on in that direction presently": [65535, 0], "in that direction presently he": [65535, 0], "that direction presently he picked": [65535, 0], "direction presently he picked up": [65535, 0], "presently he picked up a": [65535, 0], "he picked up a straw": [65535, 0], "picked up a straw and": [65535, 0], "up a straw and began": [65535, 0], "a straw and began trying": [65535, 0], "straw and began trying to": [65535, 0], "and began trying to balance": [65535, 0], "began trying to balance it": [65535, 0], "trying to balance it on": [65535, 0], "to balance it on his": [65535, 0], "balance it on his nose": [65535, 0], "it on his nose with": [65535, 0], "on his nose with his": [65535, 0], "his nose with his head": [65535, 0], "nose with his head tilted": [65535, 0], "with his head tilted far": [65535, 0], "his head tilted far back": [65535, 0], "head tilted far back and": [65535, 0], "tilted far back and as": [65535, 0], "far back and as he": [65535, 0], "back and as he moved": [65535, 0], "and as he moved from": [65535, 0], "as he moved from side": [65535, 0], "he moved from side to": [65535, 0], "moved from side to side": [65535, 0], "from side to side in": [65535, 0], "side to side in his": [65535, 0], "to side in his efforts": [65535, 0], "side in his efforts he": [65535, 0], "in his efforts he edged": [65535, 0], "his efforts he edged nearer": [65535, 0], "efforts he edged nearer and": [65535, 0], "he edged nearer and nearer": [65535, 0], "edged nearer and nearer toward": [65535, 0], "nearer and nearer toward the": [65535, 0], "and nearer toward the pansy": [65535, 0], "nearer toward the pansy finally": [65535, 0], "toward the pansy finally his": [65535, 0], "the pansy finally his bare": [65535, 0], "pansy finally his bare foot": [65535, 0], "finally his bare foot rested": [65535, 0], "his bare foot rested upon": [65535, 0], "bare foot rested upon it": [65535, 0], "foot rested upon it his": [65535, 0], "rested upon it his pliant": [65535, 0], "upon it his pliant toes": [65535, 0], "it his pliant toes closed": [65535, 0], "his pliant toes closed upon": [65535, 0], "pliant toes closed upon it": [65535, 0], "toes closed upon it and": [65535, 0], "closed upon it and he": [65535, 0], "upon it and he hopped": [65535, 0], "it and he hopped away": [65535, 0], "and he hopped away with": [65535, 0], "he hopped away with the": [65535, 0], "hopped away with the treasure": [65535, 0], "away with the treasure and": [65535, 0], "with the treasure and disappeared": [65535, 0], "the treasure and disappeared round": [65535, 0], "treasure and disappeared round the": [65535, 0], "and disappeared round the corner": [65535, 0], "disappeared round the corner but": [65535, 0], "round the corner but only": [65535, 0], "the corner but only for": [65535, 0], "corner but only for a": [65535, 0], "but only for a minute": [65535, 0], "only for a minute only": [65535, 0], "for a minute only while": [65535, 0], "a minute only while he": [65535, 0], "minute only while he could": [65535, 0], "only while he could button": [65535, 0], "while he could button the": [65535, 0], "he could button the flower": [65535, 0], "could button the flower inside": [65535, 0], "button the flower inside his": [65535, 0], "the flower inside his jacket": [65535, 0], "flower inside his jacket next": [65535, 0], "inside his jacket next his": [65535, 0], "his jacket next his heart": [65535, 0], "jacket next his heart or": [65535, 0], "next his heart or next": [65535, 0], "his heart or next his": [65535, 0], "heart or next his stomach": [65535, 0], "or next his stomach possibly": [65535, 0], "next his stomach possibly for": [65535, 0], "his stomach possibly for he": [65535, 0], "stomach possibly for he was": [65535, 0], "possibly for he was not": [65535, 0], "for he was not much": [65535, 0], "he was not much posted": [65535, 0], "was not much posted in": [65535, 0], "not much posted in anatomy": [65535, 0], "much posted in anatomy and": [65535, 0], "posted in anatomy and not": [65535, 0], "in anatomy and not hypercritical": [65535, 0], "anatomy and not hypercritical anyway": [65535, 0], "and not hypercritical anyway he": [65535, 0], "not hypercritical anyway he returned": [65535, 0], "hypercritical anyway he returned now": [65535, 0], "anyway he returned now and": [65535, 0], "he returned now and hung": [65535, 0], "returned now and hung about": [65535, 0], "now and hung about the": [65535, 0], "and hung about the fence": [65535, 0], "hung about the fence till": [65535, 0], "about the fence till nightfall": [65535, 0], "the fence till nightfall showing": [65535, 0], "fence till nightfall showing off": [65535, 0], "till nightfall showing off as": [65535, 0], "nightfall showing off as before": [65535, 0], "showing off as before but": [65535, 0], "off as before but the": [65535, 0], "as before but the girl": [65535, 0], "before but the girl never": [65535, 0], "but the girl never exhibited": [65535, 0], "the girl never exhibited herself": [65535, 0], "girl never exhibited herself again": [65535, 0], "never exhibited herself again though": [65535, 0], "exhibited herself again though tom": [65535, 0], "herself again though tom comforted": [65535, 0], "again though tom comforted himself": [65535, 0], "though tom comforted himself a": [65535, 0], "tom comforted himself a little": [65535, 0], "comforted himself a little with": [65535, 0], "himself a little with the": [65535, 0], "a little with the hope": [65535, 0], "little with the hope that": [65535, 0], "with the hope that she": [65535, 0], "the hope that she had": [65535, 0], "hope that she had been": [65535, 0], "that she had been near": [65535, 0], "she had been near some": [65535, 0], "had been near some window": [65535, 0], "been near some window meantime": [65535, 0], "near some window meantime and": [65535, 0], "some window meantime and been": [65535, 0], "window meantime and been aware": [65535, 0], "meantime and been aware of": [65535, 0], "and been aware of his": [65535, 0], "been aware of his attentions": [65535, 0], "aware of his attentions finally": [65535, 0], "of his attentions finally he": [65535, 0], "his attentions finally he strode": [65535, 0], "attentions finally he strode home": [65535, 0], "finally he strode home reluctantly": [65535, 0], "he strode home reluctantly with": [65535, 0], "strode home reluctantly with his": [65535, 0], "home reluctantly with his poor": [65535, 0], "reluctantly with his poor head": [65535, 0], "with his poor head full": [65535, 0], "his poor head full of": [65535, 0], "poor head full of visions": [65535, 0], "head full of visions all": [65535, 0], "full of visions all through": [65535, 0], "of visions all through supper": [65535, 0], "visions all through supper his": [65535, 0], "all through supper his spirits": [65535, 0], "through supper his spirits were": [65535, 0], "supper his spirits were so": [65535, 0], "his spirits were so high": [65535, 0], "spirits were so high that": [65535, 0], "were so high that his": [65535, 0], "so high that his aunt": [65535, 0], "high that his aunt wondered": [65535, 0], "that his aunt wondered what": [65535, 0], "his aunt wondered what had": [65535, 0], "aunt wondered what had got": [65535, 0], "wondered what had got into": [65535, 0], "what had got into the": [65535, 0], "had got into the child": [65535, 0], "got into the child he": [65535, 0], "into the child he took": [65535, 0], "the child he took a": [65535, 0], "child he took a good": [65535, 0], "he took a good scolding": [65535, 0], "took a good scolding about": [65535, 0], "a good scolding about clodding": [65535, 0], "good scolding about clodding sid": [65535, 0], "scolding about clodding sid and": [65535, 0], "about clodding sid and did": [65535, 0], "clodding sid and did not": [65535, 0], "sid and did not seem": [65535, 0], "and did not seem to": [65535, 0], "did not seem to mind": [65535, 0], "not seem to mind it": [65535, 0], "seem to mind it in": [65535, 0], "to mind it in the": [65535, 0], "mind it in the least": [65535, 0], "it in the least he": [65535, 0], "in the least he tried": [65535, 0], "the least he tried to": [65535, 0], "least he tried to steal": [65535, 0], "he tried to steal sugar": [65535, 0], "tried to steal sugar under": [65535, 0], "to steal sugar under his": [65535, 0], "steal sugar under his aunt's": [65535, 0], "sugar under his aunt's very": [65535, 0], "under his aunt's very nose": [65535, 0], "his aunt's very nose and": [65535, 0], "aunt's very nose and got": [65535, 0], "very nose and got his": [65535, 0], "nose and got his knuckles": [65535, 0], "and got his knuckles rapped": [65535, 0], "got his knuckles rapped for": [65535, 0], "his knuckles rapped for it": [65535, 0], "knuckles rapped for it he": [65535, 0], "rapped for it he said": [65535, 0], "for it he said aunt": [65535, 0], "it he said aunt you": [65535, 0], "he said aunt you don't": [65535, 0], "said aunt you don't whack": [65535, 0], "aunt you don't whack sid": [65535, 0], "you don't whack sid when": [65535, 0], "don't whack sid when he": [65535, 0], "whack sid when he takes": [65535, 0], "sid when he takes it": [65535, 0], "when he takes it well": [65535, 0], "he takes it well sid": [65535, 0], "takes it well sid don't": [65535, 0], "it well sid don't torment": [65535, 0], "well sid don't torment a": [65535, 0], "sid don't torment a body": [65535, 0], "don't torment a body the": [65535, 0], "torment a body the way": [65535, 0], "a body the way you": [65535, 0], "body the way you do": [65535, 0], "the way you do you'd": [65535, 0], "way you do you'd be": [65535, 0], "you do you'd be always": [65535, 0], "do you'd be always into": [65535, 0], "you'd be always into that": [65535, 0], "be always into that sugar": [65535, 0], "always into that sugar if": [65535, 0], "into that sugar if i": [65535, 0], "that sugar if i warn't": [65535, 0], "sugar if i warn't watching": [65535, 0], "if i warn't watching you": [65535, 0], "i warn't watching you presently": [65535, 0], "warn't watching you presently she": [65535, 0], "watching you presently she stepped": [65535, 0], "you presently she stepped into": [65535, 0], "presently she stepped into the": [65535, 0], "she stepped into the kitchen": [65535, 0], "stepped into the kitchen and": [65535, 0], "into the kitchen and sid": [65535, 0], "the kitchen and sid happy": [65535, 0], "kitchen and sid happy in": [65535, 0], "and sid happy in his": [65535, 0], "sid happy in his immunity": [65535, 0], "happy in his immunity reached": [65535, 0], "in his immunity reached for": [65535, 0], "his immunity reached for the": [65535, 0], "immunity reached for the sugar": [65535, 0], "reached for the sugar bowl": [65535, 0], "for the sugar bowl a": [65535, 0], "the sugar bowl a sort": [65535, 0], "sugar bowl a sort of": [65535, 0], "bowl a sort of glorying": [65535, 0], "a sort of glorying over": [65535, 0], "sort of glorying over tom": [65535, 0], "of glorying over tom which": [65535, 0], "glorying over tom which was": [65535, 0], "over tom which was well": [65535, 0], "tom which was well nigh": [65535, 0], "which was well nigh unbearable": [65535, 0], "was well nigh unbearable but": [65535, 0], "well nigh unbearable but sid's": [65535, 0], "nigh unbearable but sid's fingers": [65535, 0], "unbearable but sid's fingers slipped": [65535, 0], "but sid's fingers slipped and": [65535, 0], "sid's fingers slipped and the": [65535, 0], "fingers slipped and the bowl": [65535, 0], "slipped and the bowl dropped": [65535, 0], "and the bowl dropped and": [65535, 0], "the bowl dropped and broke": [65535, 0], "bowl dropped and broke tom": [65535, 0], "dropped and broke tom was": [65535, 0], "and broke tom was in": [65535, 0], "broke tom was in ecstasies": [65535, 0], "tom was in ecstasies in": [65535, 0], "was in ecstasies in such": [65535, 0], "in ecstasies in such ecstasies": [65535, 0], "ecstasies in such ecstasies that": [65535, 0], "in such ecstasies that he": [65535, 0], "such ecstasies that he even": [65535, 0], "ecstasies that he even controlled": [65535, 0], "that he even controlled his": [65535, 0], "he even controlled his tongue": [65535, 0], "even controlled his tongue and": [65535, 0], "controlled his tongue and was": [65535, 0], "his tongue and was silent": [65535, 0], "tongue and was silent he": [65535, 0], "and was silent he said": [65535, 0], "was silent he said to": [65535, 0], "silent he said to himself": [65535, 0], "to himself that he would": [65535, 0], "himself that he would not": [65535, 0], "that he would not speak": [65535, 0], "he would not speak a": [65535, 0], "would not speak a word": [65535, 0], "not speak a word even": [65535, 0], "speak a word even when": [65535, 0], "a word even when his": [65535, 0], "word even when his aunt": [65535, 0], "even when his aunt came": [65535, 0], "when his aunt came in": [65535, 0], "his aunt came in but": [65535, 0], "aunt came in but would": [65535, 0], "came in but would sit": [65535, 0], "in but would sit perfectly": [65535, 0], "but would sit perfectly still": [65535, 0], "would sit perfectly still till": [65535, 0], "sit perfectly still till she": [65535, 0], "perfectly still till she asked": [65535, 0], "still till she asked who": [65535, 0], "till she asked who did": [65535, 0], "she asked who did the": [65535, 0], "asked who did the mischief": [65535, 0], "who did the mischief and": [65535, 0], "did the mischief and then": [65535, 0], "the mischief and then he": [65535, 0], "mischief and then he would": [65535, 0], "and then he would tell": [65535, 0], "then he would tell and": [65535, 0], "he would tell and there": [65535, 0], "would tell and there would": [65535, 0], "tell and there would be": [65535, 0], "and there would be nothing": [65535, 0], "there would be nothing so": [65535, 0], "would be nothing so good": [65535, 0], "be nothing so good in": [65535, 0], "nothing so good in the": [65535, 0], "so good in the world": [65535, 0], "good in the world as": [65535, 0], "in the world as to": [65535, 0], "the world as to see": [65535, 0], "world as to see that": [65535, 0], "as to see that pet": [65535, 0], "to see that pet model": [65535, 0], "see that pet model catch": [65535, 0], "that pet model catch it": [65535, 0], "pet model catch it he": [65535, 0], "model catch it he was": [65535, 0], "catch it he was so": [65535, 0], "it he was so brimful": [65535, 0], "he was so brimful of": [65535, 0], "was so brimful of exultation": [65535, 0], "so brimful of exultation that": [65535, 0], "brimful of exultation that he": [65535, 0], "of exultation that he could": [65535, 0], "exultation that he could hardly": [65535, 0], "that he could hardly hold": [65535, 0], "he could hardly hold himself": [65535, 0], "could hardly hold himself when": [65535, 0], "hardly hold himself when the": [65535, 0], "hold himself when the old": [65535, 0], "himself when the old lady": [65535, 0], "when the old lady came": [65535, 0], "the old lady came back": [65535, 0], "old lady came back and": [65535, 0], "lady came back and stood": [65535, 0], "came back and stood above": [65535, 0], "back and stood above the": [65535, 0], "and stood above the wreck": [65535, 0], "stood above the wreck discharging": [65535, 0], "above the wreck discharging lightnings": [65535, 0], "the wreck discharging lightnings of": [65535, 0], "wreck discharging lightnings of wrath": [65535, 0], "discharging lightnings of wrath from": [65535, 0], "lightnings of wrath from over": [65535, 0], "of wrath from over her": [65535, 0], "wrath from over her spectacles": [65535, 0], "from over her spectacles he": [65535, 0], "over her spectacles he said": [65535, 0], "her spectacles he said to": [65535, 0], "spectacles he said to himself": [65535, 0], "he said to himself now": [65535, 0], "said to himself now it's": [65535, 0], "to himself now it's coming": [65535, 0], "himself now it's coming and": [65535, 0], "now it's coming and the": [65535, 0], "it's coming and the next": [65535, 0], "coming and the next instant": [65535, 0], "and the next instant he": [65535, 0], "the next instant he was": [65535, 0], "next instant he was sprawling": [65535, 0], "instant he was sprawling on": [65535, 0], "he was sprawling on the": [65535, 0], "was sprawling on the floor": [65535, 0], "sprawling on the floor the": [65535, 0], "on the floor the potent": [65535, 0], "the floor the potent palm": [65535, 0], "floor the potent palm was": [65535, 0], "the potent palm was uplifted": [65535, 0], "potent palm was uplifted to": [65535, 0], "palm was uplifted to strike": [65535, 0], "was uplifted to strike again": [65535, 0], "uplifted to strike again when": [65535, 0], "to strike again when tom": [65535, 0], "strike again when tom cried": [65535, 0], "again when tom cried out": [65535, 0], "when tom cried out hold": [65535, 0], "tom cried out hold on": [65535, 0], "cried out hold on now": [65535, 0], "out hold on now what": [65535, 0], "hold on now what 'er": [65535, 0], "on now what 'er you": [65535, 0], "now what 'er you belting": [65535, 0], "what 'er you belting me": [65535, 0], "'er you belting me for": [65535, 0], "you belting me for sid": [65535, 0], "belting me for sid broke": [65535, 0], "me for sid broke it": [65535, 0], "for sid broke it aunt": [65535, 0], "sid broke it aunt polly": [65535, 0], "broke it aunt polly paused": [65535, 0], "it aunt polly paused perplexed": [65535, 0], "aunt polly paused perplexed and": [65535, 0], "polly paused perplexed and tom": [65535, 0], "paused perplexed and tom looked": [65535, 0], "perplexed and tom looked for": [65535, 0], "and tom looked for healing": [65535, 0], "tom looked for healing pity": [65535, 0], "looked for healing pity but": [65535, 0], "for healing pity but when": [65535, 0], "healing pity but when she": [65535, 0], "pity but when she got": [65535, 0], "but when she got her": [65535, 0], "when she got her tongue": [65535, 0], "she got her tongue again": [65535, 0], "got her tongue again she": [65535, 0], "her tongue again she only": [65535, 0], "tongue again she only said": [65535, 0], "again she only said umf": [65535, 0], "she only said umf well": [65535, 0], "only said umf well you": [65535, 0], "said umf well you didn't": [65535, 0], "umf well you didn't get": [65535, 0], "well you didn't get a": [65535, 0], "you didn't get a lick": [65535, 0], "didn't get a lick amiss": [65535, 0], "get a lick amiss i": [65535, 0], "a lick amiss i reckon": [65535, 0], "lick amiss i reckon you": [65535, 0], "amiss i reckon you been": [65535, 0], "i reckon you been into": [65535, 0], "reckon you been into some": [65535, 0], "you been into some other": [65535, 0], "been into some other audacious": [65535, 0], "into some other audacious mischief": [65535, 0], "some other audacious mischief when": [65535, 0], "other audacious mischief when i": [65535, 0], "audacious mischief when i wasn't": [65535, 0], "mischief when i wasn't around": [65535, 0], "when i wasn't around like": [65535, 0], "i wasn't around like enough": [65535, 0], "wasn't around like enough then": [65535, 0], "around like enough then her": [65535, 0], "like enough then her conscience": [65535, 0], "enough then her conscience reproached": [65535, 0], "then her conscience reproached her": [65535, 0], "her conscience reproached her and": [65535, 0], "conscience reproached her and she": [65535, 0], "reproached her and she yearned": [65535, 0], "her and she yearned to": [65535, 0], "and she yearned to say": [65535, 0], "she yearned to say something": [65535, 0], "yearned to say something kind": [65535, 0], "to say something kind and": [65535, 0], "say something kind and loving": [65535, 0], "something kind and loving but": [65535, 0], "kind and loving but she": [65535, 0], "and loving but she judged": [65535, 0], "loving but she judged that": [65535, 0], "but she judged that this": [65535, 0], "she judged that this would": [65535, 0], "judged that this would be": [65535, 0], "that this would be construed": [65535, 0], "this would be construed into": [65535, 0], "would be construed into a": [65535, 0], "be construed into a confession": [65535, 0], "construed into a confession that": [65535, 0], "into a confession that she": [65535, 0], "a confession that she had": [65535, 0], "confession that she had been": [65535, 0], "that she had been in": [65535, 0], "she had been in the": [65535, 0], "had been in the wrong": [65535, 0], "been in the wrong and": [65535, 0], "in the wrong and discipline": [65535, 0], "the wrong and discipline forbade": [65535, 0], "wrong and discipline forbade that": [65535, 0], "and discipline forbade that so": [65535, 0], "discipline forbade that so she": [65535, 0], "forbade that so she kept": [65535, 0], "that so she kept silence": [65535, 0], "so she kept silence and": [65535, 0], "she kept silence and went": [65535, 0], "kept silence and went about": [65535, 0], "silence and went about her": [65535, 0], "and went about her affairs": [65535, 0], "went about her affairs with": [65535, 0], "about her affairs with a": [65535, 0], "her affairs with a troubled": [65535, 0], "affairs with a troubled heart": [65535, 0], "with a troubled heart tom": [65535, 0], "a troubled heart tom sulked": [65535, 0], "troubled heart tom sulked in": [65535, 0], "heart tom sulked in a": [65535, 0], "tom sulked in a corner": [65535, 0], "sulked in a corner and": [65535, 0], "in a corner and exalted": [65535, 0], "a corner and exalted his": [65535, 0], "corner and exalted his woes": [65535, 0], "and exalted his woes he": [65535, 0], "exalted his woes he knew": [65535, 0], "his woes he knew that": [65535, 0], "woes he knew that in": [65535, 0], "he knew that in her": [65535, 0], "knew that in her heart": [65535, 0], "that in her heart his": [65535, 0], "in her heart his aunt": [65535, 0], "her heart his aunt was": [65535, 0], "heart his aunt was on": [65535, 0], "his aunt was on her": [65535, 0], "aunt was on her knees": [65535, 0], "was on her knees to": [65535, 0], "on her knees to him": [65535, 0], "her knees to him and": [65535, 0], "knees to him and he": [65535, 0], "to him and he was": [65535, 0], "him and he was morosely": [65535, 0], "and he was morosely gratified": [65535, 0], "he was morosely gratified by": [65535, 0], "was morosely gratified by the": [65535, 0], "morosely gratified by the consciousness": [65535, 0], "gratified by the consciousness of": [65535, 0], "by the consciousness of it": [65535, 0], "the consciousness of it he": [65535, 0], "consciousness of it he would": [65535, 0], "of it he would hang": [65535, 0], "it he would hang out": [65535, 0], "he would hang out no": [65535, 0], "would hang out no signals": [65535, 0], "hang out no signals he": [65535, 0], "out no signals he would": [65535, 0], "no signals he would take": [65535, 0], "signals he would take notice": [65535, 0], "he would take notice of": [65535, 0], "would take notice of none": [65535, 0], "take notice of none he": [65535, 0], "notice of none he knew": [65535, 0], "of none he knew that": [65535, 0], "none he knew that a": [65535, 0], "he knew that a yearning": [65535, 0], "knew that a yearning glance": [65535, 0], "that a yearning glance fell": [65535, 0], "a yearning glance fell upon": [65535, 0], "yearning glance fell upon him": [65535, 0], "glance fell upon him now": [65535, 0], "fell upon him now and": [65535, 0], "upon him now and then": [65535, 0], "him now and then through": [65535, 0], "now and then through a": [65535, 0], "and then through a film": [65535, 0], "then through a film of": [65535, 0], "through a film of tears": [65535, 0], "a film of tears but": [65535, 0], "film of tears but he": [65535, 0], "of tears but he refused": [65535, 0], "tears but he refused recognition": [65535, 0], "but he refused recognition of": [65535, 0], "he refused recognition of it": [65535, 0], "refused recognition of it he": [65535, 0], "recognition of it he pictured": [65535, 0], "of it he pictured himself": [65535, 0], "it he pictured himself lying": [65535, 0], "he pictured himself lying sick": [65535, 0], "pictured himself lying sick unto": [65535, 0], "himself lying sick unto death": [65535, 0], "lying sick unto death and": [65535, 0], "sick unto death and his": [65535, 0], "unto death and his aunt": [65535, 0], "death and his aunt bending": [65535, 0], "and his aunt bending over": [65535, 0], "his aunt bending over him": [65535, 0], "aunt bending over him beseeching": [65535, 0], "bending over him beseeching one": [65535, 0], "over him beseeching one little": [65535, 0], "him beseeching one little forgiving": [65535, 0], "beseeching one little forgiving word": [65535, 0], "one little forgiving word but": [65535, 0], "little forgiving word but he": [65535, 0], "forgiving word but he would": [65535, 0], "word but he would turn": [65535, 0], "but he would turn his": [65535, 0], "he would turn his face": [65535, 0], "would turn his face to": [65535, 0], "turn his face to the": [65535, 0], "his face to the wall": [65535, 0], "face to the wall and": [65535, 0], "to the wall and die": [65535, 0], "the wall and die with": [65535, 0], "wall and die with that": [65535, 0], "and die with that word": [65535, 0], "die with that word unsaid": [65535, 0], "with that word unsaid ah": [65535, 0], "that word unsaid ah how": [65535, 0], "word unsaid ah how would": [65535, 0], "unsaid ah how would she": [65535, 0], "ah how would she feel": [65535, 0], "how would she feel then": [65535, 0], "would she feel then and": [65535, 0], "she feel then and he": [65535, 0], "feel then and he pictured": [65535, 0], "then and he pictured himself": [65535, 0], "and he pictured himself brought": [65535, 0], "he pictured himself brought home": [65535, 0], "pictured himself brought home from": [65535, 0], "himself brought home from the": [65535, 0], "brought home from the river": [65535, 0], "home from the river dead": [65535, 0], "from the river dead with": [65535, 0], "the river dead with his": [65535, 0], "river dead with his curls": [65535, 0], "dead with his curls all": [65535, 0], "with his curls all wet": [65535, 0], "his curls all wet and": [65535, 0], "curls all wet and his": [65535, 0], "all wet and his sore": [65535, 0], "wet and his sore heart": [65535, 0], "and his sore heart at": [65535, 0], "his sore heart at rest": [65535, 0], "sore heart at rest how": [65535, 0], "heart at rest how she": [65535, 0], "at rest how she would": [65535, 0], "rest how she would throw": [65535, 0], "how she would throw herself": [65535, 0], "she would throw herself upon": [65535, 0], "would throw herself upon him": [65535, 0], "throw herself upon him and": [65535, 0], "herself upon him and how": [65535, 0], "upon him and how her": [65535, 0], "him and how her tears": [65535, 0], "and how her tears would": [65535, 0], "how her tears would fall": [65535, 0], "her tears would fall like": [65535, 0], "tears would fall like rain": [65535, 0], "would fall like rain and": [65535, 0], "fall like rain and her": [65535, 0], "like rain and her lips": [65535, 0], "rain and her lips pray": [65535, 0], "and her lips pray god": [65535, 0], "her lips pray god to": [65535, 0], "lips pray god to give": [65535, 0], "pray god to give her": [65535, 0], "god to give her back": [65535, 0], "to give her back her": [65535, 0], "give her back her boy": [65535, 0], "her back her boy and": [65535, 0], "back her boy and she": [65535, 0], "her boy and she would": [65535, 0], "boy and she would never": [65535, 0], "and she would never never": [65535, 0], "she would never never abuse": [65535, 0], "would never never abuse him": [65535, 0], "never never abuse him any": [65535, 0], "never abuse him any more": [65535, 0], "abuse him any more but": [65535, 0], "him any more but he": [65535, 0], "any more but he would": [65535, 0], "more but he would lie": [65535, 0], "but he would lie there": [65535, 0], "he would lie there cold": [65535, 0], "would lie there cold and": [65535, 0], "lie there cold and white": [65535, 0], "there cold and white and": [65535, 0], "cold and white and make": [65535, 0], "and white and make no": [65535, 0], "white and make no sign": [65535, 0], "and make no sign a": [65535, 0], "make no sign a poor": [65535, 0], "no sign a poor little": [65535, 0], "sign a poor little sufferer": [65535, 0], "a poor little sufferer whose": [65535, 0], "poor little sufferer whose griefs": [65535, 0], "little sufferer whose griefs were": [65535, 0], "sufferer whose griefs were at": [65535, 0], "whose griefs were at an": [65535, 0], "griefs were at an end": [65535, 0], "were at an end he": [65535, 0], "at an end he so": [65535, 0], "an end he so worked": [65535, 0], "end he so worked upon": [65535, 0], "he so worked upon his": [65535, 0], "so worked upon his feelings": [65535, 0], "worked upon his feelings with": [65535, 0], "upon his feelings with the": [65535, 0], "his feelings with the pathos": [65535, 0], "feelings with the pathos of": [65535, 0], "with the pathos of these": [65535, 0], "the pathos of these dreams": [65535, 0], "pathos of these dreams that": [65535, 0], "of these dreams that he": [65535, 0], "these dreams that he had": [65535, 0], "dreams that he had to": [65535, 0], "that he had to keep": [65535, 0], "he had to keep swallowing": [65535, 0], "had to keep swallowing he": [65535, 0], "to keep swallowing he was": [65535, 0], "keep swallowing he was so": [65535, 0], "swallowing he was so like": [65535, 0], "he was so like to": [65535, 0], "was so like to choke": [65535, 0], "so like to choke and": [65535, 0], "like to choke and his": [65535, 0], "to choke and his eyes": [65535, 0], "choke and his eyes swam": [65535, 0], "and his eyes swam in": [65535, 0], "his eyes swam in a": [65535, 0], "eyes swam in a blur": [65535, 0], "swam in a blur of": [65535, 0], "in a blur of water": [65535, 0], "a blur of water which": [65535, 0], "blur of water which overflowed": [65535, 0], "of water which overflowed when": [65535, 0], "water which overflowed when he": [65535, 0], "which overflowed when he winked": [65535, 0], "overflowed when he winked and": [65535, 0], "when he winked and ran": [65535, 0], "he winked and ran down": [65535, 0], "winked and ran down and": [65535, 0], "and ran down and trickled": [65535, 0], "ran down and trickled from": [65535, 0], "down and trickled from the": [65535, 0], "and trickled from the end": [65535, 0], "trickled from the end of": [65535, 0], "from the end of his": [65535, 0], "the end of his nose": [65535, 0], "end of his nose and": [65535, 0], "of his nose and such": [65535, 0], "his nose and such a": [65535, 0], "nose and such a luxury": [65535, 0], "and such a luxury to": [65535, 0], "such a luxury to him": [65535, 0], "a luxury to him was": [65535, 0], "luxury to him was this": [65535, 0], "to him was this petting": [65535, 0], "him was this petting of": [65535, 0], "was this petting of his": [65535, 0], "this petting of his sorrows": [65535, 0], "petting of his sorrows that": [65535, 0], "of his sorrows that he": [65535, 0], "his sorrows that he could": [65535, 0], "sorrows that he could not": [65535, 0], "that he could not bear": [65535, 0], "he could not bear to": [65535, 0], "could not bear to have": [65535, 0], "not bear to have any": [65535, 0], "bear to have any worldly": [65535, 0], "to have any worldly cheeriness": [65535, 0], "have any worldly cheeriness or": [65535, 0], "any worldly cheeriness or any": [65535, 0], "worldly cheeriness or any grating": [65535, 0], "cheeriness or any grating delight": [65535, 0], "or any grating delight intrude": [65535, 0], "any grating delight intrude upon": [65535, 0], "grating delight intrude upon it": [65535, 0], "delight intrude upon it it": [65535, 0], "intrude upon it it was": [65535, 0], "upon it it was too": [65535, 0], "it it was too sacred": [65535, 0], "it was too sacred for": [65535, 0], "was too sacred for such": [65535, 0], "too sacred for such contact": [65535, 0], "sacred for such contact and": [65535, 0], "for such contact and so": [65535, 0], "such contact and so presently": [65535, 0], "contact and so presently when": [65535, 0], "and so presently when his": [65535, 0], "so presently when his cousin": [65535, 0], "presently when his cousin mary": [65535, 0], "when his cousin mary danced": [65535, 0], "his cousin mary danced in": [65535, 0], "cousin mary danced in all": [65535, 0], "mary danced in all alive": [65535, 0], "danced in all alive with": [65535, 0], "in all alive with the": [65535, 0], "all alive with the joy": [65535, 0], "alive with the joy of": [65535, 0], "with the joy of seeing": [65535, 0], "the joy of seeing home": [65535, 0], "joy of seeing home again": [65535, 0], "of seeing home again after": [65535, 0], "seeing home again after an": [65535, 0], "home again after an age": [65535, 0], "again after an age long": [65535, 0], "after an age long visit": [65535, 0], "an age long visit of": [65535, 0], "age long visit of one": [65535, 0], "long visit of one week": [65535, 0], "visit of one week to": [65535, 0], "of one week to the": [65535, 0], "one week to the country": [65535, 0], "week to the country he": [65535, 0], "to the country he got": [65535, 0], "the country he got up": [65535, 0], "country he got up and": [65535, 0], "he got up and moved": [65535, 0], "got up and moved in": [65535, 0], "up and moved in clouds": [65535, 0], "and moved in clouds and": [65535, 0], "moved in clouds and darkness": [65535, 0], "in clouds and darkness out": [65535, 0], "clouds and darkness out at": [65535, 0], "and darkness out at one": [65535, 0], "darkness out at one door": [65535, 0], "out at one door as": [65535, 0], "at one door as she": [65535, 0], "one door as she brought": [65535, 0], "door as she brought song": [65535, 0], "as she brought song and": [65535, 0], "she brought song and sunshine": [65535, 0], "brought song and sunshine in": [65535, 0], "song and sunshine in at": [65535, 0], "and sunshine in at the": [65535, 0], "sunshine in at the other": [65535, 0], "in at the other he": [65535, 0], "at the other he wandered": [65535, 0], "the other he wandered far": [65535, 0], "other he wandered far from": [65535, 0], "he wandered far from the": [65535, 0], "wandered far from the accustomed": [65535, 0], "far from the accustomed haunts": [65535, 0], "from the accustomed haunts of": [65535, 0], "the accustomed haunts of boys": [65535, 0], "accustomed haunts of boys and": [65535, 0], "haunts of boys and sought": [65535, 0], "of boys and sought desolate": [65535, 0], "boys and sought desolate places": [65535, 0], "and sought desolate places that": [65535, 0], "sought desolate places that were": [65535, 0], "desolate places that were in": [65535, 0], "places that were in harmony": [65535, 0], "that were in harmony with": [65535, 0], "were in harmony with his": [65535, 0], "in harmony with his spirit": [65535, 0], "harmony with his spirit a": [65535, 0], "with his spirit a log": [65535, 0], "his spirit a log raft": [65535, 0], "spirit a log raft in": [65535, 0], "a log raft in the": [65535, 0], "log raft in the river": [65535, 0], "raft in the river invited": [65535, 0], "in the river invited him": [65535, 0], "the river invited him and": [65535, 0], "river invited him and he": [65535, 0], "invited him and he seated": [65535, 0], "him and he seated himself": [65535, 0], "and he seated himself on": [65535, 0], "he seated himself on its": [65535, 0], "seated himself on its outer": [65535, 0], "himself on its outer edge": [65535, 0], "on its outer edge and": [65535, 0], "its outer edge and contemplated": [65535, 0], "outer edge and contemplated the": [65535, 0], "edge and contemplated the dreary": [65535, 0], "and contemplated the dreary vastness": [65535, 0], "contemplated the dreary vastness of": [65535, 0], "the dreary vastness of the": [65535, 0], "dreary vastness of the stream": [65535, 0], "vastness of the stream wishing": [65535, 0], "of the stream wishing the": [65535, 0], "the stream wishing the while": [65535, 0], "stream wishing the while that": [65535, 0], "wishing the while that he": [65535, 0], "the while that he could": [65535, 0], "while that he could only": [65535, 0], "that he could only be": [65535, 0], "he could only be drowned": [65535, 0], "could only be drowned all": [65535, 0], "only be drowned all at": [65535, 0], "be drowned all at once": [65535, 0], "drowned all at once and": [65535, 0], "all at once and unconsciously": [65535, 0], "at once and unconsciously without": [65535, 0], "once and unconsciously without undergoing": [65535, 0], "and unconsciously without undergoing the": [65535, 0], "unconsciously without undergoing the uncomfortable": [65535, 0], "without undergoing the uncomfortable routine": [65535, 0], "undergoing the uncomfortable routine devised": [65535, 0], "the uncomfortable routine devised by": [65535, 0], "uncomfortable routine devised by nature": [65535, 0], "routine devised by nature then": [65535, 0], "devised by nature then he": [65535, 0], "by nature then he thought": [65535, 0], "nature then he thought of": [65535, 0], "then he thought of his": [65535, 0], "he thought of his flower": [65535, 0], "thought of his flower he": [65535, 0], "of his flower he got": [65535, 0], "his flower he got it": [65535, 0], "flower he got it out": [65535, 0], "he got it out rumpled": [65535, 0], "got it out rumpled and": [65535, 0], "it out rumpled and wilted": [65535, 0], "out rumpled and wilted and": [65535, 0], "rumpled and wilted and it": [65535, 0], "and wilted and it mightily": [65535, 0], "wilted and it mightily increased": [65535, 0], "and it mightily increased his": [65535, 0], "it mightily increased his dismal": [65535, 0], "mightily increased his dismal felicity": [65535, 0], "increased his dismal felicity he": [65535, 0], "his dismal felicity he wondered": [65535, 0], "dismal felicity he wondered if": [65535, 0], "felicity he wondered if she": [65535, 0], "he wondered if she would": [65535, 0], "wondered if she would pity": [65535, 0], "if she would pity him": [65535, 0], "she would pity him if": [65535, 0], "would pity him if she": [65535, 0], "pity him if she knew": [65535, 0], "him if she knew would": [65535, 0], "if she knew would she": [65535, 0], "she knew would she cry": [65535, 0], "knew would she cry and": [65535, 0], "would she cry and wish": [65535, 0], "she cry and wish that": [65535, 0], "cry and wish that she": [65535, 0], "and wish that she had": [65535, 0], "wish that she had a": [65535, 0], "that she had a right": [65535, 0], "she had a right to": [65535, 0], "had a right to put": [65535, 0], "a right to put her": [65535, 0], "right to put her arms": [65535, 0], "to put her arms around": [65535, 0], "put her arms around his": [65535, 0], "her arms around his neck": [65535, 0], "arms around his neck and": [65535, 0], "around his neck and comfort": [65535, 0], "his neck and comfort him": [65535, 0], "neck and comfort him or": [65535, 0], "and comfort him or would": [65535, 0], "comfort him or would she": [65535, 0], "him or would she turn": [65535, 0], "or would she turn coldly": [65535, 0], "would she turn coldly away": [65535, 0], "she turn coldly away like": [65535, 0], "turn coldly away like all": [65535, 0], "coldly away like all the": [65535, 0], "away like all the hollow": [65535, 0], "like all the hollow world": [65535, 0], "all the hollow world this": [65535, 0], "the hollow world this picture": [65535, 0], "hollow world this picture brought": [65535, 0], "world this picture brought such": [65535, 0], "this picture brought such an": [65535, 0], "picture brought such an agony": [65535, 0], "brought such an agony of": [65535, 0], "such an agony of pleasurable": [65535, 0], "an agony of pleasurable suffering": [65535, 0], "agony of pleasurable suffering that": [65535, 0], "of pleasurable suffering that he": [65535, 0], "pleasurable suffering that he worked": [65535, 0], "suffering that he worked it": [65535, 0], "that he worked it over": [65535, 0], "he worked it over and": [65535, 0], "worked it over and over": [65535, 0], "it over and over again": [65535, 0], "over and over again in": [65535, 0], "and over again in his": [65535, 0], "over again in his mind": [65535, 0], "again in his mind and": [65535, 0], "in his mind and set": [65535, 0], "his mind and set it": [65535, 0], "mind and set it up": [65535, 0], "and set it up in": [65535, 0], "set it up in new": [65535, 0], "it up in new and": [65535, 0], "up in new and varied": [65535, 0], "in new and varied lights": [65535, 0], "new and varied lights till": [65535, 0], "and varied lights till he": [65535, 0], "varied lights till he wore": [65535, 0], "lights till he wore it": [65535, 0], "till he wore it threadbare": [65535, 0], "he wore it threadbare at": [65535, 0], "wore it threadbare at last": [65535, 0], "it threadbare at last he": [65535, 0], "threadbare at last he rose": [65535, 0], "at last he rose up": [65535, 0], "last he rose up sighing": [65535, 0], "he rose up sighing and": [65535, 0], "rose up sighing and departed": [65535, 0], "up sighing and departed in": [65535, 0], "sighing and departed in the": [65535, 0], "and departed in the darkness": [65535, 0], "departed in the darkness about": [65535, 0], "in the darkness about half": [65535, 0], "the darkness about half past": [65535, 0], "darkness about half past nine": [65535, 0], "about half past nine or": [65535, 0], "half past nine or ten": [65535, 0], "past nine or ten o'clock": [65535, 0], "nine or ten o'clock he": [65535, 0], "or ten o'clock he came": [65535, 0], "ten o'clock he came along": [65535, 0], "o'clock he came along the": [65535, 0], "he came along the deserted": [65535, 0], "came along the deserted street": [65535, 0], "along the deserted street to": [65535, 0], "the deserted street to where": [65535, 0], "deserted street to where the": [65535, 0], "street to where the adored": [65535, 0], "to where the adored unknown": [65535, 0], "where the adored unknown lived": [65535, 0], "the adored unknown lived he": [65535, 0], "adored unknown lived he paused": [65535, 0], "unknown lived he paused a": [65535, 0], "lived he paused a moment": [65535, 0], "he paused a moment no": [65535, 0], "paused a moment no sound": [65535, 0], "a moment no sound fell": [65535, 0], "moment no sound fell upon": [65535, 0], "no sound fell upon his": [65535, 0], "sound fell upon his listening": [65535, 0], "fell upon his listening ear": [65535, 0], "upon his listening ear a": [65535, 0], "his listening ear a candle": [65535, 0], "listening ear a candle was": [65535, 0], "ear a candle was casting": [65535, 0], "a candle was casting a": [65535, 0], "candle was casting a dull": [65535, 0], "was casting a dull glow": [65535, 0], "casting a dull glow upon": [65535, 0], "a dull glow upon the": [65535, 0], "dull glow upon the curtain": [65535, 0], "glow upon the curtain of": [65535, 0], "upon the curtain of a": [65535, 0], "the curtain of a second": [65535, 0], "curtain of a second story": [65535, 0], "of a second story window": [65535, 0], "a second story window was": [65535, 0], "second story window was the": [65535, 0], "story window was the sacred": [65535, 0], "window was the sacred presence": [65535, 0], "was the sacred presence there": [65535, 0], "the sacred presence there he": [65535, 0], "sacred presence there he climbed": [65535, 0], "presence there he climbed the": [65535, 0], "there he climbed the fence": [65535, 0], "he climbed the fence threaded": [65535, 0], "climbed the fence threaded his": [65535, 0], "the fence threaded his stealthy": [65535, 0], "fence threaded his stealthy way": [65535, 0], "threaded his stealthy way through": [65535, 0], "his stealthy way through the": [65535, 0], "stealthy way through the plants": [65535, 0], "way through the plants till": [65535, 0], "through the plants till he": [65535, 0], "the plants till he stood": [65535, 0], "plants till he stood under": [65535, 0], "till he stood under that": [65535, 0], "he stood under that window": [65535, 0], "stood under that window he": [65535, 0], "under that window he looked": [65535, 0], "that window he looked up": [65535, 0], "window he looked up at": [65535, 0], "he looked up at it": [65535, 0], "looked up at it long": [65535, 0], "up at it long and": [65535, 0], "at it long and with": [65535, 0], "it long and with emotion": [65535, 0], "long and with emotion then": [65535, 0], "and with emotion then he": [65535, 0], "with emotion then he laid": [65535, 0], "emotion then he laid him": [65535, 0], "then he laid him down": [65535, 0], "he laid him down on": [65535, 0], "laid him down on the": [65535, 0], "him down on the ground": [65535, 0], "down on the ground under": [65535, 0], "on the ground under it": [65535, 0], "the ground under it disposing": [65535, 0], "ground under it disposing himself": [65535, 0], "under it disposing himself upon": [65535, 0], "it disposing himself upon his": [65535, 0], "disposing himself upon his back": [65535, 0], "himself upon his back with": [65535, 0], "upon his back with his": [65535, 0], "his back with his hands": [65535, 0], "back with his hands clasped": [65535, 0], "with his hands clasped upon": [65535, 0], "his hands clasped upon his": [65535, 0], "hands clasped upon his breast": [65535, 0], "clasped upon his breast and": [65535, 0], "upon his breast and holding": [65535, 0], "his breast and holding his": [65535, 0], "breast and holding his poor": [65535, 0], "and holding his poor wilted": [65535, 0], "holding his poor wilted flower": [65535, 0], "his poor wilted flower and": [65535, 0], "poor wilted flower and thus": [65535, 0], "wilted flower and thus he": [65535, 0], "flower and thus he would": [65535, 0], "and thus he would die": [65535, 0], "thus he would die out": [65535, 0], "he would die out in": [65535, 0], "would die out in the": [65535, 0], "die out in the cold": [65535, 0], "out in the cold world": [65535, 0], "in the cold world with": [65535, 0], "the cold world with no": [65535, 0], "cold world with no shelter": [65535, 0], "world with no shelter over": [65535, 0], "with no shelter over his": [65535, 0], "no shelter over his homeless": [65535, 0], "shelter over his homeless head": [65535, 0], "over his homeless head no": [65535, 0], "his homeless head no friendly": [65535, 0], "homeless head no friendly hand": [65535, 0], "head no friendly hand to": [65535, 0], "no friendly hand to wipe": [65535, 0], "friendly hand to wipe the": [65535, 0], "hand to wipe the death": [65535, 0], "to wipe the death damps": [65535, 0], "wipe the death damps from": [65535, 0], "the death damps from his": [65535, 0], "death damps from his brow": [65535, 0], "damps from his brow no": [65535, 0], "from his brow no loving": [65535, 0], "his brow no loving face": [65535, 0], "brow no loving face to": [65535, 0], "no loving face to bend": [65535, 0], "loving face to bend pityingly": [65535, 0], "face to bend pityingly over": [65535, 0], "to bend pityingly over him": [65535, 0], "bend pityingly over him when": [65535, 0], "pityingly over him when the": [65535, 0], "over him when the great": [65535, 0], "him when the great agony": [65535, 0], "when the great agony came": [65535, 0], "the great agony came and": [65535, 0], "great agony came and thus": [65535, 0], "agony came and thus she": [65535, 0], "came and thus she would": [65535, 0], "and thus she would see": [65535, 0], "thus she would see him": [65535, 0], "she would see him when": [65535, 0], "would see him when she": [65535, 0], "see him when she looked": [65535, 0], "him when she looked out": [65535, 0], "when she looked out upon": [65535, 0], "she looked out upon the": [65535, 0], "looked out upon the glad": [65535, 0], "out upon the glad morning": [65535, 0], "upon the glad morning and": [65535, 0], "the glad morning and oh": [65535, 0], "glad morning and oh would": [65535, 0], "morning and oh would she": [65535, 0], "and oh would she drop": [65535, 0], "oh would she drop one": [65535, 0], "would she drop one little": [65535, 0], "she drop one little tear": [65535, 0], "drop one little tear upon": [65535, 0], "one little tear upon his": [65535, 0], "little tear upon his poor": [65535, 0], "tear upon his poor lifeless": [65535, 0], "upon his poor lifeless form": [65535, 0], "his poor lifeless form would": [65535, 0], "poor lifeless form would she": [65535, 0], "lifeless form would she heave": [65535, 0], "form would she heave one": [65535, 0], "would she heave one little": [65535, 0], "she heave one little sigh": [65535, 0], "heave one little sigh to": [65535, 0], "one little sigh to see": [65535, 0], "little sigh to see a": [65535, 0], "sigh to see a bright": [65535, 0], "to see a bright young": [65535, 0], "see a bright young life": [65535, 0], "a bright young life so": [65535, 0], "bright young life so rudely": [65535, 0], "young life so rudely blighted": [65535, 0], "life so rudely blighted so": [65535, 0], "so rudely blighted so untimely": [65535, 0], "rudely blighted so untimely cut": [65535, 0], "blighted so untimely cut down": [65535, 0], "so untimely cut down the": [65535, 0], "untimely cut down the window": [65535, 0], "cut down the window went": [65535, 0], "down the window went up": [65535, 0], "the window went up a": [65535, 0], "window went up a maid": [65535, 0], "went up a maid servant's": [65535, 0], "up a maid servant's discordant": [65535, 0], "a maid servant's discordant voice": [65535, 0], "maid servant's discordant voice profaned": [65535, 0], "servant's discordant voice profaned the": [65535, 0], "discordant voice profaned the holy": [65535, 0], "voice profaned the holy calm": [65535, 0], "profaned the holy calm and": [65535, 0], "the holy calm and a": [65535, 0], "holy calm and a deluge": [65535, 0], "calm and a deluge of": [65535, 0], "and a deluge of water": [65535, 0], "a deluge of water drenched": [65535, 0], "deluge of water drenched the": [65535, 0], "of water drenched the prone": [65535, 0], "water drenched the prone martyr's": [65535, 0], "drenched the prone martyr's remains": [65535, 0], "the prone martyr's remains the": [65535, 0], "prone martyr's remains the strangling": [65535, 0], "martyr's remains the strangling hero": [65535, 0], "remains the strangling hero sprang": [65535, 0], "the strangling hero sprang up": [65535, 0], "strangling hero sprang up with": [65535, 0], "hero sprang up with a": [65535, 0], "sprang up with a relieving": [65535, 0], "up with a relieving snort": [65535, 0], "with a relieving snort there": [65535, 0], "a relieving snort there was": [65535, 0], "relieving snort there was a": [65535, 0], "snort there was a whiz": [65535, 0], "there was a whiz as": [65535, 0], "was a whiz as of": [65535, 0], "a whiz as of a": [65535, 0], "whiz as of a missile": [65535, 0], "as of a missile in": [65535, 0], "of a missile in the": [65535, 0], "a missile in the air": [65535, 0], "missile in the air mingled": [65535, 0], "in the air mingled with": [65535, 0], "the air mingled with the": [65535, 0], "air mingled with the murmur": [65535, 0], "mingled with the murmur of": [65535, 0], "with the murmur of a": [65535, 0], "the murmur of a curse": [65535, 0], "murmur of a curse a": [65535, 0], "of a curse a sound": [65535, 0], "a curse a sound as": [65535, 0], "curse a sound as of": [65535, 0], "a sound as of shivering": [65535, 0], "sound as of shivering glass": [65535, 0], "as of shivering glass followed": [65535, 0], "of shivering glass followed and": [65535, 0], "shivering glass followed and a": [65535, 0], "glass followed and a small": [65535, 0], "followed and a small vague": [65535, 0], "and a small vague form": [65535, 0], "a small vague form went": [65535, 0], "small vague form went over": [65535, 0], "vague form went over the": [65535, 0], "form went over the fence": [65535, 0], "went over the fence and": [65535, 0], "over the fence and shot": [65535, 0], "the fence and shot away": [65535, 0], "fence and shot away in": [65535, 0], "and shot away in the": [65535, 0], "shot away in the gloom": [65535, 0], "away in the gloom not": [65535, 0], "in the gloom not long": [65535, 0], "the gloom not long after": [65535, 0], "gloom not long after as": [65535, 0], "not long after as tom": [65535, 0], "long after as tom all": [65535, 0], "after as tom all undressed": [65535, 0], "as tom all undressed for": [65535, 0], "tom all undressed for bed": [65535, 0], "all undressed for bed was": [65535, 0], "undressed for bed was surveying": [65535, 0], "for bed was surveying his": [65535, 0], "bed was surveying his drenched": [65535, 0], "was surveying his drenched garments": [65535, 0], "surveying his drenched garments by": [65535, 0], "his drenched garments by the": [65535, 0], "drenched garments by the light": [65535, 0], "garments by the light of": [65535, 0], "by the light of a": [65535, 0], "the light of a tallow": [65535, 0], "light of a tallow dip": [65535, 0], "of a tallow dip sid": [65535, 0], "a tallow dip sid woke": [65535, 0], "tallow dip sid woke up": [65535, 0], "dip sid woke up but": [65535, 0], "sid woke up but if": [65535, 0], "woke up but if he": [65535, 0], "up but if he had": [65535, 0], "but if he had any": [65535, 0], "if he had any dim": [65535, 0], "he had any dim idea": [65535, 0], "had any dim idea of": [65535, 0], "any dim idea of making": [65535, 0], "dim idea of making any": [65535, 0], "idea of making any references": [65535, 0], "of making any references to": [65535, 0], "making any references to allusions": [65535, 0], "any references to allusions he": [65535, 0], "references to allusions he thought": [65535, 0], "to allusions he thought better": [65535, 0], "allusions he thought better of": [65535, 0], "he thought better of it": [65535, 0], "thought better of it and": [65535, 0], "better of it and held": [65535, 0], "of it and held his": [65535, 0], "it and held his peace": [65535, 0], "and held his peace for": [65535, 0], "held his peace for there": [65535, 0], "his peace for there was": [65535, 0], "peace for there was danger": [65535, 0], "for there was danger in": [65535, 0], "there was danger in tom's": [65535, 0], "was danger in tom's eye": [65535, 0], "danger in tom's eye tom": [65535, 0], "in tom's eye tom turned": [65535, 0], "tom's eye tom turned in": [65535, 0], "eye tom turned in without": [65535, 0], "tom turned in without the": [65535, 0], "turned in without the added": [65535, 0], "in without the added vexation": [65535, 0], "without the added vexation of": [65535, 0], "the added vexation of prayers": [65535, 0], "added vexation of prayers and": [65535, 0], "vexation of prayers and sid": [65535, 0], "of prayers and sid made": [65535, 0], "prayers and sid made mental": [65535, 0], "and sid made mental note": [65535, 0], "sid made mental note of": [65535, 0], "made mental note of the": [65535, 0], "mental note of the omission": [65535, 0], "tom presented himself before aunt polly": [65535, 0], "presented himself before aunt polly who": [65535, 0], "himself before aunt polly who was": [65535, 0], "before aunt polly who was sitting": [65535, 0], "aunt polly who was sitting by": [65535, 0], "polly who was sitting by an": [65535, 0], "who was sitting by an open": [65535, 0], "was sitting by an open window": [65535, 0], "sitting by an open window in": [65535, 0], "by an open window in a": [65535, 0], "an open window in a pleasant": [65535, 0], "open window in a pleasant rearward": [65535, 0], "window in a pleasant rearward apartment": [65535, 0], "in a pleasant rearward apartment which": [65535, 0], "a pleasant rearward apartment which was": [65535, 0], "pleasant rearward apartment which was bedroom": [65535, 0], "rearward apartment which was bedroom breakfast": [65535, 0], "apartment which was bedroom breakfast room": [65535, 0], "which was bedroom breakfast room dining": [65535, 0], "was bedroom breakfast room dining room": [65535, 0], "bedroom breakfast room dining room and": [65535, 0], "breakfast room dining room and library": [65535, 0], "room dining room and library combined": [65535, 0], "dining room and library combined the": [65535, 0], "room and library combined the balmy": [65535, 0], "and library combined the balmy summer": [65535, 0], "library combined the balmy summer air": [65535, 0], "combined the balmy summer air the": [65535, 0], "the balmy summer air the restful": [65535, 0], "balmy summer air the restful quiet": [65535, 0], "summer air the restful quiet the": [65535, 0], "air the restful quiet the odor": [65535, 0], "the restful quiet the odor of": [65535, 0], "restful quiet the odor of the": [65535, 0], "quiet the odor of the flowers": [65535, 0], "the odor of the flowers and": [65535, 0], "odor of the flowers and the": [65535, 0], "of the flowers and the drowsing": [65535, 0], "the flowers and the drowsing murmur": [65535, 0], "flowers and the drowsing murmur of": [65535, 0], "and the drowsing murmur of the": [65535, 0], "the drowsing murmur of the bees": [65535, 0], "drowsing murmur of the bees had": [65535, 0], "murmur of the bees had had": [65535, 0], "of the bees had had their": [65535, 0], "the bees had had their effect": [65535, 0], "bees had had their effect and": [65535, 0], "had had their effect and she": [65535, 0], "had their effect and she was": [65535, 0], "their effect and she was nodding": [65535, 0], "effect and she was nodding over": [65535, 0], "and she was nodding over her": [65535, 0], "she was nodding over her knitting": [65535, 0], "was nodding over her knitting for": [65535, 0], "nodding over her knitting for she": [65535, 0], "over her knitting for she had": [65535, 0], "her knitting for she had no": [65535, 0], "knitting for she had no company": [65535, 0], "for she had no company but": [65535, 0], "she had no company but the": [65535, 0], "had no company but the cat": [65535, 0], "no company but the cat and": [65535, 0], "company but the cat and it": [65535, 0], "but the cat and it was": [65535, 0], "the cat and it was asleep": [65535, 0], "cat and it was asleep in": [65535, 0], "and it was asleep in her": [65535, 0], "it was asleep in her lap": [65535, 0], "was asleep in her lap her": [65535, 0], "asleep in her lap her spectacles": [65535, 0], "in her lap her spectacles were": [65535, 0], "her lap her spectacles were propped": [65535, 0], "lap her spectacles were propped up": [65535, 0], "her spectacles were propped up on": [65535, 0], "spectacles were propped up on her": [65535, 0], "were propped up on her gray": [65535, 0], "propped up on her gray head": [65535, 0], "up on her gray head for": [65535, 0], "on her gray head for safety": [65535, 0], "her gray head for safety she": [65535, 0], "gray head for safety she had": [65535, 0], "head for safety she had thought": [65535, 0], "for safety she had thought that": [65535, 0], "safety she had thought that of": [65535, 0], "she had thought that of course": [65535, 0], "had thought that of course tom": [65535, 0], "thought that of course tom had": [65535, 0], "that of course tom had deserted": [65535, 0], "of course tom had deserted long": [65535, 0], "course tom had deserted long ago": [65535, 0], "tom had deserted long ago and": [65535, 0], "had deserted long ago and she": [65535, 0], "deserted long ago and she wondered": [65535, 0], "long ago and she wondered at": [65535, 0], "ago and she wondered at seeing": [65535, 0], "and she wondered at seeing him": [65535, 0], "she wondered at seeing him place": [65535, 0], "wondered at seeing him place himself": [65535, 0], "at seeing him place himself in": [65535, 0], "seeing him place himself in her": [65535, 0], "him place himself in her power": [65535, 0], "place himself in her power again": [65535, 0], "himself in her power again in": [65535, 0], "in her power again in this": [65535, 0], "her power again in this intrepid": [65535, 0], "power again in this intrepid way": [65535, 0], "again in this intrepid way he": [65535, 0], "in this intrepid way he said": [65535, 0], "this intrepid way he said mayn't": [65535, 0], "intrepid way he said mayn't i": [65535, 0], "way he said mayn't i go": [65535, 0], "he said mayn't i go and": [65535, 0], "said mayn't i go and play": [65535, 0], "mayn't i go and play now": [65535, 0], "i go and play now aunt": [65535, 0], "go and play now aunt what": [65535, 0], "and play now aunt what a'ready": [65535, 0], "play now aunt what a'ready how": [65535, 0], "now aunt what a'ready how much": [65535, 0], "aunt what a'ready how much have": [65535, 0], "what a'ready how much have you": [65535, 0], "a'ready how much have you done": [65535, 0], "how much have you done it's": [65535, 0], "much have you done it's all": [65535, 0], "have you done it's all done": [65535, 0], "you done it's all done aunt": [65535, 0], "done it's all done aunt tom": [65535, 0], "it's all done aunt tom don't": [65535, 0], "all done aunt tom don't lie": [65535, 0], "done aunt tom don't lie to": [65535, 0], "aunt tom don't lie to me": [65535, 0], "tom don't lie to me i": [65535, 0], "don't lie to me i can't": [65535, 0], "lie to me i can't bear": [65535, 0], "to me i can't bear it": [65535, 0], "me i can't bear it i": [65535, 0], "i can't bear it i ain't": [65535, 0], "can't bear it i ain't aunt": [65535, 0], "bear it i ain't aunt it": [65535, 0], "it i ain't aunt it is": [65535, 0], "i ain't aunt it is all": [65535, 0], "ain't aunt it is all done": [65535, 0], "aunt it is all done aunt": [65535, 0], "it is all done aunt polly": [65535, 0], "is all done aunt polly placed": [65535, 0], "all done aunt polly placed small": [65535, 0], "done aunt polly placed small trust": [65535, 0], "aunt polly placed small trust in": [65535, 0], "polly placed small trust in such": [65535, 0], "placed small trust in such evidence": [65535, 0], "small trust in such evidence she": [65535, 0], "trust in such evidence she went": [65535, 0], "in such evidence she went out": [65535, 0], "such evidence she went out to": [65535, 0], "evidence she went out to see": [65535, 0], "she went out to see for": [65535, 0], "went out to see for herself": [65535, 0], "out to see for herself and": [65535, 0], "to see for herself and she": [65535, 0], "see for herself and she would": [65535, 0], "for herself and she would have": [65535, 0], "herself and she would have been": [65535, 0], "and she would have been content": [65535, 0], "she would have been content to": [65535, 0], "would have been content to find": [65535, 0], "have been content to find twenty": [65535, 0], "been content to find twenty per": [65535, 0], "content to find twenty per cent": [65535, 0], "to find twenty per cent of": [65535, 0], "find twenty per cent of tom's": [65535, 0], "twenty per cent of tom's statement": [65535, 0], "per cent of tom's statement true": [65535, 0], "cent of tom's statement true when": [65535, 0], "of tom's statement true when she": [65535, 0], "tom's statement true when she found": [65535, 0], "statement true when she found the": [65535, 0], "true when she found the entire": [65535, 0], "when she found the entire fence": [65535, 0], "she found the entire fence whitewashed": [65535, 0], "found the entire fence whitewashed and": [65535, 0], "the entire fence whitewashed and not": [65535, 0], "entire fence whitewashed and not only": [65535, 0], "fence whitewashed and not only whitewashed": [65535, 0], "whitewashed and not only whitewashed but": [65535, 0], "and not only whitewashed but elaborately": [65535, 0], "not only whitewashed but elaborately coated": [65535, 0], "only whitewashed but elaborately coated and": [65535, 0], "whitewashed but elaborately coated and recoated": [65535, 0], "but elaborately coated and recoated and": [65535, 0], "elaborately coated and recoated and even": [65535, 0], "coated and recoated and even a": [65535, 0], "and recoated and even a streak": [65535, 0], "recoated and even a streak added": [65535, 0], "and even a streak added to": [65535, 0], "even a streak added to the": [65535, 0], "a streak added to the ground": [65535, 0], "streak added to the ground her": [65535, 0], "added to the ground her astonishment": [65535, 0], "to the ground her astonishment was": [65535, 0], "the ground her astonishment was almost": [65535, 0], "ground her astonishment was almost unspeakable": [65535, 0], "her astonishment was almost unspeakable she": [65535, 0], "astonishment was almost unspeakable she said": [65535, 0], "was almost unspeakable she said well": [65535, 0], "almost unspeakable she said well i": [65535, 0], "unspeakable she said well i never": [65535, 0], "she said well i never there's": [65535, 0], "said well i never there's no": [65535, 0], "well i never there's no getting": [65535, 0], "i never there's no getting round": [65535, 0], "never there's no getting round it": [65535, 0], "there's no getting round it you": [65535, 0], "no getting round it you can": [65535, 0], "getting round it you can work": [65535, 0], "round it you can work when": [65535, 0], "it you can work when you're": [65535, 0], "you can work when you're a": [65535, 0], "can work when you're a mind": [65535, 0], "work when you're a mind to": [65535, 0], "when you're a mind to tom": [65535, 0], "you're a mind to tom and": [65535, 0], "a mind to tom and then": [65535, 0], "mind to tom and then she": [65535, 0], "to tom and then she diluted": [65535, 0], "tom and then she diluted the": [65535, 0], "and then she diluted the compliment": [65535, 0], "then she diluted the compliment by": [65535, 0], "she diluted the compliment by adding": [65535, 0], "diluted the compliment by adding but": [65535, 0], "the compliment by adding but it's": [65535, 0], "compliment by adding but it's powerful": [65535, 0], "by adding but it's powerful seldom": [65535, 0], "adding but it's powerful seldom you're": [65535, 0], "but it's powerful seldom you're a": [65535, 0], "it's powerful seldom you're a mind": [65535, 0], "powerful seldom you're a mind to": [65535, 0], "seldom you're a mind to i'm": [65535, 0], "you're a mind to i'm bound": [65535, 0], "a mind to i'm bound to": [65535, 0], "mind to i'm bound to say": [65535, 0], "to i'm bound to say well": [65535, 0], "i'm bound to say well go": [65535, 0], "bound to say well go 'long": [65535, 0], "to say well go 'long and": [65535, 0], "say well go 'long and play": [65535, 0], "well go 'long and play but": [65535, 0], "go 'long and play but mind": [65535, 0], "'long and play but mind you": [65535, 0], "and play but mind you get": [65535, 0], "play but mind you get back": [65535, 0], "but mind you get back some": [65535, 0], "mind you get back some time": [65535, 0], "you get back some time in": [65535, 0], "get back some time in a": [65535, 0], "back some time in a week": [65535, 0], "some time in a week or": [65535, 0], "time in a week or i'll": [65535, 0], "in a week or i'll tan": [65535, 0], "a week or i'll tan you": [65535, 0], "week or i'll tan you she": [65535, 0], "or i'll tan you she was": [65535, 0], "i'll tan you she was so": [65535, 0], "tan you she was so overcome": [65535, 0], "you she was so overcome by": [65535, 0], "she was so overcome by the": [65535, 0], "was so overcome by the splendor": [65535, 0], "so overcome by the splendor of": [65535, 0], "overcome by the splendor of his": [65535, 0], "by the splendor of his achievement": [65535, 0], "the splendor of his achievement that": [65535, 0], "splendor of his achievement that she": [65535, 0], "of his achievement that she took": [65535, 0], "his achievement that she took him": [65535, 0], "achievement that she took him into": [65535, 0], "that she took him into the": [65535, 0], "she took him into the closet": [65535, 0], "took him into the closet and": [65535, 0], "him into the closet and selected": [65535, 0], "into the closet and selected a": [65535, 0], "the closet and selected a choice": [65535, 0], "closet and selected a choice apple": [65535, 0], "and selected a choice apple and": [65535, 0], "selected a choice apple and delivered": [65535, 0], "a choice apple and delivered it": [65535, 0], "choice apple and delivered it to": [65535, 0], "apple and delivered it to him": [65535, 0], "and delivered it to him along": [65535, 0], "delivered it to him along with": [65535, 0], "it to him along with an": [65535, 0], "to him along with an improving": [65535, 0], "him along with an improving lecture": [65535, 0], "along with an improving lecture upon": [65535, 0], "with an improving lecture upon the": [65535, 0], "an improving lecture upon the added": [65535, 0], "improving lecture upon the added value": [65535, 0], "lecture upon the added value and": [65535, 0], "upon the added value and flavor": [65535, 0], "the added value and flavor a": [65535, 0], "added value and flavor a treat": [65535, 0], "value and flavor a treat took": [65535, 0], "and flavor a treat took to": [65535, 0], "flavor a treat took to itself": [65535, 0], "a treat took to itself when": [65535, 0], "treat took to itself when it": [65535, 0], "took to itself when it came": [65535, 0], "to itself when it came without": [65535, 0], "itself when it came without sin": [65535, 0], "when it came without sin through": [65535, 0], "it came without sin through virtuous": [65535, 0], "came without sin through virtuous effort": [65535, 0], "without sin through virtuous effort and": [65535, 0], "sin through virtuous effort and while": [65535, 0], "through virtuous effort and while she": [65535, 0], "virtuous effort and while she closed": [65535, 0], "effort and while she closed with": [65535, 0], "and while she closed with a": [65535, 0], "while she closed with a happy": [65535, 0], "she closed with a happy scriptural": [65535, 0], "closed with a happy scriptural flourish": [65535, 0], "with a happy scriptural flourish he": [65535, 0], "a happy scriptural flourish he hooked": [65535, 0], "happy scriptural flourish he hooked a": [65535, 0], "scriptural flourish he hooked a doughnut": [65535, 0], "flourish he hooked a doughnut then": [65535, 0], "he hooked a doughnut then he": [65535, 0], "hooked a doughnut then he skipped": [65535, 0], "a doughnut then he skipped out": [65535, 0], "doughnut then he skipped out and": [65535, 0], "then he skipped out and saw": [65535, 0], "he skipped out and saw sid": [65535, 0], "skipped out and saw sid just": [65535, 0], "out and saw sid just starting": [65535, 0], "and saw sid just starting up": [65535, 0], "saw sid just starting up the": [65535, 0], "sid just starting up the outside": [65535, 0], "just starting up the outside stairway": [65535, 0], "starting up the outside stairway that": [65535, 0], "up the outside stairway that led": [65535, 0], "the outside stairway that led to": [65535, 0], "outside stairway that led to the": [65535, 0], "stairway that led to the back": [65535, 0], "that led to the back rooms": [65535, 0], "led to the back rooms on": [65535, 0], "to the back rooms on the": [65535, 0], "the back rooms on the second": [65535, 0], "back rooms on the second floor": [65535, 0], "rooms on the second floor clods": [65535, 0], "on the second floor clods were": [65535, 0], "the second floor clods were handy": [65535, 0], "second floor clods were handy and": [65535, 0], "floor clods were handy and the": [65535, 0], "clods were handy and the air": [65535, 0], "were handy and the air was": [65535, 0], "handy and the air was full": [65535, 0], "and the air was full of": [65535, 0], "the air was full of them": [65535, 0], "air was full of them in": [65535, 0], "was full of them in a": [65535, 0], "full of them in a twinkling": [65535, 0], "of them in a twinkling they": [65535, 0], "them in a twinkling they raged": [65535, 0], "in a twinkling they raged around": [65535, 0], "a twinkling they raged around sid": [65535, 0], "twinkling they raged around sid like": [65535, 0], "they raged around sid like a": [65535, 0], "raged around sid like a hail": [65535, 0], "around sid like a hail storm": [65535, 0], "sid like a hail storm and": [65535, 0], "like a hail storm and before": [65535, 0], "a hail storm and before aunt": [65535, 0], "hail storm and before aunt polly": [65535, 0], "storm and before aunt polly could": [65535, 0], "and before aunt polly could collect": [65535, 0], "before aunt polly could collect her": [65535, 0], "aunt polly could collect her surprised": [65535, 0], "polly could collect her surprised faculties": [65535, 0], "could collect her surprised faculties and": [65535, 0], "collect her surprised faculties and sally": [65535, 0], "her surprised faculties and sally to": [65535, 0], "surprised faculties and sally to the": [65535, 0], "faculties and sally to the rescue": [65535, 0], "and sally to the rescue six": [65535, 0], "sally to the rescue six or": [65535, 0], "to the rescue six or seven": [65535, 0], "the rescue six or seven clods": [65535, 0], "rescue six or seven clods had": [65535, 0], "six or seven clods had taken": [65535, 0], "or seven clods had taken personal": [65535, 0], "seven clods had taken personal effect": [65535, 0], "clods had taken personal effect and": [65535, 0], "had taken personal effect and tom": [65535, 0], "taken personal effect and tom was": [65535, 0], "personal effect and tom was over": [65535, 0], "effect and tom was over the": [65535, 0], "and tom was over the fence": [65535, 0], "tom was over the fence and": [65535, 0], "was over the fence and gone": [65535, 0], "over the fence and gone there": [65535, 0], "the fence and gone there was": [65535, 0], "fence and gone there was a": [65535, 0], "and gone there was a gate": [65535, 0], "gone there was a gate but": [65535, 0], "there was a gate but as": [65535, 0], "was a gate but as a": [65535, 0], "a gate but as a general": [65535, 0], "gate but as a general thing": [65535, 0], "but as a general thing he": [65535, 0], "as a general thing he was": [65535, 0], "a general thing he was too": [65535, 0], "general thing he was too crowded": [65535, 0], "thing he was too crowded for": [65535, 0], "he was too crowded for time": [65535, 0], "was too crowded for time to": [65535, 0], "too crowded for time to make": [65535, 0], "crowded for time to make use": [65535, 0], "for time to make use of": [65535, 0], "time to make use of it": [65535, 0], "to make use of it his": [65535, 0], "make use of it his soul": [65535, 0], "use of it his soul was": [65535, 0], "of it his soul was at": [65535, 0], "it his soul was at peace": [65535, 0], "his soul was at peace now": [65535, 0], "soul was at peace now that": [65535, 0], "was at peace now that he": [65535, 0], "at peace now that he had": [65535, 0], "peace now that he had settled": [65535, 0], "now that he had settled with": [65535, 0], "that he had settled with sid": [65535, 0], "he had settled with sid for": [65535, 0], "had settled with sid for calling": [65535, 0], "settled with sid for calling attention": [65535, 0], "with sid for calling attention to": [65535, 0], "sid for calling attention to his": [65535, 0], "for calling attention to his black": [65535, 0], "calling attention to his black thread": [65535, 0], "attention to his black thread and": [65535, 0], "to his black thread and getting": [65535, 0], "his black thread and getting him": [65535, 0], "black thread and getting him into": [65535, 0], "thread and getting him into trouble": [65535, 0], "and getting him into trouble tom": [65535, 0], "getting him into trouble tom skirted": [65535, 0], "him into trouble tom skirted the": [65535, 0], "into trouble tom skirted the block": [65535, 0], "trouble tom skirted the block and": [65535, 0], "tom skirted the block and came": [65535, 0], "skirted the block and came round": [65535, 0], "the block and came round into": [65535, 0], "block and came round into a": [65535, 0], "and came round into a muddy": [65535, 0], "came round into a muddy alley": [65535, 0], "round into a muddy alley that": [65535, 0], "into a muddy alley that led": [65535, 0], "a muddy alley that led by": [65535, 0], "muddy alley that led by the": [65535, 0], "alley that led by the back": [65535, 0], "that led by the back of": [65535, 0], "led by the back of his": [65535, 0], "by the back of his aunt's": [65535, 0], "the back of his aunt's cowstable": [65535, 0], "back of his aunt's cowstable he": [65535, 0], "of his aunt's cowstable he presently": [65535, 0], "his aunt's cowstable he presently got": [65535, 0], "aunt's cowstable he presently got safely": [65535, 0], "cowstable he presently got safely beyond": [65535, 0], "he presently got safely beyond the": [65535, 0], "presently got safely beyond the reach": [65535, 0], "got safely beyond the reach of": [65535, 0], "safely beyond the reach of capture": [65535, 0], "beyond the reach of capture and": [65535, 0], "the reach of capture and punishment": [65535, 0], "reach of capture and punishment and": [65535, 0], "of capture and punishment and hastened": [65535, 0], "capture and punishment and hastened toward": [65535, 0], "and punishment and hastened toward the": [65535, 0], "punishment and hastened toward the public": [65535, 0], "and hastened toward the public square": [65535, 0], "hastened toward the public square of": [65535, 0], "toward the public square of the": [65535, 0], "the public square of the village": [65535, 0], "public square of the village where": [65535, 0], "square of the village where two": [65535, 0], "of the village where two military": [65535, 0], "the village where two military companies": [65535, 0], "village where two military companies of": [65535, 0], "where two military companies of boys": [65535, 0], "two military companies of boys had": [65535, 0], "military companies of boys had met": [65535, 0], "companies of boys had met for": [65535, 0], "of boys had met for conflict": [65535, 0], "boys had met for conflict according": [65535, 0], "had met for conflict according to": [65535, 0], "met for conflict according to previous": [65535, 0], "for conflict according to previous appointment": [65535, 0], "conflict according to previous appointment tom": [65535, 0], "according to previous appointment tom was": [65535, 0], "to previous appointment tom was general": [65535, 0], "previous appointment tom was general of": [65535, 0], "appointment tom was general of one": [65535, 0], "tom was general of one of": [65535, 0], "was general of one of these": [65535, 0], "general of one of these armies": [65535, 0], "of one of these armies joe": [65535, 0], "one of these armies joe harper": [65535, 0], "of these armies joe harper a": [65535, 0], "these armies joe harper a bosom": [65535, 0], "armies joe harper a bosom friend": [65535, 0], "joe harper a bosom friend general": [65535, 0], "harper a bosom friend general of": [65535, 0], "a bosom friend general of the": [65535, 0], "bosom friend general of the other": [65535, 0], "friend general of the other these": [65535, 0], "general of the other these two": [65535, 0], "of the other these two great": [65535, 0], "the other these two great commanders": [65535, 0], "other these two great commanders did": [65535, 0], "these two great commanders did not": [65535, 0], "two great commanders did not condescend": [65535, 0], "great commanders did not condescend to": [65535, 0], "commanders did not condescend to fight": [65535, 0], "did not condescend to fight in": [65535, 0], "not condescend to fight in person": [65535, 0], "condescend to fight in person that": [65535, 0], "to fight in person that being": [65535, 0], "fight in person that being better": [65535, 0], "in person that being better suited": [65535, 0], "person that being better suited to": [65535, 0], "that being better suited to the": [65535, 0], "being better suited to the still": [65535, 0], "better suited to the still smaller": [65535, 0], "suited to the still smaller fry": [65535, 0], "to the still smaller fry but": [65535, 0], "the still smaller fry but sat": [65535, 0], "still smaller fry but sat together": [65535, 0], "smaller fry but sat together on": [65535, 0], "fry but sat together on an": [65535, 0], "but sat together on an eminence": [65535, 0], "sat together on an eminence and": [65535, 0], "together on an eminence and conducted": [65535, 0], "on an eminence and conducted the": [65535, 0], "an eminence and conducted the field": [65535, 0], "eminence and conducted the field operations": [65535, 0], "and conducted the field operations by": [65535, 0], "conducted the field operations by orders": [65535, 0], "the field operations by orders delivered": [65535, 0], "field operations by orders delivered through": [65535, 0], "operations by orders delivered through aides": [65535, 0], "by orders delivered through aides de": [65535, 0], "orders delivered through aides de camp": [65535, 0], "delivered through aides de camp tom's": [65535, 0], "through aides de camp tom's army": [65535, 0], "aides de camp tom's army won": [65535, 0], "de camp tom's army won a": [65535, 0], "camp tom's army won a great": [65535, 0], "tom's army won a great victory": [65535, 0], "army won a great victory after": [65535, 0], "won a great victory after a": [65535, 0], "a great victory after a long": [65535, 0], "great victory after a long and": [65535, 0], "victory after a long and hard": [65535, 0], "after a long and hard fought": [65535, 0], "a long and hard fought battle": [65535, 0], "long and hard fought battle then": [65535, 0], "and hard fought battle then the": [65535, 0], "hard fought battle then the dead": [65535, 0], "fought battle then the dead were": [65535, 0], "battle then the dead were counted": [65535, 0], "then the dead were counted prisoners": [65535, 0], "the dead were counted prisoners exchanged": [65535, 0], "dead were counted prisoners exchanged the": [65535, 0], "were counted prisoners exchanged the terms": [65535, 0], "counted prisoners exchanged the terms of": [65535, 0], "prisoners exchanged the terms of the": [65535, 0], "exchanged the terms of the next": [65535, 0], "the terms of the next disagreement": [65535, 0], "terms of the next disagreement agreed": [65535, 0], "of the next disagreement agreed upon": [65535, 0], "the next disagreement agreed upon and": [65535, 0], "next disagreement agreed upon and the": [65535, 0], "disagreement agreed upon and the day": [65535, 0], "agreed upon and the day for": [65535, 0], "upon and the day for the": [65535, 0], "and the day for the necessary": [65535, 0], "the day for the necessary battle": [65535, 0], "day for the necessary battle appointed": [65535, 0], "for the necessary battle appointed after": [65535, 0], "the necessary battle appointed after which": [65535, 0], "necessary battle appointed after which the": [65535, 0], "battle appointed after which the armies": [65535, 0], "appointed after which the armies fell": [65535, 0], "after which the armies fell into": [65535, 0], "which the armies fell into line": [65535, 0], "the armies fell into line and": [65535, 0], "armies fell into line and marched": [65535, 0], "fell into line and marched away": [65535, 0], "into line and marched away and": [65535, 0], "line and marched away and tom": [65535, 0], "and marched away and tom turned": [65535, 0], "marched away and tom turned homeward": [65535, 0], "away and tom turned homeward alone": [65535, 0], "and tom turned homeward alone as": [65535, 0], "tom turned homeward alone as he": [65535, 0], "turned homeward alone as he was": [65535, 0], "homeward alone as he was passing": [65535, 0], "alone as he was passing by": [65535, 0], "as he was passing by the": [65535, 0], "he was passing by the house": [65535, 0], "was passing by the house where": [65535, 0], "passing by the house where jeff": [65535, 0], "by the house where jeff thatcher": [65535, 0], "the house where jeff thatcher lived": [65535, 0], "house where jeff thatcher lived he": [65535, 0], "where jeff thatcher lived he saw": [65535, 0], "jeff thatcher lived he saw a": [65535, 0], "thatcher lived he saw a new": [65535, 0], "lived he saw a new girl": [65535, 0], "he saw a new girl in": [65535, 0], "saw a new girl in the": [65535, 0], "a new girl in the garden": [65535, 0], "new girl in the garden a": [65535, 0], "girl in the garden a lovely": [65535, 0], "in the garden a lovely little": [65535, 0], "the garden a lovely little blue": [65535, 0], "garden a lovely little blue eyed": [65535, 0], "a lovely little blue eyed creature": [65535, 0], "lovely little blue eyed creature with": [65535, 0], "little blue eyed creature with yellow": [65535, 0], "blue eyed creature with yellow hair": [65535, 0], "eyed creature with yellow hair plaited": [65535, 0], "creature with yellow hair plaited into": [65535, 0], "with yellow hair plaited into two": [65535, 0], "yellow hair plaited into two long": [65535, 0], "hair plaited into two long tails": [65535, 0], "plaited into two long tails white": [65535, 0], "into two long tails white summer": [65535, 0], "two long tails white summer frock": [65535, 0], "long tails white summer frock and": [65535, 0], "tails white summer frock and embroidered": [65535, 0], "white summer frock and embroidered pantalettes": [65535, 0], "summer frock and embroidered pantalettes the": [65535, 0], "frock and embroidered pantalettes the fresh": [65535, 0], "and embroidered pantalettes the fresh crowned": [65535, 0], "embroidered pantalettes the fresh crowned hero": [65535, 0], "pantalettes the fresh crowned hero fell": [65535, 0], "the fresh crowned hero fell without": [65535, 0], "fresh crowned hero fell without firing": [65535, 0], "crowned hero fell without firing a": [65535, 0], "hero fell without firing a shot": [65535, 0], "fell without firing a shot a": [65535, 0], "without firing a shot a certain": [65535, 0], "firing a shot a certain amy": [65535, 0], "a shot a certain amy lawrence": [65535, 0], "shot a certain amy lawrence vanished": [65535, 0], "a certain amy lawrence vanished out": [65535, 0], "certain amy lawrence vanished out of": [65535, 0], "amy lawrence vanished out of his": [65535, 0], "lawrence vanished out of his heart": [65535, 0], "vanished out of his heart and": [65535, 0], "out of his heart and left": [65535, 0], "of his heart and left not": [65535, 0], "his heart and left not even": [65535, 0], "heart and left not even a": [65535, 0], "and left not even a memory": [65535, 0], "left not even a memory of": [65535, 0], "not even a memory of herself": [65535, 0], "even a memory of herself behind": [65535, 0], "a memory of herself behind he": [65535, 0], "memory of herself behind he had": [65535, 0], "of herself behind he had thought": [65535, 0], "herself behind he had thought he": [65535, 0], "behind he had thought he loved": [65535, 0], "he had thought he loved her": [65535, 0], "had thought he loved her to": [65535, 0], "thought he loved her to distraction": [65535, 0], "he loved her to distraction he": [65535, 0], "loved her to distraction he had": [65535, 0], "her to distraction he had regarded": [65535, 0], "to distraction he had regarded his": [65535, 0], "distraction he had regarded his passion": [65535, 0], "he had regarded his passion as": [65535, 0], "had regarded his passion as adoration": [65535, 0], "regarded his passion as adoration and": [65535, 0], "his passion as adoration and behold": [65535, 0], "passion as adoration and behold it": [65535, 0], "as adoration and behold it was": [65535, 0], "adoration and behold it was only": [65535, 0], "and behold it was only a": [65535, 0], "behold it was only a poor": [65535, 0], "it was only a poor little": [65535, 0], "was only a poor little evanescent": [65535, 0], "only a poor little evanescent partiality": [65535, 0], "a poor little evanescent partiality he": [65535, 0], "poor little evanescent partiality he had": [65535, 0], "little evanescent partiality he had been": [65535, 0], "evanescent partiality he had been months": [65535, 0], "partiality he had been months winning": [65535, 0], "he had been months winning her": [65535, 0], "had been months winning her she": [65535, 0], "been months winning her she had": [65535, 0], "months winning her she had confessed": [65535, 0], "winning her she had confessed hardly": [65535, 0], "her she had confessed hardly a": [65535, 0], "she had confessed hardly a week": [65535, 0], "had confessed hardly a week ago": [65535, 0], "confessed hardly a week ago he": [65535, 0], "hardly a week ago he had": [65535, 0], "a week ago he had been": [65535, 0], "week ago he had been the": [65535, 0], "ago he had been the happiest": [65535, 0], "he had been the happiest and": [65535, 0], "had been the happiest and the": [65535, 0], "been the happiest and the proudest": [65535, 0], "the happiest and the proudest boy": [65535, 0], "happiest and the proudest boy in": [65535, 0], "and the proudest boy in the": [65535, 0], "the proudest boy in the world": [65535, 0], "proudest boy in the world only": [65535, 0], "boy in the world only seven": [65535, 0], "in the world only seven short": [65535, 0], "the world only seven short days": [65535, 0], "world only seven short days and": [65535, 0], "only seven short days and here": [65535, 0], "seven short days and here in": [65535, 0], "short days and here in one": [65535, 0], "days and here in one instant": [65535, 0], "and here in one instant of": [65535, 0], "here in one instant of time": [65535, 0], "in one instant of time she": [65535, 0], "one instant of time she had": [65535, 0], "instant of time she had gone": [65535, 0], "of time she had gone out": [65535, 0], "time she had gone out of": [65535, 0], "she had gone out of his": [65535, 0], "had gone out of his heart": [65535, 0], "gone out of his heart like": [65535, 0], "out of his heart like a": [65535, 0], "of his heart like a casual": [65535, 0], "his heart like a casual stranger": [65535, 0], "heart like a casual stranger whose": [65535, 0], "like a casual stranger whose visit": [65535, 0], "a casual stranger whose visit is": [65535, 0], "casual stranger whose visit is done": [65535, 0], "stranger whose visit is done he": [65535, 0], "whose visit is done he worshipped": [65535, 0], "visit is done he worshipped this": [65535, 0], "is done he worshipped this new": [65535, 0], "done he worshipped this new angel": [65535, 0], "he worshipped this new angel with": [65535, 0], "worshipped this new angel with furtive": [65535, 0], "this new angel with furtive eye": [65535, 0], "new angel with furtive eye till": [65535, 0], "angel with furtive eye till he": [65535, 0], "with furtive eye till he saw": [65535, 0], "furtive eye till he saw that": [65535, 0], "eye till he saw that she": [65535, 0], "till he saw that she had": [65535, 0], "he saw that she had discovered": [65535, 0], "saw that she had discovered him": [65535, 0], "that she had discovered him then": [65535, 0], "she had discovered him then he": [65535, 0], "had discovered him then he pretended": [65535, 0], "discovered him then he pretended he": [65535, 0], "him then he pretended he did": [65535, 0], "then he pretended he did not": [65535, 0], "he pretended he did not know": [65535, 0], "pretended he did not know she": [65535, 0], "he did not know she was": [65535, 0], "did not know she was present": [65535, 0], "not know she was present and": [65535, 0], "know she was present and began": [65535, 0], "she was present and began to": [65535, 0], "was present and began to show": [65535, 0], "present and began to show off": [65535, 0], "and began to show off in": [65535, 0], "began to show off in all": [65535, 0], "to show off in all sorts": [65535, 0], "show off in all sorts of": [65535, 0], "off in all sorts of absurd": [65535, 0], "in all sorts of absurd boyish": [65535, 0], "all sorts of absurd boyish ways": [65535, 0], "sorts of absurd boyish ways in": [65535, 0], "of absurd boyish ways in order": [65535, 0], "absurd boyish ways in order to": [65535, 0], "boyish ways in order to win": [65535, 0], "ways in order to win her": [65535, 0], "in order to win her admiration": [65535, 0], "order to win her admiration he": [65535, 0], "to win her admiration he kept": [65535, 0], "win her admiration he kept up": [65535, 0], "her admiration he kept up this": [65535, 0], "admiration he kept up this grotesque": [65535, 0], "he kept up this grotesque foolishness": [65535, 0], "kept up this grotesque foolishness for": [65535, 0], "up this grotesque foolishness for some": [65535, 0], "this grotesque foolishness for some time": [65535, 0], "grotesque foolishness for some time but": [65535, 0], "foolishness for some time but by": [65535, 0], "for some time but by and": [65535, 0], "some time but by and by": [65535, 0], "time but by and by while": [65535, 0], "but by and by while he": [65535, 0], "by and by while he was": [65535, 0], "and by while he was in": [65535, 0], "by while he was in the": [65535, 0], "while he was in the midst": [65535, 0], "he was in the midst of": [65535, 0], "was in the midst of some": [65535, 0], "in the midst of some dangerous": [65535, 0], "the midst of some dangerous gymnastic": [65535, 0], "midst of some dangerous gymnastic performances": [65535, 0], "of some dangerous gymnastic performances he": [65535, 0], "some dangerous gymnastic performances he glanced": [65535, 0], "dangerous gymnastic performances he glanced aside": [65535, 0], "gymnastic performances he glanced aside and": [65535, 0], "performances he glanced aside and saw": [65535, 0], "he glanced aside and saw that": [65535, 0], "glanced aside and saw that the": [65535, 0], "aside and saw that the little": [65535, 0], "and saw that the little girl": [65535, 0], "saw that the little girl was": [65535, 0], "that the little girl was wending": [65535, 0], "the little girl was wending her": [65535, 0], "little girl was wending her way": [65535, 0], "girl was wending her way toward": [65535, 0], "was wending her way toward the": [65535, 0], "wending her way toward the house": [65535, 0], "her way toward the house tom": [65535, 0], "way toward the house tom came": [65535, 0], "toward the house tom came up": [65535, 0], "the house tom came up to": [65535, 0], "house tom came up to the": [65535, 0], "tom came up to the fence": [65535, 0], "came up to the fence and": [65535, 0], "up to the fence and leaned": [65535, 0], "to the fence and leaned on": [65535, 0], "the fence and leaned on it": [65535, 0], "fence and leaned on it grieving": [65535, 0], "and leaned on it grieving and": [65535, 0], "leaned on it grieving and hoping": [65535, 0], "on it grieving and hoping she": [65535, 0], "it grieving and hoping she would": [65535, 0], "grieving and hoping she would tarry": [65535, 0], "and hoping she would tarry yet": [65535, 0], "hoping she would tarry yet awhile": [65535, 0], "she would tarry yet awhile longer": [65535, 0], "would tarry yet awhile longer she": [65535, 0], "tarry yet awhile longer she halted": [65535, 0], "yet awhile longer she halted a": [65535, 0], "awhile longer she halted a moment": [65535, 0], "longer she halted a moment on": [65535, 0], "she halted a moment on the": [65535, 0], "halted a moment on the steps": [65535, 0], "a moment on the steps and": [65535, 0], "moment on the steps and then": [65535, 0], "on the steps and then moved": [65535, 0], "the steps and then moved toward": [65535, 0], "steps and then moved toward the": [65535, 0], "and then moved toward the door": [65535, 0], "then moved toward the door tom": [65535, 0], "moved toward the door tom heaved": [65535, 0], "toward the door tom heaved a": [65535, 0], "the door tom heaved a great": [65535, 0], "door tom heaved a great sigh": [65535, 0], "tom heaved a great sigh as": [65535, 0], "heaved a great sigh as she": [65535, 0], "a great sigh as she put": [65535, 0], "great sigh as she put her": [65535, 0], "sigh as she put her foot": [65535, 0], "as she put her foot on": [65535, 0], "she put her foot on the": [65535, 0], "put her foot on the threshold": [65535, 0], "her foot on the threshold but": [65535, 0], "foot on the threshold but his": [65535, 0], "on the threshold but his face": [65535, 0], "the threshold but his face lit": [65535, 0], "threshold but his face lit up": [65535, 0], "but his face lit up right": [65535, 0], "his face lit up right away": [65535, 0], "face lit up right away for": [65535, 0], "lit up right away for she": [65535, 0], "up right away for she tossed": [65535, 0], "right away for she tossed a": [65535, 0], "away for she tossed a pansy": [65535, 0], "for she tossed a pansy over": [65535, 0], "she tossed a pansy over the": [65535, 0], "tossed a pansy over the fence": [65535, 0], "a pansy over the fence a": [65535, 0], "pansy over the fence a moment": [65535, 0], "over the fence a moment before": [65535, 0], "the fence a moment before she": [65535, 0], "fence a moment before she disappeared": [65535, 0], "a moment before she disappeared the": [65535, 0], "moment before she disappeared the boy": [65535, 0], "before she disappeared the boy ran": [65535, 0], "she disappeared the boy ran around": [65535, 0], "disappeared the boy ran around and": [65535, 0], "the boy ran around and stopped": [65535, 0], "boy ran around and stopped within": [65535, 0], "ran around and stopped within a": [65535, 0], "around and stopped within a foot": [65535, 0], "and stopped within a foot or": [65535, 0], "stopped within a foot or two": [65535, 0], "within a foot or two of": [65535, 0], "a foot or two of the": [65535, 0], "foot or two of the flower": [65535, 0], "or two of the flower and": [65535, 0], "two of the flower and then": [65535, 0], "of the flower and then shaded": [65535, 0], "the flower and then shaded his": [65535, 0], "flower and then shaded his eyes": [65535, 0], "and then shaded his eyes with": [65535, 0], "then shaded his eyes with his": [65535, 0], "shaded his eyes with his hand": [65535, 0], "his eyes with his hand and": [65535, 0], "eyes with his hand and began": [65535, 0], "with his hand and began to": [65535, 0], "his hand and began to look": [65535, 0], "hand and began to look down": [65535, 0], "and began to look down street": [65535, 0], "began to look down street as": [65535, 0], "to look down street as if": [65535, 0], "look down street as if he": [65535, 0], "down street as if he had": [65535, 0], "street as if he had discovered": [65535, 0], "as if he had discovered something": [65535, 0], "if he had discovered something of": [65535, 0], "he had discovered something of interest": [65535, 0], "had discovered something of interest going": [65535, 0], "discovered something of interest going on": [65535, 0], "something of interest going on in": [65535, 0], "of interest going on in that": [65535, 0], "interest going on in that direction": [65535, 0], "going on in that direction presently": [65535, 0], "on in that direction presently he": [65535, 0], "in that direction presently he picked": [65535, 0], "that direction presently he picked up": [65535, 0], "direction presently he picked up a": [65535, 0], "presently he picked up a straw": [65535, 0], "he picked up a straw and": [65535, 0], "picked up a straw and began": [65535, 0], "up a straw and began trying": [65535, 0], "a straw and began trying to": [65535, 0], "straw and began trying to balance": [65535, 0], "and began trying to balance it": [65535, 0], "began trying to balance it on": [65535, 0], "trying to balance it on his": [65535, 0], "to balance it on his nose": [65535, 0], "balance it on his nose with": [65535, 0], "it on his nose with his": [65535, 0], "on his nose with his head": [65535, 0], "his nose with his head tilted": [65535, 0], "nose with his head tilted far": [65535, 0], "with his head tilted far back": [65535, 0], "his head tilted far back and": [65535, 0], "head tilted far back and as": [65535, 0], "tilted far back and as he": [65535, 0], "far back and as he moved": [65535, 0], "back and as he moved from": [65535, 0], "and as he moved from side": [65535, 0], "as he moved from side to": [65535, 0], "he moved from side to side": [65535, 0], "moved from side to side in": [65535, 0], "from side to side in his": [65535, 0], "side to side in his efforts": [65535, 0], "to side in his efforts he": [65535, 0], "side in his efforts he edged": [65535, 0], "in his efforts he edged nearer": [65535, 0], "his efforts he edged nearer and": [65535, 0], "efforts he edged nearer and nearer": [65535, 0], "he edged nearer and nearer toward": [65535, 0], "edged nearer and nearer toward the": [65535, 0], "nearer and nearer toward the pansy": [65535, 0], "and nearer toward the pansy finally": [65535, 0], "nearer toward the pansy finally his": [65535, 0], "toward the pansy finally his bare": [65535, 0], "the pansy finally his bare foot": [65535, 0], "pansy finally his bare foot rested": [65535, 0], "finally his bare foot rested upon": [65535, 0], "his bare foot rested upon it": [65535, 0], "bare foot rested upon it his": [65535, 0], "foot rested upon it his pliant": [65535, 0], "rested upon it his pliant toes": [65535, 0], "upon it his pliant toes closed": [65535, 0], "it his pliant toes closed upon": [65535, 0], "his pliant toes closed upon it": [65535, 0], "pliant toes closed upon it and": [65535, 0], "toes closed upon it and he": [65535, 0], "closed upon it and he hopped": [65535, 0], "upon it and he hopped away": [65535, 0], "it and he hopped away with": [65535, 0], "and he hopped away with the": [65535, 0], "he hopped away with the treasure": [65535, 0], "hopped away with the treasure and": [65535, 0], "away with the treasure and disappeared": [65535, 0], "with the treasure and disappeared round": [65535, 0], "the treasure and disappeared round the": [65535, 0], "treasure and disappeared round the corner": [65535, 0], "and disappeared round the corner but": [65535, 0], "disappeared round the corner but only": [65535, 0], "round the corner but only for": [65535, 0], "the corner but only for a": [65535, 0], "corner but only for a minute": [65535, 0], "but only for a minute only": [65535, 0], "only for a minute only while": [65535, 0], "for a minute only while he": [65535, 0], "a minute only while he could": [65535, 0], "minute only while he could button": [65535, 0], "only while he could button the": [65535, 0], "while he could button the flower": [65535, 0], "he could button the flower inside": [65535, 0], "could button the flower inside his": [65535, 0], "button the flower inside his jacket": [65535, 0], "the flower inside his jacket next": [65535, 0], "flower inside his jacket next his": [65535, 0], "inside his jacket next his heart": [65535, 0], "his jacket next his heart or": [65535, 0], "jacket next his heart or next": [65535, 0], "next his heart or next his": [65535, 0], "his heart or next his stomach": [65535, 0], "heart or next his stomach possibly": [65535, 0], "or next his stomach possibly for": [65535, 0], "next his stomach possibly for he": [65535, 0], "his stomach possibly for he was": [65535, 0], "stomach possibly for he was not": [65535, 0], "possibly for he was not much": [65535, 0], "for he was not much posted": [65535, 0], "he was not much posted in": [65535, 0], "was not much posted in anatomy": [65535, 0], "not much posted in anatomy and": [65535, 0], "much posted in anatomy and not": [65535, 0], "posted in anatomy and not hypercritical": [65535, 0], "in anatomy and not hypercritical anyway": [65535, 0], "anatomy and not hypercritical anyway he": [65535, 0], "and not hypercritical anyway he returned": [65535, 0], "not hypercritical anyway he returned now": [65535, 0], "hypercritical anyway he returned now and": [65535, 0], "anyway he returned now and hung": [65535, 0], "he returned now and hung about": [65535, 0], "returned now and hung about the": [65535, 0], "now and hung about the fence": [65535, 0], "and hung about the fence till": [65535, 0], "hung about the fence till nightfall": [65535, 0], "about the fence till nightfall showing": [65535, 0], "the fence till nightfall showing off": [65535, 0], "fence till nightfall showing off as": [65535, 0], "till nightfall showing off as before": [65535, 0], "nightfall showing off as before but": [65535, 0], "showing off as before but the": [65535, 0], "off as before but the girl": [65535, 0], "as before but the girl never": [65535, 0], "before but the girl never exhibited": [65535, 0], "but the girl never exhibited herself": [65535, 0], "the girl never exhibited herself again": [65535, 0], "girl never exhibited herself again though": [65535, 0], "never exhibited herself again though tom": [65535, 0], "exhibited herself again though tom comforted": [65535, 0], "herself again though tom comforted himself": [65535, 0], "again though tom comforted himself a": [65535, 0], "though tom comforted himself a little": [65535, 0], "tom comforted himself a little with": [65535, 0], "comforted himself a little with the": [65535, 0], "himself a little with the hope": [65535, 0], "a little with the hope that": [65535, 0], "little with the hope that she": [65535, 0], "with the hope that she had": [65535, 0], "the hope that she had been": [65535, 0], "hope that she had been near": [65535, 0], "that she had been near some": [65535, 0], "she had been near some window": [65535, 0], "had been near some window meantime": [65535, 0], "been near some window meantime and": [65535, 0], "near some window meantime and been": [65535, 0], "some window meantime and been aware": [65535, 0], "window meantime and been aware of": [65535, 0], "meantime and been aware of his": [65535, 0], "and been aware of his attentions": [65535, 0], "been aware of his attentions finally": [65535, 0], "aware of his attentions finally he": [65535, 0], "of his attentions finally he strode": [65535, 0], "his attentions finally he strode home": [65535, 0], "attentions finally he strode home reluctantly": [65535, 0], "finally he strode home reluctantly with": [65535, 0], "he strode home reluctantly with his": [65535, 0], "strode home reluctantly with his poor": [65535, 0], "home reluctantly with his poor head": [65535, 0], "reluctantly with his poor head full": [65535, 0], "with his poor head full of": [65535, 0], "his poor head full of visions": [65535, 0], "poor head full of visions all": [65535, 0], "head full of visions all through": [65535, 0], "full of visions all through supper": [65535, 0], "of visions all through supper his": [65535, 0], "visions all through supper his spirits": [65535, 0], "all through supper his spirits were": [65535, 0], "through supper his spirits were so": [65535, 0], "supper his spirits were so high": [65535, 0], "his spirits were so high that": [65535, 0], "spirits were so high that his": [65535, 0], "were so high that his aunt": [65535, 0], "so high that his aunt wondered": [65535, 0], "high that his aunt wondered what": [65535, 0], "that his aunt wondered what had": [65535, 0], "his aunt wondered what had got": [65535, 0], "aunt wondered what had got into": [65535, 0], "wondered what had got into the": [65535, 0], "what had got into the child": [65535, 0], "had got into the child he": [65535, 0], "got into the child he took": [65535, 0], "into the child he took a": [65535, 0], "the child he took a good": [65535, 0], "child he took a good scolding": [65535, 0], "he took a good scolding about": [65535, 0], "took a good scolding about clodding": [65535, 0], "a good scolding about clodding sid": [65535, 0], "good scolding about clodding sid and": [65535, 0], "scolding about clodding sid and did": [65535, 0], "about clodding sid and did not": [65535, 0], "clodding sid and did not seem": [65535, 0], "sid and did not seem to": [65535, 0], "and did not seem to mind": [65535, 0], "did not seem to mind it": [65535, 0], "not seem to mind it in": [65535, 0], "seem to mind it in the": [65535, 0], "to mind it in the least": [65535, 0], "mind it in the least he": [65535, 0], "it in the least he tried": [65535, 0], "in the least he tried to": [65535, 0], "the least he tried to steal": [65535, 0], "least he tried to steal sugar": [65535, 0], "he tried to steal sugar under": [65535, 0], "tried to steal sugar under his": [65535, 0], "to steal sugar under his aunt's": [65535, 0], "steal sugar under his aunt's very": [65535, 0], "sugar under his aunt's very nose": [65535, 0], "under his aunt's very nose and": [65535, 0], "his aunt's very nose and got": [65535, 0], "aunt's very nose and got his": [65535, 0], "very nose and got his knuckles": [65535, 0], "nose and got his knuckles rapped": [65535, 0], "and got his knuckles rapped for": [65535, 0], "got his knuckles rapped for it": [65535, 0], "his knuckles rapped for it he": [65535, 0], "knuckles rapped for it he said": [65535, 0], "rapped for it he said aunt": [65535, 0], "for it he said aunt you": [65535, 0], "it he said aunt you don't": [65535, 0], "he said aunt you don't whack": [65535, 0], "said aunt you don't whack sid": [65535, 0], "aunt you don't whack sid when": [65535, 0], "you don't whack sid when he": [65535, 0], "don't whack sid when he takes": [65535, 0], "whack sid when he takes it": [65535, 0], "sid when he takes it well": [65535, 0], "when he takes it well sid": [65535, 0], "he takes it well sid don't": [65535, 0], "takes it well sid don't torment": [65535, 0], "it well sid don't torment a": [65535, 0], "well sid don't torment a body": [65535, 0], "sid don't torment a body the": [65535, 0], "don't torment a body the way": [65535, 0], "torment a body the way you": [65535, 0], "a body the way you do": [65535, 0], "body the way you do you'd": [65535, 0], "the way you do you'd be": [65535, 0], "way you do you'd be always": [65535, 0], "you do you'd be always into": [65535, 0], "do you'd be always into that": [65535, 0], "you'd be always into that sugar": [65535, 0], "be always into that sugar if": [65535, 0], "always into that sugar if i": [65535, 0], "into that sugar if i warn't": [65535, 0], "that sugar if i warn't watching": [65535, 0], "sugar if i warn't watching you": [65535, 0], "if i warn't watching you presently": [65535, 0], "i warn't watching you presently she": [65535, 0], "warn't watching you presently she stepped": [65535, 0], "watching you presently she stepped into": [65535, 0], "you presently she stepped into the": [65535, 0], "presently she stepped into the kitchen": [65535, 0], "she stepped into the kitchen and": [65535, 0], "stepped into the kitchen and sid": [65535, 0], "into the kitchen and sid happy": [65535, 0], "the kitchen and sid happy in": [65535, 0], "kitchen and sid happy in his": [65535, 0], "and sid happy in his immunity": [65535, 0], "sid happy in his immunity reached": [65535, 0], "happy in his immunity reached for": [65535, 0], "in his immunity reached for the": [65535, 0], "his immunity reached for the sugar": [65535, 0], "immunity reached for the sugar bowl": [65535, 0], "reached for the sugar bowl a": [65535, 0], "for the sugar bowl a sort": [65535, 0], "the sugar bowl a sort of": [65535, 0], "sugar bowl a sort of glorying": [65535, 0], "bowl a sort of glorying over": [65535, 0], "a sort of glorying over tom": [65535, 0], "sort of glorying over tom which": [65535, 0], "of glorying over tom which was": [65535, 0], "glorying over tom which was well": [65535, 0], "over tom which was well nigh": [65535, 0], "tom which was well nigh unbearable": [65535, 0], "which was well nigh unbearable but": [65535, 0], "was well nigh unbearable but sid's": [65535, 0], "well nigh unbearable but sid's fingers": [65535, 0], "nigh unbearable but sid's fingers slipped": [65535, 0], "unbearable but sid's fingers slipped and": [65535, 0], "but sid's fingers slipped and the": [65535, 0], "sid's fingers slipped and the bowl": [65535, 0], "fingers slipped and the bowl dropped": [65535, 0], "slipped and the bowl dropped and": [65535, 0], "and the bowl dropped and broke": [65535, 0], "the bowl dropped and broke tom": [65535, 0], "bowl dropped and broke tom was": [65535, 0], "dropped and broke tom was in": [65535, 0], "and broke tom was in ecstasies": [65535, 0], "broke tom was in ecstasies in": [65535, 0], "tom was in ecstasies in such": [65535, 0], "was in ecstasies in such ecstasies": [65535, 0], "in ecstasies in such ecstasies that": [65535, 0], "ecstasies in such ecstasies that he": [65535, 0], "in such ecstasies that he even": [65535, 0], "such ecstasies that he even controlled": [65535, 0], "ecstasies that he even controlled his": [65535, 0], "that he even controlled his tongue": [65535, 0], "he even controlled his tongue and": [65535, 0], "even controlled his tongue and was": [65535, 0], "controlled his tongue and was silent": [65535, 0], "his tongue and was silent he": [65535, 0], "tongue and was silent he said": [65535, 0], "and was silent he said to": [65535, 0], "was silent he said to himself": [65535, 0], "silent he said to himself that": [65535, 0], "said to himself that he would": [65535, 0], "to himself that he would not": [65535, 0], "himself that he would not speak": [65535, 0], "that he would not speak a": [65535, 0], "he would not speak a word": [65535, 0], "would not speak a word even": [65535, 0], "not speak a word even when": [65535, 0], "speak a word even when his": [65535, 0], "a word even when his aunt": [65535, 0], "word even when his aunt came": [65535, 0], "even when his aunt came in": [65535, 0], "when his aunt came in but": [65535, 0], "his aunt came in but would": [65535, 0], "aunt came in but would sit": [65535, 0], "came in but would sit perfectly": [65535, 0], "in but would sit perfectly still": [65535, 0], "but would sit perfectly still till": [65535, 0], "would sit perfectly still till she": [65535, 0], "sit perfectly still till she asked": [65535, 0], "perfectly still till she asked who": [65535, 0], "still till she asked who did": [65535, 0], "till she asked who did the": [65535, 0], "she asked who did the mischief": [65535, 0], "asked who did the mischief and": [65535, 0], "who did the mischief and then": [65535, 0], "did the mischief and then he": [65535, 0], "the mischief and then he would": [65535, 0], "mischief and then he would tell": [65535, 0], "and then he would tell and": [65535, 0], "then he would tell and there": [65535, 0], "he would tell and there would": [65535, 0], "would tell and there would be": [65535, 0], "tell and there would be nothing": [65535, 0], "and there would be nothing so": [65535, 0], "there would be nothing so good": [65535, 0], "would be nothing so good in": [65535, 0], "be nothing so good in the": [65535, 0], "nothing so good in the world": [65535, 0], "so good in the world as": [65535, 0], "good in the world as to": [65535, 0], "in the world as to see": [65535, 0], "the world as to see that": [65535, 0], "world as to see that pet": [65535, 0], "as to see that pet model": [65535, 0], "to see that pet model catch": [65535, 0], "see that pet model catch it": [65535, 0], "that pet model catch it he": [65535, 0], "pet model catch it he was": [65535, 0], "model catch it he was so": [65535, 0], "catch it he was so brimful": [65535, 0], "it he was so brimful of": [65535, 0], "he was so brimful of exultation": [65535, 0], "was so brimful of exultation that": [65535, 0], "so brimful of exultation that he": [65535, 0], "brimful of exultation that he could": [65535, 0], "of exultation that he could hardly": [65535, 0], "exultation that he could hardly hold": [65535, 0], "that he could hardly hold himself": [65535, 0], "he could hardly hold himself when": [65535, 0], "could hardly hold himself when the": [65535, 0], "hardly hold himself when the old": [65535, 0], "hold himself when the old lady": [65535, 0], "himself when the old lady came": [65535, 0], "when the old lady came back": [65535, 0], "the old lady came back and": [65535, 0], "old lady came back and stood": [65535, 0], "lady came back and stood above": [65535, 0], "came back and stood above the": [65535, 0], "back and stood above the wreck": [65535, 0], "and stood above the wreck discharging": [65535, 0], "stood above the wreck discharging lightnings": [65535, 0], "above the wreck discharging lightnings of": [65535, 0], "the wreck discharging lightnings of wrath": [65535, 0], "wreck discharging lightnings of wrath from": [65535, 0], "discharging lightnings of wrath from over": [65535, 0], "lightnings of wrath from over her": [65535, 0], "of wrath from over her spectacles": [65535, 0], "wrath from over her spectacles he": [65535, 0], "from over her spectacles he said": [65535, 0], "over her spectacles he said to": [65535, 0], "her spectacles he said to himself": [65535, 0], "spectacles he said to himself now": [65535, 0], "he said to himself now it's": [65535, 0], "said to himself now it's coming": [65535, 0], "to himself now it's coming and": [65535, 0], "himself now it's coming and the": [65535, 0], "now it's coming and the next": [65535, 0], "it's coming and the next instant": [65535, 0], "coming and the next instant he": [65535, 0], "and the next instant he was": [65535, 0], "the next instant he was sprawling": [65535, 0], "next instant he was sprawling on": [65535, 0], "instant he was sprawling on the": [65535, 0], "he was sprawling on the floor": [65535, 0], "was sprawling on the floor the": [65535, 0], "sprawling on the floor the potent": [65535, 0], "on the floor the potent palm": [65535, 0], "the floor the potent palm was": [65535, 0], "floor the potent palm was uplifted": [65535, 0], "the potent palm was uplifted to": [65535, 0], "potent palm was uplifted to strike": [65535, 0], "palm was uplifted to strike again": [65535, 0], "was uplifted to strike again when": [65535, 0], "uplifted to strike again when tom": [65535, 0], "to strike again when tom cried": [65535, 0], "strike again when tom cried out": [65535, 0], "again when tom cried out hold": [65535, 0], "when tom cried out hold on": [65535, 0], "tom cried out hold on now": [65535, 0], "cried out hold on now what": [65535, 0], "out hold on now what 'er": [65535, 0], "hold on now what 'er you": [65535, 0], "on now what 'er you belting": [65535, 0], "now what 'er you belting me": [65535, 0], "what 'er you belting me for": [65535, 0], "'er you belting me for sid": [65535, 0], "you belting me for sid broke": [65535, 0], "belting me for sid broke it": [65535, 0], "me for sid broke it aunt": [65535, 0], "for sid broke it aunt polly": [65535, 0], "sid broke it aunt polly paused": [65535, 0], "broke it aunt polly paused perplexed": [65535, 0], "it aunt polly paused perplexed and": [65535, 0], "aunt polly paused perplexed and tom": [65535, 0], "polly paused perplexed and tom looked": [65535, 0], "paused perplexed and tom looked for": [65535, 0], "perplexed and tom looked for healing": [65535, 0], "and tom looked for healing pity": [65535, 0], "tom looked for healing pity but": [65535, 0], "looked for healing pity but when": [65535, 0], "for healing pity but when she": [65535, 0], "healing pity but when she got": [65535, 0], "pity but when she got her": [65535, 0], "but when she got her tongue": [65535, 0], "when she got her tongue again": [65535, 0], "she got her tongue again she": [65535, 0], "got her tongue again she only": [65535, 0], "her tongue again she only said": [65535, 0], "tongue again she only said umf": [65535, 0], "again she only said umf well": [65535, 0], "she only said umf well you": [65535, 0], "only said umf well you didn't": [65535, 0], "said umf well you didn't get": [65535, 0], "umf well you didn't get a": [65535, 0], "well you didn't get a lick": [65535, 0], "you didn't get a lick amiss": [65535, 0], "didn't get a lick amiss i": [65535, 0], "get a lick amiss i reckon": [65535, 0], "a lick amiss i reckon you": [65535, 0], "lick amiss i reckon you been": [65535, 0], "amiss i reckon you been into": [65535, 0], "i reckon you been into some": [65535, 0], "reckon you been into some other": [65535, 0], "you been into some other audacious": [65535, 0], "been into some other audacious mischief": [65535, 0], "into some other audacious mischief when": [65535, 0], "some other audacious mischief when i": [65535, 0], "other audacious mischief when i wasn't": [65535, 0], "audacious mischief when i wasn't around": [65535, 0], "mischief when i wasn't around like": [65535, 0], "when i wasn't around like enough": [65535, 0], "i wasn't around like enough then": [65535, 0], "wasn't around like enough then her": [65535, 0], "around like enough then her conscience": [65535, 0], "like enough then her conscience reproached": [65535, 0], "enough then her conscience reproached her": [65535, 0], "then her conscience reproached her and": [65535, 0], "her conscience reproached her and she": [65535, 0], "conscience reproached her and she yearned": [65535, 0], "reproached her and she yearned to": [65535, 0], "her and she yearned to say": [65535, 0], "and she yearned to say something": [65535, 0], "she yearned to say something kind": [65535, 0], "yearned to say something kind and": [65535, 0], "to say something kind and loving": [65535, 0], "say something kind and loving but": [65535, 0], "something kind and loving but she": [65535, 0], "kind and loving but she judged": [65535, 0], "and loving but she judged that": [65535, 0], "loving but she judged that this": [65535, 0], "but she judged that this would": [65535, 0], "she judged that this would be": [65535, 0], "judged that this would be construed": [65535, 0], "that this would be construed into": [65535, 0], "this would be construed into a": [65535, 0], "would be construed into a confession": [65535, 0], "be construed into a confession that": [65535, 0], "construed into a confession that she": [65535, 0], "into a confession that she had": [65535, 0], "a confession that she had been": [65535, 0], "confession that she had been in": [65535, 0], "that she had been in the": [65535, 0], "she had been in the wrong": [65535, 0], "had been in the wrong and": [65535, 0], "been in the wrong and discipline": [65535, 0], "in the wrong and discipline forbade": [65535, 0], "the wrong and discipline forbade that": [65535, 0], "wrong and discipline forbade that so": [65535, 0], "and discipline forbade that so she": [65535, 0], "discipline forbade that so she kept": [65535, 0], "forbade that so she kept silence": [65535, 0], "that so she kept silence and": [65535, 0], "so she kept silence and went": [65535, 0], "she kept silence and went about": [65535, 0], "kept silence and went about her": [65535, 0], "silence and went about her affairs": [65535, 0], "and went about her affairs with": [65535, 0], "went about her affairs with a": [65535, 0], "about her affairs with a troubled": [65535, 0], "her affairs with a troubled heart": [65535, 0], "affairs with a troubled heart tom": [65535, 0], "with a troubled heart tom sulked": [65535, 0], "a troubled heart tom sulked in": [65535, 0], "troubled heart tom sulked in a": [65535, 0], "heart tom sulked in a corner": [65535, 0], "tom sulked in a corner and": [65535, 0], "sulked in a corner and exalted": [65535, 0], "in a corner and exalted his": [65535, 0], "a corner and exalted his woes": [65535, 0], "corner and exalted his woes he": [65535, 0], "and exalted his woes he knew": [65535, 0], "exalted his woes he knew that": [65535, 0], "his woes he knew that in": [65535, 0], "woes he knew that in her": [65535, 0], "he knew that in her heart": [65535, 0], "knew that in her heart his": [65535, 0], "that in her heart his aunt": [65535, 0], "in her heart his aunt was": [65535, 0], "her heart his aunt was on": [65535, 0], "heart his aunt was on her": [65535, 0], "his aunt was on her knees": [65535, 0], "aunt was on her knees to": [65535, 0], "was on her knees to him": [65535, 0], "on her knees to him and": [65535, 0], "her knees to him and he": [65535, 0], "knees to him and he was": [65535, 0], "to him and he was morosely": [65535, 0], "him and he was morosely gratified": [65535, 0], "and he was morosely gratified by": [65535, 0], "he was morosely gratified by the": [65535, 0], "was morosely gratified by the consciousness": [65535, 0], "morosely gratified by the consciousness of": [65535, 0], "gratified by the consciousness of it": [65535, 0], "by the consciousness of it he": [65535, 0], "the consciousness of it he would": [65535, 0], "consciousness of it he would hang": [65535, 0], "of it he would hang out": [65535, 0], "it he would hang out no": [65535, 0], "he would hang out no signals": [65535, 0], "would hang out no signals he": [65535, 0], "hang out no signals he would": [65535, 0], "out no signals he would take": [65535, 0], "no signals he would take notice": [65535, 0], "signals he would take notice of": [65535, 0], "he would take notice of none": [65535, 0], "would take notice of none he": [65535, 0], "take notice of none he knew": [65535, 0], "notice of none he knew that": [65535, 0], "of none he knew that a": [65535, 0], "none he knew that a yearning": [65535, 0], "he knew that a yearning glance": [65535, 0], "knew that a yearning glance fell": [65535, 0], "that a yearning glance fell upon": [65535, 0], "a yearning glance fell upon him": [65535, 0], "yearning glance fell upon him now": [65535, 0], "glance fell upon him now and": [65535, 0], "fell upon him now and then": [65535, 0], "upon him now and then through": [65535, 0], "him now and then through a": [65535, 0], "now and then through a film": [65535, 0], "and then through a film of": [65535, 0], "then through a film of tears": [65535, 0], "through a film of tears but": [65535, 0], "a film of tears but he": [65535, 0], "film of tears but he refused": [65535, 0], "of tears but he refused recognition": [65535, 0], "tears but he refused recognition of": [65535, 0], "but he refused recognition of it": [65535, 0], "he refused recognition of it he": [65535, 0], "refused recognition of it he pictured": [65535, 0], "recognition of it he pictured himself": [65535, 0], "of it he pictured himself lying": [65535, 0], "it he pictured himself lying sick": [65535, 0], "he pictured himself lying sick unto": [65535, 0], "pictured himself lying sick unto death": [65535, 0], "himself lying sick unto death and": [65535, 0], "lying sick unto death and his": [65535, 0], "sick unto death and his aunt": [65535, 0], "unto death and his aunt bending": [65535, 0], "death and his aunt bending over": [65535, 0], "and his aunt bending over him": [65535, 0], "his aunt bending over him beseeching": [65535, 0], "aunt bending over him beseeching one": [65535, 0], "bending over him beseeching one little": [65535, 0], "over him beseeching one little forgiving": [65535, 0], "him beseeching one little forgiving word": [65535, 0], "beseeching one little forgiving word but": [65535, 0], "one little forgiving word but he": [65535, 0], "little forgiving word but he would": [65535, 0], "forgiving word but he would turn": [65535, 0], "word but he would turn his": [65535, 0], "but he would turn his face": [65535, 0], "he would turn his face to": [65535, 0], "would turn his face to the": [65535, 0], "turn his face to the wall": [65535, 0], "his face to the wall and": [65535, 0], "face to the wall and die": [65535, 0], "to the wall and die with": [65535, 0], "the wall and die with that": [65535, 0], "wall and die with that word": [65535, 0], "and die with that word unsaid": [65535, 0], "die with that word unsaid ah": [65535, 0], "with that word unsaid ah how": [65535, 0], "that word unsaid ah how would": [65535, 0], "word unsaid ah how would she": [65535, 0], "unsaid ah how would she feel": [65535, 0], "ah how would she feel then": [65535, 0], "how would she feel then and": [65535, 0], "would she feel then and he": [65535, 0], "she feel then and he pictured": [65535, 0], "feel then and he pictured himself": [65535, 0], "then and he pictured himself brought": [65535, 0], "and he pictured himself brought home": [65535, 0], "he pictured himself brought home from": [65535, 0], "pictured himself brought home from the": [65535, 0], "himself brought home from the river": [65535, 0], "brought home from the river dead": [65535, 0], "home from the river dead with": [65535, 0], "from the river dead with his": [65535, 0], "the river dead with his curls": [65535, 0], "river dead with his curls all": [65535, 0], "dead with his curls all wet": [65535, 0], "with his curls all wet and": [65535, 0], "his curls all wet and his": [65535, 0], "curls all wet and his sore": [65535, 0], "all wet and his sore heart": [65535, 0], "wet and his sore heart at": [65535, 0], "and his sore heart at rest": [65535, 0], "his sore heart at rest how": [65535, 0], "sore heart at rest how she": [65535, 0], "heart at rest how she would": [65535, 0], "at rest how she would throw": [65535, 0], "rest how she would throw herself": [65535, 0], "how she would throw herself upon": [65535, 0], "she would throw herself upon him": [65535, 0], "would throw herself upon him and": [65535, 0], "throw herself upon him and how": [65535, 0], "herself upon him and how her": [65535, 0], "upon him and how her tears": [65535, 0], "him and how her tears would": [65535, 0], "and how her tears would fall": [65535, 0], "how her tears would fall like": [65535, 0], "her tears would fall like rain": [65535, 0], "tears would fall like rain and": [65535, 0], "would fall like rain and her": [65535, 0], "fall like rain and her lips": [65535, 0], "like rain and her lips pray": [65535, 0], "rain and her lips pray god": [65535, 0], "and her lips pray god to": [65535, 0], "her lips pray god to give": [65535, 0], "lips pray god to give her": [65535, 0], "pray god to give her back": [65535, 0], "god to give her back her": [65535, 0], "to give her back her boy": [65535, 0], "give her back her boy and": [65535, 0], "her back her boy and she": [65535, 0], "back her boy and she would": [65535, 0], "her boy and she would never": [65535, 0], "boy and she would never never": [65535, 0], "and she would never never abuse": [65535, 0], "she would never never abuse him": [65535, 0], "would never never abuse him any": [65535, 0], "never never abuse him any more": [65535, 0], "never abuse him any more but": [65535, 0], "abuse him any more but he": [65535, 0], "him any more but he would": [65535, 0], "any more but he would lie": [65535, 0], "more but he would lie there": [65535, 0], "but he would lie there cold": [65535, 0], "he would lie there cold and": [65535, 0], "would lie there cold and white": [65535, 0], "lie there cold and white and": [65535, 0], "there cold and white and make": [65535, 0], "cold and white and make no": [65535, 0], "and white and make no sign": [65535, 0], "white and make no sign a": [65535, 0], "and make no sign a poor": [65535, 0], "make no sign a poor little": [65535, 0], "no sign a poor little sufferer": [65535, 0], "sign a poor little sufferer whose": [65535, 0], "a poor little sufferer whose griefs": [65535, 0], "poor little sufferer whose griefs were": [65535, 0], "little sufferer whose griefs were at": [65535, 0], "sufferer whose griefs were at an": [65535, 0], "whose griefs were at an end": [65535, 0], "griefs were at an end he": [65535, 0], "were at an end he so": [65535, 0], "at an end he so worked": [65535, 0], "an end he so worked upon": [65535, 0], "end he so worked upon his": [65535, 0], "he so worked upon his feelings": [65535, 0], "so worked upon his feelings with": [65535, 0], "worked upon his feelings with the": [65535, 0], "upon his feelings with the pathos": [65535, 0], "his feelings with the pathos of": [65535, 0], "feelings with the pathos of these": [65535, 0], "with the pathos of these dreams": [65535, 0], "the pathos of these dreams that": [65535, 0], "pathos of these dreams that he": [65535, 0], "of these dreams that he had": [65535, 0], "these dreams that he had to": [65535, 0], "dreams that he had to keep": [65535, 0], "that he had to keep swallowing": [65535, 0], "he had to keep swallowing he": [65535, 0], "had to keep swallowing he was": [65535, 0], "to keep swallowing he was so": [65535, 0], "keep swallowing he was so like": [65535, 0], "swallowing he was so like to": [65535, 0], "he was so like to choke": [65535, 0], "was so like to choke and": [65535, 0], "so like to choke and his": [65535, 0], "like to choke and his eyes": [65535, 0], "to choke and his eyes swam": [65535, 0], "choke and his eyes swam in": [65535, 0], "and his eyes swam in a": [65535, 0], "his eyes swam in a blur": [65535, 0], "eyes swam in a blur of": [65535, 0], "swam in a blur of water": [65535, 0], "in a blur of water which": [65535, 0], "a blur of water which overflowed": [65535, 0], "blur of water which overflowed when": [65535, 0], "of water which overflowed when he": [65535, 0], "water which overflowed when he winked": [65535, 0], "which overflowed when he winked and": [65535, 0], "overflowed when he winked and ran": [65535, 0], "when he winked and ran down": [65535, 0], "he winked and ran down and": [65535, 0], "winked and ran down and trickled": [65535, 0], "and ran down and trickled from": [65535, 0], "ran down and trickled from the": [65535, 0], "down and trickled from the end": [65535, 0], "and trickled from the end of": [65535, 0], "trickled from the end of his": [65535, 0], "from the end of his nose": [65535, 0], "the end of his nose and": [65535, 0], "end of his nose and such": [65535, 0], "of his nose and such a": [65535, 0], "his nose and such a luxury": [65535, 0], "nose and such a luxury to": [65535, 0], "and such a luxury to him": [65535, 0], "such a luxury to him was": [65535, 0], "a luxury to him was this": [65535, 0], "luxury to him was this petting": [65535, 0], "to him was this petting of": [65535, 0], "him was this petting of his": [65535, 0], "was this petting of his sorrows": [65535, 0], "this petting of his sorrows that": [65535, 0], "petting of his sorrows that he": [65535, 0], "of his sorrows that he could": [65535, 0], "his sorrows that he could not": [65535, 0], "sorrows that he could not bear": [65535, 0], "that he could not bear to": [65535, 0], "he could not bear to have": [65535, 0], "could not bear to have any": [65535, 0], "not bear to have any worldly": [65535, 0], "bear to have any worldly cheeriness": [65535, 0], "to have any worldly cheeriness or": [65535, 0], "have any worldly cheeriness or any": [65535, 0], "any worldly cheeriness or any grating": [65535, 0], "worldly cheeriness or any grating delight": [65535, 0], "cheeriness or any grating delight intrude": [65535, 0], "or any grating delight intrude upon": [65535, 0], "any grating delight intrude upon it": [65535, 0], "grating delight intrude upon it it": [65535, 0], "delight intrude upon it it was": [65535, 0], "intrude upon it it was too": [65535, 0], "upon it it was too sacred": [65535, 0], "it it was too sacred for": [65535, 0], "it was too sacred for such": [65535, 0], "was too sacred for such contact": [65535, 0], "too sacred for such contact and": [65535, 0], "sacred for such contact and so": [65535, 0], "for such contact and so presently": [65535, 0], "such contact and so presently when": [65535, 0], "contact and so presently when his": [65535, 0], "and so presently when his cousin": [65535, 0], "so presently when his cousin mary": [65535, 0], "presently when his cousin mary danced": [65535, 0], "when his cousin mary danced in": [65535, 0], "his cousin mary danced in all": [65535, 0], "cousin mary danced in all alive": [65535, 0], "mary danced in all alive with": [65535, 0], "danced in all alive with the": [65535, 0], "in all alive with the joy": [65535, 0], "all alive with the joy of": [65535, 0], "alive with the joy of seeing": [65535, 0], "with the joy of seeing home": [65535, 0], "the joy of seeing home again": [65535, 0], "joy of seeing home again after": [65535, 0], "of seeing home again after an": [65535, 0], "seeing home again after an age": [65535, 0], "home again after an age long": [65535, 0], "again after an age long visit": [65535, 0], "after an age long visit of": [65535, 0], "an age long visit of one": [65535, 0], "age long visit of one week": [65535, 0], "long visit of one week to": [65535, 0], "visit of one week to the": [65535, 0], "of one week to the country": [65535, 0], "one week to the country he": [65535, 0], "week to the country he got": [65535, 0], "to the country he got up": [65535, 0], "the country he got up and": [65535, 0], "country he got up and moved": [65535, 0], "he got up and moved in": [65535, 0], "got up and moved in clouds": [65535, 0], "up and moved in clouds and": [65535, 0], "and moved in clouds and darkness": [65535, 0], "moved in clouds and darkness out": [65535, 0], "in clouds and darkness out at": [65535, 0], "clouds and darkness out at one": [65535, 0], "and darkness out at one door": [65535, 0], "darkness out at one door as": [65535, 0], "out at one door as she": [65535, 0], "at one door as she brought": [65535, 0], "one door as she brought song": [65535, 0], "door as she brought song and": [65535, 0], "as she brought song and sunshine": [65535, 0], "she brought song and sunshine in": [65535, 0], "brought song and sunshine in at": [65535, 0], "song and sunshine in at the": [65535, 0], "and sunshine in at the other": [65535, 0], "sunshine in at the other he": [65535, 0], "in at the other he wandered": [65535, 0], "at the other he wandered far": [65535, 0], "the other he wandered far from": [65535, 0], "other he wandered far from the": [65535, 0], "he wandered far from the accustomed": [65535, 0], "wandered far from the accustomed haunts": [65535, 0], "far from the accustomed haunts of": [65535, 0], "from the accustomed haunts of boys": [65535, 0], "the accustomed haunts of boys and": [65535, 0], "accustomed haunts of boys and sought": [65535, 0], "haunts of boys and sought desolate": [65535, 0], "of boys and sought desolate places": [65535, 0], "boys and sought desolate places that": [65535, 0], "and sought desolate places that were": [65535, 0], "sought desolate places that were in": [65535, 0], "desolate places that were in harmony": [65535, 0], "places that were in harmony with": [65535, 0], "that were in harmony with his": [65535, 0], "were in harmony with his spirit": [65535, 0], "in harmony with his spirit a": [65535, 0], "harmony with his spirit a log": [65535, 0], "with his spirit a log raft": [65535, 0], "his spirit a log raft in": [65535, 0], "spirit a log raft in the": [65535, 0], "a log raft in the river": [65535, 0], "log raft in the river invited": [65535, 0], "raft in the river invited him": [65535, 0], "in the river invited him and": [65535, 0], "the river invited him and he": [65535, 0], "river invited him and he seated": [65535, 0], "invited him and he seated himself": [65535, 0], "him and he seated himself on": [65535, 0], "and he seated himself on its": [65535, 0], "he seated himself on its outer": [65535, 0], "seated himself on its outer edge": [65535, 0], "himself on its outer edge and": [65535, 0], "on its outer edge and contemplated": [65535, 0], "its outer edge and contemplated the": [65535, 0], "outer edge and contemplated the dreary": [65535, 0], "edge and contemplated the dreary vastness": [65535, 0], "and contemplated the dreary vastness of": [65535, 0], "contemplated the dreary vastness of the": [65535, 0], "the dreary vastness of the stream": [65535, 0], "dreary vastness of the stream wishing": [65535, 0], "vastness of the stream wishing the": [65535, 0], "of the stream wishing the while": [65535, 0], "the stream wishing the while that": [65535, 0], "stream wishing the while that he": [65535, 0], "wishing the while that he could": [65535, 0], "the while that he could only": [65535, 0], "while that he could only be": [65535, 0], "that he could only be drowned": [65535, 0], "he could only be drowned all": [65535, 0], "could only be drowned all at": [65535, 0], "only be drowned all at once": [65535, 0], "be drowned all at once and": [65535, 0], "drowned all at once and unconsciously": [65535, 0], "all at once and unconsciously without": [65535, 0], "at once and unconsciously without undergoing": [65535, 0], "once and unconsciously without undergoing the": [65535, 0], "and unconsciously without undergoing the uncomfortable": [65535, 0], "unconsciously without undergoing the uncomfortable routine": [65535, 0], "without undergoing the uncomfortable routine devised": [65535, 0], "undergoing the uncomfortable routine devised by": [65535, 0], "the uncomfortable routine devised by nature": [65535, 0], "uncomfortable routine devised by nature then": [65535, 0], "routine devised by nature then he": [65535, 0], "devised by nature then he thought": [65535, 0], "by nature then he thought of": [65535, 0], "nature then he thought of his": [65535, 0], "then he thought of his flower": [65535, 0], "he thought of his flower he": [65535, 0], "thought of his flower he got": [65535, 0], "of his flower he got it": [65535, 0], "his flower he got it out": [65535, 0], "flower he got it out rumpled": [65535, 0], "he got it out rumpled and": [65535, 0], "got it out rumpled and wilted": [65535, 0], "it out rumpled and wilted and": [65535, 0], "out rumpled and wilted and it": [65535, 0], "rumpled and wilted and it mightily": [65535, 0], "and wilted and it mightily increased": [65535, 0], "wilted and it mightily increased his": [65535, 0], "and it mightily increased his dismal": [65535, 0], "it mightily increased his dismal felicity": [65535, 0], "mightily increased his dismal felicity he": [65535, 0], "increased his dismal felicity he wondered": [65535, 0], "his dismal felicity he wondered if": [65535, 0], "dismal felicity he wondered if she": [65535, 0], "felicity he wondered if she would": [65535, 0], "he wondered if she would pity": [65535, 0], "wondered if she would pity him": [65535, 0], "if she would pity him if": [65535, 0], "she would pity him if she": [65535, 0], "would pity him if she knew": [65535, 0], "pity him if she knew would": [65535, 0], "him if she knew would she": [65535, 0], "if she knew would she cry": [65535, 0], "she knew would she cry and": [65535, 0], "knew would she cry and wish": [65535, 0], "would she cry and wish that": [65535, 0], "she cry and wish that she": [65535, 0], "cry and wish that she had": [65535, 0], "and wish that she had a": [65535, 0], "wish that she had a right": [65535, 0], "that she had a right to": [65535, 0], "she had a right to put": [65535, 0], "had a right to put her": [65535, 0], "a right to put her arms": [65535, 0], "right to put her arms around": [65535, 0], "to put her arms around his": [65535, 0], "put her arms around his neck": [65535, 0], "her arms around his neck and": [65535, 0], "arms around his neck and comfort": [65535, 0], "around his neck and comfort him": [65535, 0], "his neck and comfort him or": [65535, 0], "neck and comfort him or would": [65535, 0], "and comfort him or would she": [65535, 0], "comfort him or would she turn": [65535, 0], "him or would she turn coldly": [65535, 0], "or would she turn coldly away": [65535, 0], "would she turn coldly away like": [65535, 0], "she turn coldly away like all": [65535, 0], "turn coldly away like all the": [65535, 0], "coldly away like all the hollow": [65535, 0], "away like all the hollow world": [65535, 0], "like all the hollow world this": [65535, 0], "all the hollow world this picture": [65535, 0], "the hollow world this picture brought": [65535, 0], "hollow world this picture brought such": [65535, 0], "world this picture brought such an": [65535, 0], "this picture brought such an agony": [65535, 0], "picture brought such an agony of": [65535, 0], "brought such an agony of pleasurable": [65535, 0], "such an agony of pleasurable suffering": [65535, 0], "an agony of pleasurable suffering that": [65535, 0], "agony of pleasurable suffering that he": [65535, 0], "of pleasurable suffering that he worked": [65535, 0], "pleasurable suffering that he worked it": [65535, 0], "suffering that he worked it over": [65535, 0], "that he worked it over and": [65535, 0], "he worked it over and over": [65535, 0], "worked it over and over again": [65535, 0], "it over and over again in": [65535, 0], "over and over again in his": [65535, 0], "and over again in his mind": [65535, 0], "over again in his mind and": [65535, 0], "again in his mind and set": [65535, 0], "in his mind and set it": [65535, 0], "his mind and set it up": [65535, 0], "mind and set it up in": [65535, 0], "and set it up in new": [65535, 0], "set it up in new and": [65535, 0], "it up in new and varied": [65535, 0], "up in new and varied lights": [65535, 0], "in new and varied lights till": [65535, 0], "new and varied lights till he": [65535, 0], "and varied lights till he wore": [65535, 0], "varied lights till he wore it": [65535, 0], "lights till he wore it threadbare": [65535, 0], "till he wore it threadbare at": [65535, 0], "he wore it threadbare at last": [65535, 0], "wore it threadbare at last he": [65535, 0], "it threadbare at last he rose": [65535, 0], "threadbare at last he rose up": [65535, 0], "at last he rose up sighing": [65535, 0], "last he rose up sighing and": [65535, 0], "he rose up sighing and departed": [65535, 0], "rose up sighing and departed in": [65535, 0], "up sighing and departed in the": [65535, 0], "sighing and departed in the darkness": [65535, 0], "and departed in the darkness about": [65535, 0], "departed in the darkness about half": [65535, 0], "in the darkness about half past": [65535, 0], "the darkness about half past nine": [65535, 0], "darkness about half past nine or": [65535, 0], "about half past nine or ten": [65535, 0], "half past nine or ten o'clock": [65535, 0], "past nine or ten o'clock he": [65535, 0], "nine or ten o'clock he came": [65535, 0], "or ten o'clock he came along": [65535, 0], "ten o'clock he came along the": [65535, 0], "o'clock he came along the deserted": [65535, 0], "he came along the deserted street": [65535, 0], "came along the deserted street to": [65535, 0], "along the deserted street to where": [65535, 0], "the deserted street to where the": [65535, 0], "deserted street to where the adored": [65535, 0], "street to where the adored unknown": [65535, 0], "to where the adored unknown lived": [65535, 0], "where the adored unknown lived he": [65535, 0], "the adored unknown lived he paused": [65535, 0], "adored unknown lived he paused a": [65535, 0], "unknown lived he paused a moment": [65535, 0], "lived he paused a moment no": [65535, 0], "he paused a moment no sound": [65535, 0], "paused a moment no sound fell": [65535, 0], "a moment no sound fell upon": [65535, 0], "moment no sound fell upon his": [65535, 0], "no sound fell upon his listening": [65535, 0], "sound fell upon his listening ear": [65535, 0], "fell upon his listening ear a": [65535, 0], "upon his listening ear a candle": [65535, 0], "his listening ear a candle was": [65535, 0], "listening ear a candle was casting": [65535, 0], "ear a candle was casting a": [65535, 0], "a candle was casting a dull": [65535, 0], "candle was casting a dull glow": [65535, 0], "was casting a dull glow upon": [65535, 0], "casting a dull glow upon the": [65535, 0], "a dull glow upon the curtain": [65535, 0], "dull glow upon the curtain of": [65535, 0], "glow upon the curtain of a": [65535, 0], "upon the curtain of a second": [65535, 0], "the curtain of a second story": [65535, 0], "curtain of a second story window": [65535, 0], "of a second story window was": [65535, 0], "a second story window was the": [65535, 0], "second story window was the sacred": [65535, 0], "story window was the sacred presence": [65535, 0], "window was the sacred presence there": [65535, 0], "was the sacred presence there he": [65535, 0], "the sacred presence there he climbed": [65535, 0], "sacred presence there he climbed the": [65535, 0], "presence there he climbed the fence": [65535, 0], "there he climbed the fence threaded": [65535, 0], "he climbed the fence threaded his": [65535, 0], "climbed the fence threaded his stealthy": [65535, 0], "the fence threaded his stealthy way": [65535, 0], "fence threaded his stealthy way through": [65535, 0], "threaded his stealthy way through the": [65535, 0], "his stealthy way through the plants": [65535, 0], "stealthy way through the plants till": [65535, 0], "way through the plants till he": [65535, 0], "through the plants till he stood": [65535, 0], "the plants till he stood under": [65535, 0], "plants till he stood under that": [65535, 0], "till he stood under that window": [65535, 0], "he stood under that window he": [65535, 0], "stood under that window he looked": [65535, 0], "under that window he looked up": [65535, 0], "that window he looked up at": [65535, 0], "window he looked up at it": [65535, 0], "he looked up at it long": [65535, 0], "looked up at it long and": [65535, 0], "up at it long and with": [65535, 0], "at it long and with emotion": [65535, 0], "it long and with emotion then": [65535, 0], "long and with emotion then he": [65535, 0], "and with emotion then he laid": [65535, 0], "with emotion then he laid him": [65535, 0], "emotion then he laid him down": [65535, 0], "then he laid him down on": [65535, 0], "he laid him down on the": [65535, 0], "laid him down on the ground": [65535, 0], "him down on the ground under": [65535, 0], "down on the ground under it": [65535, 0], "on the ground under it disposing": [65535, 0], "the ground under it disposing himself": [65535, 0], "ground under it disposing himself upon": [65535, 0], "under it disposing himself upon his": [65535, 0], "it disposing himself upon his back": [65535, 0], "disposing himself upon his back with": [65535, 0], "himself upon his back with his": [65535, 0], "upon his back with his hands": [65535, 0], "his back with his hands clasped": [65535, 0], "back with his hands clasped upon": [65535, 0], "with his hands clasped upon his": [65535, 0], "his hands clasped upon his breast": [65535, 0], "hands clasped upon his breast and": [65535, 0], "clasped upon his breast and holding": [65535, 0], "upon his breast and holding his": [65535, 0], "his breast and holding his poor": [65535, 0], "breast and holding his poor wilted": [65535, 0], "and holding his poor wilted flower": [65535, 0], "holding his poor wilted flower and": [65535, 0], "his poor wilted flower and thus": [65535, 0], "poor wilted flower and thus he": [65535, 0], "wilted flower and thus he would": [65535, 0], "flower and thus he would die": [65535, 0], "and thus he would die out": [65535, 0], "thus he would die out in": [65535, 0], "he would die out in the": [65535, 0], "would die out in the cold": [65535, 0], "die out in the cold world": [65535, 0], "out in the cold world with": [65535, 0], "in the cold world with no": [65535, 0], "the cold world with no shelter": [65535, 0], "cold world with no shelter over": [65535, 0], "world with no shelter over his": [65535, 0], "with no shelter over his homeless": [65535, 0], "no shelter over his homeless head": [65535, 0], "shelter over his homeless head no": [65535, 0], "over his homeless head no friendly": [65535, 0], "his homeless head no friendly hand": [65535, 0], "homeless head no friendly hand to": [65535, 0], "head no friendly hand to wipe": [65535, 0], "no friendly hand to wipe the": [65535, 0], "friendly hand to wipe the death": [65535, 0], "hand to wipe the death damps": [65535, 0], "to wipe the death damps from": [65535, 0], "wipe the death damps from his": [65535, 0], "the death damps from his brow": [65535, 0], "death damps from his brow no": [65535, 0], "damps from his brow no loving": [65535, 0], "from his brow no loving face": [65535, 0], "his brow no loving face to": [65535, 0], "brow no loving face to bend": [65535, 0], "no loving face to bend pityingly": [65535, 0], "loving face to bend pityingly over": [65535, 0], "face to bend pityingly over him": [65535, 0], "to bend pityingly over him when": [65535, 0], "bend pityingly over him when the": [65535, 0], "pityingly over him when the great": [65535, 0], "over him when the great agony": [65535, 0], "him when the great agony came": [65535, 0], "when the great agony came and": [65535, 0], "the great agony came and thus": [65535, 0], "great agony came and thus she": [65535, 0], "agony came and thus she would": [65535, 0], "came and thus she would see": [65535, 0], "and thus she would see him": [65535, 0], "thus she would see him when": [65535, 0], "she would see him when she": [65535, 0], "would see him when she looked": [65535, 0], "see him when she looked out": [65535, 0], "him when she looked out upon": [65535, 0], "when she looked out upon the": [65535, 0], "she looked out upon the glad": [65535, 0], "looked out upon the glad morning": [65535, 0], "out upon the glad morning and": [65535, 0], "upon the glad morning and oh": [65535, 0], "the glad morning and oh would": [65535, 0], "glad morning and oh would she": [65535, 0], "morning and oh would she drop": [65535, 0], "and oh would she drop one": [65535, 0], "oh would she drop one little": [65535, 0], "would she drop one little tear": [65535, 0], "she drop one little tear upon": [65535, 0], "drop one little tear upon his": [65535, 0], "one little tear upon his poor": [65535, 0], "little tear upon his poor lifeless": [65535, 0], "tear upon his poor lifeless form": [65535, 0], "upon his poor lifeless form would": [65535, 0], "his poor lifeless form would she": [65535, 0], "poor lifeless form would she heave": [65535, 0], "lifeless form would she heave one": [65535, 0], "form would she heave one little": [65535, 0], "would she heave one little sigh": [65535, 0], "she heave one little sigh to": [65535, 0], "heave one little sigh to see": [65535, 0], "one little sigh to see a": [65535, 0], "little sigh to see a bright": [65535, 0], "sigh to see a bright young": [65535, 0], "to see a bright young life": [65535, 0], "see a bright young life so": [65535, 0], "a bright young life so rudely": [65535, 0], "bright young life so rudely blighted": [65535, 0], "young life so rudely blighted so": [65535, 0], "life so rudely blighted so untimely": [65535, 0], "so rudely blighted so untimely cut": [65535, 0], "rudely blighted so untimely cut down": [65535, 0], "blighted so untimely cut down the": [65535, 0], "so untimely cut down the window": [65535, 0], "untimely cut down the window went": [65535, 0], "cut down the window went up": [65535, 0], "down the window went up a": [65535, 0], "the window went up a maid": [65535, 0], "window went up a maid servant's": [65535, 0], "went up a maid servant's discordant": [65535, 0], "up a maid servant's discordant voice": [65535, 0], "a maid servant's discordant voice profaned": [65535, 0], "maid servant's discordant voice profaned the": [65535, 0], "servant's discordant voice profaned the holy": [65535, 0], "discordant voice profaned the holy calm": [65535, 0], "voice profaned the holy calm and": [65535, 0], "profaned the holy calm and a": [65535, 0], "the holy calm and a deluge": [65535, 0], "holy calm and a deluge of": [65535, 0], "calm and a deluge of water": [65535, 0], "and a deluge of water drenched": [65535, 0], "a deluge of water drenched the": [65535, 0], "deluge of water drenched the prone": [65535, 0], "of water drenched the prone martyr's": [65535, 0], "water drenched the prone martyr's remains": [65535, 0], "drenched the prone martyr's remains the": [65535, 0], "the prone martyr's remains the strangling": [65535, 0], "prone martyr's remains the strangling hero": [65535, 0], "martyr's remains the strangling hero sprang": [65535, 0], "remains the strangling hero sprang up": [65535, 0], "the strangling hero sprang up with": [65535, 0], "strangling hero sprang up with a": [65535, 0], "hero sprang up with a relieving": [65535, 0], "sprang up with a relieving snort": [65535, 0], "up with a relieving snort there": [65535, 0], "with a relieving snort there was": [65535, 0], "a relieving snort there was a": [65535, 0], "relieving snort there was a whiz": [65535, 0], "snort there was a whiz as": [65535, 0], "there was a whiz as of": [65535, 0], "was a whiz as of a": [65535, 0], "a whiz as of a missile": [65535, 0], "whiz as of a missile in": [65535, 0], "as of a missile in the": [65535, 0], "of a missile in the air": [65535, 0], "a missile in the air mingled": [65535, 0], "missile in the air mingled with": [65535, 0], "in the air mingled with the": [65535, 0], "the air mingled with the murmur": [65535, 0], "air mingled with the murmur of": [65535, 0], "mingled with the murmur of a": [65535, 0], "with the murmur of a curse": [65535, 0], "the murmur of a curse a": [65535, 0], "murmur of a curse a sound": [65535, 0], "of a curse a sound as": [65535, 0], "a curse a sound as of": [65535, 0], "curse a sound as of shivering": [65535, 0], "a sound as of shivering glass": [65535, 0], "sound as of shivering glass followed": [65535, 0], "as of shivering glass followed and": [65535, 0], "of shivering glass followed and a": [65535, 0], "shivering glass followed and a small": [65535, 0], "glass followed and a small vague": [65535, 0], "followed and a small vague form": [65535, 0], "and a small vague form went": [65535, 0], "a small vague form went over": [65535, 0], "small vague form went over the": [65535, 0], "vague form went over the fence": [65535, 0], "form went over the fence and": [65535, 0], "went over the fence and shot": [65535, 0], "over the fence and shot away": [65535, 0], "the fence and shot away in": [65535, 0], "fence and shot away in the": [65535, 0], "and shot away in the gloom": [65535, 0], "shot away in the gloom not": [65535, 0], "away in the gloom not long": [65535, 0], "in the gloom not long after": [65535, 0], "the gloom not long after as": [65535, 0], "gloom not long after as tom": [65535, 0], "not long after as tom all": [65535, 0], "long after as tom all undressed": [65535, 0], "after as tom all undressed for": [65535, 0], "as tom all undressed for bed": [65535, 0], "tom all undressed for bed was": [65535, 0], "all undressed for bed was surveying": [65535, 0], "undressed for bed was surveying his": [65535, 0], "for bed was surveying his drenched": [65535, 0], "bed was surveying his drenched garments": [65535, 0], "was surveying his drenched garments by": [65535, 0], "surveying his drenched garments by the": [65535, 0], "his drenched garments by the light": [65535, 0], "drenched garments by the light of": [65535, 0], "garments by the light of a": [65535, 0], "by the light of a tallow": [65535, 0], "the light of a tallow dip": [65535, 0], "light of a tallow dip sid": [65535, 0], "of a tallow dip sid woke": [65535, 0], "a tallow dip sid woke up": [65535, 0], "tallow dip sid woke up but": [65535, 0], "dip sid woke up but if": [65535, 0], "sid woke up but if he": [65535, 0], "woke up but if he had": [65535, 0], "up but if he had any": [65535, 0], "but if he had any dim": [65535, 0], "if he had any dim idea": [65535, 0], "he had any dim idea of": [65535, 0], "had any dim idea of making": [65535, 0], "any dim idea of making any": [65535, 0], "dim idea of making any references": [65535, 0], "idea of making any references to": [65535, 0], "of making any references to allusions": [65535, 0], "making any references to allusions he": [65535, 0], "any references to allusions he thought": [65535, 0], "references to allusions he thought better": [65535, 0], "to allusions he thought better of": [65535, 0], "allusions he thought better of it": [65535, 0], "he thought better of it and": [65535, 0], "thought better of it and held": [65535, 0], "better of it and held his": [65535, 0], "of it and held his peace": [65535, 0], "it and held his peace for": [65535, 0], "and held his peace for there": [65535, 0], "held his peace for there was": [65535, 0], "his peace for there was danger": [65535, 0], "peace for there was danger in": [65535, 0], "for there was danger in tom's": [65535, 0], "there was danger in tom's eye": [65535, 0], "was danger in tom's eye tom": [65535, 0], "danger in tom's eye tom turned": [65535, 0], "in tom's eye tom turned in": [65535, 0], "tom's eye tom turned in without": [65535, 0], "eye tom turned in without the": [65535, 0], "tom turned in without the added": [65535, 0], "turned in without the added vexation": [65535, 0], "in without the added vexation of": [65535, 0], "without the added vexation of prayers": [65535, 0], "the added vexation of prayers and": [65535, 0], "added vexation of prayers and sid": [65535, 0], "vexation of prayers and sid made": [65535, 0], "of prayers and sid made mental": [65535, 0], "prayers and sid made mental note": [65535, 0], "and sid made mental note of": [65535, 0], "sid made mental note of the": [65535, 0], "made mental note of the omission": [65535, 0], "tom presented himself before aunt polly who": [65535, 0], "presented himself before aunt polly who was": [65535, 0], "himself before aunt polly who was sitting": [65535, 0], "before aunt polly who was sitting by": [65535, 0], "aunt polly who was sitting by an": [65535, 0], "polly who was sitting by an open": [65535, 0], "who was sitting by an open window": [65535, 0], "was sitting by an open window in": [65535, 0], "sitting by an open window in a": [65535, 0], "by an open window in a pleasant": [65535, 0], "an open window in a pleasant rearward": [65535, 0], "open window in a pleasant rearward apartment": [65535, 0], "window in a pleasant rearward apartment which": [65535, 0], "in a pleasant rearward apartment which was": [65535, 0], "a pleasant rearward apartment which was bedroom": [65535, 0], "pleasant rearward apartment which was bedroom breakfast": [65535, 0], "rearward apartment which was bedroom breakfast room": [65535, 0], "apartment which was bedroom breakfast room dining": [65535, 0], "which was bedroom breakfast room dining room": [65535, 0], "was bedroom breakfast room dining room and": [65535, 0], "bedroom breakfast room dining room and library": [65535, 0], "breakfast room dining room and library combined": [65535, 0], "room dining room and library combined the": [65535, 0], "dining room and library combined the balmy": [65535, 0], "room and library combined the balmy summer": [65535, 0], "and library combined the balmy summer air": [65535, 0], "library combined the balmy summer air the": [65535, 0], "combined the balmy summer air the restful": [65535, 0], "the balmy summer air the restful quiet": [65535, 0], "balmy summer air the restful quiet the": [65535, 0], "summer air the restful quiet the odor": [65535, 0], "air the restful quiet the odor of": [65535, 0], "the restful quiet the odor of the": [65535, 0], "restful quiet the odor of the flowers": [65535, 0], "quiet the odor of the flowers and": [65535, 0], "the odor of the flowers and the": [65535, 0], "odor of the flowers and the drowsing": [65535, 0], "of the flowers and the drowsing murmur": [65535, 0], "the flowers and the drowsing murmur of": [65535, 0], "flowers and the drowsing murmur of the": [65535, 0], "and the drowsing murmur of the bees": [65535, 0], "the drowsing murmur of the bees had": [65535, 0], "drowsing murmur of the bees had had": [65535, 0], "murmur of the bees had had their": [65535, 0], "of the bees had had their effect": [65535, 0], "the bees had had their effect and": [65535, 0], "bees had had their effect and she": [65535, 0], "had had their effect and she was": [65535, 0], "had their effect and she was nodding": [65535, 0], "their effect and she was nodding over": [65535, 0], "effect and she was nodding over her": [65535, 0], "and she was nodding over her knitting": [65535, 0], "she was nodding over her knitting for": [65535, 0], "was nodding over her knitting for she": [65535, 0], "nodding over her knitting for she had": [65535, 0], "over her knitting for she had no": [65535, 0], "her knitting for she had no company": [65535, 0], "knitting for she had no company but": [65535, 0], "for she had no company but the": [65535, 0], "she had no company but the cat": [65535, 0], "had no company but the cat and": [65535, 0], "no company but the cat and it": [65535, 0], "company but the cat and it was": [65535, 0], "but the cat and it was asleep": [65535, 0], "the cat and it was asleep in": [65535, 0], "cat and it was asleep in her": [65535, 0], "and it was asleep in her lap": [65535, 0], "it was asleep in her lap her": [65535, 0], "was asleep in her lap her spectacles": [65535, 0], "asleep in her lap her spectacles were": [65535, 0], "in her lap her spectacles were propped": [65535, 0], "her lap her spectacles were propped up": [65535, 0], "lap her spectacles were propped up on": [65535, 0], "her spectacles were propped up on her": [65535, 0], "spectacles were propped up on her gray": [65535, 0], "were propped up on her gray head": [65535, 0], "propped up on her gray head for": [65535, 0], "up on her gray head for safety": [65535, 0], "on her gray head for safety she": [65535, 0], "her gray head for safety she had": [65535, 0], "gray head for safety she had thought": [65535, 0], "head for safety she had thought that": [65535, 0], "for safety she had thought that of": [65535, 0], "safety she had thought that of course": [65535, 0], "she had thought that of course tom": [65535, 0], "had thought that of course tom had": [65535, 0], "thought that of course tom had deserted": [65535, 0], "that of course tom had deserted long": [65535, 0], "of course tom had deserted long ago": [65535, 0], "course tom had deserted long ago and": [65535, 0], "tom had deserted long ago and she": [65535, 0], "had deserted long ago and she wondered": [65535, 0], "deserted long ago and she wondered at": [65535, 0], "long ago and she wondered at seeing": [65535, 0], "ago and she wondered at seeing him": [65535, 0], "and she wondered at seeing him place": [65535, 0], "she wondered at seeing him place himself": [65535, 0], "wondered at seeing him place himself in": [65535, 0], "at seeing him place himself in her": [65535, 0], "seeing him place himself in her power": [65535, 0], "him place himself in her power again": [65535, 0], "place himself in her power again in": [65535, 0], "himself in her power again in this": [65535, 0], "in her power again in this intrepid": [65535, 0], "her power again in this intrepid way": [65535, 0], "power again in this intrepid way he": [65535, 0], "again in this intrepid way he said": [65535, 0], "in this intrepid way he said mayn't": [65535, 0], "this intrepid way he said mayn't i": [65535, 0], "intrepid way he said mayn't i go": [65535, 0], "way he said mayn't i go and": [65535, 0], "he said mayn't i go and play": [65535, 0], "said mayn't i go and play now": [65535, 0], "mayn't i go and play now aunt": [65535, 0], "i go and play now aunt what": [65535, 0], "go and play now aunt what a'ready": [65535, 0], "and play now aunt what a'ready how": [65535, 0], "play now aunt what a'ready how much": [65535, 0], "now aunt what a'ready how much have": [65535, 0], "aunt what a'ready how much have you": [65535, 0], "what a'ready how much have you done": [65535, 0], "a'ready how much have you done it's": [65535, 0], "how much have you done it's all": [65535, 0], "much have you done it's all done": [65535, 0], "have you done it's all done aunt": [65535, 0], "you done it's all done aunt tom": [65535, 0], "done it's all done aunt tom don't": [65535, 0], "it's all done aunt tom don't lie": [65535, 0], "all done aunt tom don't lie to": [65535, 0], "done aunt tom don't lie to me": [65535, 0], "aunt tom don't lie to me i": [65535, 0], "tom don't lie to me i can't": [65535, 0], "don't lie to me i can't bear": [65535, 0], "lie to me i can't bear it": [65535, 0], "to me i can't bear it i": [65535, 0], "me i can't bear it i ain't": [65535, 0], "i can't bear it i ain't aunt": [65535, 0], "can't bear it i ain't aunt it": [65535, 0], "bear it i ain't aunt it is": [65535, 0], "it i ain't aunt it is all": [65535, 0], "i ain't aunt it is all done": [65535, 0], "ain't aunt it is all done aunt": [65535, 0], "aunt it is all done aunt polly": [65535, 0], "it is all done aunt polly placed": [65535, 0], "is all done aunt polly placed small": [65535, 0], "all done aunt polly placed small trust": [65535, 0], "done aunt polly placed small trust in": [65535, 0], "aunt polly placed small trust in such": [65535, 0], "polly placed small trust in such evidence": [65535, 0], "placed small trust in such evidence she": [65535, 0], "small trust in such evidence she went": [65535, 0], "trust in such evidence she went out": [65535, 0], "in such evidence she went out to": [65535, 0], "such evidence she went out to see": [65535, 0], "evidence she went out to see for": [65535, 0], "she went out to see for herself": [65535, 0], "went out to see for herself and": [65535, 0], "out to see for herself and she": [65535, 0], "to see for herself and she would": [65535, 0], "see for herself and she would have": [65535, 0], "for herself and she would have been": [65535, 0], "herself and she would have been content": [65535, 0], "and she would have been content to": [65535, 0], "she would have been content to find": [65535, 0], "would have been content to find twenty": [65535, 0], "have been content to find twenty per": [65535, 0], "been content to find twenty per cent": [65535, 0], "content to find twenty per cent of": [65535, 0], "to find twenty per cent of tom's": [65535, 0], "find twenty per cent of tom's statement": [65535, 0], "twenty per cent of tom's statement true": [65535, 0], "per cent of tom's statement true when": [65535, 0], "cent of tom's statement true when she": [65535, 0], "of tom's statement true when she found": [65535, 0], "tom's statement true when she found the": [65535, 0], "statement true when she found the entire": [65535, 0], "true when she found the entire fence": [65535, 0], "when she found the entire fence whitewashed": [65535, 0], "she found the entire fence whitewashed and": [65535, 0], "found the entire fence whitewashed and not": [65535, 0], "the entire fence whitewashed and not only": [65535, 0], "entire fence whitewashed and not only whitewashed": [65535, 0], "fence whitewashed and not only whitewashed but": [65535, 0], "whitewashed and not only whitewashed but elaborately": [65535, 0], "and not only whitewashed but elaborately coated": [65535, 0], "not only whitewashed but elaborately coated and": [65535, 0], "only whitewashed but elaborately coated and recoated": [65535, 0], "whitewashed but elaborately coated and recoated and": [65535, 0], "but elaborately coated and recoated and even": [65535, 0], "elaborately coated and recoated and even a": [65535, 0], "coated and recoated and even a streak": [65535, 0], "and recoated and even a streak added": [65535, 0], "recoated and even a streak added to": [65535, 0], "and even a streak added to the": [65535, 0], "even a streak added to the ground": [65535, 0], "a streak added to the ground her": [65535, 0], "streak added to the ground her astonishment": [65535, 0], "added to the ground her astonishment was": [65535, 0], "to the ground her astonishment was almost": [65535, 0], "the ground her astonishment was almost unspeakable": [65535, 0], "ground her astonishment was almost unspeakable she": [65535, 0], "her astonishment was almost unspeakable she said": [65535, 0], "astonishment was almost unspeakable she said well": [65535, 0], "was almost unspeakable she said well i": [65535, 0], "almost unspeakable she said well i never": [65535, 0], "unspeakable she said well i never there's": [65535, 0], "she said well i never there's no": [65535, 0], "said well i never there's no getting": [65535, 0], "well i never there's no getting round": [65535, 0], "i never there's no getting round it": [65535, 0], "never there's no getting round it you": [65535, 0], "there's no getting round it you can": [65535, 0], "no getting round it you can work": [65535, 0], "getting round it you can work when": [65535, 0], "round it you can work when you're": [65535, 0], "it you can work when you're a": [65535, 0], "you can work when you're a mind": [65535, 0], "can work when you're a mind to": [65535, 0], "work when you're a mind to tom": [65535, 0], "when you're a mind to tom and": [65535, 0], "you're a mind to tom and then": [65535, 0], "a mind to tom and then she": [65535, 0], "mind to tom and then she diluted": [65535, 0], "to tom and then she diluted the": [65535, 0], "tom and then she diluted the compliment": [65535, 0], "and then she diluted the compliment by": [65535, 0], "then she diluted the compliment by adding": [65535, 0], "she diluted the compliment by adding but": [65535, 0], "diluted the compliment by adding but it's": [65535, 0], "the compliment by adding but it's powerful": [65535, 0], "compliment by adding but it's powerful seldom": [65535, 0], "by adding but it's powerful seldom you're": [65535, 0], "adding but it's powerful seldom you're a": [65535, 0], "but it's powerful seldom you're a mind": [65535, 0], "it's powerful seldom you're a mind to": [65535, 0], "powerful seldom you're a mind to i'm": [65535, 0], "seldom you're a mind to i'm bound": [65535, 0], "you're a mind to i'm bound to": [65535, 0], "a mind to i'm bound to say": [65535, 0], "mind to i'm bound to say well": [65535, 0], "to i'm bound to say well go": [65535, 0], "i'm bound to say well go 'long": [65535, 0], "bound to say well go 'long and": [65535, 0], "to say well go 'long and play": [65535, 0], "say well go 'long and play but": [65535, 0], "well go 'long and play but mind": [65535, 0], "go 'long and play but mind you": [65535, 0], "'long and play but mind you get": [65535, 0], "and play but mind you get back": [65535, 0], "play but mind you get back some": [65535, 0], "but mind you get back some time": [65535, 0], "mind you get back some time in": [65535, 0], "you get back some time in a": [65535, 0], "get back some time in a week": [65535, 0], "back some time in a week or": [65535, 0], "some time in a week or i'll": [65535, 0], "time in a week or i'll tan": [65535, 0], "in a week or i'll tan you": [65535, 0], "a week or i'll tan you she": [65535, 0], "week or i'll tan you she was": [65535, 0], "or i'll tan you she was so": [65535, 0], "i'll tan you she was so overcome": [65535, 0], "tan you she was so overcome by": [65535, 0], "you she was so overcome by the": [65535, 0], "she was so overcome by the splendor": [65535, 0], "was so overcome by the splendor of": [65535, 0], "so overcome by the splendor of his": [65535, 0], "overcome by the splendor of his achievement": [65535, 0], "by the splendor of his achievement that": [65535, 0], "the splendor of his achievement that she": [65535, 0], "splendor of his achievement that she took": [65535, 0], "of his achievement that she took him": [65535, 0], "his achievement that she took him into": [65535, 0], "achievement that she took him into the": [65535, 0], "that she took him into the closet": [65535, 0], "she took him into the closet and": [65535, 0], "took him into the closet and selected": [65535, 0], "him into the closet and selected a": [65535, 0], "into the closet and selected a choice": [65535, 0], "the closet and selected a choice apple": [65535, 0], "closet and selected a choice apple and": [65535, 0], "and selected a choice apple and delivered": [65535, 0], "selected a choice apple and delivered it": [65535, 0], "a choice apple and delivered it to": [65535, 0], "choice apple and delivered it to him": [65535, 0], "apple and delivered it to him along": [65535, 0], "and delivered it to him along with": [65535, 0], "delivered it to him along with an": [65535, 0], "it to him along with an improving": [65535, 0], "to him along with an improving lecture": [65535, 0], "him along with an improving lecture upon": [65535, 0], "along with an improving lecture upon the": [65535, 0], "with an improving lecture upon the added": [65535, 0], "an improving lecture upon the added value": [65535, 0], "improving lecture upon the added value and": [65535, 0], "lecture upon the added value and flavor": [65535, 0], "upon the added value and flavor a": [65535, 0], "the added value and flavor a treat": [65535, 0], "added value and flavor a treat took": [65535, 0], "value and flavor a treat took to": [65535, 0], "and flavor a treat took to itself": [65535, 0], "flavor a treat took to itself when": [65535, 0], "a treat took to itself when it": [65535, 0], "treat took to itself when it came": [65535, 0], "took to itself when it came without": [65535, 0], "to itself when it came without sin": [65535, 0], "itself when it came without sin through": [65535, 0], "when it came without sin through virtuous": [65535, 0], "it came without sin through virtuous effort": [65535, 0], "came without sin through virtuous effort and": [65535, 0], "without sin through virtuous effort and while": [65535, 0], "sin through virtuous effort and while she": [65535, 0], "through virtuous effort and while she closed": [65535, 0], "virtuous effort and while she closed with": [65535, 0], "effort and while she closed with a": [65535, 0], "and while she closed with a happy": [65535, 0], "while she closed with a happy scriptural": [65535, 0], "she closed with a happy scriptural flourish": [65535, 0], "closed with a happy scriptural flourish he": [65535, 0], "with a happy scriptural flourish he hooked": [65535, 0], "a happy scriptural flourish he hooked a": [65535, 0], "happy scriptural flourish he hooked a doughnut": [65535, 0], "scriptural flourish he hooked a doughnut then": [65535, 0], "flourish he hooked a doughnut then he": [65535, 0], "he hooked a doughnut then he skipped": [65535, 0], "hooked a doughnut then he skipped out": [65535, 0], "a doughnut then he skipped out and": [65535, 0], "doughnut then he skipped out and saw": [65535, 0], "then he skipped out and saw sid": [65535, 0], "he skipped out and saw sid just": [65535, 0], "skipped out and saw sid just starting": [65535, 0], "out and saw sid just starting up": [65535, 0], "and saw sid just starting up the": [65535, 0], "saw sid just starting up the outside": [65535, 0], "sid just starting up the outside stairway": [65535, 0], "just starting up the outside stairway that": [65535, 0], "starting up the outside stairway that led": [65535, 0], "up the outside stairway that led to": [65535, 0], "the outside stairway that led to the": [65535, 0], "outside stairway that led to the back": [65535, 0], "stairway that led to the back rooms": [65535, 0], "that led to the back rooms on": [65535, 0], "led to the back rooms on the": [65535, 0], "to the back rooms on the second": [65535, 0], "the back rooms on the second floor": [65535, 0], "back rooms on the second floor clods": [65535, 0], "rooms on the second floor clods were": [65535, 0], "on the second floor clods were handy": [65535, 0], "the second floor clods were handy and": [65535, 0], "second floor clods were handy and the": [65535, 0], "floor clods were handy and the air": [65535, 0], "clods were handy and the air was": [65535, 0], "were handy and the air was full": [65535, 0], "handy and the air was full of": [65535, 0], "and the air was full of them": [65535, 0], "the air was full of them in": [65535, 0], "air was full of them in a": [65535, 0], "was full of them in a twinkling": [65535, 0], "full of them in a twinkling they": [65535, 0], "of them in a twinkling they raged": [65535, 0], "them in a twinkling they raged around": [65535, 0], "in a twinkling they raged around sid": [65535, 0], "a twinkling they raged around sid like": [65535, 0], "twinkling they raged around sid like a": [65535, 0], "they raged around sid like a hail": [65535, 0], "raged around sid like a hail storm": [65535, 0], "around sid like a hail storm and": [65535, 0], "sid like a hail storm and before": [65535, 0], "like a hail storm and before aunt": [65535, 0], "a hail storm and before aunt polly": [65535, 0], "hail storm and before aunt polly could": [65535, 0], "storm and before aunt polly could collect": [65535, 0], "and before aunt polly could collect her": [65535, 0], "before aunt polly could collect her surprised": [65535, 0], "aunt polly could collect her surprised faculties": [65535, 0], "polly could collect her surprised faculties and": [65535, 0], "could collect her surprised faculties and sally": [65535, 0], "collect her surprised faculties and sally to": [65535, 0], "her surprised faculties and sally to the": [65535, 0], "surprised faculties and sally to the rescue": [65535, 0], "faculties and sally to the rescue six": [65535, 0], "and sally to the rescue six or": [65535, 0], "sally to the rescue six or seven": [65535, 0], "to the rescue six or seven clods": [65535, 0], "the rescue six or seven clods had": [65535, 0], "rescue six or seven clods had taken": [65535, 0], "six or seven clods had taken personal": [65535, 0], "or seven clods had taken personal effect": [65535, 0], "seven clods had taken personal effect and": [65535, 0], "clods had taken personal effect and tom": [65535, 0], "had taken personal effect and tom was": [65535, 0], "taken personal effect and tom was over": [65535, 0], "personal effect and tom was over the": [65535, 0], "effect and tom was over the fence": [65535, 0], "and tom was over the fence and": [65535, 0], "tom was over the fence and gone": [65535, 0], "was over the fence and gone there": [65535, 0], "over the fence and gone there was": [65535, 0], "the fence and gone there was a": [65535, 0], "fence and gone there was a gate": [65535, 0], "and gone there was a gate but": [65535, 0], "gone there was a gate but as": [65535, 0], "there was a gate but as a": [65535, 0], "was a gate but as a general": [65535, 0], "a gate but as a general thing": [65535, 0], "gate but as a general thing he": [65535, 0], "but as a general thing he was": [65535, 0], "as a general thing he was too": [65535, 0], "a general thing he was too crowded": [65535, 0], "general thing he was too crowded for": [65535, 0], "thing he was too crowded for time": [65535, 0], "he was too crowded for time to": [65535, 0], "was too crowded for time to make": [65535, 0], "too crowded for time to make use": [65535, 0], "crowded for time to make use of": [65535, 0], "for time to make use of it": [65535, 0], "time to make use of it his": [65535, 0], "to make use of it his soul": [65535, 0], "make use of it his soul was": [65535, 0], "use of it his soul was at": [65535, 0], "of it his soul was at peace": [65535, 0], "it his soul was at peace now": [65535, 0], "his soul was at peace now that": [65535, 0], "soul was at peace now that he": [65535, 0], "was at peace now that he had": [65535, 0], "at peace now that he had settled": [65535, 0], "peace now that he had settled with": [65535, 0], "now that he had settled with sid": [65535, 0], "that he had settled with sid for": [65535, 0], "he had settled with sid for calling": [65535, 0], "had settled with sid for calling attention": [65535, 0], "settled with sid for calling attention to": [65535, 0], "with sid for calling attention to his": [65535, 0], "sid for calling attention to his black": [65535, 0], "for calling attention to his black thread": [65535, 0], "calling attention to his black thread and": [65535, 0], "attention to his black thread and getting": [65535, 0], "to his black thread and getting him": [65535, 0], "his black thread and getting him into": [65535, 0], "black thread and getting him into trouble": [65535, 0], "thread and getting him into trouble tom": [65535, 0], "and getting him into trouble tom skirted": [65535, 0], "getting him into trouble tom skirted the": [65535, 0], "him into trouble tom skirted the block": [65535, 0], "into trouble tom skirted the block and": [65535, 0], "trouble tom skirted the block and came": [65535, 0], "tom skirted the block and came round": [65535, 0], "skirted the block and came round into": [65535, 0], "the block and came round into a": [65535, 0], "block and came round into a muddy": [65535, 0], "and came round into a muddy alley": [65535, 0], "came round into a muddy alley that": [65535, 0], "round into a muddy alley that led": [65535, 0], "into a muddy alley that led by": [65535, 0], "a muddy alley that led by the": [65535, 0], "muddy alley that led by the back": [65535, 0], "alley that led by the back of": [65535, 0], "that led by the back of his": [65535, 0], "led by the back of his aunt's": [65535, 0], "by the back of his aunt's cowstable": [65535, 0], "the back of his aunt's cowstable he": [65535, 0], "back of his aunt's cowstable he presently": [65535, 0], "of his aunt's cowstable he presently got": [65535, 0], "his aunt's cowstable he presently got safely": [65535, 0], "aunt's cowstable he presently got safely beyond": [65535, 0], "cowstable he presently got safely beyond the": [65535, 0], "he presently got safely beyond the reach": [65535, 0], "presently got safely beyond the reach of": [65535, 0], "got safely beyond the reach of capture": [65535, 0], "safely beyond the reach of capture and": [65535, 0], "beyond the reach of capture and punishment": [65535, 0], "the reach of capture and punishment and": [65535, 0], "reach of capture and punishment and hastened": [65535, 0], "of capture and punishment and hastened toward": [65535, 0], "capture and punishment and hastened toward the": [65535, 0], "and punishment and hastened toward the public": [65535, 0], "punishment and hastened toward the public square": [65535, 0], "and hastened toward the public square of": [65535, 0], "hastened toward the public square of the": [65535, 0], "toward the public square of the village": [65535, 0], "the public square of the village where": [65535, 0], "public square of the village where two": [65535, 0], "square of the village where two military": [65535, 0], "of the village where two military companies": [65535, 0], "the village where two military companies of": [65535, 0], "village where two military companies of boys": [65535, 0], "where two military companies of boys had": [65535, 0], "two military companies of boys had met": [65535, 0], "military companies of boys had met for": [65535, 0], "companies of boys had met for conflict": [65535, 0], "of boys had met for conflict according": [65535, 0], "boys had met for conflict according to": [65535, 0], "had met for conflict according to previous": [65535, 0], "met for conflict according to previous appointment": [65535, 0], "for conflict according to previous appointment tom": [65535, 0], "conflict according to previous appointment tom was": [65535, 0], "according to previous appointment tom was general": [65535, 0], "to previous appointment tom was general of": [65535, 0], "previous appointment tom was general of one": [65535, 0], "appointment tom was general of one of": [65535, 0], "tom was general of one of these": [65535, 0], "was general of one of these armies": [65535, 0], "general of one of these armies joe": [65535, 0], "of one of these armies joe harper": [65535, 0], "one of these armies joe harper a": [65535, 0], "of these armies joe harper a bosom": [65535, 0], "these armies joe harper a bosom friend": [65535, 0], "armies joe harper a bosom friend general": [65535, 0], "joe harper a bosom friend general of": [65535, 0], "harper a bosom friend general of the": [65535, 0], "a bosom friend general of the other": [65535, 0], "bosom friend general of the other these": [65535, 0], "friend general of the other these two": [65535, 0], "general of the other these two great": [65535, 0], "of the other these two great commanders": [65535, 0], "the other these two great commanders did": [65535, 0], "other these two great commanders did not": [65535, 0], "these two great commanders did not condescend": [65535, 0], "two great commanders did not condescend to": [65535, 0], "great commanders did not condescend to fight": [65535, 0], "commanders did not condescend to fight in": [65535, 0], "did not condescend to fight in person": [65535, 0], "not condescend to fight in person that": [65535, 0], "condescend to fight in person that being": [65535, 0], "to fight in person that being better": [65535, 0], "fight in person that being better suited": [65535, 0], "in person that being better suited to": [65535, 0], "person that being better suited to the": [65535, 0], "that being better suited to the still": [65535, 0], "being better suited to the still smaller": [65535, 0], "better suited to the still smaller fry": [65535, 0], "suited to the still smaller fry but": [65535, 0], "to the still smaller fry but sat": [65535, 0], "the still smaller fry but sat together": [65535, 0], "still smaller fry but sat together on": [65535, 0], "smaller fry but sat together on an": [65535, 0], "fry but sat together on an eminence": [65535, 0], "but sat together on an eminence and": [65535, 0], "sat together on an eminence and conducted": [65535, 0], "together on an eminence and conducted the": [65535, 0], "on an eminence and conducted the field": [65535, 0], "an eminence and conducted the field operations": [65535, 0], "eminence and conducted the field operations by": [65535, 0], "and conducted the field operations by orders": [65535, 0], "conducted the field operations by orders delivered": [65535, 0], "the field operations by orders delivered through": [65535, 0], "field operations by orders delivered through aides": [65535, 0], "operations by orders delivered through aides de": [65535, 0], "by orders delivered through aides de camp": [65535, 0], "orders delivered through aides de camp tom's": [65535, 0], "delivered through aides de camp tom's army": [65535, 0], "through aides de camp tom's army won": [65535, 0], "aides de camp tom's army won a": [65535, 0], "de camp tom's army won a great": [65535, 0], "camp tom's army won a great victory": [65535, 0], "tom's army won a great victory after": [65535, 0], "army won a great victory after a": [65535, 0], "won a great victory after a long": [65535, 0], "a great victory after a long and": [65535, 0], "great victory after a long and hard": [65535, 0], "victory after a long and hard fought": [65535, 0], "after a long and hard fought battle": [65535, 0], "a long and hard fought battle then": [65535, 0], "long and hard fought battle then the": [65535, 0], "and hard fought battle then the dead": [65535, 0], "hard fought battle then the dead were": [65535, 0], "fought battle then the dead were counted": [65535, 0], "battle then the dead were counted prisoners": [65535, 0], "then the dead were counted prisoners exchanged": [65535, 0], "the dead were counted prisoners exchanged the": [65535, 0], "dead were counted prisoners exchanged the terms": [65535, 0], "were counted prisoners exchanged the terms of": [65535, 0], "counted prisoners exchanged the terms of the": [65535, 0], "prisoners exchanged the terms of the next": [65535, 0], "exchanged the terms of the next disagreement": [65535, 0], "the terms of the next disagreement agreed": [65535, 0], "terms of the next disagreement agreed upon": [65535, 0], "of the next disagreement agreed upon and": [65535, 0], "the next disagreement agreed upon and the": [65535, 0], "next disagreement agreed upon and the day": [65535, 0], "disagreement agreed upon and the day for": [65535, 0], "agreed upon and the day for the": [65535, 0], "upon and the day for the necessary": [65535, 0], "and the day for the necessary battle": [65535, 0], "the day for the necessary battle appointed": [65535, 0], "day for the necessary battle appointed after": [65535, 0], "for the necessary battle appointed after which": [65535, 0], "the necessary battle appointed after which the": [65535, 0], "necessary battle appointed after which the armies": [65535, 0], "battle appointed after which the armies fell": [65535, 0], "appointed after which the armies fell into": [65535, 0], "after which the armies fell into line": [65535, 0], "which the armies fell into line and": [65535, 0], "the armies fell into line and marched": [65535, 0], "armies fell into line and marched away": [65535, 0], "fell into line and marched away and": [65535, 0], "into line and marched away and tom": [65535, 0], "line and marched away and tom turned": [65535, 0], "and marched away and tom turned homeward": [65535, 0], "marched away and tom turned homeward alone": [65535, 0], "away and tom turned homeward alone as": [65535, 0], "and tom turned homeward alone as he": [65535, 0], "tom turned homeward alone as he was": [65535, 0], "turned homeward alone as he was passing": [65535, 0], "homeward alone as he was passing by": [65535, 0], "alone as he was passing by the": [65535, 0], "as he was passing by the house": [65535, 0], "he was passing by the house where": [65535, 0], "was passing by the house where jeff": [65535, 0], "passing by the house where jeff thatcher": [65535, 0], "by the house where jeff thatcher lived": [65535, 0], "the house where jeff thatcher lived he": [65535, 0], "house where jeff thatcher lived he saw": [65535, 0], "where jeff thatcher lived he saw a": [65535, 0], "jeff thatcher lived he saw a new": [65535, 0], "thatcher lived he saw a new girl": [65535, 0], "lived he saw a new girl in": [65535, 0], "he saw a new girl in the": [65535, 0], "saw a new girl in the garden": [65535, 0], "a new girl in the garden a": [65535, 0], "new girl in the garden a lovely": [65535, 0], "girl in the garden a lovely little": [65535, 0], "in the garden a lovely little blue": [65535, 0], "the garden a lovely little blue eyed": [65535, 0], "garden a lovely little blue eyed creature": [65535, 0], "a lovely little blue eyed creature with": [65535, 0], "lovely little blue eyed creature with yellow": [65535, 0], "little blue eyed creature with yellow hair": [65535, 0], "blue eyed creature with yellow hair plaited": [65535, 0], "eyed creature with yellow hair plaited into": [65535, 0], "creature with yellow hair plaited into two": [65535, 0], "with yellow hair plaited into two long": [65535, 0], "yellow hair plaited into two long tails": [65535, 0], "hair plaited into two long tails white": [65535, 0], "plaited into two long tails white summer": [65535, 0], "into two long tails white summer frock": [65535, 0], "two long tails white summer frock and": [65535, 0], "long tails white summer frock and embroidered": [65535, 0], "tails white summer frock and embroidered pantalettes": [65535, 0], "white summer frock and embroidered pantalettes the": [65535, 0], "summer frock and embroidered pantalettes the fresh": [65535, 0], "frock and embroidered pantalettes the fresh crowned": [65535, 0], "and embroidered pantalettes the fresh crowned hero": [65535, 0], "embroidered pantalettes the fresh crowned hero fell": [65535, 0], "pantalettes the fresh crowned hero fell without": [65535, 0], "the fresh crowned hero fell without firing": [65535, 0], "fresh crowned hero fell without firing a": [65535, 0], "crowned hero fell without firing a shot": [65535, 0], "hero fell without firing a shot a": [65535, 0], "fell without firing a shot a certain": [65535, 0], "without firing a shot a certain amy": [65535, 0], "firing a shot a certain amy lawrence": [65535, 0], "a shot a certain amy lawrence vanished": [65535, 0], "shot a certain amy lawrence vanished out": [65535, 0], "a certain amy lawrence vanished out of": [65535, 0], "certain amy lawrence vanished out of his": [65535, 0], "amy lawrence vanished out of his heart": [65535, 0], "lawrence vanished out of his heart and": [65535, 0], "vanished out of his heart and left": [65535, 0], "out of his heart and left not": [65535, 0], "of his heart and left not even": [65535, 0], "his heart and left not even a": [65535, 0], "heart and left not even a memory": [65535, 0], "and left not even a memory of": [65535, 0], "left not even a memory of herself": [65535, 0], "not even a memory of herself behind": [65535, 0], "even a memory of herself behind he": [65535, 0], "a memory of herself behind he had": [65535, 0], "memory of herself behind he had thought": [65535, 0], "of herself behind he had thought he": [65535, 0], "herself behind he had thought he loved": [65535, 0], "behind he had thought he loved her": [65535, 0], "he had thought he loved her to": [65535, 0], "had thought he loved her to distraction": [65535, 0], "thought he loved her to distraction he": [65535, 0], "he loved her to distraction he had": [65535, 0], "loved her to distraction he had regarded": [65535, 0], "her to distraction he had regarded his": [65535, 0], "to distraction he had regarded his passion": [65535, 0], "distraction he had regarded his passion as": [65535, 0], "he had regarded his passion as adoration": [65535, 0], "had regarded his passion as adoration and": [65535, 0], "regarded his passion as adoration and behold": [65535, 0], "his passion as adoration and behold it": [65535, 0], "passion as adoration and behold it was": [65535, 0], "as adoration and behold it was only": [65535, 0], "adoration and behold it was only a": [65535, 0], "and behold it was only a poor": [65535, 0], "behold it was only a poor little": [65535, 0], "it was only a poor little evanescent": [65535, 0], "was only a poor little evanescent partiality": [65535, 0], "only a poor little evanescent partiality he": [65535, 0], "a poor little evanescent partiality he had": [65535, 0], "poor little evanescent partiality he had been": [65535, 0], "little evanescent partiality he had been months": [65535, 0], "evanescent partiality he had been months winning": [65535, 0], "partiality he had been months winning her": [65535, 0], "he had been months winning her she": [65535, 0], "had been months winning her she had": [65535, 0], "been months winning her she had confessed": [65535, 0], "months winning her she had confessed hardly": [65535, 0], "winning her she had confessed hardly a": [65535, 0], "her she had confessed hardly a week": [65535, 0], "she had confessed hardly a week ago": [65535, 0], "had confessed hardly a week ago he": [65535, 0], "confessed hardly a week ago he had": [65535, 0], "hardly a week ago he had been": [65535, 0], "a week ago he had been the": [65535, 0], "week ago he had been the happiest": [65535, 0], "ago he had been the happiest and": [65535, 0], "he had been the happiest and the": [65535, 0], "had been the happiest and the proudest": [65535, 0], "been the happiest and the proudest boy": [65535, 0], "the happiest and the proudest boy in": [65535, 0], "happiest and the proudest boy in the": [65535, 0], "and the proudest boy in the world": [65535, 0], "the proudest boy in the world only": [65535, 0], "proudest boy in the world only seven": [65535, 0], "boy in the world only seven short": [65535, 0], "in the world only seven short days": [65535, 0], "the world only seven short days and": [65535, 0], "world only seven short days and here": [65535, 0], "only seven short days and here in": [65535, 0], "seven short days and here in one": [65535, 0], "short days and here in one instant": [65535, 0], "days and here in one instant of": [65535, 0], "and here in one instant of time": [65535, 0], "here in one instant of time she": [65535, 0], "in one instant of time she had": [65535, 0], "one instant of time she had gone": [65535, 0], "instant of time she had gone out": [65535, 0], "of time she had gone out of": [65535, 0], "time she had gone out of his": [65535, 0], "she had gone out of his heart": [65535, 0], "had gone out of his heart like": [65535, 0], "gone out of his heart like a": [65535, 0], "out of his heart like a casual": [65535, 0], "of his heart like a casual stranger": [65535, 0], "his heart like a casual stranger whose": [65535, 0], "heart like a casual stranger whose visit": [65535, 0], "like a casual stranger whose visit is": [65535, 0], "a casual stranger whose visit is done": [65535, 0], "casual stranger whose visit is done he": [65535, 0], "stranger whose visit is done he worshipped": [65535, 0], "whose visit is done he worshipped this": [65535, 0], "visit is done he worshipped this new": [65535, 0], "is done he worshipped this new angel": [65535, 0], "done he worshipped this new angel with": [65535, 0], "he worshipped this new angel with furtive": [65535, 0], "worshipped this new angel with furtive eye": [65535, 0], "this new angel with furtive eye till": [65535, 0], "new angel with furtive eye till he": [65535, 0], "angel with furtive eye till he saw": [65535, 0], "with furtive eye till he saw that": [65535, 0], "furtive eye till he saw that she": [65535, 0], "eye till he saw that she had": [65535, 0], "till he saw that she had discovered": [65535, 0], "he saw that she had discovered him": [65535, 0], "saw that she had discovered him then": [65535, 0], "that she had discovered him then he": [65535, 0], "she had discovered him then he pretended": [65535, 0], "had discovered him then he pretended he": [65535, 0], "discovered him then he pretended he did": [65535, 0], "him then he pretended he did not": [65535, 0], "then he pretended he did not know": [65535, 0], "he pretended he did not know she": [65535, 0], "pretended he did not know she was": [65535, 0], "he did not know she was present": [65535, 0], "did not know she was present and": [65535, 0], "not know she was present and began": [65535, 0], "know she was present and began to": [65535, 0], "she was present and began to show": [65535, 0], "was present and began to show off": [65535, 0], "present and began to show off in": [65535, 0], "and began to show off in all": [65535, 0], "began to show off in all sorts": [65535, 0], "to show off in all sorts of": [65535, 0], "show off in all sorts of absurd": [65535, 0], "off in all sorts of absurd boyish": [65535, 0], "in all sorts of absurd boyish ways": [65535, 0], "all sorts of absurd boyish ways in": [65535, 0], "sorts of absurd boyish ways in order": [65535, 0], "of absurd boyish ways in order to": [65535, 0], "absurd boyish ways in order to win": [65535, 0], "boyish ways in order to win her": [65535, 0], "ways in order to win her admiration": [65535, 0], "in order to win her admiration he": [65535, 0], "order to win her admiration he kept": [65535, 0], "to win her admiration he kept up": [65535, 0], "win her admiration he kept up this": [65535, 0], "her admiration he kept up this grotesque": [65535, 0], "admiration he kept up this grotesque foolishness": [65535, 0], "he kept up this grotesque foolishness for": [65535, 0], "kept up this grotesque foolishness for some": [65535, 0], "up this grotesque foolishness for some time": [65535, 0], "this grotesque foolishness for some time but": [65535, 0], "grotesque foolishness for some time but by": [65535, 0], "foolishness for some time but by and": [65535, 0], "for some time but by and by": [65535, 0], "some time but by and by while": [65535, 0], "time but by and by while he": [65535, 0], "but by and by while he was": [65535, 0], "by and by while he was in": [65535, 0], "and by while he was in the": [65535, 0], "by while he was in the midst": [65535, 0], "while he was in the midst of": [65535, 0], "he was in the midst of some": [65535, 0], "was in the midst of some dangerous": [65535, 0], "in the midst of some dangerous gymnastic": [65535, 0], "the midst of some dangerous gymnastic performances": [65535, 0], "midst of some dangerous gymnastic performances he": [65535, 0], "of some dangerous gymnastic performances he glanced": [65535, 0], "some dangerous gymnastic performances he glanced aside": [65535, 0], "dangerous gymnastic performances he glanced aside and": [65535, 0], "gymnastic performances he glanced aside and saw": [65535, 0], "performances he glanced aside and saw that": [65535, 0], "he glanced aside and saw that the": [65535, 0], "glanced aside and saw that the little": [65535, 0], "aside and saw that the little girl": [65535, 0], "and saw that the little girl was": [65535, 0], "saw that the little girl was wending": [65535, 0], "that the little girl was wending her": [65535, 0], "the little girl was wending her way": [65535, 0], "little girl was wending her way toward": [65535, 0], "girl was wending her way toward the": [65535, 0], "was wending her way toward the house": [65535, 0], "wending her way toward the house tom": [65535, 0], "her way toward the house tom came": [65535, 0], "way toward the house tom came up": [65535, 0], "toward the house tom came up to": [65535, 0], "the house tom came up to the": [65535, 0], "house tom came up to the fence": [65535, 0], "tom came up to the fence and": [65535, 0], "came up to the fence and leaned": [65535, 0], "up to the fence and leaned on": [65535, 0], "to the fence and leaned on it": [65535, 0], "the fence and leaned on it grieving": [65535, 0], "fence and leaned on it grieving and": [65535, 0], "and leaned on it grieving and hoping": [65535, 0], "leaned on it grieving and hoping she": [65535, 0], "on it grieving and hoping she would": [65535, 0], "it grieving and hoping she would tarry": [65535, 0], "grieving and hoping she would tarry yet": [65535, 0], "and hoping she would tarry yet awhile": [65535, 0], "hoping she would tarry yet awhile longer": [65535, 0], "she would tarry yet awhile longer she": [65535, 0], "would tarry yet awhile longer she halted": [65535, 0], "tarry yet awhile longer she halted a": [65535, 0], "yet awhile longer she halted a moment": [65535, 0], "awhile longer she halted a moment on": [65535, 0], "longer she halted a moment on the": [65535, 0], "she halted a moment on the steps": [65535, 0], "halted a moment on the steps and": [65535, 0], "a moment on the steps and then": [65535, 0], "moment on the steps and then moved": [65535, 0], "on the steps and then moved toward": [65535, 0], "the steps and then moved toward the": [65535, 0], "steps and then moved toward the door": [65535, 0], "and then moved toward the door tom": [65535, 0], "then moved toward the door tom heaved": [65535, 0], "moved toward the door tom heaved a": [65535, 0], "toward the door tom heaved a great": [65535, 0], "the door tom heaved a great sigh": [65535, 0], "door tom heaved a great sigh as": [65535, 0], "tom heaved a great sigh as she": [65535, 0], "heaved a great sigh as she put": [65535, 0], "a great sigh as she put her": [65535, 0], "great sigh as she put her foot": [65535, 0], "sigh as she put her foot on": [65535, 0], "as she put her foot on the": [65535, 0], "she put her foot on the threshold": [65535, 0], "put her foot on the threshold but": [65535, 0], "her foot on the threshold but his": [65535, 0], "foot on the threshold but his face": [65535, 0], "on the threshold but his face lit": [65535, 0], "the threshold but his face lit up": [65535, 0], "threshold but his face lit up right": [65535, 0], "but his face lit up right away": [65535, 0], "his face lit up right away for": [65535, 0], "face lit up right away for she": [65535, 0], "lit up right away for she tossed": [65535, 0], "up right away for she tossed a": [65535, 0], "right away for she tossed a pansy": [65535, 0], "away for she tossed a pansy over": [65535, 0], "for she tossed a pansy over the": [65535, 0], "she tossed a pansy over the fence": [65535, 0], "tossed a pansy over the fence a": [65535, 0], "a pansy over the fence a moment": [65535, 0], "pansy over the fence a moment before": [65535, 0], "over the fence a moment before she": [65535, 0], "the fence a moment before she disappeared": [65535, 0], "fence a moment before she disappeared the": [65535, 0], "a moment before she disappeared the boy": [65535, 0], "moment before she disappeared the boy ran": [65535, 0], "before she disappeared the boy ran around": [65535, 0], "she disappeared the boy ran around and": [65535, 0], "disappeared the boy ran around and stopped": [65535, 0], "the boy ran around and stopped within": [65535, 0], "boy ran around and stopped within a": [65535, 0], "ran around and stopped within a foot": [65535, 0], "around and stopped within a foot or": [65535, 0], "and stopped within a foot or two": [65535, 0], "stopped within a foot or two of": [65535, 0], "within a foot or two of the": [65535, 0], "a foot or two of the flower": [65535, 0], "foot or two of the flower and": [65535, 0], "or two of the flower and then": [65535, 0], "two of the flower and then shaded": [65535, 0], "of the flower and then shaded his": [65535, 0], "the flower and then shaded his eyes": [65535, 0], "flower and then shaded his eyes with": [65535, 0], "and then shaded his eyes with his": [65535, 0], "then shaded his eyes with his hand": [65535, 0], "shaded his eyes with his hand and": [65535, 0], "his eyes with his hand and began": [65535, 0], "eyes with his hand and began to": [65535, 0], "with his hand and began to look": [65535, 0], "his hand and began to look down": [65535, 0], "hand and began to look down street": [65535, 0], "and began to look down street as": [65535, 0], "began to look down street as if": [65535, 0], "to look down street as if he": [65535, 0], "look down street as if he had": [65535, 0], "down street as if he had discovered": [65535, 0], "street as if he had discovered something": [65535, 0], "as if he had discovered something of": [65535, 0], "if he had discovered something of interest": [65535, 0], "he had discovered something of interest going": [65535, 0], "had discovered something of interest going on": [65535, 0], "discovered something of interest going on in": [65535, 0], "something of interest going on in that": [65535, 0], "of interest going on in that direction": [65535, 0], "interest going on in that direction presently": [65535, 0], "going on in that direction presently he": [65535, 0], "on in that direction presently he picked": [65535, 0], "in that direction presently he picked up": [65535, 0], "that direction presently he picked up a": [65535, 0], "direction presently he picked up a straw": [65535, 0], "presently he picked up a straw and": [65535, 0], "he picked up a straw and began": [65535, 0], "picked up a straw and began trying": [65535, 0], "up a straw and began trying to": [65535, 0], "a straw and began trying to balance": [65535, 0], "straw and began trying to balance it": [65535, 0], "and began trying to balance it on": [65535, 0], "began trying to balance it on his": [65535, 0], "trying to balance it on his nose": [65535, 0], "to balance it on his nose with": [65535, 0], "balance it on his nose with his": [65535, 0], "it on his nose with his head": [65535, 0], "on his nose with his head tilted": [65535, 0], "his nose with his head tilted far": [65535, 0], "nose with his head tilted far back": [65535, 0], "with his head tilted far back and": [65535, 0], "his head tilted far back and as": [65535, 0], "head tilted far back and as he": [65535, 0], "tilted far back and as he moved": [65535, 0], "far back and as he moved from": [65535, 0], "back and as he moved from side": [65535, 0], "and as he moved from side to": [65535, 0], "as he moved from side to side": [65535, 0], "he moved from side to side in": [65535, 0], "moved from side to side in his": [65535, 0], "from side to side in his efforts": [65535, 0], "side to side in his efforts he": [65535, 0], "to side in his efforts he edged": [65535, 0], "side in his efforts he edged nearer": [65535, 0], "in his efforts he edged nearer and": [65535, 0], "his efforts he edged nearer and nearer": [65535, 0], "efforts he edged nearer and nearer toward": [65535, 0], "he edged nearer and nearer toward the": [65535, 0], "edged nearer and nearer toward the pansy": [65535, 0], "nearer and nearer toward the pansy finally": [65535, 0], "and nearer toward the pansy finally his": [65535, 0], "nearer toward the pansy finally his bare": [65535, 0], "toward the pansy finally his bare foot": [65535, 0], "the pansy finally his bare foot rested": [65535, 0], "pansy finally his bare foot rested upon": [65535, 0], "finally his bare foot rested upon it": [65535, 0], "his bare foot rested upon it his": [65535, 0], "bare foot rested upon it his pliant": [65535, 0], "foot rested upon it his pliant toes": [65535, 0], "rested upon it his pliant toes closed": [65535, 0], "upon it his pliant toes closed upon": [65535, 0], "it his pliant toes closed upon it": [65535, 0], "his pliant toes closed upon it and": [65535, 0], "pliant toes closed upon it and he": [65535, 0], "toes closed upon it and he hopped": [65535, 0], "closed upon it and he hopped away": [65535, 0], "upon it and he hopped away with": [65535, 0], "it and he hopped away with the": [65535, 0], "and he hopped away with the treasure": [65535, 0], "he hopped away with the treasure and": [65535, 0], "hopped away with the treasure and disappeared": [65535, 0], "away with the treasure and disappeared round": [65535, 0], "with the treasure and disappeared round the": [65535, 0], "the treasure and disappeared round the corner": [65535, 0], "treasure and disappeared round the corner but": [65535, 0], "and disappeared round the corner but only": [65535, 0], "disappeared round the corner but only for": [65535, 0], "round the corner but only for a": [65535, 0], "the corner but only for a minute": [65535, 0], "corner but only for a minute only": [65535, 0], "but only for a minute only while": [65535, 0], "only for a minute only while he": [65535, 0], "for a minute only while he could": [65535, 0], "a minute only while he could button": [65535, 0], "minute only while he could button the": [65535, 0], "only while he could button the flower": [65535, 0], "while he could button the flower inside": [65535, 0], "he could button the flower inside his": [65535, 0], "could button the flower inside his jacket": [65535, 0], "button the flower inside his jacket next": [65535, 0], "the flower inside his jacket next his": [65535, 0], "flower inside his jacket next his heart": [65535, 0], "inside his jacket next his heart or": [65535, 0], "his jacket next his heart or next": [65535, 0], "jacket next his heart or next his": [65535, 0], "next his heart or next his stomach": [65535, 0], "his heart or next his stomach possibly": [65535, 0], "heart or next his stomach possibly for": [65535, 0], "or next his stomach possibly for he": [65535, 0], "next his stomach possibly for he was": [65535, 0], "his stomach possibly for he was not": [65535, 0], "stomach possibly for he was not much": [65535, 0], "possibly for he was not much posted": [65535, 0], "for he was not much posted in": [65535, 0], "he was not much posted in anatomy": [65535, 0], "was not much posted in anatomy and": [65535, 0], "not much posted in anatomy and not": [65535, 0], "much posted in anatomy and not hypercritical": [65535, 0], "posted in anatomy and not hypercritical anyway": [65535, 0], "in anatomy and not hypercritical anyway he": [65535, 0], "anatomy and not hypercritical anyway he returned": [65535, 0], "and not hypercritical anyway he returned now": [65535, 0], "not hypercritical anyway he returned now and": [65535, 0], "hypercritical anyway he returned now and hung": [65535, 0], "anyway he returned now and hung about": [65535, 0], "he returned now and hung about the": [65535, 0], "returned now and hung about the fence": [65535, 0], "now and hung about the fence till": [65535, 0], "and hung about the fence till nightfall": [65535, 0], "hung about the fence till nightfall showing": [65535, 0], "about the fence till nightfall showing off": [65535, 0], "the fence till nightfall showing off as": [65535, 0], "fence till nightfall showing off as before": [65535, 0], "till nightfall showing off as before but": [65535, 0], "nightfall showing off as before but the": [65535, 0], "showing off as before but the girl": [65535, 0], "off as before but the girl never": [65535, 0], "as before but the girl never exhibited": [65535, 0], "before but the girl never exhibited herself": [65535, 0], "but the girl never exhibited herself again": [65535, 0], "the girl never exhibited herself again though": [65535, 0], "girl never exhibited herself again though tom": [65535, 0], "never exhibited herself again though tom comforted": [65535, 0], "exhibited herself again though tom comforted himself": [65535, 0], "herself again though tom comforted himself a": [65535, 0], "again though tom comforted himself a little": [65535, 0], "though tom comforted himself a little with": [65535, 0], "tom comforted himself a little with the": [65535, 0], "comforted himself a little with the hope": [65535, 0], "himself a little with the hope that": [65535, 0], "a little with the hope that she": [65535, 0], "little with the hope that she had": [65535, 0], "with the hope that she had been": [65535, 0], "the hope that she had been near": [65535, 0], "hope that she had been near some": [65535, 0], "that she had been near some window": [65535, 0], "she had been near some window meantime": [65535, 0], "had been near some window meantime and": [65535, 0], "been near some window meantime and been": [65535, 0], "near some window meantime and been aware": [65535, 0], "some window meantime and been aware of": [65535, 0], "window meantime and been aware of his": [65535, 0], "meantime and been aware of his attentions": [65535, 0], "and been aware of his attentions finally": [65535, 0], "been aware of his attentions finally he": [65535, 0], "aware of his attentions finally he strode": [65535, 0], "of his attentions finally he strode home": [65535, 0], "his attentions finally he strode home reluctantly": [65535, 0], "attentions finally he strode home reluctantly with": [65535, 0], "finally he strode home reluctantly with his": [65535, 0], "he strode home reluctantly with his poor": [65535, 0], "strode home reluctantly with his poor head": [65535, 0], "home reluctantly with his poor head full": [65535, 0], "reluctantly with his poor head full of": [65535, 0], "with his poor head full of visions": [65535, 0], "his poor head full of visions all": [65535, 0], "poor head full of visions all through": [65535, 0], "head full of visions all through supper": [65535, 0], "full of visions all through supper his": [65535, 0], "of visions all through supper his spirits": [65535, 0], "visions all through supper his spirits were": [65535, 0], "all through supper his spirits were so": [65535, 0], "through supper his spirits were so high": [65535, 0], "supper his spirits were so high that": [65535, 0], "his spirits were so high that his": [65535, 0], "spirits were so high that his aunt": [65535, 0], "were so high that his aunt wondered": [65535, 0], "so high that his aunt wondered what": [65535, 0], "high that his aunt wondered what had": [65535, 0], "that his aunt wondered what had got": [65535, 0], "his aunt wondered what had got into": [65535, 0], "aunt wondered what had got into the": [65535, 0], "wondered what had got into the child": [65535, 0], "what had got into the child he": [65535, 0], "had got into the child he took": [65535, 0], "got into the child he took a": [65535, 0], "into the child he took a good": [65535, 0], "the child he took a good scolding": [65535, 0], "child he took a good scolding about": [65535, 0], "he took a good scolding about clodding": [65535, 0], "took a good scolding about clodding sid": [65535, 0], "a good scolding about clodding sid and": [65535, 0], "good scolding about clodding sid and did": [65535, 0], "scolding about clodding sid and did not": [65535, 0], "about clodding sid and did not seem": [65535, 0], "clodding sid and did not seem to": [65535, 0], "sid and did not seem to mind": [65535, 0], "and did not seem to mind it": [65535, 0], "did not seem to mind it in": [65535, 0], "not seem to mind it in the": [65535, 0], "seem to mind it in the least": [65535, 0], "to mind it in the least he": [65535, 0], "mind it in the least he tried": [65535, 0], "it in the least he tried to": [65535, 0], "in the least he tried to steal": [65535, 0], "the least he tried to steal sugar": [65535, 0], "least he tried to steal sugar under": [65535, 0], "he tried to steal sugar under his": [65535, 0], "tried to steal sugar under his aunt's": [65535, 0], "to steal sugar under his aunt's very": [65535, 0], "steal sugar under his aunt's very nose": [65535, 0], "sugar under his aunt's very nose and": [65535, 0], "under his aunt's very nose and got": [65535, 0], "his aunt's very nose and got his": [65535, 0], "aunt's very nose and got his knuckles": [65535, 0], "very nose and got his knuckles rapped": [65535, 0], "nose and got his knuckles rapped for": [65535, 0], "and got his knuckles rapped for it": [65535, 0], "got his knuckles rapped for it he": [65535, 0], "his knuckles rapped for it he said": [65535, 0], "knuckles rapped for it he said aunt": [65535, 0], "rapped for it he said aunt you": [65535, 0], "for it he said aunt you don't": [65535, 0], "it he said aunt you don't whack": [65535, 0], "he said aunt you don't whack sid": [65535, 0], "said aunt you don't whack sid when": [65535, 0], "aunt you don't whack sid when he": [65535, 0], "you don't whack sid when he takes": [65535, 0], "don't whack sid when he takes it": [65535, 0], "whack sid when he takes it well": [65535, 0], "sid when he takes it well sid": [65535, 0], "when he takes it well sid don't": [65535, 0], "he takes it well sid don't torment": [65535, 0], "takes it well sid don't torment a": [65535, 0], "it well sid don't torment a body": [65535, 0], "well sid don't torment a body the": [65535, 0], "sid don't torment a body the way": [65535, 0], "don't torment a body the way you": [65535, 0], "torment a body the way you do": [65535, 0], "a body the way you do you'd": [65535, 0], "body the way you do you'd be": [65535, 0], "the way you do you'd be always": [65535, 0], "way you do you'd be always into": [65535, 0], "you do you'd be always into that": [65535, 0], "do you'd be always into that sugar": [65535, 0], "you'd be always into that sugar if": [65535, 0], "be always into that sugar if i": [65535, 0], "always into that sugar if i warn't": [65535, 0], "into that sugar if i warn't watching": [65535, 0], "that sugar if i warn't watching you": [65535, 0], "sugar if i warn't watching you presently": [65535, 0], "if i warn't watching you presently she": [65535, 0], "i warn't watching you presently she stepped": [65535, 0], "warn't watching you presently she stepped into": [65535, 0], "watching you presently she stepped into the": [65535, 0], "you presently she stepped into the kitchen": [65535, 0], "presently she stepped into the kitchen and": [65535, 0], "she stepped into the kitchen and sid": [65535, 0], "stepped into the kitchen and sid happy": [65535, 0], "into the kitchen and sid happy in": [65535, 0], "the kitchen and sid happy in his": [65535, 0], "kitchen and sid happy in his immunity": [65535, 0], "and sid happy in his immunity reached": [65535, 0], "sid happy in his immunity reached for": [65535, 0], "happy in his immunity reached for the": [65535, 0], "in his immunity reached for the sugar": [65535, 0], "his immunity reached for the sugar bowl": [65535, 0], "immunity reached for the sugar bowl a": [65535, 0], "reached for the sugar bowl a sort": [65535, 0], "for the sugar bowl a sort of": [65535, 0], "the sugar bowl a sort of glorying": [65535, 0], "sugar bowl a sort of glorying over": [65535, 0], "bowl a sort of glorying over tom": [65535, 0], "a sort of glorying over tom which": [65535, 0], "sort of glorying over tom which was": [65535, 0], "of glorying over tom which was well": [65535, 0], "glorying over tom which was well nigh": [65535, 0], "over tom which was well nigh unbearable": [65535, 0], "tom which was well nigh unbearable but": [65535, 0], "which was well nigh unbearable but sid's": [65535, 0], "was well nigh unbearable but sid's fingers": [65535, 0], "well nigh unbearable but sid's fingers slipped": [65535, 0], "nigh unbearable but sid's fingers slipped and": [65535, 0], "unbearable but sid's fingers slipped and the": [65535, 0], "but sid's fingers slipped and the bowl": [65535, 0], "sid's fingers slipped and the bowl dropped": [65535, 0], "fingers slipped and the bowl dropped and": [65535, 0], "slipped and the bowl dropped and broke": [65535, 0], "and the bowl dropped and broke tom": [65535, 0], "the bowl dropped and broke tom was": [65535, 0], "bowl dropped and broke tom was in": [65535, 0], "dropped and broke tom was in ecstasies": [65535, 0], "and broke tom was in ecstasies in": [65535, 0], "broke tom was in ecstasies in such": [65535, 0], "tom was in ecstasies in such ecstasies": [65535, 0], "was in ecstasies in such ecstasies that": [65535, 0], "in ecstasies in such ecstasies that he": [65535, 0], "ecstasies in such ecstasies that he even": [65535, 0], "in such ecstasies that he even controlled": [65535, 0], "such ecstasies that he even controlled his": [65535, 0], "ecstasies that he even controlled his tongue": [65535, 0], "that he even controlled his tongue and": [65535, 0], "he even controlled his tongue and was": [65535, 0], "even controlled his tongue and was silent": [65535, 0], "controlled his tongue and was silent he": [65535, 0], "his tongue and was silent he said": [65535, 0], "tongue and was silent he said to": [65535, 0], "and was silent he said to himself": [65535, 0], "was silent he said to himself that": [65535, 0], "silent he said to himself that he": [65535, 0], "he said to himself that he would": [65535, 0], "said to himself that he would not": [65535, 0], "to himself that he would not speak": [65535, 0], "himself that he would not speak a": [65535, 0], "that he would not speak a word": [65535, 0], "he would not speak a word even": [65535, 0], "would not speak a word even when": [65535, 0], "not speak a word even when his": [65535, 0], "speak a word even when his aunt": [65535, 0], "a word even when his aunt came": [65535, 0], "word even when his aunt came in": [65535, 0], "even when his aunt came in but": [65535, 0], "when his aunt came in but would": [65535, 0], "his aunt came in but would sit": [65535, 0], "aunt came in but would sit perfectly": [65535, 0], "came in but would sit perfectly still": [65535, 0], "in but would sit perfectly still till": [65535, 0], "but would sit perfectly still till she": [65535, 0], "would sit perfectly still till she asked": [65535, 0], "sit perfectly still till she asked who": [65535, 0], "perfectly still till she asked who did": [65535, 0], "still till she asked who did the": [65535, 0], "till she asked who did the mischief": [65535, 0], "she asked who did the mischief and": [65535, 0], "asked who did the mischief and then": [65535, 0], "who did the mischief and then he": [65535, 0], "did the mischief and then he would": [65535, 0], "the mischief and then he would tell": [65535, 0], "mischief and then he would tell and": [65535, 0], "and then he would tell and there": [65535, 0], "then he would tell and there would": [65535, 0], "he would tell and there would be": [65535, 0], "would tell and there would be nothing": [65535, 0], "tell and there would be nothing so": [65535, 0], "and there would be nothing so good": [65535, 0], "there would be nothing so good in": [65535, 0], "would be nothing so good in the": [65535, 0], "be nothing so good in the world": [65535, 0], "nothing so good in the world as": [65535, 0], "so good in the world as to": [65535, 0], "good in the world as to see": [65535, 0], "in the world as to see that": [65535, 0], "the world as to see that pet": [65535, 0], "world as to see that pet model": [65535, 0], "as to see that pet model catch": [65535, 0], "to see that pet model catch it": [65535, 0], "see that pet model catch it he": [65535, 0], "that pet model catch it he was": [65535, 0], "pet model catch it he was so": [65535, 0], "model catch it he was so brimful": [65535, 0], "catch it he was so brimful of": [65535, 0], "it he was so brimful of exultation": [65535, 0], "he was so brimful of exultation that": [65535, 0], "was so brimful of exultation that he": [65535, 0], "so brimful of exultation that he could": [65535, 0], "brimful of exultation that he could hardly": [65535, 0], "of exultation that he could hardly hold": [65535, 0], "exultation that he could hardly hold himself": [65535, 0], "that he could hardly hold himself when": [65535, 0], "he could hardly hold himself when the": [65535, 0], "could hardly hold himself when the old": [65535, 0], "hardly hold himself when the old lady": [65535, 0], "hold himself when the old lady came": [65535, 0], "himself when the old lady came back": [65535, 0], "when the old lady came back and": [65535, 0], "the old lady came back and stood": [65535, 0], "old lady came back and stood above": [65535, 0], "lady came back and stood above the": [65535, 0], "came back and stood above the wreck": [65535, 0], "back and stood above the wreck discharging": [65535, 0], "and stood above the wreck discharging lightnings": [65535, 0], "stood above the wreck discharging lightnings of": [65535, 0], "above the wreck discharging lightnings of wrath": [65535, 0], "the wreck discharging lightnings of wrath from": [65535, 0], "wreck discharging lightnings of wrath from over": [65535, 0], "discharging lightnings of wrath from over her": [65535, 0], "lightnings of wrath from over her spectacles": [65535, 0], "of wrath from over her spectacles he": [65535, 0], "wrath from over her spectacles he said": [65535, 0], "from over her spectacles he said to": [65535, 0], "over her spectacles he said to himself": [65535, 0], "her spectacles he said to himself now": [65535, 0], "spectacles he said to himself now it's": [65535, 0], "he said to himself now it's coming": [65535, 0], "said to himself now it's coming and": [65535, 0], "to himself now it's coming and the": [65535, 0], "himself now it's coming and the next": [65535, 0], "now it's coming and the next instant": [65535, 0], "it's coming and the next instant he": [65535, 0], "coming and the next instant he was": [65535, 0], "and the next instant he was sprawling": [65535, 0], "the next instant he was sprawling on": [65535, 0], "next instant he was sprawling on the": [65535, 0], "instant he was sprawling on the floor": [65535, 0], "he was sprawling on the floor the": [65535, 0], "was sprawling on the floor the potent": [65535, 0], "sprawling on the floor the potent palm": [65535, 0], "on the floor the potent palm was": [65535, 0], "the floor the potent palm was uplifted": [65535, 0], "floor the potent palm was uplifted to": [65535, 0], "the potent palm was uplifted to strike": [65535, 0], "potent palm was uplifted to strike again": [65535, 0], "palm was uplifted to strike again when": [65535, 0], "was uplifted to strike again when tom": [65535, 0], "uplifted to strike again when tom cried": [65535, 0], "to strike again when tom cried out": [65535, 0], "strike again when tom cried out hold": [65535, 0], "again when tom cried out hold on": [65535, 0], "when tom cried out hold on now": [65535, 0], "tom cried out hold on now what": [65535, 0], "cried out hold on now what 'er": [65535, 0], "out hold on now what 'er you": [65535, 0], "hold on now what 'er you belting": [65535, 0], "on now what 'er you belting me": [65535, 0], "now what 'er you belting me for": [65535, 0], "what 'er you belting me for sid": [65535, 0], "'er you belting me for sid broke": [65535, 0], "you belting me for sid broke it": [65535, 0], "belting me for sid broke it aunt": [65535, 0], "me for sid broke it aunt polly": [65535, 0], "for sid broke it aunt polly paused": [65535, 0], "sid broke it aunt polly paused perplexed": [65535, 0], "broke it aunt polly paused perplexed and": [65535, 0], "it aunt polly paused perplexed and tom": [65535, 0], "aunt polly paused perplexed and tom looked": [65535, 0], "polly paused perplexed and tom looked for": [65535, 0], "paused perplexed and tom looked for healing": [65535, 0], "perplexed and tom looked for healing pity": [65535, 0], "and tom looked for healing pity but": [65535, 0], "tom looked for healing pity but when": [65535, 0], "looked for healing pity but when she": [65535, 0], "for healing pity but when she got": [65535, 0], "healing pity but when she got her": [65535, 0], "pity but when she got her tongue": [65535, 0], "but when she got her tongue again": [65535, 0], "when she got her tongue again she": [65535, 0], "she got her tongue again she only": [65535, 0], "got her tongue again she only said": [65535, 0], "her tongue again she only said umf": [65535, 0], "tongue again she only said umf well": [65535, 0], "again she only said umf well you": [65535, 0], "she only said umf well you didn't": [65535, 0], "only said umf well you didn't get": [65535, 0], "said umf well you didn't get a": [65535, 0], "umf well you didn't get a lick": [65535, 0], "well you didn't get a lick amiss": [65535, 0], "you didn't get a lick amiss i": [65535, 0], "didn't get a lick amiss i reckon": [65535, 0], "get a lick amiss i reckon you": [65535, 0], "a lick amiss i reckon you been": [65535, 0], "lick amiss i reckon you been into": [65535, 0], "amiss i reckon you been into some": [65535, 0], "i reckon you been into some other": [65535, 0], "reckon you been into some other audacious": [65535, 0], "you been into some other audacious mischief": [65535, 0], "been into some other audacious mischief when": [65535, 0], "into some other audacious mischief when i": [65535, 0], "some other audacious mischief when i wasn't": [65535, 0], "other audacious mischief when i wasn't around": [65535, 0], "audacious mischief when i wasn't around like": [65535, 0], "mischief when i wasn't around like enough": [65535, 0], "when i wasn't around like enough then": [65535, 0], "i wasn't around like enough then her": [65535, 0], "wasn't around like enough then her conscience": [65535, 0], "around like enough then her conscience reproached": [65535, 0], "like enough then her conscience reproached her": [65535, 0], "enough then her conscience reproached her and": [65535, 0], "then her conscience reproached her and she": [65535, 0], "her conscience reproached her and she yearned": [65535, 0], "conscience reproached her and she yearned to": [65535, 0], "reproached her and she yearned to say": [65535, 0], "her and she yearned to say something": [65535, 0], "and she yearned to say something kind": [65535, 0], "she yearned to say something kind and": [65535, 0], "yearned to say something kind and loving": [65535, 0], "to say something kind and loving but": [65535, 0], "say something kind and loving but she": [65535, 0], "something kind and loving but she judged": [65535, 0], "kind and loving but she judged that": [65535, 0], "and loving but she judged that this": [65535, 0], "loving but she judged that this would": [65535, 0], "but she judged that this would be": [65535, 0], "she judged that this would be construed": [65535, 0], "judged that this would be construed into": [65535, 0], "that this would be construed into a": [65535, 0], "this would be construed into a confession": [65535, 0], "would be construed into a confession that": [65535, 0], "be construed into a confession that she": [65535, 0], "construed into a confession that she had": [65535, 0], "into a confession that she had been": [65535, 0], "a confession that she had been in": [65535, 0], "confession that she had been in the": [65535, 0], "that she had been in the wrong": [65535, 0], "she had been in the wrong and": [65535, 0], "had been in the wrong and discipline": [65535, 0], "been in the wrong and discipline forbade": [65535, 0], "in the wrong and discipline forbade that": [65535, 0], "the wrong and discipline forbade that so": [65535, 0], "wrong and discipline forbade that so she": [65535, 0], "and discipline forbade that so she kept": [65535, 0], "discipline forbade that so she kept silence": [65535, 0], "forbade that so she kept silence and": [65535, 0], "that so she kept silence and went": [65535, 0], "so she kept silence and went about": [65535, 0], "she kept silence and went about her": [65535, 0], "kept silence and went about her affairs": [65535, 0], "silence and went about her affairs with": [65535, 0], "and went about her affairs with a": [65535, 0], "went about her affairs with a troubled": [65535, 0], "about her affairs with a troubled heart": [65535, 0], "her affairs with a troubled heart tom": [65535, 0], "affairs with a troubled heart tom sulked": [65535, 0], "with a troubled heart tom sulked in": [65535, 0], "a troubled heart tom sulked in a": [65535, 0], "troubled heart tom sulked in a corner": [65535, 0], "heart tom sulked in a corner and": [65535, 0], "tom sulked in a corner and exalted": [65535, 0], "sulked in a corner and exalted his": [65535, 0], "in a corner and exalted his woes": [65535, 0], "a corner and exalted his woes he": [65535, 0], "corner and exalted his woes he knew": [65535, 0], "and exalted his woes he knew that": [65535, 0], "exalted his woes he knew that in": [65535, 0], "his woes he knew that in her": [65535, 0], "woes he knew that in her heart": [65535, 0], "he knew that in her heart his": [65535, 0], "knew that in her heart his aunt": [65535, 0], "that in her heart his aunt was": [65535, 0], "in her heart his aunt was on": [65535, 0], "her heart his aunt was on her": [65535, 0], "heart his aunt was on her knees": [65535, 0], "his aunt was on her knees to": [65535, 0], "aunt was on her knees to him": [65535, 0], "was on her knees to him and": [65535, 0], "on her knees to him and he": [65535, 0], "her knees to him and he was": [65535, 0], "knees to him and he was morosely": [65535, 0], "to him and he was morosely gratified": [65535, 0], "him and he was morosely gratified by": [65535, 0], "and he was morosely gratified by the": [65535, 0], "he was morosely gratified by the consciousness": [65535, 0], "was morosely gratified by the consciousness of": [65535, 0], "morosely gratified by the consciousness of it": [65535, 0], "gratified by the consciousness of it he": [65535, 0], "by the consciousness of it he would": [65535, 0], "the consciousness of it he would hang": [65535, 0], "consciousness of it he would hang out": [65535, 0], "of it he would hang out no": [65535, 0], "it he would hang out no signals": [65535, 0], "he would hang out no signals he": [65535, 0], "would hang out no signals he would": [65535, 0], "hang out no signals he would take": [65535, 0], "out no signals he would take notice": [65535, 0], "no signals he would take notice of": [65535, 0], "signals he would take notice of none": [65535, 0], "he would take notice of none he": [65535, 0], "would take notice of none he knew": [65535, 0], "take notice of none he knew that": [65535, 0], "notice of none he knew that a": [65535, 0], "of none he knew that a yearning": [65535, 0], "none he knew that a yearning glance": [65535, 0], "he knew that a yearning glance fell": [65535, 0], "knew that a yearning glance fell upon": [65535, 0], "that a yearning glance fell upon him": [65535, 0], "a yearning glance fell upon him now": [65535, 0], "yearning glance fell upon him now and": [65535, 0], "glance fell upon him now and then": [65535, 0], "fell upon him now and then through": [65535, 0], "upon him now and then through a": [65535, 0], "him now and then through a film": [65535, 0], "now and then through a film of": [65535, 0], "and then through a film of tears": [65535, 0], "then through a film of tears but": [65535, 0], "through a film of tears but he": [65535, 0], "a film of tears but he refused": [65535, 0], "film of tears but he refused recognition": [65535, 0], "of tears but he refused recognition of": [65535, 0], "tears but he refused recognition of it": [65535, 0], "but he refused recognition of it he": [65535, 0], "he refused recognition of it he pictured": [65535, 0], "refused recognition of it he pictured himself": [65535, 0], "recognition of it he pictured himself lying": [65535, 0], "of it he pictured himself lying sick": [65535, 0], "it he pictured himself lying sick unto": [65535, 0], "he pictured himself lying sick unto death": [65535, 0], "pictured himself lying sick unto death and": [65535, 0], "himself lying sick unto death and his": [65535, 0], "lying sick unto death and his aunt": [65535, 0], "sick unto death and his aunt bending": [65535, 0], "unto death and his aunt bending over": [65535, 0], "death and his aunt bending over him": [65535, 0], "and his aunt bending over him beseeching": [65535, 0], "his aunt bending over him beseeching one": [65535, 0], "aunt bending over him beseeching one little": [65535, 0], "bending over him beseeching one little forgiving": [65535, 0], "over him beseeching one little forgiving word": [65535, 0], "him beseeching one little forgiving word but": [65535, 0], "beseeching one little forgiving word but he": [65535, 0], "one little forgiving word but he would": [65535, 0], "little forgiving word but he would turn": [65535, 0], "forgiving word but he would turn his": [65535, 0], "word but he would turn his face": [65535, 0], "but he would turn his face to": [65535, 0], "he would turn his face to the": [65535, 0], "would turn his face to the wall": [65535, 0], "turn his face to the wall and": [65535, 0], "his face to the wall and die": [65535, 0], "face to the wall and die with": [65535, 0], "to the wall and die with that": [65535, 0], "the wall and die with that word": [65535, 0], "wall and die with that word unsaid": [65535, 0], "and die with that word unsaid ah": [65535, 0], "die with that word unsaid ah how": [65535, 0], "with that word unsaid ah how would": [65535, 0], "that word unsaid ah how would she": [65535, 0], "word unsaid ah how would she feel": [65535, 0], "unsaid ah how would she feel then": [65535, 0], "ah how would she feel then and": [65535, 0], "how would she feel then and he": [65535, 0], "would she feel then and he pictured": [65535, 0], "she feel then and he pictured himself": [65535, 0], "feel then and he pictured himself brought": [65535, 0], "then and he pictured himself brought home": [65535, 0], "and he pictured himself brought home from": [65535, 0], "he pictured himself brought home from the": [65535, 0], "pictured himself brought home from the river": [65535, 0], "himself brought home from the river dead": [65535, 0], "brought home from the river dead with": [65535, 0], "home from the river dead with his": [65535, 0], "from the river dead with his curls": [65535, 0], "the river dead with his curls all": [65535, 0], "river dead with his curls all wet": [65535, 0], "dead with his curls all wet and": [65535, 0], "with his curls all wet and his": [65535, 0], "his curls all wet and his sore": [65535, 0], "curls all wet and his sore heart": [65535, 0], "all wet and his sore heart at": [65535, 0], "wet and his sore heart at rest": [65535, 0], "and his sore heart at rest how": [65535, 0], "his sore heart at rest how she": [65535, 0], "sore heart at rest how she would": [65535, 0], "heart at rest how she would throw": [65535, 0], "at rest how she would throw herself": [65535, 0], "rest how she would throw herself upon": [65535, 0], "how she would throw herself upon him": [65535, 0], "she would throw herself upon him and": [65535, 0], "would throw herself upon him and how": [65535, 0], "throw herself upon him and how her": [65535, 0], "herself upon him and how her tears": [65535, 0], "upon him and how her tears would": [65535, 0], "him and how her tears would fall": [65535, 0], "and how her tears would fall like": [65535, 0], "how her tears would fall like rain": [65535, 0], "her tears would fall like rain and": [65535, 0], "tears would fall like rain and her": [65535, 0], "would fall like rain and her lips": [65535, 0], "fall like rain and her lips pray": [65535, 0], "like rain and her lips pray god": [65535, 0], "rain and her lips pray god to": [65535, 0], "and her lips pray god to give": [65535, 0], "her lips pray god to give her": [65535, 0], "lips pray god to give her back": [65535, 0], "pray god to give her back her": [65535, 0], "god to give her back her boy": [65535, 0], "to give her back her boy and": [65535, 0], "give her back her boy and she": [65535, 0], "her back her boy and she would": [65535, 0], "back her boy and she would never": [65535, 0], "her boy and she would never never": [65535, 0], "boy and she would never never abuse": [65535, 0], "and she would never never abuse him": [65535, 0], "she would never never abuse him any": [65535, 0], "would never never abuse him any more": [65535, 0], "never never abuse him any more but": [65535, 0], "never abuse him any more but he": [65535, 0], "abuse him any more but he would": [65535, 0], "him any more but he would lie": [65535, 0], "any more but he would lie there": [65535, 0], "more but he would lie there cold": [65535, 0], "but he would lie there cold and": [65535, 0], "he would lie there cold and white": [65535, 0], "would lie there cold and white and": [65535, 0], "lie there cold and white and make": [65535, 0], "there cold and white and make no": [65535, 0], "cold and white and make no sign": [65535, 0], "and white and make no sign a": [65535, 0], "white and make no sign a poor": [65535, 0], "and make no sign a poor little": [65535, 0], "make no sign a poor little sufferer": [65535, 0], "no sign a poor little sufferer whose": [65535, 0], "sign a poor little sufferer whose griefs": [65535, 0], "a poor little sufferer whose griefs were": [65535, 0], "poor little sufferer whose griefs were at": [65535, 0], "little sufferer whose griefs were at an": [65535, 0], "sufferer whose griefs were at an end": [65535, 0], "whose griefs were at an end he": [65535, 0], "griefs were at an end he so": [65535, 0], "were at an end he so worked": [65535, 0], "at an end he so worked upon": [65535, 0], "an end he so worked upon his": [65535, 0], "end he so worked upon his feelings": [65535, 0], "he so worked upon his feelings with": [65535, 0], "so worked upon his feelings with the": [65535, 0], "worked upon his feelings with the pathos": [65535, 0], "upon his feelings with the pathos of": [65535, 0], "his feelings with the pathos of these": [65535, 0], "feelings with the pathos of these dreams": [65535, 0], "with the pathos of these dreams that": [65535, 0], "the pathos of these dreams that he": [65535, 0], "pathos of these dreams that he had": [65535, 0], "of these dreams that he had to": [65535, 0], "these dreams that he had to keep": [65535, 0], "dreams that he had to keep swallowing": [65535, 0], "that he had to keep swallowing he": [65535, 0], "he had to keep swallowing he was": [65535, 0], "had to keep swallowing he was so": [65535, 0], "to keep swallowing he was so like": [65535, 0], "keep swallowing he was so like to": [65535, 0], "swallowing he was so like to choke": [65535, 0], "he was so like to choke and": [65535, 0], "was so like to choke and his": [65535, 0], "so like to choke and his eyes": [65535, 0], "like to choke and his eyes swam": [65535, 0], "to choke and his eyes swam in": [65535, 0], "choke and his eyes swam in a": [65535, 0], "and his eyes swam in a blur": [65535, 0], "his eyes swam in a blur of": [65535, 0], "eyes swam in a blur of water": [65535, 0], "swam in a blur of water which": [65535, 0], "in a blur of water which overflowed": [65535, 0], "a blur of water which overflowed when": [65535, 0], "blur of water which overflowed when he": [65535, 0], "of water which overflowed when he winked": [65535, 0], "water which overflowed when he winked and": [65535, 0], "which overflowed when he winked and ran": [65535, 0], "overflowed when he winked and ran down": [65535, 0], "when he winked and ran down and": [65535, 0], "he winked and ran down and trickled": [65535, 0], "winked and ran down and trickled from": [65535, 0], "and ran down and trickled from the": [65535, 0], "ran down and trickled from the end": [65535, 0], "down and trickled from the end of": [65535, 0], "and trickled from the end of his": [65535, 0], "trickled from the end of his nose": [65535, 0], "from the end of his nose and": [65535, 0], "the end of his nose and such": [65535, 0], "end of his nose and such a": [65535, 0], "of his nose and such a luxury": [65535, 0], "his nose and such a luxury to": [65535, 0], "nose and such a luxury to him": [65535, 0], "and such a luxury to him was": [65535, 0], "such a luxury to him was this": [65535, 0], "a luxury to him was this petting": [65535, 0], "luxury to him was this petting of": [65535, 0], "to him was this petting of his": [65535, 0], "him was this petting of his sorrows": [65535, 0], "was this petting of his sorrows that": [65535, 0], "this petting of his sorrows that he": [65535, 0], "petting of his sorrows that he could": [65535, 0], "of his sorrows that he could not": [65535, 0], "his sorrows that he could not bear": [65535, 0], "sorrows that he could not bear to": [65535, 0], "that he could not bear to have": [65535, 0], "he could not bear to have any": [65535, 0], "could not bear to have any worldly": [65535, 0], "not bear to have any worldly cheeriness": [65535, 0], "bear to have any worldly cheeriness or": [65535, 0], "to have any worldly cheeriness or any": [65535, 0], "have any worldly cheeriness or any grating": [65535, 0], "any worldly cheeriness or any grating delight": [65535, 0], "worldly cheeriness or any grating delight intrude": [65535, 0], "cheeriness or any grating delight intrude upon": [65535, 0], "or any grating delight intrude upon it": [65535, 0], "any grating delight intrude upon it it": [65535, 0], "grating delight intrude upon it it was": [65535, 0], "delight intrude upon it it was too": [65535, 0], "intrude upon it it was too sacred": [65535, 0], "upon it it was too sacred for": [65535, 0], "it it was too sacred for such": [65535, 0], "it was too sacred for such contact": [65535, 0], "was too sacred for such contact and": [65535, 0], "too sacred for such contact and so": [65535, 0], "sacred for such contact and so presently": [65535, 0], "for such contact and so presently when": [65535, 0], "such contact and so presently when his": [65535, 0], "contact and so presently when his cousin": [65535, 0], "and so presently when his cousin mary": [65535, 0], "so presently when his cousin mary danced": [65535, 0], "presently when his cousin mary danced in": [65535, 0], "when his cousin mary danced in all": [65535, 0], "his cousin mary danced in all alive": [65535, 0], "cousin mary danced in all alive with": [65535, 0], "mary danced in all alive with the": [65535, 0], "danced in all alive with the joy": [65535, 0], "in all alive with the joy of": [65535, 0], "all alive with the joy of seeing": [65535, 0], "alive with the joy of seeing home": [65535, 0], "with the joy of seeing home again": [65535, 0], "the joy of seeing home again after": [65535, 0], "joy of seeing home again after an": [65535, 0], "of seeing home again after an age": [65535, 0], "seeing home again after an age long": [65535, 0], "home again after an age long visit": [65535, 0], "again after an age long visit of": [65535, 0], "after an age long visit of one": [65535, 0], "an age long visit of one week": [65535, 0], "age long visit of one week to": [65535, 0], "long visit of one week to the": [65535, 0], "visit of one week to the country": [65535, 0], "of one week to the country he": [65535, 0], "one week to the country he got": [65535, 0], "week to the country he got up": [65535, 0], "to the country he got up and": [65535, 0], "the country he got up and moved": [65535, 0], "country he got up and moved in": [65535, 0], "he got up and moved in clouds": [65535, 0], "got up and moved in clouds and": [65535, 0], "up and moved in clouds and darkness": [65535, 0], "and moved in clouds and darkness out": [65535, 0], "moved in clouds and darkness out at": [65535, 0], "in clouds and darkness out at one": [65535, 0], "clouds and darkness out at one door": [65535, 0], "and darkness out at one door as": [65535, 0], "darkness out at one door as she": [65535, 0], "out at one door as she brought": [65535, 0], "at one door as she brought song": [65535, 0], "one door as she brought song and": [65535, 0], "door as she brought song and sunshine": [65535, 0], "as she brought song and sunshine in": [65535, 0], "she brought song and sunshine in at": [65535, 0], "brought song and sunshine in at the": [65535, 0], "song and sunshine in at the other": [65535, 0], "and sunshine in at the other he": [65535, 0], "sunshine in at the other he wandered": [65535, 0], "in at the other he wandered far": [65535, 0], "at the other he wandered far from": [65535, 0], "the other he wandered far from the": [65535, 0], "other he wandered far from the accustomed": [65535, 0], "he wandered far from the accustomed haunts": [65535, 0], "wandered far from the accustomed haunts of": [65535, 0], "far from the accustomed haunts of boys": [65535, 0], "from the accustomed haunts of boys and": [65535, 0], "the accustomed haunts of boys and sought": [65535, 0], "accustomed haunts of boys and sought desolate": [65535, 0], "haunts of boys and sought desolate places": [65535, 0], "of boys and sought desolate places that": [65535, 0], "boys and sought desolate places that were": [65535, 0], "and sought desolate places that were in": [65535, 0], "sought desolate places that were in harmony": [65535, 0], "desolate places that were in harmony with": [65535, 0], "places that were in harmony with his": [65535, 0], "that were in harmony with his spirit": [65535, 0], "were in harmony with his spirit a": [65535, 0], "in harmony with his spirit a log": [65535, 0], "harmony with his spirit a log raft": [65535, 0], "with his spirit a log raft in": [65535, 0], "his spirit a log raft in the": [65535, 0], "spirit a log raft in the river": [65535, 0], "a log raft in the river invited": [65535, 0], "log raft in the river invited him": [65535, 0], "raft in the river invited him and": [65535, 0], "in the river invited him and he": [65535, 0], "the river invited him and he seated": [65535, 0], "river invited him and he seated himself": [65535, 0], "invited him and he seated himself on": [65535, 0], "him and he seated himself on its": [65535, 0], "and he seated himself on its outer": [65535, 0], "he seated himself on its outer edge": [65535, 0], "seated himself on its outer edge and": [65535, 0], "himself on its outer edge and contemplated": [65535, 0], "on its outer edge and contemplated the": [65535, 0], "its outer edge and contemplated the dreary": [65535, 0], "outer edge and contemplated the dreary vastness": [65535, 0], "edge and contemplated the dreary vastness of": [65535, 0], "and contemplated the dreary vastness of the": [65535, 0], "contemplated the dreary vastness of the stream": [65535, 0], "the dreary vastness of the stream wishing": [65535, 0], "dreary vastness of the stream wishing the": [65535, 0], "vastness of the stream wishing the while": [65535, 0], "of the stream wishing the while that": [65535, 0], "the stream wishing the while that he": [65535, 0], "stream wishing the while that he could": [65535, 0], "wishing the while that he could only": [65535, 0], "the while that he could only be": [65535, 0], "while that he could only be drowned": [65535, 0], "that he could only be drowned all": [65535, 0], "he could only be drowned all at": [65535, 0], "could only be drowned all at once": [65535, 0], "only be drowned all at once and": [65535, 0], "be drowned all at once and unconsciously": [65535, 0], "drowned all at once and unconsciously without": [65535, 0], "all at once and unconsciously without undergoing": [65535, 0], "at once and unconsciously without undergoing the": [65535, 0], "once and unconsciously without undergoing the uncomfortable": [65535, 0], "and unconsciously without undergoing the uncomfortable routine": [65535, 0], "unconsciously without undergoing the uncomfortable routine devised": [65535, 0], "without undergoing the uncomfortable routine devised by": [65535, 0], "undergoing the uncomfortable routine devised by nature": [65535, 0], "the uncomfortable routine devised by nature then": [65535, 0], "uncomfortable routine devised by nature then he": [65535, 0], "routine devised by nature then he thought": [65535, 0], "devised by nature then he thought of": [65535, 0], "by nature then he thought of his": [65535, 0], "nature then he thought of his flower": [65535, 0], "then he thought of his flower he": [65535, 0], "he thought of his flower he got": [65535, 0], "thought of his flower he got it": [65535, 0], "of his flower he got it out": [65535, 0], "his flower he got it out rumpled": [65535, 0], "flower he got it out rumpled and": [65535, 0], "he got it out rumpled and wilted": [65535, 0], "got it out rumpled and wilted and": [65535, 0], "it out rumpled and wilted and it": [65535, 0], "out rumpled and wilted and it mightily": [65535, 0], "rumpled and wilted and it mightily increased": [65535, 0], "and wilted and it mightily increased his": [65535, 0], "wilted and it mightily increased his dismal": [65535, 0], "and it mightily increased his dismal felicity": [65535, 0], "it mightily increased his dismal felicity he": [65535, 0], "mightily increased his dismal felicity he wondered": [65535, 0], "increased his dismal felicity he wondered if": [65535, 0], "his dismal felicity he wondered if she": [65535, 0], "dismal felicity he wondered if she would": [65535, 0], "felicity he wondered if she would pity": [65535, 0], "he wondered if she would pity him": [65535, 0], "wondered if she would pity him if": [65535, 0], "if she would pity him if she": [65535, 0], "she would pity him if she knew": [65535, 0], "would pity him if she knew would": [65535, 0], "pity him if she knew would she": [65535, 0], "him if she knew would she cry": [65535, 0], "if she knew would she cry and": [65535, 0], "she knew would she cry and wish": [65535, 0], "knew would she cry and wish that": [65535, 0], "would she cry and wish that she": [65535, 0], "she cry and wish that she had": [65535, 0], "cry and wish that she had a": [65535, 0], "and wish that she had a right": [65535, 0], "wish that she had a right to": [65535, 0], "that she had a right to put": [65535, 0], "she had a right to put her": [65535, 0], "had a right to put her arms": [65535, 0], "a right to put her arms around": [65535, 0], "right to put her arms around his": [65535, 0], "to put her arms around his neck": [65535, 0], "put her arms around his neck and": [65535, 0], "her arms around his neck and comfort": [65535, 0], "arms around his neck and comfort him": [65535, 0], "around his neck and comfort him or": [65535, 0], "his neck and comfort him or would": [65535, 0], "neck and comfort him or would she": [65535, 0], "and comfort him or would she turn": [65535, 0], "comfort him or would she turn coldly": [65535, 0], "him or would she turn coldly away": [65535, 0], "or would she turn coldly away like": [65535, 0], "would she turn coldly away like all": [65535, 0], "she turn coldly away like all the": [65535, 0], "turn coldly away like all the hollow": [65535, 0], "coldly away like all the hollow world": [65535, 0], "away like all the hollow world this": [65535, 0], "like all the hollow world this picture": [65535, 0], "all the hollow world this picture brought": [65535, 0], "the hollow world this picture brought such": [65535, 0], "hollow world this picture brought such an": [65535, 0], "world this picture brought such an agony": [65535, 0], "this picture brought such an agony of": [65535, 0], "picture brought such an agony of pleasurable": [65535, 0], "brought such an agony of pleasurable suffering": [65535, 0], "such an agony of pleasurable suffering that": [65535, 0], "an agony of pleasurable suffering that he": [65535, 0], "agony of pleasurable suffering that he worked": [65535, 0], "of pleasurable suffering that he worked it": [65535, 0], "pleasurable suffering that he worked it over": [65535, 0], "suffering that he worked it over and": [65535, 0], "that he worked it over and over": [65535, 0], "he worked it over and over again": [65535, 0], "worked it over and over again in": [65535, 0], "it over and over again in his": [65535, 0], "over and over again in his mind": [65535, 0], "and over again in his mind and": [65535, 0], "over again in his mind and set": [65535, 0], "again in his mind and set it": [65535, 0], "in his mind and set it up": [65535, 0], "his mind and set it up in": [65535, 0], "mind and set it up in new": [65535, 0], "and set it up in new and": [65535, 0], "set it up in new and varied": [65535, 0], "it up in new and varied lights": [65535, 0], "up in new and varied lights till": [65535, 0], "in new and varied lights till he": [65535, 0], "new and varied lights till he wore": [65535, 0], "and varied lights till he wore it": [65535, 0], "varied lights till he wore it threadbare": [65535, 0], "lights till he wore it threadbare at": [65535, 0], "till he wore it threadbare at last": [65535, 0], "he wore it threadbare at last he": [65535, 0], "wore it threadbare at last he rose": [65535, 0], "it threadbare at last he rose up": [65535, 0], "threadbare at last he rose up sighing": [65535, 0], "at last he rose up sighing and": [65535, 0], "last he rose up sighing and departed": [65535, 0], "he rose up sighing and departed in": [65535, 0], "rose up sighing and departed in the": [65535, 0], "up sighing and departed in the darkness": [65535, 0], "sighing and departed in the darkness about": [65535, 0], "and departed in the darkness about half": [65535, 0], "departed in the darkness about half past": [65535, 0], "in the darkness about half past nine": [65535, 0], "the darkness about half past nine or": [65535, 0], "darkness about half past nine or ten": [65535, 0], "about half past nine or ten o'clock": [65535, 0], "half past nine or ten o'clock he": [65535, 0], "past nine or ten o'clock he came": [65535, 0], "nine or ten o'clock he came along": [65535, 0], "or ten o'clock he came along the": [65535, 0], "ten o'clock he came along the deserted": [65535, 0], "o'clock he came along the deserted street": [65535, 0], "he came along the deserted street to": [65535, 0], "came along the deserted street to where": [65535, 0], "along the deserted street to where the": [65535, 0], "the deserted street to where the adored": [65535, 0], "deserted street to where the adored unknown": [65535, 0], "street to where the adored unknown lived": [65535, 0], "to where the adored unknown lived he": [65535, 0], "where the adored unknown lived he paused": [65535, 0], "the adored unknown lived he paused a": [65535, 0], "adored unknown lived he paused a moment": [65535, 0], "unknown lived he paused a moment no": [65535, 0], "lived he paused a moment no sound": [65535, 0], "he paused a moment no sound fell": [65535, 0], "paused a moment no sound fell upon": [65535, 0], "a moment no sound fell upon his": [65535, 0], "moment no sound fell upon his listening": [65535, 0], "no sound fell upon his listening ear": [65535, 0], "sound fell upon his listening ear a": [65535, 0], "fell upon his listening ear a candle": [65535, 0], "upon his listening ear a candle was": [65535, 0], "his listening ear a candle was casting": [65535, 0], "listening ear a candle was casting a": [65535, 0], "ear a candle was casting a dull": [65535, 0], "a candle was casting a dull glow": [65535, 0], "candle was casting a dull glow upon": [65535, 0], "was casting a dull glow upon the": [65535, 0], "casting a dull glow upon the curtain": [65535, 0], "a dull glow upon the curtain of": [65535, 0], "dull glow upon the curtain of a": [65535, 0], "glow upon the curtain of a second": [65535, 0], "upon the curtain of a second story": [65535, 0], "the curtain of a second story window": [65535, 0], "curtain of a second story window was": [65535, 0], "of a second story window was the": [65535, 0], "a second story window was the sacred": [65535, 0], "second story window was the sacred presence": [65535, 0], "story window was the sacred presence there": [65535, 0], "window was the sacred presence there he": [65535, 0], "was the sacred presence there he climbed": [65535, 0], "the sacred presence there he climbed the": [65535, 0], "sacred presence there he climbed the fence": [65535, 0], "presence there he climbed the fence threaded": [65535, 0], "there he climbed the fence threaded his": [65535, 0], "he climbed the fence threaded his stealthy": [65535, 0], "climbed the fence threaded his stealthy way": [65535, 0], "the fence threaded his stealthy way through": [65535, 0], "fence threaded his stealthy way through the": [65535, 0], "threaded his stealthy way through the plants": [65535, 0], "his stealthy way through the plants till": [65535, 0], "stealthy way through the plants till he": [65535, 0], "way through the plants till he stood": [65535, 0], "through the plants till he stood under": [65535, 0], "the plants till he stood under that": [65535, 0], "plants till he stood under that window": [65535, 0], "till he stood under that window he": [65535, 0], "he stood under that window he looked": [65535, 0], "stood under that window he looked up": [65535, 0], "under that window he looked up at": [65535, 0], "that window he looked up at it": [65535, 0], "window he looked up at it long": [65535, 0], "he looked up at it long and": [65535, 0], "looked up at it long and with": [65535, 0], "up at it long and with emotion": [65535, 0], "at it long and with emotion then": [65535, 0], "it long and with emotion then he": [65535, 0], "long and with emotion then he laid": [65535, 0], "and with emotion then he laid him": [65535, 0], "with emotion then he laid him down": [65535, 0], "emotion then he laid him down on": [65535, 0], "then he laid him down on the": [65535, 0], "he laid him down on the ground": [65535, 0], "laid him down on the ground under": [65535, 0], "him down on the ground under it": [65535, 0], "down on the ground under it disposing": [65535, 0], "on the ground under it disposing himself": [65535, 0], "the ground under it disposing himself upon": [65535, 0], "ground under it disposing himself upon his": [65535, 0], "under it disposing himself upon his back": [65535, 0], "it disposing himself upon his back with": [65535, 0], "disposing himself upon his back with his": [65535, 0], "himself upon his back with his hands": [65535, 0], "upon his back with his hands clasped": [65535, 0], "his back with his hands clasped upon": [65535, 0], "back with his hands clasped upon his": [65535, 0], "with his hands clasped upon his breast": [65535, 0], "his hands clasped upon his breast and": [65535, 0], "hands clasped upon his breast and holding": [65535, 0], "clasped upon his breast and holding his": [65535, 0], "upon his breast and holding his poor": [65535, 0], "his breast and holding his poor wilted": [65535, 0], "breast and holding his poor wilted flower": [65535, 0], "and holding his poor wilted flower and": [65535, 0], "holding his poor wilted flower and thus": [65535, 0], "his poor wilted flower and thus he": [65535, 0], "poor wilted flower and thus he would": [65535, 0], "wilted flower and thus he would die": [65535, 0], "flower and thus he would die out": [65535, 0], "and thus he would die out in": [65535, 0], "thus he would die out in the": [65535, 0], "he would die out in the cold": [65535, 0], "would die out in the cold world": [65535, 0], "die out in the cold world with": [65535, 0], "out in the cold world with no": [65535, 0], "in the cold world with no shelter": [65535, 0], "the cold world with no shelter over": [65535, 0], "cold world with no shelter over his": [65535, 0], "world with no shelter over his homeless": [65535, 0], "with no shelter over his homeless head": [65535, 0], "no shelter over his homeless head no": [65535, 0], "shelter over his homeless head no friendly": [65535, 0], "over his homeless head no friendly hand": [65535, 0], "his homeless head no friendly hand to": [65535, 0], "homeless head no friendly hand to wipe": [65535, 0], "head no friendly hand to wipe the": [65535, 0], "no friendly hand to wipe the death": [65535, 0], "friendly hand to wipe the death damps": [65535, 0], "hand to wipe the death damps from": [65535, 0], "to wipe the death damps from his": [65535, 0], "wipe the death damps from his brow": [65535, 0], "the death damps from his brow no": [65535, 0], "death damps from his brow no loving": [65535, 0], "damps from his brow no loving face": [65535, 0], "from his brow no loving face to": [65535, 0], "his brow no loving face to bend": [65535, 0], "brow no loving face to bend pityingly": [65535, 0], "no loving face to bend pityingly over": [65535, 0], "loving face to bend pityingly over him": [65535, 0], "face to bend pityingly over him when": [65535, 0], "to bend pityingly over him when the": [65535, 0], "bend pityingly over him when the great": [65535, 0], "pityingly over him when the great agony": [65535, 0], "over him when the great agony came": [65535, 0], "him when the great agony came and": [65535, 0], "when the great agony came and thus": [65535, 0], "the great agony came and thus she": [65535, 0], "great agony came and thus she would": [65535, 0], "agony came and thus she would see": [65535, 0], "came and thus she would see him": [65535, 0], "and thus she would see him when": [65535, 0], "thus she would see him when she": [65535, 0], "she would see him when she looked": [65535, 0], "would see him when she looked out": [65535, 0], "see him when she looked out upon": [65535, 0], "him when she looked out upon the": [65535, 0], "when she looked out upon the glad": [65535, 0], "she looked out upon the glad morning": [65535, 0], "looked out upon the glad morning and": [65535, 0], "out upon the glad morning and oh": [65535, 0], "upon the glad morning and oh would": [65535, 0], "the glad morning and oh would she": [65535, 0], "glad morning and oh would she drop": [65535, 0], "morning and oh would she drop one": [65535, 0], "and oh would she drop one little": [65535, 0], "oh would she drop one little tear": [65535, 0], "would she drop one little tear upon": [65535, 0], "she drop one little tear upon his": [65535, 0], "drop one little tear upon his poor": [65535, 0], "one little tear upon his poor lifeless": [65535, 0], "little tear upon his poor lifeless form": [65535, 0], "tear upon his poor lifeless form would": [65535, 0], "upon his poor lifeless form would she": [65535, 0], "his poor lifeless form would she heave": [65535, 0], "poor lifeless form would she heave one": [65535, 0], "lifeless form would she heave one little": [65535, 0], "form would she heave one little sigh": [65535, 0], "would she heave one little sigh to": [65535, 0], "she heave one little sigh to see": [65535, 0], "heave one little sigh to see a": [65535, 0], "one little sigh to see a bright": [65535, 0], "little sigh to see a bright young": [65535, 0], "sigh to see a bright young life": [65535, 0], "to see a bright young life so": [65535, 0], "see a bright young life so rudely": [65535, 0], "a bright young life so rudely blighted": [65535, 0], "bright young life so rudely blighted so": [65535, 0], "young life so rudely blighted so untimely": [65535, 0], "life so rudely blighted so untimely cut": [65535, 0], "so rudely blighted so untimely cut down": [65535, 0], "rudely blighted so untimely cut down the": [65535, 0], "blighted so untimely cut down the window": [65535, 0], "so untimely cut down the window went": [65535, 0], "untimely cut down the window went up": [65535, 0], "cut down the window went up a": [65535, 0], "down the window went up a maid": [65535, 0], "the window went up a maid servant's": [65535, 0], "window went up a maid servant's discordant": [65535, 0], "went up a maid servant's discordant voice": [65535, 0], "up a maid servant's discordant voice profaned": [65535, 0], "a maid servant's discordant voice profaned the": [65535, 0], "maid servant's discordant voice profaned the holy": [65535, 0], "servant's discordant voice profaned the holy calm": [65535, 0], "discordant voice profaned the holy calm and": [65535, 0], "voice profaned the holy calm and a": [65535, 0], "profaned the holy calm and a deluge": [65535, 0], "the holy calm and a deluge of": [65535, 0], "holy calm and a deluge of water": [65535, 0], "calm and a deluge of water drenched": [65535, 0], "and a deluge of water drenched the": [65535, 0], "a deluge of water drenched the prone": [65535, 0], "deluge of water drenched the prone martyr's": [65535, 0], "of water drenched the prone martyr's remains": [65535, 0], "water drenched the prone martyr's remains the": [65535, 0], "drenched the prone martyr's remains the strangling": [65535, 0], "the prone martyr's remains the strangling hero": [65535, 0], "prone martyr's remains the strangling hero sprang": [65535, 0], "martyr's remains the strangling hero sprang up": [65535, 0], "remains the strangling hero sprang up with": [65535, 0], "the strangling hero sprang up with a": [65535, 0], "strangling hero sprang up with a relieving": [65535, 0], "hero sprang up with a relieving snort": [65535, 0], "sprang up with a relieving snort there": [65535, 0], "up with a relieving snort there was": [65535, 0], "with a relieving snort there was a": [65535, 0], "a relieving snort there was a whiz": [65535, 0], "relieving snort there was a whiz as": [65535, 0], "snort there was a whiz as of": [65535, 0], "there was a whiz as of a": [65535, 0], "was a whiz as of a missile": [65535, 0], "a whiz as of a missile in": [65535, 0], "whiz as of a missile in the": [65535, 0], "as of a missile in the air": [65535, 0], "of a missile in the air mingled": [65535, 0], "a missile in the air mingled with": [65535, 0], "missile in the air mingled with the": [65535, 0], "in the air mingled with the murmur": [65535, 0], "the air mingled with the murmur of": [65535, 0], "air mingled with the murmur of a": [65535, 0], "mingled with the murmur of a curse": [65535, 0], "with the murmur of a curse a": [65535, 0], "the murmur of a curse a sound": [65535, 0], "murmur of a curse a sound as": [65535, 0], "of a curse a sound as of": [65535, 0], "a curse a sound as of shivering": [65535, 0], "curse a sound as of shivering glass": [65535, 0], "a sound as of shivering glass followed": [65535, 0], "sound as of shivering glass followed and": [65535, 0], "as of shivering glass followed and a": [65535, 0], "of shivering glass followed and a small": [65535, 0], "shivering glass followed and a small vague": [65535, 0], "glass followed and a small vague form": [65535, 0], "followed and a small vague form went": [65535, 0], "and a small vague form went over": [65535, 0], "a small vague form went over the": [65535, 0], "small vague form went over the fence": [65535, 0], "vague form went over the fence and": [65535, 0], "form went over the fence and shot": [65535, 0], "went over the fence and shot away": [65535, 0], "over the fence and shot away in": [65535, 0], "the fence and shot away in the": [65535, 0], "fence and shot away in the gloom": [65535, 0], "and shot away in the gloom not": [65535, 0], "shot away in the gloom not long": [65535, 0], "away in the gloom not long after": [65535, 0], "in the gloom not long after as": [65535, 0], "the gloom not long after as tom": [65535, 0], "gloom not long after as tom all": [65535, 0], "not long after as tom all undressed": [65535, 0], "long after as tom all undressed for": [65535, 0], "after as tom all undressed for bed": [65535, 0], "as tom all undressed for bed was": [65535, 0], "tom all undressed for bed was surveying": [65535, 0], "all undressed for bed was surveying his": [65535, 0], "undressed for bed was surveying his drenched": [65535, 0], "for bed was surveying his drenched garments": [65535, 0], "bed was surveying his drenched garments by": [65535, 0], "was surveying his drenched garments by the": [65535, 0], "surveying his drenched garments by the light": [65535, 0], "his drenched garments by the light of": [65535, 0], "drenched garments by the light of a": [65535, 0], "garments by the light of a tallow": [65535, 0], "by the light of a tallow dip": [65535, 0], "the light of a tallow dip sid": [65535, 0], "light of a tallow dip sid woke": [65535, 0], "of a tallow dip sid woke up": [65535, 0], "a tallow dip sid woke up but": [65535, 0], "tallow dip sid woke up but if": [65535, 0], "dip sid woke up but if he": [65535, 0], "sid woke up but if he had": [65535, 0], "woke up but if he had any": [65535, 0], "up but if he had any dim": [65535, 0], "but if he had any dim idea": [65535, 0], "if he had any dim idea of": [65535, 0], "he had any dim idea of making": [65535, 0], "had any dim idea of making any": [65535, 0], "any dim idea of making any references": [65535, 0], "dim idea of making any references to": [65535, 0], "idea of making any references to allusions": [65535, 0], "of making any references to allusions he": [65535, 0], "making any references to allusions he thought": [65535, 0], "any references to allusions he thought better": [65535, 0], "references to allusions he thought better of": [65535, 0], "to allusions he thought better of it": [65535, 0], "allusions he thought better of it and": [65535, 0], "he thought better of it and held": [65535, 0], "thought better of it and held his": [65535, 0], "better of it and held his peace": [65535, 0], "of it and held his peace for": [65535, 0], "it and held his peace for there": [65535, 0], "and held his peace for there was": [65535, 0], "held his peace for there was danger": [65535, 0], "his peace for there was danger in": [65535, 0], "peace for there was danger in tom's": [65535, 0], "for there was danger in tom's eye": [65535, 0], "there was danger in tom's eye tom": [65535, 0], "was danger in tom's eye tom turned": [65535, 0], "danger in tom's eye tom turned in": [65535, 0], "in tom's eye tom turned in without": [65535, 0], "tom's eye tom turned in without the": [65535, 0], "eye tom turned in without the added": [65535, 0], "tom turned in without the added vexation": [65535, 0], "turned in without the added vexation of": [65535, 0], "in without the added vexation of prayers": [65535, 0], "without the added vexation of prayers and": [65535, 0], "the added vexation of prayers and sid": [65535, 0], "added vexation of prayers and sid made": [65535, 0], "vexation of prayers and sid made mental": [65535, 0], "of prayers and sid made mental note": [65535, 0], "prayers and sid made mental note of": [65535, 0], "and sid made mental note of the": [65535, 0], "sid made mental note of the omission": [65535, 0], "tom presented himself before aunt polly who was": [65535, 0], "presented himself before aunt polly who was sitting": [65535, 0], "himself before aunt polly who was sitting by": [65535, 0], "before aunt polly who was sitting by an": [65535, 0], "aunt polly who was sitting by an open": [65535, 0], "polly who was sitting by an open window": [65535, 0], "who was sitting by an open window in": [65535, 0], "was sitting by an open window in a": [65535, 0], "sitting by an open window in a pleasant": [65535, 0], "by an open window in a pleasant rearward": [65535, 0], "an open window in a pleasant rearward apartment": [65535, 0], "open window in a pleasant rearward apartment which": [65535, 0], "window in a pleasant rearward apartment which was": [65535, 0], "in a pleasant rearward apartment which was bedroom": [65535, 0], "a pleasant rearward apartment which was bedroom breakfast": [65535, 0], "pleasant rearward apartment which was bedroom breakfast room": [65535, 0], "rearward apartment which was bedroom breakfast room dining": [65535, 0], "apartment which was bedroom breakfast room dining room": [65535, 0], "which was bedroom breakfast room dining room and": [65535, 0], "was bedroom breakfast room dining room and library": [65535, 0], "bedroom breakfast room dining room and library combined": [65535, 0], "breakfast room dining room and library combined the": [65535, 0], "room dining room and library combined the balmy": [65535, 0], "dining room and library combined the balmy summer": [65535, 0], "room and library combined the balmy summer air": [65535, 0], "and library combined the balmy summer air the": [65535, 0], "library combined the balmy summer air the restful": [65535, 0], "combined the balmy summer air the restful quiet": [65535, 0], "the balmy summer air the restful quiet the": [65535, 0], "balmy summer air the restful quiet the odor": [65535, 0], "summer air the restful quiet the odor of": [65535, 0], "air the restful quiet the odor of the": [65535, 0], "the restful quiet the odor of the flowers": [65535, 0], "restful quiet the odor of the flowers and": [65535, 0], "quiet the odor of the flowers and the": [65535, 0], "the odor of the flowers and the drowsing": [65535, 0], "odor of the flowers and the drowsing murmur": [65535, 0], "of the flowers and the drowsing murmur of": [65535, 0], "the flowers and the drowsing murmur of the": [65535, 0], "flowers and the drowsing murmur of the bees": [65535, 0], "and the drowsing murmur of the bees had": [65535, 0], "the drowsing murmur of the bees had had": [65535, 0], "drowsing murmur of the bees had had their": [65535, 0], "murmur of the bees had had their effect": [65535, 0], "of the bees had had their effect and": [65535, 0], "the bees had had their effect and she": [65535, 0], "bees had had their effect and she was": [65535, 0], "had had their effect and she was nodding": [65535, 0], "had their effect and she was nodding over": [65535, 0], "their effect and she was nodding over her": [65535, 0], "effect and she was nodding over her knitting": [65535, 0], "and she was nodding over her knitting for": [65535, 0], "she was nodding over her knitting for she": [65535, 0], "was nodding over her knitting for she had": [65535, 0], "nodding over her knitting for she had no": [65535, 0], "over her knitting for she had no company": [65535, 0], "her knitting for she had no company but": [65535, 0], "knitting for she had no company but the": [65535, 0], "for she had no company but the cat": [65535, 0], "she had no company but the cat and": [65535, 0], "had no company but the cat and it": [65535, 0], "no company but the cat and it was": [65535, 0], "company but the cat and it was asleep": [65535, 0], "but the cat and it was asleep in": [65535, 0], "the cat and it was asleep in her": [65535, 0], "cat and it was asleep in her lap": [65535, 0], "and it was asleep in her lap her": [65535, 0], "it was asleep in her lap her spectacles": [65535, 0], "was asleep in her lap her spectacles were": [65535, 0], "asleep in her lap her spectacles were propped": [65535, 0], "in her lap her spectacles were propped up": [65535, 0], "her lap her spectacles were propped up on": [65535, 0], "lap her spectacles were propped up on her": [65535, 0], "her spectacles were propped up on her gray": [65535, 0], "spectacles were propped up on her gray head": [65535, 0], "were propped up on her gray head for": [65535, 0], "propped up on her gray head for safety": [65535, 0], "up on her gray head for safety she": [65535, 0], "on her gray head for safety she had": [65535, 0], "her gray head for safety she had thought": [65535, 0], "gray head for safety she had thought that": [65535, 0], "head for safety she had thought that of": [65535, 0], "for safety she had thought that of course": [65535, 0], "safety she had thought that of course tom": [65535, 0], "she had thought that of course tom had": [65535, 0], "had thought that of course tom had deserted": [65535, 0], "thought that of course tom had deserted long": [65535, 0], "that of course tom had deserted long ago": [65535, 0], "of course tom had deserted long ago and": [65535, 0], "course tom had deserted long ago and she": [65535, 0], "tom had deserted long ago and she wondered": [65535, 0], "had deserted long ago and she wondered at": [65535, 0], "deserted long ago and she wondered at seeing": [65535, 0], "long ago and she wondered at seeing him": [65535, 0], "ago and she wondered at seeing him place": [65535, 0], "and she wondered at seeing him place himself": [65535, 0], "she wondered at seeing him place himself in": [65535, 0], "wondered at seeing him place himself in her": [65535, 0], "at seeing him place himself in her power": [65535, 0], "seeing him place himself in her power again": [65535, 0], "him place himself in her power again in": [65535, 0], "place himself in her power again in this": [65535, 0], "himself in her power again in this intrepid": [65535, 0], "in her power again in this intrepid way": [65535, 0], "her power again in this intrepid way he": [65535, 0], "power again in this intrepid way he said": [65535, 0], "again in this intrepid way he said mayn't": [65535, 0], "in this intrepid way he said mayn't i": [65535, 0], "this intrepid way he said mayn't i go": [65535, 0], "intrepid way he said mayn't i go and": [65535, 0], "way he said mayn't i go and play": [65535, 0], "he said mayn't i go and play now": [65535, 0], "said mayn't i go and play now aunt": [65535, 0], "mayn't i go and play now aunt what": [65535, 0], "i go and play now aunt what a'ready": [65535, 0], "go and play now aunt what a'ready how": [65535, 0], "and play now aunt what a'ready how much": [65535, 0], "play now aunt what a'ready how much have": [65535, 0], "now aunt what a'ready how much have you": [65535, 0], "aunt what a'ready how much have you done": [65535, 0], "what a'ready how much have you done it's": [65535, 0], "a'ready how much have you done it's all": [65535, 0], "how much have you done it's all done": [65535, 0], "much have you done it's all done aunt": [65535, 0], "have you done it's all done aunt tom": [65535, 0], "you done it's all done aunt tom don't": [65535, 0], "done it's all done aunt tom don't lie": [65535, 0], "it's all done aunt tom don't lie to": [65535, 0], "all done aunt tom don't lie to me": [65535, 0], "done aunt tom don't lie to me i": [65535, 0], "aunt tom don't lie to me i can't": [65535, 0], "tom don't lie to me i can't bear": [65535, 0], "don't lie to me i can't bear it": [65535, 0], "lie to me i can't bear it i": [65535, 0], "to me i can't bear it i ain't": [65535, 0], "me i can't bear it i ain't aunt": [65535, 0], "i can't bear it i ain't aunt it": [65535, 0], "can't bear it i ain't aunt it is": [65535, 0], "bear it i ain't aunt it is all": [65535, 0], "it i ain't aunt it is all done": [65535, 0], "i ain't aunt it is all done aunt": [65535, 0], "ain't aunt it is all done aunt polly": [65535, 0], "aunt it is all done aunt polly placed": [65535, 0], "it is all done aunt polly placed small": [65535, 0], "is all done aunt polly placed small trust": [65535, 0], "all done aunt polly placed small trust in": [65535, 0], "done aunt polly placed small trust in such": [65535, 0], "aunt polly placed small trust in such evidence": [65535, 0], "polly placed small trust in such evidence she": [65535, 0], "placed small trust in such evidence she went": [65535, 0], "small trust in such evidence she went out": [65535, 0], "trust in such evidence she went out to": [65535, 0], "in such evidence she went out to see": [65535, 0], "such evidence she went out to see for": [65535, 0], "evidence she went out to see for herself": [65535, 0], "she went out to see for herself and": [65535, 0], "went out to see for herself and she": [65535, 0], "out to see for herself and she would": [65535, 0], "to see for herself and she would have": [65535, 0], "see for herself and she would have been": [65535, 0], "for herself and she would have been content": [65535, 0], "herself and she would have been content to": [65535, 0], "and she would have been content to find": [65535, 0], "she would have been content to find twenty": [65535, 0], "would have been content to find twenty per": [65535, 0], "have been content to find twenty per cent": [65535, 0], "been content to find twenty per cent of": [65535, 0], "content to find twenty per cent of tom's": [65535, 0], "to find twenty per cent of tom's statement": [65535, 0], "find twenty per cent of tom's statement true": [65535, 0], "twenty per cent of tom's statement true when": [65535, 0], "per cent of tom's statement true when she": [65535, 0], "cent of tom's statement true when she found": [65535, 0], "of tom's statement true when she found the": [65535, 0], "tom's statement true when she found the entire": [65535, 0], "statement true when she found the entire fence": [65535, 0], "true when she found the entire fence whitewashed": [65535, 0], "when she found the entire fence whitewashed and": [65535, 0], "she found the entire fence whitewashed and not": [65535, 0], "found the entire fence whitewashed and not only": [65535, 0], "the entire fence whitewashed and not only whitewashed": [65535, 0], "entire fence whitewashed and not only whitewashed but": [65535, 0], "fence whitewashed and not only whitewashed but elaborately": [65535, 0], "whitewashed and not only whitewashed but elaborately coated": [65535, 0], "and not only whitewashed but elaborately coated and": [65535, 0], "not only whitewashed but elaborately coated and recoated": [65535, 0], "only whitewashed but elaborately coated and recoated and": [65535, 0], "whitewashed but elaborately coated and recoated and even": [65535, 0], "but elaborately coated and recoated and even a": [65535, 0], "elaborately coated and recoated and even a streak": [65535, 0], "coated and recoated and even a streak added": [65535, 0], "and recoated and even a streak added to": [65535, 0], "recoated and even a streak added to the": [65535, 0], "and even a streak added to the ground": [65535, 0], "even a streak added to the ground her": [65535, 0], "a streak added to the ground her astonishment": [65535, 0], "streak added to the ground her astonishment was": [65535, 0], "added to the ground her astonishment was almost": [65535, 0], "to the ground her astonishment was almost unspeakable": [65535, 0], "the ground her astonishment was almost unspeakable she": [65535, 0], "ground her astonishment was almost unspeakable she said": [65535, 0], "her astonishment was almost unspeakable she said well": [65535, 0], "astonishment was almost unspeakable she said well i": [65535, 0], "was almost unspeakable she said well i never": [65535, 0], "almost unspeakable she said well i never there's": [65535, 0], "unspeakable she said well i never there's no": [65535, 0], "she said well i never there's no getting": [65535, 0], "said well i never there's no getting round": [65535, 0], "well i never there's no getting round it": [65535, 0], "i never there's no getting round it you": [65535, 0], "never there's no getting round it you can": [65535, 0], "there's no getting round it you can work": [65535, 0], "no getting round it you can work when": [65535, 0], "getting round it you can work when you're": [65535, 0], "round it you can work when you're a": [65535, 0], "it you can work when you're a mind": [65535, 0], "you can work when you're a mind to": [65535, 0], "can work when you're a mind to tom": [65535, 0], "work when you're a mind to tom and": [65535, 0], "when you're a mind to tom and then": [65535, 0], "you're a mind to tom and then she": [65535, 0], "a mind to tom and then she diluted": [65535, 0], "mind to tom and then she diluted the": [65535, 0], "to tom and then she diluted the compliment": [65535, 0], "tom and then she diluted the compliment by": [65535, 0], "and then she diluted the compliment by adding": [65535, 0], "then she diluted the compliment by adding but": [65535, 0], "she diluted the compliment by adding but it's": [65535, 0], "diluted the compliment by adding but it's powerful": [65535, 0], "the compliment by adding but it's powerful seldom": [65535, 0], "compliment by adding but it's powerful seldom you're": [65535, 0], "by adding but it's powerful seldom you're a": [65535, 0], "adding but it's powerful seldom you're a mind": [65535, 0], "but it's powerful seldom you're a mind to": [65535, 0], "it's powerful seldom you're a mind to i'm": [65535, 0], "powerful seldom you're a mind to i'm bound": [65535, 0], "seldom you're a mind to i'm bound to": [65535, 0], "you're a mind to i'm bound to say": [65535, 0], "a mind to i'm bound to say well": [65535, 0], "mind to i'm bound to say well go": [65535, 0], "to i'm bound to say well go 'long": [65535, 0], "i'm bound to say well go 'long and": [65535, 0], "bound to say well go 'long and play": [65535, 0], "to say well go 'long and play but": [65535, 0], "say well go 'long and play but mind": [65535, 0], "well go 'long and play but mind you": [65535, 0], "go 'long and play but mind you get": [65535, 0], "'long and play but mind you get back": [65535, 0], "and play but mind you get back some": [65535, 0], "play but mind you get back some time": [65535, 0], "but mind you get back some time in": [65535, 0], "mind you get back some time in a": [65535, 0], "you get back some time in a week": [65535, 0], "get back some time in a week or": [65535, 0], "back some time in a week or i'll": [65535, 0], "some time in a week or i'll tan": [65535, 0], "time in a week or i'll tan you": [65535, 0], "in a week or i'll tan you she": [65535, 0], "a week or i'll tan you she was": [65535, 0], "week or i'll tan you she was so": [65535, 0], "or i'll tan you she was so overcome": [65535, 0], "i'll tan you she was so overcome by": [65535, 0], "tan you she was so overcome by the": [65535, 0], "you she was so overcome by the splendor": [65535, 0], "she was so overcome by the splendor of": [65535, 0], "was so overcome by the splendor of his": [65535, 0], "so overcome by the splendor of his achievement": [65535, 0], "overcome by the splendor of his achievement that": [65535, 0], "by the splendor of his achievement that she": [65535, 0], "the splendor of his achievement that she took": [65535, 0], "splendor of his achievement that she took him": [65535, 0], "of his achievement that she took him into": [65535, 0], "his achievement that she took him into the": [65535, 0], "achievement that she took him into the closet": [65535, 0], "that she took him into the closet and": [65535, 0], "she took him into the closet and selected": [65535, 0], "took him into the closet and selected a": [65535, 0], "him into the closet and selected a choice": [65535, 0], "into the closet and selected a choice apple": [65535, 0], "the closet and selected a choice apple and": [65535, 0], "closet and selected a choice apple and delivered": [65535, 0], "and selected a choice apple and delivered it": [65535, 0], "selected a choice apple and delivered it to": [65535, 0], "a choice apple and delivered it to him": [65535, 0], "choice apple and delivered it to him along": [65535, 0], "apple and delivered it to him along with": [65535, 0], "and delivered it to him along with an": [65535, 0], "delivered it to him along with an improving": [65535, 0], "it to him along with an improving lecture": [65535, 0], "to him along with an improving lecture upon": [65535, 0], "him along with an improving lecture upon the": [65535, 0], "along with an improving lecture upon the added": [65535, 0], "with an improving lecture upon the added value": [65535, 0], "an improving lecture upon the added value and": [65535, 0], "improving lecture upon the added value and flavor": [65535, 0], "lecture upon the added value and flavor a": [65535, 0], "upon the added value and flavor a treat": [65535, 0], "the added value and flavor a treat took": [65535, 0], "added value and flavor a treat took to": [65535, 0], "value and flavor a treat took to itself": [65535, 0], "and flavor a treat took to itself when": [65535, 0], "flavor a treat took to itself when it": [65535, 0], "a treat took to itself when it came": [65535, 0], "treat took to itself when it came without": [65535, 0], "took to itself when it came without sin": [65535, 0], "to itself when it came without sin through": [65535, 0], "itself when it came without sin through virtuous": [65535, 0], "when it came without sin through virtuous effort": [65535, 0], "it came without sin through virtuous effort and": [65535, 0], "came without sin through virtuous effort and while": [65535, 0], "without sin through virtuous effort and while she": [65535, 0], "sin through virtuous effort and while she closed": [65535, 0], "through virtuous effort and while she closed with": [65535, 0], "virtuous effort and while she closed with a": [65535, 0], "effort and while she closed with a happy": [65535, 0], "and while she closed with a happy scriptural": [65535, 0], "while she closed with a happy scriptural flourish": [65535, 0], "she closed with a happy scriptural flourish he": [65535, 0], "closed with a happy scriptural flourish he hooked": [65535, 0], "with a happy scriptural flourish he hooked a": [65535, 0], "a happy scriptural flourish he hooked a doughnut": [65535, 0], "happy scriptural flourish he hooked a doughnut then": [65535, 0], "scriptural flourish he hooked a doughnut then he": [65535, 0], "flourish he hooked a doughnut then he skipped": [65535, 0], "he hooked a doughnut then he skipped out": [65535, 0], "hooked a doughnut then he skipped out and": [65535, 0], "a doughnut then he skipped out and saw": [65535, 0], "doughnut then he skipped out and saw sid": [65535, 0], "then he skipped out and saw sid just": [65535, 0], "he skipped out and saw sid just starting": [65535, 0], "skipped out and saw sid just starting up": [65535, 0], "out and saw sid just starting up the": [65535, 0], "and saw sid just starting up the outside": [65535, 0], "saw sid just starting up the outside stairway": [65535, 0], "sid just starting up the outside stairway that": [65535, 0], "just starting up the outside stairway that led": [65535, 0], "starting up the outside stairway that led to": [65535, 0], "up the outside stairway that led to the": [65535, 0], "the outside stairway that led to the back": [65535, 0], "outside stairway that led to the back rooms": [65535, 0], "stairway that led to the back rooms on": [65535, 0], "that led to the back rooms on the": [65535, 0], "led to the back rooms on the second": [65535, 0], "to the back rooms on the second floor": [65535, 0], "the back rooms on the second floor clods": [65535, 0], "back rooms on the second floor clods were": [65535, 0], "rooms on the second floor clods were handy": [65535, 0], "on the second floor clods were handy and": [65535, 0], "the second floor clods were handy and the": [65535, 0], "second floor clods were handy and the air": [65535, 0], "floor clods were handy and the air was": [65535, 0], "clods were handy and the air was full": [65535, 0], "were handy and the air was full of": [65535, 0], "handy and the air was full of them": [65535, 0], "and the air was full of them in": [65535, 0], "the air was full of them in a": [65535, 0], "air was full of them in a twinkling": [65535, 0], "was full of them in a twinkling they": [65535, 0], "full of them in a twinkling they raged": [65535, 0], "of them in a twinkling they raged around": [65535, 0], "them in a twinkling they raged around sid": [65535, 0], "in a twinkling they raged around sid like": [65535, 0], "a twinkling they raged around sid like a": [65535, 0], "twinkling they raged around sid like a hail": [65535, 0], "they raged around sid like a hail storm": [65535, 0], "raged around sid like a hail storm and": [65535, 0], "around sid like a hail storm and before": [65535, 0], "sid like a hail storm and before aunt": [65535, 0], "like a hail storm and before aunt polly": [65535, 0], "a hail storm and before aunt polly could": [65535, 0], "hail storm and before aunt polly could collect": [65535, 0], "storm and before aunt polly could collect her": [65535, 0], "and before aunt polly could collect her surprised": [65535, 0], "before aunt polly could collect her surprised faculties": [65535, 0], "aunt polly could collect her surprised faculties and": [65535, 0], "polly could collect her surprised faculties and sally": [65535, 0], "could collect her surprised faculties and sally to": [65535, 0], "collect her surprised faculties and sally to the": [65535, 0], "her surprised faculties and sally to the rescue": [65535, 0], "surprised faculties and sally to the rescue six": [65535, 0], "faculties and sally to the rescue six or": [65535, 0], "and sally to the rescue six or seven": [65535, 0], "sally to the rescue six or seven clods": [65535, 0], "to the rescue six or seven clods had": [65535, 0], "the rescue six or seven clods had taken": [65535, 0], "rescue six or seven clods had taken personal": [65535, 0], "six or seven clods had taken personal effect": [65535, 0], "or seven clods had taken personal effect and": [65535, 0], "seven clods had taken personal effect and tom": [65535, 0], "clods had taken personal effect and tom was": [65535, 0], "had taken personal effect and tom was over": [65535, 0], "taken personal effect and tom was over the": [65535, 0], "personal effect and tom was over the fence": [65535, 0], "effect and tom was over the fence and": [65535, 0], "and tom was over the fence and gone": [65535, 0], "tom was over the fence and gone there": [65535, 0], "was over the fence and gone there was": [65535, 0], "over the fence and gone there was a": [65535, 0], "the fence and gone there was a gate": [65535, 0], "fence and gone there was a gate but": [65535, 0], "and gone there was a gate but as": [65535, 0], "gone there was a gate but as a": [65535, 0], "there was a gate but as a general": [65535, 0], "was a gate but as a general thing": [65535, 0], "a gate but as a general thing he": [65535, 0], "gate but as a general thing he was": [65535, 0], "but as a general thing he was too": [65535, 0], "as a general thing he was too crowded": [65535, 0], "a general thing he was too crowded for": [65535, 0], "general thing he was too crowded for time": [65535, 0], "thing he was too crowded for time to": [65535, 0], "he was too crowded for time to make": [65535, 0], "was too crowded for time to make use": [65535, 0], "too crowded for time to make use of": [65535, 0], "crowded for time to make use of it": [65535, 0], "for time to make use of it his": [65535, 0], "time to make use of it his soul": [65535, 0], "to make use of it his soul was": [65535, 0], "make use of it his soul was at": [65535, 0], "use of it his soul was at peace": [65535, 0], "of it his soul was at peace now": [65535, 0], "it his soul was at peace now that": [65535, 0], "his soul was at peace now that he": [65535, 0], "soul was at peace now that he had": [65535, 0], "was at peace now that he had settled": [65535, 0], "at peace now that he had settled with": [65535, 0], "peace now that he had settled with sid": [65535, 0], "now that he had settled with sid for": [65535, 0], "that he had settled with sid for calling": [65535, 0], "he had settled with sid for calling attention": [65535, 0], "had settled with sid for calling attention to": [65535, 0], "settled with sid for calling attention to his": [65535, 0], "with sid for calling attention to his black": [65535, 0], "sid for calling attention to his black thread": [65535, 0], "for calling attention to his black thread and": [65535, 0], "calling attention to his black thread and getting": [65535, 0], "attention to his black thread and getting him": [65535, 0], "to his black thread and getting him into": [65535, 0], "his black thread and getting him into trouble": [65535, 0], "black thread and getting him into trouble tom": [65535, 0], "thread and getting him into trouble tom skirted": [65535, 0], "and getting him into trouble tom skirted the": [65535, 0], "getting him into trouble tom skirted the block": [65535, 0], "him into trouble tom skirted the block and": [65535, 0], "into trouble tom skirted the block and came": [65535, 0], "trouble tom skirted the block and came round": [65535, 0], "tom skirted the block and came round into": [65535, 0], "skirted the block and came round into a": [65535, 0], "the block and came round into a muddy": [65535, 0], "block and came round into a muddy alley": [65535, 0], "and came round into a muddy alley that": [65535, 0], "came round into a muddy alley that led": [65535, 0], "round into a muddy alley that led by": [65535, 0], "into a muddy alley that led by the": [65535, 0], "a muddy alley that led by the back": [65535, 0], "muddy alley that led by the back of": [65535, 0], "alley that led by the back of his": [65535, 0], "that led by the back of his aunt's": [65535, 0], "led by the back of his aunt's cowstable": [65535, 0], "by the back of his aunt's cowstable he": [65535, 0], "the back of his aunt's cowstable he presently": [65535, 0], "back of his aunt's cowstable he presently got": [65535, 0], "of his aunt's cowstable he presently got safely": [65535, 0], "his aunt's cowstable he presently got safely beyond": [65535, 0], "aunt's cowstable he presently got safely beyond the": [65535, 0], "cowstable he presently got safely beyond the reach": [65535, 0], "he presently got safely beyond the reach of": [65535, 0], "presently got safely beyond the reach of capture": [65535, 0], "got safely beyond the reach of capture and": [65535, 0], "safely beyond the reach of capture and punishment": [65535, 0], "beyond the reach of capture and punishment and": [65535, 0], "the reach of capture and punishment and hastened": [65535, 0], "reach of capture and punishment and hastened toward": [65535, 0], "of capture and punishment and hastened toward the": [65535, 0], "capture and punishment and hastened toward the public": [65535, 0], "and punishment and hastened toward the public square": [65535, 0], "punishment and hastened toward the public square of": [65535, 0], "and hastened toward the public square of the": [65535, 0], "hastened toward the public square of the village": [65535, 0], "toward the public square of the village where": [65535, 0], "the public square of the village where two": [65535, 0], "public square of the village where two military": [65535, 0], "square of the village where two military companies": [65535, 0], "of the village where two military companies of": [65535, 0], "the village where two military companies of boys": [65535, 0], "village where two military companies of boys had": [65535, 0], "where two military companies of boys had met": [65535, 0], "two military companies of boys had met for": [65535, 0], "military companies of boys had met for conflict": [65535, 0], "companies of boys had met for conflict according": [65535, 0], "of boys had met for conflict according to": [65535, 0], "boys had met for conflict according to previous": [65535, 0], "had met for conflict according to previous appointment": [65535, 0], "met for conflict according to previous appointment tom": [65535, 0], "for conflict according to previous appointment tom was": [65535, 0], "conflict according to previous appointment tom was general": [65535, 0], "according to previous appointment tom was general of": [65535, 0], "to previous appointment tom was general of one": [65535, 0], "previous appointment tom was general of one of": [65535, 0], "appointment tom was general of one of these": [65535, 0], "tom was general of one of these armies": [65535, 0], "was general of one of these armies joe": [65535, 0], "general of one of these armies joe harper": [65535, 0], "of one of these armies joe harper a": [65535, 0], "one of these armies joe harper a bosom": [65535, 0], "of these armies joe harper a bosom friend": [65535, 0], "these armies joe harper a bosom friend general": [65535, 0], "armies joe harper a bosom friend general of": [65535, 0], "joe harper a bosom friend general of the": [65535, 0], "harper a bosom friend general of the other": [65535, 0], "a bosom friend general of the other these": [65535, 0], "bosom friend general of the other these two": [65535, 0], "friend general of the other these two great": [65535, 0], "general of the other these two great commanders": [65535, 0], "of the other these two great commanders did": [65535, 0], "the other these two great commanders did not": [65535, 0], "other these two great commanders did not condescend": [65535, 0], "these two great commanders did not condescend to": [65535, 0], "two great commanders did not condescend to fight": [65535, 0], "great commanders did not condescend to fight in": [65535, 0], "commanders did not condescend to fight in person": [65535, 0], "did not condescend to fight in person that": [65535, 0], "not condescend to fight in person that being": [65535, 0], "condescend to fight in person that being better": [65535, 0], "to fight in person that being better suited": [65535, 0], "fight in person that being better suited to": [65535, 0], "in person that being better suited to the": [65535, 0], "person that being better suited to the still": [65535, 0], "that being better suited to the still smaller": [65535, 0], "being better suited to the still smaller fry": [65535, 0], "better suited to the still smaller fry but": [65535, 0], "suited to the still smaller fry but sat": [65535, 0], "to the still smaller fry but sat together": [65535, 0], "the still smaller fry but sat together on": [65535, 0], "still smaller fry but sat together on an": [65535, 0], "smaller fry but sat together on an eminence": [65535, 0], "fry but sat together on an eminence and": [65535, 0], "but sat together on an eminence and conducted": [65535, 0], "sat together on an eminence and conducted the": [65535, 0], "together on an eminence and conducted the field": [65535, 0], "on an eminence and conducted the field operations": [65535, 0], "an eminence and conducted the field operations by": [65535, 0], "eminence and conducted the field operations by orders": [65535, 0], "and conducted the field operations by orders delivered": [65535, 0], "conducted the field operations by orders delivered through": [65535, 0], "the field operations by orders delivered through aides": [65535, 0], "field operations by orders delivered through aides de": [65535, 0], "operations by orders delivered through aides de camp": [65535, 0], "by orders delivered through aides de camp tom's": [65535, 0], "orders delivered through aides de camp tom's army": [65535, 0], "delivered through aides de camp tom's army won": [65535, 0], "through aides de camp tom's army won a": [65535, 0], "aides de camp tom's army won a great": [65535, 0], "de camp tom's army won a great victory": [65535, 0], "camp tom's army won a great victory after": [65535, 0], "tom's army won a great victory after a": [65535, 0], "army won a great victory after a long": [65535, 0], "won a great victory after a long and": [65535, 0], "a great victory after a long and hard": [65535, 0], "great victory after a long and hard fought": [65535, 0], "victory after a long and hard fought battle": [65535, 0], "after a long and hard fought battle then": [65535, 0], "a long and hard fought battle then the": [65535, 0], "long and hard fought battle then the dead": [65535, 0], "and hard fought battle then the dead were": [65535, 0], "hard fought battle then the dead were counted": [65535, 0], "fought battle then the dead were counted prisoners": [65535, 0], "battle then the dead were counted prisoners exchanged": [65535, 0], "then the dead were counted prisoners exchanged the": [65535, 0], "the dead were counted prisoners exchanged the terms": [65535, 0], "dead were counted prisoners exchanged the terms of": [65535, 0], "were counted prisoners exchanged the terms of the": [65535, 0], "counted prisoners exchanged the terms of the next": [65535, 0], "prisoners exchanged the terms of the next disagreement": [65535, 0], "exchanged the terms of the next disagreement agreed": [65535, 0], "the terms of the next disagreement agreed upon": [65535, 0], "terms of the next disagreement agreed upon and": [65535, 0], "of the next disagreement agreed upon and the": [65535, 0], "the next disagreement agreed upon and the day": [65535, 0], "next disagreement agreed upon and the day for": [65535, 0], "disagreement agreed upon and the day for the": [65535, 0], "agreed upon and the day for the necessary": [65535, 0], "upon and the day for the necessary battle": [65535, 0], "and the day for the necessary battle appointed": [65535, 0], "the day for the necessary battle appointed after": [65535, 0], "day for the necessary battle appointed after which": [65535, 0], "for the necessary battle appointed after which the": [65535, 0], "the necessary battle appointed after which the armies": [65535, 0], "necessary battle appointed after which the armies fell": [65535, 0], "battle appointed after which the armies fell into": [65535, 0], "appointed after which the armies fell into line": [65535, 0], "after which the armies fell into line and": [65535, 0], "which the armies fell into line and marched": [65535, 0], "the armies fell into line and marched away": [65535, 0], "armies fell into line and marched away and": [65535, 0], "fell into line and marched away and tom": [65535, 0], "into line and marched away and tom turned": [65535, 0], "line and marched away and tom turned homeward": [65535, 0], "and marched away and tom turned homeward alone": [65535, 0], "marched away and tom turned homeward alone as": [65535, 0], "away and tom turned homeward alone as he": [65535, 0], "and tom turned homeward alone as he was": [65535, 0], "tom turned homeward alone as he was passing": [65535, 0], "turned homeward alone as he was passing by": [65535, 0], "homeward alone as he was passing by the": [65535, 0], "alone as he was passing by the house": [65535, 0], "as he was passing by the house where": [65535, 0], "he was passing by the house where jeff": [65535, 0], "was passing by the house where jeff thatcher": [65535, 0], "passing by the house where jeff thatcher lived": [65535, 0], "by the house where jeff thatcher lived he": [65535, 0], "the house where jeff thatcher lived he saw": [65535, 0], "house where jeff thatcher lived he saw a": [65535, 0], "where jeff thatcher lived he saw a new": [65535, 0], "jeff thatcher lived he saw a new girl": [65535, 0], "thatcher lived he saw a new girl in": [65535, 0], "lived he saw a new girl in the": [65535, 0], "he saw a new girl in the garden": [65535, 0], "saw a new girl in the garden a": [65535, 0], "a new girl in the garden a lovely": [65535, 0], "new girl in the garden a lovely little": [65535, 0], "girl in the garden a lovely little blue": [65535, 0], "in the garden a lovely little blue eyed": [65535, 0], "the garden a lovely little blue eyed creature": [65535, 0], "garden a lovely little blue eyed creature with": [65535, 0], "a lovely little blue eyed creature with yellow": [65535, 0], "lovely little blue eyed creature with yellow hair": [65535, 0], "little blue eyed creature with yellow hair plaited": [65535, 0], "blue eyed creature with yellow hair plaited into": [65535, 0], "eyed creature with yellow hair plaited into two": [65535, 0], "creature with yellow hair plaited into two long": [65535, 0], "with yellow hair plaited into two long tails": [65535, 0], "yellow hair plaited into two long tails white": [65535, 0], "hair plaited into two long tails white summer": [65535, 0], "plaited into two long tails white summer frock": [65535, 0], "into two long tails white summer frock and": [65535, 0], "two long tails white summer frock and embroidered": [65535, 0], "long tails white summer frock and embroidered pantalettes": [65535, 0], "tails white summer frock and embroidered pantalettes the": [65535, 0], "white summer frock and embroidered pantalettes the fresh": [65535, 0], "summer frock and embroidered pantalettes the fresh crowned": [65535, 0], "frock and embroidered pantalettes the fresh crowned hero": [65535, 0], "and embroidered pantalettes the fresh crowned hero fell": [65535, 0], "embroidered pantalettes the fresh crowned hero fell without": [65535, 0], "pantalettes the fresh crowned hero fell without firing": [65535, 0], "the fresh crowned hero fell without firing a": [65535, 0], "fresh crowned hero fell without firing a shot": [65535, 0], "crowned hero fell without firing a shot a": [65535, 0], "hero fell without firing a shot a certain": [65535, 0], "fell without firing a shot a certain amy": [65535, 0], "without firing a shot a certain amy lawrence": [65535, 0], "firing a shot a certain amy lawrence vanished": [65535, 0], "a shot a certain amy lawrence vanished out": [65535, 0], "shot a certain amy lawrence vanished out of": [65535, 0], "a certain amy lawrence vanished out of his": [65535, 0], "certain amy lawrence vanished out of his heart": [65535, 0], "amy lawrence vanished out of his heart and": [65535, 0], "lawrence vanished out of his heart and left": [65535, 0], "vanished out of his heart and left not": [65535, 0], "out of his heart and left not even": [65535, 0], "of his heart and left not even a": [65535, 0], "his heart and left not even a memory": [65535, 0], "heart and left not even a memory of": [65535, 0], "and left not even a memory of herself": [65535, 0], "left not even a memory of herself behind": [65535, 0], "not even a memory of herself behind he": [65535, 0], "even a memory of herself behind he had": [65535, 0], "a memory of herself behind he had thought": [65535, 0], "memory of herself behind he had thought he": [65535, 0], "of herself behind he had thought he loved": [65535, 0], "herself behind he had thought he loved her": [65535, 0], "behind he had thought he loved her to": [65535, 0], "he had thought he loved her to distraction": [65535, 0], "had thought he loved her to distraction he": [65535, 0], "thought he loved her to distraction he had": [65535, 0], "he loved her to distraction he had regarded": [65535, 0], "loved her to distraction he had regarded his": [65535, 0], "her to distraction he had regarded his passion": [65535, 0], "to distraction he had regarded his passion as": [65535, 0], "distraction he had regarded his passion as adoration": [65535, 0], "he had regarded his passion as adoration and": [65535, 0], "had regarded his passion as adoration and behold": [65535, 0], "regarded his passion as adoration and behold it": [65535, 0], "his passion as adoration and behold it was": [65535, 0], "passion as adoration and behold it was only": [65535, 0], "as adoration and behold it was only a": [65535, 0], "adoration and behold it was only a poor": [65535, 0], "and behold it was only a poor little": [65535, 0], "behold it was only a poor little evanescent": [65535, 0], "it was only a poor little evanescent partiality": [65535, 0], "was only a poor little evanescent partiality he": [65535, 0], "only a poor little evanescent partiality he had": [65535, 0], "a poor little evanescent partiality he had been": [65535, 0], "poor little evanescent partiality he had been months": [65535, 0], "little evanescent partiality he had been months winning": [65535, 0], "evanescent partiality he had been months winning her": [65535, 0], "partiality he had been months winning her she": [65535, 0], "he had been months winning her she had": [65535, 0], "had been months winning her she had confessed": [65535, 0], "been months winning her she had confessed hardly": [65535, 0], "months winning her she had confessed hardly a": [65535, 0], "winning her she had confessed hardly a week": [65535, 0], "her she had confessed hardly a week ago": [65535, 0], "she had confessed hardly a week ago he": [65535, 0], "had confessed hardly a week ago he had": [65535, 0], "confessed hardly a week ago he had been": [65535, 0], "hardly a week ago he had been the": [65535, 0], "a week ago he had been the happiest": [65535, 0], "week ago he had been the happiest and": [65535, 0], "ago he had been the happiest and the": [65535, 0], "he had been the happiest and the proudest": [65535, 0], "had been the happiest and the proudest boy": [65535, 0], "been the happiest and the proudest boy in": [65535, 0], "the happiest and the proudest boy in the": [65535, 0], "happiest and the proudest boy in the world": [65535, 0], "and the proudest boy in the world only": [65535, 0], "the proudest boy in the world only seven": [65535, 0], "proudest boy in the world only seven short": [65535, 0], "boy in the world only seven short days": [65535, 0], "in the world only seven short days and": [65535, 0], "the world only seven short days and here": [65535, 0], "world only seven short days and here in": [65535, 0], "only seven short days and here in one": [65535, 0], "seven short days and here in one instant": [65535, 0], "short days and here in one instant of": [65535, 0], "days and here in one instant of time": [65535, 0], "and here in one instant of time she": [65535, 0], "here in one instant of time she had": [65535, 0], "in one instant of time she had gone": [65535, 0], "one instant of time she had gone out": [65535, 0], "instant of time she had gone out of": [65535, 0], "of time she had gone out of his": [65535, 0], "time she had gone out of his heart": [65535, 0], "she had gone out of his heart like": [65535, 0], "had gone out of his heart like a": [65535, 0], "gone out of his heart like a casual": [65535, 0], "out of his heart like a casual stranger": [65535, 0], "of his heart like a casual stranger whose": [65535, 0], "his heart like a casual stranger whose visit": [65535, 0], "heart like a casual stranger whose visit is": [65535, 0], "like a casual stranger whose visit is done": [65535, 0], "a casual stranger whose visit is done he": [65535, 0], "casual stranger whose visit is done he worshipped": [65535, 0], "stranger whose visit is done he worshipped this": [65535, 0], "whose visit is done he worshipped this new": [65535, 0], "visit is done he worshipped this new angel": [65535, 0], "is done he worshipped this new angel with": [65535, 0], "done he worshipped this new angel with furtive": [65535, 0], "he worshipped this new angel with furtive eye": [65535, 0], "worshipped this new angel with furtive eye till": [65535, 0], "this new angel with furtive eye till he": [65535, 0], "new angel with furtive eye till he saw": [65535, 0], "angel with furtive eye till he saw that": [65535, 0], "with furtive eye till he saw that she": [65535, 0], "furtive eye till he saw that she had": [65535, 0], "eye till he saw that she had discovered": [65535, 0], "till he saw that she had discovered him": [65535, 0], "he saw that she had discovered him then": [65535, 0], "saw that she had discovered him then he": [65535, 0], "that she had discovered him then he pretended": [65535, 0], "she had discovered him then he pretended he": [65535, 0], "had discovered him then he pretended he did": [65535, 0], "discovered him then he pretended he did not": [65535, 0], "him then he pretended he did not know": [65535, 0], "then he pretended he did not know she": [65535, 0], "he pretended he did not know she was": [65535, 0], "pretended he did not know she was present": [65535, 0], "he did not know she was present and": [65535, 0], "did not know she was present and began": [65535, 0], "not know she was present and began to": [65535, 0], "know she was present and began to show": [65535, 0], "she was present and began to show off": [65535, 0], "was present and began to show off in": [65535, 0], "present and began to show off in all": [65535, 0], "and began to show off in all sorts": [65535, 0], "began to show off in all sorts of": [65535, 0], "to show off in all sorts of absurd": [65535, 0], "show off in all sorts of absurd boyish": [65535, 0], "off in all sorts of absurd boyish ways": [65535, 0], "in all sorts of absurd boyish ways in": [65535, 0], "all sorts of absurd boyish ways in order": [65535, 0], "sorts of absurd boyish ways in order to": [65535, 0], "of absurd boyish ways in order to win": [65535, 0], "absurd boyish ways in order to win her": [65535, 0], "boyish ways in order to win her admiration": [65535, 0], "ways in order to win her admiration he": [65535, 0], "in order to win her admiration he kept": [65535, 0], "order to win her admiration he kept up": [65535, 0], "to win her admiration he kept up this": [65535, 0], "win her admiration he kept up this grotesque": [65535, 0], "her admiration he kept up this grotesque foolishness": [65535, 0], "admiration he kept up this grotesque foolishness for": [65535, 0], "he kept up this grotesque foolishness for some": [65535, 0], "kept up this grotesque foolishness for some time": [65535, 0], "up this grotesque foolishness for some time but": [65535, 0], "this grotesque foolishness for some time but by": [65535, 0], "grotesque foolishness for some time but by and": [65535, 0], "foolishness for some time but by and by": [65535, 0], "for some time but by and by while": [65535, 0], "some time but by and by while he": [65535, 0], "time but by and by while he was": [65535, 0], "but by and by while he was in": [65535, 0], "by and by while he was in the": [65535, 0], "and by while he was in the midst": [65535, 0], "by while he was in the midst of": [65535, 0], "while he was in the midst of some": [65535, 0], "he was in the midst of some dangerous": [65535, 0], "was in the midst of some dangerous gymnastic": [65535, 0], "in the midst of some dangerous gymnastic performances": [65535, 0], "the midst of some dangerous gymnastic performances he": [65535, 0], "midst of some dangerous gymnastic performances he glanced": [65535, 0], "of some dangerous gymnastic performances he glanced aside": [65535, 0], "some dangerous gymnastic performances he glanced aside and": [65535, 0], "dangerous gymnastic performances he glanced aside and saw": [65535, 0], "gymnastic performances he glanced aside and saw that": [65535, 0], "performances he glanced aside and saw that the": [65535, 0], "he glanced aside and saw that the little": [65535, 0], "glanced aside and saw that the little girl": [65535, 0], "aside and saw that the little girl was": [65535, 0], "and saw that the little girl was wending": [65535, 0], "saw that the little girl was wending her": [65535, 0], "that the little girl was wending her way": [65535, 0], "the little girl was wending her way toward": [65535, 0], "little girl was wending her way toward the": [65535, 0], "girl was wending her way toward the house": [65535, 0], "was wending her way toward the house tom": [65535, 0], "wending her way toward the house tom came": [65535, 0], "her way toward the house tom came up": [65535, 0], "way toward the house tom came up to": [65535, 0], "toward the house tom came up to the": [65535, 0], "the house tom came up to the fence": [65535, 0], "house tom came up to the fence and": [65535, 0], "tom came up to the fence and leaned": [65535, 0], "came up to the fence and leaned on": [65535, 0], "up to the fence and leaned on it": [65535, 0], "to the fence and leaned on it grieving": [65535, 0], "the fence and leaned on it grieving and": [65535, 0], "fence and leaned on it grieving and hoping": [65535, 0], "and leaned on it grieving and hoping she": [65535, 0], "leaned on it grieving and hoping she would": [65535, 0], "on it grieving and hoping she would tarry": [65535, 0], "it grieving and hoping she would tarry yet": [65535, 0], "grieving and hoping she would tarry yet awhile": [65535, 0], "and hoping she would tarry yet awhile longer": [65535, 0], "hoping she would tarry yet awhile longer she": [65535, 0], "she would tarry yet awhile longer she halted": [65535, 0], "would tarry yet awhile longer she halted a": [65535, 0], "tarry yet awhile longer she halted a moment": [65535, 0], "yet awhile longer she halted a moment on": [65535, 0], "awhile longer she halted a moment on the": [65535, 0], "longer she halted a moment on the steps": [65535, 0], "she halted a moment on the steps and": [65535, 0], "halted a moment on the steps and then": [65535, 0], "a moment on the steps and then moved": [65535, 0], "moment on the steps and then moved toward": [65535, 0], "on the steps and then moved toward the": [65535, 0], "the steps and then moved toward the door": [65535, 0], "steps and then moved toward the door tom": [65535, 0], "and then moved toward the door tom heaved": [65535, 0], "then moved toward the door tom heaved a": [65535, 0], "moved toward the door tom heaved a great": [65535, 0], "toward the door tom heaved a great sigh": [65535, 0], "the door tom heaved a great sigh as": [65535, 0], "door tom heaved a great sigh as she": [65535, 0], "tom heaved a great sigh as she put": [65535, 0], "heaved a great sigh as she put her": [65535, 0], "a great sigh as she put her foot": [65535, 0], "great sigh as she put her foot on": [65535, 0], "sigh as she put her foot on the": [65535, 0], "as she put her foot on the threshold": [65535, 0], "she put her foot on the threshold but": [65535, 0], "put her foot on the threshold but his": [65535, 0], "her foot on the threshold but his face": [65535, 0], "foot on the threshold but his face lit": [65535, 0], "on the threshold but his face lit up": [65535, 0], "the threshold but his face lit up right": [65535, 0], "threshold but his face lit up right away": [65535, 0], "but his face lit up right away for": [65535, 0], "his face lit up right away for she": [65535, 0], "face lit up right away for she tossed": [65535, 0], "lit up right away for she tossed a": [65535, 0], "up right away for she tossed a pansy": [65535, 0], "right away for she tossed a pansy over": [65535, 0], "away for she tossed a pansy over the": [65535, 0], "for she tossed a pansy over the fence": [65535, 0], "she tossed a pansy over the fence a": [65535, 0], "tossed a pansy over the fence a moment": [65535, 0], "a pansy over the fence a moment before": [65535, 0], "pansy over the fence a moment before she": [65535, 0], "over the fence a moment before she disappeared": [65535, 0], "the fence a moment before she disappeared the": [65535, 0], "fence a moment before she disappeared the boy": [65535, 0], "a moment before she disappeared the boy ran": [65535, 0], "moment before she disappeared the boy ran around": [65535, 0], "before she disappeared the boy ran around and": [65535, 0], "she disappeared the boy ran around and stopped": [65535, 0], "disappeared the boy ran around and stopped within": [65535, 0], "the boy ran around and stopped within a": [65535, 0], "boy ran around and stopped within a foot": [65535, 0], "ran around and stopped within a foot or": [65535, 0], "around and stopped within a foot or two": [65535, 0], "and stopped within a foot or two of": [65535, 0], "stopped within a foot or two of the": [65535, 0], "within a foot or two of the flower": [65535, 0], "a foot or two of the flower and": [65535, 0], "foot or two of the flower and then": [65535, 0], "or two of the flower and then shaded": [65535, 0], "two of the flower and then shaded his": [65535, 0], "of the flower and then shaded his eyes": [65535, 0], "the flower and then shaded his eyes with": [65535, 0], "flower and then shaded his eyes with his": [65535, 0], "and then shaded his eyes with his hand": [65535, 0], "then shaded his eyes with his hand and": [65535, 0], "shaded his eyes with his hand and began": [65535, 0], "his eyes with his hand and began to": [65535, 0], "eyes with his hand and began to look": [65535, 0], "with his hand and began to look down": [65535, 0], "his hand and began to look down street": [65535, 0], "hand and began to look down street as": [65535, 0], "and began to look down street as if": [65535, 0], "began to look down street as if he": [65535, 0], "to look down street as if he had": [65535, 0], "look down street as if he had discovered": [65535, 0], "down street as if he had discovered something": [65535, 0], "street as if he had discovered something of": [65535, 0], "as if he had discovered something of interest": [65535, 0], "if he had discovered something of interest going": [65535, 0], "he had discovered something of interest going on": [65535, 0], "had discovered something of interest going on in": [65535, 0], "discovered something of interest going on in that": [65535, 0], "something of interest going on in that direction": [65535, 0], "of interest going on in that direction presently": [65535, 0], "interest going on in that direction presently he": [65535, 0], "going on in that direction presently he picked": [65535, 0], "on in that direction presently he picked up": [65535, 0], "in that direction presently he picked up a": [65535, 0], "that direction presently he picked up a straw": [65535, 0], "direction presently he picked up a straw and": [65535, 0], "presently he picked up a straw and began": [65535, 0], "he picked up a straw and began trying": [65535, 0], "picked up a straw and began trying to": [65535, 0], "up a straw and began trying to balance": [65535, 0], "a straw and began trying to balance it": [65535, 0], "straw and began trying to balance it on": [65535, 0], "and began trying to balance it on his": [65535, 0], "began trying to balance it on his nose": [65535, 0], "trying to balance it on his nose with": [65535, 0], "to balance it on his nose with his": [65535, 0], "balance it on his nose with his head": [65535, 0], "it on his nose with his head tilted": [65535, 0], "on his nose with his head tilted far": [65535, 0], "his nose with his head tilted far back": [65535, 0], "nose with his head tilted far back and": [65535, 0], "with his head tilted far back and as": [65535, 0], "his head tilted far back and as he": [65535, 0], "head tilted far back and as he moved": [65535, 0], "tilted far back and as he moved from": [65535, 0], "far back and as he moved from side": [65535, 0], "back and as he moved from side to": [65535, 0], "and as he moved from side to side": [65535, 0], "as he moved from side to side in": [65535, 0], "he moved from side to side in his": [65535, 0], "moved from side to side in his efforts": [65535, 0], "from side to side in his efforts he": [65535, 0], "side to side in his efforts he edged": [65535, 0], "to side in his efforts he edged nearer": [65535, 0], "side in his efforts he edged nearer and": [65535, 0], "in his efforts he edged nearer and nearer": [65535, 0], "his efforts he edged nearer and nearer toward": [65535, 0], "efforts he edged nearer and nearer toward the": [65535, 0], "he edged nearer and nearer toward the pansy": [65535, 0], "edged nearer and nearer toward the pansy finally": [65535, 0], "nearer and nearer toward the pansy finally his": [65535, 0], "and nearer toward the pansy finally his bare": [65535, 0], "nearer toward the pansy finally his bare foot": [65535, 0], "toward the pansy finally his bare foot rested": [65535, 0], "the pansy finally his bare foot rested upon": [65535, 0], "pansy finally his bare foot rested upon it": [65535, 0], "finally his bare foot rested upon it his": [65535, 0], "his bare foot rested upon it his pliant": [65535, 0], "bare foot rested upon it his pliant toes": [65535, 0], "foot rested upon it his pliant toes closed": [65535, 0], "rested upon it his pliant toes closed upon": [65535, 0], "upon it his pliant toes closed upon it": [65535, 0], "it his pliant toes closed upon it and": [65535, 0], "his pliant toes closed upon it and he": [65535, 0], "pliant toes closed upon it and he hopped": [65535, 0], "toes closed upon it and he hopped away": [65535, 0], "closed upon it and he hopped away with": [65535, 0], "upon it and he hopped away with the": [65535, 0], "it and he hopped away with the treasure": [65535, 0], "and he hopped away with the treasure and": [65535, 0], "he hopped away with the treasure and disappeared": [65535, 0], "hopped away with the treasure and disappeared round": [65535, 0], "away with the treasure and disappeared round the": [65535, 0], "with the treasure and disappeared round the corner": [65535, 0], "the treasure and disappeared round the corner but": [65535, 0], "treasure and disappeared round the corner but only": [65535, 0], "and disappeared round the corner but only for": [65535, 0], "disappeared round the corner but only for a": [65535, 0], "round the corner but only for a minute": [65535, 0], "the corner but only for a minute only": [65535, 0], "corner but only for a minute only while": [65535, 0], "but only for a minute only while he": [65535, 0], "only for a minute only while he could": [65535, 0], "for a minute only while he could button": [65535, 0], "a minute only while he could button the": [65535, 0], "minute only while he could button the flower": [65535, 0], "only while he could button the flower inside": [65535, 0], "while he could button the flower inside his": [65535, 0], "he could button the flower inside his jacket": [65535, 0], "could button the flower inside his jacket next": [65535, 0], "button the flower inside his jacket next his": [65535, 0], "the flower inside his jacket next his heart": [65535, 0], "flower inside his jacket next his heart or": [65535, 0], "inside his jacket next his heart or next": [65535, 0], "his jacket next his heart or next his": [65535, 0], "jacket next his heart or next his stomach": [65535, 0], "next his heart or next his stomach possibly": [65535, 0], "his heart or next his stomach possibly for": [65535, 0], "heart or next his stomach possibly for he": [65535, 0], "or next his stomach possibly for he was": [65535, 0], "next his stomach possibly for he was not": [65535, 0], "his stomach possibly for he was not much": [65535, 0], "stomach possibly for he was not much posted": [65535, 0], "possibly for he was not much posted in": [65535, 0], "for he was not much posted in anatomy": [65535, 0], "he was not much posted in anatomy and": [65535, 0], "was not much posted in anatomy and not": [65535, 0], "not much posted in anatomy and not hypercritical": [65535, 0], "much posted in anatomy and not hypercritical anyway": [65535, 0], "posted in anatomy and not hypercritical anyway he": [65535, 0], "in anatomy and not hypercritical anyway he returned": [65535, 0], "anatomy and not hypercritical anyway he returned now": [65535, 0], "and not hypercritical anyway he returned now and": [65535, 0], "not hypercritical anyway he returned now and hung": [65535, 0], "hypercritical anyway he returned now and hung about": [65535, 0], "anyway he returned now and hung about the": [65535, 0], "he returned now and hung about the fence": [65535, 0], "returned now and hung about the fence till": [65535, 0], "now and hung about the fence till nightfall": [65535, 0], "and hung about the fence till nightfall showing": [65535, 0], "hung about the fence till nightfall showing off": [65535, 0], "about the fence till nightfall showing off as": [65535, 0], "the fence till nightfall showing off as before": [65535, 0], "fence till nightfall showing off as before but": [65535, 0], "till nightfall showing off as before but the": [65535, 0], "nightfall showing off as before but the girl": [65535, 0], "showing off as before but the girl never": [65535, 0], "off as before but the girl never exhibited": [65535, 0], "as before but the girl never exhibited herself": [65535, 0], "before but the girl never exhibited herself again": [65535, 0], "but the girl never exhibited herself again though": [65535, 0], "the girl never exhibited herself again though tom": [65535, 0], "girl never exhibited herself again though tom comforted": [65535, 0], "never exhibited herself again though tom comforted himself": [65535, 0], "exhibited herself again though tom comforted himself a": [65535, 0], "herself again though tom comforted himself a little": [65535, 0], "again though tom comforted himself a little with": [65535, 0], "though tom comforted himself a little with the": [65535, 0], "tom comforted himself a little with the hope": [65535, 0], "comforted himself a little with the hope that": [65535, 0], "himself a little with the hope that she": [65535, 0], "a little with the hope that she had": [65535, 0], "little with the hope that she had been": [65535, 0], "with the hope that she had been near": [65535, 0], "the hope that she had been near some": [65535, 0], "hope that she had been near some window": [65535, 0], "that she had been near some window meantime": [65535, 0], "she had been near some window meantime and": [65535, 0], "had been near some window meantime and been": [65535, 0], "been near some window meantime and been aware": [65535, 0], "near some window meantime and been aware of": [65535, 0], "some window meantime and been aware of his": [65535, 0], "window meantime and been aware of his attentions": [65535, 0], "meantime and been aware of his attentions finally": [65535, 0], "and been aware of his attentions finally he": [65535, 0], "been aware of his attentions finally he strode": [65535, 0], "aware of his attentions finally he strode home": [65535, 0], "of his attentions finally he strode home reluctantly": [65535, 0], "his attentions finally he strode home reluctantly with": [65535, 0], "attentions finally he strode home reluctantly with his": [65535, 0], "finally he strode home reluctantly with his poor": [65535, 0], "he strode home reluctantly with his poor head": [65535, 0], "strode home reluctantly with his poor head full": [65535, 0], "home reluctantly with his poor head full of": [65535, 0], "reluctantly with his poor head full of visions": [65535, 0], "with his poor head full of visions all": [65535, 0], "his poor head full of visions all through": [65535, 0], "poor head full of visions all through supper": [65535, 0], "head full of visions all through supper his": [65535, 0], "full of visions all through supper his spirits": [65535, 0], "of visions all through supper his spirits were": [65535, 0], "visions all through supper his spirits were so": [65535, 0], "all through supper his spirits were so high": [65535, 0], "through supper his spirits were so high that": [65535, 0], "supper his spirits were so high that his": [65535, 0], "his spirits were so high that his aunt": [65535, 0], "spirits were so high that his aunt wondered": [65535, 0], "were so high that his aunt wondered what": [65535, 0], "so high that his aunt wondered what had": [65535, 0], "high that his aunt wondered what had got": [65535, 0], "that his aunt wondered what had got into": [65535, 0], "his aunt wondered what had got into the": [65535, 0], "aunt wondered what had got into the child": [65535, 0], "wondered what had got into the child he": [65535, 0], "what had got into the child he took": [65535, 0], "had got into the child he took a": [65535, 0], "got into the child he took a good": [65535, 0], "into the child he took a good scolding": [65535, 0], "the child he took a good scolding about": [65535, 0], "child he took a good scolding about clodding": [65535, 0], "he took a good scolding about clodding sid": [65535, 0], "took a good scolding about clodding sid and": [65535, 0], "a good scolding about clodding sid and did": [65535, 0], "good scolding about clodding sid and did not": [65535, 0], "scolding about clodding sid and did not seem": [65535, 0], "about clodding sid and did not seem to": [65535, 0], "clodding sid and did not seem to mind": [65535, 0], "sid and did not seem to mind it": [65535, 0], "and did not seem to mind it in": [65535, 0], "did not seem to mind it in the": [65535, 0], "not seem to mind it in the least": [65535, 0], "seem to mind it in the least he": [65535, 0], "to mind it in the least he tried": [65535, 0], "mind it in the least he tried to": [65535, 0], "it in the least he tried to steal": [65535, 0], "in the least he tried to steal sugar": [65535, 0], "the least he tried to steal sugar under": [65535, 0], "least he tried to steal sugar under his": [65535, 0], "he tried to steal sugar under his aunt's": [65535, 0], "tried to steal sugar under his aunt's very": [65535, 0], "to steal sugar under his aunt's very nose": [65535, 0], "steal sugar under his aunt's very nose and": [65535, 0], "sugar under his aunt's very nose and got": [65535, 0], "under his aunt's very nose and got his": [65535, 0], "his aunt's very nose and got his knuckles": [65535, 0], "aunt's very nose and got his knuckles rapped": [65535, 0], "very nose and got his knuckles rapped for": [65535, 0], "nose and got his knuckles rapped for it": [65535, 0], "and got his knuckles rapped for it he": [65535, 0], "got his knuckles rapped for it he said": [65535, 0], "his knuckles rapped for it he said aunt": [65535, 0], "knuckles rapped for it he said aunt you": [65535, 0], "rapped for it he said aunt you don't": [65535, 0], "for it he said aunt you don't whack": [65535, 0], "it he said aunt you don't whack sid": [65535, 0], "he said aunt you don't whack sid when": [65535, 0], "said aunt you don't whack sid when he": [65535, 0], "aunt you don't whack sid when he takes": [65535, 0], "you don't whack sid when he takes it": [65535, 0], "don't whack sid when he takes it well": [65535, 0], "whack sid when he takes it well sid": [65535, 0], "sid when he takes it well sid don't": [65535, 0], "when he takes it well sid don't torment": [65535, 0], "he takes it well sid don't torment a": [65535, 0], "takes it well sid don't torment a body": [65535, 0], "it well sid don't torment a body the": [65535, 0], "well sid don't torment a body the way": [65535, 0], "sid don't torment a body the way you": [65535, 0], "don't torment a body the way you do": [65535, 0], "torment a body the way you do you'd": [65535, 0], "a body the way you do you'd be": [65535, 0], "body the way you do you'd be always": [65535, 0], "the way you do you'd be always into": [65535, 0], "way you do you'd be always into that": [65535, 0], "you do you'd be always into that sugar": [65535, 0], "do you'd be always into that sugar if": [65535, 0], "you'd be always into that sugar if i": [65535, 0], "be always into that sugar if i warn't": [65535, 0], "always into that sugar if i warn't watching": [65535, 0], "into that sugar if i warn't watching you": [65535, 0], "that sugar if i warn't watching you presently": [65535, 0], "sugar if i warn't watching you presently she": [65535, 0], "if i warn't watching you presently she stepped": [65535, 0], "i warn't watching you presently she stepped into": [65535, 0], "warn't watching you presently she stepped into the": [65535, 0], "watching you presently she stepped into the kitchen": [65535, 0], "you presently she stepped into the kitchen and": [65535, 0], "presently she stepped into the kitchen and sid": [65535, 0], "she stepped into the kitchen and sid happy": [65535, 0], "stepped into the kitchen and sid happy in": [65535, 0], "into the kitchen and sid happy in his": [65535, 0], "the kitchen and sid happy in his immunity": [65535, 0], "kitchen and sid happy in his immunity reached": [65535, 0], "and sid happy in his immunity reached for": [65535, 0], "sid happy in his immunity reached for the": [65535, 0], "happy in his immunity reached for the sugar": [65535, 0], "in his immunity reached for the sugar bowl": [65535, 0], "his immunity reached for the sugar bowl a": [65535, 0], "immunity reached for the sugar bowl a sort": [65535, 0], "reached for the sugar bowl a sort of": [65535, 0], "for the sugar bowl a sort of glorying": [65535, 0], "the sugar bowl a sort of glorying over": [65535, 0], "sugar bowl a sort of glorying over tom": [65535, 0], "bowl a sort of glorying over tom which": [65535, 0], "a sort of glorying over tom which was": [65535, 0], "sort of glorying over tom which was well": [65535, 0], "of glorying over tom which was well nigh": [65535, 0], "glorying over tom which was well nigh unbearable": [65535, 0], "over tom which was well nigh unbearable but": [65535, 0], "tom which was well nigh unbearable but sid's": [65535, 0], "which was well nigh unbearable but sid's fingers": [65535, 0], "was well nigh unbearable but sid's fingers slipped": [65535, 0], "well nigh unbearable but sid's fingers slipped and": [65535, 0], "nigh unbearable but sid's fingers slipped and the": [65535, 0], "unbearable but sid's fingers slipped and the bowl": [65535, 0], "but sid's fingers slipped and the bowl dropped": [65535, 0], "sid's fingers slipped and the bowl dropped and": [65535, 0], "fingers slipped and the bowl dropped and broke": [65535, 0], "slipped and the bowl dropped and broke tom": [65535, 0], "and the bowl dropped and broke tom was": [65535, 0], "the bowl dropped and broke tom was in": [65535, 0], "bowl dropped and broke tom was in ecstasies": [65535, 0], "dropped and broke tom was in ecstasies in": [65535, 0], "and broke tom was in ecstasies in such": [65535, 0], "broke tom was in ecstasies in such ecstasies": [65535, 0], "tom was in ecstasies in such ecstasies that": [65535, 0], "was in ecstasies in such ecstasies that he": [65535, 0], "in ecstasies in such ecstasies that he even": [65535, 0], "ecstasies in such ecstasies that he even controlled": [65535, 0], "in such ecstasies that he even controlled his": [65535, 0], "such ecstasies that he even controlled his tongue": [65535, 0], "ecstasies that he even controlled his tongue and": [65535, 0], "that he even controlled his tongue and was": [65535, 0], "he even controlled his tongue and was silent": [65535, 0], "even controlled his tongue and was silent he": [65535, 0], "controlled his tongue and was silent he said": [65535, 0], "his tongue and was silent he said to": [65535, 0], "tongue and was silent he said to himself": [65535, 0], "and was silent he said to himself that": [65535, 0], "was silent he said to himself that he": [65535, 0], "silent he said to himself that he would": [65535, 0], "he said to himself that he would not": [65535, 0], "said to himself that he would not speak": [65535, 0], "to himself that he would not speak a": [65535, 0], "himself that he would not speak a word": [65535, 0], "that he would not speak a word even": [65535, 0], "he would not speak a word even when": [65535, 0], "would not speak a word even when his": [65535, 0], "not speak a word even when his aunt": [65535, 0], "speak a word even when his aunt came": [65535, 0], "a word even when his aunt came in": [65535, 0], "word even when his aunt came in but": [65535, 0], "even when his aunt came in but would": [65535, 0], "when his aunt came in but would sit": [65535, 0], "his aunt came in but would sit perfectly": [65535, 0], "aunt came in but would sit perfectly still": [65535, 0], "came in but would sit perfectly still till": [65535, 0], "in but would sit perfectly still till she": [65535, 0], "but would sit perfectly still till she asked": [65535, 0], "would sit perfectly still till she asked who": [65535, 0], "sit perfectly still till she asked who did": [65535, 0], "perfectly still till she asked who did the": [65535, 0], "still till she asked who did the mischief": [65535, 0], "till she asked who did the mischief and": [65535, 0], "she asked who did the mischief and then": [65535, 0], "asked who did the mischief and then he": [65535, 0], "who did the mischief and then he would": [65535, 0], "did the mischief and then he would tell": [65535, 0], "the mischief and then he would tell and": [65535, 0], "mischief and then he would tell and there": [65535, 0], "and then he would tell and there would": [65535, 0], "then he would tell and there would be": [65535, 0], "he would tell and there would be nothing": [65535, 0], "would tell and there would be nothing so": [65535, 0], "tell and there would be nothing so good": [65535, 0], "and there would be nothing so good in": [65535, 0], "there would be nothing so good in the": [65535, 0], "would be nothing so good in the world": [65535, 0], "be nothing so good in the world as": [65535, 0], "nothing so good in the world as to": [65535, 0], "so good in the world as to see": [65535, 0], "good in the world as to see that": [65535, 0], "in the world as to see that pet": [65535, 0], "the world as to see that pet model": [65535, 0], "world as to see that pet model catch": [65535, 0], "as to see that pet model catch it": [65535, 0], "to see that pet model catch it he": [65535, 0], "see that pet model catch it he was": [65535, 0], "that pet model catch it he was so": [65535, 0], "pet model catch it he was so brimful": [65535, 0], "model catch it he was so brimful of": [65535, 0], "catch it he was so brimful of exultation": [65535, 0], "it he was so brimful of exultation that": [65535, 0], "he was so brimful of exultation that he": [65535, 0], "was so brimful of exultation that he could": [65535, 0], "so brimful of exultation that he could hardly": [65535, 0], "brimful of exultation that he could hardly hold": [65535, 0], "of exultation that he could hardly hold himself": [65535, 0], "exultation that he could hardly hold himself when": [65535, 0], "that he could hardly hold himself when the": [65535, 0], "he could hardly hold himself when the old": [65535, 0], "could hardly hold himself when the old lady": [65535, 0], "hardly hold himself when the old lady came": [65535, 0], "hold himself when the old lady came back": [65535, 0], "himself when the old lady came back and": [65535, 0], "when the old lady came back and stood": [65535, 0], "the old lady came back and stood above": [65535, 0], "old lady came back and stood above the": [65535, 0], "lady came back and stood above the wreck": [65535, 0], "came back and stood above the wreck discharging": [65535, 0], "back and stood above the wreck discharging lightnings": [65535, 0], "and stood above the wreck discharging lightnings of": [65535, 0], "stood above the wreck discharging lightnings of wrath": [65535, 0], "above the wreck discharging lightnings of wrath from": [65535, 0], "the wreck discharging lightnings of wrath from over": [65535, 0], "wreck discharging lightnings of wrath from over her": [65535, 0], "discharging lightnings of wrath from over her spectacles": [65535, 0], "lightnings of wrath from over her spectacles he": [65535, 0], "of wrath from over her spectacles he said": [65535, 0], "wrath from over her spectacles he said to": [65535, 0], "from over her spectacles he said to himself": [65535, 0], "over her spectacles he said to himself now": [65535, 0], "her spectacles he said to himself now it's": [65535, 0], "spectacles he said to himself now it's coming": [65535, 0], "he said to himself now it's coming and": [65535, 0], "said to himself now it's coming and the": [65535, 0], "to himself now it's coming and the next": [65535, 0], "himself now it's coming and the next instant": [65535, 0], "now it's coming and the next instant he": [65535, 0], "it's coming and the next instant he was": [65535, 0], "coming and the next instant he was sprawling": [65535, 0], "and the next instant he was sprawling on": [65535, 0], "the next instant he was sprawling on the": [65535, 0], "next instant he was sprawling on the floor": [65535, 0], "instant he was sprawling on the floor the": [65535, 0], "he was sprawling on the floor the potent": [65535, 0], "was sprawling on the floor the potent palm": [65535, 0], "sprawling on the floor the potent palm was": [65535, 0], "on the floor the potent palm was uplifted": [65535, 0], "the floor the potent palm was uplifted to": [65535, 0], "floor the potent palm was uplifted to strike": [65535, 0], "the potent palm was uplifted to strike again": [65535, 0], "potent palm was uplifted to strike again when": [65535, 0], "palm was uplifted to strike again when tom": [65535, 0], "was uplifted to strike again when tom cried": [65535, 0], "uplifted to strike again when tom cried out": [65535, 0], "to strike again when tom cried out hold": [65535, 0], "strike again when tom cried out hold on": [65535, 0], "again when tom cried out hold on now": [65535, 0], "when tom cried out hold on now what": [65535, 0], "tom cried out hold on now what 'er": [65535, 0], "cried out hold on now what 'er you": [65535, 0], "out hold on now what 'er you belting": [65535, 0], "hold on now what 'er you belting me": [65535, 0], "on now what 'er you belting me for": [65535, 0], "now what 'er you belting me for sid": [65535, 0], "what 'er you belting me for sid broke": [65535, 0], "'er you belting me for sid broke it": [65535, 0], "you belting me for sid broke it aunt": [65535, 0], "belting me for sid broke it aunt polly": [65535, 0], "me for sid broke it aunt polly paused": [65535, 0], "for sid broke it aunt polly paused perplexed": [65535, 0], "sid broke it aunt polly paused perplexed and": [65535, 0], "broke it aunt polly paused perplexed and tom": [65535, 0], "it aunt polly paused perplexed and tom looked": [65535, 0], "aunt polly paused perplexed and tom looked for": [65535, 0], "polly paused perplexed and tom looked for healing": [65535, 0], "paused perplexed and tom looked for healing pity": [65535, 0], "perplexed and tom looked for healing pity but": [65535, 0], "and tom looked for healing pity but when": [65535, 0], "tom looked for healing pity but when she": [65535, 0], "looked for healing pity but when she got": [65535, 0], "for healing pity but when she got her": [65535, 0], "healing pity but when she got her tongue": [65535, 0], "pity but when she got her tongue again": [65535, 0], "but when she got her tongue again she": [65535, 0], "when she got her tongue again she only": [65535, 0], "she got her tongue again she only said": [65535, 0], "got her tongue again she only said umf": [65535, 0], "her tongue again she only said umf well": [65535, 0], "tongue again she only said umf well you": [65535, 0], "again she only said umf well you didn't": [65535, 0], "she only said umf well you didn't get": [65535, 0], "only said umf well you didn't get a": [65535, 0], "said umf well you didn't get a lick": [65535, 0], "umf well you didn't get a lick amiss": [65535, 0], "well you didn't get a lick amiss i": [65535, 0], "you didn't get a lick amiss i reckon": [65535, 0], "didn't get a lick amiss i reckon you": [65535, 0], "get a lick amiss i reckon you been": [65535, 0], "a lick amiss i reckon you been into": [65535, 0], "lick amiss i reckon you been into some": [65535, 0], "amiss i reckon you been into some other": [65535, 0], "i reckon you been into some other audacious": [65535, 0], "reckon you been into some other audacious mischief": [65535, 0], "you been into some other audacious mischief when": [65535, 0], "been into some other audacious mischief when i": [65535, 0], "into some other audacious mischief when i wasn't": [65535, 0], "some other audacious mischief when i wasn't around": [65535, 0], "other audacious mischief when i wasn't around like": [65535, 0], "audacious mischief when i wasn't around like enough": [65535, 0], "mischief when i wasn't around like enough then": [65535, 0], "when i wasn't around like enough then her": [65535, 0], "i wasn't around like enough then her conscience": [65535, 0], "wasn't around like enough then her conscience reproached": [65535, 0], "around like enough then her conscience reproached her": [65535, 0], "like enough then her conscience reproached her and": [65535, 0], "enough then her conscience reproached her and she": [65535, 0], "then her conscience reproached her and she yearned": [65535, 0], "her conscience reproached her and she yearned to": [65535, 0], "conscience reproached her and she yearned to say": [65535, 0], "reproached her and she yearned to say something": [65535, 0], "her and she yearned to say something kind": [65535, 0], "and she yearned to say something kind and": [65535, 0], "she yearned to say something kind and loving": [65535, 0], "yearned to say something kind and loving but": [65535, 0], "to say something kind and loving but she": [65535, 0], "say something kind and loving but she judged": [65535, 0], "something kind and loving but she judged that": [65535, 0], "kind and loving but she judged that this": [65535, 0], "and loving but she judged that this would": [65535, 0], "loving but she judged that this would be": [65535, 0], "but she judged that this would be construed": [65535, 0], "she judged that this would be construed into": [65535, 0], "judged that this would be construed into a": [65535, 0], "that this would be construed into a confession": [65535, 0], "this would be construed into a confession that": [65535, 0], "would be construed into a confession that she": [65535, 0], "be construed into a confession that she had": [65535, 0], "construed into a confession that she had been": [65535, 0], "into a confession that she had been in": [65535, 0], "a confession that she had been in the": [65535, 0], "confession that she had been in the wrong": [65535, 0], "that she had been in the wrong and": [65535, 0], "she had been in the wrong and discipline": [65535, 0], "had been in the wrong and discipline forbade": [65535, 0], "been in the wrong and discipline forbade that": [65535, 0], "in the wrong and discipline forbade that so": [65535, 0], "the wrong and discipline forbade that so she": [65535, 0], "wrong and discipline forbade that so she kept": [65535, 0], "and discipline forbade that so she kept silence": [65535, 0], "discipline forbade that so she kept silence and": [65535, 0], "forbade that so she kept silence and went": [65535, 0], "that so she kept silence and went about": [65535, 0], "so she kept silence and went about her": [65535, 0], "she kept silence and went about her affairs": [65535, 0], "kept silence and went about her affairs with": [65535, 0], "silence and went about her affairs with a": [65535, 0], "and went about her affairs with a troubled": [65535, 0], "went about her affairs with a troubled heart": [65535, 0], "about her affairs with a troubled heart tom": [65535, 0], "her affairs with a troubled heart tom sulked": [65535, 0], "affairs with a troubled heart tom sulked in": [65535, 0], "with a troubled heart tom sulked in a": [65535, 0], "a troubled heart tom sulked in a corner": [65535, 0], "troubled heart tom sulked in a corner and": [65535, 0], "heart tom sulked in a corner and exalted": [65535, 0], "tom sulked in a corner and exalted his": [65535, 0], "sulked in a corner and exalted his woes": [65535, 0], "in a corner and exalted his woes he": [65535, 0], "a corner and exalted his woes he knew": [65535, 0], "corner and exalted his woes he knew that": [65535, 0], "and exalted his woes he knew that in": [65535, 0], "exalted his woes he knew that in her": [65535, 0], "his woes he knew that in her heart": [65535, 0], "woes he knew that in her heart his": [65535, 0], "he knew that in her heart his aunt": [65535, 0], "knew that in her heart his aunt was": [65535, 0], "that in her heart his aunt was on": [65535, 0], "in her heart his aunt was on her": [65535, 0], "her heart his aunt was on her knees": [65535, 0], "heart his aunt was on her knees to": [65535, 0], "his aunt was on her knees to him": [65535, 0], "aunt was on her knees to him and": [65535, 0], "was on her knees to him and he": [65535, 0], "on her knees to him and he was": [65535, 0], "her knees to him and he was morosely": [65535, 0], "knees to him and he was morosely gratified": [65535, 0], "to him and he was morosely gratified by": [65535, 0], "him and he was morosely gratified by the": [65535, 0], "and he was morosely gratified by the consciousness": [65535, 0], "he was morosely gratified by the consciousness of": [65535, 0], "was morosely gratified by the consciousness of it": [65535, 0], "morosely gratified by the consciousness of it he": [65535, 0], "gratified by the consciousness of it he would": [65535, 0], "by the consciousness of it he would hang": [65535, 0], "the consciousness of it he would hang out": [65535, 0], "consciousness of it he would hang out no": [65535, 0], "of it he would hang out no signals": [65535, 0], "it he would hang out no signals he": [65535, 0], "he would hang out no signals he would": [65535, 0], "would hang out no signals he would take": [65535, 0], "hang out no signals he would take notice": [65535, 0], "out no signals he would take notice of": [65535, 0], "no signals he would take notice of none": [65535, 0], "signals he would take notice of none he": [65535, 0], "he would take notice of none he knew": [65535, 0], "would take notice of none he knew that": [65535, 0], "take notice of none he knew that a": [65535, 0], "notice of none he knew that a yearning": [65535, 0], "of none he knew that a yearning glance": [65535, 0], "none he knew that a yearning glance fell": [65535, 0], "he knew that a yearning glance fell upon": [65535, 0], "knew that a yearning glance fell upon him": [65535, 0], "that a yearning glance fell upon him now": [65535, 0], "a yearning glance fell upon him now and": [65535, 0], "yearning glance fell upon him now and then": [65535, 0], "glance fell upon him now and then through": [65535, 0], "fell upon him now and then through a": [65535, 0], "upon him now and then through a film": [65535, 0], "him now and then through a film of": [65535, 0], "now and then through a film of tears": [65535, 0], "and then through a film of tears but": [65535, 0], "then through a film of tears but he": [65535, 0], "through a film of tears but he refused": [65535, 0], "a film of tears but he refused recognition": [65535, 0], "film of tears but he refused recognition of": [65535, 0], "of tears but he refused recognition of it": [65535, 0], "tears but he refused recognition of it he": [65535, 0], "but he refused recognition of it he pictured": [65535, 0], "he refused recognition of it he pictured himself": [65535, 0], "refused recognition of it he pictured himself lying": [65535, 0], "recognition of it he pictured himself lying sick": [65535, 0], "of it he pictured himself lying sick unto": [65535, 0], "it he pictured himself lying sick unto death": [65535, 0], "he pictured himself lying sick unto death and": [65535, 0], "pictured himself lying sick unto death and his": [65535, 0], "himself lying sick unto death and his aunt": [65535, 0], "lying sick unto death and his aunt bending": [65535, 0], "sick unto death and his aunt bending over": [65535, 0], "unto death and his aunt bending over him": [65535, 0], "death and his aunt bending over him beseeching": [65535, 0], "and his aunt bending over him beseeching one": [65535, 0], "his aunt bending over him beseeching one little": [65535, 0], "aunt bending over him beseeching one little forgiving": [65535, 0], "bending over him beseeching one little forgiving word": [65535, 0], "over him beseeching one little forgiving word but": [65535, 0], "him beseeching one little forgiving word but he": [65535, 0], "beseeching one little forgiving word but he would": [65535, 0], "one little forgiving word but he would turn": [65535, 0], "little forgiving word but he would turn his": [65535, 0], "forgiving word but he would turn his face": [65535, 0], "word but he would turn his face to": [65535, 0], "but he would turn his face to the": [65535, 0], "he would turn his face to the wall": [65535, 0], "would turn his face to the wall and": [65535, 0], "turn his face to the wall and die": [65535, 0], "his face to the wall and die with": [65535, 0], "face to the wall and die with that": [65535, 0], "to the wall and die with that word": [65535, 0], "the wall and die with that word unsaid": [65535, 0], "wall and die with that word unsaid ah": [65535, 0], "and die with that word unsaid ah how": [65535, 0], "die with that word unsaid ah how would": [65535, 0], "with that word unsaid ah how would she": [65535, 0], "that word unsaid ah how would she feel": [65535, 0], "word unsaid ah how would she feel then": [65535, 0], "unsaid ah how would she feel then and": [65535, 0], "ah how would she feel then and he": [65535, 0], "how would she feel then and he pictured": [65535, 0], "would she feel then and he pictured himself": [65535, 0], "she feel then and he pictured himself brought": [65535, 0], "feel then and he pictured himself brought home": [65535, 0], "then and he pictured himself brought home from": [65535, 0], "and he pictured himself brought home from the": [65535, 0], "he pictured himself brought home from the river": [65535, 0], "pictured himself brought home from the river dead": [65535, 0], "himself brought home from the river dead with": [65535, 0], "brought home from the river dead with his": [65535, 0], "home from the river dead with his curls": [65535, 0], "from the river dead with his curls all": [65535, 0], "the river dead with his curls all wet": [65535, 0], "river dead with his curls all wet and": [65535, 0], "dead with his curls all wet and his": [65535, 0], "with his curls all wet and his sore": [65535, 0], "his curls all wet and his sore heart": [65535, 0], "curls all wet and his sore heart at": [65535, 0], "all wet and his sore heart at rest": [65535, 0], "wet and his sore heart at rest how": [65535, 0], "and his sore heart at rest how she": [65535, 0], "his sore heart at rest how she would": [65535, 0], "sore heart at rest how she would throw": [65535, 0], "heart at rest how she would throw herself": [65535, 0], "at rest how she would throw herself upon": [65535, 0], "rest how she would throw herself upon him": [65535, 0], "how she would throw herself upon him and": [65535, 0], "she would throw herself upon him and how": [65535, 0], "would throw herself upon him and how her": [65535, 0], "throw herself upon him and how her tears": [65535, 0], "herself upon him and how her tears would": [65535, 0], "upon him and how her tears would fall": [65535, 0], "him and how her tears would fall like": [65535, 0], "and how her tears would fall like rain": [65535, 0], "how her tears would fall like rain and": [65535, 0], "her tears would fall like rain and her": [65535, 0], "tears would fall like rain and her lips": [65535, 0], "would fall like rain and her lips pray": [65535, 0], "fall like rain and her lips pray god": [65535, 0], "like rain and her lips pray god to": [65535, 0], "rain and her lips pray god to give": [65535, 0], "and her lips pray god to give her": [65535, 0], "her lips pray god to give her back": [65535, 0], "lips pray god to give her back her": [65535, 0], "pray god to give her back her boy": [65535, 0], "god to give her back her boy and": [65535, 0], "to give her back her boy and she": [65535, 0], "give her back her boy and she would": [65535, 0], "her back her boy and she would never": [65535, 0], "back her boy and she would never never": [65535, 0], "her boy and she would never never abuse": [65535, 0], "boy and she would never never abuse him": [65535, 0], "and she would never never abuse him any": [65535, 0], "she would never never abuse him any more": [65535, 0], "would never never abuse him any more but": [65535, 0], "never never abuse him any more but he": [65535, 0], "never abuse him any more but he would": [65535, 0], "abuse him any more but he would lie": [65535, 0], "him any more but he would lie there": [65535, 0], "any more but he would lie there cold": [65535, 0], "more but he would lie there cold and": [65535, 0], "but he would lie there cold and white": [65535, 0], "he would lie there cold and white and": [65535, 0], "would lie there cold and white and make": [65535, 0], "lie there cold and white and make no": [65535, 0], "there cold and white and make no sign": [65535, 0], "cold and white and make no sign a": [65535, 0], "and white and make no sign a poor": [65535, 0], "white and make no sign a poor little": [65535, 0], "and make no sign a poor little sufferer": [65535, 0], "make no sign a poor little sufferer whose": [65535, 0], "no sign a poor little sufferer whose griefs": [65535, 0], "sign a poor little sufferer whose griefs were": [65535, 0], "a poor little sufferer whose griefs were at": [65535, 0], "poor little sufferer whose griefs were at an": [65535, 0], "little sufferer whose griefs were at an end": [65535, 0], "sufferer whose griefs were at an end he": [65535, 0], "whose griefs were at an end he so": [65535, 0], "griefs were at an end he so worked": [65535, 0], "were at an end he so worked upon": [65535, 0], "at an end he so worked upon his": [65535, 0], "an end he so worked upon his feelings": [65535, 0], "end he so worked upon his feelings with": [65535, 0], "he so worked upon his feelings with the": [65535, 0], "so worked upon his feelings with the pathos": [65535, 0], "worked upon his feelings with the pathos of": [65535, 0], "upon his feelings with the pathos of these": [65535, 0], "his feelings with the pathos of these dreams": [65535, 0], "feelings with the pathos of these dreams that": [65535, 0], "with the pathos of these dreams that he": [65535, 0], "the pathos of these dreams that he had": [65535, 0], "pathos of these dreams that he had to": [65535, 0], "of these dreams that he had to keep": [65535, 0], "these dreams that he had to keep swallowing": [65535, 0], "dreams that he had to keep swallowing he": [65535, 0], "that he had to keep swallowing he was": [65535, 0], "he had to keep swallowing he was so": [65535, 0], "had to keep swallowing he was so like": [65535, 0], "to keep swallowing he was so like to": [65535, 0], "keep swallowing he was so like to choke": [65535, 0], "swallowing he was so like to choke and": [65535, 0], "he was so like to choke and his": [65535, 0], "was so like to choke and his eyes": [65535, 0], "so like to choke and his eyes swam": [65535, 0], "like to choke and his eyes swam in": [65535, 0], "to choke and his eyes swam in a": [65535, 0], "choke and his eyes swam in a blur": [65535, 0], "and his eyes swam in a blur of": [65535, 0], "his eyes swam in a blur of water": [65535, 0], "eyes swam in a blur of water which": [65535, 0], "swam in a blur of water which overflowed": [65535, 0], "in a blur of water which overflowed when": [65535, 0], "a blur of water which overflowed when he": [65535, 0], "blur of water which overflowed when he winked": [65535, 0], "of water which overflowed when he winked and": [65535, 0], "water which overflowed when he winked and ran": [65535, 0], "which overflowed when he winked and ran down": [65535, 0], "overflowed when he winked and ran down and": [65535, 0], "when he winked and ran down and trickled": [65535, 0], "he winked and ran down and trickled from": [65535, 0], "winked and ran down and trickled from the": [65535, 0], "and ran down and trickled from the end": [65535, 0], "ran down and trickled from the end of": [65535, 0], "down and trickled from the end of his": [65535, 0], "and trickled from the end of his nose": [65535, 0], "trickled from the end of his nose and": [65535, 0], "from the end of his nose and such": [65535, 0], "the end of his nose and such a": [65535, 0], "end of his nose and such a luxury": [65535, 0], "of his nose and such a luxury to": [65535, 0], "his nose and such a luxury to him": [65535, 0], "nose and such a luxury to him was": [65535, 0], "and such a luxury to him was this": [65535, 0], "such a luxury to him was this petting": [65535, 0], "a luxury to him was this petting of": [65535, 0], "luxury to him was this petting of his": [65535, 0], "to him was this petting of his sorrows": [65535, 0], "him was this petting of his sorrows that": [65535, 0], "was this petting of his sorrows that he": [65535, 0], "this petting of his sorrows that he could": [65535, 0], "petting of his sorrows that he could not": [65535, 0], "of his sorrows that he could not bear": [65535, 0], "his sorrows that he could not bear to": [65535, 0], "sorrows that he could not bear to have": [65535, 0], "that he could not bear to have any": [65535, 0], "he could not bear to have any worldly": [65535, 0], "could not bear to have any worldly cheeriness": [65535, 0], "not bear to have any worldly cheeriness or": [65535, 0], "bear to have any worldly cheeriness or any": [65535, 0], "to have any worldly cheeriness or any grating": [65535, 0], "have any worldly cheeriness or any grating delight": [65535, 0], "any worldly cheeriness or any grating delight intrude": [65535, 0], "worldly cheeriness or any grating delight intrude upon": [65535, 0], "cheeriness or any grating delight intrude upon it": [65535, 0], "or any grating delight intrude upon it it": [65535, 0], "any grating delight intrude upon it it was": [65535, 0], "grating delight intrude upon it it was too": [65535, 0], "delight intrude upon it it was too sacred": [65535, 0], "intrude upon it it was too sacred for": [65535, 0], "upon it it was too sacred for such": [65535, 0], "it it was too sacred for such contact": [65535, 0], "it was too sacred for such contact and": [65535, 0], "was too sacred for such contact and so": [65535, 0], "too sacred for such contact and so presently": [65535, 0], "sacred for such contact and so presently when": [65535, 0], "for such contact and so presently when his": [65535, 0], "such contact and so presently when his cousin": [65535, 0], "contact and so presently when his cousin mary": [65535, 0], "and so presently when his cousin mary danced": [65535, 0], "so presently when his cousin mary danced in": [65535, 0], "presently when his cousin mary danced in all": [65535, 0], "when his cousin mary danced in all alive": [65535, 0], "his cousin mary danced in all alive with": [65535, 0], "cousin mary danced in all alive with the": [65535, 0], "mary danced in all alive with the joy": [65535, 0], "danced in all alive with the joy of": [65535, 0], "in all alive with the joy of seeing": [65535, 0], "all alive with the joy of seeing home": [65535, 0], "alive with the joy of seeing home again": [65535, 0], "with the joy of seeing home again after": [65535, 0], "the joy of seeing home again after an": [65535, 0], "joy of seeing home again after an age": [65535, 0], "of seeing home again after an age long": [65535, 0], "seeing home again after an age long visit": [65535, 0], "home again after an age long visit of": [65535, 0], "again after an age long visit of one": [65535, 0], "after an age long visit of one week": [65535, 0], "an age long visit of one week to": [65535, 0], "age long visit of one week to the": [65535, 0], "long visit of one week to the country": [65535, 0], "visit of one week to the country he": [65535, 0], "of one week to the country he got": [65535, 0], "one week to the country he got up": [65535, 0], "week to the country he got up and": [65535, 0], "to the country he got up and moved": [65535, 0], "the country he got up and moved in": [65535, 0], "country he got up and moved in clouds": [65535, 0], "he got up and moved in clouds and": [65535, 0], "got up and moved in clouds and darkness": [65535, 0], "up and moved in clouds and darkness out": [65535, 0], "and moved in clouds and darkness out at": [65535, 0], "moved in clouds and darkness out at one": [65535, 0], "in clouds and darkness out at one door": [65535, 0], "clouds and darkness out at one door as": [65535, 0], "and darkness out at one door as she": [65535, 0], "darkness out at one door as she brought": [65535, 0], "out at one door as she brought song": [65535, 0], "at one door as she brought song and": [65535, 0], "one door as she brought song and sunshine": [65535, 0], "door as she brought song and sunshine in": [65535, 0], "as she brought song and sunshine in at": [65535, 0], "she brought song and sunshine in at the": [65535, 0], "brought song and sunshine in at the other": [65535, 0], "song and sunshine in at the other he": [65535, 0], "and sunshine in at the other he wandered": [65535, 0], "sunshine in at the other he wandered far": [65535, 0], "in at the other he wandered far from": [65535, 0], "at the other he wandered far from the": [65535, 0], "the other he wandered far from the accustomed": [65535, 0], "other he wandered far from the accustomed haunts": [65535, 0], "he wandered far from the accustomed haunts of": [65535, 0], "wandered far from the accustomed haunts of boys": [65535, 0], "far from the accustomed haunts of boys and": [65535, 0], "from the accustomed haunts of boys and sought": [65535, 0], "the accustomed haunts of boys and sought desolate": [65535, 0], "accustomed haunts of boys and sought desolate places": [65535, 0], "haunts of boys and sought desolate places that": [65535, 0], "of boys and sought desolate places that were": [65535, 0], "boys and sought desolate places that were in": [65535, 0], "and sought desolate places that were in harmony": [65535, 0], "sought desolate places that were in harmony with": [65535, 0], "desolate places that were in harmony with his": [65535, 0], "places that were in harmony with his spirit": [65535, 0], "that were in harmony with his spirit a": [65535, 0], "were in harmony with his spirit a log": [65535, 0], "in harmony with his spirit a log raft": [65535, 0], "harmony with his spirit a log raft in": [65535, 0], "with his spirit a log raft in the": [65535, 0], "his spirit a log raft in the river": [65535, 0], "spirit a log raft in the river invited": [65535, 0], "a log raft in the river invited him": [65535, 0], "log raft in the river invited him and": [65535, 0], "raft in the river invited him and he": [65535, 0], "in the river invited him and he seated": [65535, 0], "the river invited him and he seated himself": [65535, 0], "river invited him and he seated himself on": [65535, 0], "invited him and he seated himself on its": [65535, 0], "him and he seated himself on its outer": [65535, 0], "and he seated himself on its outer edge": [65535, 0], "he seated himself on its outer edge and": [65535, 0], "seated himself on its outer edge and contemplated": [65535, 0], "himself on its outer edge and contemplated the": [65535, 0], "on its outer edge and contemplated the dreary": [65535, 0], "its outer edge and contemplated the dreary vastness": [65535, 0], "outer edge and contemplated the dreary vastness of": [65535, 0], "edge and contemplated the dreary vastness of the": [65535, 0], "and contemplated the dreary vastness of the stream": [65535, 0], "contemplated the dreary vastness of the stream wishing": [65535, 0], "the dreary vastness of the stream wishing the": [65535, 0], "dreary vastness of the stream wishing the while": [65535, 0], "vastness of the stream wishing the while that": [65535, 0], "of the stream wishing the while that he": [65535, 0], "the stream wishing the while that he could": [65535, 0], "stream wishing the while that he could only": [65535, 0], "wishing the while that he could only be": [65535, 0], "the while that he could only be drowned": [65535, 0], "while that he could only be drowned all": [65535, 0], "that he could only be drowned all at": [65535, 0], "he could only be drowned all at once": [65535, 0], "could only be drowned all at once and": [65535, 0], "only be drowned all at once and unconsciously": [65535, 0], "be drowned all at once and unconsciously without": [65535, 0], "drowned all at once and unconsciously without undergoing": [65535, 0], "all at once and unconsciously without undergoing the": [65535, 0], "at once and unconsciously without undergoing the uncomfortable": [65535, 0], "once and unconsciously without undergoing the uncomfortable routine": [65535, 0], "and unconsciously without undergoing the uncomfortable routine devised": [65535, 0], "unconsciously without undergoing the uncomfortable routine devised by": [65535, 0], "without undergoing the uncomfortable routine devised by nature": [65535, 0], "undergoing the uncomfortable routine devised by nature then": [65535, 0], "the uncomfortable routine devised by nature then he": [65535, 0], "uncomfortable routine devised by nature then he thought": [65535, 0], "routine devised by nature then he thought of": [65535, 0], "devised by nature then he thought of his": [65535, 0], "by nature then he thought of his flower": [65535, 0], "nature then he thought of his flower he": [65535, 0], "then he thought of his flower he got": [65535, 0], "he thought of his flower he got it": [65535, 0], "thought of his flower he got it out": [65535, 0], "of his flower he got it out rumpled": [65535, 0], "his flower he got it out rumpled and": [65535, 0], "flower he got it out rumpled and wilted": [65535, 0], "he got it out rumpled and wilted and": [65535, 0], "got it out rumpled and wilted and it": [65535, 0], "it out rumpled and wilted and it mightily": [65535, 0], "out rumpled and wilted and it mightily increased": [65535, 0], "rumpled and wilted and it mightily increased his": [65535, 0], "and wilted and it mightily increased his dismal": [65535, 0], "wilted and it mightily increased his dismal felicity": [65535, 0], "and it mightily increased his dismal felicity he": [65535, 0], "it mightily increased his dismal felicity he wondered": [65535, 0], "mightily increased his dismal felicity he wondered if": [65535, 0], "increased his dismal felicity he wondered if she": [65535, 0], "his dismal felicity he wondered if she would": [65535, 0], "dismal felicity he wondered if she would pity": [65535, 0], "felicity he wondered if she would pity him": [65535, 0], "he wondered if she would pity him if": [65535, 0], "wondered if she would pity him if she": [65535, 0], "if she would pity him if she knew": [65535, 0], "she would pity him if she knew would": [65535, 0], "would pity him if she knew would she": [65535, 0], "pity him if she knew would she cry": [65535, 0], "him if she knew would she cry and": [65535, 0], "if she knew would she cry and wish": [65535, 0], "she knew would she cry and wish that": [65535, 0], "knew would she cry and wish that she": [65535, 0], "would she cry and wish that she had": [65535, 0], "she cry and wish that she had a": [65535, 0], "cry and wish that she had a right": [65535, 0], "and wish that she had a right to": [65535, 0], "wish that she had a right to put": [65535, 0], "that she had a right to put her": [65535, 0], "she had a right to put her arms": [65535, 0], "had a right to put her arms around": [65535, 0], "a right to put her arms around his": [65535, 0], "right to put her arms around his neck": [65535, 0], "to put her arms around his neck and": [65535, 0], "put her arms around his neck and comfort": [65535, 0], "her arms around his neck and comfort him": [65535, 0], "arms around his neck and comfort him or": [65535, 0], "around his neck and comfort him or would": [65535, 0], "his neck and comfort him or would she": [65535, 0], "neck and comfort him or would she turn": [65535, 0], "and comfort him or would she turn coldly": [65535, 0], "comfort him or would she turn coldly away": [65535, 0], "him or would she turn coldly away like": [65535, 0], "or would she turn coldly away like all": [65535, 0], "would she turn coldly away like all the": [65535, 0], "she turn coldly away like all the hollow": [65535, 0], "turn coldly away like all the hollow world": [65535, 0], "coldly away like all the hollow world this": [65535, 0], "away like all the hollow world this picture": [65535, 0], "like all the hollow world this picture brought": [65535, 0], "all the hollow world this picture brought such": [65535, 0], "the hollow world this picture brought such an": [65535, 0], "hollow world this picture brought such an agony": [65535, 0], "world this picture brought such an agony of": [65535, 0], "this picture brought such an agony of pleasurable": [65535, 0], "picture brought such an agony of pleasurable suffering": [65535, 0], "brought such an agony of pleasurable suffering that": [65535, 0], "such an agony of pleasurable suffering that he": [65535, 0], "an agony of pleasurable suffering that he worked": [65535, 0], "agony of pleasurable suffering that he worked it": [65535, 0], "of pleasurable suffering that he worked it over": [65535, 0], "pleasurable suffering that he worked it over and": [65535, 0], "suffering that he worked it over and over": [65535, 0], "that he worked it over and over again": [65535, 0], "he worked it over and over again in": [65535, 0], "worked it over and over again in his": [65535, 0], "it over and over again in his mind": [65535, 0], "over and over again in his mind and": [65535, 0], "and over again in his mind and set": [65535, 0], "over again in his mind and set it": [65535, 0], "again in his mind and set it up": [65535, 0], "in his mind and set it up in": [65535, 0], "his mind and set it up in new": [65535, 0], "mind and set it up in new and": [65535, 0], "and set it up in new and varied": [65535, 0], "set it up in new and varied lights": [65535, 0], "it up in new and varied lights till": [65535, 0], "up in new and varied lights till he": [65535, 0], "in new and varied lights till he wore": [65535, 0], "new and varied lights till he wore it": [65535, 0], "and varied lights till he wore it threadbare": [65535, 0], "varied lights till he wore it threadbare at": [65535, 0], "lights till he wore it threadbare at last": [65535, 0], "till he wore it threadbare at last he": [65535, 0], "he wore it threadbare at last he rose": [65535, 0], "wore it threadbare at last he rose up": [65535, 0], "it threadbare at last he rose up sighing": [65535, 0], "threadbare at last he rose up sighing and": [65535, 0], "at last he rose up sighing and departed": [65535, 0], "last he rose up sighing and departed in": [65535, 0], "he rose up sighing and departed in the": [65535, 0], "rose up sighing and departed in the darkness": [65535, 0], "up sighing and departed in the darkness about": [65535, 0], "sighing and departed in the darkness about half": [65535, 0], "and departed in the darkness about half past": [65535, 0], "departed in the darkness about half past nine": [65535, 0], "in the darkness about half past nine or": [65535, 0], "the darkness about half past nine or ten": [65535, 0], "darkness about half past nine or ten o'clock": [65535, 0], "about half past nine or ten o'clock he": [65535, 0], "half past nine or ten o'clock he came": [65535, 0], "past nine or ten o'clock he came along": [65535, 0], "nine or ten o'clock he came along the": [65535, 0], "or ten o'clock he came along the deserted": [65535, 0], "ten o'clock he came along the deserted street": [65535, 0], "o'clock he came along the deserted street to": [65535, 0], "he came along the deserted street to where": [65535, 0], "came along the deserted street to where the": [65535, 0], "along the deserted street to where the adored": [65535, 0], "the deserted street to where the adored unknown": [65535, 0], "deserted street to where the adored unknown lived": [65535, 0], "street to where the adored unknown lived he": [65535, 0], "to where the adored unknown lived he paused": [65535, 0], "where the adored unknown lived he paused a": [65535, 0], "the adored unknown lived he paused a moment": [65535, 0], "adored unknown lived he paused a moment no": [65535, 0], "unknown lived he paused a moment no sound": [65535, 0], "lived he paused a moment no sound fell": [65535, 0], "he paused a moment no sound fell upon": [65535, 0], "paused a moment no sound fell upon his": [65535, 0], "a moment no sound fell upon his listening": [65535, 0], "moment no sound fell upon his listening ear": [65535, 0], "no sound fell upon his listening ear a": [65535, 0], "sound fell upon his listening ear a candle": [65535, 0], "fell upon his listening ear a candle was": [65535, 0], "upon his listening ear a candle was casting": [65535, 0], "his listening ear a candle was casting a": [65535, 0], "listening ear a candle was casting a dull": [65535, 0], "ear a candle was casting a dull glow": [65535, 0], "a candle was casting a dull glow upon": [65535, 0], "candle was casting a dull glow upon the": [65535, 0], "was casting a dull glow upon the curtain": [65535, 0], "casting a dull glow upon the curtain of": [65535, 0], "a dull glow upon the curtain of a": [65535, 0], "dull glow upon the curtain of a second": [65535, 0], "glow upon the curtain of a second story": [65535, 0], "upon the curtain of a second story window": [65535, 0], "the curtain of a second story window was": [65535, 0], "curtain of a second story window was the": [65535, 0], "of a second story window was the sacred": [65535, 0], "a second story window was the sacred presence": [65535, 0], "second story window was the sacred presence there": [65535, 0], "story window was the sacred presence there he": [65535, 0], "window was the sacred presence there he climbed": [65535, 0], "was the sacred presence there he climbed the": [65535, 0], "the sacred presence there he climbed the fence": [65535, 0], "sacred presence there he climbed the fence threaded": [65535, 0], "presence there he climbed the fence threaded his": [65535, 0], "there he climbed the fence threaded his stealthy": [65535, 0], "he climbed the fence threaded his stealthy way": [65535, 0], "climbed the fence threaded his stealthy way through": [65535, 0], "the fence threaded his stealthy way through the": [65535, 0], "fence threaded his stealthy way through the plants": [65535, 0], "threaded his stealthy way through the plants till": [65535, 0], "his stealthy way through the plants till he": [65535, 0], "stealthy way through the plants till he stood": [65535, 0], "way through the plants till he stood under": [65535, 0], "through the plants till he stood under that": [65535, 0], "the plants till he stood under that window": [65535, 0], "plants till he stood under that window he": [65535, 0], "till he stood under that window he looked": [65535, 0], "he stood under that window he looked up": [65535, 0], "stood under that window he looked up at": [65535, 0], "under that window he looked up at it": [65535, 0], "that window he looked up at it long": [65535, 0], "window he looked up at it long and": [65535, 0], "he looked up at it long and with": [65535, 0], "looked up at it long and with emotion": [65535, 0], "up at it long and with emotion then": [65535, 0], "at it long and with emotion then he": [65535, 0], "it long and with emotion then he laid": [65535, 0], "long and with emotion then he laid him": [65535, 0], "and with emotion then he laid him down": [65535, 0], "with emotion then he laid him down on": [65535, 0], "emotion then he laid him down on the": [65535, 0], "then he laid him down on the ground": [65535, 0], "he laid him down on the ground under": [65535, 0], "laid him down on the ground under it": [65535, 0], "him down on the ground under it disposing": [65535, 0], "down on the ground under it disposing himself": [65535, 0], "on the ground under it disposing himself upon": [65535, 0], "the ground under it disposing himself upon his": [65535, 0], "ground under it disposing himself upon his back": [65535, 0], "under it disposing himself upon his back with": [65535, 0], "it disposing himself upon his back with his": [65535, 0], "disposing himself upon his back with his hands": [65535, 0], "himself upon his back with his hands clasped": [65535, 0], "upon his back with his hands clasped upon": [65535, 0], "his back with his hands clasped upon his": [65535, 0], "back with his hands clasped upon his breast": [65535, 0], "with his hands clasped upon his breast and": [65535, 0], "his hands clasped upon his breast and holding": [65535, 0], "hands clasped upon his breast and holding his": [65535, 0], "clasped upon his breast and holding his poor": [65535, 0], "upon his breast and holding his poor wilted": [65535, 0], "his breast and holding his poor wilted flower": [65535, 0], "breast and holding his poor wilted flower and": [65535, 0], "and holding his poor wilted flower and thus": [65535, 0], "holding his poor wilted flower and thus he": [65535, 0], "his poor wilted flower and thus he would": [65535, 0], "poor wilted flower and thus he would die": [65535, 0], "wilted flower and thus he would die out": [65535, 0], "flower and thus he would die out in": [65535, 0], "and thus he would die out in the": [65535, 0], "thus he would die out in the cold": [65535, 0], "he would die out in the cold world": [65535, 0], "would die out in the cold world with": [65535, 0], "die out in the cold world with no": [65535, 0], "out in the cold world with no shelter": [65535, 0], "in the cold world with no shelter over": [65535, 0], "the cold world with no shelter over his": [65535, 0], "cold world with no shelter over his homeless": [65535, 0], "world with no shelter over his homeless head": [65535, 0], "with no shelter over his homeless head no": [65535, 0], "no shelter over his homeless head no friendly": [65535, 0], "shelter over his homeless head no friendly hand": [65535, 0], "over his homeless head no friendly hand to": [65535, 0], "his homeless head no friendly hand to wipe": [65535, 0], "homeless head no friendly hand to wipe the": [65535, 0], "head no friendly hand to wipe the death": [65535, 0], "no friendly hand to wipe the death damps": [65535, 0], "friendly hand to wipe the death damps from": [65535, 0], "hand to wipe the death damps from his": [65535, 0], "to wipe the death damps from his brow": [65535, 0], "wipe the death damps from his brow no": [65535, 0], "the death damps from his brow no loving": [65535, 0], "death damps from his brow no loving face": [65535, 0], "damps from his brow no loving face to": [65535, 0], "from his brow no loving face to bend": [65535, 0], "his brow no loving face to bend pityingly": [65535, 0], "brow no loving face to bend pityingly over": [65535, 0], "no loving face to bend pityingly over him": [65535, 0], "loving face to bend pityingly over him when": [65535, 0], "face to bend pityingly over him when the": [65535, 0], "to bend pityingly over him when the great": [65535, 0], "bend pityingly over him when the great agony": [65535, 0], "pityingly over him when the great agony came": [65535, 0], "over him when the great agony came and": [65535, 0], "him when the great agony came and thus": [65535, 0], "when the great agony came and thus she": [65535, 0], "the great agony came and thus she would": [65535, 0], "great agony came and thus she would see": [65535, 0], "agony came and thus she would see him": [65535, 0], "came and thus she would see him when": [65535, 0], "and thus she would see him when she": [65535, 0], "thus she would see him when she looked": [65535, 0], "she would see him when she looked out": [65535, 0], "would see him when she looked out upon": [65535, 0], "see him when she looked out upon the": [65535, 0], "him when she looked out upon the glad": [65535, 0], "when she looked out upon the glad morning": [65535, 0], "she looked out upon the glad morning and": [65535, 0], "looked out upon the glad morning and oh": [65535, 0], "out upon the glad morning and oh would": [65535, 0], "upon the glad morning and oh would she": [65535, 0], "the glad morning and oh would she drop": [65535, 0], "glad morning and oh would she drop one": [65535, 0], "morning and oh would she drop one little": [65535, 0], "and oh would she drop one little tear": [65535, 0], "oh would she drop one little tear upon": [65535, 0], "would she drop one little tear upon his": [65535, 0], "she drop one little tear upon his poor": [65535, 0], "drop one little tear upon his poor lifeless": [65535, 0], "one little tear upon his poor lifeless form": [65535, 0], "little tear upon his poor lifeless form would": [65535, 0], "tear upon his poor lifeless form would she": [65535, 0], "upon his poor lifeless form would she heave": [65535, 0], "his poor lifeless form would she heave one": [65535, 0], "poor lifeless form would she heave one little": [65535, 0], "lifeless form would she heave one little sigh": [65535, 0], "form would she heave one little sigh to": [65535, 0], "would she heave one little sigh to see": [65535, 0], "she heave one little sigh to see a": [65535, 0], "heave one little sigh to see a bright": [65535, 0], "one little sigh to see a bright young": [65535, 0], "little sigh to see a bright young life": [65535, 0], "sigh to see a bright young life so": [65535, 0], "to see a bright young life so rudely": [65535, 0], "see a bright young life so rudely blighted": [65535, 0], "a bright young life so rudely blighted so": [65535, 0], "bright young life so rudely blighted so untimely": [65535, 0], "young life so rudely blighted so untimely cut": [65535, 0], "life so rudely blighted so untimely cut down": [65535, 0], "so rudely blighted so untimely cut down the": [65535, 0], "rudely blighted so untimely cut down the window": [65535, 0], "blighted so untimely cut down the window went": [65535, 0], "so untimely cut down the window went up": [65535, 0], "untimely cut down the window went up a": [65535, 0], "cut down the window went up a maid": [65535, 0], "down the window went up a maid servant's": [65535, 0], "the window went up a maid servant's discordant": [65535, 0], "window went up a maid servant's discordant voice": [65535, 0], "went up a maid servant's discordant voice profaned": [65535, 0], "up a maid servant's discordant voice profaned the": [65535, 0], "a maid servant's discordant voice profaned the holy": [65535, 0], "maid servant's discordant voice profaned the holy calm": [65535, 0], "servant's discordant voice profaned the holy calm and": [65535, 0], "discordant voice profaned the holy calm and a": [65535, 0], "voice profaned the holy calm and a deluge": [65535, 0], "profaned the holy calm and a deluge of": [65535, 0], "the holy calm and a deluge of water": [65535, 0], "holy calm and a deluge of water drenched": [65535, 0], "calm and a deluge of water drenched the": [65535, 0], "and a deluge of water drenched the prone": [65535, 0], "a deluge of water drenched the prone martyr's": [65535, 0], "deluge of water drenched the prone martyr's remains": [65535, 0], "of water drenched the prone martyr's remains the": [65535, 0], "water drenched the prone martyr's remains the strangling": [65535, 0], "drenched the prone martyr's remains the strangling hero": [65535, 0], "the prone martyr's remains the strangling hero sprang": [65535, 0], "prone martyr's remains the strangling hero sprang up": [65535, 0], "martyr's remains the strangling hero sprang up with": [65535, 0], "remains the strangling hero sprang up with a": [65535, 0], "the strangling hero sprang up with a relieving": [65535, 0], "strangling hero sprang up with a relieving snort": [65535, 0], "hero sprang up with a relieving snort there": [65535, 0], "sprang up with a relieving snort there was": [65535, 0], "up with a relieving snort there was a": [65535, 0], "with a relieving snort there was a whiz": [65535, 0], "a relieving snort there was a whiz as": [65535, 0], "relieving snort there was a whiz as of": [65535, 0], "snort there was a whiz as of a": [65535, 0], "there was a whiz as of a missile": [65535, 0], "was a whiz as of a missile in": [65535, 0], "a whiz as of a missile in the": [65535, 0], "whiz as of a missile in the air": [65535, 0], "as of a missile in the air mingled": [65535, 0], "of a missile in the air mingled with": [65535, 0], "a missile in the air mingled with the": [65535, 0], "missile in the air mingled with the murmur": [65535, 0], "in the air mingled with the murmur of": [65535, 0], "the air mingled with the murmur of a": [65535, 0], "air mingled with the murmur of a curse": [65535, 0], "mingled with the murmur of a curse a": [65535, 0], "with the murmur of a curse a sound": [65535, 0], "the murmur of a curse a sound as": [65535, 0], "murmur of a curse a sound as of": [65535, 0], "of a curse a sound as of shivering": [65535, 0], "a curse a sound as of shivering glass": [65535, 0], "curse a sound as of shivering glass followed": [65535, 0], "a sound as of shivering glass followed and": [65535, 0], "sound as of shivering glass followed and a": [65535, 0], "as of shivering glass followed and a small": [65535, 0], "of shivering glass followed and a small vague": [65535, 0], "shivering glass followed and a small vague form": [65535, 0], "glass followed and a small vague form went": [65535, 0], "followed and a small vague form went over": [65535, 0], "and a small vague form went over the": [65535, 0], "a small vague form went over the fence": [65535, 0], "small vague form went over the fence and": [65535, 0], "vague form went over the fence and shot": [65535, 0], "form went over the fence and shot away": [65535, 0], "went over the fence and shot away in": [65535, 0], "over the fence and shot away in the": [65535, 0], "the fence and shot away in the gloom": [65535, 0], "fence and shot away in the gloom not": [65535, 0], "and shot away in the gloom not long": [65535, 0], "shot away in the gloom not long after": [65535, 0], "away in the gloom not long after as": [65535, 0], "in the gloom not long after as tom": [65535, 0], "the gloom not long after as tom all": [65535, 0], "gloom not long after as tom all undressed": [65535, 0], "not long after as tom all undressed for": [65535, 0], "long after as tom all undressed for bed": [65535, 0], "after as tom all undressed for bed was": [65535, 0], "as tom all undressed for bed was surveying": [65535, 0], "tom all undressed for bed was surveying his": [65535, 0], "all undressed for bed was surveying his drenched": [65535, 0], "undressed for bed was surveying his drenched garments": [65535, 0], "for bed was surveying his drenched garments by": [65535, 0], "bed was surveying his drenched garments by the": [65535, 0], "was surveying his drenched garments by the light": [65535, 0], "surveying his drenched garments by the light of": [65535, 0], "his drenched garments by the light of a": [65535, 0], "drenched garments by the light of a tallow": [65535, 0], "garments by the light of a tallow dip": [65535, 0], "by the light of a tallow dip sid": [65535, 0], "the light of a tallow dip sid woke": [65535, 0], "light of a tallow dip sid woke up": [65535, 0], "of a tallow dip sid woke up but": [65535, 0], "a tallow dip sid woke up but if": [65535, 0], "tallow dip sid woke up but if he": [65535, 0], "dip sid woke up but if he had": [65535, 0], "sid woke up but if he had any": [65535, 0], "woke up but if he had any dim": [65535, 0], "up but if he had any dim idea": [65535, 0], "but if he had any dim idea of": [65535, 0], "if he had any dim idea of making": [65535, 0], "he had any dim idea of making any": [65535, 0], "had any dim idea of making any references": [65535, 0], "any dim idea of making any references to": [65535, 0], "dim idea of making any references to allusions": [65535, 0], "idea of making any references to allusions he": [65535, 0], "of making any references to allusions he thought": [65535, 0], "making any references to allusions he thought better": [65535, 0], "any references to allusions he thought better of": [65535, 0], "references to allusions he thought better of it": [65535, 0], "to allusions he thought better of it and": [65535, 0], "allusions he thought better of it and held": [65535, 0], "he thought better of it and held his": [65535, 0], "thought better of it and held his peace": [65535, 0], "better of it and held his peace for": [65535, 0], "of it and held his peace for there": [65535, 0], "it and held his peace for there was": [65535, 0], "and held his peace for there was danger": [65535, 0], "held his peace for there was danger in": [65535, 0], "his peace for there was danger in tom's": [65535, 0], "peace for there was danger in tom's eye": [65535, 0], "for there was danger in tom's eye tom": [65535, 0], "there was danger in tom's eye tom turned": [65535, 0], "was danger in tom's eye tom turned in": [65535, 0], "danger in tom's eye tom turned in without": [65535, 0], "in tom's eye tom turned in without the": [65535, 0], "tom's eye tom turned in without the added": [65535, 0], "eye tom turned in without the added vexation": [65535, 0], "tom turned in without the added vexation of": [65535, 0], "turned in without the added vexation of prayers": [65535, 0], "in without the added vexation of prayers and": [65535, 0], "without the added vexation of prayers and sid": [65535, 0], "the added vexation of prayers and sid made": [65535, 0], "added vexation of prayers and sid made mental": [65535, 0], "vexation of prayers and sid made mental note": [65535, 0], "of prayers and sid made mental note of": [65535, 0], "prayers and sid made mental note of the": [65535, 0], "and sid made mental note of the omission": [65535, 0], "tom presented himself before aunt polly who was sitting": [65535, 0], "presented himself before aunt polly who was sitting by": [65535, 0], "himself before aunt polly who was sitting by an": [65535, 0], "before aunt polly who was sitting by an open": [65535, 0], "aunt polly who was sitting by an open window": [65535, 0], "polly who was sitting by an open window in": [65535, 0], "who was sitting by an open window in a": [65535, 0], "was sitting by an open window in a pleasant": [65535, 0], "sitting by an open window in a pleasant rearward": [65535, 0], "by an open window in a pleasant rearward apartment": [65535, 0], "an open window in a pleasant rearward apartment which": [65535, 0], "open window in a pleasant rearward apartment which was": [65535, 0], "window in a pleasant rearward apartment which was bedroom": [65535, 0], "in a pleasant rearward apartment which was bedroom breakfast": [65535, 0], "a pleasant rearward apartment which was bedroom breakfast room": [65535, 0], "pleasant rearward apartment which was bedroom breakfast room dining": [65535, 0], "rearward apartment which was bedroom breakfast room dining room": [65535, 0], "apartment which was bedroom breakfast room dining room and": [65535, 0], "which was bedroom breakfast room dining room and library": [65535, 0], "was bedroom breakfast room dining room and library combined": [65535, 0], "bedroom breakfast room dining room and library combined the": [65535, 0], "breakfast room dining room and library combined the balmy": [65535, 0], "room dining room and library combined the balmy summer": [65535, 0], "dining room and library combined the balmy summer air": [65535, 0], "room and library combined the balmy summer air the": [65535, 0], "and library combined the balmy summer air the restful": [65535, 0], "library combined the balmy summer air the restful quiet": [65535, 0], "combined the balmy summer air the restful quiet the": [65535, 0], "the balmy summer air the restful quiet the odor": [65535, 0], "balmy summer air the restful quiet the odor of": [65535, 0], "summer air the restful quiet the odor of the": [65535, 0], "air the restful quiet the odor of the flowers": [65535, 0], "the restful quiet the odor of the flowers and": [65535, 0], "restful quiet the odor of the flowers and the": [65535, 0], "quiet the odor of the flowers and the drowsing": [65535, 0], "the odor of the flowers and the drowsing murmur": [65535, 0], "odor of the flowers and the drowsing murmur of": [65535, 0], "of the flowers and the drowsing murmur of the": [65535, 0], "the flowers and the drowsing murmur of the bees": [65535, 0], "flowers and the drowsing murmur of the bees had": [65535, 0], "and the drowsing murmur of the bees had had": [65535, 0], "the drowsing murmur of the bees had had their": [65535, 0], "drowsing murmur of the bees had had their effect": [65535, 0], "murmur of the bees had had their effect and": [65535, 0], "of the bees had had their effect and she": [65535, 0], "the bees had had their effect and she was": [65535, 0], "bees had had their effect and she was nodding": [65535, 0], "had had their effect and she was nodding over": [65535, 0], "had their effect and she was nodding over her": [65535, 0], "their effect and she was nodding over her knitting": [65535, 0], "effect and she was nodding over her knitting for": [65535, 0], "and she was nodding over her knitting for she": [65535, 0], "she was nodding over her knitting for she had": [65535, 0], "was nodding over her knitting for she had no": [65535, 0], "nodding over her knitting for she had no company": [65535, 0], "over her knitting for she had no company but": [65535, 0], "her knitting for she had no company but the": [65535, 0], "knitting for she had no company but the cat": [65535, 0], "for she had no company but the cat and": [65535, 0], "she had no company but the cat and it": [65535, 0], "had no company but the cat and it was": [65535, 0], "no company but the cat and it was asleep": [65535, 0], "company but the cat and it was asleep in": [65535, 0], "but the cat and it was asleep in her": [65535, 0], "the cat and it was asleep in her lap": [65535, 0], "cat and it was asleep in her lap her": [65535, 0], "and it was asleep in her lap her spectacles": [65535, 0], "it was asleep in her lap her spectacles were": [65535, 0], "was asleep in her lap her spectacles were propped": [65535, 0], "asleep in her lap her spectacles were propped up": [65535, 0], "in her lap her spectacles were propped up on": [65535, 0], "her lap her spectacles were propped up on her": [65535, 0], "lap her spectacles were propped up on her gray": [65535, 0], "her spectacles were propped up on her gray head": [65535, 0], "spectacles were propped up on her gray head for": [65535, 0], "were propped up on her gray head for safety": [65535, 0], "propped up on her gray head for safety she": [65535, 0], "up on her gray head for safety she had": [65535, 0], "on her gray head for safety she had thought": [65535, 0], "her gray head for safety she had thought that": [65535, 0], "gray head for safety she had thought that of": [65535, 0], "head for safety she had thought that of course": [65535, 0], "for safety she had thought that of course tom": [65535, 0], "safety she had thought that of course tom had": [65535, 0], "she had thought that of course tom had deserted": [65535, 0], "had thought that of course tom had deserted long": [65535, 0], "thought that of course tom had deserted long ago": [65535, 0], "that of course tom had deserted long ago and": [65535, 0], "of course tom had deserted long ago and she": [65535, 0], "course tom had deserted long ago and she wondered": [65535, 0], "tom had deserted long ago and she wondered at": [65535, 0], "had deserted long ago and she wondered at seeing": [65535, 0], "deserted long ago and she wondered at seeing him": [65535, 0], "long ago and she wondered at seeing him place": [65535, 0], "ago and she wondered at seeing him place himself": [65535, 0], "and she wondered at seeing him place himself in": [65535, 0], "she wondered at seeing him place himself in her": [65535, 0], "wondered at seeing him place himself in her power": [65535, 0], "at seeing him place himself in her power again": [65535, 0], "seeing him place himself in her power again in": [65535, 0], "him place himself in her power again in this": [65535, 0], "place himself in her power again in this intrepid": [65535, 0], "himself in her power again in this intrepid way": [65535, 0], "in her power again in this intrepid way he": [65535, 0], "her power again in this intrepid way he said": [65535, 0], "power again in this intrepid way he said mayn't": [65535, 0], "again in this intrepid way he said mayn't i": [65535, 0], "in this intrepid way he said mayn't i go": [65535, 0], "this intrepid way he said mayn't i go and": [65535, 0], "intrepid way he said mayn't i go and play": [65535, 0], "way he said mayn't i go and play now": [65535, 0], "he said mayn't i go and play now aunt": [65535, 0], "said mayn't i go and play now aunt what": [65535, 0], "mayn't i go and play now aunt what a'ready": [65535, 0], "i go and play now aunt what a'ready how": [65535, 0], "go and play now aunt what a'ready how much": [65535, 0], "and play now aunt what a'ready how much have": [65535, 0], "play now aunt what a'ready how much have you": [65535, 0], "now aunt what a'ready how much have you done": [65535, 0], "aunt what a'ready how much have you done it's": [65535, 0], "what a'ready how much have you done it's all": [65535, 0], "a'ready how much have you done it's all done": [65535, 0], "how much have you done it's all done aunt": [65535, 0], "much have you done it's all done aunt tom": [65535, 0], "have you done it's all done aunt tom don't": [65535, 0], "you done it's all done aunt tom don't lie": [65535, 0], "done it's all done aunt tom don't lie to": [65535, 0], "it's all done aunt tom don't lie to me": [65535, 0], "all done aunt tom don't lie to me i": [65535, 0], "done aunt tom don't lie to me i can't": [65535, 0], "aunt tom don't lie to me i can't bear": [65535, 0], "tom don't lie to me i can't bear it": [65535, 0], "don't lie to me i can't bear it i": [65535, 0], "lie to me i can't bear it i ain't": [65535, 0], "to me i can't bear it i ain't aunt": [65535, 0], "me i can't bear it i ain't aunt it": [65535, 0], "i can't bear it i ain't aunt it is": [65535, 0], "can't bear it i ain't aunt it is all": [65535, 0], "bear it i ain't aunt it is all done": [65535, 0], "it i ain't aunt it is all done aunt": [65535, 0], "i ain't aunt it is all done aunt polly": [65535, 0], "ain't aunt it is all done aunt polly placed": [65535, 0], "aunt it is all done aunt polly placed small": [65535, 0], "it is all done aunt polly placed small trust": [65535, 0], "is all done aunt polly placed small trust in": [65535, 0], "all done aunt polly placed small trust in such": [65535, 0], "done aunt polly placed small trust in such evidence": [65535, 0], "aunt polly placed small trust in such evidence she": [65535, 0], "polly placed small trust in such evidence she went": [65535, 0], "placed small trust in such evidence she went out": [65535, 0], "small trust in such evidence she went out to": [65535, 0], "trust in such evidence she went out to see": [65535, 0], "in such evidence she went out to see for": [65535, 0], "such evidence she went out to see for herself": [65535, 0], "evidence she went out to see for herself and": [65535, 0], "she went out to see for herself and she": [65535, 0], "went out to see for herself and she would": [65535, 0], "out to see for herself and she would have": [65535, 0], "to see for herself and she would have been": [65535, 0], "see for herself and she would have been content": [65535, 0], "for herself and she would have been content to": [65535, 0], "herself and she would have been content to find": [65535, 0], "and she would have been content to find twenty": [65535, 0], "she would have been content to find twenty per": [65535, 0], "would have been content to find twenty per cent": [65535, 0], "have been content to find twenty per cent of": [65535, 0], "been content to find twenty per cent of tom's": [65535, 0], "content to find twenty per cent of tom's statement": [65535, 0], "to find twenty per cent of tom's statement true": [65535, 0], "find twenty per cent of tom's statement true when": [65535, 0], "twenty per cent of tom's statement true when she": [65535, 0], "per cent of tom's statement true when she found": [65535, 0], "cent of tom's statement true when she found the": [65535, 0], "of tom's statement true when she found the entire": [65535, 0], "tom's statement true when she found the entire fence": [65535, 0], "statement true when she found the entire fence whitewashed": [65535, 0], "true when she found the entire fence whitewashed and": [65535, 0], "when she found the entire fence whitewashed and not": [65535, 0], "she found the entire fence whitewashed and not only": [65535, 0], "found the entire fence whitewashed and not only whitewashed": [65535, 0], "the entire fence whitewashed and not only whitewashed but": [65535, 0], "entire fence whitewashed and not only whitewashed but elaborately": [65535, 0], "fence whitewashed and not only whitewashed but elaborately coated": [65535, 0], "whitewashed and not only whitewashed but elaborately coated and": [65535, 0], "and not only whitewashed but elaborately coated and recoated": [65535, 0], "not only whitewashed but elaborately coated and recoated and": [65535, 0], "only whitewashed but elaborately coated and recoated and even": [65535, 0], "whitewashed but elaborately coated and recoated and even a": [65535, 0], "but elaborately coated and recoated and even a streak": [65535, 0], "elaborately coated and recoated and even a streak added": [65535, 0], "coated and recoated and even a streak added to": [65535, 0], "and recoated and even a streak added to the": [65535, 0], "recoated and even a streak added to the ground": [65535, 0], "and even a streak added to the ground her": [65535, 0], "even a streak added to the ground her astonishment": [65535, 0], "a streak added to the ground her astonishment was": [65535, 0], "streak added to the ground her astonishment was almost": [65535, 0], "added to the ground her astonishment was almost unspeakable": [65535, 0], "to the ground her astonishment was almost unspeakable she": [65535, 0], "the ground her astonishment was almost unspeakable she said": [65535, 0], "ground her astonishment was almost unspeakable she said well": [65535, 0], "her astonishment was almost unspeakable she said well i": [65535, 0], "astonishment was almost unspeakable she said well i never": [65535, 0], "was almost unspeakable she said well i never there's": [65535, 0], "almost unspeakable she said well i never there's no": [65535, 0], "unspeakable she said well i never there's no getting": [65535, 0], "she said well i never there's no getting round": [65535, 0], "said well i never there's no getting round it": [65535, 0], "well i never there's no getting round it you": [65535, 0], "i never there's no getting round it you can": [65535, 0], "never there's no getting round it you can work": [65535, 0], "there's no getting round it you can work when": [65535, 0], "no getting round it you can work when you're": [65535, 0], "getting round it you can work when you're a": [65535, 0], "round it you can work when you're a mind": [65535, 0], "it you can work when you're a mind to": [65535, 0], "you can work when you're a mind to tom": [65535, 0], "can work when you're a mind to tom and": [65535, 0], "work when you're a mind to tom and then": [65535, 0], "when you're a mind to tom and then she": [65535, 0], "you're a mind to tom and then she diluted": [65535, 0], "a mind to tom and then she diluted the": [65535, 0], "mind to tom and then she diluted the compliment": [65535, 0], "to tom and then she diluted the compliment by": [65535, 0], "tom and then she diluted the compliment by adding": [65535, 0], "and then she diluted the compliment by adding but": [65535, 0], "then she diluted the compliment by adding but it's": [65535, 0], "she diluted the compliment by adding but it's powerful": [65535, 0], "diluted the compliment by adding but it's powerful seldom": [65535, 0], "the compliment by adding but it's powerful seldom you're": [65535, 0], "compliment by adding but it's powerful seldom you're a": [65535, 0], "by adding but it's powerful seldom you're a mind": [65535, 0], "adding but it's powerful seldom you're a mind to": [65535, 0], "but it's powerful seldom you're a mind to i'm": [65535, 0], "it's powerful seldom you're a mind to i'm bound": [65535, 0], "powerful seldom you're a mind to i'm bound to": [65535, 0], "seldom you're a mind to i'm bound to say": [65535, 0], "you're a mind to i'm bound to say well": [65535, 0], "a mind to i'm bound to say well go": [65535, 0], "mind to i'm bound to say well go 'long": [65535, 0], "to i'm bound to say well go 'long and": [65535, 0], "i'm bound to say well go 'long and play": [65535, 0], "bound to say well go 'long and play but": [65535, 0], "to say well go 'long and play but mind": [65535, 0], "say well go 'long and play but mind you": [65535, 0], "well go 'long and play but mind you get": [65535, 0], "go 'long and play but mind you get back": [65535, 0], "'long and play but mind you get back some": [65535, 0], "and play but mind you get back some time": [65535, 0], "play but mind you get back some time in": [65535, 0], "but mind you get back some time in a": [65535, 0], "mind you get back some time in a week": [65535, 0], "you get back some time in a week or": [65535, 0], "get back some time in a week or i'll": [65535, 0], "back some time in a week or i'll tan": [65535, 0], "some time in a week or i'll tan you": [65535, 0], "time in a week or i'll tan you she": [65535, 0], "in a week or i'll tan you she was": [65535, 0], "a week or i'll tan you she was so": [65535, 0], "week or i'll tan you she was so overcome": [65535, 0], "or i'll tan you she was so overcome by": [65535, 0], "i'll tan you she was so overcome by the": [65535, 0], "tan you she was so overcome by the splendor": [65535, 0], "you she was so overcome by the splendor of": [65535, 0], "she was so overcome by the splendor of his": [65535, 0], "was so overcome by the splendor of his achievement": [65535, 0], "so overcome by the splendor of his achievement that": [65535, 0], "overcome by the splendor of his achievement that she": [65535, 0], "by the splendor of his achievement that she took": [65535, 0], "the splendor of his achievement that she took him": [65535, 0], "splendor of his achievement that she took him into": [65535, 0], "of his achievement that she took him into the": [65535, 0], "his achievement that she took him into the closet": [65535, 0], "achievement that she took him into the closet and": [65535, 0], "that she took him into the closet and selected": [65535, 0], "she took him into the closet and selected a": [65535, 0], "took him into the closet and selected a choice": [65535, 0], "him into the closet and selected a choice apple": [65535, 0], "into the closet and selected a choice apple and": [65535, 0], "the closet and selected a choice apple and delivered": [65535, 0], "closet and selected a choice apple and delivered it": [65535, 0], "and selected a choice apple and delivered it to": [65535, 0], "selected a choice apple and delivered it to him": [65535, 0], "a choice apple and delivered it to him along": [65535, 0], "choice apple and delivered it to him along with": [65535, 0], "apple and delivered it to him along with an": [65535, 0], "and delivered it to him along with an improving": [65535, 0], "delivered it to him along with an improving lecture": [65535, 0], "it to him along with an improving lecture upon": [65535, 0], "to him along with an improving lecture upon the": [65535, 0], "him along with an improving lecture upon the added": [65535, 0], "along with an improving lecture upon the added value": [65535, 0], "with an improving lecture upon the added value and": [65535, 0], "an improving lecture upon the added value and flavor": [65535, 0], "improving lecture upon the added value and flavor a": [65535, 0], "lecture upon the added value and flavor a treat": [65535, 0], "upon the added value and flavor a treat took": [65535, 0], "the added value and flavor a treat took to": [65535, 0], "added value and flavor a treat took to itself": [65535, 0], "value and flavor a treat took to itself when": [65535, 0], "and flavor a treat took to itself when it": [65535, 0], "flavor a treat took to itself when it came": [65535, 0], "a treat took to itself when it came without": [65535, 0], "treat took to itself when it came without sin": [65535, 0], "took to itself when it came without sin through": [65535, 0], "to itself when it came without sin through virtuous": [65535, 0], "itself when it came without sin through virtuous effort": [65535, 0], "when it came without sin through virtuous effort and": [65535, 0], "it came without sin through virtuous effort and while": [65535, 0], "came without sin through virtuous effort and while she": [65535, 0], "without sin through virtuous effort and while she closed": [65535, 0], "sin through virtuous effort and while she closed with": [65535, 0], "through virtuous effort and while she closed with a": [65535, 0], "virtuous effort and while she closed with a happy": [65535, 0], "effort and while she closed with a happy scriptural": [65535, 0], "and while she closed with a happy scriptural flourish": [65535, 0], "while she closed with a happy scriptural flourish he": [65535, 0], "she closed with a happy scriptural flourish he hooked": [65535, 0], "closed with a happy scriptural flourish he hooked a": [65535, 0], "with a happy scriptural flourish he hooked a doughnut": [65535, 0], "a happy scriptural flourish he hooked a doughnut then": [65535, 0], "happy scriptural flourish he hooked a doughnut then he": [65535, 0], "scriptural flourish he hooked a doughnut then he skipped": [65535, 0], "flourish he hooked a doughnut then he skipped out": [65535, 0], "he hooked a doughnut then he skipped out and": [65535, 0], "hooked a doughnut then he skipped out and saw": [65535, 0], "a doughnut then he skipped out and saw sid": [65535, 0], "doughnut then he skipped out and saw sid just": [65535, 0], "then he skipped out and saw sid just starting": [65535, 0], "he skipped out and saw sid just starting up": [65535, 0], "skipped out and saw sid just starting up the": [65535, 0], "out and saw sid just starting up the outside": [65535, 0], "and saw sid just starting up the outside stairway": [65535, 0], "saw sid just starting up the outside stairway that": [65535, 0], "sid just starting up the outside stairway that led": [65535, 0], "just starting up the outside stairway that led to": [65535, 0], "starting up the outside stairway that led to the": [65535, 0], "up the outside stairway that led to the back": [65535, 0], "the outside stairway that led to the back rooms": [65535, 0], "outside stairway that led to the back rooms on": [65535, 0], "stairway that led to the back rooms on the": [65535, 0], "that led to the back rooms on the second": [65535, 0], "led to the back rooms on the second floor": [65535, 0], "to the back rooms on the second floor clods": [65535, 0], "the back rooms on the second floor clods were": [65535, 0], "back rooms on the second floor clods were handy": [65535, 0], "rooms on the second floor clods were handy and": [65535, 0], "on the second floor clods were handy and the": [65535, 0], "the second floor clods were handy and the air": [65535, 0], "second floor clods were handy and the air was": [65535, 0], "floor clods were handy and the air was full": [65535, 0], "clods were handy and the air was full of": [65535, 0], "were handy and the air was full of them": [65535, 0], "handy and the air was full of them in": [65535, 0], "and the air was full of them in a": [65535, 0], "the air was full of them in a twinkling": [65535, 0], "air was full of them in a twinkling they": [65535, 0], "was full of them in a twinkling they raged": [65535, 0], "full of them in a twinkling they raged around": [65535, 0], "of them in a twinkling they raged around sid": [65535, 0], "them in a twinkling they raged around sid like": [65535, 0], "in a twinkling they raged around sid like a": [65535, 0], "a twinkling they raged around sid like a hail": [65535, 0], "twinkling they raged around sid like a hail storm": [65535, 0], "they raged around sid like a hail storm and": [65535, 0], "raged around sid like a hail storm and before": [65535, 0], "around sid like a hail storm and before aunt": [65535, 0], "sid like a hail storm and before aunt polly": [65535, 0], "like a hail storm and before aunt polly could": [65535, 0], "a hail storm and before aunt polly could collect": [65535, 0], "hail storm and before aunt polly could collect her": [65535, 0], "storm and before aunt polly could collect her surprised": [65535, 0], "and before aunt polly could collect her surprised faculties": [65535, 0], "before aunt polly could collect her surprised faculties and": [65535, 0], "aunt polly could collect her surprised faculties and sally": [65535, 0], "polly could collect her surprised faculties and sally to": [65535, 0], "could collect her surprised faculties and sally to the": [65535, 0], "collect her surprised faculties and sally to the rescue": [65535, 0], "her surprised faculties and sally to the rescue six": [65535, 0], "surprised faculties and sally to the rescue six or": [65535, 0], "faculties and sally to the rescue six or seven": [65535, 0], "and sally to the rescue six or seven clods": [65535, 0], "sally to the rescue six or seven clods had": [65535, 0], "to the rescue six or seven clods had taken": [65535, 0], "the rescue six or seven clods had taken personal": [65535, 0], "rescue six or seven clods had taken personal effect": [65535, 0], "six or seven clods had taken personal effect and": [65535, 0], "or seven clods had taken personal effect and tom": [65535, 0], "seven clods had taken personal effect and tom was": [65535, 0], "clods had taken personal effect and tom was over": [65535, 0], "had taken personal effect and tom was over the": [65535, 0], "taken personal effect and tom was over the fence": [65535, 0], "personal effect and tom was over the fence and": [65535, 0], "effect and tom was over the fence and gone": [65535, 0], "and tom was over the fence and gone there": [65535, 0], "tom was over the fence and gone there was": [65535, 0], "was over the fence and gone there was a": [65535, 0], "over the fence and gone there was a gate": [65535, 0], "the fence and gone there was a gate but": [65535, 0], "fence and gone there was a gate but as": [65535, 0], "and gone there was a gate but as a": [65535, 0], "gone there was a gate but as a general": [65535, 0], "there was a gate but as a general thing": [65535, 0], "was a gate but as a general thing he": [65535, 0], "a gate but as a general thing he was": [65535, 0], "gate but as a general thing he was too": [65535, 0], "but as a general thing he was too crowded": [65535, 0], "as a general thing he was too crowded for": [65535, 0], "a general thing he was too crowded for time": [65535, 0], "general thing he was too crowded for time to": [65535, 0], "thing he was too crowded for time to make": [65535, 0], "he was too crowded for time to make use": [65535, 0], "was too crowded for time to make use of": [65535, 0], "too crowded for time to make use of it": [65535, 0], "crowded for time to make use of it his": [65535, 0], "for time to make use of it his soul": [65535, 0], "time to make use of it his soul was": [65535, 0], "to make use of it his soul was at": [65535, 0], "make use of it his soul was at peace": [65535, 0], "use of it his soul was at peace now": [65535, 0], "of it his soul was at peace now that": [65535, 0], "it his soul was at peace now that he": [65535, 0], "his soul was at peace now that he had": [65535, 0], "soul was at peace now that he had settled": [65535, 0], "was at peace now that he had settled with": [65535, 0], "at peace now that he had settled with sid": [65535, 0], "peace now that he had settled with sid for": [65535, 0], "now that he had settled with sid for calling": [65535, 0], "that he had settled with sid for calling attention": [65535, 0], "he had settled with sid for calling attention to": [65535, 0], "had settled with sid for calling attention to his": [65535, 0], "settled with sid for calling attention to his black": [65535, 0], "with sid for calling attention to his black thread": [65535, 0], "sid for calling attention to his black thread and": [65535, 0], "for calling attention to his black thread and getting": [65535, 0], "calling attention to his black thread and getting him": [65535, 0], "attention to his black thread and getting him into": [65535, 0], "to his black thread and getting him into trouble": [65535, 0], "his black thread and getting him into trouble tom": [65535, 0], "black thread and getting him into trouble tom skirted": [65535, 0], "thread and getting him into trouble tom skirted the": [65535, 0], "and getting him into trouble tom skirted the block": [65535, 0], "getting him into trouble tom skirted the block and": [65535, 0], "him into trouble tom skirted the block and came": [65535, 0], "into trouble tom skirted the block and came round": [65535, 0], "trouble tom skirted the block and came round into": [65535, 0], "tom skirted the block and came round into a": [65535, 0], "skirted the block and came round into a muddy": [65535, 0], "the block and came round into a muddy alley": [65535, 0], "block and came round into a muddy alley that": [65535, 0], "and came round into a muddy alley that led": [65535, 0], "came round into a muddy alley that led by": [65535, 0], "round into a muddy alley that led by the": [65535, 0], "into a muddy alley that led by the back": [65535, 0], "a muddy alley that led by the back of": [65535, 0], "muddy alley that led by the back of his": [65535, 0], "alley that led by the back of his aunt's": [65535, 0], "that led by the back of his aunt's cowstable": [65535, 0], "led by the back of his aunt's cowstable he": [65535, 0], "by the back of his aunt's cowstable he presently": [65535, 0], "the back of his aunt's cowstable he presently got": [65535, 0], "back of his aunt's cowstable he presently got safely": [65535, 0], "of his aunt's cowstable he presently got safely beyond": [65535, 0], "his aunt's cowstable he presently got safely beyond the": [65535, 0], "aunt's cowstable he presently got safely beyond the reach": [65535, 0], "cowstable he presently got safely beyond the reach of": [65535, 0], "he presently got safely beyond the reach of capture": [65535, 0], "presently got safely beyond the reach of capture and": [65535, 0], "got safely beyond the reach of capture and punishment": [65535, 0], "safely beyond the reach of capture and punishment and": [65535, 0], "beyond the reach of capture and punishment and hastened": [65535, 0], "the reach of capture and punishment and hastened toward": [65535, 0], "reach of capture and punishment and hastened toward the": [65535, 0], "of capture and punishment and hastened toward the public": [65535, 0], "capture and punishment and hastened toward the public square": [65535, 0], "and punishment and hastened toward the public square of": [65535, 0], "punishment and hastened toward the public square of the": [65535, 0], "and hastened toward the public square of the village": [65535, 0], "hastened toward the public square of the village where": [65535, 0], "toward the public square of the village where two": [65535, 0], "the public square of the village where two military": [65535, 0], "public square of the village where two military companies": [65535, 0], "square of the village where two military companies of": [65535, 0], "of the village where two military companies of boys": [65535, 0], "the village where two military companies of boys had": [65535, 0], "village where two military companies of boys had met": [65535, 0], "where two military companies of boys had met for": [65535, 0], "two military companies of boys had met for conflict": [65535, 0], "military companies of boys had met for conflict according": [65535, 0], "companies of boys had met for conflict according to": [65535, 0], "of boys had met for conflict according to previous": [65535, 0], "boys had met for conflict according to previous appointment": [65535, 0], "had met for conflict according to previous appointment tom": [65535, 0], "met for conflict according to previous appointment tom was": [65535, 0], "for conflict according to previous appointment tom was general": [65535, 0], "conflict according to previous appointment tom was general of": [65535, 0], "according to previous appointment tom was general of one": [65535, 0], "to previous appointment tom was general of one of": [65535, 0], "previous appointment tom was general of one of these": [65535, 0], "appointment tom was general of one of these armies": [65535, 0], "tom was general of one of these armies joe": [65535, 0], "was general of one of these armies joe harper": [65535, 0], "general of one of these armies joe harper a": [65535, 0], "of one of these armies joe harper a bosom": [65535, 0], "one of these armies joe harper a bosom friend": [65535, 0], "of these armies joe harper a bosom friend general": [65535, 0], "these armies joe harper a bosom friend general of": [65535, 0], "armies joe harper a bosom friend general of the": [65535, 0], "joe harper a bosom friend general of the other": [65535, 0], "harper a bosom friend general of the other these": [65535, 0], "a bosom friend general of the other these two": [65535, 0], "bosom friend general of the other these two great": [65535, 0], "friend general of the other these two great commanders": [65535, 0], "general of the other these two great commanders did": [65535, 0], "of the other these two great commanders did not": [65535, 0], "the other these two great commanders did not condescend": [65535, 0], "other these two great commanders did not condescend to": [65535, 0], "these two great commanders did not condescend to fight": [65535, 0], "two great commanders did not condescend to fight in": [65535, 0], "great commanders did not condescend to fight in person": [65535, 0], "commanders did not condescend to fight in person that": [65535, 0], "did not condescend to fight in person that being": [65535, 0], "not condescend to fight in person that being better": [65535, 0], "condescend to fight in person that being better suited": [65535, 0], "to fight in person that being better suited to": [65535, 0], "fight in person that being better suited to the": [65535, 0], "in person that being better suited to the still": [65535, 0], "person that being better suited to the still smaller": [65535, 0], "that being better suited to the still smaller fry": [65535, 0], "being better suited to the still smaller fry but": [65535, 0], "better suited to the still smaller fry but sat": [65535, 0], "suited to the still smaller fry but sat together": [65535, 0], "to the still smaller fry but sat together on": [65535, 0], "the still smaller fry but sat together on an": [65535, 0], "still smaller fry but sat together on an eminence": [65535, 0], "smaller fry but sat together on an eminence and": [65535, 0], "fry but sat together on an eminence and conducted": [65535, 0], "but sat together on an eminence and conducted the": [65535, 0], "sat together on an eminence and conducted the field": [65535, 0], "together on an eminence and conducted the field operations": [65535, 0], "on an eminence and conducted the field operations by": [65535, 0], "an eminence and conducted the field operations by orders": [65535, 0], "eminence and conducted the field operations by orders delivered": [65535, 0], "and conducted the field operations by orders delivered through": [65535, 0], "conducted the field operations by orders delivered through aides": [65535, 0], "the field operations by orders delivered through aides de": [65535, 0], "field operations by orders delivered through aides de camp": [65535, 0], "operations by orders delivered through aides de camp tom's": [65535, 0], "by orders delivered through aides de camp tom's army": [65535, 0], "orders delivered through aides de camp tom's army won": [65535, 0], "delivered through aides de camp tom's army won a": [65535, 0], "through aides de camp tom's army won a great": [65535, 0], "aides de camp tom's army won a great victory": [65535, 0], "de camp tom's army won a great victory after": [65535, 0], "camp tom's army won a great victory after a": [65535, 0], "tom's army won a great victory after a long": [65535, 0], "army won a great victory after a long and": [65535, 0], "won a great victory after a long and hard": [65535, 0], "a great victory after a long and hard fought": [65535, 0], "great victory after a long and hard fought battle": [65535, 0], "victory after a long and hard fought battle then": [65535, 0], "after a long and hard fought battle then the": [65535, 0], "a long and hard fought battle then the dead": [65535, 0], "long and hard fought battle then the dead were": [65535, 0], "and hard fought battle then the dead were counted": [65535, 0], "hard fought battle then the dead were counted prisoners": [65535, 0], "fought battle then the dead were counted prisoners exchanged": [65535, 0], "battle then the dead were counted prisoners exchanged the": [65535, 0], "then the dead were counted prisoners exchanged the terms": [65535, 0], "the dead were counted prisoners exchanged the terms of": [65535, 0], "dead were counted prisoners exchanged the terms of the": [65535, 0], "were counted prisoners exchanged the terms of the next": [65535, 0], "counted prisoners exchanged the terms of the next disagreement": [65535, 0], "prisoners exchanged the terms of the next disagreement agreed": [65535, 0], "exchanged the terms of the next disagreement agreed upon": [65535, 0], "the terms of the next disagreement agreed upon and": [65535, 0], "terms of the next disagreement agreed upon and the": [65535, 0], "of the next disagreement agreed upon and the day": [65535, 0], "the next disagreement agreed upon and the day for": [65535, 0], "next disagreement agreed upon and the day for the": [65535, 0], "disagreement agreed upon and the day for the necessary": [65535, 0], "agreed upon and the day for the necessary battle": [65535, 0], "upon and the day for the necessary battle appointed": [65535, 0], "and the day for the necessary battle appointed after": [65535, 0], "the day for the necessary battle appointed after which": [65535, 0], "day for the necessary battle appointed after which the": [65535, 0], "for the necessary battle appointed after which the armies": [65535, 0], "the necessary battle appointed after which the armies fell": [65535, 0], "necessary battle appointed after which the armies fell into": [65535, 0], "battle appointed after which the armies fell into line": [65535, 0], "appointed after which the armies fell into line and": [65535, 0], "after which the armies fell into line and marched": [65535, 0], "which the armies fell into line and marched away": [65535, 0], "the armies fell into line and marched away and": [65535, 0], "armies fell into line and marched away and tom": [65535, 0], "fell into line and marched away and tom turned": [65535, 0], "into line and marched away and tom turned homeward": [65535, 0], "line and marched away and tom turned homeward alone": [65535, 0], "and marched away and tom turned homeward alone as": [65535, 0], "marched away and tom turned homeward alone as he": [65535, 0], "away and tom turned homeward alone as he was": [65535, 0], "and tom turned homeward alone as he was passing": [65535, 0], "tom turned homeward alone as he was passing by": [65535, 0], "turned homeward alone as he was passing by the": [65535, 0], "homeward alone as he was passing by the house": [65535, 0], "alone as he was passing by the house where": [65535, 0], "as he was passing by the house where jeff": [65535, 0], "he was passing by the house where jeff thatcher": [65535, 0], "was passing by the house where jeff thatcher lived": [65535, 0], "passing by the house where jeff thatcher lived he": [65535, 0], "by the house where jeff thatcher lived he saw": [65535, 0], "the house where jeff thatcher lived he saw a": [65535, 0], "house where jeff thatcher lived he saw a new": [65535, 0], "where jeff thatcher lived he saw a new girl": [65535, 0], "jeff thatcher lived he saw a new girl in": [65535, 0], "thatcher lived he saw a new girl in the": [65535, 0], "lived he saw a new girl in the garden": [65535, 0], "he saw a new girl in the garden a": [65535, 0], "saw a new girl in the garden a lovely": [65535, 0], "a new girl in the garden a lovely little": [65535, 0], "new girl in the garden a lovely little blue": [65535, 0], "girl in the garden a lovely little blue eyed": [65535, 0], "in the garden a lovely little blue eyed creature": [65535, 0], "the garden a lovely little blue eyed creature with": [65535, 0], "garden a lovely little blue eyed creature with yellow": [65535, 0], "a lovely little blue eyed creature with yellow hair": [65535, 0], "lovely little blue eyed creature with yellow hair plaited": [65535, 0], "little blue eyed creature with yellow hair plaited into": [65535, 0], "blue eyed creature with yellow hair plaited into two": [65535, 0], "eyed creature with yellow hair plaited into two long": [65535, 0], "creature with yellow hair plaited into two long tails": [65535, 0], "with yellow hair plaited into two long tails white": [65535, 0], "yellow hair plaited into two long tails white summer": [65535, 0], "hair plaited into two long tails white summer frock": [65535, 0], "plaited into two long tails white summer frock and": [65535, 0], "into two long tails white summer frock and embroidered": [65535, 0], "two long tails white summer frock and embroidered pantalettes": [65535, 0], "long tails white summer frock and embroidered pantalettes the": [65535, 0], "tails white summer frock and embroidered pantalettes the fresh": [65535, 0], "white summer frock and embroidered pantalettes the fresh crowned": [65535, 0], "summer frock and embroidered pantalettes the fresh crowned hero": [65535, 0], "frock and embroidered pantalettes the fresh crowned hero fell": [65535, 0], "and embroidered pantalettes the fresh crowned hero fell without": [65535, 0], "embroidered pantalettes the fresh crowned hero fell without firing": [65535, 0], "pantalettes the fresh crowned hero fell without firing a": [65535, 0], "the fresh crowned hero fell without firing a shot": [65535, 0], "fresh crowned hero fell without firing a shot a": [65535, 0], "crowned hero fell without firing a shot a certain": [65535, 0], "hero fell without firing a shot a certain amy": [65535, 0], "fell without firing a shot a certain amy lawrence": [65535, 0], "without firing a shot a certain amy lawrence vanished": [65535, 0], "firing a shot a certain amy lawrence vanished out": [65535, 0], "a shot a certain amy lawrence vanished out of": [65535, 0], "shot a certain amy lawrence vanished out of his": [65535, 0], "a certain amy lawrence vanished out of his heart": [65535, 0], "certain amy lawrence vanished out of his heart and": [65535, 0], "amy lawrence vanished out of his heart and left": [65535, 0], "lawrence vanished out of his heart and left not": [65535, 0], "vanished out of his heart and left not even": [65535, 0], "out of his heart and left not even a": [65535, 0], "of his heart and left not even a memory": [65535, 0], "his heart and left not even a memory of": [65535, 0], "heart and left not even a memory of herself": [65535, 0], "and left not even a memory of herself behind": [65535, 0], "left not even a memory of herself behind he": [65535, 0], "not even a memory of herself behind he had": [65535, 0], "even a memory of herself behind he had thought": [65535, 0], "a memory of herself behind he had thought he": [65535, 0], "memory of herself behind he had thought he loved": [65535, 0], "of herself behind he had thought he loved her": [65535, 0], "herself behind he had thought he loved her to": [65535, 0], "behind he had thought he loved her to distraction": [65535, 0], "he had thought he loved her to distraction he": [65535, 0], "had thought he loved her to distraction he had": [65535, 0], "thought he loved her to distraction he had regarded": [65535, 0], "he loved her to distraction he had regarded his": [65535, 0], "loved her to distraction he had regarded his passion": [65535, 0], "her to distraction he had regarded his passion as": [65535, 0], "to distraction he had regarded his passion as adoration": [65535, 0], "distraction he had regarded his passion as adoration and": [65535, 0], "he had regarded his passion as adoration and behold": [65535, 0], "had regarded his passion as adoration and behold it": [65535, 0], "regarded his passion as adoration and behold it was": [65535, 0], "his passion as adoration and behold it was only": [65535, 0], "passion as adoration and behold it was only a": [65535, 0], "as adoration and behold it was only a poor": [65535, 0], "adoration and behold it was only a poor little": [65535, 0], "and behold it was only a poor little evanescent": [65535, 0], "behold it was only a poor little evanescent partiality": [65535, 0], "it was only a poor little evanescent partiality he": [65535, 0], "was only a poor little evanescent partiality he had": [65535, 0], "only a poor little evanescent partiality he had been": [65535, 0], "a poor little evanescent partiality he had been months": [65535, 0], "poor little evanescent partiality he had been months winning": [65535, 0], "little evanescent partiality he had been months winning her": [65535, 0], "evanescent partiality he had been months winning her she": [65535, 0], "partiality he had been months winning her she had": [65535, 0], "he had been months winning her she had confessed": [65535, 0], "had been months winning her she had confessed hardly": [65535, 0], "been months winning her she had confessed hardly a": [65535, 0], "months winning her she had confessed hardly a week": [65535, 0], "winning her she had confessed hardly a week ago": [65535, 0], "her she had confessed hardly a week ago he": [65535, 0], "she had confessed hardly a week ago he had": [65535, 0], "had confessed hardly a week ago he had been": [65535, 0], "confessed hardly a week ago he had been the": [65535, 0], "hardly a week ago he had been the happiest": [65535, 0], "a week ago he had been the happiest and": [65535, 0], "week ago he had been the happiest and the": [65535, 0], "ago he had been the happiest and the proudest": [65535, 0], "he had been the happiest and the proudest boy": [65535, 0], "had been the happiest and the proudest boy in": [65535, 0], "been the happiest and the proudest boy in the": [65535, 0], "the happiest and the proudest boy in the world": [65535, 0], "happiest and the proudest boy in the world only": [65535, 0], "and the proudest boy in the world only seven": [65535, 0], "the proudest boy in the world only seven short": [65535, 0], "proudest boy in the world only seven short days": [65535, 0], "boy in the world only seven short days and": [65535, 0], "in the world only seven short days and here": [65535, 0], "the world only seven short days and here in": [65535, 0], "world only seven short days and here in one": [65535, 0], "only seven short days and here in one instant": [65535, 0], "seven short days and here in one instant of": [65535, 0], "short days and here in one instant of time": [65535, 0], "days and here in one instant of time she": [65535, 0], "and here in one instant of time she had": [65535, 0], "here in one instant of time she had gone": [65535, 0], "in one instant of time she had gone out": [65535, 0], "one instant of time she had gone out of": [65535, 0], "instant of time she had gone out of his": [65535, 0], "of time she had gone out of his heart": [65535, 0], "time she had gone out of his heart like": [65535, 0], "she had gone out of his heart like a": [65535, 0], "had gone out of his heart like a casual": [65535, 0], "gone out of his heart like a casual stranger": [65535, 0], "out of his heart like a casual stranger whose": [65535, 0], "of his heart like a casual stranger whose visit": [65535, 0], "his heart like a casual stranger whose visit is": [65535, 0], "heart like a casual stranger whose visit is done": [65535, 0], "like a casual stranger whose visit is done he": [65535, 0], "a casual stranger whose visit is done he worshipped": [65535, 0], "casual stranger whose visit is done he worshipped this": [65535, 0], "stranger whose visit is done he worshipped this new": [65535, 0], "whose visit is done he worshipped this new angel": [65535, 0], "visit is done he worshipped this new angel with": [65535, 0], "is done he worshipped this new angel with furtive": [65535, 0], "done he worshipped this new angel with furtive eye": [65535, 0], "he worshipped this new angel with furtive eye till": [65535, 0], "worshipped this new angel with furtive eye till he": [65535, 0], "this new angel with furtive eye till he saw": [65535, 0], "new angel with furtive eye till he saw that": [65535, 0], "angel with furtive eye till he saw that she": [65535, 0], "with furtive eye till he saw that she had": [65535, 0], "furtive eye till he saw that she had discovered": [65535, 0], "eye till he saw that she had discovered him": [65535, 0], "till he saw that she had discovered him then": [65535, 0], "he saw that she had discovered him then he": [65535, 0], "saw that she had discovered him then he pretended": [65535, 0], "that she had discovered him then he pretended he": [65535, 0], "she had discovered him then he pretended he did": [65535, 0], "had discovered him then he pretended he did not": [65535, 0], "discovered him then he pretended he did not know": [65535, 0], "him then he pretended he did not know she": [65535, 0], "then he pretended he did not know she was": [65535, 0], "he pretended he did not know she was present": [65535, 0], "pretended he did not know she was present and": [65535, 0], "he did not know she was present and began": [65535, 0], "did not know she was present and began to": [65535, 0], "not know she was present and began to show": [65535, 0], "know she was present and began to show off": [65535, 0], "she was present and began to show off in": [65535, 0], "was present and began to show off in all": [65535, 0], "present and began to show off in all sorts": [65535, 0], "and began to show off in all sorts of": [65535, 0], "began to show off in all sorts of absurd": [65535, 0], "to show off in all sorts of absurd boyish": [65535, 0], "show off in all sorts of absurd boyish ways": [65535, 0], "off in all sorts of absurd boyish ways in": [65535, 0], "in all sorts of absurd boyish ways in order": [65535, 0], "all sorts of absurd boyish ways in order to": [65535, 0], "sorts of absurd boyish ways in order to win": [65535, 0], "of absurd boyish ways in order to win her": [65535, 0], "absurd boyish ways in order to win her admiration": [65535, 0], "boyish ways in order to win her admiration he": [65535, 0], "ways in order to win her admiration he kept": [65535, 0], "in order to win her admiration he kept up": [65535, 0], "order to win her admiration he kept up this": [65535, 0], "to win her admiration he kept up this grotesque": [65535, 0], "win her admiration he kept up this grotesque foolishness": [65535, 0], "her admiration he kept up this grotesque foolishness for": [65535, 0], "admiration he kept up this grotesque foolishness for some": [65535, 0], "he kept up this grotesque foolishness for some time": [65535, 0], "kept up this grotesque foolishness for some time but": [65535, 0], "up this grotesque foolishness for some time but by": [65535, 0], "this grotesque foolishness for some time but by and": [65535, 0], "grotesque foolishness for some time but by and by": [65535, 0], "foolishness for some time but by and by while": [65535, 0], "for some time but by and by while he": [65535, 0], "some time but by and by while he was": [65535, 0], "time but by and by while he was in": [65535, 0], "but by and by while he was in the": [65535, 0], "by and by while he was in the midst": [65535, 0], "and by while he was in the midst of": [65535, 0], "by while he was in the midst of some": [65535, 0], "while he was in the midst of some dangerous": [65535, 0], "he was in the midst of some dangerous gymnastic": [65535, 0], "was in the midst of some dangerous gymnastic performances": [65535, 0], "in the midst of some dangerous gymnastic performances he": [65535, 0], "the midst of some dangerous gymnastic performances he glanced": [65535, 0], "midst of some dangerous gymnastic performances he glanced aside": [65535, 0], "of some dangerous gymnastic performances he glanced aside and": [65535, 0], "some dangerous gymnastic performances he glanced aside and saw": [65535, 0], "dangerous gymnastic performances he glanced aside and saw that": [65535, 0], "gymnastic performances he glanced aside and saw that the": [65535, 0], "performances he glanced aside and saw that the little": [65535, 0], "he glanced aside and saw that the little girl": [65535, 0], "glanced aside and saw that the little girl was": [65535, 0], "aside and saw that the little girl was wending": [65535, 0], "and saw that the little girl was wending her": [65535, 0], "saw that the little girl was wending her way": [65535, 0], "that the little girl was wending her way toward": [65535, 0], "the little girl was wending her way toward the": [65535, 0], "little girl was wending her way toward the house": [65535, 0], "girl was wending her way toward the house tom": [65535, 0], "was wending her way toward the house tom came": [65535, 0], "wending her way toward the house tom came up": [65535, 0], "her way toward the house tom came up to": [65535, 0], "way toward the house tom came up to the": [65535, 0], "toward the house tom came up to the fence": [65535, 0], "the house tom came up to the fence and": [65535, 0], "house tom came up to the fence and leaned": [65535, 0], "tom came up to the fence and leaned on": [65535, 0], "came up to the fence and leaned on it": [65535, 0], "up to the fence and leaned on it grieving": [65535, 0], "to the fence and leaned on it grieving and": [65535, 0], "the fence and leaned on it grieving and hoping": [65535, 0], "fence and leaned on it grieving and hoping she": [65535, 0], "and leaned on it grieving and hoping she would": [65535, 0], "leaned on it grieving and hoping she would tarry": [65535, 0], "on it grieving and hoping she would tarry yet": [65535, 0], "it grieving and hoping she would tarry yet awhile": [65535, 0], "grieving and hoping she would tarry yet awhile longer": [65535, 0], "and hoping she would tarry yet awhile longer she": [65535, 0], "hoping she would tarry yet awhile longer she halted": [65535, 0], "she would tarry yet awhile longer she halted a": [65535, 0], "would tarry yet awhile longer she halted a moment": [65535, 0], "tarry yet awhile longer she halted a moment on": [65535, 0], "yet awhile longer she halted a moment on the": [65535, 0], "awhile longer she halted a moment on the steps": [65535, 0], "longer she halted a moment on the steps and": [65535, 0], "she halted a moment on the steps and then": [65535, 0], "halted a moment on the steps and then moved": [65535, 0], "a moment on the steps and then moved toward": [65535, 0], "moment on the steps and then moved toward the": [65535, 0], "on the steps and then moved toward the door": [65535, 0], "the steps and then moved toward the door tom": [65535, 0], "steps and then moved toward the door tom heaved": [65535, 0], "and then moved toward the door tom heaved a": [65535, 0], "then moved toward the door tom heaved a great": [65535, 0], "moved toward the door tom heaved a great sigh": [65535, 0], "toward the door tom heaved a great sigh as": [65535, 0], "the door tom heaved a great sigh as she": [65535, 0], "door tom heaved a great sigh as she put": [65535, 0], "tom heaved a great sigh as she put her": [65535, 0], "heaved a great sigh as she put her foot": [65535, 0], "a great sigh as she put her foot on": [65535, 0], "great sigh as she put her foot on the": [65535, 0], "sigh as she put her foot on the threshold": [65535, 0], "as she put her foot on the threshold but": [65535, 0], "she put her foot on the threshold but his": [65535, 0], "put her foot on the threshold but his face": [65535, 0], "her foot on the threshold but his face lit": [65535, 0], "foot on the threshold but his face lit up": [65535, 0], "on the threshold but his face lit up right": [65535, 0], "the threshold but his face lit up right away": [65535, 0], "threshold but his face lit up right away for": [65535, 0], "but his face lit up right away for she": [65535, 0], "his face lit up right away for she tossed": [65535, 0], "face lit up right away for she tossed a": [65535, 0], "lit up right away for she tossed a pansy": [65535, 0], "up right away for she tossed a pansy over": [65535, 0], "right away for she tossed a pansy over the": [65535, 0], "away for she tossed a pansy over the fence": [65535, 0], "for she tossed a pansy over the fence a": [65535, 0], "she tossed a pansy over the fence a moment": [65535, 0], "tossed a pansy over the fence a moment before": [65535, 0], "a pansy over the fence a moment before she": [65535, 0], "pansy over the fence a moment before she disappeared": [65535, 0], "over the fence a moment before she disappeared the": [65535, 0], "the fence a moment before she disappeared the boy": [65535, 0], "fence a moment before she disappeared the boy ran": [65535, 0], "a moment before she disappeared the boy ran around": [65535, 0], "moment before she disappeared the boy ran around and": [65535, 0], "before she disappeared the boy ran around and stopped": [65535, 0], "she disappeared the boy ran around and stopped within": [65535, 0], "disappeared the boy ran around and stopped within a": [65535, 0], "the boy ran around and stopped within a foot": [65535, 0], "boy ran around and stopped within a foot or": [65535, 0], "ran around and stopped within a foot or two": [65535, 0], "around and stopped within a foot or two of": [65535, 0], "and stopped within a foot or two of the": [65535, 0], "stopped within a foot or two of the flower": [65535, 0], "within a foot or two of the flower and": [65535, 0], "a foot or two of the flower and then": [65535, 0], "foot or two of the flower and then shaded": [65535, 0], "or two of the flower and then shaded his": [65535, 0], "two of the flower and then shaded his eyes": [65535, 0], "of the flower and then shaded his eyes with": [65535, 0], "the flower and then shaded his eyes with his": [65535, 0], "flower and then shaded his eyes with his hand": [65535, 0], "and then shaded his eyes with his hand and": [65535, 0], "then shaded his eyes with his hand and began": [65535, 0], "shaded his eyes with his hand and began to": [65535, 0], "his eyes with his hand and began to look": [65535, 0], "eyes with his hand and began to look down": [65535, 0], "with his hand and began to look down street": [65535, 0], "his hand and began to look down street as": [65535, 0], "hand and began to look down street as if": [65535, 0], "and began to look down street as if he": [65535, 0], "began to look down street as if he had": [65535, 0], "to look down street as if he had discovered": [65535, 0], "look down street as if he had discovered something": [65535, 0], "down street as if he had discovered something of": [65535, 0], "street as if he had discovered something of interest": [65535, 0], "as if he had discovered something of interest going": [65535, 0], "if he had discovered something of interest going on": [65535, 0], "he had discovered something of interest going on in": [65535, 0], "had discovered something of interest going on in that": [65535, 0], "discovered something of interest going on in that direction": [65535, 0], "something of interest going on in that direction presently": [65535, 0], "of interest going on in that direction presently he": [65535, 0], "interest going on in that direction presently he picked": [65535, 0], "going on in that direction presently he picked up": [65535, 0], "on in that direction presently he picked up a": [65535, 0], "in that direction presently he picked up a straw": [65535, 0], "that direction presently he picked up a straw and": [65535, 0], "direction presently he picked up a straw and began": [65535, 0], "presently he picked up a straw and began trying": [65535, 0], "he picked up a straw and began trying to": [65535, 0], "picked up a straw and began trying to balance": [65535, 0], "up a straw and began trying to balance it": [65535, 0], "a straw and began trying to balance it on": [65535, 0], "straw and began trying to balance it on his": [65535, 0], "and began trying to balance it on his nose": [65535, 0], "began trying to balance it on his nose with": [65535, 0], "trying to balance it on his nose with his": [65535, 0], "to balance it on his nose with his head": [65535, 0], "balance it on his nose with his head tilted": [65535, 0], "it on his nose with his head tilted far": [65535, 0], "on his nose with his head tilted far back": [65535, 0], "his nose with his head tilted far back and": [65535, 0], "nose with his head tilted far back and as": [65535, 0], "with his head tilted far back and as he": [65535, 0], "his head tilted far back and as he moved": [65535, 0], "head tilted far back and as he moved from": [65535, 0], "tilted far back and as he moved from side": [65535, 0], "far back and as he moved from side to": [65535, 0], "back and as he moved from side to side": [65535, 0], "and as he moved from side to side in": [65535, 0], "as he moved from side to side in his": [65535, 0], "he moved from side to side in his efforts": [65535, 0], "moved from side to side in his efforts he": [65535, 0], "from side to side in his efforts he edged": [65535, 0], "side to side in his efforts he edged nearer": [65535, 0], "to side in his efforts he edged nearer and": [65535, 0], "side in his efforts he edged nearer and nearer": [65535, 0], "in his efforts he edged nearer and nearer toward": [65535, 0], "his efforts he edged nearer and nearer toward the": [65535, 0], "efforts he edged nearer and nearer toward the pansy": [65535, 0], "he edged nearer and nearer toward the pansy finally": [65535, 0], "edged nearer and nearer toward the pansy finally his": [65535, 0], "nearer and nearer toward the pansy finally his bare": [65535, 0], "and nearer toward the pansy finally his bare foot": [65535, 0], "nearer toward the pansy finally his bare foot rested": [65535, 0], "toward the pansy finally his bare foot rested upon": [65535, 0], "the pansy finally his bare foot rested upon it": [65535, 0], "pansy finally his bare foot rested upon it his": [65535, 0], "finally his bare foot rested upon it his pliant": [65535, 0], "his bare foot rested upon it his pliant toes": [65535, 0], "bare foot rested upon it his pliant toes closed": [65535, 0], "foot rested upon it his pliant toes closed upon": [65535, 0], "rested upon it his pliant toes closed upon it": [65535, 0], "upon it his pliant toes closed upon it and": [65535, 0], "it his pliant toes closed upon it and he": [65535, 0], "his pliant toes closed upon it and he hopped": [65535, 0], "pliant toes closed upon it and he hopped away": [65535, 0], "toes closed upon it and he hopped away with": [65535, 0], "closed upon it and he hopped away with the": [65535, 0], "upon it and he hopped away with the treasure": [65535, 0], "it and he hopped away with the treasure and": [65535, 0], "and he hopped away with the treasure and disappeared": [65535, 0], "he hopped away with the treasure and disappeared round": [65535, 0], "hopped away with the treasure and disappeared round the": [65535, 0], "away with the treasure and disappeared round the corner": [65535, 0], "with the treasure and disappeared round the corner but": [65535, 0], "the treasure and disappeared round the corner but only": [65535, 0], "treasure and disappeared round the corner but only for": [65535, 0], "and disappeared round the corner but only for a": [65535, 0], "disappeared round the corner but only for a minute": [65535, 0], "round the corner but only for a minute only": [65535, 0], "the corner but only for a minute only while": [65535, 0], "corner but only for a minute only while he": [65535, 0], "but only for a minute only while he could": [65535, 0], "only for a minute only while he could button": [65535, 0], "for a minute only while he could button the": [65535, 0], "a minute only while he could button the flower": [65535, 0], "minute only while he could button the flower inside": [65535, 0], "only while he could button the flower inside his": [65535, 0], "while he could button the flower inside his jacket": [65535, 0], "he could button the flower inside his jacket next": [65535, 0], "could button the flower inside his jacket next his": [65535, 0], "button the flower inside his jacket next his heart": [65535, 0], "the flower inside his jacket next his heart or": [65535, 0], "flower inside his jacket next his heart or next": [65535, 0], "inside his jacket next his heart or next his": [65535, 0], "his jacket next his heart or next his stomach": [65535, 0], "jacket next his heart or next his stomach possibly": [65535, 0], "next his heart or next his stomach possibly for": [65535, 0], "his heart or next his stomach possibly for he": [65535, 0], "heart or next his stomach possibly for he was": [65535, 0], "or next his stomach possibly for he was not": [65535, 0], "next his stomach possibly for he was not much": [65535, 0], "his stomach possibly for he was not much posted": [65535, 0], "stomach possibly for he was not much posted in": [65535, 0], "possibly for he was not much posted in anatomy": [65535, 0], "for he was not much posted in anatomy and": [65535, 0], "he was not much posted in anatomy and not": [65535, 0], "was not much posted in anatomy and not hypercritical": [65535, 0], "not much posted in anatomy and not hypercritical anyway": [65535, 0], "much posted in anatomy and not hypercritical anyway he": [65535, 0], "posted in anatomy and not hypercritical anyway he returned": [65535, 0], "in anatomy and not hypercritical anyway he returned now": [65535, 0], "anatomy and not hypercritical anyway he returned now and": [65535, 0], "and not hypercritical anyway he returned now and hung": [65535, 0], "not hypercritical anyway he returned now and hung about": [65535, 0], "hypercritical anyway he returned now and hung about the": [65535, 0], "anyway he returned now and hung about the fence": [65535, 0], "he returned now and hung about the fence till": [65535, 0], "returned now and hung about the fence till nightfall": [65535, 0], "now and hung about the fence till nightfall showing": [65535, 0], "and hung about the fence till nightfall showing off": [65535, 0], "hung about the fence till nightfall showing off as": [65535, 0], "about the fence till nightfall showing off as before": [65535, 0], "the fence till nightfall showing off as before but": [65535, 0], "fence till nightfall showing off as before but the": [65535, 0], "till nightfall showing off as before but the girl": [65535, 0], "nightfall showing off as before but the girl never": [65535, 0], "showing off as before but the girl never exhibited": [65535, 0], "off as before but the girl never exhibited herself": [65535, 0], "as before but the girl never exhibited herself again": [65535, 0], "before but the girl never exhibited herself again though": [65535, 0], "but the girl never exhibited herself again though tom": [65535, 0], "the girl never exhibited herself again though tom comforted": [65535, 0], "girl never exhibited herself again though tom comforted himself": [65535, 0], "never exhibited herself again though tom comforted himself a": [65535, 0], "exhibited herself again though tom comforted himself a little": [65535, 0], "herself again though tom comforted himself a little with": [65535, 0], "again though tom comforted himself a little with the": [65535, 0], "though tom comforted himself a little with the hope": [65535, 0], "tom comforted himself a little with the hope that": [65535, 0], "comforted himself a little with the hope that she": [65535, 0], "himself a little with the hope that she had": [65535, 0], "a little with the hope that she had been": [65535, 0], "little with the hope that she had been near": [65535, 0], "with the hope that she had been near some": [65535, 0], "the hope that she had been near some window": [65535, 0], "hope that she had been near some window meantime": [65535, 0], "that she had been near some window meantime and": [65535, 0], "she had been near some window meantime and been": [65535, 0], "had been near some window meantime and been aware": [65535, 0], "been near some window meantime and been aware of": [65535, 0], "near some window meantime and been aware of his": [65535, 0], "some window meantime and been aware of his attentions": [65535, 0], "window meantime and been aware of his attentions finally": [65535, 0], "meantime and been aware of his attentions finally he": [65535, 0], "and been aware of his attentions finally he strode": [65535, 0], "been aware of his attentions finally he strode home": [65535, 0], "aware of his attentions finally he strode home reluctantly": [65535, 0], "of his attentions finally he strode home reluctantly with": [65535, 0], "his attentions finally he strode home reluctantly with his": [65535, 0], "attentions finally he strode home reluctantly with his poor": [65535, 0], "finally he strode home reluctantly with his poor head": [65535, 0], "he strode home reluctantly with his poor head full": [65535, 0], "strode home reluctantly with his poor head full of": [65535, 0], "home reluctantly with his poor head full of visions": [65535, 0], "reluctantly with his poor head full of visions all": [65535, 0], "with his poor head full of visions all through": [65535, 0], "his poor head full of visions all through supper": [65535, 0], "poor head full of visions all through supper his": [65535, 0], "head full of visions all through supper his spirits": [65535, 0], "full of visions all through supper his spirits were": [65535, 0], "of visions all through supper his spirits were so": [65535, 0], "visions all through supper his spirits were so high": [65535, 0], "all through supper his spirits were so high that": [65535, 0], "through supper his spirits were so high that his": [65535, 0], "supper his spirits were so high that his aunt": [65535, 0], "his spirits were so high that his aunt wondered": [65535, 0], "spirits were so high that his aunt wondered what": [65535, 0], "were so high that his aunt wondered what had": [65535, 0], "so high that his aunt wondered what had got": [65535, 0], "high that his aunt wondered what had got into": [65535, 0], "that his aunt wondered what had got into the": [65535, 0], "his aunt wondered what had got into the child": [65535, 0], "aunt wondered what had got into the child he": [65535, 0], "wondered what had got into the child he took": [65535, 0], "what had got into the child he took a": [65535, 0], "had got into the child he took a good": [65535, 0], "got into the child he took a good scolding": [65535, 0], "into the child he took a good scolding about": [65535, 0], "the child he took a good scolding about clodding": [65535, 0], "child he took a good scolding about clodding sid": [65535, 0], "he took a good scolding about clodding sid and": [65535, 0], "took a good scolding about clodding sid and did": [65535, 0], "a good scolding about clodding sid and did not": [65535, 0], "good scolding about clodding sid and did not seem": [65535, 0], "scolding about clodding sid and did not seem to": [65535, 0], "about clodding sid and did not seem to mind": [65535, 0], "clodding sid and did not seem to mind it": [65535, 0], "sid and did not seem to mind it in": [65535, 0], "and did not seem to mind it in the": [65535, 0], "did not seem to mind it in the least": [65535, 0], "not seem to mind it in the least he": [65535, 0], "seem to mind it in the least he tried": [65535, 0], "to mind it in the least he tried to": [65535, 0], "mind it in the least he tried to steal": [65535, 0], "it in the least he tried to steal sugar": [65535, 0], "in the least he tried to steal sugar under": [65535, 0], "the least he tried to steal sugar under his": [65535, 0], "least he tried to steal sugar under his aunt's": [65535, 0], "he tried to steal sugar under his aunt's very": [65535, 0], "tried to steal sugar under his aunt's very nose": [65535, 0], "to steal sugar under his aunt's very nose and": [65535, 0], "steal sugar under his aunt's very nose and got": [65535, 0], "sugar under his aunt's very nose and got his": [65535, 0], "under his aunt's very nose and got his knuckles": [65535, 0], "his aunt's very nose and got his knuckles rapped": [65535, 0], "aunt's very nose and got his knuckles rapped for": [65535, 0], "very nose and got his knuckles rapped for it": [65535, 0], "nose and got his knuckles rapped for it he": [65535, 0], "and got his knuckles rapped for it he said": [65535, 0], "got his knuckles rapped for it he said aunt": [65535, 0], "his knuckles rapped for it he said aunt you": [65535, 0], "knuckles rapped for it he said aunt you don't": [65535, 0], "rapped for it he said aunt you don't whack": [65535, 0], "for it he said aunt you don't whack sid": [65535, 0], "it he said aunt you don't whack sid when": [65535, 0], "he said aunt you don't whack sid when he": [65535, 0], "said aunt you don't whack sid when he takes": [65535, 0], "aunt you don't whack sid when he takes it": [65535, 0], "you don't whack sid when he takes it well": [65535, 0], "don't whack sid when he takes it well sid": [65535, 0], "whack sid when he takes it well sid don't": [65535, 0], "sid when he takes it well sid don't torment": [65535, 0], "when he takes it well sid don't torment a": [65535, 0], "he takes it well sid don't torment a body": [65535, 0], "takes it well sid don't torment a body the": [65535, 0], "it well sid don't torment a body the way": [65535, 0], "well sid don't torment a body the way you": [65535, 0], "sid don't torment a body the way you do": [65535, 0], "don't torment a body the way you do you'd": [65535, 0], "torment a body the way you do you'd be": [65535, 0], "a body the way you do you'd be always": [65535, 0], "body the way you do you'd be always into": [65535, 0], "the way you do you'd be always into that": [65535, 0], "way you do you'd be always into that sugar": [65535, 0], "you do you'd be always into that sugar if": [65535, 0], "do you'd be always into that sugar if i": [65535, 0], "you'd be always into that sugar if i warn't": [65535, 0], "be always into that sugar if i warn't watching": [65535, 0], "always into that sugar if i warn't watching you": [65535, 0], "into that sugar if i warn't watching you presently": [65535, 0], "that sugar if i warn't watching you presently she": [65535, 0], "sugar if i warn't watching you presently she stepped": [65535, 0], "if i warn't watching you presently she stepped into": [65535, 0], "i warn't watching you presently she stepped into the": [65535, 0], "warn't watching you presently she stepped into the kitchen": [65535, 0], "watching you presently she stepped into the kitchen and": [65535, 0], "you presently she stepped into the kitchen and sid": [65535, 0], "presently she stepped into the kitchen and sid happy": [65535, 0], "she stepped into the kitchen and sid happy in": [65535, 0], "stepped into the kitchen and sid happy in his": [65535, 0], "into the kitchen and sid happy in his immunity": [65535, 0], "the kitchen and sid happy in his immunity reached": [65535, 0], "kitchen and sid happy in his immunity reached for": [65535, 0], "and sid happy in his immunity reached for the": [65535, 0], "sid happy in his immunity reached for the sugar": [65535, 0], "happy in his immunity reached for the sugar bowl": [65535, 0], "in his immunity reached for the sugar bowl a": [65535, 0], "his immunity reached for the sugar bowl a sort": [65535, 0], "immunity reached for the sugar bowl a sort of": [65535, 0], "reached for the sugar bowl a sort of glorying": [65535, 0], "for the sugar bowl a sort of glorying over": [65535, 0], "the sugar bowl a sort of glorying over tom": [65535, 0], "sugar bowl a sort of glorying over tom which": [65535, 0], "bowl a sort of glorying over tom which was": [65535, 0], "a sort of glorying over tom which was well": [65535, 0], "sort of glorying over tom which was well nigh": [65535, 0], "of glorying over tom which was well nigh unbearable": [65535, 0], "glorying over tom which was well nigh unbearable but": [65535, 0], "over tom which was well nigh unbearable but sid's": [65535, 0], "tom which was well nigh unbearable but sid's fingers": [65535, 0], "which was well nigh unbearable but sid's fingers slipped": [65535, 0], "was well nigh unbearable but sid's fingers slipped and": [65535, 0], "well nigh unbearable but sid's fingers slipped and the": [65535, 0], "nigh unbearable but sid's fingers slipped and the bowl": [65535, 0], "unbearable but sid's fingers slipped and the bowl dropped": [65535, 0], "but sid's fingers slipped and the bowl dropped and": [65535, 0], "sid's fingers slipped and the bowl dropped and broke": [65535, 0], "fingers slipped and the bowl dropped and broke tom": [65535, 0], "slipped and the bowl dropped and broke tom was": [65535, 0], "and the bowl dropped and broke tom was in": [65535, 0], "the bowl dropped and broke tom was in ecstasies": [65535, 0], "bowl dropped and broke tom was in ecstasies in": [65535, 0], "dropped and broke tom was in ecstasies in such": [65535, 0], "and broke tom was in ecstasies in such ecstasies": [65535, 0], "broke tom was in ecstasies in such ecstasies that": [65535, 0], "tom was in ecstasies in such ecstasies that he": [65535, 0], "was in ecstasies in such ecstasies that he even": [65535, 0], "in ecstasies in such ecstasies that he even controlled": [65535, 0], "ecstasies in such ecstasies that he even controlled his": [65535, 0], "in such ecstasies that he even controlled his tongue": [65535, 0], "such ecstasies that he even controlled his tongue and": [65535, 0], "ecstasies that he even controlled his tongue and was": [65535, 0], "that he even controlled his tongue and was silent": [65535, 0], "he even controlled his tongue and was silent he": [65535, 0], "even controlled his tongue and was silent he said": [65535, 0], "controlled his tongue and was silent he said to": [65535, 0], "his tongue and was silent he said to himself": [65535, 0], "tongue and was silent he said to himself that": [65535, 0], "and was silent he said to himself that he": [65535, 0], "was silent he said to himself that he would": [65535, 0], "silent he said to himself that he would not": [65535, 0], "he said to himself that he would not speak": [65535, 0], "said to himself that he would not speak a": [65535, 0], "to himself that he would not speak a word": [65535, 0], "himself that he would not speak a word even": [65535, 0], "that he would not speak a word even when": [65535, 0], "he would not speak a word even when his": [65535, 0], "would not speak a word even when his aunt": [65535, 0], "not speak a word even when his aunt came": [65535, 0], "speak a word even when his aunt came in": [65535, 0], "a word even when his aunt came in but": [65535, 0], "word even when his aunt came in but would": [65535, 0], "even when his aunt came in but would sit": [65535, 0], "when his aunt came in but would sit perfectly": [65535, 0], "his aunt came in but would sit perfectly still": [65535, 0], "aunt came in but would sit perfectly still till": [65535, 0], "came in but would sit perfectly still till she": [65535, 0], "in but would sit perfectly still till she asked": [65535, 0], "but would sit perfectly still till she asked who": [65535, 0], "would sit perfectly still till she asked who did": [65535, 0], "sit perfectly still till she asked who did the": [65535, 0], "perfectly still till she asked who did the mischief": [65535, 0], "still till she asked who did the mischief and": [65535, 0], "till she asked who did the mischief and then": [65535, 0], "she asked who did the mischief and then he": [65535, 0], "asked who did the mischief and then he would": [65535, 0], "who did the mischief and then he would tell": [65535, 0], "did the mischief and then he would tell and": [65535, 0], "the mischief and then he would tell and there": [65535, 0], "mischief and then he would tell and there would": [65535, 0], "and then he would tell and there would be": [65535, 0], "then he would tell and there would be nothing": [65535, 0], "he would tell and there would be nothing so": [65535, 0], "would tell and there would be nothing so good": [65535, 0], "tell and there would be nothing so good in": [65535, 0], "and there would be nothing so good in the": [65535, 0], "there would be nothing so good in the world": [65535, 0], "would be nothing so good in the world as": [65535, 0], "be nothing so good in the world as to": [65535, 0], "nothing so good in the world as to see": [65535, 0], "so good in the world as to see that": [65535, 0], "good in the world as to see that pet": [65535, 0], "in the world as to see that pet model": [65535, 0], "the world as to see that pet model catch": [65535, 0], "world as to see that pet model catch it": [65535, 0], "as to see that pet model catch it he": [65535, 0], "to see that pet model catch it he was": [65535, 0], "see that pet model catch it he was so": [65535, 0], "that pet model catch it he was so brimful": [65535, 0], "pet model catch it he was so brimful of": [65535, 0], "model catch it he was so brimful of exultation": [65535, 0], "catch it he was so brimful of exultation that": [65535, 0], "it he was so brimful of exultation that he": [65535, 0], "he was so brimful of exultation that he could": [65535, 0], "was so brimful of exultation that he could hardly": [65535, 0], "so brimful of exultation that he could hardly hold": [65535, 0], "brimful of exultation that he could hardly hold himself": [65535, 0], "of exultation that he could hardly hold himself when": [65535, 0], "exultation that he could hardly hold himself when the": [65535, 0], "that he could hardly hold himself when the old": [65535, 0], "he could hardly hold himself when the old lady": [65535, 0], "could hardly hold himself when the old lady came": [65535, 0], "hardly hold himself when the old lady came back": [65535, 0], "hold himself when the old lady came back and": [65535, 0], "himself when the old lady came back and stood": [65535, 0], "when the old lady came back and stood above": [65535, 0], "the old lady came back and stood above the": [65535, 0], "old lady came back and stood above the wreck": [65535, 0], "lady came back and stood above the wreck discharging": [65535, 0], "came back and stood above the wreck discharging lightnings": [65535, 0], "back and stood above the wreck discharging lightnings of": [65535, 0], "and stood above the wreck discharging lightnings of wrath": [65535, 0], "stood above the wreck discharging lightnings of wrath from": [65535, 0], "above the wreck discharging lightnings of wrath from over": [65535, 0], "the wreck discharging lightnings of wrath from over her": [65535, 0], "wreck discharging lightnings of wrath from over her spectacles": [65535, 0], "discharging lightnings of wrath from over her spectacles he": [65535, 0], "lightnings of wrath from over her spectacles he said": [65535, 0], "of wrath from over her spectacles he said to": [65535, 0], "wrath from over her spectacles he said to himself": [65535, 0], "from over her spectacles he said to himself now": [65535, 0], "over her spectacles he said to himself now it's": [65535, 0], "her spectacles he said to himself now it's coming": [65535, 0], "spectacles he said to himself now it's coming and": [65535, 0], "he said to himself now it's coming and the": [65535, 0], "said to himself now it's coming and the next": [65535, 0], "to himself now it's coming and the next instant": [65535, 0], "himself now it's coming and the next instant he": [65535, 0], "now it's coming and the next instant he was": [65535, 0], "it's coming and the next instant he was sprawling": [65535, 0], "coming and the next instant he was sprawling on": [65535, 0], "and the next instant he was sprawling on the": [65535, 0], "the next instant he was sprawling on the floor": [65535, 0], "next instant he was sprawling on the floor the": [65535, 0], "instant he was sprawling on the floor the potent": [65535, 0], "he was sprawling on the floor the potent palm": [65535, 0], "was sprawling on the floor the potent palm was": [65535, 0], "sprawling on the floor the potent palm was uplifted": [65535, 0], "on the floor the potent palm was uplifted to": [65535, 0], "the floor the potent palm was uplifted to strike": [65535, 0], "floor the potent palm was uplifted to strike again": [65535, 0], "the potent palm was uplifted to strike again when": [65535, 0], "potent palm was uplifted to strike again when tom": [65535, 0], "palm was uplifted to strike again when tom cried": [65535, 0], "was uplifted to strike again when tom cried out": [65535, 0], "uplifted to strike again when tom cried out hold": [65535, 0], "to strike again when tom cried out hold on": [65535, 0], "strike again when tom cried out hold on now": [65535, 0], "again when tom cried out hold on now what": [65535, 0], "when tom cried out hold on now what 'er": [65535, 0], "tom cried out hold on now what 'er you": [65535, 0], "cried out hold on now what 'er you belting": [65535, 0], "out hold on now what 'er you belting me": [65535, 0], "hold on now what 'er you belting me for": [65535, 0], "on now what 'er you belting me for sid": [65535, 0], "now what 'er you belting me for sid broke": [65535, 0], "what 'er you belting me for sid broke it": [65535, 0], "'er you belting me for sid broke it aunt": [65535, 0], "you belting me for sid broke it aunt polly": [65535, 0], "belting me for sid broke it aunt polly paused": [65535, 0], "me for sid broke it aunt polly paused perplexed": [65535, 0], "for sid broke it aunt polly paused perplexed and": [65535, 0], "sid broke it aunt polly paused perplexed and tom": [65535, 0], "broke it aunt polly paused perplexed and tom looked": [65535, 0], "it aunt polly paused perplexed and tom looked for": [65535, 0], "aunt polly paused perplexed and tom looked for healing": [65535, 0], "polly paused perplexed and tom looked for healing pity": [65535, 0], "paused perplexed and tom looked for healing pity but": [65535, 0], "perplexed and tom looked for healing pity but when": [65535, 0], "and tom looked for healing pity but when she": [65535, 0], "tom looked for healing pity but when she got": [65535, 0], "looked for healing pity but when she got her": [65535, 0], "for healing pity but when she got her tongue": [65535, 0], "healing pity but when she got her tongue again": [65535, 0], "pity but when she got her tongue again she": [65535, 0], "but when she got her tongue again she only": [65535, 0], "when she got her tongue again she only said": [65535, 0], "she got her tongue again she only said umf": [65535, 0], "got her tongue again she only said umf well": [65535, 0], "her tongue again she only said umf well you": [65535, 0], "tongue again she only said umf well you didn't": [65535, 0], "again she only said umf well you didn't get": [65535, 0], "she only said umf well you didn't get a": [65535, 0], "only said umf well you didn't get a lick": [65535, 0], "said umf well you didn't get a lick amiss": [65535, 0], "umf well you didn't get a lick amiss i": [65535, 0], "well you didn't get a lick amiss i reckon": [65535, 0], "you didn't get a lick amiss i reckon you": [65535, 0], "didn't get a lick amiss i reckon you been": [65535, 0], "get a lick amiss i reckon you been into": [65535, 0], "a lick amiss i reckon you been into some": [65535, 0], "lick amiss i reckon you been into some other": [65535, 0], "amiss i reckon you been into some other audacious": [65535, 0], "i reckon you been into some other audacious mischief": [65535, 0], "reckon you been into some other audacious mischief when": [65535, 0], "you been into some other audacious mischief when i": [65535, 0], "been into some other audacious mischief when i wasn't": [65535, 0], "into some other audacious mischief when i wasn't around": [65535, 0], "some other audacious mischief when i wasn't around like": [65535, 0], "other audacious mischief when i wasn't around like enough": [65535, 0], "audacious mischief when i wasn't around like enough then": [65535, 0], "mischief when i wasn't around like enough then her": [65535, 0], "when i wasn't around like enough then her conscience": [65535, 0], "i wasn't around like enough then her conscience reproached": [65535, 0], "wasn't around like enough then her conscience reproached her": [65535, 0], "around like enough then her conscience reproached her and": [65535, 0], "like enough then her conscience reproached her and she": [65535, 0], "enough then her conscience reproached her and she yearned": [65535, 0], "then her conscience reproached her and she yearned to": [65535, 0], "her conscience reproached her and she yearned to say": [65535, 0], "conscience reproached her and she yearned to say something": [65535, 0], "reproached her and she yearned to say something kind": [65535, 0], "her and she yearned to say something kind and": [65535, 0], "and she yearned to say something kind and loving": [65535, 0], "she yearned to say something kind and loving but": [65535, 0], "yearned to say something kind and loving but she": [65535, 0], "to say something kind and loving but she judged": [65535, 0], "say something kind and loving but she judged that": [65535, 0], "something kind and loving but she judged that this": [65535, 0], "kind and loving but she judged that this would": [65535, 0], "and loving but she judged that this would be": [65535, 0], "loving but she judged that this would be construed": [65535, 0], "but she judged that this would be construed into": [65535, 0], "she judged that this would be construed into a": [65535, 0], "judged that this would be construed into a confession": [65535, 0], "that this would be construed into a confession that": [65535, 0], "this would be construed into a confession that she": [65535, 0], "would be construed into a confession that she had": [65535, 0], "be construed into a confession that she had been": [65535, 0], "construed into a confession that she had been in": [65535, 0], "into a confession that she had been in the": [65535, 0], "a confession that she had been in the wrong": [65535, 0], "confession that she had been in the wrong and": [65535, 0], "that she had been in the wrong and discipline": [65535, 0], "she had been in the wrong and discipline forbade": [65535, 0], "had been in the wrong and discipline forbade that": [65535, 0], "been in the wrong and discipline forbade that so": [65535, 0], "in the wrong and discipline forbade that so she": [65535, 0], "the wrong and discipline forbade that so she kept": [65535, 0], "wrong and discipline forbade that so she kept silence": [65535, 0], "and discipline forbade that so she kept silence and": [65535, 0], "discipline forbade that so she kept silence and went": [65535, 0], "forbade that so she kept silence and went about": [65535, 0], "that so she kept silence and went about her": [65535, 0], "so she kept silence and went about her affairs": [65535, 0], "she kept silence and went about her affairs with": [65535, 0], "kept silence and went about her affairs with a": [65535, 0], "silence and went about her affairs with a troubled": [65535, 0], "and went about her affairs with a troubled heart": [65535, 0], "went about her affairs with a troubled heart tom": [65535, 0], "about her affairs with a troubled heart tom sulked": [65535, 0], "her affairs with a troubled heart tom sulked in": [65535, 0], "affairs with a troubled heart tom sulked in a": [65535, 0], "with a troubled heart tom sulked in a corner": [65535, 0], "a troubled heart tom sulked in a corner and": [65535, 0], "troubled heart tom sulked in a corner and exalted": [65535, 0], "heart tom sulked in a corner and exalted his": [65535, 0], "tom sulked in a corner and exalted his woes": [65535, 0], "sulked in a corner and exalted his woes he": [65535, 0], "in a corner and exalted his woes he knew": [65535, 0], "a corner and exalted his woes he knew that": [65535, 0], "corner and exalted his woes he knew that in": [65535, 0], "and exalted his woes he knew that in her": [65535, 0], "exalted his woes he knew that in her heart": [65535, 0], "his woes he knew that in her heart his": [65535, 0], "woes he knew that in her heart his aunt": [65535, 0], "he knew that in her heart his aunt was": [65535, 0], "knew that in her heart his aunt was on": [65535, 0], "that in her heart his aunt was on her": [65535, 0], "in her heart his aunt was on her knees": [65535, 0], "her heart his aunt was on her knees to": [65535, 0], "heart his aunt was on her knees to him": [65535, 0], "his aunt was on her knees to him and": [65535, 0], "aunt was on her knees to him and he": [65535, 0], "was on her knees to him and he was": [65535, 0], "on her knees to him and he was morosely": [65535, 0], "her knees to him and he was morosely gratified": [65535, 0], "knees to him and he was morosely gratified by": [65535, 0], "to him and he was morosely gratified by the": [65535, 0], "him and he was morosely gratified by the consciousness": [65535, 0], "and he was morosely gratified by the consciousness of": [65535, 0], "he was morosely gratified by the consciousness of it": [65535, 0], "was morosely gratified by the consciousness of it he": [65535, 0], "morosely gratified by the consciousness of it he would": [65535, 0], "gratified by the consciousness of it he would hang": [65535, 0], "by the consciousness of it he would hang out": [65535, 0], "the consciousness of it he would hang out no": [65535, 0], "consciousness of it he would hang out no signals": [65535, 0], "of it he would hang out no signals he": [65535, 0], "it he would hang out no signals he would": [65535, 0], "he would hang out no signals he would take": [65535, 0], "would hang out no signals he would take notice": [65535, 0], "hang out no signals he would take notice of": [65535, 0], "out no signals he would take notice of none": [65535, 0], "no signals he would take notice of none he": [65535, 0], "signals he would take notice of none he knew": [65535, 0], "he would take notice of none he knew that": [65535, 0], "would take notice of none he knew that a": [65535, 0], "take notice of none he knew that a yearning": [65535, 0], "notice of none he knew that a yearning glance": [65535, 0], "of none he knew that a yearning glance fell": [65535, 0], "none he knew that a yearning glance fell upon": [65535, 0], "he knew that a yearning glance fell upon him": [65535, 0], "knew that a yearning glance fell upon him now": [65535, 0], "that a yearning glance fell upon him now and": [65535, 0], "a yearning glance fell upon him now and then": [65535, 0], "yearning glance fell upon him now and then through": [65535, 0], "glance fell upon him now and then through a": [65535, 0], "fell upon him now and then through a film": [65535, 0], "upon him now and then through a film of": [65535, 0], "him now and then through a film of tears": [65535, 0], "now and then through a film of tears but": [65535, 0], "and then through a film of tears but he": [65535, 0], "then through a film of tears but he refused": [65535, 0], "through a film of tears but he refused recognition": [65535, 0], "a film of tears but he refused recognition of": [65535, 0], "film of tears but he refused recognition of it": [65535, 0], "of tears but he refused recognition of it he": [65535, 0], "tears but he refused recognition of it he pictured": [65535, 0], "but he refused recognition of it he pictured himself": [65535, 0], "he refused recognition of it he pictured himself lying": [65535, 0], "refused recognition of it he pictured himself lying sick": [65535, 0], "recognition of it he pictured himself lying sick unto": [65535, 0], "of it he pictured himself lying sick unto death": [65535, 0], "it he pictured himself lying sick unto death and": [65535, 0], "he pictured himself lying sick unto death and his": [65535, 0], "pictured himself lying sick unto death and his aunt": [65535, 0], "himself lying sick unto death and his aunt bending": [65535, 0], "lying sick unto death and his aunt bending over": [65535, 0], "sick unto death and his aunt bending over him": [65535, 0], "unto death and his aunt bending over him beseeching": [65535, 0], "death and his aunt bending over him beseeching one": [65535, 0], "and his aunt bending over him beseeching one little": [65535, 0], "his aunt bending over him beseeching one little forgiving": [65535, 0], "aunt bending over him beseeching one little forgiving word": [65535, 0], "bending over him beseeching one little forgiving word but": [65535, 0], "over him beseeching one little forgiving word but he": [65535, 0], "him beseeching one little forgiving word but he would": [65535, 0], "beseeching one little forgiving word but he would turn": [65535, 0], "one little forgiving word but he would turn his": [65535, 0], "little forgiving word but he would turn his face": [65535, 0], "forgiving word but he would turn his face to": [65535, 0], "word but he would turn his face to the": [65535, 0], "but he would turn his face to the wall": [65535, 0], "he would turn his face to the wall and": [65535, 0], "would turn his face to the wall and die": [65535, 0], "turn his face to the wall and die with": [65535, 0], "his face to the wall and die with that": [65535, 0], "face to the wall and die with that word": [65535, 0], "to the wall and die with that word unsaid": [65535, 0], "the wall and die with that word unsaid ah": [65535, 0], "wall and die with that word unsaid ah how": [65535, 0], "and die with that word unsaid ah how would": [65535, 0], "die with that word unsaid ah how would she": [65535, 0], "with that word unsaid ah how would she feel": [65535, 0], "that word unsaid ah how would she feel then": [65535, 0], "word unsaid ah how would she feel then and": [65535, 0], "unsaid ah how would she feel then and he": [65535, 0], "ah how would she feel then and he pictured": [65535, 0], "how would she feel then and he pictured himself": [65535, 0], "would she feel then and he pictured himself brought": [65535, 0], "she feel then and he pictured himself brought home": [65535, 0], "feel then and he pictured himself brought home from": [65535, 0], "then and he pictured himself brought home from the": [65535, 0], "and he pictured himself brought home from the river": [65535, 0], "he pictured himself brought home from the river dead": [65535, 0], "pictured himself brought home from the river dead with": [65535, 0], "himself brought home from the river dead with his": [65535, 0], "brought home from the river dead with his curls": [65535, 0], "home from the river dead with his curls all": [65535, 0], "from the river dead with his curls all wet": [65535, 0], "the river dead with his curls all wet and": [65535, 0], "river dead with his curls all wet and his": [65535, 0], "dead with his curls all wet and his sore": [65535, 0], "with his curls all wet and his sore heart": [65535, 0], "his curls all wet and his sore heart at": [65535, 0], "curls all wet and his sore heart at rest": [65535, 0], "all wet and his sore heart at rest how": [65535, 0], "wet and his sore heart at rest how she": [65535, 0], "and his sore heart at rest how she would": [65535, 0], "his sore heart at rest how she would throw": [65535, 0], "sore heart at rest how she would throw herself": [65535, 0], "heart at rest how she would throw herself upon": [65535, 0], "at rest how she would throw herself upon him": [65535, 0], "rest how she would throw herself upon him and": [65535, 0], "how she would throw herself upon him and how": [65535, 0], "she would throw herself upon him and how her": [65535, 0], "would throw herself upon him and how her tears": [65535, 0], "throw herself upon him and how her tears would": [65535, 0], "herself upon him and how her tears would fall": [65535, 0], "upon him and how her tears would fall like": [65535, 0], "him and how her tears would fall like rain": [65535, 0], "and how her tears would fall like rain and": [65535, 0], "how her tears would fall like rain and her": [65535, 0], "her tears would fall like rain and her lips": [65535, 0], "tears would fall like rain and her lips pray": [65535, 0], "would fall like rain and her lips pray god": [65535, 0], "fall like rain and her lips pray god to": [65535, 0], "like rain and her lips pray god to give": [65535, 0], "rain and her lips pray god to give her": [65535, 0], "and her lips pray god to give her back": [65535, 0], "her lips pray god to give her back her": [65535, 0], "lips pray god to give her back her boy": [65535, 0], "pray god to give her back her boy and": [65535, 0], "god to give her back her boy and she": [65535, 0], "to give her back her boy and she would": [65535, 0], "give her back her boy and she would never": [65535, 0], "her back her boy and she would never never": [65535, 0], "back her boy and she would never never abuse": [65535, 0], "her boy and she would never never abuse him": [65535, 0], "boy and she would never never abuse him any": [65535, 0], "and she would never never abuse him any more": [65535, 0], "she would never never abuse him any more but": [65535, 0], "would never never abuse him any more but he": [65535, 0], "never never abuse him any more but he would": [65535, 0], "never abuse him any more but he would lie": [65535, 0], "abuse him any more but he would lie there": [65535, 0], "him any more but he would lie there cold": [65535, 0], "any more but he would lie there cold and": [65535, 0], "more but he would lie there cold and white": [65535, 0], "but he would lie there cold and white and": [65535, 0], "he would lie there cold and white and make": [65535, 0], "would lie there cold and white and make no": [65535, 0], "lie there cold and white and make no sign": [65535, 0], "there cold and white and make no sign a": [65535, 0], "cold and white and make no sign a poor": [65535, 0], "and white and make no sign a poor little": [65535, 0], "white and make no sign a poor little sufferer": [65535, 0], "and make no sign a poor little sufferer whose": [65535, 0], "make no sign a poor little sufferer whose griefs": [65535, 0], "no sign a poor little sufferer whose griefs were": [65535, 0], "sign a poor little sufferer whose griefs were at": [65535, 0], "a poor little sufferer whose griefs were at an": [65535, 0], "poor little sufferer whose griefs were at an end": [65535, 0], "little sufferer whose griefs were at an end he": [65535, 0], "sufferer whose griefs were at an end he so": [65535, 0], "whose griefs were at an end he so worked": [65535, 0], "griefs were at an end he so worked upon": [65535, 0], "were at an end he so worked upon his": [65535, 0], "at an end he so worked upon his feelings": [65535, 0], "an end he so worked upon his feelings with": [65535, 0], "end he so worked upon his feelings with the": [65535, 0], "he so worked upon his feelings with the pathos": [65535, 0], "so worked upon his feelings with the pathos of": [65535, 0], "worked upon his feelings with the pathos of these": [65535, 0], "upon his feelings with the pathos of these dreams": [65535, 0], "his feelings with the pathos of these dreams that": [65535, 0], "feelings with the pathos of these dreams that he": [65535, 0], "with the pathos of these dreams that he had": [65535, 0], "the pathos of these dreams that he had to": [65535, 0], "pathos of these dreams that he had to keep": [65535, 0], "of these dreams that he had to keep swallowing": [65535, 0], "these dreams that he had to keep swallowing he": [65535, 0], "dreams that he had to keep swallowing he was": [65535, 0], "that he had to keep swallowing he was so": [65535, 0], "he had to keep swallowing he was so like": [65535, 0], "had to keep swallowing he was so like to": [65535, 0], "to keep swallowing he was so like to choke": [65535, 0], "keep swallowing he was so like to choke and": [65535, 0], "swallowing he was so like to choke and his": [65535, 0], "he was so like to choke and his eyes": [65535, 0], "was so like to choke and his eyes swam": [65535, 0], "so like to choke and his eyes swam in": [65535, 0], "like to choke and his eyes swam in a": [65535, 0], "to choke and his eyes swam in a blur": [65535, 0], "choke and his eyes swam in a blur of": [65535, 0], "and his eyes swam in a blur of water": [65535, 0], "his eyes swam in a blur of water which": [65535, 0], "eyes swam in a blur of water which overflowed": [65535, 0], "swam in a blur of water which overflowed when": [65535, 0], "in a blur of water which overflowed when he": [65535, 0], "a blur of water which overflowed when he winked": [65535, 0], "blur of water which overflowed when he winked and": [65535, 0], "of water which overflowed when he winked and ran": [65535, 0], "water which overflowed when he winked and ran down": [65535, 0], "which overflowed when he winked and ran down and": [65535, 0], "overflowed when he winked and ran down and trickled": [65535, 0], "when he winked and ran down and trickled from": [65535, 0], "he winked and ran down and trickled from the": [65535, 0], "winked and ran down and trickled from the end": [65535, 0], "and ran down and trickled from the end of": [65535, 0], "ran down and trickled from the end of his": [65535, 0], "down and trickled from the end of his nose": [65535, 0], "and trickled from the end of his nose and": [65535, 0], "trickled from the end of his nose and such": [65535, 0], "from the end of his nose and such a": [65535, 0], "the end of his nose and such a luxury": [65535, 0], "end of his nose and such a luxury to": [65535, 0], "of his nose and such a luxury to him": [65535, 0], "his nose and such a luxury to him was": [65535, 0], "nose and such a luxury to him was this": [65535, 0], "and such a luxury to him was this petting": [65535, 0], "such a luxury to him was this petting of": [65535, 0], "a luxury to him was this petting of his": [65535, 0], "luxury to him was this petting of his sorrows": [65535, 0], "to him was this petting of his sorrows that": [65535, 0], "him was this petting of his sorrows that he": [65535, 0], "was this petting of his sorrows that he could": [65535, 0], "this petting of his sorrows that he could not": [65535, 0], "petting of his sorrows that he could not bear": [65535, 0], "of his sorrows that he could not bear to": [65535, 0], "his sorrows that he could not bear to have": [65535, 0], "sorrows that he could not bear to have any": [65535, 0], "that he could not bear to have any worldly": [65535, 0], "he could not bear to have any worldly cheeriness": [65535, 0], "could not bear to have any worldly cheeriness or": [65535, 0], "not bear to have any worldly cheeriness or any": [65535, 0], "bear to have any worldly cheeriness or any grating": [65535, 0], "to have any worldly cheeriness or any grating delight": [65535, 0], "have any worldly cheeriness or any grating delight intrude": [65535, 0], "any worldly cheeriness or any grating delight intrude upon": [65535, 0], "worldly cheeriness or any grating delight intrude upon it": [65535, 0], "cheeriness or any grating delight intrude upon it it": [65535, 0], "or any grating delight intrude upon it it was": [65535, 0], "any grating delight intrude upon it it was too": [65535, 0], "grating delight intrude upon it it was too sacred": [65535, 0], "delight intrude upon it it was too sacred for": [65535, 0], "intrude upon it it was too sacred for such": [65535, 0], "upon it it was too sacred for such contact": [65535, 0], "it it was too sacred for such contact and": [65535, 0], "it was too sacred for such contact and so": [65535, 0], "was too sacred for such contact and so presently": [65535, 0], "too sacred for such contact and so presently when": [65535, 0], "sacred for such contact and so presently when his": [65535, 0], "for such contact and so presently when his cousin": [65535, 0], "such contact and so presently when his cousin mary": [65535, 0], "contact and so presently when his cousin mary danced": [65535, 0], "and so presently when his cousin mary danced in": [65535, 0], "so presently when his cousin mary danced in all": [65535, 0], "presently when his cousin mary danced in all alive": [65535, 0], "when his cousin mary danced in all alive with": [65535, 0], "his cousin mary danced in all alive with the": [65535, 0], "cousin mary danced in all alive with the joy": [65535, 0], "mary danced in all alive with the joy of": [65535, 0], "danced in all alive with the joy of seeing": [65535, 0], "in all alive with the joy of seeing home": [65535, 0], "all alive with the joy of seeing home again": [65535, 0], "alive with the joy of seeing home again after": [65535, 0], "with the joy of seeing home again after an": [65535, 0], "the joy of seeing home again after an age": [65535, 0], "joy of seeing home again after an age long": [65535, 0], "of seeing home again after an age long visit": [65535, 0], "seeing home again after an age long visit of": [65535, 0], "home again after an age long visit of one": [65535, 0], "again after an age long visit of one week": [65535, 0], "after an age long visit of one week to": [65535, 0], "an age long visit of one week to the": [65535, 0], "age long visit of one week to the country": [65535, 0], "long visit of one week to the country he": [65535, 0], "visit of one week to the country he got": [65535, 0], "of one week to the country he got up": [65535, 0], "one week to the country he got up and": [65535, 0], "week to the country he got up and moved": [65535, 0], "to the country he got up and moved in": [65535, 0], "the country he got up and moved in clouds": [65535, 0], "country he got up and moved in clouds and": [65535, 0], "he got up and moved in clouds and darkness": [65535, 0], "got up and moved in clouds and darkness out": [65535, 0], "up and moved in clouds and darkness out at": [65535, 0], "and moved in clouds and darkness out at one": [65535, 0], "moved in clouds and darkness out at one door": [65535, 0], "in clouds and darkness out at one door as": [65535, 0], "clouds and darkness out at one door as she": [65535, 0], "and darkness out at one door as she brought": [65535, 0], "darkness out at one door as she brought song": [65535, 0], "out at one door as she brought song and": [65535, 0], "at one door as she brought song and sunshine": [65535, 0], "one door as she brought song and sunshine in": [65535, 0], "door as she brought song and sunshine in at": [65535, 0], "as she brought song and sunshine in at the": [65535, 0], "she brought song and sunshine in at the other": [65535, 0], "brought song and sunshine in at the other he": [65535, 0], "song and sunshine in at the other he wandered": [65535, 0], "and sunshine in at the other he wandered far": [65535, 0], "sunshine in at the other he wandered far from": [65535, 0], "in at the other he wandered far from the": [65535, 0], "at the other he wandered far from the accustomed": [65535, 0], "the other he wandered far from the accustomed haunts": [65535, 0], "other he wandered far from the accustomed haunts of": [65535, 0], "he wandered far from the accustomed haunts of boys": [65535, 0], "wandered far from the accustomed haunts of boys and": [65535, 0], "far from the accustomed haunts of boys and sought": [65535, 0], "from the accustomed haunts of boys and sought desolate": [65535, 0], "the accustomed haunts of boys and sought desolate places": [65535, 0], "accustomed haunts of boys and sought desolate places that": [65535, 0], "haunts of boys and sought desolate places that were": [65535, 0], "of boys and sought desolate places that were in": [65535, 0], "boys and sought desolate places that were in harmony": [65535, 0], "and sought desolate places that were in harmony with": [65535, 0], "sought desolate places that were in harmony with his": [65535, 0], "desolate places that were in harmony with his spirit": [65535, 0], "places that were in harmony with his spirit a": [65535, 0], "that were in harmony with his spirit a log": [65535, 0], "were in harmony with his spirit a log raft": [65535, 0], "in harmony with his spirit a log raft in": [65535, 0], "harmony with his spirit a log raft in the": [65535, 0], "with his spirit a log raft in the river": [65535, 0], "his spirit a log raft in the river invited": [65535, 0], "spirit a log raft in the river invited him": [65535, 0], "a log raft in the river invited him and": [65535, 0], "log raft in the river invited him and he": [65535, 0], "raft in the river invited him and he seated": [65535, 0], "in the river invited him and he seated himself": [65535, 0], "the river invited him and he seated himself on": [65535, 0], "river invited him and he seated himself on its": [65535, 0], "invited him and he seated himself on its outer": [65535, 0], "him and he seated himself on its outer edge": [65535, 0], "and he seated himself on its outer edge and": [65535, 0], "he seated himself on its outer edge and contemplated": [65535, 0], "seated himself on its outer edge and contemplated the": [65535, 0], "himself on its outer edge and contemplated the dreary": [65535, 0], "on its outer edge and contemplated the dreary vastness": [65535, 0], "its outer edge and contemplated the dreary vastness of": [65535, 0], "outer edge and contemplated the dreary vastness of the": [65535, 0], "edge and contemplated the dreary vastness of the stream": [65535, 0], "and contemplated the dreary vastness of the stream wishing": [65535, 0], "contemplated the dreary vastness of the stream wishing the": [65535, 0], "the dreary vastness of the stream wishing the while": [65535, 0], "dreary vastness of the stream wishing the while that": [65535, 0], "vastness of the stream wishing the while that he": [65535, 0], "of the stream wishing the while that he could": [65535, 0], "the stream wishing the while that he could only": [65535, 0], "stream wishing the while that he could only be": [65535, 0], "wishing the while that he could only be drowned": [65535, 0], "the while that he could only be drowned all": [65535, 0], "while that he could only be drowned all at": [65535, 0], "that he could only be drowned all at once": [65535, 0], "he could only be drowned all at once and": [65535, 0], "could only be drowned all at once and unconsciously": [65535, 0], "only be drowned all at once and unconsciously without": [65535, 0], "be drowned all at once and unconsciously without undergoing": [65535, 0], "drowned all at once and unconsciously without undergoing the": [65535, 0], "all at once and unconsciously without undergoing the uncomfortable": [65535, 0], "at once and unconsciously without undergoing the uncomfortable routine": [65535, 0], "once and unconsciously without undergoing the uncomfortable routine devised": [65535, 0], "and unconsciously without undergoing the uncomfortable routine devised by": [65535, 0], "unconsciously without undergoing the uncomfortable routine devised by nature": [65535, 0], "without undergoing the uncomfortable routine devised by nature then": [65535, 0], "undergoing the uncomfortable routine devised by nature then he": [65535, 0], "the uncomfortable routine devised by nature then he thought": [65535, 0], "uncomfortable routine devised by nature then he thought of": [65535, 0], "routine devised by nature then he thought of his": [65535, 0], "devised by nature then he thought of his flower": [65535, 0], "by nature then he thought of his flower he": [65535, 0], "nature then he thought of his flower he got": [65535, 0], "then he thought of his flower he got it": [65535, 0], "he thought of his flower he got it out": [65535, 0], "thought of his flower he got it out rumpled": [65535, 0], "of his flower he got it out rumpled and": [65535, 0], "his flower he got it out rumpled and wilted": [65535, 0], "flower he got it out rumpled and wilted and": [65535, 0], "he got it out rumpled and wilted and it": [65535, 0], "got it out rumpled and wilted and it mightily": [65535, 0], "it out rumpled and wilted and it mightily increased": [65535, 0], "out rumpled and wilted and it mightily increased his": [65535, 0], "rumpled and wilted and it mightily increased his dismal": [65535, 0], "and wilted and it mightily increased his dismal felicity": [65535, 0], "wilted and it mightily increased his dismal felicity he": [65535, 0], "and it mightily increased his dismal felicity he wondered": [65535, 0], "it mightily increased his dismal felicity he wondered if": [65535, 0], "mightily increased his dismal felicity he wondered if she": [65535, 0], "increased his dismal felicity he wondered if she would": [65535, 0], "his dismal felicity he wondered if she would pity": [65535, 0], "dismal felicity he wondered if she would pity him": [65535, 0], "felicity he wondered if she would pity him if": [65535, 0], "he wondered if she would pity him if she": [65535, 0], "wondered if she would pity him if she knew": [65535, 0], "if she would pity him if she knew would": [65535, 0], "she would pity him if she knew would she": [65535, 0], "would pity him if she knew would she cry": [65535, 0], "pity him if she knew would she cry and": [65535, 0], "him if she knew would she cry and wish": [65535, 0], "if she knew would she cry and wish that": [65535, 0], "she knew would she cry and wish that she": [65535, 0], "knew would she cry and wish that she had": [65535, 0], "would she cry and wish that she had a": [65535, 0], "she cry and wish that she had a right": [65535, 0], "cry and wish that she had a right to": [65535, 0], "and wish that she had a right to put": [65535, 0], "wish that she had a right to put her": [65535, 0], "that she had a right to put her arms": [65535, 0], "she had a right to put her arms around": [65535, 0], "had a right to put her arms around his": [65535, 0], "a right to put her arms around his neck": [65535, 0], "right to put her arms around his neck and": [65535, 0], "to put her arms around his neck and comfort": [65535, 0], "put her arms around his neck and comfort him": [65535, 0], "her arms around his neck and comfort him or": [65535, 0], "arms around his neck and comfort him or would": [65535, 0], "around his neck and comfort him or would she": [65535, 0], "his neck and comfort him or would she turn": [65535, 0], "neck and comfort him or would she turn coldly": [65535, 0], "and comfort him or would she turn coldly away": [65535, 0], "comfort him or would she turn coldly away like": [65535, 0], "him or would she turn coldly away like all": [65535, 0], "or would she turn coldly away like all the": [65535, 0], "would she turn coldly away like all the hollow": [65535, 0], "she turn coldly away like all the hollow world": [65535, 0], "turn coldly away like all the hollow world this": [65535, 0], "coldly away like all the hollow world this picture": [65535, 0], "away like all the hollow world this picture brought": [65535, 0], "like all the hollow world this picture brought such": [65535, 0], "all the hollow world this picture brought such an": [65535, 0], "the hollow world this picture brought such an agony": [65535, 0], "hollow world this picture brought such an agony of": [65535, 0], "world this picture brought such an agony of pleasurable": [65535, 0], "this picture brought such an agony of pleasurable suffering": [65535, 0], "picture brought such an agony of pleasurable suffering that": [65535, 0], "brought such an agony of pleasurable suffering that he": [65535, 0], "such an agony of pleasurable suffering that he worked": [65535, 0], "an agony of pleasurable suffering that he worked it": [65535, 0], "agony of pleasurable suffering that he worked it over": [65535, 0], "of pleasurable suffering that he worked it over and": [65535, 0], "pleasurable suffering that he worked it over and over": [65535, 0], "suffering that he worked it over and over again": [65535, 0], "that he worked it over and over again in": [65535, 0], "he worked it over and over again in his": [65535, 0], "worked it over and over again in his mind": [65535, 0], "it over and over again in his mind and": [65535, 0], "over and over again in his mind and set": [65535, 0], "and over again in his mind and set it": [65535, 0], "over again in his mind and set it up": [65535, 0], "again in his mind and set it up in": [65535, 0], "in his mind and set it up in new": [65535, 0], "his mind and set it up in new and": [65535, 0], "mind and set it up in new and varied": [65535, 0], "and set it up in new and varied lights": [65535, 0], "set it up in new and varied lights till": [65535, 0], "it up in new and varied lights till he": [65535, 0], "up in new and varied lights till he wore": [65535, 0], "in new and varied lights till he wore it": [65535, 0], "new and varied lights till he wore it threadbare": [65535, 0], "and varied lights till he wore it threadbare at": [65535, 0], "varied lights till he wore it threadbare at last": [65535, 0], "lights till he wore it threadbare at last he": [65535, 0], "till he wore it threadbare at last he rose": [65535, 0], "he wore it threadbare at last he rose up": [65535, 0], "wore it threadbare at last he rose up sighing": [65535, 0], "it threadbare at last he rose up sighing and": [65535, 0], "threadbare at last he rose up sighing and departed": [65535, 0], "at last he rose up sighing and departed in": [65535, 0], "last he rose up sighing and departed in the": [65535, 0], "he rose up sighing and departed in the darkness": [65535, 0], "rose up sighing and departed in the darkness about": [65535, 0], "up sighing and departed in the darkness about half": [65535, 0], "sighing and departed in the darkness about half past": [65535, 0], "and departed in the darkness about half past nine": [65535, 0], "departed in the darkness about half past nine or": [65535, 0], "in the darkness about half past nine or ten": [65535, 0], "the darkness about half past nine or ten o'clock": [65535, 0], "darkness about half past nine or ten o'clock he": [65535, 0], "about half past nine or ten o'clock he came": [65535, 0], "half past nine or ten o'clock he came along": [65535, 0], "past nine or ten o'clock he came along the": [65535, 0], "nine or ten o'clock he came along the deserted": [65535, 0], "or ten o'clock he came along the deserted street": [65535, 0], "ten o'clock he came along the deserted street to": [65535, 0], "o'clock he came along the deserted street to where": [65535, 0], "he came along the deserted street to where the": [65535, 0], "came along the deserted street to where the adored": [65535, 0], "along the deserted street to where the adored unknown": [65535, 0], "the deserted street to where the adored unknown lived": [65535, 0], "deserted street to where the adored unknown lived he": [65535, 0], "street to where the adored unknown lived he paused": [65535, 0], "to where the adored unknown lived he paused a": [65535, 0], "where the adored unknown lived he paused a moment": [65535, 0], "the adored unknown lived he paused a moment no": [65535, 0], "adored unknown lived he paused a moment no sound": [65535, 0], "unknown lived he paused a moment no sound fell": [65535, 0], "lived he paused a moment no sound fell upon": [65535, 0], "he paused a moment no sound fell upon his": [65535, 0], "paused a moment no sound fell upon his listening": [65535, 0], "a moment no sound fell upon his listening ear": [65535, 0], "moment no sound fell upon his listening ear a": [65535, 0], "no sound fell upon his listening ear a candle": [65535, 0], "sound fell upon his listening ear a candle was": [65535, 0], "fell upon his listening ear a candle was casting": [65535, 0], "upon his listening ear a candle was casting a": [65535, 0], "his listening ear a candle was casting a dull": [65535, 0], "listening ear a candle was casting a dull glow": [65535, 0], "ear a candle was casting a dull glow upon": [65535, 0], "a candle was casting a dull glow upon the": [65535, 0], "candle was casting a dull glow upon the curtain": [65535, 0], "was casting a dull glow upon the curtain of": [65535, 0], "casting a dull glow upon the curtain of a": [65535, 0], "a dull glow upon the curtain of a second": [65535, 0], "dull glow upon the curtain of a second story": [65535, 0], "glow upon the curtain of a second story window": [65535, 0], "upon the curtain of a second story window was": [65535, 0], "the curtain of a second story window was the": [65535, 0], "curtain of a second story window was the sacred": [65535, 0], "of a second story window was the sacred presence": [65535, 0], "a second story window was the sacred presence there": [65535, 0], "second story window was the sacred presence there he": [65535, 0], "story window was the sacred presence there he climbed": [65535, 0], "window was the sacred presence there he climbed the": [65535, 0], "was the sacred presence there he climbed the fence": [65535, 0], "the sacred presence there he climbed the fence threaded": [65535, 0], "sacred presence there he climbed the fence threaded his": [65535, 0], "presence there he climbed the fence threaded his stealthy": [65535, 0], "there he climbed the fence threaded his stealthy way": [65535, 0], "he climbed the fence threaded his stealthy way through": [65535, 0], "climbed the fence threaded his stealthy way through the": [65535, 0], "the fence threaded his stealthy way through the plants": [65535, 0], "fence threaded his stealthy way through the plants till": [65535, 0], "threaded his stealthy way through the plants till he": [65535, 0], "his stealthy way through the plants till he stood": [65535, 0], "stealthy way through the plants till he stood under": [65535, 0], "way through the plants till he stood under that": [65535, 0], "through the plants till he stood under that window": [65535, 0], "the plants till he stood under that window he": [65535, 0], "plants till he stood under that window he looked": [65535, 0], "till he stood under that window he looked up": [65535, 0], "he stood under that window he looked up at": [65535, 0], "stood under that window he looked up at it": [65535, 0], "under that window he looked up at it long": [65535, 0], "that window he looked up at it long and": [65535, 0], "window he looked up at it long and with": [65535, 0], "he looked up at it long and with emotion": [65535, 0], "looked up at it long and with emotion then": [65535, 0], "up at it long and with emotion then he": [65535, 0], "at it long and with emotion then he laid": [65535, 0], "it long and with emotion then he laid him": [65535, 0], "long and with emotion then he laid him down": [65535, 0], "and with emotion then he laid him down on": [65535, 0], "with emotion then he laid him down on the": [65535, 0], "emotion then he laid him down on the ground": [65535, 0], "then he laid him down on the ground under": [65535, 0], "he laid him down on the ground under it": [65535, 0], "laid him down on the ground under it disposing": [65535, 0], "him down on the ground under it disposing himself": [65535, 0], "down on the ground under it disposing himself upon": [65535, 0], "on the ground under it disposing himself upon his": [65535, 0], "the ground under it disposing himself upon his back": [65535, 0], "ground under it disposing himself upon his back with": [65535, 0], "under it disposing himself upon his back with his": [65535, 0], "it disposing himself upon his back with his hands": [65535, 0], "disposing himself upon his back with his hands clasped": [65535, 0], "himself upon his back with his hands clasped upon": [65535, 0], "upon his back with his hands clasped upon his": [65535, 0], "his back with his hands clasped upon his breast": [65535, 0], "back with his hands clasped upon his breast and": [65535, 0], "with his hands clasped upon his breast and holding": [65535, 0], "his hands clasped upon his breast and holding his": [65535, 0], "hands clasped upon his breast and holding his poor": [65535, 0], "clasped upon his breast and holding his poor wilted": [65535, 0], "upon his breast and holding his poor wilted flower": [65535, 0], "his breast and holding his poor wilted flower and": [65535, 0], "breast and holding his poor wilted flower and thus": [65535, 0], "and holding his poor wilted flower and thus he": [65535, 0], "holding his poor wilted flower and thus he would": [65535, 0], "his poor wilted flower and thus he would die": [65535, 0], "poor wilted flower and thus he would die out": [65535, 0], "wilted flower and thus he would die out in": [65535, 0], "flower and thus he would die out in the": [65535, 0], "and thus he would die out in the cold": [65535, 0], "thus he would die out in the cold world": [65535, 0], "he would die out in the cold world with": [65535, 0], "would die out in the cold world with no": [65535, 0], "die out in the cold world with no shelter": [65535, 0], "out in the cold world with no shelter over": [65535, 0], "in the cold world with no shelter over his": [65535, 0], "the cold world with no shelter over his homeless": [65535, 0], "cold world with no shelter over his homeless head": [65535, 0], "world with no shelter over his homeless head no": [65535, 0], "with no shelter over his homeless head no friendly": [65535, 0], "no shelter over his homeless head no friendly hand": [65535, 0], "shelter over his homeless head no friendly hand to": [65535, 0], "over his homeless head no friendly hand to wipe": [65535, 0], "his homeless head no friendly hand to wipe the": [65535, 0], "homeless head no friendly hand to wipe the death": [65535, 0], "head no friendly hand to wipe the death damps": [65535, 0], "no friendly hand to wipe the death damps from": [65535, 0], "friendly hand to wipe the death damps from his": [65535, 0], "hand to wipe the death damps from his brow": [65535, 0], "to wipe the death damps from his brow no": [65535, 0], "wipe the death damps from his brow no loving": [65535, 0], "the death damps from his brow no loving face": [65535, 0], "death damps from his brow no loving face to": [65535, 0], "damps from his brow no loving face to bend": [65535, 0], "from his brow no loving face to bend pityingly": [65535, 0], "his brow no loving face to bend pityingly over": [65535, 0], "brow no loving face to bend pityingly over him": [65535, 0], "no loving face to bend pityingly over him when": [65535, 0], "loving face to bend pityingly over him when the": [65535, 0], "face to bend pityingly over him when the great": [65535, 0], "to bend pityingly over him when the great agony": [65535, 0], "bend pityingly over him when the great agony came": [65535, 0], "pityingly over him when the great agony came and": [65535, 0], "over him when the great agony came and thus": [65535, 0], "him when the great agony came and thus she": [65535, 0], "when the great agony came and thus she would": [65535, 0], "the great agony came and thus she would see": [65535, 0], "great agony came and thus she would see him": [65535, 0], "agony came and thus she would see him when": [65535, 0], "came and thus she would see him when she": [65535, 0], "and thus she would see him when she looked": [65535, 0], "thus she would see him when she looked out": [65535, 0], "she would see him when she looked out upon": [65535, 0], "would see him when she looked out upon the": [65535, 0], "see him when she looked out upon the glad": [65535, 0], "him when she looked out upon the glad morning": [65535, 0], "when she looked out upon the glad morning and": [65535, 0], "she looked out upon the glad morning and oh": [65535, 0], "looked out upon the glad morning and oh would": [65535, 0], "out upon the glad morning and oh would she": [65535, 0], "upon the glad morning and oh would she drop": [65535, 0], "the glad morning and oh would she drop one": [65535, 0], "glad morning and oh would she drop one little": [65535, 0], "morning and oh would she drop one little tear": [65535, 0], "and oh would she drop one little tear upon": [65535, 0], "oh would she drop one little tear upon his": [65535, 0], "would she drop one little tear upon his poor": [65535, 0], "she drop one little tear upon his poor lifeless": [65535, 0], "drop one little tear upon his poor lifeless form": [65535, 0], "one little tear upon his poor lifeless form would": [65535, 0], "little tear upon his poor lifeless form would she": [65535, 0], "tear upon his poor lifeless form would she heave": [65535, 0], "upon his poor lifeless form would she heave one": [65535, 0], "his poor lifeless form would she heave one little": [65535, 0], "poor lifeless form would she heave one little sigh": [65535, 0], "lifeless form would she heave one little sigh to": [65535, 0], "form would she heave one little sigh to see": [65535, 0], "would she heave one little sigh to see a": [65535, 0], "she heave one little sigh to see a bright": [65535, 0], "heave one little sigh to see a bright young": [65535, 0], "one little sigh to see a bright young life": [65535, 0], "little sigh to see a bright young life so": [65535, 0], "sigh to see a bright young life so rudely": [65535, 0], "to see a bright young life so rudely blighted": [65535, 0], "see a bright young life so rudely blighted so": [65535, 0], "a bright young life so rudely blighted so untimely": [65535, 0], "bright young life so rudely blighted so untimely cut": [65535, 0], "young life so rudely blighted so untimely cut down": [65535, 0], "life so rudely blighted so untimely cut down the": [65535, 0], "so rudely blighted so untimely cut down the window": [65535, 0], "rudely blighted so untimely cut down the window went": [65535, 0], "blighted so untimely cut down the window went up": [65535, 0], "so untimely cut down the window went up a": [65535, 0], "untimely cut down the window went up a maid": [65535, 0], "cut down the window went up a maid servant's": [65535, 0], "down the window went up a maid servant's discordant": [65535, 0], "the window went up a maid servant's discordant voice": [65535, 0], "window went up a maid servant's discordant voice profaned": [65535, 0], "went up a maid servant's discordant voice profaned the": [65535, 0], "up a maid servant's discordant voice profaned the holy": [65535, 0], "a maid servant's discordant voice profaned the holy calm": [65535, 0], "maid servant's discordant voice profaned the holy calm and": [65535, 0], "servant's discordant voice profaned the holy calm and a": [65535, 0], "discordant voice profaned the holy calm and a deluge": [65535, 0], "voice profaned the holy calm and a deluge of": [65535, 0], "profaned the holy calm and a deluge of water": [65535, 0], "the holy calm and a deluge of water drenched": [65535, 0], "holy calm and a deluge of water drenched the": [65535, 0], "calm and a deluge of water drenched the prone": [65535, 0], "and a deluge of water drenched the prone martyr's": [65535, 0], "a deluge of water drenched the prone martyr's remains": [65535, 0], "deluge of water drenched the prone martyr's remains the": [65535, 0], "of water drenched the prone martyr's remains the strangling": [65535, 0], "water drenched the prone martyr's remains the strangling hero": [65535, 0], "drenched the prone martyr's remains the strangling hero sprang": [65535, 0], "the prone martyr's remains the strangling hero sprang up": [65535, 0], "prone martyr's remains the strangling hero sprang up with": [65535, 0], "martyr's remains the strangling hero sprang up with a": [65535, 0], "remains the strangling hero sprang up with a relieving": [65535, 0], "the strangling hero sprang up with a relieving snort": [65535, 0], "strangling hero sprang up with a relieving snort there": [65535, 0], "hero sprang up with a relieving snort there was": [65535, 0], "sprang up with a relieving snort there was a": [65535, 0], "up with a relieving snort there was a whiz": [65535, 0], "with a relieving snort there was a whiz as": [65535, 0], "a relieving snort there was a whiz as of": [65535, 0], "relieving snort there was a whiz as of a": [65535, 0], "snort there was a whiz as of a missile": [65535, 0], "there was a whiz as of a missile in": [65535, 0], "was a whiz as of a missile in the": [65535, 0], "a whiz as of a missile in the air": [65535, 0], "whiz as of a missile in the air mingled": [65535, 0], "as of a missile in the air mingled with": [65535, 0], "of a missile in the air mingled with the": [65535, 0], "a missile in the air mingled with the murmur": [65535, 0], "missile in the air mingled with the murmur of": [65535, 0], "in the air mingled with the murmur of a": [65535, 0], "the air mingled with the murmur of a curse": [65535, 0], "air mingled with the murmur of a curse a": [65535, 0], "mingled with the murmur of a curse a sound": [65535, 0], "with the murmur of a curse a sound as": [65535, 0], "the murmur of a curse a sound as of": [65535, 0], "murmur of a curse a sound as of shivering": [65535, 0], "of a curse a sound as of shivering glass": [65535, 0], "a curse a sound as of shivering glass followed": [65535, 0], "curse a sound as of shivering glass followed and": [65535, 0], "a sound as of shivering glass followed and a": [65535, 0], "sound as of shivering glass followed and a small": [65535, 0], "as of shivering glass followed and a small vague": [65535, 0], "of shivering glass followed and a small vague form": [65535, 0], "shivering glass followed and a small vague form went": [65535, 0], "glass followed and a small vague form went over": [65535, 0], "followed and a small vague form went over the": [65535, 0], "and a small vague form went over the fence": [65535, 0], "a small vague form went over the fence and": [65535, 0], "small vague form went over the fence and shot": [65535, 0], "vague form went over the fence and shot away": [65535, 0], "form went over the fence and shot away in": [65535, 0], "went over the fence and shot away in the": [65535, 0], "over the fence and shot away in the gloom": [65535, 0], "the fence and shot away in the gloom not": [65535, 0], "fence and shot away in the gloom not long": [65535, 0], "and shot away in the gloom not long after": [65535, 0], "shot away in the gloom not long after as": [65535, 0], "away in the gloom not long after as tom": [65535, 0], "in the gloom not long after as tom all": [65535, 0], "the gloom not long after as tom all undressed": [65535, 0], "gloom not long after as tom all undressed for": [65535, 0], "not long after as tom all undressed for bed": [65535, 0], "long after as tom all undressed for bed was": [65535, 0], "after as tom all undressed for bed was surveying": [65535, 0], "as tom all undressed for bed was surveying his": [65535, 0], "tom all undressed for bed was surveying his drenched": [65535, 0], "all undressed for bed was surveying his drenched garments": [65535, 0], "undressed for bed was surveying his drenched garments by": [65535, 0], "for bed was surveying his drenched garments by the": [65535, 0], "bed was surveying his drenched garments by the light": [65535, 0], "was surveying his drenched garments by the light of": [65535, 0], "surveying his drenched garments by the light of a": [65535, 0], "his drenched garments by the light of a tallow": [65535, 0], "drenched garments by the light of a tallow dip": [65535, 0], "garments by the light of a tallow dip sid": [65535, 0], "by the light of a tallow dip sid woke": [65535, 0], "the light of a tallow dip sid woke up": [65535, 0], "light of a tallow dip sid woke up but": [65535, 0], "of a tallow dip sid woke up but if": [65535, 0], "a tallow dip sid woke up but if he": [65535, 0], "tallow dip sid woke up but if he had": [65535, 0], "dip sid woke up but if he had any": [65535, 0], "sid woke up but if he had any dim": [65535, 0], "woke up but if he had any dim idea": [65535, 0], "up but if he had any dim idea of": [65535, 0], "but if he had any dim idea of making": [65535, 0], "if he had any dim idea of making any": [65535, 0], "he had any dim idea of making any references": [65535, 0], "had any dim idea of making any references to": [65535, 0], "any dim idea of making any references to allusions": [65535, 0], "dim idea of making any references to allusions he": [65535, 0], "idea of making any references to allusions he thought": [65535, 0], "of making any references to allusions he thought better": [65535, 0], "making any references to allusions he thought better of": [65535, 0], "any references to allusions he thought better of it": [65535, 0], "references to allusions he thought better of it and": [65535, 0], "to allusions he thought better of it and held": [65535, 0], "allusions he thought better of it and held his": [65535, 0], "he thought better of it and held his peace": [65535, 0], "thought better of it and held his peace for": [65535, 0], "better of it and held his peace for there": [65535, 0], "of it and held his peace for there was": [65535, 0], "it and held his peace for there was danger": [65535, 0], "and held his peace for there was danger in": [65535, 0], "held his peace for there was danger in tom's": [65535, 0], "his peace for there was danger in tom's eye": [65535, 0], "peace for there was danger in tom's eye tom": [65535, 0], "for there was danger in tom's eye tom turned": [65535, 0], "there was danger in tom's eye tom turned in": [65535, 0], "was danger in tom's eye tom turned in without": [65535, 0], "danger in tom's eye tom turned in without the": [65535, 0], "in tom's eye tom turned in without the added": [65535, 0], "tom's eye tom turned in without the added vexation": [65535, 0], "eye tom turned in without the added vexation of": [65535, 0], "tom turned in without the added vexation of prayers": [65535, 0], "turned in without the added vexation of prayers and": [65535, 0], "in without the added vexation of prayers and sid": [65535, 0], "without the added vexation of prayers and sid made": [65535, 0], "the added vexation of prayers and sid made mental": [65535, 0], "added vexation of prayers and sid made mental note": [65535, 0], "vexation of prayers and sid made mental note of": [65535, 0], "of prayers and sid made mental note of the": [65535, 0], "prayers and sid made mental note of the omission": [65535, 0], "tom presented himself before aunt polly who was sitting by": [65535, 0], "presented himself before aunt polly who was sitting by an": [65535, 0], "himself before aunt polly who was sitting by an open": [65535, 0], "before aunt polly who was sitting by an open window": [65535, 0], "aunt polly who was sitting by an open window in": [65535, 0], "polly who was sitting by an open window in a": [65535, 0], "who was sitting by an open window in a pleasant": [65535, 0], "was sitting by an open window in a pleasant rearward": [65535, 0], "sitting by an open window in a pleasant rearward apartment": [65535, 0], "by an open window in a pleasant rearward apartment which": [65535, 0], "an open window in a pleasant rearward apartment which was": [65535, 0], "open window in a pleasant rearward apartment which was bedroom": [65535, 0], "window in a pleasant rearward apartment which was bedroom breakfast": [65535, 0], "in a pleasant rearward apartment which was bedroom breakfast room": [65535, 0], "a pleasant rearward apartment which was bedroom breakfast room dining": [65535, 0], "pleasant rearward apartment which was bedroom breakfast room dining room": [65535, 0], "rearward apartment which was bedroom breakfast room dining room and": [65535, 0], "apartment which was bedroom breakfast room dining room and library": [65535, 0], "which was bedroom breakfast room dining room and library combined": [65535, 0], "was bedroom breakfast room dining room and library combined the": [65535, 0], "bedroom breakfast room dining room and library combined the balmy": [65535, 0], "breakfast room dining room and library combined the balmy summer": [65535, 0], "room dining room and library combined the balmy summer air": [65535, 0], "dining room and library combined the balmy summer air the": [65535, 0], "room and library combined the balmy summer air the restful": [65535, 0], "and library combined the balmy summer air the restful quiet": [65535, 0], "library combined the balmy summer air the restful quiet the": [65535, 0], "combined the balmy summer air the restful quiet the odor": [65535, 0], "the balmy summer air the restful quiet the odor of": [65535, 0], "balmy summer air the restful quiet the odor of the": [65535, 0], "summer air the restful quiet the odor of the flowers": [65535, 0], "air the restful quiet the odor of the flowers and": [65535, 0], "the restful quiet the odor of the flowers and the": [65535, 0], "restful quiet the odor of the flowers and the drowsing": [65535, 0], "quiet the odor of the flowers and the drowsing murmur": [65535, 0], "the odor of the flowers and the drowsing murmur of": [65535, 0], "odor of the flowers and the drowsing murmur of the": [65535, 0], "of the flowers and the drowsing murmur of the bees": [65535, 0], "the flowers and the drowsing murmur of the bees had": [65535, 0], "flowers and the drowsing murmur of the bees had had": [65535, 0], "and the drowsing murmur of the bees had had their": [65535, 0], "the drowsing murmur of the bees had had their effect": [65535, 0], "drowsing murmur of the bees had had their effect and": [65535, 0], "murmur of the bees had had their effect and she": [65535, 0], "of the bees had had their effect and she was": [65535, 0], "the bees had had their effect and she was nodding": [65535, 0], "bees had had their effect and she was nodding over": [65535, 0], "had had their effect and she was nodding over her": [65535, 0], "had their effect and she was nodding over her knitting": [65535, 0], "their effect and she was nodding over her knitting for": [65535, 0], "effect and she was nodding over her knitting for she": [65535, 0], "and she was nodding over her knitting for she had": [65535, 0], "she was nodding over her knitting for she had no": [65535, 0], "was nodding over her knitting for she had no company": [65535, 0], "nodding over her knitting for she had no company but": [65535, 0], "over her knitting for she had no company but the": [65535, 0], "her knitting for she had no company but the cat": [65535, 0], "knitting for she had no company but the cat and": [65535, 0], "for she had no company but the cat and it": [65535, 0], "she had no company but the cat and it was": [65535, 0], "had no company but the cat and it was asleep": [65535, 0], "no company but the cat and it was asleep in": [65535, 0], "company but the cat and it was asleep in her": [65535, 0], "but the cat and it was asleep in her lap": [65535, 0], "the cat and it was asleep in her lap her": [65535, 0], "cat and it was asleep in her lap her spectacles": [65535, 0], "and it was asleep in her lap her spectacles were": [65535, 0], "it was asleep in her lap her spectacles were propped": [65535, 0], "was asleep in her lap her spectacles were propped up": [65535, 0], "asleep in her lap her spectacles were propped up on": [65535, 0], "in her lap her spectacles were propped up on her": [65535, 0], "her lap her spectacles were propped up on her gray": [65535, 0], "lap her spectacles were propped up on her gray head": [65535, 0], "her spectacles were propped up on her gray head for": [65535, 0], "spectacles were propped up on her gray head for safety": [65535, 0], "were propped up on her gray head for safety she": [65535, 0], "propped up on her gray head for safety she had": [65535, 0], "up on her gray head for safety she had thought": [65535, 0], "on her gray head for safety she had thought that": [65535, 0], "her gray head for safety she had thought that of": [65535, 0], "gray head for safety she had thought that of course": [65535, 0], "head for safety she had thought that of course tom": [65535, 0], "for safety she had thought that of course tom had": [65535, 0], "safety she had thought that of course tom had deserted": [65535, 0], "she had thought that of course tom had deserted long": [65535, 0], "had thought that of course tom had deserted long ago": [65535, 0], "thought that of course tom had deserted long ago and": [65535, 0], "that of course tom had deserted long ago and she": [65535, 0], "of course tom had deserted long ago and she wondered": [65535, 0], "course tom had deserted long ago and she wondered at": [65535, 0], "tom had deserted long ago and she wondered at seeing": [65535, 0], "had deserted long ago and she wondered at seeing him": [65535, 0], "deserted long ago and she wondered at seeing him place": [65535, 0], "long ago and she wondered at seeing him place himself": [65535, 0], "ago and she wondered at seeing him place himself in": [65535, 0], "and she wondered at seeing him place himself in her": [65535, 0], "she wondered at seeing him place himself in her power": [65535, 0], "wondered at seeing him place himself in her power again": [65535, 0], "at seeing him place himself in her power again in": [65535, 0], "seeing him place himself in her power again in this": [65535, 0], "him place himself in her power again in this intrepid": [65535, 0], "place himself in her power again in this intrepid way": [65535, 0], "himself in her power again in this intrepid way he": [65535, 0], "in her power again in this intrepid way he said": [65535, 0], "her power again in this intrepid way he said mayn't": [65535, 0], "power again in this intrepid way he said mayn't i": [65535, 0], "again in this intrepid way he said mayn't i go": [65535, 0], "in this intrepid way he said mayn't i go and": [65535, 0], "this intrepid way he said mayn't i go and play": [65535, 0], "intrepid way he said mayn't i go and play now": [65535, 0], "way he said mayn't i go and play now aunt": [65535, 0], "he said mayn't i go and play now aunt what": [65535, 0], "said mayn't i go and play now aunt what a'ready": [65535, 0], "mayn't i go and play now aunt what a'ready how": [65535, 0], "i go and play now aunt what a'ready how much": [65535, 0], "go and play now aunt what a'ready how much have": [65535, 0], "and play now aunt what a'ready how much have you": [65535, 0], "play now aunt what a'ready how much have you done": [65535, 0], "now aunt what a'ready how much have you done it's": [65535, 0], "aunt what a'ready how much have you done it's all": [65535, 0], "what a'ready how much have you done it's all done": [65535, 0], "a'ready how much have you done it's all done aunt": [65535, 0], "how much have you done it's all done aunt tom": [65535, 0], "much have you done it's all done aunt tom don't": [65535, 0], "have you done it's all done aunt tom don't lie": [65535, 0], "you done it's all done aunt tom don't lie to": [65535, 0], "done it's all done aunt tom don't lie to me": [65535, 0], "it's all done aunt tom don't lie to me i": [65535, 0], "all done aunt tom don't lie to me i can't": [65535, 0], "done aunt tom don't lie to me i can't bear": [65535, 0], "aunt tom don't lie to me i can't bear it": [65535, 0], "tom don't lie to me i can't bear it i": [65535, 0], "don't lie to me i can't bear it i ain't": [65535, 0], "lie to me i can't bear it i ain't aunt": [65535, 0], "to me i can't bear it i ain't aunt it": [65535, 0], "me i can't bear it i ain't aunt it is": [65535, 0], "i can't bear it i ain't aunt it is all": [65535, 0], "can't bear it i ain't aunt it is all done": [65535, 0], "bear it i ain't aunt it is all done aunt": [65535, 0], "it i ain't aunt it is all done aunt polly": [65535, 0], "i ain't aunt it is all done aunt polly placed": [65535, 0], "ain't aunt it is all done aunt polly placed small": [65535, 0], "aunt it is all done aunt polly placed small trust": [65535, 0], "it is all done aunt polly placed small trust in": [65535, 0], "is all done aunt polly placed small trust in such": [65535, 0], "all done aunt polly placed small trust in such evidence": [65535, 0], "done aunt polly placed small trust in such evidence she": [65535, 0], "aunt polly placed small trust in such evidence she went": [65535, 0], "polly placed small trust in such evidence she went out": [65535, 0], "placed small trust in such evidence she went out to": [65535, 0], "small trust in such evidence she went out to see": [65535, 0], "trust in such evidence she went out to see for": [65535, 0], "in such evidence she went out to see for herself": [65535, 0], "such evidence she went out to see for herself and": [65535, 0], "evidence she went out to see for herself and she": [65535, 0], "she went out to see for herself and she would": [65535, 0], "went out to see for herself and she would have": [65535, 0], "out to see for herself and she would have been": [65535, 0], "to see for herself and she would have been content": [65535, 0], "see for herself and she would have been content to": [65535, 0], "for herself and she would have been content to find": [65535, 0], "herself and she would have been content to find twenty": [65535, 0], "and she would have been content to find twenty per": [65535, 0], "she would have been content to find twenty per cent": [65535, 0], "would have been content to find twenty per cent of": [65535, 0], "have been content to find twenty per cent of tom's": [65535, 0], "been content to find twenty per cent of tom's statement": [65535, 0], "content to find twenty per cent of tom's statement true": [65535, 0], "to find twenty per cent of tom's statement true when": [65535, 0], "find twenty per cent of tom's statement true when she": [65535, 0], "twenty per cent of tom's statement true when she found": [65535, 0], "per cent of tom's statement true when she found the": [65535, 0], "cent of tom's statement true when she found the entire": [65535, 0], "of tom's statement true when she found the entire fence": [65535, 0], "tom's statement true when she found the entire fence whitewashed": [65535, 0], "statement true when she found the entire fence whitewashed and": [65535, 0], "true when she found the entire fence whitewashed and not": [65535, 0], "when she found the entire fence whitewashed and not only": [65535, 0], "she found the entire fence whitewashed and not only whitewashed": [65535, 0], "found the entire fence whitewashed and not only whitewashed but": [65535, 0], "the entire fence whitewashed and not only whitewashed but elaborately": [65535, 0], "entire fence whitewashed and not only whitewashed but elaborately coated": [65535, 0], "fence whitewashed and not only whitewashed but elaborately coated and": [65535, 0], "whitewashed and not only whitewashed but elaborately coated and recoated": [65535, 0], "and not only whitewashed but elaborately coated and recoated and": [65535, 0], "not only whitewashed but elaborately coated and recoated and even": [65535, 0], "only whitewashed but elaborately coated and recoated and even a": [65535, 0], "whitewashed but elaborately coated and recoated and even a streak": [65535, 0], "but elaborately coated and recoated and even a streak added": [65535, 0], "elaborately coated and recoated and even a streak added to": [65535, 0], "coated and recoated and even a streak added to the": [65535, 0], "and recoated and even a streak added to the ground": [65535, 0], "recoated and even a streak added to the ground her": [65535, 0], "and even a streak added to the ground her astonishment": [65535, 0], "even a streak added to the ground her astonishment was": [65535, 0], "a streak added to the ground her astonishment was almost": [65535, 0], "streak added to the ground her astonishment was almost unspeakable": [65535, 0], "added to the ground her astonishment was almost unspeakable she": [65535, 0], "to the ground her astonishment was almost unspeakable she said": [65535, 0], "the ground her astonishment was almost unspeakable she said well": [65535, 0], "ground her astonishment was almost unspeakable she said well i": [65535, 0], "her astonishment was almost unspeakable she said well i never": [65535, 0], "astonishment was almost unspeakable she said well i never there's": [65535, 0], "was almost unspeakable she said well i never there's no": [65535, 0], "almost unspeakable she said well i never there's no getting": [65535, 0], "unspeakable she said well i never there's no getting round": [65535, 0], "she said well i never there's no getting round it": [65535, 0], "said well i never there's no getting round it you": [65535, 0], "well i never there's no getting round it you can": [65535, 0], "i never there's no getting round it you can work": [65535, 0], "never there's no getting round it you can work when": [65535, 0], "there's no getting round it you can work when you're": [65535, 0], "no getting round it you can work when you're a": [65535, 0], "getting round it you can work when you're a mind": [65535, 0], "round it you can work when you're a mind to": [65535, 0], "it you can work when you're a mind to tom": [65535, 0], "you can work when you're a mind to tom and": [65535, 0], "can work when you're a mind to tom and then": [65535, 0], "work when you're a mind to tom and then she": [65535, 0], "when you're a mind to tom and then she diluted": [65535, 0], "you're a mind to tom and then she diluted the": [65535, 0], "a mind to tom and then she diluted the compliment": [65535, 0], "mind to tom and then she diluted the compliment by": [65535, 0], "to tom and then she diluted the compliment by adding": [65535, 0], "tom and then she diluted the compliment by adding but": [65535, 0], "and then she diluted the compliment by adding but it's": [65535, 0], "then she diluted the compliment by adding but it's powerful": [65535, 0], "she diluted the compliment by adding but it's powerful seldom": [65535, 0], "diluted the compliment by adding but it's powerful seldom you're": [65535, 0], "the compliment by adding but it's powerful seldom you're a": [65535, 0], "compliment by adding but it's powerful seldom you're a mind": [65535, 0], "by adding but it's powerful seldom you're a mind to": [65535, 0], "adding but it's powerful seldom you're a mind to i'm": [65535, 0], "but it's powerful seldom you're a mind to i'm bound": [65535, 0], "it's powerful seldom you're a mind to i'm bound to": [65535, 0], "powerful seldom you're a mind to i'm bound to say": [65535, 0], "seldom you're a mind to i'm bound to say well": [65535, 0], "you're a mind to i'm bound to say well go": [65535, 0], "a mind to i'm bound to say well go 'long": [65535, 0], "mind to i'm bound to say well go 'long and": [65535, 0], "to i'm bound to say well go 'long and play": [65535, 0], "i'm bound to say well go 'long and play but": [65535, 0], "bound to say well go 'long and play but mind": [65535, 0], "to say well go 'long and play but mind you": [65535, 0], "say well go 'long and play but mind you get": [65535, 0], "well go 'long and play but mind you get back": [65535, 0], "go 'long and play but mind you get back some": [65535, 0], "'long and play but mind you get back some time": [65535, 0], "and play but mind you get back some time in": [65535, 0], "play but mind you get back some time in a": [65535, 0], "but mind you get back some time in a week": [65535, 0], "mind you get back some time in a week or": [65535, 0], "you get back some time in a week or i'll": [65535, 0], "get back some time in a week or i'll tan": [65535, 0], "back some time in a week or i'll tan you": [65535, 0], "some time in a week or i'll tan you she": [65535, 0], "time in a week or i'll tan you she was": [65535, 0], "in a week or i'll tan you she was so": [65535, 0], "a week or i'll tan you she was so overcome": [65535, 0], "week or i'll tan you she was so overcome by": [65535, 0], "or i'll tan you she was so overcome by the": [65535, 0], "i'll tan you she was so overcome by the splendor": [65535, 0], "tan you she was so overcome by the splendor of": [65535, 0], "you she was so overcome by the splendor of his": [65535, 0], "she was so overcome by the splendor of his achievement": [65535, 0], "was so overcome by the splendor of his achievement that": [65535, 0], "so overcome by the splendor of his achievement that she": [65535, 0], "overcome by the splendor of his achievement that she took": [65535, 0], "by the splendor of his achievement that she took him": [65535, 0], "the splendor of his achievement that she took him into": [65535, 0], "splendor of his achievement that she took him into the": [65535, 0], "of his achievement that she took him into the closet": [65535, 0], "his achievement that she took him into the closet and": [65535, 0], "achievement that she took him into the closet and selected": [65535, 0], "that she took him into the closet and selected a": [65535, 0], "she took him into the closet and selected a choice": [65535, 0], "took him into the closet and selected a choice apple": [65535, 0], "him into the closet and selected a choice apple and": [65535, 0], "into the closet and selected a choice apple and delivered": [65535, 0], "the closet and selected a choice apple and delivered it": [65535, 0], "closet and selected a choice apple and delivered it to": [65535, 0], "and selected a choice apple and delivered it to him": [65535, 0], "selected a choice apple and delivered it to him along": [65535, 0], "a choice apple and delivered it to him along with": [65535, 0], "choice apple and delivered it to him along with an": [65535, 0], "apple and delivered it to him along with an improving": [65535, 0], "and delivered it to him along with an improving lecture": [65535, 0], "delivered it to him along with an improving lecture upon": [65535, 0], "it to him along with an improving lecture upon the": [65535, 0], "to him along with an improving lecture upon the added": [65535, 0], "him along with an improving lecture upon the added value": [65535, 0], "along with an improving lecture upon the added value and": [65535, 0], "with an improving lecture upon the added value and flavor": [65535, 0], "an improving lecture upon the added value and flavor a": [65535, 0], "improving lecture upon the added value and flavor a treat": [65535, 0], "lecture upon the added value and flavor a treat took": [65535, 0], "upon the added value and flavor a treat took to": [65535, 0], "the added value and flavor a treat took to itself": [65535, 0], "added value and flavor a treat took to itself when": [65535, 0], "value and flavor a treat took to itself when it": [65535, 0], "and flavor a treat took to itself when it came": [65535, 0], "flavor a treat took to itself when it came without": [65535, 0], "a treat took to itself when it came without sin": [65535, 0], "treat took to itself when it came without sin through": [65535, 0], "took to itself when it came without sin through virtuous": [65535, 0], "to itself when it came without sin through virtuous effort": [65535, 0], "itself when it came without sin through virtuous effort and": [65535, 0], "when it came without sin through virtuous effort and while": [65535, 0], "it came without sin through virtuous effort and while she": [65535, 0], "came without sin through virtuous effort and while she closed": [65535, 0], "without sin through virtuous effort and while she closed with": [65535, 0], "sin through virtuous effort and while she closed with a": [65535, 0], "through virtuous effort and while she closed with a happy": [65535, 0], "virtuous effort and while she closed with a happy scriptural": [65535, 0], "effort and while she closed with a happy scriptural flourish": [65535, 0], "and while she closed with a happy scriptural flourish he": [65535, 0], "while she closed with a happy scriptural flourish he hooked": [65535, 0], "she closed with a happy scriptural flourish he hooked a": [65535, 0], "closed with a happy scriptural flourish he hooked a doughnut": [65535, 0], "with a happy scriptural flourish he hooked a doughnut then": [65535, 0], "a happy scriptural flourish he hooked a doughnut then he": [65535, 0], "happy scriptural flourish he hooked a doughnut then he skipped": [65535, 0], "scriptural flourish he hooked a doughnut then he skipped out": [65535, 0], "flourish he hooked a doughnut then he skipped out and": [65535, 0], "he hooked a doughnut then he skipped out and saw": [65535, 0], "hooked a doughnut then he skipped out and saw sid": [65535, 0], "a doughnut then he skipped out and saw sid just": [65535, 0], "doughnut then he skipped out and saw sid just starting": [65535, 0], "then he skipped out and saw sid just starting up": [65535, 0], "he skipped out and saw sid just starting up the": [65535, 0], "skipped out and saw sid just starting up the outside": [65535, 0], "out and saw sid just starting up the outside stairway": [65535, 0], "and saw sid just starting up the outside stairway that": [65535, 0], "saw sid just starting up the outside stairway that led": [65535, 0], "sid just starting up the outside stairway that led to": [65535, 0], "just starting up the outside stairway that led to the": [65535, 0], "starting up the outside stairway that led to the back": [65535, 0], "up the outside stairway that led to the back rooms": [65535, 0], "the outside stairway that led to the back rooms on": [65535, 0], "outside stairway that led to the back rooms on the": [65535, 0], "stairway that led to the back rooms on the second": [65535, 0], "that led to the back rooms on the second floor": [65535, 0], "led to the back rooms on the second floor clods": [65535, 0], "to the back rooms on the second floor clods were": [65535, 0], "the back rooms on the second floor clods were handy": [65535, 0], "back rooms on the second floor clods were handy and": [65535, 0], "rooms on the second floor clods were handy and the": [65535, 0], "on the second floor clods were handy and the air": [65535, 0], "the second floor clods were handy and the air was": [65535, 0], "second floor clods were handy and the air was full": [65535, 0], "floor clods were handy and the air was full of": [65535, 0], "clods were handy and the air was full of them": [65535, 0], "were handy and the air was full of them in": [65535, 0], "handy and the air was full of them in a": [65535, 0], "and the air was full of them in a twinkling": [65535, 0], "the air was full of them in a twinkling they": [65535, 0], "air was full of them in a twinkling they raged": [65535, 0], "was full of them in a twinkling they raged around": [65535, 0], "full of them in a twinkling they raged around sid": [65535, 0], "of them in a twinkling they raged around sid like": [65535, 0], "them in a twinkling they raged around sid like a": [65535, 0], "in a twinkling they raged around sid like a hail": [65535, 0], "a twinkling they raged around sid like a hail storm": [65535, 0], "twinkling they raged around sid like a hail storm and": [65535, 0], "they raged around sid like a hail storm and before": [65535, 0], "raged around sid like a hail storm and before aunt": [65535, 0], "around sid like a hail storm and before aunt polly": [65535, 0], "sid like a hail storm and before aunt polly could": [65535, 0], "like a hail storm and before aunt polly could collect": [65535, 0], "a hail storm and before aunt polly could collect her": [65535, 0], "hail storm and before aunt polly could collect her surprised": [65535, 0], "storm and before aunt polly could collect her surprised faculties": [65535, 0], "and before aunt polly could collect her surprised faculties and": [65535, 0], "before aunt polly could collect her surprised faculties and sally": [65535, 0], "aunt polly could collect her surprised faculties and sally to": [65535, 0], "polly could collect her surprised faculties and sally to the": [65535, 0], "could collect her surprised faculties and sally to the rescue": [65535, 0], "collect her surprised faculties and sally to the rescue six": [65535, 0], "her surprised faculties and sally to the rescue six or": [65535, 0], "surprised faculties and sally to the rescue six or seven": [65535, 0], "faculties and sally to the rescue six or seven clods": [65535, 0], "and sally to the rescue six or seven clods had": [65535, 0], "sally to the rescue six or seven clods had taken": [65535, 0], "to the rescue six or seven clods had taken personal": [65535, 0], "the rescue six or seven clods had taken personal effect": [65535, 0], "rescue six or seven clods had taken personal effect and": [65535, 0], "six or seven clods had taken personal effect and tom": [65535, 0], "or seven clods had taken personal effect and tom was": [65535, 0], "seven clods had taken personal effect and tom was over": [65535, 0], "clods had taken personal effect and tom was over the": [65535, 0], "had taken personal effect and tom was over the fence": [65535, 0], "taken personal effect and tom was over the fence and": [65535, 0], "personal effect and tom was over the fence and gone": [65535, 0], "effect and tom was over the fence and gone there": [65535, 0], "and tom was over the fence and gone there was": [65535, 0], "tom was over the fence and gone there was a": [65535, 0], "was over the fence and gone there was a gate": [65535, 0], "over the fence and gone there was a gate but": [65535, 0], "the fence and gone there was a gate but as": [65535, 0], "fence and gone there was a gate but as a": [65535, 0], "and gone there was a gate but as a general": [65535, 0], "gone there was a gate but as a general thing": [65535, 0], "there was a gate but as a general thing he": [65535, 0], "was a gate but as a general thing he was": [65535, 0], "a gate but as a general thing he was too": [65535, 0], "gate but as a general thing he was too crowded": [65535, 0], "but as a general thing he was too crowded for": [65535, 0], "as a general thing he was too crowded for time": [65535, 0], "a general thing he was too crowded for time to": [65535, 0], "general thing he was too crowded for time to make": [65535, 0], "thing he was too crowded for time to make use": [65535, 0], "he was too crowded for time to make use of": [65535, 0], "was too crowded for time to make use of it": [65535, 0], "too crowded for time to make use of it his": [65535, 0], "crowded for time to make use of it his soul": [65535, 0], "for time to make use of it his soul was": [65535, 0], "time to make use of it his soul was at": [65535, 0], "to make use of it his soul was at peace": [65535, 0], "make use of it his soul was at peace now": [65535, 0], "use of it his soul was at peace now that": [65535, 0], "of it his soul was at peace now that he": [65535, 0], "it his soul was at peace now that he had": [65535, 0], "his soul was at peace now that he had settled": [65535, 0], "soul was at peace now that he had settled with": [65535, 0], "was at peace now that he had settled with sid": [65535, 0], "at peace now that he had settled with sid for": [65535, 0], "peace now that he had settled with sid for calling": [65535, 0], "now that he had settled with sid for calling attention": [65535, 0], "that he had settled with sid for calling attention to": [65535, 0], "he had settled with sid for calling attention to his": [65535, 0], "had settled with sid for calling attention to his black": [65535, 0], "settled with sid for calling attention to his black thread": [65535, 0], "with sid for calling attention to his black thread and": [65535, 0], "sid for calling attention to his black thread and getting": [65535, 0], "for calling attention to his black thread and getting him": [65535, 0], "calling attention to his black thread and getting him into": [65535, 0], "attention to his black thread and getting him into trouble": [65535, 0], "to his black thread and getting him into trouble tom": [65535, 0], "his black thread and getting him into trouble tom skirted": [65535, 0], "black thread and getting him into trouble tom skirted the": [65535, 0], "thread and getting him into trouble tom skirted the block": [65535, 0], "and getting him into trouble tom skirted the block and": [65535, 0], "getting him into trouble tom skirted the block and came": [65535, 0], "him into trouble tom skirted the block and came round": [65535, 0], "into trouble tom skirted the block and came round into": [65535, 0], "trouble tom skirted the block and came round into a": [65535, 0], "tom skirted the block and came round into a muddy": [65535, 0], "skirted the block and came round into a muddy alley": [65535, 0], "the block and came round into a muddy alley that": [65535, 0], "block and came round into a muddy alley that led": [65535, 0], "and came round into a muddy alley that led by": [65535, 0], "came round into a muddy alley that led by the": [65535, 0], "round into a muddy alley that led by the back": [65535, 0], "into a muddy alley that led by the back of": [65535, 0], "a muddy alley that led by the back of his": [65535, 0], "muddy alley that led by the back of his aunt's": [65535, 0], "alley that led by the back of his aunt's cowstable": [65535, 0], "that led by the back of his aunt's cowstable he": [65535, 0], "led by the back of his aunt's cowstable he presently": [65535, 0], "by the back of his aunt's cowstable he presently got": [65535, 0], "the back of his aunt's cowstable he presently got safely": [65535, 0], "back of his aunt's cowstable he presently got safely beyond": [65535, 0], "of his aunt's cowstable he presently got safely beyond the": [65535, 0], "his aunt's cowstable he presently got safely beyond the reach": [65535, 0], "aunt's cowstable he presently got safely beyond the reach of": [65535, 0], "cowstable he presently got safely beyond the reach of capture": [65535, 0], "he presently got safely beyond the reach of capture and": [65535, 0], "presently got safely beyond the reach of capture and punishment": [65535, 0], "got safely beyond the reach of capture and punishment and": [65535, 0], "safely beyond the reach of capture and punishment and hastened": [65535, 0], "beyond the reach of capture and punishment and hastened toward": [65535, 0], "the reach of capture and punishment and hastened toward the": [65535, 0], "reach of capture and punishment and hastened toward the public": [65535, 0], "of capture and punishment and hastened toward the public square": [65535, 0], "capture and punishment and hastened toward the public square of": [65535, 0], "and punishment and hastened toward the public square of the": [65535, 0], "punishment and hastened toward the public square of the village": [65535, 0], "and hastened toward the public square of the village where": [65535, 0], "hastened toward the public square of the village where two": [65535, 0], "toward the public square of the village where two military": [65535, 0], "the public square of the village where two military companies": [65535, 0], "public square of the village where two military companies of": [65535, 0], "square of the village where two military companies of boys": [65535, 0], "of the village where two military companies of boys had": [65535, 0], "the village where two military companies of boys had met": [65535, 0], "village where two military companies of boys had met for": [65535, 0], "where two military companies of boys had met for conflict": [65535, 0], "two military companies of boys had met for conflict according": [65535, 0], "military companies of boys had met for conflict according to": [65535, 0], "companies of boys had met for conflict according to previous": [65535, 0], "of boys had met for conflict according to previous appointment": [65535, 0], "boys had met for conflict according to previous appointment tom": [65535, 0], "had met for conflict according to previous appointment tom was": [65535, 0], "met for conflict according to previous appointment tom was general": [65535, 0], "for conflict according to previous appointment tom was general of": [65535, 0], "conflict according to previous appointment tom was general of one": [65535, 0], "according to previous appointment tom was general of one of": [65535, 0], "to previous appointment tom was general of one of these": [65535, 0], "previous appointment tom was general of one of these armies": [65535, 0], "appointment tom was general of one of these armies joe": [65535, 0], "tom was general of one of these armies joe harper": [65535, 0], "was general of one of these armies joe harper a": [65535, 0], "general of one of these armies joe harper a bosom": [65535, 0], "of one of these armies joe harper a bosom friend": [65535, 0], "one of these armies joe harper a bosom friend general": [65535, 0], "of these armies joe harper a bosom friend general of": [65535, 0], "these armies joe harper a bosom friend general of the": [65535, 0], "armies joe harper a bosom friend general of the other": [65535, 0], "joe harper a bosom friend general of the other these": [65535, 0], "harper a bosom friend general of the other these two": [65535, 0], "a bosom friend general of the other these two great": [65535, 0], "bosom friend general of the other these two great commanders": [65535, 0], "friend general of the other these two great commanders did": [65535, 0], "general of the other these two great commanders did not": [65535, 0], "of the other these two great commanders did not condescend": [65535, 0], "the other these two great commanders did not condescend to": [65535, 0], "other these two great commanders did not condescend to fight": [65535, 0], "these two great commanders did not condescend to fight in": [65535, 0], "two great commanders did not condescend to fight in person": [65535, 0], "great commanders did not condescend to fight in person that": [65535, 0], "commanders did not condescend to fight in person that being": [65535, 0], "did not condescend to fight in person that being better": [65535, 0], "not condescend to fight in person that being better suited": [65535, 0], "condescend to fight in person that being better suited to": [65535, 0], "to fight in person that being better suited to the": [65535, 0], "fight in person that being better suited to the still": [65535, 0], "in person that being better suited to the still smaller": [65535, 0], "person that being better suited to the still smaller fry": [65535, 0], "that being better suited to the still smaller fry but": [65535, 0], "being better suited to the still smaller fry but sat": [65535, 0], "better suited to the still smaller fry but sat together": [65535, 0], "suited to the still smaller fry but sat together on": [65535, 0], "to the still smaller fry but sat together on an": [65535, 0], "the still smaller fry but sat together on an eminence": [65535, 0], "still smaller fry but sat together on an eminence and": [65535, 0], "smaller fry but sat together on an eminence and conducted": [65535, 0], "fry but sat together on an eminence and conducted the": [65535, 0], "but sat together on an eminence and conducted the field": [65535, 0], "sat together on an eminence and conducted the field operations": [65535, 0], "together on an eminence and conducted the field operations by": [65535, 0], "on an eminence and conducted the field operations by orders": [65535, 0], "an eminence and conducted the field operations by orders delivered": [65535, 0], "eminence and conducted the field operations by orders delivered through": [65535, 0], "and conducted the field operations by orders delivered through aides": [65535, 0], "conducted the field operations by orders delivered through aides de": [65535, 0], "the field operations by orders delivered through aides de camp": [65535, 0], "field operations by orders delivered through aides de camp tom's": [65535, 0], "operations by orders delivered through aides de camp tom's army": [65535, 0], "by orders delivered through aides de camp tom's army won": [65535, 0], "orders delivered through aides de camp tom's army won a": [65535, 0], "delivered through aides de camp tom's army won a great": [65535, 0], "through aides de camp tom's army won a great victory": [65535, 0], "aides de camp tom's army won a great victory after": [65535, 0], "de camp tom's army won a great victory after a": [65535, 0], "camp tom's army won a great victory after a long": [65535, 0], "tom's army won a great victory after a long and": [65535, 0], "army won a great victory after a long and hard": [65535, 0], "won a great victory after a long and hard fought": [65535, 0], "a great victory after a long and hard fought battle": [65535, 0], "great victory after a long and hard fought battle then": [65535, 0], "victory after a long and hard fought battle then the": [65535, 0], "after a long and hard fought battle then the dead": [65535, 0], "a long and hard fought battle then the dead were": [65535, 0], "long and hard fought battle then the dead were counted": [65535, 0], "and hard fought battle then the dead were counted prisoners": [65535, 0], "hard fought battle then the dead were counted prisoners exchanged": [65535, 0], "fought battle then the dead were counted prisoners exchanged the": [65535, 0], "battle then the dead were counted prisoners exchanged the terms": [65535, 0], "then the dead were counted prisoners exchanged the terms of": [65535, 0], "the dead were counted prisoners exchanged the terms of the": [65535, 0], "dead were counted prisoners exchanged the terms of the next": [65535, 0], "were counted prisoners exchanged the terms of the next disagreement": [65535, 0], "counted prisoners exchanged the terms of the next disagreement agreed": [65535, 0], "prisoners exchanged the terms of the next disagreement agreed upon": [65535, 0], "exchanged the terms of the next disagreement agreed upon and": [65535, 0], "the terms of the next disagreement agreed upon and the": [65535, 0], "terms of the next disagreement agreed upon and the day": [65535, 0], "of the next disagreement agreed upon and the day for": [65535, 0], "the next disagreement agreed upon and the day for the": [65535, 0], "next disagreement agreed upon and the day for the necessary": [65535, 0], "disagreement agreed upon and the day for the necessary battle": [65535, 0], "agreed upon and the day for the necessary battle appointed": [65535, 0], "upon and the day for the necessary battle appointed after": [65535, 0], "and the day for the necessary battle appointed after which": [65535, 0], "the day for the necessary battle appointed after which the": [65535, 0], "day for the necessary battle appointed after which the armies": [65535, 0], "for the necessary battle appointed after which the armies fell": [65535, 0], "the necessary battle appointed after which the armies fell into": [65535, 0], "necessary battle appointed after which the armies fell into line": [65535, 0], "battle appointed after which the armies fell into line and": [65535, 0], "appointed after which the armies fell into line and marched": [65535, 0], "after which the armies fell into line and marched away": [65535, 0], "which the armies fell into line and marched away and": [65535, 0], "the armies fell into line and marched away and tom": [65535, 0], "armies fell into line and marched away and tom turned": [65535, 0], "fell into line and marched away and tom turned homeward": [65535, 0], "into line and marched away and tom turned homeward alone": [65535, 0], "line and marched away and tom turned homeward alone as": [65535, 0], "and marched away and tom turned homeward alone as he": [65535, 0], "marched away and tom turned homeward alone as he was": [65535, 0], "away and tom turned homeward alone as he was passing": [65535, 0], "and tom turned homeward alone as he was passing by": [65535, 0], "tom turned homeward alone as he was passing by the": [65535, 0], "turned homeward alone as he was passing by the house": [65535, 0], "homeward alone as he was passing by the house where": [65535, 0], "alone as he was passing by the house where jeff": [65535, 0], "as he was passing by the house where jeff thatcher": [65535, 0], "he was passing by the house where jeff thatcher lived": [65535, 0], "was passing by the house where jeff thatcher lived he": [65535, 0], "passing by the house where jeff thatcher lived he saw": [65535, 0], "by the house where jeff thatcher lived he saw a": [65535, 0], "the house where jeff thatcher lived he saw a new": [65535, 0], "house where jeff thatcher lived he saw a new girl": [65535, 0], "where jeff thatcher lived he saw a new girl in": [65535, 0], "jeff thatcher lived he saw a new girl in the": [65535, 0], "thatcher lived he saw a new girl in the garden": [65535, 0], "lived he saw a new girl in the garden a": [65535, 0], "he saw a new girl in the garden a lovely": [65535, 0], "saw a new girl in the garden a lovely little": [65535, 0], "a new girl in the garden a lovely little blue": [65535, 0], "new girl in the garden a lovely little blue eyed": [65535, 0], "girl in the garden a lovely little blue eyed creature": [65535, 0], "in the garden a lovely little blue eyed creature with": [65535, 0], "the garden a lovely little blue eyed creature with yellow": [65535, 0], "garden a lovely little blue eyed creature with yellow hair": [65535, 0], "a lovely little blue eyed creature with yellow hair plaited": [65535, 0], "lovely little blue eyed creature with yellow hair plaited into": [65535, 0], "little blue eyed creature with yellow hair plaited into two": [65535, 0], "blue eyed creature with yellow hair plaited into two long": [65535, 0], "eyed creature with yellow hair plaited into two long tails": [65535, 0], "creature with yellow hair plaited into two long tails white": [65535, 0], "with yellow hair plaited into two long tails white summer": [65535, 0], "yellow hair plaited into two long tails white summer frock": [65535, 0], "hair plaited into two long tails white summer frock and": [65535, 0], "plaited into two long tails white summer frock and embroidered": [65535, 0], "into two long tails white summer frock and embroidered pantalettes": [65535, 0], "two long tails white summer frock and embroidered pantalettes the": [65535, 0], "long tails white summer frock and embroidered pantalettes the fresh": [65535, 0], "tails white summer frock and embroidered pantalettes the fresh crowned": [65535, 0], "white summer frock and embroidered pantalettes the fresh crowned hero": [65535, 0], "summer frock and embroidered pantalettes the fresh crowned hero fell": [65535, 0], "frock and embroidered pantalettes the fresh crowned hero fell without": [65535, 0], "and embroidered pantalettes the fresh crowned hero fell without firing": [65535, 0], "embroidered pantalettes the fresh crowned hero fell without firing a": [65535, 0], "pantalettes the fresh crowned hero fell without firing a shot": [65535, 0], "the fresh crowned hero fell without firing a shot a": [65535, 0], "fresh crowned hero fell without firing a shot a certain": [65535, 0], "crowned hero fell without firing a shot a certain amy": [65535, 0], "hero fell without firing a shot a certain amy lawrence": [65535, 0], "fell without firing a shot a certain amy lawrence vanished": [65535, 0], "without firing a shot a certain amy lawrence vanished out": [65535, 0], "firing a shot a certain amy lawrence vanished out of": [65535, 0], "a shot a certain amy lawrence vanished out of his": [65535, 0], "shot a certain amy lawrence vanished out of his heart": [65535, 0], "a certain amy lawrence vanished out of his heart and": [65535, 0], "certain amy lawrence vanished out of his heart and left": [65535, 0], "amy lawrence vanished out of his heart and left not": [65535, 0], "lawrence vanished out of his heart and left not even": [65535, 0], "vanished out of his heart and left not even a": [65535, 0], "out of his heart and left not even a memory": [65535, 0], "of his heart and left not even a memory of": [65535, 0], "his heart and left not even a memory of herself": [65535, 0], "heart and left not even a memory of herself behind": [65535, 0], "and left not even a memory of herself behind he": [65535, 0], "left not even a memory of herself behind he had": [65535, 0], "not even a memory of herself behind he had thought": [65535, 0], "even a memory of herself behind he had thought he": [65535, 0], "a memory of herself behind he had thought he loved": [65535, 0], "memory of herself behind he had thought he loved her": [65535, 0], "of herself behind he had thought he loved her to": [65535, 0], "herself behind he had thought he loved her to distraction": [65535, 0], "behind he had thought he loved her to distraction he": [65535, 0], "he had thought he loved her to distraction he had": [65535, 0], "had thought he loved her to distraction he had regarded": [65535, 0], "thought he loved her to distraction he had regarded his": [65535, 0], "he loved her to distraction he had regarded his passion": [65535, 0], "loved her to distraction he had regarded his passion as": [65535, 0], "her to distraction he had regarded his passion as adoration": [65535, 0], "to distraction he had regarded his passion as adoration and": [65535, 0], "distraction he had regarded his passion as adoration and behold": [65535, 0], "he had regarded his passion as adoration and behold it": [65535, 0], "had regarded his passion as adoration and behold it was": [65535, 0], "regarded his passion as adoration and behold it was only": [65535, 0], "his passion as adoration and behold it was only a": [65535, 0], "passion as adoration and behold it was only a poor": [65535, 0], "as adoration and behold it was only a poor little": [65535, 0], "adoration and behold it was only a poor little evanescent": [65535, 0], "and behold it was only a poor little evanescent partiality": [65535, 0], "behold it was only a poor little evanescent partiality he": [65535, 0], "it was only a poor little evanescent partiality he had": [65535, 0], "was only a poor little evanescent partiality he had been": [65535, 0], "only a poor little evanescent partiality he had been months": [65535, 0], "a poor little evanescent partiality he had been months winning": [65535, 0], "poor little evanescent partiality he had been months winning her": [65535, 0], "little evanescent partiality he had been months winning her she": [65535, 0], "evanescent partiality he had been months winning her she had": [65535, 0], "partiality he had been months winning her she had confessed": [65535, 0], "he had been months winning her she had confessed hardly": [65535, 0], "had been months winning her she had confessed hardly a": [65535, 0], "been months winning her she had confessed hardly a week": [65535, 0], "months winning her she had confessed hardly a week ago": [65535, 0], "winning her she had confessed hardly a week ago he": [65535, 0], "her she had confessed hardly a week ago he had": [65535, 0], "she had confessed hardly a week ago he had been": [65535, 0], "had confessed hardly a week ago he had been the": [65535, 0], "confessed hardly a week ago he had been the happiest": [65535, 0], "hardly a week ago he had been the happiest and": [65535, 0], "a week ago he had been the happiest and the": [65535, 0], "week ago he had been the happiest and the proudest": [65535, 0], "ago he had been the happiest and the proudest boy": [65535, 0], "he had been the happiest and the proudest boy in": [65535, 0], "had been the happiest and the proudest boy in the": [65535, 0], "been the happiest and the proudest boy in the world": [65535, 0], "the happiest and the proudest boy in the world only": [65535, 0], "happiest and the proudest boy in the world only seven": [65535, 0], "and the proudest boy in the world only seven short": [65535, 0], "the proudest boy in the world only seven short days": [65535, 0], "proudest boy in the world only seven short days and": [65535, 0], "boy in the world only seven short days and here": [65535, 0], "in the world only seven short days and here in": [65535, 0], "the world only seven short days and here in one": [65535, 0], "world only seven short days and here in one instant": [65535, 0], "only seven short days and here in one instant of": [65535, 0], "seven short days and here in one instant of time": [65535, 0], "short days and here in one instant of time she": [65535, 0], "days and here in one instant of time she had": [65535, 0], "and here in one instant of time she had gone": [65535, 0], "here in one instant of time she had gone out": [65535, 0], "in one instant of time she had gone out of": [65535, 0], "one instant of time she had gone out of his": [65535, 0], "instant of time she had gone out of his heart": [65535, 0], "of time she had gone out of his heart like": [65535, 0], "time she had gone out of his heart like a": [65535, 0], "she had gone out of his heart like a casual": [65535, 0], "had gone out of his heart like a casual stranger": [65535, 0], "gone out of his heart like a casual stranger whose": [65535, 0], "out of his heart like a casual stranger whose visit": [65535, 0], "of his heart like a casual stranger whose visit is": [65535, 0], "his heart like a casual stranger whose visit is done": [65535, 0], "heart like a casual stranger whose visit is done he": [65535, 0], "like a casual stranger whose visit is done he worshipped": [65535, 0], "a casual stranger whose visit is done he worshipped this": [65535, 0], "casual stranger whose visit is done he worshipped this new": [65535, 0], "stranger whose visit is done he worshipped this new angel": [65535, 0], "whose visit is done he worshipped this new angel with": [65535, 0], "visit is done he worshipped this new angel with furtive": [65535, 0], "is done he worshipped this new angel with furtive eye": [65535, 0], "done he worshipped this new angel with furtive eye till": [65535, 0], "he worshipped this new angel with furtive eye till he": [65535, 0], "worshipped this new angel with furtive eye till he saw": [65535, 0], "this new angel with furtive eye till he saw that": [65535, 0], "new angel with furtive eye till he saw that she": [65535, 0], "angel with furtive eye till he saw that she had": [65535, 0], "with furtive eye till he saw that she had discovered": [65535, 0], "furtive eye till he saw that she had discovered him": [65535, 0], "eye till he saw that she had discovered him then": [65535, 0], "till he saw that she had discovered him then he": [65535, 0], "he saw that she had discovered him then he pretended": [65535, 0], "saw that she had discovered him then he pretended he": [65535, 0], "that she had discovered him then he pretended he did": [65535, 0], "she had discovered him then he pretended he did not": [65535, 0], "had discovered him then he pretended he did not know": [65535, 0], "discovered him then he pretended he did not know she": [65535, 0], "him then he pretended he did not know she was": [65535, 0], "then he pretended he did not know she was present": [65535, 0], "he pretended he did not know she was present and": [65535, 0], "pretended he did not know she was present and began": [65535, 0], "he did not know she was present and began to": [65535, 0], "did not know she was present and began to show": [65535, 0], "not know she was present and began to show off": [65535, 0], "know she was present and began to show off in": [65535, 0], "she was present and began to show off in all": [65535, 0], "was present and began to show off in all sorts": [65535, 0], "present and began to show off in all sorts of": [65535, 0], "and began to show off in all sorts of absurd": [65535, 0], "began to show off in all sorts of absurd boyish": [65535, 0], "to show off in all sorts of absurd boyish ways": [65535, 0], "show off in all sorts of absurd boyish ways in": [65535, 0], "off in all sorts of absurd boyish ways in order": [65535, 0], "in all sorts of absurd boyish ways in order to": [65535, 0], "all sorts of absurd boyish ways in order to win": [65535, 0], "sorts of absurd boyish ways in order to win her": [65535, 0], "of absurd boyish ways in order to win her admiration": [65535, 0], "absurd boyish ways in order to win her admiration he": [65535, 0], "boyish ways in order to win her admiration he kept": [65535, 0], "ways in order to win her admiration he kept up": [65535, 0], "in order to win her admiration he kept up this": [65535, 0], "order to win her admiration he kept up this grotesque": [65535, 0], "to win her admiration he kept up this grotesque foolishness": [65535, 0], "win her admiration he kept up this grotesque foolishness for": [65535, 0], "her admiration he kept up this grotesque foolishness for some": [65535, 0], "admiration he kept up this grotesque foolishness for some time": [65535, 0], "he kept up this grotesque foolishness for some time but": [65535, 0], "kept up this grotesque foolishness for some time but by": [65535, 0], "up this grotesque foolishness for some time but by and": [65535, 0], "this grotesque foolishness for some time but by and by": [65535, 0], "grotesque foolishness for some time but by and by while": [65535, 0], "foolishness for some time but by and by while he": [65535, 0], "for some time but by and by while he was": [65535, 0], "some time but by and by while he was in": [65535, 0], "time but by and by while he was in the": [65535, 0], "but by and by while he was in the midst": [65535, 0], "by and by while he was in the midst of": [65535, 0], "and by while he was in the midst of some": [65535, 0], "by while he was in the midst of some dangerous": [65535, 0], "while he was in the midst of some dangerous gymnastic": [65535, 0], "he was in the midst of some dangerous gymnastic performances": [65535, 0], "was in the midst of some dangerous gymnastic performances he": [65535, 0], "in the midst of some dangerous gymnastic performances he glanced": [65535, 0], "the midst of some dangerous gymnastic performances he glanced aside": [65535, 0], "midst of some dangerous gymnastic performances he glanced aside and": [65535, 0], "of some dangerous gymnastic performances he glanced aside and saw": [65535, 0], "some dangerous gymnastic performances he glanced aside and saw that": [65535, 0], "dangerous gymnastic performances he glanced aside and saw that the": [65535, 0], "gymnastic performances he glanced aside and saw that the little": [65535, 0], "performances he glanced aside and saw that the little girl": [65535, 0], "he glanced aside and saw that the little girl was": [65535, 0], "glanced aside and saw that the little girl was wending": [65535, 0], "aside and saw that the little girl was wending her": [65535, 0], "and saw that the little girl was wending her way": [65535, 0], "saw that the little girl was wending her way toward": [65535, 0], "that the little girl was wending her way toward the": [65535, 0], "the little girl was wending her way toward the house": [65535, 0], "little girl was wending her way toward the house tom": [65535, 0], "girl was wending her way toward the house tom came": [65535, 0], "was wending her way toward the house tom came up": [65535, 0], "wending her way toward the house tom came up to": [65535, 0], "her way toward the house tom came up to the": [65535, 0], "way toward the house tom came up to the fence": [65535, 0], "toward the house tom came up to the fence and": [65535, 0], "the house tom came up to the fence and leaned": [65535, 0], "house tom came up to the fence and leaned on": [65535, 0], "tom came up to the fence and leaned on it": [65535, 0], "came up to the fence and leaned on it grieving": [65535, 0], "up to the fence and leaned on it grieving and": [65535, 0], "to the fence and leaned on it grieving and hoping": [65535, 0], "the fence and leaned on it grieving and hoping she": [65535, 0], "fence and leaned on it grieving and hoping she would": [65535, 0], "and leaned on it grieving and hoping she would tarry": [65535, 0], "leaned on it grieving and hoping she would tarry yet": [65535, 0], "on it grieving and hoping she would tarry yet awhile": [65535, 0], "it grieving and hoping she would tarry yet awhile longer": [65535, 0], "grieving and hoping she would tarry yet awhile longer she": [65535, 0], "and hoping she would tarry yet awhile longer she halted": [65535, 0], "hoping she would tarry yet awhile longer she halted a": [65535, 0], "she would tarry yet awhile longer she halted a moment": [65535, 0], "would tarry yet awhile longer she halted a moment on": [65535, 0], "tarry yet awhile longer she halted a moment on the": [65535, 0], "yet awhile longer she halted a moment on the steps": [65535, 0], "awhile longer she halted a moment on the steps and": [65535, 0], "longer she halted a moment on the steps and then": [65535, 0], "she halted a moment on the steps and then moved": [65535, 0], "halted a moment on the steps and then moved toward": [65535, 0], "a moment on the steps and then moved toward the": [65535, 0], "moment on the steps and then moved toward the door": [65535, 0], "on the steps and then moved toward the door tom": [65535, 0], "the steps and then moved toward the door tom heaved": [65535, 0], "steps and then moved toward the door tom heaved a": [65535, 0], "and then moved toward the door tom heaved a great": [65535, 0], "then moved toward the door tom heaved a great sigh": [65535, 0], "moved toward the door tom heaved a great sigh as": [65535, 0], "toward the door tom heaved a great sigh as she": [65535, 0], "the door tom heaved a great sigh as she put": [65535, 0], "door tom heaved a great sigh as she put her": [65535, 0], "tom heaved a great sigh as she put her foot": [65535, 0], "heaved a great sigh as she put her foot on": [65535, 0], "a great sigh as she put her foot on the": [65535, 0], "great sigh as she put her foot on the threshold": [65535, 0], "sigh as she put her foot on the threshold but": [65535, 0], "as she put her foot on the threshold but his": [65535, 0], "she put her foot on the threshold but his face": [65535, 0], "put her foot on the threshold but his face lit": [65535, 0], "her foot on the threshold but his face lit up": [65535, 0], "foot on the threshold but his face lit up right": [65535, 0], "on the threshold but his face lit up right away": [65535, 0], "the threshold but his face lit up right away for": [65535, 0], "threshold but his face lit up right away for she": [65535, 0], "but his face lit up right away for she tossed": [65535, 0], "his face lit up right away for she tossed a": [65535, 0], "face lit up right away for she tossed a pansy": [65535, 0], "lit up right away for she tossed a pansy over": [65535, 0], "up right away for she tossed a pansy over the": [65535, 0], "right away for she tossed a pansy over the fence": [65535, 0], "away for she tossed a pansy over the fence a": [65535, 0], "for she tossed a pansy over the fence a moment": [65535, 0], "she tossed a pansy over the fence a moment before": [65535, 0], "tossed a pansy over the fence a moment before she": [65535, 0], "a pansy over the fence a moment before she disappeared": [65535, 0], "pansy over the fence a moment before she disappeared the": [65535, 0], "over the fence a moment before she disappeared the boy": [65535, 0], "the fence a moment before she disappeared the boy ran": [65535, 0], "fence a moment before she disappeared the boy ran around": [65535, 0], "a moment before she disappeared the boy ran around and": [65535, 0], "moment before she disappeared the boy ran around and stopped": [65535, 0], "before she disappeared the boy ran around and stopped within": [65535, 0], "she disappeared the boy ran around and stopped within a": [65535, 0], "disappeared the boy ran around and stopped within a foot": [65535, 0], "the boy ran around and stopped within a foot or": [65535, 0], "boy ran around and stopped within a foot or two": [65535, 0], "ran around and stopped within a foot or two of": [65535, 0], "around and stopped within a foot or two of the": [65535, 0], "and stopped within a foot or two of the flower": [65535, 0], "stopped within a foot or two of the flower and": [65535, 0], "within a foot or two of the flower and then": [65535, 0], "a foot or two of the flower and then shaded": [65535, 0], "foot or two of the flower and then shaded his": [65535, 0], "or two of the flower and then shaded his eyes": [65535, 0], "two of the flower and then shaded his eyes with": [65535, 0], "of the flower and then shaded his eyes with his": [65535, 0], "the flower and then shaded his eyes with his hand": [65535, 0], "flower and then shaded his eyes with his hand and": [65535, 0], "and then shaded his eyes with his hand and began": [65535, 0], "then shaded his eyes with his hand and began to": [65535, 0], "shaded his eyes with his hand and began to look": [65535, 0], "his eyes with his hand and began to look down": [65535, 0], "eyes with his hand and began to look down street": [65535, 0], "with his hand and began to look down street as": [65535, 0], "his hand and began to look down street as if": [65535, 0], "hand and began to look down street as if he": [65535, 0], "and began to look down street as if he had": [65535, 0], "began to look down street as if he had discovered": [65535, 0], "to look down street as if he had discovered something": [65535, 0], "look down street as if he had discovered something of": [65535, 0], "down street as if he had discovered something of interest": [65535, 0], "street as if he had discovered something of interest going": [65535, 0], "as if he had discovered something of interest going on": [65535, 0], "if he had discovered something of interest going on in": [65535, 0], "he had discovered something of interest going on in that": [65535, 0], "had discovered something of interest going on in that direction": [65535, 0], "discovered something of interest going on in that direction presently": [65535, 0], "something of interest going on in that direction presently he": [65535, 0], "of interest going on in that direction presently he picked": [65535, 0], "interest going on in that direction presently he picked up": [65535, 0], "going on in that direction presently he picked up a": [65535, 0], "on in that direction presently he picked up a straw": [65535, 0], "in that direction presently he picked up a straw and": [65535, 0], "that direction presently he picked up a straw and began": [65535, 0], "direction presently he picked up a straw and began trying": [65535, 0], "presently he picked up a straw and began trying to": [65535, 0], "he picked up a straw and began trying to balance": [65535, 0], "picked up a straw and began trying to balance it": [65535, 0], "up a straw and began trying to balance it on": [65535, 0], "a straw and began trying to balance it on his": [65535, 0], "straw and began trying to balance it on his nose": [65535, 0], "and began trying to balance it on his nose with": [65535, 0], "began trying to balance it on his nose with his": [65535, 0], "trying to balance it on his nose with his head": [65535, 0], "to balance it on his nose with his head tilted": [65535, 0], "balance it on his nose with his head tilted far": [65535, 0], "it on his nose with his head tilted far back": [65535, 0], "on his nose with his head tilted far back and": [65535, 0], "his nose with his head tilted far back and as": [65535, 0], "nose with his head tilted far back and as he": [65535, 0], "with his head tilted far back and as he moved": [65535, 0], "his head tilted far back and as he moved from": [65535, 0], "head tilted far back and as he moved from side": [65535, 0], "tilted far back and as he moved from side to": [65535, 0], "far back and as he moved from side to side": [65535, 0], "back and as he moved from side to side in": [65535, 0], "and as he moved from side to side in his": [65535, 0], "as he moved from side to side in his efforts": [65535, 0], "he moved from side to side in his efforts he": [65535, 0], "moved from side to side in his efforts he edged": [65535, 0], "from side to side in his efforts he edged nearer": [65535, 0], "side to side in his efforts he edged nearer and": [65535, 0], "to side in his efforts he edged nearer and nearer": [65535, 0], "side in his efforts he edged nearer and nearer toward": [65535, 0], "in his efforts he edged nearer and nearer toward the": [65535, 0], "his efforts he edged nearer and nearer toward the pansy": [65535, 0], "efforts he edged nearer and nearer toward the pansy finally": [65535, 0], "he edged nearer and nearer toward the pansy finally his": [65535, 0], "edged nearer and nearer toward the pansy finally his bare": [65535, 0], "nearer and nearer toward the pansy finally his bare foot": [65535, 0], "and nearer toward the pansy finally his bare foot rested": [65535, 0], "nearer toward the pansy finally his bare foot rested upon": [65535, 0], "toward the pansy finally his bare foot rested upon it": [65535, 0], "the pansy finally his bare foot rested upon it his": [65535, 0], "pansy finally his bare foot rested upon it his pliant": [65535, 0], "finally his bare foot rested upon it his pliant toes": [65535, 0], "his bare foot rested upon it his pliant toes closed": [65535, 0], "bare foot rested upon it his pliant toes closed upon": [65535, 0], "foot rested upon it his pliant toes closed upon it": [65535, 0], "rested upon it his pliant toes closed upon it and": [65535, 0], "upon it his pliant toes closed upon it and he": [65535, 0], "it his pliant toes closed upon it and he hopped": [65535, 0], "his pliant toes closed upon it and he hopped away": [65535, 0], "pliant toes closed upon it and he hopped away with": [65535, 0], "toes closed upon it and he hopped away with the": [65535, 0], "closed upon it and he hopped away with the treasure": [65535, 0], "upon it and he hopped away with the treasure and": [65535, 0], "it and he hopped away with the treasure and disappeared": [65535, 0], "and he hopped away with the treasure and disappeared round": [65535, 0], "he hopped away with the treasure and disappeared round the": [65535, 0], "hopped away with the treasure and disappeared round the corner": [65535, 0], "away with the treasure and disappeared round the corner but": [65535, 0], "with the treasure and disappeared round the corner but only": [65535, 0], "the treasure and disappeared round the corner but only for": [65535, 0], "treasure and disappeared round the corner but only for a": [65535, 0], "and disappeared round the corner but only for a minute": [65535, 0], "disappeared round the corner but only for a minute only": [65535, 0], "round the corner but only for a minute only while": [65535, 0], "the corner but only for a minute only while he": [65535, 0], "corner but only for a minute only while he could": [65535, 0], "but only for a minute only while he could button": [65535, 0], "only for a minute only while he could button the": [65535, 0], "for a minute only while he could button the flower": [65535, 0], "a minute only while he could button the flower inside": [65535, 0], "minute only while he could button the flower inside his": [65535, 0], "only while he could button the flower inside his jacket": [65535, 0], "while he could button the flower inside his jacket next": [65535, 0], "he could button the flower inside his jacket next his": [65535, 0], "could button the flower inside his jacket next his heart": [65535, 0], "button the flower inside his jacket next his heart or": [65535, 0], "the flower inside his jacket next his heart or next": [65535, 0], "flower inside his jacket next his heart or next his": [65535, 0], "inside his jacket next his heart or next his stomach": [65535, 0], "his jacket next his heart or next his stomach possibly": [65535, 0], "jacket next his heart or next his stomach possibly for": [65535, 0], "next his heart or next his stomach possibly for he": [65535, 0], "his heart or next his stomach possibly for he was": [65535, 0], "heart or next his stomach possibly for he was not": [65535, 0], "or next his stomach possibly for he was not much": [65535, 0], "next his stomach possibly for he was not much posted": [65535, 0], "his stomach possibly for he was not much posted in": [65535, 0], "stomach possibly for he was not much posted in anatomy": [65535, 0], "possibly for he was not much posted in anatomy and": [65535, 0], "for he was not much posted in anatomy and not": [65535, 0], "he was not much posted in anatomy and not hypercritical": [65535, 0], "was not much posted in anatomy and not hypercritical anyway": [65535, 0], "not much posted in anatomy and not hypercritical anyway he": [65535, 0], "much posted in anatomy and not hypercritical anyway he returned": [65535, 0], "posted in anatomy and not hypercritical anyway he returned now": [65535, 0], "in anatomy and not hypercritical anyway he returned now and": [65535, 0], "anatomy and not hypercritical anyway he returned now and hung": [65535, 0], "and not hypercritical anyway he returned now and hung about": [65535, 0], "not hypercritical anyway he returned now and hung about the": [65535, 0], "hypercritical anyway he returned now and hung about the fence": [65535, 0], "anyway he returned now and hung about the fence till": [65535, 0], "he returned now and hung about the fence till nightfall": [65535, 0], "returned now and hung about the fence till nightfall showing": [65535, 0], "now and hung about the fence till nightfall showing off": [65535, 0], "and hung about the fence till nightfall showing off as": [65535, 0], "hung about the fence till nightfall showing off as before": [65535, 0], "about the fence till nightfall showing off as before but": [65535, 0], "the fence till nightfall showing off as before but the": [65535, 0], "fence till nightfall showing off as before but the girl": [65535, 0], "till nightfall showing off as before but the girl never": [65535, 0], "nightfall showing off as before but the girl never exhibited": [65535, 0], "showing off as before but the girl never exhibited herself": [65535, 0], "off as before but the girl never exhibited herself again": [65535, 0], "as before but the girl never exhibited herself again though": [65535, 0], "before but the girl never exhibited herself again though tom": [65535, 0], "but the girl never exhibited herself again though tom comforted": [65535, 0], "the girl never exhibited herself again though tom comforted himself": [65535, 0], "girl never exhibited herself again though tom comforted himself a": [65535, 0], "never exhibited herself again though tom comforted himself a little": [65535, 0], "exhibited herself again though tom comforted himself a little with": [65535, 0], "herself again though tom comforted himself a little with the": [65535, 0], "again though tom comforted himself a little with the hope": [65535, 0], "though tom comforted himself a little with the hope that": [65535, 0], "tom comforted himself a little with the hope that she": [65535, 0], "comforted himself a little with the hope that she had": [65535, 0], "himself a little with the hope that she had been": [65535, 0], "a little with the hope that she had been near": [65535, 0], "little with the hope that she had been near some": [65535, 0], "with the hope that she had been near some window": [65535, 0], "the hope that she had been near some window meantime": [65535, 0], "hope that she had been near some window meantime and": [65535, 0], "that she had been near some window meantime and been": [65535, 0], "she had been near some window meantime and been aware": [65535, 0], "had been near some window meantime and been aware of": [65535, 0], "been near some window meantime and been aware of his": [65535, 0], "near some window meantime and been aware of his attentions": [65535, 0], "some window meantime and been aware of his attentions finally": [65535, 0], "window meantime and been aware of his attentions finally he": [65535, 0], "meantime and been aware of his attentions finally he strode": [65535, 0], "and been aware of his attentions finally he strode home": [65535, 0], "been aware of his attentions finally he strode home reluctantly": [65535, 0], "aware of his attentions finally he strode home reluctantly with": [65535, 0], "of his attentions finally he strode home reluctantly with his": [65535, 0], "his attentions finally he strode home reluctantly with his poor": [65535, 0], "attentions finally he strode home reluctantly with his poor head": [65535, 0], "finally he strode home reluctantly with his poor head full": [65535, 0], "he strode home reluctantly with his poor head full of": [65535, 0], "strode home reluctantly with his poor head full of visions": [65535, 0], "home reluctantly with his poor head full of visions all": [65535, 0], "reluctantly with his poor head full of visions all through": [65535, 0], "with his poor head full of visions all through supper": [65535, 0], "his poor head full of visions all through supper his": [65535, 0], "poor head full of visions all through supper his spirits": [65535, 0], "head full of visions all through supper his spirits were": [65535, 0], "full of visions all through supper his spirits were so": [65535, 0], "of visions all through supper his spirits were so high": [65535, 0], "visions all through supper his spirits were so high that": [65535, 0], "all through supper his spirits were so high that his": [65535, 0], "through supper his spirits were so high that his aunt": [65535, 0], "supper his spirits were so high that his aunt wondered": [65535, 0], "his spirits were so high that his aunt wondered what": [65535, 0], "spirits were so high that his aunt wondered what had": [65535, 0], "were so high that his aunt wondered what had got": [65535, 0], "so high that his aunt wondered what had got into": [65535, 0], "high that his aunt wondered what had got into the": [65535, 0], "that his aunt wondered what had got into the child": [65535, 0], "his aunt wondered what had got into the child he": [65535, 0], "aunt wondered what had got into the child he took": [65535, 0], "wondered what had got into the child he took a": [65535, 0], "what had got into the child he took a good": [65535, 0], "had got into the child he took a good scolding": [65535, 0], "got into the child he took a good scolding about": [65535, 0], "into the child he took a good scolding about clodding": [65535, 0], "the child he took a good scolding about clodding sid": [65535, 0], "child he took a good scolding about clodding sid and": [65535, 0], "he took a good scolding about clodding sid and did": [65535, 0], "took a good scolding about clodding sid and did not": [65535, 0], "a good scolding about clodding sid and did not seem": [65535, 0], "good scolding about clodding sid and did not seem to": [65535, 0], "scolding about clodding sid and did not seem to mind": [65535, 0], "about clodding sid and did not seem to mind it": [65535, 0], "clodding sid and did not seem to mind it in": [65535, 0], "sid and did not seem to mind it in the": [65535, 0], "and did not seem to mind it in the least": [65535, 0], "did not seem to mind it in the least he": [65535, 0], "not seem to mind it in the least he tried": [65535, 0], "seem to mind it in the least he tried to": [65535, 0], "to mind it in the least he tried to steal": [65535, 0], "mind it in the least he tried to steal sugar": [65535, 0], "it in the least he tried to steal sugar under": [65535, 0], "in the least he tried to steal sugar under his": [65535, 0], "the least he tried to steal sugar under his aunt's": [65535, 0], "least he tried to steal sugar under his aunt's very": [65535, 0], "he tried to steal sugar under his aunt's very nose": [65535, 0], "tried to steal sugar under his aunt's very nose and": [65535, 0], "to steal sugar under his aunt's very nose and got": [65535, 0], "steal sugar under his aunt's very nose and got his": [65535, 0], "sugar under his aunt's very nose and got his knuckles": [65535, 0], "under his aunt's very nose and got his knuckles rapped": [65535, 0], "his aunt's very nose and got his knuckles rapped for": [65535, 0], "aunt's very nose and got his knuckles rapped for it": [65535, 0], "very nose and got his knuckles rapped for it he": [65535, 0], "nose and got his knuckles rapped for it he said": [65535, 0], "and got his knuckles rapped for it he said aunt": [65535, 0], "got his knuckles rapped for it he said aunt you": [65535, 0], "his knuckles rapped for it he said aunt you don't": [65535, 0], "knuckles rapped for it he said aunt you don't whack": [65535, 0], "rapped for it he said aunt you don't whack sid": [65535, 0], "for it he said aunt you don't whack sid when": [65535, 0], "it he said aunt you don't whack sid when he": [65535, 0], "he said aunt you don't whack sid when he takes": [65535, 0], "said aunt you don't whack sid when he takes it": [65535, 0], "aunt you don't whack sid when he takes it well": [65535, 0], "you don't whack sid when he takes it well sid": [65535, 0], "don't whack sid when he takes it well sid don't": [65535, 0], "whack sid when he takes it well sid don't torment": [65535, 0], "sid when he takes it well sid don't torment a": [65535, 0], "when he takes it well sid don't torment a body": [65535, 0], "he takes it well sid don't torment a body the": [65535, 0], "takes it well sid don't torment a body the way": [65535, 0], "it well sid don't torment a body the way you": [65535, 0], "well sid don't torment a body the way you do": [65535, 0], "sid don't torment a body the way you do you'd": [65535, 0], "don't torment a body the way you do you'd be": [65535, 0], "torment a body the way you do you'd be always": [65535, 0], "a body the way you do you'd be always into": [65535, 0], "body the way you do you'd be always into that": [65535, 0], "the way you do you'd be always into that sugar": [65535, 0], "way you do you'd be always into that sugar if": [65535, 0], "you do you'd be always into that sugar if i": [65535, 0], "do you'd be always into that sugar if i warn't": [65535, 0], "you'd be always into that sugar if i warn't watching": [65535, 0], "be always into that sugar if i warn't watching you": [65535, 0], "always into that sugar if i warn't watching you presently": [65535, 0], "into that sugar if i warn't watching you presently she": [65535, 0], "that sugar if i warn't watching you presently she stepped": [65535, 0], "sugar if i warn't watching you presently she stepped into": [65535, 0], "if i warn't watching you presently she stepped into the": [65535, 0], "i warn't watching you presently she stepped into the kitchen": [65535, 0], "warn't watching you presently she stepped into the kitchen and": [65535, 0], "watching you presently she stepped into the kitchen and sid": [65535, 0], "you presently she stepped into the kitchen and sid happy": [65535, 0], "presently she stepped into the kitchen and sid happy in": [65535, 0], "she stepped into the kitchen and sid happy in his": [65535, 0], "stepped into the kitchen and sid happy in his immunity": [65535, 0], "into the kitchen and sid happy in his immunity reached": [65535, 0], "the kitchen and sid happy in his immunity reached for": [65535, 0], "kitchen and sid happy in his immunity reached for the": [65535, 0], "and sid happy in his immunity reached for the sugar": [65535, 0], "sid happy in his immunity reached for the sugar bowl": [65535, 0], "happy in his immunity reached for the sugar bowl a": [65535, 0], "in his immunity reached for the sugar bowl a sort": [65535, 0], "his immunity reached for the sugar bowl a sort of": [65535, 0], "immunity reached for the sugar bowl a sort of glorying": [65535, 0], "reached for the sugar bowl a sort of glorying over": [65535, 0], "for the sugar bowl a sort of glorying over tom": [65535, 0], "the sugar bowl a sort of glorying over tom which": [65535, 0], "sugar bowl a sort of glorying over tom which was": [65535, 0], "bowl a sort of glorying over tom which was well": [65535, 0], "a sort of glorying over tom which was well nigh": [65535, 0], "sort of glorying over tom which was well nigh unbearable": [65535, 0], "of glorying over tom which was well nigh unbearable but": [65535, 0], "glorying over tom which was well nigh unbearable but sid's": [65535, 0], "over tom which was well nigh unbearable but sid's fingers": [65535, 0], "tom which was well nigh unbearable but sid's fingers slipped": [65535, 0], "which was well nigh unbearable but sid's fingers slipped and": [65535, 0], "was well nigh unbearable but sid's fingers slipped and the": [65535, 0], "well nigh unbearable but sid's fingers slipped and the bowl": [65535, 0], "nigh unbearable but sid's fingers slipped and the bowl dropped": [65535, 0], "unbearable but sid's fingers slipped and the bowl dropped and": [65535, 0], "but sid's fingers slipped and the bowl dropped and broke": [65535, 0], "sid's fingers slipped and the bowl dropped and broke tom": [65535, 0], "fingers slipped and the bowl dropped and broke tom was": [65535, 0], "slipped and the bowl dropped and broke tom was in": [65535, 0], "and the bowl dropped and broke tom was in ecstasies": [65535, 0], "the bowl dropped and broke tom was in ecstasies in": [65535, 0], "bowl dropped and broke tom was in ecstasies in such": [65535, 0], "dropped and broke tom was in ecstasies in such ecstasies": [65535, 0], "and broke tom was in ecstasies in such ecstasies that": [65535, 0], "broke tom was in ecstasies in such ecstasies that he": [65535, 0], "tom was in ecstasies in such ecstasies that he even": [65535, 0], "was in ecstasies in such ecstasies that he even controlled": [65535, 0], "in ecstasies in such ecstasies that he even controlled his": [65535, 0], "ecstasies in such ecstasies that he even controlled his tongue": [65535, 0], "in such ecstasies that he even controlled his tongue and": [65535, 0], "such ecstasies that he even controlled his tongue and was": [65535, 0], "ecstasies that he even controlled his tongue and was silent": [65535, 0], "that he even controlled his tongue and was silent he": [65535, 0], "he even controlled his tongue and was silent he said": [65535, 0], "even controlled his tongue and was silent he said to": [65535, 0], "controlled his tongue and was silent he said to himself": [65535, 0], "his tongue and was silent he said to himself that": [65535, 0], "tongue and was silent he said to himself that he": [65535, 0], "and was silent he said to himself that he would": [65535, 0], "was silent he said to himself that he would not": [65535, 0], "silent he said to himself that he would not speak": [65535, 0], "he said to himself that he would not speak a": [65535, 0], "said to himself that he would not speak a word": [65535, 0], "to himself that he would not speak a word even": [65535, 0], "himself that he would not speak a word even when": [65535, 0], "that he would not speak a word even when his": [65535, 0], "he would not speak a word even when his aunt": [65535, 0], "would not speak a word even when his aunt came": [65535, 0], "not speak a word even when his aunt came in": [65535, 0], "speak a word even when his aunt came in but": [65535, 0], "a word even when his aunt came in but would": [65535, 0], "word even when his aunt came in but would sit": [65535, 0], "even when his aunt came in but would sit perfectly": [65535, 0], "when his aunt came in but would sit perfectly still": [65535, 0], "his aunt came in but would sit perfectly still till": [65535, 0], "aunt came in but would sit perfectly still till she": [65535, 0], "came in but would sit perfectly still till she asked": [65535, 0], "in but would sit perfectly still till she asked who": [65535, 0], "but would sit perfectly still till she asked who did": [65535, 0], "would sit perfectly still till she asked who did the": [65535, 0], "sit perfectly still till she asked who did the mischief": [65535, 0], "perfectly still till she asked who did the mischief and": [65535, 0], "still till she asked who did the mischief and then": [65535, 0], "till she asked who did the mischief and then he": [65535, 0], "she asked who did the mischief and then he would": [65535, 0], "asked who did the mischief and then he would tell": [65535, 0], "who did the mischief and then he would tell and": [65535, 0], "did the mischief and then he would tell and there": [65535, 0], "the mischief and then he would tell and there would": [65535, 0], "mischief and then he would tell and there would be": [65535, 0], "and then he would tell and there would be nothing": [65535, 0], "then he would tell and there would be nothing so": [65535, 0], "he would tell and there would be nothing so good": [65535, 0], "would tell and there would be nothing so good in": [65535, 0], "tell and there would be nothing so good in the": [65535, 0], "and there would be nothing so good in the world": [65535, 0], "there would be nothing so good in the world as": [65535, 0], "would be nothing so good in the world as to": [65535, 0], "be nothing so good in the world as to see": [65535, 0], "nothing so good in the world as to see that": [65535, 0], "so good in the world as to see that pet": [65535, 0], "good in the world as to see that pet model": [65535, 0], "in the world as to see that pet model catch": [65535, 0], "the world as to see that pet model catch it": [65535, 0], "world as to see that pet model catch it he": [65535, 0], "as to see that pet model catch it he was": [65535, 0], "to see that pet model catch it he was so": [65535, 0], "see that pet model catch it he was so brimful": [65535, 0], "that pet model catch it he was so brimful of": [65535, 0], "pet model catch it he was so brimful of exultation": [65535, 0], "model catch it he was so brimful of exultation that": [65535, 0], "catch it he was so brimful of exultation that he": [65535, 0], "it he was so brimful of exultation that he could": [65535, 0], "he was so brimful of exultation that he could hardly": [65535, 0], "was so brimful of exultation that he could hardly hold": [65535, 0], "so brimful of exultation that he could hardly hold himself": [65535, 0], "brimful of exultation that he could hardly hold himself when": [65535, 0], "of exultation that he could hardly hold himself when the": [65535, 0], "exultation that he could hardly hold himself when the old": [65535, 0], "that he could hardly hold himself when the old lady": [65535, 0], "he could hardly hold himself when the old lady came": [65535, 0], "could hardly hold himself when the old lady came back": [65535, 0], "hardly hold himself when the old lady came back and": [65535, 0], "hold himself when the old lady came back and stood": [65535, 0], "himself when the old lady came back and stood above": [65535, 0], "when the old lady came back and stood above the": [65535, 0], "the old lady came back and stood above the wreck": [65535, 0], "old lady came back and stood above the wreck discharging": [65535, 0], "lady came back and stood above the wreck discharging lightnings": [65535, 0], "came back and stood above the wreck discharging lightnings of": [65535, 0], "back and stood above the wreck discharging lightnings of wrath": [65535, 0], "and stood above the wreck discharging lightnings of wrath from": [65535, 0], "stood above the wreck discharging lightnings of wrath from over": [65535, 0], "above the wreck discharging lightnings of wrath from over her": [65535, 0], "the wreck discharging lightnings of wrath from over her spectacles": [65535, 0], "wreck discharging lightnings of wrath from over her spectacles he": [65535, 0], "discharging lightnings of wrath from over her spectacles he said": [65535, 0], "lightnings of wrath from over her spectacles he said to": [65535, 0], "of wrath from over her spectacles he said to himself": [65535, 0], "wrath from over her spectacles he said to himself now": [65535, 0], "from over her spectacles he said to himself now it's": [65535, 0], "over her spectacles he said to himself now it's coming": [65535, 0], "her spectacles he said to himself now it's coming and": [65535, 0], "spectacles he said to himself now it's coming and the": [65535, 0], "he said to himself now it's coming and the next": [65535, 0], "said to himself now it's coming and the next instant": [65535, 0], "to himself now it's coming and the next instant he": [65535, 0], "himself now it's coming and the next instant he was": [65535, 0], "now it's coming and the next instant he was sprawling": [65535, 0], "it's coming and the next instant he was sprawling on": [65535, 0], "coming and the next instant he was sprawling on the": [65535, 0], "and the next instant he was sprawling on the floor": [65535, 0], "the next instant he was sprawling on the floor the": [65535, 0], "next instant he was sprawling on the floor the potent": [65535, 0], "instant he was sprawling on the floor the potent palm": [65535, 0], "he was sprawling on the floor the potent palm was": [65535, 0], "was sprawling on the floor the potent palm was uplifted": [65535, 0], "sprawling on the floor the potent palm was uplifted to": [65535, 0], "on the floor the potent palm was uplifted to strike": [65535, 0], "the floor the potent palm was uplifted to strike again": [65535, 0], "floor the potent palm was uplifted to strike again when": [65535, 0], "the potent palm was uplifted to strike again when tom": [65535, 0], "potent palm was uplifted to strike again when tom cried": [65535, 0], "palm was uplifted to strike again when tom cried out": [65535, 0], "was uplifted to strike again when tom cried out hold": [65535, 0], "uplifted to strike again when tom cried out hold on": [65535, 0], "to strike again when tom cried out hold on now": [65535, 0], "strike again when tom cried out hold on now what": [65535, 0], "again when tom cried out hold on now what 'er": [65535, 0], "when tom cried out hold on now what 'er you": [65535, 0], "tom cried out hold on now what 'er you belting": [65535, 0], "cried out hold on now what 'er you belting me": [65535, 0], "out hold on now what 'er you belting me for": [65535, 0], "hold on now what 'er you belting me for sid": [65535, 0], "on now what 'er you belting me for sid broke": [65535, 0], "now what 'er you belting me for sid broke it": [65535, 0], "what 'er you belting me for sid broke it aunt": [65535, 0], "'er you belting me for sid broke it aunt polly": [65535, 0], "you belting me for sid broke it aunt polly paused": [65535, 0], "belting me for sid broke it aunt polly paused perplexed": [65535, 0], "me for sid broke it aunt polly paused perplexed and": [65535, 0], "for sid broke it aunt polly paused perplexed and tom": [65535, 0], "sid broke it aunt polly paused perplexed and tom looked": [65535, 0], "broke it aunt polly paused perplexed and tom looked for": [65535, 0], "it aunt polly paused perplexed and tom looked for healing": [65535, 0], "aunt polly paused perplexed and tom looked for healing pity": [65535, 0], "polly paused perplexed and tom looked for healing pity but": [65535, 0], "paused perplexed and tom looked for healing pity but when": [65535, 0], "perplexed and tom looked for healing pity but when she": [65535, 0], "and tom looked for healing pity but when she got": [65535, 0], "tom looked for healing pity but when she got her": [65535, 0], "looked for healing pity but when she got her tongue": [65535, 0], "for healing pity but when she got her tongue again": [65535, 0], "healing pity but when she got her tongue again she": [65535, 0], "pity but when she got her tongue again she only": [65535, 0], "but when she got her tongue again she only said": [65535, 0], "when she got her tongue again she only said umf": [65535, 0], "she got her tongue again she only said umf well": [65535, 0], "got her tongue again she only said umf well you": [65535, 0], "her tongue again she only said umf well you didn't": [65535, 0], "tongue again she only said umf well you didn't get": [65535, 0], "again she only said umf well you didn't get a": [65535, 0], "she only said umf well you didn't get a lick": [65535, 0], "only said umf well you didn't get a lick amiss": [65535, 0], "said umf well you didn't get a lick amiss i": [65535, 0], "umf well you didn't get a lick amiss i reckon": [65535, 0], "well you didn't get a lick amiss i reckon you": [65535, 0], "you didn't get a lick amiss i reckon you been": [65535, 0], "didn't get a lick amiss i reckon you been into": [65535, 0], "get a lick amiss i reckon you been into some": [65535, 0], "a lick amiss i reckon you been into some other": [65535, 0], "lick amiss i reckon you been into some other audacious": [65535, 0], "amiss i reckon you been into some other audacious mischief": [65535, 0], "i reckon you been into some other audacious mischief when": [65535, 0], "reckon you been into some other audacious mischief when i": [65535, 0], "you been into some other audacious mischief when i wasn't": [65535, 0], "been into some other audacious mischief when i wasn't around": [65535, 0], "into some other audacious mischief when i wasn't around like": [65535, 0], "some other audacious mischief when i wasn't around like enough": [65535, 0], "other audacious mischief when i wasn't around like enough then": [65535, 0], "audacious mischief when i wasn't around like enough then her": [65535, 0], "mischief when i wasn't around like enough then her conscience": [65535, 0], "when i wasn't around like enough then her conscience reproached": [65535, 0], "i wasn't around like enough then her conscience reproached her": [65535, 0], "wasn't around like enough then her conscience reproached her and": [65535, 0], "around like enough then her conscience reproached her and she": [65535, 0], "like enough then her conscience reproached her and she yearned": [65535, 0], "enough then her conscience reproached her and she yearned to": [65535, 0], "then her conscience reproached her and she yearned to say": [65535, 0], "her conscience reproached her and she yearned to say something": [65535, 0], "conscience reproached her and she yearned to say something kind": [65535, 0], "reproached her and she yearned to say something kind and": [65535, 0], "her and she yearned to say something kind and loving": [65535, 0], "and she yearned to say something kind and loving but": [65535, 0], "she yearned to say something kind and loving but she": [65535, 0], "yearned to say something kind and loving but she judged": [65535, 0], "to say something kind and loving but she judged that": [65535, 0], "say something kind and loving but she judged that this": [65535, 0], "something kind and loving but she judged that this would": [65535, 0], "kind and loving but she judged that this would be": [65535, 0], "and loving but she judged that this would be construed": [65535, 0], "loving but she judged that this would be construed into": [65535, 0], "but she judged that this would be construed into a": [65535, 0], "she judged that this would be construed into a confession": [65535, 0], "judged that this would be construed into a confession that": [65535, 0], "that this would be construed into a confession that she": [65535, 0], "this would be construed into a confession that she had": [65535, 0], "would be construed into a confession that she had been": [65535, 0], "be construed into a confession that she had been in": [65535, 0], "construed into a confession that she had been in the": [65535, 0], "into a confession that she had been in the wrong": [65535, 0], "a confession that she had been in the wrong and": [65535, 0], "confession that she had been in the wrong and discipline": [65535, 0], "that she had been in the wrong and discipline forbade": [65535, 0], "she had been in the wrong and discipline forbade that": [65535, 0], "had been in the wrong and discipline forbade that so": [65535, 0], "been in the wrong and discipline forbade that so she": [65535, 0], "in the wrong and discipline forbade that so she kept": [65535, 0], "the wrong and discipline forbade that so she kept silence": [65535, 0], "wrong and discipline forbade that so she kept silence and": [65535, 0], "and discipline forbade that so she kept silence and went": [65535, 0], "discipline forbade that so she kept silence and went about": [65535, 0], "forbade that so she kept silence and went about her": [65535, 0], "that so she kept silence and went about her affairs": [65535, 0], "so she kept silence and went about her affairs with": [65535, 0], "she kept silence and went about her affairs with a": [65535, 0], "kept silence and went about her affairs with a troubled": [65535, 0], "silence and went about her affairs with a troubled heart": [65535, 0], "and went about her affairs with a troubled heart tom": [65535, 0], "went about her affairs with a troubled heart tom sulked": [65535, 0], "about her affairs with a troubled heart tom sulked in": [65535, 0], "her affairs with a troubled heart tom sulked in a": [65535, 0], "affairs with a troubled heart tom sulked in a corner": [65535, 0], "with a troubled heart tom sulked in a corner and": [65535, 0], "a troubled heart tom sulked in a corner and exalted": [65535, 0], "troubled heart tom sulked in a corner and exalted his": [65535, 0], "heart tom sulked in a corner and exalted his woes": [65535, 0], "tom sulked in a corner and exalted his woes he": [65535, 0], "sulked in a corner and exalted his woes he knew": [65535, 0], "in a corner and exalted his woes he knew that": [65535, 0], "a corner and exalted his woes he knew that in": [65535, 0], "corner and exalted his woes he knew that in her": [65535, 0], "and exalted his woes he knew that in her heart": [65535, 0], "exalted his woes he knew that in her heart his": [65535, 0], "his woes he knew that in her heart his aunt": [65535, 0], "woes he knew that in her heart his aunt was": [65535, 0], "he knew that in her heart his aunt was on": [65535, 0], "knew that in her heart his aunt was on her": [65535, 0], "that in her heart his aunt was on her knees": [65535, 0], "in her heart his aunt was on her knees to": [65535, 0], "her heart his aunt was on her knees to him": [65535, 0], "heart his aunt was on her knees to him and": [65535, 0], "his aunt was on her knees to him and he": [65535, 0], "aunt was on her knees to him and he was": [65535, 0], "was on her knees to him and he was morosely": [65535, 0], "on her knees to him and he was morosely gratified": [65535, 0], "her knees to him and he was morosely gratified by": [65535, 0], "knees to him and he was morosely gratified by the": [65535, 0], "to him and he was morosely gratified by the consciousness": [65535, 0], "him and he was morosely gratified by the consciousness of": [65535, 0], "and he was morosely gratified by the consciousness of it": [65535, 0], "he was morosely gratified by the consciousness of it he": [65535, 0], "was morosely gratified by the consciousness of it he would": [65535, 0], "morosely gratified by the consciousness of it he would hang": [65535, 0], "gratified by the consciousness of it he would hang out": [65535, 0], "by the consciousness of it he would hang out no": [65535, 0], "the consciousness of it he would hang out no signals": [65535, 0], "consciousness of it he would hang out no signals he": [65535, 0], "of it he would hang out no signals he would": [65535, 0], "it he would hang out no signals he would take": [65535, 0], "he would hang out no signals he would take notice": [65535, 0], "would hang out no signals he would take notice of": [65535, 0], "hang out no signals he would take notice of none": [65535, 0], "out no signals he would take notice of none he": [65535, 0], "no signals he would take notice of none he knew": [65535, 0], "signals he would take notice of none he knew that": [65535, 0], "he would take notice of none he knew that a": [65535, 0], "would take notice of none he knew that a yearning": [65535, 0], "take notice of none he knew that a yearning glance": [65535, 0], "notice of none he knew that a yearning glance fell": [65535, 0], "of none he knew that a yearning glance fell upon": [65535, 0], "none he knew that a yearning glance fell upon him": [65535, 0], "he knew that a yearning glance fell upon him now": [65535, 0], "knew that a yearning glance fell upon him now and": [65535, 0], "that a yearning glance fell upon him now and then": [65535, 0], "a yearning glance fell upon him now and then through": [65535, 0], "yearning glance fell upon him now and then through a": [65535, 0], "glance fell upon him now and then through a film": [65535, 0], "fell upon him now and then through a film of": [65535, 0], "upon him now and then through a film of tears": [65535, 0], "him now and then through a film of tears but": [65535, 0], "now and then through a film of tears but he": [65535, 0], "and then through a film of tears but he refused": [65535, 0], "then through a film of tears but he refused recognition": [65535, 0], "through a film of tears but he refused recognition of": [65535, 0], "a film of tears but he refused recognition of it": [65535, 0], "film of tears but he refused recognition of it he": [65535, 0], "of tears but he refused recognition of it he pictured": [65535, 0], "tears but he refused recognition of it he pictured himself": [65535, 0], "but he refused recognition of it he pictured himself lying": [65535, 0], "he refused recognition of it he pictured himself lying sick": [65535, 0], "refused recognition of it he pictured himself lying sick unto": [65535, 0], "recognition of it he pictured himself lying sick unto death": [65535, 0], "of it he pictured himself lying sick unto death and": [65535, 0], "it he pictured himself lying sick unto death and his": [65535, 0], "he pictured himself lying sick unto death and his aunt": [65535, 0], "pictured himself lying sick unto death and his aunt bending": [65535, 0], "himself lying sick unto death and his aunt bending over": [65535, 0], "lying sick unto death and his aunt bending over him": [65535, 0], "sick unto death and his aunt bending over him beseeching": [65535, 0], "unto death and his aunt bending over him beseeching one": [65535, 0], "death and his aunt bending over him beseeching one little": [65535, 0], "and his aunt bending over him beseeching one little forgiving": [65535, 0], "his aunt bending over him beseeching one little forgiving word": [65535, 0], "aunt bending over him beseeching one little forgiving word but": [65535, 0], "bending over him beseeching one little forgiving word but he": [65535, 0], "over him beseeching one little forgiving word but he would": [65535, 0], "him beseeching one little forgiving word but he would turn": [65535, 0], "beseeching one little forgiving word but he would turn his": [65535, 0], "one little forgiving word but he would turn his face": [65535, 0], "little forgiving word but he would turn his face to": [65535, 0], "forgiving word but he would turn his face to the": [65535, 0], "word but he would turn his face to the wall": [65535, 0], "but he would turn his face to the wall and": [65535, 0], "he would turn his face to the wall and die": [65535, 0], "would turn his face to the wall and die with": [65535, 0], "turn his face to the wall and die with that": [65535, 0], "his face to the wall and die with that word": [65535, 0], "face to the wall and die with that word unsaid": [65535, 0], "to the wall and die with that word unsaid ah": [65535, 0], "the wall and die with that word unsaid ah how": [65535, 0], "wall and die with that word unsaid ah how would": [65535, 0], "and die with that word unsaid ah how would she": [65535, 0], "die with that word unsaid ah how would she feel": [65535, 0], "with that word unsaid ah how would she feel then": [65535, 0], "that word unsaid ah how would she feel then and": [65535, 0], "word unsaid ah how would she feel then and he": [65535, 0], "unsaid ah how would she feel then and he pictured": [65535, 0], "ah how would she feel then and he pictured himself": [65535, 0], "how would she feel then and he pictured himself brought": [65535, 0], "would she feel then and he pictured himself brought home": [65535, 0], "she feel then and he pictured himself brought home from": [65535, 0], "feel then and he pictured himself brought home from the": [65535, 0], "then and he pictured himself brought home from the river": [65535, 0], "and he pictured himself brought home from the river dead": [65535, 0], "he pictured himself brought home from the river dead with": [65535, 0], "pictured himself brought home from the river dead with his": [65535, 0], "himself brought home from the river dead with his curls": [65535, 0], "brought home from the river dead with his curls all": [65535, 0], "home from the river dead with his curls all wet": [65535, 0], "from the river dead with his curls all wet and": [65535, 0], "the river dead with his curls all wet and his": [65535, 0], "river dead with his curls all wet and his sore": [65535, 0], "dead with his curls all wet and his sore heart": [65535, 0], "with his curls all wet and his sore heart at": [65535, 0], "his curls all wet and his sore heart at rest": [65535, 0], "curls all wet and his sore heart at rest how": [65535, 0], "all wet and his sore heart at rest how she": [65535, 0], "wet and his sore heart at rest how she would": [65535, 0], "and his sore heart at rest how she would throw": [65535, 0], "his sore heart at rest how she would throw herself": [65535, 0], "sore heart at rest how she would throw herself upon": [65535, 0], "heart at rest how she would throw herself upon him": [65535, 0], "at rest how she would throw herself upon him and": [65535, 0], "rest how she would throw herself upon him and how": [65535, 0], "how she would throw herself upon him and how her": [65535, 0], "she would throw herself upon him and how her tears": [65535, 0], "would throw herself upon him and how her tears would": [65535, 0], "throw herself upon him and how her tears would fall": [65535, 0], "herself upon him and how her tears would fall like": [65535, 0], "upon him and how her tears would fall like rain": [65535, 0], "him and how her tears would fall like rain and": [65535, 0], "and how her tears would fall like rain and her": [65535, 0], "how her tears would fall like rain and her lips": [65535, 0], "her tears would fall like rain and her lips pray": [65535, 0], "tears would fall like rain and her lips pray god": [65535, 0], "would fall like rain and her lips pray god to": [65535, 0], "fall like rain and her lips pray god to give": [65535, 0], "like rain and her lips pray god to give her": [65535, 0], "rain and her lips pray god to give her back": [65535, 0], "and her lips pray god to give her back her": [65535, 0], "her lips pray god to give her back her boy": [65535, 0], "lips pray god to give her back her boy and": [65535, 0], "pray god to give her back her boy and she": [65535, 0], "god to give her back her boy and she would": [65535, 0], "to give her back her boy and she would never": [65535, 0], "give her back her boy and she would never never": [65535, 0], "her back her boy and she would never never abuse": [65535, 0], "back her boy and she would never never abuse him": [65535, 0], "her boy and she would never never abuse him any": [65535, 0], "boy and she would never never abuse him any more": [65535, 0], "and she would never never abuse him any more but": [65535, 0], "she would never never abuse him any more but he": [65535, 0], "would never never abuse him any more but he would": [65535, 0], "never never abuse him any more but he would lie": [65535, 0], "never abuse him any more but he would lie there": [65535, 0], "abuse him any more but he would lie there cold": [65535, 0], "him any more but he would lie there cold and": [65535, 0], "any more but he would lie there cold and white": [65535, 0], "more but he would lie there cold and white and": [65535, 0], "but he would lie there cold and white and make": [65535, 0], "he would lie there cold and white and make no": [65535, 0], "would lie there cold and white and make no sign": [65535, 0], "lie there cold and white and make no sign a": [65535, 0], "there cold and white and make no sign a poor": [65535, 0], "cold and white and make no sign a poor little": [65535, 0], "and white and make no sign a poor little sufferer": [65535, 0], "white and make no sign a poor little sufferer whose": [65535, 0], "and make no sign a poor little sufferer whose griefs": [65535, 0], "make no sign a poor little sufferer whose griefs were": [65535, 0], "no sign a poor little sufferer whose griefs were at": [65535, 0], "sign a poor little sufferer whose griefs were at an": [65535, 0], "a poor little sufferer whose griefs were at an end": [65535, 0], "poor little sufferer whose griefs were at an end he": [65535, 0], "little sufferer whose griefs were at an end he so": [65535, 0], "sufferer whose griefs were at an end he so worked": [65535, 0], "whose griefs were at an end he so worked upon": [65535, 0], "griefs were at an end he so worked upon his": [65535, 0], "were at an end he so worked upon his feelings": [65535, 0], "at an end he so worked upon his feelings with": [65535, 0], "an end he so worked upon his feelings with the": [65535, 0], "end he so worked upon his feelings with the pathos": [65535, 0], "he so worked upon his feelings with the pathos of": [65535, 0], "so worked upon his feelings with the pathos of these": [65535, 0], "worked upon his feelings with the pathos of these dreams": [65535, 0], "upon his feelings with the pathos of these dreams that": [65535, 0], "his feelings with the pathos of these dreams that he": [65535, 0], "feelings with the pathos of these dreams that he had": [65535, 0], "with the pathos of these dreams that he had to": [65535, 0], "the pathos of these dreams that he had to keep": [65535, 0], "pathos of these dreams that he had to keep swallowing": [65535, 0], "of these dreams that he had to keep swallowing he": [65535, 0], "these dreams that he had to keep swallowing he was": [65535, 0], "dreams that he had to keep swallowing he was so": [65535, 0], "that he had to keep swallowing he was so like": [65535, 0], "he had to keep swallowing he was so like to": [65535, 0], "had to keep swallowing he was so like to choke": [65535, 0], "to keep swallowing he was so like to choke and": [65535, 0], "keep swallowing he was so like to choke and his": [65535, 0], "swallowing he was so like to choke and his eyes": [65535, 0], "he was so like to choke and his eyes swam": [65535, 0], "was so like to choke and his eyes swam in": [65535, 0], "so like to choke and his eyes swam in a": [65535, 0], "like to choke and his eyes swam in a blur": [65535, 0], "to choke and his eyes swam in a blur of": [65535, 0], "choke and his eyes swam in a blur of water": [65535, 0], "and his eyes swam in a blur of water which": [65535, 0], "his eyes swam in a blur of water which overflowed": [65535, 0], "eyes swam in a blur of water which overflowed when": [65535, 0], "swam in a blur of water which overflowed when he": [65535, 0], "in a blur of water which overflowed when he winked": [65535, 0], "a blur of water which overflowed when he winked and": [65535, 0], "blur of water which overflowed when he winked and ran": [65535, 0], "of water which overflowed when he winked and ran down": [65535, 0], "water which overflowed when he winked and ran down and": [65535, 0], "which overflowed when he winked and ran down and trickled": [65535, 0], "overflowed when he winked and ran down and trickled from": [65535, 0], "when he winked and ran down and trickled from the": [65535, 0], "he winked and ran down and trickled from the end": [65535, 0], "winked and ran down and trickled from the end of": [65535, 0], "and ran down and trickled from the end of his": [65535, 0], "ran down and trickled from the end of his nose": [65535, 0], "down and trickled from the end of his nose and": [65535, 0], "and trickled from the end of his nose and such": [65535, 0], "trickled from the end of his nose and such a": [65535, 0], "from the end of his nose and such a luxury": [65535, 0], "the end of his nose and such a luxury to": [65535, 0], "end of his nose and such a luxury to him": [65535, 0], "of his nose and such a luxury to him was": [65535, 0], "his nose and such a luxury to him was this": [65535, 0], "nose and such a luxury to him was this petting": [65535, 0], "and such a luxury to him was this petting of": [65535, 0], "such a luxury to him was this petting of his": [65535, 0], "a luxury to him was this petting of his sorrows": [65535, 0], "luxury to him was this petting of his sorrows that": [65535, 0], "to him was this petting of his sorrows that he": [65535, 0], "him was this petting of his sorrows that he could": [65535, 0], "was this petting of his sorrows that he could not": [65535, 0], "this petting of his sorrows that he could not bear": [65535, 0], "petting of his sorrows that he could not bear to": [65535, 0], "of his sorrows that he could not bear to have": [65535, 0], "his sorrows that he could not bear to have any": [65535, 0], "sorrows that he could not bear to have any worldly": [65535, 0], "that he could not bear to have any worldly cheeriness": [65535, 0], "he could not bear to have any worldly cheeriness or": [65535, 0], "could not bear to have any worldly cheeriness or any": [65535, 0], "not bear to have any worldly cheeriness or any grating": [65535, 0], "bear to have any worldly cheeriness or any grating delight": [65535, 0], "to have any worldly cheeriness or any grating delight intrude": [65535, 0], "have any worldly cheeriness or any grating delight intrude upon": [65535, 0], "any worldly cheeriness or any grating delight intrude upon it": [65535, 0], "worldly cheeriness or any grating delight intrude upon it it": [65535, 0], "cheeriness or any grating delight intrude upon it it was": [65535, 0], "or any grating delight intrude upon it it was too": [65535, 0], "any grating delight intrude upon it it was too sacred": [65535, 0], "grating delight intrude upon it it was too sacred for": [65535, 0], "delight intrude upon it it was too sacred for such": [65535, 0], "intrude upon it it was too sacred for such contact": [65535, 0], "upon it it was too sacred for such contact and": [65535, 0], "it it was too sacred for such contact and so": [65535, 0], "it was too sacred for such contact and so presently": [65535, 0], "was too sacred for such contact and so presently when": [65535, 0], "too sacred for such contact and so presently when his": [65535, 0], "sacred for such contact and so presently when his cousin": [65535, 0], "for such contact and so presently when his cousin mary": [65535, 0], "such contact and so presently when his cousin mary danced": [65535, 0], "contact and so presently when his cousin mary danced in": [65535, 0], "and so presently when his cousin mary danced in all": [65535, 0], "so presently when his cousin mary danced in all alive": [65535, 0], "presently when his cousin mary danced in all alive with": [65535, 0], "when his cousin mary danced in all alive with the": [65535, 0], "his cousin mary danced in all alive with the joy": [65535, 0], "cousin mary danced in all alive with the joy of": [65535, 0], "mary danced in all alive with the joy of seeing": [65535, 0], "danced in all alive with the joy of seeing home": [65535, 0], "in all alive with the joy of seeing home again": [65535, 0], "all alive with the joy of seeing home again after": [65535, 0], "alive with the joy of seeing home again after an": [65535, 0], "with the joy of seeing home again after an age": [65535, 0], "the joy of seeing home again after an age long": [65535, 0], "joy of seeing home again after an age long visit": [65535, 0], "of seeing home again after an age long visit of": [65535, 0], "seeing home again after an age long visit of one": [65535, 0], "home again after an age long visit of one week": [65535, 0], "again after an age long visit of one week to": [65535, 0], "after an age long visit of one week to the": [65535, 0], "an age long visit of one week to the country": [65535, 0], "age long visit of one week to the country he": [65535, 0], "long visit of one week to the country he got": [65535, 0], "visit of one week to the country he got up": [65535, 0], "of one week to the country he got up and": [65535, 0], "one week to the country he got up and moved": [65535, 0], "week to the country he got up and moved in": [65535, 0], "to the country he got up and moved in clouds": [65535, 0], "the country he got up and moved in clouds and": [65535, 0], "country he got up and moved in clouds and darkness": [65535, 0], "he got up and moved in clouds and darkness out": [65535, 0], "got up and moved in clouds and darkness out at": [65535, 0], "up and moved in clouds and darkness out at one": [65535, 0], "and moved in clouds and darkness out at one door": [65535, 0], "moved in clouds and darkness out at one door as": [65535, 0], "in clouds and darkness out at one door as she": [65535, 0], "clouds and darkness out at one door as she brought": [65535, 0], "and darkness out at one door as she brought song": [65535, 0], "darkness out at one door as she brought song and": [65535, 0], "out at one door as she brought song and sunshine": [65535, 0], "at one door as she brought song and sunshine in": [65535, 0], "one door as she brought song and sunshine in at": [65535, 0], "door as she brought song and sunshine in at the": [65535, 0], "as she brought song and sunshine in at the other": [65535, 0], "she brought song and sunshine in at the other he": [65535, 0], "brought song and sunshine in at the other he wandered": [65535, 0], "song and sunshine in at the other he wandered far": [65535, 0], "and sunshine in at the other he wandered far from": [65535, 0], "sunshine in at the other he wandered far from the": [65535, 0], "in at the other he wandered far from the accustomed": [65535, 0], "at the other he wandered far from the accustomed haunts": [65535, 0], "the other he wandered far from the accustomed haunts of": [65535, 0], "other he wandered far from the accustomed haunts of boys": [65535, 0], "he wandered far from the accustomed haunts of boys and": [65535, 0], "wandered far from the accustomed haunts of boys and sought": [65535, 0], "far from the accustomed haunts of boys and sought desolate": [65535, 0], "from the accustomed haunts of boys and sought desolate places": [65535, 0], "the accustomed haunts of boys and sought desolate places that": [65535, 0], "accustomed haunts of boys and sought desolate places that were": [65535, 0], "haunts of boys and sought desolate places that were in": [65535, 0], "of boys and sought desolate places that were in harmony": [65535, 0], "boys and sought desolate places that were in harmony with": [65535, 0], "and sought desolate places that were in harmony with his": [65535, 0], "sought desolate places that were in harmony with his spirit": [65535, 0], "desolate places that were in harmony with his spirit a": [65535, 0], "places that were in harmony with his spirit a log": [65535, 0], "that were in harmony with his spirit a log raft": [65535, 0], "were in harmony with his spirit a log raft in": [65535, 0], "in harmony with his spirit a log raft in the": [65535, 0], "harmony with his spirit a log raft in the river": [65535, 0], "with his spirit a log raft in the river invited": [65535, 0], "his spirit a log raft in the river invited him": [65535, 0], "spirit a log raft in the river invited him and": [65535, 0], "a log raft in the river invited him and he": [65535, 0], "log raft in the river invited him and he seated": [65535, 0], "raft in the river invited him and he seated himself": [65535, 0], "in the river invited him and he seated himself on": [65535, 0], "the river invited him and he seated himself on its": [65535, 0], "river invited him and he seated himself on its outer": [65535, 0], "invited him and he seated himself on its outer edge": [65535, 0], "him and he seated himself on its outer edge and": [65535, 0], "and he seated himself on its outer edge and contemplated": [65535, 0], "he seated himself on its outer edge and contemplated the": [65535, 0], "seated himself on its outer edge and contemplated the dreary": [65535, 0], "himself on its outer edge and contemplated the dreary vastness": [65535, 0], "on its outer edge and contemplated the dreary vastness of": [65535, 0], "its outer edge and contemplated the dreary vastness of the": [65535, 0], "outer edge and contemplated the dreary vastness of the stream": [65535, 0], "edge and contemplated the dreary vastness of the stream wishing": [65535, 0], "and contemplated the dreary vastness of the stream wishing the": [65535, 0], "contemplated the dreary vastness of the stream wishing the while": [65535, 0], "the dreary vastness of the stream wishing the while that": [65535, 0], "dreary vastness of the stream wishing the while that he": [65535, 0], "vastness of the stream wishing the while that he could": [65535, 0], "of the stream wishing the while that he could only": [65535, 0], "the stream wishing the while that he could only be": [65535, 0], "stream wishing the while that he could only be drowned": [65535, 0], "wishing the while that he could only be drowned all": [65535, 0], "the while that he could only be drowned all at": [65535, 0], "while that he could only be drowned all at once": [65535, 0], "that he could only be drowned all at once and": [65535, 0], "he could only be drowned all at once and unconsciously": [65535, 0], "could only be drowned all at once and unconsciously without": [65535, 0], "only be drowned all at once and unconsciously without undergoing": [65535, 0], "be drowned all at once and unconsciously without undergoing the": [65535, 0], "drowned all at once and unconsciously without undergoing the uncomfortable": [65535, 0], "all at once and unconsciously without undergoing the uncomfortable routine": [65535, 0], "at once and unconsciously without undergoing the uncomfortable routine devised": [65535, 0], "once and unconsciously without undergoing the uncomfortable routine devised by": [65535, 0], "and unconsciously without undergoing the uncomfortable routine devised by nature": [65535, 0], "unconsciously without undergoing the uncomfortable routine devised by nature then": [65535, 0], "without undergoing the uncomfortable routine devised by nature then he": [65535, 0], "undergoing the uncomfortable routine devised by nature then he thought": [65535, 0], "the uncomfortable routine devised by nature then he thought of": [65535, 0], "uncomfortable routine devised by nature then he thought of his": [65535, 0], "routine devised by nature then he thought of his flower": [65535, 0], "devised by nature then he thought of his flower he": [65535, 0], "by nature then he thought of his flower he got": [65535, 0], "nature then he thought of his flower he got it": [65535, 0], "then he thought of his flower he got it out": [65535, 0], "he thought of his flower he got it out rumpled": [65535, 0], "thought of his flower he got it out rumpled and": [65535, 0], "of his flower he got it out rumpled and wilted": [65535, 0], "his flower he got it out rumpled and wilted and": [65535, 0], "flower he got it out rumpled and wilted and it": [65535, 0], "he got it out rumpled and wilted and it mightily": [65535, 0], "got it out rumpled and wilted and it mightily increased": [65535, 0], "it out rumpled and wilted and it mightily increased his": [65535, 0], "out rumpled and wilted and it mightily increased his dismal": [65535, 0], "rumpled and wilted and it mightily increased his dismal felicity": [65535, 0], "and wilted and it mightily increased his dismal felicity he": [65535, 0], "wilted and it mightily increased his dismal felicity he wondered": [65535, 0], "and it mightily increased his dismal felicity he wondered if": [65535, 0], "it mightily increased his dismal felicity he wondered if she": [65535, 0], "mightily increased his dismal felicity he wondered if she would": [65535, 0], "increased his dismal felicity he wondered if she would pity": [65535, 0], "his dismal felicity he wondered if she would pity him": [65535, 0], "dismal felicity he wondered if she would pity him if": [65535, 0], "felicity he wondered if she would pity him if she": [65535, 0], "he wondered if she would pity him if she knew": [65535, 0], "wondered if she would pity him if she knew would": [65535, 0], "if she would pity him if she knew would she": [65535, 0], "she would pity him if she knew would she cry": [65535, 0], "would pity him if she knew would she cry and": [65535, 0], "pity him if she knew would she cry and wish": [65535, 0], "him if she knew would she cry and wish that": [65535, 0], "if she knew would she cry and wish that she": [65535, 0], "she knew would she cry and wish that she had": [65535, 0], "knew would she cry and wish that she had a": [65535, 0], "would she cry and wish that she had a right": [65535, 0], "she cry and wish that she had a right to": [65535, 0], "cry and wish that she had a right to put": [65535, 0], "and wish that she had a right to put her": [65535, 0], "wish that she had a right to put her arms": [65535, 0], "that she had a right to put her arms around": [65535, 0], "she had a right to put her arms around his": [65535, 0], "had a right to put her arms around his neck": [65535, 0], "a right to put her arms around his neck and": [65535, 0], "right to put her arms around his neck and comfort": [65535, 0], "to put her arms around his neck and comfort him": [65535, 0], "put her arms around his neck and comfort him or": [65535, 0], "her arms around his neck and comfort him or would": [65535, 0], "arms around his neck and comfort him or would she": [65535, 0], "around his neck and comfort him or would she turn": [65535, 0], "his neck and comfort him or would she turn coldly": [65535, 0], "neck and comfort him or would she turn coldly away": [65535, 0], "and comfort him or would she turn coldly away like": [65535, 0], "comfort him or would she turn coldly away like all": [65535, 0], "him or would she turn coldly away like all the": [65535, 0], "or would she turn coldly away like all the hollow": [65535, 0], "would she turn coldly away like all the hollow world": [65535, 0], "she turn coldly away like all the hollow world this": [65535, 0], "turn coldly away like all the hollow world this picture": [65535, 0], "coldly away like all the hollow world this picture brought": [65535, 0], "away like all the hollow world this picture brought such": [65535, 0], "like all the hollow world this picture brought such an": [65535, 0], "all the hollow world this picture brought such an agony": [65535, 0], "the hollow world this picture brought such an agony of": [65535, 0], "hollow world this picture brought such an agony of pleasurable": [65535, 0], "world this picture brought such an agony of pleasurable suffering": [65535, 0], "this picture brought such an agony of pleasurable suffering that": [65535, 0], "picture brought such an agony of pleasurable suffering that he": [65535, 0], "brought such an agony of pleasurable suffering that he worked": [65535, 0], "such an agony of pleasurable suffering that he worked it": [65535, 0], "an agony of pleasurable suffering that he worked it over": [65535, 0], "agony of pleasurable suffering that he worked it over and": [65535, 0], "of pleasurable suffering that he worked it over and over": [65535, 0], "pleasurable suffering that he worked it over and over again": [65535, 0], "suffering that he worked it over and over again in": [65535, 0], "that he worked it over and over again in his": [65535, 0], "he worked it over and over again in his mind": [65535, 0], "worked it over and over again in his mind and": [65535, 0], "it over and over again in his mind and set": [65535, 0], "over and over again in his mind and set it": [65535, 0], "and over again in his mind and set it up": [65535, 0], "over again in his mind and set it up in": [65535, 0], "again in his mind and set it up in new": [65535, 0], "in his mind and set it up in new and": [65535, 0], "his mind and set it up in new and varied": [65535, 0], "mind and set it up in new and varied lights": [65535, 0], "and set it up in new and varied lights till": [65535, 0], "set it up in new and varied lights till he": [65535, 0], "it up in new and varied lights till he wore": [65535, 0], "up in new and varied lights till he wore it": [65535, 0], "in new and varied lights till he wore it threadbare": [65535, 0], "new and varied lights till he wore it threadbare at": [65535, 0], "and varied lights till he wore it threadbare at last": [65535, 0], "varied lights till he wore it threadbare at last he": [65535, 0], "lights till he wore it threadbare at last he rose": [65535, 0], "till he wore it threadbare at last he rose up": [65535, 0], "he wore it threadbare at last he rose up sighing": [65535, 0], "wore it threadbare at last he rose up sighing and": [65535, 0], "it threadbare at last he rose up sighing and departed": [65535, 0], "threadbare at last he rose up sighing and departed in": [65535, 0], "at last he rose up sighing and departed in the": [65535, 0], "last he rose up sighing and departed in the darkness": [65535, 0], "he rose up sighing and departed in the darkness about": [65535, 0], "rose up sighing and departed in the darkness about half": [65535, 0], "up sighing and departed in the darkness about half past": [65535, 0], "sighing and departed in the darkness about half past nine": [65535, 0], "and departed in the darkness about half past nine or": [65535, 0], "departed in the darkness about half past nine or ten": [65535, 0], "in the darkness about half past nine or ten o'clock": [65535, 0], "the darkness about half past nine or ten o'clock he": [65535, 0], "darkness about half past nine or ten o'clock he came": [65535, 0], "about half past nine or ten o'clock he came along": [65535, 0], "half past nine or ten o'clock he came along the": [65535, 0], "past nine or ten o'clock he came along the deserted": [65535, 0], "nine or ten o'clock he came along the deserted street": [65535, 0], "or ten o'clock he came along the deserted street to": [65535, 0], "ten o'clock he came along the deserted street to where": [65535, 0], "o'clock he came along the deserted street to where the": [65535, 0], "he came along the deserted street to where the adored": [65535, 0], "came along the deserted street to where the adored unknown": [65535, 0], "along the deserted street to where the adored unknown lived": [65535, 0], "the deserted street to where the adored unknown lived he": [65535, 0], "deserted street to where the adored unknown lived he paused": [65535, 0], "street to where the adored unknown lived he paused a": [65535, 0], "to where the adored unknown lived he paused a moment": [65535, 0], "where the adored unknown lived he paused a moment no": [65535, 0], "the adored unknown lived he paused a moment no sound": [65535, 0], "adored unknown lived he paused a moment no sound fell": [65535, 0], "unknown lived he paused a moment no sound fell upon": [65535, 0], "lived he paused a moment no sound fell upon his": [65535, 0], "he paused a moment no sound fell upon his listening": [65535, 0], "paused a moment no sound fell upon his listening ear": [65535, 0], "a moment no sound fell upon his listening ear a": [65535, 0], "moment no sound fell upon his listening ear a candle": [65535, 0], "no sound fell upon his listening ear a candle was": [65535, 0], "sound fell upon his listening ear a candle was casting": [65535, 0], "fell upon his listening ear a candle was casting a": [65535, 0], "upon his listening ear a candle was casting a dull": [65535, 0], "his listening ear a candle was casting a dull glow": [65535, 0], "listening ear a candle was casting a dull glow upon": [65535, 0], "ear a candle was casting a dull glow upon the": [65535, 0], "a candle was casting a dull glow upon the curtain": [65535, 0], "candle was casting a dull glow upon the curtain of": [65535, 0], "was casting a dull glow upon the curtain of a": [65535, 0], "casting a dull glow upon the curtain of a second": [65535, 0], "a dull glow upon the curtain of a second story": [65535, 0], "dull glow upon the curtain of a second story window": [65535, 0], "glow upon the curtain of a second story window was": [65535, 0], "upon the curtain of a second story window was the": [65535, 0], "the curtain of a second story window was the sacred": [65535, 0], "curtain of a second story window was the sacred presence": [65535, 0], "of a second story window was the sacred presence there": [65535, 0], "a second story window was the sacred presence there he": [65535, 0], "second story window was the sacred presence there he climbed": [65535, 0], "story window was the sacred presence there he climbed the": [65535, 0], "window was the sacred presence there he climbed the fence": [65535, 0], "was the sacred presence there he climbed the fence threaded": [65535, 0], "the sacred presence there he climbed the fence threaded his": [65535, 0], "sacred presence there he climbed the fence threaded his stealthy": [65535, 0], "presence there he climbed the fence threaded his stealthy way": [65535, 0], "there he climbed the fence threaded his stealthy way through": [65535, 0], "he climbed the fence threaded his stealthy way through the": [65535, 0], "climbed the fence threaded his stealthy way through the plants": [65535, 0], "the fence threaded his stealthy way through the plants till": [65535, 0], "fence threaded his stealthy way through the plants till he": [65535, 0], "threaded his stealthy way through the plants till he stood": [65535, 0], "his stealthy way through the plants till he stood under": [65535, 0], "stealthy way through the plants till he stood under that": [65535, 0], "way through the plants till he stood under that window": [65535, 0], "through the plants till he stood under that window he": [65535, 0], "the plants till he stood under that window he looked": [65535, 0], "plants till he stood under that window he looked up": [65535, 0], "till he stood under that window he looked up at": [65535, 0], "he stood under that window he looked up at it": [65535, 0], "stood under that window he looked up at it long": [65535, 0], "under that window he looked up at it long and": [65535, 0], "that window he looked up at it long and with": [65535, 0], "window he looked up at it long and with emotion": [65535, 0], "he looked up at it long and with emotion then": [65535, 0], "looked up at it long and with emotion then he": [65535, 0], "up at it long and with emotion then he laid": [65535, 0], "at it long and with emotion then he laid him": [65535, 0], "it long and with emotion then he laid him down": [65535, 0], "long and with emotion then he laid him down on": [65535, 0], "and with emotion then he laid him down on the": [65535, 0], "with emotion then he laid him down on the ground": [65535, 0], "emotion then he laid him down on the ground under": [65535, 0], "then he laid him down on the ground under it": [65535, 0], "he laid him down on the ground under it disposing": [65535, 0], "laid him down on the ground under it disposing himself": [65535, 0], "him down on the ground under it disposing himself upon": [65535, 0], "down on the ground under it disposing himself upon his": [65535, 0], "on the ground under it disposing himself upon his back": [65535, 0], "the ground under it disposing himself upon his back with": [65535, 0], "ground under it disposing himself upon his back with his": [65535, 0], "under it disposing himself upon his back with his hands": [65535, 0], "it disposing himself upon his back with his hands clasped": [65535, 0], "disposing himself upon his back with his hands clasped upon": [65535, 0], "himself upon his back with his hands clasped upon his": [65535, 0], "upon his back with his hands clasped upon his breast": [65535, 0], "his back with his hands clasped upon his breast and": [65535, 0], "back with his hands clasped upon his breast and holding": [65535, 0], "with his hands clasped upon his breast and holding his": [65535, 0], "his hands clasped upon his breast and holding his poor": [65535, 0], "hands clasped upon his breast and holding his poor wilted": [65535, 0], "clasped upon his breast and holding his poor wilted flower": [65535, 0], "upon his breast and holding his poor wilted flower and": [65535, 0], "his breast and holding his poor wilted flower and thus": [65535, 0], "breast and holding his poor wilted flower and thus he": [65535, 0], "and holding his poor wilted flower and thus he would": [65535, 0], "holding his poor wilted flower and thus he would die": [65535, 0], "his poor wilted flower and thus he would die out": [65535, 0], "poor wilted flower and thus he would die out in": [65535, 0], "wilted flower and thus he would die out in the": [65535, 0], "flower and thus he would die out in the cold": [65535, 0], "and thus he would die out in the cold world": [65535, 0], "thus he would die out in the cold world with": [65535, 0], "he would die out in the cold world with no": [65535, 0], "would die out in the cold world with no shelter": [65535, 0], "die out in the cold world with no shelter over": [65535, 0], "out in the cold world with no shelter over his": [65535, 0], "in the cold world with no shelter over his homeless": [65535, 0], "the cold world with no shelter over his homeless head": [65535, 0], "cold world with no shelter over his homeless head no": [65535, 0], "world with no shelter over his homeless head no friendly": [65535, 0], "with no shelter over his homeless head no friendly hand": [65535, 0], "no shelter over his homeless head no friendly hand to": [65535, 0], "shelter over his homeless head no friendly hand to wipe": [65535, 0], "over his homeless head no friendly hand to wipe the": [65535, 0], "his homeless head no friendly hand to wipe the death": [65535, 0], "homeless head no friendly hand to wipe the death damps": [65535, 0], "head no friendly hand to wipe the death damps from": [65535, 0], "no friendly hand to wipe the death damps from his": [65535, 0], "friendly hand to wipe the death damps from his brow": [65535, 0], "hand to wipe the death damps from his brow no": [65535, 0], "to wipe the death damps from his brow no loving": [65535, 0], "wipe the death damps from his brow no loving face": [65535, 0], "the death damps from his brow no loving face to": [65535, 0], "death damps from his brow no loving face to bend": [65535, 0], "damps from his brow no loving face to bend pityingly": [65535, 0], "from his brow no loving face to bend pityingly over": [65535, 0], "his brow no loving face to bend pityingly over him": [65535, 0], "brow no loving face to bend pityingly over him when": [65535, 0], "no loving face to bend pityingly over him when the": [65535, 0], "loving face to bend pityingly over him when the great": [65535, 0], "face to bend pityingly over him when the great agony": [65535, 0], "to bend pityingly over him when the great agony came": [65535, 0], "bend pityingly over him when the great agony came and": [65535, 0], "pityingly over him when the great agony came and thus": [65535, 0], "over him when the great agony came and thus she": [65535, 0], "him when the great agony came and thus she would": [65535, 0], "when the great agony came and thus she would see": [65535, 0], "the great agony came and thus she would see him": [65535, 0], "great agony came and thus she would see him when": [65535, 0], "agony came and thus she would see him when she": [65535, 0], "came and thus she would see him when she looked": [65535, 0], "and thus she would see him when she looked out": [65535, 0], "thus she would see him when she looked out upon": [65535, 0], "she would see him when she looked out upon the": [65535, 0], "would see him when she looked out upon the glad": [65535, 0], "see him when she looked out upon the glad morning": [65535, 0], "him when she looked out upon the glad morning and": [65535, 0], "when she looked out upon the glad morning and oh": [65535, 0], "she looked out upon the glad morning and oh would": [65535, 0], "looked out upon the glad morning and oh would she": [65535, 0], "out upon the glad morning and oh would she drop": [65535, 0], "upon the glad morning and oh would she drop one": [65535, 0], "the glad morning and oh would she drop one little": [65535, 0], "glad morning and oh would she drop one little tear": [65535, 0], "morning and oh would she drop one little tear upon": [65535, 0], "and oh would she drop one little tear upon his": [65535, 0], "oh would she drop one little tear upon his poor": [65535, 0], "would she drop one little tear upon his poor lifeless": [65535, 0], "she drop one little tear upon his poor lifeless form": [65535, 0], "drop one little tear upon his poor lifeless form would": [65535, 0], "one little tear upon his poor lifeless form would she": [65535, 0], "little tear upon his poor lifeless form would she heave": [65535, 0], "tear upon his poor lifeless form would she heave one": [65535, 0], "upon his poor lifeless form would she heave one little": [65535, 0], "his poor lifeless form would she heave one little sigh": [65535, 0], "poor lifeless form would she heave one little sigh to": [65535, 0], "lifeless form would she heave one little sigh to see": [65535, 0], "form would she heave one little sigh to see a": [65535, 0], "would she heave one little sigh to see a bright": [65535, 0], "she heave one little sigh to see a bright young": [65535, 0], "heave one little sigh to see a bright young life": [65535, 0], "one little sigh to see a bright young life so": [65535, 0], "little sigh to see a bright young life so rudely": [65535, 0], "sigh to see a bright young life so rudely blighted": [65535, 0], "to see a bright young life so rudely blighted so": [65535, 0], "see a bright young life so rudely blighted so untimely": [65535, 0], "a bright young life so rudely blighted so untimely cut": [65535, 0], "bright young life so rudely blighted so untimely cut down": [65535, 0], "young life so rudely blighted so untimely cut down the": [65535, 0], "life so rudely blighted so untimely cut down the window": [65535, 0], "so rudely blighted so untimely cut down the window went": [65535, 0], "rudely blighted so untimely cut down the window went up": [65535, 0], "blighted so untimely cut down the window went up a": [65535, 0], "so untimely cut down the window went up a maid": [65535, 0], "untimely cut down the window went up a maid servant's": [65535, 0], "cut down the window went up a maid servant's discordant": [65535, 0], "down the window went up a maid servant's discordant voice": [65535, 0], "the window went up a maid servant's discordant voice profaned": [65535, 0], "window went up a maid servant's discordant voice profaned the": [65535, 0], "went up a maid servant's discordant voice profaned the holy": [65535, 0], "up a maid servant's discordant voice profaned the holy calm": [65535, 0], "a maid servant's discordant voice profaned the holy calm and": [65535, 0], "maid servant's discordant voice profaned the holy calm and a": [65535, 0], "servant's discordant voice profaned the holy calm and a deluge": [65535, 0], "discordant voice profaned the holy calm and a deluge of": [65535, 0], "voice profaned the holy calm and a deluge of water": [65535, 0], "profaned the holy calm and a deluge of water drenched": [65535, 0], "the holy calm and a deluge of water drenched the": [65535, 0], "holy calm and a deluge of water drenched the prone": [65535, 0], "calm and a deluge of water drenched the prone martyr's": [65535, 0], "and a deluge of water drenched the prone martyr's remains": [65535, 0], "a deluge of water drenched the prone martyr's remains the": [65535, 0], "deluge of water drenched the prone martyr's remains the strangling": [65535, 0], "of water drenched the prone martyr's remains the strangling hero": [65535, 0], "water drenched the prone martyr's remains the strangling hero sprang": [65535, 0], "drenched the prone martyr's remains the strangling hero sprang up": [65535, 0], "the prone martyr's remains the strangling hero sprang up with": [65535, 0], "prone martyr's remains the strangling hero sprang up with a": [65535, 0], "martyr's remains the strangling hero sprang up with a relieving": [65535, 0], "remains the strangling hero sprang up with a relieving snort": [65535, 0], "the strangling hero sprang up with a relieving snort there": [65535, 0], "strangling hero sprang up with a relieving snort there was": [65535, 0], "hero sprang up with a relieving snort there was a": [65535, 0], "sprang up with a relieving snort there was a whiz": [65535, 0], "up with a relieving snort there was a whiz as": [65535, 0], "with a relieving snort there was a whiz as of": [65535, 0], "a relieving snort there was a whiz as of a": [65535, 0], "relieving snort there was a whiz as of a missile": [65535, 0], "snort there was a whiz as of a missile in": [65535, 0], "there was a whiz as of a missile in the": [65535, 0], "was a whiz as of a missile in the air": [65535, 0], "a whiz as of a missile in the air mingled": [65535, 0], "whiz as of a missile in the air mingled with": [65535, 0], "as of a missile in the air mingled with the": [65535, 0], "of a missile in the air mingled with the murmur": [65535, 0], "a missile in the air mingled with the murmur of": [65535, 0], "missile in the air mingled with the murmur of a": [65535, 0], "in the air mingled with the murmur of a curse": [65535, 0], "the air mingled with the murmur of a curse a": [65535, 0], "air mingled with the murmur of a curse a sound": [65535, 0], "mingled with the murmur of a curse a sound as": [65535, 0], "with the murmur of a curse a sound as of": [65535, 0], "the murmur of a curse a sound as of shivering": [65535, 0], "murmur of a curse a sound as of shivering glass": [65535, 0], "of a curse a sound as of shivering glass followed": [65535, 0], "a curse a sound as of shivering glass followed and": [65535, 0], "curse a sound as of shivering glass followed and a": [65535, 0], "a sound as of shivering glass followed and a small": [65535, 0], "sound as of shivering glass followed and a small vague": [65535, 0], "as of shivering glass followed and a small vague form": [65535, 0], "of shivering glass followed and a small vague form went": [65535, 0], "shivering glass followed and a small vague form went over": [65535, 0], "glass followed and a small vague form went over the": [65535, 0], "followed and a small vague form went over the fence": [65535, 0], "and a small vague form went over the fence and": [65535, 0], "a small vague form went over the fence and shot": [65535, 0], "small vague form went over the fence and shot away": [65535, 0], "vague form went over the fence and shot away in": [65535, 0], "form went over the fence and shot away in the": [65535, 0], "went over the fence and shot away in the gloom": [65535, 0], "over the fence and shot away in the gloom not": [65535, 0], "the fence and shot away in the gloom not long": [65535, 0], "fence and shot away in the gloom not long after": [65535, 0], "and shot away in the gloom not long after as": [65535, 0], "shot away in the gloom not long after as tom": [65535, 0], "away in the gloom not long after as tom all": [65535, 0], "in the gloom not long after as tom all undressed": [65535, 0], "the gloom not long after as tom all undressed for": [65535, 0], "gloom not long after as tom all undressed for bed": [65535, 0], "not long after as tom all undressed for bed was": [65535, 0], "long after as tom all undressed for bed was surveying": [65535, 0], "after as tom all undressed for bed was surveying his": [65535, 0], "as tom all undressed for bed was surveying his drenched": [65535, 0], "tom all undressed for bed was surveying his drenched garments": [65535, 0], "all undressed for bed was surveying his drenched garments by": [65535, 0], "undressed for bed was surveying his drenched garments by the": [65535, 0], "for bed was surveying his drenched garments by the light": [65535, 0], "bed was surveying his drenched garments by the light of": [65535, 0], "was surveying his drenched garments by the light of a": [65535, 0], "surveying his drenched garments by the light of a tallow": [65535, 0], "his drenched garments by the light of a tallow dip": [65535, 0], "drenched garments by the light of a tallow dip sid": [65535, 0], "garments by the light of a tallow dip sid woke": [65535, 0], "by the light of a tallow dip sid woke up": [65535, 0], "the light of a tallow dip sid woke up but": [65535, 0], "light of a tallow dip sid woke up but if": [65535, 0], "of a tallow dip sid woke up but if he": [65535, 0], "a tallow dip sid woke up but if he had": [65535, 0], "tallow dip sid woke up but if he had any": [65535, 0], "dip sid woke up but if he had any dim": [65535, 0], "sid woke up but if he had any dim idea": [65535, 0], "woke up but if he had any dim idea of": [65535, 0], "up but if he had any dim idea of making": [65535, 0], "but if he had any dim idea of making any": [65535, 0], "if he had any dim idea of making any references": [65535, 0], "he had any dim idea of making any references to": [65535, 0], "had any dim idea of making any references to allusions": [65535, 0], "any dim idea of making any references to allusions he": [65535, 0], "dim idea of making any references to allusions he thought": [65535, 0], "idea of making any references to allusions he thought better": [65535, 0], "of making any references to allusions he thought better of": [65535, 0], "making any references to allusions he thought better of it": [65535, 0], "any references to allusions he thought better of it and": [65535, 0], "references to allusions he thought better of it and held": [65535, 0], "to allusions he thought better of it and held his": [65535, 0], "allusions he thought better of it and held his peace": [65535, 0], "he thought better of it and held his peace for": [65535, 0], "thought better of it and held his peace for there": [65535, 0], "better of it and held his peace for there was": [65535, 0], "of it and held his peace for there was danger": [65535, 0], "it and held his peace for there was danger in": [65535, 0], "and held his peace for there was danger in tom's": [65535, 0], "held his peace for there was danger in tom's eye": [65535, 0], "his peace for there was danger in tom's eye tom": [65535, 0], "peace for there was danger in tom's eye tom turned": [65535, 0], "for there was danger in tom's eye tom turned in": [65535, 0], "there was danger in tom's eye tom turned in without": [65535, 0], "was danger in tom's eye tom turned in without the": [65535, 0], "danger in tom's eye tom turned in without the added": [65535, 0], "in tom's eye tom turned in without the added vexation": [65535, 0], "tom's eye tom turned in without the added vexation of": [65535, 0], "eye tom turned in without the added vexation of prayers": [65535, 0], "tom turned in without the added vexation of prayers and": [65535, 0], "turned in without the added vexation of prayers and sid": [65535, 0], "in without the added vexation of prayers and sid made": [65535, 0], "without the added vexation of prayers and sid made mental": [65535, 0], "the added vexation of prayers and sid made mental note": [65535, 0], "added vexation of prayers and sid made mental note of": [65535, 0], "vexation of prayers and sid made mental note of the": [65535, 0], "of prayers and sid made mental note of the omission": [65535, 0], "actus": [0, 65535], "tertius": [0, 65535], "scena": [0, 65535], "prima": [0, 65535], "enter": [0, 65535], "antipholus": [0, 65535], "ephesus": [0, 65535], "dromio": [0, 65535], "angelo": [0, 65535], "goldsmith": [0, 65535], "balthaser": [0, 65535], "merchant": [0, 65535], "e": [0, 65535], "anti": [0, 65535], "signior": [0, 65535], "excuse": [0, 65535], "vs": [0, 65535], "shrewish": [0, 65535], "keepe": [0, 65535], "howres": [0, 65535], "lingerd": [0, 65535], "shop": [0, 65535], "carkanet": [0, 65535], "here's": [0, 65535], "villaine": [0, 65535], "downe": [0, 65535], "mart": [0, 65535], "charg'd": [0, 65535], "markes": [0, 65535], "gold": [0, 65535], "denie": [0, 65535], "thou": [0, 65535], "didst": [0, 65535], "meane": [0, 65535], "dro": [0, 65535], "wil": [0, 65535], "haue": [0, 65535], "parchment": [0, 65535], "blows": [0, 65535], "gaue": [0, 65535], "ink": [0, 65535], "owne": [0, 65535], "writing": [0, 65535], "thinke": [0, 65535], "asse": [0, 65535], "marry": [0, 65535], "doth": [0, 65535], "appeare": [0, 65535], "wrongs": [0, 65535], "suffer": [0, 65535], "blowes": [0, 65535], "beare": [0, 65535], "kicke": [0, 65535], "kickt": [0, 65535], "passe": [0, 65535], "heeles": [0, 65535], "beware": [0, 65535], "y'are": [0, 65535], "balthazar": [0, 65535], "welcom": [0, 65535], "bal": [0, 65535], "dainties": [0, 65535], "cheap": [0, 65535], "deer": [0, 65535], "table": [0, 65535], "welcome": [0, 65535], "scarce": [0, 65535], "dish": [0, 65535], "meat": [0, 65535], "co": [0, 65535], "m": [0, 65535], "mon": [0, 65535], "euery": [0, 65535], "churle": [0, 65535], "affords": [0, 65535], "common": [0, 65535], "thats": [0, 65535], "cheere": [0, 65535], "merrie": [0, 65535], "feast": [0, 65535], "niggardly": [0, 65535], "host": [0, 65535], "sparing": [0, 65535], "guest": [0, 65535], "cates": [0, 65535], "hart": [0, 65535], "soft": [0, 65535], "doore": [0, 65535], "lockt": [0, 65535], "goe": [0, 65535], "bid": [0, 65535], "maud": [0, 65535], "briget": [0, 65535], "marian": [0, 65535], "cisley": [0, 65535], "gillian": [0, 65535], "ginn": [0, 65535], "mome": [0, 65535], "malthorse": [0, 65535], "capon": [0, 65535], "coxcombe": [0, 65535], "patch": [0, 65535], "thee": [0, 65535], "hatch": [0, 65535], "dost": [0, 65535], "coniure": [0, 65535], "wenches": [0, 65535], "calst": [0, 65535], "store": [0, 65535], "porter": [0, 65535], "stayes": [0, 65535], "walke": [0, 65535], "whence": [0, 65535], "lest": [0, 65535], "hee": [0, 65535], "on's": [0, 65535], "hoa": [0, 65535], "ile": [0, 65535], "wherefore": [0, 65535], "din'd": [0, 65535], "againe": [0, 65535], "keep'st": [0, 65535], "mee": [0, 65535], "howse": [0, 65535], "owe": [0, 65535], "hast": [0, 65535], "stolne": [0, 65535], "mine": [0, 65535], "office": [0, 65535], "nere": [0, 65535], "credit": [0, 65535], "mickle": [0, 65535], "hadst": [0, 65535], "beene": [0, 65535], "wouldst": [0, 65535], "chang'd": [0, 65535], "thy": [0, 65535], "luce": [0, 65535], "coile": [0, 65535], "faith": [0, 65535], "prouerbe": [0, 65535], "staffe": [0, 65535], "swer'd": [0, 65535], "doe": [0, 65535], "heare": [0, 65535], "minion": [0, 65535], "askt": [0, 65535], "helpe": [0, 65535], "strooke": [0, 65535], "blow": [0, 65535], "baggage": [0, 65535], "sake": [0, 65535], "drom": [0, 65535], "knocke": [0, 65535], "ake": [0, 65535], "crie": [0, 65535], "needs": [0, 65535], "paire": [0, 65535], "stocks": [0, 65535], "towne": [0, 65535], "adriana": [0, 65535], "adr": [0, 65535], "keeps": [0, 65535], "troth": [0, 65535], "vnruly": [0, 65535], "boies": [0, 65535], "adri": [0, 65535], "knaue": [0, 65535], "paine": [0, 65535], "wold": [0, 65535], "heere": [0, 65535], "faine": [0, 65535], "baltz": [0, 65535], "debating": [0, 65535], "best": [0, 65535], "wee": [0, 65535], "winde": [0, 65535], "cake": [0, 65535], "warme": [0, 65535], "mad": [0, 65535], "bucke": [0, 65535], "sold": [0, 65535], "ope": [0, 65535], "breake": [0, 65535], "breaking": [0, 65535], "knaues": [0, 65535], "pate": [0, 65535], "behinde": [0, 65535], "seemes": [0, 65535], "want'st": [0, 65535], "vpon": [0, 65535], "hinde": [0, 65535], "fowles": [0, 65535], "feathers": [0, 65535], "fin": [0, 65535], "borrow": [0, 65535], "crow": [0, 65535], "finne": [0, 65535], "ther's": [0, 65535], "fowle": [0, 65535], "fether": [0, 65535], "sirra": [0, 65535], "wee'll": [0, 65535], "plucke": [0, 65535], "gon": [0, 65535], "balth": [0, 65535], "patience": [0, 65535], "heerein": [0, 65535], "warre": [0, 65535], "reputation": [0, 65535], "compasse": [0, 65535], "suspect": [0, 65535], "th'": [0, 65535], "vnuiolated": [0, 65535], "experience": [0, 65535], "wisedome": [0, 65535], "sober": [0, 65535], "vertue": [0, 65535], "yeares": [0, 65535], "modestie": [0, 65535], "plead": [0, 65535], "cause": [0, 65535], "vnknowne": [0, 65535], "dores": [0, 65535], "rul'd": [0, 65535], "depart": [0, 65535], "tyger": [0, 65535], "euening": [0, 65535], "selfe": [0, 65535], "reason": [0, 65535], "strange": [0, 65535], "offer": [0, 65535], "stirring": [0, 65535], "comment": [0, 65535], "supposed": [0, 65535], "rowt": [0, 65535], "vngalled": [0, 65535], "estimation": [0, 65535], "foule": [0, 65535], "intrusion": [0, 65535], "dwell": [0, 65535], "graue": [0, 65535], "slander": [0, 65535], "liues": [0, 65535], "euer": [0, 65535], "hows'd": [0, 65535], "gets": [0, 65535], "possession": [0, 65535], "preuail'd": [0, 65535], "despight": [0, 65535], "wench": [0, 65535], "excellent": [0, 65535], "prettie": [0, 65535], "wittie": [0, 65535], "wilde": [0, 65535], "dine": [0, 65535], "protest": [0, 65535], "desert": [0, 65535], "hath": [0, 65535], "oftentimes": [0, 65535], "vpbraided": [0, 65535], "withall": [0, 65535], "chaine": [0, 65535], "'tis": [0, 65535], "porpentine": [0, 65535], "bestow": [0, 65535], "spight": [0, 65535], "hostesse": [0, 65535], "haste": [0, 65535], "since": [0, 65535], "doores": [0, 65535], "refuse": [0, 65535], "entertaine": [0, 65535], "disdaine": [0, 65535], "ang": [0, 65535], "houre": [0, 65535], "hence": [0, 65535], "iest": [0, 65535], "cost": [0, 65535], "expence": [0, 65535], "exeunt": [0, 65535], "iuliana": [0, 65535], "siracusia": [0, 65535], "iulia": [0, 65535], "husbands": [0, 65535], "euen": [0, 65535], "loue": [0, 65535], "springs": [0, 65535], "rot": [0, 65535], "buildings": [0, 65535], "ruinate": [0, 65535], "wed": [0, 65535], "sister": [0, 65535], "wealths": [0, 65535], "vse": [0, 65535], "kindnesse": [0, 65535], "stealth": [0, 65535], "muffle": [0, 65535], "false": [0, 65535], "shew": [0, 65535], "blindnesse": [0, 65535], "shames": [0, 65535], "orator": [0, 65535], "looke": [0, 65535], "sweet": [0, 65535], "speake": [0, 65535], "faire": [0, 65535], "become": [0, 65535], "disloyaltie": [0, 65535], "apparell": [0, 65535], "vice": [0, 65535], "vertues": [0, 65535], "harbenger": [0, 65535], "tainted": [0, 65535], "teach": [0, 65535], "sinne": [0, 65535], "carriage": [0, 65535], "saint": [0, 65535], "secret": [0, 65535], "need": [0, 65535], "acquainted": [0, 65535], "thiefe": [0, 65535], "brags": [0, 65535], "attaine": [0, 65535], "truant": [0, 65535], "lookes": [0, 65535], "boord": [0, 65535], "shame": [0, 65535], "bastard": [0, 65535], "fame": [0, 65535], "deeds": [0, 65535], "doubled": [0, 65535], "euill": [0, 65535], "alas": [0, 65535], "poore": [0, 65535], "women": [0, 65535], "beleeue": [0, 65535], "compact": [0, 65535], "arme": [0, 65535], "sleeue": [0, 65535], "motion": [0, 65535], "turne": [0, 65535], "moue": [0, 65535], "sport": [0, 65535], "vaine": [0, 65535], "flatterie": [0, 65535], "conquers": [0, 65535], "strife": [0, 65535], "sweete": [0, 65535], "mistris": [0, 65535], "lesse": [0, 65535], "earths": [0, 65535], "diuine": [0, 65535], "deere": [0, 65535], "earthie": [0, 65535], "grosse": [0, 65535], "conceit": [0, 65535], "smothred": [0, 65535], "errors": [0, 65535], "shallow": [0, 65535], "weake": [0, 65535], "foulded": [0, 65535], "meaning": [0, 65535], "deceit": [0, 65535], "soules": [0, 65535], "labour": [0, 65535], "wander": [0, 65535], "create": [0, 65535], "transforme": [0, 65535], "powre": [0, 65535], "yeeld": [0, 65535], "weeping": [0, 65535], "farre": [0, 65535], "decline": [0, 65535], "traine": [0, 65535], "mermaide": [0, 65535], "drowne": [0, 65535], "floud": [0, 65535], "teares": [0, 65535], "sing": [0, 65535], "siren": [0, 65535], "dote": [0, 65535], "ore": [0, 65535], "siluer": [0, 65535], "waues": [0, 65535], "golden": [0, 65535], "haires": [0, 65535], "bud": [0, 65535], "glorious": [0, 65535], "supposition": [0, 65535], "gaines": [0, 65535], "meanes": [0, 65535], "sinke": [0, 65535], "luc": [0, 65535], "mated": [0, 65535], "fault": [0, 65535], "springeth": [0, 65535], "eie": [0, 65535], "gazing": [0, 65535], "beames": [0, 65535], "cleere": [0, 65535], "winke": [0, 65535], "sisters": [0, 65535], "selfes": [0, 65535], "eies": [0, 65535], "hearts": [0, 65535], "deerer": [0, 65535], "foode": [0, 65535], "hopes": [0, 65535], "aime": [0, 65535], "sole": [0, 65535], "heauen": [0, 65535], "heauens": [0, 65535], "claime": [0, 65535], "husband": [0, 65535], "giue": [0, 65535], "exit": [0, 65535], "run'st": [0, 65535], "womans": [0, 65535], "marrie": [0, 65535], "claimes": [0, 65535], "laies": [0, 65535], "beast": [0, 65535], "beeing": [0, 65535], "verie": [0, 65535], "beastly": [0, 65535], "layes": [0, 65535], "reuerent": [0, 65535], "reuerence": [0, 65535], "leane": [0, 65535], "lucke": [0, 65535], "match": [0, 65535], "wondrous": [0, 65535], "fat": [0, 65535], "marriage": [0, 65535], "kitchin": [0, 65535], "al": [0, 65535], "grease": [0, 65535], "lampe": [0, 65535], "warrant": [0, 65535], "ragges": [0, 65535], "burne": [0, 65535], "poland": [0, 65535], "winter": [0, 65535], "doomesday": [0, 65535], "she'l": [0, 65535], "weeke": [0, 65535], "complexion": [0, 65535], "swart": [0, 65535], "shoo": [0, 65535], "cleane": [0, 65535], "sweats": [0, 65535], "uer": [0, 65535], "shooes": [0, 65535], "grime": [0, 65535], "mend": [0, 65535], "graine": [0, 65535], "noahs": [0, 65535], "flood": [0, 65535], "nell": [0, 65535], "quarters": [0, 65535], "ell": [0, 65535], "measure": [0, 65535], "hip": [0, 65535], "beares": [0, 65535], "bredth": [0, 65535], "hippe": [0, 65535], "sphericall": [0, 65535], "globe": [0, 65535], "countries": [0, 65535], "ireland": [0, 65535], "buttockes": [0, 65535], "bogges": [0, 65535], "scotland": [0, 65535], "barrennesse": [0, 65535], "palme": [0, 65535], "france": [0, 65535], "forhead": [0, 65535], "arm'd": [0, 65535], "reuerted": [0, 65535], "heire": [0, 65535], "look'd": [0, 65535], "chalkle": [0, 65535], "cliffes": [0, 65535], "whitenesse": [0, 65535], "guesse": [0, 65535], "salt": [0, 65535], "rheume": [0, 65535], "ranne": [0, 65535], "betweene": [0, 65535], "spaine": [0, 65535], "breth": [0, 65535], "indies": [0, 65535], "embellished": [0, 65535], "rubies": [0, 65535], "carbuncles": [0, 65535], "saphires": [0, 65535], "declining": [0, 65535], "rich": [0, 65535], "aspect": [0, 65535], "sent": [0, 65535], "armadoes": [0, 65535], "carrects": [0, 65535], "ballast": [0, 65535], "belgia": [0, 65535], "netherlands": [0, 65535], "conclude": [0, 65535], "drudge": [0, 65535], "diuiner": [0, 65535], "layd": [0, 65535], "call'd": [0, 65535], "swore": [0, 65535], "assur'd": [0, 65535], "priuie": [0, 65535], "marke": [0, 65535], "mole": [0, 65535], "necke": [0, 65535], "amaz'd": [0, 65535], "brest": [0, 65535], "steele": [0, 65535], "transform'd": [0, 65535], "curtull": [0, 65535], "i'th": [0, 65535], "wheele": [0, 65535], "hie": [0, 65535], "post": [0, 65535], "rode": [0, 65535], "shore": [0, 65535], "harbour": [0, 65535], "barke": [0, 65535], "returne": [0, 65535], "euerie": [0, 65535], "knowes": [0, 65535], "trudge": [0, 65535], "packe": [0, 65535], "flie": [0, 65535], "witches": [0, 65535], "inhabite": [0, 65535], "soule": [0, 65535], "abhorre": [0, 65535], "possest": [0, 65535], "soueraigne": [0, 65535], "inchanting": [0, 65535], "guilty": [0, 65535], "eares": [0, 65535], "mermaids": [0, 65535], "loe": [0, 65535], "tane": [0, 65535], "vnfinish'd": [0, 65535], "shal": [0, 65535], "bespoke": [0, 65535], "twice": [0, 65535], "twentie": [0, 65535], "soone": [0, 65535], "receiue": [0, 65535], "feare": [0, 65535], "ne're": [0, 65535], "mony": [0, 65535], "merry": [0, 65535], "fare": [0, 65535], "offer'd": [0, 65535], "liue": [0, 65535], "shifts": [0, 65535], "streets": [0, 65535], "meetes": [0, 65535], "gifts": [0, 65535], "actus tertius": [0, 65535], "tertius scena": [0, 65535], "scena prima": [0, 65535], "prima enter": [0, 65535], "enter antipholus": [0, 65535], "antipholus of": [0, 65535], "of ephesus": [0, 65535], "ephesus his": [0, 65535], "his man": [0, 65535], "man dromio": [0, 65535], "dromio angelo": [0, 65535], "angelo the": [0, 65535], "the goldsmith": [0, 65535], "goldsmith and": [0, 65535], "and balthaser": [0, 65535], "balthaser the": [0, 65535], "the merchant": [0, 65535], "merchant e": [0, 65535], "e anti": [0, 65535], "anti good": [0, 65535], "good signior": [0, 65535], "signior angelo": [0, 65535], "angelo you": [0, 65535], "must excuse": [0, 65535], "excuse vs": [0, 65535], "vs all": [0, 65535], "all my": [0, 65535], "my wife": [0, 65535], "wife is": [0, 65535], "is shrewish": [0, 65535], "shrewish when": [0, 65535], "i keepe": [0, 65535], "keepe not": [0, 65535], "not howres": [0, 65535], "howres say": [0, 65535], "say that": [0, 65535], "i lingerd": [0, 65535], "lingerd with": [0, 65535], "you at": [0, 65535], "your shop": [0, 65535], "shop to": [0, 65535], "the making": [0, 65535], "making of": [0, 65535], "her carkanet": [0, 65535], "carkanet and": [0, 65535], "that to": [0, 65535], "morrow you": [0, 65535], "will bring": [0, 65535], "bring it": [0, 65535], "it home": [0, 65535], "home but": [0, 65535], "but here's": [0, 65535], "here's a": [0, 65535], "a villaine": [0, 65535], "villaine that": [0, 65535], "would face": [0, 65535], "face me": [0, 65535], "me downe": [0, 65535], "downe he": [0, 65535], "met me": [0, 65535], "me on": [0, 65535], "the mart": [0, 65535], "mart and": [0, 65535], "i beat": [0, 65535], "beat him": [0, 65535], "and charg'd": [0, 65535], "charg'd him": [0, 65535], "thousand markes": [0, 65535], "markes in": [0, 65535], "in gold": [0, 65535], "gold and": [0, 65535], "did denie": [0, 65535], "denie my": [0, 65535], "wife and": [0, 65535], "and house": [0, 65535], "house thou": [0, 65535], "thou drunkard": [0, 65535], "drunkard thou": [0, 65535], "thou what": [0, 65535], "what didst": [0, 65535], "didst thou": [0, 65535], "thou meane": [0, 65535], "meane by": [0, 65535], "this e": [0, 65535], "e dro": [0, 65535], "dro say": [0, 65535], "you wil": [0, 65535], "wil sir": [0, 65535], "sir but": [0, 65535], "what i": [0, 65535], "know that": [0, 65535], "you beat": [0, 65535], "beat me": [0, 65535], "me at": [0, 65535], "mart i": [0, 65535], "i haue": [0, 65535], "haue your": [0, 65535], "show if": [0, 65535], "the skin": [0, 65535], "skin were": [0, 65535], "were parchment": [0, 65535], "parchment the": [0, 65535], "the blows": [0, 65535], "blows you": [0, 65535], "you gaue": [0, 65535], "gaue were": [0, 65535], "were ink": [0, 65535], "ink your": [0, 65535], "your owne": [0, 65535], "owne hand": [0, 65535], "hand writing": [0, 65535], "writing would": [0, 65535], "i thinke": [0, 65535], "thinke e": [0, 65535], "e ant": [0, 65535], "ant i": [0, 65535], "thinke thou": [0, 65535], "thou art": [0, 65535], "art an": [0, 65535], "an asse": [0, 65535], "asse e": [0, 65535], "dro marry": [0, 65535], "marry so": [0, 65535], "it doth": [0, 65535], "doth appeare": [0, 65535], "appeare by": [0, 65535], "the wrongs": [0, 65535], "wrongs i": [0, 65535], "i suffer": [0, 65535], "suffer and": [0, 65535], "the blowes": [0, 65535], "blowes i": [0, 65535], "i beare": [0, 65535], "beare i": [0, 65535], "i should": [0, 65535], "should kicke": [0, 65535], "kicke being": [0, 65535], "being kickt": [0, 65535], "kickt and": [0, 65535], "and being": [0, 65535], "at that": [0, 65535], "that passe": [0, 65535], "passe you": [0, 65535], "would keepe": [0, 65535], "keepe from": [0, 65535], "from my": [0, 65535], "my heeles": [0, 65535], "heeles and": [0, 65535], "and beware": [0, 65535], "beware of": [0, 65535], "e an": [0, 65535], "an y'are": [0, 65535], "y'are sad": [0, 65535], "sad signior": [0, 65535], "signior balthazar": [0, 65535], "balthazar pray": [0, 65535], "god our": [0, 65535], "our cheer": [0, 65535], "cheer may": [0, 65535], "may answer": [0, 65535], "answer my": [0, 65535], "my good": [0, 65535], "good will": [0, 65535], "will and": [0, 65535], "and your": [0, 65535], "your good": [0, 65535], "good welcom": [0, 65535], "welcom here": [0, 65535], "here bal": [0, 65535], "bal i": [0, 65535], "i hold": [0, 65535], "hold your": [0, 65535], "your dainties": [0, 65535], "dainties cheap": [0, 65535], "cheap sir": [0, 65535], "sir your": [0, 65535], "your welcom": [0, 65535], "welcom deer": [0, 65535], "deer e": [0, 65535], "an oh": [0, 65535], "oh signior": [0, 65535], "balthazar either": [0, 65535], "either at": [0, 65535], "at flesh": [0, 65535], "flesh or": [0, 65535], "or fish": [0, 65535], "fish a": [0, 65535], "a table": [0, 65535], "table full": [0, 65535], "of welcome": [0, 65535], "welcome makes": [0, 65535], "makes scarce": [0, 65535], "scarce one": [0, 65535], "one dainty": [0, 65535], "dainty dish": [0, 65535], "dish bal": [0, 65535], "bal good": [0, 65535], "good meat": [0, 65535], "meat sir": [0, 65535], "sir is": [0, 65535], "is co": [0, 65535], "co m": [0, 65535], "m mon": [0, 65535], "mon that": [0, 65535], "that euery": [0, 65535], "euery churle": [0, 65535], "churle affords": [0, 65535], "affords anti": [0, 65535], "anti and": [0, 65535], "and welcome": [0, 65535], "welcome more": [0, 65535], "more common": [0, 65535], "common for": [0, 65535], "for thats": [0, 65535], "thats nothing": [0, 65535], "but words": [0, 65535], "words bal": [0, 65535], "bal small": [0, 65535], "small cheere": [0, 65535], "cheere and": [0, 65535], "and great": [0, 65535], "great welcome": [0, 65535], "makes a": [0, 65535], "a merrie": [0, 65535], "merrie feast": [0, 65535], "feast anti": [0, 65535], "anti i": [0, 65535], "i to": [0, 65535], "a niggardly": [0, 65535], "niggardly host": [0, 65535], "host and": [0, 65535], "more sparing": [0, 65535], "sparing guest": [0, 65535], "guest but": [0, 65535], "but though": [0, 65535], "though my": [0, 65535], "my cates": [0, 65535], "cates be": [0, 65535], "be meane": [0, 65535], "meane take": [0, 65535], "take them": [0, 65535], "part better": [0, 65535], "better cheere": [0, 65535], "cheere may": [0, 65535], "may you": [0, 65535], "you haue": [0, 65535], "haue but": [0, 65535], "not with": [0, 65535], "with better": [0, 65535], "better hart": [0, 65535], "hart but": [0, 65535], "but soft": [0, 65535], "soft my": [0, 65535], "my doore": [0, 65535], "doore is": [0, 65535], "is lockt": [0, 65535], "lockt goe": [0, 65535], "goe bid": [0, 65535], "bid them": [0, 65535], "them let": [0, 65535], "let vs": [0, 65535], "vs in": [0, 65535], "in e": [0, 65535], "dro maud": [0, 65535], "maud briget": [0, 65535], "briget marian": [0, 65535], "marian cisley": [0, 65535], "cisley gillian": [0, 65535], "gillian ginn": [0, 65535], "ginn s": [0, 65535], "s dro": [0, 65535], "dro mome": [0, 65535], "mome malthorse": [0, 65535], "malthorse capon": [0, 65535], "capon coxcombe": [0, 65535], "coxcombe idiot": [0, 65535], "idiot patch": [0, 65535], "patch either": [0, 65535], "either get": [0, 65535], "get thee": [0, 65535], "thee from": [0, 65535], "the dore": [0, 65535], "dore or": [0, 65535], "or sit": [0, 65535], "sit downe": [0, 65535], "downe at": [0, 65535], "the hatch": [0, 65535], "hatch dost": [0, 65535], "dost thou": [0, 65535], "thou coniure": [0, 65535], "coniure for": [0, 65535], "for wenches": [0, 65535], "wenches that": [0, 65535], "that thou": [0, 65535], "thou calst": [0, 65535], "calst for": [0, 65535], "such store": [0, 65535], "store when": [0, 65535], "when one": [0, 65535], "one is": [0, 65535], "is one": [0, 65535], "one too": [0, 65535], "too many": [0, 65535], "many goe": [0, 65535], "goe get": [0, 65535], "dore e": [0, 65535], "dro what": [0, 65535], "what patch": [0, 65535], "patch is": [0, 65535], "is made": [0, 65535], "made our": [0, 65535], "our porter": [0, 65535], "porter my": [0, 65535], "my master": [0, 65535], "master stayes": [0, 65535], "stayes in": [0, 65535], "street s": [0, 65535], "dro let": [0, 65535], "him walke": [0, 65535], "walke from": [0, 65535], "from whence": [0, 65535], "whence he": [0, 65535], "came lest": [0, 65535], "lest hee": [0, 65535], "hee catch": [0, 65535], "catch cold": [0, 65535], "cold on's": [0, 65535], "on's feet": [0, 65535], "feet e": [0, 65535], "ant who": [0, 65535], "who talks": [0, 65535], "talks within": [0, 65535], "within there": [0, 65535], "there hoa": [0, 65535], "hoa open": [0, 65535], "open the": [0, 65535], "dore s": [0, 65535], "dro right": [0, 65535], "right sir": [0, 65535], "sir ile": [0, 65535], "ile tell": [0, 65535], "me wherefore": [0, 65535], "wherefore ant": [0, 65535], "ant wherefore": [0, 65535], "wherefore for": [0, 65535], "my dinner": [0, 65535], "dinner i": [0, 65535], "haue not": [0, 65535], "not din'd": [0, 65535], "din'd to": [0, 65535], "to day": [0, 65535], "day s": [0, 65535], "dro nor": [0, 65535], "nor to": [0, 65535], "day here": [0, 65535], "here you": [0, 65535], "must not": [0, 65535], "not come": [0, 65535], "come againe": [0, 65535], "againe when": [0, 65535], "you may": [0, 65535], "may anti": [0, 65535], "anti what": [0, 65535], "what art": [0, 65535], "art thou": [0, 65535], "thou that": [0, 65535], "that keep'st": [0, 65535], "keep'st mee": [0, 65535], "mee out": [0, 65535], "out from": [0, 65535], "the howse": [0, 65535], "howse i": [0, 65535], "i owe": [0, 65535], "owe s": [0, 65535], "dro the": [0, 65535], "the porter": [0, 65535], "porter for": [0, 65535], "time sir": [0, 65535], "sir and": [0, 65535], "my name": [0, 65535], "name is": [0, 65535], "is dromio": [0, 65535], "dromio e": [0, 65535], "dro o": [0, 65535], "o villaine": [0, 65535], "villaine thou": [0, 65535], "thou hast": [0, 65535], "hast stolne": [0, 65535], "stolne both": [0, 65535], "both mine": [0, 65535], "mine office": [0, 65535], "office and": [0, 65535], "name the": [0, 65535], "the one": [0, 65535], "one nere": [0, 65535], "nere got": [0, 65535], "got me": [0, 65535], "me credit": [0, 65535], "credit the": [0, 65535], "other mickle": [0, 65535], "mickle blame": [0, 65535], "blame if": [0, 65535], "if thou": [0, 65535], "thou hadst": [0, 65535], "hadst beene": [0, 65535], "beene dromio": [0, 65535], "dromio to": [0, 65535], "day in": [0, 65535], "in my": [0, 65535], "my place": [0, 65535], "place thou": [0, 65535], "thou wouldst": [0, 65535], "wouldst haue": [0, 65535], "haue chang'd": [0, 65535], "chang'd thy": [0, 65535], "thy face": [0, 65535], "face for": [0, 65535], "a name": [0, 65535], "name or": [0, 65535], "or thy": [0, 65535], "thy name": [0, 65535], "name for": [0, 65535], "for an": [0, 65535], "asse enter": [0, 65535], "enter luce": [0, 65535], "luce luce": [0, 65535], "luce what": [0, 65535], "a coile": [0, 65535], "coile is": [0, 65535], "is there": [0, 65535], "there dromio": [0, 65535], "dromio who": [0, 65535], "who are": [0, 65535], "are those": [0, 65535], "those at": [0, 65535], "gate e": [0, 65535], "let my": [0, 65535], "master in": [0, 65535], "in luce": [0, 65535], "luce faith": [0, 65535], "faith no": [0, 65535], "no hee": [0, 65535], "hee comes": [0, 65535], "comes too": [0, 65535], "late and": [0, 65535], "so tell": [0, 65535], "tell your": [0, 65535], "your master": [0, 65535], "master e": [0, 65535], "o lord": [0, 65535], "lord i": [0, 65535], "must laugh": [0, 65535], "laugh haue": [0, 65535], "haue at": [0, 65535], "a prouerbe": [0, 65535], "prouerbe shall": [0, 65535], "i set": [0, 65535], "set in": [0, 65535], "my staffe": [0, 65535], "staffe luce": [0, 65535], "luce haue": [0, 65535], "with another": [0, 65535], "another that's": [0, 65535], "that's when": [0, 65535], "when can": [0, 65535], "tell s": [0, 65535], "dro if": [0, 65535], "if thy": [0, 65535], "name be": [0, 65535], "be called": [0, 65535], "called luce": [0, 65535], "luce thou": [0, 65535], "hast an": [0, 65535], "an swer'd": [0, 65535], "swer'd him": [0, 65535], "him well": [0, 65535], "well anti": [0, 65535], "anti doe": [0, 65535], "doe you": [0, 65535], "you heare": [0, 65535], "heare you": [0, 65535], "you minion": [0, 65535], "minion you'll": [0, 65535], "you'll let": [0, 65535], "in i": [0, 65535], "i hope": [0, 65535], "hope luce": [0, 65535], "luce i": [0, 65535], "thought to": [0, 65535], "to haue": [0, 65535], "haue askt": [0, 65535], "askt you": [0, 65535], "you s": [0, 65535], "dro and": [0, 65535], "said no": [0, 65535], "no e": [0, 65535], "dro so": [0, 65535], "so come": [0, 65535], "come helpe": [0, 65535], "helpe well": [0, 65535], "well strooke": [0, 65535], "strooke there": [0, 65535], "was blow": [0, 65535], "blow for": [0, 65535], "for blow": [0, 65535], "blow anti": [0, 65535], "anti thou": [0, 65535], "thou baggage": [0, 65535], "baggage let": [0, 65535], "me in": [0, 65535], "luce can": [0, 65535], "tell for": [0, 65535], "for whose": [0, 65535], "whose sake": [0, 65535], "sake e": [0, 65535], "e drom": [0, 65535], "drom master": [0, 65535], "master knocke": [0, 65535], "knocke the": [0, 65535], "the doore": [0, 65535], "doore hard": [0, 65535], "hard luce": [0, 65535], "luce let": [0, 65535], "him knocke": [0, 65535], "knocke till": [0, 65535], "it ake": [0, 65535], "ake anti": [0, 65535], "anti you'll": [0, 65535], "you'll crie": [0, 65535], "crie for": [0, 65535], "this minion": [0, 65535], "minion if": [0, 65535], "beat the": [0, 65535], "doore downe": [0, 65535], "downe luce": [0, 65535], "what needs": [0, 65535], "needs all": [0, 65535], "all that": [0, 65535], "a paire": [0, 65535], "paire of": [0, 65535], "of stocks": [0, 65535], "stocks in": [0, 65535], "the towne": [0, 65535], "towne enter": [0, 65535], "enter adriana": [0, 65535], "adriana adr": [0, 65535], "adr who": [0, 65535], "that at": [0, 65535], "doore that": [0, 65535], "that keeps": [0, 65535], "keeps all": [0, 65535], "this noise": [0, 65535], "noise s": [0, 65535], "dro by": [0, 65535], "by my": [0, 65535], "my troth": [0, 65535], "troth your": [0, 65535], "your towne": [0, 65535], "towne is": [0, 65535], "is troubled": [0, 65535], "troubled with": [0, 65535], "with vnruly": [0, 65535], "vnruly boies": [0, 65535], "boies anti": [0, 65535], "anti are": [0, 65535], "you there": [0, 65535], "there wife": [0, 65535], "wife you": [0, 65535], "you might": [0, 65535], "might haue": [0, 65535], "haue come": [0, 65535], "come before": [0, 65535], "before adri": [0, 65535], "adri your": [0, 65535], "your wife": [0, 65535], "wife sir": [0, 65535], "sir knaue": [0, 65535], "knaue go": [0, 65535], "go get": [0, 65535], "get you": [0, 65535], "you from": [0, 65535], "you went": [0, 65535], "went in": [0, 65535], "in paine": [0, 65535], "paine master": [0, 65535], "master this": [0, 65535], "this knaue": [0, 65535], "knaue wold": [0, 65535], "wold goe": [0, 65535], "goe sore": [0, 65535], "sore angelo": [0, 65535], "angelo heere": [0, 65535], "heere is": [0, 65535], "is neither": [0, 65535], "neither cheere": [0, 65535], "cheere sir": [0, 65535], "sir nor": [0, 65535], "nor welcome": [0, 65535], "welcome we": [0, 65535], "we would": [0, 65535], "would faine": [0, 65535], "faine haue": [0, 65535], "haue either": [0, 65535], "either baltz": [0, 65535], "baltz in": [0, 65535], "in debating": [0, 65535], "debating which": [0, 65535], "was best": [0, 65535], "best wee": [0, 65535], "wee shall": [0, 65535], "shall part": [0, 65535], "part with": [0, 65535], "with neither": [0, 65535], "neither e": [0, 65535], "dro they": [0, 65535], "they stand": [0, 65535], "stand at": [0, 65535], "doore master": [0, 65535], "master bid": [0, 65535], "them welcome": [0, 65535], "welcome hither": [0, 65535], "hither anti": [0, 65535], "anti there": [0, 65535], "is something": [0, 65535], "something in": [0, 65535], "the winde": [0, 65535], "winde that": [0, 65535], "we cannot": [0, 65535], "cannot get": [0, 65535], "dro you": [0, 65535], "would say": [0, 65535], "say so": [0, 65535], "so master": [0, 65535], "master if": [0, 65535], "if your": [0, 65535], "your garments": [0, 65535], "garments were": [0, 65535], "were thin": [0, 65535], "thin your": [0, 65535], "your cake": [0, 65535], "cake here": [0, 65535], "here is": [0, 65535], "is warme": [0, 65535], "warme within": [0, 65535], "within you": [0, 65535], "you stand": [0, 65535], "stand here": [0, 65535], "cold it": [0, 65535], "man mad": [0, 65535], "mad as": [0, 65535], "a bucke": [0, 65535], "bucke to": [0, 65535], "so bought": [0, 65535], "bought and": [0, 65535], "and sold": [0, 65535], "sold ant": [0, 65535], "ant go": [0, 65535], "go fetch": [0, 65535], "fetch me": [0, 65535], "me something": [0, 65535], "something ile": [0, 65535], "ile break": [0, 65535], "break ope": [0, 65535], "ope the": [0, 65535], "gate s": [0, 65535], "dro breake": [0, 65535], "breake any": [0, 65535], "any breaking": [0, 65535], "breaking here": [0, 65535], "and ile": [0, 65535], "ile breake": [0, 65535], "breake your": [0, 65535], "your knaues": [0, 65535], "knaues pate": [0, 65535], "pate e": [0, 65535], "dro a": [0, 65535], "man may": [0, 65535], "may breake": [0, 65535], "breake a": [0, 65535], "word with": [0, 65535], "your sir": [0, 65535], "and words": [0, 65535], "words are": [0, 65535], "are but": [0, 65535], "but winde": [0, 65535], "winde i": [0, 65535], "i and": [0, 65535], "and breake": [0, 65535], "breake it": [0, 65535], "in your": [0, 65535], "your face": [0, 65535], "face so": [0, 65535], "he break": [0, 65535], "break it": [0, 65535], "it not": [0, 65535], "not behinde": [0, 65535], "behinde s": [0, 65535], "dro it": [0, 65535], "it seemes": [0, 65535], "seemes thou": [0, 65535], "thou want'st": [0, 65535], "want'st breaking": [0, 65535], "breaking out": [0, 65535], "out vpon": [0, 65535], "vpon thee": [0, 65535], "thee hinde": [0, 65535], "hinde e": [0, 65535], "dro here's": [0, 65535], "here's too": [0, 65535], "much out": [0, 65535], "thee i": [0, 65535], "i pray": [0, 65535], "pray thee": [0, 65535], "thee let": [0, 65535], "in s": [0, 65535], "dro i": [0, 65535], "i when": [0, 65535], "when fowles": [0, 65535], "fowles haue": [0, 65535], "haue no": [0, 65535], "no feathers": [0, 65535], "feathers and": [0, 65535], "and fish": [0, 65535], "fish haue": [0, 65535], "no fin": [0, 65535], "fin ant": [0, 65535], "ant well": [0, 65535], "well ile": [0, 65535], "breake in": [0, 65535], "in go": [0, 65535], "go borrow": [0, 65535], "borrow me": [0, 65535], "a crow": [0, 65535], "crow e": [0, 65535], "crow without": [0, 65535], "without feather": [0, 65535], "feather master": [0, 65535], "master meane": [0, 65535], "meane you": [0, 65535], "so for": [0, 65535], "fish without": [0, 65535], "a finne": [0, 65535], "finne ther's": [0, 65535], "ther's a": [0, 65535], "a fowle": [0, 65535], "fowle without": [0, 65535], "a fether": [0, 65535], "fether if": [0, 65535], "if a": [0, 65535], "crow help": [0, 65535], "help vs": [0, 65535], "in sirra": [0, 65535], "sirra wee'll": [0, 65535], "wee'll plucke": [0, 65535], "plucke a": [0, 65535], "crow together": [0, 65535], "together ant": [0, 65535], "thee gon": [0, 65535], "gon fetch": [0, 65535], "me an": [0, 65535], "an iron": [0, 65535], "iron crow": [0, 65535], "crow balth": [0, 65535], "balth haue": [0, 65535], "haue patience": [0, 65535], "patience sir": [0, 65535], "sir oh": [0, 65535], "oh let": [0, 65535], "not be": [0, 65535], "so heerein": [0, 65535], "heerein you": [0, 65535], "you warre": [0, 65535], "warre against": [0, 65535], "against your": [0, 65535], "your reputation": [0, 65535], "reputation and": [0, 65535], "and draw": [0, 65535], "draw within": [0, 65535], "within the": [0, 65535], "the compasse": [0, 65535], "compasse of": [0, 65535], "of suspect": [0, 65535], "suspect th'": [0, 65535], "th' vnuiolated": [0, 65535], "vnuiolated honor": [0, 65535], "honor of": [0, 65535], "wife once": [0, 65535], "once this": [0, 65535], "this your": [0, 65535], "your long": [0, 65535], "long experience": [0, 65535], "experience of": [0, 65535], "your wisedome": [0, 65535], "wisedome her": [0, 65535], "her sober": [0, 65535], "sober vertue": [0, 65535], "vertue yeares": [0, 65535], "yeares and": [0, 65535], "and modestie": [0, 65535], "modestie plead": [0, 65535], "plead on": [0, 65535], "your part": [0, 65535], "part some": [0, 65535], "some cause": [0, 65535], "cause to": [0, 65535], "you vnknowne": [0, 65535], "vnknowne and": [0, 65535], "and doubt": [0, 65535], "doubt not": [0, 65535], "not sir": [0, 65535], "she will": [0, 65535], "well excuse": [0, 65535], "excuse why": [0, 65535], "why at": [0, 65535], "the dores": [0, 65535], "dores are": [0, 65535], "are made": [0, 65535], "made against": [0, 65535], "against you": [0, 65535], "be rul'd": [0, 65535], "rul'd by": [0, 65535], "by me": [0, 65535], "me depart": [0, 65535], "depart in": [0, 65535], "in patience": [0, 65535], "patience and": [0, 65535], "vs to": [0, 65535], "the tyger": [0, 65535], "tyger all": [0, 65535], "dinner and": [0, 65535], "and about": [0, 65535], "about euening": [0, 65535], "euening come": [0, 65535], "come your": [0, 65535], "your selfe": [0, 65535], "selfe alone": [0, 65535], "alone to": [0, 65535], "the reason": [0, 65535], "reason of": [0, 65535], "this strange": [0, 65535], "strange restraint": [0, 65535], "restraint if": [0, 65535], "if by": [0, 65535], "by strong": [0, 65535], "strong hand": [0, 65535], "hand you": [0, 65535], "you offer": [0, 65535], "offer to": [0, 65535], "to breake": [0, 65535], "in now": [0, 65535], "now in": [0, 65535], "the stirring": [0, 65535], "stirring passage": [0, 65535], "day a": [0, 65535], "a vulgar": [0, 65535], "vulgar comment": [0, 65535], "comment will": [0, 65535], "will be": [0, 65535], "be made": [0, 65535], "that supposed": [0, 65535], "supposed by": [0, 65535], "the common": [0, 65535], "common rowt": [0, 65535], "rowt against": [0, 65535], "your yet": [0, 65535], "yet vngalled": [0, 65535], "vngalled estimation": [0, 65535], "estimation that": [0, 65535], "that may": [0, 65535], "may with": [0, 65535], "with foule": [0, 65535], "foule intrusion": [0, 65535], "intrusion enter": [0, 65535], "enter in": [0, 65535], "and dwell": [0, 65535], "dwell vpon": [0, 65535], "vpon your": [0, 65535], "your graue": [0, 65535], "graue when": [0, 65535], "are dead": [0, 65535], "dead for": [0, 65535], "for slander": [0, 65535], "slander liues": [0, 65535], "liues vpon": [0, 65535], "vpon succession": [0, 65535], "succession for": [0, 65535], "for euer": [0, 65535], "euer hows'd": [0, 65535], "hows'd where": [0, 65535], "it gets": [0, 65535], "gets possession": [0, 65535], "possession anti": [0, 65535], "anti you": [0, 65535], "haue preuail'd": [0, 65535], "preuail'd i": [0, 65535], "will depart": [0, 65535], "in quiet": [0, 65535], "quiet and": [0, 65535], "in despight": [0, 65535], "despight of": [0, 65535], "of mirth": [0, 65535], "mirth meane": [0, 65535], "meane to": [0, 65535], "be merrie": [0, 65535], "merrie i": [0, 65535], "know a": [0, 65535], "a wench": [0, 65535], "wench of": [0, 65535], "of excellent": [0, 65535], "excellent discourse": [0, 65535], "discourse prettie": [0, 65535], "prettie and": [0, 65535], "and wittie": [0, 65535], "wittie wilde": [0, 65535], "wilde and": [0, 65535], "yet too": [0, 65535], "too gentle": [0, 65535], "gentle there": [0, 65535], "there will": [0, 65535], "will we": [0, 65535], "we dine": [0, 65535], "dine this": [0, 65535], "this woman": [0, 65535], "woman that": [0, 65535], "i meane": [0, 65535], "meane my": [0, 65535], "wife but": [0, 65535], "i protest": [0, 65535], "protest without": [0, 65535], "without desert": [0, 65535], "desert hath": [0, 65535], "hath oftentimes": [0, 65535], "oftentimes vpbraided": [0, 65535], "vpbraided me": [0, 65535], "me withall": [0, 65535], "withall to": [0, 65535], "to her": [0, 65535], "her will": [0, 65535], "we to": [0, 65535], "dinner get": [0, 65535], "you home": [0, 65535], "and fetch": [0, 65535], "the chaine": [0, 65535], "chaine by": [0, 65535], "this i": [0, 65535], "know 'tis": [0, 65535], "'tis made": [0, 65535], "made bring": [0, 65535], "pray you": [0, 65535], "the porpentine": [0, 65535], "porpentine for": [0, 65535], "for there's": [0, 65535], "there's the": [0, 65535], "house that": [0, 65535], "that chaine": [0, 65535], "chaine will": [0, 65535], "will i": [0, 65535], "i bestow": [0, 65535], "bestow be": [0, 65535], "be it": [0, 65535], "for nothing": [0, 65535], "but to": [0, 65535], "to spight": [0, 65535], "spight my": [0, 65535], "wife vpon": [0, 65535], "vpon mine": [0, 65535], "mine hostesse": [0, 65535], "hostesse there": [0, 65535], "there good": [0, 65535], "good sir": [0, 65535], "sir make": [0, 65535], "make haste": [0, 65535], "haste since": [0, 65535], "since mine": [0, 65535], "mine owne": [0, 65535], "owne doores": [0, 65535], "doores refuse": [0, 65535], "refuse to": [0, 65535], "to entertaine": [0, 65535], "entertaine me": [0, 65535], "me ile": [0, 65535], "ile knocke": [0, 65535], "knocke else": [0, 65535], "else where": [0, 65535], "where to": [0, 65535], "see if": [0, 65535], "if they'll": [0, 65535], "they'll disdaine": [0, 65535], "disdaine me": [0, 65535], "me ang": [0, 65535], "ang ile": [0, 65535], "ile meet": [0, 65535], "meet you": [0, 65535], "that place": [0, 65535], "place some": [0, 65535], "some houre": [0, 65535], "houre hence": [0, 65535], "hence anti": [0, 65535], "anti do": [0, 65535], "do so": [0, 65535], "so this": [0, 65535], "this iest": [0, 65535], "iest shall": [0, 65535], "shall cost": [0, 65535], "cost me": [0, 65535], "me some": [0, 65535], "some expence": [0, 65535], "expence exeunt": [0, 65535], "exeunt enter": [0, 65535], "enter iuliana": [0, 65535], "iuliana with": [0, 65535], "with antipholus": [0, 65535], "of siracusia": [0, 65535], "siracusia iulia": [0, 65535], "iulia and": [0, 65535], "and may": [0, 65535], "may it": [0, 65535], "it be": [0, 65535], "haue quite": [0, 65535], "quite forgot": [0, 65535], "forgot a": [0, 65535], "a husbands": [0, 65535], "husbands office": [0, 65535], "office shall": [0, 65535], "shall antipholus": [0, 65535], "antipholus euen": [0, 65535], "euen in": [0, 65535], "spring of": [0, 65535], "of loue": [0, 65535], "loue thy": [0, 65535], "thy loue": [0, 65535], "loue springs": [0, 65535], "springs rot": [0, 65535], "rot shall": [0, 65535], "shall loue": [0, 65535], "loue in": [0, 65535], "in buildings": [0, 65535], "buildings grow": [0, 65535], "grow so": [0, 65535], "so ruinate": [0, 65535], "ruinate if": [0, 65535], "did wed": [0, 65535], "wed my": [0, 65535], "my sister": [0, 65535], "sister for": [0, 65535], "her wealth": [0, 65535], "wealth then": [0, 65535], "then for": [0, 65535], "her wealths": [0, 65535], "wealths sake": [0, 65535], "sake vse": [0, 65535], "vse her": [0, 65535], "her with": [0, 65535], "with more": [0, 65535], "more kindnesse": [0, 65535], "kindnesse or": [0, 65535], "or if": [0, 65535], "like else": [0, 65535], "where doe": [0, 65535], "doe it": [0, 65535], "by stealth": [0, 65535], "stealth muffle": [0, 65535], "muffle your": [0, 65535], "your false": [0, 65535], "false loue": [0, 65535], "loue with": [0, 65535], "with some": [0, 65535], "some shew": [0, 65535], "shew of": [0, 65535], "of blindnesse": [0, 65535], "blindnesse let": [0, 65535], "let not": [0, 65535], "not my": [0, 65535], "sister read": [0, 65535], "your eye": [0, 65535], "eye be": [0, 65535], "be not": [0, 65535], "not thy": [0, 65535], "thy tongue": [0, 65535], "tongue thy": [0, 65535], "thy owne": [0, 65535], "owne shames": [0, 65535], "shames orator": [0, 65535], "orator looke": [0, 65535], "looke sweet": [0, 65535], "sweet speake": [0, 65535], "speake faire": [0, 65535], "faire become": [0, 65535], "become disloyaltie": [0, 65535], "disloyaltie apparell": [0, 65535], "apparell vice": [0, 65535], "vice like": [0, 65535], "like vertues": [0, 65535], "vertues harbenger": [0, 65535], "harbenger beare": [0, 65535], "beare a": [0, 65535], "a faire": [0, 65535], "faire presence": [0, 65535], "presence though": [0, 65535], "though your": [0, 65535], "your heart": [0, 65535], "heart be": [0, 65535], "be tainted": [0, 65535], "tainted teach": [0, 65535], "teach sinne": [0, 65535], "sinne the": [0, 65535], "the carriage": [0, 65535], "carriage of": [0, 65535], "a holy": [0, 65535], "holy saint": [0, 65535], "saint be": [0, 65535], "be secret": [0, 65535], "secret false": [0, 65535], "false what": [0, 65535], "what need": [0, 65535], "need she": [0, 65535], "she be": [0, 65535], "be acquainted": [0, 65535], "acquainted what": [0, 65535], "what simple": [0, 65535], "simple thiefe": [0, 65535], "thiefe brags": [0, 65535], "brags of": [0, 65535], "his owne": [0, 65535], "owne attaine": [0, 65535], "attaine 'tis": [0, 65535], "'tis double": [0, 65535], "double wrong": [0, 65535], "wrong to": [0, 65535], "to truant": [0, 65535], "truant with": [0, 65535], "your bed": [0, 65535], "bed and": [0, 65535], "her read": [0, 65535], "in thy": [0, 65535], "thy lookes": [0, 65535], "lookes at": [0, 65535], "at boord": [0, 65535], "boord shame": [0, 65535], "shame hath": [0, 65535], "hath a": [0, 65535], "a bastard": [0, 65535], "bastard fame": [0, 65535], "fame well": [0, 65535], "well managed": [0, 65535], "managed ill": [0, 65535], "ill deeds": [0, 65535], "deeds is": [0, 65535], "is doubled": [0, 65535], "doubled with": [0, 65535], "an euill": [0, 65535], "euill word": [0, 65535], "word alas": [0, 65535], "alas poore": [0, 65535], "poore women": [0, 65535], "women make": [0, 65535], "make vs": [0, 65535], "vs not": [0, 65535], "not beleeue": [0, 65535], "beleeue being": [0, 65535], "being compact": [0, 65535], "compact of": [0, 65535], "of credit": [0, 65535], "credit that": [0, 65535], "you loue": [0, 65535], "loue vs": [0, 65535], "vs though": [0, 65535], "though others": [0, 65535], "others haue": [0, 65535], "haue the": [0, 65535], "the arme": [0, 65535], "arme shew": [0, 65535], "shew vs": [0, 65535], "vs the": [0, 65535], "the sleeue": [0, 65535], "sleeue we": [0, 65535], "we in": [0, 65535], "your motion": [0, 65535], "motion turne": [0, 65535], "turne and": [0, 65535], "may moue": [0, 65535], "moue vs": [0, 65535], "vs then": [0, 65535], "then gentle": [0, 65535], "gentle brother": [0, 65535], "brother get": [0, 65535], "you in": [0, 65535], "in againe": [0, 65535], "againe comfort": [0, 65535], "comfort my": [0, 65535], "sister cheere": [0, 65535], "cheere her": [0, 65535], "her call": [0, 65535], "call her": [0, 65535], "her wise": [0, 65535], "wise 'tis": [0, 65535], "'tis holy": [0, 65535], "holy sport": [0, 65535], "sport to": [0, 65535], "little vaine": [0, 65535], "vaine when": [0, 65535], "the sweet": [0, 65535], "sweet breath": [0, 65535], "breath of": [0, 65535], "of flatterie": [0, 65535], "flatterie conquers": [0, 65535], "conquers strife": [0, 65535], "strife s": [0, 65535], "s anti": [0, 65535], "anti sweete": [0, 65535], "sweete mistris": [0, 65535], "mistris what": [0, 65535], "what your": [0, 65535], "is else": [0, 65535], "else i": [0, 65535], "know not": [0, 65535], "not nor": [0, 65535], "nor by": [0, 65535], "by what": [0, 65535], "what wonder": [0, 65535], "do hit": [0, 65535], "hit of": [0, 65535], "of mine": [0, 65535], "mine lesse": [0, 65535], "lesse in": [0, 65535], "your knowledge": [0, 65535], "knowledge and": [0, 65535], "your grace": [0, 65535], "grace you": [0, 65535], "you show": [0, 65535], "show not": [0, 65535], "not then": [0, 65535], "then our": [0, 65535], "our earths": [0, 65535], "earths wonder": [0, 65535], "wonder more": [0, 65535], "more then": [0, 65535], "then earth": [0, 65535], "earth diuine": [0, 65535], "diuine teach": [0, 65535], "teach me": [0, 65535], "me deere": [0, 65535], "deere creature": [0, 65535], "creature how": [0, 65535], "to thinke": [0, 65535], "thinke and": [0, 65535], "and speake": [0, 65535], "speake lay": [0, 65535], "lay open": [0, 65535], "open to": [0, 65535], "my earthie": [0, 65535], "earthie grosse": [0, 65535], "grosse conceit": [0, 65535], "conceit smothred": [0, 65535], "smothred in": [0, 65535], "in errors": [0, 65535], "errors feeble": [0, 65535], "feeble shallow": [0, 65535], "shallow weake": [0, 65535], "weake the": [0, 65535], "the foulded": [0, 65535], "foulded meaning": [0, 65535], "meaning of": [0, 65535], "your words": [0, 65535], "words deceit": [0, 65535], "deceit against": [0, 65535], "against my": [0, 65535], "my soules": [0, 65535], "soules pure": [0, 65535], "pure truth": [0, 65535], "truth why": [0, 65535], "why labour": [0, 65535], "labour you": [0, 65535], "it wander": [0, 65535], "wander in": [0, 65535], "an vnknowne": [0, 65535], "vnknowne field": [0, 65535], "field are": [0, 65535], "a god": [0, 65535], "god would": [0, 65535], "would you": [0, 65535], "you create": [0, 65535], "create me": [0, 65535], "me new": [0, 65535], "new transforme": [0, 65535], "transforme me": [0, 65535], "me then": [0, 65535], "and to": [0, 65535], "to your": [0, 65535], "your powre": [0, 65535], "powre ile": [0, 65535], "ile yeeld": [0, 65535], "yeeld but": [0, 65535], "if that": [0, 65535], "am i": [0, 65535], "i then": [0, 65535], "then well": [0, 65535], "know your": [0, 65535], "your weeping": [0, 65535], "weeping sister": [0, 65535], "sister is": [0, 65535], "no wife": [0, 65535], "wife of": [0, 65535], "mine nor": [0, 65535], "her bed": [0, 65535], "bed no": [0, 65535], "no homage": [0, 65535], "homage doe": [0, 65535], "doe i": [0, 65535], "owe farre": [0, 65535], "farre more": [0, 65535], "more farre": [0, 65535], "you doe": [0, 65535], "i decline": [0, 65535], "decline oh": [0, 65535], "oh traine": [0, 65535], "traine me": [0, 65535], "me not": [0, 65535], "not sweet": [0, 65535], "sweet mermaide": [0, 65535], "mermaide with": [0, 65535], "with thy": [0, 65535], "thy note": [0, 65535], "note to": [0, 65535], "to drowne": [0, 65535], "drowne me": [0, 65535], "thy sister": [0, 65535], "sister floud": [0, 65535], "floud of": [0, 65535], "of teares": [0, 65535], "teares sing": [0, 65535], "sing siren": [0, 65535], "siren for": [0, 65535], "for thy": [0, 65535], "thy selfe": [0, 65535], "selfe and": [0, 65535], "will dote": [0, 65535], "dote spread": [0, 65535], "spread ore": [0, 65535], "ore the": [0, 65535], "the siluer": [0, 65535], "siluer waues": [0, 65535], "waues thy": [0, 65535], "thy golden": [0, 65535], "golden haires": [0, 65535], "haires and": [0, 65535], "a bud": [0, 65535], "bud ile": [0, 65535], "ile take": [0, 65535], "take thee": [0, 65535], "thee and": [0, 65535], "there lie": [0, 65535], "lie and": [0, 65535], "that glorious": [0, 65535], "glorious supposition": [0, 65535], "supposition thinke": [0, 65535], "thinke he": [0, 65535], "he gaines": [0, 65535], "gaines by": [0, 65535], "by death": [0, 65535], "death that": [0, 65535], "that hath": [0, 65535], "hath such": [0, 65535], "such meanes": [0, 65535], "meanes to": [0, 65535], "die let": [0, 65535], "let loue": [0, 65535], "loue being": [0, 65535], "being light": [0, 65535], "light be": [0, 65535], "drowned if": [0, 65535], "she sinke": [0, 65535], "sinke luc": [0, 65535], "luc what": [0, 65535], "what are": [0, 65535], "you mad": [0, 65535], "mad that": [0, 65535], "doe reason": [0, 65535], "reason so": [0, 65535], "so ant": [0, 65535], "ant not": [0, 65535], "not mad": [0, 65535], "mad but": [0, 65535], "but mated": [0, 65535], "mated how": [0, 65535], "how i": [0, 65535], "i doe": [0, 65535], "doe not": [0, 65535], "know luc": [0, 65535], "luc it": [0, 65535], "a fault": [0, 65535], "fault that": [0, 65535], "that springeth": [0, 65535], "springeth from": [0, 65535], "from your": [0, 65535], "your eie": [0, 65535], "eie ant": [0, 65535], "ant for": [0, 65535], "for gazing": [0, 65535], "gazing on": [0, 65535], "your beames": [0, 65535], "beames faire": [0, 65535], "faire sun": [0, 65535], "sun being": [0, 65535], "being by": [0, 65535], "by luc": [0, 65535], "luc gaze": [0, 65535], "gaze when": [0, 65535], "you should": [0, 65535], "should and": [0, 65535], "that will": [0, 65535], "will cleere": [0, 65535], "cleere your": [0, 65535], "your sight": [0, 65535], "sight ant": [0, 65535], "ant as": [0, 65535], "as good": [0, 65535], "good to": [0, 65535], "to winke": [0, 65535], "winke sweet": [0, 65535], "sweet loue": [0, 65535], "loue as": [0, 65535], "as looke": [0, 65535], "looke on": [0, 65535], "on night": [0, 65535], "night luc": [0, 65535], "luc why": [0, 65535], "why call": [0, 65535], "call you": [0, 65535], "you me": [0, 65535], "me loue": [0, 65535], "loue call": [0, 65535], "call my": [0, 65535], "sister so": [0, 65535], "ant thy": [0, 65535], "thy sisters": [0, 65535], "sisters sister": [0, 65535], "sister luc": [0, 65535], "luc that's": [0, 65535], "that's my": [0, 65535], "sister ant": [0, 65535], "ant no": [0, 65535], "is thy": [0, 65535], "selfe mine": [0, 65535], "owne selfes": [0, 65535], "selfes better": [0, 65535], "better part": [0, 65535], "part mine": [0, 65535], "mine eies": [0, 65535], "eies cleere": [0, 65535], "cleere eie": [0, 65535], "eie my": [0, 65535], "my deere": [0, 65535], "deere hearts": [0, 65535], "hearts deerer": [0, 65535], "deerer heart": [0, 65535], "heart my": [0, 65535], "my foode": [0, 65535], "foode my": [0, 65535], "my fortune": [0, 65535], "fortune and": [0, 65535], "my sweet": [0, 65535], "sweet hopes": [0, 65535], "hopes aime": [0, 65535], "aime my": [0, 65535], "my sole": [0, 65535], "sole earths": [0, 65535], "earths heauen": [0, 65535], "heauen and": [0, 65535], "my heauens": [0, 65535], "heauens claime": [0, 65535], "claime luc": [0, 65535], "luc all": [0, 65535], "this my": [0, 65535], "is or": [0, 65535], "or else": [0, 65535], "else should": [0, 65535], "should be": [0, 65535], "be ant": [0, 65535], "ant call": [0, 65535], "call thy": [0, 65535], "selfe sister": [0, 65535], "sister sweet": [0, 65535], "sweet for": [0, 65535], "for i": [0, 65535], "am thee": [0, 65535], "thee thee": [0, 65535], "thee will": [0, 65535], "i loue": [0, 65535], "loue and": [0, 65535], "with thee": [0, 65535], "thee lead": [0, 65535], "lead my": [0, 65535], "my life": [0, 65535], "life thou": [0, 65535], "hast no": [0, 65535], "no husband": [0, 65535], "husband yet": [0, 65535], "yet nor": [0, 65535], "nor i": [0, 65535], "i no": [0, 65535], "wife giue": [0, 65535], "giue me": [0, 65535], "me thy": [0, 65535], "thy hand": [0, 65535], "hand luc": [0, 65535], "luc oh": [0, 65535], "oh soft": [0, 65535], "soft sir": [0, 65535], "sir hold": [0, 65535], "hold you": [0, 65535], "you still": [0, 65535], "still ile": [0, 65535], "ile fetch": [0, 65535], "fetch my": [0, 65535], "sister to": [0, 65535], "get her": [0, 65535], "her good": [0, 65535], "will exit": [0, 65535], "exit enter": [0, 65535], "enter dromio": [0, 65535], "dromio siracusia": [0, 65535], "siracusia ant": [0, 65535], "ant why": [0, 65535], "how now": [0, 65535], "now dromio": [0, 65535], "dromio where": [0, 65535], "where run'st": [0, 65535], "run'st thou": [0, 65535], "thou so": [0, 65535], "so fast": [0, 65535], "fast s": [0, 65535], "dro doe": [0, 65535], "know me": [0, 65535], "me sir": [0, 65535], "sir am": [0, 65535], "i dromio": [0, 65535], "dromio am": [0, 65535], "i your": [0, 65535], "your man": [0, 65535], "man am": [0, 65535], "i my": [0, 65535], "my selfe": [0, 65535], "selfe ant": [0, 65535], "ant thou": [0, 65535], "art dromio": [0, 65535], "dromio thou": [0, 65535], "art my": [0, 65535], "my man": [0, 65535], "man thou": [0, 65535], "art thy": [0, 65535], "selfe dro": [0, 65535], "am an": [0, 65535], "asse i": [0, 65535], "am a": [0, 65535], "a womans": [0, 65535], "womans man": [0, 65535], "besides my": [0, 65535], "ant what": [0, 65535], "what womans": [0, 65535], "how besides": [0, 65535], "besides thy": [0, 65535], "dro marrie": [0, 65535], "marrie sir": [0, 65535], "sir besides": [0, 65535], "selfe i": [0, 65535], "am due": [0, 65535], "due to": [0, 65535], "a woman": [0, 65535], "woman one": [0, 65535], "that claimes": [0, 65535], "claimes me": [0, 65535], "me one": [0, 65535], "that haunts": [0, 65535], "haunts me": [0, 65535], "will haue": [0, 65535], "haue me": [0, 65535], "me anti": [0, 65535], "what claime": [0, 65535], "claime laies": [0, 65535], "laies she": [0, 65535], "she to": [0, 65535], "to thee": [0, 65535], "thee dro": [0, 65535], "marry sir": [0, 65535], "sir such": [0, 65535], "such claime": [0, 65535], "claime as": [0, 65535], "would lay": [0, 65535], "lay to": [0, 65535], "your horse": [0, 65535], "horse and": [0, 65535], "would haue": [0, 65535], "me as": [0, 65535], "a beast": [0, 65535], "beast not": [0, 65535], "not that": [0, 65535], "i beeing": [0, 65535], "beeing a": [0, 65535], "beast she": [0, 65535], "she being": [0, 65535], "a verie": [0, 65535], "verie beastly": [0, 65535], "beastly creature": [0, 65535], "creature layes": [0, 65535], "layes claime": [0, 65535], "claime to": [0, 65535], "she dro": [0, 65535], "very reuerent": [0, 65535], "reuerent body": [0, 65535], "body i": [0, 65535], "i such": [0, 65535], "one as": [0, 65535], "may not": [0, 65535], "not speake": [0, 65535], "speake of": [0, 65535], "of without": [0, 65535], "without he": [0, 65535], "sir reuerence": [0, 65535], "reuerence i": [0, 65535], "but leane": [0, 65535], "leane lucke": [0, 65535], "lucke in": [0, 65535], "the match": [0, 65535], "match and": [0, 65535], "yet is": [0, 65535], "she a": [0, 65535], "a wondrous": [0, 65535], "wondrous fat": [0, 65535], "fat marriage": [0, 65535], "marriage anti": [0, 65535], "anti how": [0, 65535], "how dost": [0, 65535], "meane a": [0, 65535], "a fat": [0, 65535], "marriage dro": [0, 65535], "sir she's": [0, 65535], "she's the": [0, 65535], "the kitchin": [0, 65535], "kitchin wench": [0, 65535], "wench al": [0, 65535], "al grease": [0, 65535], "grease and": [0, 65535], "not what": [0, 65535], "what vse": [0, 65535], "vse to": [0, 65535], "her too": [0, 65535], "too but": [0, 65535], "a lampe": [0, 65535], "lampe of": [0, 65535], "and run": [0, 65535], "run from": [0, 65535], "from her": [0, 65535], "her by": [0, 65535], "by her": [0, 65535], "her owne": [0, 65535], "owne light": [0, 65535], "light i": [0, 65535], "i warrant": [0, 65535], "warrant her": [0, 65535], "her ragges": [0, 65535], "ragges and": [0, 65535], "the tallow": [0, 65535], "tallow in": [0, 65535], "in them": [0, 65535], "them will": [0, 65535], "will burne": [0, 65535], "burne a": [0, 65535], "a poland": [0, 65535], "poland winter": [0, 65535], "winter if": [0, 65535], "she liues": [0, 65535], "liues till": [0, 65535], "till doomesday": [0, 65535], "doomesday she'l": [0, 65535], "she'l burne": [0, 65535], "a weeke": [0, 65535], "weeke longer": [0, 65535], "longer then": [0, 65535], "whole world": [0, 65535], "world anti": [0, 65535], "what complexion": [0, 65535], "complexion is": [0, 65535], "she of": [0, 65535], "of dro": [0, 65535], "dro swart": [0, 65535], "swart like": [0, 65535], "like my": [0, 65535], "my shoo": [0, 65535], "shoo but": [0, 65535], "face nothing": [0, 65535], "nothing like": [0, 65535], "like so": [0, 65535], "so cleane": [0, 65535], "cleane kept": [0, 65535], "kept for": [0, 65535], "why she": [0, 65535], "she sweats": [0, 65535], "sweats a": [0, 65535], "may goe": [0, 65535], "goe o": [0, 65535], "o uer": [0, 65535], "uer shooes": [0, 65535], "shooes in": [0, 65535], "the grime": [0, 65535], "grime of": [0, 65535], "it anti": [0, 65535], "anti that's": [0, 65535], "that water": [0, 65535], "water will": [0, 65535], "will mend": [0, 65535], "mend dro": [0, 65535], "dro no": [0, 65535], "sir 'tis": [0, 65535], "'tis in": [0, 65535], "in graine": [0, 65535], "graine noahs": [0, 65535], "noahs flood": [0, 65535], "flood could": [0, 65535], "not do": [0, 65535], "anti what's": [0, 65535], "what's her": [0, 65535], "her name": [0, 65535], "name dro": [0, 65535], "dro nell": [0, 65535], "nell sir": [0, 65535], "is three": [0, 65535], "three quarters": [0, 65535], "quarters that's": [0, 65535], "that's an": [0, 65535], "an ell": [0, 65535], "ell and": [0, 65535], "and three": [0, 65535], "quarters will": [0, 65535], "will not": [0, 65535], "not measure": [0, 65535], "measure her": [0, 65535], "her from": [0, 65535], "from hip": [0, 65535], "hip to": [0, 65535], "to hip": [0, 65535], "hip anti": [0, 65535], "anti then": [0, 65535], "she beares": [0, 65535], "beares some": [0, 65535], "some bredth": [0, 65535], "bredth dro": [0, 65535], "no longer": [0, 65535], "longer from": [0, 65535], "from head": [0, 65535], "head to": [0, 65535], "to foot": [0, 65535], "foot then": [0, 65535], "then from": [0, 65535], "from hippe": [0, 65535], "hippe to": [0, 65535], "to hippe": [0, 65535], "hippe she": [0, 65535], "is sphericall": [0, 65535], "sphericall like": [0, 65535], "a globe": [0, 65535], "globe i": [0, 65535], "find out": [0, 65535], "out countries": [0, 65535], "countries in": [0, 65535], "her anti": [0, 65535], "anti in": [0, 65535], "in what": [0, 65535], "what part": [0, 65535], "her body": [0, 65535], "body stands": [0, 65535], "stands ireland": [0, 65535], "ireland dro": [0, 65535], "sir in": [0, 65535], "her buttockes": [0, 65535], "buttockes i": [0, 65535], "i found": [0, 65535], "found it": [0, 65535], "out by": [0, 65535], "the bogges": [0, 65535], "bogges ant": [0, 65535], "ant where": [0, 65535], "where scotland": [0, 65535], "scotland dro": [0, 65535], "the barrennesse": [0, 65535], "barrennesse hard": [0, 65535], "hard in": [0, 65535], "the palme": [0, 65535], "palme of": [0, 65535], "hand ant": [0, 65535], "where france": [0, 65535], "france dro": [0, 65535], "dro in": [0, 65535], "her forhead": [0, 65535], "forhead arm'd": [0, 65535], "arm'd and": [0, 65535], "and reuerted": [0, 65535], "reuerted making": [0, 65535], "making warre": [0, 65535], "against her": [0, 65535], "her heire": [0, 65535], "heire ant": [0, 65535], "where england": [0, 65535], "england dro": [0, 65535], "i look'd": [0, 65535], "look'd for": [0, 65535], "the chalkle": [0, 65535], "chalkle cliffes": [0, 65535], "cliffes but": [0, 65535], "no whitenesse": [0, 65535], "whitenesse in": [0, 65535], "i guesse": [0, 65535], "guesse it": [0, 65535], "it stood": [0, 65535], "her chin": [0, 65535], "chin by": [0, 65535], "the salt": [0, 65535], "salt rheume": [0, 65535], "rheume that": [0, 65535], "that ranne": [0, 65535], "ranne betweene": [0, 65535], "betweene france": [0, 65535], "france and": [0, 65535], "it ant": [0, 65535], "where spaine": [0, 65535], "spaine dro": [0, 65535], "dro faith": [0, 65535], "faith i": [0, 65535], "i saw": [0, 65535], "saw it": [0, 65535], "not but": [0, 65535], "i felt": [0, 65535], "felt it": [0, 65535], "it hot": [0, 65535], "hot in": [0, 65535], "her breth": [0, 65535], "breth ant": [0, 65535], "where america": [0, 65535], "america the": [0, 65535], "the indies": [0, 65535], "indies dro": [0, 65535], "dro oh": [0, 65535], "oh sir": [0, 65535], "sir vpon": [0, 65535], "vpon her": [0, 65535], "her nose": [0, 65535], "nose all": [0, 65535], "all ore": [0, 65535], "ore embellished": [0, 65535], "embellished with": [0, 65535], "with rubies": [0, 65535], "rubies carbuncles": [0, 65535], "carbuncles saphires": [0, 65535], "saphires declining": [0, 65535], "declining their": [0, 65535], "their rich": [0, 65535], "rich aspect": [0, 65535], "aspect to": [0, 65535], "the hot": [0, 65535], "hot breath": [0, 65535], "of spaine": [0, 65535], "spaine who": [0, 65535], "who sent": [0, 65535], "sent whole": [0, 65535], "whole armadoes": [0, 65535], "armadoes of": [0, 65535], "of carrects": [0, 65535], "carrects to": [0, 65535], "be ballast": [0, 65535], "ballast at": [0, 65535], "nose anti": [0, 65535], "anti where": [0, 65535], "where stood": [0, 65535], "stood belgia": [0, 65535], "belgia the": [0, 65535], "the netherlands": [0, 65535], "netherlands dro": [0, 65535], "sir i": [0, 65535], "not looke": [0, 65535], "looke so": [0, 65535], "so low": [0, 65535], "low to": [0, 65535], "to conclude": [0, 65535], "conclude this": [0, 65535], "this drudge": [0, 65535], "drudge or": [0, 65535], "or diuiner": [0, 65535], "diuiner layd": [0, 65535], "layd claime": [0, 65535], "to mee": [0, 65535], "mee call'd": [0, 65535], "call'd mee": [0, 65535], "mee dromio": [0, 65535], "dromio swore": [0, 65535], "swore i": [0, 65535], "i was": [0, 65535], "was assur'd": [0, 65535], "assur'd to": [0, 65535], "her told": [0, 65535], "what priuie": [0, 65535], "priuie markes": [0, 65535], "markes i": [0, 65535], "i had": [0, 65535], "had about": [0, 65535], "about mee": [0, 65535], "mee as": [0, 65535], "the marke": [0, 65535], "marke of": [0, 65535], "my shoulder": [0, 65535], "shoulder the": [0, 65535], "the mole": [0, 65535], "mole in": [0, 65535], "my necke": [0, 65535], "necke the": [0, 65535], "great wart": [0, 65535], "on my": [0, 65535], "my left": [0, 65535], "left arme": [0, 65535], "arme that": [0, 65535], "i amaz'd": [0, 65535], "amaz'd ranne": [0, 65535], "ranne from": [0, 65535], "her as": [0, 65535], "witch and": [0, 65535], "thinke if": [0, 65535], "if my": [0, 65535], "my brest": [0, 65535], "brest had": [0, 65535], "had not": [0, 65535], "not beene": [0, 65535], "beene made": [0, 65535], "of faith": [0, 65535], "faith and": [0, 65535], "my heart": [0, 65535], "heart of": [0, 65535], "of steele": [0, 65535], "steele she": [0, 65535], "had transform'd": [0, 65535], "transform'd me": [0, 65535], "a curtull": [0, 65535], "curtull dog": [0, 65535], "dog made": [0, 65535], "made me": [0, 65535], "me turne": [0, 65535], "turne i'th": [0, 65535], "i'th wheele": [0, 65535], "wheele anti": [0, 65535], "anti go": [0, 65535], "go hie": [0, 65535], "hie thee": [0, 65535], "thee presently": [0, 65535], "presently post": [0, 65535], "post to": [0, 65535], "the rode": [0, 65535], "rode and": [0, 65535], "winde blow": [0, 65535], "blow any": [0, 65535], "any way": [0, 65535], "way from": [0, 65535], "from shore": [0, 65535], "shore i": [0, 65535], "not harbour": [0, 65535], "harbour in": [0, 65535], "this towne": [0, 65535], "towne to": [0, 65535], "night if": [0, 65535], "if any": [0, 65535], "any barke": [0, 65535], "barke put": [0, 65535], "put forth": [0, 65535], "forth come": [0, 65535], "mart where": [0, 65535], "will walke": [0, 65535], "walke till": [0, 65535], "till thou": [0, 65535], "thou returne": [0, 65535], "returne to": [0, 65535], "if euerie": [0, 65535], "euerie one": [0, 65535], "one knowes": [0, 65535], "knowes vs": [0, 65535], "vs and": [0, 65535], "and we": [0, 65535], "know none": [0, 65535], "none 'tis": [0, 65535], "'tis time": [0, 65535], "thinke to": [0, 65535], "to trudge": [0, 65535], "trudge packe": [0, 65535], "packe and": [0, 65535], "gone dro": [0, 65535], "dro as": [0, 65535], "a beare": [0, 65535], "man would": [0, 65535], "would run": [0, 65535], "run for": [0, 65535], "for life": [0, 65535], "so flie": [0, 65535], "flie i": [0, 65535], "i from": [0, 65535], "her that": [0, 65535], "be my": [0, 65535], "wife exit": [0, 65535], "exit anti": [0, 65535], "anti there's": [0, 65535], "there's none": [0, 65535], "none but": [0, 65535], "but witches": [0, 65535], "witches do": [0, 65535], "do inhabite": [0, 65535], "inhabite heere": [0, 65535], "heere and": [0, 65535], "and therefore": [0, 65535], "therefore 'tis": [0, 65535], "'tis hie": [0, 65535], "hie time": [0, 65535], "time that": [0, 65535], "i were": [0, 65535], "were hence": [0, 65535], "hence she": [0, 65535], "she that": [0, 65535], "that doth": [0, 65535], "doth call": [0, 65535], "me husband": [0, 65535], "husband euen": [0, 65535], "euen my": [0, 65535], "my soule": [0, 65535], "soule doth": [0, 65535], "doth for": [0, 65535], "a wife": [0, 65535], "wife abhorre": [0, 65535], "abhorre but": [0, 65535], "her faire": [0, 65535], "faire sister": [0, 65535], "sister possest": [0, 65535], "possest with": [0, 65535], "gentle soueraigne": [0, 65535], "soueraigne grace": [0, 65535], "grace of": [0, 65535], "of such": [0, 65535], "such inchanting": [0, 65535], "inchanting presence": [0, 65535], "presence and": [0, 65535], "and discourse": [0, 65535], "discourse hath": [0, 65535], "hath almost": [0, 65535], "almost made": [0, 65535], "me traitor": [0, 65535], "traitor to": [0, 65535], "selfe but": [0, 65535], "but least": [0, 65535], "least my": [0, 65535], "selfe be": [0, 65535], "be guilty": [0, 65535], "guilty to": [0, 65535], "to selfe": [0, 65535], "selfe wrong": [0, 65535], "wrong ile": [0, 65535], "ile stop": [0, 65535], "stop mine": [0, 65535], "mine eares": [0, 65535], "eares against": [0, 65535], "the mermaids": [0, 65535], "mermaids song": [0, 65535], "song enter": [0, 65535], "enter angelo": [0, 65535], "angelo with": [0, 65535], "chaine ang": [0, 65535], "ang mr": [0, 65535], "mr antipholus": [0, 65535], "antipholus anti": [0, 65535], "i that's": [0, 65535], "name ang": [0, 65535], "ang i": [0, 65535], "know it": [0, 65535], "well sir": [0, 65535], "sir loe": [0, 65535], "loe here's": [0, 65535], "here's the": [0, 65535], "chaine i": [0, 65535], "haue tane": [0, 65535], "tane you": [0, 65535], "porpentine the": [0, 65535], "chaine vnfinish'd": [0, 65535], "vnfinish'd made": [0, 65535], "me stay": [0, 65535], "stay thus": [0, 65535], "thus long": [0, 65535], "long anti": [0, 65535], "is your": [0, 65535], "your will": [0, 65535], "will that": [0, 65535], "i shal": [0, 65535], "shal do": [0, 65535], "do with": [0, 65535], "with this": [0, 65535], "this ang": [0, 65535], "ang what": [0, 65535], "what please": [0, 65535], "please your": [0, 65535], "selfe sir": [0, 65535], "haue made": [0, 65535], "made it": [0, 65535], "for you": [0, 65535], "you anti": [0, 65535], "anti made": [0, 65535], "i bespoke": [0, 65535], "bespoke it": [0, 65535], "not ang": [0, 65535], "ang not": [0, 65535], "not once": [0, 65535], "once nor": [0, 65535], "nor twice": [0, 65535], "twice but": [0, 65535], "but twentie": [0, 65535], "twentie times": [0, 65535], "times you": [0, 65535], "haue go": [0, 65535], "home with": [0, 65535], "and please": [0, 65535], "wife withall": [0, 65535], "withall and": [0, 65535], "and soone": [0, 65535], "soone at": [0, 65535], "at supper": [0, 65535], "supper time": [0, 65535], "time ile": [0, 65535], "ile visit": [0, 65535], "visit you": [0, 65535], "then receiue": [0, 65535], "receiue my": [0, 65535], "my money": [0, 65535], "chaine anti": [0, 65535], "you sir": [0, 65535], "sir receiue": [0, 65535], "receiue the": [0, 65535], "the money": [0, 65535], "money now": [0, 65535], "now for": [0, 65535], "for feare": [0, 65535], "feare you": [0, 65535], "you ne're": [0, 65535], "ne're see": [0, 65535], "see chaine": [0, 65535], "chaine nor": [0, 65535], "nor mony": [0, 65535], "mony more": [0, 65535], "more ang": [0, 65535], "ang you": [0, 65535], "are a": [0, 65535], "a merry": [0, 65535], "merry man": [0, 65535], "man sir": [0, 65535], "sir fare": [0, 65535], "fare you": [0, 65535], "you well": [0, 65535], "well exit": [0, 65535], "exit ant": [0, 65535], "should thinke": [0, 65535], "thinke of": [0, 65535], "i cannot": [0, 65535], "cannot tell": [0, 65535], "tell but": [0, 65535], "but this": [0, 65535], "thinke there's": [0, 65535], "no man": [0, 65535], "man is": [0, 65535], "is so": [0, 65535], "so vaine": [0, 65535], "vaine that": [0, 65535], "would refuse": [0, 65535], "refuse so": [0, 65535], "so faire": [0, 65535], "faire an": [0, 65535], "an offer'd": [0, 65535], "offer'd chaine": [0, 65535], "man heere": [0, 65535], "heere needs": [0, 65535], "needs not": [0, 65535], "not liue": [0, 65535], "liue by": [0, 65535], "by shifts": [0, 65535], "shifts when": [0, 65535], "when in": [0, 65535], "the streets": [0, 65535], "streets he": [0, 65535], "he meetes": [0, 65535], "meetes such": [0, 65535], "such golden": [0, 65535], "golden gifts": [0, 65535], "gifts ile": [0, 65535], "ile to": [0, 65535], "there for": [0, 65535], "for dromio": [0, 65535], "dromio stay": [0, 65535], "any ship": [0, 65535], "ship put": [0, 65535], "put out": [0, 65535], "out then": [0, 65535], "then straight": [0, 65535], "straight away": [0, 65535], "away exit": [0, 65535], "actus tertius scena": [0, 65535], "tertius scena prima": [0, 65535], "scena prima enter": [0, 65535], "prima enter antipholus": [0, 65535], "enter antipholus of": [0, 65535], "antipholus of ephesus": [0, 65535], "of ephesus his": [0, 65535], "ephesus his man": [0, 65535], "his man dromio": [0, 65535], "man dromio angelo": [0, 65535], "dromio angelo the": [0, 65535], "angelo the goldsmith": [0, 65535], "the goldsmith and": [0, 65535], "goldsmith and balthaser": [0, 65535], "and balthaser the": [0, 65535], "balthaser the merchant": [0, 65535], "the merchant e": [0, 65535], "merchant e anti": [0, 65535], "e anti good": [0, 65535], "anti good signior": [0, 65535], "good signior angelo": [0, 65535], "signior angelo you": [0, 65535], "angelo you must": [0, 65535], "you must excuse": [0, 65535], "must excuse vs": [0, 65535], "excuse vs all": [0, 65535], "vs all my": [0, 65535], "all my wife": [0, 65535], "my wife is": [0, 65535], "wife is shrewish": [0, 65535], "is shrewish when": [0, 65535], "shrewish when i": [0, 65535], "when i keepe": [0, 65535], "i keepe not": [0, 65535], "keepe not howres": [0, 65535], "not howres say": [0, 65535], "howres say that": [0, 65535], "say that i": [0, 65535], "that i lingerd": [0, 65535], "i lingerd with": [0, 65535], "lingerd with you": [0, 65535], "with you at": [0, 65535], "you at your": [0, 65535], "at your shop": [0, 65535], "your shop to": [0, 65535], "shop to see": [0, 65535], "to see the": [0, 65535], "see the making": [0, 65535], "the making of": [0, 65535], "making of her": [0, 65535], "of her carkanet": [0, 65535], "her carkanet and": [0, 65535], "carkanet and that": [0, 65535], "and that to": [0, 65535], "that to morrow": [0, 65535], "to morrow you": [0, 65535], "morrow you will": [0, 65535], "you will bring": [0, 65535], "will bring it": [0, 65535], "bring it home": [0, 65535], "it home but": [0, 65535], "home but here's": [0, 65535], "but here's a": [0, 65535], "here's a villaine": [0, 65535], "a villaine that": [0, 65535], "villaine that would": [0, 65535], "that would face": [0, 65535], "would face me": [0, 65535], "face me downe": [0, 65535], "me downe he": [0, 65535], "downe he met": [0, 65535], "he met me": [0, 65535], "met me on": [0, 65535], "me on the": [0, 65535], "on the mart": [0, 65535], "the mart and": [0, 65535], "mart and that": [0, 65535], "and that i": [0, 65535], "that i beat": [0, 65535], "i beat him": [0, 65535], "beat him and": [0, 65535], "him and charg'd": [0, 65535], "and charg'd him": [0, 65535], "charg'd him with": [0, 65535], "with a thousand": [0, 65535], "a thousand markes": [0, 65535], "thousand markes in": [0, 65535], "markes in gold": [0, 65535], "in gold and": [0, 65535], "gold and that": [0, 65535], "that i did": [0, 65535], "i did denie": [0, 65535], "did denie my": [0, 65535], "denie my wife": [0, 65535], "my wife and": [0, 65535], "wife and house": [0, 65535], "and house thou": [0, 65535], "house thou drunkard": [0, 65535], "thou drunkard thou": [0, 65535], "drunkard thou what": [0, 65535], "thou what didst": [0, 65535], "what didst thou": [0, 65535], "didst thou meane": [0, 65535], "thou meane by": [0, 65535], "meane by this": [0, 65535], "by this e": [0, 65535], "this e dro": [0, 65535], "e dro say": [0, 65535], "dro say what": [0, 65535], "say what you": [0, 65535], "what you wil": [0, 65535], "you wil sir": [0, 65535], "wil sir but": [0, 65535], "sir but i": [0, 65535], "but i know": [0, 65535], "i know what": [0, 65535], "know what i": [0, 65535], "what i know": [0, 65535], "i know that": [0, 65535], "know that you": [0, 65535], "that you beat": [0, 65535], "you beat me": [0, 65535], "beat me at": [0, 65535], "me at the": [0, 65535], "at the mart": [0, 65535], "the mart i": [0, 65535], "mart i haue": [0, 65535], "i haue your": [0, 65535], "haue your hand": [0, 65535], "your hand to": [0, 65535], "hand to show": [0, 65535], "to show if": [0, 65535], "show if the": [0, 65535], "if the skin": [0, 65535], "the skin were": [0, 65535], "skin were parchment": [0, 65535], "were parchment the": [0, 65535], "parchment the blows": [0, 65535], "the blows you": [0, 65535], "blows you gaue": [0, 65535], "you gaue were": [0, 65535], "gaue were ink": [0, 65535], "were ink your": [0, 65535], "ink your owne": [0, 65535], "your owne hand": [0, 65535], "owne hand writing": [0, 65535], "hand writing would": [0, 65535], "writing would tell": [0, 65535], "would tell you": [0, 65535], "tell you what": [0, 65535], "you what i": [0, 65535], "what i thinke": [0, 65535], "i thinke e": [0, 65535], "thinke e ant": [0, 65535], "e ant i": [0, 65535], "ant i thinke": [0, 65535], "i thinke thou": [0, 65535], "thinke thou art": [0, 65535], "thou art an": [0, 65535], "art an asse": [0, 65535], "an asse e": [0, 65535], "asse e dro": [0, 65535], "e dro marry": [0, 65535], "dro marry so": [0, 65535], "marry so it": [0, 65535], "so it doth": [0, 65535], "it doth appeare": [0, 65535], "doth appeare by": [0, 65535], "appeare by the": [0, 65535], "by the wrongs": [0, 65535], "the wrongs i": [0, 65535], "wrongs i suffer": [0, 65535], "i suffer and": [0, 65535], "suffer and the": [0, 65535], "and the blowes": [0, 65535], "the blowes i": [0, 65535], "blowes i beare": [0, 65535], "i beare i": [0, 65535], "beare i should": [0, 65535], "i should kicke": [0, 65535], "should kicke being": [0, 65535], "kicke being kickt": [0, 65535], "being kickt and": [0, 65535], "kickt and being": [0, 65535], "and being at": [0, 65535], "being at that": [0, 65535], "at that passe": [0, 65535], "that passe you": [0, 65535], "passe you would": [0, 65535], "you would keepe": [0, 65535], "would keepe from": [0, 65535], "keepe from my": [0, 65535], "from my heeles": [0, 65535], "my heeles and": [0, 65535], "heeles and beware": [0, 65535], "and beware of": [0, 65535], "beware of an": [0, 65535], "of an asse": [0, 65535], "asse e an": [0, 65535], "e an y'are": [0, 65535], "an y'are sad": [0, 65535], "y'are sad signior": [0, 65535], "sad signior balthazar": [0, 65535], "signior balthazar pray": [0, 65535], "balthazar pray god": [0, 65535], "pray god our": [0, 65535], "god our cheer": [0, 65535], "our cheer may": [0, 65535], "cheer may answer": [0, 65535], "may answer my": [0, 65535], "answer my good": [0, 65535], "my good will": [0, 65535], "good will and": [0, 65535], "will and your": [0, 65535], "and your good": [0, 65535], "your good welcom": [0, 65535], "good welcom here": [0, 65535], "welcom here bal": [0, 65535], "here bal i": [0, 65535], "bal i hold": [0, 65535], "i hold your": [0, 65535], "hold your dainties": [0, 65535], "your dainties cheap": [0, 65535], "dainties cheap sir": [0, 65535], "cheap sir your": [0, 65535], "sir your welcom": [0, 65535], "your welcom deer": [0, 65535], "welcom deer e": [0, 65535], "deer e an": [0, 65535], "e an oh": [0, 65535], "an oh signior": [0, 65535], "oh signior balthazar": [0, 65535], "signior balthazar either": [0, 65535], "balthazar either at": [0, 65535], "either at flesh": [0, 65535], "at flesh or": [0, 65535], "flesh or fish": [0, 65535], "or fish a": [0, 65535], "fish a table": [0, 65535], "a table full": [0, 65535], "table full of": [0, 65535], "full of welcome": [0, 65535], "of welcome makes": [0, 65535], "welcome makes scarce": [0, 65535], "makes scarce one": [0, 65535], "scarce one dainty": [0, 65535], "one dainty dish": [0, 65535], "dainty dish bal": [0, 65535], "dish bal good": [0, 65535], "bal good meat": [0, 65535], "good meat sir": [0, 65535], "meat sir is": [0, 65535], "sir is co": [0, 65535], "is co m": [0, 65535], "co m mon": [0, 65535], "m mon that": [0, 65535], "mon that euery": [0, 65535], "that euery churle": [0, 65535], "euery churle affords": [0, 65535], "churle affords anti": [0, 65535], "affords anti and": [0, 65535], "anti and welcome": [0, 65535], "and welcome more": [0, 65535], "welcome more common": [0, 65535], "more common for": [0, 65535], "common for thats": [0, 65535], "for thats nothing": [0, 65535], "thats nothing but": [0, 65535], "nothing but words": [0, 65535], "but words bal": [0, 65535], "words bal small": [0, 65535], "bal small cheere": [0, 65535], "small cheere and": [0, 65535], "cheere and great": [0, 65535], "and great welcome": [0, 65535], "great welcome makes": [0, 65535], "welcome makes a": [0, 65535], "makes a merrie": [0, 65535], "a merrie feast": [0, 65535], "merrie feast anti": [0, 65535], "feast anti i": [0, 65535], "anti i to": [0, 65535], "i to a": [0, 65535], "to a niggardly": [0, 65535], "a niggardly host": [0, 65535], "niggardly host and": [0, 65535], "host and more": [0, 65535], "and more sparing": [0, 65535], "more sparing guest": [0, 65535], "sparing guest but": [0, 65535], "guest but though": [0, 65535], "but though my": [0, 65535], "though my cates": [0, 65535], "my cates be": [0, 65535], "cates be meane": [0, 65535], "be meane take": [0, 65535], "meane take them": [0, 65535], "take them in": [0, 65535], "them in good": [0, 65535], "in good part": [0, 65535], "good part better": [0, 65535], "part better cheere": [0, 65535], "better cheere may": [0, 65535], "cheere may you": [0, 65535], "may you haue": [0, 65535], "you haue but": [0, 65535], "haue but not": [0, 65535], "but not with": [0, 65535], "not with better": [0, 65535], "with better hart": [0, 65535], "better hart but": [0, 65535], "hart but soft": [0, 65535], "but soft my": [0, 65535], "soft my doore": [0, 65535], "my doore is": [0, 65535], "doore is lockt": [0, 65535], "is lockt goe": [0, 65535], "lockt goe bid": [0, 65535], "goe bid them": [0, 65535], "bid them let": [0, 65535], "them let vs": [0, 65535], "let vs in": [0, 65535], "vs in e": [0, 65535], "in e dro": [0, 65535], "e dro maud": [0, 65535], "dro maud briget": [0, 65535], "maud briget marian": [0, 65535], "briget marian cisley": [0, 65535], "marian cisley gillian": [0, 65535], "cisley gillian ginn": [0, 65535], "gillian ginn s": [0, 65535], "ginn s dro": [0, 65535], "s dro mome": [0, 65535], "dro mome malthorse": [0, 65535], "mome malthorse capon": [0, 65535], "malthorse capon coxcombe": [0, 65535], "capon coxcombe idiot": [0, 65535], "coxcombe idiot patch": [0, 65535], "idiot patch either": [0, 65535], "patch either get": [0, 65535], "either get thee": [0, 65535], "get thee from": [0, 65535], "thee from the": [0, 65535], "from the dore": [0, 65535], "the dore or": [0, 65535], "dore or sit": [0, 65535], "or sit downe": [0, 65535], "sit downe at": [0, 65535], "downe at the": [0, 65535], "at the hatch": [0, 65535], "the hatch dost": [0, 65535], "hatch dost thou": [0, 65535], "dost thou coniure": [0, 65535], "thou coniure for": [0, 65535], "coniure for wenches": [0, 65535], "for wenches that": [0, 65535], "wenches that thou": [0, 65535], "that thou calst": [0, 65535], "thou calst for": [0, 65535], "calst for such": [0, 65535], "for such store": [0, 65535], "such store when": [0, 65535], "store when one": [0, 65535], "when one is": [0, 65535], "one is one": [0, 65535], "is one too": [0, 65535], "one too many": [0, 65535], "too many goe": [0, 65535], "many goe get": [0, 65535], "goe get thee": [0, 65535], "the dore e": [0, 65535], "dore e dro": [0, 65535], "e dro what": [0, 65535], "dro what patch": [0, 65535], "what patch is": [0, 65535], "patch is made": [0, 65535], "is made our": [0, 65535], "made our porter": [0, 65535], "our porter my": [0, 65535], "porter my master": [0, 65535], "my master stayes": [0, 65535], "master stayes in": [0, 65535], "stayes in the": [0, 65535], "in the street": [0, 65535], "the street s": [0, 65535], "street s dro": [0, 65535], "s dro let": [0, 65535], "dro let him": [0, 65535], "let him walke": [0, 65535], "him walke from": [0, 65535], "walke from whence": [0, 65535], "from whence he": [0, 65535], "whence he came": [0, 65535], "he came lest": [0, 65535], "came lest hee": [0, 65535], "lest hee catch": [0, 65535], "hee catch cold": [0, 65535], "catch cold on's": [0, 65535], "cold on's feet": [0, 65535], "on's feet e": [0, 65535], "feet e ant": [0, 65535], "e ant who": [0, 65535], "ant who talks": [0, 65535], "who talks within": [0, 65535], "talks within there": [0, 65535], "within there hoa": [0, 65535], "there hoa open": [0, 65535], "hoa open the": [0, 65535], "open the dore": [0, 65535], "the dore s": [0, 65535], "dore s dro": [0, 65535], "s dro right": [0, 65535], "dro right sir": [0, 65535], "right sir ile": [0, 65535], "sir ile tell": [0, 65535], "ile tell you": [0, 65535], "tell you when": [0, 65535], "you when and": [0, 65535], "when and you'll": [0, 65535], "tell me wherefore": [0, 65535], "me wherefore ant": [0, 65535], "wherefore ant wherefore": [0, 65535], "ant wherefore for": [0, 65535], "wherefore for my": [0, 65535], "for my dinner": [0, 65535], "my dinner i": [0, 65535], "dinner i haue": [0, 65535], "i haue not": [0, 65535], "haue not din'd": [0, 65535], "not din'd to": [0, 65535], "din'd to day": [0, 65535], "to day s": [0, 65535], "day s dro": [0, 65535], "s dro nor": [0, 65535], "dro nor to": [0, 65535], "nor to day": [0, 65535], "to day here": [0, 65535], "day here you": [0, 65535], "here you must": [0, 65535], "you must not": [0, 65535], "must not come": [0, 65535], "not come againe": [0, 65535], "come againe when": [0, 65535], "againe when you": [0, 65535], "when you may": [0, 65535], "you may anti": [0, 65535], "may anti what": [0, 65535], "anti what art": [0, 65535], "what art thou": [0, 65535], "art thou that": [0, 65535], "thou that keep'st": [0, 65535], "that keep'st mee": [0, 65535], "keep'st mee out": [0, 65535], "mee out from": [0, 65535], "out from the": [0, 65535], "from the howse": [0, 65535], "the howse i": [0, 65535], "howse i owe": [0, 65535], "i owe s": [0, 65535], "owe s dro": [0, 65535], "s dro the": [0, 65535], "dro the porter": [0, 65535], "the porter for": [0, 65535], "porter for this": [0, 65535], "for this time": [0, 65535], "this time sir": [0, 65535], "time sir and": [0, 65535], "sir and my": [0, 65535], "and my name": [0, 65535], "my name is": [0, 65535], "name is dromio": [0, 65535], "is dromio e": [0, 65535], "dromio e dro": [0, 65535], "e dro o": [0, 65535], "dro o villaine": [0, 65535], "o villaine thou": [0, 65535], "villaine thou hast": [0, 65535], "thou hast stolne": [0, 65535], "hast stolne both": [0, 65535], "stolne both mine": [0, 65535], "both mine office": [0, 65535], "mine office and": [0, 65535], "office and my": [0, 65535], "my name the": [0, 65535], "name the one": [0, 65535], "the one nere": [0, 65535], "one nere got": [0, 65535], "nere got me": [0, 65535], "got me credit": [0, 65535], "me credit the": [0, 65535], "credit the other": [0, 65535], "the other mickle": [0, 65535], "other mickle blame": [0, 65535], "mickle blame if": [0, 65535], "blame if thou": [0, 65535], "if thou hadst": [0, 65535], "thou hadst beene": [0, 65535], "hadst beene dromio": [0, 65535], "beene dromio to": [0, 65535], "dromio to day": [0, 65535], "to day in": [0, 65535], "day in my": [0, 65535], "in my place": [0, 65535], "my place thou": [0, 65535], "place thou wouldst": [0, 65535], "thou wouldst haue": [0, 65535], "wouldst haue chang'd": [0, 65535], "haue chang'd thy": [0, 65535], "chang'd thy face": [0, 65535], "thy face for": [0, 65535], "face for a": [0, 65535], "for a name": [0, 65535], "a name or": [0, 65535], "name or thy": [0, 65535], "or thy name": [0, 65535], "thy name for": [0, 65535], "name for an": [0, 65535], "for an asse": [0, 65535], "an asse enter": [0, 65535], "asse enter luce": [0, 65535], "enter luce luce": [0, 65535], "luce luce what": [0, 65535], "luce what a": [0, 65535], "what a coile": [0, 65535], "a coile is": [0, 65535], "coile is there": [0, 65535], "is there dromio": [0, 65535], "there dromio who": [0, 65535], "dromio who are": [0, 65535], "who are those": [0, 65535], "are those at": [0, 65535], "those at the": [0, 65535], "the gate e": [0, 65535], "gate e dro": [0, 65535], "e dro let": [0, 65535], "dro let my": [0, 65535], "let my master": [0, 65535], "my master in": [0, 65535], "master in luce": [0, 65535], "in luce luce": [0, 65535], "luce luce faith": [0, 65535], "luce faith no": [0, 65535], "faith no hee": [0, 65535], "no hee comes": [0, 65535], "hee comes too": [0, 65535], "comes too late": [0, 65535], "too late and": [0, 65535], "late and so": [0, 65535], "and so tell": [0, 65535], "so tell your": [0, 65535], "tell your master": [0, 65535], "your master e": [0, 65535], "master e dro": [0, 65535], "dro o lord": [0, 65535], "o lord i": [0, 65535], "lord i must": [0, 65535], "i must laugh": [0, 65535], "must laugh haue": [0, 65535], "laugh haue at": [0, 65535], "haue at you": [0, 65535], "at you with": [0, 65535], "you with a": [0, 65535], "with a prouerbe": [0, 65535], "a prouerbe shall": [0, 65535], "prouerbe shall i": [0, 65535], "shall i set": [0, 65535], "i set in": [0, 65535], "set in my": [0, 65535], "in my staffe": [0, 65535], "my staffe luce": [0, 65535], "staffe luce haue": [0, 65535], "luce haue at": [0, 65535], "you with another": [0, 65535], "with another that's": [0, 65535], "another that's when": [0, 65535], "that's when can": [0, 65535], "when can you": [0, 65535], "can you tell": [0, 65535], "you tell s": [0, 65535], "tell s dro": [0, 65535], "s dro if": [0, 65535], "dro if thy": [0, 65535], "if thy name": [0, 65535], "thy name be": [0, 65535], "name be called": [0, 65535], "be called luce": [0, 65535], "called luce luce": [0, 65535], "luce luce thou": [0, 65535], "luce thou hast": [0, 65535], "thou hast an": [0, 65535], "hast an swer'd": [0, 65535], "an swer'd him": [0, 65535], "swer'd him well": [0, 65535], "him well anti": [0, 65535], "well anti doe": [0, 65535], "anti doe you": [0, 65535], "doe you heare": [0, 65535], "you heare you": [0, 65535], "heare you minion": [0, 65535], "you minion you'll": [0, 65535], "minion you'll let": [0, 65535], "you'll let vs": [0, 65535], "vs in i": [0, 65535], "in i hope": [0, 65535], "i hope luce": [0, 65535], "hope luce i": [0, 65535], "luce i thought": [0, 65535], "i thought to": [0, 65535], "thought to haue": [0, 65535], "to haue askt": [0, 65535], "haue askt you": [0, 65535], "askt you s": [0, 65535], "you s dro": [0, 65535], "s dro and": [0, 65535], "dro and you": [0, 65535], "and you said": [0, 65535], "you said no": [0, 65535], "said no e": [0, 65535], "no e dro": [0, 65535], "e dro so": [0, 65535], "dro so come": [0, 65535], "so come helpe": [0, 65535], "come helpe well": [0, 65535], "helpe well strooke": [0, 65535], "well strooke there": [0, 65535], "strooke there was": [0, 65535], "there was blow": [0, 65535], "was blow for": [0, 65535], "blow for blow": [0, 65535], "for blow anti": [0, 65535], "blow anti thou": [0, 65535], "anti thou baggage": [0, 65535], "thou baggage let": [0, 65535], "baggage let me": [0, 65535], "let me in": [0, 65535], "me in luce": [0, 65535], "in luce can": [0, 65535], "luce can you": [0, 65535], "you tell for": [0, 65535], "tell for whose": [0, 65535], "for whose sake": [0, 65535], "whose sake e": [0, 65535], "sake e drom": [0, 65535], "e drom master": [0, 65535], "drom master knocke": [0, 65535], "master knocke the": [0, 65535], "knocke the doore": [0, 65535], "the doore hard": [0, 65535], "doore hard luce": [0, 65535], "hard luce let": [0, 65535], "luce let him": [0, 65535], "let him knocke": [0, 65535], "him knocke till": [0, 65535], "knocke till it": [0, 65535], "till it ake": [0, 65535], "it ake anti": [0, 65535], "ake anti you'll": [0, 65535], "anti you'll crie": [0, 65535], "you'll crie for": [0, 65535], "crie for this": [0, 65535], "for this minion": [0, 65535], "this minion if": [0, 65535], "minion if i": [0, 65535], "if i beat": [0, 65535], "i beat the": [0, 65535], "beat the doore": [0, 65535], "the doore downe": [0, 65535], "doore downe luce": [0, 65535], "downe luce what": [0, 65535], "luce what needs": [0, 65535], "what needs all": [0, 65535], "needs all that": [0, 65535], "all that and": [0, 65535], "that and a": [0, 65535], "and a paire": [0, 65535], "a paire of": [0, 65535], "paire of stocks": [0, 65535], "of stocks in": [0, 65535], "stocks in the": [0, 65535], "in the towne": [0, 65535], "the towne enter": [0, 65535], "towne enter adriana": [0, 65535], "enter adriana adr": [0, 65535], "adriana adr who": [0, 65535], "adr who is": [0, 65535], "who is that": [0, 65535], "is that at": [0, 65535], "that at the": [0, 65535], "at the doore": [0, 65535], "the doore that": [0, 65535], "doore that keeps": [0, 65535], "that keeps all": [0, 65535], "keeps all this": [0, 65535], "all this noise": [0, 65535], "this noise s": [0, 65535], "noise s dro": [0, 65535], "s dro by": [0, 65535], "dro by my": [0, 65535], "by my troth": [0, 65535], "my troth your": [0, 65535], "troth your towne": [0, 65535], "your towne is": [0, 65535], "towne is troubled": [0, 65535], "is troubled with": [0, 65535], "troubled with vnruly": [0, 65535], "with vnruly boies": [0, 65535], "vnruly boies anti": [0, 65535], "boies anti are": [0, 65535], "anti are you": [0, 65535], "are you there": [0, 65535], "you there wife": [0, 65535], "there wife you": [0, 65535], "wife you might": [0, 65535], "you might haue": [0, 65535], "might haue come": [0, 65535], "haue come before": [0, 65535], "come before adri": [0, 65535], "before adri your": [0, 65535], "adri your wife": [0, 65535], "your wife sir": [0, 65535], "wife sir knaue": [0, 65535], "sir knaue go": [0, 65535], "knaue go get": [0, 65535], "go get you": [0, 65535], "get you from": [0, 65535], "you from the": [0, 65535], "e dro if": [0, 65535], "dro if you": [0, 65535], "if you went": [0, 65535], "you went in": [0, 65535], "went in paine": [0, 65535], "in paine master": [0, 65535], "paine master this": [0, 65535], "master this knaue": [0, 65535], "this knaue wold": [0, 65535], "knaue wold goe": [0, 65535], "wold goe sore": [0, 65535], "goe sore angelo": [0, 65535], "sore angelo heere": [0, 65535], "angelo heere is": [0, 65535], "heere is neither": [0, 65535], "is neither cheere": [0, 65535], "neither cheere sir": [0, 65535], "cheere sir nor": [0, 65535], "sir nor welcome": [0, 65535], "nor welcome we": [0, 65535], "welcome we would": [0, 65535], "we would faine": [0, 65535], "would faine haue": [0, 65535], "faine haue either": [0, 65535], "haue either baltz": [0, 65535], "either baltz in": [0, 65535], "baltz in debating": [0, 65535], "in debating which": [0, 65535], "debating which was": [0, 65535], "which was best": [0, 65535], "was best wee": [0, 65535], "best wee shall": [0, 65535], "wee shall part": [0, 65535], "shall part with": [0, 65535], "part with neither": [0, 65535], "with neither e": [0, 65535], "neither e dro": [0, 65535], "e dro they": [0, 65535], "dro they stand": [0, 65535], "they stand at": [0, 65535], "stand at the": [0, 65535], "the doore master": [0, 65535], "doore master bid": [0, 65535], "master bid them": [0, 65535], "bid them welcome": [0, 65535], "them welcome hither": [0, 65535], "welcome hither anti": [0, 65535], "hither anti there": [0, 65535], "anti there is": [0, 65535], "there is something": [0, 65535], "is something in": [0, 65535], "something in the": [0, 65535], "in the winde": [0, 65535], "the winde that": [0, 65535], "winde that we": [0, 65535], "that we cannot": [0, 65535], "we cannot get": [0, 65535], "cannot get in": [0, 65535], "get in e": [0, 65535], "e dro you": [0, 65535], "dro you would": [0, 65535], "you would say": [0, 65535], "would say so": [0, 65535], "say so master": [0, 65535], "so master if": [0, 65535], "master if your": [0, 65535], "if your garments": [0, 65535], "your garments were": [0, 65535], "garments were thin": [0, 65535], "were thin your": [0, 65535], "thin your cake": [0, 65535], "your cake here": [0, 65535], "cake here is": [0, 65535], "here is warme": [0, 65535], "is warme within": [0, 65535], "warme within you": [0, 65535], "within you stand": [0, 65535], "you stand here": [0, 65535], "stand here in": [0, 65535], "here in the": [0, 65535], "the cold it": [0, 65535], "cold it would": [0, 65535], "it would make": [0, 65535], "a man mad": [0, 65535], "man mad as": [0, 65535], "mad as a": [0, 65535], "as a bucke": [0, 65535], "a bucke to": [0, 65535], "bucke to be": [0, 65535], "be so bought": [0, 65535], "so bought and": [0, 65535], "bought and sold": [0, 65535], "and sold ant": [0, 65535], "sold ant go": [0, 65535], "ant go fetch": [0, 65535], "go fetch me": [0, 65535], "fetch me something": [0, 65535], "me something ile": [0, 65535], "something ile break": [0, 65535], "ile break ope": [0, 65535], "break ope the": [0, 65535], "ope the gate": [0, 65535], "the gate s": [0, 65535], "gate s dro": [0, 65535], "s dro breake": [0, 65535], "dro breake any": [0, 65535], "breake any breaking": [0, 65535], "any breaking here": [0, 65535], "breaking here and": [0, 65535], "here and ile": [0, 65535], "and ile breake": [0, 65535], "ile breake your": [0, 65535], "breake your knaues": [0, 65535], "your knaues pate": [0, 65535], "knaues pate e": [0, 65535], "pate e dro": [0, 65535], "e dro a": [0, 65535], "dro a man": [0, 65535], "a man may": [0, 65535], "man may breake": [0, 65535], "may breake a": [0, 65535], "breake a word": [0, 65535], "a word with": [0, 65535], "word with your": [0, 65535], "with your sir": [0, 65535], "your sir and": [0, 65535], "sir and words": [0, 65535], "and words are": [0, 65535], "words are but": [0, 65535], "are but winde": [0, 65535], "but winde i": [0, 65535], "winde i and": [0, 65535], "i and breake": [0, 65535], "and breake it": [0, 65535], "breake it in": [0, 65535], "it in your": [0, 65535], "in your face": [0, 65535], "your face so": [0, 65535], "face so he": [0, 65535], "so he break": [0, 65535], "he break it": [0, 65535], "break it not": [0, 65535], "it not behinde": [0, 65535], "not behinde s": [0, 65535], "behinde s dro": [0, 65535], "s dro it": [0, 65535], "dro it seemes": [0, 65535], "it seemes thou": [0, 65535], "seemes thou want'st": [0, 65535], "thou want'st breaking": [0, 65535], "want'st breaking out": [0, 65535], "breaking out vpon": [0, 65535], "out vpon thee": [0, 65535], "vpon thee hinde": [0, 65535], "thee hinde e": [0, 65535], "hinde e dro": [0, 65535], "e dro here's": [0, 65535], "dro here's too": [0, 65535], "here's too much": [0, 65535], "too much out": [0, 65535], "much out vpon": [0, 65535], "vpon thee i": [0, 65535], "thee i pray": [0, 65535], "i pray thee": [0, 65535], "pray thee let": [0, 65535], "thee let me": [0, 65535], "me in s": [0, 65535], "in s dro": [0, 65535], "s dro i": [0, 65535], "dro i when": [0, 65535], "i when fowles": [0, 65535], "when fowles haue": [0, 65535], "fowles haue no": [0, 65535], "haue no feathers": [0, 65535], "no feathers and": [0, 65535], "feathers and fish": [0, 65535], "and fish haue": [0, 65535], "fish haue no": [0, 65535], "haue no fin": [0, 65535], "no fin ant": [0, 65535], "fin ant well": [0, 65535], "ant well ile": [0, 65535], "well ile breake": [0, 65535], "ile breake in": [0, 65535], "breake in go": [0, 65535], "in go borrow": [0, 65535], "go borrow me": [0, 65535], "borrow me a": [0, 65535], "me a crow": [0, 65535], "a crow e": [0, 65535], "crow e dro": [0, 65535], "dro a crow": [0, 65535], "a crow without": [0, 65535], "crow without feather": [0, 65535], "without feather master": [0, 65535], "feather master meane": [0, 65535], "master meane you": [0, 65535], "meane you so": [0, 65535], "you so for": [0, 65535], "so for a": [0, 65535], "for a fish": [0, 65535], "a fish without": [0, 65535], "fish without a": [0, 65535], "without a finne": [0, 65535], "a finne ther's": [0, 65535], "finne ther's a": [0, 65535], "ther's a fowle": [0, 65535], "a fowle without": [0, 65535], "fowle without a": [0, 65535], "without a fether": [0, 65535], "a fether if": [0, 65535], "fether if a": [0, 65535], "if a crow": [0, 65535], "a crow help": [0, 65535], "crow help vs": [0, 65535], "help vs in": [0, 65535], "vs in sirra": [0, 65535], "in sirra wee'll": [0, 65535], "sirra wee'll plucke": [0, 65535], "wee'll plucke a": [0, 65535], "plucke a crow": [0, 65535], "a crow together": [0, 65535], "crow together ant": [0, 65535], "together ant go": [0, 65535], "ant go get": [0, 65535], "go get thee": [0, 65535], "get thee gon": [0, 65535], "thee gon fetch": [0, 65535], "gon fetch me": [0, 65535], "fetch me an": [0, 65535], "me an iron": [0, 65535], "an iron crow": [0, 65535], "iron crow balth": [0, 65535], "crow balth haue": [0, 65535], "balth haue patience": [0, 65535], "haue patience sir": [0, 65535], "patience sir oh": [0, 65535], "sir oh let": [0, 65535], "oh let it": [0, 65535], "let it not": [0, 65535], "it not be": [0, 65535], "not be so": [0, 65535], "be so heerein": [0, 65535], "so heerein you": [0, 65535], "heerein you warre": [0, 65535], "you warre against": [0, 65535], "warre against your": [0, 65535], "against your reputation": [0, 65535], "your reputation and": [0, 65535], "reputation and draw": [0, 65535], "and draw within": [0, 65535], "draw within the": [0, 65535], "within the compasse": [0, 65535], "the compasse of": [0, 65535], "compasse of suspect": [0, 65535], "of suspect th'": [0, 65535], "suspect th' vnuiolated": [0, 65535], "th' vnuiolated honor": [0, 65535], "vnuiolated honor of": [0, 65535], "honor of your": [0, 65535], "of your wife": [0, 65535], "your wife once": [0, 65535], "wife once this": [0, 65535], "once this your": [0, 65535], "this your long": [0, 65535], "your long experience": [0, 65535], "long experience of": [0, 65535], "experience of your": [0, 65535], "of your wisedome": [0, 65535], "your wisedome her": [0, 65535], "wisedome her sober": [0, 65535], "her sober vertue": [0, 65535], "sober vertue yeares": [0, 65535], "vertue yeares and": [0, 65535], "yeares and modestie": [0, 65535], "and modestie plead": [0, 65535], "modestie plead on": [0, 65535], "plead on your": [0, 65535], "on your part": [0, 65535], "your part some": [0, 65535], "part some cause": [0, 65535], "some cause to": [0, 65535], "cause to you": [0, 65535], "to you vnknowne": [0, 65535], "you vnknowne and": [0, 65535], "vnknowne and doubt": [0, 65535], "and doubt not": [0, 65535], "doubt not sir": [0, 65535], "not sir but": [0, 65535], "sir but she": [0, 65535], "but she will": [0, 65535], "she will well": [0, 65535], "will well excuse": [0, 65535], "well excuse why": [0, 65535], "excuse why at": [0, 65535], "why at this": [0, 65535], "at this time": [0, 65535], "time the dores": [0, 65535], "the dores are": [0, 65535], "dores are made": [0, 65535], "are made against": [0, 65535], "made against you": [0, 65535], "against you be": [0, 65535], "you be rul'd": [0, 65535], "be rul'd by": [0, 65535], "rul'd by me": [0, 65535], "by me depart": [0, 65535], "me depart in": [0, 65535], "depart in patience": [0, 65535], "in patience and": [0, 65535], "patience and let": [0, 65535], "and let vs": [0, 65535], "let vs to": [0, 65535], "vs to the": [0, 65535], "to the tyger": [0, 65535], "the tyger all": [0, 65535], "tyger all to": [0, 65535], "all to dinner": [0, 65535], "to dinner and": [0, 65535], "dinner and about": [0, 65535], "and about euening": [0, 65535], "about euening come": [0, 65535], "euening come your": [0, 65535], "come your selfe": [0, 65535], "your selfe alone": [0, 65535], "selfe alone to": [0, 65535], "alone to know": [0, 65535], "to know the": [0, 65535], "know the reason": [0, 65535], "the reason of": [0, 65535], "reason of this": [0, 65535], "of this strange": [0, 65535], "this strange restraint": [0, 65535], "strange restraint if": [0, 65535], "restraint if by": [0, 65535], "if by strong": [0, 65535], "by strong hand": [0, 65535], "strong hand you": [0, 65535], "hand you offer": [0, 65535], "you offer to": [0, 65535], "offer to breake": [0, 65535], "to breake in": [0, 65535], "breake in now": [0, 65535], "in now in": [0, 65535], "now in the": [0, 65535], "in the stirring": [0, 65535], "the stirring passage": [0, 65535], "stirring passage of": [0, 65535], "passage of the": [0, 65535], "the day a": [0, 65535], "day a vulgar": [0, 65535], "a vulgar comment": [0, 65535], "vulgar comment will": [0, 65535], "comment will be": [0, 65535], "will be made": [0, 65535], "be made of": [0, 65535], "made of it": [0, 65535], "it and that": [0, 65535], "and that supposed": [0, 65535], "that supposed by": [0, 65535], "supposed by the": [0, 65535], "by the common": [0, 65535], "the common rowt": [0, 65535], "common rowt against": [0, 65535], "rowt against your": [0, 65535], "against your yet": [0, 65535], "your yet vngalled": [0, 65535], "yet vngalled estimation": [0, 65535], "vngalled estimation that": [0, 65535], "estimation that may": [0, 65535], "that may with": [0, 65535], "may with foule": [0, 65535], "with foule intrusion": [0, 65535], "foule intrusion enter": [0, 65535], "intrusion enter in": [0, 65535], "enter in and": [0, 65535], "in and dwell": [0, 65535], "and dwell vpon": [0, 65535], "dwell vpon your": [0, 65535], "vpon your graue": [0, 65535], "your graue when": [0, 65535], "graue when you": [0, 65535], "when you are": [0, 65535], "you are dead": [0, 65535], "are dead for": [0, 65535], "dead for slander": [0, 65535], "for slander liues": [0, 65535], "slander liues vpon": [0, 65535], "liues vpon succession": [0, 65535], "vpon succession for": [0, 65535], "succession for euer": [0, 65535], "for euer hows'd": [0, 65535], "euer hows'd where": [0, 65535], "hows'd where it": [0, 65535], "where it gets": [0, 65535], "it gets possession": [0, 65535], "gets possession anti": [0, 65535], "possession anti you": [0, 65535], "anti you haue": [0, 65535], "you haue preuail'd": [0, 65535], "haue preuail'd i": [0, 65535], "preuail'd i will": [0, 65535], "i will depart": [0, 65535], "will depart in": [0, 65535], "depart in quiet": [0, 65535], "in quiet and": [0, 65535], "quiet and in": [0, 65535], "and in despight": [0, 65535], "in despight of": [0, 65535], "despight of mirth": [0, 65535], "of mirth meane": [0, 65535], "mirth meane to": [0, 65535], "meane to be": [0, 65535], "to be merrie": [0, 65535], "be merrie i": [0, 65535], "merrie i know": [0, 65535], "i know a": [0, 65535], "know a wench": [0, 65535], "a wench of": [0, 65535], "wench of excellent": [0, 65535], "of excellent discourse": [0, 65535], "excellent discourse prettie": [0, 65535], "discourse prettie and": [0, 65535], "prettie and wittie": [0, 65535], "and wittie wilde": [0, 65535], "wittie wilde and": [0, 65535], "wilde and yet": [0, 65535], "and yet too": [0, 65535], "yet too gentle": [0, 65535], "too gentle there": [0, 65535], "gentle there will": [0, 65535], "there will we": [0, 65535], "will we dine": [0, 65535], "we dine this": [0, 65535], "dine this woman": [0, 65535], "this woman that": [0, 65535], "woman that i": [0, 65535], "that i meane": [0, 65535], "i meane my": [0, 65535], "meane my wife": [0, 65535], "my wife but": [0, 65535], "wife but i": [0, 65535], "but i protest": [0, 65535], "i protest without": [0, 65535], "protest without desert": [0, 65535], "without desert hath": [0, 65535], "desert hath oftentimes": [0, 65535], "hath oftentimes vpbraided": [0, 65535], "oftentimes vpbraided me": [0, 65535], "vpbraided me withall": [0, 65535], "me withall to": [0, 65535], "withall to her": [0, 65535], "to her will": [0, 65535], "her will we": [0, 65535], "will we to": [0, 65535], "we to dinner": [0, 65535], "to dinner get": [0, 65535], "dinner get you": [0, 65535], "get you home": [0, 65535], "you home and": [0, 65535], "home and fetch": [0, 65535], "and fetch the": [0, 65535], "fetch the chaine": [0, 65535], "the chaine by": [0, 65535], "chaine by this": [0, 65535], "by this i": [0, 65535], "this i know": [0, 65535], "i know 'tis": [0, 65535], "know 'tis made": [0, 65535], "'tis made bring": [0, 65535], "made bring it": [0, 65535], "bring it i": [0, 65535], "it i pray": [0, 65535], "i pray you": [0, 65535], "pray you to": [0, 65535], "you to the": [0, 65535], "to the porpentine": [0, 65535], "the porpentine for": [0, 65535], "porpentine for there's": [0, 65535], "for there's the": [0, 65535], "there's the house": [0, 65535], "the house that": [0, 65535], "house that chaine": [0, 65535], "that chaine will": [0, 65535], "chaine will i": [0, 65535], "will i bestow": [0, 65535], "i bestow be": [0, 65535], "bestow be it": [0, 65535], "be it for": [0, 65535], "it for nothing": [0, 65535], "for nothing but": [0, 65535], "nothing but to": [0, 65535], "but to spight": [0, 65535], "to spight my": [0, 65535], "spight my wife": [0, 65535], "my wife vpon": [0, 65535], "wife vpon mine": [0, 65535], "vpon mine hostesse": [0, 65535], "mine hostesse there": [0, 65535], "hostesse there good": [0, 65535], "there good sir": [0, 65535], "good sir make": [0, 65535], "sir make haste": [0, 65535], "make haste since": [0, 65535], "haste since mine": [0, 65535], "since mine owne": [0, 65535], "mine owne doores": [0, 65535], "owne doores refuse": [0, 65535], "doores refuse to": [0, 65535], "refuse to entertaine": [0, 65535], "to entertaine me": [0, 65535], "entertaine me ile": [0, 65535], "me ile knocke": [0, 65535], "ile knocke else": [0, 65535], "knocke else where": [0, 65535], "else where to": [0, 65535], "where to see": [0, 65535], "to see if": [0, 65535], "see if they'll": [0, 65535], "if they'll disdaine": [0, 65535], "they'll disdaine me": [0, 65535], "disdaine me ang": [0, 65535], "me ang ile": [0, 65535], "ang ile meet": [0, 65535], "ile meet you": [0, 65535], "meet you at": [0, 65535], "you at that": [0, 65535], "at that place": [0, 65535], "that place some": [0, 65535], "place some houre": [0, 65535], "some houre hence": [0, 65535], "houre hence anti": [0, 65535], "hence anti do": [0, 65535], "anti do so": [0, 65535], "do so this": [0, 65535], "so this iest": [0, 65535], "this iest shall": [0, 65535], "iest shall cost": [0, 65535], "shall cost me": [0, 65535], "cost me some": [0, 65535], "me some expence": [0, 65535], "some expence exeunt": [0, 65535], "expence exeunt enter": [0, 65535], "exeunt enter iuliana": [0, 65535], "enter iuliana with": [0, 65535], "iuliana with antipholus": [0, 65535], "with antipholus of": [0, 65535], "antipholus of siracusia": [0, 65535], "of siracusia iulia": [0, 65535], "siracusia iulia and": [0, 65535], "iulia and may": [0, 65535], "and may it": [0, 65535], "may it be": [0, 65535], "it be that": [0, 65535], "be that you": [0, 65535], "that you haue": [0, 65535], "you haue quite": [0, 65535], "haue quite forgot": [0, 65535], "quite forgot a": [0, 65535], "forgot a husbands": [0, 65535], "a husbands office": [0, 65535], "husbands office shall": [0, 65535], "office shall antipholus": [0, 65535], "shall antipholus euen": [0, 65535], "antipholus euen in": [0, 65535], "euen in the": [0, 65535], "the spring of": [0, 65535], "spring of loue": [0, 65535], "of loue thy": [0, 65535], "loue thy loue": [0, 65535], "thy loue springs": [0, 65535], "loue springs rot": [0, 65535], "springs rot shall": [0, 65535], "rot shall loue": [0, 65535], "shall loue in": [0, 65535], "loue in buildings": [0, 65535], "in buildings grow": [0, 65535], "buildings grow so": [0, 65535], "grow so ruinate": [0, 65535], "so ruinate if": [0, 65535], "ruinate if you": [0, 65535], "if you did": [0, 65535], "you did wed": [0, 65535], "did wed my": [0, 65535], "wed my sister": [0, 65535], "my sister for": [0, 65535], "sister for her": [0, 65535], "for her wealth": [0, 65535], "her wealth then": [0, 65535], "wealth then for": [0, 65535], "then for her": [0, 65535], "for her wealths": [0, 65535], "her wealths sake": [0, 65535], "wealths sake vse": [0, 65535], "sake vse her": [0, 65535], "vse her with": [0, 65535], "her with more": [0, 65535], "with more kindnesse": [0, 65535], "more kindnesse or": [0, 65535], "kindnesse or if": [0, 65535], "or if you": [0, 65535], "if you like": [0, 65535], "you like else": [0, 65535], "like else where": [0, 65535], "else where doe": [0, 65535], "where doe it": [0, 65535], "doe it by": [0, 65535], "it by stealth": [0, 65535], "by stealth muffle": [0, 65535], "stealth muffle your": [0, 65535], "muffle your false": [0, 65535], "your false loue": [0, 65535], "false loue with": [0, 65535], "loue with some": [0, 65535], "with some shew": [0, 65535], "some shew of": [0, 65535], "shew of blindnesse": [0, 65535], "of blindnesse let": [0, 65535], "blindnesse let not": [0, 65535], "let not my": [0, 65535], "not my sister": [0, 65535], "my sister read": [0, 65535], "sister read it": [0, 65535], "read it in": [0, 65535], "in your eye": [0, 65535], "your eye be": [0, 65535], "eye be not": [0, 65535], "be not thy": [0, 65535], "not thy tongue": [0, 65535], "thy tongue thy": [0, 65535], "tongue thy owne": [0, 65535], "thy owne shames": [0, 65535], "owne shames orator": [0, 65535], "shames orator looke": [0, 65535], "orator looke sweet": [0, 65535], "looke sweet speake": [0, 65535], "sweet speake faire": [0, 65535], "speake faire become": [0, 65535], "faire become disloyaltie": [0, 65535], "become disloyaltie apparell": [0, 65535], "disloyaltie apparell vice": [0, 65535], "apparell vice like": [0, 65535], "vice like vertues": [0, 65535], "like vertues harbenger": [0, 65535], "vertues harbenger beare": [0, 65535], "harbenger beare a": [0, 65535], "beare a faire": [0, 65535], "a faire presence": [0, 65535], "faire presence though": [0, 65535], "presence though your": [0, 65535], "though your heart": [0, 65535], "your heart be": [0, 65535], "heart be tainted": [0, 65535], "be tainted teach": [0, 65535], "tainted teach sinne": [0, 65535], "teach sinne the": [0, 65535], "sinne the carriage": [0, 65535], "the carriage of": [0, 65535], "carriage of a": [0, 65535], "of a holy": [0, 65535], "a holy saint": [0, 65535], "holy saint be": [0, 65535], "saint be secret": [0, 65535], "be secret false": [0, 65535], "secret false what": [0, 65535], "false what need": [0, 65535], "what need she": [0, 65535], "need she be": [0, 65535], "she be acquainted": [0, 65535], "be acquainted what": [0, 65535], "acquainted what simple": [0, 65535], "what simple thiefe": [0, 65535], "simple thiefe brags": [0, 65535], "thiefe brags of": [0, 65535], "brags of his": [0, 65535], "of his owne": [0, 65535], "his owne attaine": [0, 65535], "owne attaine 'tis": [0, 65535], "attaine 'tis double": [0, 65535], "'tis double wrong": [0, 65535], "double wrong to": [0, 65535], "wrong to truant": [0, 65535], "to truant with": [0, 65535], "truant with your": [0, 65535], "with your bed": [0, 65535], "your bed and": [0, 65535], "bed and let": [0, 65535], "and let her": [0, 65535], "let her read": [0, 65535], "her read it": [0, 65535], "it in thy": [0, 65535], "in thy lookes": [0, 65535], "thy lookes at": [0, 65535], "lookes at boord": [0, 65535], "at boord shame": [0, 65535], "boord shame hath": [0, 65535], "shame hath a": [0, 65535], "hath a bastard": [0, 65535], "a bastard fame": [0, 65535], "bastard fame well": [0, 65535], "fame well managed": [0, 65535], "well managed ill": [0, 65535], "managed ill deeds": [0, 65535], "ill deeds is": [0, 65535], "deeds is doubled": [0, 65535], "is doubled with": [0, 65535], "doubled with an": [0, 65535], "with an euill": [0, 65535], "an euill word": [0, 65535], "euill word alas": [0, 65535], "word alas poore": [0, 65535], "alas poore women": [0, 65535], "poore women make": [0, 65535], "women make vs": [0, 65535], "make vs not": [0, 65535], "vs not beleeue": [0, 65535], "not beleeue being": [0, 65535], "beleeue being compact": [0, 65535], "being compact of": [0, 65535], "compact of credit": [0, 65535], "of credit that": [0, 65535], "credit that you": [0, 65535], "that you loue": [0, 65535], "you loue vs": [0, 65535], "loue vs though": [0, 65535], "vs though others": [0, 65535], "though others haue": [0, 65535], "others haue the": [0, 65535], "haue the arme": [0, 65535], "the arme shew": [0, 65535], "arme shew vs": [0, 65535], "shew vs the": [0, 65535], "vs the sleeue": [0, 65535], "the sleeue we": [0, 65535], "sleeue we in": [0, 65535], "we in your": [0, 65535], "in your motion": [0, 65535], "your motion turne": [0, 65535], "motion turne and": [0, 65535], "turne and you": [0, 65535], "and you may": [0, 65535], "you may moue": [0, 65535], "may moue vs": [0, 65535], "moue vs then": [0, 65535], "vs then gentle": [0, 65535], "then gentle brother": [0, 65535], "gentle brother get": [0, 65535], "brother get you": [0, 65535], "get you in": [0, 65535], "you in againe": [0, 65535], "in againe comfort": [0, 65535], "againe comfort my": [0, 65535], "comfort my sister": [0, 65535], "my sister cheere": [0, 65535], "sister cheere her": [0, 65535], "cheere her call": [0, 65535], "her call her": [0, 65535], "call her wise": [0, 65535], "her wise 'tis": [0, 65535], "wise 'tis holy": [0, 65535], "'tis holy sport": [0, 65535], "holy sport to": [0, 65535], "sport to be": [0, 65535], "be a little": [0, 65535], "a little vaine": [0, 65535], "little vaine when": [0, 65535], "vaine when the": [0, 65535], "when the sweet": [0, 65535], "the sweet breath": [0, 65535], "sweet breath of": [0, 65535], "breath of flatterie": [0, 65535], "of flatterie conquers": [0, 65535], "flatterie conquers strife": [0, 65535], "conquers strife s": [0, 65535], "strife s anti": [0, 65535], "s anti sweete": [0, 65535], "anti sweete mistris": [0, 65535], "sweete mistris what": [0, 65535], "mistris what your": [0, 65535], "what your name": [0, 65535], "your name is": [0, 65535], "name is else": [0, 65535], "is else i": [0, 65535], "else i know": [0, 65535], "i know not": [0, 65535], "know not nor": [0, 65535], "not nor by": [0, 65535], "nor by what": [0, 65535], "by what wonder": [0, 65535], "what wonder you": [0, 65535], "wonder you do": [0, 65535], "you do hit": [0, 65535], "do hit of": [0, 65535], "hit of mine": [0, 65535], "of mine lesse": [0, 65535], "mine lesse in": [0, 65535], "lesse in your": [0, 65535], "in your knowledge": [0, 65535], "your knowledge and": [0, 65535], "knowledge and your": [0, 65535], "and your grace": [0, 65535], "your grace you": [0, 65535], "grace you show": [0, 65535], "you show not": [0, 65535], "show not then": [0, 65535], "not then our": [0, 65535], "then our earths": [0, 65535], "our earths wonder": [0, 65535], "earths wonder more": [0, 65535], "wonder more then": [0, 65535], "more then earth": [0, 65535], "then earth diuine": [0, 65535], "earth diuine teach": [0, 65535], "diuine teach me": [0, 65535], "teach me deere": [0, 65535], "me deere creature": [0, 65535], "deere creature how": [0, 65535], "creature how to": [0, 65535], "how to thinke": [0, 65535], "to thinke and": [0, 65535], "thinke and speake": [0, 65535], "and speake lay": [0, 65535], "speake lay open": [0, 65535], "lay open to": [0, 65535], "open to my": [0, 65535], "to my earthie": [0, 65535], "my earthie grosse": [0, 65535], "earthie grosse conceit": [0, 65535], "grosse conceit smothred": [0, 65535], "conceit smothred in": [0, 65535], "smothred in errors": [0, 65535], "in errors feeble": [0, 65535], "errors feeble shallow": [0, 65535], "feeble shallow weake": [0, 65535], "shallow weake the": [0, 65535], "weake the foulded": [0, 65535], "the foulded meaning": [0, 65535], "foulded meaning of": [0, 65535], "meaning of your": [0, 65535], "of your words": [0, 65535], "your words deceit": [0, 65535], "words deceit against": [0, 65535], "deceit against my": [0, 65535], "against my soules": [0, 65535], "my soules pure": [0, 65535], "soules pure truth": [0, 65535], "pure truth why": [0, 65535], "truth why labour": [0, 65535], "why labour you": [0, 65535], "labour you to": [0, 65535], "you to make": [0, 65535], "to make it": [0, 65535], "make it wander": [0, 65535], "it wander in": [0, 65535], "wander in an": [0, 65535], "in an vnknowne": [0, 65535], "an vnknowne field": [0, 65535], "vnknowne field are": [0, 65535], "field are you": [0, 65535], "are you a": [0, 65535], "you a god": [0, 65535], "a god would": [0, 65535], "god would you": [0, 65535], "would you create": [0, 65535], "you create me": [0, 65535], "create me new": [0, 65535], "me new transforme": [0, 65535], "new transforme me": [0, 65535], "transforme me then": [0, 65535], "me then and": [0, 65535], "then and to": [0, 65535], "and to your": [0, 65535], "to your powre": [0, 65535], "your powre ile": [0, 65535], "powre ile yeeld": [0, 65535], "ile yeeld but": [0, 65535], "yeeld but if": [0, 65535], "but if that": [0, 65535], "if that i": [0, 65535], "that i am": [0, 65535], "i am i": [0, 65535], "am i then": [0, 65535], "i then well": [0, 65535], "then well i": [0, 65535], "i know your": [0, 65535], "know your weeping": [0, 65535], "your weeping sister": [0, 65535], "weeping sister is": [0, 65535], "sister is no": [0, 65535], "is no wife": [0, 65535], "no wife of": [0, 65535], "wife of mine": [0, 65535], "of mine nor": [0, 65535], "mine nor to": [0, 65535], "nor to her": [0, 65535], "to her bed": [0, 65535], "her bed no": [0, 65535], "bed no homage": [0, 65535], "no homage doe": [0, 65535], "homage doe i": [0, 65535], "doe i owe": [0, 65535], "i owe farre": [0, 65535], "owe farre more": [0, 65535], "farre more farre": [0, 65535], "more farre more": [0, 65535], "farre more to": [0, 65535], "more to you": [0, 65535], "to you doe": [0, 65535], "you doe i": [0, 65535], "doe i decline": [0, 65535], "i decline oh": [0, 65535], "decline oh traine": [0, 65535], "oh traine me": [0, 65535], "traine me not": [0, 65535], "me not sweet": [0, 65535], "not sweet mermaide": [0, 65535], "sweet mermaide with": [0, 65535], "mermaide with thy": [0, 65535], "with thy note": [0, 65535], "thy note to": [0, 65535], "note to drowne": [0, 65535], "to drowne me": [0, 65535], "drowne me in": [0, 65535], "me in thy": [0, 65535], "in thy sister": [0, 65535], "thy sister floud": [0, 65535], "sister floud of": [0, 65535], "floud of teares": [0, 65535], "of teares sing": [0, 65535], "teares sing siren": [0, 65535], "sing siren for": [0, 65535], "siren for thy": [0, 65535], "for thy selfe": [0, 65535], "thy selfe and": [0, 65535], "selfe and i": [0, 65535], "and i will": [0, 65535], "i will dote": [0, 65535], "will dote spread": [0, 65535], "dote spread ore": [0, 65535], "spread ore the": [0, 65535], "ore the siluer": [0, 65535], "the siluer waues": [0, 65535], "siluer waues thy": [0, 65535], "waues thy golden": [0, 65535], "thy golden haires": [0, 65535], "golden haires and": [0, 65535], "haires and as": [0, 65535], "and as a": [0, 65535], "as a bud": [0, 65535], "a bud ile": [0, 65535], "bud ile take": [0, 65535], "ile take thee": [0, 65535], "take thee and": [0, 65535], "thee and there": [0, 65535], "and there lie": [0, 65535], "there lie and": [0, 65535], "lie and in": [0, 65535], "and in that": [0, 65535], "in that glorious": [0, 65535], "that glorious supposition": [0, 65535], "glorious supposition thinke": [0, 65535], "supposition thinke he": [0, 65535], "thinke he gaines": [0, 65535], "he gaines by": [0, 65535], "gaines by death": [0, 65535], "by death that": [0, 65535], "death that hath": [0, 65535], "that hath such": [0, 65535], "hath such meanes": [0, 65535], "such meanes to": [0, 65535], "meanes to die": [0, 65535], "to die let": [0, 65535], "die let loue": [0, 65535], "let loue being": [0, 65535], "loue being light": [0, 65535], "being light be": [0, 65535], "light be drowned": [0, 65535], "be drowned if": [0, 65535], "drowned if she": [0, 65535], "if she sinke": [0, 65535], "she sinke luc": [0, 65535], "sinke luc what": [0, 65535], "luc what are": [0, 65535], "what are you": [0, 65535], "are you mad": [0, 65535], "you mad that": [0, 65535], "mad that you": [0, 65535], "that you doe": [0, 65535], "you doe reason": [0, 65535], "doe reason so": [0, 65535], "reason so ant": [0, 65535], "so ant not": [0, 65535], "ant not mad": [0, 65535], "not mad but": [0, 65535], "mad but mated": [0, 65535], "but mated how": [0, 65535], "mated how i": [0, 65535], "how i doe": [0, 65535], "i doe not": [0, 65535], "doe not know": [0, 65535], "not know luc": [0, 65535], "know luc it": [0, 65535], "luc it is": [0, 65535], "it is a": [0, 65535], "is a fault": [0, 65535], "a fault that": [0, 65535], "fault that springeth": [0, 65535], "that springeth from": [0, 65535], "springeth from your": [0, 65535], "from your eie": [0, 65535], "your eie ant": [0, 65535], "eie ant for": [0, 65535], "ant for gazing": [0, 65535], "for gazing on": [0, 65535], "gazing on your": [0, 65535], "on your beames": [0, 65535], "your beames faire": [0, 65535], "beames faire sun": [0, 65535], "faire sun being": [0, 65535], "sun being by": [0, 65535], "being by luc": [0, 65535], "by luc gaze": [0, 65535], "luc gaze when": [0, 65535], "gaze when you": [0, 65535], "when you should": [0, 65535], "you should and": [0, 65535], "should and that": [0, 65535], "and that will": [0, 65535], "that will cleere": [0, 65535], "will cleere your": [0, 65535], "cleere your sight": [0, 65535], "your sight ant": [0, 65535], "sight ant as": [0, 65535], "ant as good": [0, 65535], "as good to": [0, 65535], "good to winke": [0, 65535], "to winke sweet": [0, 65535], "winke sweet loue": [0, 65535], "sweet loue as": [0, 65535], "loue as looke": [0, 65535], "as looke on": [0, 65535], "looke on night": [0, 65535], "on night luc": [0, 65535], "night luc why": [0, 65535], "luc why call": [0, 65535], "why call you": [0, 65535], "call you me": [0, 65535], "you me loue": [0, 65535], "me loue call": [0, 65535], "loue call my": [0, 65535], "call my sister": [0, 65535], "my sister so": [0, 65535], "sister so ant": [0, 65535], "so ant thy": [0, 65535], "ant thy sisters": [0, 65535], "thy sisters sister": [0, 65535], "sisters sister luc": [0, 65535], "sister luc that's": [0, 65535], "luc that's my": [0, 65535], "that's my sister": [0, 65535], "my sister ant": [0, 65535], "sister ant no": [0, 65535], "ant no it": [0, 65535], "no it is": [0, 65535], "it is thy": [0, 65535], "is thy selfe": [0, 65535], "thy selfe mine": [0, 65535], "selfe mine owne": [0, 65535], "mine owne selfes": [0, 65535], "owne selfes better": [0, 65535], "selfes better part": [0, 65535], "better part mine": [0, 65535], "part mine eies": [0, 65535], "mine eies cleere": [0, 65535], "eies cleere eie": [0, 65535], "cleere eie my": [0, 65535], "eie my deere": [0, 65535], "my deere hearts": [0, 65535], "deere hearts deerer": [0, 65535], "hearts deerer heart": [0, 65535], "deerer heart my": [0, 65535], "heart my foode": [0, 65535], "my foode my": [0, 65535], "foode my fortune": [0, 65535], "my fortune and": [0, 65535], "fortune and my": [0, 65535], "and my sweet": [0, 65535], "my sweet hopes": [0, 65535], "sweet hopes aime": [0, 65535], "hopes aime my": [0, 65535], "aime my sole": [0, 65535], "my sole earths": [0, 65535], "sole earths heauen": [0, 65535], "earths heauen and": [0, 65535], "heauen and my": [0, 65535], "and my heauens": [0, 65535], "my heauens claime": [0, 65535], "heauens claime luc": [0, 65535], "claime luc all": [0, 65535], "luc all this": [0, 65535], "all this my": [0, 65535], "this my sister": [0, 65535], "my sister is": [0, 65535], "sister is or": [0, 65535], "is or else": [0, 65535], "or else should": [0, 65535], "else should be": [0, 65535], "should be ant": [0, 65535], "be ant call": [0, 65535], "ant call thy": [0, 65535], "call thy selfe": [0, 65535], "thy selfe sister": [0, 65535], "selfe sister sweet": [0, 65535], "sister sweet for": [0, 65535], "sweet for i": [0, 65535], "for i am": [0, 65535], "i am thee": [0, 65535], "am thee thee": [0, 65535], "thee thee will": [0, 65535], "thee will i": [0, 65535], "will i loue": [0, 65535], "i loue and": [0, 65535], "loue and with": [0, 65535], "and with thee": [0, 65535], "with thee lead": [0, 65535], "thee lead my": [0, 65535], "lead my life": [0, 65535], "my life thou": [0, 65535], "life thou hast": [0, 65535], "thou hast no": [0, 65535], "hast no husband": [0, 65535], "no husband yet": [0, 65535], "husband yet nor": [0, 65535], "yet nor i": [0, 65535], "nor i no": [0, 65535], "i no wife": [0, 65535], "no wife giue": [0, 65535], "wife giue me": [0, 65535], "giue me thy": [0, 65535], "me thy hand": [0, 65535], "thy hand luc": [0, 65535], "hand luc oh": [0, 65535], "luc oh soft": [0, 65535], "oh soft sir": [0, 65535], "soft sir hold": [0, 65535], "sir hold you": [0, 65535], "hold you still": [0, 65535], "you still ile": [0, 65535], "still ile fetch": [0, 65535], "ile fetch my": [0, 65535], "fetch my sister": [0, 65535], "my sister to": [0, 65535], "sister to get": [0, 65535], "to get her": [0, 65535], "get her good": [0, 65535], "her good will": [0, 65535], "good will exit": [0, 65535], "will exit enter": [0, 65535], "exit enter dromio": [0, 65535], "enter dromio siracusia": [0, 65535], "dromio siracusia ant": [0, 65535], "siracusia ant why": [0, 65535], "ant why how": [0, 65535], "why how now": [0, 65535], "how now dromio": [0, 65535], "now dromio where": [0, 65535], "dromio where run'st": [0, 65535], "where run'st thou": [0, 65535], "run'st thou so": [0, 65535], "thou so fast": [0, 65535], "so fast s": [0, 65535], "fast s dro": [0, 65535], "s dro doe": [0, 65535], "dro doe you": [0, 65535], "doe you know": [0, 65535], "you know me": [0, 65535], "know me sir": [0, 65535], "me sir am": [0, 65535], "sir am i": [0, 65535], "am i dromio": [0, 65535], "i dromio am": [0, 65535], "dromio am i": [0, 65535], "am i your": [0, 65535], "i your man": [0, 65535], "your man am": [0, 65535], "man am i": [0, 65535], "am i my": [0, 65535], "i my selfe": [0, 65535], "my selfe ant": [0, 65535], "selfe ant thou": [0, 65535], "ant thou art": [0, 65535], "thou art dromio": [0, 65535], "art dromio thou": [0, 65535], "dromio thou art": [0, 65535], "thou art my": [0, 65535], "art my man": [0, 65535], "my man thou": [0, 65535], "man thou art": [0, 65535], "thou art thy": [0, 65535], "art thy selfe": [0, 65535], "thy selfe dro": [0, 65535], "selfe dro i": [0, 65535], "dro i am": [0, 65535], "i am an": [0, 65535], "am an asse": [0, 65535], "an asse i": [0, 65535], "asse i am": [0, 65535], "i am a": [0, 65535], "am a womans": [0, 65535], "a womans man": [0, 65535], "womans man and": [0, 65535], "man and besides": [0, 65535], "and besides my": [0, 65535], "besides my selfe": [0, 65535], "selfe ant what": [0, 65535], "ant what womans": [0, 65535], "what womans man": [0, 65535], "man and how": [0, 65535], "and how besides": [0, 65535], "how besides thy": [0, 65535], "besides thy selfe": [0, 65535], "selfe dro marrie": [0, 65535], "dro marrie sir": [0, 65535], "marrie sir besides": [0, 65535], "sir besides my": [0, 65535], "my selfe i": [0, 65535], "selfe i am": [0, 65535], "i am due": [0, 65535], "am due to": [0, 65535], "due to a": [0, 65535], "to a woman": [0, 65535], "a woman one": [0, 65535], "woman one that": [0, 65535], "one that claimes": [0, 65535], "that claimes me": [0, 65535], "claimes me one": [0, 65535], "me one that": [0, 65535], "one that haunts": [0, 65535], "that haunts me": [0, 65535], "haunts me one": [0, 65535], "one that will": [0, 65535], "that will haue": [0, 65535], "will haue me": [0, 65535], "haue me anti": [0, 65535], "me anti what": [0, 65535], "anti what claime": [0, 65535], "what claime laies": [0, 65535], "claime laies she": [0, 65535], "laies she to": [0, 65535], "she to thee": [0, 65535], "to thee dro": [0, 65535], "thee dro marry": [0, 65535], "dro marry sir": [0, 65535], "marry sir such": [0, 65535], "sir such claime": [0, 65535], "such claime as": [0, 65535], "claime as you": [0, 65535], "as you would": [0, 65535], "you would lay": [0, 65535], "would lay to": [0, 65535], "lay to your": [0, 65535], "to your horse": [0, 65535], "your horse and": [0, 65535], "horse and she": [0, 65535], "she would haue": [0, 65535], "would haue me": [0, 65535], "haue me as": [0, 65535], "me as a": [0, 65535], "as a beast": [0, 65535], "a beast not": [0, 65535], "beast not that": [0, 65535], "not that i": [0, 65535], "that i beeing": [0, 65535], "i beeing a": [0, 65535], "beeing a beast": [0, 65535], "a beast she": [0, 65535], "beast she would": [0, 65535], "haue me but": [0, 65535], "me but that": [0, 65535], "but that she": [0, 65535], "that she being": [0, 65535], "she being a": [0, 65535], "being a verie": [0, 65535], "a verie beastly": [0, 65535], "verie beastly creature": [0, 65535], "beastly creature layes": [0, 65535], "creature layes claime": [0, 65535], "layes claime to": [0, 65535], "claime to me": [0, 65535], "to me anti": [0, 65535], "anti what is": [0, 65535], "what is she": [0, 65535], "is she dro": [0, 65535], "she dro a": [0, 65535], "dro a very": [0, 65535], "a very reuerent": [0, 65535], "very reuerent body": [0, 65535], "reuerent body i": [0, 65535], "body i such": [0, 65535], "i such a": [0, 65535], "such a one": [0, 65535], "a one as": [0, 65535], "one as a": [0, 65535], "as a man": [0, 65535], "man may not": [0, 65535], "may not speake": [0, 65535], "not speake of": [0, 65535], "speake of without": [0, 65535], "of without he": [0, 65535], "without he say": [0, 65535], "he say sir": [0, 65535], "say sir reuerence": [0, 65535], "sir reuerence i": [0, 65535], "reuerence i haue": [0, 65535], "i haue but": [0, 65535], "haue but leane": [0, 65535], "but leane lucke": [0, 65535], "leane lucke in": [0, 65535], "lucke in the": [0, 65535], "in the match": [0, 65535], "the match and": [0, 65535], "match and yet": [0, 65535], "and yet is": [0, 65535], "yet is she": [0, 65535], "is she a": [0, 65535], "she a wondrous": [0, 65535], "a wondrous fat": [0, 65535], "wondrous fat marriage": [0, 65535], "fat marriage anti": [0, 65535], "marriage anti how": [0, 65535], "anti how dost": [0, 65535], "how dost thou": [0, 65535], "dost thou meane": [0, 65535], "thou meane a": [0, 65535], "meane a fat": [0, 65535], "a fat marriage": [0, 65535], "fat marriage dro": [0, 65535], "marriage dro marry": [0, 65535], "marry sir she's": [0, 65535], "sir she's the": [0, 65535], "she's the kitchin": [0, 65535], "the kitchin wench": [0, 65535], "kitchin wench al": [0, 65535], "wench al grease": [0, 65535], "al grease and": [0, 65535], "grease and i": [0, 65535], "and i know": [0, 65535], "know not what": [0, 65535], "not what vse": [0, 65535], "what vse to": [0, 65535], "vse to put": [0, 65535], "put her too": [0, 65535], "her too but": [0, 65535], "too but to": [0, 65535], "but to make": [0, 65535], "make a lampe": [0, 65535], "a lampe of": [0, 65535], "lampe of her": [0, 65535], "of her and": [0, 65535], "her and run": [0, 65535], "and run from": [0, 65535], "run from her": [0, 65535], "from her by": [0, 65535], "her by her": [0, 65535], "by her owne": [0, 65535], "her owne light": [0, 65535], "owne light i": [0, 65535], "light i warrant": [0, 65535], "i warrant her": [0, 65535], "warrant her ragges": [0, 65535], "her ragges and": [0, 65535], "ragges and the": [0, 65535], "and the tallow": [0, 65535], "the tallow in": [0, 65535], "tallow in them": [0, 65535], "in them will": [0, 65535], "them will burne": [0, 65535], "will burne a": [0, 65535], "burne a poland": [0, 65535], "a poland winter": [0, 65535], "poland winter if": [0, 65535], "winter if she": [0, 65535], "if she liues": [0, 65535], "she liues till": [0, 65535], "liues till doomesday": [0, 65535], "till doomesday she'l": [0, 65535], "doomesday she'l burne": [0, 65535], "she'l burne a": [0, 65535], "burne a weeke": [0, 65535], "a weeke longer": [0, 65535], "weeke longer then": [0, 65535], "longer then the": [0, 65535], "then the whole": [0, 65535], "the whole world": [0, 65535], "whole world anti": [0, 65535], "world anti what": [0, 65535], "anti what complexion": [0, 65535], "what complexion is": [0, 65535], "complexion is she": [0, 65535], "is she of": [0, 65535], "she of dro": [0, 65535], "of dro swart": [0, 65535], "dro swart like": [0, 65535], "swart like my": [0, 65535], "like my shoo": [0, 65535], "my shoo but": [0, 65535], "shoo but her": [0, 65535], "but her face": [0, 65535], "her face nothing": [0, 65535], "face nothing like": [0, 65535], "nothing like so": [0, 65535], "like so cleane": [0, 65535], "so cleane kept": [0, 65535], "cleane kept for": [0, 65535], "kept for why": [0, 65535], "for why she": [0, 65535], "why she sweats": [0, 65535], "she sweats a": [0, 65535], "sweats a man": [0, 65535], "man may goe": [0, 65535], "may goe o": [0, 65535], "goe o uer": [0, 65535], "o uer shooes": [0, 65535], "uer shooes in": [0, 65535], "shooes in the": [0, 65535], "in the grime": [0, 65535], "the grime of": [0, 65535], "grime of it": [0, 65535], "of it anti": [0, 65535], "it anti that's": [0, 65535], "anti that's a": [0, 65535], "that's a fault": [0, 65535], "fault that water": [0, 65535], "that water will": [0, 65535], "water will mend": [0, 65535], "will mend dro": [0, 65535], "mend dro no": [0, 65535], "dro no sir": [0, 65535], "no sir 'tis": [0, 65535], "sir 'tis in": [0, 65535], "'tis in graine": [0, 65535], "in graine noahs": [0, 65535], "graine noahs flood": [0, 65535], "noahs flood could": [0, 65535], "flood could not": [0, 65535], "could not do": [0, 65535], "not do it": [0, 65535], "do it anti": [0, 65535], "it anti what's": [0, 65535], "anti what's her": [0, 65535], "what's her name": [0, 65535], "her name dro": [0, 65535], "name dro nell": [0, 65535], "dro nell sir": [0, 65535], "nell sir but": [0, 65535], "sir but her": [0, 65535], "but her name": [0, 65535], "her name is": [0, 65535], "name is three": [0, 65535], "is three quarters": [0, 65535], "three quarters that's": [0, 65535], "quarters that's an": [0, 65535], "that's an ell": [0, 65535], "an ell and": [0, 65535], "ell and three": [0, 65535], "and three quarters": [0, 65535], "three quarters will": [0, 65535], "quarters will not": [0, 65535], "will not measure": [0, 65535], "not measure her": [0, 65535], "measure her from": [0, 65535], "her from hip": [0, 65535], "from hip to": [0, 65535], "hip to hip": [0, 65535], "to hip anti": [0, 65535], "hip anti then": [0, 65535], "anti then she": [0, 65535], "then she beares": [0, 65535], "she beares some": [0, 65535], "beares some bredth": [0, 65535], "some bredth dro": [0, 65535], "bredth dro no": [0, 65535], "dro no longer": [0, 65535], "no longer from": [0, 65535], "longer from head": [0, 65535], "from head to": [0, 65535], "head to foot": [0, 65535], "to foot then": [0, 65535], "foot then from": [0, 65535], "then from hippe": [0, 65535], "from hippe to": [0, 65535], "hippe to hippe": [0, 65535], "to hippe she": [0, 65535], "hippe she is": [0, 65535], "she is sphericall": [0, 65535], "is sphericall like": [0, 65535], "sphericall like a": [0, 65535], "like a globe": [0, 65535], "a globe i": [0, 65535], "globe i could": [0, 65535], "i could find": [0, 65535], "could find out": [0, 65535], "find out countries": [0, 65535], "out countries in": [0, 65535], "countries in her": [0, 65535], "in her anti": [0, 65535], "her anti in": [0, 65535], "anti in what": [0, 65535], "in what part": [0, 65535], "what part of": [0, 65535], "part of her": [0, 65535], "of her body": [0, 65535], "her body stands": [0, 65535], "body stands ireland": [0, 65535], "stands ireland dro": [0, 65535], "ireland dro marry": [0, 65535], "marry sir in": [0, 65535], "sir in her": [0, 65535], "in her buttockes": [0, 65535], "her buttockes i": [0, 65535], "buttockes i found": [0, 65535], "i found it": [0, 65535], "found it out": [0, 65535], "it out by": [0, 65535], "out by the": [0, 65535], "by the bogges": [0, 65535], "the bogges ant": [0, 65535], "bogges ant where": [0, 65535], "ant where scotland": [0, 65535], "where scotland dro": [0, 65535], "scotland dro i": [0, 65535], "dro i found": [0, 65535], "found it by": [0, 65535], "it by the": [0, 65535], "by the barrennesse": [0, 65535], "the barrennesse hard": [0, 65535], "barrennesse hard in": [0, 65535], "hard in the": [0, 65535], "in the palme": [0, 65535], "the palme of": [0, 65535], "palme of the": [0, 65535], "of the hand": [0, 65535], "the hand ant": [0, 65535], "hand ant where": [0, 65535], "ant where france": [0, 65535], "where france dro": [0, 65535], "france dro in": [0, 65535], "dro in her": [0, 65535], "in her forhead": [0, 65535], "her forhead arm'd": [0, 65535], "forhead arm'd and": [0, 65535], "arm'd and reuerted": [0, 65535], "and reuerted making": [0, 65535], "reuerted making warre": [0, 65535], "making warre against": [0, 65535], "warre against her": [0, 65535], "against her heire": [0, 65535], "her heire ant": [0, 65535], "heire ant where": [0, 65535], "ant where england": [0, 65535], "where england dro": [0, 65535], "england dro i": [0, 65535], "dro i look'd": [0, 65535], "i look'd for": [0, 65535], "look'd for the": [0, 65535], "for the chalkle": [0, 65535], "the chalkle cliffes": [0, 65535], "chalkle cliffes but": [0, 65535], "cliffes but i": [0, 65535], "but i could": [0, 65535], "find no whitenesse": [0, 65535], "no whitenesse in": [0, 65535], "whitenesse in them": [0, 65535], "in them but": [0, 65535], "them but i": [0, 65535], "but i guesse": [0, 65535], "i guesse it": [0, 65535], "guesse it stood": [0, 65535], "it stood in": [0, 65535], "stood in her": [0, 65535], "in her chin": [0, 65535], "her chin by": [0, 65535], "chin by the": [0, 65535], "by the salt": [0, 65535], "the salt rheume": [0, 65535], "salt rheume that": [0, 65535], "rheume that ranne": [0, 65535], "that ranne betweene": [0, 65535], "ranne betweene france": [0, 65535], "betweene france and": [0, 65535], "france and it": [0, 65535], "and it ant": [0, 65535], "it ant where": [0, 65535], "ant where spaine": [0, 65535], "where spaine dro": [0, 65535], "spaine dro faith": [0, 65535], "dro faith i": [0, 65535], "faith i saw": [0, 65535], "i saw it": [0, 65535], "saw it not": [0, 65535], "it not but": [0, 65535], "not but i": [0, 65535], "but i felt": [0, 65535], "i felt it": [0, 65535], "felt it hot": [0, 65535], "it hot in": [0, 65535], "hot in her": [0, 65535], "in her breth": [0, 65535], "her breth ant": [0, 65535], "breth ant where": [0, 65535], "ant where america": [0, 65535], "where america the": [0, 65535], "america the indies": [0, 65535], "the indies dro": [0, 65535], "indies dro oh": [0, 65535], "dro oh sir": [0, 65535], "oh sir vpon": [0, 65535], "sir vpon her": [0, 65535], "vpon her nose": [0, 65535], "her nose all": [0, 65535], "nose all ore": [0, 65535], "all ore embellished": [0, 65535], "ore embellished with": [0, 65535], "embellished with rubies": [0, 65535], "with rubies carbuncles": [0, 65535], "rubies carbuncles saphires": [0, 65535], "carbuncles saphires declining": [0, 65535], "saphires declining their": [0, 65535], "declining their rich": [0, 65535], "their rich aspect": [0, 65535], "rich aspect to": [0, 65535], "aspect to the": [0, 65535], "to the hot": [0, 65535], "the hot breath": [0, 65535], "hot breath of": [0, 65535], "breath of spaine": [0, 65535], "of spaine who": [0, 65535], "spaine who sent": [0, 65535], "who sent whole": [0, 65535], "sent whole armadoes": [0, 65535], "whole armadoes of": [0, 65535], "armadoes of carrects": [0, 65535], "of carrects to": [0, 65535], "carrects to be": [0, 65535], "to be ballast": [0, 65535], "be ballast at": [0, 65535], "ballast at her": [0, 65535], "at her nose": [0, 65535], "her nose anti": [0, 65535], "nose anti where": [0, 65535], "anti where stood": [0, 65535], "where stood belgia": [0, 65535], "stood belgia the": [0, 65535], "belgia the netherlands": [0, 65535], "the netherlands dro": [0, 65535], "netherlands dro oh": [0, 65535], "oh sir i": [0, 65535], "sir i did": [0, 65535], "i did not": [0, 65535], "did not looke": [0, 65535], "not looke so": [0, 65535], "looke so low": [0, 65535], "so low to": [0, 65535], "low to conclude": [0, 65535], "to conclude this": [0, 65535], "conclude this drudge": [0, 65535], "this drudge or": [0, 65535], "drudge or diuiner": [0, 65535], "or diuiner layd": [0, 65535], "diuiner layd claime": [0, 65535], "layd claime to": [0, 65535], "claime to mee": [0, 65535], "to mee call'd": [0, 65535], "mee call'd mee": [0, 65535], "call'd mee dromio": [0, 65535], "mee dromio swore": [0, 65535], "dromio swore i": [0, 65535], "swore i was": [0, 65535], "i was assur'd": [0, 65535], "was assur'd to": [0, 65535], "assur'd to her": [0, 65535], "to her told": [0, 65535], "her told me": [0, 65535], "told me what": [0, 65535], "me what priuie": [0, 65535], "what priuie markes": [0, 65535], "priuie markes i": [0, 65535], "markes i had": [0, 65535], "i had about": [0, 65535], "had about mee": [0, 65535], "about mee as": [0, 65535], "mee as the": [0, 65535], "as the marke": [0, 65535], "the marke of": [0, 65535], "marke of my": [0, 65535], "of my shoulder": [0, 65535], "my shoulder the": [0, 65535], "shoulder the mole": [0, 65535], "the mole in": [0, 65535], "mole in my": [0, 65535], "in my necke": [0, 65535], "my necke the": [0, 65535], "necke the great": [0, 65535], "the great wart": [0, 65535], "great wart on": [0, 65535], "wart on my": [0, 65535], "on my left": [0, 65535], "my left arme": [0, 65535], "left arme that": [0, 65535], "arme that i": [0, 65535], "that i amaz'd": [0, 65535], "i amaz'd ranne": [0, 65535], "amaz'd ranne from": [0, 65535], "ranne from her": [0, 65535], "from her as": [0, 65535], "her as a": [0, 65535], "as a witch": [0, 65535], "a witch and": [0, 65535], "witch and i": [0, 65535], "and i thinke": [0, 65535], "i thinke if": [0, 65535], "thinke if my": [0, 65535], "if my brest": [0, 65535], "my brest had": [0, 65535], "brest had not": [0, 65535], "had not beene": [0, 65535], "not beene made": [0, 65535], "beene made of": [0, 65535], "made of faith": [0, 65535], "of faith and": [0, 65535], "faith and my": [0, 65535], "and my heart": [0, 65535], "my heart of": [0, 65535], "heart of steele": [0, 65535], "of steele she": [0, 65535], "steele she had": [0, 65535], "she had transform'd": [0, 65535], "had transform'd me": [0, 65535], "transform'd me to": [0, 65535], "me to a": [0, 65535], "to a curtull": [0, 65535], "a curtull dog": [0, 65535], "curtull dog made": [0, 65535], "dog made me": [0, 65535], "made me turne": [0, 65535], "me turne i'th": [0, 65535], "turne i'th wheele": [0, 65535], "i'th wheele anti": [0, 65535], "wheele anti go": [0, 65535], "anti go hie": [0, 65535], "go hie thee": [0, 65535], "hie thee presently": [0, 65535], "thee presently post": [0, 65535], "presently post to": [0, 65535], "post to the": [0, 65535], "to the rode": [0, 65535], "the rode and": [0, 65535], "rode and if": [0, 65535], "if the winde": [0, 65535], "the winde blow": [0, 65535], "winde blow any": [0, 65535], "blow any way": [0, 65535], "any way from": [0, 65535], "way from shore": [0, 65535], "from shore i": [0, 65535], "shore i will": [0, 65535], "i will not": [0, 65535], "will not harbour": [0, 65535], "not harbour in": [0, 65535], "harbour in this": [0, 65535], "in this towne": [0, 65535], "this towne to": [0, 65535], "towne to night": [0, 65535], "to night if": [0, 65535], "night if any": [0, 65535], "if any barke": [0, 65535], "any barke put": [0, 65535], "barke put forth": [0, 65535], "put forth come": [0, 65535], "forth come to": [0, 65535], "come to the": [0, 65535], "to the mart": [0, 65535], "the mart where": [0, 65535], "mart where i": [0, 65535], "where i will": [0, 65535], "i will walke": [0, 65535], "will walke till": [0, 65535], "walke till thou": [0, 65535], "till thou returne": [0, 65535], "thou returne to": [0, 65535], "returne to me": [0, 65535], "to me if": [0, 65535], "me if euerie": [0, 65535], "if euerie one": [0, 65535], "euerie one knowes": [0, 65535], "one knowes vs": [0, 65535], "knowes vs and": [0, 65535], "vs and we": [0, 65535], "and we know": [0, 65535], "we know none": [0, 65535], "know none 'tis": [0, 65535], "none 'tis time": [0, 65535], "'tis time i": [0, 65535], "time i thinke": [0, 65535], "i thinke to": [0, 65535], "thinke to trudge": [0, 65535], "to trudge packe": [0, 65535], "trudge packe and": [0, 65535], "packe and be": [0, 65535], "and be gone": [0, 65535], "be gone dro": [0, 65535], "gone dro as": [0, 65535], "dro as from": [0, 65535], "as from a": [0, 65535], "from a beare": [0, 65535], "a beare a": [0, 65535], "beare a man": [0, 65535], "a man would": [0, 65535], "man would run": [0, 65535], "would run for": [0, 65535], "run for life": [0, 65535], "for life so": [0, 65535], "life so flie": [0, 65535], "so flie i": [0, 65535], "flie i from": [0, 65535], "i from her": [0, 65535], "from her that": [0, 65535], "her that would": [0, 65535], "that would be": [0, 65535], "would be my": [0, 65535], "be my wife": [0, 65535], "my wife exit": [0, 65535], "wife exit anti": [0, 65535], "exit anti there's": [0, 65535], "anti there's none": [0, 65535], "there's none but": [0, 65535], "none but witches": [0, 65535], "but witches do": [0, 65535], "witches do inhabite": [0, 65535], "do inhabite heere": [0, 65535], "inhabite heere and": [0, 65535], "heere and therefore": [0, 65535], "and therefore 'tis": [0, 65535], "therefore 'tis hie": [0, 65535], "'tis hie time": [0, 65535], "hie time that": [0, 65535], "time that i": [0, 65535], "that i were": [0, 65535], "i were hence": [0, 65535], "were hence she": [0, 65535], "hence she that": [0, 65535], "she that doth": [0, 65535], "that doth call": [0, 65535], "doth call me": [0, 65535], "call me husband": [0, 65535], "me husband euen": [0, 65535], "husband euen my": [0, 65535], "euen my soule": [0, 65535], "my soule doth": [0, 65535], "soule doth for": [0, 65535], "doth for a": [0, 65535], "for a wife": [0, 65535], "a wife abhorre": [0, 65535], "wife abhorre but": [0, 65535], "abhorre but her": [0, 65535], "but her faire": [0, 65535], "her faire sister": [0, 65535], "faire sister possest": [0, 65535], "sister possest with": [0, 65535], "possest with such": [0, 65535], "with such a": [0, 65535], "such a gentle": [0, 65535], "a gentle soueraigne": [0, 65535], "gentle soueraigne grace": [0, 65535], "soueraigne grace of": [0, 65535], "grace of such": [0, 65535], "of such inchanting": [0, 65535], "such inchanting presence": [0, 65535], "inchanting presence and": [0, 65535], "presence and discourse": [0, 65535], "and discourse hath": [0, 65535], "discourse hath almost": [0, 65535], "hath almost made": [0, 65535], "almost made me": [0, 65535], "made me traitor": [0, 65535], "me traitor to": [0, 65535], "traitor to my": [0, 65535], "to my selfe": [0, 65535], "my selfe but": [0, 65535], "selfe but least": [0, 65535], "but least my": [0, 65535], "least my selfe": [0, 65535], "my selfe be": [0, 65535], "selfe be guilty": [0, 65535], "be guilty to": [0, 65535], "guilty to selfe": [0, 65535], "to selfe wrong": [0, 65535], "selfe wrong ile": [0, 65535], "wrong ile stop": [0, 65535], "ile stop mine": [0, 65535], "stop mine eares": [0, 65535], "mine eares against": [0, 65535], "eares against the": [0, 65535], "against the mermaids": [0, 65535], "the mermaids song": [0, 65535], "mermaids song enter": [0, 65535], "song enter angelo": [0, 65535], "enter angelo with": [0, 65535], "angelo with the": [0, 65535], "with the chaine": [0, 65535], "the chaine ang": [0, 65535], "chaine ang mr": [0, 65535], "ang mr antipholus": [0, 65535], "mr antipholus anti": [0, 65535], "antipholus anti i": [0, 65535], "anti i that's": [0, 65535], "i that's my": [0, 65535], "that's my name": [0, 65535], "my name ang": [0, 65535], "name ang i": [0, 65535], "ang i know": [0, 65535], "i know it": [0, 65535], "know it well": [0, 65535], "it well sir": [0, 65535], "well sir loe": [0, 65535], "sir loe here's": [0, 65535], "loe here's the": [0, 65535], "here's the chaine": [0, 65535], "the chaine i": [0, 65535], "chaine i thought": [0, 65535], "to haue tane": [0, 65535], "haue tane you": [0, 65535], "tane you at": [0, 65535], "you at the": [0, 65535], "at the porpentine": [0, 65535], "the porpentine the": [0, 65535], "porpentine the chaine": [0, 65535], "the chaine vnfinish'd": [0, 65535], "chaine vnfinish'd made": [0, 65535], "vnfinish'd made me": [0, 65535], "made me stay": [0, 65535], "me stay thus": [0, 65535], "stay thus long": [0, 65535], "thus long anti": [0, 65535], "long anti what": [0, 65535], "what is your": [0, 65535], "is your will": [0, 65535], "your will that": [0, 65535], "will that i": [0, 65535], "that i shal": [0, 65535], "i shal do": [0, 65535], "shal do with": [0, 65535], "do with this": [0, 65535], "with this ang": [0, 65535], "this ang what": [0, 65535], "ang what please": [0, 65535], "what please your": [0, 65535], "please your selfe": [0, 65535], "your selfe sir": [0, 65535], "selfe sir i": [0, 65535], "sir i haue": [0, 65535], "i haue made": [0, 65535], "haue made it": [0, 65535], "made it for": [0, 65535], "it for you": [0, 65535], "for you anti": [0, 65535], "you anti made": [0, 65535], "anti made it": [0, 65535], "it for me": [0, 65535], "for me sir": [0, 65535], "me sir i": [0, 65535], "sir i bespoke": [0, 65535], "i bespoke it": [0, 65535], "bespoke it not": [0, 65535], "it not ang": [0, 65535], "not ang not": [0, 65535], "ang not once": [0, 65535], "not once nor": [0, 65535], "once nor twice": [0, 65535], "nor twice but": [0, 65535], "twice but twentie": [0, 65535], "but twentie times": [0, 65535], "twentie times you": [0, 65535], "times you haue": [0, 65535], "you haue go": [0, 65535], "haue go home": [0, 65535], "go home with": [0, 65535], "home with it": [0, 65535], "it and please": [0, 65535], "and please your": [0, 65535], "please your wife": [0, 65535], "your wife withall": [0, 65535], "wife withall and": [0, 65535], "withall and soone": [0, 65535], "and soone at": [0, 65535], "soone at supper": [0, 65535], "at supper time": [0, 65535], "supper time ile": [0, 65535], "time ile visit": [0, 65535], "ile visit you": [0, 65535], "visit you and": [0, 65535], "you and then": [0, 65535], "and then receiue": [0, 65535], "then receiue my": [0, 65535], "receiue my money": [0, 65535], "my money for": [0, 65535], "money for the": [0, 65535], "for the chaine": [0, 65535], "the chaine anti": [0, 65535], "chaine anti i": [0, 65535], "anti i pray": [0, 65535], "pray you sir": [0, 65535], "you sir receiue": [0, 65535], "sir receiue the": [0, 65535], "receiue the money": [0, 65535], "the money now": [0, 65535], "money now for": [0, 65535], "now for feare": [0, 65535], "for feare you": [0, 65535], "feare you ne're": [0, 65535], "you ne're see": [0, 65535], "ne're see chaine": [0, 65535], "see chaine nor": [0, 65535], "chaine nor mony": [0, 65535], "nor mony more": [0, 65535], "mony more ang": [0, 65535], "more ang you": [0, 65535], "ang you are": [0, 65535], "you are a": [0, 65535], "are a merry": [0, 65535], "a merry man": [0, 65535], "merry man sir": [0, 65535], "man sir fare": [0, 65535], "sir fare you": [0, 65535], "fare you well": [0, 65535], "you well exit": [0, 65535], "well exit ant": [0, 65535], "exit ant what": [0, 65535], "ant what i": [0, 65535], "what i should": [0, 65535], "i should thinke": [0, 65535], "should thinke of": [0, 65535], "thinke of this": [0, 65535], "of this i": [0, 65535], "this i cannot": [0, 65535], "i cannot tell": [0, 65535], "cannot tell but": [0, 65535], "tell but this": [0, 65535], "but this i": [0, 65535], "this i thinke": [0, 65535], "i thinke there's": [0, 65535], "thinke there's no": [0, 65535], "there's no man": [0, 65535], "no man is": [0, 65535], "man is so": [0, 65535], "is so vaine": [0, 65535], "so vaine that": [0, 65535], "vaine that would": [0, 65535], "that would refuse": [0, 65535], "would refuse so": [0, 65535], "refuse so faire": [0, 65535], "so faire an": [0, 65535], "faire an offer'd": [0, 65535], "an offer'd chaine": [0, 65535], "offer'd chaine i": [0, 65535], "chaine i see": [0, 65535], "i see a": [0, 65535], "see a man": [0, 65535], "a man heere": [0, 65535], "man heere needs": [0, 65535], "heere needs not": [0, 65535], "needs not liue": [0, 65535], "not liue by": [0, 65535], "liue by shifts": [0, 65535], "by shifts when": [0, 65535], "shifts when in": [0, 65535], "when in the": [0, 65535], "in the streets": [0, 65535], "the streets he": [0, 65535], "streets he meetes": [0, 65535], "he meetes such": [0, 65535], "meetes such golden": [0, 65535], "such golden gifts": [0, 65535], "golden gifts ile": [0, 65535], "gifts ile to": [0, 65535], "ile to the": [0, 65535], "mart and there": [0, 65535], "and there for": [0, 65535], "there for dromio": [0, 65535], "for dromio stay": [0, 65535], "dromio stay if": [0, 65535], "stay if any": [0, 65535], "if any ship": [0, 65535], "any ship put": [0, 65535], "ship put out": [0, 65535], "put out then": [0, 65535], "out then straight": [0, 65535], "then straight away": [0, 65535], "straight away exit": [0, 65535], "actus tertius scena prima": [0, 65535], "tertius scena prima enter": [0, 65535], "scena prima enter antipholus": [0, 65535], "prima enter antipholus of": [0, 65535], "enter antipholus of ephesus": [0, 65535], "antipholus of ephesus his": [0, 65535], "of ephesus his man": [0, 65535], "ephesus his man dromio": [0, 65535], "his man dromio angelo": [0, 65535], "man dromio angelo the": [0, 65535], "dromio angelo the goldsmith": [0, 65535], "angelo the goldsmith and": [0, 65535], "the goldsmith and balthaser": [0, 65535], "goldsmith and balthaser the": [0, 65535], "and balthaser the merchant": [0, 65535], "balthaser the merchant e": [0, 65535], "the merchant e anti": [0, 65535], "merchant e anti good": [0, 65535], "e anti good signior": [0, 65535], "anti good signior angelo": [0, 65535], "good signior angelo you": [0, 65535], "signior angelo you must": [0, 65535], "angelo you must excuse": [0, 65535], "you must excuse vs": [0, 65535], "must excuse vs all": [0, 65535], "excuse vs all my": [0, 65535], "vs all my wife": [0, 65535], "all my wife is": [0, 65535], "my wife is shrewish": [0, 65535], "wife is shrewish when": [0, 65535], "is shrewish when i": [0, 65535], "shrewish when i keepe": [0, 65535], "when i keepe not": [0, 65535], "i keepe not howres": [0, 65535], "keepe not howres say": [0, 65535], "not howres say that": [0, 65535], "howres say that i": [0, 65535], "say that i lingerd": [0, 65535], "that i lingerd with": [0, 65535], "i lingerd with you": [0, 65535], "lingerd with you at": [0, 65535], "with you at your": [0, 65535], "you at your shop": [0, 65535], "at your shop to": [0, 65535], "your shop to see": [0, 65535], "shop to see the": [0, 65535], "to see the making": [0, 65535], "see the making of": [0, 65535], "the making of her": [0, 65535], "making of her carkanet": [0, 65535], "of her carkanet and": [0, 65535], "her carkanet and that": [0, 65535], "carkanet and that to": [0, 65535], "and that to morrow": [0, 65535], "that to morrow you": [0, 65535], "to morrow you will": [0, 65535], "morrow you will bring": [0, 65535], "you will bring it": [0, 65535], "will bring it home": [0, 65535], "bring it home but": [0, 65535], "it home but here's": [0, 65535], "home but here's a": [0, 65535], "but here's a villaine": [0, 65535], "here's a villaine that": [0, 65535], "a villaine that would": [0, 65535], "villaine that would face": [0, 65535], "that would face me": [0, 65535], "would face me downe": [0, 65535], "face me downe he": [0, 65535], "me downe he met": [0, 65535], "downe he met me": [0, 65535], "he met me on": [0, 65535], "met me on the": [0, 65535], "me on the mart": [0, 65535], "on the mart and": [0, 65535], "the mart and that": [0, 65535], "mart and that i": [0, 65535], "and that i beat": [0, 65535], "that i beat him": [0, 65535], "i beat him and": [0, 65535], "beat him and charg'd": [0, 65535], "him and charg'd him": [0, 65535], "and charg'd him with": [0, 65535], "charg'd him with a": [0, 65535], "him with a thousand": [0, 65535], "with a thousand markes": [0, 65535], "a thousand markes in": [0, 65535], "thousand markes in gold": [0, 65535], "markes in gold and": [0, 65535], "in gold and that": [0, 65535], "gold and that i": [0, 65535], "and that i did": [0, 65535], "that i did denie": [0, 65535], "i did denie my": [0, 65535], "did denie my wife": [0, 65535], "denie my wife and": [0, 65535], "my wife and house": [0, 65535], "wife and house thou": [0, 65535], "and house thou drunkard": [0, 65535], "house thou drunkard thou": [0, 65535], "thou drunkard thou what": [0, 65535], "drunkard thou what didst": [0, 65535], "thou what didst thou": [0, 65535], "what didst thou meane": [0, 65535], "didst thou meane by": [0, 65535], "thou meane by this": [0, 65535], "meane by this e": [0, 65535], "by this e dro": [0, 65535], "this e dro say": [0, 65535], "e dro say what": [0, 65535], "dro say what you": [0, 65535], "say what you wil": [0, 65535], "what you wil sir": [0, 65535], "you wil sir but": [0, 65535], "wil sir but i": [0, 65535], "sir but i know": [0, 65535], "but i know what": [0, 65535], "i know what i": [0, 65535], "know what i know": [0, 65535], "what i know that": [0, 65535], "i know that you": [0, 65535], "know that you beat": [0, 65535], "that you beat me": [0, 65535], "you beat me at": [0, 65535], "beat me at the": [0, 65535], "me at the mart": [0, 65535], "at the mart i": [0, 65535], "the mart i haue": [0, 65535], "mart i haue your": [0, 65535], "i haue your hand": [0, 65535], "haue your hand to": [0, 65535], "your hand to show": [0, 65535], "hand to show if": [0, 65535], "to show if the": [0, 65535], "show if the skin": [0, 65535], "if the skin were": [0, 65535], "the skin were parchment": [0, 65535], "skin were parchment the": [0, 65535], "were parchment the blows": [0, 65535], "parchment the blows you": [0, 65535], "the blows you gaue": [0, 65535], "blows you gaue were": [0, 65535], "you gaue were ink": [0, 65535], "gaue were ink your": [0, 65535], "were ink your owne": [0, 65535], "ink your owne hand": [0, 65535], "your owne hand writing": [0, 65535], "owne hand writing would": [0, 65535], "hand writing would tell": [0, 65535], "writing would tell you": [0, 65535], "would tell you what": [0, 65535], "tell you what i": [0, 65535], "you what i thinke": [0, 65535], "what i thinke e": [0, 65535], "i thinke e ant": [0, 65535], "thinke e ant i": [0, 65535], "e ant i thinke": [0, 65535], "ant i thinke thou": [0, 65535], "i thinke thou art": [0, 65535], "thinke thou art an": [0, 65535], "thou art an asse": [0, 65535], "art an asse e": [0, 65535], "an asse e dro": [0, 65535], "asse e dro marry": [0, 65535], "e dro marry so": [0, 65535], "dro marry so it": [0, 65535], "marry so it doth": [0, 65535], "so it doth appeare": [0, 65535], "it doth appeare by": [0, 65535], "doth appeare by the": [0, 65535], "appeare by the wrongs": [0, 65535], "by the wrongs i": [0, 65535], "the wrongs i suffer": [0, 65535], "wrongs i suffer and": [0, 65535], "i suffer and the": [0, 65535], "suffer and the blowes": [0, 65535], "and the blowes i": [0, 65535], "the blowes i beare": [0, 65535], "blowes i beare i": [0, 65535], "i beare i should": [0, 65535], "beare i should kicke": [0, 65535], "i should kicke being": [0, 65535], "should kicke being kickt": [0, 65535], "kicke being kickt and": [0, 65535], "being kickt and being": [0, 65535], "kickt and being at": [0, 65535], "and being at that": [0, 65535], "being at that passe": [0, 65535], "at that passe you": [0, 65535], "that passe you would": [0, 65535], "passe you would keepe": [0, 65535], "you would keepe from": [0, 65535], "would keepe from my": [0, 65535], "keepe from my heeles": [0, 65535], "from my heeles and": [0, 65535], "my heeles and beware": [0, 65535], "heeles and beware of": [0, 65535], "and beware of an": [0, 65535], "beware of an asse": [0, 65535], "of an asse e": [0, 65535], "an asse e an": [0, 65535], "asse e an y'are": [0, 65535], "e an y'are sad": [0, 65535], "an y'are sad signior": [0, 65535], "y'are sad signior balthazar": [0, 65535], "sad signior balthazar pray": [0, 65535], "signior balthazar pray god": [0, 65535], "balthazar pray god our": [0, 65535], "pray god our cheer": [0, 65535], "god our cheer may": [0, 65535], "our cheer may answer": [0, 65535], "cheer may answer my": [0, 65535], "may answer my good": [0, 65535], "answer my good will": [0, 65535], "my good will and": [0, 65535], "good will and your": [0, 65535], "will and your good": [0, 65535], "and your good welcom": [0, 65535], "your good welcom here": [0, 65535], "good welcom here bal": [0, 65535], "welcom here bal i": [0, 65535], "here bal i hold": [0, 65535], "bal i hold your": [0, 65535], "i hold your dainties": [0, 65535], "hold your dainties cheap": [0, 65535], "your dainties cheap sir": [0, 65535], "dainties cheap sir your": [0, 65535], "cheap sir your welcom": [0, 65535], "sir your welcom deer": [0, 65535], "your welcom deer e": [0, 65535], "welcom deer e an": [0, 65535], "deer e an oh": [0, 65535], "e an oh signior": [0, 65535], "an oh signior balthazar": [0, 65535], "oh signior balthazar either": [0, 65535], "signior balthazar either at": [0, 65535], "balthazar either at flesh": [0, 65535], "either at flesh or": [0, 65535], "at flesh or fish": [0, 65535], "flesh or fish a": [0, 65535], "or fish a table": [0, 65535], "fish a table full": [0, 65535], "a table full of": [0, 65535], "table full of welcome": [0, 65535], "full of welcome makes": [0, 65535], "of welcome makes scarce": [0, 65535], "welcome makes scarce one": [0, 65535], "makes scarce one dainty": [0, 65535], "scarce one dainty dish": [0, 65535], "one dainty dish bal": [0, 65535], "dainty dish bal good": [0, 65535], "dish bal good meat": [0, 65535], "bal good meat sir": [0, 65535], "good meat sir is": [0, 65535], "meat sir is co": [0, 65535], "sir is co m": [0, 65535], "is co m mon": [0, 65535], "co m mon that": [0, 65535], "m mon that euery": [0, 65535], "mon that euery churle": [0, 65535], "that euery churle affords": [0, 65535], "euery churle affords anti": [0, 65535], "churle affords anti and": [0, 65535], "affords anti and welcome": [0, 65535], "anti and welcome more": [0, 65535], "and welcome more common": [0, 65535], "welcome more common for": [0, 65535], "more common for thats": [0, 65535], "common for thats nothing": [0, 65535], "for thats nothing but": [0, 65535], "thats nothing but words": [0, 65535], "nothing but words bal": [0, 65535], "but words bal small": [0, 65535], "words bal small cheere": [0, 65535], "bal small cheere and": [0, 65535], "small cheere and great": [0, 65535], "cheere and great welcome": [0, 65535], "and great welcome makes": [0, 65535], "great welcome makes a": [0, 65535], "welcome makes a merrie": [0, 65535], "makes a merrie feast": [0, 65535], "a merrie feast anti": [0, 65535], "merrie feast anti i": [0, 65535], "feast anti i to": [0, 65535], "anti i to a": [0, 65535], "i to a niggardly": [0, 65535], "to a niggardly host": [0, 65535], "a niggardly host and": [0, 65535], "niggardly host and more": [0, 65535], "host and more sparing": [0, 65535], "and more sparing guest": [0, 65535], "more sparing guest but": [0, 65535], "sparing guest but though": [0, 65535], "guest but though my": [0, 65535], "but though my cates": [0, 65535], "though my cates be": [0, 65535], "my cates be meane": [0, 65535], "cates be meane take": [0, 65535], "be meane take them": [0, 65535], "meane take them in": [0, 65535], "take them in good": [0, 65535], "them in good part": [0, 65535], "in good part better": [0, 65535], "good part better cheere": [0, 65535], "part better cheere may": [0, 65535], "better cheere may you": [0, 65535], "cheere may you haue": [0, 65535], "may you haue but": [0, 65535], "you haue but not": [0, 65535], "haue but not with": [0, 65535], "but not with better": [0, 65535], "not with better hart": [0, 65535], "with better hart but": [0, 65535], "better hart but soft": [0, 65535], "hart but soft my": [0, 65535], "but soft my doore": [0, 65535], "soft my doore is": [0, 65535], "my doore is lockt": [0, 65535], "doore is lockt goe": [0, 65535], "is lockt goe bid": [0, 65535], "lockt goe bid them": [0, 65535], "goe bid them let": [0, 65535], "bid them let vs": [0, 65535], "them let vs in": [0, 65535], "let vs in e": [0, 65535], "vs in e dro": [0, 65535], "in e dro maud": [0, 65535], "e dro maud briget": [0, 65535], "dro maud briget marian": [0, 65535], "maud briget marian cisley": [0, 65535], "briget marian cisley gillian": [0, 65535], "marian cisley gillian ginn": [0, 65535], "cisley gillian ginn s": [0, 65535], "gillian ginn s dro": [0, 65535], "ginn s dro mome": [0, 65535], "s dro mome malthorse": [0, 65535], "dro mome malthorse capon": [0, 65535], "mome malthorse capon coxcombe": [0, 65535], "malthorse capon coxcombe idiot": [0, 65535], "capon coxcombe idiot patch": [0, 65535], "coxcombe idiot patch either": [0, 65535], "idiot patch either get": [0, 65535], "patch either get thee": [0, 65535], "either get thee from": [0, 65535], "get thee from the": [0, 65535], "thee from the dore": [0, 65535], "from the dore or": [0, 65535], "the dore or sit": [0, 65535], "dore or sit downe": [0, 65535], "or sit downe at": [0, 65535], "sit downe at the": [0, 65535], "downe at the hatch": [0, 65535], "at the hatch dost": [0, 65535], "the hatch dost thou": [0, 65535], "hatch dost thou coniure": [0, 65535], "dost thou coniure for": [0, 65535], "thou coniure for wenches": [0, 65535], "coniure for wenches that": [0, 65535], "for wenches that thou": [0, 65535], "wenches that thou calst": [0, 65535], "that thou calst for": [0, 65535], "thou calst for such": [0, 65535], "calst for such store": [0, 65535], "for such store when": [0, 65535], "such store when one": [0, 65535], "store when one is": [0, 65535], "when one is one": [0, 65535], "one is one too": [0, 65535], "is one too many": [0, 65535], "one too many goe": [0, 65535], "too many goe get": [0, 65535], "many goe get thee": [0, 65535], "goe get thee from": [0, 65535], "from the dore e": [0, 65535], "the dore e dro": [0, 65535], "dore e dro what": [0, 65535], "e dro what patch": [0, 65535], "dro what patch is": [0, 65535], "what patch is made": [0, 65535], "patch is made our": [0, 65535], "is made our porter": [0, 65535], "made our porter my": [0, 65535], "our porter my master": [0, 65535], "porter my master stayes": [0, 65535], "my master stayes in": [0, 65535], "master stayes in the": [0, 65535], "stayes in the street": [0, 65535], "in the street s": [0, 65535], "the street s dro": [0, 65535], "street s dro let": [0, 65535], "s dro let him": [0, 65535], "dro let him walke": [0, 65535], "let him walke from": [0, 65535], "him walke from whence": [0, 65535], "walke from whence he": [0, 65535], "from whence he came": [0, 65535], "whence he came lest": [0, 65535], "he came lest hee": [0, 65535], "came lest hee catch": [0, 65535], "lest hee catch cold": [0, 65535], "hee catch cold on's": [0, 65535], "catch cold on's feet": [0, 65535], "cold on's feet e": [0, 65535], "on's feet e ant": [0, 65535], "feet e ant who": [0, 65535], "e ant who talks": [0, 65535], "ant who talks within": [0, 65535], "who talks within there": [0, 65535], "talks within there hoa": [0, 65535], "within there hoa open": [0, 65535], "there hoa open the": [0, 65535], "hoa open the dore": [0, 65535], "open the dore s": [0, 65535], "the dore s dro": [0, 65535], "dore s dro right": [0, 65535], "s dro right sir": [0, 65535], "dro right sir ile": [0, 65535], "right sir ile tell": [0, 65535], "sir ile tell you": [0, 65535], "ile tell you when": [0, 65535], "tell you when and": [0, 65535], "you when and you'll": [0, 65535], "when and you'll tell": [0, 65535], "and you'll tell me": [0, 65535], "you'll tell me wherefore": [0, 65535], "tell me wherefore ant": [0, 65535], "me wherefore ant wherefore": [0, 65535], "wherefore ant wherefore for": [0, 65535], "ant wherefore for my": [0, 65535], "wherefore for my dinner": [0, 65535], "for my dinner i": [0, 65535], "my dinner i haue": [0, 65535], "dinner i haue not": [0, 65535], "i haue not din'd": [0, 65535], "haue not din'd to": [0, 65535], "not din'd to day": [0, 65535], "din'd to day s": [0, 65535], "to day s dro": [0, 65535], "day s dro nor": [0, 65535], "s dro nor to": [0, 65535], "dro nor to day": [0, 65535], "nor to day here": [0, 65535], "to day here you": [0, 65535], "day here you must": [0, 65535], "here you must not": [0, 65535], "you must not come": [0, 65535], "must not come againe": [0, 65535], "not come againe when": [0, 65535], "come againe when you": [0, 65535], "againe when you may": [0, 65535], "when you may anti": [0, 65535], "you may anti what": [0, 65535], "may anti what art": [0, 65535], "anti what art thou": [0, 65535], "what art thou that": [0, 65535], "art thou that keep'st": [0, 65535], "thou that keep'st mee": [0, 65535], "that keep'st mee out": [0, 65535], "keep'st mee out from": [0, 65535], "mee out from the": [0, 65535], "out from the howse": [0, 65535], "from the howse i": [0, 65535], "the howse i owe": [0, 65535], "howse i owe s": [0, 65535], "i owe s dro": [0, 65535], "owe s dro the": [0, 65535], "s dro the porter": [0, 65535], "dro the porter for": [0, 65535], "the porter for this": [0, 65535], "porter for this time": [0, 65535], "for this time sir": [0, 65535], "this time sir and": [0, 65535], "time sir and my": [0, 65535], "sir and my name": [0, 65535], "and my name is": [0, 65535], "my name is dromio": [0, 65535], "name is dromio e": [0, 65535], "is dromio e dro": [0, 65535], "dromio e dro o": [0, 65535], "e dro o villaine": [0, 65535], "dro o villaine thou": [0, 65535], "o villaine thou hast": [0, 65535], "villaine thou hast stolne": [0, 65535], "thou hast stolne both": [0, 65535], "hast stolne both mine": [0, 65535], "stolne both mine office": [0, 65535], "both mine office and": [0, 65535], "mine office and my": [0, 65535], "office and my name": [0, 65535], "and my name the": [0, 65535], "my name the one": [0, 65535], "name the one nere": [0, 65535], "the one nere got": [0, 65535], "one nere got me": [0, 65535], "nere got me credit": [0, 65535], "got me credit the": [0, 65535], "me credit the other": [0, 65535], "credit the other mickle": [0, 65535], "the other mickle blame": [0, 65535], "other mickle blame if": [0, 65535], "mickle blame if thou": [0, 65535], "blame if thou hadst": [0, 65535], "if thou hadst beene": [0, 65535], "thou hadst beene dromio": [0, 65535], "hadst beene dromio to": [0, 65535], "beene dromio to day": [0, 65535], "dromio to day in": [0, 65535], "to day in my": [0, 65535], "day in my place": [0, 65535], "in my place thou": [0, 65535], "my place thou wouldst": [0, 65535], "place thou wouldst haue": [0, 65535], "thou wouldst haue chang'd": [0, 65535], "wouldst haue chang'd thy": [0, 65535], "haue chang'd thy face": [0, 65535], "chang'd thy face for": [0, 65535], "thy face for a": [0, 65535], "face for a name": [0, 65535], "for a name or": [0, 65535], "a name or thy": [0, 65535], "name or thy name": [0, 65535], "or thy name for": [0, 65535], "thy name for an": [0, 65535], "name for an asse": [0, 65535], "for an asse enter": [0, 65535], "an asse enter luce": [0, 65535], "asse enter luce luce": [0, 65535], "enter luce luce what": [0, 65535], "luce luce what a": [0, 65535], "luce what a coile": [0, 65535], "what a coile is": [0, 65535], "a coile is there": [0, 65535], "coile is there dromio": [0, 65535], "is there dromio who": [0, 65535], "there dromio who are": [0, 65535], "dromio who are those": [0, 65535], "who are those at": [0, 65535], "are those at the": [0, 65535], "those at the gate": [0, 65535], "at the gate e": [0, 65535], "the gate e dro": [0, 65535], "gate e dro let": [0, 65535], "e dro let my": [0, 65535], "dro let my master": [0, 65535], "let my master in": [0, 65535], "my master in luce": [0, 65535], "master in luce luce": [0, 65535], "in luce luce faith": [0, 65535], "luce luce faith no": [0, 65535], "luce faith no hee": [0, 65535], "faith no hee comes": [0, 65535], "no hee comes too": [0, 65535], "hee comes too late": [0, 65535], "comes too late and": [0, 65535], "too late and so": [0, 65535], "late and so tell": [0, 65535], "and so tell your": [0, 65535], "so tell your master": [0, 65535], "tell your master e": [0, 65535], "your master e dro": [0, 65535], "master e dro o": [0, 65535], "e dro o lord": [0, 65535], "dro o lord i": [0, 65535], "o lord i must": [0, 65535], "lord i must laugh": [0, 65535], "i must laugh haue": [0, 65535], "must laugh haue at": [0, 65535], "laugh haue at you": [0, 65535], "haue at you with": [0, 65535], "at you with a": [0, 65535], "you with a prouerbe": [0, 65535], "with a prouerbe shall": [0, 65535], "a prouerbe shall i": [0, 65535], "prouerbe shall i set": [0, 65535], "shall i set in": [0, 65535], "i set in my": [0, 65535], "set in my staffe": [0, 65535], "in my staffe luce": [0, 65535], "my staffe luce haue": [0, 65535], "staffe luce haue at": [0, 65535], "luce haue at you": [0, 65535], "at you with another": [0, 65535], "you with another that's": [0, 65535], "with another that's when": [0, 65535], "another that's when can": [0, 65535], "that's when can you": [0, 65535], "when can you tell": [0, 65535], "can you tell s": [0, 65535], "you tell s dro": [0, 65535], "tell s dro if": [0, 65535], "s dro if thy": [0, 65535], "dro if thy name": [0, 65535], "if thy name be": [0, 65535], "thy name be called": [0, 65535], "name be called luce": [0, 65535], "be called luce luce": [0, 65535], "called luce luce thou": [0, 65535], "luce luce thou hast": [0, 65535], "luce thou hast an": [0, 65535], "thou hast an swer'd": [0, 65535], "hast an swer'd him": [0, 65535], "an swer'd him well": [0, 65535], "swer'd him well anti": [0, 65535], "him well anti doe": [0, 65535], "well anti doe you": [0, 65535], "anti doe you heare": [0, 65535], "doe you heare you": [0, 65535], "you heare you minion": [0, 65535], "heare you minion you'll": [0, 65535], "you minion you'll let": [0, 65535], "minion you'll let vs": [0, 65535], "you'll let vs in": [0, 65535], "let vs in i": [0, 65535], "vs in i hope": [0, 65535], "in i hope luce": [0, 65535], "i hope luce i": [0, 65535], "hope luce i thought": [0, 65535], "luce i thought to": [0, 65535], "i thought to haue": [0, 65535], "thought to haue askt": [0, 65535], "to haue askt you": [0, 65535], "haue askt you s": [0, 65535], "askt you s dro": [0, 65535], "you s dro and": [0, 65535], "s dro and you": [0, 65535], "dro and you said": [0, 65535], "and you said no": [0, 65535], "you said no e": [0, 65535], "said no e dro": [0, 65535], "no e dro so": [0, 65535], "e dro so come": [0, 65535], "dro so come helpe": [0, 65535], "so come helpe well": [0, 65535], "come helpe well strooke": [0, 65535], "helpe well strooke there": [0, 65535], "well strooke there was": [0, 65535], "strooke there was blow": [0, 65535], "there was blow for": [0, 65535], "was blow for blow": [0, 65535], "blow for blow anti": [0, 65535], "for blow anti thou": [0, 65535], "blow anti thou baggage": [0, 65535], "anti thou baggage let": [0, 65535], "thou baggage let me": [0, 65535], "baggage let me in": [0, 65535], "let me in luce": [0, 65535], "me in luce can": [0, 65535], "in luce can you": [0, 65535], "luce can you tell": [0, 65535], "can you tell for": [0, 65535], "you tell for whose": [0, 65535], "tell for whose sake": [0, 65535], "for whose sake e": [0, 65535], "whose sake e drom": [0, 65535], "sake e drom master": [0, 65535], "e drom master knocke": [0, 65535], "drom master knocke the": [0, 65535], "master knocke the doore": [0, 65535], "knocke the doore hard": [0, 65535], "the doore hard luce": [0, 65535], "doore hard luce let": [0, 65535], "hard luce let him": [0, 65535], "luce let him knocke": [0, 65535], "let him knocke till": [0, 65535], "him knocke till it": [0, 65535], "knocke till it ake": [0, 65535], "till it ake anti": [0, 65535], "it ake anti you'll": [0, 65535], "ake anti you'll crie": [0, 65535], "anti you'll crie for": [0, 65535], "you'll crie for this": [0, 65535], "crie for this minion": [0, 65535], "for this minion if": [0, 65535], "this minion if i": [0, 65535], "minion if i beat": [0, 65535], "if i beat the": [0, 65535], "i beat the doore": [0, 65535], "beat the doore downe": [0, 65535], "the doore downe luce": [0, 65535], "doore downe luce what": [0, 65535], "downe luce what needs": [0, 65535], "luce what needs all": [0, 65535], "what needs all that": [0, 65535], "needs all that and": [0, 65535], "all that and a": [0, 65535], "that and a paire": [0, 65535], "and a paire of": [0, 65535], "a paire of stocks": [0, 65535], "paire of stocks in": [0, 65535], "of stocks in the": [0, 65535], "stocks in the towne": [0, 65535], "in the towne enter": [0, 65535], "the towne enter adriana": [0, 65535], "towne enter adriana adr": [0, 65535], "enter adriana adr who": [0, 65535], "adriana adr who is": [0, 65535], "adr who is that": [0, 65535], "who is that at": [0, 65535], "is that at the": [0, 65535], "that at the doore": [0, 65535], "at the doore that": [0, 65535], "the doore that keeps": [0, 65535], "doore that keeps all": [0, 65535], "that keeps all this": [0, 65535], "keeps all this noise": [0, 65535], "all this noise s": [0, 65535], "this noise s dro": [0, 65535], "noise s dro by": [0, 65535], "s dro by my": [0, 65535], "dro by my troth": [0, 65535], "by my troth your": [0, 65535], "my troth your towne": [0, 65535], "troth your towne is": [0, 65535], "your towne is troubled": [0, 65535], "towne is troubled with": [0, 65535], "is troubled with vnruly": [0, 65535], "troubled with vnruly boies": [0, 65535], "with vnruly boies anti": [0, 65535], "vnruly boies anti are": [0, 65535], "boies anti are you": [0, 65535], "anti are you there": [0, 65535], "are you there wife": [0, 65535], "you there wife you": [0, 65535], "there wife you might": [0, 65535], "wife you might haue": [0, 65535], "you might haue come": [0, 65535], "might haue come before": [0, 65535], "haue come before adri": [0, 65535], "come before adri your": [0, 65535], "before adri your wife": [0, 65535], "adri your wife sir": [0, 65535], "your wife sir knaue": [0, 65535], "wife sir knaue go": [0, 65535], "sir knaue go get": [0, 65535], "knaue go get you": [0, 65535], "go get you from": [0, 65535], "get you from the": [0, 65535], "you from the dore": [0, 65535], "dore e dro if": [0, 65535], "e dro if you": [0, 65535], "dro if you went": [0, 65535], "if you went in": [0, 65535], "you went in paine": [0, 65535], "went in paine master": [0, 65535], "in paine master this": [0, 65535], "paine master this knaue": [0, 65535], "master this knaue wold": [0, 65535], "this knaue wold goe": [0, 65535], "knaue wold goe sore": [0, 65535], "wold goe sore angelo": [0, 65535], "goe sore angelo heere": [0, 65535], "sore angelo heere is": [0, 65535], "angelo heere is neither": [0, 65535], "heere is neither cheere": [0, 65535], "is neither cheere sir": [0, 65535], "neither cheere sir nor": [0, 65535], "cheere sir nor welcome": [0, 65535], "sir nor welcome we": [0, 65535], "nor welcome we would": [0, 65535], "welcome we would faine": [0, 65535], "we would faine haue": [0, 65535], "would faine haue either": [0, 65535], "faine haue either baltz": [0, 65535], "haue either baltz in": [0, 65535], "either baltz in debating": [0, 65535], "baltz in debating which": [0, 65535], "in debating which was": [0, 65535], "debating which was best": [0, 65535], "which was best wee": [0, 65535], "was best wee shall": [0, 65535], "best wee shall part": [0, 65535], "wee shall part with": [0, 65535], "shall part with neither": [0, 65535], "part with neither e": [0, 65535], "with neither e dro": [0, 65535], "neither e dro they": [0, 65535], "e dro they stand": [0, 65535], "dro they stand at": [0, 65535], "they stand at the": [0, 65535], "stand at the doore": [0, 65535], "at the doore master": [0, 65535], "the doore master bid": [0, 65535], "doore master bid them": [0, 65535], "master bid them welcome": [0, 65535], "bid them welcome hither": [0, 65535], "them welcome hither anti": [0, 65535], "welcome hither anti there": [0, 65535], "hither anti there is": [0, 65535], "anti there is something": [0, 65535], "there is something in": [0, 65535], "is something in the": [0, 65535], "something in the winde": [0, 65535], "in the winde that": [0, 65535], "the winde that we": [0, 65535], "winde that we cannot": [0, 65535], "that we cannot get": [0, 65535], "we cannot get in": [0, 65535], "cannot get in e": [0, 65535], "get in e dro": [0, 65535], "in e dro you": [0, 65535], "e dro you would": [0, 65535], "dro you would say": [0, 65535], "you would say so": [0, 65535], "would say so master": [0, 65535], "say so master if": [0, 65535], "so master if your": [0, 65535], "master if your garments": [0, 65535], "if your garments were": [0, 65535], "your garments were thin": [0, 65535], "garments were thin your": [0, 65535], "were thin your cake": [0, 65535], "thin your cake here": [0, 65535], "your cake here is": [0, 65535], "cake here is warme": [0, 65535], "here is warme within": [0, 65535], "is warme within you": [0, 65535], "warme within you stand": [0, 65535], "within you stand here": [0, 65535], "you stand here in": [0, 65535], "stand here in the": [0, 65535], "here in the cold": [0, 65535], "in the cold it": [0, 65535], "the cold it would": [0, 65535], "cold it would make": [0, 65535], "it would make a": [0, 65535], "would make a man": [0, 65535], "make a man mad": [0, 65535], "a man mad as": [0, 65535], "man mad as a": [0, 65535], "mad as a bucke": [0, 65535], "as a bucke to": [0, 65535], "a bucke to be": [0, 65535], "bucke to be so": [0, 65535], "to be so bought": [0, 65535], "be so bought and": [0, 65535], "so bought and sold": [0, 65535], "bought and sold ant": [0, 65535], "and sold ant go": [0, 65535], "sold ant go fetch": [0, 65535], "ant go fetch me": [0, 65535], "go fetch me something": [0, 65535], "fetch me something ile": [0, 65535], "me something ile break": [0, 65535], "something ile break ope": [0, 65535], "ile break ope the": [0, 65535], "break ope the gate": [0, 65535], "ope the gate s": [0, 65535], "the gate s dro": [0, 65535], "gate s dro breake": [0, 65535], "s dro breake any": [0, 65535], "dro breake any breaking": [0, 65535], "breake any breaking here": [0, 65535], "any breaking here and": [0, 65535], "breaking here and ile": [0, 65535], "here and ile breake": [0, 65535], "and ile breake your": [0, 65535], "ile breake your knaues": [0, 65535], "breake your knaues pate": [0, 65535], "your knaues pate e": [0, 65535], "knaues pate e dro": [0, 65535], "pate e dro a": [0, 65535], "e dro a man": [0, 65535], "dro a man may": [0, 65535], "a man may breake": [0, 65535], "man may breake a": [0, 65535], "may breake a word": [0, 65535], "breake a word with": [0, 65535], "a word with your": [0, 65535], "word with your sir": [0, 65535], "with your sir and": [0, 65535], "your sir and words": [0, 65535], "sir and words are": [0, 65535], "and words are but": [0, 65535], "words are but winde": [0, 65535], "are but winde i": [0, 65535], "but winde i and": [0, 65535], "winde i and breake": [0, 65535], "i and breake it": [0, 65535], "and breake it in": [0, 65535], "breake it in your": [0, 65535], "it in your face": [0, 65535], "in your face so": [0, 65535], "your face so he": [0, 65535], "face so he break": [0, 65535], "so he break it": [0, 65535], "he break it not": [0, 65535], "break it not behinde": [0, 65535], "it not behinde s": [0, 65535], "not behinde s dro": [0, 65535], "behinde s dro it": [0, 65535], "s dro it seemes": [0, 65535], "dro it seemes thou": [0, 65535], "it seemes thou want'st": [0, 65535], "seemes thou want'st breaking": [0, 65535], "thou want'st breaking out": [0, 65535], "want'st breaking out vpon": [0, 65535], "breaking out vpon thee": [0, 65535], "out vpon thee hinde": [0, 65535], "vpon thee hinde e": [0, 65535], "thee hinde e dro": [0, 65535], "hinde e dro here's": [0, 65535], "e dro here's too": [0, 65535], "dro here's too much": [0, 65535], "here's too much out": [0, 65535], "too much out vpon": [0, 65535], "much out vpon thee": [0, 65535], "out vpon thee i": [0, 65535], "vpon thee i pray": [0, 65535], "thee i pray thee": [0, 65535], "i pray thee let": [0, 65535], "pray thee let me": [0, 65535], "thee let me in": [0, 65535], "let me in s": [0, 65535], "me in s dro": [0, 65535], "in s dro i": [0, 65535], "s dro i when": [0, 65535], "dro i when fowles": [0, 65535], "i when fowles haue": [0, 65535], "when fowles haue no": [0, 65535], "fowles haue no feathers": [0, 65535], "haue no feathers and": [0, 65535], "no feathers and fish": [0, 65535], "feathers and fish haue": [0, 65535], "and fish haue no": [0, 65535], "fish haue no fin": [0, 65535], "haue no fin ant": [0, 65535], "no fin ant well": [0, 65535], "fin ant well ile": [0, 65535], "ant well ile breake": [0, 65535], "well ile breake in": [0, 65535], "ile breake in go": [0, 65535], "breake in go borrow": [0, 65535], "in go borrow me": [0, 65535], "go borrow me a": [0, 65535], "borrow me a crow": [0, 65535], "me a crow e": [0, 65535], "a crow e dro": [0, 65535], "crow e dro a": [0, 65535], "e dro a crow": [0, 65535], "dro a crow without": [0, 65535], "a crow without feather": [0, 65535], "crow without feather master": [0, 65535], "without feather master meane": [0, 65535], "feather master meane you": [0, 65535], "master meane you so": [0, 65535], "meane you so for": [0, 65535], "you so for a": [0, 65535], "so for a fish": [0, 65535], "for a fish without": [0, 65535], "a fish without a": [0, 65535], "fish without a finne": [0, 65535], "without a finne ther's": [0, 65535], "a finne ther's a": [0, 65535], "finne ther's a fowle": [0, 65535], "ther's a fowle without": [0, 65535], "a fowle without a": [0, 65535], "fowle without a fether": [0, 65535], "without a fether if": [0, 65535], "a fether if a": [0, 65535], "fether if a crow": [0, 65535], "if a crow help": [0, 65535], "a crow help vs": [0, 65535], "crow help vs in": [0, 65535], "help vs in sirra": [0, 65535], "vs in sirra wee'll": [0, 65535], "in sirra wee'll plucke": [0, 65535], "sirra wee'll plucke a": [0, 65535], "wee'll plucke a crow": [0, 65535], "plucke a crow together": [0, 65535], "a crow together ant": [0, 65535], "crow together ant go": [0, 65535], "together ant go get": [0, 65535], "ant go get thee": [0, 65535], "go get thee gon": [0, 65535], "get thee gon fetch": [0, 65535], "thee gon fetch me": [0, 65535], "gon fetch me an": [0, 65535], "fetch me an iron": [0, 65535], "me an iron crow": [0, 65535], "an iron crow balth": [0, 65535], "iron crow balth haue": [0, 65535], "crow balth haue patience": [0, 65535], "balth haue patience sir": [0, 65535], "haue patience sir oh": [0, 65535], "patience sir oh let": [0, 65535], "sir oh let it": [0, 65535], "oh let it not": [0, 65535], "let it not be": [0, 65535], "it not be so": [0, 65535], "not be so heerein": [0, 65535], "be so heerein you": [0, 65535], "so heerein you warre": [0, 65535], "heerein you warre against": [0, 65535], "you warre against your": [0, 65535], "warre against your reputation": [0, 65535], "against your reputation and": [0, 65535], "your reputation and draw": [0, 65535], "reputation and draw within": [0, 65535], "and draw within the": [0, 65535], "draw within the compasse": [0, 65535], "within the compasse of": [0, 65535], "the compasse of suspect": [0, 65535], "compasse of suspect th'": [0, 65535], "of suspect th' vnuiolated": [0, 65535], "suspect th' vnuiolated honor": [0, 65535], "th' vnuiolated honor of": [0, 65535], "vnuiolated honor of your": [0, 65535], "honor of your wife": [0, 65535], "of your wife once": [0, 65535], "your wife once this": [0, 65535], "wife once this your": [0, 65535], "once this your long": [0, 65535], "this your long experience": [0, 65535], "your long experience of": [0, 65535], "long experience of your": [0, 65535], "experience of your wisedome": [0, 65535], "of your wisedome her": [0, 65535], "your wisedome her sober": [0, 65535], "wisedome her sober vertue": [0, 65535], "her sober vertue yeares": [0, 65535], "sober vertue yeares and": [0, 65535], "vertue yeares and modestie": [0, 65535], "yeares and modestie plead": [0, 65535], "and modestie plead on": [0, 65535], "modestie plead on your": [0, 65535], "plead on your part": [0, 65535], "on your part some": [0, 65535], "your part some cause": [0, 65535], "part some cause to": [0, 65535], "some cause to you": [0, 65535], "cause to you vnknowne": [0, 65535], "to you vnknowne and": [0, 65535], "you vnknowne and doubt": [0, 65535], "vnknowne and doubt not": [0, 65535], "and doubt not sir": [0, 65535], "doubt not sir but": [0, 65535], "not sir but she": [0, 65535], "sir but she will": [0, 65535], "but she will well": [0, 65535], "she will well excuse": [0, 65535], "will well excuse why": [0, 65535], "well excuse why at": [0, 65535], "excuse why at this": [0, 65535], "why at this time": [0, 65535], "at this time the": [0, 65535], "this time the dores": [0, 65535], "time the dores are": [0, 65535], "the dores are made": [0, 65535], "dores are made against": [0, 65535], "are made against you": [0, 65535], "made against you be": [0, 65535], "against you be rul'd": [0, 65535], "you be rul'd by": [0, 65535], "be rul'd by me": [0, 65535], "rul'd by me depart": [0, 65535], "by me depart in": [0, 65535], "me depart in patience": [0, 65535], "depart in patience and": [0, 65535], "in patience and let": [0, 65535], "patience and let vs": [0, 65535], "and let vs to": [0, 65535], "let vs to the": [0, 65535], "vs to the tyger": [0, 65535], "to the tyger all": [0, 65535], "the tyger all to": [0, 65535], "tyger all to dinner": [0, 65535], "all to dinner and": [0, 65535], "to dinner and about": [0, 65535], "dinner and about euening": [0, 65535], "and about euening come": [0, 65535], "about euening come your": [0, 65535], "euening come your selfe": [0, 65535], "come your selfe alone": [0, 65535], "your selfe alone to": [0, 65535], "selfe alone to know": [0, 65535], "alone to know the": [0, 65535], "to know the reason": [0, 65535], "know the reason of": [0, 65535], "the reason of this": [0, 65535], "reason of this strange": [0, 65535], "of this strange restraint": [0, 65535], "this strange restraint if": [0, 65535], "strange restraint if by": [0, 65535], "restraint if by strong": [0, 65535], "if by strong hand": [0, 65535], "by strong hand you": [0, 65535], "strong hand you offer": [0, 65535], "hand you offer to": [0, 65535], "you offer to breake": [0, 65535], "offer to breake in": [0, 65535], "to breake in now": [0, 65535], "breake in now in": [0, 65535], "in now in the": [0, 65535], "now in the stirring": [0, 65535], "in the stirring passage": [0, 65535], "the stirring passage of": [0, 65535], "stirring passage of the": [0, 65535], "passage of the day": [0, 65535], "of the day a": [0, 65535], "the day a vulgar": [0, 65535], "day a vulgar comment": [0, 65535], "a vulgar comment will": [0, 65535], "vulgar comment will be": [0, 65535], "comment will be made": [0, 65535], "will be made of": [0, 65535], "be made of it": [0, 65535], "made of it and": [0, 65535], "of it and that": [0, 65535], "it and that supposed": [0, 65535], "and that supposed by": [0, 65535], "that supposed by the": [0, 65535], "supposed by the common": [0, 65535], "by the common rowt": [0, 65535], "the common rowt against": [0, 65535], "common rowt against your": [0, 65535], "rowt against your yet": [0, 65535], "against your yet vngalled": [0, 65535], "your yet vngalled estimation": [0, 65535], "yet vngalled estimation that": [0, 65535], "vngalled estimation that may": [0, 65535], "estimation that may with": [0, 65535], "that may with foule": [0, 65535], "may with foule intrusion": [0, 65535], "with foule intrusion enter": [0, 65535], "foule intrusion enter in": [0, 65535], "intrusion enter in and": [0, 65535], "enter in and dwell": [0, 65535], "in and dwell vpon": [0, 65535], "and dwell vpon your": [0, 65535], "dwell vpon your graue": [0, 65535], "vpon your graue when": [0, 65535], "your graue when you": [0, 65535], "graue when you are": [0, 65535], "when you are dead": [0, 65535], "you are dead for": [0, 65535], "are dead for slander": [0, 65535], "dead for slander liues": [0, 65535], "for slander liues vpon": [0, 65535], "slander liues vpon succession": [0, 65535], "liues vpon succession for": [0, 65535], "vpon succession for euer": [0, 65535], "succession for euer hows'd": [0, 65535], "for euer hows'd where": [0, 65535], "euer hows'd where it": [0, 65535], "hows'd where it gets": [0, 65535], "where it gets possession": [0, 65535], "it gets possession anti": [0, 65535], "gets possession anti you": [0, 65535], "possession anti you haue": [0, 65535], "anti you haue preuail'd": [0, 65535], "you haue preuail'd i": [0, 65535], "haue preuail'd i will": [0, 65535], "preuail'd i will depart": [0, 65535], "i will depart in": [0, 65535], "will depart in quiet": [0, 65535], "depart in quiet and": [0, 65535], "in quiet and in": [0, 65535], "quiet and in despight": [0, 65535], "and in despight of": [0, 65535], "in despight of mirth": [0, 65535], "despight of mirth meane": [0, 65535], "of mirth meane to": [0, 65535], "mirth meane to be": [0, 65535], "meane to be merrie": [0, 65535], "to be merrie i": [0, 65535], "be merrie i know": [0, 65535], "merrie i know a": [0, 65535], "i know a wench": [0, 65535], "know a wench of": [0, 65535], "a wench of excellent": [0, 65535], "wench of excellent discourse": [0, 65535], "of excellent discourse prettie": [0, 65535], "excellent discourse prettie and": [0, 65535], "discourse prettie and wittie": [0, 65535], "prettie and wittie wilde": [0, 65535], "and wittie wilde and": [0, 65535], "wittie wilde and yet": [0, 65535], "wilde and yet too": [0, 65535], "and yet too gentle": [0, 65535], "yet too gentle there": [0, 65535], "too gentle there will": [0, 65535], "gentle there will we": [0, 65535], "there will we dine": [0, 65535], "will we dine this": [0, 65535], "we dine this woman": [0, 65535], "dine this woman that": [0, 65535], "this woman that i": [0, 65535], "woman that i meane": [0, 65535], "that i meane my": [0, 65535], "i meane my wife": [0, 65535], "meane my wife but": [0, 65535], "my wife but i": [0, 65535], "wife but i protest": [0, 65535], "but i protest without": [0, 65535], "i protest without desert": [0, 65535], "protest without desert hath": [0, 65535], "without desert hath oftentimes": [0, 65535], "desert hath oftentimes vpbraided": [0, 65535], "hath oftentimes vpbraided me": [0, 65535], "oftentimes vpbraided me withall": [0, 65535], "vpbraided me withall to": [0, 65535], "me withall to her": [0, 65535], "withall to her will": [0, 65535], "to her will we": [0, 65535], "her will we to": [0, 65535], "will we to dinner": [0, 65535], "we to dinner get": [0, 65535], "to dinner get you": [0, 65535], "dinner get you home": [0, 65535], "get you home and": [0, 65535], "you home and fetch": [0, 65535], "home and fetch the": [0, 65535], "and fetch the chaine": [0, 65535], "fetch the chaine by": [0, 65535], "the chaine by this": [0, 65535], "chaine by this i": [0, 65535], "by this i know": [0, 65535], "this i know 'tis": [0, 65535], "i know 'tis made": [0, 65535], "know 'tis made bring": [0, 65535], "'tis made bring it": [0, 65535], "made bring it i": [0, 65535], "bring it i pray": [0, 65535], "it i pray you": [0, 65535], "i pray you to": [0, 65535], "pray you to the": [0, 65535], "you to the porpentine": [0, 65535], "to the porpentine for": [0, 65535], "the porpentine for there's": [0, 65535], "porpentine for there's the": [0, 65535], "for there's the house": [0, 65535], "there's the house that": [0, 65535], "the house that chaine": [0, 65535], "house that chaine will": [0, 65535], "that chaine will i": [0, 65535], "chaine will i bestow": [0, 65535], "will i bestow be": [0, 65535], "i bestow be it": [0, 65535], "bestow be it for": [0, 65535], "be it for nothing": [0, 65535], "it for nothing but": [0, 65535], "for nothing but to": [0, 65535], "nothing but to spight": [0, 65535], "but to spight my": [0, 65535], "to spight my wife": [0, 65535], "spight my wife vpon": [0, 65535], "my wife vpon mine": [0, 65535], "wife vpon mine hostesse": [0, 65535], "vpon mine hostesse there": [0, 65535], "mine hostesse there good": [0, 65535], "hostesse there good sir": [0, 65535], "there good sir make": [0, 65535], "good sir make haste": [0, 65535], "sir make haste since": [0, 65535], "make haste since mine": [0, 65535], "haste since mine owne": [0, 65535], "since mine owne doores": [0, 65535], "mine owne doores refuse": [0, 65535], "owne doores refuse to": [0, 65535], "doores refuse to entertaine": [0, 65535], "refuse to entertaine me": [0, 65535], "to entertaine me ile": [0, 65535], "entertaine me ile knocke": [0, 65535], "me ile knocke else": [0, 65535], "ile knocke else where": [0, 65535], "knocke else where to": [0, 65535], "else where to see": [0, 65535], "where to see if": [0, 65535], "to see if they'll": [0, 65535], "see if they'll disdaine": [0, 65535], "if they'll disdaine me": [0, 65535], "they'll disdaine me ang": [0, 65535], "disdaine me ang ile": [0, 65535], "me ang ile meet": [0, 65535], "ang ile meet you": [0, 65535], "ile meet you at": [0, 65535], "meet you at that": [0, 65535], "you at that place": [0, 65535], "at that place some": [0, 65535], "that place some houre": [0, 65535], "place some houre hence": [0, 65535], "some houre hence anti": [0, 65535], "houre hence anti do": [0, 65535], "hence anti do so": [0, 65535], "anti do so this": [0, 65535], "do so this iest": [0, 65535], "so this iest shall": [0, 65535], "this iest shall cost": [0, 65535], "iest shall cost me": [0, 65535], "shall cost me some": [0, 65535], "cost me some expence": [0, 65535], "me some expence exeunt": [0, 65535], "some expence exeunt enter": [0, 65535], "expence exeunt enter iuliana": [0, 65535], "exeunt enter iuliana with": [0, 65535], "enter iuliana with antipholus": [0, 65535], "iuliana with antipholus of": [0, 65535], "with antipholus of siracusia": [0, 65535], "antipholus of siracusia iulia": [0, 65535], "of siracusia iulia and": [0, 65535], "siracusia iulia and may": [0, 65535], "iulia and may it": [0, 65535], "and may it be": [0, 65535], "may it be that": [0, 65535], "it be that you": [0, 65535], "be that you haue": [0, 65535], "that you haue quite": [0, 65535], "you haue quite forgot": [0, 65535], "haue quite forgot a": [0, 65535], "quite forgot a husbands": [0, 65535], "forgot a husbands office": [0, 65535], "a husbands office shall": [0, 65535], "husbands office shall antipholus": [0, 65535], "office shall antipholus euen": [0, 65535], "shall antipholus euen in": [0, 65535], "antipholus euen in the": [0, 65535], "euen in the spring": [0, 65535], "in the spring of": [0, 65535], "the spring of loue": [0, 65535], "spring of loue thy": [0, 65535], "of loue thy loue": [0, 65535], "loue thy loue springs": [0, 65535], "thy loue springs rot": [0, 65535], "loue springs rot shall": [0, 65535], "springs rot shall loue": [0, 65535], "rot shall loue in": [0, 65535], "shall loue in buildings": [0, 65535], "loue in buildings grow": [0, 65535], "in buildings grow so": [0, 65535], "buildings grow so ruinate": [0, 65535], "grow so ruinate if": [0, 65535], "so ruinate if you": [0, 65535], "ruinate if you did": [0, 65535], "if you did wed": [0, 65535], "you did wed my": [0, 65535], "did wed my sister": [0, 65535], "wed my sister for": [0, 65535], "my sister for her": [0, 65535], "sister for her wealth": [0, 65535], "for her wealth then": [0, 65535], "her wealth then for": [0, 65535], "wealth then for her": [0, 65535], "then for her wealths": [0, 65535], "for her wealths sake": [0, 65535], "her wealths sake vse": [0, 65535], "wealths sake vse her": [0, 65535], "sake vse her with": [0, 65535], "vse her with more": [0, 65535], "her with more kindnesse": [0, 65535], "with more kindnesse or": [0, 65535], "more kindnesse or if": [0, 65535], "kindnesse or if you": [0, 65535], "or if you like": [0, 65535], "if you like else": [0, 65535], "you like else where": [0, 65535], "like else where doe": [0, 65535], "else where doe it": [0, 65535], "where doe it by": [0, 65535], "doe it by stealth": [0, 65535], "it by stealth muffle": [0, 65535], "by stealth muffle your": [0, 65535], "stealth muffle your false": [0, 65535], "muffle your false loue": [0, 65535], "your false loue with": [0, 65535], "false loue with some": [0, 65535], "loue with some shew": [0, 65535], "with some shew of": [0, 65535], "some shew of blindnesse": [0, 65535], "shew of blindnesse let": [0, 65535], "of blindnesse let not": [0, 65535], "blindnesse let not my": [0, 65535], "let not my sister": [0, 65535], "not my sister read": [0, 65535], "my sister read it": [0, 65535], "sister read it in": [0, 65535], "read it in your": [0, 65535], "it in your eye": [0, 65535], "in your eye be": [0, 65535], "your eye be not": [0, 65535], "eye be not thy": [0, 65535], "be not thy tongue": [0, 65535], "not thy tongue thy": [0, 65535], "thy tongue thy owne": [0, 65535], "tongue thy owne shames": [0, 65535], "thy owne shames orator": [0, 65535], "owne shames orator looke": [0, 65535], "shames orator looke sweet": [0, 65535], "orator looke sweet speake": [0, 65535], "looke sweet speake faire": [0, 65535], "sweet speake faire become": [0, 65535], "speake faire become disloyaltie": [0, 65535], "faire become disloyaltie apparell": [0, 65535], "become disloyaltie apparell vice": [0, 65535], "disloyaltie apparell vice like": [0, 65535], "apparell vice like vertues": [0, 65535], "vice like vertues harbenger": [0, 65535], "like vertues harbenger beare": [0, 65535], "vertues harbenger beare a": [0, 65535], "harbenger beare a faire": [0, 65535], "beare a faire presence": [0, 65535], "a faire presence though": [0, 65535], "faire presence though your": [0, 65535], "presence though your heart": [0, 65535], "though your heart be": [0, 65535], "your heart be tainted": [0, 65535], "heart be tainted teach": [0, 65535], "be tainted teach sinne": [0, 65535], "tainted teach sinne the": [0, 65535], "teach sinne the carriage": [0, 65535], "sinne the carriage of": [0, 65535], "the carriage of a": [0, 65535], "carriage of a holy": [0, 65535], "of a holy saint": [0, 65535], "a holy saint be": [0, 65535], "holy saint be secret": [0, 65535], "saint be secret false": [0, 65535], "be secret false what": [0, 65535], "secret false what need": [0, 65535], "false what need she": [0, 65535], "what need she be": [0, 65535], "need she be acquainted": [0, 65535], "she be acquainted what": [0, 65535], "be acquainted what simple": [0, 65535], "acquainted what simple thiefe": [0, 65535], "what simple thiefe brags": [0, 65535], "simple thiefe brags of": [0, 65535], "thiefe brags of his": [0, 65535], "brags of his owne": [0, 65535], "of his owne attaine": [0, 65535], "his owne attaine 'tis": [0, 65535], "owne attaine 'tis double": [0, 65535], "attaine 'tis double wrong": [0, 65535], "'tis double wrong to": [0, 65535], "double wrong to truant": [0, 65535], "wrong to truant with": [0, 65535], "to truant with your": [0, 65535], "truant with your bed": [0, 65535], "with your bed and": [0, 65535], "your bed and let": [0, 65535], "bed and let her": [0, 65535], "and let her read": [0, 65535], "let her read it": [0, 65535], "her read it in": [0, 65535], "read it in thy": [0, 65535], "it in thy lookes": [0, 65535], "in thy lookes at": [0, 65535], "thy lookes at boord": [0, 65535], "lookes at boord shame": [0, 65535], "at boord shame hath": [0, 65535], "boord shame hath a": [0, 65535], "shame hath a bastard": [0, 65535], "hath a bastard fame": [0, 65535], "a bastard fame well": [0, 65535], "bastard fame well managed": [0, 65535], "fame well managed ill": [0, 65535], "well managed ill deeds": [0, 65535], "managed ill deeds is": [0, 65535], "ill deeds is doubled": [0, 65535], "deeds is doubled with": [0, 65535], "is doubled with an": [0, 65535], "doubled with an euill": [0, 65535], "with an euill word": [0, 65535], "an euill word alas": [0, 65535], "euill word alas poore": [0, 65535], "word alas poore women": [0, 65535], "alas poore women make": [0, 65535], "poore women make vs": [0, 65535], "women make vs not": [0, 65535], "make vs not beleeue": [0, 65535], "vs not beleeue being": [0, 65535], "not beleeue being compact": [0, 65535], "beleeue being compact of": [0, 65535], "being compact of credit": [0, 65535], "compact of credit that": [0, 65535], "of credit that you": [0, 65535], "credit that you loue": [0, 65535], "that you loue vs": [0, 65535], "you loue vs though": [0, 65535], "loue vs though others": [0, 65535], "vs though others haue": [0, 65535], "though others haue the": [0, 65535], "others haue the arme": [0, 65535], "haue the arme shew": [0, 65535], "the arme shew vs": [0, 65535], "arme shew vs the": [0, 65535], "shew vs the sleeue": [0, 65535], "vs the sleeue we": [0, 65535], "the sleeue we in": [0, 65535], "sleeue we in your": [0, 65535], "we in your motion": [0, 65535], "in your motion turne": [0, 65535], "your motion turne and": [0, 65535], "motion turne and you": [0, 65535], "turne and you may": [0, 65535], "and you may moue": [0, 65535], "you may moue vs": [0, 65535], "may moue vs then": [0, 65535], "moue vs then gentle": [0, 65535], "vs then gentle brother": [0, 65535], "then gentle brother get": [0, 65535], "gentle brother get you": [0, 65535], "brother get you in": [0, 65535], "get you in againe": [0, 65535], "you in againe comfort": [0, 65535], "in againe comfort my": [0, 65535], "againe comfort my sister": [0, 65535], "comfort my sister cheere": [0, 65535], "my sister cheere her": [0, 65535], "sister cheere her call": [0, 65535], "cheere her call her": [0, 65535], "her call her wise": [0, 65535], "call her wise 'tis": [0, 65535], "her wise 'tis holy": [0, 65535], "wise 'tis holy sport": [0, 65535], "'tis holy sport to": [0, 65535], "holy sport to be": [0, 65535], "sport to be a": [0, 65535], "to be a little": [0, 65535], "be a little vaine": [0, 65535], "a little vaine when": [0, 65535], "little vaine when the": [0, 65535], "vaine when the sweet": [0, 65535], "when the sweet breath": [0, 65535], "the sweet breath of": [0, 65535], "sweet breath of flatterie": [0, 65535], "breath of flatterie conquers": [0, 65535], "of flatterie conquers strife": [0, 65535], "flatterie conquers strife s": [0, 65535], "conquers strife s anti": [0, 65535], "strife s anti sweete": [0, 65535], "s anti sweete mistris": [0, 65535], "anti sweete mistris what": [0, 65535], "sweete mistris what your": [0, 65535], "mistris what your name": [0, 65535], "what your name is": [0, 65535], "your name is else": [0, 65535], "name is else i": [0, 65535], "is else i know": [0, 65535], "else i know not": [0, 65535], "i know not nor": [0, 65535], "know not nor by": [0, 65535], "not nor by what": [0, 65535], "nor by what wonder": [0, 65535], "by what wonder you": [0, 65535], "what wonder you do": [0, 65535], "wonder you do hit": [0, 65535], "you do hit of": [0, 65535], "do hit of mine": [0, 65535], "hit of mine lesse": [0, 65535], "of mine lesse in": [0, 65535], "mine lesse in your": [0, 65535], "lesse in your knowledge": [0, 65535], "in your knowledge and": [0, 65535], "your knowledge and your": [0, 65535], "knowledge and your grace": [0, 65535], "and your grace you": [0, 65535], "your grace you show": [0, 65535], "grace you show not": [0, 65535], "you show not then": [0, 65535], "show not then our": [0, 65535], "not then our earths": [0, 65535], "then our earths wonder": [0, 65535], "our earths wonder more": [0, 65535], "earths wonder more then": [0, 65535], "wonder more then earth": [0, 65535], "more then earth diuine": [0, 65535], "then earth diuine teach": [0, 65535], "earth diuine teach me": [0, 65535], "diuine teach me deere": [0, 65535], "teach me deere creature": [0, 65535], "me deere creature how": [0, 65535], "deere creature how to": [0, 65535], "creature how to thinke": [0, 65535], "how to thinke and": [0, 65535], "to thinke and speake": [0, 65535], "thinke and speake lay": [0, 65535], "and speake lay open": [0, 65535], "speake lay open to": [0, 65535], "lay open to my": [0, 65535], "open to my earthie": [0, 65535], "to my earthie grosse": [0, 65535], "my earthie grosse conceit": [0, 65535], "earthie grosse conceit smothred": [0, 65535], "grosse conceit smothred in": [0, 65535], "conceit smothred in errors": [0, 65535], "smothred in errors feeble": [0, 65535], "in errors feeble shallow": [0, 65535], "errors feeble shallow weake": [0, 65535], "feeble shallow weake the": [0, 65535], "shallow weake the foulded": [0, 65535], "weake the foulded meaning": [0, 65535], "the foulded meaning of": [0, 65535], "foulded meaning of your": [0, 65535], "meaning of your words": [0, 65535], "of your words deceit": [0, 65535], "your words deceit against": [0, 65535], "words deceit against my": [0, 65535], "deceit against my soules": [0, 65535], "against my soules pure": [0, 65535], "my soules pure truth": [0, 65535], "soules pure truth why": [0, 65535], "pure truth why labour": [0, 65535], "truth why labour you": [0, 65535], "why labour you to": [0, 65535], "labour you to make": [0, 65535], "you to make it": [0, 65535], "to make it wander": [0, 65535], "make it wander in": [0, 65535], "it wander in an": [0, 65535], "wander in an vnknowne": [0, 65535], "in an vnknowne field": [0, 65535], "an vnknowne field are": [0, 65535], "vnknowne field are you": [0, 65535], "field are you a": [0, 65535], "are you a god": [0, 65535], "you a god would": [0, 65535], "a god would you": [0, 65535], "god would you create": [0, 65535], "would you create me": [0, 65535], "you create me new": [0, 65535], "create me new transforme": [0, 65535], "me new transforme me": [0, 65535], "new transforme me then": [0, 65535], "transforme me then and": [0, 65535], "me then and to": [0, 65535], "then and to your": [0, 65535], "and to your powre": [0, 65535], "to your powre ile": [0, 65535], "your powre ile yeeld": [0, 65535], "powre ile yeeld but": [0, 65535], "ile yeeld but if": [0, 65535], "yeeld but if that": [0, 65535], "but if that i": [0, 65535], "if that i am": [0, 65535], "that i am i": [0, 65535], "i am i then": [0, 65535], "am i then well": [0, 65535], "i then well i": [0, 65535], "then well i know": [0, 65535], "well i know your": [0, 65535], "i know your weeping": [0, 65535], "know your weeping sister": [0, 65535], "your weeping sister is": [0, 65535], "weeping sister is no": [0, 65535], "sister is no wife": [0, 65535], "is no wife of": [0, 65535], "no wife of mine": [0, 65535], "wife of mine nor": [0, 65535], "of mine nor to": [0, 65535], "mine nor to her": [0, 65535], "nor to her bed": [0, 65535], "to her bed no": [0, 65535], "her bed no homage": [0, 65535], "bed no homage doe": [0, 65535], "no homage doe i": [0, 65535], "homage doe i owe": [0, 65535], "doe i owe farre": [0, 65535], "i owe farre more": [0, 65535], "owe farre more farre": [0, 65535], "farre more farre more": [0, 65535], "more farre more to": [0, 65535], "farre more to you": [0, 65535], "more to you doe": [0, 65535], "to you doe i": [0, 65535], "you doe i decline": [0, 65535], "doe i decline oh": [0, 65535], "i decline oh traine": [0, 65535], "decline oh traine me": [0, 65535], "oh traine me not": [0, 65535], "traine me not sweet": [0, 65535], "me not sweet mermaide": [0, 65535], "not sweet mermaide with": [0, 65535], "sweet mermaide with thy": [0, 65535], "mermaide with thy note": [0, 65535], "with thy note to": [0, 65535], "thy note to drowne": [0, 65535], "note to drowne me": [0, 65535], "to drowne me in": [0, 65535], "drowne me in thy": [0, 65535], "me in thy sister": [0, 65535], "in thy sister floud": [0, 65535], "thy sister floud of": [0, 65535], "sister floud of teares": [0, 65535], "floud of teares sing": [0, 65535], "of teares sing siren": [0, 65535], "teares sing siren for": [0, 65535], "sing siren for thy": [0, 65535], "siren for thy selfe": [0, 65535], "for thy selfe and": [0, 65535], "thy selfe and i": [0, 65535], "selfe and i will": [0, 65535], "and i will dote": [0, 65535], "i will dote spread": [0, 65535], "will dote spread ore": [0, 65535], "dote spread ore the": [0, 65535], "spread ore the siluer": [0, 65535], "ore the siluer waues": [0, 65535], "the siluer waues thy": [0, 65535], "siluer waues thy golden": [0, 65535], "waues thy golden haires": [0, 65535], "thy golden haires and": [0, 65535], "golden haires and as": [0, 65535], "haires and as a": [0, 65535], "and as a bud": [0, 65535], "as a bud ile": [0, 65535], "a bud ile take": [0, 65535], "bud ile take thee": [0, 65535], "ile take thee and": [0, 65535], "take thee and there": [0, 65535], "thee and there lie": [0, 65535], "and there lie and": [0, 65535], "there lie and in": [0, 65535], "lie and in that": [0, 65535], "and in that glorious": [0, 65535], "in that glorious supposition": [0, 65535], "that glorious supposition thinke": [0, 65535], "glorious supposition thinke he": [0, 65535], "supposition thinke he gaines": [0, 65535], "thinke he gaines by": [0, 65535], "he gaines by death": [0, 65535], "gaines by death that": [0, 65535], "by death that hath": [0, 65535], "death that hath such": [0, 65535], "that hath such meanes": [0, 65535], "hath such meanes to": [0, 65535], "such meanes to die": [0, 65535], "meanes to die let": [0, 65535], "to die let loue": [0, 65535], "die let loue being": [0, 65535], "let loue being light": [0, 65535], "loue being light be": [0, 65535], "being light be drowned": [0, 65535], "light be drowned if": [0, 65535], "be drowned if she": [0, 65535], "drowned if she sinke": [0, 65535], "if she sinke luc": [0, 65535], "she sinke luc what": [0, 65535], "sinke luc what are": [0, 65535], "luc what are you": [0, 65535], "what are you mad": [0, 65535], "are you mad that": [0, 65535], "you mad that you": [0, 65535], "mad that you doe": [0, 65535], "that you doe reason": [0, 65535], "you doe reason so": [0, 65535], "doe reason so ant": [0, 65535], "reason so ant not": [0, 65535], "so ant not mad": [0, 65535], "ant not mad but": [0, 65535], "not mad but mated": [0, 65535], "mad but mated how": [0, 65535], "but mated how i": [0, 65535], "mated how i doe": [0, 65535], "how i doe not": [0, 65535], "i doe not know": [0, 65535], "doe not know luc": [0, 65535], "not know luc it": [0, 65535], "know luc it is": [0, 65535], "luc it is a": [0, 65535], "it is a fault": [0, 65535], "is a fault that": [0, 65535], "a fault that springeth": [0, 65535], "fault that springeth from": [0, 65535], "that springeth from your": [0, 65535], "springeth from your eie": [0, 65535], "from your eie ant": [0, 65535], "your eie ant for": [0, 65535], "eie ant for gazing": [0, 65535], "ant for gazing on": [0, 65535], "for gazing on your": [0, 65535], "gazing on your beames": [0, 65535], "on your beames faire": [0, 65535], "your beames faire sun": [0, 65535], "beames faire sun being": [0, 65535], "faire sun being by": [0, 65535], "sun being by luc": [0, 65535], "being by luc gaze": [0, 65535], "by luc gaze when": [0, 65535], "luc gaze when you": [0, 65535], "gaze when you should": [0, 65535], "when you should and": [0, 65535], "you should and that": [0, 65535], "should and that will": [0, 65535], "and that will cleere": [0, 65535], "that will cleere your": [0, 65535], "will cleere your sight": [0, 65535], "cleere your sight ant": [0, 65535], "your sight ant as": [0, 65535], "sight ant as good": [0, 65535], "ant as good to": [0, 65535], "as good to winke": [0, 65535], "good to winke sweet": [0, 65535], "to winke sweet loue": [0, 65535], "winke sweet loue as": [0, 65535], "sweet loue as looke": [0, 65535], "loue as looke on": [0, 65535], "as looke on night": [0, 65535], "looke on night luc": [0, 65535], "on night luc why": [0, 65535], "night luc why call": [0, 65535], "luc why call you": [0, 65535], "why call you me": [0, 65535], "call you me loue": [0, 65535], "you me loue call": [0, 65535], "me loue call my": [0, 65535], "loue call my sister": [0, 65535], "call my sister so": [0, 65535], "my sister so ant": [0, 65535], "sister so ant thy": [0, 65535], "so ant thy sisters": [0, 65535], "ant thy sisters sister": [0, 65535], "thy sisters sister luc": [0, 65535], "sisters sister luc that's": [0, 65535], "sister luc that's my": [0, 65535], "luc that's my sister": [0, 65535], "that's my sister ant": [0, 65535], "my sister ant no": [0, 65535], "sister ant no it": [0, 65535], "ant no it is": [0, 65535], "no it is thy": [0, 65535], "it is thy selfe": [0, 65535], "is thy selfe mine": [0, 65535], "thy selfe mine owne": [0, 65535], "selfe mine owne selfes": [0, 65535], "mine owne selfes better": [0, 65535], "owne selfes better part": [0, 65535], "selfes better part mine": [0, 65535], "better part mine eies": [0, 65535], "part mine eies cleere": [0, 65535], "mine eies cleere eie": [0, 65535], "eies cleere eie my": [0, 65535], "cleere eie my deere": [0, 65535], "eie my deere hearts": [0, 65535], "my deere hearts deerer": [0, 65535], "deere hearts deerer heart": [0, 65535], "hearts deerer heart my": [0, 65535], "deerer heart my foode": [0, 65535], "heart my foode my": [0, 65535], "my foode my fortune": [0, 65535], "foode my fortune and": [0, 65535], "my fortune and my": [0, 65535], "fortune and my sweet": [0, 65535], "and my sweet hopes": [0, 65535], "my sweet hopes aime": [0, 65535], "sweet hopes aime my": [0, 65535], "hopes aime my sole": [0, 65535], "aime my sole earths": [0, 65535], "my sole earths heauen": [0, 65535], "sole earths heauen and": [0, 65535], "earths heauen and my": [0, 65535], "heauen and my heauens": [0, 65535], "and my heauens claime": [0, 65535], "my heauens claime luc": [0, 65535], "heauens claime luc all": [0, 65535], "claime luc all this": [0, 65535], "luc all this my": [0, 65535], "all this my sister": [0, 65535], "this my sister is": [0, 65535], "my sister is or": [0, 65535], "sister is or else": [0, 65535], "is or else should": [0, 65535], "or else should be": [0, 65535], "else should be ant": [0, 65535], "should be ant call": [0, 65535], "be ant call thy": [0, 65535], "ant call thy selfe": [0, 65535], "call thy selfe sister": [0, 65535], "thy selfe sister sweet": [0, 65535], "selfe sister sweet for": [0, 65535], "sister sweet for i": [0, 65535], "sweet for i am": [0, 65535], "for i am thee": [0, 65535], "i am thee thee": [0, 65535], "am thee thee will": [0, 65535], "thee thee will i": [0, 65535], "thee will i loue": [0, 65535], "will i loue and": [0, 65535], "i loue and with": [0, 65535], "loue and with thee": [0, 65535], "and with thee lead": [0, 65535], "with thee lead my": [0, 65535], "thee lead my life": [0, 65535], "lead my life thou": [0, 65535], "my life thou hast": [0, 65535], "life thou hast no": [0, 65535], "thou hast no husband": [0, 65535], "hast no husband yet": [0, 65535], "no husband yet nor": [0, 65535], "husband yet nor i": [0, 65535], "yet nor i no": [0, 65535], "nor i no wife": [0, 65535], "i no wife giue": [0, 65535], "no wife giue me": [0, 65535], "wife giue me thy": [0, 65535], "giue me thy hand": [0, 65535], "me thy hand luc": [0, 65535], "thy hand luc oh": [0, 65535], "hand luc oh soft": [0, 65535], "luc oh soft sir": [0, 65535], "oh soft sir hold": [0, 65535], "soft sir hold you": [0, 65535], "sir hold you still": [0, 65535], "hold you still ile": [0, 65535], "you still ile fetch": [0, 65535], "still ile fetch my": [0, 65535], "ile fetch my sister": [0, 65535], "fetch my sister to": [0, 65535], "my sister to get": [0, 65535], "sister to get her": [0, 65535], "to get her good": [0, 65535], "get her good will": [0, 65535], "her good will exit": [0, 65535], "good will exit enter": [0, 65535], "will exit enter dromio": [0, 65535], "exit enter dromio siracusia": [0, 65535], "enter dromio siracusia ant": [0, 65535], "dromio siracusia ant why": [0, 65535], "siracusia ant why how": [0, 65535], "ant why how now": [0, 65535], "why how now dromio": [0, 65535], "how now dromio where": [0, 65535], "now dromio where run'st": [0, 65535], "dromio where run'st thou": [0, 65535], "where run'st thou so": [0, 65535], "run'st thou so fast": [0, 65535], "thou so fast s": [0, 65535], "so fast s dro": [0, 65535], "fast s dro doe": [0, 65535], "s dro doe you": [0, 65535], "dro doe you know": [0, 65535], "doe you know me": [0, 65535], "you know me sir": [0, 65535], "know me sir am": [0, 65535], "me sir am i": [0, 65535], "sir am i dromio": [0, 65535], "am i dromio am": [0, 65535], "i dromio am i": [0, 65535], "dromio am i your": [0, 65535], "am i your man": [0, 65535], "i your man am": [0, 65535], "your man am i": [0, 65535], "man am i my": [0, 65535], "am i my selfe": [0, 65535], "i my selfe ant": [0, 65535], "my selfe ant thou": [0, 65535], "selfe ant thou art": [0, 65535], "ant thou art dromio": [0, 65535], "thou art dromio thou": [0, 65535], "art dromio thou art": [0, 65535], "dromio thou art my": [0, 65535], "thou art my man": [0, 65535], "art my man thou": [0, 65535], "my man thou art": [0, 65535], "man thou art thy": [0, 65535], "thou art thy selfe": [0, 65535], "art thy selfe dro": [0, 65535], "thy selfe dro i": [0, 65535], "selfe dro i am": [0, 65535], "dro i am an": [0, 65535], "i am an asse": [0, 65535], "am an asse i": [0, 65535], "an asse i am": [0, 65535], "asse i am a": [0, 65535], "i am a womans": [0, 65535], "am a womans man": [0, 65535], "a womans man and": [0, 65535], "womans man and besides": [0, 65535], "man and besides my": [0, 65535], "and besides my selfe": [0, 65535], "besides my selfe ant": [0, 65535], "my selfe ant what": [0, 65535], "selfe ant what womans": [0, 65535], "ant what womans man": [0, 65535], "what womans man and": [0, 65535], "womans man and how": [0, 65535], "man and how besides": [0, 65535], "and how besides thy": [0, 65535], "how besides thy selfe": [0, 65535], "besides thy selfe dro": [0, 65535], "thy selfe dro marrie": [0, 65535], "selfe dro marrie sir": [0, 65535], "dro marrie sir besides": [0, 65535], "marrie sir besides my": [0, 65535], "sir besides my selfe": [0, 65535], "besides my selfe i": [0, 65535], "my selfe i am": [0, 65535], "selfe i am due": [0, 65535], "i am due to": [0, 65535], "am due to a": [0, 65535], "due to a woman": [0, 65535], "to a woman one": [0, 65535], "a woman one that": [0, 65535], "woman one that claimes": [0, 65535], "one that claimes me": [0, 65535], "that claimes me one": [0, 65535], "claimes me one that": [0, 65535], "me one that haunts": [0, 65535], "one that haunts me": [0, 65535], "that haunts me one": [0, 65535], "haunts me one that": [0, 65535], "me one that will": [0, 65535], "one that will haue": [0, 65535], "that will haue me": [0, 65535], "will haue me anti": [0, 65535], "haue me anti what": [0, 65535], "me anti what claime": [0, 65535], "anti what claime laies": [0, 65535], "what claime laies she": [0, 65535], "claime laies she to": [0, 65535], "laies she to thee": [0, 65535], "she to thee dro": [0, 65535], "to thee dro marry": [0, 65535], "thee dro marry sir": [0, 65535], "dro marry sir such": [0, 65535], "marry sir such claime": [0, 65535], "sir such claime as": [0, 65535], "such claime as you": [0, 65535], "claime as you would": [0, 65535], "as you would lay": [0, 65535], "you would lay to": [0, 65535], "would lay to your": [0, 65535], "lay to your horse": [0, 65535], "to your horse and": [0, 65535], "your horse and she": [0, 65535], "horse and she would": [0, 65535], "and she would haue": [0, 65535], "she would haue me": [0, 65535], "would haue me as": [0, 65535], "haue me as a": [0, 65535], "me as a beast": [0, 65535], "as a beast not": [0, 65535], "a beast not that": [0, 65535], "beast not that i": [0, 65535], "not that i beeing": [0, 65535], "that i beeing a": [0, 65535], "i beeing a beast": [0, 65535], "beeing a beast she": [0, 65535], "a beast she would": [0, 65535], "beast she would haue": [0, 65535], "would haue me but": [0, 65535], "haue me but that": [0, 65535], "me but that she": [0, 65535], "but that she being": [0, 65535], "that she being a": [0, 65535], "she being a verie": [0, 65535], "being a verie beastly": [0, 65535], "a verie beastly creature": [0, 65535], "verie beastly creature layes": [0, 65535], "beastly creature layes claime": [0, 65535], "creature layes claime to": [0, 65535], "layes claime to me": [0, 65535], "claime to me anti": [0, 65535], "to me anti what": [0, 65535], "me anti what is": [0, 65535], "anti what is she": [0, 65535], "what is she dro": [0, 65535], "is she dro a": [0, 65535], "she dro a very": [0, 65535], "dro a very reuerent": [0, 65535], "a very reuerent body": [0, 65535], "very reuerent body i": [0, 65535], "reuerent body i such": [0, 65535], "body i such a": [0, 65535], "i such a one": [0, 65535], "such a one as": [0, 65535], "a one as a": [0, 65535], "one as a man": [0, 65535], "as a man may": [0, 65535], "a man may not": [0, 65535], "man may not speake": [0, 65535], "may not speake of": [0, 65535], "not speake of without": [0, 65535], "speake of without he": [0, 65535], "of without he say": [0, 65535], "without he say sir": [0, 65535], "he say sir reuerence": [0, 65535], "say sir reuerence i": [0, 65535], "sir reuerence i haue": [0, 65535], "reuerence i haue but": [0, 65535], "i haue but leane": [0, 65535], "haue but leane lucke": [0, 65535], "but leane lucke in": [0, 65535], "leane lucke in the": [0, 65535], "lucke in the match": [0, 65535], "in the match and": [0, 65535], "the match and yet": [0, 65535], "match and yet is": [0, 65535], "and yet is she": [0, 65535], "yet is she a": [0, 65535], "is she a wondrous": [0, 65535], "she a wondrous fat": [0, 65535], "a wondrous fat marriage": [0, 65535], "wondrous fat marriage anti": [0, 65535], "fat marriage anti how": [0, 65535], "marriage anti how dost": [0, 65535], "anti how dost thou": [0, 65535], "how dost thou meane": [0, 65535], "dost thou meane a": [0, 65535], "thou meane a fat": [0, 65535], "meane a fat marriage": [0, 65535], "a fat marriage dro": [0, 65535], "fat marriage dro marry": [0, 65535], "marriage dro marry sir": [0, 65535], "dro marry sir she's": [0, 65535], "marry sir she's the": [0, 65535], "sir she's the kitchin": [0, 65535], "she's the kitchin wench": [0, 65535], "the kitchin wench al": [0, 65535], "kitchin wench al grease": [0, 65535], "wench al grease and": [0, 65535], "al grease and i": [0, 65535], "grease and i know": [0, 65535], "and i know not": [0, 65535], "i know not what": [0, 65535], "know not what vse": [0, 65535], "not what vse to": [0, 65535], "what vse to put": [0, 65535], "vse to put her": [0, 65535], "to put her too": [0, 65535], "put her too but": [0, 65535], "her too but to": [0, 65535], "too but to make": [0, 65535], "but to make a": [0, 65535], "to make a lampe": [0, 65535], "make a lampe of": [0, 65535], "a lampe of her": [0, 65535], "lampe of her and": [0, 65535], "of her and run": [0, 65535], "her and run from": [0, 65535], "and run from her": [0, 65535], "run from her by": [0, 65535], "from her by her": [0, 65535], "her by her owne": [0, 65535], "by her owne light": [0, 65535], "her owne light i": [0, 65535], "owne light i warrant": [0, 65535], "light i warrant her": [0, 65535], "i warrant her ragges": [0, 65535], "warrant her ragges and": [0, 65535], "her ragges and the": [0, 65535], "ragges and the tallow": [0, 65535], "and the tallow in": [0, 65535], "the tallow in them": [0, 65535], "tallow in them will": [0, 65535], "in them will burne": [0, 65535], "them will burne a": [0, 65535], "will burne a poland": [0, 65535], "burne a poland winter": [0, 65535], "a poland winter if": [0, 65535], "poland winter if she": [0, 65535], "winter if she liues": [0, 65535], "if she liues till": [0, 65535], "she liues till doomesday": [0, 65535], "liues till doomesday she'l": [0, 65535], "till doomesday she'l burne": [0, 65535], "doomesday she'l burne a": [0, 65535], "she'l burne a weeke": [0, 65535], "burne a weeke longer": [0, 65535], "a weeke longer then": [0, 65535], "weeke longer then the": [0, 65535], "longer then the whole": [0, 65535], "then the whole world": [0, 65535], "the whole world anti": [0, 65535], "whole world anti what": [0, 65535], "world anti what complexion": [0, 65535], "anti what complexion is": [0, 65535], "what complexion is she": [0, 65535], "complexion is she of": [0, 65535], "is she of dro": [0, 65535], "she of dro swart": [0, 65535], "of dro swart like": [0, 65535], "dro swart like my": [0, 65535], "swart like my shoo": [0, 65535], "like my shoo but": [0, 65535], "my shoo but her": [0, 65535], "shoo but her face": [0, 65535], "but her face nothing": [0, 65535], "her face nothing like": [0, 65535], "face nothing like so": [0, 65535], "nothing like so cleane": [0, 65535], "like so cleane kept": [0, 65535], "so cleane kept for": [0, 65535], "cleane kept for why": [0, 65535], "kept for why she": [0, 65535], "for why she sweats": [0, 65535], "why she sweats a": [0, 65535], "she sweats a man": [0, 65535], "sweats a man may": [0, 65535], "a man may goe": [0, 65535], "man may goe o": [0, 65535], "may goe o uer": [0, 65535], "goe o uer shooes": [0, 65535], "o uer shooes in": [0, 65535], "uer shooes in the": [0, 65535], "shooes in the grime": [0, 65535], "in the grime of": [0, 65535], "the grime of it": [0, 65535], "grime of it anti": [0, 65535], "of it anti that's": [0, 65535], "it anti that's a": [0, 65535], "anti that's a fault": [0, 65535], "that's a fault that": [0, 65535], "a fault that water": [0, 65535], "fault that water will": [0, 65535], "that water will mend": [0, 65535], "water will mend dro": [0, 65535], "will mend dro no": [0, 65535], "mend dro no sir": [0, 65535], "dro no sir 'tis": [0, 65535], "no sir 'tis in": [0, 65535], "sir 'tis in graine": [0, 65535], "'tis in graine noahs": [0, 65535], "in graine noahs flood": [0, 65535], "graine noahs flood could": [0, 65535], "noahs flood could not": [0, 65535], "flood could not do": [0, 65535], "could not do it": [0, 65535], "not do it anti": [0, 65535], "do it anti what's": [0, 65535], "it anti what's her": [0, 65535], "anti what's her name": [0, 65535], "what's her name dro": [0, 65535], "her name dro nell": [0, 65535], "name dro nell sir": [0, 65535], "dro nell sir but": [0, 65535], "nell sir but her": [0, 65535], "sir but her name": [0, 65535], "but her name is": [0, 65535], "her name is three": [0, 65535], "name is three quarters": [0, 65535], "is three quarters that's": [0, 65535], "three quarters that's an": [0, 65535], "quarters that's an ell": [0, 65535], "that's an ell and": [0, 65535], "an ell and three": [0, 65535], "ell and three quarters": [0, 65535], "and three quarters will": [0, 65535], "three quarters will not": [0, 65535], "quarters will not measure": [0, 65535], "will not measure her": [0, 65535], "not measure her from": [0, 65535], "measure her from hip": [0, 65535], "her from hip to": [0, 65535], "from hip to hip": [0, 65535], "hip to hip anti": [0, 65535], "to hip anti then": [0, 65535], "hip anti then she": [0, 65535], "anti then she beares": [0, 65535], "then she beares some": [0, 65535], "she beares some bredth": [0, 65535], "beares some bredth dro": [0, 65535], "some bredth dro no": [0, 65535], "bredth dro no longer": [0, 65535], "dro no longer from": [0, 65535], "no longer from head": [0, 65535], "longer from head to": [0, 65535], "from head to foot": [0, 65535], "head to foot then": [0, 65535], "to foot then from": [0, 65535], "foot then from hippe": [0, 65535], "then from hippe to": [0, 65535], "from hippe to hippe": [0, 65535], "hippe to hippe she": [0, 65535], "to hippe she is": [0, 65535], "hippe she is sphericall": [0, 65535], "she is sphericall like": [0, 65535], "is sphericall like a": [0, 65535], "sphericall like a globe": [0, 65535], "like a globe i": [0, 65535], "a globe i could": [0, 65535], "globe i could find": [0, 65535], "i could find out": [0, 65535], "could find out countries": [0, 65535], "find out countries in": [0, 65535], "out countries in her": [0, 65535], "countries in her anti": [0, 65535], "in her anti in": [0, 65535], "her anti in what": [0, 65535], "anti in what part": [0, 65535], "in what part of": [0, 65535], "what part of her": [0, 65535], "part of her body": [0, 65535], "of her body stands": [0, 65535], "her body stands ireland": [0, 65535], "body stands ireland dro": [0, 65535], "stands ireland dro marry": [0, 65535], "ireland dro marry sir": [0, 65535], "dro marry sir in": [0, 65535], "marry sir in her": [0, 65535], "sir in her buttockes": [0, 65535], "in her buttockes i": [0, 65535], "her buttockes i found": [0, 65535], "buttockes i found it": [0, 65535], "i found it out": [0, 65535], "found it out by": [0, 65535], "it out by the": [0, 65535], "out by the bogges": [0, 65535], "by the bogges ant": [0, 65535], "the bogges ant where": [0, 65535], "bogges ant where scotland": [0, 65535], "ant where scotland dro": [0, 65535], "where scotland dro i": [0, 65535], "scotland dro i found": [0, 65535], "dro i found it": [0, 65535], "i found it by": [0, 65535], "found it by the": [0, 65535], "it by the barrennesse": [0, 65535], "by the barrennesse hard": [0, 65535], "the barrennesse hard in": [0, 65535], "barrennesse hard in the": [0, 65535], "hard in the palme": [0, 65535], "in the palme of": [0, 65535], "the palme of the": [0, 65535], "palme of the hand": [0, 65535], "of the hand ant": [0, 65535], "the hand ant where": [0, 65535], "hand ant where france": [0, 65535], "ant where france dro": [0, 65535], "where france dro in": [0, 65535], "france dro in her": [0, 65535], "dro in her forhead": [0, 65535], "in her forhead arm'd": [0, 65535], "her forhead arm'd and": [0, 65535], "forhead arm'd and reuerted": [0, 65535], "arm'd and reuerted making": [0, 65535], "and reuerted making warre": [0, 65535], "reuerted making warre against": [0, 65535], "making warre against her": [0, 65535], "warre against her heire": [0, 65535], "against her heire ant": [0, 65535], "her heire ant where": [0, 65535], "heire ant where england": [0, 65535], "ant where england dro": [0, 65535], "where england dro i": [0, 65535], "england dro i look'd": [0, 65535], "dro i look'd for": [0, 65535], "i look'd for the": [0, 65535], "look'd for the chalkle": [0, 65535], "for the chalkle cliffes": [0, 65535], "the chalkle cliffes but": [0, 65535], "chalkle cliffes but i": [0, 65535], "cliffes but i could": [0, 65535], "but i could find": [0, 65535], "i could find no": [0, 65535], "could find no whitenesse": [0, 65535], "find no whitenesse in": [0, 65535], "no whitenesse in them": [0, 65535], "whitenesse in them but": [0, 65535], "in them but i": [0, 65535], "them but i guesse": [0, 65535], "but i guesse it": [0, 65535], "i guesse it stood": [0, 65535], "guesse it stood in": [0, 65535], "it stood in her": [0, 65535], "stood in her chin": [0, 65535], "in her chin by": [0, 65535], "her chin by the": [0, 65535], "chin by the salt": [0, 65535], "by the salt rheume": [0, 65535], "the salt rheume that": [0, 65535], "salt rheume that ranne": [0, 65535], "rheume that ranne betweene": [0, 65535], "that ranne betweene france": [0, 65535], "ranne betweene france and": [0, 65535], "betweene france and it": [0, 65535], "france and it ant": [0, 65535], "and it ant where": [0, 65535], "it ant where spaine": [0, 65535], "ant where spaine dro": [0, 65535], "where spaine dro faith": [0, 65535], "spaine dro faith i": [0, 65535], "dro faith i saw": [0, 65535], "faith i saw it": [0, 65535], "i saw it not": [0, 65535], "saw it not but": [0, 65535], "it not but i": [0, 65535], "not but i felt": [0, 65535], "but i felt it": [0, 65535], "i felt it hot": [0, 65535], "felt it hot in": [0, 65535], "it hot in her": [0, 65535], "hot in her breth": [0, 65535], "in her breth ant": [0, 65535], "her breth ant where": [0, 65535], "breth ant where america": [0, 65535], "ant where america the": [0, 65535], "where america the indies": [0, 65535], "america the indies dro": [0, 65535], "the indies dro oh": [0, 65535], "indies dro oh sir": [0, 65535], "dro oh sir vpon": [0, 65535], "oh sir vpon her": [0, 65535], "sir vpon her nose": [0, 65535], "vpon her nose all": [0, 65535], "her nose all ore": [0, 65535], "nose all ore embellished": [0, 65535], "all ore embellished with": [0, 65535], "ore embellished with rubies": [0, 65535], "embellished with rubies carbuncles": [0, 65535], "with rubies carbuncles saphires": [0, 65535], "rubies carbuncles saphires declining": [0, 65535], "carbuncles saphires declining their": [0, 65535], "saphires declining their rich": [0, 65535], "declining their rich aspect": [0, 65535], "their rich aspect to": [0, 65535], "rich aspect to the": [0, 65535], "aspect to the hot": [0, 65535], "to the hot breath": [0, 65535], "the hot breath of": [0, 65535], "hot breath of spaine": [0, 65535], "breath of spaine who": [0, 65535], "of spaine who sent": [0, 65535], "spaine who sent whole": [0, 65535], "who sent whole armadoes": [0, 65535], "sent whole armadoes of": [0, 65535], "whole armadoes of carrects": [0, 65535], "armadoes of carrects to": [0, 65535], "of carrects to be": [0, 65535], "carrects to be ballast": [0, 65535], "to be ballast at": [0, 65535], "be ballast at her": [0, 65535], "ballast at her nose": [0, 65535], "at her nose anti": [0, 65535], "her nose anti where": [0, 65535], "nose anti where stood": [0, 65535], "anti where stood belgia": [0, 65535], "where stood belgia the": [0, 65535], "stood belgia the netherlands": [0, 65535], "belgia the netherlands dro": [0, 65535], "the netherlands dro oh": [0, 65535], "netherlands dro oh sir": [0, 65535], "dro oh sir i": [0, 65535], "oh sir i did": [0, 65535], "sir i did not": [0, 65535], "i did not looke": [0, 65535], "did not looke so": [0, 65535], "not looke so low": [0, 65535], "looke so low to": [0, 65535], "so low to conclude": [0, 65535], "low to conclude this": [0, 65535], "to conclude this drudge": [0, 65535], "conclude this drudge or": [0, 65535], "this drudge or diuiner": [0, 65535], "drudge or diuiner layd": [0, 65535], "or diuiner layd claime": [0, 65535], "diuiner layd claime to": [0, 65535], "layd claime to mee": [0, 65535], "claime to mee call'd": [0, 65535], "to mee call'd mee": [0, 65535], "mee call'd mee dromio": [0, 65535], "call'd mee dromio swore": [0, 65535], "mee dromio swore i": [0, 65535], "dromio swore i was": [0, 65535], "swore i was assur'd": [0, 65535], "i was assur'd to": [0, 65535], "was assur'd to her": [0, 65535], "assur'd to her told": [0, 65535], "to her told me": [0, 65535], "her told me what": [0, 65535], "told me what priuie": [0, 65535], "me what priuie markes": [0, 65535], "what priuie markes i": [0, 65535], "priuie markes i had": [0, 65535], "markes i had about": [0, 65535], "i had about mee": [0, 65535], "had about mee as": [0, 65535], "about mee as the": [0, 65535], "mee as the marke": [0, 65535], "as the marke of": [0, 65535], "the marke of my": [0, 65535], "marke of my shoulder": [0, 65535], "of my shoulder the": [0, 65535], "my shoulder the mole": [0, 65535], "shoulder the mole in": [0, 65535], "the mole in my": [0, 65535], "mole in my necke": [0, 65535], "in my necke the": [0, 65535], "my necke the great": [0, 65535], "necke the great wart": [0, 65535], "the great wart on": [0, 65535], "great wart on my": [0, 65535], "wart on my left": [0, 65535], "on my left arme": [0, 65535], "my left arme that": [0, 65535], "left arme that i": [0, 65535], "arme that i amaz'd": [0, 65535], "that i amaz'd ranne": [0, 65535], "i amaz'd ranne from": [0, 65535], "amaz'd ranne from her": [0, 65535], "ranne from her as": [0, 65535], "from her as a": [0, 65535], "her as a witch": [0, 65535], "as a witch and": [0, 65535], "a witch and i": [0, 65535], "witch and i thinke": [0, 65535], "and i thinke if": [0, 65535], "i thinke if my": [0, 65535], "thinke if my brest": [0, 65535], "if my brest had": [0, 65535], "my brest had not": [0, 65535], "brest had not beene": [0, 65535], "had not beene made": [0, 65535], "not beene made of": [0, 65535], "beene made of faith": [0, 65535], "made of faith and": [0, 65535], "of faith and my": [0, 65535], "faith and my heart": [0, 65535], "and my heart of": [0, 65535], "my heart of steele": [0, 65535], "heart of steele she": [0, 65535], "of steele she had": [0, 65535], "steele she had transform'd": [0, 65535], "she had transform'd me": [0, 65535], "had transform'd me to": [0, 65535], "transform'd me to a": [0, 65535], "me to a curtull": [0, 65535], "to a curtull dog": [0, 65535], "a curtull dog made": [0, 65535], "curtull dog made me": [0, 65535], "dog made me turne": [0, 65535], "made me turne i'th": [0, 65535], "me turne i'th wheele": [0, 65535], "turne i'th wheele anti": [0, 65535], "i'th wheele anti go": [0, 65535], "wheele anti go hie": [0, 65535], "anti go hie thee": [0, 65535], "go hie thee presently": [0, 65535], "hie thee presently post": [0, 65535], "thee presently post to": [0, 65535], "presently post to the": [0, 65535], "post to the rode": [0, 65535], "to the rode and": [0, 65535], "the rode and if": [0, 65535], "rode and if the": [0, 65535], "and if the winde": [0, 65535], "if the winde blow": [0, 65535], "the winde blow any": [0, 65535], "winde blow any way": [0, 65535], "blow any way from": [0, 65535], "any way from shore": [0, 65535], "way from shore i": [0, 65535], "from shore i will": [0, 65535], "shore i will not": [0, 65535], "i will not harbour": [0, 65535], "will not harbour in": [0, 65535], "not harbour in this": [0, 65535], "harbour in this towne": [0, 65535], "in this towne to": [0, 65535], "this towne to night": [0, 65535], "towne to night if": [0, 65535], "to night if any": [0, 65535], "night if any barke": [0, 65535], "if any barke put": [0, 65535], "any barke put forth": [0, 65535], "barke put forth come": [0, 65535], "put forth come to": [0, 65535], "forth come to the": [0, 65535], "come to the mart": [0, 65535], "to the mart where": [0, 65535], "the mart where i": [0, 65535], "mart where i will": [0, 65535], "where i will walke": [0, 65535], "i will walke till": [0, 65535], "will walke till thou": [0, 65535], "walke till thou returne": [0, 65535], "till thou returne to": [0, 65535], "thou returne to me": [0, 65535], "returne to me if": [0, 65535], "to me if euerie": [0, 65535], "me if euerie one": [0, 65535], "if euerie one knowes": [0, 65535], "euerie one knowes vs": [0, 65535], "one knowes vs and": [0, 65535], "knowes vs and we": [0, 65535], "vs and we know": [0, 65535], "and we know none": [0, 65535], "we know none 'tis": [0, 65535], "know none 'tis time": [0, 65535], "none 'tis time i": [0, 65535], "'tis time i thinke": [0, 65535], "time i thinke to": [0, 65535], "i thinke to trudge": [0, 65535], "thinke to trudge packe": [0, 65535], "to trudge packe and": [0, 65535], "trudge packe and be": [0, 65535], "packe and be gone": [0, 65535], "and be gone dro": [0, 65535], "be gone dro as": [0, 65535], "gone dro as from": [0, 65535], "dro as from a": [0, 65535], "as from a beare": [0, 65535], "from a beare a": [0, 65535], "a beare a man": [0, 65535], "beare a man would": [0, 65535], "a man would run": [0, 65535], "man would run for": [0, 65535], "would run for life": [0, 65535], "run for life so": [0, 65535], "for life so flie": [0, 65535], "life so flie i": [0, 65535], "so flie i from": [0, 65535], "flie i from her": [0, 65535], "i from her that": [0, 65535], "from her that would": [0, 65535], "her that would be": [0, 65535], "that would be my": [0, 65535], "would be my wife": [0, 65535], "be my wife exit": [0, 65535], "my wife exit anti": [0, 65535], "wife exit anti there's": [0, 65535], "exit anti there's none": [0, 65535], "anti there's none but": [0, 65535], "there's none but witches": [0, 65535], "none but witches do": [0, 65535], "but witches do inhabite": [0, 65535], "witches do inhabite heere": [0, 65535], "do inhabite heere and": [0, 65535], "inhabite heere and therefore": [0, 65535], "heere and therefore 'tis": [0, 65535], "and therefore 'tis hie": [0, 65535], "therefore 'tis hie time": [0, 65535], "'tis hie time that": [0, 65535], "hie time that i": [0, 65535], "time that i were": [0, 65535], "that i were hence": [0, 65535], "i were hence she": [0, 65535], "were hence she that": [0, 65535], "hence she that doth": [0, 65535], "she that doth call": [0, 65535], "that doth call me": [0, 65535], "doth call me husband": [0, 65535], "call me husband euen": [0, 65535], "me husband euen my": [0, 65535], "husband euen my soule": [0, 65535], "euen my soule doth": [0, 65535], "my soule doth for": [0, 65535], "soule doth for a": [0, 65535], "doth for a wife": [0, 65535], "for a wife abhorre": [0, 65535], "a wife abhorre but": [0, 65535], "wife abhorre but her": [0, 65535], "abhorre but her faire": [0, 65535], "but her faire sister": [0, 65535], "her faire sister possest": [0, 65535], "faire sister possest with": [0, 65535], "sister possest with such": [0, 65535], "possest with such a": [0, 65535], "with such a gentle": [0, 65535], "such a gentle soueraigne": [0, 65535], "a gentle soueraigne grace": [0, 65535], "gentle soueraigne grace of": [0, 65535], "soueraigne grace of such": [0, 65535], "grace of such inchanting": [0, 65535], "of such inchanting presence": [0, 65535], "such inchanting presence and": [0, 65535], "inchanting presence and discourse": [0, 65535], "presence and discourse hath": [0, 65535], "and discourse hath almost": [0, 65535], "discourse hath almost made": [0, 65535], "hath almost made me": [0, 65535], "almost made me traitor": [0, 65535], "made me traitor to": [0, 65535], "me traitor to my": [0, 65535], "traitor to my selfe": [0, 65535], "to my selfe but": [0, 65535], "my selfe but least": [0, 65535], "selfe but least my": [0, 65535], "but least my selfe": [0, 65535], "least my selfe be": [0, 65535], "my selfe be guilty": [0, 65535], "selfe be guilty to": [0, 65535], "be guilty to selfe": [0, 65535], "guilty to selfe wrong": [0, 65535], "to selfe wrong ile": [0, 65535], "selfe wrong ile stop": [0, 65535], "wrong ile stop mine": [0, 65535], "ile stop mine eares": [0, 65535], "stop mine eares against": [0, 65535], "mine eares against the": [0, 65535], "eares against the mermaids": [0, 65535], "against the mermaids song": [0, 65535], "the mermaids song enter": [0, 65535], "mermaids song enter angelo": [0, 65535], "song enter angelo with": [0, 65535], "enter angelo with the": [0, 65535], "angelo with the chaine": [0, 65535], "with the chaine ang": [0, 65535], "the chaine ang mr": [0, 65535], "chaine ang mr antipholus": [0, 65535], "ang mr antipholus anti": [0, 65535], "mr antipholus anti i": [0, 65535], "antipholus anti i that's": [0, 65535], "anti i that's my": [0, 65535], "i that's my name": [0, 65535], "that's my name ang": [0, 65535], "my name ang i": [0, 65535], "name ang i know": [0, 65535], "ang i know it": [0, 65535], "i know it well": [0, 65535], "know it well sir": [0, 65535], "it well sir loe": [0, 65535], "well sir loe here's": [0, 65535], "sir loe here's the": [0, 65535], "loe here's the chaine": [0, 65535], "here's the chaine i": [0, 65535], "the chaine i thought": [0, 65535], "chaine i thought to": [0, 65535], "thought to haue tane": [0, 65535], "to haue tane you": [0, 65535], "haue tane you at": [0, 65535], "tane you at the": [0, 65535], "you at the porpentine": [0, 65535], "at the porpentine the": [0, 65535], "the porpentine the chaine": [0, 65535], "porpentine the chaine vnfinish'd": [0, 65535], "the chaine vnfinish'd made": [0, 65535], "chaine vnfinish'd made me": [0, 65535], "vnfinish'd made me stay": [0, 65535], "made me stay thus": [0, 65535], "me stay thus long": [0, 65535], "stay thus long anti": [0, 65535], "thus long anti what": [0, 65535], "long anti what is": [0, 65535], "anti what is your": [0, 65535], "what is your will": [0, 65535], "is your will that": [0, 65535], "your will that i": [0, 65535], "will that i shal": [0, 65535], "that i shal do": [0, 65535], "i shal do with": [0, 65535], "shal do with this": [0, 65535], "do with this ang": [0, 65535], "with this ang what": [0, 65535], "this ang what please": [0, 65535], "ang what please your": [0, 65535], "what please your selfe": [0, 65535], "please your selfe sir": [0, 65535], "your selfe sir i": [0, 65535], "selfe sir i haue": [0, 65535], "sir i haue made": [0, 65535], "i haue made it": [0, 65535], "haue made it for": [0, 65535], "made it for you": [0, 65535], "it for you anti": [0, 65535], "for you anti made": [0, 65535], "you anti made it": [0, 65535], "anti made it for": [0, 65535], "made it for me": [0, 65535], "it for me sir": [0, 65535], "for me sir i": [0, 65535], "me sir i bespoke": [0, 65535], "sir i bespoke it": [0, 65535], "i bespoke it not": [0, 65535], "bespoke it not ang": [0, 65535], "it not ang not": [0, 65535], "not ang not once": [0, 65535], "ang not once nor": [0, 65535], "not once nor twice": [0, 65535], "once nor twice but": [0, 65535], "nor twice but twentie": [0, 65535], "twice but twentie times": [0, 65535], "but twentie times you": [0, 65535], "twentie times you haue": [0, 65535], "times you haue go": [0, 65535], "you haue go home": [0, 65535], "haue go home with": [0, 65535], "go home with it": [0, 65535], "home with it and": [0, 65535], "with it and please": [0, 65535], "it and please your": [0, 65535], "and please your wife": [0, 65535], "please your wife withall": [0, 65535], "your wife withall and": [0, 65535], "wife withall and soone": [0, 65535], "withall and soone at": [0, 65535], "and soone at supper": [0, 65535], "soone at supper time": [0, 65535], "at supper time ile": [0, 65535], "supper time ile visit": [0, 65535], "time ile visit you": [0, 65535], "ile visit you and": [0, 65535], "visit you and then": [0, 65535], "you and then receiue": [0, 65535], "and then receiue my": [0, 65535], "then receiue my money": [0, 65535], "receiue my money for": [0, 65535], "my money for the": [0, 65535], "money for the chaine": [0, 65535], "for the chaine anti": [0, 65535], "the chaine anti i": [0, 65535], "chaine anti i pray": [0, 65535], "anti i pray you": [0, 65535], "i pray you sir": [0, 65535], "pray you sir receiue": [0, 65535], "you sir receiue the": [0, 65535], "sir receiue the money": [0, 65535], "receiue the money now": [0, 65535], "the money now for": [0, 65535], "money now for feare": [0, 65535], "now for feare you": [0, 65535], "for feare you ne're": [0, 65535], "feare you ne're see": [0, 65535], "you ne're see chaine": [0, 65535], "ne're see chaine nor": [0, 65535], "see chaine nor mony": [0, 65535], "chaine nor mony more": [0, 65535], "nor mony more ang": [0, 65535], "mony more ang you": [0, 65535], "more ang you are": [0, 65535], "ang you are a": [0, 65535], "you are a merry": [0, 65535], "are a merry man": [0, 65535], "a merry man sir": [0, 65535], "merry man sir fare": [0, 65535], "man sir fare you": [0, 65535], "sir fare you well": [0, 65535], "fare you well exit": [0, 65535], "you well exit ant": [0, 65535], "well exit ant what": [0, 65535], "exit ant what i": [0, 65535], "ant what i should": [0, 65535], "what i should thinke": [0, 65535], "i should thinke of": [0, 65535], "should thinke of this": [0, 65535], "thinke of this i": [0, 65535], "of this i cannot": [0, 65535], "this i cannot tell": [0, 65535], "i cannot tell but": [0, 65535], "cannot tell but this": [0, 65535], "tell but this i": [0, 65535], "but this i thinke": [0, 65535], "this i thinke there's": [0, 65535], "i thinke there's no": [0, 65535], "thinke there's no man": [0, 65535], "there's no man is": [0, 65535], "no man is so": [0, 65535], "man is so vaine": [0, 65535], "is so vaine that": [0, 65535], "so vaine that would": [0, 65535], "vaine that would refuse": [0, 65535], "that would refuse so": [0, 65535], "would refuse so faire": [0, 65535], "refuse so faire an": [0, 65535], "so faire an offer'd": [0, 65535], "faire an offer'd chaine": [0, 65535], "an offer'd chaine i": [0, 65535], "offer'd chaine i see": [0, 65535], "chaine i see a": [0, 65535], "i see a man": [0, 65535], "see a man heere": [0, 65535], "a man heere needs": [0, 65535], "man heere needs not": [0, 65535], "heere needs not liue": [0, 65535], "needs not liue by": [0, 65535], "not liue by shifts": [0, 65535], "liue by shifts when": [0, 65535], "by shifts when in": [0, 65535], "shifts when in the": [0, 65535], "when in the streets": [0, 65535], "in the streets he": [0, 65535], "the streets he meetes": [0, 65535], "streets he meetes such": [0, 65535], "he meetes such golden": [0, 65535], "meetes such golden gifts": [0, 65535], "such golden gifts ile": [0, 65535], "golden gifts ile to": [0, 65535], "gifts ile to the": [0, 65535], "ile to the mart": [0, 65535], "to the mart and": [0, 65535], "the mart and there": [0, 65535], "mart and there for": [0, 65535], "and there for dromio": [0, 65535], "there for dromio stay": [0, 65535], "for dromio stay if": [0, 65535], "dromio stay if any": [0, 65535], "stay if any ship": [0, 65535], "if any ship put": [0, 65535], "any ship put out": [0, 65535], "ship put out then": [0, 65535], "put out then straight": [0, 65535], "out then straight away": [0, 65535], "then straight away exit": [0, 65535], "actus tertius scena prima enter": [0, 65535], "tertius scena prima enter antipholus": [0, 65535], "scena prima enter antipholus of": [0, 65535], "prima enter antipholus of ephesus": [0, 65535], "enter antipholus of ephesus his": [0, 65535], "antipholus of ephesus his man": [0, 65535], "of ephesus his man dromio": [0, 65535], "ephesus his man dromio angelo": [0, 65535], "his man dromio angelo the": [0, 65535], "man dromio angelo the goldsmith": [0, 65535], "dromio angelo the goldsmith and": [0, 65535], "angelo the goldsmith and balthaser": [0, 65535], "the goldsmith and balthaser the": [0, 65535], "goldsmith and balthaser the merchant": [0, 65535], "and balthaser the merchant e": [0, 65535], "balthaser the merchant e anti": [0, 65535], "the merchant e anti good": [0, 65535], "merchant e anti good signior": [0, 65535], "e anti good signior angelo": [0, 65535], "anti good signior angelo you": [0, 65535], "good signior angelo you must": [0, 65535], "signior angelo you must excuse": [0, 65535], "angelo you must excuse vs": [0, 65535], "you must excuse vs all": [0, 65535], "must excuse vs all my": [0, 65535], "excuse vs all my wife": [0, 65535], "vs all my wife is": [0, 65535], "all my wife is shrewish": [0, 65535], "my wife is shrewish when": [0, 65535], "wife is shrewish when i": [0, 65535], "is shrewish when i keepe": [0, 65535], "shrewish when i keepe not": [0, 65535], "when i keepe not howres": [0, 65535], "i keepe not howres say": [0, 65535], "keepe not howres say that": [0, 65535], "not howres say that i": [0, 65535], "howres say that i lingerd": [0, 65535], "say that i lingerd with": [0, 65535], "that i lingerd with you": [0, 65535], "i lingerd with you at": [0, 65535], "lingerd with you at your": [0, 65535], "with you at your shop": [0, 65535], "you at your shop to": [0, 65535], "at your shop to see": [0, 65535], "your shop to see the": [0, 65535], "shop to see the making": [0, 65535], "to see the making of": [0, 65535], "see the making of her": [0, 65535], "the making of her carkanet": [0, 65535], "making of her carkanet and": [0, 65535], "of her carkanet and that": [0, 65535], "her carkanet and that to": [0, 65535], "carkanet and that to morrow": [0, 65535], "and that to morrow you": [0, 65535], "that to morrow you will": [0, 65535], "to morrow you will bring": [0, 65535], "morrow you will bring it": [0, 65535], "you will bring it home": [0, 65535], "will bring it home but": [0, 65535], "bring it home but here's": [0, 65535], "it home but here's a": [0, 65535], "home but here's a villaine": [0, 65535], "but here's a villaine that": [0, 65535], "here's a villaine that would": [0, 65535], "a villaine that would face": [0, 65535], "villaine that would face me": [0, 65535], "that would face me downe": [0, 65535], "would face me downe he": [0, 65535], "face me downe he met": [0, 65535], "me downe he met me": [0, 65535], "downe he met me on": [0, 65535], "he met me on the": [0, 65535], "met me on the mart": [0, 65535], "me on the mart and": [0, 65535], "on the mart and that": [0, 65535], "the mart and that i": [0, 65535], "mart and that i beat": [0, 65535], "and that i beat him": [0, 65535], "that i beat him and": [0, 65535], "i beat him and charg'd": [0, 65535], "beat him and charg'd him": [0, 65535], "him and charg'd him with": [0, 65535], "and charg'd him with a": [0, 65535], "charg'd him with a thousand": [0, 65535], "him with a thousand markes": [0, 65535], "with a thousand markes in": [0, 65535], "a thousand markes in gold": [0, 65535], "thousand markes in gold and": [0, 65535], "markes in gold and that": [0, 65535], "in gold and that i": [0, 65535], "gold and that i did": [0, 65535], "and that i did denie": [0, 65535], "that i did denie my": [0, 65535], "i did denie my wife": [0, 65535], "did denie my wife and": [0, 65535], "denie my wife and house": [0, 65535], "my wife and house thou": [0, 65535], "wife and house thou drunkard": [0, 65535], "and house thou drunkard thou": [0, 65535], "house thou drunkard thou what": [0, 65535], "thou drunkard thou what didst": [0, 65535], "drunkard thou what didst thou": [0, 65535], "thou what didst thou meane": [0, 65535], "what didst thou meane by": [0, 65535], "didst thou meane by this": [0, 65535], "thou meane by this e": [0, 65535], "meane by this e dro": [0, 65535], "by this e dro say": [0, 65535], "this e dro say what": [0, 65535], "e dro say what you": [0, 65535], "dro say what you wil": [0, 65535], "say what you wil sir": [0, 65535], "what you wil sir but": [0, 65535], "you wil sir but i": [0, 65535], "wil sir but i know": [0, 65535], "sir but i know what": [0, 65535], "but i know what i": [0, 65535], "i know what i know": [0, 65535], "know what i know that": [0, 65535], "what i know that you": [0, 65535], "i know that you beat": [0, 65535], "know that you beat me": [0, 65535], "that you beat me at": [0, 65535], "you beat me at the": [0, 65535], "beat me at the mart": [0, 65535], "me at the mart i": [0, 65535], "at the mart i haue": [0, 65535], "the mart i haue your": [0, 65535], "mart i haue your hand": [0, 65535], "i haue your hand to": [0, 65535], "haue your hand to show": [0, 65535], "your hand to show if": [0, 65535], "hand to show if the": [0, 65535], "to show if the skin": [0, 65535], "show if the skin were": [0, 65535], "if the skin were parchment": [0, 65535], "the skin were parchment the": [0, 65535], "skin were parchment the blows": [0, 65535], "were parchment the blows you": [0, 65535], "parchment the blows you gaue": [0, 65535], "the blows you gaue were": [0, 65535], "blows you gaue were ink": [0, 65535], "you gaue were ink your": [0, 65535], "gaue were ink your owne": [0, 65535], "were ink your owne hand": [0, 65535], "ink your owne hand writing": [0, 65535], "your owne hand writing would": [0, 65535], "owne hand writing would tell": [0, 65535], "hand writing would tell you": [0, 65535], "writing would tell you what": [0, 65535], "would tell you what i": [0, 65535], "tell you what i thinke": [0, 65535], "you what i thinke e": [0, 65535], "what i thinke e ant": [0, 65535], "i thinke e ant i": [0, 65535], "thinke e ant i thinke": [0, 65535], "e ant i thinke thou": [0, 65535], "ant i thinke thou art": [0, 65535], "i thinke thou art an": [0, 65535], "thinke thou art an asse": [0, 65535], "thou art an asse e": [0, 65535], "art an asse e dro": [0, 65535], "an asse e dro marry": [0, 65535], "asse e dro marry so": [0, 65535], "e dro marry so it": [0, 65535], "dro marry so it doth": [0, 65535], "marry so it doth appeare": [0, 65535], "so it doth appeare by": [0, 65535], "it doth appeare by the": [0, 65535], "doth appeare by the wrongs": [0, 65535], "appeare by the wrongs i": [0, 65535], "by the wrongs i suffer": [0, 65535], "the wrongs i suffer and": [0, 65535], "wrongs i suffer and the": [0, 65535], "i suffer and the blowes": [0, 65535], "suffer and the blowes i": [0, 65535], "and the blowes i beare": [0, 65535], "the blowes i beare i": [0, 65535], "blowes i beare i should": [0, 65535], "i beare i should kicke": [0, 65535], "beare i should kicke being": [0, 65535], "i should kicke being kickt": [0, 65535], "should kicke being kickt and": [0, 65535], "kicke being kickt and being": [0, 65535], "being kickt and being at": [0, 65535], "kickt and being at that": [0, 65535], "and being at that passe": [0, 65535], "being at that passe you": [0, 65535], "at that passe you would": [0, 65535], "that passe you would keepe": [0, 65535], "passe you would keepe from": [0, 65535], "you would keepe from my": [0, 65535], "would keepe from my heeles": [0, 65535], "keepe from my heeles and": [0, 65535], "from my heeles and beware": [0, 65535], "my heeles and beware of": [0, 65535], "heeles and beware of an": [0, 65535], "and beware of an asse": [0, 65535], "beware of an asse e": [0, 65535], "of an asse e an": [0, 65535], "an asse e an y'are": [0, 65535], "asse e an y'are sad": [0, 65535], "e an y'are sad signior": [0, 65535], "an y'are sad signior balthazar": [0, 65535], "y'are sad signior balthazar pray": [0, 65535], "sad signior balthazar pray god": [0, 65535], "signior balthazar pray god our": [0, 65535], "balthazar pray god our cheer": [0, 65535], "pray god our cheer may": [0, 65535], "god our cheer may answer": [0, 65535], "our cheer may answer my": [0, 65535], "cheer may answer my good": [0, 65535], "may answer my good will": [0, 65535], "answer my good will and": [0, 65535], "my good will and your": [0, 65535], "good will and your good": [0, 65535], "will and your good welcom": [0, 65535], "and your good welcom here": [0, 65535], "your good welcom here bal": [0, 65535], "good welcom here bal i": [0, 65535], "welcom here bal i hold": [0, 65535], "here bal i hold your": [0, 65535], "bal i hold your dainties": [0, 65535], "i hold your dainties cheap": [0, 65535], "hold your dainties cheap sir": [0, 65535], "your dainties cheap sir your": [0, 65535], "dainties cheap sir your welcom": [0, 65535], "cheap sir your welcom deer": [0, 65535], "sir your welcom deer e": [0, 65535], "your welcom deer e an": [0, 65535], "welcom deer e an oh": [0, 65535], "deer e an oh signior": [0, 65535], "e an oh signior balthazar": [0, 65535], "an oh signior balthazar either": [0, 65535], "oh signior balthazar either at": [0, 65535], "signior balthazar either at flesh": [0, 65535], "balthazar either at flesh or": [0, 65535], "either at flesh or fish": [0, 65535], "at flesh or fish a": [0, 65535], "flesh or fish a table": [0, 65535], "or fish a table full": [0, 65535], "fish a table full of": [0, 65535], "a table full of welcome": [0, 65535], "table full of welcome makes": [0, 65535], "full of welcome makes scarce": [0, 65535], "of welcome makes scarce one": [0, 65535], "welcome makes scarce one dainty": [0, 65535], "makes scarce one dainty dish": [0, 65535], "scarce one dainty dish bal": [0, 65535], "one dainty dish bal good": [0, 65535], "dainty dish bal good meat": [0, 65535], "dish bal good meat sir": [0, 65535], "bal good meat sir is": [0, 65535], "good meat sir is co": [0, 65535], "meat sir is co m": [0, 65535], "sir is co m mon": [0, 65535], "is co m mon that": [0, 65535], "co m mon that euery": [0, 65535], "m mon that euery churle": [0, 65535], "mon that euery churle affords": [0, 65535], "that euery churle affords anti": [0, 65535], "euery churle affords anti and": [0, 65535], "churle affords anti and welcome": [0, 65535], "affords anti and welcome more": [0, 65535], "anti and welcome more common": [0, 65535], "and welcome more common for": [0, 65535], "welcome more common for thats": [0, 65535], "more common for thats nothing": [0, 65535], "common for thats nothing but": [0, 65535], "for thats nothing but words": [0, 65535], "thats nothing but words bal": [0, 65535], "nothing but words bal small": [0, 65535], "but words bal small cheere": [0, 65535], "words bal small cheere and": [0, 65535], "bal small cheere and great": [0, 65535], "small cheere and great welcome": [0, 65535], "cheere and great welcome makes": [0, 65535], "and great welcome makes a": [0, 65535], "great welcome makes a merrie": [0, 65535], "welcome makes a merrie feast": [0, 65535], "makes a merrie feast anti": [0, 65535], "a merrie feast anti i": [0, 65535], "merrie feast anti i to": [0, 65535], "feast anti i to a": [0, 65535], "anti i to a niggardly": [0, 65535], "i to a niggardly host": [0, 65535], "to a niggardly host and": [0, 65535], "a niggardly host and more": [0, 65535], "niggardly host and more sparing": [0, 65535], "host and more sparing guest": [0, 65535], "and more sparing guest but": [0, 65535], "more sparing guest but though": [0, 65535], "sparing guest but though my": [0, 65535], "guest but though my cates": [0, 65535], "but though my cates be": [0, 65535], "though my cates be meane": [0, 65535], "my cates be meane take": [0, 65535], "cates be meane take them": [0, 65535], "be meane take them in": [0, 65535], "meane take them in good": [0, 65535], "take them in good part": [0, 65535], "them in good part better": [0, 65535], "in good part better cheere": [0, 65535], "good part better cheere may": [0, 65535], "part better cheere may you": [0, 65535], "better cheere may you haue": [0, 65535], "cheere may you haue but": [0, 65535], "may you haue but not": [0, 65535], "you haue but not with": [0, 65535], "haue but not with better": [0, 65535], "but not with better hart": [0, 65535], "not with better hart but": [0, 65535], "with better hart but soft": [0, 65535], "better hart but soft my": [0, 65535], "hart but soft my doore": [0, 65535], "but soft my doore is": [0, 65535], "soft my doore is lockt": [0, 65535], "my doore is lockt goe": [0, 65535], "doore is lockt goe bid": [0, 65535], "is lockt goe bid them": [0, 65535], "lockt goe bid them let": [0, 65535], "goe bid them let vs": [0, 65535], "bid them let vs in": [0, 65535], "them let vs in e": [0, 65535], "let vs in e dro": [0, 65535], "vs in e dro maud": [0, 65535], "in e dro maud briget": [0, 65535], "e dro maud briget marian": [0, 65535], "dro maud briget marian cisley": [0, 65535], "maud briget marian cisley gillian": [0, 65535], "briget marian cisley gillian ginn": [0, 65535], "marian cisley gillian ginn s": [0, 65535], "cisley gillian ginn s dro": [0, 65535], "gillian ginn s dro mome": [0, 65535], "ginn s dro mome malthorse": [0, 65535], "s dro mome malthorse capon": [0, 65535], "dro mome malthorse capon coxcombe": [0, 65535], "mome malthorse capon coxcombe idiot": [0, 65535], "malthorse capon coxcombe idiot patch": [0, 65535], "capon coxcombe idiot patch either": [0, 65535], "coxcombe idiot patch either get": [0, 65535], "idiot patch either get thee": [0, 65535], "patch either get thee from": [0, 65535], "either get thee from the": [0, 65535], "get thee from the dore": [0, 65535], "thee from the dore or": [0, 65535], "from the dore or sit": [0, 65535], "the dore or sit downe": [0, 65535], "dore or sit downe at": [0, 65535], "or sit downe at the": [0, 65535], "sit downe at the hatch": [0, 65535], "downe at the hatch dost": [0, 65535], "at the hatch dost thou": [0, 65535], "the hatch dost thou coniure": [0, 65535], "hatch dost thou coniure for": [0, 65535], "dost thou coniure for wenches": [0, 65535], "thou coniure for wenches that": [0, 65535], "coniure for wenches that thou": [0, 65535], "for wenches that thou calst": [0, 65535], "wenches that thou calst for": [0, 65535], "that thou calst for such": [0, 65535], "thou calst for such store": [0, 65535], "calst for such store when": [0, 65535], "for such store when one": [0, 65535], "such store when one is": [0, 65535], "store when one is one": [0, 65535], "when one is one too": [0, 65535], "one is one too many": [0, 65535], "is one too many goe": [0, 65535], "one too many goe get": [0, 65535], "too many goe get thee": [0, 65535], "many goe get thee from": [0, 65535], "goe get thee from the": [0, 65535], "thee from the dore e": [0, 65535], "from the dore e dro": [0, 65535], "the dore e dro what": [0, 65535], "dore e dro what patch": [0, 65535], "e dro what patch is": [0, 65535], "dro what patch is made": [0, 65535], "what patch is made our": [0, 65535], "patch is made our porter": [0, 65535], "is made our porter my": [0, 65535], "made our porter my master": [0, 65535], "our porter my master stayes": [0, 65535], "porter my master stayes in": [0, 65535], "my master stayes in the": [0, 65535], "master stayes in the street": [0, 65535], "stayes in the street s": [0, 65535], "in the street s dro": [0, 65535], "the street s dro let": [0, 65535], "street s dro let him": [0, 65535], "s dro let him walke": [0, 65535], "dro let him walke from": [0, 65535], "let him walke from whence": [0, 65535], "him walke from whence he": [0, 65535], "walke from whence he came": [0, 65535], "from whence he came lest": [0, 65535], "whence he came lest hee": [0, 65535], "he came lest hee catch": [0, 65535], "came lest hee catch cold": [0, 65535], "lest hee catch cold on's": [0, 65535], "hee catch cold on's feet": [0, 65535], "catch cold on's feet e": [0, 65535], "cold on's feet e ant": [0, 65535], "on's feet e ant who": [0, 65535], "feet e ant who talks": [0, 65535], "e ant who talks within": [0, 65535], "ant who talks within there": [0, 65535], "who talks within there hoa": [0, 65535], "talks within there hoa open": [0, 65535], "within there hoa open the": [0, 65535], "there hoa open the dore": [0, 65535], "hoa open the dore s": [0, 65535], "open the dore s dro": [0, 65535], "the dore s dro right": [0, 65535], "dore s dro right sir": [0, 65535], "s dro right sir ile": [0, 65535], "dro right sir ile tell": [0, 65535], "right sir ile tell you": [0, 65535], "sir ile tell you when": [0, 65535], "ile tell you when and": [0, 65535], "tell you when and you'll": [0, 65535], "you when and you'll tell": [0, 65535], "when and you'll tell me": [0, 65535], "and you'll tell me wherefore": [0, 65535], "you'll tell me wherefore ant": [0, 65535], "tell me wherefore ant wherefore": [0, 65535], "me wherefore ant wherefore for": [0, 65535], "wherefore ant wherefore for my": [0, 65535], "ant wherefore for my dinner": [0, 65535], "wherefore for my dinner i": [0, 65535], "for my dinner i haue": [0, 65535], "my dinner i haue not": [0, 65535], "dinner i haue not din'd": [0, 65535], "i haue not din'd to": [0, 65535], "haue not din'd to day": [0, 65535], "not din'd to day s": [0, 65535], "din'd to day s dro": [0, 65535], "to day s dro nor": [0, 65535], "day s dro nor to": [0, 65535], "s dro nor to day": [0, 65535], "dro nor to day here": [0, 65535], "nor to day here you": [0, 65535], "to day here you must": [0, 65535], "day here you must not": [0, 65535], "here you must not come": [0, 65535], "you must not come againe": [0, 65535], "must not come againe when": [0, 65535], "not come againe when you": [0, 65535], "come againe when you may": [0, 65535], "againe when you may anti": [0, 65535], "when you may anti what": [0, 65535], "you may anti what art": [0, 65535], "may anti what art thou": [0, 65535], "anti what art thou that": [0, 65535], "what art thou that keep'st": [0, 65535], "art thou that keep'st mee": [0, 65535], "thou that keep'st mee out": [0, 65535], "that keep'st mee out from": [0, 65535], "keep'st mee out from the": [0, 65535], "mee out from the howse": [0, 65535], "out from the howse i": [0, 65535], "from the howse i owe": [0, 65535], "the howse i owe s": [0, 65535], "howse i owe s dro": [0, 65535], "i owe s dro the": [0, 65535], "owe s dro the porter": [0, 65535], "s dro the porter for": [0, 65535], "dro the porter for this": [0, 65535], "the porter for this time": [0, 65535], "porter for this time sir": [0, 65535], "for this time sir and": [0, 65535], "this time sir and my": [0, 65535], "time sir and my name": [0, 65535], "sir and my name is": [0, 65535], "and my name is dromio": [0, 65535], "my name is dromio e": [0, 65535], "name is dromio e dro": [0, 65535], "is dromio e dro o": [0, 65535], "dromio e dro o villaine": [0, 65535], "e dro o villaine thou": [0, 65535], "dro o villaine thou hast": [0, 65535], "o villaine thou hast stolne": [0, 65535], "villaine thou hast stolne both": [0, 65535], "thou hast stolne both mine": [0, 65535], "hast stolne both mine office": [0, 65535], "stolne both mine office and": [0, 65535], "both mine office and my": [0, 65535], "mine office and my name": [0, 65535], "office and my name the": [0, 65535], "and my name the one": [0, 65535], "my name the one nere": [0, 65535], "name the one nere got": [0, 65535], "the one nere got me": [0, 65535], "one nere got me credit": [0, 65535], "nere got me credit the": [0, 65535], "got me credit the other": [0, 65535], "me credit the other mickle": [0, 65535], "credit the other mickle blame": [0, 65535], "the other mickle blame if": [0, 65535], "other mickle blame if thou": [0, 65535], "mickle blame if thou hadst": [0, 65535], "blame if thou hadst beene": [0, 65535], "if thou hadst beene dromio": [0, 65535], "thou hadst beene dromio to": [0, 65535], "hadst beene dromio to day": [0, 65535], "beene dromio to day in": [0, 65535], "dromio to day in my": [0, 65535], "to day in my place": [0, 65535], "day in my place thou": [0, 65535], "in my place thou wouldst": [0, 65535], "my place thou wouldst haue": [0, 65535], "place thou wouldst haue chang'd": [0, 65535], "thou wouldst haue chang'd thy": [0, 65535], "wouldst haue chang'd thy face": [0, 65535], "haue chang'd thy face for": [0, 65535], "chang'd thy face for a": [0, 65535], "thy face for a name": [0, 65535], "face for a name or": [0, 65535], "for a name or thy": [0, 65535], "a name or thy name": [0, 65535], "name or thy name for": [0, 65535], "or thy name for an": [0, 65535], "thy name for an asse": [0, 65535], "name for an asse enter": [0, 65535], "for an asse enter luce": [0, 65535], "an asse enter luce luce": [0, 65535], "asse enter luce luce what": [0, 65535], "enter luce luce what a": [0, 65535], "luce luce what a coile": [0, 65535], "luce what a coile is": [0, 65535], "what a coile is there": [0, 65535], "a coile is there dromio": [0, 65535], "coile is there dromio who": [0, 65535], "is there dromio who are": [0, 65535], "there dromio who are those": [0, 65535], "dromio who are those at": [0, 65535], "who are those at the": [0, 65535], "are those at the gate": [0, 65535], "those at the gate e": [0, 65535], "at the gate e dro": [0, 65535], "the gate e dro let": [0, 65535], "gate e dro let my": [0, 65535], "e dro let my master": [0, 65535], "dro let my master in": [0, 65535], "let my master in luce": [0, 65535], "my master in luce luce": [0, 65535], "master in luce luce faith": [0, 65535], "in luce luce faith no": [0, 65535], "luce luce faith no hee": [0, 65535], "luce faith no hee comes": [0, 65535], "faith no hee comes too": [0, 65535], "no hee comes too late": [0, 65535], "hee comes too late and": [0, 65535], "comes too late and so": [0, 65535], "too late and so tell": [0, 65535], "late and so tell your": [0, 65535], "and so tell your master": [0, 65535], "so tell your master e": [0, 65535], "tell your master e dro": [0, 65535], "your master e dro o": [0, 65535], "master e dro o lord": [0, 65535], "e dro o lord i": [0, 65535], "dro o lord i must": [0, 65535], "o lord i must laugh": [0, 65535], "lord i must laugh haue": [0, 65535], "i must laugh haue at": [0, 65535], "must laugh haue at you": [0, 65535], "laugh haue at you with": [0, 65535], "haue at you with a": [0, 65535], "at you with a prouerbe": [0, 65535], "you with a prouerbe shall": [0, 65535], "with a prouerbe shall i": [0, 65535], "a prouerbe shall i set": [0, 65535], "prouerbe shall i set in": [0, 65535], "shall i set in my": [0, 65535], "i set in my staffe": [0, 65535], "set in my staffe luce": [0, 65535], "in my staffe luce haue": [0, 65535], "my staffe luce haue at": [0, 65535], "staffe luce haue at you": [0, 65535], "luce haue at you with": [0, 65535], "haue at you with another": [0, 65535], "at you with another that's": [0, 65535], "you with another that's when": [0, 65535], "with another that's when can": [0, 65535], "another that's when can you": [0, 65535], "that's when can you tell": [0, 65535], "when can you tell s": [0, 65535], "can you tell s dro": [0, 65535], "you tell s dro if": [0, 65535], "tell s dro if thy": [0, 65535], "s dro if thy name": [0, 65535], "dro if thy name be": [0, 65535], "if thy name be called": [0, 65535], "thy name be called luce": [0, 65535], "name be called luce luce": [0, 65535], "be called luce luce thou": [0, 65535], "called luce luce thou hast": [0, 65535], "luce luce thou hast an": [0, 65535], "luce thou hast an swer'd": [0, 65535], "thou hast an swer'd him": [0, 65535], "hast an swer'd him well": [0, 65535], "an swer'd him well anti": [0, 65535], "swer'd him well anti doe": [0, 65535], "him well anti doe you": [0, 65535], "well anti doe you heare": [0, 65535], "anti doe you heare you": [0, 65535], "doe you heare you minion": [0, 65535], "you heare you minion you'll": [0, 65535], "heare you minion you'll let": [0, 65535], "you minion you'll let vs": [0, 65535], "minion you'll let vs in": [0, 65535], "you'll let vs in i": [0, 65535], "let vs in i hope": [0, 65535], "vs in i hope luce": [0, 65535], "in i hope luce i": [0, 65535], "i hope luce i thought": [0, 65535], "hope luce i thought to": [0, 65535], "luce i thought to haue": [0, 65535], "i thought to haue askt": [0, 65535], "thought to haue askt you": [0, 65535], "to haue askt you s": [0, 65535], "haue askt you s dro": [0, 65535], "askt you s dro and": [0, 65535], "you s dro and you": [0, 65535], "s dro and you said": [0, 65535], "dro and you said no": [0, 65535], "and you said no e": [0, 65535], "you said no e dro": [0, 65535], "said no e dro so": [0, 65535], "no e dro so come": [0, 65535], "e dro so come helpe": [0, 65535], "dro so come helpe well": [0, 65535], "so come helpe well strooke": [0, 65535], "come helpe well strooke there": [0, 65535], "helpe well strooke there was": [0, 65535], "well strooke there was blow": [0, 65535], "strooke there was blow for": [0, 65535], "there was blow for blow": [0, 65535], "was blow for blow anti": [0, 65535], "blow for blow anti thou": [0, 65535], "for blow anti thou baggage": [0, 65535], "blow anti thou baggage let": [0, 65535], "anti thou baggage let me": [0, 65535], "thou baggage let me in": [0, 65535], "baggage let me in luce": [0, 65535], "let me in luce can": [0, 65535], "me in luce can you": [0, 65535], "in luce can you tell": [0, 65535], "luce can you tell for": [0, 65535], "can you tell for whose": [0, 65535], "you tell for whose sake": [0, 65535], "tell for whose sake e": [0, 65535], "for whose sake e drom": [0, 65535], "whose sake e drom master": [0, 65535], "sake e drom master knocke": [0, 65535], "e drom master knocke the": [0, 65535], "drom master knocke the doore": [0, 65535], "master knocke the doore hard": [0, 65535], "knocke the doore hard luce": [0, 65535], "the doore hard luce let": [0, 65535], "doore hard luce let him": [0, 65535], "hard luce let him knocke": [0, 65535], "luce let him knocke till": [0, 65535], "let him knocke till it": [0, 65535], "him knocke till it ake": [0, 65535], "knocke till it ake anti": [0, 65535], "till it ake anti you'll": [0, 65535], "it ake anti you'll crie": [0, 65535], "ake anti you'll crie for": [0, 65535], "anti you'll crie for this": [0, 65535], "you'll crie for this minion": [0, 65535], "crie for this minion if": [0, 65535], "for this minion if i": [0, 65535], "this minion if i beat": [0, 65535], "minion if i beat the": [0, 65535], "if i beat the doore": [0, 65535], "i beat the doore downe": [0, 65535], "beat the doore downe luce": [0, 65535], "the doore downe luce what": [0, 65535], "doore downe luce what needs": [0, 65535], "downe luce what needs all": [0, 65535], "luce what needs all that": [0, 65535], "what needs all that and": [0, 65535], "needs all that and a": [0, 65535], "all that and a paire": [0, 65535], "that and a paire of": [0, 65535], "and a paire of stocks": [0, 65535], "a paire of stocks in": [0, 65535], "paire of stocks in the": [0, 65535], "of stocks in the towne": [0, 65535], "stocks in the towne enter": [0, 65535], "in the towne enter adriana": [0, 65535], "the towne enter adriana adr": [0, 65535], "towne enter adriana adr who": [0, 65535], "enter adriana adr who is": [0, 65535], "adriana adr who is that": [0, 65535], "adr who is that at": [0, 65535], "who is that at the": [0, 65535], "is that at the doore": [0, 65535], "that at the doore that": [0, 65535], "at the doore that keeps": [0, 65535], "the doore that keeps all": [0, 65535], "doore that keeps all this": [0, 65535], "that keeps all this noise": [0, 65535], "keeps all this noise s": [0, 65535], "all this noise s dro": [0, 65535], "this noise s dro by": [0, 65535], "noise s dro by my": [0, 65535], "s dro by my troth": [0, 65535], "dro by my troth your": [0, 65535], "by my troth your towne": [0, 65535], "my troth your towne is": [0, 65535], "troth your towne is troubled": [0, 65535], "your towne is troubled with": [0, 65535], "towne is troubled with vnruly": [0, 65535], "is troubled with vnruly boies": [0, 65535], "troubled with vnruly boies anti": [0, 65535], "with vnruly boies anti are": [0, 65535], "vnruly boies anti are you": [0, 65535], "boies anti are you there": [0, 65535], "anti are you there wife": [0, 65535], "are you there wife you": [0, 65535], "you there wife you might": [0, 65535], "there wife you might haue": [0, 65535], "wife you might haue come": [0, 65535], "you might haue come before": [0, 65535], "might haue come before adri": [0, 65535], "haue come before adri your": [0, 65535], "come before adri your wife": [0, 65535], "before adri your wife sir": [0, 65535], "adri your wife sir knaue": [0, 65535], "your wife sir knaue go": [0, 65535], "wife sir knaue go get": [0, 65535], "sir knaue go get you": [0, 65535], "knaue go get you from": [0, 65535], "go get you from the": [0, 65535], "get you from the dore": [0, 65535], "you from the dore e": [0, 65535], "the dore e dro if": [0, 65535], "dore e dro if you": [0, 65535], "e dro if you went": [0, 65535], "dro if you went in": [0, 65535], "if you went in paine": [0, 65535], "you went in paine master": [0, 65535], "went in paine master this": [0, 65535], "in paine master this knaue": [0, 65535], "paine master this knaue wold": [0, 65535], "master this knaue wold goe": [0, 65535], "this knaue wold goe sore": [0, 65535], "knaue wold goe sore angelo": [0, 65535], "wold goe sore angelo heere": [0, 65535], "goe sore angelo heere is": [0, 65535], "sore angelo heere is neither": [0, 65535], "angelo heere is neither cheere": [0, 65535], "heere is neither cheere sir": [0, 65535], "is neither cheere sir nor": [0, 65535], "neither cheere sir nor welcome": [0, 65535], "cheere sir nor welcome we": [0, 65535], "sir nor welcome we would": [0, 65535], "nor welcome we would faine": [0, 65535], "welcome we would faine haue": [0, 65535], "we would faine haue either": [0, 65535], "would faine haue either baltz": [0, 65535], "faine haue either baltz in": [0, 65535], "haue either baltz in debating": [0, 65535], "either baltz in debating which": [0, 65535], "baltz in debating which was": [0, 65535], "in debating which was best": [0, 65535], "debating which was best wee": [0, 65535], "which was best wee shall": [0, 65535], "was best wee shall part": [0, 65535], "best wee shall part with": [0, 65535], "wee shall part with neither": [0, 65535], "shall part with neither e": [0, 65535], "part with neither e dro": [0, 65535], "with neither e dro they": [0, 65535], "neither e dro they stand": [0, 65535], "e dro they stand at": [0, 65535], "dro they stand at the": [0, 65535], "they stand at the doore": [0, 65535], "stand at the doore master": [0, 65535], "at the doore master bid": [0, 65535], "the doore master bid them": [0, 65535], "doore master bid them welcome": [0, 65535], "master bid them welcome hither": [0, 65535], "bid them welcome hither anti": [0, 65535], "them welcome hither anti there": [0, 65535], "welcome hither anti there is": [0, 65535], "hither anti there is something": [0, 65535], "anti there is something in": [0, 65535], "there is something in the": [0, 65535], "is something in the winde": [0, 65535], "something in the winde that": [0, 65535], "in the winde that we": [0, 65535], "the winde that we cannot": [0, 65535], "winde that we cannot get": [0, 65535], "that we cannot get in": [0, 65535], "we cannot get in e": [0, 65535], "cannot get in e dro": [0, 65535], "get in e dro you": [0, 65535], "in e dro you would": [0, 65535], "e dro you would say": [0, 65535], "dro you would say so": [0, 65535], "you would say so master": [0, 65535], "would say so master if": [0, 65535], "say so master if your": [0, 65535], "so master if your garments": [0, 65535], "master if your garments were": [0, 65535], "if your garments were thin": [0, 65535], "your garments were thin your": [0, 65535], "garments were thin your cake": [0, 65535], "were thin your cake here": [0, 65535], "thin your cake here is": [0, 65535], "your cake here is warme": [0, 65535], "cake here is warme within": [0, 65535], "here is warme within you": [0, 65535], "is warme within you stand": [0, 65535], "warme within you stand here": [0, 65535], "within you stand here in": [0, 65535], "you stand here in the": [0, 65535], "stand here in the cold": [0, 65535], "here in the cold it": [0, 65535], "in the cold it would": [0, 65535], "the cold it would make": [0, 65535], "cold it would make a": [0, 65535], "it would make a man": [0, 65535], "would make a man mad": [0, 65535], "make a man mad as": [0, 65535], "a man mad as a": [0, 65535], "man mad as a bucke": [0, 65535], "mad as a bucke to": [0, 65535], "as a bucke to be": [0, 65535], "a bucke to be so": [0, 65535], "bucke to be so bought": [0, 65535], "to be so bought and": [0, 65535], "be so bought and sold": [0, 65535], "so bought and sold ant": [0, 65535], "bought and sold ant go": [0, 65535], "and sold ant go fetch": [0, 65535], "sold ant go fetch me": [0, 65535], "ant go fetch me something": [0, 65535], "go fetch me something ile": [0, 65535], "fetch me something ile break": [0, 65535], "me something ile break ope": [0, 65535], "something ile break ope the": [0, 65535], "ile break ope the gate": [0, 65535], "break ope the gate s": [0, 65535], "ope the gate s dro": [0, 65535], "the gate s dro breake": [0, 65535], "gate s dro breake any": [0, 65535], "s dro breake any breaking": [0, 65535], "dro breake any breaking here": [0, 65535], "breake any breaking here and": [0, 65535], "any breaking here and ile": [0, 65535], "breaking here and ile breake": [0, 65535], "here and ile breake your": [0, 65535], "and ile breake your knaues": [0, 65535], "ile breake your knaues pate": [0, 65535], "breake your knaues pate e": [0, 65535], "your knaues pate e dro": [0, 65535], "knaues pate e dro a": [0, 65535], "pate e dro a man": [0, 65535], "e dro a man may": [0, 65535], "dro a man may breake": [0, 65535], "a man may breake a": [0, 65535], "man may breake a word": [0, 65535], "may breake a word with": [0, 65535], "breake a word with your": [0, 65535], "a word with your sir": [0, 65535], "word with your sir and": [0, 65535], "with your sir and words": [0, 65535], "your sir and words are": [0, 65535], "sir and words are but": [0, 65535], "and words are but winde": [0, 65535], "words are but winde i": [0, 65535], "are but winde i and": [0, 65535], "but winde i and breake": [0, 65535], "winde i and breake it": [0, 65535], "i and breake it in": [0, 65535], "and breake it in your": [0, 65535], "breake it in your face": [0, 65535], "it in your face so": [0, 65535], "in your face so he": [0, 65535], "your face so he break": [0, 65535], "face so he break it": [0, 65535], "so he break it not": [0, 65535], "he break it not behinde": [0, 65535], "break it not behinde s": [0, 65535], "it not behinde s dro": [0, 65535], "not behinde s dro it": [0, 65535], "behinde s dro it seemes": [0, 65535], "s dro it seemes thou": [0, 65535], "dro it seemes thou want'st": [0, 65535], "it seemes thou want'st breaking": [0, 65535], "seemes thou want'st breaking out": [0, 65535], "thou want'st breaking out vpon": [0, 65535], "want'st breaking out vpon thee": [0, 65535], "breaking out vpon thee hinde": [0, 65535], "out vpon thee hinde e": [0, 65535], "vpon thee hinde e dro": [0, 65535], "thee hinde e dro here's": [0, 65535], "hinde e dro here's too": [0, 65535], "e dro here's too much": [0, 65535], "dro here's too much out": [0, 65535], "here's too much out vpon": [0, 65535], "too much out vpon thee": [0, 65535], "much out vpon thee i": [0, 65535], "out vpon thee i pray": [0, 65535], "vpon thee i pray thee": [0, 65535], "thee i pray thee let": [0, 65535], "i pray thee let me": [0, 65535], "pray thee let me in": [0, 65535], "thee let me in s": [0, 65535], "let me in s dro": [0, 65535], "me in s dro i": [0, 65535], "in s dro i when": [0, 65535], "s dro i when fowles": [0, 65535], "dro i when fowles haue": [0, 65535], "i when fowles haue no": [0, 65535], "when fowles haue no feathers": [0, 65535], "fowles haue no feathers and": [0, 65535], "haue no feathers and fish": [0, 65535], "no feathers and fish haue": [0, 65535], "feathers and fish haue no": [0, 65535], "and fish haue no fin": [0, 65535], "fish haue no fin ant": [0, 65535], "haue no fin ant well": [0, 65535], "no fin ant well ile": [0, 65535], "fin ant well ile breake": [0, 65535], "ant well ile breake in": [0, 65535], "well ile breake in go": [0, 65535], "ile breake in go borrow": [0, 65535], "breake in go borrow me": [0, 65535], "in go borrow me a": [0, 65535], "go borrow me a crow": [0, 65535], "borrow me a crow e": [0, 65535], "me a crow e dro": [0, 65535], "a crow e dro a": [0, 65535], "crow e dro a crow": [0, 65535], "e dro a crow without": [0, 65535], "dro a crow without feather": [0, 65535], "a crow without feather master": [0, 65535], "crow without feather master meane": [0, 65535], "without feather master meane you": [0, 65535], "feather master meane you so": [0, 65535], "master meane you so for": [0, 65535], "meane you so for a": [0, 65535], "you so for a fish": [0, 65535], "so for a fish without": [0, 65535], "for a fish without a": [0, 65535], "a fish without a finne": [0, 65535], "fish without a finne ther's": [0, 65535], "without a finne ther's a": [0, 65535], "a finne ther's a fowle": [0, 65535], "finne ther's a fowle without": [0, 65535], "ther's a fowle without a": [0, 65535], "a fowle without a fether": [0, 65535], "fowle without a fether if": [0, 65535], "without a fether if a": [0, 65535], "a fether if a crow": [0, 65535], "fether if a crow help": [0, 65535], "if a crow help vs": [0, 65535], "a crow help vs in": [0, 65535], "crow help vs in sirra": [0, 65535], "help vs in sirra wee'll": [0, 65535], "vs in sirra wee'll plucke": [0, 65535], "in sirra wee'll plucke a": [0, 65535], "sirra wee'll plucke a crow": [0, 65535], "wee'll plucke a crow together": [0, 65535], "plucke a crow together ant": [0, 65535], "a crow together ant go": [0, 65535], "crow together ant go get": [0, 65535], "together ant go get thee": [0, 65535], "ant go get thee gon": [0, 65535], "go get thee gon fetch": [0, 65535], "get thee gon fetch me": [0, 65535], "thee gon fetch me an": [0, 65535], "gon fetch me an iron": [0, 65535], "fetch me an iron crow": [0, 65535], "me an iron crow balth": [0, 65535], "an iron crow balth haue": [0, 65535], "iron crow balth haue patience": [0, 65535], "crow balth haue patience sir": [0, 65535], "balth haue patience sir oh": [0, 65535], "haue patience sir oh let": [0, 65535], "patience sir oh let it": [0, 65535], "sir oh let it not": [0, 65535], "oh let it not be": [0, 65535], "let it not be so": [0, 65535], "it not be so heerein": [0, 65535], "not be so heerein you": [0, 65535], "be so heerein you warre": [0, 65535], "so heerein you warre against": [0, 65535], "heerein you warre against your": [0, 65535], "you warre against your reputation": [0, 65535], "warre against your reputation and": [0, 65535], "against your reputation and draw": [0, 65535], "your reputation and draw within": [0, 65535], "reputation and draw within the": [0, 65535], "and draw within the compasse": [0, 65535], "draw within the compasse of": [0, 65535], "within the compasse of suspect": [0, 65535], "the compasse of suspect th'": [0, 65535], "compasse of suspect th' vnuiolated": [0, 65535], "of suspect th' vnuiolated honor": [0, 65535], "suspect th' vnuiolated honor of": [0, 65535], "th' vnuiolated honor of your": [0, 65535], "vnuiolated honor of your wife": [0, 65535], "honor of your wife once": [0, 65535], "of your wife once this": [0, 65535], "your wife once this your": [0, 65535], "wife once this your long": [0, 65535], "once this your long experience": [0, 65535], "this your long experience of": [0, 65535], "your long experience of your": [0, 65535], "long experience of your wisedome": [0, 65535], "experience of your wisedome her": [0, 65535], "of your wisedome her sober": [0, 65535], "your wisedome her sober vertue": [0, 65535], "wisedome her sober vertue yeares": [0, 65535], "her sober vertue yeares and": [0, 65535], "sober vertue yeares and modestie": [0, 65535], "vertue yeares and modestie plead": [0, 65535], "yeares and modestie plead on": [0, 65535], "and modestie plead on your": [0, 65535], "modestie plead on your part": [0, 65535], "plead on your part some": [0, 65535], "on your part some cause": [0, 65535], "your part some cause to": [0, 65535], "part some cause to you": [0, 65535], "some cause to you vnknowne": [0, 65535], "cause to you vnknowne and": [0, 65535], "to you vnknowne and doubt": [0, 65535], "you vnknowne and doubt not": [0, 65535], "vnknowne and doubt not sir": [0, 65535], "and doubt not sir but": [0, 65535], "doubt not sir but she": [0, 65535], "not sir but she will": [0, 65535], "sir but she will well": [0, 65535], "but she will well excuse": [0, 65535], "she will well excuse why": [0, 65535], "will well excuse why at": [0, 65535], "well excuse why at this": [0, 65535], "excuse why at this time": [0, 65535], "why at this time the": [0, 65535], "at this time the dores": [0, 65535], "this time the dores are": [0, 65535], "time the dores are made": [0, 65535], "the dores are made against": [0, 65535], "dores are made against you": [0, 65535], "are made against you be": [0, 65535], "made against you be rul'd": [0, 65535], "against you be rul'd by": [0, 65535], "you be rul'd by me": [0, 65535], "be rul'd by me depart": [0, 65535], "rul'd by me depart in": [0, 65535], "by me depart in patience": [0, 65535], "me depart in patience and": [0, 65535], "depart in patience and let": [0, 65535], "in patience and let vs": [0, 65535], "patience and let vs to": [0, 65535], "and let vs to the": [0, 65535], "let vs to the tyger": [0, 65535], "vs to the tyger all": [0, 65535], "to the tyger all to": [0, 65535], "the tyger all to dinner": [0, 65535], "tyger all to dinner and": [0, 65535], "all to dinner and about": [0, 65535], "to dinner and about euening": [0, 65535], "dinner and about euening come": [0, 65535], "and about euening come your": [0, 65535], "about euening come your selfe": [0, 65535], "euening come your selfe alone": [0, 65535], "come your selfe alone to": [0, 65535], "your selfe alone to know": [0, 65535], "selfe alone to know the": [0, 65535], "alone to know the reason": [0, 65535], "to know the reason of": [0, 65535], "know the reason of this": [0, 65535], "the reason of this strange": [0, 65535], "reason of this strange restraint": [0, 65535], "of this strange restraint if": [0, 65535], "this strange restraint if by": [0, 65535], "strange restraint if by strong": [0, 65535], "restraint if by strong hand": [0, 65535], "if by strong hand you": [0, 65535], "by strong hand you offer": [0, 65535], "strong hand you offer to": [0, 65535], "hand you offer to breake": [0, 65535], "you offer to breake in": [0, 65535], "offer to breake in now": [0, 65535], "to breake in now in": [0, 65535], "breake in now in the": [0, 65535], "in now in the stirring": [0, 65535], "now in the stirring passage": [0, 65535], "in the stirring passage of": [0, 65535], "the stirring passage of the": [0, 65535], "stirring passage of the day": [0, 65535], "passage of the day a": [0, 65535], "of the day a vulgar": [0, 65535], "the day a vulgar comment": [0, 65535], "day a vulgar comment will": [0, 65535], "a vulgar comment will be": [0, 65535], "vulgar comment will be made": [0, 65535], "comment will be made of": [0, 65535], "will be made of it": [0, 65535], "be made of it and": [0, 65535], "made of it and that": [0, 65535], "of it and that supposed": [0, 65535], "it and that supposed by": [0, 65535], "and that supposed by the": [0, 65535], "that supposed by the common": [0, 65535], "supposed by the common rowt": [0, 65535], "by the common rowt against": [0, 65535], "the common rowt against your": [0, 65535], "common rowt against your yet": [0, 65535], "rowt against your yet vngalled": [0, 65535], "against your yet vngalled estimation": [0, 65535], "your yet vngalled estimation that": [0, 65535], "yet vngalled estimation that may": [0, 65535], "vngalled estimation that may with": [0, 65535], "estimation that may with foule": [0, 65535], "that may with foule intrusion": [0, 65535], "may with foule intrusion enter": [0, 65535], "with foule intrusion enter in": [0, 65535], "foule intrusion enter in and": [0, 65535], "intrusion enter in and dwell": [0, 65535], "enter in and dwell vpon": [0, 65535], "in and dwell vpon your": [0, 65535], "and dwell vpon your graue": [0, 65535], "dwell vpon your graue when": [0, 65535], "vpon your graue when you": [0, 65535], "your graue when you are": [0, 65535], "graue when you are dead": [0, 65535], "when you are dead for": [0, 65535], "you are dead for slander": [0, 65535], "are dead for slander liues": [0, 65535], "dead for slander liues vpon": [0, 65535], "for slander liues vpon succession": [0, 65535], "slander liues vpon succession for": [0, 65535], "liues vpon succession for euer": [0, 65535], "vpon succession for euer hows'd": [0, 65535], "succession for euer hows'd where": [0, 65535], "for euer hows'd where it": [0, 65535], "euer hows'd where it gets": [0, 65535], "hows'd where it gets possession": [0, 65535], "where it gets possession anti": [0, 65535], "it gets possession anti you": [0, 65535], "gets possession anti you haue": [0, 65535], "possession anti you haue preuail'd": [0, 65535], "anti you haue preuail'd i": [0, 65535], "you haue preuail'd i will": [0, 65535], "haue preuail'd i will depart": [0, 65535], "preuail'd i will depart in": [0, 65535], "i will depart in quiet": [0, 65535], "will depart in quiet and": [0, 65535], "depart in quiet and in": [0, 65535], "in quiet and in despight": [0, 65535], "quiet and in despight of": [0, 65535], "and in despight of mirth": [0, 65535], "in despight of mirth meane": [0, 65535], "despight of mirth meane to": [0, 65535], "of mirth meane to be": [0, 65535], "mirth meane to be merrie": [0, 65535], "meane to be merrie i": [0, 65535], "to be merrie i know": [0, 65535], "be merrie i know a": [0, 65535], "merrie i know a wench": [0, 65535], "i know a wench of": [0, 65535], "know a wench of excellent": [0, 65535], "a wench of excellent discourse": [0, 65535], "wench of excellent discourse prettie": [0, 65535], "of excellent discourse prettie and": [0, 65535], "excellent discourse prettie and wittie": [0, 65535], "discourse prettie and wittie wilde": [0, 65535], "prettie and wittie wilde and": [0, 65535], "and wittie wilde and yet": [0, 65535], "wittie wilde and yet too": [0, 65535], "wilde and yet too gentle": [0, 65535], "and yet too gentle there": [0, 65535], "yet too gentle there will": [0, 65535], "too gentle there will we": [0, 65535], "gentle there will we dine": [0, 65535], "there will we dine this": [0, 65535], "will we dine this woman": [0, 65535], "we dine this woman that": [0, 65535], "dine this woman that i": [0, 65535], "this woman that i meane": [0, 65535], "woman that i meane my": [0, 65535], "that i meane my wife": [0, 65535], "i meane my wife but": [0, 65535], "meane my wife but i": [0, 65535], "my wife but i protest": [0, 65535], "wife but i protest without": [0, 65535], "but i protest without desert": [0, 65535], "i protest without desert hath": [0, 65535], "protest without desert hath oftentimes": [0, 65535], "without desert hath oftentimes vpbraided": [0, 65535], "desert hath oftentimes vpbraided me": [0, 65535], "hath oftentimes vpbraided me withall": [0, 65535], "oftentimes vpbraided me withall to": [0, 65535], "vpbraided me withall to her": [0, 65535], "me withall to her will": [0, 65535], "withall to her will we": [0, 65535], "to her will we to": [0, 65535], "her will we to dinner": [0, 65535], "will we to dinner get": [0, 65535], "we to dinner get you": [0, 65535], "to dinner get you home": [0, 65535], "dinner get you home and": [0, 65535], "get you home and fetch": [0, 65535], "you home and fetch the": [0, 65535], "home and fetch the chaine": [0, 65535], "and fetch the chaine by": [0, 65535], "fetch the chaine by this": [0, 65535], "the chaine by this i": [0, 65535], "chaine by this i know": [0, 65535], "by this i know 'tis": [0, 65535], "this i know 'tis made": [0, 65535], "i know 'tis made bring": [0, 65535], "know 'tis made bring it": [0, 65535], "'tis made bring it i": [0, 65535], "made bring it i pray": [0, 65535], "bring it i pray you": [0, 65535], "it i pray you to": [0, 65535], "i pray you to the": [0, 65535], "pray you to the porpentine": [0, 65535], "you to the porpentine for": [0, 65535], "to the porpentine for there's": [0, 65535], "the porpentine for there's the": [0, 65535], "porpentine for there's the house": [0, 65535], "for there's the house that": [0, 65535], "there's the house that chaine": [0, 65535], "the house that chaine will": [0, 65535], "house that chaine will i": [0, 65535], "that chaine will i bestow": [0, 65535], "chaine will i bestow be": [0, 65535], "will i bestow be it": [0, 65535], "i bestow be it for": [0, 65535], "bestow be it for nothing": [0, 65535], "be it for nothing but": [0, 65535], "it for nothing but to": [0, 65535], "for nothing but to spight": [0, 65535], "nothing but to spight my": [0, 65535], "but to spight my wife": [0, 65535], "to spight my wife vpon": [0, 65535], "spight my wife vpon mine": [0, 65535], "my wife vpon mine hostesse": [0, 65535], "wife vpon mine hostesse there": [0, 65535], "vpon mine hostesse there good": [0, 65535], "mine hostesse there good sir": [0, 65535], "hostesse there good sir make": [0, 65535], "there good sir make haste": [0, 65535], "good sir make haste since": [0, 65535], "sir make haste since mine": [0, 65535], "make haste since mine owne": [0, 65535], "haste since mine owne doores": [0, 65535], "since mine owne doores refuse": [0, 65535], "mine owne doores refuse to": [0, 65535], "owne doores refuse to entertaine": [0, 65535], "doores refuse to entertaine me": [0, 65535], "refuse to entertaine me ile": [0, 65535], "to entertaine me ile knocke": [0, 65535], "entertaine me ile knocke else": [0, 65535], "me ile knocke else where": [0, 65535], "ile knocke else where to": [0, 65535], "knocke else where to see": [0, 65535], "else where to see if": [0, 65535], "where to see if they'll": [0, 65535], "to see if they'll disdaine": [0, 65535], "see if they'll disdaine me": [0, 65535], "if they'll disdaine me ang": [0, 65535], "they'll disdaine me ang ile": [0, 65535], "disdaine me ang ile meet": [0, 65535], "me ang ile meet you": [0, 65535], "ang ile meet you at": [0, 65535], "ile meet you at that": [0, 65535], "meet you at that place": [0, 65535], "you at that place some": [0, 65535], "at that place some houre": [0, 65535], "that place some houre hence": [0, 65535], "place some houre hence anti": [0, 65535], "some houre hence anti do": [0, 65535], "houre hence anti do so": [0, 65535], "hence anti do so this": [0, 65535], "anti do so this iest": [0, 65535], "do so this iest shall": [0, 65535], "so this iest shall cost": [0, 65535], "this iest shall cost me": [0, 65535], "iest shall cost me some": [0, 65535], "shall cost me some expence": [0, 65535], "cost me some expence exeunt": [0, 65535], "me some expence exeunt enter": [0, 65535], "some expence exeunt enter iuliana": [0, 65535], "expence exeunt enter iuliana with": [0, 65535], "exeunt enter iuliana with antipholus": [0, 65535], "enter iuliana with antipholus of": [0, 65535], "iuliana with antipholus of siracusia": [0, 65535], "with antipholus of siracusia iulia": [0, 65535], "antipholus of siracusia iulia and": [0, 65535], "of siracusia iulia and may": [0, 65535], "siracusia iulia and may it": [0, 65535], "iulia and may it be": [0, 65535], "and may it be that": [0, 65535], "may it be that you": [0, 65535], "it be that you haue": [0, 65535], "be that you haue quite": [0, 65535], "that you haue quite forgot": [0, 65535], "you haue quite forgot a": [0, 65535], "haue quite forgot a husbands": [0, 65535], "quite forgot a husbands office": [0, 65535], "forgot a husbands office shall": [0, 65535], "a husbands office shall antipholus": [0, 65535], "husbands office shall antipholus euen": [0, 65535], "office shall antipholus euen in": [0, 65535], "shall antipholus euen in the": [0, 65535], "antipholus euen in the spring": [0, 65535], "euen in the spring of": [0, 65535], "in the spring of loue": [0, 65535], "the spring of loue thy": [0, 65535], "spring of loue thy loue": [0, 65535], "of loue thy loue springs": [0, 65535], "loue thy loue springs rot": [0, 65535], "thy loue springs rot shall": [0, 65535], "loue springs rot shall loue": [0, 65535], "springs rot shall loue in": [0, 65535], "rot shall loue in buildings": [0, 65535], "shall loue in buildings grow": [0, 65535], "loue in buildings grow so": [0, 65535], "in buildings grow so ruinate": [0, 65535], "buildings grow so ruinate if": [0, 65535], "grow so ruinate if you": [0, 65535], "so ruinate if you did": [0, 65535], "ruinate if you did wed": [0, 65535], "if you did wed my": [0, 65535], "you did wed my sister": [0, 65535], "did wed my sister for": [0, 65535], "wed my sister for her": [0, 65535], "my sister for her wealth": [0, 65535], "sister for her wealth then": [0, 65535], "for her wealth then for": [0, 65535], "her wealth then for her": [0, 65535], "wealth then for her wealths": [0, 65535], "then for her wealths sake": [0, 65535], "for her wealths sake vse": [0, 65535], "her wealths sake vse her": [0, 65535], "wealths sake vse her with": [0, 65535], "sake vse her with more": [0, 65535], "vse her with more kindnesse": [0, 65535], "her with more kindnesse or": [0, 65535], "with more kindnesse or if": [0, 65535], "more kindnesse or if you": [0, 65535], "kindnesse or if you like": [0, 65535], "or if you like else": [0, 65535], "if you like else where": [0, 65535], "you like else where doe": [0, 65535], "like else where doe it": [0, 65535], "else where doe it by": [0, 65535], "where doe it by stealth": [0, 65535], "doe it by stealth muffle": [0, 65535], "it by stealth muffle your": [0, 65535], "by stealth muffle your false": [0, 65535], "stealth muffle your false loue": [0, 65535], "muffle your false loue with": [0, 65535], "your false loue with some": [0, 65535], "false loue with some shew": [0, 65535], "loue with some shew of": [0, 65535], "with some shew of blindnesse": [0, 65535], "some shew of blindnesse let": [0, 65535], "shew of blindnesse let not": [0, 65535], "of blindnesse let not my": [0, 65535], "blindnesse let not my sister": [0, 65535], "let not my sister read": [0, 65535], "not my sister read it": [0, 65535], "my sister read it in": [0, 65535], "sister read it in your": [0, 65535], "read it in your eye": [0, 65535], "it in your eye be": [0, 65535], "in your eye be not": [0, 65535], "your eye be not thy": [0, 65535], "eye be not thy tongue": [0, 65535], "be not thy tongue thy": [0, 65535], "not thy tongue thy owne": [0, 65535], "thy tongue thy owne shames": [0, 65535], "tongue thy owne shames orator": [0, 65535], "thy owne shames orator looke": [0, 65535], "owne shames orator looke sweet": [0, 65535], "shames orator looke sweet speake": [0, 65535], "orator looke sweet speake faire": [0, 65535], "looke sweet speake faire become": [0, 65535], "sweet speake faire become disloyaltie": [0, 65535], "speake faire become disloyaltie apparell": [0, 65535], "faire become disloyaltie apparell vice": [0, 65535], "become disloyaltie apparell vice like": [0, 65535], "disloyaltie apparell vice like vertues": [0, 65535], "apparell vice like vertues harbenger": [0, 65535], "vice like vertues harbenger beare": [0, 65535], "like vertues harbenger beare a": [0, 65535], "vertues harbenger beare a faire": [0, 65535], "harbenger beare a faire presence": [0, 65535], "beare a faire presence though": [0, 65535], "a faire presence though your": [0, 65535], "faire presence though your heart": [0, 65535], "presence though your heart be": [0, 65535], "though your heart be tainted": [0, 65535], "your heart be tainted teach": [0, 65535], "heart be tainted teach sinne": [0, 65535], "be tainted teach sinne the": [0, 65535], "tainted teach sinne the carriage": [0, 65535], "teach sinne the carriage of": [0, 65535], "sinne the carriage of a": [0, 65535], "the carriage of a holy": [0, 65535], "carriage of a holy saint": [0, 65535], "of a holy saint be": [0, 65535], "a holy saint be secret": [0, 65535], "holy saint be secret false": [0, 65535], "saint be secret false what": [0, 65535], "be secret false what need": [0, 65535], "secret false what need she": [0, 65535], "false what need she be": [0, 65535], "what need she be acquainted": [0, 65535], "need she be acquainted what": [0, 65535], "she be acquainted what simple": [0, 65535], "be acquainted what simple thiefe": [0, 65535], "acquainted what simple thiefe brags": [0, 65535], "what simple thiefe brags of": [0, 65535], "simple thiefe brags of his": [0, 65535], "thiefe brags of his owne": [0, 65535], "brags of his owne attaine": [0, 65535], "of his owne attaine 'tis": [0, 65535], "his owne attaine 'tis double": [0, 65535], "owne attaine 'tis double wrong": [0, 65535], "attaine 'tis double wrong to": [0, 65535], "'tis double wrong to truant": [0, 65535], "double wrong to truant with": [0, 65535], "wrong to truant with your": [0, 65535], "to truant with your bed": [0, 65535], "truant with your bed and": [0, 65535], "with your bed and let": [0, 65535], "your bed and let her": [0, 65535], "bed and let her read": [0, 65535], "and let her read it": [0, 65535], "let her read it in": [0, 65535], "her read it in thy": [0, 65535], "read it in thy lookes": [0, 65535], "it in thy lookes at": [0, 65535], "in thy lookes at boord": [0, 65535], "thy lookes at boord shame": [0, 65535], "lookes at boord shame hath": [0, 65535], "at boord shame hath a": [0, 65535], "boord shame hath a bastard": [0, 65535], "shame hath a bastard fame": [0, 65535], "hath a bastard fame well": [0, 65535], "a bastard fame well managed": [0, 65535], "bastard fame well managed ill": [0, 65535], "fame well managed ill deeds": [0, 65535], "well managed ill deeds is": [0, 65535], "managed ill deeds is doubled": [0, 65535], "ill deeds is doubled with": [0, 65535], "deeds is doubled with an": [0, 65535], "is doubled with an euill": [0, 65535], "doubled with an euill word": [0, 65535], "with an euill word alas": [0, 65535], "an euill word alas poore": [0, 65535], "euill word alas poore women": [0, 65535], "word alas poore women make": [0, 65535], "alas poore women make vs": [0, 65535], "poore women make vs not": [0, 65535], "women make vs not beleeue": [0, 65535], "make vs not beleeue being": [0, 65535], "vs not beleeue being compact": [0, 65535], "not beleeue being compact of": [0, 65535], "beleeue being compact of credit": [0, 65535], "being compact of credit that": [0, 65535], "compact of credit that you": [0, 65535], "of credit that you loue": [0, 65535], "credit that you loue vs": [0, 65535], "that you loue vs though": [0, 65535], "you loue vs though others": [0, 65535], "loue vs though others haue": [0, 65535], "vs though others haue the": [0, 65535], "though others haue the arme": [0, 65535], "others haue the arme shew": [0, 65535], "haue the arme shew vs": [0, 65535], "the arme shew vs the": [0, 65535], "arme shew vs the sleeue": [0, 65535], "shew vs the sleeue we": [0, 65535], "vs the sleeue we in": [0, 65535], "the sleeue we in your": [0, 65535], "sleeue we in your motion": [0, 65535], "we in your motion turne": [0, 65535], "in your motion turne and": [0, 65535], "your motion turne and you": [0, 65535], "motion turne and you may": [0, 65535], "turne and you may moue": [0, 65535], "and you may moue vs": [0, 65535], "you may moue vs then": [0, 65535], "may moue vs then gentle": [0, 65535], "moue vs then gentle brother": [0, 65535], "vs then gentle brother get": [0, 65535], "then gentle brother get you": [0, 65535], "gentle brother get you in": [0, 65535], "brother get you in againe": [0, 65535], "get you in againe comfort": [0, 65535], "you in againe comfort my": [0, 65535], "in againe comfort my sister": [0, 65535], "againe comfort my sister cheere": [0, 65535], "comfort my sister cheere her": [0, 65535], "my sister cheere her call": [0, 65535], "sister cheere her call her": [0, 65535], "cheere her call her wise": [0, 65535], "her call her wise 'tis": [0, 65535], "call her wise 'tis holy": [0, 65535], "her wise 'tis holy sport": [0, 65535], "wise 'tis holy sport to": [0, 65535], "'tis holy sport to be": [0, 65535], "holy sport to be a": [0, 65535], "sport to be a little": [0, 65535], "to be a little vaine": [0, 65535], "be a little vaine when": [0, 65535], "a little vaine when the": [0, 65535], "little vaine when the sweet": [0, 65535], "vaine when the sweet breath": [0, 65535], "when the sweet breath of": [0, 65535], "the sweet breath of flatterie": [0, 65535], "sweet breath of flatterie conquers": [0, 65535], "breath of flatterie conquers strife": [0, 65535], "of flatterie conquers strife s": [0, 65535], "flatterie conquers strife s anti": [0, 65535], "conquers strife s anti sweete": [0, 65535], "strife s anti sweete mistris": [0, 65535], "s anti sweete mistris what": [0, 65535], "anti sweete mistris what your": [0, 65535], "sweete mistris what your name": [0, 65535], "mistris what your name is": [0, 65535], "what your name is else": [0, 65535], "your name is else i": [0, 65535], "name is else i know": [0, 65535], "is else i know not": [0, 65535], "else i know not nor": [0, 65535], "i know not nor by": [0, 65535], "know not nor by what": [0, 65535], "not nor by what wonder": [0, 65535], "nor by what wonder you": [0, 65535], "by what wonder you do": [0, 65535], "what wonder you do hit": [0, 65535], "wonder you do hit of": [0, 65535], "you do hit of mine": [0, 65535], "do hit of mine lesse": [0, 65535], "hit of mine lesse in": [0, 65535], "of mine lesse in your": [0, 65535], "mine lesse in your knowledge": [0, 65535], "lesse in your knowledge and": [0, 65535], "in your knowledge and your": [0, 65535], "your knowledge and your grace": [0, 65535], "knowledge and your grace you": [0, 65535], "and your grace you show": [0, 65535], "your grace you show not": [0, 65535], "grace you show not then": [0, 65535], "you show not then our": [0, 65535], "show not then our earths": [0, 65535], "not then our earths wonder": [0, 65535], "then our earths wonder more": [0, 65535], "our earths wonder more then": [0, 65535], "earths wonder more then earth": [0, 65535], "wonder more then earth diuine": [0, 65535], "more then earth diuine teach": [0, 65535], "then earth diuine teach me": [0, 65535], "earth diuine teach me deere": [0, 65535], "diuine teach me deere creature": [0, 65535], "teach me deere creature how": [0, 65535], "me deere creature how to": [0, 65535], "deere creature how to thinke": [0, 65535], "creature how to thinke and": [0, 65535], "how to thinke and speake": [0, 65535], "to thinke and speake lay": [0, 65535], "thinke and speake lay open": [0, 65535], "and speake lay open to": [0, 65535], "speake lay open to my": [0, 65535], "lay open to my earthie": [0, 65535], "open to my earthie grosse": [0, 65535], "to my earthie grosse conceit": [0, 65535], "my earthie grosse conceit smothred": [0, 65535], "earthie grosse conceit smothred in": [0, 65535], "grosse conceit smothred in errors": [0, 65535], "conceit smothred in errors feeble": [0, 65535], "smothred in errors feeble shallow": [0, 65535], "in errors feeble shallow weake": [0, 65535], "errors feeble shallow weake the": [0, 65535], "feeble shallow weake the foulded": [0, 65535], "shallow weake the foulded meaning": [0, 65535], "weake the foulded meaning of": [0, 65535], "the foulded meaning of your": [0, 65535], "foulded meaning of your words": [0, 65535], "meaning of your words deceit": [0, 65535], "of your words deceit against": [0, 65535], "your words deceit against my": [0, 65535], "words deceit against my soules": [0, 65535], "deceit against my soules pure": [0, 65535], "against my soules pure truth": [0, 65535], "my soules pure truth why": [0, 65535], "soules pure truth why labour": [0, 65535], "pure truth why labour you": [0, 65535], "truth why labour you to": [0, 65535], "why labour you to make": [0, 65535], "labour you to make it": [0, 65535], "you to make it wander": [0, 65535], "to make it wander in": [0, 65535], "make it wander in an": [0, 65535], "it wander in an vnknowne": [0, 65535], "wander in an vnknowne field": [0, 65535], "in an vnknowne field are": [0, 65535], "an vnknowne field are you": [0, 65535], "vnknowne field are you a": [0, 65535], "field are you a god": [0, 65535], "are you a god would": [0, 65535], "you a god would you": [0, 65535], "a god would you create": [0, 65535], "god would you create me": [0, 65535], "would you create me new": [0, 65535], "you create me new transforme": [0, 65535], "create me new transforme me": [0, 65535], "me new transforme me then": [0, 65535], "new transforme me then and": [0, 65535], "transforme me then and to": [0, 65535], "me then and to your": [0, 65535], "then and to your powre": [0, 65535], "and to your powre ile": [0, 65535], "to your powre ile yeeld": [0, 65535], "your powre ile yeeld but": [0, 65535], "powre ile yeeld but if": [0, 65535], "ile yeeld but if that": [0, 65535], "yeeld but if that i": [0, 65535], "but if that i am": [0, 65535], "if that i am i": [0, 65535], "that i am i then": [0, 65535], "i am i then well": [0, 65535], "am i then well i": [0, 65535], "i then well i know": [0, 65535], "then well i know your": [0, 65535], "well i know your weeping": [0, 65535], "i know your weeping sister": [0, 65535], "know your weeping sister is": [0, 65535], "your weeping sister is no": [0, 65535], "weeping sister is no wife": [0, 65535], "sister is no wife of": [0, 65535], "is no wife of mine": [0, 65535], "no wife of mine nor": [0, 65535], "wife of mine nor to": [0, 65535], "of mine nor to her": [0, 65535], "mine nor to her bed": [0, 65535], "nor to her bed no": [0, 65535], "to her bed no homage": [0, 65535], "her bed no homage doe": [0, 65535], "bed no homage doe i": [0, 65535], "no homage doe i owe": [0, 65535], "homage doe i owe farre": [0, 65535], "doe i owe farre more": [0, 65535], "i owe farre more farre": [0, 65535], "owe farre more farre more": [0, 65535], "farre more farre more to": [0, 65535], "more farre more to you": [0, 65535], "farre more to you doe": [0, 65535], "more to you doe i": [0, 65535], "to you doe i decline": [0, 65535], "you doe i decline oh": [0, 65535], "doe i decline oh traine": [0, 65535], "i decline oh traine me": [0, 65535], "decline oh traine me not": [0, 65535], "oh traine me not sweet": [0, 65535], "traine me not sweet mermaide": [0, 65535], "me not sweet mermaide with": [0, 65535], "not sweet mermaide with thy": [0, 65535], "sweet mermaide with thy note": [0, 65535], "mermaide with thy note to": [0, 65535], "with thy note to drowne": [0, 65535], "thy note to drowne me": [0, 65535], "note to drowne me in": [0, 65535], "to drowne me in thy": [0, 65535], "drowne me in thy sister": [0, 65535], "me in thy sister floud": [0, 65535], "in thy sister floud of": [0, 65535], "thy sister floud of teares": [0, 65535], "sister floud of teares sing": [0, 65535], "floud of teares sing siren": [0, 65535], "of teares sing siren for": [0, 65535], "teares sing siren for thy": [0, 65535], "sing siren for thy selfe": [0, 65535], "siren for thy selfe and": [0, 65535], "for thy selfe and i": [0, 65535], "thy selfe and i will": [0, 65535], "selfe and i will dote": [0, 65535], "and i will dote spread": [0, 65535], "i will dote spread ore": [0, 65535], "will dote spread ore the": [0, 65535], "dote spread ore the siluer": [0, 65535], "spread ore the siluer waues": [0, 65535], "ore the siluer waues thy": [0, 65535], "the siluer waues thy golden": [0, 65535], "siluer waues thy golden haires": [0, 65535], "waues thy golden haires and": [0, 65535], "thy golden haires and as": [0, 65535], "golden haires and as a": [0, 65535], "haires and as a bud": [0, 65535], "and as a bud ile": [0, 65535], "as a bud ile take": [0, 65535], "a bud ile take thee": [0, 65535], "bud ile take thee and": [0, 65535], "ile take thee and there": [0, 65535], "take thee and there lie": [0, 65535], "thee and there lie and": [0, 65535], "and there lie and in": [0, 65535], "there lie and in that": [0, 65535], "lie and in that glorious": [0, 65535], "and in that glorious supposition": [0, 65535], "in that glorious supposition thinke": [0, 65535], "that glorious supposition thinke he": [0, 65535], "glorious supposition thinke he gaines": [0, 65535], "supposition thinke he gaines by": [0, 65535], "thinke he gaines by death": [0, 65535], "he gaines by death that": [0, 65535], "gaines by death that hath": [0, 65535], "by death that hath such": [0, 65535], "death that hath such meanes": [0, 65535], "that hath such meanes to": [0, 65535], "hath such meanes to die": [0, 65535], "such meanes to die let": [0, 65535], "meanes to die let loue": [0, 65535], "to die let loue being": [0, 65535], "die let loue being light": [0, 65535], "let loue being light be": [0, 65535], "loue being light be drowned": [0, 65535], "being light be drowned if": [0, 65535], "light be drowned if she": [0, 65535], "be drowned if she sinke": [0, 65535], "drowned if she sinke luc": [0, 65535], "if she sinke luc what": [0, 65535], "she sinke luc what are": [0, 65535], "sinke luc what are you": [0, 65535], "luc what are you mad": [0, 65535], "what are you mad that": [0, 65535], "are you mad that you": [0, 65535], "you mad that you doe": [0, 65535], "mad that you doe reason": [0, 65535], "that you doe reason so": [0, 65535], "you doe reason so ant": [0, 65535], "doe reason so ant not": [0, 65535], "reason so ant not mad": [0, 65535], "so ant not mad but": [0, 65535], "ant not mad but mated": [0, 65535], "not mad but mated how": [0, 65535], "mad but mated how i": [0, 65535], "but mated how i doe": [0, 65535], "mated how i doe not": [0, 65535], "how i doe not know": [0, 65535], "i doe not know luc": [0, 65535], "doe not know luc it": [0, 65535], "not know luc it is": [0, 65535], "know luc it is a": [0, 65535], "luc it is a fault": [0, 65535], "it is a fault that": [0, 65535], "is a fault that springeth": [0, 65535], "a fault that springeth from": [0, 65535], "fault that springeth from your": [0, 65535], "that springeth from your eie": [0, 65535], "springeth from your eie ant": [0, 65535], "from your eie ant for": [0, 65535], "your eie ant for gazing": [0, 65535], "eie ant for gazing on": [0, 65535], "ant for gazing on your": [0, 65535], "for gazing on your beames": [0, 65535], "gazing on your beames faire": [0, 65535], "on your beames faire sun": [0, 65535], "your beames faire sun being": [0, 65535], "beames faire sun being by": [0, 65535], "faire sun being by luc": [0, 65535], "sun being by luc gaze": [0, 65535], "being by luc gaze when": [0, 65535], "by luc gaze when you": [0, 65535], "luc gaze when you should": [0, 65535], "gaze when you should and": [0, 65535], "when you should and that": [0, 65535], "you should and that will": [0, 65535], "should and that will cleere": [0, 65535], "and that will cleere your": [0, 65535], "that will cleere your sight": [0, 65535], "will cleere your sight ant": [0, 65535], "cleere your sight ant as": [0, 65535], "your sight ant as good": [0, 65535], "sight ant as good to": [0, 65535], "ant as good to winke": [0, 65535], "as good to winke sweet": [0, 65535], "good to winke sweet loue": [0, 65535], "to winke sweet loue as": [0, 65535], "winke sweet loue as looke": [0, 65535], "sweet loue as looke on": [0, 65535], "loue as looke on night": [0, 65535], "as looke on night luc": [0, 65535], "looke on night luc why": [0, 65535], "on night luc why call": [0, 65535], "night luc why call you": [0, 65535], "luc why call you me": [0, 65535], "why call you me loue": [0, 65535], "call you me loue call": [0, 65535], "you me loue call my": [0, 65535], "me loue call my sister": [0, 65535], "loue call my sister so": [0, 65535], "call my sister so ant": [0, 65535], "my sister so ant thy": [0, 65535], "sister so ant thy sisters": [0, 65535], "so ant thy sisters sister": [0, 65535], "ant thy sisters sister luc": [0, 65535], "thy sisters sister luc that's": [0, 65535], "sisters sister luc that's my": [0, 65535], "sister luc that's my sister": [0, 65535], "luc that's my sister ant": [0, 65535], "that's my sister ant no": [0, 65535], "my sister ant no it": [0, 65535], "sister ant no it is": [0, 65535], "ant no it is thy": [0, 65535], "no it is thy selfe": [0, 65535], "it is thy selfe mine": [0, 65535], "is thy selfe mine owne": [0, 65535], "thy selfe mine owne selfes": [0, 65535], "selfe mine owne selfes better": [0, 65535], "mine owne selfes better part": [0, 65535], "owne selfes better part mine": [0, 65535], "selfes better part mine eies": [0, 65535], "better part mine eies cleere": [0, 65535], "part mine eies cleere eie": [0, 65535], "mine eies cleere eie my": [0, 65535], "eies cleere eie my deere": [0, 65535], "cleere eie my deere hearts": [0, 65535], "eie my deere hearts deerer": [0, 65535], "my deere hearts deerer heart": [0, 65535], "deere hearts deerer heart my": [0, 65535], "hearts deerer heart my foode": [0, 65535], "deerer heart my foode my": [0, 65535], "heart my foode my fortune": [0, 65535], "my foode my fortune and": [0, 65535], "foode my fortune and my": [0, 65535], "my fortune and my sweet": [0, 65535], "fortune and my sweet hopes": [0, 65535], "and my sweet hopes aime": [0, 65535], "my sweet hopes aime my": [0, 65535], "sweet hopes aime my sole": [0, 65535], "hopes aime my sole earths": [0, 65535], "aime my sole earths heauen": [0, 65535], "my sole earths heauen and": [0, 65535], "sole earths heauen and my": [0, 65535], "earths heauen and my heauens": [0, 65535], "heauen and my heauens claime": [0, 65535], "and my heauens claime luc": [0, 65535], "my heauens claime luc all": [0, 65535], "heauens claime luc all this": [0, 65535], "claime luc all this my": [0, 65535], "luc all this my sister": [0, 65535], "all this my sister is": [0, 65535], "this my sister is or": [0, 65535], "my sister is or else": [0, 65535], "sister is or else should": [0, 65535], "is or else should be": [0, 65535], "or else should be ant": [0, 65535], "else should be ant call": [0, 65535], "should be ant call thy": [0, 65535], "be ant call thy selfe": [0, 65535], "ant call thy selfe sister": [0, 65535], "call thy selfe sister sweet": [0, 65535], "thy selfe sister sweet for": [0, 65535], "selfe sister sweet for i": [0, 65535], "sister sweet for i am": [0, 65535], "sweet for i am thee": [0, 65535], "for i am thee thee": [0, 65535], "i am thee thee will": [0, 65535], "am thee thee will i": [0, 65535], "thee thee will i loue": [0, 65535], "thee will i loue and": [0, 65535], "will i loue and with": [0, 65535], "i loue and with thee": [0, 65535], "loue and with thee lead": [0, 65535], "and with thee lead my": [0, 65535], "with thee lead my life": [0, 65535], "thee lead my life thou": [0, 65535], "lead my life thou hast": [0, 65535], "my life thou hast no": [0, 65535], "life thou hast no husband": [0, 65535], "thou hast no husband yet": [0, 65535], "hast no husband yet nor": [0, 65535], "no husband yet nor i": [0, 65535], "husband yet nor i no": [0, 65535], "yet nor i no wife": [0, 65535], "nor i no wife giue": [0, 65535], "i no wife giue me": [0, 65535], "no wife giue me thy": [0, 65535], "wife giue me thy hand": [0, 65535], "giue me thy hand luc": [0, 65535], "me thy hand luc oh": [0, 65535], "thy hand luc oh soft": [0, 65535], "hand luc oh soft sir": [0, 65535], "luc oh soft sir hold": [0, 65535], "oh soft sir hold you": [0, 65535], "soft sir hold you still": [0, 65535], "sir hold you still ile": [0, 65535], "hold you still ile fetch": [0, 65535], "you still ile fetch my": [0, 65535], "still ile fetch my sister": [0, 65535], "ile fetch my sister to": [0, 65535], "fetch my sister to get": [0, 65535], "my sister to get her": [0, 65535], "sister to get her good": [0, 65535], "to get her good will": [0, 65535], "get her good will exit": [0, 65535], "her good will exit enter": [0, 65535], "good will exit enter dromio": [0, 65535], "will exit enter dromio siracusia": [0, 65535], "exit enter dromio siracusia ant": [0, 65535], "enter dromio siracusia ant why": [0, 65535], "dromio siracusia ant why how": [0, 65535], "siracusia ant why how now": [0, 65535], "ant why how now dromio": [0, 65535], "why how now dromio where": [0, 65535], "how now dromio where run'st": [0, 65535], "now dromio where run'st thou": [0, 65535], "dromio where run'st thou so": [0, 65535], "where run'st thou so fast": [0, 65535], "run'st thou so fast s": [0, 65535], "thou so fast s dro": [0, 65535], "so fast s dro doe": [0, 65535], "fast s dro doe you": [0, 65535], "s dro doe you know": [0, 65535], "dro doe you know me": [0, 65535], "doe you know me sir": [0, 65535], "you know me sir am": [0, 65535], "know me sir am i": [0, 65535], "me sir am i dromio": [0, 65535], "sir am i dromio am": [0, 65535], "am i dromio am i": [0, 65535], "i dromio am i your": [0, 65535], "dromio am i your man": [0, 65535], "am i your man am": [0, 65535], "i your man am i": [0, 65535], "your man am i my": [0, 65535], "man am i my selfe": [0, 65535], "am i my selfe ant": [0, 65535], "i my selfe ant thou": [0, 65535], "my selfe ant thou art": [0, 65535], "selfe ant thou art dromio": [0, 65535], "ant thou art dromio thou": [0, 65535], "thou art dromio thou art": [0, 65535], "art dromio thou art my": [0, 65535], "dromio thou art my man": [0, 65535], "thou art my man thou": [0, 65535], "art my man thou art": [0, 65535], "my man thou art thy": [0, 65535], "man thou art thy selfe": [0, 65535], "thou art thy selfe dro": [0, 65535], "art thy selfe dro i": [0, 65535], "thy selfe dro i am": [0, 65535], "selfe dro i am an": [0, 65535], "dro i am an asse": [0, 65535], "i am an asse i": [0, 65535], "am an asse i am": [0, 65535], "an asse i am a": [0, 65535], "asse i am a womans": [0, 65535], "i am a womans man": [0, 65535], "am a womans man and": [0, 65535], "a womans man and besides": [0, 65535], "womans man and besides my": [0, 65535], "man and besides my selfe": [0, 65535], "and besides my selfe ant": [0, 65535], "besides my selfe ant what": [0, 65535], "my selfe ant what womans": [0, 65535], "selfe ant what womans man": [0, 65535], "ant what womans man and": [0, 65535], "what womans man and how": [0, 65535], "womans man and how besides": [0, 65535], "man and how besides thy": [0, 65535], "and how besides thy selfe": [0, 65535], "how besides thy selfe dro": [0, 65535], "besides thy selfe dro marrie": [0, 65535], "thy selfe dro marrie sir": [0, 65535], "selfe dro marrie sir besides": [0, 65535], "dro marrie sir besides my": [0, 65535], "marrie sir besides my selfe": [0, 65535], "sir besides my selfe i": [0, 65535], "besides my selfe i am": [0, 65535], "my selfe i am due": [0, 65535], "selfe i am due to": [0, 65535], "i am due to a": [0, 65535], "am due to a woman": [0, 65535], "due to a woman one": [0, 65535], "to a woman one that": [0, 65535], "a woman one that claimes": [0, 65535], "woman one that claimes me": [0, 65535], "one that claimes me one": [0, 65535], "that claimes me one that": [0, 65535], "claimes me one that haunts": [0, 65535], "me one that haunts me": [0, 65535], "one that haunts me one": [0, 65535], "that haunts me one that": [0, 65535], "haunts me one that will": [0, 65535], "me one that will haue": [0, 65535], "one that will haue me": [0, 65535], "that will haue me anti": [0, 65535], "will haue me anti what": [0, 65535], "haue me anti what claime": [0, 65535], "me anti what claime laies": [0, 65535], "anti what claime laies she": [0, 65535], "what claime laies she to": [0, 65535], "claime laies she to thee": [0, 65535], "laies she to thee dro": [0, 65535], "she to thee dro marry": [0, 65535], "to thee dro marry sir": [0, 65535], "thee dro marry sir such": [0, 65535], "dro marry sir such claime": [0, 65535], "marry sir such claime as": [0, 65535], "sir such claime as you": [0, 65535], "such claime as you would": [0, 65535], "claime as you would lay": [0, 65535], "as you would lay to": [0, 65535], "you would lay to your": [0, 65535], "would lay to your horse": [0, 65535], "lay to your horse and": [0, 65535], "to your horse and she": [0, 65535], "your horse and she would": [0, 65535], "horse and she would haue": [0, 65535], "and she would haue me": [0, 65535], "she would haue me as": [0, 65535], "would haue me as a": [0, 65535], "haue me as a beast": [0, 65535], "me as a beast not": [0, 65535], "as a beast not that": [0, 65535], "a beast not that i": [0, 65535], "beast not that i beeing": [0, 65535], "not that i beeing a": [0, 65535], "that i beeing a beast": [0, 65535], "i beeing a beast she": [0, 65535], "beeing a beast she would": [0, 65535], "a beast she would haue": [0, 65535], "beast she would haue me": [0, 65535], "she would haue me but": [0, 65535], "would haue me but that": [0, 65535], "haue me but that she": [0, 65535], "me but that she being": [0, 65535], "but that she being a": [0, 65535], "that she being a verie": [0, 65535], "she being a verie beastly": [0, 65535], "being a verie beastly creature": [0, 65535], "a verie beastly creature layes": [0, 65535], "verie beastly creature layes claime": [0, 65535], "beastly creature layes claime to": [0, 65535], "creature layes claime to me": [0, 65535], "layes claime to me anti": [0, 65535], "claime to me anti what": [0, 65535], "to me anti what is": [0, 65535], "me anti what is she": [0, 65535], "anti what is she dro": [0, 65535], "what is she dro a": [0, 65535], "is she dro a very": [0, 65535], "she dro a very reuerent": [0, 65535], "dro a very reuerent body": [0, 65535], "a very reuerent body i": [0, 65535], "very reuerent body i such": [0, 65535], "reuerent body i such a": [0, 65535], "body i such a one": [0, 65535], "i such a one as": [0, 65535], "such a one as a": [0, 65535], "a one as a man": [0, 65535], "one as a man may": [0, 65535], "as a man may not": [0, 65535], "a man may not speake": [0, 65535], "man may not speake of": [0, 65535], "may not speake of without": [0, 65535], "not speake of without he": [0, 65535], "speake of without he say": [0, 65535], "of without he say sir": [0, 65535], "without he say sir reuerence": [0, 65535], "he say sir reuerence i": [0, 65535], "say sir reuerence i haue": [0, 65535], "sir reuerence i haue but": [0, 65535], "reuerence i haue but leane": [0, 65535], "i haue but leane lucke": [0, 65535], "haue but leane lucke in": [0, 65535], "but leane lucke in the": [0, 65535], "leane lucke in the match": [0, 65535], "lucke in the match and": [0, 65535], "in the match and yet": [0, 65535], "the match and yet is": [0, 65535], "match and yet is she": [0, 65535], "and yet is she a": [0, 65535], "yet is she a wondrous": [0, 65535], "is she a wondrous fat": [0, 65535], "she a wondrous fat marriage": [0, 65535], "a wondrous fat marriage anti": [0, 65535], "wondrous fat marriage anti how": [0, 65535], "fat marriage anti how dost": [0, 65535], "marriage anti how dost thou": [0, 65535], "anti how dost thou meane": [0, 65535], "how dost thou meane a": [0, 65535], "dost thou meane a fat": [0, 65535], "thou meane a fat marriage": [0, 65535], "meane a fat marriage dro": [0, 65535], "a fat marriage dro marry": [0, 65535], "fat marriage dro marry sir": [0, 65535], "marriage dro marry sir she's": [0, 65535], "dro marry sir she's the": [0, 65535], "marry sir she's the kitchin": [0, 65535], "sir she's the kitchin wench": [0, 65535], "she's the kitchin wench al": [0, 65535], "the kitchin wench al grease": [0, 65535], "kitchin wench al grease and": [0, 65535], "wench al grease and i": [0, 65535], "al grease and i know": [0, 65535], "grease and i know not": [0, 65535], "and i know not what": [0, 65535], "i know not what vse": [0, 65535], "know not what vse to": [0, 65535], "not what vse to put": [0, 65535], "what vse to put her": [0, 65535], "vse to put her too": [0, 65535], "to put her too but": [0, 65535], "put her too but to": [0, 65535], "her too but to make": [0, 65535], "too but to make a": [0, 65535], "but to make a lampe": [0, 65535], "to make a lampe of": [0, 65535], "make a lampe of her": [0, 65535], "a lampe of her and": [0, 65535], "lampe of her and run": [0, 65535], "of her and run from": [0, 65535], "her and run from her": [0, 65535], "and run from her by": [0, 65535], "run from her by her": [0, 65535], "from her by her owne": [0, 65535], "her by her owne light": [0, 65535], "by her owne light i": [0, 65535], "her owne light i warrant": [0, 65535], "owne light i warrant her": [0, 65535], "light i warrant her ragges": [0, 65535], "i warrant her ragges and": [0, 65535], "warrant her ragges and the": [0, 65535], "her ragges and the tallow": [0, 65535], "ragges and the tallow in": [0, 65535], "and the tallow in them": [0, 65535], "the tallow in them will": [0, 65535], "tallow in them will burne": [0, 65535], "in them will burne a": [0, 65535], "them will burne a poland": [0, 65535], "will burne a poland winter": [0, 65535], "burne a poland winter if": [0, 65535], "a poland winter if she": [0, 65535], "poland winter if she liues": [0, 65535], "winter if she liues till": [0, 65535], "if she liues till doomesday": [0, 65535], "she liues till doomesday she'l": [0, 65535], "liues till doomesday she'l burne": [0, 65535], "till doomesday she'l burne a": [0, 65535], "doomesday she'l burne a weeke": [0, 65535], "she'l burne a weeke longer": [0, 65535], "burne a weeke longer then": [0, 65535], "a weeke longer then the": [0, 65535], "weeke longer then the whole": [0, 65535], "longer then the whole world": [0, 65535], "then the whole world anti": [0, 65535], "the whole world anti what": [0, 65535], "whole world anti what complexion": [0, 65535], "world anti what complexion is": [0, 65535], "anti what complexion is she": [0, 65535], "what complexion is she of": [0, 65535], "complexion is she of dro": [0, 65535], "is she of dro swart": [0, 65535], "she of dro swart like": [0, 65535], "of dro swart like my": [0, 65535], "dro swart like my shoo": [0, 65535], "swart like my shoo but": [0, 65535], "like my shoo but her": [0, 65535], "my shoo but her face": [0, 65535], "shoo but her face nothing": [0, 65535], "but her face nothing like": [0, 65535], "her face nothing like so": [0, 65535], "face nothing like so cleane": [0, 65535], "nothing like so cleane kept": [0, 65535], "like so cleane kept for": [0, 65535], "so cleane kept for why": [0, 65535], "cleane kept for why she": [0, 65535], "kept for why she sweats": [0, 65535], "for why she sweats a": [0, 65535], "why she sweats a man": [0, 65535], "she sweats a man may": [0, 65535], "sweats a man may goe": [0, 65535], "a man may goe o": [0, 65535], "man may goe o uer": [0, 65535], "may goe o uer shooes": [0, 65535], "goe o uer shooes in": [0, 65535], "o uer shooes in the": [0, 65535], "uer shooes in the grime": [0, 65535], "shooes in the grime of": [0, 65535], "in the grime of it": [0, 65535], "the grime of it anti": [0, 65535], "grime of it anti that's": [0, 65535], "of it anti that's a": [0, 65535], "it anti that's a fault": [0, 65535], "anti that's a fault that": [0, 65535], "that's a fault that water": [0, 65535], "a fault that water will": [0, 65535], "fault that water will mend": [0, 65535], "that water will mend dro": [0, 65535], "water will mend dro no": [0, 65535], "will mend dro no sir": [0, 65535], "mend dro no sir 'tis": [0, 65535], "dro no sir 'tis in": [0, 65535], "no sir 'tis in graine": [0, 65535], "sir 'tis in graine noahs": [0, 65535], "'tis in graine noahs flood": [0, 65535], "in graine noahs flood could": [0, 65535], "graine noahs flood could not": [0, 65535], "noahs flood could not do": [0, 65535], "flood could not do it": [0, 65535], "could not do it anti": [0, 65535], "not do it anti what's": [0, 65535], "do it anti what's her": [0, 65535], "it anti what's her name": [0, 65535], "anti what's her name dro": [0, 65535], "what's her name dro nell": [0, 65535], "her name dro nell sir": [0, 65535], "name dro nell sir but": [0, 65535], "dro nell sir but her": [0, 65535], "nell sir but her name": [0, 65535], "sir but her name is": [0, 65535], "but her name is three": [0, 65535], "her name is three quarters": [0, 65535], "name is three quarters that's": [0, 65535], "is three quarters that's an": [0, 65535], "three quarters that's an ell": [0, 65535], "quarters that's an ell and": [0, 65535], "that's an ell and three": [0, 65535], "an ell and three quarters": [0, 65535], "ell and three quarters will": [0, 65535], "and three quarters will not": [0, 65535], "three quarters will not measure": [0, 65535], "quarters will not measure her": [0, 65535], "will not measure her from": [0, 65535], "not measure her from hip": [0, 65535], "measure her from hip to": [0, 65535], "her from hip to hip": [0, 65535], "from hip to hip anti": [0, 65535], "hip to hip anti then": [0, 65535], "to hip anti then she": [0, 65535], "hip anti then she beares": [0, 65535], "anti then she beares some": [0, 65535], "then she beares some bredth": [0, 65535], "she beares some bredth dro": [0, 65535], "beares some bredth dro no": [0, 65535], "some bredth dro no longer": [0, 65535], "bredth dro no longer from": [0, 65535], "dro no longer from head": [0, 65535], "no longer from head to": [0, 65535], "longer from head to foot": [0, 65535], "from head to foot then": [0, 65535], "head to foot then from": [0, 65535], "to foot then from hippe": [0, 65535], "foot then from hippe to": [0, 65535], "then from hippe to hippe": [0, 65535], "from hippe to hippe she": [0, 65535], "hippe to hippe she is": [0, 65535], "to hippe she is sphericall": [0, 65535], "hippe she is sphericall like": [0, 65535], "she is sphericall like a": [0, 65535], "is sphericall like a globe": [0, 65535], "sphericall like a globe i": [0, 65535], "like a globe i could": [0, 65535], "a globe i could find": [0, 65535], "globe i could find out": [0, 65535], "i could find out countries": [0, 65535], "could find out countries in": [0, 65535], "find out countries in her": [0, 65535], "out countries in her anti": [0, 65535], "countries in her anti in": [0, 65535], "in her anti in what": [0, 65535], "her anti in what part": [0, 65535], "anti in what part of": [0, 65535], "in what part of her": [0, 65535], "what part of her body": [0, 65535], "part of her body stands": [0, 65535], "of her body stands ireland": [0, 65535], "her body stands ireland dro": [0, 65535], "body stands ireland dro marry": [0, 65535], "stands ireland dro marry sir": [0, 65535], "ireland dro marry sir in": [0, 65535], "dro marry sir in her": [0, 65535], "marry sir in her buttockes": [0, 65535], "sir in her buttockes i": [0, 65535], "in her buttockes i found": [0, 65535], "her buttockes i found it": [0, 65535], "buttockes i found it out": [0, 65535], "i found it out by": [0, 65535], "found it out by the": [0, 65535], "it out by the bogges": [0, 65535], "out by the bogges ant": [0, 65535], "by the bogges ant where": [0, 65535], "the bogges ant where scotland": [0, 65535], "bogges ant where scotland dro": [0, 65535], "ant where scotland dro i": [0, 65535], "where scotland dro i found": [0, 65535], "scotland dro i found it": [0, 65535], "dro i found it by": [0, 65535], "i found it by the": [0, 65535], "found it by the barrennesse": [0, 65535], "it by the barrennesse hard": [0, 65535], "by the barrennesse hard in": [0, 65535], "the barrennesse hard in the": [0, 65535], "barrennesse hard in the palme": [0, 65535], "hard in the palme of": [0, 65535], "in the palme of the": [0, 65535], "the palme of the hand": [0, 65535], "palme of the hand ant": [0, 65535], "of the hand ant where": [0, 65535], "the hand ant where france": [0, 65535], "hand ant where france dro": [0, 65535], "ant where france dro in": [0, 65535], "where france dro in her": [0, 65535], "france dro in her forhead": [0, 65535], "dro in her forhead arm'd": [0, 65535], "in her forhead arm'd and": [0, 65535], "her forhead arm'd and reuerted": [0, 65535], "forhead arm'd and reuerted making": [0, 65535], "arm'd and reuerted making warre": [0, 65535], "and reuerted making warre against": [0, 65535], "reuerted making warre against her": [0, 65535], "making warre against her heire": [0, 65535], "warre against her heire ant": [0, 65535], "against her heire ant where": [0, 65535], "her heire ant where england": [0, 65535], "heire ant where england dro": [0, 65535], "ant where england dro i": [0, 65535], "where england dro i look'd": [0, 65535], "england dro i look'd for": [0, 65535], "dro i look'd for the": [0, 65535], "i look'd for the chalkle": [0, 65535], "look'd for the chalkle cliffes": [0, 65535], "for the chalkle cliffes but": [0, 65535], "the chalkle cliffes but i": [0, 65535], "chalkle cliffes but i could": [0, 65535], "cliffes but i could find": [0, 65535], "but i could find no": [0, 65535], "i could find no whitenesse": [0, 65535], "could find no whitenesse in": [0, 65535], "find no whitenesse in them": [0, 65535], "no whitenesse in them but": [0, 65535], "whitenesse in them but i": [0, 65535], "in them but i guesse": [0, 65535], "them but i guesse it": [0, 65535], "but i guesse it stood": [0, 65535], "i guesse it stood in": [0, 65535], "guesse it stood in her": [0, 65535], "it stood in her chin": [0, 65535], "stood in her chin by": [0, 65535], "in her chin by the": [0, 65535], "her chin by the salt": [0, 65535], "chin by the salt rheume": [0, 65535], "by the salt rheume that": [0, 65535], "the salt rheume that ranne": [0, 65535], "salt rheume that ranne betweene": [0, 65535], "rheume that ranne betweene france": [0, 65535], "that ranne betweene france and": [0, 65535], "ranne betweene france and it": [0, 65535], "betweene france and it ant": [0, 65535], "france and it ant where": [0, 65535], "and it ant where spaine": [0, 65535], "it ant where spaine dro": [0, 65535], "ant where spaine dro faith": [0, 65535], "where spaine dro faith i": [0, 65535], "spaine dro faith i saw": [0, 65535], "dro faith i saw it": [0, 65535], "faith i saw it not": [0, 65535], "i saw it not but": [0, 65535], "saw it not but i": [0, 65535], "it not but i felt": [0, 65535], "not but i felt it": [0, 65535], "but i felt it hot": [0, 65535], "i felt it hot in": [0, 65535], "felt it hot in her": [0, 65535], "it hot in her breth": [0, 65535], "hot in her breth ant": [0, 65535], "in her breth ant where": [0, 65535], "her breth ant where america": [0, 65535], "breth ant where america the": [0, 65535], "ant where america the indies": [0, 65535], "where america the indies dro": [0, 65535], "america the indies dro oh": [0, 65535], "the indies dro oh sir": [0, 65535], "indies dro oh sir vpon": [0, 65535], "dro oh sir vpon her": [0, 65535], "oh sir vpon her nose": [0, 65535], "sir vpon her nose all": [0, 65535], "vpon her nose all ore": [0, 65535], "her nose all ore embellished": [0, 65535], "nose all ore embellished with": [0, 65535], "all ore embellished with rubies": [0, 65535], "ore embellished with rubies carbuncles": [0, 65535], "embellished with rubies carbuncles saphires": [0, 65535], "with rubies carbuncles saphires declining": [0, 65535], "rubies carbuncles saphires declining their": [0, 65535], "carbuncles saphires declining their rich": [0, 65535], "saphires declining their rich aspect": [0, 65535], "declining their rich aspect to": [0, 65535], "their rich aspect to the": [0, 65535], "rich aspect to the hot": [0, 65535], "aspect to the hot breath": [0, 65535], "to the hot breath of": [0, 65535], "the hot breath of spaine": [0, 65535], "hot breath of spaine who": [0, 65535], "breath of spaine who sent": [0, 65535], "of spaine who sent whole": [0, 65535], "spaine who sent whole armadoes": [0, 65535], "who sent whole armadoes of": [0, 65535], "sent whole armadoes of carrects": [0, 65535], "whole armadoes of carrects to": [0, 65535], "armadoes of carrects to be": [0, 65535], "of carrects to be ballast": [0, 65535], "carrects to be ballast at": [0, 65535], "to be ballast at her": [0, 65535], "be ballast at her nose": [0, 65535], "ballast at her nose anti": [0, 65535], "at her nose anti where": [0, 65535], "her nose anti where stood": [0, 65535], "nose anti where stood belgia": [0, 65535], "anti where stood belgia the": [0, 65535], "where stood belgia the netherlands": [0, 65535], "stood belgia the netherlands dro": [0, 65535], "belgia the netherlands dro oh": [0, 65535], "the netherlands dro oh sir": [0, 65535], "netherlands dro oh sir i": [0, 65535], "dro oh sir i did": [0, 65535], "oh sir i did not": [0, 65535], "sir i did not looke": [0, 65535], "i did not looke so": [0, 65535], "did not looke so low": [0, 65535], "not looke so low to": [0, 65535], "looke so low to conclude": [0, 65535], "so low to conclude this": [0, 65535], "low to conclude this drudge": [0, 65535], "to conclude this drudge or": [0, 65535], "conclude this drudge or diuiner": [0, 65535], "this drudge or diuiner layd": [0, 65535], "drudge or diuiner layd claime": [0, 65535], "or diuiner layd claime to": [0, 65535], "diuiner layd claime to mee": [0, 65535], "layd claime to mee call'd": [0, 65535], "claime to mee call'd mee": [0, 65535], "to mee call'd mee dromio": [0, 65535], "mee call'd mee dromio swore": [0, 65535], "call'd mee dromio swore i": [0, 65535], "mee dromio swore i was": [0, 65535], "dromio swore i was assur'd": [0, 65535], "swore i was assur'd to": [0, 65535], "i was assur'd to her": [0, 65535], "was assur'd to her told": [0, 65535], "assur'd to her told me": [0, 65535], "to her told me what": [0, 65535], "her told me what priuie": [0, 65535], "told me what priuie markes": [0, 65535], "me what priuie markes i": [0, 65535], "what priuie markes i had": [0, 65535], "priuie markes i had about": [0, 65535], "markes i had about mee": [0, 65535], "i had about mee as": [0, 65535], "had about mee as the": [0, 65535], "about mee as the marke": [0, 65535], "mee as the marke of": [0, 65535], "as the marke of my": [0, 65535], "the marke of my shoulder": [0, 65535], "marke of my shoulder the": [0, 65535], "of my shoulder the mole": [0, 65535], "my shoulder the mole in": [0, 65535], "shoulder the mole in my": [0, 65535], "the mole in my necke": [0, 65535], "mole in my necke the": [0, 65535], "in my necke the great": [0, 65535], "my necke the great wart": [0, 65535], "necke the great wart on": [0, 65535], "the great wart on my": [0, 65535], "great wart on my left": [0, 65535], "wart on my left arme": [0, 65535], "on my left arme that": [0, 65535], "my left arme that i": [0, 65535], "left arme that i amaz'd": [0, 65535], "arme that i amaz'd ranne": [0, 65535], "that i amaz'd ranne from": [0, 65535], "i amaz'd ranne from her": [0, 65535], "amaz'd ranne from her as": [0, 65535], "ranne from her as a": [0, 65535], "from her as a witch": [0, 65535], "her as a witch and": [0, 65535], "as a witch and i": [0, 65535], "a witch and i thinke": [0, 65535], "witch and i thinke if": [0, 65535], "and i thinke if my": [0, 65535], "i thinke if my brest": [0, 65535], "thinke if my brest had": [0, 65535], "if my brest had not": [0, 65535], "my brest had not beene": [0, 65535], "brest had not beene made": [0, 65535], "had not beene made of": [0, 65535], "not beene made of faith": [0, 65535], "beene made of faith and": [0, 65535], "made of faith and my": [0, 65535], "of faith and my heart": [0, 65535], "faith and my heart of": [0, 65535], "and my heart of steele": [0, 65535], "my heart of steele she": [0, 65535], "heart of steele she had": [0, 65535], "of steele she had transform'd": [0, 65535], "steele she had transform'd me": [0, 65535], "she had transform'd me to": [0, 65535], "had transform'd me to a": [0, 65535], "transform'd me to a curtull": [0, 65535], "me to a curtull dog": [0, 65535], "to a curtull dog made": [0, 65535], "a curtull dog made me": [0, 65535], "curtull dog made me turne": [0, 65535], "dog made me turne i'th": [0, 65535], "made me turne i'th wheele": [0, 65535], "me turne i'th wheele anti": [0, 65535], "turne i'th wheele anti go": [0, 65535], "i'th wheele anti go hie": [0, 65535], "wheele anti go hie thee": [0, 65535], "anti go hie thee presently": [0, 65535], "go hie thee presently post": [0, 65535], "hie thee presently post to": [0, 65535], "thee presently post to the": [0, 65535], "presently post to the rode": [0, 65535], "post to the rode and": [0, 65535], "to the rode and if": [0, 65535], "the rode and if the": [0, 65535], "rode and if the winde": [0, 65535], "and if the winde blow": [0, 65535], "if the winde blow any": [0, 65535], "the winde blow any way": [0, 65535], "winde blow any way from": [0, 65535], "blow any way from shore": [0, 65535], "any way from shore i": [0, 65535], "way from shore i will": [0, 65535], "from shore i will not": [0, 65535], "shore i will not harbour": [0, 65535], "i will not harbour in": [0, 65535], "will not harbour in this": [0, 65535], "not harbour in this towne": [0, 65535], "harbour in this towne to": [0, 65535], "in this towne to night": [0, 65535], "this towne to night if": [0, 65535], "towne to night if any": [0, 65535], "to night if any barke": [0, 65535], "night if any barke put": [0, 65535], "if any barke put forth": [0, 65535], "any barke put forth come": [0, 65535], "barke put forth come to": [0, 65535], "put forth come to the": [0, 65535], "forth come to the mart": [0, 65535], "come to the mart where": [0, 65535], "to the mart where i": [0, 65535], "the mart where i will": [0, 65535], "mart where i will walke": [0, 65535], "where i will walke till": [0, 65535], "i will walke till thou": [0, 65535], "will walke till thou returne": [0, 65535], "walke till thou returne to": [0, 65535], "till thou returne to me": [0, 65535], "thou returne to me if": [0, 65535], "returne to me if euerie": [0, 65535], "to me if euerie one": [0, 65535], "me if euerie one knowes": [0, 65535], "if euerie one knowes vs": [0, 65535], "euerie one knowes vs and": [0, 65535], "one knowes vs and we": [0, 65535], "knowes vs and we know": [0, 65535], "vs and we know none": [0, 65535], "and we know none 'tis": [0, 65535], "we know none 'tis time": [0, 65535], "know none 'tis time i": [0, 65535], "none 'tis time i thinke": [0, 65535], "'tis time i thinke to": [0, 65535], "time i thinke to trudge": [0, 65535], "i thinke to trudge packe": [0, 65535], "thinke to trudge packe and": [0, 65535], "to trudge packe and be": [0, 65535], "trudge packe and be gone": [0, 65535], "packe and be gone dro": [0, 65535], "and be gone dro as": [0, 65535], "be gone dro as from": [0, 65535], "gone dro as from a": [0, 65535], "dro as from a beare": [0, 65535], "as from a beare a": [0, 65535], "from a beare a man": [0, 65535], "a beare a man would": [0, 65535], "beare a man would run": [0, 65535], "a man would run for": [0, 65535], "man would run for life": [0, 65535], "would run for life so": [0, 65535], "run for life so flie": [0, 65535], "for life so flie i": [0, 65535], "life so flie i from": [0, 65535], "so flie i from her": [0, 65535], "flie i from her that": [0, 65535], "i from her that would": [0, 65535], "from her that would be": [0, 65535], "her that would be my": [0, 65535], "that would be my wife": [0, 65535], "would be my wife exit": [0, 65535], "be my wife exit anti": [0, 65535], "my wife exit anti there's": [0, 65535], "wife exit anti there's none": [0, 65535], "exit anti there's none but": [0, 65535], "anti there's none but witches": [0, 65535], "there's none but witches do": [0, 65535], "none but witches do inhabite": [0, 65535], "but witches do inhabite heere": [0, 65535], "witches do inhabite heere and": [0, 65535], "do inhabite heere and therefore": [0, 65535], "inhabite heere and therefore 'tis": [0, 65535], "heere and therefore 'tis hie": [0, 65535], "and therefore 'tis hie time": [0, 65535], "therefore 'tis hie time that": [0, 65535], "'tis hie time that i": [0, 65535], "hie time that i were": [0, 65535], "time that i were hence": [0, 65535], "that i were hence she": [0, 65535], "i were hence she that": [0, 65535], "were hence she that doth": [0, 65535], "hence she that doth call": [0, 65535], "she that doth call me": [0, 65535], "that doth call me husband": [0, 65535], "doth call me husband euen": [0, 65535], "call me husband euen my": [0, 65535], "me husband euen my soule": [0, 65535], "husband euen my soule doth": [0, 65535], "euen my soule doth for": [0, 65535], "my soule doth for a": [0, 65535], "soule doth for a wife": [0, 65535], "doth for a wife abhorre": [0, 65535], "for a wife abhorre but": [0, 65535], "a wife abhorre but her": [0, 65535], "wife abhorre but her faire": [0, 65535], "abhorre but her faire sister": [0, 65535], "but her faire sister possest": [0, 65535], "her faire sister possest with": [0, 65535], "faire sister possest with such": [0, 65535], "sister possest with such a": [0, 65535], "possest with such a gentle": [0, 65535], "with such a gentle soueraigne": [0, 65535], "such a gentle soueraigne grace": [0, 65535], "a gentle soueraigne grace of": [0, 65535], "gentle soueraigne grace of such": [0, 65535], "soueraigne grace of such inchanting": [0, 65535], "grace of such inchanting presence": [0, 65535], "of such inchanting presence and": [0, 65535], "such inchanting presence and discourse": [0, 65535], "inchanting presence and discourse hath": [0, 65535], "presence and discourse hath almost": [0, 65535], "and discourse hath almost made": [0, 65535], "discourse hath almost made me": [0, 65535], "hath almost made me traitor": [0, 65535], "almost made me traitor to": [0, 65535], "made me traitor to my": [0, 65535], "me traitor to my selfe": [0, 65535], "traitor to my selfe but": [0, 65535], "to my selfe but least": [0, 65535], "my selfe but least my": [0, 65535], "selfe but least my selfe": [0, 65535], "but least my selfe be": [0, 65535], "least my selfe be guilty": [0, 65535], "my selfe be guilty to": [0, 65535], "selfe be guilty to selfe": [0, 65535], "be guilty to selfe wrong": [0, 65535], "guilty to selfe wrong ile": [0, 65535], "to selfe wrong ile stop": [0, 65535], "selfe wrong ile stop mine": [0, 65535], "wrong ile stop mine eares": [0, 65535], "ile stop mine eares against": [0, 65535], "stop mine eares against the": [0, 65535], "mine eares against the mermaids": [0, 65535], "eares against the mermaids song": [0, 65535], "against the mermaids song enter": [0, 65535], "the mermaids song enter angelo": [0, 65535], "mermaids song enter angelo with": [0, 65535], "song enter angelo with the": [0, 65535], "enter angelo with the chaine": [0, 65535], "angelo with the chaine ang": [0, 65535], "with the chaine ang mr": [0, 65535], "the chaine ang mr antipholus": [0, 65535], "chaine ang mr antipholus anti": [0, 65535], "ang mr antipholus anti i": [0, 65535], "mr antipholus anti i that's": [0, 65535], "antipholus anti i that's my": [0, 65535], "anti i that's my name": [0, 65535], "i that's my name ang": [0, 65535], "that's my name ang i": [0, 65535], "my name ang i know": [0, 65535], "name ang i know it": [0, 65535], "ang i know it well": [0, 65535], "i know it well sir": [0, 65535], "know it well sir loe": [0, 65535], "it well sir loe here's": [0, 65535], "well sir loe here's the": [0, 65535], "sir loe here's the chaine": [0, 65535], "loe here's the chaine i": [0, 65535], "here's the chaine i thought": [0, 65535], "the chaine i thought to": [0, 65535], "chaine i thought to haue": [0, 65535], "i thought to haue tane": [0, 65535], "thought to haue tane you": [0, 65535], "to haue tane you at": [0, 65535], "haue tane you at the": [0, 65535], "tane you at the porpentine": [0, 65535], "you at the porpentine the": [0, 65535], "at the porpentine the chaine": [0, 65535], "the porpentine the chaine vnfinish'd": [0, 65535], "porpentine the chaine vnfinish'd made": [0, 65535], "the chaine vnfinish'd made me": [0, 65535], "chaine vnfinish'd made me stay": [0, 65535], "vnfinish'd made me stay thus": [0, 65535], "made me stay thus long": [0, 65535], "me stay thus long anti": [0, 65535], "stay thus long anti what": [0, 65535], "thus long anti what is": [0, 65535], "long anti what is your": [0, 65535], "anti what is your will": [0, 65535], "what is your will that": [0, 65535], "is your will that i": [0, 65535], "your will that i shal": [0, 65535], "will that i shal do": [0, 65535], "that i shal do with": [0, 65535], "i shal do with this": [0, 65535], "shal do with this ang": [0, 65535], "do with this ang what": [0, 65535], "with this ang what please": [0, 65535], "this ang what please your": [0, 65535], "ang what please your selfe": [0, 65535], "what please your selfe sir": [0, 65535], "please your selfe sir i": [0, 65535], "your selfe sir i haue": [0, 65535], "selfe sir i haue made": [0, 65535], "sir i haue made it": [0, 65535], "i haue made it for": [0, 65535], "haue made it for you": [0, 65535], "made it for you anti": [0, 65535], "it for you anti made": [0, 65535], "for you anti made it": [0, 65535], "you anti made it for": [0, 65535], "anti made it for me": [0, 65535], "made it for me sir": [0, 65535], "it for me sir i": [0, 65535], "for me sir i bespoke": [0, 65535], "me sir i bespoke it": [0, 65535], "sir i bespoke it not": [0, 65535], "i bespoke it not ang": [0, 65535], "bespoke it not ang not": [0, 65535], "it not ang not once": [0, 65535], "not ang not once nor": [0, 65535], "ang not once nor twice": [0, 65535], "not once nor twice but": [0, 65535], "once nor twice but twentie": [0, 65535], "nor twice but twentie times": [0, 65535], "twice but twentie times you": [0, 65535], "but twentie times you haue": [0, 65535], "twentie times you haue go": [0, 65535], "times you haue go home": [0, 65535], "you haue go home with": [0, 65535], "haue go home with it": [0, 65535], "go home with it and": [0, 65535], "home with it and please": [0, 65535], "with it and please your": [0, 65535], "it and please your wife": [0, 65535], "and please your wife withall": [0, 65535], "please your wife withall and": [0, 65535], "your wife withall and soone": [0, 65535], "wife withall and soone at": [0, 65535], "withall and soone at supper": [0, 65535], "and soone at supper time": [0, 65535], "soone at supper time ile": [0, 65535], "at supper time ile visit": [0, 65535], "supper time ile visit you": [0, 65535], "time ile visit you and": [0, 65535], "ile visit you and then": [0, 65535], "visit you and then receiue": [0, 65535], "you and then receiue my": [0, 65535], "and then receiue my money": [0, 65535], "then receiue my money for": [0, 65535], "receiue my money for the": [0, 65535], "my money for the chaine": [0, 65535], "money for the chaine anti": [0, 65535], "for the chaine anti i": [0, 65535], "the chaine anti i pray": [0, 65535], "chaine anti i pray you": [0, 65535], "anti i pray you sir": [0, 65535], "i pray you sir receiue": [0, 65535], "pray you sir receiue the": [0, 65535], "you sir receiue the money": [0, 65535], "sir receiue the money now": [0, 65535], "receiue the money now for": [0, 65535], "the money now for feare": [0, 65535], "money now for feare you": [0, 65535], "now for feare you ne're": [0, 65535], "for feare you ne're see": [0, 65535], "feare you ne're see chaine": [0, 65535], "you ne're see chaine nor": [0, 65535], "ne're see chaine nor mony": [0, 65535], "see chaine nor mony more": [0, 65535], "chaine nor mony more ang": [0, 65535], "nor mony more ang you": [0, 65535], "mony more ang you are": [0, 65535], "more ang you are a": [0, 65535], "ang you are a merry": [0, 65535], "you are a merry man": [0, 65535], "are a merry man sir": [0, 65535], "a merry man sir fare": [0, 65535], "merry man sir fare you": [0, 65535], "man sir fare you well": [0, 65535], "sir fare you well exit": [0, 65535], "fare you well exit ant": [0, 65535], "you well exit ant what": [0, 65535], "well exit ant what i": [0, 65535], "exit ant what i should": [0, 65535], "ant what i should thinke": [0, 65535], "what i should thinke of": [0, 65535], "i should thinke of this": [0, 65535], "should thinke of this i": [0, 65535], "thinke of this i cannot": [0, 65535], "of this i cannot tell": [0, 65535], "this i cannot tell but": [0, 65535], "i cannot tell but this": [0, 65535], "cannot tell but this i": [0, 65535], "tell but this i thinke": [0, 65535], "but this i thinke there's": [0, 65535], "this i thinke there's no": [0, 65535], "i thinke there's no man": [0, 65535], "thinke there's no man is": [0, 65535], "there's no man is so": [0, 65535], "no man is so vaine": [0, 65535], "man is so vaine that": [0, 65535], "is so vaine that would": [0, 65535], "so vaine that would refuse": [0, 65535], "vaine that would refuse so": [0, 65535], "that would refuse so faire": [0, 65535], "would refuse so faire an": [0, 65535], "refuse so faire an offer'd": [0, 65535], "so faire an offer'd chaine": [0, 65535], "faire an offer'd chaine i": [0, 65535], "an offer'd chaine i see": [0, 65535], "offer'd chaine i see a": [0, 65535], "chaine i see a man": [0, 65535], "i see a man heere": [0, 65535], "see a man heere needs": [0, 65535], "a man heere needs not": [0, 65535], "man heere needs not liue": [0, 65535], "heere needs not liue by": [0, 65535], "needs not liue by shifts": [0, 65535], "not liue by shifts when": [0, 65535], "liue by shifts when in": [0, 65535], "by shifts when in the": [0, 65535], "shifts when in the streets": [0, 65535], "when in the streets he": [0, 65535], "in the streets he meetes": [0, 65535], "the streets he meetes such": [0, 65535], "streets he meetes such golden": [0, 65535], "he meetes such golden gifts": [0, 65535], "meetes such golden gifts ile": [0, 65535], "such golden gifts ile to": [0, 65535], "golden gifts ile to the": [0, 65535], "gifts ile to the mart": [0, 65535], "ile to the mart and": [0, 65535], "to the mart and there": [0, 65535], "the mart and there for": [0, 65535], "mart and there for dromio": [0, 65535], "and there for dromio stay": [0, 65535], "there for dromio stay if": [0, 65535], "for dromio stay if any": [0, 65535], "dromio stay if any ship": [0, 65535], "stay if any ship put": [0, 65535], "if any ship put out": [0, 65535], "any ship put out then": [0, 65535], "ship put out then straight": [0, 65535], "put out then straight away": [0, 65535], "out then straight away exit": [0, 65535], "actus tertius scena prima enter antipholus": [0, 65535], "tertius scena prima enter antipholus of": [0, 65535], "scena prima enter antipholus of ephesus": [0, 65535], "prima enter antipholus of ephesus his": [0, 65535], "enter antipholus of ephesus his man": [0, 65535], "antipholus of ephesus his man dromio": [0, 65535], "of ephesus his man dromio angelo": [0, 65535], "ephesus his man dromio angelo the": [0, 65535], "his man dromio angelo the goldsmith": [0, 65535], "man dromio angelo the goldsmith and": [0, 65535], "dromio angelo the goldsmith and balthaser": [0, 65535], "angelo the goldsmith and balthaser the": [0, 65535], "the goldsmith and balthaser the merchant": [0, 65535], "goldsmith and balthaser the merchant e": [0, 65535], "and balthaser the merchant e anti": [0, 65535], "balthaser the merchant e anti good": [0, 65535], "the merchant e anti good signior": [0, 65535], "merchant e anti good signior angelo": [0, 65535], "e anti good signior angelo you": [0, 65535], "anti good signior angelo you must": [0, 65535], "good signior angelo you must excuse": [0, 65535], "signior angelo you must excuse vs": [0, 65535], "angelo you must excuse vs all": [0, 65535], "you must excuse vs all my": [0, 65535], "must excuse vs all my wife": [0, 65535], "excuse vs all my wife is": [0, 65535], "vs all my wife is shrewish": [0, 65535], "all my wife is shrewish when": [0, 65535], "my wife is shrewish when i": [0, 65535], "wife is shrewish when i keepe": [0, 65535], "is shrewish when i keepe not": [0, 65535], "shrewish when i keepe not howres": [0, 65535], "when i keepe not howres say": [0, 65535], "i keepe not howres say that": [0, 65535], "keepe not howres say that i": [0, 65535], "not howres say that i lingerd": [0, 65535], "howres say that i lingerd with": [0, 65535], "say that i lingerd with you": [0, 65535], "that i lingerd with you at": [0, 65535], "i lingerd with you at your": [0, 65535], "lingerd with you at your shop": [0, 65535], "with you at your shop to": [0, 65535], "you at your shop to see": [0, 65535], "at your shop to see the": [0, 65535], "your shop to see the making": [0, 65535], "shop to see the making of": [0, 65535], "to see the making of her": [0, 65535], "see the making of her carkanet": [0, 65535], "the making of her carkanet and": [0, 65535], "making of her carkanet and that": [0, 65535], "of her carkanet and that to": [0, 65535], "her carkanet and that to morrow": [0, 65535], "carkanet and that to morrow you": [0, 65535], "and that to morrow you will": [0, 65535], "that to morrow you will bring": [0, 65535], "to morrow you will bring it": [0, 65535], "morrow you will bring it home": [0, 65535], "you will bring it home but": [0, 65535], "will bring it home but here's": [0, 65535], "bring it home but here's a": [0, 65535], "it home but here's a villaine": [0, 65535], "home but here's a villaine that": [0, 65535], "but here's a villaine that would": [0, 65535], "here's a villaine that would face": [0, 65535], "a villaine that would face me": [0, 65535], "villaine that would face me downe": [0, 65535], "that would face me downe he": [0, 65535], "would face me downe he met": [0, 65535], "face me downe he met me": [0, 65535], "me downe he met me on": [0, 65535], "downe he met me on the": [0, 65535], "he met me on the mart": [0, 65535], "met me on the mart and": [0, 65535], "me on the mart and that": [0, 65535], "on the mart and that i": [0, 65535], "the mart and that i beat": [0, 65535], "mart and that i beat him": [0, 65535], "and that i beat him and": [0, 65535], "that i beat him and charg'd": [0, 65535], "i beat him and charg'd him": [0, 65535], "beat him and charg'd him with": [0, 65535], "him and charg'd him with a": [0, 65535], "and charg'd him with a thousand": [0, 65535], "charg'd him with a thousand markes": [0, 65535], "him with a thousand markes in": [0, 65535], "with a thousand markes in gold": [0, 65535], "a thousand markes in gold and": [0, 65535], "thousand markes in gold and that": [0, 65535], "markes in gold and that i": [0, 65535], "in gold and that i did": [0, 65535], "gold and that i did denie": [0, 65535], "and that i did denie my": [0, 65535], "that i did denie my wife": [0, 65535], "i did denie my wife and": [0, 65535], "did denie my wife and house": [0, 65535], "denie my wife and house thou": [0, 65535], "my wife and house thou drunkard": [0, 65535], "wife and house thou drunkard thou": [0, 65535], "and house thou drunkard thou what": [0, 65535], "house thou drunkard thou what didst": [0, 65535], "thou drunkard thou what didst thou": [0, 65535], "drunkard thou what didst thou meane": [0, 65535], "thou what didst thou meane by": [0, 65535], "what didst thou meane by this": [0, 65535], "didst thou meane by this e": [0, 65535], "thou meane by this e dro": [0, 65535], "meane by this e dro say": [0, 65535], "by this e dro say what": [0, 65535], "this e dro say what you": [0, 65535], "e dro say what you wil": [0, 65535], "dro say what you wil sir": [0, 65535], "say what you wil sir but": [0, 65535], "what you wil sir but i": [0, 65535], "you wil sir but i know": [0, 65535], "wil sir but i know what": [0, 65535], "sir but i know what i": [0, 65535], "but i know what i know": [0, 65535], "i know what i know that": [0, 65535], "know what i know that you": [0, 65535], "what i know that you beat": [0, 65535], "i know that you beat me": [0, 65535], "know that you beat me at": [0, 65535], "that you beat me at the": [0, 65535], "you beat me at the mart": [0, 65535], "beat me at the mart i": [0, 65535], "me at the mart i haue": [0, 65535], "at the mart i haue your": [0, 65535], "the mart i haue your hand": [0, 65535], "mart i haue your hand to": [0, 65535], "i haue your hand to show": [0, 65535], "haue your hand to show if": [0, 65535], "your hand to show if the": [0, 65535], "hand to show if the skin": [0, 65535], "to show if the skin were": [0, 65535], "show if the skin were parchment": [0, 65535], "if the skin were parchment the": [0, 65535], "the skin were parchment the blows": [0, 65535], "skin were parchment the blows you": [0, 65535], "were parchment the blows you gaue": [0, 65535], "parchment the blows you gaue were": [0, 65535], "the blows you gaue were ink": [0, 65535], "blows you gaue were ink your": [0, 65535], "you gaue were ink your owne": [0, 65535], "gaue were ink your owne hand": [0, 65535], "were ink your owne hand writing": [0, 65535], "ink your owne hand writing would": [0, 65535], "your owne hand writing would tell": [0, 65535], "owne hand writing would tell you": [0, 65535], "hand writing would tell you what": [0, 65535], "writing would tell you what i": [0, 65535], "would tell you what i thinke": [0, 65535], "tell you what i thinke e": [0, 65535], "you what i thinke e ant": [0, 65535], "what i thinke e ant i": [0, 65535], "i thinke e ant i thinke": [0, 65535], "thinke e ant i thinke thou": [0, 65535], "e ant i thinke thou art": [0, 65535], "ant i thinke thou art an": [0, 65535], "i thinke thou art an asse": [0, 65535], "thinke thou art an asse e": [0, 65535], "thou art an asse e dro": [0, 65535], "art an asse e dro marry": [0, 65535], "an asse e dro marry so": [0, 65535], "asse e dro marry so it": [0, 65535], "e dro marry so it doth": [0, 65535], "dro marry so it doth appeare": [0, 65535], "marry so it doth appeare by": [0, 65535], "so it doth appeare by the": [0, 65535], "it doth appeare by the wrongs": [0, 65535], "doth appeare by the wrongs i": [0, 65535], "appeare by the wrongs i suffer": [0, 65535], "by the wrongs i suffer and": [0, 65535], "the wrongs i suffer and the": [0, 65535], "wrongs i suffer and the blowes": [0, 65535], "i suffer and the blowes i": [0, 65535], "suffer and the blowes i beare": [0, 65535], "and the blowes i beare i": [0, 65535], "the blowes i beare i should": [0, 65535], "blowes i beare i should kicke": [0, 65535], "i beare i should kicke being": [0, 65535], "beare i should kicke being kickt": [0, 65535], "i should kicke being kickt and": [0, 65535], "should kicke being kickt and being": [0, 65535], "kicke being kickt and being at": [0, 65535], "being kickt and being at that": [0, 65535], "kickt and being at that passe": [0, 65535], "and being at that passe you": [0, 65535], "being at that passe you would": [0, 65535], "at that passe you would keepe": [0, 65535], "that passe you would keepe from": [0, 65535], "passe you would keepe from my": [0, 65535], "you would keepe from my heeles": [0, 65535], "would keepe from my heeles and": [0, 65535], "keepe from my heeles and beware": [0, 65535], "from my heeles and beware of": [0, 65535], "my heeles and beware of an": [0, 65535], "heeles and beware of an asse": [0, 65535], "and beware of an asse e": [0, 65535], "beware of an asse e an": [0, 65535], "of an asse e an y'are": [0, 65535], "an asse e an y'are sad": [0, 65535], "asse e an y'are sad signior": [0, 65535], "e an y'are sad signior balthazar": [0, 65535], "an y'are sad signior balthazar pray": [0, 65535], "y'are sad signior balthazar pray god": [0, 65535], "sad signior balthazar pray god our": [0, 65535], "signior balthazar pray god our cheer": [0, 65535], "balthazar pray god our cheer may": [0, 65535], "pray god our cheer may answer": [0, 65535], "god our cheer may answer my": [0, 65535], "our cheer may answer my good": [0, 65535], "cheer may answer my good will": [0, 65535], "may answer my good will and": [0, 65535], "answer my good will and your": [0, 65535], "my good will and your good": [0, 65535], "good will and your good welcom": [0, 65535], "will and your good welcom here": [0, 65535], "and your good welcom here bal": [0, 65535], "your good welcom here bal i": [0, 65535], "good welcom here bal i hold": [0, 65535], "welcom here bal i hold your": [0, 65535], "here bal i hold your dainties": [0, 65535], "bal i hold your dainties cheap": [0, 65535], "i hold your dainties cheap sir": [0, 65535], "hold your dainties cheap sir your": [0, 65535], "your dainties cheap sir your welcom": [0, 65535], "dainties cheap sir your welcom deer": [0, 65535], "cheap sir your welcom deer e": [0, 65535], "sir your welcom deer e an": [0, 65535], "your welcom deer e an oh": [0, 65535], "welcom deer e an oh signior": [0, 65535], "deer e an oh signior balthazar": [0, 65535], "e an oh signior balthazar either": [0, 65535], "an oh signior balthazar either at": [0, 65535], "oh signior balthazar either at flesh": [0, 65535], "signior balthazar either at flesh or": [0, 65535], "balthazar either at flesh or fish": [0, 65535], "either at flesh or fish a": [0, 65535], "at flesh or fish a table": [0, 65535], "flesh or fish a table full": [0, 65535], "or fish a table full of": [0, 65535], "fish a table full of welcome": [0, 65535], "a table full of welcome makes": [0, 65535], "table full of welcome makes scarce": [0, 65535], "full of welcome makes scarce one": [0, 65535], "of welcome makes scarce one dainty": [0, 65535], "welcome makes scarce one dainty dish": [0, 65535], "makes scarce one dainty dish bal": [0, 65535], "scarce one dainty dish bal good": [0, 65535], "one dainty dish bal good meat": [0, 65535], "dainty dish bal good meat sir": [0, 65535], "dish bal good meat sir is": [0, 65535], "bal good meat sir is co": [0, 65535], "good meat sir is co m": [0, 65535], "meat sir is co m mon": [0, 65535], "sir is co m mon that": [0, 65535], "is co m mon that euery": [0, 65535], "co m mon that euery churle": [0, 65535], "m mon that euery churle affords": [0, 65535], "mon that euery churle affords anti": [0, 65535], "that euery churle affords anti and": [0, 65535], "euery churle affords anti and welcome": [0, 65535], "churle affords anti and welcome more": [0, 65535], "affords anti and welcome more common": [0, 65535], "anti and welcome more common for": [0, 65535], "and welcome more common for thats": [0, 65535], "welcome more common for thats nothing": [0, 65535], "more common for thats nothing but": [0, 65535], "common for thats nothing but words": [0, 65535], "for thats nothing but words bal": [0, 65535], "thats nothing but words bal small": [0, 65535], "nothing but words bal small cheere": [0, 65535], "but words bal small cheere and": [0, 65535], "words bal small cheere and great": [0, 65535], "bal small cheere and great welcome": [0, 65535], "small cheere and great welcome makes": [0, 65535], "cheere and great welcome makes a": [0, 65535], "and great welcome makes a merrie": [0, 65535], "great welcome makes a merrie feast": [0, 65535], "welcome makes a merrie feast anti": [0, 65535], "makes a merrie feast anti i": [0, 65535], "a merrie feast anti i to": [0, 65535], "merrie feast anti i to a": [0, 65535], "feast anti i to a niggardly": [0, 65535], "anti i to a niggardly host": [0, 65535], "i to a niggardly host and": [0, 65535], "to a niggardly host and more": [0, 65535], "a niggardly host and more sparing": [0, 65535], "niggardly host and more sparing guest": [0, 65535], "host and more sparing guest but": [0, 65535], "and more sparing guest but though": [0, 65535], "more sparing guest but though my": [0, 65535], "sparing guest but though my cates": [0, 65535], "guest but though my cates be": [0, 65535], "but though my cates be meane": [0, 65535], "though my cates be meane take": [0, 65535], "my cates be meane take them": [0, 65535], "cates be meane take them in": [0, 65535], "be meane take them in good": [0, 65535], "meane take them in good part": [0, 65535], "take them in good part better": [0, 65535], "them in good part better cheere": [0, 65535], "in good part better cheere may": [0, 65535], "good part better cheere may you": [0, 65535], "part better cheere may you haue": [0, 65535], "better cheere may you haue but": [0, 65535], "cheere may you haue but not": [0, 65535], "may you haue but not with": [0, 65535], "you haue but not with better": [0, 65535], "haue but not with better hart": [0, 65535], "but not with better hart but": [0, 65535], "not with better hart but soft": [0, 65535], "with better hart but soft my": [0, 65535], "better hart but soft my doore": [0, 65535], "hart but soft my doore is": [0, 65535], "but soft my doore is lockt": [0, 65535], "soft my doore is lockt goe": [0, 65535], "my doore is lockt goe bid": [0, 65535], "doore is lockt goe bid them": [0, 65535], "is lockt goe bid them let": [0, 65535], "lockt goe bid them let vs": [0, 65535], "goe bid them let vs in": [0, 65535], "bid them let vs in e": [0, 65535], "them let vs in e dro": [0, 65535], "let vs in e dro maud": [0, 65535], "vs in e dro maud briget": [0, 65535], "in e dro maud briget marian": [0, 65535], "e dro maud briget marian cisley": [0, 65535], "dro maud briget marian cisley gillian": [0, 65535], "maud briget marian cisley gillian ginn": [0, 65535], "briget marian cisley gillian ginn s": [0, 65535], "marian cisley gillian ginn s dro": [0, 65535], "cisley gillian ginn s dro mome": [0, 65535], "gillian ginn s dro mome malthorse": [0, 65535], "ginn s dro mome malthorse capon": [0, 65535], "s dro mome malthorse capon coxcombe": [0, 65535], "dro mome malthorse capon coxcombe idiot": [0, 65535], "mome malthorse capon coxcombe idiot patch": [0, 65535], "malthorse capon coxcombe idiot patch either": [0, 65535], "capon coxcombe idiot patch either get": [0, 65535], "coxcombe idiot patch either get thee": [0, 65535], "idiot patch either get thee from": [0, 65535], "patch either get thee from the": [0, 65535], "either get thee from the dore": [0, 65535], "get thee from the dore or": [0, 65535], "thee from the dore or sit": [0, 65535], "from the dore or sit downe": [0, 65535], "the dore or sit downe at": [0, 65535], "dore or sit downe at the": [0, 65535], "or sit downe at the hatch": [0, 65535], "sit downe at the hatch dost": [0, 65535], "downe at the hatch dost thou": [0, 65535], "at the hatch dost thou coniure": [0, 65535], "the hatch dost thou coniure for": [0, 65535], "hatch dost thou coniure for wenches": [0, 65535], "dost thou coniure for wenches that": [0, 65535], "thou coniure for wenches that thou": [0, 65535], "coniure for wenches that thou calst": [0, 65535], "for wenches that thou calst for": [0, 65535], "wenches that thou calst for such": [0, 65535], "that thou calst for such store": [0, 65535], "thou calst for such store when": [0, 65535], "calst for such store when one": [0, 65535], "for such store when one is": [0, 65535], "such store when one is one": [0, 65535], "store when one is one too": [0, 65535], "when one is one too many": [0, 65535], "one is one too many goe": [0, 65535], "is one too many goe get": [0, 65535], "one too many goe get thee": [0, 65535], "too many goe get thee from": [0, 65535], "many goe get thee from the": [0, 65535], "goe get thee from the dore": [0, 65535], "get thee from the dore e": [0, 65535], "thee from the dore e dro": [0, 65535], "from the dore e dro what": [0, 65535], "the dore e dro what patch": [0, 65535], "dore e dro what patch is": [0, 65535], "e dro what patch is made": [0, 65535], "dro what patch is made our": [0, 65535], "what patch is made our porter": [0, 65535], "patch is made our porter my": [0, 65535], "is made our porter my master": [0, 65535], "made our porter my master stayes": [0, 65535], "our porter my master stayes in": [0, 65535], "porter my master stayes in the": [0, 65535], "my master stayes in the street": [0, 65535], "master stayes in the street s": [0, 65535], "stayes in the street s dro": [0, 65535], "in the street s dro let": [0, 65535], "the street s dro let him": [0, 65535], "street s dro let him walke": [0, 65535], "s dro let him walke from": [0, 65535], "dro let him walke from whence": [0, 65535], "let him walke from whence he": [0, 65535], "him walke from whence he came": [0, 65535], "walke from whence he came lest": [0, 65535], "from whence he came lest hee": [0, 65535], "whence he came lest hee catch": [0, 65535], "he came lest hee catch cold": [0, 65535], "came lest hee catch cold on's": [0, 65535], "lest hee catch cold on's feet": [0, 65535], "hee catch cold on's feet e": [0, 65535], "catch cold on's feet e ant": [0, 65535], "cold on's feet e ant who": [0, 65535], "on's feet e ant who talks": [0, 65535], "feet e ant who talks within": [0, 65535], "e ant who talks within there": [0, 65535], "ant who talks within there hoa": [0, 65535], "who talks within there hoa open": [0, 65535], "talks within there hoa open the": [0, 65535], "within there hoa open the dore": [0, 65535], "there hoa open the dore s": [0, 65535], "hoa open the dore s dro": [0, 65535], "open the dore s dro right": [0, 65535], "the dore s dro right sir": [0, 65535], "dore s dro right sir ile": [0, 65535], "s dro right sir ile tell": [0, 65535], "dro right sir ile tell you": [0, 65535], "right sir ile tell you when": [0, 65535], "sir ile tell you when and": [0, 65535], "ile tell you when and you'll": [0, 65535], "tell you when and you'll tell": [0, 65535], "you when and you'll tell me": [0, 65535], "when and you'll tell me wherefore": [0, 65535], "and you'll tell me wherefore ant": [0, 65535], "you'll tell me wherefore ant wherefore": [0, 65535], "tell me wherefore ant wherefore for": [0, 65535], "me wherefore ant wherefore for my": [0, 65535], "wherefore ant wherefore for my dinner": [0, 65535], "ant wherefore for my dinner i": [0, 65535], "wherefore for my dinner i haue": [0, 65535], "for my dinner i haue not": [0, 65535], "my dinner i haue not din'd": [0, 65535], "dinner i haue not din'd to": [0, 65535], "i haue not din'd to day": [0, 65535], "haue not din'd to day s": [0, 65535], "not din'd to day s dro": [0, 65535], "din'd to day s dro nor": [0, 65535], "to day s dro nor to": [0, 65535], "day s dro nor to day": [0, 65535], "s dro nor to day here": [0, 65535], "dro nor to day here you": [0, 65535], "nor to day here you must": [0, 65535], "to day here you must not": [0, 65535], "day here you must not come": [0, 65535], "here you must not come againe": [0, 65535], "you must not come againe when": [0, 65535], "must not come againe when you": [0, 65535], "not come againe when you may": [0, 65535], "come againe when you may anti": [0, 65535], "againe when you may anti what": [0, 65535], "when you may anti what art": [0, 65535], "you may anti what art thou": [0, 65535], "may anti what art thou that": [0, 65535], "anti what art thou that keep'st": [0, 65535], "what art thou that keep'st mee": [0, 65535], "art thou that keep'st mee out": [0, 65535], "thou that keep'st mee out from": [0, 65535], "that keep'st mee out from the": [0, 65535], "keep'st mee out from the howse": [0, 65535], "mee out from the howse i": [0, 65535], "out from the howse i owe": [0, 65535], "from the howse i owe s": [0, 65535], "the howse i owe s dro": [0, 65535], "howse i owe s dro the": [0, 65535], "i owe s dro the porter": [0, 65535], "owe s dro the porter for": [0, 65535], "s dro the porter for this": [0, 65535], "dro the porter for this time": [0, 65535], "the porter for this time sir": [0, 65535], "porter for this time sir and": [0, 65535], "for this time sir and my": [0, 65535], "this time sir and my name": [0, 65535], "time sir and my name is": [0, 65535], "sir and my name is dromio": [0, 65535], "and my name is dromio e": [0, 65535], "my name is dromio e dro": [0, 65535], "name is dromio e dro o": [0, 65535], "is dromio e dro o villaine": [0, 65535], "dromio e dro o villaine thou": [0, 65535], "e dro o villaine thou hast": [0, 65535], "dro o villaine thou hast stolne": [0, 65535], "o villaine thou hast stolne both": [0, 65535], "villaine thou hast stolne both mine": [0, 65535], "thou hast stolne both mine office": [0, 65535], "hast stolne both mine office and": [0, 65535], "stolne both mine office and my": [0, 65535], "both mine office and my name": [0, 65535], "mine office and my name the": [0, 65535], "office and my name the one": [0, 65535], "and my name the one nere": [0, 65535], "my name the one nere got": [0, 65535], "name the one nere got me": [0, 65535], "the one nere got me credit": [0, 65535], "one nere got me credit the": [0, 65535], "nere got me credit the other": [0, 65535], "got me credit the other mickle": [0, 65535], "me credit the other mickle blame": [0, 65535], "credit the other mickle blame if": [0, 65535], "the other mickle blame if thou": [0, 65535], "other mickle blame if thou hadst": [0, 65535], "mickle blame if thou hadst beene": [0, 65535], "blame if thou hadst beene dromio": [0, 65535], "if thou hadst beene dromio to": [0, 65535], "thou hadst beene dromio to day": [0, 65535], "hadst beene dromio to day in": [0, 65535], "beene dromio to day in my": [0, 65535], "dromio to day in my place": [0, 65535], "to day in my place thou": [0, 65535], "day in my place thou wouldst": [0, 65535], "in my place thou wouldst haue": [0, 65535], "my place thou wouldst haue chang'd": [0, 65535], "place thou wouldst haue chang'd thy": [0, 65535], "thou wouldst haue chang'd thy face": [0, 65535], "wouldst haue chang'd thy face for": [0, 65535], "haue chang'd thy face for a": [0, 65535], "chang'd thy face for a name": [0, 65535], "thy face for a name or": [0, 65535], "face for a name or thy": [0, 65535], "for a name or thy name": [0, 65535], "a name or thy name for": [0, 65535], "name or thy name for an": [0, 65535], "or thy name for an asse": [0, 65535], "thy name for an asse enter": [0, 65535], "name for an asse enter luce": [0, 65535], "for an asse enter luce luce": [0, 65535], "an asse enter luce luce what": [0, 65535], "asse enter luce luce what a": [0, 65535], "enter luce luce what a coile": [0, 65535], "luce luce what a coile is": [0, 65535], "luce what a coile is there": [0, 65535], "what a coile is there dromio": [0, 65535], "a coile is there dromio who": [0, 65535], "coile is there dromio who are": [0, 65535], "is there dromio who are those": [0, 65535], "there dromio who are those at": [0, 65535], "dromio who are those at the": [0, 65535], "who are those at the gate": [0, 65535], "are those at the gate e": [0, 65535], "those at the gate e dro": [0, 65535], "at the gate e dro let": [0, 65535], "the gate e dro let my": [0, 65535], "gate e dro let my master": [0, 65535], "e dro let my master in": [0, 65535], "dro let my master in luce": [0, 65535], "let my master in luce luce": [0, 65535], "my master in luce luce faith": [0, 65535], "master in luce luce faith no": [0, 65535], "in luce luce faith no hee": [0, 65535], "luce luce faith no hee comes": [0, 65535], "luce faith no hee comes too": [0, 65535], "faith no hee comes too late": [0, 65535], "no hee comes too late and": [0, 65535], "hee comes too late and so": [0, 65535], "comes too late and so tell": [0, 65535], "too late and so tell your": [0, 65535], "late and so tell your master": [0, 65535], "and so tell your master e": [0, 65535], "so tell your master e dro": [0, 65535], "tell your master e dro o": [0, 65535], "your master e dro o lord": [0, 65535], "master e dro o lord i": [0, 65535], "e dro o lord i must": [0, 65535], "dro o lord i must laugh": [0, 65535], "o lord i must laugh haue": [0, 65535], "lord i must laugh haue at": [0, 65535], "i must laugh haue at you": [0, 65535], "must laugh haue at you with": [0, 65535], "laugh haue at you with a": [0, 65535], "haue at you with a prouerbe": [0, 65535], "at you with a prouerbe shall": [0, 65535], "you with a prouerbe shall i": [0, 65535], "with a prouerbe shall i set": [0, 65535], "a prouerbe shall i set in": [0, 65535], "prouerbe shall i set in my": [0, 65535], "shall i set in my staffe": [0, 65535], "i set in my staffe luce": [0, 65535], "set in my staffe luce haue": [0, 65535], "in my staffe luce haue at": [0, 65535], "my staffe luce haue at you": [0, 65535], "staffe luce haue at you with": [0, 65535], "luce haue at you with another": [0, 65535], "haue at you with another that's": [0, 65535], "at you with another that's when": [0, 65535], "you with another that's when can": [0, 65535], "with another that's when can you": [0, 65535], "another that's when can you tell": [0, 65535], "that's when can you tell s": [0, 65535], "when can you tell s dro": [0, 65535], "can you tell s dro if": [0, 65535], "you tell s dro if thy": [0, 65535], "tell s dro if thy name": [0, 65535], "s dro if thy name be": [0, 65535], "dro if thy name be called": [0, 65535], "if thy name be called luce": [0, 65535], "thy name be called luce luce": [0, 65535], "name be called luce luce thou": [0, 65535], "be called luce luce thou hast": [0, 65535], "called luce luce thou hast an": [0, 65535], "luce luce thou hast an swer'd": [0, 65535], "luce thou hast an swer'd him": [0, 65535], "thou hast an swer'd him well": [0, 65535], "hast an swer'd him well anti": [0, 65535], "an swer'd him well anti doe": [0, 65535], "swer'd him well anti doe you": [0, 65535], "him well anti doe you heare": [0, 65535], "well anti doe you heare you": [0, 65535], "anti doe you heare you minion": [0, 65535], "doe you heare you minion you'll": [0, 65535], "you heare you minion you'll let": [0, 65535], "heare you minion you'll let vs": [0, 65535], "you minion you'll let vs in": [0, 65535], "minion you'll let vs in i": [0, 65535], "you'll let vs in i hope": [0, 65535], "let vs in i hope luce": [0, 65535], "vs in i hope luce i": [0, 65535], "in i hope luce i thought": [0, 65535], "i hope luce i thought to": [0, 65535], "hope luce i thought to haue": [0, 65535], "luce i thought to haue askt": [0, 65535], "i thought to haue askt you": [0, 65535], "thought to haue askt you s": [0, 65535], "to haue askt you s dro": [0, 65535], "haue askt you s dro and": [0, 65535], "askt you s dro and you": [0, 65535], "you s dro and you said": [0, 65535], "s dro and you said no": [0, 65535], "dro and you said no e": [0, 65535], "and you said no e dro": [0, 65535], "you said no e dro so": [0, 65535], "said no e dro so come": [0, 65535], "no e dro so come helpe": [0, 65535], "e dro so come helpe well": [0, 65535], "dro so come helpe well strooke": [0, 65535], "so come helpe well strooke there": [0, 65535], "come helpe well strooke there was": [0, 65535], "helpe well strooke there was blow": [0, 65535], "well strooke there was blow for": [0, 65535], "strooke there was blow for blow": [0, 65535], "there was blow for blow anti": [0, 65535], "was blow for blow anti thou": [0, 65535], "blow for blow anti thou baggage": [0, 65535], "for blow anti thou baggage let": [0, 65535], "blow anti thou baggage let me": [0, 65535], "anti thou baggage let me in": [0, 65535], "thou baggage let me in luce": [0, 65535], "baggage let me in luce can": [0, 65535], "let me in luce can you": [0, 65535], "me in luce can you tell": [0, 65535], "in luce can you tell for": [0, 65535], "luce can you tell for whose": [0, 65535], "can you tell for whose sake": [0, 65535], "you tell for whose sake e": [0, 65535], "tell for whose sake e drom": [0, 65535], "for whose sake e drom master": [0, 65535], "whose sake e drom master knocke": [0, 65535], "sake e drom master knocke the": [0, 65535], "e drom master knocke the doore": [0, 65535], "drom master knocke the doore hard": [0, 65535], "master knocke the doore hard luce": [0, 65535], "knocke the doore hard luce let": [0, 65535], "the doore hard luce let him": [0, 65535], "doore hard luce let him knocke": [0, 65535], "hard luce let him knocke till": [0, 65535], "luce let him knocke till it": [0, 65535], "let him knocke till it ake": [0, 65535], "him knocke till it ake anti": [0, 65535], "knocke till it ake anti you'll": [0, 65535], "till it ake anti you'll crie": [0, 65535], "it ake anti you'll crie for": [0, 65535], "ake anti you'll crie for this": [0, 65535], "anti you'll crie for this minion": [0, 65535], "you'll crie for this minion if": [0, 65535], "crie for this minion if i": [0, 65535], "for this minion if i beat": [0, 65535], "this minion if i beat the": [0, 65535], "minion if i beat the doore": [0, 65535], "if i beat the doore downe": [0, 65535], "i beat the doore downe luce": [0, 65535], "beat the doore downe luce what": [0, 65535], "the doore downe luce what needs": [0, 65535], "doore downe luce what needs all": [0, 65535], "downe luce what needs all that": [0, 65535], "luce what needs all that and": [0, 65535], "what needs all that and a": [0, 65535], "needs all that and a paire": [0, 65535], "all that and a paire of": [0, 65535], "that and a paire of stocks": [0, 65535], "and a paire of stocks in": [0, 65535], "a paire of stocks in the": [0, 65535], "paire of stocks in the towne": [0, 65535], "of stocks in the towne enter": [0, 65535], "stocks in the towne enter adriana": [0, 65535], "in the towne enter adriana adr": [0, 65535], "the towne enter adriana adr who": [0, 65535], "towne enter adriana adr who is": [0, 65535], "enter adriana adr who is that": [0, 65535], "adriana adr who is that at": [0, 65535], "adr who is that at the": [0, 65535], "who is that at the doore": [0, 65535], "is that at the doore that": [0, 65535], "that at the doore that keeps": [0, 65535], "at the doore that keeps all": [0, 65535], "the doore that keeps all this": [0, 65535], "doore that keeps all this noise": [0, 65535], "that keeps all this noise s": [0, 65535], "keeps all this noise s dro": [0, 65535], "all this noise s dro by": [0, 65535], "this noise s dro by my": [0, 65535], "noise s dro by my troth": [0, 65535], "s dro by my troth your": [0, 65535], "dro by my troth your towne": [0, 65535], "by my troth your towne is": [0, 65535], "my troth your towne is troubled": [0, 65535], "troth your towne is troubled with": [0, 65535], "your towne is troubled with vnruly": [0, 65535], "towne is troubled with vnruly boies": [0, 65535], "is troubled with vnruly boies anti": [0, 65535], "troubled with vnruly boies anti are": [0, 65535], "with vnruly boies anti are you": [0, 65535], "vnruly boies anti are you there": [0, 65535], "boies anti are you there wife": [0, 65535], "anti are you there wife you": [0, 65535], "are you there wife you might": [0, 65535], "you there wife you might haue": [0, 65535], "there wife you might haue come": [0, 65535], "wife you might haue come before": [0, 65535], "you might haue come before adri": [0, 65535], "might haue come before adri your": [0, 65535], "haue come before adri your wife": [0, 65535], "come before adri your wife sir": [0, 65535], "before adri your wife sir knaue": [0, 65535], "adri your wife sir knaue go": [0, 65535], "your wife sir knaue go get": [0, 65535], "wife sir knaue go get you": [0, 65535], "sir knaue go get you from": [0, 65535], "knaue go get you from the": [0, 65535], "go get you from the dore": [0, 65535], "get you from the dore e": [0, 65535], "you from the dore e dro": [0, 65535], "from the dore e dro if": [0, 65535], "the dore e dro if you": [0, 65535], "dore e dro if you went": [0, 65535], "e dro if you went in": [0, 65535], "dro if you went in paine": [0, 65535], "if you went in paine master": [0, 65535], "you went in paine master this": [0, 65535], "went in paine master this knaue": [0, 65535], "in paine master this knaue wold": [0, 65535], "paine master this knaue wold goe": [0, 65535], "master this knaue wold goe sore": [0, 65535], "this knaue wold goe sore angelo": [0, 65535], "knaue wold goe sore angelo heere": [0, 65535], "wold goe sore angelo heere is": [0, 65535], "goe sore angelo heere is neither": [0, 65535], "sore angelo heere is neither cheere": [0, 65535], "angelo heere is neither cheere sir": [0, 65535], "heere is neither cheere sir nor": [0, 65535], "is neither cheere sir nor welcome": [0, 65535], "neither cheere sir nor welcome we": [0, 65535], "cheere sir nor welcome we would": [0, 65535], "sir nor welcome we would faine": [0, 65535], "nor welcome we would faine haue": [0, 65535], "welcome we would faine haue either": [0, 65535], "we would faine haue either baltz": [0, 65535], "would faine haue either baltz in": [0, 65535], "faine haue either baltz in debating": [0, 65535], "haue either baltz in debating which": [0, 65535], "either baltz in debating which was": [0, 65535], "baltz in debating which was best": [0, 65535], "in debating which was best wee": [0, 65535], "debating which was best wee shall": [0, 65535], "which was best wee shall part": [0, 65535], "was best wee shall part with": [0, 65535], "best wee shall part with neither": [0, 65535], "wee shall part with neither e": [0, 65535], "shall part with neither e dro": [0, 65535], "part with neither e dro they": [0, 65535], "with neither e dro they stand": [0, 65535], "neither e dro they stand at": [0, 65535], "e dro they stand at the": [0, 65535], "dro they stand at the doore": [0, 65535], "they stand at the doore master": [0, 65535], "stand at the doore master bid": [0, 65535], "at the doore master bid them": [0, 65535], "the doore master bid them welcome": [0, 65535], "doore master bid them welcome hither": [0, 65535], "master bid them welcome hither anti": [0, 65535], "bid them welcome hither anti there": [0, 65535], "them welcome hither anti there is": [0, 65535], "welcome hither anti there is something": [0, 65535], "hither anti there is something in": [0, 65535], "anti there is something in the": [0, 65535], "there is something in the winde": [0, 65535], "is something in the winde that": [0, 65535], "something in the winde that we": [0, 65535], "in the winde that we cannot": [0, 65535], "the winde that we cannot get": [0, 65535], "winde that we cannot get in": [0, 65535], "that we cannot get in e": [0, 65535], "we cannot get in e dro": [0, 65535], "cannot get in e dro you": [0, 65535], "get in e dro you would": [0, 65535], "in e dro you would say": [0, 65535], "e dro you would say so": [0, 65535], "dro you would say so master": [0, 65535], "you would say so master if": [0, 65535], "would say so master if your": [0, 65535], "say so master if your garments": [0, 65535], "so master if your garments were": [0, 65535], "master if your garments were thin": [0, 65535], "if your garments were thin your": [0, 65535], "your garments were thin your cake": [0, 65535], "garments were thin your cake here": [0, 65535], "were thin your cake here is": [0, 65535], "thin your cake here is warme": [0, 65535], "your cake here is warme within": [0, 65535], "cake here is warme within you": [0, 65535], "here is warme within you stand": [0, 65535], "is warme within you stand here": [0, 65535], "warme within you stand here in": [0, 65535], "within you stand here in the": [0, 65535], "you stand here in the cold": [0, 65535], "stand here in the cold it": [0, 65535], "here in the cold it would": [0, 65535], "in the cold it would make": [0, 65535], "the cold it would make a": [0, 65535], "cold it would make a man": [0, 65535], "it would make a man mad": [0, 65535], "would make a man mad as": [0, 65535], "make a man mad as a": [0, 65535], "a man mad as a bucke": [0, 65535], "man mad as a bucke to": [0, 65535], "mad as a bucke to be": [0, 65535], "as a bucke to be so": [0, 65535], "a bucke to be so bought": [0, 65535], "bucke to be so bought and": [0, 65535], "to be so bought and sold": [0, 65535], "be so bought and sold ant": [0, 65535], "so bought and sold ant go": [0, 65535], "bought and sold ant go fetch": [0, 65535], "and sold ant go fetch me": [0, 65535], "sold ant go fetch me something": [0, 65535], "ant go fetch me something ile": [0, 65535], "go fetch me something ile break": [0, 65535], "fetch me something ile break ope": [0, 65535], "me something ile break ope the": [0, 65535], "something ile break ope the gate": [0, 65535], "ile break ope the gate s": [0, 65535], "break ope the gate s dro": [0, 65535], "ope the gate s dro breake": [0, 65535], "the gate s dro breake any": [0, 65535], "gate s dro breake any breaking": [0, 65535], "s dro breake any breaking here": [0, 65535], "dro breake any breaking here and": [0, 65535], "breake any breaking here and ile": [0, 65535], "any breaking here and ile breake": [0, 65535], "breaking here and ile breake your": [0, 65535], "here and ile breake your knaues": [0, 65535], "and ile breake your knaues pate": [0, 65535], "ile breake your knaues pate e": [0, 65535], "breake your knaues pate e dro": [0, 65535], "your knaues pate e dro a": [0, 65535], "knaues pate e dro a man": [0, 65535], "pate e dro a man may": [0, 65535], "e dro a man may breake": [0, 65535], "dro a man may breake a": [0, 65535], "a man may breake a word": [0, 65535], "man may breake a word with": [0, 65535], "may breake a word with your": [0, 65535], "breake a word with your sir": [0, 65535], "a word with your sir and": [0, 65535], "word with your sir and words": [0, 65535], "with your sir and words are": [0, 65535], "your sir and words are but": [0, 65535], "sir and words are but winde": [0, 65535], "and words are but winde i": [0, 65535], "words are but winde i and": [0, 65535], "are but winde i and breake": [0, 65535], "but winde i and breake it": [0, 65535], "winde i and breake it in": [0, 65535], "i and breake it in your": [0, 65535], "and breake it in your face": [0, 65535], "breake it in your face so": [0, 65535], "it in your face so he": [0, 65535], "in your face so he break": [0, 65535], "your face so he break it": [0, 65535], "face so he break it not": [0, 65535], "so he break it not behinde": [0, 65535], "he break it not behinde s": [0, 65535], "break it not behinde s dro": [0, 65535], "it not behinde s dro it": [0, 65535], "not behinde s dro it seemes": [0, 65535], "behinde s dro it seemes thou": [0, 65535], "s dro it seemes thou want'st": [0, 65535], "dro it seemes thou want'st breaking": [0, 65535], "it seemes thou want'st breaking out": [0, 65535], "seemes thou want'st breaking out vpon": [0, 65535], "thou want'st breaking out vpon thee": [0, 65535], "want'st breaking out vpon thee hinde": [0, 65535], "breaking out vpon thee hinde e": [0, 65535], "out vpon thee hinde e dro": [0, 65535], "vpon thee hinde e dro here's": [0, 65535], "thee hinde e dro here's too": [0, 65535], "hinde e dro here's too much": [0, 65535], "e dro here's too much out": [0, 65535], "dro here's too much out vpon": [0, 65535], "here's too much out vpon thee": [0, 65535], "too much out vpon thee i": [0, 65535], "much out vpon thee i pray": [0, 65535], "out vpon thee i pray thee": [0, 65535], "vpon thee i pray thee let": [0, 65535], "thee i pray thee let me": [0, 65535], "i pray thee let me in": [0, 65535], "pray thee let me in s": [0, 65535], "thee let me in s dro": [0, 65535], "let me in s dro i": [0, 65535], "me in s dro i when": [0, 65535], "in s dro i when fowles": [0, 65535], "s dro i when fowles haue": [0, 65535], "dro i when fowles haue no": [0, 65535], "i when fowles haue no feathers": [0, 65535], "when fowles haue no feathers and": [0, 65535], "fowles haue no feathers and fish": [0, 65535], "haue no feathers and fish haue": [0, 65535], "no feathers and fish haue no": [0, 65535], "feathers and fish haue no fin": [0, 65535], "and fish haue no fin ant": [0, 65535], "fish haue no fin ant well": [0, 65535], "haue no fin ant well ile": [0, 65535], "no fin ant well ile breake": [0, 65535], "fin ant well ile breake in": [0, 65535], "ant well ile breake in go": [0, 65535], "well ile breake in go borrow": [0, 65535], "ile breake in go borrow me": [0, 65535], "breake in go borrow me a": [0, 65535], "in go borrow me a crow": [0, 65535], "go borrow me a crow e": [0, 65535], "borrow me a crow e dro": [0, 65535], "me a crow e dro a": [0, 65535], "a crow e dro a crow": [0, 65535], "crow e dro a crow without": [0, 65535], "e dro a crow without feather": [0, 65535], "dro a crow without feather master": [0, 65535], "a crow without feather master meane": [0, 65535], "crow without feather master meane you": [0, 65535], "without feather master meane you so": [0, 65535], "feather master meane you so for": [0, 65535], "master meane you so for a": [0, 65535], "meane you so for a fish": [0, 65535], "you so for a fish without": [0, 65535], "so for a fish without a": [0, 65535], "for a fish without a finne": [0, 65535], "a fish without a finne ther's": [0, 65535], "fish without a finne ther's a": [0, 65535], "without a finne ther's a fowle": [0, 65535], "a finne ther's a fowle without": [0, 65535], "finne ther's a fowle without a": [0, 65535], "ther's a fowle without a fether": [0, 65535], "a fowle without a fether if": [0, 65535], "fowle without a fether if a": [0, 65535], "without a fether if a crow": [0, 65535], "a fether if a crow help": [0, 65535], "fether if a crow help vs": [0, 65535], "if a crow help vs in": [0, 65535], "a crow help vs in sirra": [0, 65535], "crow help vs in sirra wee'll": [0, 65535], "help vs in sirra wee'll plucke": [0, 65535], "vs in sirra wee'll plucke a": [0, 65535], "in sirra wee'll plucke a crow": [0, 65535], "sirra wee'll plucke a crow together": [0, 65535], "wee'll plucke a crow together ant": [0, 65535], "plucke a crow together ant go": [0, 65535], "a crow together ant go get": [0, 65535], "crow together ant go get thee": [0, 65535], "together ant go get thee gon": [0, 65535], "ant go get thee gon fetch": [0, 65535], "go get thee gon fetch me": [0, 65535], "get thee gon fetch me an": [0, 65535], "thee gon fetch me an iron": [0, 65535], "gon fetch me an iron crow": [0, 65535], "fetch me an iron crow balth": [0, 65535], "me an iron crow balth haue": [0, 65535], "an iron crow balth haue patience": [0, 65535], "iron crow balth haue patience sir": [0, 65535], "crow balth haue patience sir oh": [0, 65535], "balth haue patience sir oh let": [0, 65535], "haue patience sir oh let it": [0, 65535], "patience sir oh let it not": [0, 65535], "sir oh let it not be": [0, 65535], "oh let it not be so": [0, 65535], "let it not be so heerein": [0, 65535], "it not be so heerein you": [0, 65535], "not be so heerein you warre": [0, 65535], "be so heerein you warre against": [0, 65535], "so heerein you warre against your": [0, 65535], "heerein you warre against your reputation": [0, 65535], "you warre against your reputation and": [0, 65535], "warre against your reputation and draw": [0, 65535], "against your reputation and draw within": [0, 65535], "your reputation and draw within the": [0, 65535], "reputation and draw within the compasse": [0, 65535], "and draw within the compasse of": [0, 65535], "draw within the compasse of suspect": [0, 65535], "within the compasse of suspect th'": [0, 65535], "the compasse of suspect th' vnuiolated": [0, 65535], "compasse of suspect th' vnuiolated honor": [0, 65535], "of suspect th' vnuiolated honor of": [0, 65535], "suspect th' vnuiolated honor of your": [0, 65535], "th' vnuiolated honor of your wife": [0, 65535], "vnuiolated honor of your wife once": [0, 65535], "honor of your wife once this": [0, 65535], "of your wife once this your": [0, 65535], "your wife once this your long": [0, 65535], "wife once this your long experience": [0, 65535], "once this your long experience of": [0, 65535], "this your long experience of your": [0, 65535], "your long experience of your wisedome": [0, 65535], "long experience of your wisedome her": [0, 65535], "experience of your wisedome her sober": [0, 65535], "of your wisedome her sober vertue": [0, 65535], "your wisedome her sober vertue yeares": [0, 65535], "wisedome her sober vertue yeares and": [0, 65535], "her sober vertue yeares and modestie": [0, 65535], "sober vertue yeares and modestie plead": [0, 65535], "vertue yeares and modestie plead on": [0, 65535], "yeares and modestie plead on your": [0, 65535], "and modestie plead on your part": [0, 65535], "modestie plead on your part some": [0, 65535], "plead on your part some cause": [0, 65535], "on your part some cause to": [0, 65535], "your part some cause to you": [0, 65535], "part some cause to you vnknowne": [0, 65535], "some cause to you vnknowne and": [0, 65535], "cause to you vnknowne and doubt": [0, 65535], "to you vnknowne and doubt not": [0, 65535], "you vnknowne and doubt not sir": [0, 65535], "vnknowne and doubt not sir but": [0, 65535], "and doubt not sir but she": [0, 65535], "doubt not sir but she will": [0, 65535], "not sir but she will well": [0, 65535], "sir but she will well excuse": [0, 65535], "but she will well excuse why": [0, 65535], "she will well excuse why at": [0, 65535], "will well excuse why at this": [0, 65535], "well excuse why at this time": [0, 65535], "excuse why at this time the": [0, 65535], "why at this time the dores": [0, 65535], "at this time the dores are": [0, 65535], "this time the dores are made": [0, 65535], "time the dores are made against": [0, 65535], "the dores are made against you": [0, 65535], "dores are made against you be": [0, 65535], "are made against you be rul'd": [0, 65535], "made against you be rul'd by": [0, 65535], "against you be rul'd by me": [0, 65535], "you be rul'd by me depart": [0, 65535], "be rul'd by me depart in": [0, 65535], "rul'd by me depart in patience": [0, 65535], "by me depart in patience and": [0, 65535], "me depart in patience and let": [0, 65535], "depart in patience and let vs": [0, 65535], "in patience and let vs to": [0, 65535], "patience and let vs to the": [0, 65535], "and let vs to the tyger": [0, 65535], "let vs to the tyger all": [0, 65535], "vs to the tyger all to": [0, 65535], "to the tyger all to dinner": [0, 65535], "the tyger all to dinner and": [0, 65535], "tyger all to dinner and about": [0, 65535], "all to dinner and about euening": [0, 65535], "to dinner and about euening come": [0, 65535], "dinner and about euening come your": [0, 65535], "and about euening come your selfe": [0, 65535], "about euening come your selfe alone": [0, 65535], "euening come your selfe alone to": [0, 65535], "come your selfe alone to know": [0, 65535], "your selfe alone to know the": [0, 65535], "selfe alone to know the reason": [0, 65535], "alone to know the reason of": [0, 65535], "to know the reason of this": [0, 65535], "know the reason of this strange": [0, 65535], "the reason of this strange restraint": [0, 65535], "reason of this strange restraint if": [0, 65535], "of this strange restraint if by": [0, 65535], "this strange restraint if by strong": [0, 65535], "strange restraint if by strong hand": [0, 65535], "restraint if by strong hand you": [0, 65535], "if by strong hand you offer": [0, 65535], "by strong hand you offer to": [0, 65535], "strong hand you offer to breake": [0, 65535], "hand you offer to breake in": [0, 65535], "you offer to breake in now": [0, 65535], "offer to breake in now in": [0, 65535], "to breake in now in the": [0, 65535], "breake in now in the stirring": [0, 65535], "in now in the stirring passage": [0, 65535], "now in the stirring passage of": [0, 65535], "in the stirring passage of the": [0, 65535], "the stirring passage of the day": [0, 65535], "stirring passage of the day a": [0, 65535], "passage of the day a vulgar": [0, 65535], "of the day a vulgar comment": [0, 65535], "the day a vulgar comment will": [0, 65535], "day a vulgar comment will be": [0, 65535], "a vulgar comment will be made": [0, 65535], "vulgar comment will be made of": [0, 65535], "comment will be made of it": [0, 65535], "will be made of it and": [0, 65535], "be made of it and that": [0, 65535], "made of it and that supposed": [0, 65535], "of it and that supposed by": [0, 65535], "it and that supposed by the": [0, 65535], "and that supposed by the common": [0, 65535], "that supposed by the common rowt": [0, 65535], "supposed by the common rowt against": [0, 65535], "by the common rowt against your": [0, 65535], "the common rowt against your yet": [0, 65535], "common rowt against your yet vngalled": [0, 65535], "rowt against your yet vngalled estimation": [0, 65535], "against your yet vngalled estimation that": [0, 65535], "your yet vngalled estimation that may": [0, 65535], "yet vngalled estimation that may with": [0, 65535], "vngalled estimation that may with foule": [0, 65535], "estimation that may with foule intrusion": [0, 65535], "that may with foule intrusion enter": [0, 65535], "may with foule intrusion enter in": [0, 65535], "with foule intrusion enter in and": [0, 65535], "foule intrusion enter in and dwell": [0, 65535], "intrusion enter in and dwell vpon": [0, 65535], "enter in and dwell vpon your": [0, 65535], "in and dwell vpon your graue": [0, 65535], "and dwell vpon your graue when": [0, 65535], "dwell vpon your graue when you": [0, 65535], "vpon your graue when you are": [0, 65535], "your graue when you are dead": [0, 65535], "graue when you are dead for": [0, 65535], "when you are dead for slander": [0, 65535], "you are dead for slander liues": [0, 65535], "are dead for slander liues vpon": [0, 65535], "dead for slander liues vpon succession": [0, 65535], "for slander liues vpon succession for": [0, 65535], "slander liues vpon succession for euer": [0, 65535], "liues vpon succession for euer hows'd": [0, 65535], "vpon succession for euer hows'd where": [0, 65535], "succession for euer hows'd where it": [0, 65535], "for euer hows'd where it gets": [0, 65535], "euer hows'd where it gets possession": [0, 65535], "hows'd where it gets possession anti": [0, 65535], "where it gets possession anti you": [0, 65535], "it gets possession anti you haue": [0, 65535], "gets possession anti you haue preuail'd": [0, 65535], "possession anti you haue preuail'd i": [0, 65535], "anti you haue preuail'd i will": [0, 65535], "you haue preuail'd i will depart": [0, 65535], "haue preuail'd i will depart in": [0, 65535], "preuail'd i will depart in quiet": [0, 65535], "i will depart in quiet and": [0, 65535], "will depart in quiet and in": [0, 65535], "depart in quiet and in despight": [0, 65535], "in quiet and in despight of": [0, 65535], "quiet and in despight of mirth": [0, 65535], "and in despight of mirth meane": [0, 65535], "in despight of mirth meane to": [0, 65535], "despight of mirth meane to be": [0, 65535], "of mirth meane to be merrie": [0, 65535], "mirth meane to be merrie i": [0, 65535], "meane to be merrie i know": [0, 65535], "to be merrie i know a": [0, 65535], "be merrie i know a wench": [0, 65535], "merrie i know a wench of": [0, 65535], "i know a wench of excellent": [0, 65535], "know a wench of excellent discourse": [0, 65535], "a wench of excellent discourse prettie": [0, 65535], "wench of excellent discourse prettie and": [0, 65535], "of excellent discourse prettie and wittie": [0, 65535], "excellent discourse prettie and wittie wilde": [0, 65535], "discourse prettie and wittie wilde and": [0, 65535], "prettie and wittie wilde and yet": [0, 65535], "and wittie wilde and yet too": [0, 65535], "wittie wilde and yet too gentle": [0, 65535], "wilde and yet too gentle there": [0, 65535], "and yet too gentle there will": [0, 65535], "yet too gentle there will we": [0, 65535], "too gentle there will we dine": [0, 65535], "gentle there will we dine this": [0, 65535], "there will we dine this woman": [0, 65535], "will we dine this woman that": [0, 65535], "we dine this woman that i": [0, 65535], "dine this woman that i meane": [0, 65535], "this woman that i meane my": [0, 65535], "woman that i meane my wife": [0, 65535], "that i meane my wife but": [0, 65535], "i meane my wife but i": [0, 65535], "meane my wife but i protest": [0, 65535], "my wife but i protest without": [0, 65535], "wife but i protest without desert": [0, 65535], "but i protest without desert hath": [0, 65535], "i protest without desert hath oftentimes": [0, 65535], "protest without desert hath oftentimes vpbraided": [0, 65535], "without desert hath oftentimes vpbraided me": [0, 65535], "desert hath oftentimes vpbraided me withall": [0, 65535], "hath oftentimes vpbraided me withall to": [0, 65535], "oftentimes vpbraided me withall to her": [0, 65535], "vpbraided me withall to her will": [0, 65535], "me withall to her will we": [0, 65535], "withall to her will we to": [0, 65535], "to her will we to dinner": [0, 65535], "her will we to dinner get": [0, 65535], "will we to dinner get you": [0, 65535], "we to dinner get you home": [0, 65535], "to dinner get you home and": [0, 65535], "dinner get you home and fetch": [0, 65535], "get you home and fetch the": [0, 65535], "you home and fetch the chaine": [0, 65535], "home and fetch the chaine by": [0, 65535], "and fetch the chaine by this": [0, 65535], "fetch the chaine by this i": [0, 65535], "the chaine by this i know": [0, 65535], "chaine by this i know 'tis": [0, 65535], "by this i know 'tis made": [0, 65535], "this i know 'tis made bring": [0, 65535], "i know 'tis made bring it": [0, 65535], "know 'tis made bring it i": [0, 65535], "'tis made bring it i pray": [0, 65535], "made bring it i pray you": [0, 65535], "bring it i pray you to": [0, 65535], "it i pray you to the": [0, 65535], "i pray you to the porpentine": [0, 65535], "pray you to the porpentine for": [0, 65535], "you to the porpentine for there's": [0, 65535], "to the porpentine for there's the": [0, 65535], "the porpentine for there's the house": [0, 65535], "porpentine for there's the house that": [0, 65535], "for there's the house that chaine": [0, 65535], "there's the house that chaine will": [0, 65535], "the house that chaine will i": [0, 65535], "house that chaine will i bestow": [0, 65535], "that chaine will i bestow be": [0, 65535], "chaine will i bestow be it": [0, 65535], "will i bestow be it for": [0, 65535], "i bestow be it for nothing": [0, 65535], "bestow be it for nothing but": [0, 65535], "be it for nothing but to": [0, 65535], "it for nothing but to spight": [0, 65535], "for nothing but to spight my": [0, 65535], "nothing but to spight my wife": [0, 65535], "but to spight my wife vpon": [0, 65535], "to spight my wife vpon mine": [0, 65535], "spight my wife vpon mine hostesse": [0, 65535], "my wife vpon mine hostesse there": [0, 65535], "wife vpon mine hostesse there good": [0, 65535], "vpon mine hostesse there good sir": [0, 65535], "mine hostesse there good sir make": [0, 65535], "hostesse there good sir make haste": [0, 65535], "there good sir make haste since": [0, 65535], "good sir make haste since mine": [0, 65535], "sir make haste since mine owne": [0, 65535], "make haste since mine owne doores": [0, 65535], "haste since mine owne doores refuse": [0, 65535], "since mine owne doores refuse to": [0, 65535], "mine owne doores refuse to entertaine": [0, 65535], "owne doores refuse to entertaine me": [0, 65535], "doores refuse to entertaine me ile": [0, 65535], "refuse to entertaine me ile knocke": [0, 65535], "to entertaine me ile knocke else": [0, 65535], "entertaine me ile knocke else where": [0, 65535], "me ile knocke else where to": [0, 65535], "ile knocke else where to see": [0, 65535], "knocke else where to see if": [0, 65535], "else where to see if they'll": [0, 65535], "where to see if they'll disdaine": [0, 65535], "to see if they'll disdaine me": [0, 65535], "see if they'll disdaine me ang": [0, 65535], "if they'll disdaine me ang ile": [0, 65535], "they'll disdaine me ang ile meet": [0, 65535], "disdaine me ang ile meet you": [0, 65535], "me ang ile meet you at": [0, 65535], "ang ile meet you at that": [0, 65535], "ile meet you at that place": [0, 65535], "meet you at that place some": [0, 65535], "you at that place some houre": [0, 65535], "at that place some houre hence": [0, 65535], "that place some houre hence anti": [0, 65535], "place some houre hence anti do": [0, 65535], "some houre hence anti do so": [0, 65535], "houre hence anti do so this": [0, 65535], "hence anti do so this iest": [0, 65535], "anti do so this iest shall": [0, 65535], "do so this iest shall cost": [0, 65535], "so this iest shall cost me": [0, 65535], "this iest shall cost me some": [0, 65535], "iest shall cost me some expence": [0, 65535], "shall cost me some expence exeunt": [0, 65535], "cost me some expence exeunt enter": [0, 65535], "me some expence exeunt enter iuliana": [0, 65535], "some expence exeunt enter iuliana with": [0, 65535], "expence exeunt enter iuliana with antipholus": [0, 65535], "exeunt enter iuliana with antipholus of": [0, 65535], "enter iuliana with antipholus of siracusia": [0, 65535], "iuliana with antipholus of siracusia iulia": [0, 65535], "with antipholus of siracusia iulia and": [0, 65535], "antipholus of siracusia iulia and may": [0, 65535], "of siracusia iulia and may it": [0, 65535], "siracusia iulia and may it be": [0, 65535], "iulia and may it be that": [0, 65535], "and may it be that you": [0, 65535], "may it be that you haue": [0, 65535], "it be that you haue quite": [0, 65535], "be that you haue quite forgot": [0, 65535], "that you haue quite forgot a": [0, 65535], "you haue quite forgot a husbands": [0, 65535], "haue quite forgot a husbands office": [0, 65535], "quite forgot a husbands office shall": [0, 65535], "forgot a husbands office shall antipholus": [0, 65535], "a husbands office shall antipholus euen": [0, 65535], "husbands office shall antipholus euen in": [0, 65535], "office shall antipholus euen in the": [0, 65535], "shall antipholus euen in the spring": [0, 65535], "antipholus euen in the spring of": [0, 65535], "euen in the spring of loue": [0, 65535], "in the spring of loue thy": [0, 65535], "the spring of loue thy loue": [0, 65535], "spring of loue thy loue springs": [0, 65535], "of loue thy loue springs rot": [0, 65535], "loue thy loue springs rot shall": [0, 65535], "thy loue springs rot shall loue": [0, 65535], "loue springs rot shall loue in": [0, 65535], "springs rot shall loue in buildings": [0, 65535], "rot shall loue in buildings grow": [0, 65535], "shall loue in buildings grow so": [0, 65535], "loue in buildings grow so ruinate": [0, 65535], "in buildings grow so ruinate if": [0, 65535], "buildings grow so ruinate if you": [0, 65535], "grow so ruinate if you did": [0, 65535], "so ruinate if you did wed": [0, 65535], "ruinate if you did wed my": [0, 65535], "if you did wed my sister": [0, 65535], "you did wed my sister for": [0, 65535], "did wed my sister for her": [0, 65535], "wed my sister for her wealth": [0, 65535], "my sister for her wealth then": [0, 65535], "sister for her wealth then for": [0, 65535], "for her wealth then for her": [0, 65535], "her wealth then for her wealths": [0, 65535], "wealth then for her wealths sake": [0, 65535], "then for her wealths sake vse": [0, 65535], "for her wealths sake vse her": [0, 65535], "her wealths sake vse her with": [0, 65535], "wealths sake vse her with more": [0, 65535], "sake vse her with more kindnesse": [0, 65535], "vse her with more kindnesse or": [0, 65535], "her with more kindnesse or if": [0, 65535], "with more kindnesse or if you": [0, 65535], "more kindnesse or if you like": [0, 65535], "kindnesse or if you like else": [0, 65535], "or if you like else where": [0, 65535], "if you like else where doe": [0, 65535], "you like else where doe it": [0, 65535], "like else where doe it by": [0, 65535], "else where doe it by stealth": [0, 65535], "where doe it by stealth muffle": [0, 65535], "doe it by stealth muffle your": [0, 65535], "it by stealth muffle your false": [0, 65535], "by stealth muffle your false loue": [0, 65535], "stealth muffle your false loue with": [0, 65535], "muffle your false loue with some": [0, 65535], "your false loue with some shew": [0, 65535], "false loue with some shew of": [0, 65535], "loue with some shew of blindnesse": [0, 65535], "with some shew of blindnesse let": [0, 65535], "some shew of blindnesse let not": [0, 65535], "shew of blindnesse let not my": [0, 65535], "of blindnesse let not my sister": [0, 65535], "blindnesse let not my sister read": [0, 65535], "let not my sister read it": [0, 65535], "not my sister read it in": [0, 65535], "my sister read it in your": [0, 65535], "sister read it in your eye": [0, 65535], "read it in your eye be": [0, 65535], "it in your eye be not": [0, 65535], "in your eye be not thy": [0, 65535], "your eye be not thy tongue": [0, 65535], "eye be not thy tongue thy": [0, 65535], "be not thy tongue thy owne": [0, 65535], "not thy tongue thy owne shames": [0, 65535], "thy tongue thy owne shames orator": [0, 65535], "tongue thy owne shames orator looke": [0, 65535], "thy owne shames orator looke sweet": [0, 65535], "owne shames orator looke sweet speake": [0, 65535], "shames orator looke sweet speake faire": [0, 65535], "orator looke sweet speake faire become": [0, 65535], "looke sweet speake faire become disloyaltie": [0, 65535], "sweet speake faire become disloyaltie apparell": [0, 65535], "speake faire become disloyaltie apparell vice": [0, 65535], "faire become disloyaltie apparell vice like": [0, 65535], "become disloyaltie apparell vice like vertues": [0, 65535], "disloyaltie apparell vice like vertues harbenger": [0, 65535], "apparell vice like vertues harbenger beare": [0, 65535], "vice like vertues harbenger beare a": [0, 65535], "like vertues harbenger beare a faire": [0, 65535], "vertues harbenger beare a faire presence": [0, 65535], "harbenger beare a faire presence though": [0, 65535], "beare a faire presence though your": [0, 65535], "a faire presence though your heart": [0, 65535], "faire presence though your heart be": [0, 65535], "presence though your heart be tainted": [0, 65535], "though your heart be tainted teach": [0, 65535], "your heart be tainted teach sinne": [0, 65535], "heart be tainted teach sinne the": [0, 65535], "be tainted teach sinne the carriage": [0, 65535], "tainted teach sinne the carriage of": [0, 65535], "teach sinne the carriage of a": [0, 65535], "sinne the carriage of a holy": [0, 65535], "the carriage of a holy saint": [0, 65535], "carriage of a holy saint be": [0, 65535], "of a holy saint be secret": [0, 65535], "a holy saint be secret false": [0, 65535], "holy saint be secret false what": [0, 65535], "saint be secret false what need": [0, 65535], "be secret false what need she": [0, 65535], "secret false what need she be": [0, 65535], "false what need she be acquainted": [0, 65535], "what need she be acquainted what": [0, 65535], "need she be acquainted what simple": [0, 65535], "she be acquainted what simple thiefe": [0, 65535], "be acquainted what simple thiefe brags": [0, 65535], "acquainted what simple thiefe brags of": [0, 65535], "what simple thiefe brags of his": [0, 65535], "simple thiefe brags of his owne": [0, 65535], "thiefe brags of his owne attaine": [0, 65535], "brags of his owne attaine 'tis": [0, 65535], "of his owne attaine 'tis double": [0, 65535], "his owne attaine 'tis double wrong": [0, 65535], "owne attaine 'tis double wrong to": [0, 65535], "attaine 'tis double wrong to truant": [0, 65535], "'tis double wrong to truant with": [0, 65535], "double wrong to truant with your": [0, 65535], "wrong to truant with your bed": [0, 65535], "to truant with your bed and": [0, 65535], "truant with your bed and let": [0, 65535], "with your bed and let her": [0, 65535], "your bed and let her read": [0, 65535], "bed and let her read it": [0, 65535], "and let her read it in": [0, 65535], "let her read it in thy": [0, 65535], "her read it in thy lookes": [0, 65535], "read it in thy lookes at": [0, 65535], "it in thy lookes at boord": [0, 65535], "in thy lookes at boord shame": [0, 65535], "thy lookes at boord shame hath": [0, 65535], "lookes at boord shame hath a": [0, 65535], "at boord shame hath a bastard": [0, 65535], "boord shame hath a bastard fame": [0, 65535], "shame hath a bastard fame well": [0, 65535], "hath a bastard fame well managed": [0, 65535], "a bastard fame well managed ill": [0, 65535], "bastard fame well managed ill deeds": [0, 65535], "fame well managed ill deeds is": [0, 65535], "well managed ill deeds is doubled": [0, 65535], "managed ill deeds is doubled with": [0, 65535], "ill deeds is doubled with an": [0, 65535], "deeds is doubled with an euill": [0, 65535], "is doubled with an euill word": [0, 65535], "doubled with an euill word alas": [0, 65535], "with an euill word alas poore": [0, 65535], "an euill word alas poore women": [0, 65535], "euill word alas poore women make": [0, 65535], "word alas poore women make vs": [0, 65535], "alas poore women make vs not": [0, 65535], "poore women make vs not beleeue": [0, 65535], "women make vs not beleeue being": [0, 65535], "make vs not beleeue being compact": [0, 65535], "vs not beleeue being compact of": [0, 65535], "not beleeue being compact of credit": [0, 65535], "beleeue being compact of credit that": [0, 65535], "being compact of credit that you": [0, 65535], "compact of credit that you loue": [0, 65535], "of credit that you loue vs": [0, 65535], "credit that you loue vs though": [0, 65535], "that you loue vs though others": [0, 65535], "you loue vs though others haue": [0, 65535], "loue vs though others haue the": [0, 65535], "vs though others haue the arme": [0, 65535], "though others haue the arme shew": [0, 65535], "others haue the arme shew vs": [0, 65535], "haue the arme shew vs the": [0, 65535], "the arme shew vs the sleeue": [0, 65535], "arme shew vs the sleeue we": [0, 65535], "shew vs the sleeue we in": [0, 65535], "vs the sleeue we in your": [0, 65535], "the sleeue we in your motion": [0, 65535], "sleeue we in your motion turne": [0, 65535], "we in your motion turne and": [0, 65535], "in your motion turne and you": [0, 65535], "your motion turne and you may": [0, 65535], "motion turne and you may moue": [0, 65535], "turne and you may moue vs": [0, 65535], "and you may moue vs then": [0, 65535], "you may moue vs then gentle": [0, 65535], "may moue vs then gentle brother": [0, 65535], "moue vs then gentle brother get": [0, 65535], "vs then gentle brother get you": [0, 65535], "then gentle brother get you in": [0, 65535], "gentle brother get you in againe": [0, 65535], "brother get you in againe comfort": [0, 65535], "get you in againe comfort my": [0, 65535], "you in againe comfort my sister": [0, 65535], "in againe comfort my sister cheere": [0, 65535], "againe comfort my sister cheere her": [0, 65535], "comfort my sister cheere her call": [0, 65535], "my sister cheere her call her": [0, 65535], "sister cheere her call her wise": [0, 65535], "cheere her call her wise 'tis": [0, 65535], "her call her wise 'tis holy": [0, 65535], "call her wise 'tis holy sport": [0, 65535], "her wise 'tis holy sport to": [0, 65535], "wise 'tis holy sport to be": [0, 65535], "'tis holy sport to be a": [0, 65535], "holy sport to be a little": [0, 65535], "sport to be a little vaine": [0, 65535], "to be a little vaine when": [0, 65535], "be a little vaine when the": [0, 65535], "a little vaine when the sweet": [0, 65535], "little vaine when the sweet breath": [0, 65535], "vaine when the sweet breath of": [0, 65535], "when the sweet breath of flatterie": [0, 65535], "the sweet breath of flatterie conquers": [0, 65535], "sweet breath of flatterie conquers strife": [0, 65535], "breath of flatterie conquers strife s": [0, 65535], "of flatterie conquers strife s anti": [0, 65535], "flatterie conquers strife s anti sweete": [0, 65535], "conquers strife s anti sweete mistris": [0, 65535], "strife s anti sweete mistris what": [0, 65535], "s anti sweete mistris what your": [0, 65535], "anti sweete mistris what your name": [0, 65535], "sweete mistris what your name is": [0, 65535], "mistris what your name is else": [0, 65535], "what your name is else i": [0, 65535], "your name is else i know": [0, 65535], "name is else i know not": [0, 65535], "is else i know not nor": [0, 65535], "else i know not nor by": [0, 65535], "i know not nor by what": [0, 65535], "know not nor by what wonder": [0, 65535], "not nor by what wonder you": [0, 65535], "nor by what wonder you do": [0, 65535], "by what wonder you do hit": [0, 65535], "what wonder you do hit of": [0, 65535], "wonder you do hit of mine": [0, 65535], "you do hit of mine lesse": [0, 65535], "do hit of mine lesse in": [0, 65535], "hit of mine lesse in your": [0, 65535], "of mine lesse in your knowledge": [0, 65535], "mine lesse in your knowledge and": [0, 65535], "lesse in your knowledge and your": [0, 65535], "in your knowledge and your grace": [0, 65535], "your knowledge and your grace you": [0, 65535], "knowledge and your grace you show": [0, 65535], "and your grace you show not": [0, 65535], "your grace you show not then": [0, 65535], "grace you show not then our": [0, 65535], "you show not then our earths": [0, 65535], "show not then our earths wonder": [0, 65535], "not then our earths wonder more": [0, 65535], "then our earths wonder more then": [0, 65535], "our earths wonder more then earth": [0, 65535], "earths wonder more then earth diuine": [0, 65535], "wonder more then earth diuine teach": [0, 65535], "more then earth diuine teach me": [0, 65535], "then earth diuine teach me deere": [0, 65535], "earth diuine teach me deere creature": [0, 65535], "diuine teach me deere creature how": [0, 65535], "teach me deere creature how to": [0, 65535], "me deere creature how to thinke": [0, 65535], "deere creature how to thinke and": [0, 65535], "creature how to thinke and speake": [0, 65535], "how to thinke and speake lay": [0, 65535], "to thinke and speake lay open": [0, 65535], "thinke and speake lay open to": [0, 65535], "and speake lay open to my": [0, 65535], "speake lay open to my earthie": [0, 65535], "lay open to my earthie grosse": [0, 65535], "open to my earthie grosse conceit": [0, 65535], "to my earthie grosse conceit smothred": [0, 65535], "my earthie grosse conceit smothred in": [0, 65535], "earthie grosse conceit smothred in errors": [0, 65535], "grosse conceit smothred in errors feeble": [0, 65535], "conceit smothred in errors feeble shallow": [0, 65535], "smothred in errors feeble shallow weake": [0, 65535], "in errors feeble shallow weake the": [0, 65535], "errors feeble shallow weake the foulded": [0, 65535], "feeble shallow weake the foulded meaning": [0, 65535], "shallow weake the foulded meaning of": [0, 65535], "weake the foulded meaning of your": [0, 65535], "the foulded meaning of your words": [0, 65535], "foulded meaning of your words deceit": [0, 65535], "meaning of your words deceit against": [0, 65535], "of your words deceit against my": [0, 65535], "your words deceit against my soules": [0, 65535], "words deceit against my soules pure": [0, 65535], "deceit against my soules pure truth": [0, 65535], "against my soules pure truth why": [0, 65535], "my soules pure truth why labour": [0, 65535], "soules pure truth why labour you": [0, 65535], "pure truth why labour you to": [0, 65535], "truth why labour you to make": [0, 65535], "why labour you to make it": [0, 65535], "labour you to make it wander": [0, 65535], "you to make it wander in": [0, 65535], "to make it wander in an": [0, 65535], "make it wander in an vnknowne": [0, 65535], "it wander in an vnknowne field": [0, 65535], "wander in an vnknowne field are": [0, 65535], "in an vnknowne field are you": [0, 65535], "an vnknowne field are you a": [0, 65535], "vnknowne field are you a god": [0, 65535], "field are you a god would": [0, 65535], "are you a god would you": [0, 65535], "you a god would you create": [0, 65535], "a god would you create me": [0, 65535], "god would you create me new": [0, 65535], "would you create me new transforme": [0, 65535], "you create me new transforme me": [0, 65535], "create me new transforme me then": [0, 65535], "me new transforme me then and": [0, 65535], "new transforme me then and to": [0, 65535], "transforme me then and to your": [0, 65535], "me then and to your powre": [0, 65535], "then and to your powre ile": [0, 65535], "and to your powre ile yeeld": [0, 65535], "to your powre ile yeeld but": [0, 65535], "your powre ile yeeld but if": [0, 65535], "powre ile yeeld but if that": [0, 65535], "ile yeeld but if that i": [0, 65535], "yeeld but if that i am": [0, 65535], "but if that i am i": [0, 65535], "if that i am i then": [0, 65535], "that i am i then well": [0, 65535], "i am i then well i": [0, 65535], "am i then well i know": [0, 65535], "i then well i know your": [0, 65535], "then well i know your weeping": [0, 65535], "well i know your weeping sister": [0, 65535], "i know your weeping sister is": [0, 65535], "know your weeping sister is no": [0, 65535], "your weeping sister is no wife": [0, 65535], "weeping sister is no wife of": [0, 65535], "sister is no wife of mine": [0, 65535], "is no wife of mine nor": [0, 65535], "no wife of mine nor to": [0, 65535], "wife of mine nor to her": [0, 65535], "of mine nor to her bed": [0, 65535], "mine nor to her bed no": [0, 65535], "nor to her bed no homage": [0, 65535], "to her bed no homage doe": [0, 65535], "her bed no homage doe i": [0, 65535], "bed no homage doe i owe": [0, 65535], "no homage doe i owe farre": [0, 65535], "homage doe i owe farre more": [0, 65535], "doe i owe farre more farre": [0, 65535], "i owe farre more farre more": [0, 65535], "owe farre more farre more to": [0, 65535], "farre more farre more to you": [0, 65535], "more farre more to you doe": [0, 65535], "farre more to you doe i": [0, 65535], "more to you doe i decline": [0, 65535], "to you doe i decline oh": [0, 65535], "you doe i decline oh traine": [0, 65535], "doe i decline oh traine me": [0, 65535], "i decline oh traine me not": [0, 65535], "decline oh traine me not sweet": [0, 65535], "oh traine me not sweet mermaide": [0, 65535], "traine me not sweet mermaide with": [0, 65535], "me not sweet mermaide with thy": [0, 65535], "not sweet mermaide with thy note": [0, 65535], "sweet mermaide with thy note to": [0, 65535], "mermaide with thy note to drowne": [0, 65535], "with thy note to drowne me": [0, 65535], "thy note to drowne me in": [0, 65535], "note to drowne me in thy": [0, 65535], "to drowne me in thy sister": [0, 65535], "drowne me in thy sister floud": [0, 65535], "me in thy sister floud of": [0, 65535], "in thy sister floud of teares": [0, 65535], "thy sister floud of teares sing": [0, 65535], "sister floud of teares sing siren": [0, 65535], "floud of teares sing siren for": [0, 65535], "of teares sing siren for thy": [0, 65535], "teares sing siren for thy selfe": [0, 65535], "sing siren for thy selfe and": [0, 65535], "siren for thy selfe and i": [0, 65535], "for thy selfe and i will": [0, 65535], "thy selfe and i will dote": [0, 65535], "selfe and i will dote spread": [0, 65535], "and i will dote spread ore": [0, 65535], "i will dote spread ore the": [0, 65535], "will dote spread ore the siluer": [0, 65535], "dote spread ore the siluer waues": [0, 65535], "spread ore the siluer waues thy": [0, 65535], "ore the siluer waues thy golden": [0, 65535], "the siluer waues thy golden haires": [0, 65535], "siluer waues thy golden haires and": [0, 65535], "waues thy golden haires and as": [0, 65535], "thy golden haires and as a": [0, 65535], "golden haires and as a bud": [0, 65535], "haires and as a bud ile": [0, 65535], "and as a bud ile take": [0, 65535], "as a bud ile take thee": [0, 65535], "a bud ile take thee and": [0, 65535], "bud ile take thee and there": [0, 65535], "ile take thee and there lie": [0, 65535], "take thee and there lie and": [0, 65535], "thee and there lie and in": [0, 65535], "and there lie and in that": [0, 65535], "there lie and in that glorious": [0, 65535], "lie and in that glorious supposition": [0, 65535], "and in that glorious supposition thinke": [0, 65535], "in that glorious supposition thinke he": [0, 65535], "that glorious supposition thinke he gaines": [0, 65535], "glorious supposition thinke he gaines by": [0, 65535], "supposition thinke he gaines by death": [0, 65535], "thinke he gaines by death that": [0, 65535], "he gaines by death that hath": [0, 65535], "gaines by death that hath such": [0, 65535], "by death that hath such meanes": [0, 65535], "death that hath such meanes to": [0, 65535], "that hath such meanes to die": [0, 65535], "hath such meanes to die let": [0, 65535], "such meanes to die let loue": [0, 65535], "meanes to die let loue being": [0, 65535], "to die let loue being light": [0, 65535], "die let loue being light be": [0, 65535], "let loue being light be drowned": [0, 65535], "loue being light be drowned if": [0, 65535], "being light be drowned if she": [0, 65535], "light be drowned if she sinke": [0, 65535], "be drowned if she sinke luc": [0, 65535], "drowned if she sinke luc what": [0, 65535], "if she sinke luc what are": [0, 65535], "she sinke luc what are you": [0, 65535], "sinke luc what are you mad": [0, 65535], "luc what are you mad that": [0, 65535], "what are you mad that you": [0, 65535], "are you mad that you doe": [0, 65535], "you mad that you doe reason": [0, 65535], "mad that you doe reason so": [0, 65535], "that you doe reason so ant": [0, 65535], "you doe reason so ant not": [0, 65535], "doe reason so ant not mad": [0, 65535], "reason so ant not mad but": [0, 65535], "so ant not mad but mated": [0, 65535], "ant not mad but mated how": [0, 65535], "not mad but mated how i": [0, 65535], "mad but mated how i doe": [0, 65535], "but mated how i doe not": [0, 65535], "mated how i doe not know": [0, 65535], "how i doe not know luc": [0, 65535], "i doe not know luc it": [0, 65535], "doe not know luc it is": [0, 65535], "not know luc it is a": [0, 65535], "know luc it is a fault": [0, 65535], "luc it is a fault that": [0, 65535], "it is a fault that springeth": [0, 65535], "is a fault that springeth from": [0, 65535], "a fault that springeth from your": [0, 65535], "fault that springeth from your eie": [0, 65535], "that springeth from your eie ant": [0, 65535], "springeth from your eie ant for": [0, 65535], "from your eie ant for gazing": [0, 65535], "your eie ant for gazing on": [0, 65535], "eie ant for gazing on your": [0, 65535], "ant for gazing on your beames": [0, 65535], "for gazing on your beames faire": [0, 65535], "gazing on your beames faire sun": [0, 65535], "on your beames faire sun being": [0, 65535], "your beames faire sun being by": [0, 65535], "beames faire sun being by luc": [0, 65535], "faire sun being by luc gaze": [0, 65535], "sun being by luc gaze when": [0, 65535], "being by luc gaze when you": [0, 65535], "by luc gaze when you should": [0, 65535], "luc gaze when you should and": [0, 65535], "gaze when you should and that": [0, 65535], "when you should and that will": [0, 65535], "you should and that will cleere": [0, 65535], "should and that will cleere your": [0, 65535], "and that will cleere your sight": [0, 65535], "that will cleere your sight ant": [0, 65535], "will cleere your sight ant as": [0, 65535], "cleere your sight ant as good": [0, 65535], "your sight ant as good to": [0, 65535], "sight ant as good to winke": [0, 65535], "ant as good to winke sweet": [0, 65535], "as good to winke sweet loue": [0, 65535], "good to winke sweet loue as": [0, 65535], "to winke sweet loue as looke": [0, 65535], "winke sweet loue as looke on": [0, 65535], "sweet loue as looke on night": [0, 65535], "loue as looke on night luc": [0, 65535], "as looke on night luc why": [0, 65535], "looke on night luc why call": [0, 65535], "on night luc why call you": [0, 65535], "night luc why call you me": [0, 65535], "luc why call you me loue": [0, 65535], "why call you me loue call": [0, 65535], "call you me loue call my": [0, 65535], "you me loue call my sister": [0, 65535], "me loue call my sister so": [0, 65535], "loue call my sister so ant": [0, 65535], "call my sister so ant thy": [0, 65535], "my sister so ant thy sisters": [0, 65535], "sister so ant thy sisters sister": [0, 65535], "so ant thy sisters sister luc": [0, 65535], "ant thy sisters sister luc that's": [0, 65535], "thy sisters sister luc that's my": [0, 65535], "sisters sister luc that's my sister": [0, 65535], "sister luc that's my sister ant": [0, 65535], "luc that's my sister ant no": [0, 65535], "that's my sister ant no it": [0, 65535], "my sister ant no it is": [0, 65535], "sister ant no it is thy": [0, 65535], "ant no it is thy selfe": [0, 65535], "no it is thy selfe mine": [0, 65535], "it is thy selfe mine owne": [0, 65535], "is thy selfe mine owne selfes": [0, 65535], "thy selfe mine owne selfes better": [0, 65535], "selfe mine owne selfes better part": [0, 65535], "mine owne selfes better part mine": [0, 65535], "owne selfes better part mine eies": [0, 65535], "selfes better part mine eies cleere": [0, 65535], "better part mine eies cleere eie": [0, 65535], "part mine eies cleere eie my": [0, 65535], "mine eies cleere eie my deere": [0, 65535], "eies cleere eie my deere hearts": [0, 65535], "cleere eie my deere hearts deerer": [0, 65535], "eie my deere hearts deerer heart": [0, 65535], "my deere hearts deerer heart my": [0, 65535], "deere hearts deerer heart my foode": [0, 65535], "hearts deerer heart my foode my": [0, 65535], "deerer heart my foode my fortune": [0, 65535], "heart my foode my fortune and": [0, 65535], "my foode my fortune and my": [0, 65535], "foode my fortune and my sweet": [0, 65535], "my fortune and my sweet hopes": [0, 65535], "fortune and my sweet hopes aime": [0, 65535], "and my sweet hopes aime my": [0, 65535], "my sweet hopes aime my sole": [0, 65535], "sweet hopes aime my sole earths": [0, 65535], "hopes aime my sole earths heauen": [0, 65535], "aime my sole earths heauen and": [0, 65535], "my sole earths heauen and my": [0, 65535], "sole earths heauen and my heauens": [0, 65535], "earths heauen and my heauens claime": [0, 65535], "heauen and my heauens claime luc": [0, 65535], "and my heauens claime luc all": [0, 65535], "my heauens claime luc all this": [0, 65535], "heauens claime luc all this my": [0, 65535], "claime luc all this my sister": [0, 65535], "luc all this my sister is": [0, 65535], "all this my sister is or": [0, 65535], "this my sister is or else": [0, 65535], "my sister is or else should": [0, 65535], "sister is or else should be": [0, 65535], "is or else should be ant": [0, 65535], "or else should be ant call": [0, 65535], "else should be ant call thy": [0, 65535], "should be ant call thy selfe": [0, 65535], "be ant call thy selfe sister": [0, 65535], "ant call thy selfe sister sweet": [0, 65535], "call thy selfe sister sweet for": [0, 65535], "thy selfe sister sweet for i": [0, 65535], "selfe sister sweet for i am": [0, 65535], "sister sweet for i am thee": [0, 65535], "sweet for i am thee thee": [0, 65535], "for i am thee thee will": [0, 65535], "i am thee thee will i": [0, 65535], "am thee thee will i loue": [0, 65535], "thee thee will i loue and": [0, 65535], "thee will i loue and with": [0, 65535], "will i loue and with thee": [0, 65535], "i loue and with thee lead": [0, 65535], "loue and with thee lead my": [0, 65535], "and with thee lead my life": [0, 65535], "with thee lead my life thou": [0, 65535], "thee lead my life thou hast": [0, 65535], "lead my life thou hast no": [0, 65535], "my life thou hast no husband": [0, 65535], "life thou hast no husband yet": [0, 65535], "thou hast no husband yet nor": [0, 65535], "hast no husband yet nor i": [0, 65535], "no husband yet nor i no": [0, 65535], "husband yet nor i no wife": [0, 65535], "yet nor i no wife giue": [0, 65535], "nor i no wife giue me": [0, 65535], "i no wife giue me thy": [0, 65535], "no wife giue me thy hand": [0, 65535], "wife giue me thy hand luc": [0, 65535], "giue me thy hand luc oh": [0, 65535], "me thy hand luc oh soft": [0, 65535], "thy hand luc oh soft sir": [0, 65535], "hand luc oh soft sir hold": [0, 65535], "luc oh soft sir hold you": [0, 65535], "oh soft sir hold you still": [0, 65535], "soft sir hold you still ile": [0, 65535], "sir hold you still ile fetch": [0, 65535], "hold you still ile fetch my": [0, 65535], "you still ile fetch my sister": [0, 65535], "still ile fetch my sister to": [0, 65535], "ile fetch my sister to get": [0, 65535], "fetch my sister to get her": [0, 65535], "my sister to get her good": [0, 65535], "sister to get her good will": [0, 65535], "to get her good will exit": [0, 65535], "get her good will exit enter": [0, 65535], "her good will exit enter dromio": [0, 65535], "good will exit enter dromio siracusia": [0, 65535], "will exit enter dromio siracusia ant": [0, 65535], "exit enter dromio siracusia ant why": [0, 65535], "enter dromio siracusia ant why how": [0, 65535], "dromio siracusia ant why how now": [0, 65535], "siracusia ant why how now dromio": [0, 65535], "ant why how now dromio where": [0, 65535], "why how now dromio where run'st": [0, 65535], "how now dromio where run'st thou": [0, 65535], "now dromio where run'st thou so": [0, 65535], "dromio where run'st thou so fast": [0, 65535], "where run'st thou so fast s": [0, 65535], "run'st thou so fast s dro": [0, 65535], "thou so fast s dro doe": [0, 65535], "so fast s dro doe you": [0, 65535], "fast s dro doe you know": [0, 65535], "s dro doe you know me": [0, 65535], "dro doe you know me sir": [0, 65535], "doe you know me sir am": [0, 65535], "you know me sir am i": [0, 65535], "know me sir am i dromio": [0, 65535], "me sir am i dromio am": [0, 65535], "sir am i dromio am i": [0, 65535], "am i dromio am i your": [0, 65535], "i dromio am i your man": [0, 65535], "dromio am i your man am": [0, 65535], "am i your man am i": [0, 65535], "i your man am i my": [0, 65535], "your man am i my selfe": [0, 65535], "man am i my selfe ant": [0, 65535], "am i my selfe ant thou": [0, 65535], "i my selfe ant thou art": [0, 65535], "my selfe ant thou art dromio": [0, 65535], "selfe ant thou art dromio thou": [0, 65535], "ant thou art dromio thou art": [0, 65535], "thou art dromio thou art my": [0, 65535], "art dromio thou art my man": [0, 65535], "dromio thou art my man thou": [0, 65535], "thou art my man thou art": [0, 65535], "art my man thou art thy": [0, 65535], "my man thou art thy selfe": [0, 65535], "man thou art thy selfe dro": [0, 65535], "thou art thy selfe dro i": [0, 65535], "art thy selfe dro i am": [0, 65535], "thy selfe dro i am an": [0, 65535], "selfe dro i am an asse": [0, 65535], "dro i am an asse i": [0, 65535], "i am an asse i am": [0, 65535], "am an asse i am a": [0, 65535], "an asse i am a womans": [0, 65535], "asse i am a womans man": [0, 65535], "i am a womans man and": [0, 65535], "am a womans man and besides": [0, 65535], "a womans man and besides my": [0, 65535], "womans man and besides my selfe": [0, 65535], "man and besides my selfe ant": [0, 65535], "and besides my selfe ant what": [0, 65535], "besides my selfe ant what womans": [0, 65535], "my selfe ant what womans man": [0, 65535], "selfe ant what womans man and": [0, 65535], "ant what womans man and how": [0, 65535], "what womans man and how besides": [0, 65535], "womans man and how besides thy": [0, 65535], "man and how besides thy selfe": [0, 65535], "and how besides thy selfe dro": [0, 65535], "how besides thy selfe dro marrie": [0, 65535], "besides thy selfe dro marrie sir": [0, 65535], "thy selfe dro marrie sir besides": [0, 65535], "selfe dro marrie sir besides my": [0, 65535], "dro marrie sir besides my selfe": [0, 65535], "marrie sir besides my selfe i": [0, 65535], "sir besides my selfe i am": [0, 65535], "besides my selfe i am due": [0, 65535], "my selfe i am due to": [0, 65535], "selfe i am due to a": [0, 65535], "i am due to a woman": [0, 65535], "am due to a woman one": [0, 65535], "due to a woman one that": [0, 65535], "to a woman one that claimes": [0, 65535], "a woman one that claimes me": [0, 65535], "woman one that claimes me one": [0, 65535], "one that claimes me one that": [0, 65535], "that claimes me one that haunts": [0, 65535], "claimes me one that haunts me": [0, 65535], "me one that haunts me one": [0, 65535], "one that haunts me one that": [0, 65535], "that haunts me one that will": [0, 65535], "haunts me one that will haue": [0, 65535], "me one that will haue me": [0, 65535], "one that will haue me anti": [0, 65535], "that will haue me anti what": [0, 65535], "will haue me anti what claime": [0, 65535], "haue me anti what claime laies": [0, 65535], "me anti what claime laies she": [0, 65535], "anti what claime laies she to": [0, 65535], "what claime laies she to thee": [0, 65535], "claime laies she to thee dro": [0, 65535], "laies she to thee dro marry": [0, 65535], "she to thee dro marry sir": [0, 65535], "to thee dro marry sir such": [0, 65535], "thee dro marry sir such claime": [0, 65535], "dro marry sir such claime as": [0, 65535], "marry sir such claime as you": [0, 65535], "sir such claime as you would": [0, 65535], "such claime as you would lay": [0, 65535], "claime as you would lay to": [0, 65535], "as you would lay to your": [0, 65535], "you would lay to your horse": [0, 65535], "would lay to your horse and": [0, 65535], "lay to your horse and she": [0, 65535], "to your horse and she would": [0, 65535], "your horse and she would haue": [0, 65535], "horse and she would haue me": [0, 65535], "and she would haue me as": [0, 65535], "she would haue me as a": [0, 65535], "would haue me as a beast": [0, 65535], "haue me as a beast not": [0, 65535], "me as a beast not that": [0, 65535], "as a beast not that i": [0, 65535], "a beast not that i beeing": [0, 65535], "beast not that i beeing a": [0, 65535], "not that i beeing a beast": [0, 65535], "that i beeing a beast she": [0, 65535], "i beeing a beast she would": [0, 65535], "beeing a beast she would haue": [0, 65535], "a beast she would haue me": [0, 65535], "beast she would haue me but": [0, 65535], "she would haue me but that": [0, 65535], "would haue me but that she": [0, 65535], "haue me but that she being": [0, 65535], "me but that she being a": [0, 65535], "but that she being a verie": [0, 65535], "that she being a verie beastly": [0, 65535], "she being a verie beastly creature": [0, 65535], "being a verie beastly creature layes": [0, 65535], "a verie beastly creature layes claime": [0, 65535], "verie beastly creature layes claime to": [0, 65535], "beastly creature layes claime to me": [0, 65535], "creature layes claime to me anti": [0, 65535], "layes claime to me anti what": [0, 65535], "claime to me anti what is": [0, 65535], "to me anti what is she": [0, 65535], "me anti what is she dro": [0, 65535], "anti what is she dro a": [0, 65535], "what is she dro a very": [0, 65535], "is she dro a very reuerent": [0, 65535], "she dro a very reuerent body": [0, 65535], "dro a very reuerent body i": [0, 65535], "a very reuerent body i such": [0, 65535], "very reuerent body i such a": [0, 65535], "reuerent body i such a one": [0, 65535], "body i such a one as": [0, 65535], "i such a one as a": [0, 65535], "such a one as a man": [0, 65535], "a one as a man may": [0, 65535], "one as a man may not": [0, 65535], "as a man may not speake": [0, 65535], "a man may not speake of": [0, 65535], "man may not speake of without": [0, 65535], "may not speake of without he": [0, 65535], "not speake of without he say": [0, 65535], "speake of without he say sir": [0, 65535], "of without he say sir reuerence": [0, 65535], "without he say sir reuerence i": [0, 65535], "he say sir reuerence i haue": [0, 65535], "say sir reuerence i haue but": [0, 65535], "sir reuerence i haue but leane": [0, 65535], "reuerence i haue but leane lucke": [0, 65535], "i haue but leane lucke in": [0, 65535], "haue but leane lucke in the": [0, 65535], "but leane lucke in the match": [0, 65535], "leane lucke in the match and": [0, 65535], "lucke in the match and yet": [0, 65535], "in the match and yet is": [0, 65535], "the match and yet is she": [0, 65535], "match and yet is she a": [0, 65535], "and yet is she a wondrous": [0, 65535], "yet is she a wondrous fat": [0, 65535], "is she a wondrous fat marriage": [0, 65535], "she a wondrous fat marriage anti": [0, 65535], "a wondrous fat marriage anti how": [0, 65535], "wondrous fat marriage anti how dost": [0, 65535], "fat marriage anti how dost thou": [0, 65535], "marriage anti how dost thou meane": [0, 65535], "anti how dost thou meane a": [0, 65535], "how dost thou meane a fat": [0, 65535], "dost thou meane a fat marriage": [0, 65535], "thou meane a fat marriage dro": [0, 65535], "meane a fat marriage dro marry": [0, 65535], "a fat marriage dro marry sir": [0, 65535], "fat marriage dro marry sir she's": [0, 65535], "marriage dro marry sir she's the": [0, 65535], "dro marry sir she's the kitchin": [0, 65535], "marry sir she's the kitchin wench": [0, 65535], "sir she's the kitchin wench al": [0, 65535], "she's the kitchin wench al grease": [0, 65535], "the kitchin wench al grease and": [0, 65535], "kitchin wench al grease and i": [0, 65535], "wench al grease and i know": [0, 65535], "al grease and i know not": [0, 65535], "grease and i know not what": [0, 65535], "and i know not what vse": [0, 65535], "i know not what vse to": [0, 65535], "know not what vse to put": [0, 65535], "not what vse to put her": [0, 65535], "what vse to put her too": [0, 65535], "vse to put her too but": [0, 65535], "to put her too but to": [0, 65535], "put her too but to make": [0, 65535], "her too but to make a": [0, 65535], "too but to make a lampe": [0, 65535], "but to make a lampe of": [0, 65535], "to make a lampe of her": [0, 65535], "make a lampe of her and": [0, 65535], "a lampe of her and run": [0, 65535], "lampe of her and run from": [0, 65535], "of her and run from her": [0, 65535], "her and run from her by": [0, 65535], "and run from her by her": [0, 65535], "run from her by her owne": [0, 65535], "from her by her owne light": [0, 65535], "her by her owne light i": [0, 65535], "by her owne light i warrant": [0, 65535], "her owne light i warrant her": [0, 65535], "owne light i warrant her ragges": [0, 65535], "light i warrant her ragges and": [0, 65535], "i warrant her ragges and the": [0, 65535], "warrant her ragges and the tallow": [0, 65535], "her ragges and the tallow in": [0, 65535], "ragges and the tallow in them": [0, 65535], "and the tallow in them will": [0, 65535], "the tallow in them will burne": [0, 65535], "tallow in them will burne a": [0, 65535], "in them will burne a poland": [0, 65535], "them will burne a poland winter": [0, 65535], "will burne a poland winter if": [0, 65535], "burne a poland winter if she": [0, 65535], "a poland winter if she liues": [0, 65535], "poland winter if she liues till": [0, 65535], "winter if she liues till doomesday": [0, 65535], "if she liues till doomesday she'l": [0, 65535], "she liues till doomesday she'l burne": [0, 65535], "liues till doomesday she'l burne a": [0, 65535], "till doomesday she'l burne a weeke": [0, 65535], "doomesday she'l burne a weeke longer": [0, 65535], "she'l burne a weeke longer then": [0, 65535], "burne a weeke longer then the": [0, 65535], "a weeke longer then the whole": [0, 65535], "weeke longer then the whole world": [0, 65535], "longer then the whole world anti": [0, 65535], "then the whole world anti what": [0, 65535], "the whole world anti what complexion": [0, 65535], "whole world anti what complexion is": [0, 65535], "world anti what complexion is she": [0, 65535], "anti what complexion is she of": [0, 65535], "what complexion is she of dro": [0, 65535], "complexion is she of dro swart": [0, 65535], "is she of dro swart like": [0, 65535], "she of dro swart like my": [0, 65535], "of dro swart like my shoo": [0, 65535], "dro swart like my shoo but": [0, 65535], "swart like my shoo but her": [0, 65535], "like my shoo but her face": [0, 65535], "my shoo but her face nothing": [0, 65535], "shoo but her face nothing like": [0, 65535], "but her face nothing like so": [0, 65535], "her face nothing like so cleane": [0, 65535], "face nothing like so cleane kept": [0, 65535], "nothing like so cleane kept for": [0, 65535], "like so cleane kept for why": [0, 65535], "so cleane kept for why she": [0, 65535], "cleane kept for why she sweats": [0, 65535], "kept for why she sweats a": [0, 65535], "for why she sweats a man": [0, 65535], "why she sweats a man may": [0, 65535], "she sweats a man may goe": [0, 65535], "sweats a man may goe o": [0, 65535], "a man may goe o uer": [0, 65535], "man may goe o uer shooes": [0, 65535], "may goe o uer shooes in": [0, 65535], "goe o uer shooes in the": [0, 65535], "o uer shooes in the grime": [0, 65535], "uer shooes in the grime of": [0, 65535], "shooes in the grime of it": [0, 65535], "in the grime of it anti": [0, 65535], "the grime of it anti that's": [0, 65535], "grime of it anti that's a": [0, 65535], "of it anti that's a fault": [0, 65535], "it anti that's a fault that": [0, 65535], "anti that's a fault that water": [0, 65535], "that's a fault that water will": [0, 65535], "a fault that water will mend": [0, 65535], "fault that water will mend dro": [0, 65535], "that water will mend dro no": [0, 65535], "water will mend dro no sir": [0, 65535], "will mend dro no sir 'tis": [0, 65535], "mend dro no sir 'tis in": [0, 65535], "dro no sir 'tis in graine": [0, 65535], "no sir 'tis in graine noahs": [0, 65535], "sir 'tis in graine noahs flood": [0, 65535], "'tis in graine noahs flood could": [0, 65535], "in graine noahs flood could not": [0, 65535], "graine noahs flood could not do": [0, 65535], "noahs flood could not do it": [0, 65535], "flood could not do it anti": [0, 65535], "could not do it anti what's": [0, 65535], "not do it anti what's her": [0, 65535], "do it anti what's her name": [0, 65535], "it anti what's her name dro": [0, 65535], "anti what's her name dro nell": [0, 65535], "what's her name dro nell sir": [0, 65535], "her name dro nell sir but": [0, 65535], "name dro nell sir but her": [0, 65535], "dro nell sir but her name": [0, 65535], "nell sir but her name is": [0, 65535], "sir but her name is three": [0, 65535], "but her name is three quarters": [0, 65535], "her name is three quarters that's": [0, 65535], "name is three quarters that's an": [0, 65535], "is three quarters that's an ell": [0, 65535], "three quarters that's an ell and": [0, 65535], "quarters that's an ell and three": [0, 65535], "that's an ell and three quarters": [0, 65535], "an ell and three quarters will": [0, 65535], "ell and three quarters will not": [0, 65535], "and three quarters will not measure": [0, 65535], "three quarters will not measure her": [0, 65535], "quarters will not measure her from": [0, 65535], "will not measure her from hip": [0, 65535], "not measure her from hip to": [0, 65535], "measure her from hip to hip": [0, 65535], "her from hip to hip anti": [0, 65535], "from hip to hip anti then": [0, 65535], "hip to hip anti then she": [0, 65535], "to hip anti then she beares": [0, 65535], "hip anti then she beares some": [0, 65535], "anti then she beares some bredth": [0, 65535], "then she beares some bredth dro": [0, 65535], "she beares some bredth dro no": [0, 65535], "beares some bredth dro no longer": [0, 65535], "some bredth dro no longer from": [0, 65535], "bredth dro no longer from head": [0, 65535], "dro no longer from head to": [0, 65535], "no longer from head to foot": [0, 65535], "longer from head to foot then": [0, 65535], "from head to foot then from": [0, 65535], "head to foot then from hippe": [0, 65535], "to foot then from hippe to": [0, 65535], "foot then from hippe to hippe": [0, 65535], "then from hippe to hippe she": [0, 65535], "from hippe to hippe she is": [0, 65535], "hippe to hippe she is sphericall": [0, 65535], "to hippe she is sphericall like": [0, 65535], "hippe she is sphericall like a": [0, 65535], "she is sphericall like a globe": [0, 65535], "is sphericall like a globe i": [0, 65535], "sphericall like a globe i could": [0, 65535], "like a globe i could find": [0, 65535], "a globe i could find out": [0, 65535], "globe i could find out countries": [0, 65535], "i could find out countries in": [0, 65535], "could find out countries in her": [0, 65535], "find out countries in her anti": [0, 65535], "out countries in her anti in": [0, 65535], "countries in her anti in what": [0, 65535], "in her anti in what part": [0, 65535], "her anti in what part of": [0, 65535], "anti in what part of her": [0, 65535], "in what part of her body": [0, 65535], "what part of her body stands": [0, 65535], "part of her body stands ireland": [0, 65535], "of her body stands ireland dro": [0, 65535], "her body stands ireland dro marry": [0, 65535], "body stands ireland dro marry sir": [0, 65535], "stands ireland dro marry sir in": [0, 65535], "ireland dro marry sir in her": [0, 65535], "dro marry sir in her buttockes": [0, 65535], "marry sir in her buttockes i": [0, 65535], "sir in her buttockes i found": [0, 65535], "in her buttockes i found it": [0, 65535], "her buttockes i found it out": [0, 65535], "buttockes i found it out by": [0, 65535], "i found it out by the": [0, 65535], "found it out by the bogges": [0, 65535], "it out by the bogges ant": [0, 65535], "out by the bogges ant where": [0, 65535], "by the bogges ant where scotland": [0, 65535], "the bogges ant where scotland dro": [0, 65535], "bogges ant where scotland dro i": [0, 65535], "ant where scotland dro i found": [0, 65535], "where scotland dro i found it": [0, 65535], "scotland dro i found it by": [0, 65535], "dro i found it by the": [0, 65535], "i found it by the barrennesse": [0, 65535], "found it by the barrennesse hard": [0, 65535], "it by the barrennesse hard in": [0, 65535], "by the barrennesse hard in the": [0, 65535], "the barrennesse hard in the palme": [0, 65535], "barrennesse hard in the palme of": [0, 65535], "hard in the palme of the": [0, 65535], "in the palme of the hand": [0, 65535], "the palme of the hand ant": [0, 65535], "palme of the hand ant where": [0, 65535], "of the hand ant where france": [0, 65535], "the hand ant where france dro": [0, 65535], "hand ant where france dro in": [0, 65535], "ant where france dro in her": [0, 65535], "where france dro in her forhead": [0, 65535], "france dro in her forhead arm'd": [0, 65535], "dro in her forhead arm'd and": [0, 65535], "in her forhead arm'd and reuerted": [0, 65535], "her forhead arm'd and reuerted making": [0, 65535], "forhead arm'd and reuerted making warre": [0, 65535], "arm'd and reuerted making warre against": [0, 65535], "and reuerted making warre against her": [0, 65535], "reuerted making warre against her heire": [0, 65535], "making warre against her heire ant": [0, 65535], "warre against her heire ant where": [0, 65535], "against her heire ant where england": [0, 65535], "her heire ant where england dro": [0, 65535], "heire ant where england dro i": [0, 65535], "ant where england dro i look'd": [0, 65535], "where england dro i look'd for": [0, 65535], "england dro i look'd for the": [0, 65535], "dro i look'd for the chalkle": [0, 65535], "i look'd for the chalkle cliffes": [0, 65535], "look'd for the chalkle cliffes but": [0, 65535], "for the chalkle cliffes but i": [0, 65535], "the chalkle cliffes but i could": [0, 65535], "chalkle cliffes but i could find": [0, 65535], "cliffes but i could find no": [0, 65535], "but i could find no whitenesse": [0, 65535], "i could find no whitenesse in": [0, 65535], "could find no whitenesse in them": [0, 65535], "find no whitenesse in them but": [0, 65535], "no whitenesse in them but i": [0, 65535], "whitenesse in them but i guesse": [0, 65535], "in them but i guesse it": [0, 65535], "them but i guesse it stood": [0, 65535], "but i guesse it stood in": [0, 65535], "i guesse it stood in her": [0, 65535], "guesse it stood in her chin": [0, 65535], "it stood in her chin by": [0, 65535], "stood in her chin by the": [0, 65535], "in her chin by the salt": [0, 65535], "her chin by the salt rheume": [0, 65535], "chin by the salt rheume that": [0, 65535], "by the salt rheume that ranne": [0, 65535], "the salt rheume that ranne betweene": [0, 65535], "salt rheume that ranne betweene france": [0, 65535], "rheume that ranne betweene france and": [0, 65535], "that ranne betweene france and it": [0, 65535], "ranne betweene france and it ant": [0, 65535], "betweene france and it ant where": [0, 65535], "france and it ant where spaine": [0, 65535], "and it ant where spaine dro": [0, 65535], "it ant where spaine dro faith": [0, 65535], "ant where spaine dro faith i": [0, 65535], "where spaine dro faith i saw": [0, 65535], "spaine dro faith i saw it": [0, 65535], "dro faith i saw it not": [0, 65535], "faith i saw it not but": [0, 65535], "i saw it not but i": [0, 65535], "saw it not but i felt": [0, 65535], "it not but i felt it": [0, 65535], "not but i felt it hot": [0, 65535], "but i felt it hot in": [0, 65535], "i felt it hot in her": [0, 65535], "felt it hot in her breth": [0, 65535], "it hot in her breth ant": [0, 65535], "hot in her breth ant where": [0, 65535], "in her breth ant where america": [0, 65535], "her breth ant where america the": [0, 65535], "breth ant where america the indies": [0, 65535], "ant where america the indies dro": [0, 65535], "where america the indies dro oh": [0, 65535], "america the indies dro oh sir": [0, 65535], "the indies dro oh sir vpon": [0, 65535], "indies dro oh sir vpon her": [0, 65535], "dro oh sir vpon her nose": [0, 65535], "oh sir vpon her nose all": [0, 65535], "sir vpon her nose all ore": [0, 65535], "vpon her nose all ore embellished": [0, 65535], "her nose all ore embellished with": [0, 65535], "nose all ore embellished with rubies": [0, 65535], "all ore embellished with rubies carbuncles": [0, 65535], "ore embellished with rubies carbuncles saphires": [0, 65535], "embellished with rubies carbuncles saphires declining": [0, 65535], "with rubies carbuncles saphires declining their": [0, 65535], "rubies carbuncles saphires declining their rich": [0, 65535], "carbuncles saphires declining their rich aspect": [0, 65535], "saphires declining their rich aspect to": [0, 65535], "declining their rich aspect to the": [0, 65535], "their rich aspect to the hot": [0, 65535], "rich aspect to the hot breath": [0, 65535], "aspect to the hot breath of": [0, 65535], "to the hot breath of spaine": [0, 65535], "the hot breath of spaine who": [0, 65535], "hot breath of spaine who sent": [0, 65535], "breath of spaine who sent whole": [0, 65535], "of spaine who sent whole armadoes": [0, 65535], "spaine who sent whole armadoes of": [0, 65535], "who sent whole armadoes of carrects": [0, 65535], "sent whole armadoes of carrects to": [0, 65535], "whole armadoes of carrects to be": [0, 65535], "armadoes of carrects to be ballast": [0, 65535], "of carrects to be ballast at": [0, 65535], "carrects to be ballast at her": [0, 65535], "to be ballast at her nose": [0, 65535], "be ballast at her nose anti": [0, 65535], "ballast at her nose anti where": [0, 65535], "at her nose anti where stood": [0, 65535], "her nose anti where stood belgia": [0, 65535], "nose anti where stood belgia the": [0, 65535], "anti where stood belgia the netherlands": [0, 65535], "where stood belgia the netherlands dro": [0, 65535], "stood belgia the netherlands dro oh": [0, 65535], "belgia the netherlands dro oh sir": [0, 65535], "the netherlands dro oh sir i": [0, 65535], "netherlands dro oh sir i did": [0, 65535], "dro oh sir i did not": [0, 65535], "oh sir i did not looke": [0, 65535], "sir i did not looke so": [0, 65535], "i did not looke so low": [0, 65535], "did not looke so low to": [0, 65535], "not looke so low to conclude": [0, 65535], "looke so low to conclude this": [0, 65535], "so low to conclude this drudge": [0, 65535], "low to conclude this drudge or": [0, 65535], "to conclude this drudge or diuiner": [0, 65535], "conclude this drudge or diuiner layd": [0, 65535], "this drudge or diuiner layd claime": [0, 65535], "drudge or diuiner layd claime to": [0, 65535], "or diuiner layd claime to mee": [0, 65535], "diuiner layd claime to mee call'd": [0, 65535], "layd claime to mee call'd mee": [0, 65535], "claime to mee call'd mee dromio": [0, 65535], "to mee call'd mee dromio swore": [0, 65535], "mee call'd mee dromio swore i": [0, 65535], "call'd mee dromio swore i was": [0, 65535], "mee dromio swore i was assur'd": [0, 65535], "dromio swore i was assur'd to": [0, 65535], "swore i was assur'd to her": [0, 65535], "i was assur'd to her told": [0, 65535], "was assur'd to her told me": [0, 65535], "assur'd to her told me what": [0, 65535], "to her told me what priuie": [0, 65535], "her told me what priuie markes": [0, 65535], "told me what priuie markes i": [0, 65535], "me what priuie markes i had": [0, 65535], "what priuie markes i had about": [0, 65535], "priuie markes i had about mee": [0, 65535], "markes i had about mee as": [0, 65535], "i had about mee as the": [0, 65535], "had about mee as the marke": [0, 65535], "about mee as the marke of": [0, 65535], "mee as the marke of my": [0, 65535], "as the marke of my shoulder": [0, 65535], "the marke of my shoulder the": [0, 65535], "marke of my shoulder the mole": [0, 65535], "of my shoulder the mole in": [0, 65535], "my shoulder the mole in my": [0, 65535], "shoulder the mole in my necke": [0, 65535], "the mole in my necke the": [0, 65535], "mole in my necke the great": [0, 65535], "in my necke the great wart": [0, 65535], "my necke the great wart on": [0, 65535], "necke the great wart on my": [0, 65535], "the great wart on my left": [0, 65535], "great wart on my left arme": [0, 65535], "wart on my left arme that": [0, 65535], "on my left arme that i": [0, 65535], "my left arme that i amaz'd": [0, 65535], "left arme that i amaz'd ranne": [0, 65535], "arme that i amaz'd ranne from": [0, 65535], "that i amaz'd ranne from her": [0, 65535], "i amaz'd ranne from her as": [0, 65535], "amaz'd ranne from her as a": [0, 65535], "ranne from her as a witch": [0, 65535], "from her as a witch and": [0, 65535], "her as a witch and i": [0, 65535], "as a witch and i thinke": [0, 65535], "a witch and i thinke if": [0, 65535], "witch and i thinke if my": [0, 65535], "and i thinke if my brest": [0, 65535], "i thinke if my brest had": [0, 65535], "thinke if my brest had not": [0, 65535], "if my brest had not beene": [0, 65535], "my brest had not beene made": [0, 65535], "brest had not beene made of": [0, 65535], "had not beene made of faith": [0, 65535], "not beene made of faith and": [0, 65535], "beene made of faith and my": [0, 65535], "made of faith and my heart": [0, 65535], "of faith and my heart of": [0, 65535], "faith and my heart of steele": [0, 65535], "and my heart of steele she": [0, 65535], "my heart of steele she had": [0, 65535], "heart of steele she had transform'd": [0, 65535], "of steele she had transform'd me": [0, 65535], "steele she had transform'd me to": [0, 65535], "she had transform'd me to a": [0, 65535], "had transform'd me to a curtull": [0, 65535], "transform'd me to a curtull dog": [0, 65535], "me to a curtull dog made": [0, 65535], "to a curtull dog made me": [0, 65535], "a curtull dog made me turne": [0, 65535], "curtull dog made me turne i'th": [0, 65535], "dog made me turne i'th wheele": [0, 65535], "made me turne i'th wheele anti": [0, 65535], "me turne i'th wheele anti go": [0, 65535], "turne i'th wheele anti go hie": [0, 65535], "i'th wheele anti go hie thee": [0, 65535], "wheele anti go hie thee presently": [0, 65535], "anti go hie thee presently post": [0, 65535], "go hie thee presently post to": [0, 65535], "hie thee presently post to the": [0, 65535], "thee presently post to the rode": [0, 65535], "presently post to the rode and": [0, 65535], "post to the rode and if": [0, 65535], "to the rode and if the": [0, 65535], "the rode and if the winde": [0, 65535], "rode and if the winde blow": [0, 65535], "and if the winde blow any": [0, 65535], "if the winde blow any way": [0, 65535], "the winde blow any way from": [0, 65535], "winde blow any way from shore": [0, 65535], "blow any way from shore i": [0, 65535], "any way from shore i will": [0, 65535], "way from shore i will not": [0, 65535], "from shore i will not harbour": [0, 65535], "shore i will not harbour in": [0, 65535], "i will not harbour in this": [0, 65535], "will not harbour in this towne": [0, 65535], "not harbour in this towne to": [0, 65535], "harbour in this towne to night": [0, 65535], "in this towne to night if": [0, 65535], "this towne to night if any": [0, 65535], "towne to night if any barke": [0, 65535], "to night if any barke put": [0, 65535], "night if any barke put forth": [0, 65535], "if any barke put forth come": [0, 65535], "any barke put forth come to": [0, 65535], "barke put forth come to the": [0, 65535], "put forth come to the mart": [0, 65535], "forth come to the mart where": [0, 65535], "come to the mart where i": [0, 65535], "to the mart where i will": [0, 65535], "the mart where i will walke": [0, 65535], "mart where i will walke till": [0, 65535], "where i will walke till thou": [0, 65535], "i will walke till thou returne": [0, 65535], "will walke till thou returne to": [0, 65535], "walke till thou returne to me": [0, 65535], "till thou returne to me if": [0, 65535], "thou returne to me if euerie": [0, 65535], "returne to me if euerie one": [0, 65535], "to me if euerie one knowes": [0, 65535], "me if euerie one knowes vs": [0, 65535], "if euerie one knowes vs and": [0, 65535], "euerie one knowes vs and we": [0, 65535], "one knowes vs and we know": [0, 65535], "knowes vs and we know none": [0, 65535], "vs and we know none 'tis": [0, 65535], "and we know none 'tis time": [0, 65535], "we know none 'tis time i": [0, 65535], "know none 'tis time i thinke": [0, 65535], "none 'tis time i thinke to": [0, 65535], "'tis time i thinke to trudge": [0, 65535], "time i thinke to trudge packe": [0, 65535], "i thinke to trudge packe and": [0, 65535], "thinke to trudge packe and be": [0, 65535], "to trudge packe and be gone": [0, 65535], "trudge packe and be gone dro": [0, 65535], "packe and be gone dro as": [0, 65535], "and be gone dro as from": [0, 65535], "be gone dro as from a": [0, 65535], "gone dro as from a beare": [0, 65535], "dro as from a beare a": [0, 65535], "as from a beare a man": [0, 65535], "from a beare a man would": [0, 65535], "a beare a man would run": [0, 65535], "beare a man would run for": [0, 65535], "a man would run for life": [0, 65535], "man would run for life so": [0, 65535], "would run for life so flie": [0, 65535], "run for life so flie i": [0, 65535], "for life so flie i from": [0, 65535], "life so flie i from her": [0, 65535], "so flie i from her that": [0, 65535], "flie i from her that would": [0, 65535], "i from her that would be": [0, 65535], "from her that would be my": [0, 65535], "her that would be my wife": [0, 65535], "that would be my wife exit": [0, 65535], "would be my wife exit anti": [0, 65535], "be my wife exit anti there's": [0, 65535], "my wife exit anti there's none": [0, 65535], "wife exit anti there's none but": [0, 65535], "exit anti there's none but witches": [0, 65535], "anti there's none but witches do": [0, 65535], "there's none but witches do inhabite": [0, 65535], "none but witches do inhabite heere": [0, 65535], "but witches do inhabite heere and": [0, 65535], "witches do inhabite heere and therefore": [0, 65535], "do inhabite heere and therefore 'tis": [0, 65535], "inhabite heere and therefore 'tis hie": [0, 65535], "heere and therefore 'tis hie time": [0, 65535], "and therefore 'tis hie time that": [0, 65535], "therefore 'tis hie time that i": [0, 65535], "'tis hie time that i were": [0, 65535], "hie time that i were hence": [0, 65535], "time that i were hence she": [0, 65535], "that i were hence she that": [0, 65535], "i were hence she that doth": [0, 65535], "were hence she that doth call": [0, 65535], "hence she that doth call me": [0, 65535], "she that doth call me husband": [0, 65535], "that doth call me husband euen": [0, 65535], "doth call me husband euen my": [0, 65535], "call me husband euen my soule": [0, 65535], "me husband euen my soule doth": [0, 65535], "husband euen my soule doth for": [0, 65535], "euen my soule doth for a": [0, 65535], "my soule doth for a wife": [0, 65535], "soule doth for a wife abhorre": [0, 65535], "doth for a wife abhorre but": [0, 65535], "for a wife abhorre but her": [0, 65535], "a wife abhorre but her faire": [0, 65535], "wife abhorre but her faire sister": [0, 65535], "abhorre but her faire sister possest": [0, 65535], "but her faire sister possest with": [0, 65535], "her faire sister possest with such": [0, 65535], "faire sister possest with such a": [0, 65535], "sister possest with such a gentle": [0, 65535], "possest with such a gentle soueraigne": [0, 65535], "with such a gentle soueraigne grace": [0, 65535], "such a gentle soueraigne grace of": [0, 65535], "a gentle soueraigne grace of such": [0, 65535], "gentle soueraigne grace of such inchanting": [0, 65535], "soueraigne grace of such inchanting presence": [0, 65535], "grace of such inchanting presence and": [0, 65535], "of such inchanting presence and discourse": [0, 65535], "such inchanting presence and discourse hath": [0, 65535], "inchanting presence and discourse hath almost": [0, 65535], "presence and discourse hath almost made": [0, 65535], "and discourse hath almost made me": [0, 65535], "discourse hath almost made me traitor": [0, 65535], "hath almost made me traitor to": [0, 65535], "almost made me traitor to my": [0, 65535], "made me traitor to my selfe": [0, 65535], "me traitor to my selfe but": [0, 65535], "traitor to my selfe but least": [0, 65535], "to my selfe but least my": [0, 65535], "my selfe but least my selfe": [0, 65535], "selfe but least my selfe be": [0, 65535], "but least my selfe be guilty": [0, 65535], "least my selfe be guilty to": [0, 65535], "my selfe be guilty to selfe": [0, 65535], "selfe be guilty to selfe wrong": [0, 65535], "be guilty to selfe wrong ile": [0, 65535], "guilty to selfe wrong ile stop": [0, 65535], "to selfe wrong ile stop mine": [0, 65535], "selfe wrong ile stop mine eares": [0, 65535], "wrong ile stop mine eares against": [0, 65535], "ile stop mine eares against the": [0, 65535], "stop mine eares against the mermaids": [0, 65535], "mine eares against the mermaids song": [0, 65535], "eares against the mermaids song enter": [0, 65535], "against the mermaids song enter angelo": [0, 65535], "the mermaids song enter angelo with": [0, 65535], "mermaids song enter angelo with the": [0, 65535], "song enter angelo with the chaine": [0, 65535], "enter angelo with the chaine ang": [0, 65535], "angelo with the chaine ang mr": [0, 65535], "with the chaine ang mr antipholus": [0, 65535], "the chaine ang mr antipholus anti": [0, 65535], "chaine ang mr antipholus anti i": [0, 65535], "ang mr antipholus anti i that's": [0, 65535], "mr antipholus anti i that's my": [0, 65535], "antipholus anti i that's my name": [0, 65535], "anti i that's my name ang": [0, 65535], "i that's my name ang i": [0, 65535], "that's my name ang i know": [0, 65535], "my name ang i know it": [0, 65535], "name ang i know it well": [0, 65535], "ang i know it well sir": [0, 65535], "i know it well sir loe": [0, 65535], "know it well sir loe here's": [0, 65535], "it well sir loe here's the": [0, 65535], "well sir loe here's the chaine": [0, 65535], "sir loe here's the chaine i": [0, 65535], "loe here's the chaine i thought": [0, 65535], "here's the chaine i thought to": [0, 65535], "the chaine i thought to haue": [0, 65535], "chaine i thought to haue tane": [0, 65535], "i thought to haue tane you": [0, 65535], "thought to haue tane you at": [0, 65535], "to haue tane you at the": [0, 65535], "haue tane you at the porpentine": [0, 65535], "tane you at the porpentine the": [0, 65535], "you at the porpentine the chaine": [0, 65535], "at the porpentine the chaine vnfinish'd": [0, 65535], "the porpentine the chaine vnfinish'd made": [0, 65535], "porpentine the chaine vnfinish'd made me": [0, 65535], "the chaine vnfinish'd made me stay": [0, 65535], "chaine vnfinish'd made me stay thus": [0, 65535], "vnfinish'd made me stay thus long": [0, 65535], "made me stay thus long anti": [0, 65535], "me stay thus long anti what": [0, 65535], "stay thus long anti what is": [0, 65535], "thus long anti what is your": [0, 65535], "long anti what is your will": [0, 65535], "anti what is your will that": [0, 65535], "what is your will that i": [0, 65535], "is your will that i shal": [0, 65535], "your will that i shal do": [0, 65535], "will that i shal do with": [0, 65535], "that i shal do with this": [0, 65535], "i shal do with this ang": [0, 65535], "shal do with this ang what": [0, 65535], "do with this ang what please": [0, 65535], "with this ang what please your": [0, 65535], "this ang what please your selfe": [0, 65535], "ang what please your selfe sir": [0, 65535], "what please your selfe sir i": [0, 65535], "please your selfe sir i haue": [0, 65535], "your selfe sir i haue made": [0, 65535], "selfe sir i haue made it": [0, 65535], "sir i haue made it for": [0, 65535], "i haue made it for you": [0, 65535], "haue made it for you anti": [0, 65535], "made it for you anti made": [0, 65535], "it for you anti made it": [0, 65535], "for you anti made it for": [0, 65535], "you anti made it for me": [0, 65535], "anti made it for me sir": [0, 65535], "made it for me sir i": [0, 65535], "it for me sir i bespoke": [0, 65535], "for me sir i bespoke it": [0, 65535], "me sir i bespoke it not": [0, 65535], "sir i bespoke it not ang": [0, 65535], "i bespoke it not ang not": [0, 65535], "bespoke it not ang not once": [0, 65535], "it not ang not once nor": [0, 65535], "not ang not once nor twice": [0, 65535], "ang not once nor twice but": [0, 65535], "not once nor twice but twentie": [0, 65535], "once nor twice but twentie times": [0, 65535], "nor twice but twentie times you": [0, 65535], "twice but twentie times you haue": [0, 65535], "but twentie times you haue go": [0, 65535], "twentie times you haue go home": [0, 65535], "times you haue go home with": [0, 65535], "you haue go home with it": [0, 65535], "haue go home with it and": [0, 65535], "go home with it and please": [0, 65535], "home with it and please your": [0, 65535], "with it and please your wife": [0, 65535], "it and please your wife withall": [0, 65535], "and please your wife withall and": [0, 65535], "please your wife withall and soone": [0, 65535], "your wife withall and soone at": [0, 65535], "wife withall and soone at supper": [0, 65535], "withall and soone at supper time": [0, 65535], "and soone at supper time ile": [0, 65535], "soone at supper time ile visit": [0, 65535], "at supper time ile visit you": [0, 65535], "supper time ile visit you and": [0, 65535], "time ile visit you and then": [0, 65535], "ile visit you and then receiue": [0, 65535], "visit you and then receiue my": [0, 65535], "you and then receiue my money": [0, 65535], "and then receiue my money for": [0, 65535], "then receiue my money for the": [0, 65535], "receiue my money for the chaine": [0, 65535], "my money for the chaine anti": [0, 65535], "money for the chaine anti i": [0, 65535], "for the chaine anti i pray": [0, 65535], "the chaine anti i pray you": [0, 65535], "chaine anti i pray you sir": [0, 65535], "anti i pray you sir receiue": [0, 65535], "i pray you sir receiue the": [0, 65535], "pray you sir receiue the money": [0, 65535], "you sir receiue the money now": [0, 65535], "sir receiue the money now for": [0, 65535], "receiue the money now for feare": [0, 65535], "the money now for feare you": [0, 65535], "money now for feare you ne're": [0, 65535], "now for feare you ne're see": [0, 65535], "for feare you ne're see chaine": [0, 65535], "feare you ne're see chaine nor": [0, 65535], "you ne're see chaine nor mony": [0, 65535], "ne're see chaine nor mony more": [0, 65535], "see chaine nor mony more ang": [0, 65535], "chaine nor mony more ang you": [0, 65535], "nor mony more ang you are": [0, 65535], "mony more ang you are a": [0, 65535], "more ang you are a merry": [0, 65535], "ang you are a merry man": [0, 65535], "you are a merry man sir": [0, 65535], "are a merry man sir fare": [0, 65535], "a merry man sir fare you": [0, 65535], "merry man sir fare you well": [0, 65535], "man sir fare you well exit": [0, 65535], "sir fare you well exit ant": [0, 65535], "fare you well exit ant what": [0, 65535], "you well exit ant what i": [0, 65535], "well exit ant what i should": [0, 65535], "exit ant what i should thinke": [0, 65535], "ant what i should thinke of": [0, 65535], "what i should thinke of this": [0, 65535], "i should thinke of this i": [0, 65535], "should thinke of this i cannot": [0, 65535], "thinke of this i cannot tell": [0, 65535], "of this i cannot tell but": [0, 65535], "this i cannot tell but this": [0, 65535], "i cannot tell but this i": [0, 65535], "cannot tell but this i thinke": [0, 65535], "tell but this i thinke there's": [0, 65535], "but this i thinke there's no": [0, 65535], "this i thinke there's no man": [0, 65535], "i thinke there's no man is": [0, 65535], "thinke there's no man is so": [0, 65535], "there's no man is so vaine": [0, 65535], "no man is so vaine that": [0, 65535], "man is so vaine that would": [0, 65535], "is so vaine that would refuse": [0, 65535], "so vaine that would refuse so": [0, 65535], "vaine that would refuse so faire": [0, 65535], "that would refuse so faire an": [0, 65535], "would refuse so faire an offer'd": [0, 65535], "refuse so faire an offer'd chaine": [0, 65535], "so faire an offer'd chaine i": [0, 65535], "faire an offer'd chaine i see": [0, 65535], "an offer'd chaine i see a": [0, 65535], "offer'd chaine i see a man": [0, 65535], "chaine i see a man heere": [0, 65535], "i see a man heere needs": [0, 65535], "see a man heere needs not": [0, 65535], "a man heere needs not liue": [0, 65535], "man heere needs not liue by": [0, 65535], "heere needs not liue by shifts": [0, 65535], "needs not liue by shifts when": [0, 65535], "not liue by shifts when in": [0, 65535], "liue by shifts when in the": [0, 65535], "by shifts when in the streets": [0, 65535], "shifts when in the streets he": [0, 65535], "when in the streets he meetes": [0, 65535], "in the streets he meetes such": [0, 65535], "the streets he meetes such golden": [0, 65535], "streets he meetes such golden gifts": [0, 65535], "he meetes such golden gifts ile": [0, 65535], "meetes such golden gifts ile to": [0, 65535], "such golden gifts ile to the": [0, 65535], "golden gifts ile to the mart": [0, 65535], "gifts ile to the mart and": [0, 65535], "ile to the mart and there": [0, 65535], "to the mart and there for": [0, 65535], "the mart and there for dromio": [0, 65535], "mart and there for dromio stay": [0, 65535], "and there for dromio stay if": [0, 65535], "there for dromio stay if any": [0, 65535], "for dromio stay if any ship": [0, 65535], "dromio stay if any ship put": [0, 65535], "stay if any ship put out": [0, 65535], "if any ship put out then": [0, 65535], "any ship put out then straight": [0, 65535], "ship put out then straight away": [0, 65535], "put out then straight away exit": [0, 65535], "actus tertius scena prima enter antipholus of": [0, 65535], "tertius scena prima enter antipholus of ephesus": [0, 65535], "scena prima enter antipholus of ephesus his": [0, 65535], "prima enter antipholus of ephesus his man": [0, 65535], "enter antipholus of ephesus his man dromio": [0, 65535], "antipholus of ephesus his man dromio angelo": [0, 65535], "of ephesus his man dromio angelo the": [0, 65535], "ephesus his man dromio angelo the goldsmith": [0, 65535], "his man dromio angelo the goldsmith and": [0, 65535], "man dromio angelo the goldsmith and balthaser": [0, 65535], "dromio angelo the goldsmith and balthaser the": [0, 65535], "angelo the goldsmith and balthaser the merchant": [0, 65535], "the goldsmith and balthaser the merchant e": [0, 65535], "goldsmith and balthaser the merchant e anti": [0, 65535], "and balthaser the merchant e anti good": [0, 65535], "balthaser the merchant e anti good signior": [0, 65535], "the merchant e anti good signior angelo": [0, 65535], "merchant e anti good signior angelo you": [0, 65535], "e anti good signior angelo you must": [0, 65535], "anti good signior angelo you must excuse": [0, 65535], "good signior angelo you must excuse vs": [0, 65535], "signior angelo you must excuse vs all": [0, 65535], "angelo you must excuse vs all my": [0, 65535], "you must excuse vs all my wife": [0, 65535], "must excuse vs all my wife is": [0, 65535], "excuse vs all my wife is shrewish": [0, 65535], "vs all my wife is shrewish when": [0, 65535], "all my wife is shrewish when i": [0, 65535], "my wife is shrewish when i keepe": [0, 65535], "wife is shrewish when i keepe not": [0, 65535], "is shrewish when i keepe not howres": [0, 65535], "shrewish when i keepe not howres say": [0, 65535], "when i keepe not howres say that": [0, 65535], "i keepe not howres say that i": [0, 65535], "keepe not howres say that i lingerd": [0, 65535], "not howres say that i lingerd with": [0, 65535], "howres say that i lingerd with you": [0, 65535], "say that i lingerd with you at": [0, 65535], "that i lingerd with you at your": [0, 65535], "i lingerd with you at your shop": [0, 65535], "lingerd with you at your shop to": [0, 65535], "with you at your shop to see": [0, 65535], "you at your shop to see the": [0, 65535], "at your shop to see the making": [0, 65535], "your shop to see the making of": [0, 65535], "shop to see the making of her": [0, 65535], "to see the making of her carkanet": [0, 65535], "see the making of her carkanet and": [0, 65535], "the making of her carkanet and that": [0, 65535], "making of her carkanet and that to": [0, 65535], "of her carkanet and that to morrow": [0, 65535], "her carkanet and that to morrow you": [0, 65535], "carkanet and that to morrow you will": [0, 65535], "and that to morrow you will bring": [0, 65535], "that to morrow you will bring it": [0, 65535], "to morrow you will bring it home": [0, 65535], "morrow you will bring it home but": [0, 65535], "you will bring it home but here's": [0, 65535], "will bring it home but here's a": [0, 65535], "bring it home but here's a villaine": [0, 65535], "it home but here's a villaine that": [0, 65535], "home but here's a villaine that would": [0, 65535], "but here's a villaine that would face": [0, 65535], "here's a villaine that would face me": [0, 65535], "a villaine that would face me downe": [0, 65535], "villaine that would face me downe he": [0, 65535], "that would face me downe he met": [0, 65535], "would face me downe he met me": [0, 65535], "face me downe he met me on": [0, 65535], "me downe he met me on the": [0, 65535], "downe he met me on the mart": [0, 65535], "he met me on the mart and": [0, 65535], "met me on the mart and that": [0, 65535], "me on the mart and that i": [0, 65535], "on the mart and that i beat": [0, 65535], "the mart and that i beat him": [0, 65535], "mart and that i beat him and": [0, 65535], "and that i beat him and charg'd": [0, 65535], "that i beat him and charg'd him": [0, 65535], "i beat him and charg'd him with": [0, 65535], "beat him and charg'd him with a": [0, 65535], "him and charg'd him with a thousand": [0, 65535], "and charg'd him with a thousand markes": [0, 65535], "charg'd him with a thousand markes in": [0, 65535], "him with a thousand markes in gold": [0, 65535], "with a thousand markes in gold and": [0, 65535], "a thousand markes in gold and that": [0, 65535], "thousand markes in gold and that i": [0, 65535], "markes in gold and that i did": [0, 65535], "in gold and that i did denie": [0, 65535], "gold and that i did denie my": [0, 65535], "and that i did denie my wife": [0, 65535], "that i did denie my wife and": [0, 65535], "i did denie my wife and house": [0, 65535], "did denie my wife and house thou": [0, 65535], "denie my wife and house thou drunkard": [0, 65535], "my wife and house thou drunkard thou": [0, 65535], "wife and house thou drunkard thou what": [0, 65535], "and house thou drunkard thou what didst": [0, 65535], "house thou drunkard thou what didst thou": [0, 65535], "thou drunkard thou what didst thou meane": [0, 65535], "drunkard thou what didst thou meane by": [0, 65535], "thou what didst thou meane by this": [0, 65535], "what didst thou meane by this e": [0, 65535], "didst thou meane by this e dro": [0, 65535], "thou meane by this e dro say": [0, 65535], "meane by this e dro say what": [0, 65535], "by this e dro say what you": [0, 65535], "this e dro say what you wil": [0, 65535], "e dro say what you wil sir": [0, 65535], "dro say what you wil sir but": [0, 65535], "say what you wil sir but i": [0, 65535], "what you wil sir but i know": [0, 65535], "you wil sir but i know what": [0, 65535], "wil sir but i know what i": [0, 65535], "sir but i know what i know": [0, 65535], "but i know what i know that": [0, 65535], "i know what i know that you": [0, 65535], "know what i know that you beat": [0, 65535], "what i know that you beat me": [0, 65535], "i know that you beat me at": [0, 65535], "know that you beat me at the": [0, 65535], "that you beat me at the mart": [0, 65535], "you beat me at the mart i": [0, 65535], "beat me at the mart i haue": [0, 65535], "me at the mart i haue your": [0, 65535], "at the mart i haue your hand": [0, 65535], "the mart i haue your hand to": [0, 65535], "mart i haue your hand to show": [0, 65535], "i haue your hand to show if": [0, 65535], "haue your hand to show if the": [0, 65535], "your hand to show if the skin": [0, 65535], "hand to show if the skin were": [0, 65535], "to show if the skin were parchment": [0, 65535], "show if the skin were parchment the": [0, 65535], "if the skin were parchment the blows": [0, 65535], "the skin were parchment the blows you": [0, 65535], "skin were parchment the blows you gaue": [0, 65535], "were parchment the blows you gaue were": [0, 65535], "parchment the blows you gaue were ink": [0, 65535], "the blows you gaue were ink your": [0, 65535], "blows you gaue were ink your owne": [0, 65535], "you gaue were ink your owne hand": [0, 65535], "gaue were ink your owne hand writing": [0, 65535], "were ink your owne hand writing would": [0, 65535], "ink your owne hand writing would tell": [0, 65535], "your owne hand writing would tell you": [0, 65535], "owne hand writing would tell you what": [0, 65535], "hand writing would tell you what i": [0, 65535], "writing would tell you what i thinke": [0, 65535], "would tell you what i thinke e": [0, 65535], "tell you what i thinke e ant": [0, 65535], "you what i thinke e ant i": [0, 65535], "what i thinke e ant i thinke": [0, 65535], "i thinke e ant i thinke thou": [0, 65535], "thinke e ant i thinke thou art": [0, 65535], "e ant i thinke thou art an": [0, 65535], "ant i thinke thou art an asse": [0, 65535], "i thinke thou art an asse e": [0, 65535], "thinke thou art an asse e dro": [0, 65535], "thou art an asse e dro marry": [0, 65535], "art an asse e dro marry so": [0, 65535], "an asse e dro marry so it": [0, 65535], "asse e dro marry so it doth": [0, 65535], "e dro marry so it doth appeare": [0, 65535], "dro marry so it doth appeare by": [0, 65535], "marry so it doth appeare by the": [0, 65535], "so it doth appeare by the wrongs": [0, 65535], "it doth appeare by the wrongs i": [0, 65535], "doth appeare by the wrongs i suffer": [0, 65535], "appeare by the wrongs i suffer and": [0, 65535], "by the wrongs i suffer and the": [0, 65535], "the wrongs i suffer and the blowes": [0, 65535], "wrongs i suffer and the blowes i": [0, 65535], "i suffer and the blowes i beare": [0, 65535], "suffer and the blowes i beare i": [0, 65535], "and the blowes i beare i should": [0, 65535], "the blowes i beare i should kicke": [0, 65535], "blowes i beare i should kicke being": [0, 65535], "i beare i should kicke being kickt": [0, 65535], "beare i should kicke being kickt and": [0, 65535], "i should kicke being kickt and being": [0, 65535], "should kicke being kickt and being at": [0, 65535], "kicke being kickt and being at that": [0, 65535], "being kickt and being at that passe": [0, 65535], "kickt and being at that passe you": [0, 65535], "and being at that passe you would": [0, 65535], "being at that passe you would keepe": [0, 65535], "at that passe you would keepe from": [0, 65535], "that passe you would keepe from my": [0, 65535], "passe you would keepe from my heeles": [0, 65535], "you would keepe from my heeles and": [0, 65535], "would keepe from my heeles and beware": [0, 65535], "keepe from my heeles and beware of": [0, 65535], "from my heeles and beware of an": [0, 65535], "my heeles and beware of an asse": [0, 65535], "heeles and beware of an asse e": [0, 65535], "and beware of an asse e an": [0, 65535], "beware of an asse e an y'are": [0, 65535], "of an asse e an y'are sad": [0, 65535], "an asse e an y'are sad signior": [0, 65535], "asse e an y'are sad signior balthazar": [0, 65535], "e an y'are sad signior balthazar pray": [0, 65535], "an y'are sad signior balthazar pray god": [0, 65535], "y'are sad signior balthazar pray god our": [0, 65535], "sad signior balthazar pray god our cheer": [0, 65535], "signior balthazar pray god our cheer may": [0, 65535], "balthazar pray god our cheer may answer": [0, 65535], "pray god our cheer may answer my": [0, 65535], "god our cheer may answer my good": [0, 65535], "our cheer may answer my good will": [0, 65535], "cheer may answer my good will and": [0, 65535], "may answer my good will and your": [0, 65535], "answer my good will and your good": [0, 65535], "my good will and your good welcom": [0, 65535], "good will and your good welcom here": [0, 65535], "will and your good welcom here bal": [0, 65535], "and your good welcom here bal i": [0, 65535], "your good welcom here bal i hold": [0, 65535], "good welcom here bal i hold your": [0, 65535], "welcom here bal i hold your dainties": [0, 65535], "here bal i hold your dainties cheap": [0, 65535], "bal i hold your dainties cheap sir": [0, 65535], "i hold your dainties cheap sir your": [0, 65535], "hold your dainties cheap sir your welcom": [0, 65535], "your dainties cheap sir your welcom deer": [0, 65535], "dainties cheap sir your welcom deer e": [0, 65535], "cheap sir your welcom deer e an": [0, 65535], "sir your welcom deer e an oh": [0, 65535], "your welcom deer e an oh signior": [0, 65535], "welcom deer e an oh signior balthazar": [0, 65535], "deer e an oh signior balthazar either": [0, 65535], "e an oh signior balthazar either at": [0, 65535], "an oh signior balthazar either at flesh": [0, 65535], "oh signior balthazar either at flesh or": [0, 65535], "signior balthazar either at flesh or fish": [0, 65535], "balthazar either at flesh or fish a": [0, 65535], "either at flesh or fish a table": [0, 65535], "at flesh or fish a table full": [0, 65535], "flesh or fish a table full of": [0, 65535], "or fish a table full of welcome": [0, 65535], "fish a table full of welcome makes": [0, 65535], "a table full of welcome makes scarce": [0, 65535], "table full of welcome makes scarce one": [0, 65535], "full of welcome makes scarce one dainty": [0, 65535], "of welcome makes scarce one dainty dish": [0, 65535], "welcome makes scarce one dainty dish bal": [0, 65535], "makes scarce one dainty dish bal good": [0, 65535], "scarce one dainty dish bal good meat": [0, 65535], "one dainty dish bal good meat sir": [0, 65535], "dainty dish bal good meat sir is": [0, 65535], "dish bal good meat sir is co": [0, 65535], "bal good meat sir is co m": [0, 65535], "good meat sir is co m mon": [0, 65535], "meat sir is co m mon that": [0, 65535], "sir is co m mon that euery": [0, 65535], "is co m mon that euery churle": [0, 65535], "co m mon that euery churle affords": [0, 65535], "m mon that euery churle affords anti": [0, 65535], "mon that euery churle affords anti and": [0, 65535], "that euery churle affords anti and welcome": [0, 65535], "euery churle affords anti and welcome more": [0, 65535], "churle affords anti and welcome more common": [0, 65535], "affords anti and welcome more common for": [0, 65535], "anti and welcome more common for thats": [0, 65535], "and welcome more common for thats nothing": [0, 65535], "welcome more common for thats nothing but": [0, 65535], "more common for thats nothing but words": [0, 65535], "common for thats nothing but words bal": [0, 65535], "for thats nothing but words bal small": [0, 65535], "thats nothing but words bal small cheere": [0, 65535], "nothing but words bal small cheere and": [0, 65535], "but words bal small cheere and great": [0, 65535], "words bal small cheere and great welcome": [0, 65535], "bal small cheere and great welcome makes": [0, 65535], "small cheere and great welcome makes a": [0, 65535], "cheere and great welcome makes a merrie": [0, 65535], "and great welcome makes a merrie feast": [0, 65535], "great welcome makes a merrie feast anti": [0, 65535], "welcome makes a merrie feast anti i": [0, 65535], "makes a merrie feast anti i to": [0, 65535], "a merrie feast anti i to a": [0, 65535], "merrie feast anti i to a niggardly": [0, 65535], "feast anti i to a niggardly host": [0, 65535], "anti i to a niggardly host and": [0, 65535], "i to a niggardly host and more": [0, 65535], "to a niggardly host and more sparing": [0, 65535], "a niggardly host and more sparing guest": [0, 65535], "niggardly host and more sparing guest but": [0, 65535], "host and more sparing guest but though": [0, 65535], "and more sparing guest but though my": [0, 65535], "more sparing guest but though my cates": [0, 65535], "sparing guest but though my cates be": [0, 65535], "guest but though my cates be meane": [0, 65535], "but though my cates be meane take": [0, 65535], "though my cates be meane take them": [0, 65535], "my cates be meane take them in": [0, 65535], "cates be meane take them in good": [0, 65535], "be meane take them in good part": [0, 65535], "meane take them in good part better": [0, 65535], "take them in good part better cheere": [0, 65535], "them in good part better cheere may": [0, 65535], "in good part better cheere may you": [0, 65535], "good part better cheere may you haue": [0, 65535], "part better cheere may you haue but": [0, 65535], "better cheere may you haue but not": [0, 65535], "cheere may you haue but not with": [0, 65535], "may you haue but not with better": [0, 65535], "you haue but not with better hart": [0, 65535], "haue but not with better hart but": [0, 65535], "but not with better hart but soft": [0, 65535], "not with better hart but soft my": [0, 65535], "with better hart but soft my doore": [0, 65535], "better hart but soft my doore is": [0, 65535], "hart but soft my doore is lockt": [0, 65535], "but soft my doore is lockt goe": [0, 65535], "soft my doore is lockt goe bid": [0, 65535], "my doore is lockt goe bid them": [0, 65535], "doore is lockt goe bid them let": [0, 65535], "is lockt goe bid them let vs": [0, 65535], "lockt goe bid them let vs in": [0, 65535], "goe bid them let vs in e": [0, 65535], "bid them let vs in e dro": [0, 65535], "them let vs in e dro maud": [0, 65535], "let vs in e dro maud briget": [0, 65535], "vs in e dro maud briget marian": [0, 65535], "in e dro maud briget marian cisley": [0, 65535], "e dro maud briget marian cisley gillian": [0, 65535], "dro maud briget marian cisley gillian ginn": [0, 65535], "maud briget marian cisley gillian ginn s": [0, 65535], "briget marian cisley gillian ginn s dro": [0, 65535], "marian cisley gillian ginn s dro mome": [0, 65535], "cisley gillian ginn s dro mome malthorse": [0, 65535], "gillian ginn s dro mome malthorse capon": [0, 65535], "ginn s dro mome malthorse capon coxcombe": [0, 65535], "s dro mome malthorse capon coxcombe idiot": [0, 65535], "dro mome malthorse capon coxcombe idiot patch": [0, 65535], "mome malthorse capon coxcombe idiot patch either": [0, 65535], "malthorse capon coxcombe idiot patch either get": [0, 65535], "capon coxcombe idiot patch either get thee": [0, 65535], "coxcombe idiot patch either get thee from": [0, 65535], "idiot patch either get thee from the": [0, 65535], "patch either get thee from the dore": [0, 65535], "either get thee from the dore or": [0, 65535], "get thee from the dore or sit": [0, 65535], "thee from the dore or sit downe": [0, 65535], "from the dore or sit downe at": [0, 65535], "the dore or sit downe at the": [0, 65535], "dore or sit downe at the hatch": [0, 65535], "or sit downe at the hatch dost": [0, 65535], "sit downe at the hatch dost thou": [0, 65535], "downe at the hatch dost thou coniure": [0, 65535], "at the hatch dost thou coniure for": [0, 65535], "the hatch dost thou coniure for wenches": [0, 65535], "hatch dost thou coniure for wenches that": [0, 65535], "dost thou coniure for wenches that thou": [0, 65535], "thou coniure for wenches that thou calst": [0, 65535], "coniure for wenches that thou calst for": [0, 65535], "for wenches that thou calst for such": [0, 65535], "wenches that thou calst for such store": [0, 65535], "that thou calst for such store when": [0, 65535], "thou calst for such store when one": [0, 65535], "calst for such store when one is": [0, 65535], "for such store when one is one": [0, 65535], "such store when one is one too": [0, 65535], "store when one is one too many": [0, 65535], "when one is one too many goe": [0, 65535], "one is one too many goe get": [0, 65535], "is one too many goe get thee": [0, 65535], "one too many goe get thee from": [0, 65535], "too many goe get thee from the": [0, 65535], "many goe get thee from the dore": [0, 65535], "goe get thee from the dore e": [0, 65535], "get thee from the dore e dro": [0, 65535], "thee from the dore e dro what": [0, 65535], "from the dore e dro what patch": [0, 65535], "the dore e dro what patch is": [0, 65535], "dore e dro what patch is made": [0, 65535], "e dro what patch is made our": [0, 65535], "dro what patch is made our porter": [0, 65535], "what patch is made our porter my": [0, 65535], "patch is made our porter my master": [0, 65535], "is made our porter my master stayes": [0, 65535], "made our porter my master stayes in": [0, 65535], "our porter my master stayes in the": [0, 65535], "porter my master stayes in the street": [0, 65535], "my master stayes in the street s": [0, 65535], "master stayes in the street s dro": [0, 65535], "stayes in the street s dro let": [0, 65535], "in the street s dro let him": [0, 65535], "the street s dro let him walke": [0, 65535], "street s dro let him walke from": [0, 65535], "s dro let him walke from whence": [0, 65535], "dro let him walke from whence he": [0, 65535], "let him walke from whence he came": [0, 65535], "him walke from whence he came lest": [0, 65535], "walke from whence he came lest hee": [0, 65535], "from whence he came lest hee catch": [0, 65535], "whence he came lest hee catch cold": [0, 65535], "he came lest hee catch cold on's": [0, 65535], "came lest hee catch cold on's feet": [0, 65535], "lest hee catch cold on's feet e": [0, 65535], "hee catch cold on's feet e ant": [0, 65535], "catch cold on's feet e ant who": [0, 65535], "cold on's feet e ant who talks": [0, 65535], "on's feet e ant who talks within": [0, 65535], "feet e ant who talks within there": [0, 65535], "e ant who talks within there hoa": [0, 65535], "ant who talks within there hoa open": [0, 65535], "who talks within there hoa open the": [0, 65535], "talks within there hoa open the dore": [0, 65535], "within there hoa open the dore s": [0, 65535], "there hoa open the dore s dro": [0, 65535], "hoa open the dore s dro right": [0, 65535], "open the dore s dro right sir": [0, 65535], "the dore s dro right sir ile": [0, 65535], "dore s dro right sir ile tell": [0, 65535], "s dro right sir ile tell you": [0, 65535], "dro right sir ile tell you when": [0, 65535], "right sir ile tell you when and": [0, 65535], "sir ile tell you when and you'll": [0, 65535], "ile tell you when and you'll tell": [0, 65535], "tell you when and you'll tell me": [0, 65535], "you when and you'll tell me wherefore": [0, 65535], "when and you'll tell me wherefore ant": [0, 65535], "and you'll tell me wherefore ant wherefore": [0, 65535], "you'll tell me wherefore ant wherefore for": [0, 65535], "tell me wherefore ant wherefore for my": [0, 65535], "me wherefore ant wherefore for my dinner": [0, 65535], "wherefore ant wherefore for my dinner i": [0, 65535], "ant wherefore for my dinner i haue": [0, 65535], "wherefore for my dinner i haue not": [0, 65535], "for my dinner i haue not din'd": [0, 65535], "my dinner i haue not din'd to": [0, 65535], "dinner i haue not din'd to day": [0, 65535], "i haue not din'd to day s": [0, 65535], "haue not din'd to day s dro": [0, 65535], "not din'd to day s dro nor": [0, 65535], "din'd to day s dro nor to": [0, 65535], "to day s dro nor to day": [0, 65535], "day s dro nor to day here": [0, 65535], "s dro nor to day here you": [0, 65535], "dro nor to day here you must": [0, 65535], "nor to day here you must not": [0, 65535], "to day here you must not come": [0, 65535], "day here you must not come againe": [0, 65535], "here you must not come againe when": [0, 65535], "you must not come againe when you": [0, 65535], "must not come againe when you may": [0, 65535], "not come againe when you may anti": [0, 65535], "come againe when you may anti what": [0, 65535], "againe when you may anti what art": [0, 65535], "when you may anti what art thou": [0, 65535], "you may anti what art thou that": [0, 65535], "may anti what art thou that keep'st": [0, 65535], "anti what art thou that keep'st mee": [0, 65535], "what art thou that keep'st mee out": [0, 65535], "art thou that keep'st mee out from": [0, 65535], "thou that keep'st mee out from the": [0, 65535], "that keep'st mee out from the howse": [0, 65535], "keep'st mee out from the howse i": [0, 65535], "mee out from the howse i owe": [0, 65535], "out from the howse i owe s": [0, 65535], "from the howse i owe s dro": [0, 65535], "the howse i owe s dro the": [0, 65535], "howse i owe s dro the porter": [0, 65535], "i owe s dro the porter for": [0, 65535], "owe s dro the porter for this": [0, 65535], "s dro the porter for this time": [0, 65535], "dro the porter for this time sir": [0, 65535], "the porter for this time sir and": [0, 65535], "porter for this time sir and my": [0, 65535], "for this time sir and my name": [0, 65535], "this time sir and my name is": [0, 65535], "time sir and my name is dromio": [0, 65535], "sir and my name is dromio e": [0, 65535], "and my name is dromio e dro": [0, 65535], "my name is dromio e dro o": [0, 65535], "name is dromio e dro o villaine": [0, 65535], "is dromio e dro o villaine thou": [0, 65535], "dromio e dro o villaine thou hast": [0, 65535], "e dro o villaine thou hast stolne": [0, 65535], "dro o villaine thou hast stolne both": [0, 65535], "o villaine thou hast stolne both mine": [0, 65535], "villaine thou hast stolne both mine office": [0, 65535], "thou hast stolne both mine office and": [0, 65535], "hast stolne both mine office and my": [0, 65535], "stolne both mine office and my name": [0, 65535], "both mine office and my name the": [0, 65535], "mine office and my name the one": [0, 65535], "office and my name the one nere": [0, 65535], "and my name the one nere got": [0, 65535], "my name the one nere got me": [0, 65535], "name the one nere got me credit": [0, 65535], "the one nere got me credit the": [0, 65535], "one nere got me credit the other": [0, 65535], "nere got me credit the other mickle": [0, 65535], "got me credit the other mickle blame": [0, 65535], "me credit the other mickle blame if": [0, 65535], "credit the other mickle blame if thou": [0, 65535], "the other mickle blame if thou hadst": [0, 65535], "other mickle blame if thou hadst beene": [0, 65535], "mickle blame if thou hadst beene dromio": [0, 65535], "blame if thou hadst beene dromio to": [0, 65535], "if thou hadst beene dromio to day": [0, 65535], "thou hadst beene dromio to day in": [0, 65535], "hadst beene dromio to day in my": [0, 65535], "beene dromio to day in my place": [0, 65535], "dromio to day in my place thou": [0, 65535], "to day in my place thou wouldst": [0, 65535], "day in my place thou wouldst haue": [0, 65535], "in my place thou wouldst haue chang'd": [0, 65535], "my place thou wouldst haue chang'd thy": [0, 65535], "place thou wouldst haue chang'd thy face": [0, 65535], "thou wouldst haue chang'd thy face for": [0, 65535], "wouldst haue chang'd thy face for a": [0, 65535], "haue chang'd thy face for a name": [0, 65535], "chang'd thy face for a name or": [0, 65535], "thy face for a name or thy": [0, 65535], "face for a name or thy name": [0, 65535], "for a name or thy name for": [0, 65535], "a name or thy name for an": [0, 65535], "name or thy name for an asse": [0, 65535], "or thy name for an asse enter": [0, 65535], "thy name for an asse enter luce": [0, 65535], "name for an asse enter luce luce": [0, 65535], "for an asse enter luce luce what": [0, 65535], "an asse enter luce luce what a": [0, 65535], "asse enter luce luce what a coile": [0, 65535], "enter luce luce what a coile is": [0, 65535], "luce luce what a coile is there": [0, 65535], "luce what a coile is there dromio": [0, 65535], "what a coile is there dromio who": [0, 65535], "a coile is there dromio who are": [0, 65535], "coile is there dromio who are those": [0, 65535], "is there dromio who are those at": [0, 65535], "there dromio who are those at the": [0, 65535], "dromio who are those at the gate": [0, 65535], "who are those at the gate e": [0, 65535], "are those at the gate e dro": [0, 65535], "those at the gate e dro let": [0, 65535], "at the gate e dro let my": [0, 65535], "the gate e dro let my master": [0, 65535], "gate e dro let my master in": [0, 65535], "e dro let my master in luce": [0, 65535], "dro let my master in luce luce": [0, 65535], "let my master in luce luce faith": [0, 65535], "my master in luce luce faith no": [0, 65535], "master in luce luce faith no hee": [0, 65535], "in luce luce faith no hee comes": [0, 65535], "luce luce faith no hee comes too": [0, 65535], "luce faith no hee comes too late": [0, 65535], "faith no hee comes too late and": [0, 65535], "no hee comes too late and so": [0, 65535], "hee comes too late and so tell": [0, 65535], "comes too late and so tell your": [0, 65535], "too late and so tell your master": [0, 65535], "late and so tell your master e": [0, 65535], "and so tell your master e dro": [0, 65535], "so tell your master e dro o": [0, 65535], "tell your master e dro o lord": [0, 65535], "your master e dro o lord i": [0, 65535], "master e dro o lord i must": [0, 65535], "e dro o lord i must laugh": [0, 65535], "dro o lord i must laugh haue": [0, 65535], "o lord i must laugh haue at": [0, 65535], "lord i must laugh haue at you": [0, 65535], "i must laugh haue at you with": [0, 65535], "must laugh haue at you with a": [0, 65535], "laugh haue at you with a prouerbe": [0, 65535], "haue at you with a prouerbe shall": [0, 65535], "at you with a prouerbe shall i": [0, 65535], "you with a prouerbe shall i set": [0, 65535], "with a prouerbe shall i set in": [0, 65535], "a prouerbe shall i set in my": [0, 65535], "prouerbe shall i set in my staffe": [0, 65535], "shall i set in my staffe luce": [0, 65535], "i set in my staffe luce haue": [0, 65535], "set in my staffe luce haue at": [0, 65535], "in my staffe luce haue at you": [0, 65535], "my staffe luce haue at you with": [0, 65535], "staffe luce haue at you with another": [0, 65535], "luce haue at you with another that's": [0, 65535], "haue at you with another that's when": [0, 65535], "at you with another that's when can": [0, 65535], "you with another that's when can you": [0, 65535], "with another that's when can you tell": [0, 65535], "another that's when can you tell s": [0, 65535], "that's when can you tell s dro": [0, 65535], "when can you tell s dro if": [0, 65535], "can you tell s dro if thy": [0, 65535], "you tell s dro if thy name": [0, 65535], "tell s dro if thy name be": [0, 65535], "s dro if thy name be called": [0, 65535], "dro if thy name be called luce": [0, 65535], "if thy name be called luce luce": [0, 65535], "thy name be called luce luce thou": [0, 65535], "name be called luce luce thou hast": [0, 65535], "be called luce luce thou hast an": [0, 65535], "called luce luce thou hast an swer'd": [0, 65535], "luce luce thou hast an swer'd him": [0, 65535], "luce thou hast an swer'd him well": [0, 65535], "thou hast an swer'd him well anti": [0, 65535], "hast an swer'd him well anti doe": [0, 65535], "an swer'd him well anti doe you": [0, 65535], "swer'd him well anti doe you heare": [0, 65535], "him well anti doe you heare you": [0, 65535], "well anti doe you heare you minion": [0, 65535], "anti doe you heare you minion you'll": [0, 65535], "doe you heare you minion you'll let": [0, 65535], "you heare you minion you'll let vs": [0, 65535], "heare you minion you'll let vs in": [0, 65535], "you minion you'll let vs in i": [0, 65535], "minion you'll let vs in i hope": [0, 65535], "you'll let vs in i hope luce": [0, 65535], "let vs in i hope luce i": [0, 65535], "vs in i hope luce i thought": [0, 65535], "in i hope luce i thought to": [0, 65535], "i hope luce i thought to haue": [0, 65535], "hope luce i thought to haue askt": [0, 65535], "luce i thought to haue askt you": [0, 65535], "i thought to haue askt you s": [0, 65535], "thought to haue askt you s dro": [0, 65535], "to haue askt you s dro and": [0, 65535], "haue askt you s dro and you": [0, 65535], "askt you s dro and you said": [0, 65535], "you s dro and you said no": [0, 65535], "s dro and you said no e": [0, 65535], "dro and you said no e dro": [0, 65535], "and you said no e dro so": [0, 65535], "you said no e dro so come": [0, 65535], "said no e dro so come helpe": [0, 65535], "no e dro so come helpe well": [0, 65535], "e dro so come helpe well strooke": [0, 65535], "dro so come helpe well strooke there": [0, 65535], "so come helpe well strooke there was": [0, 65535], "come helpe well strooke there was blow": [0, 65535], "helpe well strooke there was blow for": [0, 65535], "well strooke there was blow for blow": [0, 65535], "strooke there was blow for blow anti": [0, 65535], "there was blow for blow anti thou": [0, 65535], "was blow for blow anti thou baggage": [0, 65535], "blow for blow anti thou baggage let": [0, 65535], "for blow anti thou baggage let me": [0, 65535], "blow anti thou baggage let me in": [0, 65535], "anti thou baggage let me in luce": [0, 65535], "thou baggage let me in luce can": [0, 65535], "baggage let me in luce can you": [0, 65535], "let me in luce can you tell": [0, 65535], "me in luce can you tell for": [0, 65535], "in luce can you tell for whose": [0, 65535], "luce can you tell for whose sake": [0, 65535], "can you tell for whose sake e": [0, 65535], "you tell for whose sake e drom": [0, 65535], "tell for whose sake e drom master": [0, 65535], "for whose sake e drom master knocke": [0, 65535], "whose sake e drom master knocke the": [0, 65535], "sake e drom master knocke the doore": [0, 65535], "e drom master knocke the doore hard": [0, 65535], "drom master knocke the doore hard luce": [0, 65535], "master knocke the doore hard luce let": [0, 65535], "knocke the doore hard luce let him": [0, 65535], "the doore hard luce let him knocke": [0, 65535], "doore hard luce let him knocke till": [0, 65535], "hard luce let him knocke till it": [0, 65535], "luce let him knocke till it ake": [0, 65535], "let him knocke till it ake anti": [0, 65535], "him knocke till it ake anti you'll": [0, 65535], "knocke till it ake anti you'll crie": [0, 65535], "till it ake anti you'll crie for": [0, 65535], "it ake anti you'll crie for this": [0, 65535], "ake anti you'll crie for this minion": [0, 65535], "anti you'll crie for this minion if": [0, 65535], "you'll crie for this minion if i": [0, 65535], "crie for this minion if i beat": [0, 65535], "for this minion if i beat the": [0, 65535], "this minion if i beat the doore": [0, 65535], "minion if i beat the doore downe": [0, 65535], "if i beat the doore downe luce": [0, 65535], "i beat the doore downe luce what": [0, 65535], "beat the doore downe luce what needs": [0, 65535], "the doore downe luce what needs all": [0, 65535], "doore downe luce what needs all that": [0, 65535], "downe luce what needs all that and": [0, 65535], "luce what needs all that and a": [0, 65535], "what needs all that and a paire": [0, 65535], "needs all that and a paire of": [0, 65535], "all that and a paire of stocks": [0, 65535], "that and a paire of stocks in": [0, 65535], "and a paire of stocks in the": [0, 65535], "a paire of stocks in the towne": [0, 65535], "paire of stocks in the towne enter": [0, 65535], "of stocks in the towne enter adriana": [0, 65535], "stocks in the towne enter adriana adr": [0, 65535], "in the towne enter adriana adr who": [0, 65535], "the towne enter adriana adr who is": [0, 65535], "towne enter adriana adr who is that": [0, 65535], "enter adriana adr who is that at": [0, 65535], "adriana adr who is that at the": [0, 65535], "adr who is that at the doore": [0, 65535], "who is that at the doore that": [0, 65535], "is that at the doore that keeps": [0, 65535], "that at the doore that keeps all": [0, 65535], "at the doore that keeps all this": [0, 65535], "the doore that keeps all this noise": [0, 65535], "doore that keeps all this noise s": [0, 65535], "that keeps all this noise s dro": [0, 65535], "keeps all this noise s dro by": [0, 65535], "all this noise s dro by my": [0, 65535], "this noise s dro by my troth": [0, 65535], "noise s dro by my troth your": [0, 65535], "s dro by my troth your towne": [0, 65535], "dro by my troth your towne is": [0, 65535], "by my troth your towne is troubled": [0, 65535], "my troth your towne is troubled with": [0, 65535], "troth your towne is troubled with vnruly": [0, 65535], "your towne is troubled with vnruly boies": [0, 65535], "towne is troubled with vnruly boies anti": [0, 65535], "is troubled with vnruly boies anti are": [0, 65535], "troubled with vnruly boies anti are you": [0, 65535], "with vnruly boies anti are you there": [0, 65535], "vnruly boies anti are you there wife": [0, 65535], "boies anti are you there wife you": [0, 65535], "anti are you there wife you might": [0, 65535], "are you there wife you might haue": [0, 65535], "you there wife you might haue come": [0, 65535], "there wife you might haue come before": [0, 65535], "wife you might haue come before adri": [0, 65535], "you might haue come before adri your": [0, 65535], "might haue come before adri your wife": [0, 65535], "haue come before adri your wife sir": [0, 65535], "come before adri your wife sir knaue": [0, 65535], "before adri your wife sir knaue go": [0, 65535], "adri your wife sir knaue go get": [0, 65535], "your wife sir knaue go get you": [0, 65535], "wife sir knaue go get you from": [0, 65535], "sir knaue go get you from the": [0, 65535], "knaue go get you from the dore": [0, 65535], "go get you from the dore e": [0, 65535], "get you from the dore e dro": [0, 65535], "you from the dore e dro if": [0, 65535], "from the dore e dro if you": [0, 65535], "the dore e dro if you went": [0, 65535], "dore e dro if you went in": [0, 65535], "e dro if you went in paine": [0, 65535], "dro if you went in paine master": [0, 65535], "if you went in paine master this": [0, 65535], "you went in paine master this knaue": [0, 65535], "went in paine master this knaue wold": [0, 65535], "in paine master this knaue wold goe": [0, 65535], "paine master this knaue wold goe sore": [0, 65535], "master this knaue wold goe sore angelo": [0, 65535], "this knaue wold goe sore angelo heere": [0, 65535], "knaue wold goe sore angelo heere is": [0, 65535], "wold goe sore angelo heere is neither": [0, 65535], "goe sore angelo heere is neither cheere": [0, 65535], "sore angelo heere is neither cheere sir": [0, 65535], "angelo heere is neither cheere sir nor": [0, 65535], "heere is neither cheere sir nor welcome": [0, 65535], "is neither cheere sir nor welcome we": [0, 65535], "neither cheere sir nor welcome we would": [0, 65535], "cheere sir nor welcome we would faine": [0, 65535], "sir nor welcome we would faine haue": [0, 65535], "nor welcome we would faine haue either": [0, 65535], "welcome we would faine haue either baltz": [0, 65535], "we would faine haue either baltz in": [0, 65535], "would faine haue either baltz in debating": [0, 65535], "faine haue either baltz in debating which": [0, 65535], "haue either baltz in debating which was": [0, 65535], "either baltz in debating which was best": [0, 65535], "baltz in debating which was best wee": [0, 65535], "in debating which was best wee shall": [0, 65535], "debating which was best wee shall part": [0, 65535], "which was best wee shall part with": [0, 65535], "was best wee shall part with neither": [0, 65535], "best wee shall part with neither e": [0, 65535], "wee shall part with neither e dro": [0, 65535], "shall part with neither e dro they": [0, 65535], "part with neither e dro they stand": [0, 65535], "with neither e dro they stand at": [0, 65535], "neither e dro they stand at the": [0, 65535], "e dro they stand at the doore": [0, 65535], "dro they stand at the doore master": [0, 65535], "they stand at the doore master bid": [0, 65535], "stand at the doore master bid them": [0, 65535], "at the doore master bid them welcome": [0, 65535], "the doore master bid them welcome hither": [0, 65535], "doore master bid them welcome hither anti": [0, 65535], "master bid them welcome hither anti there": [0, 65535], "bid them welcome hither anti there is": [0, 65535], "them welcome hither anti there is something": [0, 65535], "welcome hither anti there is something in": [0, 65535], "hither anti there is something in the": [0, 65535], "anti there is something in the winde": [0, 65535], "there is something in the winde that": [0, 65535], "is something in the winde that we": [0, 65535], "something in the winde that we cannot": [0, 65535], "in the winde that we cannot get": [0, 65535], "the winde that we cannot get in": [0, 65535], "winde that we cannot get in e": [0, 65535], "that we cannot get in e dro": [0, 65535], "we cannot get in e dro you": [0, 65535], "cannot get in e dro you would": [0, 65535], "get in e dro you would say": [0, 65535], "in e dro you would say so": [0, 65535], "e dro you would say so master": [0, 65535], "dro you would say so master if": [0, 65535], "you would say so master if your": [0, 65535], "would say so master if your garments": [0, 65535], "say so master if your garments were": [0, 65535], "so master if your garments were thin": [0, 65535], "master if your garments were thin your": [0, 65535], "if your garments were thin your cake": [0, 65535], "your garments were thin your cake here": [0, 65535], "garments were thin your cake here is": [0, 65535], "were thin your cake here is warme": [0, 65535], "thin your cake here is warme within": [0, 65535], "your cake here is warme within you": [0, 65535], "cake here is warme within you stand": [0, 65535], "here is warme within you stand here": [0, 65535], "is warme within you stand here in": [0, 65535], "warme within you stand here in the": [0, 65535], "within you stand here in the cold": [0, 65535], "you stand here in the cold it": [0, 65535], "stand here in the cold it would": [0, 65535], "here in the cold it would make": [0, 65535], "in the cold it would make a": [0, 65535], "the cold it would make a man": [0, 65535], "cold it would make a man mad": [0, 65535], "it would make a man mad as": [0, 65535], "would make a man mad as a": [0, 65535], "make a man mad as a bucke": [0, 65535], "a man mad as a bucke to": [0, 65535], "man mad as a bucke to be": [0, 65535], "mad as a bucke to be so": [0, 65535], "as a bucke to be so bought": [0, 65535], "a bucke to be so bought and": [0, 65535], "bucke to be so bought and sold": [0, 65535], "to be so bought and sold ant": [0, 65535], "be so bought and sold ant go": [0, 65535], "so bought and sold ant go fetch": [0, 65535], "bought and sold ant go fetch me": [0, 65535], "and sold ant go fetch me something": [0, 65535], "sold ant go fetch me something ile": [0, 65535], "ant go fetch me something ile break": [0, 65535], "go fetch me something ile break ope": [0, 65535], "fetch me something ile break ope the": [0, 65535], "me something ile break ope the gate": [0, 65535], "something ile break ope the gate s": [0, 65535], "ile break ope the gate s dro": [0, 65535], "break ope the gate s dro breake": [0, 65535], "ope the gate s dro breake any": [0, 65535], "the gate s dro breake any breaking": [0, 65535], "gate s dro breake any breaking here": [0, 65535], "s dro breake any breaking here and": [0, 65535], "dro breake any breaking here and ile": [0, 65535], "breake any breaking here and ile breake": [0, 65535], "any breaking here and ile breake your": [0, 65535], "breaking here and ile breake your knaues": [0, 65535], "here and ile breake your knaues pate": [0, 65535], "and ile breake your knaues pate e": [0, 65535], "ile breake your knaues pate e dro": [0, 65535], "breake your knaues pate e dro a": [0, 65535], "your knaues pate e dro a man": [0, 65535], "knaues pate e dro a man may": [0, 65535], "pate e dro a man may breake": [0, 65535], "e dro a man may breake a": [0, 65535], "dro a man may breake a word": [0, 65535], "a man may breake a word with": [0, 65535], "man may breake a word with your": [0, 65535], "may breake a word with your sir": [0, 65535], "breake a word with your sir and": [0, 65535], "a word with your sir and words": [0, 65535], "word with your sir and words are": [0, 65535], "with your sir and words are but": [0, 65535], "your sir and words are but winde": [0, 65535], "sir and words are but winde i": [0, 65535], "and words are but winde i and": [0, 65535], "words are but winde i and breake": [0, 65535], "are but winde i and breake it": [0, 65535], "but winde i and breake it in": [0, 65535], "winde i and breake it in your": [0, 65535], "i and breake it in your face": [0, 65535], "and breake it in your face so": [0, 65535], "breake it in your face so he": [0, 65535], "it in your face so he break": [0, 65535], "in your face so he break it": [0, 65535], "your face so he break it not": [0, 65535], "face so he break it not behinde": [0, 65535], "so he break it not behinde s": [0, 65535], "he break it not behinde s dro": [0, 65535], "break it not behinde s dro it": [0, 65535], "it not behinde s dro it seemes": [0, 65535], "not behinde s dro it seemes thou": [0, 65535], "behinde s dro it seemes thou want'st": [0, 65535], "s dro it seemes thou want'st breaking": [0, 65535], "dro it seemes thou want'st breaking out": [0, 65535], "it seemes thou want'st breaking out vpon": [0, 65535], "seemes thou want'st breaking out vpon thee": [0, 65535], "thou want'st breaking out vpon thee hinde": [0, 65535], "want'st breaking out vpon thee hinde e": [0, 65535], "breaking out vpon thee hinde e dro": [0, 65535], "out vpon thee hinde e dro here's": [0, 65535], "vpon thee hinde e dro here's too": [0, 65535], "thee hinde e dro here's too much": [0, 65535], "hinde e dro here's too much out": [0, 65535], "e dro here's too much out vpon": [0, 65535], "dro here's too much out vpon thee": [0, 65535], "here's too much out vpon thee i": [0, 65535], "too much out vpon thee i pray": [0, 65535], "much out vpon thee i pray thee": [0, 65535], "out vpon thee i pray thee let": [0, 65535], "vpon thee i pray thee let me": [0, 65535], "thee i pray thee let me in": [0, 65535], "i pray thee let me in s": [0, 65535], "pray thee let me in s dro": [0, 65535], "thee let me in s dro i": [0, 65535], "let me in s dro i when": [0, 65535], "me in s dro i when fowles": [0, 65535], "in s dro i when fowles haue": [0, 65535], "s dro i when fowles haue no": [0, 65535], "dro i when fowles haue no feathers": [0, 65535], "i when fowles haue no feathers and": [0, 65535], "when fowles haue no feathers and fish": [0, 65535], "fowles haue no feathers and fish haue": [0, 65535], "haue no feathers and fish haue no": [0, 65535], "no feathers and fish haue no fin": [0, 65535], "feathers and fish haue no fin ant": [0, 65535], "and fish haue no fin ant well": [0, 65535], "fish haue no fin ant well ile": [0, 65535], "haue no fin ant well ile breake": [0, 65535], "no fin ant well ile breake in": [0, 65535], "fin ant well ile breake in go": [0, 65535], "ant well ile breake in go borrow": [0, 65535], "well ile breake in go borrow me": [0, 65535], "ile breake in go borrow me a": [0, 65535], "breake in go borrow me a crow": [0, 65535], "in go borrow me a crow e": [0, 65535], "go borrow me a crow e dro": [0, 65535], "borrow me a crow e dro a": [0, 65535], "me a crow e dro a crow": [0, 65535], "a crow e dro a crow without": [0, 65535], "crow e dro a crow without feather": [0, 65535], "e dro a crow without feather master": [0, 65535], "dro a crow without feather master meane": [0, 65535], "a crow without feather master meane you": [0, 65535], "crow without feather master meane you so": [0, 65535], "without feather master meane you so for": [0, 65535], "feather master meane you so for a": [0, 65535], "master meane you so for a fish": [0, 65535], "meane you so for a fish without": [0, 65535], "you so for a fish without a": [0, 65535], "so for a fish without a finne": [0, 65535], "for a fish without a finne ther's": [0, 65535], "a fish without a finne ther's a": [0, 65535], "fish without a finne ther's a fowle": [0, 65535], "without a finne ther's a fowle without": [0, 65535], "a finne ther's a fowle without a": [0, 65535], "finne ther's a fowle without a fether": [0, 65535], "ther's a fowle without a fether if": [0, 65535], "a fowle without a fether if a": [0, 65535], "fowle without a fether if a crow": [0, 65535], "without a fether if a crow help": [0, 65535], "a fether if a crow help vs": [0, 65535], "fether if a crow help vs in": [0, 65535], "if a crow help vs in sirra": [0, 65535], "a crow help vs in sirra wee'll": [0, 65535], "crow help vs in sirra wee'll plucke": [0, 65535], "help vs in sirra wee'll plucke a": [0, 65535], "vs in sirra wee'll plucke a crow": [0, 65535], "in sirra wee'll plucke a crow together": [0, 65535], "sirra wee'll plucke a crow together ant": [0, 65535], "wee'll plucke a crow together ant go": [0, 65535], "plucke a crow together ant go get": [0, 65535], "a crow together ant go get thee": [0, 65535], "crow together ant go get thee gon": [0, 65535], "together ant go get thee gon fetch": [0, 65535], "ant go get thee gon fetch me": [0, 65535], "go get thee gon fetch me an": [0, 65535], "get thee gon fetch me an iron": [0, 65535], "thee gon fetch me an iron crow": [0, 65535], "gon fetch me an iron crow balth": [0, 65535], "fetch me an iron crow balth haue": [0, 65535], "me an iron crow balth haue patience": [0, 65535], "an iron crow balth haue patience sir": [0, 65535], "iron crow balth haue patience sir oh": [0, 65535], "crow balth haue patience sir oh let": [0, 65535], "balth haue patience sir oh let it": [0, 65535], "haue patience sir oh let it not": [0, 65535], "patience sir oh let it not be": [0, 65535], "sir oh let it not be so": [0, 65535], "oh let it not be so heerein": [0, 65535], "let it not be so heerein you": [0, 65535], "it not be so heerein you warre": [0, 65535], "not be so heerein you warre against": [0, 65535], "be so heerein you warre against your": [0, 65535], "so heerein you warre against your reputation": [0, 65535], "heerein you warre against your reputation and": [0, 65535], "you warre against your reputation and draw": [0, 65535], "warre against your reputation and draw within": [0, 65535], "against your reputation and draw within the": [0, 65535], "your reputation and draw within the compasse": [0, 65535], "reputation and draw within the compasse of": [0, 65535], "and draw within the compasse of suspect": [0, 65535], "draw within the compasse of suspect th'": [0, 65535], "within the compasse of suspect th' vnuiolated": [0, 65535], "the compasse of suspect th' vnuiolated honor": [0, 65535], "compasse of suspect th' vnuiolated honor of": [0, 65535], "of suspect th' vnuiolated honor of your": [0, 65535], "suspect th' vnuiolated honor of your wife": [0, 65535], "th' vnuiolated honor of your wife once": [0, 65535], "vnuiolated honor of your wife once this": [0, 65535], "honor of your wife once this your": [0, 65535], "of your wife once this your long": [0, 65535], "your wife once this your long experience": [0, 65535], "wife once this your long experience of": [0, 65535], "once this your long experience of your": [0, 65535], "this your long experience of your wisedome": [0, 65535], "your long experience of your wisedome her": [0, 65535], "long experience of your wisedome her sober": [0, 65535], "experience of your wisedome her sober vertue": [0, 65535], "of your wisedome her sober vertue yeares": [0, 65535], "your wisedome her sober vertue yeares and": [0, 65535], "wisedome her sober vertue yeares and modestie": [0, 65535], "her sober vertue yeares and modestie plead": [0, 65535], "sober vertue yeares and modestie plead on": [0, 65535], "vertue yeares and modestie plead on your": [0, 65535], "yeares and modestie plead on your part": [0, 65535], "and modestie plead on your part some": [0, 65535], "modestie plead on your part some cause": [0, 65535], "plead on your part some cause to": [0, 65535], "on your part some cause to you": [0, 65535], "your part some cause to you vnknowne": [0, 65535], "part some cause to you vnknowne and": [0, 65535], "some cause to you vnknowne and doubt": [0, 65535], "cause to you vnknowne and doubt not": [0, 65535], "to you vnknowne and doubt not sir": [0, 65535], "you vnknowne and doubt not sir but": [0, 65535], "vnknowne and doubt not sir but she": [0, 65535], "and doubt not sir but she will": [0, 65535], "doubt not sir but she will well": [0, 65535], "not sir but she will well excuse": [0, 65535], "sir but she will well excuse why": [0, 65535], "but she will well excuse why at": [0, 65535], "she will well excuse why at this": [0, 65535], "will well excuse why at this time": [0, 65535], "well excuse why at this time the": [0, 65535], "excuse why at this time the dores": [0, 65535], "why at this time the dores are": [0, 65535], "at this time the dores are made": [0, 65535], "this time the dores are made against": [0, 65535], "time the dores are made against you": [0, 65535], "the dores are made against you be": [0, 65535], "dores are made against you be rul'd": [0, 65535], "are made against you be rul'd by": [0, 65535], "made against you be rul'd by me": [0, 65535], "against you be rul'd by me depart": [0, 65535], "you be rul'd by me depart in": [0, 65535], "be rul'd by me depart in patience": [0, 65535], "rul'd by me depart in patience and": [0, 65535], "by me depart in patience and let": [0, 65535], "me depart in patience and let vs": [0, 65535], "depart in patience and let vs to": [0, 65535], "in patience and let vs to the": [0, 65535], "patience and let vs to the tyger": [0, 65535], "and let vs to the tyger all": [0, 65535], "let vs to the tyger all to": [0, 65535], "vs to the tyger all to dinner": [0, 65535], "to the tyger all to dinner and": [0, 65535], "the tyger all to dinner and about": [0, 65535], "tyger all to dinner and about euening": [0, 65535], "all to dinner and about euening come": [0, 65535], "to dinner and about euening come your": [0, 65535], "dinner and about euening come your selfe": [0, 65535], "and about euening come your selfe alone": [0, 65535], "about euening come your selfe alone to": [0, 65535], "euening come your selfe alone to know": [0, 65535], "come your selfe alone to know the": [0, 65535], "your selfe alone to know the reason": [0, 65535], "selfe alone to know the reason of": [0, 65535], "alone to know the reason of this": [0, 65535], "to know the reason of this strange": [0, 65535], "know the reason of this strange restraint": [0, 65535], "the reason of this strange restraint if": [0, 65535], "reason of this strange restraint if by": [0, 65535], "of this strange restraint if by strong": [0, 65535], "this strange restraint if by strong hand": [0, 65535], "strange restraint if by strong hand you": [0, 65535], "restraint if by strong hand you offer": [0, 65535], "if by strong hand you offer to": [0, 65535], "by strong hand you offer to breake": [0, 65535], "strong hand you offer to breake in": [0, 65535], "hand you offer to breake in now": [0, 65535], "you offer to breake in now in": [0, 65535], "offer to breake in now in the": [0, 65535], "to breake in now in the stirring": [0, 65535], "breake in now in the stirring passage": [0, 65535], "in now in the stirring passage of": [0, 65535], "now in the stirring passage of the": [0, 65535], "in the stirring passage of the day": [0, 65535], "the stirring passage of the day a": [0, 65535], "stirring passage of the day a vulgar": [0, 65535], "passage of the day a vulgar comment": [0, 65535], "of the day a vulgar comment will": [0, 65535], "the day a vulgar comment will be": [0, 65535], "day a vulgar comment will be made": [0, 65535], "a vulgar comment will be made of": [0, 65535], "vulgar comment will be made of it": [0, 65535], "comment will be made of it and": [0, 65535], "will be made of it and that": [0, 65535], "be made of it and that supposed": [0, 65535], "made of it and that supposed by": [0, 65535], "of it and that supposed by the": [0, 65535], "it and that supposed by the common": [0, 65535], "and that supposed by the common rowt": [0, 65535], "that supposed by the common rowt against": [0, 65535], "supposed by the common rowt against your": [0, 65535], "by the common rowt against your yet": [0, 65535], "the common rowt against your yet vngalled": [0, 65535], "common rowt against your yet vngalled estimation": [0, 65535], "rowt against your yet vngalled estimation that": [0, 65535], "against your yet vngalled estimation that may": [0, 65535], "your yet vngalled estimation that may with": [0, 65535], "yet vngalled estimation that may with foule": [0, 65535], "vngalled estimation that may with foule intrusion": [0, 65535], "estimation that may with foule intrusion enter": [0, 65535], "that may with foule intrusion enter in": [0, 65535], "may with foule intrusion enter in and": [0, 65535], "with foule intrusion enter in and dwell": [0, 65535], "foule intrusion enter in and dwell vpon": [0, 65535], "intrusion enter in and dwell vpon your": [0, 65535], "enter in and dwell vpon your graue": [0, 65535], "in and dwell vpon your graue when": [0, 65535], "and dwell vpon your graue when you": [0, 65535], "dwell vpon your graue when you are": [0, 65535], "vpon your graue when you are dead": [0, 65535], "your graue when you are dead for": [0, 65535], "graue when you are dead for slander": [0, 65535], "when you are dead for slander liues": [0, 65535], "you are dead for slander liues vpon": [0, 65535], "are dead for slander liues vpon succession": [0, 65535], "dead for slander liues vpon succession for": [0, 65535], "for slander liues vpon succession for euer": [0, 65535], "slander liues vpon succession for euer hows'd": [0, 65535], "liues vpon succession for euer hows'd where": [0, 65535], "vpon succession for euer hows'd where it": [0, 65535], "succession for euer hows'd where it gets": [0, 65535], "for euer hows'd where it gets possession": [0, 65535], "euer hows'd where it gets possession anti": [0, 65535], "hows'd where it gets possession anti you": [0, 65535], "where it gets possession anti you haue": [0, 65535], "it gets possession anti you haue preuail'd": [0, 65535], "gets possession anti you haue preuail'd i": [0, 65535], "possession anti you haue preuail'd i will": [0, 65535], "anti you haue preuail'd i will depart": [0, 65535], "you haue preuail'd i will depart in": [0, 65535], "haue preuail'd i will depart in quiet": [0, 65535], "preuail'd i will depart in quiet and": [0, 65535], "i will depart in quiet and in": [0, 65535], "will depart in quiet and in despight": [0, 65535], "depart in quiet and in despight of": [0, 65535], "in quiet and in despight of mirth": [0, 65535], "quiet and in despight of mirth meane": [0, 65535], "and in despight of mirth meane to": [0, 65535], "in despight of mirth meane to be": [0, 65535], "despight of mirth meane to be merrie": [0, 65535], "of mirth meane to be merrie i": [0, 65535], "mirth meane to be merrie i know": [0, 65535], "meane to be merrie i know a": [0, 65535], "to be merrie i know a wench": [0, 65535], "be merrie i know a wench of": [0, 65535], "merrie i know a wench of excellent": [0, 65535], "i know a wench of excellent discourse": [0, 65535], "know a wench of excellent discourse prettie": [0, 65535], "a wench of excellent discourse prettie and": [0, 65535], "wench of excellent discourse prettie and wittie": [0, 65535], "of excellent discourse prettie and wittie wilde": [0, 65535], "excellent discourse prettie and wittie wilde and": [0, 65535], "discourse prettie and wittie wilde and yet": [0, 65535], "prettie and wittie wilde and yet too": [0, 65535], "and wittie wilde and yet too gentle": [0, 65535], "wittie wilde and yet too gentle there": [0, 65535], "wilde and yet too gentle there will": [0, 65535], "and yet too gentle there will we": [0, 65535], "yet too gentle there will we dine": [0, 65535], "too gentle there will we dine this": [0, 65535], "gentle there will we dine this woman": [0, 65535], "there will we dine this woman that": [0, 65535], "will we dine this woman that i": [0, 65535], "we dine this woman that i meane": [0, 65535], "dine this woman that i meane my": [0, 65535], "this woman that i meane my wife": [0, 65535], "woman that i meane my wife but": [0, 65535], "that i meane my wife but i": [0, 65535], "i meane my wife but i protest": [0, 65535], "meane my wife but i protest without": [0, 65535], "my wife but i protest without desert": [0, 65535], "wife but i protest without desert hath": [0, 65535], "but i protest without desert hath oftentimes": [0, 65535], "i protest without desert hath oftentimes vpbraided": [0, 65535], "protest without desert hath oftentimes vpbraided me": [0, 65535], "without desert hath oftentimes vpbraided me withall": [0, 65535], "desert hath oftentimes vpbraided me withall to": [0, 65535], "hath oftentimes vpbraided me withall to her": [0, 65535], "oftentimes vpbraided me withall to her will": [0, 65535], "vpbraided me withall to her will we": [0, 65535], "me withall to her will we to": [0, 65535], "withall to her will we to dinner": [0, 65535], "to her will we to dinner get": [0, 65535], "her will we to dinner get you": [0, 65535], "will we to dinner get you home": [0, 65535], "we to dinner get you home and": [0, 65535], "to dinner get you home and fetch": [0, 65535], "dinner get you home and fetch the": [0, 65535], "get you home and fetch the chaine": [0, 65535], "you home and fetch the chaine by": [0, 65535], "home and fetch the chaine by this": [0, 65535], "and fetch the chaine by this i": [0, 65535], "fetch the chaine by this i know": [0, 65535], "the chaine by this i know 'tis": [0, 65535], "chaine by this i know 'tis made": [0, 65535], "by this i know 'tis made bring": [0, 65535], "this i know 'tis made bring it": [0, 65535], "i know 'tis made bring it i": [0, 65535], "know 'tis made bring it i pray": [0, 65535], "'tis made bring it i pray you": [0, 65535], "made bring it i pray you to": [0, 65535], "bring it i pray you to the": [0, 65535], "it i pray you to the porpentine": [0, 65535], "i pray you to the porpentine for": [0, 65535], "pray you to the porpentine for there's": [0, 65535], "you to the porpentine for there's the": [0, 65535], "to the porpentine for there's the house": [0, 65535], "the porpentine for there's the house that": [0, 65535], "porpentine for there's the house that chaine": [0, 65535], "for there's the house that chaine will": [0, 65535], "there's the house that chaine will i": [0, 65535], "the house that chaine will i bestow": [0, 65535], "house that chaine will i bestow be": [0, 65535], "that chaine will i bestow be it": [0, 65535], "chaine will i bestow be it for": [0, 65535], "will i bestow be it for nothing": [0, 65535], "i bestow be it for nothing but": [0, 65535], "bestow be it for nothing but to": [0, 65535], "be it for nothing but to spight": [0, 65535], "it for nothing but to spight my": [0, 65535], "for nothing but to spight my wife": [0, 65535], "nothing but to spight my wife vpon": [0, 65535], "but to spight my wife vpon mine": [0, 65535], "to spight my wife vpon mine hostesse": [0, 65535], "spight my wife vpon mine hostesse there": [0, 65535], "my wife vpon mine hostesse there good": [0, 65535], "wife vpon mine hostesse there good sir": [0, 65535], "vpon mine hostesse there good sir make": [0, 65535], "mine hostesse there good sir make haste": [0, 65535], "hostesse there good sir make haste since": [0, 65535], "there good sir make haste since mine": [0, 65535], "good sir make haste since mine owne": [0, 65535], "sir make haste since mine owne doores": [0, 65535], "make haste since mine owne doores refuse": [0, 65535], "haste since mine owne doores refuse to": [0, 65535], "since mine owne doores refuse to entertaine": [0, 65535], "mine owne doores refuse to entertaine me": [0, 65535], "owne doores refuse to entertaine me ile": [0, 65535], "doores refuse to entertaine me ile knocke": [0, 65535], "refuse to entertaine me ile knocke else": [0, 65535], "to entertaine me ile knocke else where": [0, 65535], "entertaine me ile knocke else where to": [0, 65535], "me ile knocke else where to see": [0, 65535], "ile knocke else where to see if": [0, 65535], "knocke else where to see if they'll": [0, 65535], "else where to see if they'll disdaine": [0, 65535], "where to see if they'll disdaine me": [0, 65535], "to see if they'll disdaine me ang": [0, 65535], "see if they'll disdaine me ang ile": [0, 65535], "if they'll disdaine me ang ile meet": [0, 65535], "they'll disdaine me ang ile meet you": [0, 65535], "disdaine me ang ile meet you at": [0, 65535], "me ang ile meet you at that": [0, 65535], "ang ile meet you at that place": [0, 65535], "ile meet you at that place some": [0, 65535], "meet you at that place some houre": [0, 65535], "you at that place some houre hence": [0, 65535], "at that place some houre hence anti": [0, 65535], "that place some houre hence anti do": [0, 65535], "place some houre hence anti do so": [0, 65535], "some houre hence anti do so this": [0, 65535], "houre hence anti do so this iest": [0, 65535], "hence anti do so this iest shall": [0, 65535], "anti do so this iest shall cost": [0, 65535], "do so this iest shall cost me": [0, 65535], "so this iest shall cost me some": [0, 65535], "this iest shall cost me some expence": [0, 65535], "iest shall cost me some expence exeunt": [0, 65535], "shall cost me some expence exeunt enter": [0, 65535], "cost me some expence exeunt enter iuliana": [0, 65535], "me some expence exeunt enter iuliana with": [0, 65535], "some expence exeunt enter iuliana with antipholus": [0, 65535], "expence exeunt enter iuliana with antipholus of": [0, 65535], "exeunt enter iuliana with antipholus of siracusia": [0, 65535], "enter iuliana with antipholus of siracusia iulia": [0, 65535], "iuliana with antipholus of siracusia iulia and": [0, 65535], "with antipholus of siracusia iulia and may": [0, 65535], "antipholus of siracusia iulia and may it": [0, 65535], "of siracusia iulia and may it be": [0, 65535], "siracusia iulia and may it be that": [0, 65535], "iulia and may it be that you": [0, 65535], "and may it be that you haue": [0, 65535], "may it be that you haue quite": [0, 65535], "it be that you haue quite forgot": [0, 65535], "be that you haue quite forgot a": [0, 65535], "that you haue quite forgot a husbands": [0, 65535], "you haue quite forgot a husbands office": [0, 65535], "haue quite forgot a husbands office shall": [0, 65535], "quite forgot a husbands office shall antipholus": [0, 65535], "forgot a husbands office shall antipholus euen": [0, 65535], "a husbands office shall antipholus euen in": [0, 65535], "husbands office shall antipholus euen in the": [0, 65535], "office shall antipholus euen in the spring": [0, 65535], "shall antipholus euen in the spring of": [0, 65535], "antipholus euen in the spring of loue": [0, 65535], "euen in the spring of loue thy": [0, 65535], "in the spring of loue thy loue": [0, 65535], "the spring of loue thy loue springs": [0, 65535], "spring of loue thy loue springs rot": [0, 65535], "of loue thy loue springs rot shall": [0, 65535], "loue thy loue springs rot shall loue": [0, 65535], "thy loue springs rot shall loue in": [0, 65535], "loue springs rot shall loue in buildings": [0, 65535], "springs rot shall loue in buildings grow": [0, 65535], "rot shall loue in buildings grow so": [0, 65535], "shall loue in buildings grow so ruinate": [0, 65535], "loue in buildings grow so ruinate if": [0, 65535], "in buildings grow so ruinate if you": [0, 65535], "buildings grow so ruinate if you did": [0, 65535], "grow so ruinate if you did wed": [0, 65535], "so ruinate if you did wed my": [0, 65535], "ruinate if you did wed my sister": [0, 65535], "if you did wed my sister for": [0, 65535], "you did wed my sister for her": [0, 65535], "did wed my sister for her wealth": [0, 65535], "wed my sister for her wealth then": [0, 65535], "my sister for her wealth then for": [0, 65535], "sister for her wealth then for her": [0, 65535], "for her wealth then for her wealths": [0, 65535], "her wealth then for her wealths sake": [0, 65535], "wealth then for her wealths sake vse": [0, 65535], "then for her wealths sake vse her": [0, 65535], "for her wealths sake vse her with": [0, 65535], "her wealths sake vse her with more": [0, 65535], "wealths sake vse her with more kindnesse": [0, 65535], "sake vse her with more kindnesse or": [0, 65535], "vse her with more kindnesse or if": [0, 65535], "her with more kindnesse or if you": [0, 65535], "with more kindnesse or if you like": [0, 65535], "more kindnesse or if you like else": [0, 65535], "kindnesse or if you like else where": [0, 65535], "or if you like else where doe": [0, 65535], "if you like else where doe it": [0, 65535], "you like else where doe it by": [0, 65535], "like else where doe it by stealth": [0, 65535], "else where doe it by stealth muffle": [0, 65535], "where doe it by stealth muffle your": [0, 65535], "doe it by stealth muffle your false": [0, 65535], "it by stealth muffle your false loue": [0, 65535], "by stealth muffle your false loue with": [0, 65535], "stealth muffle your false loue with some": [0, 65535], "muffle your false loue with some shew": [0, 65535], "your false loue with some shew of": [0, 65535], "false loue with some shew of blindnesse": [0, 65535], "loue with some shew of blindnesse let": [0, 65535], "with some shew of blindnesse let not": [0, 65535], "some shew of blindnesse let not my": [0, 65535], "shew of blindnesse let not my sister": [0, 65535], "of blindnesse let not my sister read": [0, 65535], "blindnesse let not my sister read it": [0, 65535], "let not my sister read it in": [0, 65535], "not my sister read it in your": [0, 65535], "my sister read it in your eye": [0, 65535], "sister read it in your eye be": [0, 65535], "read it in your eye be not": [0, 65535], "it in your eye be not thy": [0, 65535], "in your eye be not thy tongue": [0, 65535], "your eye be not thy tongue thy": [0, 65535], "eye be not thy tongue thy owne": [0, 65535], "be not thy tongue thy owne shames": [0, 65535], "not thy tongue thy owne shames orator": [0, 65535], "thy tongue thy owne shames orator looke": [0, 65535], "tongue thy owne shames orator looke sweet": [0, 65535], "thy owne shames orator looke sweet speake": [0, 65535], "owne shames orator looke sweet speake faire": [0, 65535], "shames orator looke sweet speake faire become": [0, 65535], "orator looke sweet speake faire become disloyaltie": [0, 65535], "looke sweet speake faire become disloyaltie apparell": [0, 65535], "sweet speake faire become disloyaltie apparell vice": [0, 65535], "speake faire become disloyaltie apparell vice like": [0, 65535], "faire become disloyaltie apparell vice like vertues": [0, 65535], "become disloyaltie apparell vice like vertues harbenger": [0, 65535], "disloyaltie apparell vice like vertues harbenger beare": [0, 65535], "apparell vice like vertues harbenger beare a": [0, 65535], "vice like vertues harbenger beare a faire": [0, 65535], "like vertues harbenger beare a faire presence": [0, 65535], "vertues harbenger beare a faire presence though": [0, 65535], "harbenger beare a faire presence though your": [0, 65535], "beare a faire presence though your heart": [0, 65535], "a faire presence though your heart be": [0, 65535], "faire presence though your heart be tainted": [0, 65535], "presence though your heart be tainted teach": [0, 65535], "though your heart be tainted teach sinne": [0, 65535], "your heart be tainted teach sinne the": [0, 65535], "heart be tainted teach sinne the carriage": [0, 65535], "be tainted teach sinne the carriage of": [0, 65535], "tainted teach sinne the carriage of a": [0, 65535], "teach sinne the carriage of a holy": [0, 65535], "sinne the carriage of a holy saint": [0, 65535], "the carriage of a holy saint be": [0, 65535], "carriage of a holy saint be secret": [0, 65535], "of a holy saint be secret false": [0, 65535], "a holy saint be secret false what": [0, 65535], "holy saint be secret false what need": [0, 65535], "saint be secret false what need she": [0, 65535], "be secret false what need she be": [0, 65535], "secret false what need she be acquainted": [0, 65535], "false what need she be acquainted what": [0, 65535], "what need she be acquainted what simple": [0, 65535], "need she be acquainted what simple thiefe": [0, 65535], "she be acquainted what simple thiefe brags": [0, 65535], "be acquainted what simple thiefe brags of": [0, 65535], "acquainted what simple thiefe brags of his": [0, 65535], "what simple thiefe brags of his owne": [0, 65535], "simple thiefe brags of his owne attaine": [0, 65535], "thiefe brags of his owne attaine 'tis": [0, 65535], "brags of his owne attaine 'tis double": [0, 65535], "of his owne attaine 'tis double wrong": [0, 65535], "his owne attaine 'tis double wrong to": [0, 65535], "owne attaine 'tis double wrong to truant": [0, 65535], "attaine 'tis double wrong to truant with": [0, 65535], "'tis double wrong to truant with your": [0, 65535], "double wrong to truant with your bed": [0, 65535], "wrong to truant with your bed and": [0, 65535], "to truant with your bed and let": [0, 65535], "truant with your bed and let her": [0, 65535], "with your bed and let her read": [0, 65535], "your bed and let her read it": [0, 65535], "bed and let her read it in": [0, 65535], "and let her read it in thy": [0, 65535], "let her read it in thy lookes": [0, 65535], "her read it in thy lookes at": [0, 65535], "read it in thy lookes at boord": [0, 65535], "it in thy lookes at boord shame": [0, 65535], "in thy lookes at boord shame hath": [0, 65535], "thy lookes at boord shame hath a": [0, 65535], "lookes at boord shame hath a bastard": [0, 65535], "at boord shame hath a bastard fame": [0, 65535], "boord shame hath a bastard fame well": [0, 65535], "shame hath a bastard fame well managed": [0, 65535], "hath a bastard fame well managed ill": [0, 65535], "a bastard fame well managed ill deeds": [0, 65535], "bastard fame well managed ill deeds is": [0, 65535], "fame well managed ill deeds is doubled": [0, 65535], "well managed ill deeds is doubled with": [0, 65535], "managed ill deeds is doubled with an": [0, 65535], "ill deeds is doubled with an euill": [0, 65535], "deeds is doubled with an euill word": [0, 65535], "is doubled with an euill word alas": [0, 65535], "doubled with an euill word alas poore": [0, 65535], "with an euill word alas poore women": [0, 65535], "an euill word alas poore women make": [0, 65535], "euill word alas poore women make vs": [0, 65535], "word alas poore women make vs not": [0, 65535], "alas poore women make vs not beleeue": [0, 65535], "poore women make vs not beleeue being": [0, 65535], "women make vs not beleeue being compact": [0, 65535], "make vs not beleeue being compact of": [0, 65535], "vs not beleeue being compact of credit": [0, 65535], "not beleeue being compact of credit that": [0, 65535], "beleeue being compact of credit that you": [0, 65535], "being compact of credit that you loue": [0, 65535], "compact of credit that you loue vs": [0, 65535], "of credit that you loue vs though": [0, 65535], "credit that you loue vs though others": [0, 65535], "that you loue vs though others haue": [0, 65535], "you loue vs though others haue the": [0, 65535], "loue vs though others haue the arme": [0, 65535], "vs though others haue the arme shew": [0, 65535], "though others haue the arme shew vs": [0, 65535], "others haue the arme shew vs the": [0, 65535], "haue the arme shew vs the sleeue": [0, 65535], "the arme shew vs the sleeue we": [0, 65535], "arme shew vs the sleeue we in": [0, 65535], "shew vs the sleeue we in your": [0, 65535], "vs the sleeue we in your motion": [0, 65535], "the sleeue we in your motion turne": [0, 65535], "sleeue we in your motion turne and": [0, 65535], "we in your motion turne and you": [0, 65535], "in your motion turne and you may": [0, 65535], "your motion turne and you may moue": [0, 65535], "motion turne and you may moue vs": [0, 65535], "turne and you may moue vs then": [0, 65535], "and you may moue vs then gentle": [0, 65535], "you may moue vs then gentle brother": [0, 65535], "may moue vs then gentle brother get": [0, 65535], "moue vs then gentle brother get you": [0, 65535], "vs then gentle brother get you in": [0, 65535], "then gentle brother get you in againe": [0, 65535], "gentle brother get you in againe comfort": [0, 65535], "brother get you in againe comfort my": [0, 65535], "get you in againe comfort my sister": [0, 65535], "you in againe comfort my sister cheere": [0, 65535], "in againe comfort my sister cheere her": [0, 65535], "againe comfort my sister cheere her call": [0, 65535], "comfort my sister cheere her call her": [0, 65535], "my sister cheere her call her wise": [0, 65535], "sister cheere her call her wise 'tis": [0, 65535], "cheere her call her wise 'tis holy": [0, 65535], "her call her wise 'tis holy sport": [0, 65535], "call her wise 'tis holy sport to": [0, 65535], "her wise 'tis holy sport to be": [0, 65535], "wise 'tis holy sport to be a": [0, 65535], "'tis holy sport to be a little": [0, 65535], "holy sport to be a little vaine": [0, 65535], "sport to be a little vaine when": [0, 65535], "to be a little vaine when the": [0, 65535], "be a little vaine when the sweet": [0, 65535], "a little vaine when the sweet breath": [0, 65535], "little vaine when the sweet breath of": [0, 65535], "vaine when the sweet breath of flatterie": [0, 65535], "when the sweet breath of flatterie conquers": [0, 65535], "the sweet breath of flatterie conquers strife": [0, 65535], "sweet breath of flatterie conquers strife s": [0, 65535], "breath of flatterie conquers strife s anti": [0, 65535], "of flatterie conquers strife s anti sweete": [0, 65535], "flatterie conquers strife s anti sweete mistris": [0, 65535], "conquers strife s anti sweete mistris what": [0, 65535], "strife s anti sweete mistris what your": [0, 65535], "s anti sweete mistris what your name": [0, 65535], "anti sweete mistris what your name is": [0, 65535], "sweete mistris what your name is else": [0, 65535], "mistris what your name is else i": [0, 65535], "what your name is else i know": [0, 65535], "your name is else i know not": [0, 65535], "name is else i know not nor": [0, 65535], "is else i know not nor by": [0, 65535], "else i know not nor by what": [0, 65535], "i know not nor by what wonder": [0, 65535], "know not nor by what wonder you": [0, 65535], "not nor by what wonder you do": [0, 65535], "nor by what wonder you do hit": [0, 65535], "by what wonder you do hit of": [0, 65535], "what wonder you do hit of mine": [0, 65535], "wonder you do hit of mine lesse": [0, 65535], "you do hit of mine lesse in": [0, 65535], "do hit of mine lesse in your": [0, 65535], "hit of mine lesse in your knowledge": [0, 65535], "of mine lesse in your knowledge and": [0, 65535], "mine lesse in your knowledge and your": [0, 65535], "lesse in your knowledge and your grace": [0, 65535], "in your knowledge and your grace you": [0, 65535], "your knowledge and your grace you show": [0, 65535], "knowledge and your grace you show not": [0, 65535], "and your grace you show not then": [0, 65535], "your grace you show not then our": [0, 65535], "grace you show not then our earths": [0, 65535], "you show not then our earths wonder": [0, 65535], "show not then our earths wonder more": [0, 65535], "not then our earths wonder more then": [0, 65535], "then our earths wonder more then earth": [0, 65535], "our earths wonder more then earth diuine": [0, 65535], "earths wonder more then earth diuine teach": [0, 65535], "wonder more then earth diuine teach me": [0, 65535], "more then earth diuine teach me deere": [0, 65535], "then earth diuine teach me deere creature": [0, 65535], "earth diuine teach me deere creature how": [0, 65535], "diuine teach me deere creature how to": [0, 65535], "teach me deere creature how to thinke": [0, 65535], "me deere creature how to thinke and": [0, 65535], "deere creature how to thinke and speake": [0, 65535], "creature how to thinke and speake lay": [0, 65535], "how to thinke and speake lay open": [0, 65535], "to thinke and speake lay open to": [0, 65535], "thinke and speake lay open to my": [0, 65535], "and speake lay open to my earthie": [0, 65535], "speake lay open to my earthie grosse": [0, 65535], "lay open to my earthie grosse conceit": [0, 65535], "open to my earthie grosse conceit smothred": [0, 65535], "to my earthie grosse conceit smothred in": [0, 65535], "my earthie grosse conceit smothred in errors": [0, 65535], "earthie grosse conceit smothred in errors feeble": [0, 65535], "grosse conceit smothred in errors feeble shallow": [0, 65535], "conceit smothred in errors feeble shallow weake": [0, 65535], "smothred in errors feeble shallow weake the": [0, 65535], "in errors feeble shallow weake the foulded": [0, 65535], "errors feeble shallow weake the foulded meaning": [0, 65535], "feeble shallow weake the foulded meaning of": [0, 65535], "shallow weake the foulded meaning of your": [0, 65535], "weake the foulded meaning of your words": [0, 65535], "the foulded meaning of your words deceit": [0, 65535], "foulded meaning of your words deceit against": [0, 65535], "meaning of your words deceit against my": [0, 65535], "of your words deceit against my soules": [0, 65535], "your words deceit against my soules pure": [0, 65535], "words deceit against my soules pure truth": [0, 65535], "deceit against my soules pure truth why": [0, 65535], "against my soules pure truth why labour": [0, 65535], "my soules pure truth why labour you": [0, 65535], "soules pure truth why labour you to": [0, 65535], "pure truth why labour you to make": [0, 65535], "truth why labour you to make it": [0, 65535], "why labour you to make it wander": [0, 65535], "labour you to make it wander in": [0, 65535], "you to make it wander in an": [0, 65535], "to make it wander in an vnknowne": [0, 65535], "make it wander in an vnknowne field": [0, 65535], "it wander in an vnknowne field are": [0, 65535], "wander in an vnknowne field are you": [0, 65535], "in an vnknowne field are you a": [0, 65535], "an vnknowne field are you a god": [0, 65535], "vnknowne field are you a god would": [0, 65535], "field are you a god would you": [0, 65535], "are you a god would you create": [0, 65535], "you a god would you create me": [0, 65535], "a god would you create me new": [0, 65535], "god would you create me new transforme": [0, 65535], "would you create me new transforme me": [0, 65535], "you create me new transforme me then": [0, 65535], "create me new transforme me then and": [0, 65535], "me new transforme me then and to": [0, 65535], "new transforme me then and to your": [0, 65535], "transforme me then and to your powre": [0, 65535], "me then and to your powre ile": [0, 65535], "then and to your powre ile yeeld": [0, 65535], "and to your powre ile yeeld but": [0, 65535], "to your powre ile yeeld but if": [0, 65535], "your powre ile yeeld but if that": [0, 65535], "powre ile yeeld but if that i": [0, 65535], "ile yeeld but if that i am": [0, 65535], "yeeld but if that i am i": [0, 65535], "but if that i am i then": [0, 65535], "if that i am i then well": [0, 65535], "that i am i then well i": [0, 65535], "i am i then well i know": [0, 65535], "am i then well i know your": [0, 65535], "i then well i know your weeping": [0, 65535], "then well i know your weeping sister": [0, 65535], "well i know your weeping sister is": [0, 65535], "i know your weeping sister is no": [0, 65535], "know your weeping sister is no wife": [0, 65535], "your weeping sister is no wife of": [0, 65535], "weeping sister is no wife of mine": [0, 65535], "sister is no wife of mine nor": [0, 65535], "is no wife of mine nor to": [0, 65535], "no wife of mine nor to her": [0, 65535], "wife of mine nor to her bed": [0, 65535], "of mine nor to her bed no": [0, 65535], "mine nor to her bed no homage": [0, 65535], "nor to her bed no homage doe": [0, 65535], "to her bed no homage doe i": [0, 65535], "her bed no homage doe i owe": [0, 65535], "bed no homage doe i owe farre": [0, 65535], "no homage doe i owe farre more": [0, 65535], "homage doe i owe farre more farre": [0, 65535], "doe i owe farre more farre more": [0, 65535], "i owe farre more farre more to": [0, 65535], "owe farre more farre more to you": [0, 65535], "farre more farre more to you doe": [0, 65535], "more farre more to you doe i": [0, 65535], "farre more to you doe i decline": [0, 65535], "more to you doe i decline oh": [0, 65535], "to you doe i decline oh traine": [0, 65535], "you doe i decline oh traine me": [0, 65535], "doe i decline oh traine me not": [0, 65535], "i decline oh traine me not sweet": [0, 65535], "decline oh traine me not sweet mermaide": [0, 65535], "oh traine me not sweet mermaide with": [0, 65535], "traine me not sweet mermaide with thy": [0, 65535], "me not sweet mermaide with thy note": [0, 65535], "not sweet mermaide with thy note to": [0, 65535], "sweet mermaide with thy note to drowne": [0, 65535], "mermaide with thy note to drowne me": [0, 65535], "with thy note to drowne me in": [0, 65535], "thy note to drowne me in thy": [0, 65535], "note to drowne me in thy sister": [0, 65535], "to drowne me in thy sister floud": [0, 65535], "drowne me in thy sister floud of": [0, 65535], "me in thy sister floud of teares": [0, 65535], "in thy sister floud of teares sing": [0, 65535], "thy sister floud of teares sing siren": [0, 65535], "sister floud of teares sing siren for": [0, 65535], "floud of teares sing siren for thy": [0, 65535], "of teares sing siren for thy selfe": [0, 65535], "teares sing siren for thy selfe and": [0, 65535], "sing siren for thy selfe and i": [0, 65535], "siren for thy selfe and i will": [0, 65535], "for thy selfe and i will dote": [0, 65535], "thy selfe and i will dote spread": [0, 65535], "selfe and i will dote spread ore": [0, 65535], "and i will dote spread ore the": [0, 65535], "i will dote spread ore the siluer": [0, 65535], "will dote spread ore the siluer waues": [0, 65535], "dote spread ore the siluer waues thy": [0, 65535], "spread ore the siluer waues thy golden": [0, 65535], "ore the siluer waues thy golden haires": [0, 65535], "the siluer waues thy golden haires and": [0, 65535], "siluer waues thy golden haires and as": [0, 65535], "waues thy golden haires and as a": [0, 65535], "thy golden haires and as a bud": [0, 65535], "golden haires and as a bud ile": [0, 65535], "haires and as a bud ile take": [0, 65535], "and as a bud ile take thee": [0, 65535], "as a bud ile take thee and": [0, 65535], "a bud ile take thee and there": [0, 65535], "bud ile take thee and there lie": [0, 65535], "ile take thee and there lie and": [0, 65535], "take thee and there lie and in": [0, 65535], "thee and there lie and in that": [0, 65535], "and there lie and in that glorious": [0, 65535], "there lie and in that glorious supposition": [0, 65535], "lie and in that glorious supposition thinke": [0, 65535], "and in that glorious supposition thinke he": [0, 65535], "in that glorious supposition thinke he gaines": [0, 65535], "that glorious supposition thinke he gaines by": [0, 65535], "glorious supposition thinke he gaines by death": [0, 65535], "supposition thinke he gaines by death that": [0, 65535], "thinke he gaines by death that hath": [0, 65535], "he gaines by death that hath such": [0, 65535], "gaines by death that hath such meanes": [0, 65535], "by death that hath such meanes to": [0, 65535], "death that hath such meanes to die": [0, 65535], "that hath such meanes to die let": [0, 65535], "hath such meanes to die let loue": [0, 65535], "such meanes to die let loue being": [0, 65535], "meanes to die let loue being light": [0, 65535], "to die let loue being light be": [0, 65535], "die let loue being light be drowned": [0, 65535], "let loue being light be drowned if": [0, 65535], "loue being light be drowned if she": [0, 65535], "being light be drowned if she sinke": [0, 65535], "light be drowned if she sinke luc": [0, 65535], "be drowned if she sinke luc what": [0, 65535], "drowned if she sinke luc what are": [0, 65535], "if she sinke luc what are you": [0, 65535], "she sinke luc what are you mad": [0, 65535], "sinke luc what are you mad that": [0, 65535], "luc what are you mad that you": [0, 65535], "what are you mad that you doe": [0, 65535], "are you mad that you doe reason": [0, 65535], "you mad that you doe reason so": [0, 65535], "mad that you doe reason so ant": [0, 65535], "that you doe reason so ant not": [0, 65535], "you doe reason so ant not mad": [0, 65535], "doe reason so ant not mad but": [0, 65535], "reason so ant not mad but mated": [0, 65535], "so ant not mad but mated how": [0, 65535], "ant not mad but mated how i": [0, 65535], "not mad but mated how i doe": [0, 65535], "mad but mated how i doe not": [0, 65535], "but mated how i doe not know": [0, 65535], "mated how i doe not know luc": [0, 65535], "how i doe not know luc it": [0, 65535], "i doe not know luc it is": [0, 65535], "doe not know luc it is a": [0, 65535], "not know luc it is a fault": [0, 65535], "know luc it is a fault that": [0, 65535], "luc it is a fault that springeth": [0, 65535], "it is a fault that springeth from": [0, 65535], "is a fault that springeth from your": [0, 65535], "a fault that springeth from your eie": [0, 65535], "fault that springeth from your eie ant": [0, 65535], "that springeth from your eie ant for": [0, 65535], "springeth from your eie ant for gazing": [0, 65535], "from your eie ant for gazing on": [0, 65535], "your eie ant for gazing on your": [0, 65535], "eie ant for gazing on your beames": [0, 65535], "ant for gazing on your beames faire": [0, 65535], "for gazing on your beames faire sun": [0, 65535], "gazing on your beames faire sun being": [0, 65535], "on your beames faire sun being by": [0, 65535], "your beames faire sun being by luc": [0, 65535], "beames faire sun being by luc gaze": [0, 65535], "faire sun being by luc gaze when": [0, 65535], "sun being by luc gaze when you": [0, 65535], "being by luc gaze when you should": [0, 65535], "by luc gaze when you should and": [0, 65535], "luc gaze when you should and that": [0, 65535], "gaze when you should and that will": [0, 65535], "when you should and that will cleere": [0, 65535], "you should and that will cleere your": [0, 65535], "should and that will cleere your sight": [0, 65535], "and that will cleere your sight ant": [0, 65535], "that will cleere your sight ant as": [0, 65535], "will cleere your sight ant as good": [0, 65535], "cleere your sight ant as good to": [0, 65535], "your sight ant as good to winke": [0, 65535], "sight ant as good to winke sweet": [0, 65535], "ant as good to winke sweet loue": [0, 65535], "as good to winke sweet loue as": [0, 65535], "good to winke sweet loue as looke": [0, 65535], "to winke sweet loue as looke on": [0, 65535], "winke sweet loue as looke on night": [0, 65535], "sweet loue as looke on night luc": [0, 65535], "loue as looke on night luc why": [0, 65535], "as looke on night luc why call": [0, 65535], "looke on night luc why call you": [0, 65535], "on night luc why call you me": [0, 65535], "night luc why call you me loue": [0, 65535], "luc why call you me loue call": [0, 65535], "why call you me loue call my": [0, 65535], "call you me loue call my sister": [0, 65535], "you me loue call my sister so": [0, 65535], "me loue call my sister so ant": [0, 65535], "loue call my sister so ant thy": [0, 65535], "call my sister so ant thy sisters": [0, 65535], "my sister so ant thy sisters sister": [0, 65535], "sister so ant thy sisters sister luc": [0, 65535], "so ant thy sisters sister luc that's": [0, 65535], "ant thy sisters sister luc that's my": [0, 65535], "thy sisters sister luc that's my sister": [0, 65535], "sisters sister luc that's my sister ant": [0, 65535], "sister luc that's my sister ant no": [0, 65535], "luc that's my sister ant no it": [0, 65535], "that's my sister ant no it is": [0, 65535], "my sister ant no it is thy": [0, 65535], "sister ant no it is thy selfe": [0, 65535], "ant no it is thy selfe mine": [0, 65535], "no it is thy selfe mine owne": [0, 65535], "it is thy selfe mine owne selfes": [0, 65535], "is thy selfe mine owne selfes better": [0, 65535], "thy selfe mine owne selfes better part": [0, 65535], "selfe mine owne selfes better part mine": [0, 65535], "mine owne selfes better part mine eies": [0, 65535], "owne selfes better part mine eies cleere": [0, 65535], "selfes better part mine eies cleere eie": [0, 65535], "better part mine eies cleere eie my": [0, 65535], "part mine eies cleere eie my deere": [0, 65535], "mine eies cleere eie my deere hearts": [0, 65535], "eies cleere eie my deere hearts deerer": [0, 65535], "cleere eie my deere hearts deerer heart": [0, 65535], "eie my deere hearts deerer heart my": [0, 65535], "my deere hearts deerer heart my foode": [0, 65535], "deere hearts deerer heart my foode my": [0, 65535], "hearts deerer heart my foode my fortune": [0, 65535], "deerer heart my foode my fortune and": [0, 65535], "heart my foode my fortune and my": [0, 65535], "my foode my fortune and my sweet": [0, 65535], "foode my fortune and my sweet hopes": [0, 65535], "my fortune and my sweet hopes aime": [0, 65535], "fortune and my sweet hopes aime my": [0, 65535], "and my sweet hopes aime my sole": [0, 65535], "my sweet hopes aime my sole earths": [0, 65535], "sweet hopes aime my sole earths heauen": [0, 65535], "hopes aime my sole earths heauen and": [0, 65535], "aime my sole earths heauen and my": [0, 65535], "my sole earths heauen and my heauens": [0, 65535], "sole earths heauen and my heauens claime": [0, 65535], "earths heauen and my heauens claime luc": [0, 65535], "heauen and my heauens claime luc all": [0, 65535], "and my heauens claime luc all this": [0, 65535], "my heauens claime luc all this my": [0, 65535], "heauens claime luc all this my sister": [0, 65535], "claime luc all this my sister is": [0, 65535], "luc all this my sister is or": [0, 65535], "all this my sister is or else": [0, 65535], "this my sister is or else should": [0, 65535], "my sister is or else should be": [0, 65535], "sister is or else should be ant": [0, 65535], "is or else should be ant call": [0, 65535], "or else should be ant call thy": [0, 65535], "else should be ant call thy selfe": [0, 65535], "should be ant call thy selfe sister": [0, 65535], "be ant call thy selfe sister sweet": [0, 65535], "ant call thy selfe sister sweet for": [0, 65535], "call thy selfe sister sweet for i": [0, 65535], "thy selfe sister sweet for i am": [0, 65535], "selfe sister sweet for i am thee": [0, 65535], "sister sweet for i am thee thee": [0, 65535], "sweet for i am thee thee will": [0, 65535], "for i am thee thee will i": [0, 65535], "i am thee thee will i loue": [0, 65535], "am thee thee will i loue and": [0, 65535], "thee thee will i loue and with": [0, 65535], "thee will i loue and with thee": [0, 65535], "will i loue and with thee lead": [0, 65535], "i loue and with thee lead my": [0, 65535], "loue and with thee lead my life": [0, 65535], "and with thee lead my life thou": [0, 65535], "with thee lead my life thou hast": [0, 65535], "thee lead my life thou hast no": [0, 65535], "lead my life thou hast no husband": [0, 65535], "my life thou hast no husband yet": [0, 65535], "life thou hast no husband yet nor": [0, 65535], "thou hast no husband yet nor i": [0, 65535], "hast no husband yet nor i no": [0, 65535], "no husband yet nor i no wife": [0, 65535], "husband yet nor i no wife giue": [0, 65535], "yet nor i no wife giue me": [0, 65535], "nor i no wife giue me thy": [0, 65535], "i no wife giue me thy hand": [0, 65535], "no wife giue me thy hand luc": [0, 65535], "wife giue me thy hand luc oh": [0, 65535], "giue me thy hand luc oh soft": [0, 65535], "me thy hand luc oh soft sir": [0, 65535], "thy hand luc oh soft sir hold": [0, 65535], "hand luc oh soft sir hold you": [0, 65535], "luc oh soft sir hold you still": [0, 65535], "oh soft sir hold you still ile": [0, 65535], "soft sir hold you still ile fetch": [0, 65535], "sir hold you still ile fetch my": [0, 65535], "hold you still ile fetch my sister": [0, 65535], "you still ile fetch my sister to": [0, 65535], "still ile fetch my sister to get": [0, 65535], "ile fetch my sister to get her": [0, 65535], "fetch my sister to get her good": [0, 65535], "my sister to get her good will": [0, 65535], "sister to get her good will exit": [0, 65535], "to get her good will exit enter": [0, 65535], "get her good will exit enter dromio": [0, 65535], "her good will exit enter dromio siracusia": [0, 65535], "good will exit enter dromio siracusia ant": [0, 65535], "will exit enter dromio siracusia ant why": [0, 65535], "exit enter dromio siracusia ant why how": [0, 65535], "enter dromio siracusia ant why how now": [0, 65535], "dromio siracusia ant why how now dromio": [0, 65535], "siracusia ant why how now dromio where": [0, 65535], "ant why how now dromio where run'st": [0, 65535], "why how now dromio where run'st thou": [0, 65535], "how now dromio where run'st thou so": [0, 65535], "now dromio where run'st thou so fast": [0, 65535], "dromio where run'st thou so fast s": [0, 65535], "where run'st thou so fast s dro": [0, 65535], "run'st thou so fast s dro doe": [0, 65535], "thou so fast s dro doe you": [0, 65535], "so fast s dro doe you know": [0, 65535], "fast s dro doe you know me": [0, 65535], "s dro doe you know me sir": [0, 65535], "dro doe you know me sir am": [0, 65535], "doe you know me sir am i": [0, 65535], "you know me sir am i dromio": [0, 65535], "know me sir am i dromio am": [0, 65535], "me sir am i dromio am i": [0, 65535], "sir am i dromio am i your": [0, 65535], "am i dromio am i your man": [0, 65535], "i dromio am i your man am": [0, 65535], "dromio am i your man am i": [0, 65535], "am i your man am i my": [0, 65535], "i your man am i my selfe": [0, 65535], "your man am i my selfe ant": [0, 65535], "man am i my selfe ant thou": [0, 65535], "am i my selfe ant thou art": [0, 65535], "i my selfe ant thou art dromio": [0, 65535], "my selfe ant thou art dromio thou": [0, 65535], "selfe ant thou art dromio thou art": [0, 65535], "ant thou art dromio thou art my": [0, 65535], "thou art dromio thou art my man": [0, 65535], "art dromio thou art my man thou": [0, 65535], "dromio thou art my man thou art": [0, 65535], "thou art my man thou art thy": [0, 65535], "art my man thou art thy selfe": [0, 65535], "my man thou art thy selfe dro": [0, 65535], "man thou art thy selfe dro i": [0, 65535], "thou art thy selfe dro i am": [0, 65535], "art thy selfe dro i am an": [0, 65535], "thy selfe dro i am an asse": [0, 65535], "selfe dro i am an asse i": [0, 65535], "dro i am an asse i am": [0, 65535], "i am an asse i am a": [0, 65535], "am an asse i am a womans": [0, 65535], "an asse i am a womans man": [0, 65535], "asse i am a womans man and": [0, 65535], "i am a womans man and besides": [0, 65535], "am a womans man and besides my": [0, 65535], "a womans man and besides my selfe": [0, 65535], "womans man and besides my selfe ant": [0, 65535], "man and besides my selfe ant what": [0, 65535], "and besides my selfe ant what womans": [0, 65535], "besides my selfe ant what womans man": [0, 65535], "my selfe ant what womans man and": [0, 65535], "selfe ant what womans man and how": [0, 65535], "ant what womans man and how besides": [0, 65535], "what womans man and how besides thy": [0, 65535], "womans man and how besides thy selfe": [0, 65535], "man and how besides thy selfe dro": [0, 65535], "and how besides thy selfe dro marrie": [0, 65535], "how besides thy selfe dro marrie sir": [0, 65535], "besides thy selfe dro marrie sir besides": [0, 65535], "thy selfe dro marrie sir besides my": [0, 65535], "selfe dro marrie sir besides my selfe": [0, 65535], "dro marrie sir besides my selfe i": [0, 65535], "marrie sir besides my selfe i am": [0, 65535], "sir besides my selfe i am due": [0, 65535], "besides my selfe i am due to": [0, 65535], "my selfe i am due to a": [0, 65535], "selfe i am due to a woman": [0, 65535], "i am due to a woman one": [0, 65535], "am due to a woman one that": [0, 65535], "due to a woman one that claimes": [0, 65535], "to a woman one that claimes me": [0, 65535], "a woman one that claimes me one": [0, 65535], "woman one that claimes me one that": [0, 65535], "one that claimes me one that haunts": [0, 65535], "that claimes me one that haunts me": [0, 65535], "claimes me one that haunts me one": [0, 65535], "me one that haunts me one that": [0, 65535], "one that haunts me one that will": [0, 65535], "that haunts me one that will haue": [0, 65535], "haunts me one that will haue me": [0, 65535], "me one that will haue me anti": [0, 65535], "one that will haue me anti what": [0, 65535], "that will haue me anti what claime": [0, 65535], "will haue me anti what claime laies": [0, 65535], "haue me anti what claime laies she": [0, 65535], "me anti what claime laies she to": [0, 65535], "anti what claime laies she to thee": [0, 65535], "what claime laies she to thee dro": [0, 65535], "claime laies she to thee dro marry": [0, 65535], "laies she to thee dro marry sir": [0, 65535], "she to thee dro marry sir such": [0, 65535], "to thee dro marry sir such claime": [0, 65535], "thee dro marry sir such claime as": [0, 65535], "dro marry sir such claime as you": [0, 65535], "marry sir such claime as you would": [0, 65535], "sir such claime as you would lay": [0, 65535], "such claime as you would lay to": [0, 65535], "claime as you would lay to your": [0, 65535], "as you would lay to your horse": [0, 65535], "you would lay to your horse and": [0, 65535], "would lay to your horse and she": [0, 65535], "lay to your horse and she would": [0, 65535], "to your horse and she would haue": [0, 65535], "your horse and she would haue me": [0, 65535], "horse and she would haue me as": [0, 65535], "and she would haue me as a": [0, 65535], "she would haue me as a beast": [0, 65535], "would haue me as a beast not": [0, 65535], "haue me as a beast not that": [0, 65535], "me as a beast not that i": [0, 65535], "as a beast not that i beeing": [0, 65535], "a beast not that i beeing a": [0, 65535], "beast not that i beeing a beast": [0, 65535], "not that i beeing a beast she": [0, 65535], "that i beeing a beast she would": [0, 65535], "i beeing a beast she would haue": [0, 65535], "beeing a beast she would haue me": [0, 65535], "a beast she would haue me but": [0, 65535], "beast she would haue me but that": [0, 65535], "she would haue me but that she": [0, 65535], "would haue me but that she being": [0, 65535], "haue me but that she being a": [0, 65535], "me but that she being a verie": [0, 65535], "but that she being a verie beastly": [0, 65535], "that she being a verie beastly creature": [0, 65535], "she being a verie beastly creature layes": [0, 65535], "being a verie beastly creature layes claime": [0, 65535], "a verie beastly creature layes claime to": [0, 65535], "verie beastly creature layes claime to me": [0, 65535], "beastly creature layes claime to me anti": [0, 65535], "creature layes claime to me anti what": [0, 65535], "layes claime to me anti what is": [0, 65535], "claime to me anti what is she": [0, 65535], "to me anti what is she dro": [0, 65535], "me anti what is she dro a": [0, 65535], "anti what is she dro a very": [0, 65535], "what is she dro a very reuerent": [0, 65535], "is she dro a very reuerent body": [0, 65535], "she dro a very reuerent body i": [0, 65535], "dro a very reuerent body i such": [0, 65535], "a very reuerent body i such a": [0, 65535], "very reuerent body i such a one": [0, 65535], "reuerent body i such a one as": [0, 65535], "body i such a one as a": [0, 65535], "i such a one as a man": [0, 65535], "such a one as a man may": [0, 65535], "a one as a man may not": [0, 65535], "one as a man may not speake": [0, 65535], "as a man may not speake of": [0, 65535], "a man may not speake of without": [0, 65535], "man may not speake of without he": [0, 65535], "may not speake of without he say": [0, 65535], "not speake of without he say sir": [0, 65535], "speake of without he say sir reuerence": [0, 65535], "of without he say sir reuerence i": [0, 65535], "without he say sir reuerence i haue": [0, 65535], "he say sir reuerence i haue but": [0, 65535], "say sir reuerence i haue but leane": [0, 65535], "sir reuerence i haue but leane lucke": [0, 65535], "reuerence i haue but leane lucke in": [0, 65535], "i haue but leane lucke in the": [0, 65535], "haue but leane lucke in the match": [0, 65535], "but leane lucke in the match and": [0, 65535], "leane lucke in the match and yet": [0, 65535], "lucke in the match and yet is": [0, 65535], "in the match and yet is she": [0, 65535], "the match and yet is she a": [0, 65535], "match and yet is she a wondrous": [0, 65535], "and yet is she a wondrous fat": [0, 65535], "yet is she a wondrous fat marriage": [0, 65535], "is she a wondrous fat marriage anti": [0, 65535], "she a wondrous fat marriage anti how": [0, 65535], "a wondrous fat marriage anti how dost": [0, 65535], "wondrous fat marriage anti how dost thou": [0, 65535], "fat marriage anti how dost thou meane": [0, 65535], "marriage anti how dost thou meane a": [0, 65535], "anti how dost thou meane a fat": [0, 65535], "how dost thou meane a fat marriage": [0, 65535], "dost thou meane a fat marriage dro": [0, 65535], "thou meane a fat marriage dro marry": [0, 65535], "meane a fat marriage dro marry sir": [0, 65535], "a fat marriage dro marry sir she's": [0, 65535], "fat marriage dro marry sir she's the": [0, 65535], "marriage dro marry sir she's the kitchin": [0, 65535], "dro marry sir she's the kitchin wench": [0, 65535], "marry sir she's the kitchin wench al": [0, 65535], "sir she's the kitchin wench al grease": [0, 65535], "she's the kitchin wench al grease and": [0, 65535], "the kitchin wench al grease and i": [0, 65535], "kitchin wench al grease and i know": [0, 65535], "wench al grease and i know not": [0, 65535], "al grease and i know not what": [0, 65535], "grease and i know not what vse": [0, 65535], "and i know not what vse to": [0, 65535], "i know not what vse to put": [0, 65535], "know not what vse to put her": [0, 65535], "not what vse to put her too": [0, 65535], "what vse to put her too but": [0, 65535], "vse to put her too but to": [0, 65535], "to put her too but to make": [0, 65535], "put her too but to make a": [0, 65535], "her too but to make a lampe": [0, 65535], "too but to make a lampe of": [0, 65535], "but to make a lampe of her": [0, 65535], "to make a lampe of her and": [0, 65535], "make a lampe of her and run": [0, 65535], "a lampe of her and run from": [0, 65535], "lampe of her and run from her": [0, 65535], "of her and run from her by": [0, 65535], "her and run from her by her": [0, 65535], "and run from her by her owne": [0, 65535], "run from her by her owne light": [0, 65535], "from her by her owne light i": [0, 65535], "her by her owne light i warrant": [0, 65535], "by her owne light i warrant her": [0, 65535], "her owne light i warrant her ragges": [0, 65535], "owne light i warrant her ragges and": [0, 65535], "light i warrant her ragges and the": [0, 65535], "i warrant her ragges and the tallow": [0, 65535], "warrant her ragges and the tallow in": [0, 65535], "her ragges and the tallow in them": [0, 65535], "ragges and the tallow in them will": [0, 65535], "and the tallow in them will burne": [0, 65535], "the tallow in them will burne a": [0, 65535], "tallow in them will burne a poland": [0, 65535], "in them will burne a poland winter": [0, 65535], "them will burne a poland winter if": [0, 65535], "will burne a poland winter if she": [0, 65535], "burne a poland winter if she liues": [0, 65535], "a poland winter if she liues till": [0, 65535], "poland winter if she liues till doomesday": [0, 65535], "winter if she liues till doomesday she'l": [0, 65535], "if she liues till doomesday she'l burne": [0, 65535], "she liues till doomesday she'l burne a": [0, 65535], "liues till doomesday she'l burne a weeke": [0, 65535], "till doomesday she'l burne a weeke longer": [0, 65535], "doomesday she'l burne a weeke longer then": [0, 65535], "she'l burne a weeke longer then the": [0, 65535], "burne a weeke longer then the whole": [0, 65535], "a weeke longer then the whole world": [0, 65535], "weeke longer then the whole world anti": [0, 65535], "longer then the whole world anti what": [0, 65535], "then the whole world anti what complexion": [0, 65535], "the whole world anti what complexion is": [0, 65535], "whole world anti what complexion is she": [0, 65535], "world anti what complexion is she of": [0, 65535], "anti what complexion is she of dro": [0, 65535], "what complexion is she of dro swart": [0, 65535], "complexion is she of dro swart like": [0, 65535], "is she of dro swart like my": [0, 65535], "she of dro swart like my shoo": [0, 65535], "of dro swart like my shoo but": [0, 65535], "dro swart like my shoo but her": [0, 65535], "swart like my shoo but her face": [0, 65535], "like my shoo but her face nothing": [0, 65535], "my shoo but her face nothing like": [0, 65535], "shoo but her face nothing like so": [0, 65535], "but her face nothing like so cleane": [0, 65535], "her face nothing like so cleane kept": [0, 65535], "face nothing like so cleane kept for": [0, 65535], "nothing like so cleane kept for why": [0, 65535], "like so cleane kept for why she": [0, 65535], "so cleane kept for why she sweats": [0, 65535], "cleane kept for why she sweats a": [0, 65535], "kept for why she sweats a man": [0, 65535], "for why she sweats a man may": [0, 65535], "why she sweats a man may goe": [0, 65535], "she sweats a man may goe o": [0, 65535], "sweats a man may goe o uer": [0, 65535], "a man may goe o uer shooes": [0, 65535], "man may goe o uer shooes in": [0, 65535], "may goe o uer shooes in the": [0, 65535], "goe o uer shooes in the grime": [0, 65535], "o uer shooes in the grime of": [0, 65535], "uer shooes in the grime of it": [0, 65535], "shooes in the grime of it anti": [0, 65535], "in the grime of it anti that's": [0, 65535], "the grime of it anti that's a": [0, 65535], "grime of it anti that's a fault": [0, 65535], "of it anti that's a fault that": [0, 65535], "it anti that's a fault that water": [0, 65535], "anti that's a fault that water will": [0, 65535], "that's a fault that water will mend": [0, 65535], "a fault that water will mend dro": [0, 65535], "fault that water will mend dro no": [0, 65535], "that water will mend dro no sir": [0, 65535], "water will mend dro no sir 'tis": [0, 65535], "will mend dro no sir 'tis in": [0, 65535], "mend dro no sir 'tis in graine": [0, 65535], "dro no sir 'tis in graine noahs": [0, 65535], "no sir 'tis in graine noahs flood": [0, 65535], "sir 'tis in graine noahs flood could": [0, 65535], "'tis in graine noahs flood could not": [0, 65535], "in graine noahs flood could not do": [0, 65535], "graine noahs flood could not do it": [0, 65535], "noahs flood could not do it anti": [0, 65535], "flood could not do it anti what's": [0, 65535], "could not do it anti what's her": [0, 65535], "not do it anti what's her name": [0, 65535], "do it anti what's her name dro": [0, 65535], "it anti what's her name dro nell": [0, 65535], "anti what's her name dro nell sir": [0, 65535], "what's her name dro nell sir but": [0, 65535], "her name dro nell sir but her": [0, 65535], "name dro nell sir but her name": [0, 65535], "dro nell sir but her name is": [0, 65535], "nell sir but her name is three": [0, 65535], "sir but her name is three quarters": [0, 65535], "but her name is three quarters that's": [0, 65535], "her name is three quarters that's an": [0, 65535], "name is three quarters that's an ell": [0, 65535], "is three quarters that's an ell and": [0, 65535], "three quarters that's an ell and three": [0, 65535], "quarters that's an ell and three quarters": [0, 65535], "that's an ell and three quarters will": [0, 65535], "an ell and three quarters will not": [0, 65535], "ell and three quarters will not measure": [0, 65535], "and three quarters will not measure her": [0, 65535], "three quarters will not measure her from": [0, 65535], "quarters will not measure her from hip": [0, 65535], "will not measure her from hip to": [0, 65535], "not measure her from hip to hip": [0, 65535], "measure her from hip to hip anti": [0, 65535], "her from hip to hip anti then": [0, 65535], "from hip to hip anti then she": [0, 65535], "hip to hip anti then she beares": [0, 65535], "to hip anti then she beares some": [0, 65535], "hip anti then she beares some bredth": [0, 65535], "anti then she beares some bredth dro": [0, 65535], "then she beares some bredth dro no": [0, 65535], "she beares some bredth dro no longer": [0, 65535], "beares some bredth dro no longer from": [0, 65535], "some bredth dro no longer from head": [0, 65535], "bredth dro no longer from head to": [0, 65535], "dro no longer from head to foot": [0, 65535], "no longer from head to foot then": [0, 65535], "longer from head to foot then from": [0, 65535], "from head to foot then from hippe": [0, 65535], "head to foot then from hippe to": [0, 65535], "to foot then from hippe to hippe": [0, 65535], "foot then from hippe to hippe she": [0, 65535], "then from hippe to hippe she is": [0, 65535], "from hippe to hippe she is sphericall": [0, 65535], "hippe to hippe she is sphericall like": [0, 65535], "to hippe she is sphericall like a": [0, 65535], "hippe she is sphericall like a globe": [0, 65535], "she is sphericall like a globe i": [0, 65535], "is sphericall like a globe i could": [0, 65535], "sphericall like a globe i could find": [0, 65535], "like a globe i could find out": [0, 65535], "a globe i could find out countries": [0, 65535], "globe i could find out countries in": [0, 65535], "i could find out countries in her": [0, 65535], "could find out countries in her anti": [0, 65535], "find out countries in her anti in": [0, 65535], "out countries in her anti in what": [0, 65535], "countries in her anti in what part": [0, 65535], "in her anti in what part of": [0, 65535], "her anti in what part of her": [0, 65535], "anti in what part of her body": [0, 65535], "in what part of her body stands": [0, 65535], "what part of her body stands ireland": [0, 65535], "part of her body stands ireland dro": [0, 65535], "of her body stands ireland dro marry": [0, 65535], "her body stands ireland dro marry sir": [0, 65535], "body stands ireland dro marry sir in": [0, 65535], "stands ireland dro marry sir in her": [0, 65535], "ireland dro marry sir in her buttockes": [0, 65535], "dro marry sir in her buttockes i": [0, 65535], "marry sir in her buttockes i found": [0, 65535], "sir in her buttockes i found it": [0, 65535], "in her buttockes i found it out": [0, 65535], "her buttockes i found it out by": [0, 65535], "buttockes i found it out by the": [0, 65535], "i found it out by the bogges": [0, 65535], "found it out by the bogges ant": [0, 65535], "it out by the bogges ant where": [0, 65535], "out by the bogges ant where scotland": [0, 65535], "by the bogges ant where scotland dro": [0, 65535], "the bogges ant where scotland dro i": [0, 65535], "bogges ant where scotland dro i found": [0, 65535], "ant where scotland dro i found it": [0, 65535], "where scotland dro i found it by": [0, 65535], "scotland dro i found it by the": [0, 65535], "dro i found it by the barrennesse": [0, 65535], "i found it by the barrennesse hard": [0, 65535], "found it by the barrennesse hard in": [0, 65535], "it by the barrennesse hard in the": [0, 65535], "by the barrennesse hard in the palme": [0, 65535], "the barrennesse hard in the palme of": [0, 65535], "barrennesse hard in the palme of the": [0, 65535], "hard in the palme of the hand": [0, 65535], "in the palme of the hand ant": [0, 65535], "the palme of the hand ant where": [0, 65535], "palme of the hand ant where france": [0, 65535], "of the hand ant where france dro": [0, 65535], "the hand ant where france dro in": [0, 65535], "hand ant where france dro in her": [0, 65535], "ant where france dro in her forhead": [0, 65535], "where france dro in her forhead arm'd": [0, 65535], "france dro in her forhead arm'd and": [0, 65535], "dro in her forhead arm'd and reuerted": [0, 65535], "in her forhead arm'd and reuerted making": [0, 65535], "her forhead arm'd and reuerted making warre": [0, 65535], "forhead arm'd and reuerted making warre against": [0, 65535], "arm'd and reuerted making warre against her": [0, 65535], "and reuerted making warre against her heire": [0, 65535], "reuerted making warre against her heire ant": [0, 65535], "making warre against her heire ant where": [0, 65535], "warre against her heire ant where england": [0, 65535], "against her heire ant where england dro": [0, 65535], "her heire ant where england dro i": [0, 65535], "heire ant where england dro i look'd": [0, 65535], "ant where england dro i look'd for": [0, 65535], "where england dro i look'd for the": [0, 65535], "england dro i look'd for the chalkle": [0, 65535], "dro i look'd for the chalkle cliffes": [0, 65535], "i look'd for the chalkle cliffes but": [0, 65535], "look'd for the chalkle cliffes but i": [0, 65535], "for the chalkle cliffes but i could": [0, 65535], "the chalkle cliffes but i could find": [0, 65535], "chalkle cliffes but i could find no": [0, 65535], "cliffes but i could find no whitenesse": [0, 65535], "but i could find no whitenesse in": [0, 65535], "i could find no whitenesse in them": [0, 65535], "could find no whitenesse in them but": [0, 65535], "find no whitenesse in them but i": [0, 65535], "no whitenesse in them but i guesse": [0, 65535], "whitenesse in them but i guesse it": [0, 65535], "in them but i guesse it stood": [0, 65535], "them but i guesse it stood in": [0, 65535], "but i guesse it stood in her": [0, 65535], "i guesse it stood in her chin": [0, 65535], "guesse it stood in her chin by": [0, 65535], "it stood in her chin by the": [0, 65535], "stood in her chin by the salt": [0, 65535], "in her chin by the salt rheume": [0, 65535], "her chin by the salt rheume that": [0, 65535], "chin by the salt rheume that ranne": [0, 65535], "by the salt rheume that ranne betweene": [0, 65535], "the salt rheume that ranne betweene france": [0, 65535], "salt rheume that ranne betweene france and": [0, 65535], "rheume that ranne betweene france and it": [0, 65535], "that ranne betweene france and it ant": [0, 65535], "ranne betweene france and it ant where": [0, 65535], "betweene france and it ant where spaine": [0, 65535], "france and it ant where spaine dro": [0, 65535], "and it ant where spaine dro faith": [0, 65535], "it ant where spaine dro faith i": [0, 65535], "ant where spaine dro faith i saw": [0, 65535], "where spaine dro faith i saw it": [0, 65535], "spaine dro faith i saw it not": [0, 65535], "dro faith i saw it not but": [0, 65535], "faith i saw it not but i": [0, 65535], "i saw it not but i felt": [0, 65535], "saw it not but i felt it": [0, 65535], "it not but i felt it hot": [0, 65535], "not but i felt it hot in": [0, 65535], "but i felt it hot in her": [0, 65535], "i felt it hot in her breth": [0, 65535], "felt it hot in her breth ant": [0, 65535], "it hot in her breth ant where": [0, 65535], "hot in her breth ant where america": [0, 65535], "in her breth ant where america the": [0, 65535], "her breth ant where america the indies": [0, 65535], "breth ant where america the indies dro": [0, 65535], "ant where america the indies dro oh": [0, 65535], "where america the indies dro oh sir": [0, 65535], "america the indies dro oh sir vpon": [0, 65535], "the indies dro oh sir vpon her": [0, 65535], "indies dro oh sir vpon her nose": [0, 65535], "dro oh sir vpon her nose all": [0, 65535], "oh sir vpon her nose all ore": [0, 65535], "sir vpon her nose all ore embellished": [0, 65535], "vpon her nose all ore embellished with": [0, 65535], "her nose all ore embellished with rubies": [0, 65535], "nose all ore embellished with rubies carbuncles": [0, 65535], "all ore embellished with rubies carbuncles saphires": [0, 65535], "ore embellished with rubies carbuncles saphires declining": [0, 65535], "embellished with rubies carbuncles saphires declining their": [0, 65535], "with rubies carbuncles saphires declining their rich": [0, 65535], "rubies carbuncles saphires declining their rich aspect": [0, 65535], "carbuncles saphires declining their rich aspect to": [0, 65535], "saphires declining their rich aspect to the": [0, 65535], "declining their rich aspect to the hot": [0, 65535], "their rich aspect to the hot breath": [0, 65535], "rich aspect to the hot breath of": [0, 65535], "aspect to the hot breath of spaine": [0, 65535], "to the hot breath of spaine who": [0, 65535], "the hot breath of spaine who sent": [0, 65535], "hot breath of spaine who sent whole": [0, 65535], "breath of spaine who sent whole armadoes": [0, 65535], "of spaine who sent whole armadoes of": [0, 65535], "spaine who sent whole armadoes of carrects": [0, 65535], "who sent whole armadoes of carrects to": [0, 65535], "sent whole armadoes of carrects to be": [0, 65535], "whole armadoes of carrects to be ballast": [0, 65535], "armadoes of carrects to be ballast at": [0, 65535], "of carrects to be ballast at her": [0, 65535], "carrects to be ballast at her nose": [0, 65535], "to be ballast at her nose anti": [0, 65535], "be ballast at her nose anti where": [0, 65535], "ballast at her nose anti where stood": [0, 65535], "at her nose anti where stood belgia": [0, 65535], "her nose anti where stood belgia the": [0, 65535], "nose anti where stood belgia the netherlands": [0, 65535], "anti where stood belgia the netherlands dro": [0, 65535], "where stood belgia the netherlands dro oh": [0, 65535], "stood belgia the netherlands dro oh sir": [0, 65535], "belgia the netherlands dro oh sir i": [0, 65535], "the netherlands dro oh sir i did": [0, 65535], "netherlands dro oh sir i did not": [0, 65535], "dro oh sir i did not looke": [0, 65535], "oh sir i did not looke so": [0, 65535], "sir i did not looke so low": [0, 65535], "i did not looke so low to": [0, 65535], "did not looke so low to conclude": [0, 65535], "not looke so low to conclude this": [0, 65535], "looke so low to conclude this drudge": [0, 65535], "so low to conclude this drudge or": [0, 65535], "low to conclude this drudge or diuiner": [0, 65535], "to conclude this drudge or diuiner layd": [0, 65535], "conclude this drudge or diuiner layd claime": [0, 65535], "this drudge or diuiner layd claime to": [0, 65535], "drudge or diuiner layd claime to mee": [0, 65535], "or diuiner layd claime to mee call'd": [0, 65535], "diuiner layd claime to mee call'd mee": [0, 65535], "layd claime to mee call'd mee dromio": [0, 65535], "claime to mee call'd mee dromio swore": [0, 65535], "to mee call'd mee dromio swore i": [0, 65535], "mee call'd mee dromio swore i was": [0, 65535], "call'd mee dromio swore i was assur'd": [0, 65535], "mee dromio swore i was assur'd to": [0, 65535], "dromio swore i was assur'd to her": [0, 65535], "swore i was assur'd to her told": [0, 65535], "i was assur'd to her told me": [0, 65535], "was assur'd to her told me what": [0, 65535], "assur'd to her told me what priuie": [0, 65535], "to her told me what priuie markes": [0, 65535], "her told me what priuie markes i": [0, 65535], "told me what priuie markes i had": [0, 65535], "me what priuie markes i had about": [0, 65535], "what priuie markes i had about mee": [0, 65535], "priuie markes i had about mee as": [0, 65535], "markes i had about mee as the": [0, 65535], "i had about mee as the marke": [0, 65535], "had about mee as the marke of": [0, 65535], "about mee as the marke of my": [0, 65535], "mee as the marke of my shoulder": [0, 65535], "as the marke of my shoulder the": [0, 65535], "the marke of my shoulder the mole": [0, 65535], "marke of my shoulder the mole in": [0, 65535], "of my shoulder the mole in my": [0, 65535], "my shoulder the mole in my necke": [0, 65535], "shoulder the mole in my necke the": [0, 65535], "the mole in my necke the great": [0, 65535], "mole in my necke the great wart": [0, 65535], "in my necke the great wart on": [0, 65535], "my necke the great wart on my": [0, 65535], "necke the great wart on my left": [0, 65535], "the great wart on my left arme": [0, 65535], "great wart on my left arme that": [0, 65535], "wart on my left arme that i": [0, 65535], "on my left arme that i amaz'd": [0, 65535], "my left arme that i amaz'd ranne": [0, 65535], "left arme that i amaz'd ranne from": [0, 65535], "arme that i amaz'd ranne from her": [0, 65535], "that i amaz'd ranne from her as": [0, 65535], "i amaz'd ranne from her as a": [0, 65535], "amaz'd ranne from her as a witch": [0, 65535], "ranne from her as a witch and": [0, 65535], "from her as a witch and i": [0, 65535], "her as a witch and i thinke": [0, 65535], "as a witch and i thinke if": [0, 65535], "a witch and i thinke if my": [0, 65535], "witch and i thinke if my brest": [0, 65535], "and i thinke if my brest had": [0, 65535], "i thinke if my brest had not": [0, 65535], "thinke if my brest had not beene": [0, 65535], "if my brest had not beene made": [0, 65535], "my brest had not beene made of": [0, 65535], "brest had not beene made of faith": [0, 65535], "had not beene made of faith and": [0, 65535], "not beene made of faith and my": [0, 65535], "beene made of faith and my heart": [0, 65535], "made of faith and my heart of": [0, 65535], "of faith and my heart of steele": [0, 65535], "faith and my heart of steele she": [0, 65535], "and my heart of steele she had": [0, 65535], "my heart of steele she had transform'd": [0, 65535], "heart of steele she had transform'd me": [0, 65535], "of steele she had transform'd me to": [0, 65535], "steele she had transform'd me to a": [0, 65535], "she had transform'd me to a curtull": [0, 65535], "had transform'd me to a curtull dog": [0, 65535], "transform'd me to a curtull dog made": [0, 65535], "me to a curtull dog made me": [0, 65535], "to a curtull dog made me turne": [0, 65535], "a curtull dog made me turne i'th": [0, 65535], "curtull dog made me turne i'th wheele": [0, 65535], "dog made me turne i'th wheele anti": [0, 65535], "made me turne i'th wheele anti go": [0, 65535], "me turne i'th wheele anti go hie": [0, 65535], "turne i'th wheele anti go hie thee": [0, 65535], "i'th wheele anti go hie thee presently": [0, 65535], "wheele anti go hie thee presently post": [0, 65535], "anti go hie thee presently post to": [0, 65535], "go hie thee presently post to the": [0, 65535], "hie thee presently post to the rode": [0, 65535], "thee presently post to the rode and": [0, 65535], "presently post to the rode and if": [0, 65535], "post to the rode and if the": [0, 65535], "to the rode and if the winde": [0, 65535], "the rode and if the winde blow": [0, 65535], "rode and if the winde blow any": [0, 65535], "and if the winde blow any way": [0, 65535], "if the winde blow any way from": [0, 65535], "the winde blow any way from shore": [0, 65535], "winde blow any way from shore i": [0, 65535], "blow any way from shore i will": [0, 65535], "any way from shore i will not": [0, 65535], "way from shore i will not harbour": [0, 65535], "from shore i will not harbour in": [0, 65535], "shore i will not harbour in this": [0, 65535], "i will not harbour in this towne": [0, 65535], "will not harbour in this towne to": [0, 65535], "not harbour in this towne to night": [0, 65535], "harbour in this towne to night if": [0, 65535], "in this towne to night if any": [0, 65535], "this towne to night if any barke": [0, 65535], "towne to night if any barke put": [0, 65535], "to night if any barke put forth": [0, 65535], "night if any barke put forth come": [0, 65535], "if any barke put forth come to": [0, 65535], "any barke put forth come to the": [0, 65535], "barke put forth come to the mart": [0, 65535], "put forth come to the mart where": [0, 65535], "forth come to the mart where i": [0, 65535], "come to the mart where i will": [0, 65535], "to the mart where i will walke": [0, 65535], "the mart where i will walke till": [0, 65535], "mart where i will walke till thou": [0, 65535], "where i will walke till thou returne": [0, 65535], "i will walke till thou returne to": [0, 65535], "will walke till thou returne to me": [0, 65535], "walke till thou returne to me if": [0, 65535], "till thou returne to me if euerie": [0, 65535], "thou returne to me if euerie one": [0, 65535], "returne to me if euerie one knowes": [0, 65535], "to me if euerie one knowes vs": [0, 65535], "me if euerie one knowes vs and": [0, 65535], "if euerie one knowes vs and we": [0, 65535], "euerie one knowes vs and we know": [0, 65535], "one knowes vs and we know none": [0, 65535], "knowes vs and we know none 'tis": [0, 65535], "vs and we know none 'tis time": [0, 65535], "and we know none 'tis time i": [0, 65535], "we know none 'tis time i thinke": [0, 65535], "know none 'tis time i thinke to": [0, 65535], "none 'tis time i thinke to trudge": [0, 65535], "'tis time i thinke to trudge packe": [0, 65535], "time i thinke to trudge packe and": [0, 65535], "i thinke to trudge packe and be": [0, 65535], "thinke to trudge packe and be gone": [0, 65535], "to trudge packe and be gone dro": [0, 65535], "trudge packe and be gone dro as": [0, 65535], "packe and be gone dro as from": [0, 65535], "and be gone dro as from a": [0, 65535], "be gone dro as from a beare": [0, 65535], "gone dro as from a beare a": [0, 65535], "dro as from a beare a man": [0, 65535], "as from a beare a man would": [0, 65535], "from a beare a man would run": [0, 65535], "a beare a man would run for": [0, 65535], "beare a man would run for life": [0, 65535], "a man would run for life so": [0, 65535], "man would run for life so flie": [0, 65535], "would run for life so flie i": [0, 65535], "run for life so flie i from": [0, 65535], "for life so flie i from her": [0, 65535], "life so flie i from her that": [0, 65535], "so flie i from her that would": [0, 65535], "flie i from her that would be": [0, 65535], "i from her that would be my": [0, 65535], "from her that would be my wife": [0, 65535], "her that would be my wife exit": [0, 65535], "that would be my wife exit anti": [0, 65535], "would be my wife exit anti there's": [0, 65535], "be my wife exit anti there's none": [0, 65535], "my wife exit anti there's none but": [0, 65535], "wife exit anti there's none but witches": [0, 65535], "exit anti there's none but witches do": [0, 65535], "anti there's none but witches do inhabite": [0, 65535], "there's none but witches do inhabite heere": [0, 65535], "none but witches do inhabite heere and": [0, 65535], "but witches do inhabite heere and therefore": [0, 65535], "witches do inhabite heere and therefore 'tis": [0, 65535], "do inhabite heere and therefore 'tis hie": [0, 65535], "inhabite heere and therefore 'tis hie time": [0, 65535], "heere and therefore 'tis hie time that": [0, 65535], "and therefore 'tis hie time that i": [0, 65535], "therefore 'tis hie time that i were": [0, 65535], "'tis hie time that i were hence": [0, 65535], "hie time that i were hence she": [0, 65535], "time that i were hence she that": [0, 65535], "that i were hence she that doth": [0, 65535], "i were hence she that doth call": [0, 65535], "were hence she that doth call me": [0, 65535], "hence she that doth call me husband": [0, 65535], "she that doth call me husband euen": [0, 65535], "that doth call me husband euen my": [0, 65535], "doth call me husband euen my soule": [0, 65535], "call me husband euen my soule doth": [0, 65535], "me husband euen my soule doth for": [0, 65535], "husband euen my soule doth for a": [0, 65535], "euen my soule doth for a wife": [0, 65535], "my soule doth for a wife abhorre": [0, 65535], "soule doth for a wife abhorre but": [0, 65535], "doth for a wife abhorre but her": [0, 65535], "for a wife abhorre but her faire": [0, 65535], "a wife abhorre but her faire sister": [0, 65535], "wife abhorre but her faire sister possest": [0, 65535], "abhorre but her faire sister possest with": [0, 65535], "but her faire sister possest with such": [0, 65535], "her faire sister possest with such a": [0, 65535], "faire sister possest with such a gentle": [0, 65535], "sister possest with such a gentle soueraigne": [0, 65535], "possest with such a gentle soueraigne grace": [0, 65535], "with such a gentle soueraigne grace of": [0, 65535], "such a gentle soueraigne grace of such": [0, 65535], "a gentle soueraigne grace of such inchanting": [0, 65535], "gentle soueraigne grace of such inchanting presence": [0, 65535], "soueraigne grace of such inchanting presence and": [0, 65535], "grace of such inchanting presence and discourse": [0, 65535], "of such inchanting presence and discourse hath": [0, 65535], "such inchanting presence and discourse hath almost": [0, 65535], "inchanting presence and discourse hath almost made": [0, 65535], "presence and discourse hath almost made me": [0, 65535], "and discourse hath almost made me traitor": [0, 65535], "discourse hath almost made me traitor to": [0, 65535], "hath almost made me traitor to my": [0, 65535], "almost made me traitor to my selfe": [0, 65535], "made me traitor to my selfe but": [0, 65535], "me traitor to my selfe but least": [0, 65535], "traitor to my selfe but least my": [0, 65535], "to my selfe but least my selfe": [0, 65535], "my selfe but least my selfe be": [0, 65535], "selfe but least my selfe be guilty": [0, 65535], "but least my selfe be guilty to": [0, 65535], "least my selfe be guilty to selfe": [0, 65535], "my selfe be guilty to selfe wrong": [0, 65535], "selfe be guilty to selfe wrong ile": [0, 65535], "be guilty to selfe wrong ile stop": [0, 65535], "guilty to selfe wrong ile stop mine": [0, 65535], "to selfe wrong ile stop mine eares": [0, 65535], "selfe wrong ile stop mine eares against": [0, 65535], "wrong ile stop mine eares against the": [0, 65535], "ile stop mine eares against the mermaids": [0, 65535], "stop mine eares against the mermaids song": [0, 65535], "mine eares against the mermaids song enter": [0, 65535], "eares against the mermaids song enter angelo": [0, 65535], "against the mermaids song enter angelo with": [0, 65535], "the mermaids song enter angelo with the": [0, 65535], "mermaids song enter angelo with the chaine": [0, 65535], "song enter angelo with the chaine ang": [0, 65535], "enter angelo with the chaine ang mr": [0, 65535], "angelo with the chaine ang mr antipholus": [0, 65535], "with the chaine ang mr antipholus anti": [0, 65535], "the chaine ang mr antipholus anti i": [0, 65535], "chaine ang mr antipholus anti i that's": [0, 65535], "ang mr antipholus anti i that's my": [0, 65535], "mr antipholus anti i that's my name": [0, 65535], "antipholus anti i that's my name ang": [0, 65535], "anti i that's my name ang i": [0, 65535], "i that's my name ang i know": [0, 65535], "that's my name ang i know it": [0, 65535], "my name ang i know it well": [0, 65535], "name ang i know it well sir": [0, 65535], "ang i know it well sir loe": [0, 65535], "i know it well sir loe here's": [0, 65535], "know it well sir loe here's the": [0, 65535], "it well sir loe here's the chaine": [0, 65535], "well sir loe here's the chaine i": [0, 65535], "sir loe here's the chaine i thought": [0, 65535], "loe here's the chaine i thought to": [0, 65535], "here's the chaine i thought to haue": [0, 65535], "the chaine i thought to haue tane": [0, 65535], "chaine i thought to haue tane you": [0, 65535], "i thought to haue tane you at": [0, 65535], "thought to haue tane you at the": [0, 65535], "to haue tane you at the porpentine": [0, 65535], "haue tane you at the porpentine the": [0, 65535], "tane you at the porpentine the chaine": [0, 65535], "you at the porpentine the chaine vnfinish'd": [0, 65535], "at the porpentine the chaine vnfinish'd made": [0, 65535], "the porpentine the chaine vnfinish'd made me": [0, 65535], "porpentine the chaine vnfinish'd made me stay": [0, 65535], "the chaine vnfinish'd made me stay thus": [0, 65535], "chaine vnfinish'd made me stay thus long": [0, 65535], "vnfinish'd made me stay thus long anti": [0, 65535], "made me stay thus long anti what": [0, 65535], "me stay thus long anti what is": [0, 65535], "stay thus long anti what is your": [0, 65535], "thus long anti what is your will": [0, 65535], "long anti what is your will that": [0, 65535], "anti what is your will that i": [0, 65535], "what is your will that i shal": [0, 65535], "is your will that i shal do": [0, 65535], "your will that i shal do with": [0, 65535], "will that i shal do with this": [0, 65535], "that i shal do with this ang": [0, 65535], "i shal do with this ang what": [0, 65535], "shal do with this ang what please": [0, 65535], "do with this ang what please your": [0, 65535], "with this ang what please your selfe": [0, 65535], "this ang what please your selfe sir": [0, 65535], "ang what please your selfe sir i": [0, 65535], "what please your selfe sir i haue": [0, 65535], "please your selfe sir i haue made": [0, 65535], "your selfe sir i haue made it": [0, 65535], "selfe sir i haue made it for": [0, 65535], "sir i haue made it for you": [0, 65535], "i haue made it for you anti": [0, 65535], "haue made it for you anti made": [0, 65535], "made it for you anti made it": [0, 65535], "it for you anti made it for": [0, 65535], "for you anti made it for me": [0, 65535], "you anti made it for me sir": [0, 65535], "anti made it for me sir i": [0, 65535], "made it for me sir i bespoke": [0, 65535], "it for me sir i bespoke it": [0, 65535], "for me sir i bespoke it not": [0, 65535], "me sir i bespoke it not ang": [0, 65535], "sir i bespoke it not ang not": [0, 65535], "i bespoke it not ang not once": [0, 65535], "bespoke it not ang not once nor": [0, 65535], "it not ang not once nor twice": [0, 65535], "not ang not once nor twice but": [0, 65535], "ang not once nor twice but twentie": [0, 65535], "not once nor twice but twentie times": [0, 65535], "once nor twice but twentie times you": [0, 65535], "nor twice but twentie times you haue": [0, 65535], "twice but twentie times you haue go": [0, 65535], "but twentie times you haue go home": [0, 65535], "twentie times you haue go home with": [0, 65535], "times you haue go home with it": [0, 65535], "you haue go home with it and": [0, 65535], "haue go home with it and please": [0, 65535], "go home with it and please your": [0, 65535], "home with it and please your wife": [0, 65535], "with it and please your wife withall": [0, 65535], "it and please your wife withall and": [0, 65535], "and please your wife withall and soone": [0, 65535], "please your wife withall and soone at": [0, 65535], "your wife withall and soone at supper": [0, 65535], "wife withall and soone at supper time": [0, 65535], "withall and soone at supper time ile": [0, 65535], "and soone at supper time ile visit": [0, 65535], "soone at supper time ile visit you": [0, 65535], "at supper time ile visit you and": [0, 65535], "supper time ile visit you and then": [0, 65535], "time ile visit you and then receiue": [0, 65535], "ile visit you and then receiue my": [0, 65535], "visit you and then receiue my money": [0, 65535], "you and then receiue my money for": [0, 65535], "and then receiue my money for the": [0, 65535], "then receiue my money for the chaine": [0, 65535], "receiue my money for the chaine anti": [0, 65535], "my money for the chaine anti i": [0, 65535], "money for the chaine anti i pray": [0, 65535], "for the chaine anti i pray you": [0, 65535], "the chaine anti i pray you sir": [0, 65535], "chaine anti i pray you sir receiue": [0, 65535], "anti i pray you sir receiue the": [0, 65535], "i pray you sir receiue the money": [0, 65535], "pray you sir receiue the money now": [0, 65535], "you sir receiue the money now for": [0, 65535], "sir receiue the money now for feare": [0, 65535], "receiue the money now for feare you": [0, 65535], "the money now for feare you ne're": [0, 65535], "money now for feare you ne're see": [0, 65535], "now for feare you ne're see chaine": [0, 65535], "for feare you ne're see chaine nor": [0, 65535], "feare you ne're see chaine nor mony": [0, 65535], "you ne're see chaine nor mony more": [0, 65535], "ne're see chaine nor mony more ang": [0, 65535], "see chaine nor mony more ang you": [0, 65535], "chaine nor mony more ang you are": [0, 65535], "nor mony more ang you are a": [0, 65535], "mony more ang you are a merry": [0, 65535], "more ang you are a merry man": [0, 65535], "ang you are a merry man sir": [0, 65535], "you are a merry man sir fare": [0, 65535], "are a merry man sir fare you": [0, 65535], "a merry man sir fare you well": [0, 65535], "merry man sir fare you well exit": [0, 65535], "man sir fare you well exit ant": [0, 65535], "sir fare you well exit ant what": [0, 65535], "fare you well exit ant what i": [0, 65535], "you well exit ant what i should": [0, 65535], "well exit ant what i should thinke": [0, 65535], "exit ant what i should thinke of": [0, 65535], "ant what i should thinke of this": [0, 65535], "what i should thinke of this i": [0, 65535], "i should thinke of this i cannot": [0, 65535], "should thinke of this i cannot tell": [0, 65535], "thinke of this i cannot tell but": [0, 65535], "of this i cannot tell but this": [0, 65535], "this i cannot tell but this i": [0, 65535], "i cannot tell but this i thinke": [0, 65535], "cannot tell but this i thinke there's": [0, 65535], "tell but this i thinke there's no": [0, 65535], "but this i thinke there's no man": [0, 65535], "this i thinke there's no man is": [0, 65535], "i thinke there's no man is so": [0, 65535], "thinke there's no man is so vaine": [0, 65535], "there's no man is so vaine that": [0, 65535], "no man is so vaine that would": [0, 65535], "man is so vaine that would refuse": [0, 65535], "is so vaine that would refuse so": [0, 65535], "so vaine that would refuse so faire": [0, 65535], "vaine that would refuse so faire an": [0, 65535], "that would refuse so faire an offer'd": [0, 65535], "would refuse so faire an offer'd chaine": [0, 65535], "refuse so faire an offer'd chaine i": [0, 65535], "so faire an offer'd chaine i see": [0, 65535], "faire an offer'd chaine i see a": [0, 65535], "an offer'd chaine i see a man": [0, 65535], "offer'd chaine i see a man heere": [0, 65535], "chaine i see a man heere needs": [0, 65535], "i see a man heere needs not": [0, 65535], "see a man heere needs not liue": [0, 65535], "a man heere needs not liue by": [0, 65535], "man heere needs not liue by shifts": [0, 65535], "heere needs not liue by shifts when": [0, 65535], "needs not liue by shifts when in": [0, 65535], "not liue by shifts when in the": [0, 65535], "liue by shifts when in the streets": [0, 65535], "by shifts when in the streets he": [0, 65535], "shifts when in the streets he meetes": [0, 65535], "when in the streets he meetes such": [0, 65535], "in the streets he meetes such golden": [0, 65535], "the streets he meetes such golden gifts": [0, 65535], "streets he meetes such golden gifts ile": [0, 65535], "he meetes such golden gifts ile to": [0, 65535], "meetes such golden gifts ile to the": [0, 65535], "such golden gifts ile to the mart": [0, 65535], "golden gifts ile to the mart and": [0, 65535], "gifts ile to the mart and there": [0, 65535], "ile to the mart and there for": [0, 65535], "to the mart and there for dromio": [0, 65535], "the mart and there for dromio stay": [0, 65535], "mart and there for dromio stay if": [0, 65535], "and there for dromio stay if any": [0, 65535], "there for dromio stay if any ship": [0, 65535], "for dromio stay if any ship put": [0, 65535], "dromio stay if any ship put out": [0, 65535], "stay if any ship put out then": [0, 65535], "if any ship put out then straight": [0, 65535], "any ship put out then straight away": [0, 65535], "ship put out then straight away exit": [0, 65535], "actus tertius scena prima enter antipholus of ephesus": [0, 65535], "tertius scena prima enter antipholus of ephesus his": [0, 65535], "scena prima enter antipholus of ephesus his man": [0, 65535], "prima enter antipholus of ephesus his man dromio": [0, 65535], "enter antipholus of ephesus his man dromio angelo": [0, 65535], "antipholus of ephesus his man dromio angelo the": [0, 65535], "of ephesus his man dromio angelo the goldsmith": [0, 65535], "ephesus his man dromio angelo the goldsmith and": [0, 65535], "his man dromio angelo the goldsmith and balthaser": [0, 65535], "man dromio angelo the goldsmith and balthaser the": [0, 65535], "dromio angelo the goldsmith and balthaser the merchant": [0, 65535], "angelo the goldsmith and balthaser the merchant e": [0, 65535], "the goldsmith and balthaser the merchant e anti": [0, 65535], "goldsmith and balthaser the merchant e anti good": [0, 65535], "and balthaser the merchant e anti good signior": [0, 65535], "balthaser the merchant e anti good signior angelo": [0, 65535], "the merchant e anti good signior angelo you": [0, 65535], "merchant e anti good signior angelo you must": [0, 65535], "e anti good signior angelo you must excuse": [0, 65535], "anti good signior angelo you must excuse vs": [0, 65535], "good signior angelo you must excuse vs all": [0, 65535], "signior angelo you must excuse vs all my": [0, 65535], "angelo you must excuse vs all my wife": [0, 65535], "you must excuse vs all my wife is": [0, 65535], "must excuse vs all my wife is shrewish": [0, 65535], "excuse vs all my wife is shrewish when": [0, 65535], "vs all my wife is shrewish when i": [0, 65535], "all my wife is shrewish when i keepe": [0, 65535], "my wife is shrewish when i keepe not": [0, 65535], "wife is shrewish when i keepe not howres": [0, 65535], "is shrewish when i keepe not howres say": [0, 65535], "shrewish when i keepe not howres say that": [0, 65535], "when i keepe not howres say that i": [0, 65535], "i keepe not howres say that i lingerd": [0, 65535], "keepe not howres say that i lingerd with": [0, 65535], "not howres say that i lingerd with you": [0, 65535], "howres say that i lingerd with you at": [0, 65535], "say that i lingerd with you at your": [0, 65535], "that i lingerd with you at your shop": [0, 65535], "i lingerd with you at your shop to": [0, 65535], "lingerd with you at your shop to see": [0, 65535], "with you at your shop to see the": [0, 65535], "you at your shop to see the making": [0, 65535], "at your shop to see the making of": [0, 65535], "your shop to see the making of her": [0, 65535], "shop to see the making of her carkanet": [0, 65535], "to see the making of her carkanet and": [0, 65535], "see the making of her carkanet and that": [0, 65535], "the making of her carkanet and that to": [0, 65535], "making of her carkanet and that to morrow": [0, 65535], "of her carkanet and that to morrow you": [0, 65535], "her carkanet and that to morrow you will": [0, 65535], "carkanet and that to morrow you will bring": [0, 65535], "and that to morrow you will bring it": [0, 65535], "that to morrow you will bring it home": [0, 65535], "to morrow you will bring it home but": [0, 65535], "morrow you will bring it home but here's": [0, 65535], "you will bring it home but here's a": [0, 65535], "will bring it home but here's a villaine": [0, 65535], "bring it home but here's a villaine that": [0, 65535], "it home but here's a villaine that would": [0, 65535], "home but here's a villaine that would face": [0, 65535], "but here's a villaine that would face me": [0, 65535], "here's a villaine that would face me downe": [0, 65535], "a villaine that would face me downe he": [0, 65535], "villaine that would face me downe he met": [0, 65535], "that would face me downe he met me": [0, 65535], "would face me downe he met me on": [0, 65535], "face me downe he met me on the": [0, 65535], "me downe he met me on the mart": [0, 65535], "downe he met me on the mart and": [0, 65535], "he met me on the mart and that": [0, 65535], "met me on the mart and that i": [0, 65535], "me on the mart and that i beat": [0, 65535], "on the mart and that i beat him": [0, 65535], "the mart and that i beat him and": [0, 65535], "mart and that i beat him and charg'd": [0, 65535], "and that i beat him and charg'd him": [0, 65535], "that i beat him and charg'd him with": [0, 65535], "i beat him and charg'd him with a": [0, 65535], "beat him and charg'd him with a thousand": [0, 65535], "him and charg'd him with a thousand markes": [0, 65535], "and charg'd him with a thousand markes in": [0, 65535], "charg'd him with a thousand markes in gold": [0, 65535], "him with a thousand markes in gold and": [0, 65535], "with a thousand markes in gold and that": [0, 65535], "a thousand markes in gold and that i": [0, 65535], "thousand markes in gold and that i did": [0, 65535], "markes in gold and that i did denie": [0, 65535], "in gold and that i did denie my": [0, 65535], "gold and that i did denie my wife": [0, 65535], "and that i did denie my wife and": [0, 65535], "that i did denie my wife and house": [0, 65535], "i did denie my wife and house thou": [0, 65535], "did denie my wife and house thou drunkard": [0, 65535], "denie my wife and house thou drunkard thou": [0, 65535], "my wife and house thou drunkard thou what": [0, 65535], "wife and house thou drunkard thou what didst": [0, 65535], "and house thou drunkard thou what didst thou": [0, 65535], "house thou drunkard thou what didst thou meane": [0, 65535], "thou drunkard thou what didst thou meane by": [0, 65535], "drunkard thou what didst thou meane by this": [0, 65535], "thou what didst thou meane by this e": [0, 65535], "what didst thou meane by this e dro": [0, 65535], "didst thou meane by this e dro say": [0, 65535], "thou meane by this e dro say what": [0, 65535], "meane by this e dro say what you": [0, 65535], "by this e dro say what you wil": [0, 65535], "this e dro say what you wil sir": [0, 65535], "e dro say what you wil sir but": [0, 65535], "dro say what you wil sir but i": [0, 65535], "say what you wil sir but i know": [0, 65535], "what you wil sir but i know what": [0, 65535], "you wil sir but i know what i": [0, 65535], "wil sir but i know what i know": [0, 65535], "sir but i know what i know that": [0, 65535], "but i know what i know that you": [0, 65535], "i know what i know that you beat": [0, 65535], "know what i know that you beat me": [0, 65535], "what i know that you beat me at": [0, 65535], "i know that you beat me at the": [0, 65535], "know that you beat me at the mart": [0, 65535], "that you beat me at the mart i": [0, 65535], "you beat me at the mart i haue": [0, 65535], "beat me at the mart i haue your": [0, 65535], "me at the mart i haue your hand": [0, 65535], "at the mart i haue your hand to": [0, 65535], "the mart i haue your hand to show": [0, 65535], "mart i haue your hand to show if": [0, 65535], "i haue your hand to show if the": [0, 65535], "haue your hand to show if the skin": [0, 65535], "your hand to show if the skin were": [0, 65535], "hand to show if the skin were parchment": [0, 65535], "to show if the skin were parchment the": [0, 65535], "show if the skin were parchment the blows": [0, 65535], "if the skin were parchment the blows you": [0, 65535], "the skin were parchment the blows you gaue": [0, 65535], "skin were parchment the blows you gaue were": [0, 65535], "were parchment the blows you gaue were ink": [0, 65535], "parchment the blows you gaue were ink your": [0, 65535], "the blows you gaue were ink your owne": [0, 65535], "blows you gaue were ink your owne hand": [0, 65535], "you gaue were ink your owne hand writing": [0, 65535], "gaue were ink your owne hand writing would": [0, 65535], "were ink your owne hand writing would tell": [0, 65535], "ink your owne hand writing would tell you": [0, 65535], "your owne hand writing would tell you what": [0, 65535], "owne hand writing would tell you what i": [0, 65535], "hand writing would tell you what i thinke": [0, 65535], "writing would tell you what i thinke e": [0, 65535], "would tell you what i thinke e ant": [0, 65535], "tell you what i thinke e ant i": [0, 65535], "you what i thinke e ant i thinke": [0, 65535], "what i thinke e ant i thinke thou": [0, 65535], "i thinke e ant i thinke thou art": [0, 65535], "thinke e ant i thinke thou art an": [0, 65535], "e ant i thinke thou art an asse": [0, 65535], "ant i thinke thou art an asse e": [0, 65535], "i thinke thou art an asse e dro": [0, 65535], "thinke thou art an asse e dro marry": [0, 65535], "thou art an asse e dro marry so": [0, 65535], "art an asse e dro marry so it": [0, 65535], "an asse e dro marry so it doth": [0, 65535], "asse e dro marry so it doth appeare": [0, 65535], "e dro marry so it doth appeare by": [0, 65535], "dro marry so it doth appeare by the": [0, 65535], "marry so it doth appeare by the wrongs": [0, 65535], "so it doth appeare by the wrongs i": [0, 65535], "it doth appeare by the wrongs i suffer": [0, 65535], "doth appeare by the wrongs i suffer and": [0, 65535], "appeare by the wrongs i suffer and the": [0, 65535], "by the wrongs i suffer and the blowes": [0, 65535], "the wrongs i suffer and the blowes i": [0, 65535], "wrongs i suffer and the blowes i beare": [0, 65535], "i suffer and the blowes i beare i": [0, 65535], "suffer and the blowes i beare i should": [0, 65535], "and the blowes i beare i should kicke": [0, 65535], "the blowes i beare i should kicke being": [0, 65535], "blowes i beare i should kicke being kickt": [0, 65535], "i beare i should kicke being kickt and": [0, 65535], "beare i should kicke being kickt and being": [0, 65535], "i should kicke being kickt and being at": [0, 65535], "should kicke being kickt and being at that": [0, 65535], "kicke being kickt and being at that passe": [0, 65535], "being kickt and being at that passe you": [0, 65535], "kickt and being at that passe you would": [0, 65535], "and being at that passe you would keepe": [0, 65535], "being at that passe you would keepe from": [0, 65535], "at that passe you would keepe from my": [0, 65535], "that passe you would keepe from my heeles": [0, 65535], "passe you would keepe from my heeles and": [0, 65535], "you would keepe from my heeles and beware": [0, 65535], "would keepe from my heeles and beware of": [0, 65535], "keepe from my heeles and beware of an": [0, 65535], "from my heeles and beware of an asse": [0, 65535], "my heeles and beware of an asse e": [0, 65535], "heeles and beware of an asse e an": [0, 65535], "and beware of an asse e an y'are": [0, 65535], "beware of an asse e an y'are sad": [0, 65535], "of an asse e an y'are sad signior": [0, 65535], "an asse e an y'are sad signior balthazar": [0, 65535], "asse e an y'are sad signior balthazar pray": [0, 65535], "e an y'are sad signior balthazar pray god": [0, 65535], "an y'are sad signior balthazar pray god our": [0, 65535], "y'are sad signior balthazar pray god our cheer": [0, 65535], "sad signior balthazar pray god our cheer may": [0, 65535], "signior balthazar pray god our cheer may answer": [0, 65535], "balthazar pray god our cheer may answer my": [0, 65535], "pray god our cheer may answer my good": [0, 65535], "god our cheer may answer my good will": [0, 65535], "our cheer may answer my good will and": [0, 65535], "cheer may answer my good will and your": [0, 65535], "may answer my good will and your good": [0, 65535], "answer my good will and your good welcom": [0, 65535], "my good will and your good welcom here": [0, 65535], "good will and your good welcom here bal": [0, 65535], "will and your good welcom here bal i": [0, 65535], "and your good welcom here bal i hold": [0, 65535], "your good welcom here bal i hold your": [0, 65535], "good welcom here bal i hold your dainties": [0, 65535], "welcom here bal i hold your dainties cheap": [0, 65535], "here bal i hold your dainties cheap sir": [0, 65535], "bal i hold your dainties cheap sir your": [0, 65535], "i hold your dainties cheap sir your welcom": [0, 65535], "hold your dainties cheap sir your welcom deer": [0, 65535], "your dainties cheap sir your welcom deer e": [0, 65535], "dainties cheap sir your welcom deer e an": [0, 65535], "cheap sir your welcom deer e an oh": [0, 65535], "sir your welcom deer e an oh signior": [0, 65535], "your welcom deer e an oh signior balthazar": [0, 65535], "welcom deer e an oh signior balthazar either": [0, 65535], "deer e an oh signior balthazar either at": [0, 65535], "e an oh signior balthazar either at flesh": [0, 65535], "an oh signior balthazar either at flesh or": [0, 65535], "oh signior balthazar either at flesh or fish": [0, 65535], "signior balthazar either at flesh or fish a": [0, 65535], "balthazar either at flesh or fish a table": [0, 65535], "either at flesh or fish a table full": [0, 65535], "at flesh or fish a table full of": [0, 65535], "flesh or fish a table full of welcome": [0, 65535], "or fish a table full of welcome makes": [0, 65535], "fish a table full of welcome makes scarce": [0, 65535], "a table full of welcome makes scarce one": [0, 65535], "table full of welcome makes scarce one dainty": [0, 65535], "full of welcome makes scarce one dainty dish": [0, 65535], "of welcome makes scarce one dainty dish bal": [0, 65535], "welcome makes scarce one dainty dish bal good": [0, 65535], "makes scarce one dainty dish bal good meat": [0, 65535], "scarce one dainty dish bal good meat sir": [0, 65535], "one dainty dish bal good meat sir is": [0, 65535], "dainty dish bal good meat sir is co": [0, 65535], "dish bal good meat sir is co m": [0, 65535], "bal good meat sir is co m mon": [0, 65535], "good meat sir is co m mon that": [0, 65535], "meat sir is co m mon that euery": [0, 65535], "sir is co m mon that euery churle": [0, 65535], "is co m mon that euery churle affords": [0, 65535], "co m mon that euery churle affords anti": [0, 65535], "m mon that euery churle affords anti and": [0, 65535], "mon that euery churle affords anti and welcome": [0, 65535], "that euery churle affords anti and welcome more": [0, 65535], "euery churle affords anti and welcome more common": [0, 65535], "churle affords anti and welcome more common for": [0, 65535], "affords anti and welcome more common for thats": [0, 65535], "anti and welcome more common for thats nothing": [0, 65535], "and welcome more common for thats nothing but": [0, 65535], "welcome more common for thats nothing but words": [0, 65535], "more common for thats nothing but words bal": [0, 65535], "common for thats nothing but words bal small": [0, 65535], "for thats nothing but words bal small cheere": [0, 65535], "thats nothing but words bal small cheere and": [0, 65535], "nothing but words bal small cheere and great": [0, 65535], "but words bal small cheere and great welcome": [0, 65535], "words bal small cheere and great welcome makes": [0, 65535], "bal small cheere and great welcome makes a": [0, 65535], "small cheere and great welcome makes a merrie": [0, 65535], "cheere and great welcome makes a merrie feast": [0, 65535], "and great welcome makes a merrie feast anti": [0, 65535], "great welcome makes a merrie feast anti i": [0, 65535], "welcome makes a merrie feast anti i to": [0, 65535], "makes a merrie feast anti i to a": [0, 65535], "a merrie feast anti i to a niggardly": [0, 65535], "merrie feast anti i to a niggardly host": [0, 65535], "feast anti i to a niggardly host and": [0, 65535], "anti i to a niggardly host and more": [0, 65535], "i to a niggardly host and more sparing": [0, 65535], "to a niggardly host and more sparing guest": [0, 65535], "a niggardly host and more sparing guest but": [0, 65535], "niggardly host and more sparing guest but though": [0, 65535], "host and more sparing guest but though my": [0, 65535], "and more sparing guest but though my cates": [0, 65535], "more sparing guest but though my cates be": [0, 65535], "sparing guest but though my cates be meane": [0, 65535], "guest but though my cates be meane take": [0, 65535], "but though my cates be meane take them": [0, 65535], "though my cates be meane take them in": [0, 65535], "my cates be meane take them in good": [0, 65535], "cates be meane take them in good part": [0, 65535], "be meane take them in good part better": [0, 65535], "meane take them in good part better cheere": [0, 65535], "take them in good part better cheere may": [0, 65535], "them in good part better cheere may you": [0, 65535], "in good part better cheere may you haue": [0, 65535], "good part better cheere may you haue but": [0, 65535], "part better cheere may you haue but not": [0, 65535], "better cheere may you haue but not with": [0, 65535], "cheere may you haue but not with better": [0, 65535], "may you haue but not with better hart": [0, 65535], "you haue but not with better hart but": [0, 65535], "haue but not with better hart but soft": [0, 65535], "but not with better hart but soft my": [0, 65535], "not with better hart but soft my doore": [0, 65535], "with better hart but soft my doore is": [0, 65535], "better hart but soft my doore is lockt": [0, 65535], "hart but soft my doore is lockt goe": [0, 65535], "but soft my doore is lockt goe bid": [0, 65535], "soft my doore is lockt goe bid them": [0, 65535], "my doore is lockt goe bid them let": [0, 65535], "doore is lockt goe bid them let vs": [0, 65535], "is lockt goe bid them let vs in": [0, 65535], "lockt goe bid them let vs in e": [0, 65535], "goe bid them let vs in e dro": [0, 65535], "bid them let vs in e dro maud": [0, 65535], "them let vs in e dro maud briget": [0, 65535], "let vs in e dro maud briget marian": [0, 65535], "vs in e dro maud briget marian cisley": [0, 65535], "in e dro maud briget marian cisley gillian": [0, 65535], "e dro maud briget marian cisley gillian ginn": [0, 65535], "dro maud briget marian cisley gillian ginn s": [0, 65535], "maud briget marian cisley gillian ginn s dro": [0, 65535], "briget marian cisley gillian ginn s dro mome": [0, 65535], "marian cisley gillian ginn s dro mome malthorse": [0, 65535], "cisley gillian ginn s dro mome malthorse capon": [0, 65535], "gillian ginn s dro mome malthorse capon coxcombe": [0, 65535], "ginn s dro mome malthorse capon coxcombe idiot": [0, 65535], "s dro mome malthorse capon coxcombe idiot patch": [0, 65535], "dro mome malthorse capon coxcombe idiot patch either": [0, 65535], "mome malthorse capon coxcombe idiot patch either get": [0, 65535], "malthorse capon coxcombe idiot patch either get thee": [0, 65535], "capon coxcombe idiot patch either get thee from": [0, 65535], "coxcombe idiot patch either get thee from the": [0, 65535], "idiot patch either get thee from the dore": [0, 65535], "patch either get thee from the dore or": [0, 65535], "either get thee from the dore or sit": [0, 65535], "get thee from the dore or sit downe": [0, 65535], "thee from the dore or sit downe at": [0, 65535], "from the dore or sit downe at the": [0, 65535], "the dore or sit downe at the hatch": [0, 65535], "dore or sit downe at the hatch dost": [0, 65535], "or sit downe at the hatch dost thou": [0, 65535], "sit downe at the hatch dost thou coniure": [0, 65535], "downe at the hatch dost thou coniure for": [0, 65535], "at the hatch dost thou coniure for wenches": [0, 65535], "the hatch dost thou coniure for wenches that": [0, 65535], "hatch dost thou coniure for wenches that thou": [0, 65535], "dost thou coniure for wenches that thou calst": [0, 65535], "thou coniure for wenches that thou calst for": [0, 65535], "coniure for wenches that thou calst for such": [0, 65535], "for wenches that thou calst for such store": [0, 65535], "wenches that thou calst for such store when": [0, 65535], "that thou calst for such store when one": [0, 65535], "thou calst for such store when one is": [0, 65535], "calst for such store when one is one": [0, 65535], "for such store when one is one too": [0, 65535], "such store when one is one too many": [0, 65535], "store when one is one too many goe": [0, 65535], "when one is one too many goe get": [0, 65535], "one is one too many goe get thee": [0, 65535], "is one too many goe get thee from": [0, 65535], "one too many goe get thee from the": [0, 65535], "too many goe get thee from the dore": [0, 65535], "many goe get thee from the dore e": [0, 65535], "goe get thee from the dore e dro": [0, 65535], "get thee from the dore e dro what": [0, 65535], "thee from the dore e dro what patch": [0, 65535], "from the dore e dro what patch is": [0, 65535], "the dore e dro what patch is made": [0, 65535], "dore e dro what patch is made our": [0, 65535], "e dro what patch is made our porter": [0, 65535], "dro what patch is made our porter my": [0, 65535], "what patch is made our porter my master": [0, 65535], "patch is made our porter my master stayes": [0, 65535], "is made our porter my master stayes in": [0, 65535], "made our porter my master stayes in the": [0, 65535], "our porter my master stayes in the street": [0, 65535], "porter my master stayes in the street s": [0, 65535], "my master stayes in the street s dro": [0, 65535], "master stayes in the street s dro let": [0, 65535], "stayes in the street s dro let him": [0, 65535], "in the street s dro let him walke": [0, 65535], "the street s dro let him walke from": [0, 65535], "street s dro let him walke from whence": [0, 65535], "s dro let him walke from whence he": [0, 65535], "dro let him walke from whence he came": [0, 65535], "let him walke from whence he came lest": [0, 65535], "him walke from whence he came lest hee": [0, 65535], "walke from whence he came lest hee catch": [0, 65535], "from whence he came lest hee catch cold": [0, 65535], "whence he came lest hee catch cold on's": [0, 65535], "he came lest hee catch cold on's feet": [0, 65535], "came lest hee catch cold on's feet e": [0, 65535], "lest hee catch cold on's feet e ant": [0, 65535], "hee catch cold on's feet e ant who": [0, 65535], "catch cold on's feet e ant who talks": [0, 65535], "cold on's feet e ant who talks within": [0, 65535], "on's feet e ant who talks within there": [0, 65535], "feet e ant who talks within there hoa": [0, 65535], "e ant who talks within there hoa open": [0, 65535], "ant who talks within there hoa open the": [0, 65535], "who talks within there hoa open the dore": [0, 65535], "talks within there hoa open the dore s": [0, 65535], "within there hoa open the dore s dro": [0, 65535], "there hoa open the dore s dro right": [0, 65535], "hoa open the dore s dro right sir": [0, 65535], "open the dore s dro right sir ile": [0, 65535], "the dore s dro right sir ile tell": [0, 65535], "dore s dro right sir ile tell you": [0, 65535], "s dro right sir ile tell you when": [0, 65535], "dro right sir ile tell you when and": [0, 65535], "right sir ile tell you when and you'll": [0, 65535], "sir ile tell you when and you'll tell": [0, 65535], "ile tell you when and you'll tell me": [0, 65535], "tell you when and you'll tell me wherefore": [0, 65535], "you when and you'll tell me wherefore ant": [0, 65535], "when and you'll tell me wherefore ant wherefore": [0, 65535], "and you'll tell me wherefore ant wherefore for": [0, 65535], "you'll tell me wherefore ant wherefore for my": [0, 65535], "tell me wherefore ant wherefore for my dinner": [0, 65535], "me wherefore ant wherefore for my dinner i": [0, 65535], "wherefore ant wherefore for my dinner i haue": [0, 65535], "ant wherefore for my dinner i haue not": [0, 65535], "wherefore for my dinner i haue not din'd": [0, 65535], "for my dinner i haue not din'd to": [0, 65535], "my dinner i haue not din'd to day": [0, 65535], "dinner i haue not din'd to day s": [0, 65535], "i haue not din'd to day s dro": [0, 65535], "haue not din'd to day s dro nor": [0, 65535], "not din'd to day s dro nor to": [0, 65535], "din'd to day s dro nor to day": [0, 65535], "to day s dro nor to day here": [0, 65535], "day s dro nor to day here you": [0, 65535], "s dro nor to day here you must": [0, 65535], "dro nor to day here you must not": [0, 65535], "nor to day here you must not come": [0, 65535], "to day here you must not come againe": [0, 65535], "day here you must not come againe when": [0, 65535], "here you must not come againe when you": [0, 65535], "you must not come againe when you may": [0, 65535], "must not come againe when you may anti": [0, 65535], "not come againe when you may anti what": [0, 65535], "come againe when you may anti what art": [0, 65535], "againe when you may anti what art thou": [0, 65535], "when you may anti what art thou that": [0, 65535], "you may anti what art thou that keep'st": [0, 65535], "may anti what art thou that keep'st mee": [0, 65535], "anti what art thou that keep'st mee out": [0, 65535], "what art thou that keep'st mee out from": [0, 65535], "art thou that keep'st mee out from the": [0, 65535], "thou that keep'st mee out from the howse": [0, 65535], "that keep'st mee out from the howse i": [0, 65535], "keep'st mee out from the howse i owe": [0, 65535], "mee out from the howse i owe s": [0, 65535], "out from the howse i owe s dro": [0, 65535], "from the howse i owe s dro the": [0, 65535], "the howse i owe s dro the porter": [0, 65535], "howse i owe s dro the porter for": [0, 65535], "i owe s dro the porter for this": [0, 65535], "owe s dro the porter for this time": [0, 65535], "s dro the porter for this time sir": [0, 65535], "dro the porter for this time sir and": [0, 65535], "the porter for this time sir and my": [0, 65535], "porter for this time sir and my name": [0, 65535], "for this time sir and my name is": [0, 65535], "this time sir and my name is dromio": [0, 65535], "time sir and my name is dromio e": [0, 65535], "sir and my name is dromio e dro": [0, 65535], "and my name is dromio e dro o": [0, 65535], "my name is dromio e dro o villaine": [0, 65535], "name is dromio e dro o villaine thou": [0, 65535], "is dromio e dro o villaine thou hast": [0, 65535], "dromio e dro o villaine thou hast stolne": [0, 65535], "e dro o villaine thou hast stolne both": [0, 65535], "dro o villaine thou hast stolne both mine": [0, 65535], "o villaine thou hast stolne both mine office": [0, 65535], "villaine thou hast stolne both mine office and": [0, 65535], "thou hast stolne both mine office and my": [0, 65535], "hast stolne both mine office and my name": [0, 65535], "stolne both mine office and my name the": [0, 65535], "both mine office and my name the one": [0, 65535], "mine office and my name the one nere": [0, 65535], "office and my name the one nere got": [0, 65535], "and my name the one nere got me": [0, 65535], "my name the one nere got me credit": [0, 65535], "name the one nere got me credit the": [0, 65535], "the one nere got me credit the other": [0, 65535], "one nere got me credit the other mickle": [0, 65535], "nere got me credit the other mickle blame": [0, 65535], "got me credit the other mickle blame if": [0, 65535], "me credit the other mickle blame if thou": [0, 65535], "credit the other mickle blame if thou hadst": [0, 65535], "the other mickle blame if thou hadst beene": [0, 65535], "other mickle blame if thou hadst beene dromio": [0, 65535], "mickle blame if thou hadst beene dromio to": [0, 65535], "blame if thou hadst beene dromio to day": [0, 65535], "if thou hadst beene dromio to day in": [0, 65535], "thou hadst beene dromio to day in my": [0, 65535], "hadst beene dromio to day in my place": [0, 65535], "beene dromio to day in my place thou": [0, 65535], "dromio to day in my place thou wouldst": [0, 65535], "to day in my place thou wouldst haue": [0, 65535], "day in my place thou wouldst haue chang'd": [0, 65535], "in my place thou wouldst haue chang'd thy": [0, 65535], "my place thou wouldst haue chang'd thy face": [0, 65535], "place thou wouldst haue chang'd thy face for": [0, 65535], "thou wouldst haue chang'd thy face for a": [0, 65535], "wouldst haue chang'd thy face for a name": [0, 65535], "haue chang'd thy face for a name or": [0, 65535], "chang'd thy face for a name or thy": [0, 65535], "thy face for a name or thy name": [0, 65535], "face for a name or thy name for": [0, 65535], "for a name or thy name for an": [0, 65535], "a name or thy name for an asse": [0, 65535], "name or thy name for an asse enter": [0, 65535], "or thy name for an asse enter luce": [0, 65535], "thy name for an asse enter luce luce": [0, 65535], "name for an asse enter luce luce what": [0, 65535], "for an asse enter luce luce what a": [0, 65535], "an asse enter luce luce what a coile": [0, 65535], "asse enter luce luce what a coile is": [0, 65535], "enter luce luce what a coile is there": [0, 65535], "luce luce what a coile is there dromio": [0, 65535], "luce what a coile is there dromio who": [0, 65535], "what a coile is there dromio who are": [0, 65535], "a coile is there dromio who are those": [0, 65535], "coile is there dromio who are those at": [0, 65535], "is there dromio who are those at the": [0, 65535], "there dromio who are those at the gate": [0, 65535], "dromio who are those at the gate e": [0, 65535], "who are those at the gate e dro": [0, 65535], "are those at the gate e dro let": [0, 65535], "those at the gate e dro let my": [0, 65535], "at the gate e dro let my master": [0, 65535], "the gate e dro let my master in": [0, 65535], "gate e dro let my master in luce": [0, 65535], "e dro let my master in luce luce": [0, 65535], "dro let my master in luce luce faith": [0, 65535], "let my master in luce luce faith no": [0, 65535], "my master in luce luce faith no hee": [0, 65535], "master in luce luce faith no hee comes": [0, 65535], "in luce luce faith no hee comes too": [0, 65535], "luce luce faith no hee comes too late": [0, 65535], "luce faith no hee comes too late and": [0, 65535], "faith no hee comes too late and so": [0, 65535], "no hee comes too late and so tell": [0, 65535], "hee comes too late and so tell your": [0, 65535], "comes too late and so tell your master": [0, 65535], "too late and so tell your master e": [0, 65535], "late and so tell your master e dro": [0, 65535], "and so tell your master e dro o": [0, 65535], "so tell your master e dro o lord": [0, 65535], "tell your master e dro o lord i": [0, 65535], "your master e dro o lord i must": [0, 65535], "master e dro o lord i must laugh": [0, 65535], "e dro o lord i must laugh haue": [0, 65535], "dro o lord i must laugh haue at": [0, 65535], "o lord i must laugh haue at you": [0, 65535], "lord i must laugh haue at you with": [0, 65535], "i must laugh haue at you with a": [0, 65535], "must laugh haue at you with a prouerbe": [0, 65535], "laugh haue at you with a prouerbe shall": [0, 65535], "haue at you with a prouerbe shall i": [0, 65535], "at you with a prouerbe shall i set": [0, 65535], "you with a prouerbe shall i set in": [0, 65535], "with a prouerbe shall i set in my": [0, 65535], "a prouerbe shall i set in my staffe": [0, 65535], "prouerbe shall i set in my staffe luce": [0, 65535], "shall i set in my staffe luce haue": [0, 65535], "i set in my staffe luce haue at": [0, 65535], "set in my staffe luce haue at you": [0, 65535], "in my staffe luce haue at you with": [0, 65535], "my staffe luce haue at you with another": [0, 65535], "staffe luce haue at you with another that's": [0, 65535], "luce haue at you with another that's when": [0, 65535], "haue at you with another that's when can": [0, 65535], "at you with another that's when can you": [0, 65535], "you with another that's when can you tell": [0, 65535], "with another that's when can you tell s": [0, 65535], "another that's when can you tell s dro": [0, 65535], "that's when can you tell s dro if": [0, 65535], "when can you tell s dro if thy": [0, 65535], "can you tell s dro if thy name": [0, 65535], "you tell s dro if thy name be": [0, 65535], "tell s dro if thy name be called": [0, 65535], "s dro if thy name be called luce": [0, 65535], "dro if thy name be called luce luce": [0, 65535], "if thy name be called luce luce thou": [0, 65535], "thy name be called luce luce thou hast": [0, 65535], "name be called luce luce thou hast an": [0, 65535], "be called luce luce thou hast an swer'd": [0, 65535], "called luce luce thou hast an swer'd him": [0, 65535], "luce luce thou hast an swer'd him well": [0, 65535], "luce thou hast an swer'd him well anti": [0, 65535], "thou hast an swer'd him well anti doe": [0, 65535], "hast an swer'd him well anti doe you": [0, 65535], "an swer'd him well anti doe you heare": [0, 65535], "swer'd him well anti doe you heare you": [0, 65535], "him well anti doe you heare you minion": [0, 65535], "well anti doe you heare you minion you'll": [0, 65535], "anti doe you heare you minion you'll let": [0, 65535], "doe you heare you minion you'll let vs": [0, 65535], "you heare you minion you'll let vs in": [0, 65535], "heare you minion you'll let vs in i": [0, 65535], "you minion you'll let vs in i hope": [0, 65535], "minion you'll let vs in i hope luce": [0, 65535], "you'll let vs in i hope luce i": [0, 65535], "let vs in i hope luce i thought": [0, 65535], "vs in i hope luce i thought to": [0, 65535], "in i hope luce i thought to haue": [0, 65535], "i hope luce i thought to haue askt": [0, 65535], "hope luce i thought to haue askt you": [0, 65535], "luce i thought to haue askt you s": [0, 65535], "i thought to haue askt you s dro": [0, 65535], "thought to haue askt you s dro and": [0, 65535], "to haue askt you s dro and you": [0, 65535], "haue askt you s dro and you said": [0, 65535], "askt you s dro and you said no": [0, 65535], "you s dro and you said no e": [0, 65535], "s dro and you said no e dro": [0, 65535], "dro and you said no e dro so": [0, 65535], "and you said no e dro so come": [0, 65535], "you said no e dro so come helpe": [0, 65535], "said no e dro so come helpe well": [0, 65535], "no e dro so come helpe well strooke": [0, 65535], "e dro so come helpe well strooke there": [0, 65535], "dro so come helpe well strooke there was": [0, 65535], "so come helpe well strooke there was blow": [0, 65535], "come helpe well strooke there was blow for": [0, 65535], "helpe well strooke there was blow for blow": [0, 65535], "well strooke there was blow for blow anti": [0, 65535], "strooke there was blow for blow anti thou": [0, 65535], "there was blow for blow anti thou baggage": [0, 65535], "was blow for blow anti thou baggage let": [0, 65535], "blow for blow anti thou baggage let me": [0, 65535], "for blow anti thou baggage let me in": [0, 65535], "blow anti thou baggage let me in luce": [0, 65535], "anti thou baggage let me in luce can": [0, 65535], "thou baggage let me in luce can you": [0, 65535], "baggage let me in luce can you tell": [0, 65535], "let me in luce can you tell for": [0, 65535], "me in luce can you tell for whose": [0, 65535], "in luce can you tell for whose sake": [0, 65535], "luce can you tell for whose sake e": [0, 65535], "can you tell for whose sake e drom": [0, 65535], "you tell for whose sake e drom master": [0, 65535], "tell for whose sake e drom master knocke": [0, 65535], "for whose sake e drom master knocke the": [0, 65535], "whose sake e drom master knocke the doore": [0, 65535], "sake e drom master knocke the doore hard": [0, 65535], "e drom master knocke the doore hard luce": [0, 65535], "drom master knocke the doore hard luce let": [0, 65535], "master knocke the doore hard luce let him": [0, 65535], "knocke the doore hard luce let him knocke": [0, 65535], "the doore hard luce let him knocke till": [0, 65535], "doore hard luce let him knocke till it": [0, 65535], "hard luce let him knocke till it ake": [0, 65535], "luce let him knocke till it ake anti": [0, 65535], "let him knocke till it ake anti you'll": [0, 65535], "him knocke till it ake anti you'll crie": [0, 65535], "knocke till it ake anti you'll crie for": [0, 65535], "till it ake anti you'll crie for this": [0, 65535], "it ake anti you'll crie for this minion": [0, 65535], "ake anti you'll crie for this minion if": [0, 65535], "anti you'll crie for this minion if i": [0, 65535], "you'll crie for this minion if i beat": [0, 65535], "crie for this minion if i beat the": [0, 65535], "for this minion if i beat the doore": [0, 65535], "this minion if i beat the doore downe": [0, 65535], "minion if i beat the doore downe luce": [0, 65535], "if i beat the doore downe luce what": [0, 65535], "i beat the doore downe luce what needs": [0, 65535], "beat the doore downe luce what needs all": [0, 65535], "the doore downe luce what needs all that": [0, 65535], "doore downe luce what needs all that and": [0, 65535], "downe luce what needs all that and a": [0, 65535], "luce what needs all that and a paire": [0, 65535], "what needs all that and a paire of": [0, 65535], "needs all that and a paire of stocks": [0, 65535], "all that and a paire of stocks in": [0, 65535], "that and a paire of stocks in the": [0, 65535], "and a paire of stocks in the towne": [0, 65535], "a paire of stocks in the towne enter": [0, 65535], "paire of stocks in the towne enter adriana": [0, 65535], "of stocks in the towne enter adriana adr": [0, 65535], "stocks in the towne enter adriana adr who": [0, 65535], "in the towne enter adriana adr who is": [0, 65535], "the towne enter adriana adr who is that": [0, 65535], "towne enter adriana adr who is that at": [0, 65535], "enter adriana adr who is that at the": [0, 65535], "adriana adr who is that at the doore": [0, 65535], "adr who is that at the doore that": [0, 65535], "who is that at the doore that keeps": [0, 65535], "is that at the doore that keeps all": [0, 65535], "that at the doore that keeps all this": [0, 65535], "at the doore that keeps all this noise": [0, 65535], "the doore that keeps all this noise s": [0, 65535], "doore that keeps all this noise s dro": [0, 65535], "that keeps all this noise s dro by": [0, 65535], "keeps all this noise s dro by my": [0, 65535], "all this noise s dro by my troth": [0, 65535], "this noise s dro by my troth your": [0, 65535], "noise s dro by my troth your towne": [0, 65535], "s dro by my troth your towne is": [0, 65535], "dro by my troth your towne is troubled": [0, 65535], "by my troth your towne is troubled with": [0, 65535], "my troth your towne is troubled with vnruly": [0, 65535], "troth your towne is troubled with vnruly boies": [0, 65535], "your towne is troubled with vnruly boies anti": [0, 65535], "towne is troubled with vnruly boies anti are": [0, 65535], "is troubled with vnruly boies anti are you": [0, 65535], "troubled with vnruly boies anti are you there": [0, 65535], "with vnruly boies anti are you there wife": [0, 65535], "vnruly boies anti are you there wife you": [0, 65535], "boies anti are you there wife you might": [0, 65535], "anti are you there wife you might haue": [0, 65535], "are you there wife you might haue come": [0, 65535], "you there wife you might haue come before": [0, 65535], "there wife you might haue come before adri": [0, 65535], "wife you might haue come before adri your": [0, 65535], "you might haue come before adri your wife": [0, 65535], "might haue come before adri your wife sir": [0, 65535], "haue come before adri your wife sir knaue": [0, 65535], "come before adri your wife sir knaue go": [0, 65535], "before adri your wife sir knaue go get": [0, 65535], "adri your wife sir knaue go get you": [0, 65535], "your wife sir knaue go get you from": [0, 65535], "wife sir knaue go get you from the": [0, 65535], "sir knaue go get you from the dore": [0, 65535], "knaue go get you from the dore e": [0, 65535], "go get you from the dore e dro": [0, 65535], "get you from the dore e dro if": [0, 65535], "you from the dore e dro if you": [0, 65535], "from the dore e dro if you went": [0, 65535], "the dore e dro if you went in": [0, 65535], "dore e dro if you went in paine": [0, 65535], "e dro if you went in paine master": [0, 65535], "dro if you went in paine master this": [0, 65535], "if you went in paine master this knaue": [0, 65535], "you went in paine master this knaue wold": [0, 65535], "went in paine master this knaue wold goe": [0, 65535], "in paine master this knaue wold goe sore": [0, 65535], "paine master this knaue wold goe sore angelo": [0, 65535], "master this knaue wold goe sore angelo heere": [0, 65535], "this knaue wold goe sore angelo heere is": [0, 65535], "knaue wold goe sore angelo heere is neither": [0, 65535], "wold goe sore angelo heere is neither cheere": [0, 65535], "goe sore angelo heere is neither cheere sir": [0, 65535], "sore angelo heere is neither cheere sir nor": [0, 65535], "angelo heere is neither cheere sir nor welcome": [0, 65535], "heere is neither cheere sir nor welcome we": [0, 65535], "is neither cheere sir nor welcome we would": [0, 65535], "neither cheere sir nor welcome we would faine": [0, 65535], "cheere sir nor welcome we would faine haue": [0, 65535], "sir nor welcome we would faine haue either": [0, 65535], "nor welcome we would faine haue either baltz": [0, 65535], "welcome we would faine haue either baltz in": [0, 65535], "we would faine haue either baltz in debating": [0, 65535], "would faine haue either baltz in debating which": [0, 65535], "faine haue either baltz in debating which was": [0, 65535], "haue either baltz in debating which was best": [0, 65535], "either baltz in debating which was best wee": [0, 65535], "baltz in debating which was best wee shall": [0, 65535], "in debating which was best wee shall part": [0, 65535], "debating which was best wee shall part with": [0, 65535], "which was best wee shall part with neither": [0, 65535], "was best wee shall part with neither e": [0, 65535], "best wee shall part with neither e dro": [0, 65535], "wee shall part with neither e dro they": [0, 65535], "shall part with neither e dro they stand": [0, 65535], "part with neither e dro they stand at": [0, 65535], "with neither e dro they stand at the": [0, 65535], "neither e dro they stand at the doore": [0, 65535], "e dro they stand at the doore master": [0, 65535], "dro they stand at the doore master bid": [0, 65535], "they stand at the doore master bid them": [0, 65535], "stand at the doore master bid them welcome": [0, 65535], "at the doore master bid them welcome hither": [0, 65535], "the doore master bid them welcome hither anti": [0, 65535], "doore master bid them welcome hither anti there": [0, 65535], "master bid them welcome hither anti there is": [0, 65535], "bid them welcome hither anti there is something": [0, 65535], "them welcome hither anti there is something in": [0, 65535], "welcome hither anti there is something in the": [0, 65535], "hither anti there is something in the winde": [0, 65535], "anti there is something in the winde that": [0, 65535], "there is something in the winde that we": [0, 65535], "is something in the winde that we cannot": [0, 65535], "something in the winde that we cannot get": [0, 65535], "in the winde that we cannot get in": [0, 65535], "the winde that we cannot get in e": [0, 65535], "winde that we cannot get in e dro": [0, 65535], "that we cannot get in e dro you": [0, 65535], "we cannot get in e dro you would": [0, 65535], "cannot get in e dro you would say": [0, 65535], "get in e dro you would say so": [0, 65535], "in e dro you would say so master": [0, 65535], "e dro you would say so master if": [0, 65535], "dro you would say so master if your": [0, 65535], "you would say so master if your garments": [0, 65535], "would say so master if your garments were": [0, 65535], "say so master if your garments were thin": [0, 65535], "so master if your garments were thin your": [0, 65535], "master if your garments were thin your cake": [0, 65535], "if your garments were thin your cake here": [0, 65535], "your garments were thin your cake here is": [0, 65535], "garments were thin your cake here is warme": [0, 65535], "were thin your cake here is warme within": [0, 65535], "thin your cake here is warme within you": [0, 65535], "your cake here is warme within you stand": [0, 65535], "cake here is warme within you stand here": [0, 65535], "here is warme within you stand here in": [0, 65535], "is warme within you stand here in the": [0, 65535], "warme within you stand here in the cold": [0, 65535], "within you stand here in the cold it": [0, 65535], "you stand here in the cold it would": [0, 65535], "stand here in the cold it would make": [0, 65535], "here in the cold it would make a": [0, 65535], "in the cold it would make a man": [0, 65535], "the cold it would make a man mad": [0, 65535], "cold it would make a man mad as": [0, 65535], "it would make a man mad as a": [0, 65535], "would make a man mad as a bucke": [0, 65535], "make a man mad as a bucke to": [0, 65535], "a man mad as a bucke to be": [0, 65535], "man mad as a bucke to be so": [0, 65535], "mad as a bucke to be so bought": [0, 65535], "as a bucke to be so bought and": [0, 65535], "a bucke to be so bought and sold": [0, 65535], "bucke to be so bought and sold ant": [0, 65535], "to be so bought and sold ant go": [0, 65535], "be so bought and sold ant go fetch": [0, 65535], "so bought and sold ant go fetch me": [0, 65535], "bought and sold ant go fetch me something": [0, 65535], "and sold ant go fetch me something ile": [0, 65535], "sold ant go fetch me something ile break": [0, 65535], "ant go fetch me something ile break ope": [0, 65535], "go fetch me something ile break ope the": [0, 65535], "fetch me something ile break ope the gate": [0, 65535], "me something ile break ope the gate s": [0, 65535], "something ile break ope the gate s dro": [0, 65535], "ile break ope the gate s dro breake": [0, 65535], "break ope the gate s dro breake any": [0, 65535], "ope the gate s dro breake any breaking": [0, 65535], "the gate s dro breake any breaking here": [0, 65535], "gate s dro breake any breaking here and": [0, 65535], "s dro breake any breaking here and ile": [0, 65535], "dro breake any breaking here and ile breake": [0, 65535], "breake any breaking here and ile breake your": [0, 65535], "any breaking here and ile breake your knaues": [0, 65535], "breaking here and ile breake your knaues pate": [0, 65535], "here and ile breake your knaues pate e": [0, 65535], "and ile breake your knaues pate e dro": [0, 65535], "ile breake your knaues pate e dro a": [0, 65535], "breake your knaues pate e dro a man": [0, 65535], "your knaues pate e dro a man may": [0, 65535], "knaues pate e dro a man may breake": [0, 65535], "pate e dro a man may breake a": [0, 65535], "e dro a man may breake a word": [0, 65535], "dro a man may breake a word with": [0, 65535], "a man may breake a word with your": [0, 65535], "man may breake a word with your sir": [0, 65535], "may breake a word with your sir and": [0, 65535], "breake a word with your sir and words": [0, 65535], "a word with your sir and words are": [0, 65535], "word with your sir and words are but": [0, 65535], "with your sir and words are but winde": [0, 65535], "your sir and words are but winde i": [0, 65535], "sir and words are but winde i and": [0, 65535], "and words are but winde i and breake": [0, 65535], "words are but winde i and breake it": [0, 65535], "are but winde i and breake it in": [0, 65535], "but winde i and breake it in your": [0, 65535], "winde i and breake it in your face": [0, 65535], "i and breake it in your face so": [0, 65535], "and breake it in your face so he": [0, 65535], "breake it in your face so he break": [0, 65535], "it in your face so he break it": [0, 65535], "in your face so he break it not": [0, 65535], "your face so he break it not behinde": [0, 65535], "face so he break it not behinde s": [0, 65535], "so he break it not behinde s dro": [0, 65535], "he break it not behinde s dro it": [0, 65535], "break it not behinde s dro it seemes": [0, 65535], "it not behinde s dro it seemes thou": [0, 65535], "not behinde s dro it seemes thou want'st": [0, 65535], "behinde s dro it seemes thou want'st breaking": [0, 65535], "s dro it seemes thou want'st breaking out": [0, 65535], "dro it seemes thou want'st breaking out vpon": [0, 65535], "it seemes thou want'st breaking out vpon thee": [0, 65535], "seemes thou want'st breaking out vpon thee hinde": [0, 65535], "thou want'st breaking out vpon thee hinde e": [0, 65535], "want'st breaking out vpon thee hinde e dro": [0, 65535], "breaking out vpon thee hinde e dro here's": [0, 65535], "out vpon thee hinde e dro here's too": [0, 65535], "vpon thee hinde e dro here's too much": [0, 65535], "thee hinde e dro here's too much out": [0, 65535], "hinde e dro here's too much out vpon": [0, 65535], "e dro here's too much out vpon thee": [0, 65535], "dro here's too much out vpon thee i": [0, 65535], "here's too much out vpon thee i pray": [0, 65535], "too much out vpon thee i pray thee": [0, 65535], "much out vpon thee i pray thee let": [0, 65535], "out vpon thee i pray thee let me": [0, 65535], "vpon thee i pray thee let me in": [0, 65535], "thee i pray thee let me in s": [0, 65535], "i pray thee let me in s dro": [0, 65535], "pray thee let me in s dro i": [0, 65535], "thee let me in s dro i when": [0, 65535], "let me in s dro i when fowles": [0, 65535], "me in s dro i when fowles haue": [0, 65535], "in s dro i when fowles haue no": [0, 65535], "s dro i when fowles haue no feathers": [0, 65535], "dro i when fowles haue no feathers and": [0, 65535], "i when fowles haue no feathers and fish": [0, 65535], "when fowles haue no feathers and fish haue": [0, 65535], "fowles haue no feathers and fish haue no": [0, 65535], "haue no feathers and fish haue no fin": [0, 65535], "no feathers and fish haue no fin ant": [0, 65535], "feathers and fish haue no fin ant well": [0, 65535], "and fish haue no fin ant well ile": [0, 65535], "fish haue no fin ant well ile breake": [0, 65535], "haue no fin ant well ile breake in": [0, 65535], "no fin ant well ile breake in go": [0, 65535], "fin ant well ile breake in go borrow": [0, 65535], "ant well ile breake in go borrow me": [0, 65535], "well ile breake in go borrow me a": [0, 65535], "ile breake in go borrow me a crow": [0, 65535], "breake in go borrow me a crow e": [0, 65535], "in go borrow me a crow e dro": [0, 65535], "go borrow me a crow e dro a": [0, 65535], "borrow me a crow e dro a crow": [0, 65535], "me a crow e dro a crow without": [0, 65535], "a crow e dro a crow without feather": [0, 65535], "crow e dro a crow without feather master": [0, 65535], "e dro a crow without feather master meane": [0, 65535], "dro a crow without feather master meane you": [0, 65535], "a crow without feather master meane you so": [0, 65535], "crow without feather master meane you so for": [0, 65535], "without feather master meane you so for a": [0, 65535], "feather master meane you so for a fish": [0, 65535], "master meane you so for a fish without": [0, 65535], "meane you so for a fish without a": [0, 65535], "you so for a fish without a finne": [0, 65535], "so for a fish without a finne ther's": [0, 65535], "for a fish without a finne ther's a": [0, 65535], "a fish without a finne ther's a fowle": [0, 65535], "fish without a finne ther's a fowle without": [0, 65535], "without a finne ther's a fowle without a": [0, 65535], "a finne ther's a fowle without a fether": [0, 65535], "finne ther's a fowle without a fether if": [0, 65535], "ther's a fowle without a fether if a": [0, 65535], "a fowle without a fether if a crow": [0, 65535], "fowle without a fether if a crow help": [0, 65535], "without a fether if a crow help vs": [0, 65535], "a fether if a crow help vs in": [0, 65535], "fether if a crow help vs in sirra": [0, 65535], "if a crow help vs in sirra wee'll": [0, 65535], "a crow help vs in sirra wee'll plucke": [0, 65535], "crow help vs in sirra wee'll plucke a": [0, 65535], "help vs in sirra wee'll plucke a crow": [0, 65535], "vs in sirra wee'll plucke a crow together": [0, 65535], "in sirra wee'll plucke a crow together ant": [0, 65535], "sirra wee'll plucke a crow together ant go": [0, 65535], "wee'll plucke a crow together ant go get": [0, 65535], "plucke a crow together ant go get thee": [0, 65535], "a crow together ant go get thee gon": [0, 65535], "crow together ant go get thee gon fetch": [0, 65535], "together ant go get thee gon fetch me": [0, 65535], "ant go get thee gon fetch me an": [0, 65535], "go get thee gon fetch me an iron": [0, 65535], "get thee gon fetch me an iron crow": [0, 65535], "thee gon fetch me an iron crow balth": [0, 65535], "gon fetch me an iron crow balth haue": [0, 65535], "fetch me an iron crow balth haue patience": [0, 65535], "me an iron crow balth haue patience sir": [0, 65535], "an iron crow balth haue patience sir oh": [0, 65535], "iron crow balth haue patience sir oh let": [0, 65535], "crow balth haue patience sir oh let it": [0, 65535], "balth haue patience sir oh let it not": [0, 65535], "haue patience sir oh let it not be": [0, 65535], "patience sir oh let it not be so": [0, 65535], "sir oh let it not be so heerein": [0, 65535], "oh let it not be so heerein you": [0, 65535], "let it not be so heerein you warre": [0, 65535], "it not be so heerein you warre against": [0, 65535], "not be so heerein you warre against your": [0, 65535], "be so heerein you warre against your reputation": [0, 65535], "so heerein you warre against your reputation and": [0, 65535], "heerein you warre against your reputation and draw": [0, 65535], "you warre against your reputation and draw within": [0, 65535], "warre against your reputation and draw within the": [0, 65535], "against your reputation and draw within the compasse": [0, 65535], "your reputation and draw within the compasse of": [0, 65535], "reputation and draw within the compasse of suspect": [0, 65535], "and draw within the compasse of suspect th'": [0, 65535], "draw within the compasse of suspect th' vnuiolated": [0, 65535], "within the compasse of suspect th' vnuiolated honor": [0, 65535], "the compasse of suspect th' vnuiolated honor of": [0, 65535], "compasse of suspect th' vnuiolated honor of your": [0, 65535], "of suspect th' vnuiolated honor of your wife": [0, 65535], "suspect th' vnuiolated honor of your wife once": [0, 65535], "th' vnuiolated honor of your wife once this": [0, 65535], "vnuiolated honor of your wife once this your": [0, 65535], "honor of your wife once this your long": [0, 65535], "of your wife once this your long experience": [0, 65535], "your wife once this your long experience of": [0, 65535], "wife once this your long experience of your": [0, 65535], "once this your long experience of your wisedome": [0, 65535], "this your long experience of your wisedome her": [0, 65535], "your long experience of your wisedome her sober": [0, 65535], "long experience of your wisedome her sober vertue": [0, 65535], "experience of your wisedome her sober vertue yeares": [0, 65535], "of your wisedome her sober vertue yeares and": [0, 65535], "your wisedome her sober vertue yeares and modestie": [0, 65535], "wisedome her sober vertue yeares and modestie plead": [0, 65535], "her sober vertue yeares and modestie plead on": [0, 65535], "sober vertue yeares and modestie plead on your": [0, 65535], "vertue yeares and modestie plead on your part": [0, 65535], "yeares and modestie plead on your part some": [0, 65535], "and modestie plead on your part some cause": [0, 65535], "modestie plead on your part some cause to": [0, 65535], "plead on your part some cause to you": [0, 65535], "on your part some cause to you vnknowne": [0, 65535], "your part some cause to you vnknowne and": [0, 65535], "part some cause to you vnknowne and doubt": [0, 65535], "some cause to you vnknowne and doubt not": [0, 65535], "cause to you vnknowne and doubt not sir": [0, 65535], "to you vnknowne and doubt not sir but": [0, 65535], "you vnknowne and doubt not sir but she": [0, 65535], "vnknowne and doubt not sir but she will": [0, 65535], "and doubt not sir but she will well": [0, 65535], "doubt not sir but she will well excuse": [0, 65535], "not sir but she will well excuse why": [0, 65535], "sir but she will well excuse why at": [0, 65535], "but she will well excuse why at this": [0, 65535], "she will well excuse why at this time": [0, 65535], "will well excuse why at this time the": [0, 65535], "well excuse why at this time the dores": [0, 65535], "excuse why at this time the dores are": [0, 65535], "why at this time the dores are made": [0, 65535], "at this time the dores are made against": [0, 65535], "this time the dores are made against you": [0, 65535], "time the dores are made against you be": [0, 65535], "the dores are made against you be rul'd": [0, 65535], "dores are made against you be rul'd by": [0, 65535], "are made against you be rul'd by me": [0, 65535], "made against you be rul'd by me depart": [0, 65535], "against you be rul'd by me depart in": [0, 65535], "you be rul'd by me depart in patience": [0, 65535], "be rul'd by me depart in patience and": [0, 65535], "rul'd by me depart in patience and let": [0, 65535], "by me depart in patience and let vs": [0, 65535], "me depart in patience and let vs to": [0, 65535], "depart in patience and let vs to the": [0, 65535], "in patience and let vs to the tyger": [0, 65535], "patience and let vs to the tyger all": [0, 65535], "and let vs to the tyger all to": [0, 65535], "let vs to the tyger all to dinner": [0, 65535], "vs to the tyger all to dinner and": [0, 65535], "to the tyger all to dinner and about": [0, 65535], "the tyger all to dinner and about euening": [0, 65535], "tyger all to dinner and about euening come": [0, 65535], "all to dinner and about euening come your": [0, 65535], "to dinner and about euening come your selfe": [0, 65535], "dinner and about euening come your selfe alone": [0, 65535], "and about euening come your selfe alone to": [0, 65535], "about euening come your selfe alone to know": [0, 65535], "euening come your selfe alone to know the": [0, 65535], "come your selfe alone to know the reason": [0, 65535], "your selfe alone to know the reason of": [0, 65535], "selfe alone to know the reason of this": [0, 65535], "alone to know the reason of this strange": [0, 65535], "to know the reason of this strange restraint": [0, 65535], "know the reason of this strange restraint if": [0, 65535], "the reason of this strange restraint if by": [0, 65535], "reason of this strange restraint if by strong": [0, 65535], "of this strange restraint if by strong hand": [0, 65535], "this strange restraint if by strong hand you": [0, 65535], "strange restraint if by strong hand you offer": [0, 65535], "restraint if by strong hand you offer to": [0, 65535], "if by strong hand you offer to breake": [0, 65535], "by strong hand you offer to breake in": [0, 65535], "strong hand you offer to breake in now": [0, 65535], "hand you offer to breake in now in": [0, 65535], "you offer to breake in now in the": [0, 65535], "offer to breake in now in the stirring": [0, 65535], "to breake in now in the stirring passage": [0, 65535], "breake in now in the stirring passage of": [0, 65535], "in now in the stirring passage of the": [0, 65535], "now in the stirring passage of the day": [0, 65535], "in the stirring passage of the day a": [0, 65535], "the stirring passage of the day a vulgar": [0, 65535], "stirring passage of the day a vulgar comment": [0, 65535], "passage of the day a vulgar comment will": [0, 65535], "of the day a vulgar comment will be": [0, 65535], "the day a vulgar comment will be made": [0, 65535], "day a vulgar comment will be made of": [0, 65535], "a vulgar comment will be made of it": [0, 65535], "vulgar comment will be made of it and": [0, 65535], "comment will be made of it and that": [0, 65535], "will be made of it and that supposed": [0, 65535], "be made of it and that supposed by": [0, 65535], "made of it and that supposed by the": [0, 65535], "of it and that supposed by the common": [0, 65535], "it and that supposed by the common rowt": [0, 65535], "and that supposed by the common rowt against": [0, 65535], "that supposed by the common rowt against your": [0, 65535], "supposed by the common rowt against your yet": [0, 65535], "by the common rowt against your yet vngalled": [0, 65535], "the common rowt against your yet vngalled estimation": [0, 65535], "common rowt against your yet vngalled estimation that": [0, 65535], "rowt against your yet vngalled estimation that may": [0, 65535], "against your yet vngalled estimation that may with": [0, 65535], "your yet vngalled estimation that may with foule": [0, 65535], "yet vngalled estimation that may with foule intrusion": [0, 65535], "vngalled estimation that may with foule intrusion enter": [0, 65535], "estimation that may with foule intrusion enter in": [0, 65535], "that may with foule intrusion enter in and": [0, 65535], "may with foule intrusion enter in and dwell": [0, 65535], "with foule intrusion enter in and dwell vpon": [0, 65535], "foule intrusion enter in and dwell vpon your": [0, 65535], "intrusion enter in and dwell vpon your graue": [0, 65535], "enter in and dwell vpon your graue when": [0, 65535], "in and dwell vpon your graue when you": [0, 65535], "and dwell vpon your graue when you are": [0, 65535], "dwell vpon your graue when you are dead": [0, 65535], "vpon your graue when you are dead for": [0, 65535], "your graue when you are dead for slander": [0, 65535], "graue when you are dead for slander liues": [0, 65535], "when you are dead for slander liues vpon": [0, 65535], "you are dead for slander liues vpon succession": [0, 65535], "are dead for slander liues vpon succession for": [0, 65535], "dead for slander liues vpon succession for euer": [0, 65535], "for slander liues vpon succession for euer hows'd": [0, 65535], "slander liues vpon succession for euer hows'd where": [0, 65535], "liues vpon succession for euer hows'd where it": [0, 65535], "vpon succession for euer hows'd where it gets": [0, 65535], "succession for euer hows'd where it gets possession": [0, 65535], "for euer hows'd where it gets possession anti": [0, 65535], "euer hows'd where it gets possession anti you": [0, 65535], "hows'd where it gets possession anti you haue": [0, 65535], "where it gets possession anti you haue preuail'd": [0, 65535], "it gets possession anti you haue preuail'd i": [0, 65535], "gets possession anti you haue preuail'd i will": [0, 65535], "possession anti you haue preuail'd i will depart": [0, 65535], "anti you haue preuail'd i will depart in": [0, 65535], "you haue preuail'd i will depart in quiet": [0, 65535], "haue preuail'd i will depart in quiet and": [0, 65535], "preuail'd i will depart in quiet and in": [0, 65535], "i will depart in quiet and in despight": [0, 65535], "will depart in quiet and in despight of": [0, 65535], "depart in quiet and in despight of mirth": [0, 65535], "in quiet and in despight of mirth meane": [0, 65535], "quiet and in despight of mirth meane to": [0, 65535], "and in despight of mirth meane to be": [0, 65535], "in despight of mirth meane to be merrie": [0, 65535], "despight of mirth meane to be merrie i": [0, 65535], "of mirth meane to be merrie i know": [0, 65535], "mirth meane to be merrie i know a": [0, 65535], "meane to be merrie i know a wench": [0, 65535], "to be merrie i know a wench of": [0, 65535], "be merrie i know a wench of excellent": [0, 65535], "merrie i know a wench of excellent discourse": [0, 65535], "i know a wench of excellent discourse prettie": [0, 65535], "know a wench of excellent discourse prettie and": [0, 65535], "a wench of excellent discourse prettie and wittie": [0, 65535], "wench of excellent discourse prettie and wittie wilde": [0, 65535], "of excellent discourse prettie and wittie wilde and": [0, 65535], "excellent discourse prettie and wittie wilde and yet": [0, 65535], "discourse prettie and wittie wilde and yet too": [0, 65535], "prettie and wittie wilde and yet too gentle": [0, 65535], "and wittie wilde and yet too gentle there": [0, 65535], "wittie wilde and yet too gentle there will": [0, 65535], "wilde and yet too gentle there will we": [0, 65535], "and yet too gentle there will we dine": [0, 65535], "yet too gentle there will we dine this": [0, 65535], "too gentle there will we dine this woman": [0, 65535], "gentle there will we dine this woman that": [0, 65535], "there will we dine this woman that i": [0, 65535], "will we dine this woman that i meane": [0, 65535], "we dine this woman that i meane my": [0, 65535], "dine this woman that i meane my wife": [0, 65535], "this woman that i meane my wife but": [0, 65535], "woman that i meane my wife but i": [0, 65535], "that i meane my wife but i protest": [0, 65535], "i meane my wife but i protest without": [0, 65535], "meane my wife but i protest without desert": [0, 65535], "my wife but i protest without desert hath": [0, 65535], "wife but i protest without desert hath oftentimes": [0, 65535], "but i protest without desert hath oftentimes vpbraided": [0, 65535], "i protest without desert hath oftentimes vpbraided me": [0, 65535], "protest without desert hath oftentimes vpbraided me withall": [0, 65535], "without desert hath oftentimes vpbraided me withall to": [0, 65535], "desert hath oftentimes vpbraided me withall to her": [0, 65535], "hath oftentimes vpbraided me withall to her will": [0, 65535], "oftentimes vpbraided me withall to her will we": [0, 65535], "vpbraided me withall to her will we to": [0, 65535], "me withall to her will we to dinner": [0, 65535], "withall to her will we to dinner get": [0, 65535], "to her will we to dinner get you": [0, 65535], "her will we to dinner get you home": [0, 65535], "will we to dinner get you home and": [0, 65535], "we to dinner get you home and fetch": [0, 65535], "to dinner get you home and fetch the": [0, 65535], "dinner get you home and fetch the chaine": [0, 65535], "get you home and fetch the chaine by": [0, 65535], "you home and fetch the chaine by this": [0, 65535], "home and fetch the chaine by this i": [0, 65535], "and fetch the chaine by this i know": [0, 65535], "fetch the chaine by this i know 'tis": [0, 65535], "the chaine by this i know 'tis made": [0, 65535], "chaine by this i know 'tis made bring": [0, 65535], "by this i know 'tis made bring it": [0, 65535], "this i know 'tis made bring it i": [0, 65535], "i know 'tis made bring it i pray": [0, 65535], "know 'tis made bring it i pray you": [0, 65535], "'tis made bring it i pray you to": [0, 65535], "made bring it i pray you to the": [0, 65535], "bring it i pray you to the porpentine": [0, 65535], "it i pray you to the porpentine for": [0, 65535], "i pray you to the porpentine for there's": [0, 65535], "pray you to the porpentine for there's the": [0, 65535], "you to the porpentine for there's the house": [0, 65535], "to the porpentine for there's the house that": [0, 65535], "the porpentine for there's the house that chaine": [0, 65535], "porpentine for there's the house that chaine will": [0, 65535], "for there's the house that chaine will i": [0, 65535], "there's the house that chaine will i bestow": [0, 65535], "the house that chaine will i bestow be": [0, 65535], "house that chaine will i bestow be it": [0, 65535], "that chaine will i bestow be it for": [0, 65535], "chaine will i bestow be it for nothing": [0, 65535], "will i bestow be it for nothing but": [0, 65535], "i bestow be it for nothing but to": [0, 65535], "bestow be it for nothing but to spight": [0, 65535], "be it for nothing but to spight my": [0, 65535], "it for nothing but to spight my wife": [0, 65535], "for nothing but to spight my wife vpon": [0, 65535], "nothing but to spight my wife vpon mine": [0, 65535], "but to spight my wife vpon mine hostesse": [0, 65535], "to spight my wife vpon mine hostesse there": [0, 65535], "spight my wife vpon mine hostesse there good": [0, 65535], "my wife vpon mine hostesse there good sir": [0, 65535], "wife vpon mine hostesse there good sir make": [0, 65535], "vpon mine hostesse there good sir make haste": [0, 65535], "mine hostesse there good sir make haste since": [0, 65535], "hostesse there good sir make haste since mine": [0, 65535], "there good sir make haste since mine owne": [0, 65535], "good sir make haste since mine owne doores": [0, 65535], "sir make haste since mine owne doores refuse": [0, 65535], "make haste since mine owne doores refuse to": [0, 65535], "haste since mine owne doores refuse to entertaine": [0, 65535], "since mine owne doores refuse to entertaine me": [0, 65535], "mine owne doores refuse to entertaine me ile": [0, 65535], "owne doores refuse to entertaine me ile knocke": [0, 65535], "doores refuse to entertaine me ile knocke else": [0, 65535], "refuse to entertaine me ile knocke else where": [0, 65535], "to entertaine me ile knocke else where to": [0, 65535], "entertaine me ile knocke else where to see": [0, 65535], "me ile knocke else where to see if": [0, 65535], "ile knocke else where to see if they'll": [0, 65535], "knocke else where to see if they'll disdaine": [0, 65535], "else where to see if they'll disdaine me": [0, 65535], "where to see if they'll disdaine me ang": [0, 65535], "to see if they'll disdaine me ang ile": [0, 65535], "see if they'll disdaine me ang ile meet": [0, 65535], "if they'll disdaine me ang ile meet you": [0, 65535], "they'll disdaine me ang ile meet you at": [0, 65535], "disdaine me ang ile meet you at that": [0, 65535], "me ang ile meet you at that place": [0, 65535], "ang ile meet you at that place some": [0, 65535], "ile meet you at that place some houre": [0, 65535], "meet you at that place some houre hence": [0, 65535], "you at that place some houre hence anti": [0, 65535], "at that place some houre hence anti do": [0, 65535], "that place some houre hence anti do so": [0, 65535], "place some houre hence anti do so this": [0, 65535], "some houre hence anti do so this iest": [0, 65535], "houre hence anti do so this iest shall": [0, 65535], "hence anti do so this iest shall cost": [0, 65535], "anti do so this iest shall cost me": [0, 65535], "do so this iest shall cost me some": [0, 65535], "so this iest shall cost me some expence": [0, 65535], "this iest shall cost me some expence exeunt": [0, 65535], "iest shall cost me some expence exeunt enter": [0, 65535], "shall cost me some expence exeunt enter iuliana": [0, 65535], "cost me some expence exeunt enter iuliana with": [0, 65535], "me some expence exeunt enter iuliana with antipholus": [0, 65535], "some expence exeunt enter iuliana with antipholus of": [0, 65535], "expence exeunt enter iuliana with antipholus of siracusia": [0, 65535], "exeunt enter iuliana with antipholus of siracusia iulia": [0, 65535], "enter iuliana with antipholus of siracusia iulia and": [0, 65535], "iuliana with antipholus of siracusia iulia and may": [0, 65535], "with antipholus of siracusia iulia and may it": [0, 65535], "antipholus of siracusia iulia and may it be": [0, 65535], "of siracusia iulia and may it be that": [0, 65535], "siracusia iulia and may it be that you": [0, 65535], "iulia and may it be that you haue": [0, 65535], "and may it be that you haue quite": [0, 65535], "may it be that you haue quite forgot": [0, 65535], "it be that you haue quite forgot a": [0, 65535], "be that you haue quite forgot a husbands": [0, 65535], "that you haue quite forgot a husbands office": [0, 65535], "you haue quite forgot a husbands office shall": [0, 65535], "haue quite forgot a husbands office shall antipholus": [0, 65535], "quite forgot a husbands office shall antipholus euen": [0, 65535], "forgot a husbands office shall antipholus euen in": [0, 65535], "a husbands office shall antipholus euen in the": [0, 65535], "husbands office shall antipholus euen in the spring": [0, 65535], "office shall antipholus euen in the spring of": [0, 65535], "shall antipholus euen in the spring of loue": [0, 65535], "antipholus euen in the spring of loue thy": [0, 65535], "euen in the spring of loue thy loue": [0, 65535], "in the spring of loue thy loue springs": [0, 65535], "the spring of loue thy loue springs rot": [0, 65535], "spring of loue thy loue springs rot shall": [0, 65535], "of loue thy loue springs rot shall loue": [0, 65535], "loue thy loue springs rot shall loue in": [0, 65535], "thy loue springs rot shall loue in buildings": [0, 65535], "loue springs rot shall loue in buildings grow": [0, 65535], "springs rot shall loue in buildings grow so": [0, 65535], "rot shall loue in buildings grow so ruinate": [0, 65535], "shall loue in buildings grow so ruinate if": [0, 65535], "loue in buildings grow so ruinate if you": [0, 65535], "in buildings grow so ruinate if you did": [0, 65535], "buildings grow so ruinate if you did wed": [0, 65535], "grow so ruinate if you did wed my": [0, 65535], "so ruinate if you did wed my sister": [0, 65535], "ruinate if you did wed my sister for": [0, 65535], "if you did wed my sister for her": [0, 65535], "you did wed my sister for her wealth": [0, 65535], "did wed my sister for her wealth then": [0, 65535], "wed my sister for her wealth then for": [0, 65535], "my sister for her wealth then for her": [0, 65535], "sister for her wealth then for her wealths": [0, 65535], "for her wealth then for her wealths sake": [0, 65535], "her wealth then for her wealths sake vse": [0, 65535], "wealth then for her wealths sake vse her": [0, 65535], "then for her wealths sake vse her with": [0, 65535], "for her wealths sake vse her with more": [0, 65535], "her wealths sake vse her with more kindnesse": [0, 65535], "wealths sake vse her with more kindnesse or": [0, 65535], "sake vse her with more kindnesse or if": [0, 65535], "vse her with more kindnesse or if you": [0, 65535], "her with more kindnesse or if you like": [0, 65535], "with more kindnesse or if you like else": [0, 65535], "more kindnesse or if you like else where": [0, 65535], "kindnesse or if you like else where doe": [0, 65535], "or if you like else where doe it": [0, 65535], "if you like else where doe it by": [0, 65535], "you like else where doe it by stealth": [0, 65535], "like else where doe it by stealth muffle": [0, 65535], "else where doe it by stealth muffle your": [0, 65535], "where doe it by stealth muffle your false": [0, 65535], "doe it by stealth muffle your false loue": [0, 65535], "it by stealth muffle your false loue with": [0, 65535], "by stealth muffle your false loue with some": [0, 65535], "stealth muffle your false loue with some shew": [0, 65535], "muffle your false loue with some shew of": [0, 65535], "your false loue with some shew of blindnesse": [0, 65535], "false loue with some shew of blindnesse let": [0, 65535], "loue with some shew of blindnesse let not": [0, 65535], "with some shew of blindnesse let not my": [0, 65535], "some shew of blindnesse let not my sister": [0, 65535], "shew of blindnesse let not my sister read": [0, 65535], "of blindnesse let not my sister read it": [0, 65535], "blindnesse let not my sister read it in": [0, 65535], "let not my sister read it in your": [0, 65535], "not my sister read it in your eye": [0, 65535], "my sister read it in your eye be": [0, 65535], "sister read it in your eye be not": [0, 65535], "read it in your eye be not thy": [0, 65535], "it in your eye be not thy tongue": [0, 65535], "in your eye be not thy tongue thy": [0, 65535], "your eye be not thy tongue thy owne": [0, 65535], "eye be not thy tongue thy owne shames": [0, 65535], "be not thy tongue thy owne shames orator": [0, 65535], "not thy tongue thy owne shames orator looke": [0, 65535], "thy tongue thy owne shames orator looke sweet": [0, 65535], "tongue thy owne shames orator looke sweet speake": [0, 65535], "thy owne shames orator looke sweet speake faire": [0, 65535], "owne shames orator looke sweet speake faire become": [0, 65535], "shames orator looke sweet speake faire become disloyaltie": [0, 65535], "orator looke sweet speake faire become disloyaltie apparell": [0, 65535], "looke sweet speake faire become disloyaltie apparell vice": [0, 65535], "sweet speake faire become disloyaltie apparell vice like": [0, 65535], "speake faire become disloyaltie apparell vice like vertues": [0, 65535], "faire become disloyaltie apparell vice like vertues harbenger": [0, 65535], "become disloyaltie apparell vice like vertues harbenger beare": [0, 65535], "disloyaltie apparell vice like vertues harbenger beare a": [0, 65535], "apparell vice like vertues harbenger beare a faire": [0, 65535], "vice like vertues harbenger beare a faire presence": [0, 65535], "like vertues harbenger beare a faire presence though": [0, 65535], "vertues harbenger beare a faire presence though your": [0, 65535], "harbenger beare a faire presence though your heart": [0, 65535], "beare a faire presence though your heart be": [0, 65535], "a faire presence though your heart be tainted": [0, 65535], "faire presence though your heart be tainted teach": [0, 65535], "presence though your heart be tainted teach sinne": [0, 65535], "though your heart be tainted teach sinne the": [0, 65535], "your heart be tainted teach sinne the carriage": [0, 65535], "heart be tainted teach sinne the carriage of": [0, 65535], "be tainted teach sinne the carriage of a": [0, 65535], "tainted teach sinne the carriage of a holy": [0, 65535], "teach sinne the carriage of a holy saint": [0, 65535], "sinne the carriage of a holy saint be": [0, 65535], "the carriage of a holy saint be secret": [0, 65535], "carriage of a holy saint be secret false": [0, 65535], "of a holy saint be secret false what": [0, 65535], "a holy saint be secret false what need": [0, 65535], "holy saint be secret false what need she": [0, 65535], "saint be secret false what need she be": [0, 65535], "be secret false what need she be acquainted": [0, 65535], "secret false what need she be acquainted what": [0, 65535], "false what need she be acquainted what simple": [0, 65535], "what need she be acquainted what simple thiefe": [0, 65535], "need she be acquainted what simple thiefe brags": [0, 65535], "she be acquainted what simple thiefe brags of": [0, 65535], "be acquainted what simple thiefe brags of his": [0, 65535], "acquainted what simple thiefe brags of his owne": [0, 65535], "what simple thiefe brags of his owne attaine": [0, 65535], "simple thiefe brags of his owne attaine 'tis": [0, 65535], "thiefe brags of his owne attaine 'tis double": [0, 65535], "brags of his owne attaine 'tis double wrong": [0, 65535], "of his owne attaine 'tis double wrong to": [0, 65535], "his owne attaine 'tis double wrong to truant": [0, 65535], "owne attaine 'tis double wrong to truant with": [0, 65535], "attaine 'tis double wrong to truant with your": [0, 65535], "'tis double wrong to truant with your bed": [0, 65535], "double wrong to truant with your bed and": [0, 65535], "wrong to truant with your bed and let": [0, 65535], "to truant with your bed and let her": [0, 65535], "truant with your bed and let her read": [0, 65535], "with your bed and let her read it": [0, 65535], "your bed and let her read it in": [0, 65535], "bed and let her read it in thy": [0, 65535], "and let her read it in thy lookes": [0, 65535], "let her read it in thy lookes at": [0, 65535], "her read it in thy lookes at boord": [0, 65535], "read it in thy lookes at boord shame": [0, 65535], "it in thy lookes at boord shame hath": [0, 65535], "in thy lookes at boord shame hath a": [0, 65535], "thy lookes at boord shame hath a bastard": [0, 65535], "lookes at boord shame hath a bastard fame": [0, 65535], "at boord shame hath a bastard fame well": [0, 65535], "boord shame hath a bastard fame well managed": [0, 65535], "shame hath a bastard fame well managed ill": [0, 65535], "hath a bastard fame well managed ill deeds": [0, 65535], "a bastard fame well managed ill deeds is": [0, 65535], "bastard fame well managed ill deeds is doubled": [0, 65535], "fame well managed ill deeds is doubled with": [0, 65535], "well managed ill deeds is doubled with an": [0, 65535], "managed ill deeds is doubled with an euill": [0, 65535], "ill deeds is doubled with an euill word": [0, 65535], "deeds is doubled with an euill word alas": [0, 65535], "is doubled with an euill word alas poore": [0, 65535], "doubled with an euill word alas poore women": [0, 65535], "with an euill word alas poore women make": [0, 65535], "an euill word alas poore women make vs": [0, 65535], "euill word alas poore women make vs not": [0, 65535], "word alas poore women make vs not beleeue": [0, 65535], "alas poore women make vs not beleeue being": [0, 65535], "poore women make vs not beleeue being compact": [0, 65535], "women make vs not beleeue being compact of": [0, 65535], "make vs not beleeue being compact of credit": [0, 65535], "vs not beleeue being compact of credit that": [0, 65535], "not beleeue being compact of credit that you": [0, 65535], "beleeue being compact of credit that you loue": [0, 65535], "being compact of credit that you loue vs": [0, 65535], "compact of credit that you loue vs though": [0, 65535], "of credit that you loue vs though others": [0, 65535], "credit that you loue vs though others haue": [0, 65535], "that you loue vs though others haue the": [0, 65535], "you loue vs though others haue the arme": [0, 65535], "loue vs though others haue the arme shew": [0, 65535], "vs though others haue the arme shew vs": [0, 65535], "though others haue the arme shew vs the": [0, 65535], "others haue the arme shew vs the sleeue": [0, 65535], "haue the arme shew vs the sleeue we": [0, 65535], "the arme shew vs the sleeue we in": [0, 65535], "arme shew vs the sleeue we in your": [0, 65535], "shew vs the sleeue we in your motion": [0, 65535], "vs the sleeue we in your motion turne": [0, 65535], "the sleeue we in your motion turne and": [0, 65535], "sleeue we in your motion turne and you": [0, 65535], "we in your motion turne and you may": [0, 65535], "in your motion turne and you may moue": [0, 65535], "your motion turne and you may moue vs": [0, 65535], "motion turne and you may moue vs then": [0, 65535], "turne and you may moue vs then gentle": [0, 65535], "and you may moue vs then gentle brother": [0, 65535], "you may moue vs then gentle brother get": [0, 65535], "may moue vs then gentle brother get you": [0, 65535], "moue vs then gentle brother get you in": [0, 65535], "vs then gentle brother get you in againe": [0, 65535], "then gentle brother get you in againe comfort": [0, 65535], "gentle brother get you in againe comfort my": [0, 65535], "brother get you in againe comfort my sister": [0, 65535], "get you in againe comfort my sister cheere": [0, 65535], "you in againe comfort my sister cheere her": [0, 65535], "in againe comfort my sister cheere her call": [0, 65535], "againe comfort my sister cheere her call her": [0, 65535], "comfort my sister cheere her call her wise": [0, 65535], "my sister cheere her call her wise 'tis": [0, 65535], "sister cheere her call her wise 'tis holy": [0, 65535], "cheere her call her wise 'tis holy sport": [0, 65535], "her call her wise 'tis holy sport to": [0, 65535], "call her wise 'tis holy sport to be": [0, 65535], "her wise 'tis holy sport to be a": [0, 65535], "wise 'tis holy sport to be a little": [0, 65535], "'tis holy sport to be a little vaine": [0, 65535], "holy sport to be a little vaine when": [0, 65535], "sport to be a little vaine when the": [0, 65535], "to be a little vaine when the sweet": [0, 65535], "be a little vaine when the sweet breath": [0, 65535], "a little vaine when the sweet breath of": [0, 65535], "little vaine when the sweet breath of flatterie": [0, 65535], "vaine when the sweet breath of flatterie conquers": [0, 65535], "when the sweet breath of flatterie conquers strife": [0, 65535], "the sweet breath of flatterie conquers strife s": [0, 65535], "sweet breath of flatterie conquers strife s anti": [0, 65535], "breath of flatterie conquers strife s anti sweete": [0, 65535], "of flatterie conquers strife s anti sweete mistris": [0, 65535], "flatterie conquers strife s anti sweete mistris what": [0, 65535], "conquers strife s anti sweete mistris what your": [0, 65535], "strife s anti sweete mistris what your name": [0, 65535], "s anti sweete mistris what your name is": [0, 65535], "anti sweete mistris what your name is else": [0, 65535], "sweete mistris what your name is else i": [0, 65535], "mistris what your name is else i know": [0, 65535], "what your name is else i know not": [0, 65535], "your name is else i know not nor": [0, 65535], "name is else i know not nor by": [0, 65535], "is else i know not nor by what": [0, 65535], "else i know not nor by what wonder": [0, 65535], "i know not nor by what wonder you": [0, 65535], "know not nor by what wonder you do": [0, 65535], "not nor by what wonder you do hit": [0, 65535], "nor by what wonder you do hit of": [0, 65535], "by what wonder you do hit of mine": [0, 65535], "what wonder you do hit of mine lesse": [0, 65535], "wonder you do hit of mine lesse in": [0, 65535], "you do hit of mine lesse in your": [0, 65535], "do hit of mine lesse in your knowledge": [0, 65535], "hit of mine lesse in your knowledge and": [0, 65535], "of mine lesse in your knowledge and your": [0, 65535], "mine lesse in your knowledge and your grace": [0, 65535], "lesse in your knowledge and your grace you": [0, 65535], "in your knowledge and your grace you show": [0, 65535], "your knowledge and your grace you show not": [0, 65535], "knowledge and your grace you show not then": [0, 65535], "and your grace you show not then our": [0, 65535], "your grace you show not then our earths": [0, 65535], "grace you show not then our earths wonder": [0, 65535], "you show not then our earths wonder more": [0, 65535], "show not then our earths wonder more then": [0, 65535], "not then our earths wonder more then earth": [0, 65535], "then our earths wonder more then earth diuine": [0, 65535], "our earths wonder more then earth diuine teach": [0, 65535], "earths wonder more then earth diuine teach me": [0, 65535], "wonder more then earth diuine teach me deere": [0, 65535], "more then earth diuine teach me deere creature": [0, 65535], "then earth diuine teach me deere creature how": [0, 65535], "earth diuine teach me deere creature how to": [0, 65535], "diuine teach me deere creature how to thinke": [0, 65535], "teach me deere creature how to thinke and": [0, 65535], "me deere creature how to thinke and speake": [0, 65535], "deere creature how to thinke and speake lay": [0, 65535], "creature how to thinke and speake lay open": [0, 65535], "how to thinke and speake lay open to": [0, 65535], "to thinke and speake lay open to my": [0, 65535], "thinke and speake lay open to my earthie": [0, 65535], "and speake lay open to my earthie grosse": [0, 65535], "speake lay open to my earthie grosse conceit": [0, 65535], "lay open to my earthie grosse conceit smothred": [0, 65535], "open to my earthie grosse conceit smothred in": [0, 65535], "to my earthie grosse conceit smothred in errors": [0, 65535], "my earthie grosse conceit smothred in errors feeble": [0, 65535], "earthie grosse conceit smothred in errors feeble shallow": [0, 65535], "grosse conceit smothred in errors feeble shallow weake": [0, 65535], "conceit smothred in errors feeble shallow weake the": [0, 65535], "smothred in errors feeble shallow weake the foulded": [0, 65535], "in errors feeble shallow weake the foulded meaning": [0, 65535], "errors feeble shallow weake the foulded meaning of": [0, 65535], "feeble shallow weake the foulded meaning of your": [0, 65535], "shallow weake the foulded meaning of your words": [0, 65535], "weake the foulded meaning of your words deceit": [0, 65535], "the foulded meaning of your words deceit against": [0, 65535], "foulded meaning of your words deceit against my": [0, 65535], "meaning of your words deceit against my soules": [0, 65535], "of your words deceit against my soules pure": [0, 65535], "your words deceit against my soules pure truth": [0, 65535], "words deceit against my soules pure truth why": [0, 65535], "deceit against my soules pure truth why labour": [0, 65535], "against my soules pure truth why labour you": [0, 65535], "my soules pure truth why labour you to": [0, 65535], "soules pure truth why labour you to make": [0, 65535], "pure truth why labour you to make it": [0, 65535], "truth why labour you to make it wander": [0, 65535], "why labour you to make it wander in": [0, 65535], "labour you to make it wander in an": [0, 65535], "you to make it wander in an vnknowne": [0, 65535], "to make it wander in an vnknowne field": [0, 65535], "make it wander in an vnknowne field are": [0, 65535], "it wander in an vnknowne field are you": [0, 65535], "wander in an vnknowne field are you a": [0, 65535], "in an vnknowne field are you a god": [0, 65535], "an vnknowne field are you a god would": [0, 65535], "vnknowne field are you a god would you": [0, 65535], "field are you a god would you create": [0, 65535], "are you a god would you create me": [0, 65535], "you a god would you create me new": [0, 65535], "a god would you create me new transforme": [0, 65535], "god would you create me new transforme me": [0, 65535], "would you create me new transforme me then": [0, 65535], "you create me new transforme me then and": [0, 65535], "create me new transforme me then and to": [0, 65535], "me new transforme me then and to your": [0, 65535], "new transforme me then and to your powre": [0, 65535], "transforme me then and to your powre ile": [0, 65535], "me then and to your powre ile yeeld": [0, 65535], "then and to your powre ile yeeld but": [0, 65535], "and to your powre ile yeeld but if": [0, 65535], "to your powre ile yeeld but if that": [0, 65535], "your powre ile yeeld but if that i": [0, 65535], "powre ile yeeld but if that i am": [0, 65535], "ile yeeld but if that i am i": [0, 65535], "yeeld but if that i am i then": [0, 65535], "but if that i am i then well": [0, 65535], "if that i am i then well i": [0, 65535], "that i am i then well i know": [0, 65535], "i am i then well i know your": [0, 65535], "am i then well i know your weeping": [0, 65535], "i then well i know your weeping sister": [0, 65535], "then well i know your weeping sister is": [0, 65535], "well i know your weeping sister is no": [0, 65535], "i know your weeping sister is no wife": [0, 65535], "know your weeping sister is no wife of": [0, 65535], "your weeping sister is no wife of mine": [0, 65535], "weeping sister is no wife of mine nor": [0, 65535], "sister is no wife of mine nor to": [0, 65535], "is no wife of mine nor to her": [0, 65535], "no wife of mine nor to her bed": [0, 65535], "wife of mine nor to her bed no": [0, 65535], "of mine nor to her bed no homage": [0, 65535], "mine nor to her bed no homage doe": [0, 65535], "nor to her bed no homage doe i": [0, 65535], "to her bed no homage doe i owe": [0, 65535], "her bed no homage doe i owe farre": [0, 65535], "bed no homage doe i owe farre more": [0, 65535], "no homage doe i owe farre more farre": [0, 65535], "homage doe i owe farre more farre more": [0, 65535], "doe i owe farre more farre more to": [0, 65535], "i owe farre more farre more to you": [0, 65535], "owe farre more farre more to you doe": [0, 65535], "farre more farre more to you doe i": [0, 65535], "more farre more to you doe i decline": [0, 65535], "farre more to you doe i decline oh": [0, 65535], "more to you doe i decline oh traine": [0, 65535], "to you doe i decline oh traine me": [0, 65535], "you doe i decline oh traine me not": [0, 65535], "doe i decline oh traine me not sweet": [0, 65535], "i decline oh traine me not sweet mermaide": [0, 65535], "decline oh traine me not sweet mermaide with": [0, 65535], "oh traine me not sweet mermaide with thy": [0, 65535], "traine me not sweet mermaide with thy note": [0, 65535], "me not sweet mermaide with thy note to": [0, 65535], "not sweet mermaide with thy note to drowne": [0, 65535], "sweet mermaide with thy note to drowne me": [0, 65535], "mermaide with thy note to drowne me in": [0, 65535], "with thy note to drowne me in thy": [0, 65535], "thy note to drowne me in thy sister": [0, 65535], "note to drowne me in thy sister floud": [0, 65535], "to drowne me in thy sister floud of": [0, 65535], "drowne me in thy sister floud of teares": [0, 65535], "me in thy sister floud of teares sing": [0, 65535], "in thy sister floud of teares sing siren": [0, 65535], "thy sister floud of teares sing siren for": [0, 65535], "sister floud of teares sing siren for thy": [0, 65535], "floud of teares sing siren for thy selfe": [0, 65535], "of teares sing siren for thy selfe and": [0, 65535], "teares sing siren for thy selfe and i": [0, 65535], "sing siren for thy selfe and i will": [0, 65535], "siren for thy selfe and i will dote": [0, 65535], "for thy selfe and i will dote spread": [0, 65535], "thy selfe and i will dote spread ore": [0, 65535], "selfe and i will dote spread ore the": [0, 65535], "and i will dote spread ore the siluer": [0, 65535], "i will dote spread ore the siluer waues": [0, 65535], "will dote spread ore the siluer waues thy": [0, 65535], "dote spread ore the siluer waues thy golden": [0, 65535], "spread ore the siluer waues thy golden haires": [0, 65535], "ore the siluer waues thy golden haires and": [0, 65535], "the siluer waues thy golden haires and as": [0, 65535], "siluer waues thy golden haires and as a": [0, 65535], "waues thy golden haires and as a bud": [0, 65535], "thy golden haires and as a bud ile": [0, 65535], "golden haires and as a bud ile take": [0, 65535], "haires and as a bud ile take thee": [0, 65535], "and as a bud ile take thee and": [0, 65535], "as a bud ile take thee and there": [0, 65535], "a bud ile take thee and there lie": [0, 65535], "bud ile take thee and there lie and": [0, 65535], "ile take thee and there lie and in": [0, 65535], "take thee and there lie and in that": [0, 65535], "thee and there lie and in that glorious": [0, 65535], "and there lie and in that glorious supposition": [0, 65535], "there lie and in that glorious supposition thinke": [0, 65535], "lie and in that glorious supposition thinke he": [0, 65535], "and in that glorious supposition thinke he gaines": [0, 65535], "in that glorious supposition thinke he gaines by": [0, 65535], "that glorious supposition thinke he gaines by death": [0, 65535], "glorious supposition thinke he gaines by death that": [0, 65535], "supposition thinke he gaines by death that hath": [0, 65535], "thinke he gaines by death that hath such": [0, 65535], "he gaines by death that hath such meanes": [0, 65535], "gaines by death that hath such meanes to": [0, 65535], "by death that hath such meanes to die": [0, 65535], "death that hath such meanes to die let": [0, 65535], "that hath such meanes to die let loue": [0, 65535], "hath such meanes to die let loue being": [0, 65535], "such meanes to die let loue being light": [0, 65535], "meanes to die let loue being light be": [0, 65535], "to die let loue being light be drowned": [0, 65535], "die let loue being light be drowned if": [0, 65535], "let loue being light be drowned if she": [0, 65535], "loue being light be drowned if she sinke": [0, 65535], "being light be drowned if she sinke luc": [0, 65535], "light be drowned if she sinke luc what": [0, 65535], "be drowned if she sinke luc what are": [0, 65535], "drowned if she sinke luc what are you": [0, 65535], "if she sinke luc what are you mad": [0, 65535], "she sinke luc what are you mad that": [0, 65535], "sinke luc what are you mad that you": [0, 65535], "luc what are you mad that you doe": [0, 65535], "what are you mad that you doe reason": [0, 65535], "are you mad that you doe reason so": [0, 65535], "you mad that you doe reason so ant": [0, 65535], "mad that you doe reason so ant not": [0, 65535], "that you doe reason so ant not mad": [0, 65535], "you doe reason so ant not mad but": [0, 65535], "doe reason so ant not mad but mated": [0, 65535], "reason so ant not mad but mated how": [0, 65535], "so ant not mad but mated how i": [0, 65535], "ant not mad but mated how i doe": [0, 65535], "not mad but mated how i doe not": [0, 65535], "mad but mated how i doe not know": [0, 65535], "but mated how i doe not know luc": [0, 65535], "mated how i doe not know luc it": [0, 65535], "how i doe not know luc it is": [0, 65535], "i doe not know luc it is a": [0, 65535], "doe not know luc it is a fault": [0, 65535], "not know luc it is a fault that": [0, 65535], "know luc it is a fault that springeth": [0, 65535], "luc it is a fault that springeth from": [0, 65535], "it is a fault that springeth from your": [0, 65535], "is a fault that springeth from your eie": [0, 65535], "a fault that springeth from your eie ant": [0, 65535], "fault that springeth from your eie ant for": [0, 65535], "that springeth from your eie ant for gazing": [0, 65535], "springeth from your eie ant for gazing on": [0, 65535], "from your eie ant for gazing on your": [0, 65535], "your eie ant for gazing on your beames": [0, 65535], "eie ant for gazing on your beames faire": [0, 65535], "ant for gazing on your beames faire sun": [0, 65535], "for gazing on your beames faire sun being": [0, 65535], "gazing on your beames faire sun being by": [0, 65535], "on your beames faire sun being by luc": [0, 65535], "your beames faire sun being by luc gaze": [0, 65535], "beames faire sun being by luc gaze when": [0, 65535], "faire sun being by luc gaze when you": [0, 65535], "sun being by luc gaze when you should": [0, 65535], "being by luc gaze when you should and": [0, 65535], "by luc gaze when you should and that": [0, 65535], "luc gaze when you should and that will": [0, 65535], "gaze when you should and that will cleere": [0, 65535], "when you should and that will cleere your": [0, 65535], "you should and that will cleere your sight": [0, 65535], "should and that will cleere your sight ant": [0, 65535], "and that will cleere your sight ant as": [0, 65535], "that will cleere your sight ant as good": [0, 65535], "will cleere your sight ant as good to": [0, 65535], "cleere your sight ant as good to winke": [0, 65535], "your sight ant as good to winke sweet": [0, 65535], "sight ant as good to winke sweet loue": [0, 65535], "ant as good to winke sweet loue as": [0, 65535], "as good to winke sweet loue as looke": [0, 65535], "good to winke sweet loue as looke on": [0, 65535], "to winke sweet loue as looke on night": [0, 65535], "winke sweet loue as looke on night luc": [0, 65535], "sweet loue as looke on night luc why": [0, 65535], "loue as looke on night luc why call": [0, 65535], "as looke on night luc why call you": [0, 65535], "looke on night luc why call you me": [0, 65535], "on night luc why call you me loue": [0, 65535], "night luc why call you me loue call": [0, 65535], "luc why call you me loue call my": [0, 65535], "why call you me loue call my sister": [0, 65535], "call you me loue call my sister so": [0, 65535], "you me loue call my sister so ant": [0, 65535], "me loue call my sister so ant thy": [0, 65535], "loue call my sister so ant thy sisters": [0, 65535], "call my sister so ant thy sisters sister": [0, 65535], "my sister so ant thy sisters sister luc": [0, 65535], "sister so ant thy sisters sister luc that's": [0, 65535], "so ant thy sisters sister luc that's my": [0, 65535], "ant thy sisters sister luc that's my sister": [0, 65535], "thy sisters sister luc that's my sister ant": [0, 65535], "sisters sister luc that's my sister ant no": [0, 65535], "sister luc that's my sister ant no it": [0, 65535], "luc that's my sister ant no it is": [0, 65535], "that's my sister ant no it is thy": [0, 65535], "my sister ant no it is thy selfe": [0, 65535], "sister ant no it is thy selfe mine": [0, 65535], "ant no it is thy selfe mine owne": [0, 65535], "no it is thy selfe mine owne selfes": [0, 65535], "it is thy selfe mine owne selfes better": [0, 65535], "is thy selfe mine owne selfes better part": [0, 65535], "thy selfe mine owne selfes better part mine": [0, 65535], "selfe mine owne selfes better part mine eies": [0, 65535], "mine owne selfes better part mine eies cleere": [0, 65535], "owne selfes better part mine eies cleere eie": [0, 65535], "selfes better part mine eies cleere eie my": [0, 65535], "better part mine eies cleere eie my deere": [0, 65535], "part mine eies cleere eie my deere hearts": [0, 65535], "mine eies cleere eie my deere hearts deerer": [0, 65535], "eies cleere eie my deere hearts deerer heart": [0, 65535], "cleere eie my deere hearts deerer heart my": [0, 65535], "eie my deere hearts deerer heart my foode": [0, 65535], "my deere hearts deerer heart my foode my": [0, 65535], "deere hearts deerer heart my foode my fortune": [0, 65535], "hearts deerer heart my foode my fortune and": [0, 65535], "deerer heart my foode my fortune and my": [0, 65535], "heart my foode my fortune and my sweet": [0, 65535], "my foode my fortune and my sweet hopes": [0, 65535], "foode my fortune and my sweet hopes aime": [0, 65535], "my fortune and my sweet hopes aime my": [0, 65535], "fortune and my sweet hopes aime my sole": [0, 65535], "and my sweet hopes aime my sole earths": [0, 65535], "my sweet hopes aime my sole earths heauen": [0, 65535], "sweet hopes aime my sole earths heauen and": [0, 65535], "hopes aime my sole earths heauen and my": [0, 65535], "aime my sole earths heauen and my heauens": [0, 65535], "my sole earths heauen and my heauens claime": [0, 65535], "sole earths heauen and my heauens claime luc": [0, 65535], "earths heauen and my heauens claime luc all": [0, 65535], "heauen and my heauens claime luc all this": [0, 65535], "and my heauens claime luc all this my": [0, 65535], "my heauens claime luc all this my sister": [0, 65535], "heauens claime luc all this my sister is": [0, 65535], "claime luc all this my sister is or": [0, 65535], "luc all this my sister is or else": [0, 65535], "all this my sister is or else should": [0, 65535], "this my sister is or else should be": [0, 65535], "my sister is or else should be ant": [0, 65535], "sister is or else should be ant call": [0, 65535], "is or else should be ant call thy": [0, 65535], "or else should be ant call thy selfe": [0, 65535], "else should be ant call thy selfe sister": [0, 65535], "should be ant call thy selfe sister sweet": [0, 65535], "be ant call thy selfe sister sweet for": [0, 65535], "ant call thy selfe sister sweet for i": [0, 65535], "call thy selfe sister sweet for i am": [0, 65535], "thy selfe sister sweet for i am thee": [0, 65535], "selfe sister sweet for i am thee thee": [0, 65535], "sister sweet for i am thee thee will": [0, 65535], "sweet for i am thee thee will i": [0, 65535], "for i am thee thee will i loue": [0, 65535], "i am thee thee will i loue and": [0, 65535], "am thee thee will i loue and with": [0, 65535], "thee thee will i loue and with thee": [0, 65535], "thee will i loue and with thee lead": [0, 65535], "will i loue and with thee lead my": [0, 65535], "i loue and with thee lead my life": [0, 65535], "loue and with thee lead my life thou": [0, 65535], "and with thee lead my life thou hast": [0, 65535], "with thee lead my life thou hast no": [0, 65535], "thee lead my life thou hast no husband": [0, 65535], "lead my life thou hast no husband yet": [0, 65535], "my life thou hast no husband yet nor": [0, 65535], "life thou hast no husband yet nor i": [0, 65535], "thou hast no husband yet nor i no": [0, 65535], "hast no husband yet nor i no wife": [0, 65535], "no husband yet nor i no wife giue": [0, 65535], "husband yet nor i no wife giue me": [0, 65535], "yet nor i no wife giue me thy": [0, 65535], "nor i no wife giue me thy hand": [0, 65535], "i no wife giue me thy hand luc": [0, 65535], "no wife giue me thy hand luc oh": [0, 65535], "wife giue me thy hand luc oh soft": [0, 65535], "giue me thy hand luc oh soft sir": [0, 65535], "me thy hand luc oh soft sir hold": [0, 65535], "thy hand luc oh soft sir hold you": [0, 65535], "hand luc oh soft sir hold you still": [0, 65535], "luc oh soft sir hold you still ile": [0, 65535], "oh soft sir hold you still ile fetch": [0, 65535], "soft sir hold you still ile fetch my": [0, 65535], "sir hold you still ile fetch my sister": [0, 65535], "hold you still ile fetch my sister to": [0, 65535], "you still ile fetch my sister to get": [0, 65535], "still ile fetch my sister to get her": [0, 65535], "ile fetch my sister to get her good": [0, 65535], "fetch my sister to get her good will": [0, 65535], "my sister to get her good will exit": [0, 65535], "sister to get her good will exit enter": [0, 65535], "to get her good will exit enter dromio": [0, 65535], "get her good will exit enter dromio siracusia": [0, 65535], "her good will exit enter dromio siracusia ant": [0, 65535], "good will exit enter dromio siracusia ant why": [0, 65535], "will exit enter dromio siracusia ant why how": [0, 65535], "exit enter dromio siracusia ant why how now": [0, 65535], "enter dromio siracusia ant why how now dromio": [0, 65535], "dromio siracusia ant why how now dromio where": [0, 65535], "siracusia ant why how now dromio where run'st": [0, 65535], "ant why how now dromio where run'st thou": [0, 65535], "why how now dromio where run'st thou so": [0, 65535], "how now dromio where run'st thou so fast": [0, 65535], "now dromio where run'st thou so fast s": [0, 65535], "dromio where run'st thou so fast s dro": [0, 65535], "where run'st thou so fast s dro doe": [0, 65535], "run'st thou so fast s dro doe you": [0, 65535], "thou so fast s dro doe you know": [0, 65535], "so fast s dro doe you know me": [0, 65535], "fast s dro doe you know me sir": [0, 65535], "s dro doe you know me sir am": [0, 65535], "dro doe you know me sir am i": [0, 65535], "doe you know me sir am i dromio": [0, 65535], "you know me sir am i dromio am": [0, 65535], "know me sir am i dromio am i": [0, 65535], "me sir am i dromio am i your": [0, 65535], "sir am i dromio am i your man": [0, 65535], "am i dromio am i your man am": [0, 65535], "i dromio am i your man am i": [0, 65535], "dromio am i your man am i my": [0, 65535], "am i your man am i my selfe": [0, 65535], "i your man am i my selfe ant": [0, 65535], "your man am i my selfe ant thou": [0, 65535], "man am i my selfe ant thou art": [0, 65535], "am i my selfe ant thou art dromio": [0, 65535], "i my selfe ant thou art dromio thou": [0, 65535], "my selfe ant thou art dromio thou art": [0, 65535], "selfe ant thou art dromio thou art my": [0, 65535], "ant thou art dromio thou art my man": [0, 65535], "thou art dromio thou art my man thou": [0, 65535], "art dromio thou art my man thou art": [0, 65535], "dromio thou art my man thou art thy": [0, 65535], "thou art my man thou art thy selfe": [0, 65535], "art my man thou art thy selfe dro": [0, 65535], "my man thou art thy selfe dro i": [0, 65535], "man thou art thy selfe dro i am": [0, 65535], "thou art thy selfe dro i am an": [0, 65535], "art thy selfe dro i am an asse": [0, 65535], "thy selfe dro i am an asse i": [0, 65535], "selfe dro i am an asse i am": [0, 65535], "dro i am an asse i am a": [0, 65535], "i am an asse i am a womans": [0, 65535], "am an asse i am a womans man": [0, 65535], "an asse i am a womans man and": [0, 65535], "asse i am a womans man and besides": [0, 65535], "i am a womans man and besides my": [0, 65535], "am a womans man and besides my selfe": [0, 65535], "a womans man and besides my selfe ant": [0, 65535], "womans man and besides my selfe ant what": [0, 65535], "man and besides my selfe ant what womans": [0, 65535], "and besides my selfe ant what womans man": [0, 65535], "besides my selfe ant what womans man and": [0, 65535], "my selfe ant what womans man and how": [0, 65535], "selfe ant what womans man and how besides": [0, 65535], "ant what womans man and how besides thy": [0, 65535], "what womans man and how besides thy selfe": [0, 65535], "womans man and how besides thy selfe dro": [0, 65535], "man and how besides thy selfe dro marrie": [0, 65535], "and how besides thy selfe dro marrie sir": [0, 65535], "how besides thy selfe dro marrie sir besides": [0, 65535], "besides thy selfe dro marrie sir besides my": [0, 65535], "thy selfe dro marrie sir besides my selfe": [0, 65535], "selfe dro marrie sir besides my selfe i": [0, 65535], "dro marrie sir besides my selfe i am": [0, 65535], "marrie sir besides my selfe i am due": [0, 65535], "sir besides my selfe i am due to": [0, 65535], "besides my selfe i am due to a": [0, 65535], "my selfe i am due to a woman": [0, 65535], "selfe i am due to a woman one": [0, 65535], "i am due to a woman one that": [0, 65535], "am due to a woman one that claimes": [0, 65535], "due to a woman one that claimes me": [0, 65535], "to a woman one that claimes me one": [0, 65535], "a woman one that claimes me one that": [0, 65535], "woman one that claimes me one that haunts": [0, 65535], "one that claimes me one that haunts me": [0, 65535], "that claimes me one that haunts me one": [0, 65535], "claimes me one that haunts me one that": [0, 65535], "me one that haunts me one that will": [0, 65535], "one that haunts me one that will haue": [0, 65535], "that haunts me one that will haue me": [0, 65535], "haunts me one that will haue me anti": [0, 65535], "me one that will haue me anti what": [0, 65535], "one that will haue me anti what claime": [0, 65535], "that will haue me anti what claime laies": [0, 65535], "will haue me anti what claime laies she": [0, 65535], "haue me anti what claime laies she to": [0, 65535], "me anti what claime laies she to thee": [0, 65535], "anti what claime laies she to thee dro": [0, 65535], "what claime laies she to thee dro marry": [0, 65535], "claime laies she to thee dro marry sir": [0, 65535], "laies she to thee dro marry sir such": [0, 65535], "she to thee dro marry sir such claime": [0, 65535], "to thee dro marry sir such claime as": [0, 65535], "thee dro marry sir such claime as you": [0, 65535], "dro marry sir such claime as you would": [0, 65535], "marry sir such claime as you would lay": [0, 65535], "sir such claime as you would lay to": [0, 65535], "such claime as you would lay to your": [0, 65535], "claime as you would lay to your horse": [0, 65535], "as you would lay to your horse and": [0, 65535], "you would lay to your horse and she": [0, 65535], "would lay to your horse and she would": [0, 65535], "lay to your horse and she would haue": [0, 65535], "to your horse and she would haue me": [0, 65535], "your horse and she would haue me as": [0, 65535], "horse and she would haue me as a": [0, 65535], "and she would haue me as a beast": [0, 65535], "she would haue me as a beast not": [0, 65535], "would haue me as a beast not that": [0, 65535], "haue me as a beast not that i": [0, 65535], "me as a beast not that i beeing": [0, 65535], "as a beast not that i beeing a": [0, 65535], "a beast not that i beeing a beast": [0, 65535], "beast not that i beeing a beast she": [0, 65535], "not that i beeing a beast she would": [0, 65535], "that i beeing a beast she would haue": [0, 65535], "i beeing a beast she would haue me": [0, 65535], "beeing a beast she would haue me but": [0, 65535], "a beast she would haue me but that": [0, 65535], "beast she would haue me but that she": [0, 65535], "she would haue me but that she being": [0, 65535], "would haue me but that she being a": [0, 65535], "haue me but that she being a verie": [0, 65535], "me but that she being a verie beastly": [0, 65535], "but that she being a verie beastly creature": [0, 65535], "that she being a verie beastly creature layes": [0, 65535], "she being a verie beastly creature layes claime": [0, 65535], "being a verie beastly creature layes claime to": [0, 65535], "a verie beastly creature layes claime to me": [0, 65535], "verie beastly creature layes claime to me anti": [0, 65535], "beastly creature layes claime to me anti what": [0, 65535], "creature layes claime to me anti what is": [0, 65535], "layes claime to me anti what is she": [0, 65535], "claime to me anti what is she dro": [0, 65535], "to me anti what is she dro a": [0, 65535], "me anti what is she dro a very": [0, 65535], "anti what is she dro a very reuerent": [0, 65535], "what is she dro a very reuerent body": [0, 65535], "is she dro a very reuerent body i": [0, 65535], "she dro a very reuerent body i such": [0, 65535], "dro a very reuerent body i such a": [0, 65535], "a very reuerent body i such a one": [0, 65535], "very reuerent body i such a one as": [0, 65535], "reuerent body i such a one as a": [0, 65535], "body i such a one as a man": [0, 65535], "i such a one as a man may": [0, 65535], "such a one as a man may not": [0, 65535], "a one as a man may not speake": [0, 65535], "one as a man may not speake of": [0, 65535], "as a man may not speake of without": [0, 65535], "a man may not speake of without he": [0, 65535], "man may not speake of without he say": [0, 65535], "may not speake of without he say sir": [0, 65535], "not speake of without he say sir reuerence": [0, 65535], "speake of without he say sir reuerence i": [0, 65535], "of without he say sir reuerence i haue": [0, 65535], "without he say sir reuerence i haue but": [0, 65535], "he say sir reuerence i haue but leane": [0, 65535], "say sir reuerence i haue but leane lucke": [0, 65535], "sir reuerence i haue but leane lucke in": [0, 65535], "reuerence i haue but leane lucke in the": [0, 65535], "i haue but leane lucke in the match": [0, 65535], "haue but leane lucke in the match and": [0, 65535], "but leane lucke in the match and yet": [0, 65535], "leane lucke in the match and yet is": [0, 65535], "lucke in the match and yet is she": [0, 65535], "in the match and yet is she a": [0, 65535], "the match and yet is she a wondrous": [0, 65535], "match and yet is she a wondrous fat": [0, 65535], "and yet is she a wondrous fat marriage": [0, 65535], "yet is she a wondrous fat marriage anti": [0, 65535], "is she a wondrous fat marriage anti how": [0, 65535], "she a wondrous fat marriage anti how dost": [0, 65535], "a wondrous fat marriage anti how dost thou": [0, 65535], "wondrous fat marriage anti how dost thou meane": [0, 65535], "fat marriage anti how dost thou meane a": [0, 65535], "marriage anti how dost thou meane a fat": [0, 65535], "anti how dost thou meane a fat marriage": [0, 65535], "how dost thou meane a fat marriage dro": [0, 65535], "dost thou meane a fat marriage dro marry": [0, 65535], "thou meane a fat marriage dro marry sir": [0, 65535], "meane a fat marriage dro marry sir she's": [0, 65535], "a fat marriage dro marry sir she's the": [0, 65535], "fat marriage dro marry sir she's the kitchin": [0, 65535], "marriage dro marry sir she's the kitchin wench": [0, 65535], "dro marry sir she's the kitchin wench al": [0, 65535], "marry sir she's the kitchin wench al grease": [0, 65535], "sir she's the kitchin wench al grease and": [0, 65535], "she's the kitchin wench al grease and i": [0, 65535], "the kitchin wench al grease and i know": [0, 65535], "kitchin wench al grease and i know not": [0, 65535], "wench al grease and i know not what": [0, 65535], "al grease and i know not what vse": [0, 65535], "grease and i know not what vse to": [0, 65535], "and i know not what vse to put": [0, 65535], "i know not what vse to put her": [0, 65535], "know not what vse to put her too": [0, 65535], "not what vse to put her too but": [0, 65535], "what vse to put her too but to": [0, 65535], "vse to put her too but to make": [0, 65535], "to put her too but to make a": [0, 65535], "put her too but to make a lampe": [0, 65535], "her too but to make a lampe of": [0, 65535], "too but to make a lampe of her": [0, 65535], "but to make a lampe of her and": [0, 65535], "to make a lampe of her and run": [0, 65535], "make a lampe of her and run from": [0, 65535], "a lampe of her and run from her": [0, 65535], "lampe of her and run from her by": [0, 65535], "of her and run from her by her": [0, 65535], "her and run from her by her owne": [0, 65535], "and run from her by her owne light": [0, 65535], "run from her by her owne light i": [0, 65535], "from her by her owne light i warrant": [0, 65535], "her by her owne light i warrant her": [0, 65535], "by her owne light i warrant her ragges": [0, 65535], "her owne light i warrant her ragges and": [0, 65535], "owne light i warrant her ragges and the": [0, 65535], "light i warrant her ragges and the tallow": [0, 65535], "i warrant her ragges and the tallow in": [0, 65535], "warrant her ragges and the tallow in them": [0, 65535], "her ragges and the tallow in them will": [0, 65535], "ragges and the tallow in them will burne": [0, 65535], "and the tallow in them will burne a": [0, 65535], "the tallow in them will burne a poland": [0, 65535], "tallow in them will burne a poland winter": [0, 65535], "in them will burne a poland winter if": [0, 65535], "them will burne a poland winter if she": [0, 65535], "will burne a poland winter if she liues": [0, 65535], "burne a poland winter if she liues till": [0, 65535], "a poland winter if she liues till doomesday": [0, 65535], "poland winter if she liues till doomesday she'l": [0, 65535], "winter if she liues till doomesday she'l burne": [0, 65535], "if she liues till doomesday she'l burne a": [0, 65535], "she liues till doomesday she'l burne a weeke": [0, 65535], "liues till doomesday she'l burne a weeke longer": [0, 65535], "till doomesday she'l burne a weeke longer then": [0, 65535], "doomesday she'l burne a weeke longer then the": [0, 65535], "she'l burne a weeke longer then the whole": [0, 65535], "burne a weeke longer then the whole world": [0, 65535], "a weeke longer then the whole world anti": [0, 65535], "weeke longer then the whole world anti what": [0, 65535], "longer then the whole world anti what complexion": [0, 65535], "then the whole world anti what complexion is": [0, 65535], "the whole world anti what complexion is she": [0, 65535], "whole world anti what complexion is she of": [0, 65535], "world anti what complexion is she of dro": [0, 65535], "anti what complexion is she of dro swart": [0, 65535], "what complexion is she of dro swart like": [0, 65535], "complexion is she of dro swart like my": [0, 65535], "is she of dro swart like my shoo": [0, 65535], "she of dro swart like my shoo but": [0, 65535], "of dro swart like my shoo but her": [0, 65535], "dro swart like my shoo but her face": [0, 65535], "swart like my shoo but her face nothing": [0, 65535], "like my shoo but her face nothing like": [0, 65535], "my shoo but her face nothing like so": [0, 65535], "shoo but her face nothing like so cleane": [0, 65535], "but her face nothing like so cleane kept": [0, 65535], "her face nothing like so cleane kept for": [0, 65535], "face nothing like so cleane kept for why": [0, 65535], "nothing like so cleane kept for why she": [0, 65535], "like so cleane kept for why she sweats": [0, 65535], "so cleane kept for why she sweats a": [0, 65535], "cleane kept for why she sweats a man": [0, 65535], "kept for why she sweats a man may": [0, 65535], "for why she sweats a man may goe": [0, 65535], "why she sweats a man may goe o": [0, 65535], "she sweats a man may goe o uer": [0, 65535], "sweats a man may goe o uer shooes": [0, 65535], "a man may goe o uer shooes in": [0, 65535], "man may goe o uer shooes in the": [0, 65535], "may goe o uer shooes in the grime": [0, 65535], "goe o uer shooes in the grime of": [0, 65535], "o uer shooes in the grime of it": [0, 65535], "uer shooes in the grime of it anti": [0, 65535], "shooes in the grime of it anti that's": [0, 65535], "in the grime of it anti that's a": [0, 65535], "the grime of it anti that's a fault": [0, 65535], "grime of it anti that's a fault that": [0, 65535], "of it anti that's a fault that water": [0, 65535], "it anti that's a fault that water will": [0, 65535], "anti that's a fault that water will mend": [0, 65535], "that's a fault that water will mend dro": [0, 65535], "a fault that water will mend dro no": [0, 65535], "fault that water will mend dro no sir": [0, 65535], "that water will mend dro no sir 'tis": [0, 65535], "water will mend dro no sir 'tis in": [0, 65535], "will mend dro no sir 'tis in graine": [0, 65535], "mend dro no sir 'tis in graine noahs": [0, 65535], "dro no sir 'tis in graine noahs flood": [0, 65535], "no sir 'tis in graine noahs flood could": [0, 65535], "sir 'tis in graine noahs flood could not": [0, 65535], "'tis in graine noahs flood could not do": [0, 65535], "in graine noahs flood could not do it": [0, 65535], "graine noahs flood could not do it anti": [0, 65535], "noahs flood could not do it anti what's": [0, 65535], "flood could not do it anti what's her": [0, 65535], "could not do it anti what's her name": [0, 65535], "not do it anti what's her name dro": [0, 65535], "do it anti what's her name dro nell": [0, 65535], "it anti what's her name dro nell sir": [0, 65535], "anti what's her name dro nell sir but": [0, 65535], "what's her name dro nell sir but her": [0, 65535], "her name dro nell sir but her name": [0, 65535], "name dro nell sir but her name is": [0, 65535], "dro nell sir but her name is three": [0, 65535], "nell sir but her name is three quarters": [0, 65535], "sir but her name is three quarters that's": [0, 65535], "but her name is three quarters that's an": [0, 65535], "her name is three quarters that's an ell": [0, 65535], "name is three quarters that's an ell and": [0, 65535], "is three quarters that's an ell and three": [0, 65535], "three quarters that's an ell and three quarters": [0, 65535], "quarters that's an ell and three quarters will": [0, 65535], "that's an ell and three quarters will not": [0, 65535], "an ell and three quarters will not measure": [0, 65535], "ell and three quarters will not measure her": [0, 65535], "and three quarters will not measure her from": [0, 65535], "three quarters will not measure her from hip": [0, 65535], "quarters will not measure her from hip to": [0, 65535], "will not measure her from hip to hip": [0, 65535], "not measure her from hip to hip anti": [0, 65535], "measure her from hip to hip anti then": [0, 65535], "her from hip to hip anti then she": [0, 65535], "from hip to hip anti then she beares": [0, 65535], "hip to hip anti then she beares some": [0, 65535], "to hip anti then she beares some bredth": [0, 65535], "hip anti then she beares some bredth dro": [0, 65535], "anti then she beares some bredth dro no": [0, 65535], "then she beares some bredth dro no longer": [0, 65535], "she beares some bredth dro no longer from": [0, 65535], "beares some bredth dro no longer from head": [0, 65535], "some bredth dro no longer from head to": [0, 65535], "bredth dro no longer from head to foot": [0, 65535], "dro no longer from head to foot then": [0, 65535], "no longer from head to foot then from": [0, 65535], "longer from head to foot then from hippe": [0, 65535], "from head to foot then from hippe to": [0, 65535], "head to foot then from hippe to hippe": [0, 65535], "to foot then from hippe to hippe she": [0, 65535], "foot then from hippe to hippe she is": [0, 65535], "then from hippe to hippe she is sphericall": [0, 65535], "from hippe to hippe she is sphericall like": [0, 65535], "hippe to hippe she is sphericall like a": [0, 65535], "to hippe she is sphericall like a globe": [0, 65535], "hippe she is sphericall like a globe i": [0, 65535], "she is sphericall like a globe i could": [0, 65535], "is sphericall like a globe i could find": [0, 65535], "sphericall like a globe i could find out": [0, 65535], "like a globe i could find out countries": [0, 65535], "a globe i could find out countries in": [0, 65535], "globe i could find out countries in her": [0, 65535], "i could find out countries in her anti": [0, 65535], "could find out countries in her anti in": [0, 65535], "find out countries in her anti in what": [0, 65535], "out countries in her anti in what part": [0, 65535], "countries in her anti in what part of": [0, 65535], "in her anti in what part of her": [0, 65535], "her anti in what part of her body": [0, 65535], "anti in what part of her body stands": [0, 65535], "in what part of her body stands ireland": [0, 65535], "what part of her body stands ireland dro": [0, 65535], "part of her body stands ireland dro marry": [0, 65535], "of her body stands ireland dro marry sir": [0, 65535], "her body stands ireland dro marry sir in": [0, 65535], "body stands ireland dro marry sir in her": [0, 65535], "stands ireland dro marry sir in her buttockes": [0, 65535], "ireland dro marry sir in her buttockes i": [0, 65535], "dro marry sir in her buttockes i found": [0, 65535], "marry sir in her buttockes i found it": [0, 65535], "sir in her buttockes i found it out": [0, 65535], "in her buttockes i found it out by": [0, 65535], "her buttockes i found it out by the": [0, 65535], "buttockes i found it out by the bogges": [0, 65535], "i found it out by the bogges ant": [0, 65535], "found it out by the bogges ant where": [0, 65535], "it out by the bogges ant where scotland": [0, 65535], "out by the bogges ant where scotland dro": [0, 65535], "by the bogges ant where scotland dro i": [0, 65535], "the bogges ant where scotland dro i found": [0, 65535], "bogges ant where scotland dro i found it": [0, 65535], "ant where scotland dro i found it by": [0, 65535], "where scotland dro i found it by the": [0, 65535], "scotland dro i found it by the barrennesse": [0, 65535], "dro i found it by the barrennesse hard": [0, 65535], "i found it by the barrennesse hard in": [0, 65535], "found it by the barrennesse hard in the": [0, 65535], "it by the barrennesse hard in the palme": [0, 65535], "by the barrennesse hard in the palme of": [0, 65535], "the barrennesse hard in the palme of the": [0, 65535], "barrennesse hard in the palme of the hand": [0, 65535], "hard in the palme of the hand ant": [0, 65535], "in the palme of the hand ant where": [0, 65535], "the palme of the hand ant where france": [0, 65535], "palme of the hand ant where france dro": [0, 65535], "of the hand ant where france dro in": [0, 65535], "the hand ant where france dro in her": [0, 65535], "hand ant where france dro in her forhead": [0, 65535], "ant where france dro in her forhead arm'd": [0, 65535], "where france dro in her forhead arm'd and": [0, 65535], "france dro in her forhead arm'd and reuerted": [0, 65535], "dro in her forhead arm'd and reuerted making": [0, 65535], "in her forhead arm'd and reuerted making warre": [0, 65535], "her forhead arm'd and reuerted making warre against": [0, 65535], "forhead arm'd and reuerted making warre against her": [0, 65535], "arm'd and reuerted making warre against her heire": [0, 65535], "and reuerted making warre against her heire ant": [0, 65535], "reuerted making warre against her heire ant where": [0, 65535], "making warre against her heire ant where england": [0, 65535], "warre against her heire ant where england dro": [0, 65535], "against her heire ant where england dro i": [0, 65535], "her heire ant where england dro i look'd": [0, 65535], "heire ant where england dro i look'd for": [0, 65535], "ant where england dro i look'd for the": [0, 65535], "where england dro i look'd for the chalkle": [0, 65535], "england dro i look'd for the chalkle cliffes": [0, 65535], "dro i look'd for the chalkle cliffes but": [0, 65535], "i look'd for the chalkle cliffes but i": [0, 65535], "look'd for the chalkle cliffes but i could": [0, 65535], "for the chalkle cliffes but i could find": [0, 65535], "the chalkle cliffes but i could find no": [0, 65535], "chalkle cliffes but i could find no whitenesse": [0, 65535], "cliffes but i could find no whitenesse in": [0, 65535], "but i could find no whitenesse in them": [0, 65535], "i could find no whitenesse in them but": [0, 65535], "could find no whitenesse in them but i": [0, 65535], "find no whitenesse in them but i guesse": [0, 65535], "no whitenesse in them but i guesse it": [0, 65535], "whitenesse in them but i guesse it stood": [0, 65535], "in them but i guesse it stood in": [0, 65535], "them but i guesse it stood in her": [0, 65535], "but i guesse it stood in her chin": [0, 65535], "i guesse it stood in her chin by": [0, 65535], "guesse it stood in her chin by the": [0, 65535], "it stood in her chin by the salt": [0, 65535], "stood in her chin by the salt rheume": [0, 65535], "in her chin by the salt rheume that": [0, 65535], "her chin by the salt rheume that ranne": [0, 65535], "chin by the salt rheume that ranne betweene": [0, 65535], "by the salt rheume that ranne betweene france": [0, 65535], "the salt rheume that ranne betweene france and": [0, 65535], "salt rheume that ranne betweene france and it": [0, 65535], "rheume that ranne betweene france and it ant": [0, 65535], "that ranne betweene france and it ant where": [0, 65535], "ranne betweene france and it ant where spaine": [0, 65535], "betweene france and it ant where spaine dro": [0, 65535], "france and it ant where spaine dro faith": [0, 65535], "and it ant where spaine dro faith i": [0, 65535], "it ant where spaine dro faith i saw": [0, 65535], "ant where spaine dro faith i saw it": [0, 65535], "where spaine dro faith i saw it not": [0, 65535], "spaine dro faith i saw it not but": [0, 65535], "dro faith i saw it not but i": [0, 65535], "faith i saw it not but i felt": [0, 65535], "i saw it not but i felt it": [0, 65535], "saw it not but i felt it hot": [0, 65535], "it not but i felt it hot in": [0, 65535], "not but i felt it hot in her": [0, 65535], "but i felt it hot in her breth": [0, 65535], "i felt it hot in her breth ant": [0, 65535], "felt it hot in her breth ant where": [0, 65535], "it hot in her breth ant where america": [0, 65535], "hot in her breth ant where america the": [0, 65535], "in her breth ant where america the indies": [0, 65535], "her breth ant where america the indies dro": [0, 65535], "breth ant where america the indies dro oh": [0, 65535], "ant where america the indies dro oh sir": [0, 65535], "where america the indies dro oh sir vpon": [0, 65535], "america the indies dro oh sir vpon her": [0, 65535], "the indies dro oh sir vpon her nose": [0, 65535], "indies dro oh sir vpon her nose all": [0, 65535], "dro oh sir vpon her nose all ore": [0, 65535], "oh sir vpon her nose all ore embellished": [0, 65535], "sir vpon her nose all ore embellished with": [0, 65535], "vpon her nose all ore embellished with rubies": [0, 65535], "her nose all ore embellished with rubies carbuncles": [0, 65535], "nose all ore embellished with rubies carbuncles saphires": [0, 65535], "all ore embellished with rubies carbuncles saphires declining": [0, 65535], "ore embellished with rubies carbuncles saphires declining their": [0, 65535], "embellished with rubies carbuncles saphires declining their rich": [0, 65535], "with rubies carbuncles saphires declining their rich aspect": [0, 65535], "rubies carbuncles saphires declining their rich aspect to": [0, 65535], "carbuncles saphires declining their rich aspect to the": [0, 65535], "saphires declining their rich aspect to the hot": [0, 65535], "declining their rich aspect to the hot breath": [0, 65535], "their rich aspect to the hot breath of": [0, 65535], "rich aspect to the hot breath of spaine": [0, 65535], "aspect to the hot breath of spaine who": [0, 65535], "to the hot breath of spaine who sent": [0, 65535], "the hot breath of spaine who sent whole": [0, 65535], "hot breath of spaine who sent whole armadoes": [0, 65535], "breath of spaine who sent whole armadoes of": [0, 65535], "of spaine who sent whole armadoes of carrects": [0, 65535], "spaine who sent whole armadoes of carrects to": [0, 65535], "who sent whole armadoes of carrects to be": [0, 65535], "sent whole armadoes of carrects to be ballast": [0, 65535], "whole armadoes of carrects to be ballast at": [0, 65535], "armadoes of carrects to be ballast at her": [0, 65535], "of carrects to be ballast at her nose": [0, 65535], "carrects to be ballast at her nose anti": [0, 65535], "to be ballast at her nose anti where": [0, 65535], "be ballast at her nose anti where stood": [0, 65535], "ballast at her nose anti where stood belgia": [0, 65535], "at her nose anti where stood belgia the": [0, 65535], "her nose anti where stood belgia the netherlands": [0, 65535], "nose anti where stood belgia the netherlands dro": [0, 65535], "anti where stood belgia the netherlands dro oh": [0, 65535], "where stood belgia the netherlands dro oh sir": [0, 65535], "stood belgia the netherlands dro oh sir i": [0, 65535], "belgia the netherlands dro oh sir i did": [0, 65535], "the netherlands dro oh sir i did not": [0, 65535], "netherlands dro oh sir i did not looke": [0, 65535], "dro oh sir i did not looke so": [0, 65535], "oh sir i did not looke so low": [0, 65535], "sir i did not looke so low to": [0, 65535], "i did not looke so low to conclude": [0, 65535], "did not looke so low to conclude this": [0, 65535], "not looke so low to conclude this drudge": [0, 65535], "looke so low to conclude this drudge or": [0, 65535], "so low to conclude this drudge or diuiner": [0, 65535], "low to conclude this drudge or diuiner layd": [0, 65535], "to conclude this drudge or diuiner layd claime": [0, 65535], "conclude this drudge or diuiner layd claime to": [0, 65535], "this drudge or diuiner layd claime to mee": [0, 65535], "drudge or diuiner layd claime to mee call'd": [0, 65535], "or diuiner layd claime to mee call'd mee": [0, 65535], "diuiner layd claime to mee call'd mee dromio": [0, 65535], "layd claime to mee call'd mee dromio swore": [0, 65535], "claime to mee call'd mee dromio swore i": [0, 65535], "to mee call'd mee dromio swore i was": [0, 65535], "mee call'd mee dromio swore i was assur'd": [0, 65535], "call'd mee dromio swore i was assur'd to": [0, 65535], "mee dromio swore i was assur'd to her": [0, 65535], "dromio swore i was assur'd to her told": [0, 65535], "swore i was assur'd to her told me": [0, 65535], "i was assur'd to her told me what": [0, 65535], "was assur'd to her told me what priuie": [0, 65535], "assur'd to her told me what priuie markes": [0, 65535], "to her told me what priuie markes i": [0, 65535], "her told me what priuie markes i had": [0, 65535], "told me what priuie markes i had about": [0, 65535], "me what priuie markes i had about mee": [0, 65535], "what priuie markes i had about mee as": [0, 65535], "priuie markes i had about mee as the": [0, 65535], "markes i had about mee as the marke": [0, 65535], "i had about mee as the marke of": [0, 65535], "had about mee as the marke of my": [0, 65535], "about mee as the marke of my shoulder": [0, 65535], "mee as the marke of my shoulder the": [0, 65535], "as the marke of my shoulder the mole": [0, 65535], "the marke of my shoulder the mole in": [0, 65535], "marke of my shoulder the mole in my": [0, 65535], "of my shoulder the mole in my necke": [0, 65535], "my shoulder the mole in my necke the": [0, 65535], "shoulder the mole in my necke the great": [0, 65535], "the mole in my necke the great wart": [0, 65535], "mole in my necke the great wart on": [0, 65535], "in my necke the great wart on my": [0, 65535], "my necke the great wart on my left": [0, 65535], "necke the great wart on my left arme": [0, 65535], "the great wart on my left arme that": [0, 65535], "great wart on my left arme that i": [0, 65535], "wart on my left arme that i amaz'd": [0, 65535], "on my left arme that i amaz'd ranne": [0, 65535], "my left arme that i amaz'd ranne from": [0, 65535], "left arme that i amaz'd ranne from her": [0, 65535], "arme that i amaz'd ranne from her as": [0, 65535], "that i amaz'd ranne from her as a": [0, 65535], "i amaz'd ranne from her as a witch": [0, 65535], "amaz'd ranne from her as a witch and": [0, 65535], "ranne from her as a witch and i": [0, 65535], "from her as a witch and i thinke": [0, 65535], "her as a witch and i thinke if": [0, 65535], "as a witch and i thinke if my": [0, 65535], "a witch and i thinke if my brest": [0, 65535], "witch and i thinke if my brest had": [0, 65535], "and i thinke if my brest had not": [0, 65535], "i thinke if my brest had not beene": [0, 65535], "thinke if my brest had not beene made": [0, 65535], "if my brest had not beene made of": [0, 65535], "my brest had not beene made of faith": [0, 65535], "brest had not beene made of faith and": [0, 65535], "had not beene made of faith and my": [0, 65535], "not beene made of faith and my heart": [0, 65535], "beene made of faith and my heart of": [0, 65535], "made of faith and my heart of steele": [0, 65535], "of faith and my heart of steele she": [0, 65535], "faith and my heart of steele she had": [0, 65535], "and my heart of steele she had transform'd": [0, 65535], "my heart of steele she had transform'd me": [0, 65535], "heart of steele she had transform'd me to": [0, 65535], "of steele she had transform'd me to a": [0, 65535], "steele she had transform'd me to a curtull": [0, 65535], "she had transform'd me to a curtull dog": [0, 65535], "had transform'd me to a curtull dog made": [0, 65535], "transform'd me to a curtull dog made me": [0, 65535], "me to a curtull dog made me turne": [0, 65535], "to a curtull dog made me turne i'th": [0, 65535], "a curtull dog made me turne i'th wheele": [0, 65535], "curtull dog made me turne i'th wheele anti": [0, 65535], "dog made me turne i'th wheele anti go": [0, 65535], "made me turne i'th wheele anti go hie": [0, 65535], "me turne i'th wheele anti go hie thee": [0, 65535], "turne i'th wheele anti go hie thee presently": [0, 65535], "i'th wheele anti go hie thee presently post": [0, 65535], "wheele anti go hie thee presently post to": [0, 65535], "anti go hie thee presently post to the": [0, 65535], "go hie thee presently post to the rode": [0, 65535], "hie thee presently post to the rode and": [0, 65535], "thee presently post to the rode and if": [0, 65535], "presently post to the rode and if the": [0, 65535], "post to the rode and if the winde": [0, 65535], "to the rode and if the winde blow": [0, 65535], "the rode and if the winde blow any": [0, 65535], "rode and if the winde blow any way": [0, 65535], "and if the winde blow any way from": [0, 65535], "if the winde blow any way from shore": [0, 65535], "the winde blow any way from shore i": [0, 65535], "winde blow any way from shore i will": [0, 65535], "blow any way from shore i will not": [0, 65535], "any way from shore i will not harbour": [0, 65535], "way from shore i will not harbour in": [0, 65535], "from shore i will not harbour in this": [0, 65535], "shore i will not harbour in this towne": [0, 65535], "i will not harbour in this towne to": [0, 65535], "will not harbour in this towne to night": [0, 65535], "not harbour in this towne to night if": [0, 65535], "harbour in this towne to night if any": [0, 65535], "in this towne to night if any barke": [0, 65535], "this towne to night if any barke put": [0, 65535], "towne to night if any barke put forth": [0, 65535], "to night if any barke put forth come": [0, 65535], "night if any barke put forth come to": [0, 65535], "if any barke put forth come to the": [0, 65535], "any barke put forth come to the mart": [0, 65535], "barke put forth come to the mart where": [0, 65535], "put forth come to the mart where i": [0, 65535], "forth come to the mart where i will": [0, 65535], "come to the mart where i will walke": [0, 65535], "to the mart where i will walke till": [0, 65535], "the mart where i will walke till thou": [0, 65535], "mart where i will walke till thou returne": [0, 65535], "where i will walke till thou returne to": [0, 65535], "i will walke till thou returne to me": [0, 65535], "will walke till thou returne to me if": [0, 65535], "walke till thou returne to me if euerie": [0, 65535], "till thou returne to me if euerie one": [0, 65535], "thou returne to me if euerie one knowes": [0, 65535], "returne to me if euerie one knowes vs": [0, 65535], "to me if euerie one knowes vs and": [0, 65535], "me if euerie one knowes vs and we": [0, 65535], "if euerie one knowes vs and we know": [0, 65535], "euerie one knowes vs and we know none": [0, 65535], "one knowes vs and we know none 'tis": [0, 65535], "knowes vs and we know none 'tis time": [0, 65535], "vs and we know none 'tis time i": [0, 65535], "and we know none 'tis time i thinke": [0, 65535], "we know none 'tis time i thinke to": [0, 65535], "know none 'tis time i thinke to trudge": [0, 65535], "none 'tis time i thinke to trudge packe": [0, 65535], "'tis time i thinke to trudge packe and": [0, 65535], "time i thinke to trudge packe and be": [0, 65535], "i thinke to trudge packe and be gone": [0, 65535], "thinke to trudge packe and be gone dro": [0, 65535], "to trudge packe and be gone dro as": [0, 65535], "trudge packe and be gone dro as from": [0, 65535], "packe and be gone dro as from a": [0, 65535], "and be gone dro as from a beare": [0, 65535], "be gone dro as from a beare a": [0, 65535], "gone dro as from a beare a man": [0, 65535], "dro as from a beare a man would": [0, 65535], "as from a beare a man would run": [0, 65535], "from a beare a man would run for": [0, 65535], "a beare a man would run for life": [0, 65535], "beare a man would run for life so": [0, 65535], "a man would run for life so flie": [0, 65535], "man would run for life so flie i": [0, 65535], "would run for life so flie i from": [0, 65535], "run for life so flie i from her": [0, 65535], "for life so flie i from her that": [0, 65535], "life so flie i from her that would": [0, 65535], "so flie i from her that would be": [0, 65535], "flie i from her that would be my": [0, 65535], "i from her that would be my wife": [0, 65535], "from her that would be my wife exit": [0, 65535], "her that would be my wife exit anti": [0, 65535], "that would be my wife exit anti there's": [0, 65535], "would be my wife exit anti there's none": [0, 65535], "be my wife exit anti there's none but": [0, 65535], "my wife exit anti there's none but witches": [0, 65535], "wife exit anti there's none but witches do": [0, 65535], "exit anti there's none but witches do inhabite": [0, 65535], "anti there's none but witches do inhabite heere": [0, 65535], "there's none but witches do inhabite heere and": [0, 65535], "none but witches do inhabite heere and therefore": [0, 65535], "but witches do inhabite heere and therefore 'tis": [0, 65535], "witches do inhabite heere and therefore 'tis hie": [0, 65535], "do inhabite heere and therefore 'tis hie time": [0, 65535], "inhabite heere and therefore 'tis hie time that": [0, 65535], "heere and therefore 'tis hie time that i": [0, 65535], "and therefore 'tis hie time that i were": [0, 65535], "therefore 'tis hie time that i were hence": [0, 65535], "'tis hie time that i were hence she": [0, 65535], "hie time that i were hence she that": [0, 65535], "time that i were hence she that doth": [0, 65535], "that i were hence she that doth call": [0, 65535], "i were hence she that doth call me": [0, 65535], "were hence she that doth call me husband": [0, 65535], "hence she that doth call me husband euen": [0, 65535], "she that doth call me husband euen my": [0, 65535], "that doth call me husband euen my soule": [0, 65535], "doth call me husband euen my soule doth": [0, 65535], "call me husband euen my soule doth for": [0, 65535], "me husband euen my soule doth for a": [0, 65535], "husband euen my soule doth for a wife": [0, 65535], "euen my soule doth for a wife abhorre": [0, 65535], "my soule doth for a wife abhorre but": [0, 65535], "soule doth for a wife abhorre but her": [0, 65535], "doth for a wife abhorre but her faire": [0, 65535], "for a wife abhorre but her faire sister": [0, 65535], "a wife abhorre but her faire sister possest": [0, 65535], "wife abhorre but her faire sister possest with": [0, 65535], "abhorre but her faire sister possest with such": [0, 65535], "but her faire sister possest with such a": [0, 65535], "her faire sister possest with such a gentle": [0, 65535], "faire sister possest with such a gentle soueraigne": [0, 65535], "sister possest with such a gentle soueraigne grace": [0, 65535], "possest with such a gentle soueraigne grace of": [0, 65535], "with such a gentle soueraigne grace of such": [0, 65535], "such a gentle soueraigne grace of such inchanting": [0, 65535], "a gentle soueraigne grace of such inchanting presence": [0, 65535], "gentle soueraigne grace of such inchanting presence and": [0, 65535], "soueraigne grace of such inchanting presence and discourse": [0, 65535], "grace of such inchanting presence and discourse hath": [0, 65535], "of such inchanting presence and discourse hath almost": [0, 65535], "such inchanting presence and discourse hath almost made": [0, 65535], "inchanting presence and discourse hath almost made me": [0, 65535], "presence and discourse hath almost made me traitor": [0, 65535], "and discourse hath almost made me traitor to": [0, 65535], "discourse hath almost made me traitor to my": [0, 65535], "hath almost made me traitor to my selfe": [0, 65535], "almost made me traitor to my selfe but": [0, 65535], "made me traitor to my selfe but least": [0, 65535], "me traitor to my selfe but least my": [0, 65535], "traitor to my selfe but least my selfe": [0, 65535], "to my selfe but least my selfe be": [0, 65535], "my selfe but least my selfe be guilty": [0, 65535], "selfe but least my selfe be guilty to": [0, 65535], "but least my selfe be guilty to selfe": [0, 65535], "least my selfe be guilty to selfe wrong": [0, 65535], "my selfe be guilty to selfe wrong ile": [0, 65535], "selfe be guilty to selfe wrong ile stop": [0, 65535], "be guilty to selfe wrong ile stop mine": [0, 65535], "guilty to selfe wrong ile stop mine eares": [0, 65535], "to selfe wrong ile stop mine eares against": [0, 65535], "selfe wrong ile stop mine eares against the": [0, 65535], "wrong ile stop mine eares against the mermaids": [0, 65535], "ile stop mine eares against the mermaids song": [0, 65535], "stop mine eares against the mermaids song enter": [0, 65535], "mine eares against the mermaids song enter angelo": [0, 65535], "eares against the mermaids song enter angelo with": [0, 65535], "against the mermaids song enter angelo with the": [0, 65535], "the mermaids song enter angelo with the chaine": [0, 65535], "mermaids song enter angelo with the chaine ang": [0, 65535], "song enter angelo with the chaine ang mr": [0, 65535], "enter angelo with the chaine ang mr antipholus": [0, 65535], "angelo with the chaine ang mr antipholus anti": [0, 65535], "with the chaine ang mr antipholus anti i": [0, 65535], "the chaine ang mr antipholus anti i that's": [0, 65535], "chaine ang mr antipholus anti i that's my": [0, 65535], "ang mr antipholus anti i that's my name": [0, 65535], "mr antipholus anti i that's my name ang": [0, 65535], "antipholus anti i that's my name ang i": [0, 65535], "anti i that's my name ang i know": [0, 65535], "i that's my name ang i know it": [0, 65535], "that's my name ang i know it well": [0, 65535], "my name ang i know it well sir": [0, 65535], "name ang i know it well sir loe": [0, 65535], "ang i know it well sir loe here's": [0, 65535], "i know it well sir loe here's the": [0, 65535], "know it well sir loe here's the chaine": [0, 65535], "it well sir loe here's the chaine i": [0, 65535], "well sir loe here's the chaine i thought": [0, 65535], "sir loe here's the chaine i thought to": [0, 65535], "loe here's the chaine i thought to haue": [0, 65535], "here's the chaine i thought to haue tane": [0, 65535], "the chaine i thought to haue tane you": [0, 65535], "chaine i thought to haue tane you at": [0, 65535], "i thought to haue tane you at the": [0, 65535], "thought to haue tane you at the porpentine": [0, 65535], "to haue tane you at the porpentine the": [0, 65535], "haue tane you at the porpentine the chaine": [0, 65535], "tane you at the porpentine the chaine vnfinish'd": [0, 65535], "you at the porpentine the chaine vnfinish'd made": [0, 65535], "at the porpentine the chaine vnfinish'd made me": [0, 65535], "the porpentine the chaine vnfinish'd made me stay": [0, 65535], "porpentine the chaine vnfinish'd made me stay thus": [0, 65535], "the chaine vnfinish'd made me stay thus long": [0, 65535], "chaine vnfinish'd made me stay thus long anti": [0, 65535], "vnfinish'd made me stay thus long anti what": [0, 65535], "made me stay thus long anti what is": [0, 65535], "me stay thus long anti what is your": [0, 65535], "stay thus long anti what is your will": [0, 65535], "thus long anti what is your will that": [0, 65535], "long anti what is your will that i": [0, 65535], "anti what is your will that i shal": [0, 65535], "what is your will that i shal do": [0, 65535], "is your will that i shal do with": [0, 65535], "your will that i shal do with this": [0, 65535], "will that i shal do with this ang": [0, 65535], "that i shal do with this ang what": [0, 65535], "i shal do with this ang what please": [0, 65535], "shal do with this ang what please your": [0, 65535], "do with this ang what please your selfe": [0, 65535], "with this ang what please your selfe sir": [0, 65535], "this ang what please your selfe sir i": [0, 65535], "ang what please your selfe sir i haue": [0, 65535], "what please your selfe sir i haue made": [0, 65535], "please your selfe sir i haue made it": [0, 65535], "your selfe sir i haue made it for": [0, 65535], "selfe sir i haue made it for you": [0, 65535], "sir i haue made it for you anti": [0, 65535], "i haue made it for you anti made": [0, 65535], "haue made it for you anti made it": [0, 65535], "made it for you anti made it for": [0, 65535], "it for you anti made it for me": [0, 65535], "for you anti made it for me sir": [0, 65535], "you anti made it for me sir i": [0, 65535], "anti made it for me sir i bespoke": [0, 65535], "made it for me sir i bespoke it": [0, 65535], "it for me sir i bespoke it not": [0, 65535], "for me sir i bespoke it not ang": [0, 65535], "me sir i bespoke it not ang not": [0, 65535], "sir i bespoke it not ang not once": [0, 65535], "i bespoke it not ang not once nor": [0, 65535], "bespoke it not ang not once nor twice": [0, 65535], "it not ang not once nor twice but": [0, 65535], "not ang not once nor twice but twentie": [0, 65535], "ang not once nor twice but twentie times": [0, 65535], "not once nor twice but twentie times you": [0, 65535], "once nor twice but twentie times you haue": [0, 65535], "nor twice but twentie times you haue go": [0, 65535], "twice but twentie times you haue go home": [0, 65535], "but twentie times you haue go home with": [0, 65535], "twentie times you haue go home with it": [0, 65535], "times you haue go home with it and": [0, 65535], "you haue go home with it and please": [0, 65535], "haue go home with it and please your": [0, 65535], "go home with it and please your wife": [0, 65535], "home with it and please your wife withall": [0, 65535], "with it and please your wife withall and": [0, 65535], "it and please your wife withall and soone": [0, 65535], "and please your wife withall and soone at": [0, 65535], "please your wife withall and soone at supper": [0, 65535], "your wife withall and soone at supper time": [0, 65535], "wife withall and soone at supper time ile": [0, 65535], "withall and soone at supper time ile visit": [0, 65535], "and soone at supper time ile visit you": [0, 65535], "soone at supper time ile visit you and": [0, 65535], "at supper time ile visit you and then": [0, 65535], "supper time ile visit you and then receiue": [0, 65535], "time ile visit you and then receiue my": [0, 65535], "ile visit you and then receiue my money": [0, 65535], "visit you and then receiue my money for": [0, 65535], "you and then receiue my money for the": [0, 65535], "and then receiue my money for the chaine": [0, 65535], "then receiue my money for the chaine anti": [0, 65535], "receiue my money for the chaine anti i": [0, 65535], "my money for the chaine anti i pray": [0, 65535], "money for the chaine anti i pray you": [0, 65535], "for the chaine anti i pray you sir": [0, 65535], "the chaine anti i pray you sir receiue": [0, 65535], "chaine anti i pray you sir receiue the": [0, 65535], "anti i pray you sir receiue the money": [0, 65535], "i pray you sir receiue the money now": [0, 65535], "pray you sir receiue the money now for": [0, 65535], "you sir receiue the money now for feare": [0, 65535], "sir receiue the money now for feare you": [0, 65535], "receiue the money now for feare you ne're": [0, 65535], "the money now for feare you ne're see": [0, 65535], "money now for feare you ne're see chaine": [0, 65535], "now for feare you ne're see chaine nor": [0, 65535], "for feare you ne're see chaine nor mony": [0, 65535], "feare you ne're see chaine nor mony more": [0, 65535], "you ne're see chaine nor mony more ang": [0, 65535], "ne're see chaine nor mony more ang you": [0, 65535], "see chaine nor mony more ang you are": [0, 65535], "chaine nor mony more ang you are a": [0, 65535], "nor mony more ang you are a merry": [0, 65535], "mony more ang you are a merry man": [0, 65535], "more ang you are a merry man sir": [0, 65535], "ang you are a merry man sir fare": [0, 65535], "you are a merry man sir fare you": [0, 65535], "are a merry man sir fare you well": [0, 65535], "a merry man sir fare you well exit": [0, 65535], "merry man sir fare you well exit ant": [0, 65535], "man sir fare you well exit ant what": [0, 65535], "sir fare you well exit ant what i": [0, 65535], "fare you well exit ant what i should": [0, 65535], "you well exit ant what i should thinke": [0, 65535], "well exit ant what i should thinke of": [0, 65535], "exit ant what i should thinke of this": [0, 65535], "ant what i should thinke of this i": [0, 65535], "what i should thinke of this i cannot": [0, 65535], "i should thinke of this i cannot tell": [0, 65535], "should thinke of this i cannot tell but": [0, 65535], "thinke of this i cannot tell but this": [0, 65535], "of this i cannot tell but this i": [0, 65535], "this i cannot tell but this i thinke": [0, 65535], "i cannot tell but this i thinke there's": [0, 65535], "cannot tell but this i thinke there's no": [0, 65535], "tell but this i thinke there's no man": [0, 65535], "but this i thinke there's no man is": [0, 65535], "this i thinke there's no man is so": [0, 65535], "i thinke there's no man is so vaine": [0, 65535], "thinke there's no man is so vaine that": [0, 65535], "there's no man is so vaine that would": [0, 65535], "no man is so vaine that would refuse": [0, 65535], "man is so vaine that would refuse so": [0, 65535], "is so vaine that would refuse so faire": [0, 65535], "so vaine that would refuse so faire an": [0, 65535], "vaine that would refuse so faire an offer'd": [0, 65535], "that would refuse so faire an offer'd chaine": [0, 65535], "would refuse so faire an offer'd chaine i": [0, 65535], "refuse so faire an offer'd chaine i see": [0, 65535], "so faire an offer'd chaine i see a": [0, 65535], "faire an offer'd chaine i see a man": [0, 65535], "an offer'd chaine i see a man heere": [0, 65535], "offer'd chaine i see a man heere needs": [0, 65535], "chaine i see a man heere needs not": [0, 65535], "i see a man heere needs not liue": [0, 65535], "see a man heere needs not liue by": [0, 65535], "a man heere needs not liue by shifts": [0, 65535], "man heere needs not liue by shifts when": [0, 65535], "heere needs not liue by shifts when in": [0, 65535], "needs not liue by shifts when in the": [0, 65535], "not liue by shifts when in the streets": [0, 65535], "liue by shifts when in the streets he": [0, 65535], "by shifts when in the streets he meetes": [0, 65535], "shifts when in the streets he meetes such": [0, 65535], "when in the streets he meetes such golden": [0, 65535], "in the streets he meetes such golden gifts": [0, 65535], "the streets he meetes such golden gifts ile": [0, 65535], "streets he meetes such golden gifts ile to": [0, 65535], "he meetes such golden gifts ile to the": [0, 65535], "meetes such golden gifts ile to the mart": [0, 65535], "such golden gifts ile to the mart and": [0, 65535], "golden gifts ile to the mart and there": [0, 65535], "gifts ile to the mart and there for": [0, 65535], "ile to the mart and there for dromio": [0, 65535], "to the mart and there for dromio stay": [0, 65535], "the mart and there for dromio stay if": [0, 65535], "mart and there for dromio stay if any": [0, 65535], "and there for dromio stay if any ship": [0, 65535], "there for dromio stay if any ship put": [0, 65535], "for dromio stay if any ship put out": [0, 65535], "dromio stay if any ship put out then": [0, 65535], "stay if any ship put out then straight": [0, 65535], "if any ship put out then straight away": [0, 65535], "any ship put out then straight away exit": [0, 65535], "actus tertius scena prima enter antipholus of ephesus his": [0, 65535], "tertius scena prima enter antipholus of ephesus his man": [0, 65535], "scena prima enter antipholus of ephesus his man dromio": [0, 65535], "prima enter antipholus of ephesus his man dromio angelo": [0, 65535], "enter antipholus of ephesus his man dromio angelo the": [0, 65535], "antipholus of ephesus his man dromio angelo the goldsmith": [0, 65535], "of ephesus his man dromio angelo the goldsmith and": [0, 65535], "ephesus his man dromio angelo the goldsmith and balthaser": [0, 65535], "his man dromio angelo the goldsmith and balthaser the": [0, 65535], "man dromio angelo the goldsmith and balthaser the merchant": [0, 65535], "dromio angelo the goldsmith and balthaser the merchant e": [0, 65535], "angelo the goldsmith and balthaser the merchant e anti": [0, 65535], "the goldsmith and balthaser the merchant e anti good": [0, 65535], "goldsmith and balthaser the merchant e anti good signior": [0, 65535], "and balthaser the merchant e anti good signior angelo": [0, 65535], "balthaser the merchant e anti good signior angelo you": [0, 65535], "the merchant e anti good signior angelo you must": [0, 65535], "merchant e anti good signior angelo you must excuse": [0, 65535], "e anti good signior angelo you must excuse vs": [0, 65535], "anti good signior angelo you must excuse vs all": [0, 65535], "good signior angelo you must excuse vs all my": [0, 65535], "signior angelo you must excuse vs all my wife": [0, 65535], "angelo you must excuse vs all my wife is": [0, 65535], "you must excuse vs all my wife is shrewish": [0, 65535], "must excuse vs all my wife is shrewish when": [0, 65535], "excuse vs all my wife is shrewish when i": [0, 65535], "vs all my wife is shrewish when i keepe": [0, 65535], "all my wife is shrewish when i keepe not": [0, 65535], "my wife is shrewish when i keepe not howres": [0, 65535], "wife is shrewish when i keepe not howres say": [0, 65535], "is shrewish when i keepe not howres say that": [0, 65535], "shrewish when i keepe not howres say that i": [0, 65535], "when i keepe not howres say that i lingerd": [0, 65535], "i keepe not howres say that i lingerd with": [0, 65535], "keepe not howres say that i lingerd with you": [0, 65535], "not howres say that i lingerd with you at": [0, 65535], "howres say that i lingerd with you at your": [0, 65535], "say that i lingerd with you at your shop": [0, 65535], "that i lingerd with you at your shop to": [0, 65535], "i lingerd with you at your shop to see": [0, 65535], "lingerd with you at your shop to see the": [0, 65535], "with you at your shop to see the making": [0, 65535], "you at your shop to see the making of": [0, 65535], "at your shop to see the making of her": [0, 65535], "your shop to see the making of her carkanet": [0, 65535], "shop to see the making of her carkanet and": [0, 65535], "to see the making of her carkanet and that": [0, 65535], "see the making of her carkanet and that to": [0, 65535], "the making of her carkanet and that to morrow": [0, 65535], "making of her carkanet and that to morrow you": [0, 65535], "of her carkanet and that to morrow you will": [0, 65535], "her carkanet and that to morrow you will bring": [0, 65535], "carkanet and that to morrow you will bring it": [0, 65535], "and that to morrow you will bring it home": [0, 65535], "that to morrow you will bring it home but": [0, 65535], "to morrow you will bring it home but here's": [0, 65535], "morrow you will bring it home but here's a": [0, 65535], "you will bring it home but here's a villaine": [0, 65535], "will bring it home but here's a villaine that": [0, 65535], "bring it home but here's a villaine that would": [0, 65535], "it home but here's a villaine that would face": [0, 65535], "home but here's a villaine that would face me": [0, 65535], "but here's a villaine that would face me downe": [0, 65535], "here's a villaine that would face me downe he": [0, 65535], "a villaine that would face me downe he met": [0, 65535], "villaine that would face me downe he met me": [0, 65535], "that would face me downe he met me on": [0, 65535], "would face me downe he met me on the": [0, 65535], "face me downe he met me on the mart": [0, 65535], "me downe he met me on the mart and": [0, 65535], "downe he met me on the mart and that": [0, 65535], "he met me on the mart and that i": [0, 65535], "met me on the mart and that i beat": [0, 65535], "me on the mart and that i beat him": [0, 65535], "on the mart and that i beat him and": [0, 65535], "the mart and that i beat him and charg'd": [0, 65535], "mart and that i beat him and charg'd him": [0, 65535], "and that i beat him and charg'd him with": [0, 65535], "that i beat him and charg'd him with a": [0, 65535], "i beat him and charg'd him with a thousand": [0, 65535], "beat him and charg'd him with a thousand markes": [0, 65535], "him and charg'd him with a thousand markes in": [0, 65535], "and charg'd him with a thousand markes in gold": [0, 65535], "charg'd him with a thousand markes in gold and": [0, 65535], "him with a thousand markes in gold and that": [0, 65535], "with a thousand markes in gold and that i": [0, 65535], "a thousand markes in gold and that i did": [0, 65535], "thousand markes in gold and that i did denie": [0, 65535], "markes in gold and that i did denie my": [0, 65535], "in gold and that i did denie my wife": [0, 65535], "gold and that i did denie my wife and": [0, 65535], "and that i did denie my wife and house": [0, 65535], "that i did denie my wife and house thou": [0, 65535], "i did denie my wife and house thou drunkard": [0, 65535], "did denie my wife and house thou drunkard thou": [0, 65535], "denie my wife and house thou drunkard thou what": [0, 65535], "my wife and house thou drunkard thou what didst": [0, 65535], "wife and house thou drunkard thou what didst thou": [0, 65535], "and house thou drunkard thou what didst thou meane": [0, 65535], "house thou drunkard thou what didst thou meane by": [0, 65535], "thou drunkard thou what didst thou meane by this": [0, 65535], "drunkard thou what didst thou meane by this e": [0, 65535], "thou what didst thou meane by this e dro": [0, 65535], "what didst thou meane by this e dro say": [0, 65535], "didst thou meane by this e dro say what": [0, 65535], "thou meane by this e dro say what you": [0, 65535], "meane by this e dro say what you wil": [0, 65535], "by this e dro say what you wil sir": [0, 65535], "this e dro say what you wil sir but": [0, 65535], "e dro say what you wil sir but i": [0, 65535], "dro say what you wil sir but i know": [0, 65535], "say what you wil sir but i know what": [0, 65535], "what you wil sir but i know what i": [0, 65535], "you wil sir but i know what i know": [0, 65535], "wil sir but i know what i know that": [0, 65535], "sir but i know what i know that you": [0, 65535], "but i know what i know that you beat": [0, 65535], "i know what i know that you beat me": [0, 65535], "know what i know that you beat me at": [0, 65535], "what i know that you beat me at the": [0, 65535], "i know that you beat me at the mart": [0, 65535], "know that you beat me at the mart i": [0, 65535], "that you beat me at the mart i haue": [0, 65535], "you beat me at the mart i haue your": [0, 65535], "beat me at the mart i haue your hand": [0, 65535], "me at the mart i haue your hand to": [0, 65535], "at the mart i haue your hand to show": [0, 65535], "the mart i haue your hand to show if": [0, 65535], "mart i haue your hand to show if the": [0, 65535], "i haue your hand to show if the skin": [0, 65535], "haue your hand to show if the skin were": [0, 65535], "your hand to show if the skin were parchment": [0, 65535], "hand to show if the skin were parchment the": [0, 65535], "to show if the skin were parchment the blows": [0, 65535], "show if the skin were parchment the blows you": [0, 65535], "if the skin were parchment the blows you gaue": [0, 65535], "the skin were parchment the blows you gaue were": [0, 65535], "skin were parchment the blows you gaue were ink": [0, 65535], "were parchment the blows you gaue were ink your": [0, 65535], "parchment the blows you gaue were ink your owne": [0, 65535], "the blows you gaue were ink your owne hand": [0, 65535], "blows you gaue were ink your owne hand writing": [0, 65535], "you gaue were ink your owne hand writing would": [0, 65535], "gaue were ink your owne hand writing would tell": [0, 65535], "were ink your owne hand writing would tell you": [0, 65535], "ink your owne hand writing would tell you what": [0, 65535], "your owne hand writing would tell you what i": [0, 65535], "owne hand writing would tell you what i thinke": [0, 65535], "hand writing would tell you what i thinke e": [0, 65535], "writing would tell you what i thinke e ant": [0, 65535], "would tell you what i thinke e ant i": [0, 65535], "tell you what i thinke e ant i thinke": [0, 65535], "you what i thinke e ant i thinke thou": [0, 65535], "what i thinke e ant i thinke thou art": [0, 65535], "i thinke e ant i thinke thou art an": [0, 65535], "thinke e ant i thinke thou art an asse": [0, 65535], "e ant i thinke thou art an asse e": [0, 65535], "ant i thinke thou art an asse e dro": [0, 65535], "i thinke thou art an asse e dro marry": [0, 65535], "thinke thou art an asse e dro marry so": [0, 65535], "thou art an asse e dro marry so it": [0, 65535], "art an asse e dro marry so it doth": [0, 65535], "an asse e dro marry so it doth appeare": [0, 65535], "asse e dro marry so it doth appeare by": [0, 65535], "e dro marry so it doth appeare by the": [0, 65535], "dro marry so it doth appeare by the wrongs": [0, 65535], "marry so it doth appeare by the wrongs i": [0, 65535], "so it doth appeare by the wrongs i suffer": [0, 65535], "it doth appeare by the wrongs i suffer and": [0, 65535], "doth appeare by the wrongs i suffer and the": [0, 65535], "appeare by the wrongs i suffer and the blowes": [0, 65535], "by the wrongs i suffer and the blowes i": [0, 65535], "the wrongs i suffer and the blowes i beare": [0, 65535], "wrongs i suffer and the blowes i beare i": [0, 65535], "i suffer and the blowes i beare i should": [0, 65535], "suffer and the blowes i beare i should kicke": [0, 65535], "and the blowes i beare i should kicke being": [0, 65535], "the blowes i beare i should kicke being kickt": [0, 65535], "blowes i beare i should kicke being kickt and": [0, 65535], "i beare i should kicke being kickt and being": [0, 65535], "beare i should kicke being kickt and being at": [0, 65535], "i should kicke being kickt and being at that": [0, 65535], "should kicke being kickt and being at that passe": [0, 65535], "kicke being kickt and being at that passe you": [0, 65535], "being kickt and being at that passe you would": [0, 65535], "kickt and being at that passe you would keepe": [0, 65535], "and being at that passe you would keepe from": [0, 65535], "being at that passe you would keepe from my": [0, 65535], "at that passe you would keepe from my heeles": [0, 65535], "that passe you would keepe from my heeles and": [0, 65535], "passe you would keepe from my heeles and beware": [0, 65535], "you would keepe from my heeles and beware of": [0, 65535], "would keepe from my heeles and beware of an": [0, 65535], "keepe from my heeles and beware of an asse": [0, 65535], "from my heeles and beware of an asse e": [0, 65535], "my heeles and beware of an asse e an": [0, 65535], "heeles and beware of an asse e an y'are": [0, 65535], "and beware of an asse e an y'are sad": [0, 65535], "beware of an asse e an y'are sad signior": [0, 65535], "of an asse e an y'are sad signior balthazar": [0, 65535], "an asse e an y'are sad signior balthazar pray": [0, 65535], "asse e an y'are sad signior balthazar pray god": [0, 65535], "e an y'are sad signior balthazar pray god our": [0, 65535], "an y'are sad signior balthazar pray god our cheer": [0, 65535], "y'are sad signior balthazar pray god our cheer may": [0, 65535], "sad signior balthazar pray god our cheer may answer": [0, 65535], "signior balthazar pray god our cheer may answer my": [0, 65535], "balthazar pray god our cheer may answer my good": [0, 65535], "pray god our cheer may answer my good will": [0, 65535], "god our cheer may answer my good will and": [0, 65535], "our cheer may answer my good will and your": [0, 65535], "cheer may answer my good will and your good": [0, 65535], "may answer my good will and your good welcom": [0, 65535], "answer my good will and your good welcom here": [0, 65535], "my good will and your good welcom here bal": [0, 65535], "good will and your good welcom here bal i": [0, 65535], "will and your good welcom here bal i hold": [0, 65535], "and your good welcom here bal i hold your": [0, 65535], "your good welcom here bal i hold your dainties": [0, 65535], "good welcom here bal i hold your dainties cheap": [0, 65535], "welcom here bal i hold your dainties cheap sir": [0, 65535], "here bal i hold your dainties cheap sir your": [0, 65535], "bal i hold your dainties cheap sir your welcom": [0, 65535], "i hold your dainties cheap sir your welcom deer": [0, 65535], "hold your dainties cheap sir your welcom deer e": [0, 65535], "your dainties cheap sir your welcom deer e an": [0, 65535], "dainties cheap sir your welcom deer e an oh": [0, 65535], "cheap sir your welcom deer e an oh signior": [0, 65535], "sir your welcom deer e an oh signior balthazar": [0, 65535], "your welcom deer e an oh signior balthazar either": [0, 65535], "welcom deer e an oh signior balthazar either at": [0, 65535], "deer e an oh signior balthazar either at flesh": [0, 65535], "e an oh signior balthazar either at flesh or": [0, 65535], "an oh signior balthazar either at flesh or fish": [0, 65535], "oh signior balthazar either at flesh or fish a": [0, 65535], "signior balthazar either at flesh or fish a table": [0, 65535], "balthazar either at flesh or fish a table full": [0, 65535], "either at flesh or fish a table full of": [0, 65535], "at flesh or fish a table full of welcome": [0, 65535], "flesh or fish a table full of welcome makes": [0, 65535], "or fish a table full of welcome makes scarce": [0, 65535], "fish a table full of welcome makes scarce one": [0, 65535], "a table full of welcome makes scarce one dainty": [0, 65535], "table full of welcome makes scarce one dainty dish": [0, 65535], "full of welcome makes scarce one dainty dish bal": [0, 65535], "of welcome makes scarce one dainty dish bal good": [0, 65535], "welcome makes scarce one dainty dish bal good meat": [0, 65535], "makes scarce one dainty dish bal good meat sir": [0, 65535], "scarce one dainty dish bal good meat sir is": [0, 65535], "one dainty dish bal good meat sir is co": [0, 65535], "dainty dish bal good meat sir is co m": [0, 65535], "dish bal good meat sir is co m mon": [0, 65535], "bal good meat sir is co m mon that": [0, 65535], "good meat sir is co m mon that euery": [0, 65535], "meat sir is co m mon that euery churle": [0, 65535], "sir is co m mon that euery churle affords": [0, 65535], "is co m mon that euery churle affords anti": [0, 65535], "co m mon that euery churle affords anti and": [0, 65535], "m mon that euery churle affords anti and welcome": [0, 65535], "mon that euery churle affords anti and welcome more": [0, 65535], "that euery churle affords anti and welcome more common": [0, 65535], "euery churle affords anti and welcome more common for": [0, 65535], "churle affords anti and welcome more common for thats": [0, 65535], "affords anti and welcome more common for thats nothing": [0, 65535], "anti and welcome more common for thats nothing but": [0, 65535], "and welcome more common for thats nothing but words": [0, 65535], "welcome more common for thats nothing but words bal": [0, 65535], "more common for thats nothing but words bal small": [0, 65535], "common for thats nothing but words bal small cheere": [0, 65535], "for thats nothing but words bal small cheere and": [0, 65535], "thats nothing but words bal small cheere and great": [0, 65535], "nothing but words bal small cheere and great welcome": [0, 65535], "but words bal small cheere and great welcome makes": [0, 65535], "words bal small cheere and great welcome makes a": [0, 65535], "bal small cheere and great welcome makes a merrie": [0, 65535], "small cheere and great welcome makes a merrie feast": [0, 65535], "cheere and great welcome makes a merrie feast anti": [0, 65535], "and great welcome makes a merrie feast anti i": [0, 65535], "great welcome makes a merrie feast anti i to": [0, 65535], "welcome makes a merrie feast anti i to a": [0, 65535], "makes a merrie feast anti i to a niggardly": [0, 65535], "a merrie feast anti i to a niggardly host": [0, 65535], "merrie feast anti i to a niggardly host and": [0, 65535], "feast anti i to a niggardly host and more": [0, 65535], "anti i to a niggardly host and more sparing": [0, 65535], "i to a niggardly host and more sparing guest": [0, 65535], "to a niggardly host and more sparing guest but": [0, 65535], "a niggardly host and more sparing guest but though": [0, 65535], "niggardly host and more sparing guest but though my": [0, 65535], "host and more sparing guest but though my cates": [0, 65535], "and more sparing guest but though my cates be": [0, 65535], "more sparing guest but though my cates be meane": [0, 65535], "sparing guest but though my cates be meane take": [0, 65535], "guest but though my cates be meane take them": [0, 65535], "but though my cates be meane take them in": [0, 65535], "though my cates be meane take them in good": [0, 65535], "my cates be meane take them in good part": [0, 65535], "cates be meane take them in good part better": [0, 65535], "be meane take them in good part better cheere": [0, 65535], "meane take them in good part better cheere may": [0, 65535], "take them in good part better cheere may you": [0, 65535], "them in good part better cheere may you haue": [0, 65535], "in good part better cheere may you haue but": [0, 65535], "good part better cheere may you haue but not": [0, 65535], "part better cheere may you haue but not with": [0, 65535], "better cheere may you haue but not with better": [0, 65535], "cheere may you haue but not with better hart": [0, 65535], "may you haue but not with better hart but": [0, 65535], "you haue but not with better hart but soft": [0, 65535], "haue but not with better hart but soft my": [0, 65535], "but not with better hart but soft my doore": [0, 65535], "not with better hart but soft my doore is": [0, 65535], "with better hart but soft my doore is lockt": [0, 65535], "better hart but soft my doore is lockt goe": [0, 65535], "hart but soft my doore is lockt goe bid": [0, 65535], "but soft my doore is lockt goe bid them": [0, 65535], "soft my doore is lockt goe bid them let": [0, 65535], "my doore is lockt goe bid them let vs": [0, 65535], "doore is lockt goe bid them let vs in": [0, 65535], "is lockt goe bid them let vs in e": [0, 65535], "lockt goe bid them let vs in e dro": [0, 65535], "goe bid them let vs in e dro maud": [0, 65535], "bid them let vs in e dro maud briget": [0, 65535], "them let vs in e dro maud briget marian": [0, 65535], "let vs in e dro maud briget marian cisley": [0, 65535], "vs in e dro maud briget marian cisley gillian": [0, 65535], "in e dro maud briget marian cisley gillian ginn": [0, 65535], "e dro maud briget marian cisley gillian ginn s": [0, 65535], "dro maud briget marian cisley gillian ginn s dro": [0, 65535], "maud briget marian cisley gillian ginn s dro mome": [0, 65535], "briget marian cisley gillian ginn s dro mome malthorse": [0, 65535], "marian cisley gillian ginn s dro mome malthorse capon": [0, 65535], "cisley gillian ginn s dro mome malthorse capon coxcombe": [0, 65535], "gillian ginn s dro mome malthorse capon coxcombe idiot": [0, 65535], "ginn s dro mome malthorse capon coxcombe idiot patch": [0, 65535], "s dro mome malthorse capon coxcombe idiot patch either": [0, 65535], "dro mome malthorse capon coxcombe idiot patch either get": [0, 65535], "mome malthorse capon coxcombe idiot patch either get thee": [0, 65535], "malthorse capon coxcombe idiot patch either get thee from": [0, 65535], "capon coxcombe idiot patch either get thee from the": [0, 65535], "coxcombe idiot patch either get thee from the dore": [0, 65535], "idiot patch either get thee from the dore or": [0, 65535], "patch either get thee from the dore or sit": [0, 65535], "either get thee from the dore or sit downe": [0, 65535], "get thee from the dore or sit downe at": [0, 65535], "thee from the dore or sit downe at the": [0, 65535], "from the dore or sit downe at the hatch": [0, 65535], "the dore or sit downe at the hatch dost": [0, 65535], "dore or sit downe at the hatch dost thou": [0, 65535], "or sit downe at the hatch dost thou coniure": [0, 65535], "sit downe at the hatch dost thou coniure for": [0, 65535], "downe at the hatch dost thou coniure for wenches": [0, 65535], "at the hatch dost thou coniure for wenches that": [0, 65535], "the hatch dost thou coniure for wenches that thou": [0, 65535], "hatch dost thou coniure for wenches that thou calst": [0, 65535], "dost thou coniure for wenches that thou calst for": [0, 65535], "thou coniure for wenches that thou calst for such": [0, 65535], "coniure for wenches that thou calst for such store": [0, 65535], "for wenches that thou calst for such store when": [0, 65535], "wenches that thou calst for such store when one": [0, 65535], "that thou calst for such store when one is": [0, 65535], "thou calst for such store when one is one": [0, 65535], "calst for such store when one is one too": [0, 65535], "for such store when one is one too many": [0, 65535], "such store when one is one too many goe": [0, 65535], "store when one is one too many goe get": [0, 65535], "when one is one too many goe get thee": [0, 65535], "one is one too many goe get thee from": [0, 65535], "is one too many goe get thee from the": [0, 65535], "one too many goe get thee from the dore": [0, 65535], "too many goe get thee from the dore e": [0, 65535], "many goe get thee from the dore e dro": [0, 65535], "goe get thee from the dore e dro what": [0, 65535], "get thee from the dore e dro what patch": [0, 65535], "thee from the dore e dro what patch is": [0, 65535], "from the dore e dro what patch is made": [0, 65535], "the dore e dro what patch is made our": [0, 65535], "dore e dro what patch is made our porter": [0, 65535], "e dro what patch is made our porter my": [0, 65535], "dro what patch is made our porter my master": [0, 65535], "what patch is made our porter my master stayes": [0, 65535], "patch is made our porter my master stayes in": [0, 65535], "is made our porter my master stayes in the": [0, 65535], "made our porter my master stayes in the street": [0, 65535], "our porter my master stayes in the street s": [0, 65535], "porter my master stayes in the street s dro": [0, 65535], "my master stayes in the street s dro let": [0, 65535], "master stayes in the street s dro let him": [0, 65535], "stayes in the street s dro let him walke": [0, 65535], "in the street s dro let him walke from": [0, 65535], "the street s dro let him walke from whence": [0, 65535], "street s dro let him walke from whence he": [0, 65535], "s dro let him walke from whence he came": [0, 65535], "dro let him walke from whence he came lest": [0, 65535], "let him walke from whence he came lest hee": [0, 65535], "him walke from whence he came lest hee catch": [0, 65535], "walke from whence he came lest hee catch cold": [0, 65535], "from whence he came lest hee catch cold on's": [0, 65535], "whence he came lest hee catch cold on's feet": [0, 65535], "he came lest hee catch cold on's feet e": [0, 65535], "came lest hee catch cold on's feet e ant": [0, 65535], "lest hee catch cold on's feet e ant who": [0, 65535], "hee catch cold on's feet e ant who talks": [0, 65535], "catch cold on's feet e ant who talks within": [0, 65535], "cold on's feet e ant who talks within there": [0, 65535], "on's feet e ant who talks within there hoa": [0, 65535], "feet e ant who talks within there hoa open": [0, 65535], "e ant who talks within there hoa open the": [0, 65535], "ant who talks within there hoa open the dore": [0, 65535], "who talks within there hoa open the dore s": [0, 65535], "talks within there hoa open the dore s dro": [0, 65535], "within there hoa open the dore s dro right": [0, 65535], "there hoa open the dore s dro right sir": [0, 65535], "hoa open the dore s dro right sir ile": [0, 65535], "open the dore s dro right sir ile tell": [0, 65535], "the dore s dro right sir ile tell you": [0, 65535], "dore s dro right sir ile tell you when": [0, 65535], "s dro right sir ile tell you when and": [0, 65535], "dro right sir ile tell you when and you'll": [0, 65535], "right sir ile tell you when and you'll tell": [0, 65535], "sir ile tell you when and you'll tell me": [0, 65535], "ile tell you when and you'll tell me wherefore": [0, 65535], "tell you when and you'll tell me wherefore ant": [0, 65535], "you when and you'll tell me wherefore ant wherefore": [0, 65535], "when and you'll tell me wherefore ant wherefore for": [0, 65535], "and you'll tell me wherefore ant wherefore for my": [0, 65535], "you'll tell me wherefore ant wherefore for my dinner": [0, 65535], "tell me wherefore ant wherefore for my dinner i": [0, 65535], "me wherefore ant wherefore for my dinner i haue": [0, 65535], "wherefore ant wherefore for my dinner i haue not": [0, 65535], "ant wherefore for my dinner i haue not din'd": [0, 65535], "wherefore for my dinner i haue not din'd to": [0, 65535], "for my dinner i haue not din'd to day": [0, 65535], "my dinner i haue not din'd to day s": [0, 65535], "dinner i haue not din'd to day s dro": [0, 65535], "i haue not din'd to day s dro nor": [0, 65535], "haue not din'd to day s dro nor to": [0, 65535], "not din'd to day s dro nor to day": [0, 65535], "din'd to day s dro nor to day here": [0, 65535], "to day s dro nor to day here you": [0, 65535], "day s dro nor to day here you must": [0, 65535], "s dro nor to day here you must not": [0, 65535], "dro nor to day here you must not come": [0, 65535], "nor to day here you must not come againe": [0, 65535], "to day here you must not come againe when": [0, 65535], "day here you must not come againe when you": [0, 65535], "here you must not come againe when you may": [0, 65535], "you must not come againe when you may anti": [0, 65535], "must not come againe when you may anti what": [0, 65535], "not come againe when you may anti what art": [0, 65535], "come againe when you may anti what art thou": [0, 65535], "againe when you may anti what art thou that": [0, 65535], "when you may anti what art thou that keep'st": [0, 65535], "you may anti what art thou that keep'st mee": [0, 65535], "may anti what art thou that keep'st mee out": [0, 65535], "anti what art thou that keep'st mee out from": [0, 65535], "what art thou that keep'st mee out from the": [0, 65535], "art thou that keep'st mee out from the howse": [0, 65535], "thou that keep'st mee out from the howse i": [0, 65535], "that keep'st mee out from the howse i owe": [0, 65535], "keep'st mee out from the howse i owe s": [0, 65535], "mee out from the howse i owe s dro": [0, 65535], "out from the howse i owe s dro the": [0, 65535], "from the howse i owe s dro the porter": [0, 65535], "the howse i owe s dro the porter for": [0, 65535], "howse i owe s dro the porter for this": [0, 65535], "i owe s dro the porter for this time": [0, 65535], "owe s dro the porter for this time sir": [0, 65535], "s dro the porter for this time sir and": [0, 65535], "dro the porter for this time sir and my": [0, 65535], "the porter for this time sir and my name": [0, 65535], "porter for this time sir and my name is": [0, 65535], "for this time sir and my name is dromio": [0, 65535], "this time sir and my name is dromio e": [0, 65535], "time sir and my name is dromio e dro": [0, 65535], "sir and my name is dromio e dro o": [0, 65535], "and my name is dromio e dro o villaine": [0, 65535], "my name is dromio e dro o villaine thou": [0, 65535], "name is dromio e dro o villaine thou hast": [0, 65535], "is dromio e dro o villaine thou hast stolne": [0, 65535], "dromio e dro o villaine thou hast stolne both": [0, 65535], "e dro o villaine thou hast stolne both mine": [0, 65535], "dro o villaine thou hast stolne both mine office": [0, 65535], "o villaine thou hast stolne both mine office and": [0, 65535], "villaine thou hast stolne both mine office and my": [0, 65535], "thou hast stolne both mine office and my name": [0, 65535], "hast stolne both mine office and my name the": [0, 65535], "stolne both mine office and my name the one": [0, 65535], "both mine office and my name the one nere": [0, 65535], "mine office and my name the one nere got": [0, 65535], "office and my name the one nere got me": [0, 65535], "and my name the one nere got me credit": [0, 65535], "my name the one nere got me credit the": [0, 65535], "name the one nere got me credit the other": [0, 65535], "the one nere got me credit the other mickle": [0, 65535], "one nere got me credit the other mickle blame": [0, 65535], "nere got me credit the other mickle blame if": [0, 65535], "got me credit the other mickle blame if thou": [0, 65535], "me credit the other mickle blame if thou hadst": [0, 65535], "credit the other mickle blame if thou hadst beene": [0, 65535], "the other mickle blame if thou hadst beene dromio": [0, 65535], "other mickle blame if thou hadst beene dromio to": [0, 65535], "mickle blame if thou hadst beene dromio to day": [0, 65535], "blame if thou hadst beene dromio to day in": [0, 65535], "if thou hadst beene dromio to day in my": [0, 65535], "thou hadst beene dromio to day in my place": [0, 65535], "hadst beene dromio to day in my place thou": [0, 65535], "beene dromio to day in my place thou wouldst": [0, 65535], "dromio to day in my place thou wouldst haue": [0, 65535], "to day in my place thou wouldst haue chang'd": [0, 65535], "day in my place thou wouldst haue chang'd thy": [0, 65535], "in my place thou wouldst haue chang'd thy face": [0, 65535], "my place thou wouldst haue chang'd thy face for": [0, 65535], "place thou wouldst haue chang'd thy face for a": [0, 65535], "thou wouldst haue chang'd thy face for a name": [0, 65535], "wouldst haue chang'd thy face for a name or": [0, 65535], "haue chang'd thy face for a name or thy": [0, 65535], "chang'd thy face for a name or thy name": [0, 65535], "thy face for a name or thy name for": [0, 65535], "face for a name or thy name for an": [0, 65535], "for a name or thy name for an asse": [0, 65535], "a name or thy name for an asse enter": [0, 65535], "name or thy name for an asse enter luce": [0, 65535], "or thy name for an asse enter luce luce": [0, 65535], "thy name for an asse enter luce luce what": [0, 65535], "name for an asse enter luce luce what a": [0, 65535], "for an asse enter luce luce what a coile": [0, 65535], "an asse enter luce luce what a coile is": [0, 65535], "asse enter luce luce what a coile is there": [0, 65535], "enter luce luce what a coile is there dromio": [0, 65535], "luce luce what a coile is there dromio who": [0, 65535], "luce what a coile is there dromio who are": [0, 65535], "what a coile is there dromio who are those": [0, 65535], "a coile is there dromio who are those at": [0, 65535], "coile is there dromio who are those at the": [0, 65535], "is there dromio who are those at the gate": [0, 65535], "there dromio who are those at the gate e": [0, 65535], "dromio who are those at the gate e dro": [0, 65535], "who are those at the gate e dro let": [0, 65535], "are those at the gate e dro let my": [0, 65535], "those at the gate e dro let my master": [0, 65535], "at the gate e dro let my master in": [0, 65535], "the gate e dro let my master in luce": [0, 65535], "gate e dro let my master in luce luce": [0, 65535], "e dro let my master in luce luce faith": [0, 65535], "dro let my master in luce luce faith no": [0, 65535], "let my master in luce luce faith no hee": [0, 65535], "my master in luce luce faith no hee comes": [0, 65535], "master in luce luce faith no hee comes too": [0, 65535], "in luce luce faith no hee comes too late": [0, 65535], "luce luce faith no hee comes too late and": [0, 65535], "luce faith no hee comes too late and so": [0, 65535], "faith no hee comes too late and so tell": [0, 65535], "no hee comes too late and so tell your": [0, 65535], "hee comes too late and so tell your master": [0, 65535], "comes too late and so tell your master e": [0, 65535], "too late and so tell your master e dro": [0, 65535], "late and so tell your master e dro o": [0, 65535], "and so tell your master e dro o lord": [0, 65535], "so tell your master e dro o lord i": [0, 65535], "tell your master e dro o lord i must": [0, 65535], "your master e dro o lord i must laugh": [0, 65535], "master e dro o lord i must laugh haue": [0, 65535], "e dro o lord i must laugh haue at": [0, 65535], "dro o lord i must laugh haue at you": [0, 65535], "o lord i must laugh haue at you with": [0, 65535], "lord i must laugh haue at you with a": [0, 65535], "i must laugh haue at you with a prouerbe": [0, 65535], "must laugh haue at you with a prouerbe shall": [0, 65535], "laugh haue at you with a prouerbe shall i": [0, 65535], "haue at you with a prouerbe shall i set": [0, 65535], "at you with a prouerbe shall i set in": [0, 65535], "you with a prouerbe shall i set in my": [0, 65535], "with a prouerbe shall i set in my staffe": [0, 65535], "a prouerbe shall i set in my staffe luce": [0, 65535], "prouerbe shall i set in my staffe luce haue": [0, 65535], "shall i set in my staffe luce haue at": [0, 65535], "i set in my staffe luce haue at you": [0, 65535], "set in my staffe luce haue at you with": [0, 65535], "in my staffe luce haue at you with another": [0, 65535], "my staffe luce haue at you with another that's": [0, 65535], "staffe luce haue at you with another that's when": [0, 65535], "luce haue at you with another that's when can": [0, 65535], "haue at you with another that's when can you": [0, 65535], "at you with another that's when can you tell": [0, 65535], "you with another that's when can you tell s": [0, 65535], "with another that's when can you tell s dro": [0, 65535], "another that's when can you tell s dro if": [0, 65535], "that's when can you tell s dro if thy": [0, 65535], "when can you tell s dro if thy name": [0, 65535], "can you tell s dro if thy name be": [0, 65535], "you tell s dro if thy name be called": [0, 65535], "tell s dro if thy name be called luce": [0, 65535], "s dro if thy name be called luce luce": [0, 65535], "dro if thy name be called luce luce thou": [0, 65535], "if thy name be called luce luce thou hast": [0, 65535], "thy name be called luce luce thou hast an": [0, 65535], "name be called luce luce thou hast an swer'd": [0, 65535], "be called luce luce thou hast an swer'd him": [0, 65535], "called luce luce thou hast an swer'd him well": [0, 65535], "luce luce thou hast an swer'd him well anti": [0, 65535], "luce thou hast an swer'd him well anti doe": [0, 65535], "thou hast an swer'd him well anti doe you": [0, 65535], "hast an swer'd him well anti doe you heare": [0, 65535], "an swer'd him well anti doe you heare you": [0, 65535], "swer'd him well anti doe you heare you minion": [0, 65535], "him well anti doe you heare you minion you'll": [0, 65535], "well anti doe you heare you minion you'll let": [0, 65535], "anti doe you heare you minion you'll let vs": [0, 65535], "doe you heare you minion you'll let vs in": [0, 65535], "you heare you minion you'll let vs in i": [0, 65535], "heare you minion you'll let vs in i hope": [0, 65535], "you minion you'll let vs in i hope luce": [0, 65535], "minion you'll let vs in i hope luce i": [0, 65535], "you'll let vs in i hope luce i thought": [0, 65535], "let vs in i hope luce i thought to": [0, 65535], "vs in i hope luce i thought to haue": [0, 65535], "in i hope luce i thought to haue askt": [0, 65535], "i hope luce i thought to haue askt you": [0, 65535], "hope luce i thought to haue askt you s": [0, 65535], "luce i thought to haue askt you s dro": [0, 65535], "i thought to haue askt you s dro and": [0, 65535], "thought to haue askt you s dro and you": [0, 65535], "to haue askt you s dro and you said": [0, 65535], "haue askt you s dro and you said no": [0, 65535], "askt you s dro and you said no e": [0, 65535], "you s dro and you said no e dro": [0, 65535], "s dro and you said no e dro so": [0, 65535], "dro and you said no e dro so come": [0, 65535], "and you said no e dro so come helpe": [0, 65535], "you said no e dro so come helpe well": [0, 65535], "said no e dro so come helpe well strooke": [0, 65535], "no e dro so come helpe well strooke there": [0, 65535], "e dro so come helpe well strooke there was": [0, 65535], "dro so come helpe well strooke there was blow": [0, 65535], "so come helpe well strooke there was blow for": [0, 65535], "come helpe well strooke there was blow for blow": [0, 65535], "helpe well strooke there was blow for blow anti": [0, 65535], "well strooke there was blow for blow anti thou": [0, 65535], "strooke there was blow for blow anti thou baggage": [0, 65535], "there was blow for blow anti thou baggage let": [0, 65535], "was blow for blow anti thou baggage let me": [0, 65535], "blow for blow anti thou baggage let me in": [0, 65535], "for blow anti thou baggage let me in luce": [0, 65535], "blow anti thou baggage let me in luce can": [0, 65535], "anti thou baggage let me in luce can you": [0, 65535], "thou baggage let me in luce can you tell": [0, 65535], "baggage let me in luce can you tell for": [0, 65535], "let me in luce can you tell for whose": [0, 65535], "me in luce can you tell for whose sake": [0, 65535], "in luce can you tell for whose sake e": [0, 65535], "luce can you tell for whose sake e drom": [0, 65535], "can you tell for whose sake e drom master": [0, 65535], "you tell for whose sake e drom master knocke": [0, 65535], "tell for whose sake e drom master knocke the": [0, 65535], "for whose sake e drom master knocke the doore": [0, 65535], "whose sake e drom master knocke the doore hard": [0, 65535], "sake e drom master knocke the doore hard luce": [0, 65535], "e drom master knocke the doore hard luce let": [0, 65535], "drom master knocke the doore hard luce let him": [0, 65535], "master knocke the doore hard luce let him knocke": [0, 65535], "knocke the doore hard luce let him knocke till": [0, 65535], "the doore hard luce let him knocke till it": [0, 65535], "doore hard luce let him knocke till it ake": [0, 65535], "hard luce let him knocke till it ake anti": [0, 65535], "luce let him knocke till it ake anti you'll": [0, 65535], "let him knocke till it ake anti you'll crie": [0, 65535], "him knocke till it ake anti you'll crie for": [0, 65535], "knocke till it ake anti you'll crie for this": [0, 65535], "till it ake anti you'll crie for this minion": [0, 65535], "it ake anti you'll crie for this minion if": [0, 65535], "ake anti you'll crie for this minion if i": [0, 65535], "anti you'll crie for this minion if i beat": [0, 65535], "you'll crie for this minion if i beat the": [0, 65535], "crie for this minion if i beat the doore": [0, 65535], "for this minion if i beat the doore downe": [0, 65535], "this minion if i beat the doore downe luce": [0, 65535], "minion if i beat the doore downe luce what": [0, 65535], "if i beat the doore downe luce what needs": [0, 65535], "i beat the doore downe luce what needs all": [0, 65535], "beat the doore downe luce what needs all that": [0, 65535], "the doore downe luce what needs all that and": [0, 65535], "doore downe luce what needs all that and a": [0, 65535], "downe luce what needs all that and a paire": [0, 65535], "luce what needs all that and a paire of": [0, 65535], "what needs all that and a paire of stocks": [0, 65535], "needs all that and a paire of stocks in": [0, 65535], "all that and a paire of stocks in the": [0, 65535], "that and a paire of stocks in the towne": [0, 65535], "and a paire of stocks in the towne enter": [0, 65535], "a paire of stocks in the towne enter adriana": [0, 65535], "paire of stocks in the towne enter adriana adr": [0, 65535], "of stocks in the towne enter adriana adr who": [0, 65535], "stocks in the towne enter adriana adr who is": [0, 65535], "in the towne enter adriana adr who is that": [0, 65535], "the towne enter adriana adr who is that at": [0, 65535], "towne enter adriana adr who is that at the": [0, 65535], "enter adriana adr who is that at the doore": [0, 65535], "adriana adr who is that at the doore that": [0, 65535], "adr who is that at the doore that keeps": [0, 65535], "who is that at the doore that keeps all": [0, 65535], "is that at the doore that keeps all this": [0, 65535], "that at the doore that keeps all this noise": [0, 65535], "at the doore that keeps all this noise s": [0, 65535], "the doore that keeps all this noise s dro": [0, 65535], "doore that keeps all this noise s dro by": [0, 65535], "that keeps all this noise s dro by my": [0, 65535], "keeps all this noise s dro by my troth": [0, 65535], "all this noise s dro by my troth your": [0, 65535], "this noise s dro by my troth your towne": [0, 65535], "noise s dro by my troth your towne is": [0, 65535], "s dro by my troth your towne is troubled": [0, 65535], "dro by my troth your towne is troubled with": [0, 65535], "by my troth your towne is troubled with vnruly": [0, 65535], "my troth your towne is troubled with vnruly boies": [0, 65535], "troth your towne is troubled with vnruly boies anti": [0, 65535], "your towne is troubled with vnruly boies anti are": [0, 65535], "towne is troubled with vnruly boies anti are you": [0, 65535], "is troubled with vnruly boies anti are you there": [0, 65535], "troubled with vnruly boies anti are you there wife": [0, 65535], "with vnruly boies anti are you there wife you": [0, 65535], "vnruly boies anti are you there wife you might": [0, 65535], "boies anti are you there wife you might haue": [0, 65535], "anti are you there wife you might haue come": [0, 65535], "are you there wife you might haue come before": [0, 65535], "you there wife you might haue come before adri": [0, 65535], "there wife you might haue come before adri your": [0, 65535], "wife you might haue come before adri your wife": [0, 65535], "you might haue come before adri your wife sir": [0, 65535], "might haue come before adri your wife sir knaue": [0, 65535], "haue come before adri your wife sir knaue go": [0, 65535], "come before adri your wife sir knaue go get": [0, 65535], "before adri your wife sir knaue go get you": [0, 65535], "adri your wife sir knaue go get you from": [0, 65535], "your wife sir knaue go get you from the": [0, 65535], "wife sir knaue go get you from the dore": [0, 65535], "sir knaue go get you from the dore e": [0, 65535], "knaue go get you from the dore e dro": [0, 65535], "go get you from the dore e dro if": [0, 65535], "get you from the dore e dro if you": [0, 65535], "you from the dore e dro if you went": [0, 65535], "from the dore e dro if you went in": [0, 65535], "the dore e dro if you went in paine": [0, 65535], "dore e dro if you went in paine master": [0, 65535], "e dro if you went in paine master this": [0, 65535], "dro if you went in paine master this knaue": [0, 65535], "if you went in paine master this knaue wold": [0, 65535], "you went in paine master this knaue wold goe": [0, 65535], "went in paine master this knaue wold goe sore": [0, 65535], "in paine master this knaue wold goe sore angelo": [0, 65535], "paine master this knaue wold goe sore angelo heere": [0, 65535], "master this knaue wold goe sore angelo heere is": [0, 65535], "this knaue wold goe sore angelo heere is neither": [0, 65535], "knaue wold goe sore angelo heere is neither cheere": [0, 65535], "wold goe sore angelo heere is neither cheere sir": [0, 65535], "goe sore angelo heere is neither cheere sir nor": [0, 65535], "sore angelo heere is neither cheere sir nor welcome": [0, 65535], "angelo heere is neither cheere sir nor welcome we": [0, 65535], "heere is neither cheere sir nor welcome we would": [0, 65535], "is neither cheere sir nor welcome we would faine": [0, 65535], "neither cheere sir nor welcome we would faine haue": [0, 65535], "cheere sir nor welcome we would faine haue either": [0, 65535], "sir nor welcome we would faine haue either baltz": [0, 65535], "nor welcome we would faine haue either baltz in": [0, 65535], "welcome we would faine haue either baltz in debating": [0, 65535], "we would faine haue either baltz in debating which": [0, 65535], "would faine haue either baltz in debating which was": [0, 65535], "faine haue either baltz in debating which was best": [0, 65535], "haue either baltz in debating which was best wee": [0, 65535], "either baltz in debating which was best wee shall": [0, 65535], "baltz in debating which was best wee shall part": [0, 65535], "in debating which was best wee shall part with": [0, 65535], "debating which was best wee shall part with neither": [0, 65535], "which was best wee shall part with neither e": [0, 65535], "was best wee shall part with neither e dro": [0, 65535], "best wee shall part with neither e dro they": [0, 65535], "wee shall part with neither e dro they stand": [0, 65535], "shall part with neither e dro they stand at": [0, 65535], "part with neither e dro they stand at the": [0, 65535], "with neither e dro they stand at the doore": [0, 65535], "neither e dro they stand at the doore master": [0, 65535], "e dro they stand at the doore master bid": [0, 65535], "dro they stand at the doore master bid them": [0, 65535], "they stand at the doore master bid them welcome": [0, 65535], "stand at the doore master bid them welcome hither": [0, 65535], "at the doore master bid them welcome hither anti": [0, 65535], "the doore master bid them welcome hither anti there": [0, 65535], "doore master bid them welcome hither anti there is": [0, 65535], "master bid them welcome hither anti there is something": [0, 65535], "bid them welcome hither anti there is something in": [0, 65535], "them welcome hither anti there is something in the": [0, 65535], "welcome hither anti there is something in the winde": [0, 65535], "hither anti there is something in the winde that": [0, 65535], "anti there is something in the winde that we": [0, 65535], "there is something in the winde that we cannot": [0, 65535], "is something in the winde that we cannot get": [0, 65535], "something in the winde that we cannot get in": [0, 65535], "in the winde that we cannot get in e": [0, 65535], "the winde that we cannot get in e dro": [0, 65535], "winde that we cannot get in e dro you": [0, 65535], "that we cannot get in e dro you would": [0, 65535], "we cannot get in e dro you would say": [0, 65535], "cannot get in e dro you would say so": [0, 65535], "get in e dro you would say so master": [0, 65535], "in e dro you would say so master if": [0, 65535], "e dro you would say so master if your": [0, 65535], "dro you would say so master if your garments": [0, 65535], "you would say so master if your garments were": [0, 65535], "would say so master if your garments were thin": [0, 65535], "say so master if your garments were thin your": [0, 65535], "so master if your garments were thin your cake": [0, 65535], "master if your garments were thin your cake here": [0, 65535], "if your garments were thin your cake here is": [0, 65535], "your garments were thin your cake here is warme": [0, 65535], "garments were thin your cake here is warme within": [0, 65535], "were thin your cake here is warme within you": [0, 65535], "thin your cake here is warme within you stand": [0, 65535], "your cake here is warme within you stand here": [0, 65535], "cake here is warme within you stand here in": [0, 65535], "here is warme within you stand here in the": [0, 65535], "is warme within you stand here in the cold": [0, 65535], "warme within you stand here in the cold it": [0, 65535], "within you stand here in the cold it would": [0, 65535], "you stand here in the cold it would make": [0, 65535], "stand here in the cold it would make a": [0, 65535], "here in the cold it would make a man": [0, 65535], "in the cold it would make a man mad": [0, 65535], "the cold it would make a man mad as": [0, 65535], "cold it would make a man mad as a": [0, 65535], "it would make a man mad as a bucke": [0, 65535], "would make a man mad as a bucke to": [0, 65535], "make a man mad as a bucke to be": [0, 65535], "a man mad as a bucke to be so": [0, 65535], "man mad as a bucke to be so bought": [0, 65535], "mad as a bucke to be so bought and": [0, 65535], "as a bucke to be so bought and sold": [0, 65535], "a bucke to be so bought and sold ant": [0, 65535], "bucke to be so bought and sold ant go": [0, 65535], "to be so bought and sold ant go fetch": [0, 65535], "be so bought and sold ant go fetch me": [0, 65535], "so bought and sold ant go fetch me something": [0, 65535], "bought and sold ant go fetch me something ile": [0, 65535], "and sold ant go fetch me something ile break": [0, 65535], "sold ant go fetch me something ile break ope": [0, 65535], "ant go fetch me something ile break ope the": [0, 65535], "go fetch me something ile break ope the gate": [0, 65535], "fetch me something ile break ope the gate s": [0, 65535], "me something ile break ope the gate s dro": [0, 65535], "something ile break ope the gate s dro breake": [0, 65535], "ile break ope the gate s dro breake any": [0, 65535], "break ope the gate s dro breake any breaking": [0, 65535], "ope the gate s dro breake any breaking here": [0, 65535], "the gate s dro breake any breaking here and": [0, 65535], "gate s dro breake any breaking here and ile": [0, 65535], "s dro breake any breaking here and ile breake": [0, 65535], "dro breake any breaking here and ile breake your": [0, 65535], "breake any breaking here and ile breake your knaues": [0, 65535], "any breaking here and ile breake your knaues pate": [0, 65535], "breaking here and ile breake your knaues pate e": [0, 65535], "here and ile breake your knaues pate e dro": [0, 65535], "and ile breake your knaues pate e dro a": [0, 65535], "ile breake your knaues pate e dro a man": [0, 65535], "breake your knaues pate e dro a man may": [0, 65535], "your knaues pate e dro a man may breake": [0, 65535], "knaues pate e dro a man may breake a": [0, 65535], "pate e dro a man may breake a word": [0, 65535], "e dro a man may breake a word with": [0, 65535], "dro a man may breake a word with your": [0, 65535], "a man may breake a word with your sir": [0, 65535], "man may breake a word with your sir and": [0, 65535], "may breake a word with your sir and words": [0, 65535], "breake a word with your sir and words are": [0, 65535], "a word with your sir and words are but": [0, 65535], "word with your sir and words are but winde": [0, 65535], "with your sir and words are but winde i": [0, 65535], "your sir and words are but winde i and": [0, 65535], "sir and words are but winde i and breake": [0, 65535], "and words are but winde i and breake it": [0, 65535], "words are but winde i and breake it in": [0, 65535], "are but winde i and breake it in your": [0, 65535], "but winde i and breake it in your face": [0, 65535], "winde i and breake it in your face so": [0, 65535], "i and breake it in your face so he": [0, 65535], "and breake it in your face so he break": [0, 65535], "breake it in your face so he break it": [0, 65535], "it in your face so he break it not": [0, 65535], "in your face so he break it not behinde": [0, 65535], "your face so he break it not behinde s": [0, 65535], "face so he break it not behinde s dro": [0, 65535], "so he break it not behinde s dro it": [0, 65535], "he break it not behinde s dro it seemes": [0, 65535], "break it not behinde s dro it seemes thou": [0, 65535], "it not behinde s dro it seemes thou want'st": [0, 65535], "not behinde s dro it seemes thou want'st breaking": [0, 65535], "behinde s dro it seemes thou want'st breaking out": [0, 65535], "s dro it seemes thou want'st breaking out vpon": [0, 65535], "dro it seemes thou want'st breaking out vpon thee": [0, 65535], "it seemes thou want'st breaking out vpon thee hinde": [0, 65535], "seemes thou want'st breaking out vpon thee hinde e": [0, 65535], "thou want'st breaking out vpon thee hinde e dro": [0, 65535], "want'st breaking out vpon thee hinde e dro here's": [0, 65535], "breaking out vpon thee hinde e dro here's too": [0, 65535], "out vpon thee hinde e dro here's too much": [0, 65535], "vpon thee hinde e dro here's too much out": [0, 65535], "thee hinde e dro here's too much out vpon": [0, 65535], "hinde e dro here's too much out vpon thee": [0, 65535], "e dro here's too much out vpon thee i": [0, 65535], "dro here's too much out vpon thee i pray": [0, 65535], "here's too much out vpon thee i pray thee": [0, 65535], "too much out vpon thee i pray thee let": [0, 65535], "much out vpon thee i pray thee let me": [0, 65535], "out vpon thee i pray thee let me in": [0, 65535], "vpon thee i pray thee let me in s": [0, 65535], "thee i pray thee let me in s dro": [0, 65535], "i pray thee let me in s dro i": [0, 65535], "pray thee let me in s dro i when": [0, 65535], "thee let me in s dro i when fowles": [0, 65535], "let me in s dro i when fowles haue": [0, 65535], "me in s dro i when fowles haue no": [0, 65535], "in s dro i when fowles haue no feathers": [0, 65535], "s dro i when fowles haue no feathers and": [0, 65535], "dro i when fowles haue no feathers and fish": [0, 65535], "i when fowles haue no feathers and fish haue": [0, 65535], "when fowles haue no feathers and fish haue no": [0, 65535], "fowles haue no feathers and fish haue no fin": [0, 65535], "haue no feathers and fish haue no fin ant": [0, 65535], "no feathers and fish haue no fin ant well": [0, 65535], "feathers and fish haue no fin ant well ile": [0, 65535], "and fish haue no fin ant well ile breake": [0, 65535], "fish haue no fin ant well ile breake in": [0, 65535], "haue no fin ant well ile breake in go": [0, 65535], "no fin ant well ile breake in go borrow": [0, 65535], "fin ant well ile breake in go borrow me": [0, 65535], "ant well ile breake in go borrow me a": [0, 65535], "well ile breake in go borrow me a crow": [0, 65535], "ile breake in go borrow me a crow e": [0, 65535], "breake in go borrow me a crow e dro": [0, 65535], "in go borrow me a crow e dro a": [0, 65535], "go borrow me a crow e dro a crow": [0, 65535], "borrow me a crow e dro a crow without": [0, 65535], "me a crow e dro a crow without feather": [0, 65535], "a crow e dro a crow without feather master": [0, 65535], "crow e dro a crow without feather master meane": [0, 65535], "e dro a crow without feather master meane you": [0, 65535], "dro a crow without feather master meane you so": [0, 65535], "a crow without feather master meane you so for": [0, 65535], "crow without feather master meane you so for a": [0, 65535], "without feather master meane you so for a fish": [0, 65535], "feather master meane you so for a fish without": [0, 65535], "master meane you so for a fish without a": [0, 65535], "meane you so for a fish without a finne": [0, 65535], "you so for a fish without a finne ther's": [0, 65535], "so for a fish without a finne ther's a": [0, 65535], "for a fish without a finne ther's a fowle": [0, 65535], "a fish without a finne ther's a fowle without": [0, 65535], "fish without a finne ther's a fowle without a": [0, 65535], "without a finne ther's a fowle without a fether": [0, 65535], "a finne ther's a fowle without a fether if": [0, 65535], "finne ther's a fowle without a fether if a": [0, 65535], "ther's a fowle without a fether if a crow": [0, 65535], "a fowle without a fether if a crow help": [0, 65535], "fowle without a fether if a crow help vs": [0, 65535], "without a fether if a crow help vs in": [0, 65535], "a fether if a crow help vs in sirra": [0, 65535], "fether if a crow help vs in sirra wee'll": [0, 65535], "if a crow help vs in sirra wee'll plucke": [0, 65535], "a crow help vs in sirra wee'll plucke a": [0, 65535], "crow help vs in sirra wee'll plucke a crow": [0, 65535], "help vs in sirra wee'll plucke a crow together": [0, 65535], "vs in sirra wee'll plucke a crow together ant": [0, 65535], "in sirra wee'll plucke a crow together ant go": [0, 65535], "sirra wee'll plucke a crow together ant go get": [0, 65535], "wee'll plucke a crow together ant go get thee": [0, 65535], "plucke a crow together ant go get thee gon": [0, 65535], "a crow together ant go get thee gon fetch": [0, 65535], "crow together ant go get thee gon fetch me": [0, 65535], "together ant go get thee gon fetch me an": [0, 65535], "ant go get thee gon fetch me an iron": [0, 65535], "go get thee gon fetch me an iron crow": [0, 65535], "get thee gon fetch me an iron crow balth": [0, 65535], "thee gon fetch me an iron crow balth haue": [0, 65535], "gon fetch me an iron crow balth haue patience": [0, 65535], "fetch me an iron crow balth haue patience sir": [0, 65535], "me an iron crow balth haue patience sir oh": [0, 65535], "an iron crow balth haue patience sir oh let": [0, 65535], "iron crow balth haue patience sir oh let it": [0, 65535], "crow balth haue patience sir oh let it not": [0, 65535], "balth haue patience sir oh let it not be": [0, 65535], "haue patience sir oh let it not be so": [0, 65535], "patience sir oh let it not be so heerein": [0, 65535], "sir oh let it not be so heerein you": [0, 65535], "oh let it not be so heerein you warre": [0, 65535], "let it not be so heerein you warre against": [0, 65535], "it not be so heerein you warre against your": [0, 65535], "not be so heerein you warre against your reputation": [0, 65535], "be so heerein you warre against your reputation and": [0, 65535], "so heerein you warre against your reputation and draw": [0, 65535], "heerein you warre against your reputation and draw within": [0, 65535], "you warre against your reputation and draw within the": [0, 65535], "warre against your reputation and draw within the compasse": [0, 65535], "against your reputation and draw within the compasse of": [0, 65535], "your reputation and draw within the compasse of suspect": [0, 65535], "reputation and draw within the compasse of suspect th'": [0, 65535], "and draw within the compasse of suspect th' vnuiolated": [0, 65535], "draw within the compasse of suspect th' vnuiolated honor": [0, 65535], "within the compasse of suspect th' vnuiolated honor of": [0, 65535], "the compasse of suspect th' vnuiolated honor of your": [0, 65535], "compasse of suspect th' vnuiolated honor of your wife": [0, 65535], "of suspect th' vnuiolated honor of your wife once": [0, 65535], "suspect th' vnuiolated honor of your wife once this": [0, 65535], "th' vnuiolated honor of your wife once this your": [0, 65535], "vnuiolated honor of your wife once this your long": [0, 65535], "honor of your wife once this your long experience": [0, 65535], "of your wife once this your long experience of": [0, 65535], "your wife once this your long experience of your": [0, 65535], "wife once this your long experience of your wisedome": [0, 65535], "once this your long experience of your wisedome her": [0, 65535], "this your long experience of your wisedome her sober": [0, 65535], "your long experience of your wisedome her sober vertue": [0, 65535], "long experience of your wisedome her sober vertue yeares": [0, 65535], "experience of your wisedome her sober vertue yeares and": [0, 65535], "of your wisedome her sober vertue yeares and modestie": [0, 65535], "your wisedome her sober vertue yeares and modestie plead": [0, 65535], "wisedome her sober vertue yeares and modestie plead on": [0, 65535], "her sober vertue yeares and modestie plead on your": [0, 65535], "sober vertue yeares and modestie plead on your part": [0, 65535], "vertue yeares and modestie plead on your part some": [0, 65535], "yeares and modestie plead on your part some cause": [0, 65535], "and modestie plead on your part some cause to": [0, 65535], "modestie plead on your part some cause to you": [0, 65535], "plead on your part some cause to you vnknowne": [0, 65535], "on your part some cause to you vnknowne and": [0, 65535], "your part some cause to you vnknowne and doubt": [0, 65535], "part some cause to you vnknowne and doubt not": [0, 65535], "some cause to you vnknowne and doubt not sir": [0, 65535], "cause to you vnknowne and doubt not sir but": [0, 65535], "to you vnknowne and doubt not sir but she": [0, 65535], "you vnknowne and doubt not sir but she will": [0, 65535], "vnknowne and doubt not sir but she will well": [0, 65535], "and doubt not sir but she will well excuse": [0, 65535], "doubt not sir but she will well excuse why": [0, 65535], "not sir but she will well excuse why at": [0, 65535], "sir but she will well excuse why at this": [0, 65535], "but she will well excuse why at this time": [0, 65535], "she will well excuse why at this time the": [0, 65535], "will well excuse why at this time the dores": [0, 65535], "well excuse why at this time the dores are": [0, 65535], "excuse why at this time the dores are made": [0, 65535], "why at this time the dores are made against": [0, 65535], "at this time the dores are made against you": [0, 65535], "this time the dores are made against you be": [0, 65535], "time the dores are made against you be rul'd": [0, 65535], "the dores are made against you be rul'd by": [0, 65535], "dores are made against you be rul'd by me": [0, 65535], "are made against you be rul'd by me depart": [0, 65535], "made against you be rul'd by me depart in": [0, 65535], "against you be rul'd by me depart in patience": [0, 65535], "you be rul'd by me depart in patience and": [0, 65535], "be rul'd by me depart in patience and let": [0, 65535], "rul'd by me depart in patience and let vs": [0, 65535], "by me depart in patience and let vs to": [0, 65535], "me depart in patience and let vs to the": [0, 65535], "depart in patience and let vs to the tyger": [0, 65535], "in patience and let vs to the tyger all": [0, 65535], "patience and let vs to the tyger all to": [0, 65535], "and let vs to the tyger all to dinner": [0, 65535], "let vs to the tyger all to dinner and": [0, 65535], "vs to the tyger all to dinner and about": [0, 65535], "to the tyger all to dinner and about euening": [0, 65535], "the tyger all to dinner and about euening come": [0, 65535], "tyger all to dinner and about euening come your": [0, 65535], "all to dinner and about euening come your selfe": [0, 65535], "to dinner and about euening come your selfe alone": [0, 65535], "dinner and about euening come your selfe alone to": [0, 65535], "and about euening come your selfe alone to know": [0, 65535], "about euening come your selfe alone to know the": [0, 65535], "euening come your selfe alone to know the reason": [0, 65535], "come your selfe alone to know the reason of": [0, 65535], "your selfe alone to know the reason of this": [0, 65535], "selfe alone to know the reason of this strange": [0, 65535], "alone to know the reason of this strange restraint": [0, 65535], "to know the reason of this strange restraint if": [0, 65535], "know the reason of this strange restraint if by": [0, 65535], "the reason of this strange restraint if by strong": [0, 65535], "reason of this strange restraint if by strong hand": [0, 65535], "of this strange restraint if by strong hand you": [0, 65535], "this strange restraint if by strong hand you offer": [0, 65535], "strange restraint if by strong hand you offer to": [0, 65535], "restraint if by strong hand you offer to breake": [0, 65535], "if by strong hand you offer to breake in": [0, 65535], "by strong hand you offer to breake in now": [0, 65535], "strong hand you offer to breake in now in": [0, 65535], "hand you offer to breake in now in the": [0, 65535], "you offer to breake in now in the stirring": [0, 65535], "offer to breake in now in the stirring passage": [0, 65535], "to breake in now in the stirring passage of": [0, 65535], "breake in now in the stirring passage of the": [0, 65535], "in now in the stirring passage of the day": [0, 65535], "now in the stirring passage of the day a": [0, 65535], "in the stirring passage of the day a vulgar": [0, 65535], "the stirring passage of the day a vulgar comment": [0, 65535], "stirring passage of the day a vulgar comment will": [0, 65535], "passage of the day a vulgar comment will be": [0, 65535], "of the day a vulgar comment will be made": [0, 65535], "the day a vulgar comment will be made of": [0, 65535], "day a vulgar comment will be made of it": [0, 65535], "a vulgar comment will be made of it and": [0, 65535], "vulgar comment will be made of it and that": [0, 65535], "comment will be made of it and that supposed": [0, 65535], "will be made of it and that supposed by": [0, 65535], "be made of it and that supposed by the": [0, 65535], "made of it and that supposed by the common": [0, 65535], "of it and that supposed by the common rowt": [0, 65535], "it and that supposed by the common rowt against": [0, 65535], "and that supposed by the common rowt against your": [0, 65535], "that supposed by the common rowt against your yet": [0, 65535], "supposed by the common rowt against your yet vngalled": [0, 65535], "by the common rowt against your yet vngalled estimation": [0, 65535], "the common rowt against your yet vngalled estimation that": [0, 65535], "common rowt against your yet vngalled estimation that may": [0, 65535], "rowt against your yet vngalled estimation that may with": [0, 65535], "against your yet vngalled estimation that may with foule": [0, 65535], "your yet vngalled estimation that may with foule intrusion": [0, 65535], "yet vngalled estimation that may with foule intrusion enter": [0, 65535], "vngalled estimation that may with foule intrusion enter in": [0, 65535], "estimation that may with foule intrusion enter in and": [0, 65535], "that may with foule intrusion enter in and dwell": [0, 65535], "may with foule intrusion enter in and dwell vpon": [0, 65535], "with foule intrusion enter in and dwell vpon your": [0, 65535], "foule intrusion enter in and dwell vpon your graue": [0, 65535], "intrusion enter in and dwell vpon your graue when": [0, 65535], "enter in and dwell vpon your graue when you": [0, 65535], "in and dwell vpon your graue when you are": [0, 65535], "and dwell vpon your graue when you are dead": [0, 65535], "dwell vpon your graue when you are dead for": [0, 65535], "vpon your graue when you are dead for slander": [0, 65535], "your graue when you are dead for slander liues": [0, 65535], "graue when you are dead for slander liues vpon": [0, 65535], "when you are dead for slander liues vpon succession": [0, 65535], "you are dead for slander liues vpon succession for": [0, 65535], "are dead for slander liues vpon succession for euer": [0, 65535], "dead for slander liues vpon succession for euer hows'd": [0, 65535], "for slander liues vpon succession for euer hows'd where": [0, 65535], "slander liues vpon succession for euer hows'd where it": [0, 65535], "liues vpon succession for euer hows'd where it gets": [0, 65535], "vpon succession for euer hows'd where it gets possession": [0, 65535], "succession for euer hows'd where it gets possession anti": [0, 65535], "for euer hows'd where it gets possession anti you": [0, 65535], "euer hows'd where it gets possession anti you haue": [0, 65535], "hows'd where it gets possession anti you haue preuail'd": [0, 65535], "where it gets possession anti you haue preuail'd i": [0, 65535], "it gets possession anti you haue preuail'd i will": [0, 65535], "gets possession anti you haue preuail'd i will depart": [0, 65535], "possession anti you haue preuail'd i will depart in": [0, 65535], "anti you haue preuail'd i will depart in quiet": [0, 65535], "you haue preuail'd i will depart in quiet and": [0, 65535], "haue preuail'd i will depart in quiet and in": [0, 65535], "preuail'd i will depart in quiet and in despight": [0, 65535], "i will depart in quiet and in despight of": [0, 65535], "will depart in quiet and in despight of mirth": [0, 65535], "depart in quiet and in despight of mirth meane": [0, 65535], "in quiet and in despight of mirth meane to": [0, 65535], "quiet and in despight of mirth meane to be": [0, 65535], "and in despight of mirth meane to be merrie": [0, 65535], "in despight of mirth meane to be merrie i": [0, 65535], "despight of mirth meane to be merrie i know": [0, 65535], "of mirth meane to be merrie i know a": [0, 65535], "mirth meane to be merrie i know a wench": [0, 65535], "meane to be merrie i know a wench of": [0, 65535], "to be merrie i know a wench of excellent": [0, 65535], "be merrie i know a wench of excellent discourse": [0, 65535], "merrie i know a wench of excellent discourse prettie": [0, 65535], "i know a wench of excellent discourse prettie and": [0, 65535], "know a wench of excellent discourse prettie and wittie": [0, 65535], "a wench of excellent discourse prettie and wittie wilde": [0, 65535], "wench of excellent discourse prettie and wittie wilde and": [0, 65535], "of excellent discourse prettie and wittie wilde and yet": [0, 65535], "excellent discourse prettie and wittie wilde and yet too": [0, 65535], "discourse prettie and wittie wilde and yet too gentle": [0, 65535], "prettie and wittie wilde and yet too gentle there": [0, 65535], "and wittie wilde and yet too gentle there will": [0, 65535], "wittie wilde and yet too gentle there will we": [0, 65535], "wilde and yet too gentle there will we dine": [0, 65535], "and yet too gentle there will we dine this": [0, 65535], "yet too gentle there will we dine this woman": [0, 65535], "too gentle there will we dine this woman that": [0, 65535], "gentle there will we dine this woman that i": [0, 65535], "there will we dine this woman that i meane": [0, 65535], "will we dine this woman that i meane my": [0, 65535], "we dine this woman that i meane my wife": [0, 65535], "dine this woman that i meane my wife but": [0, 65535], "this woman that i meane my wife but i": [0, 65535], "woman that i meane my wife but i protest": [0, 65535], "that i meane my wife but i protest without": [0, 65535], "i meane my wife but i protest without desert": [0, 65535], "meane my wife but i protest without desert hath": [0, 65535], "my wife but i protest without desert hath oftentimes": [0, 65535], "wife but i protest without desert hath oftentimes vpbraided": [0, 65535], "but i protest without desert hath oftentimes vpbraided me": [0, 65535], "i protest without desert hath oftentimes vpbraided me withall": [0, 65535], "protest without desert hath oftentimes vpbraided me withall to": [0, 65535], "without desert hath oftentimes vpbraided me withall to her": [0, 65535], "desert hath oftentimes vpbraided me withall to her will": [0, 65535], "hath oftentimes vpbraided me withall to her will we": [0, 65535], "oftentimes vpbraided me withall to her will we to": [0, 65535], "vpbraided me withall to her will we to dinner": [0, 65535], "me withall to her will we to dinner get": [0, 65535], "withall to her will we to dinner get you": [0, 65535], "to her will we to dinner get you home": [0, 65535], "her will we to dinner get you home and": [0, 65535], "will we to dinner get you home and fetch": [0, 65535], "we to dinner get you home and fetch the": [0, 65535], "to dinner get you home and fetch the chaine": [0, 65535], "dinner get you home and fetch the chaine by": [0, 65535], "get you home and fetch the chaine by this": [0, 65535], "you home and fetch the chaine by this i": [0, 65535], "home and fetch the chaine by this i know": [0, 65535], "and fetch the chaine by this i know 'tis": [0, 65535], "fetch the chaine by this i know 'tis made": [0, 65535], "the chaine by this i know 'tis made bring": [0, 65535], "chaine by this i know 'tis made bring it": [0, 65535], "by this i know 'tis made bring it i": [0, 65535], "this i know 'tis made bring it i pray": [0, 65535], "i know 'tis made bring it i pray you": [0, 65535], "know 'tis made bring it i pray you to": [0, 65535], "'tis made bring it i pray you to the": [0, 65535], "made bring it i pray you to the porpentine": [0, 65535], "bring it i pray you to the porpentine for": [0, 65535], "it i pray you to the porpentine for there's": [0, 65535], "i pray you to the porpentine for there's the": [0, 65535], "pray you to the porpentine for there's the house": [0, 65535], "you to the porpentine for there's the house that": [0, 65535], "to the porpentine for there's the house that chaine": [0, 65535], "the porpentine for there's the house that chaine will": [0, 65535], "porpentine for there's the house that chaine will i": [0, 65535], "for there's the house that chaine will i bestow": [0, 65535], "there's the house that chaine will i bestow be": [0, 65535], "the house that chaine will i bestow be it": [0, 65535], "house that chaine will i bestow be it for": [0, 65535], "that chaine will i bestow be it for nothing": [0, 65535], "chaine will i bestow be it for nothing but": [0, 65535], "will i bestow be it for nothing but to": [0, 65535], "i bestow be it for nothing but to spight": [0, 65535], "bestow be it for nothing but to spight my": [0, 65535], "be it for nothing but to spight my wife": [0, 65535], "it for nothing but to spight my wife vpon": [0, 65535], "for nothing but to spight my wife vpon mine": [0, 65535], "nothing but to spight my wife vpon mine hostesse": [0, 65535], "but to spight my wife vpon mine hostesse there": [0, 65535], "to spight my wife vpon mine hostesse there good": [0, 65535], "spight my wife vpon mine hostesse there good sir": [0, 65535], "my wife vpon mine hostesse there good sir make": [0, 65535], "wife vpon mine hostesse there good sir make haste": [0, 65535], "vpon mine hostesse there good sir make haste since": [0, 65535], "mine hostesse there good sir make haste since mine": [0, 65535], "hostesse there good sir make haste since mine owne": [0, 65535], "there good sir make haste since mine owne doores": [0, 65535], "good sir make haste since mine owne doores refuse": [0, 65535], "sir make haste since mine owne doores refuse to": [0, 65535], "make haste since mine owne doores refuse to entertaine": [0, 65535], "haste since mine owne doores refuse to entertaine me": [0, 65535], "since mine owne doores refuse to entertaine me ile": [0, 65535], "mine owne doores refuse to entertaine me ile knocke": [0, 65535], "owne doores refuse to entertaine me ile knocke else": [0, 65535], "doores refuse to entertaine me ile knocke else where": [0, 65535], "refuse to entertaine me ile knocke else where to": [0, 65535], "to entertaine me ile knocke else where to see": [0, 65535], "entertaine me ile knocke else where to see if": [0, 65535], "me ile knocke else where to see if they'll": [0, 65535], "ile knocke else where to see if they'll disdaine": [0, 65535], "knocke else where to see if they'll disdaine me": [0, 65535], "else where to see if they'll disdaine me ang": [0, 65535], "where to see if they'll disdaine me ang ile": [0, 65535], "to see if they'll disdaine me ang ile meet": [0, 65535], "see if they'll disdaine me ang ile meet you": [0, 65535], "if they'll disdaine me ang ile meet you at": [0, 65535], "they'll disdaine me ang ile meet you at that": [0, 65535], "disdaine me ang ile meet you at that place": [0, 65535], "me ang ile meet you at that place some": [0, 65535], "ang ile meet you at that place some houre": [0, 65535], "ile meet you at that place some houre hence": [0, 65535], "meet you at that place some houre hence anti": [0, 65535], "you at that place some houre hence anti do": [0, 65535], "at that place some houre hence anti do so": [0, 65535], "that place some houre hence anti do so this": [0, 65535], "place some houre hence anti do so this iest": [0, 65535], "some houre hence anti do so this iest shall": [0, 65535], "houre hence anti do so this iest shall cost": [0, 65535], "hence anti do so this iest shall cost me": [0, 65535], "anti do so this iest shall cost me some": [0, 65535], "do so this iest shall cost me some expence": [0, 65535], "so this iest shall cost me some expence exeunt": [0, 65535], "this iest shall cost me some expence exeunt enter": [0, 65535], "iest shall cost me some expence exeunt enter iuliana": [0, 65535], "shall cost me some expence exeunt enter iuliana with": [0, 65535], "cost me some expence exeunt enter iuliana with antipholus": [0, 65535], "me some expence exeunt enter iuliana with antipholus of": [0, 65535], "some expence exeunt enter iuliana with antipholus of siracusia": [0, 65535], "expence exeunt enter iuliana with antipholus of siracusia iulia": [0, 65535], "exeunt enter iuliana with antipholus of siracusia iulia and": [0, 65535], "enter iuliana with antipholus of siracusia iulia and may": [0, 65535], "iuliana with antipholus of siracusia iulia and may it": [0, 65535], "with antipholus of siracusia iulia and may it be": [0, 65535], "antipholus of siracusia iulia and may it be that": [0, 65535], "of siracusia iulia and may it be that you": [0, 65535], "siracusia iulia and may it be that you haue": [0, 65535], "iulia and may it be that you haue quite": [0, 65535], "and may it be that you haue quite forgot": [0, 65535], "may it be that you haue quite forgot a": [0, 65535], "it be that you haue quite forgot a husbands": [0, 65535], "be that you haue quite forgot a husbands office": [0, 65535], "that you haue quite forgot a husbands office shall": [0, 65535], "you haue quite forgot a husbands office shall antipholus": [0, 65535], "haue quite forgot a husbands office shall antipholus euen": [0, 65535], "quite forgot a husbands office shall antipholus euen in": [0, 65535], "forgot a husbands office shall antipholus euen in the": [0, 65535], "a husbands office shall antipholus euen in the spring": [0, 65535], "husbands office shall antipholus euen in the spring of": [0, 65535], "office shall antipholus euen in the spring of loue": [0, 65535], "shall antipholus euen in the spring of loue thy": [0, 65535], "antipholus euen in the spring of loue thy loue": [0, 65535], "euen in the spring of loue thy loue springs": [0, 65535], "in the spring of loue thy loue springs rot": [0, 65535], "the spring of loue thy loue springs rot shall": [0, 65535], "spring of loue thy loue springs rot shall loue": [0, 65535], "of loue thy loue springs rot shall loue in": [0, 65535], "loue thy loue springs rot shall loue in buildings": [0, 65535], "thy loue springs rot shall loue in buildings grow": [0, 65535], "loue springs rot shall loue in buildings grow so": [0, 65535], "springs rot shall loue in buildings grow so ruinate": [0, 65535], "rot shall loue in buildings grow so ruinate if": [0, 65535], "shall loue in buildings grow so ruinate if you": [0, 65535], "loue in buildings grow so ruinate if you did": [0, 65535], "in buildings grow so ruinate if you did wed": [0, 65535], "buildings grow so ruinate if you did wed my": [0, 65535], "grow so ruinate if you did wed my sister": [0, 65535], "so ruinate if you did wed my sister for": [0, 65535], "ruinate if you did wed my sister for her": [0, 65535], "if you did wed my sister for her wealth": [0, 65535], "you did wed my sister for her wealth then": [0, 65535], "did wed my sister for her wealth then for": [0, 65535], "wed my sister for her wealth then for her": [0, 65535], "my sister for her wealth then for her wealths": [0, 65535], "sister for her wealth then for her wealths sake": [0, 65535], "for her wealth then for her wealths sake vse": [0, 65535], "her wealth then for her wealths sake vse her": [0, 65535], "wealth then for her wealths sake vse her with": [0, 65535], "then for her wealths sake vse her with more": [0, 65535], "for her wealths sake vse her with more kindnesse": [0, 65535], "her wealths sake vse her with more kindnesse or": [0, 65535], "wealths sake vse her with more kindnesse or if": [0, 65535], "sake vse her with more kindnesse or if you": [0, 65535], "vse her with more kindnesse or if you like": [0, 65535], "her with more kindnesse or if you like else": [0, 65535], "with more kindnesse or if you like else where": [0, 65535], "more kindnesse or if you like else where doe": [0, 65535], "kindnesse or if you like else where doe it": [0, 65535], "or if you like else where doe it by": [0, 65535], "if you like else where doe it by stealth": [0, 65535], "you like else where doe it by stealth muffle": [0, 65535], "like else where doe it by stealth muffle your": [0, 65535], "else where doe it by stealth muffle your false": [0, 65535], "where doe it by stealth muffle your false loue": [0, 65535], "doe it by stealth muffle your false loue with": [0, 65535], "it by stealth muffle your false loue with some": [0, 65535], "by stealth muffle your false loue with some shew": [0, 65535], "stealth muffle your false loue with some shew of": [0, 65535], "muffle your false loue with some shew of blindnesse": [0, 65535], "your false loue with some shew of blindnesse let": [0, 65535], "false loue with some shew of blindnesse let not": [0, 65535], "loue with some shew of blindnesse let not my": [0, 65535], "with some shew of blindnesse let not my sister": [0, 65535], "some shew of blindnesse let not my sister read": [0, 65535], "shew of blindnesse let not my sister read it": [0, 65535], "of blindnesse let not my sister read it in": [0, 65535], "blindnesse let not my sister read it in your": [0, 65535], "let not my sister read it in your eye": [0, 65535], "not my sister read it in your eye be": [0, 65535], "my sister read it in your eye be not": [0, 65535], "sister read it in your eye be not thy": [0, 65535], "read it in your eye be not thy tongue": [0, 65535], "it in your eye be not thy tongue thy": [0, 65535], "in your eye be not thy tongue thy owne": [0, 65535], "your eye be not thy tongue thy owne shames": [0, 65535], "eye be not thy tongue thy owne shames orator": [0, 65535], "be not thy tongue thy owne shames orator looke": [0, 65535], "not thy tongue thy owne shames orator looke sweet": [0, 65535], "thy tongue thy owne shames orator looke sweet speake": [0, 65535], "tongue thy owne shames orator looke sweet speake faire": [0, 65535], "thy owne shames orator looke sweet speake faire become": [0, 65535], "owne shames orator looke sweet speake faire become disloyaltie": [0, 65535], "shames orator looke sweet speake faire become disloyaltie apparell": [0, 65535], "orator looke sweet speake faire become disloyaltie apparell vice": [0, 65535], "looke sweet speake faire become disloyaltie apparell vice like": [0, 65535], "sweet speake faire become disloyaltie apparell vice like vertues": [0, 65535], "speake faire become disloyaltie apparell vice like vertues harbenger": [0, 65535], "faire become disloyaltie apparell vice like vertues harbenger beare": [0, 65535], "become disloyaltie apparell vice like vertues harbenger beare a": [0, 65535], "disloyaltie apparell vice like vertues harbenger beare a faire": [0, 65535], "apparell vice like vertues harbenger beare a faire presence": [0, 65535], "vice like vertues harbenger beare a faire presence though": [0, 65535], "like vertues harbenger beare a faire presence though your": [0, 65535], "vertues harbenger beare a faire presence though your heart": [0, 65535], "harbenger beare a faire presence though your heart be": [0, 65535], "beare a faire presence though your heart be tainted": [0, 65535], "a faire presence though your heart be tainted teach": [0, 65535], "faire presence though your heart be tainted teach sinne": [0, 65535], "presence though your heart be tainted teach sinne the": [0, 65535], "though your heart be tainted teach sinne the carriage": [0, 65535], "your heart be tainted teach sinne the carriage of": [0, 65535], "heart be tainted teach sinne the carriage of a": [0, 65535], "be tainted teach sinne the carriage of a holy": [0, 65535], "tainted teach sinne the carriage of a holy saint": [0, 65535], "teach sinne the carriage of a holy saint be": [0, 65535], "sinne the carriage of a holy saint be secret": [0, 65535], "the carriage of a holy saint be secret false": [0, 65535], "carriage of a holy saint be secret false what": [0, 65535], "of a holy saint be secret false what need": [0, 65535], "a holy saint be secret false what need she": [0, 65535], "holy saint be secret false what need she be": [0, 65535], "saint be secret false what need she be acquainted": [0, 65535], "be secret false what need she be acquainted what": [0, 65535], "secret false what need she be acquainted what simple": [0, 65535], "false what need she be acquainted what simple thiefe": [0, 65535], "what need she be acquainted what simple thiefe brags": [0, 65535], "need she be acquainted what simple thiefe brags of": [0, 65535], "she be acquainted what simple thiefe brags of his": [0, 65535], "be acquainted what simple thiefe brags of his owne": [0, 65535], "acquainted what simple thiefe brags of his owne attaine": [0, 65535], "what simple thiefe brags of his owne attaine 'tis": [0, 65535], "simple thiefe brags of his owne attaine 'tis double": [0, 65535], "thiefe brags of his owne attaine 'tis double wrong": [0, 65535], "brags of his owne attaine 'tis double wrong to": [0, 65535], "of his owne attaine 'tis double wrong to truant": [0, 65535], "his owne attaine 'tis double wrong to truant with": [0, 65535], "owne attaine 'tis double wrong to truant with your": [0, 65535], "attaine 'tis double wrong to truant with your bed": [0, 65535], "'tis double wrong to truant with your bed and": [0, 65535], "double wrong to truant with your bed and let": [0, 65535], "wrong to truant with your bed and let her": [0, 65535], "to truant with your bed and let her read": [0, 65535], "truant with your bed and let her read it": [0, 65535], "with your bed and let her read it in": [0, 65535], "your bed and let her read it in thy": [0, 65535], "bed and let her read it in thy lookes": [0, 65535], "and let her read it in thy lookes at": [0, 65535], "let her read it in thy lookes at boord": [0, 65535], "her read it in thy lookes at boord shame": [0, 65535], "read it in thy lookes at boord shame hath": [0, 65535], "it in thy lookes at boord shame hath a": [0, 65535], "in thy lookes at boord shame hath a bastard": [0, 65535], "thy lookes at boord shame hath a bastard fame": [0, 65535], "lookes at boord shame hath a bastard fame well": [0, 65535], "at boord shame hath a bastard fame well managed": [0, 65535], "boord shame hath a bastard fame well managed ill": [0, 65535], "shame hath a bastard fame well managed ill deeds": [0, 65535], "hath a bastard fame well managed ill deeds is": [0, 65535], "a bastard fame well managed ill deeds is doubled": [0, 65535], "bastard fame well managed ill deeds is doubled with": [0, 65535], "fame well managed ill deeds is doubled with an": [0, 65535], "well managed ill deeds is doubled with an euill": [0, 65535], "managed ill deeds is doubled with an euill word": [0, 65535], "ill deeds is doubled with an euill word alas": [0, 65535], "deeds is doubled with an euill word alas poore": [0, 65535], "is doubled with an euill word alas poore women": [0, 65535], "doubled with an euill word alas poore women make": [0, 65535], "with an euill word alas poore women make vs": [0, 65535], "an euill word alas poore women make vs not": [0, 65535], "euill word alas poore women make vs not beleeue": [0, 65535], "word alas poore women make vs not beleeue being": [0, 65535], "alas poore women make vs not beleeue being compact": [0, 65535], "poore women make vs not beleeue being compact of": [0, 65535], "women make vs not beleeue being compact of credit": [0, 65535], "make vs not beleeue being compact of credit that": [0, 65535], "vs not beleeue being compact of credit that you": [0, 65535], "not beleeue being compact of credit that you loue": [0, 65535], "beleeue being compact of credit that you loue vs": [0, 65535], "being compact of credit that you loue vs though": [0, 65535], "compact of credit that you loue vs though others": [0, 65535], "of credit that you loue vs though others haue": [0, 65535], "credit that you loue vs though others haue the": [0, 65535], "that you loue vs though others haue the arme": [0, 65535], "you loue vs though others haue the arme shew": [0, 65535], "loue vs though others haue the arme shew vs": [0, 65535], "vs though others haue the arme shew vs the": [0, 65535], "though others haue the arme shew vs the sleeue": [0, 65535], "others haue the arme shew vs the sleeue we": [0, 65535], "haue the arme shew vs the sleeue we in": [0, 65535], "the arme shew vs the sleeue we in your": [0, 65535], "arme shew vs the sleeue we in your motion": [0, 65535], "shew vs the sleeue we in your motion turne": [0, 65535], "vs the sleeue we in your motion turne and": [0, 65535], "the sleeue we in your motion turne and you": [0, 65535], "sleeue we in your motion turne and you may": [0, 65535], "we in your motion turne and you may moue": [0, 65535], "in your motion turne and you may moue vs": [0, 65535], "your motion turne and you may moue vs then": [0, 65535], "motion turne and you may moue vs then gentle": [0, 65535], "turne and you may moue vs then gentle brother": [0, 65535], "and you may moue vs then gentle brother get": [0, 65535], "you may moue vs then gentle brother get you": [0, 65535], "may moue vs then gentle brother get you in": [0, 65535], "moue vs then gentle brother get you in againe": [0, 65535], "vs then gentle brother get you in againe comfort": [0, 65535], "then gentle brother get you in againe comfort my": [0, 65535], "gentle brother get you in againe comfort my sister": [0, 65535], "brother get you in againe comfort my sister cheere": [0, 65535], "get you in againe comfort my sister cheere her": [0, 65535], "you in againe comfort my sister cheere her call": [0, 65535], "in againe comfort my sister cheere her call her": [0, 65535], "againe comfort my sister cheere her call her wise": [0, 65535], "comfort my sister cheere her call her wise 'tis": [0, 65535], "my sister cheere her call her wise 'tis holy": [0, 65535], "sister cheere her call her wise 'tis holy sport": [0, 65535], "cheere her call her wise 'tis holy sport to": [0, 65535], "her call her wise 'tis holy sport to be": [0, 65535], "call her wise 'tis holy sport to be a": [0, 65535], "her wise 'tis holy sport to be a little": [0, 65535], "wise 'tis holy sport to be a little vaine": [0, 65535], "'tis holy sport to be a little vaine when": [0, 65535], "holy sport to be a little vaine when the": [0, 65535], "sport to be a little vaine when the sweet": [0, 65535], "to be a little vaine when the sweet breath": [0, 65535], "be a little vaine when the sweet breath of": [0, 65535], "a little vaine when the sweet breath of flatterie": [0, 65535], "little vaine when the sweet breath of flatterie conquers": [0, 65535], "vaine when the sweet breath of flatterie conquers strife": [0, 65535], "when the sweet breath of flatterie conquers strife s": [0, 65535], "the sweet breath of flatterie conquers strife s anti": [0, 65535], "sweet breath of flatterie conquers strife s anti sweete": [0, 65535], "breath of flatterie conquers strife s anti sweete mistris": [0, 65535], "of flatterie conquers strife s anti sweete mistris what": [0, 65535], "flatterie conquers strife s anti sweete mistris what your": [0, 65535], "conquers strife s anti sweete mistris what your name": [0, 65535], "strife s anti sweete mistris what your name is": [0, 65535], "s anti sweete mistris what your name is else": [0, 65535], "anti sweete mistris what your name is else i": [0, 65535], "sweete mistris what your name is else i know": [0, 65535], "mistris what your name is else i know not": [0, 65535], "what your name is else i know not nor": [0, 65535], "your name is else i know not nor by": [0, 65535], "name is else i know not nor by what": [0, 65535], "is else i know not nor by what wonder": [0, 65535], "else i know not nor by what wonder you": [0, 65535], "i know not nor by what wonder you do": [0, 65535], "know not nor by what wonder you do hit": [0, 65535], "not nor by what wonder you do hit of": [0, 65535], "nor by what wonder you do hit of mine": [0, 65535], "by what wonder you do hit of mine lesse": [0, 65535], "what wonder you do hit of mine lesse in": [0, 65535], "wonder you do hit of mine lesse in your": [0, 65535], "you do hit of mine lesse in your knowledge": [0, 65535], "do hit of mine lesse in your knowledge and": [0, 65535], "hit of mine lesse in your knowledge and your": [0, 65535], "of mine lesse in your knowledge and your grace": [0, 65535], "mine lesse in your knowledge and your grace you": [0, 65535], "lesse in your knowledge and your grace you show": [0, 65535], "in your knowledge and your grace you show not": [0, 65535], "your knowledge and your grace you show not then": [0, 65535], "knowledge and your grace you show not then our": [0, 65535], "and your grace you show not then our earths": [0, 65535], "your grace you show not then our earths wonder": [0, 65535], "grace you show not then our earths wonder more": [0, 65535], "you show not then our earths wonder more then": [0, 65535], "show not then our earths wonder more then earth": [0, 65535], "not then our earths wonder more then earth diuine": [0, 65535], "then our earths wonder more then earth diuine teach": [0, 65535], "our earths wonder more then earth diuine teach me": [0, 65535], "earths wonder more then earth diuine teach me deere": [0, 65535], "wonder more then earth diuine teach me deere creature": [0, 65535], "more then earth diuine teach me deere creature how": [0, 65535], "then earth diuine teach me deere creature how to": [0, 65535], "earth diuine teach me deere creature how to thinke": [0, 65535], "diuine teach me deere creature how to thinke and": [0, 65535], "teach me deere creature how to thinke and speake": [0, 65535], "me deere creature how to thinke and speake lay": [0, 65535], "deere creature how to thinke and speake lay open": [0, 65535], "creature how to thinke and speake lay open to": [0, 65535], "how to thinke and speake lay open to my": [0, 65535], "to thinke and speake lay open to my earthie": [0, 65535], "thinke and speake lay open to my earthie grosse": [0, 65535], "and speake lay open to my earthie grosse conceit": [0, 65535], "speake lay open to my earthie grosse conceit smothred": [0, 65535], "lay open to my earthie grosse conceit smothred in": [0, 65535], "open to my earthie grosse conceit smothred in errors": [0, 65535], "to my earthie grosse conceit smothred in errors feeble": [0, 65535], "my earthie grosse conceit smothred in errors feeble shallow": [0, 65535], "earthie grosse conceit smothred in errors feeble shallow weake": [0, 65535], "grosse conceit smothred in errors feeble shallow weake the": [0, 65535], "conceit smothred in errors feeble shallow weake the foulded": [0, 65535], "smothred in errors feeble shallow weake the foulded meaning": [0, 65535], "in errors feeble shallow weake the foulded meaning of": [0, 65535], "errors feeble shallow weake the foulded meaning of your": [0, 65535], "feeble shallow weake the foulded meaning of your words": [0, 65535], "shallow weake the foulded meaning of your words deceit": [0, 65535], "weake the foulded meaning of your words deceit against": [0, 65535], "the foulded meaning of your words deceit against my": [0, 65535], "foulded meaning of your words deceit against my soules": [0, 65535], "meaning of your words deceit against my soules pure": [0, 65535], "of your words deceit against my soules pure truth": [0, 65535], "your words deceit against my soules pure truth why": [0, 65535], "words deceit against my soules pure truth why labour": [0, 65535], "deceit against my soules pure truth why labour you": [0, 65535], "against my soules pure truth why labour you to": [0, 65535], "my soules pure truth why labour you to make": [0, 65535], "soules pure truth why labour you to make it": [0, 65535], "pure truth why labour you to make it wander": [0, 65535], "truth why labour you to make it wander in": [0, 65535], "why labour you to make it wander in an": [0, 65535], "labour you to make it wander in an vnknowne": [0, 65535], "you to make it wander in an vnknowne field": [0, 65535], "to make it wander in an vnknowne field are": [0, 65535], "make it wander in an vnknowne field are you": [0, 65535], "it wander in an vnknowne field are you a": [0, 65535], "wander in an vnknowne field are you a god": [0, 65535], "in an vnknowne field are you a god would": [0, 65535], "an vnknowne field are you a god would you": [0, 65535], "vnknowne field are you a god would you create": [0, 65535], "field are you a god would you create me": [0, 65535], "are you a god would you create me new": [0, 65535], "you a god would you create me new transforme": [0, 65535], "a god would you create me new transforme me": [0, 65535], "god would you create me new transforme me then": [0, 65535], "would you create me new transforme me then and": [0, 65535], "you create me new transforme me then and to": [0, 65535], "create me new transforme me then and to your": [0, 65535], "me new transforme me then and to your powre": [0, 65535], "new transforme me then and to your powre ile": [0, 65535], "transforme me then and to your powre ile yeeld": [0, 65535], "me then and to your powre ile yeeld but": [0, 65535], "then and to your powre ile yeeld but if": [0, 65535], "and to your powre ile yeeld but if that": [0, 65535], "to your powre ile yeeld but if that i": [0, 65535], "your powre ile yeeld but if that i am": [0, 65535], "powre ile yeeld but if that i am i": [0, 65535], "ile yeeld but if that i am i then": [0, 65535], "yeeld but if that i am i then well": [0, 65535], "but if that i am i then well i": [0, 65535], "if that i am i then well i know": [0, 65535], "that i am i then well i know your": [0, 65535], "i am i then well i know your weeping": [0, 65535], "am i then well i know your weeping sister": [0, 65535], "i then well i know your weeping sister is": [0, 65535], "then well i know your weeping sister is no": [0, 65535], "well i know your weeping sister is no wife": [0, 65535], "i know your weeping sister is no wife of": [0, 65535], "know your weeping sister is no wife of mine": [0, 65535], "your weeping sister is no wife of mine nor": [0, 65535], "weeping sister is no wife of mine nor to": [0, 65535], "sister is no wife of mine nor to her": [0, 65535], "is no wife of mine nor to her bed": [0, 65535], "no wife of mine nor to her bed no": [0, 65535], "wife of mine nor to her bed no homage": [0, 65535], "of mine nor to her bed no homage doe": [0, 65535], "mine nor to her bed no homage doe i": [0, 65535], "nor to her bed no homage doe i owe": [0, 65535], "to her bed no homage doe i owe farre": [0, 65535], "her bed no homage doe i owe farre more": [0, 65535], "bed no homage doe i owe farre more farre": [0, 65535], "no homage doe i owe farre more farre more": [0, 65535], "homage doe i owe farre more farre more to": [0, 65535], "doe i owe farre more farre more to you": [0, 65535], "i owe farre more farre more to you doe": [0, 65535], "owe farre more farre more to you doe i": [0, 65535], "farre more farre more to you doe i decline": [0, 65535], "more farre more to you doe i decline oh": [0, 65535], "farre more to you doe i decline oh traine": [0, 65535], "more to you doe i decline oh traine me": [0, 65535], "to you doe i decline oh traine me not": [0, 65535], "you doe i decline oh traine me not sweet": [0, 65535], "doe i decline oh traine me not sweet mermaide": [0, 65535], "i decline oh traine me not sweet mermaide with": [0, 65535], "decline oh traine me not sweet mermaide with thy": [0, 65535], "oh traine me not sweet mermaide with thy note": [0, 65535], "traine me not sweet mermaide with thy note to": [0, 65535], "me not sweet mermaide with thy note to drowne": [0, 65535], "not sweet mermaide with thy note to drowne me": [0, 65535], "sweet mermaide with thy note to drowne me in": [0, 65535], "mermaide with thy note to drowne me in thy": [0, 65535], "with thy note to drowne me in thy sister": [0, 65535], "thy note to drowne me in thy sister floud": [0, 65535], "note to drowne me in thy sister floud of": [0, 65535], "to drowne me in thy sister floud of teares": [0, 65535], "drowne me in thy sister floud of teares sing": [0, 65535], "me in thy sister floud of teares sing siren": [0, 65535], "in thy sister floud of teares sing siren for": [0, 65535], "thy sister floud of teares sing siren for thy": [0, 65535], "sister floud of teares sing siren for thy selfe": [0, 65535], "floud of teares sing siren for thy selfe and": [0, 65535], "of teares sing siren for thy selfe and i": [0, 65535], "teares sing siren for thy selfe and i will": [0, 65535], "sing siren for thy selfe and i will dote": [0, 65535], "siren for thy selfe and i will dote spread": [0, 65535], "for thy selfe and i will dote spread ore": [0, 65535], "thy selfe and i will dote spread ore the": [0, 65535], "selfe and i will dote spread ore the siluer": [0, 65535], "and i will dote spread ore the siluer waues": [0, 65535], "i will dote spread ore the siluer waues thy": [0, 65535], "will dote spread ore the siluer waues thy golden": [0, 65535], "dote spread ore the siluer waues thy golden haires": [0, 65535], "spread ore the siluer waues thy golden haires and": [0, 65535], "ore the siluer waues thy golden haires and as": [0, 65535], "the siluer waues thy golden haires and as a": [0, 65535], "siluer waues thy golden haires and as a bud": [0, 65535], "waues thy golden haires and as a bud ile": [0, 65535], "thy golden haires and as a bud ile take": [0, 65535], "golden haires and as a bud ile take thee": [0, 65535], "haires and as a bud ile take thee and": [0, 65535], "and as a bud ile take thee and there": [0, 65535], "as a bud ile take thee and there lie": [0, 65535], "a bud ile take thee and there lie and": [0, 65535], "bud ile take thee and there lie and in": [0, 65535], "ile take thee and there lie and in that": [0, 65535], "take thee and there lie and in that glorious": [0, 65535], "thee and there lie and in that glorious supposition": [0, 65535], "and there lie and in that glorious supposition thinke": [0, 65535], "there lie and in that glorious supposition thinke he": [0, 65535], "lie and in that glorious supposition thinke he gaines": [0, 65535], "and in that glorious supposition thinke he gaines by": [0, 65535], "in that glorious supposition thinke he gaines by death": [0, 65535], "that glorious supposition thinke he gaines by death that": [0, 65535], "glorious supposition thinke he gaines by death that hath": [0, 65535], "supposition thinke he gaines by death that hath such": [0, 65535], "thinke he gaines by death that hath such meanes": [0, 65535], "he gaines by death that hath such meanes to": [0, 65535], "gaines by death that hath such meanes to die": [0, 65535], "by death that hath such meanes to die let": [0, 65535], "death that hath such meanes to die let loue": [0, 65535], "that hath such meanes to die let loue being": [0, 65535], "hath such meanes to die let loue being light": [0, 65535], "such meanes to die let loue being light be": [0, 65535], "meanes to die let loue being light be drowned": [0, 65535], "to die let loue being light be drowned if": [0, 65535], "die let loue being light be drowned if she": [0, 65535], "let loue being light be drowned if she sinke": [0, 65535], "loue being light be drowned if she sinke luc": [0, 65535], "being light be drowned if she sinke luc what": [0, 65535], "light be drowned if she sinke luc what are": [0, 65535], "be drowned if she sinke luc what are you": [0, 65535], "drowned if she sinke luc what are you mad": [0, 65535], "if she sinke luc what are you mad that": [0, 65535], "she sinke luc what are you mad that you": [0, 65535], "sinke luc what are you mad that you doe": [0, 65535], "luc what are you mad that you doe reason": [0, 65535], "what are you mad that you doe reason so": [0, 65535], "are you mad that you doe reason so ant": [0, 65535], "you mad that you doe reason so ant not": [0, 65535], "mad that you doe reason so ant not mad": [0, 65535], "that you doe reason so ant not mad but": [0, 65535], "you doe reason so ant not mad but mated": [0, 65535], "doe reason so ant not mad but mated how": [0, 65535], "reason so ant not mad but mated how i": [0, 65535], "so ant not mad but mated how i doe": [0, 65535], "ant not mad but mated how i doe not": [0, 65535], "not mad but mated how i doe not know": [0, 65535], "mad but mated how i doe not know luc": [0, 65535], "but mated how i doe not know luc it": [0, 65535], "mated how i doe not know luc it is": [0, 65535], "how i doe not know luc it is a": [0, 65535], "i doe not know luc it is a fault": [0, 65535], "doe not know luc it is a fault that": [0, 65535], "not know luc it is a fault that springeth": [0, 65535], "know luc it is a fault that springeth from": [0, 65535], "luc it is a fault that springeth from your": [0, 65535], "it is a fault that springeth from your eie": [0, 65535], "is a fault that springeth from your eie ant": [0, 65535], "a fault that springeth from your eie ant for": [0, 65535], "fault that springeth from your eie ant for gazing": [0, 65535], "that springeth from your eie ant for gazing on": [0, 65535], "springeth from your eie ant for gazing on your": [0, 65535], "from your eie ant for gazing on your beames": [0, 65535], "your eie ant for gazing on your beames faire": [0, 65535], "eie ant for gazing on your beames faire sun": [0, 65535], "ant for gazing on your beames faire sun being": [0, 65535], "for gazing on your beames faire sun being by": [0, 65535], "gazing on your beames faire sun being by luc": [0, 65535], "on your beames faire sun being by luc gaze": [0, 65535], "your beames faire sun being by luc gaze when": [0, 65535], "beames faire sun being by luc gaze when you": [0, 65535], "faire sun being by luc gaze when you should": [0, 65535], "sun being by luc gaze when you should and": [0, 65535], "being by luc gaze when you should and that": [0, 65535], "by luc gaze when you should and that will": [0, 65535], "luc gaze when you should and that will cleere": [0, 65535], "gaze when you should and that will cleere your": [0, 65535], "when you should and that will cleere your sight": [0, 65535], "you should and that will cleere your sight ant": [0, 65535], "should and that will cleere your sight ant as": [0, 65535], "and that will cleere your sight ant as good": [0, 65535], "that will cleere your sight ant as good to": [0, 65535], "will cleere your sight ant as good to winke": [0, 65535], "cleere your sight ant as good to winke sweet": [0, 65535], "your sight ant as good to winke sweet loue": [0, 65535], "sight ant as good to winke sweet loue as": [0, 65535], "ant as good to winke sweet loue as looke": [0, 65535], "as good to winke sweet loue as looke on": [0, 65535], "good to winke sweet loue as looke on night": [0, 65535], "to winke sweet loue as looke on night luc": [0, 65535], "winke sweet loue as looke on night luc why": [0, 65535], "sweet loue as looke on night luc why call": [0, 65535], "loue as looke on night luc why call you": [0, 65535], "as looke on night luc why call you me": [0, 65535], "looke on night luc why call you me loue": [0, 65535], "on night luc why call you me loue call": [0, 65535], "night luc why call you me loue call my": [0, 65535], "luc why call you me loue call my sister": [0, 65535], "why call you me loue call my sister so": [0, 65535], "call you me loue call my sister so ant": [0, 65535], "you me loue call my sister so ant thy": [0, 65535], "me loue call my sister so ant thy sisters": [0, 65535], "loue call my sister so ant thy sisters sister": [0, 65535], "call my sister so ant thy sisters sister luc": [0, 65535], "my sister so ant thy sisters sister luc that's": [0, 65535], "sister so ant thy sisters sister luc that's my": [0, 65535], "so ant thy sisters sister luc that's my sister": [0, 65535], "ant thy sisters sister luc that's my sister ant": [0, 65535], "thy sisters sister luc that's my sister ant no": [0, 65535], "sisters sister luc that's my sister ant no it": [0, 65535], "sister luc that's my sister ant no it is": [0, 65535], "luc that's my sister ant no it is thy": [0, 65535], "that's my sister ant no it is thy selfe": [0, 65535], "my sister ant no it is thy selfe mine": [0, 65535], "sister ant no it is thy selfe mine owne": [0, 65535], "ant no it is thy selfe mine owne selfes": [0, 65535], "no it is thy selfe mine owne selfes better": [0, 65535], "it is thy selfe mine owne selfes better part": [0, 65535], "is thy selfe mine owne selfes better part mine": [0, 65535], "thy selfe mine owne selfes better part mine eies": [0, 65535], "selfe mine owne selfes better part mine eies cleere": [0, 65535], "mine owne selfes better part mine eies cleere eie": [0, 65535], "owne selfes better part mine eies cleere eie my": [0, 65535], "selfes better part mine eies cleere eie my deere": [0, 65535], "better part mine eies cleere eie my deere hearts": [0, 65535], "part mine eies cleere eie my deere hearts deerer": [0, 65535], "mine eies cleere eie my deere hearts deerer heart": [0, 65535], "eies cleere eie my deere hearts deerer heart my": [0, 65535], "cleere eie my deere hearts deerer heart my foode": [0, 65535], "eie my deere hearts deerer heart my foode my": [0, 65535], "my deere hearts deerer heart my foode my fortune": [0, 65535], "deere hearts deerer heart my foode my fortune and": [0, 65535], "hearts deerer heart my foode my fortune and my": [0, 65535], "deerer heart my foode my fortune and my sweet": [0, 65535], "heart my foode my fortune and my sweet hopes": [0, 65535], "my foode my fortune and my sweet hopes aime": [0, 65535], "foode my fortune and my sweet hopes aime my": [0, 65535], "my fortune and my sweet hopes aime my sole": [0, 65535], "fortune and my sweet hopes aime my sole earths": [0, 65535], "and my sweet hopes aime my sole earths heauen": [0, 65535], "my sweet hopes aime my sole earths heauen and": [0, 65535], "sweet hopes aime my sole earths heauen and my": [0, 65535], "hopes aime my sole earths heauen and my heauens": [0, 65535], "aime my sole earths heauen and my heauens claime": [0, 65535], "my sole earths heauen and my heauens claime luc": [0, 65535], "sole earths heauen and my heauens claime luc all": [0, 65535], "earths heauen and my heauens claime luc all this": [0, 65535], "heauen and my heauens claime luc all this my": [0, 65535], "and my heauens claime luc all this my sister": [0, 65535], "my heauens claime luc all this my sister is": [0, 65535], "heauens claime luc all this my sister is or": [0, 65535], "claime luc all this my sister is or else": [0, 65535], "luc all this my sister is or else should": [0, 65535], "all this my sister is or else should be": [0, 65535], "this my sister is or else should be ant": [0, 65535], "my sister is or else should be ant call": [0, 65535], "sister is or else should be ant call thy": [0, 65535], "is or else should be ant call thy selfe": [0, 65535], "or else should be ant call thy selfe sister": [0, 65535], "else should be ant call thy selfe sister sweet": [0, 65535], "should be ant call thy selfe sister sweet for": [0, 65535], "be ant call thy selfe sister sweet for i": [0, 65535], "ant call thy selfe sister sweet for i am": [0, 65535], "call thy selfe sister sweet for i am thee": [0, 65535], "thy selfe sister sweet for i am thee thee": [0, 65535], "selfe sister sweet for i am thee thee will": [0, 65535], "sister sweet for i am thee thee will i": [0, 65535], "sweet for i am thee thee will i loue": [0, 65535], "for i am thee thee will i loue and": [0, 65535], "i am thee thee will i loue and with": [0, 65535], "am thee thee will i loue and with thee": [0, 65535], "thee thee will i loue and with thee lead": [0, 65535], "thee will i loue and with thee lead my": [0, 65535], "will i loue and with thee lead my life": [0, 65535], "i loue and with thee lead my life thou": [0, 65535], "loue and with thee lead my life thou hast": [0, 65535], "and with thee lead my life thou hast no": [0, 65535], "with thee lead my life thou hast no husband": [0, 65535], "thee lead my life thou hast no husband yet": [0, 65535], "lead my life thou hast no husband yet nor": [0, 65535], "my life thou hast no husband yet nor i": [0, 65535], "life thou hast no husband yet nor i no": [0, 65535], "thou hast no husband yet nor i no wife": [0, 65535], "hast no husband yet nor i no wife giue": [0, 65535], "no husband yet nor i no wife giue me": [0, 65535], "husband yet nor i no wife giue me thy": [0, 65535], "yet nor i no wife giue me thy hand": [0, 65535], "nor i no wife giue me thy hand luc": [0, 65535], "i no wife giue me thy hand luc oh": [0, 65535], "no wife giue me thy hand luc oh soft": [0, 65535], "wife giue me thy hand luc oh soft sir": [0, 65535], "giue me thy hand luc oh soft sir hold": [0, 65535], "me thy hand luc oh soft sir hold you": [0, 65535], "thy hand luc oh soft sir hold you still": [0, 65535], "hand luc oh soft sir hold you still ile": [0, 65535], "luc oh soft sir hold you still ile fetch": [0, 65535], "oh soft sir hold you still ile fetch my": [0, 65535], "soft sir hold you still ile fetch my sister": [0, 65535], "sir hold you still ile fetch my sister to": [0, 65535], "hold you still ile fetch my sister to get": [0, 65535], "you still ile fetch my sister to get her": [0, 65535], "still ile fetch my sister to get her good": [0, 65535], "ile fetch my sister to get her good will": [0, 65535], "fetch my sister to get her good will exit": [0, 65535], "my sister to get her good will exit enter": [0, 65535], "sister to get her good will exit enter dromio": [0, 65535], "to get her good will exit enter dromio siracusia": [0, 65535], "get her good will exit enter dromio siracusia ant": [0, 65535], "her good will exit enter dromio siracusia ant why": [0, 65535], "good will exit enter dromio siracusia ant why how": [0, 65535], "will exit enter dromio siracusia ant why how now": [0, 65535], "exit enter dromio siracusia ant why how now dromio": [0, 65535], "enter dromio siracusia ant why how now dromio where": [0, 65535], "dromio siracusia ant why how now dromio where run'st": [0, 65535], "siracusia ant why how now dromio where run'st thou": [0, 65535], "ant why how now dromio where run'st thou so": [0, 65535], "why how now dromio where run'st thou so fast": [0, 65535], "how now dromio where run'st thou so fast s": [0, 65535], "now dromio where run'st thou so fast s dro": [0, 65535], "dromio where run'st thou so fast s dro doe": [0, 65535], "where run'st thou so fast s dro doe you": [0, 65535], "run'st thou so fast s dro doe you know": [0, 65535], "thou so fast s dro doe you know me": [0, 65535], "so fast s dro doe you know me sir": [0, 65535], "fast s dro doe you know me sir am": [0, 65535], "s dro doe you know me sir am i": [0, 65535], "dro doe you know me sir am i dromio": [0, 65535], "doe you know me sir am i dromio am": [0, 65535], "you know me sir am i dromio am i": [0, 65535], "know me sir am i dromio am i your": [0, 65535], "me sir am i dromio am i your man": [0, 65535], "sir am i dromio am i your man am": [0, 65535], "am i dromio am i your man am i": [0, 65535], "i dromio am i your man am i my": [0, 65535], "dromio am i your man am i my selfe": [0, 65535], "am i your man am i my selfe ant": [0, 65535], "i your man am i my selfe ant thou": [0, 65535], "your man am i my selfe ant thou art": [0, 65535], "man am i my selfe ant thou art dromio": [0, 65535], "am i my selfe ant thou art dromio thou": [0, 65535], "i my selfe ant thou art dromio thou art": [0, 65535], "my selfe ant thou art dromio thou art my": [0, 65535], "selfe ant thou art dromio thou art my man": [0, 65535], "ant thou art dromio thou art my man thou": [0, 65535], "thou art dromio thou art my man thou art": [0, 65535], "art dromio thou art my man thou art thy": [0, 65535], "dromio thou art my man thou art thy selfe": [0, 65535], "thou art my man thou art thy selfe dro": [0, 65535], "art my man thou art thy selfe dro i": [0, 65535], "my man thou art thy selfe dro i am": [0, 65535], "man thou art thy selfe dro i am an": [0, 65535], "thou art thy selfe dro i am an asse": [0, 65535], "art thy selfe dro i am an asse i": [0, 65535], "thy selfe dro i am an asse i am": [0, 65535], "selfe dro i am an asse i am a": [0, 65535], "dro i am an asse i am a womans": [0, 65535], "i am an asse i am a womans man": [0, 65535], "am an asse i am a womans man and": [0, 65535], "an asse i am a womans man and besides": [0, 65535], "asse i am a womans man and besides my": [0, 65535], "i am a womans man and besides my selfe": [0, 65535], "am a womans man and besides my selfe ant": [0, 65535], "a womans man and besides my selfe ant what": [0, 65535], "womans man and besides my selfe ant what womans": [0, 65535], "man and besides my selfe ant what womans man": [0, 65535], "and besides my selfe ant what womans man and": [0, 65535], "besides my selfe ant what womans man and how": [0, 65535], "my selfe ant what womans man and how besides": [0, 65535], "selfe ant what womans man and how besides thy": [0, 65535], "ant what womans man and how besides thy selfe": [0, 65535], "what womans man and how besides thy selfe dro": [0, 65535], "womans man and how besides thy selfe dro marrie": [0, 65535], "man and how besides thy selfe dro marrie sir": [0, 65535], "and how besides thy selfe dro marrie sir besides": [0, 65535], "how besides thy selfe dro marrie sir besides my": [0, 65535], "besides thy selfe dro marrie sir besides my selfe": [0, 65535], "thy selfe dro marrie sir besides my selfe i": [0, 65535], "selfe dro marrie sir besides my selfe i am": [0, 65535], "dro marrie sir besides my selfe i am due": [0, 65535], "marrie sir besides my selfe i am due to": [0, 65535], "sir besides my selfe i am due to a": [0, 65535], "besides my selfe i am due to a woman": [0, 65535], "my selfe i am due to a woman one": [0, 65535], "selfe i am due to a woman one that": [0, 65535], "i am due to a woman one that claimes": [0, 65535], "am due to a woman one that claimes me": [0, 65535], "due to a woman one that claimes me one": [0, 65535], "to a woman one that claimes me one that": [0, 65535], "a woman one that claimes me one that haunts": [0, 65535], "woman one that claimes me one that haunts me": [0, 65535], "one that claimes me one that haunts me one": [0, 65535], "that claimes me one that haunts me one that": [0, 65535], "claimes me one that haunts me one that will": [0, 65535], "me one that haunts me one that will haue": [0, 65535], "one that haunts me one that will haue me": [0, 65535], "that haunts me one that will haue me anti": [0, 65535], "haunts me one that will haue me anti what": [0, 65535], "me one that will haue me anti what claime": [0, 65535], "one that will haue me anti what claime laies": [0, 65535], "that will haue me anti what claime laies she": [0, 65535], "will haue me anti what claime laies she to": [0, 65535], "haue me anti what claime laies she to thee": [0, 65535], "me anti what claime laies she to thee dro": [0, 65535], "anti what claime laies she to thee dro marry": [0, 65535], "what claime laies she to thee dro marry sir": [0, 65535], "claime laies she to thee dro marry sir such": [0, 65535], "laies she to thee dro marry sir such claime": [0, 65535], "she to thee dro marry sir such claime as": [0, 65535], "to thee dro marry sir such claime as you": [0, 65535], "thee dro marry sir such claime as you would": [0, 65535], "dro marry sir such claime as you would lay": [0, 65535], "marry sir such claime as you would lay to": [0, 65535], "sir such claime as you would lay to your": [0, 65535], "such claime as you would lay to your horse": [0, 65535], "claime as you would lay to your horse and": [0, 65535], "as you would lay to your horse and she": [0, 65535], "you would lay to your horse and she would": [0, 65535], "would lay to your horse and she would haue": [0, 65535], "lay to your horse and she would haue me": [0, 65535], "to your horse and she would haue me as": [0, 65535], "your horse and she would haue me as a": [0, 65535], "horse and she would haue me as a beast": [0, 65535], "and she would haue me as a beast not": [0, 65535], "she would haue me as a beast not that": [0, 65535], "would haue me as a beast not that i": [0, 65535], "haue me as a beast not that i beeing": [0, 65535], "me as a beast not that i beeing a": [0, 65535], "as a beast not that i beeing a beast": [0, 65535], "a beast not that i beeing a beast she": [0, 65535], "beast not that i beeing a beast she would": [0, 65535], "not that i beeing a beast she would haue": [0, 65535], "that i beeing a beast she would haue me": [0, 65535], "i beeing a beast she would haue me but": [0, 65535], "beeing a beast she would haue me but that": [0, 65535], "a beast she would haue me but that she": [0, 65535], "beast she would haue me but that she being": [0, 65535], "she would haue me but that she being a": [0, 65535], "would haue me but that she being a verie": [0, 65535], "haue me but that she being a verie beastly": [0, 65535], "me but that she being a verie beastly creature": [0, 65535], "but that she being a verie beastly creature layes": [0, 65535], "that she being a verie beastly creature layes claime": [0, 65535], "she being a verie beastly creature layes claime to": [0, 65535], "being a verie beastly creature layes claime to me": [0, 65535], "a verie beastly creature layes claime to me anti": [0, 65535], "verie beastly creature layes claime to me anti what": [0, 65535], "beastly creature layes claime to me anti what is": [0, 65535], "creature layes claime to me anti what is she": [0, 65535], "layes claime to me anti what is she dro": [0, 65535], "claime to me anti what is she dro a": [0, 65535], "to me anti what is she dro a very": [0, 65535], "me anti what is she dro a very reuerent": [0, 65535], "anti what is she dro a very reuerent body": [0, 65535], "what is she dro a very reuerent body i": [0, 65535], "is she dro a very reuerent body i such": [0, 65535], "she dro a very reuerent body i such a": [0, 65535], "dro a very reuerent body i such a one": [0, 65535], "a very reuerent body i such a one as": [0, 65535], "very reuerent body i such a one as a": [0, 65535], "reuerent body i such a one as a man": [0, 65535], "body i such a one as a man may": [0, 65535], "i such a one as a man may not": [0, 65535], "such a one as a man may not speake": [0, 65535], "a one as a man may not speake of": [0, 65535], "one as a man may not speake of without": [0, 65535], "as a man may not speake of without he": [0, 65535], "a man may not speake of without he say": [0, 65535], "man may not speake of without he say sir": [0, 65535], "may not speake of without he say sir reuerence": [0, 65535], "not speake of without he say sir reuerence i": [0, 65535], "speake of without he say sir reuerence i haue": [0, 65535], "of without he say sir reuerence i haue but": [0, 65535], "without he say sir reuerence i haue but leane": [0, 65535], "he say sir reuerence i haue but leane lucke": [0, 65535], "say sir reuerence i haue but leane lucke in": [0, 65535], "sir reuerence i haue but leane lucke in the": [0, 65535], "reuerence i haue but leane lucke in the match": [0, 65535], "i haue but leane lucke in the match and": [0, 65535], "haue but leane lucke in the match and yet": [0, 65535], "but leane lucke in the match and yet is": [0, 65535], "leane lucke in the match and yet is she": [0, 65535], "lucke in the match and yet is she a": [0, 65535], "in the match and yet is she a wondrous": [0, 65535], "the match and yet is she a wondrous fat": [0, 65535], "match and yet is she a wondrous fat marriage": [0, 65535], "and yet is she a wondrous fat marriage anti": [0, 65535], "yet is she a wondrous fat marriage anti how": [0, 65535], "is she a wondrous fat marriage anti how dost": [0, 65535], "she a wondrous fat marriage anti how dost thou": [0, 65535], "a wondrous fat marriage anti how dost thou meane": [0, 65535], "wondrous fat marriage anti how dost thou meane a": [0, 65535], "fat marriage anti how dost thou meane a fat": [0, 65535], "marriage anti how dost thou meane a fat marriage": [0, 65535], "anti how dost thou meane a fat marriage dro": [0, 65535], "how dost thou meane a fat marriage dro marry": [0, 65535], "dost thou meane a fat marriage dro marry sir": [0, 65535], "thou meane a fat marriage dro marry sir she's": [0, 65535], "meane a fat marriage dro marry sir she's the": [0, 65535], "a fat marriage dro marry sir she's the kitchin": [0, 65535], "fat marriage dro marry sir she's the kitchin wench": [0, 65535], "marriage dro marry sir she's the kitchin wench al": [0, 65535], "dro marry sir she's the kitchin wench al grease": [0, 65535], "marry sir she's the kitchin wench al grease and": [0, 65535], "sir she's the kitchin wench al grease and i": [0, 65535], "she's the kitchin wench al grease and i know": [0, 65535], "the kitchin wench al grease and i know not": [0, 65535], "kitchin wench al grease and i know not what": [0, 65535], "wench al grease and i know not what vse": [0, 65535], "al grease and i know not what vse to": [0, 65535], "grease and i know not what vse to put": [0, 65535], "and i know not what vse to put her": [0, 65535], "i know not what vse to put her too": [0, 65535], "know not what vse to put her too but": [0, 65535], "not what vse to put her too but to": [0, 65535], "what vse to put her too but to make": [0, 65535], "vse to put her too but to make a": [0, 65535], "to put her too but to make a lampe": [0, 65535], "put her too but to make a lampe of": [0, 65535], "her too but to make a lampe of her": [0, 65535], "too but to make a lampe of her and": [0, 65535], "but to make a lampe of her and run": [0, 65535], "to make a lampe of her and run from": [0, 65535], "make a lampe of her and run from her": [0, 65535], "a lampe of her and run from her by": [0, 65535], "lampe of her and run from her by her": [0, 65535], "of her and run from her by her owne": [0, 65535], "her and run from her by her owne light": [0, 65535], "and run from her by her owne light i": [0, 65535], "run from her by her owne light i warrant": [0, 65535], "from her by her owne light i warrant her": [0, 65535], "her by her owne light i warrant her ragges": [0, 65535], "by her owne light i warrant her ragges and": [0, 65535], "her owne light i warrant her ragges and the": [0, 65535], "owne light i warrant her ragges and the tallow": [0, 65535], "light i warrant her ragges and the tallow in": [0, 65535], "i warrant her ragges and the tallow in them": [0, 65535], "warrant her ragges and the tallow in them will": [0, 65535], "her ragges and the tallow in them will burne": [0, 65535], "ragges and the tallow in them will burne a": [0, 65535], "and the tallow in them will burne a poland": [0, 65535], "the tallow in them will burne a poland winter": [0, 65535], "tallow in them will burne a poland winter if": [0, 65535], "in them will burne a poland winter if she": [0, 65535], "them will burne a poland winter if she liues": [0, 65535], "will burne a poland winter if she liues till": [0, 65535], "burne a poland winter if she liues till doomesday": [0, 65535], "a poland winter if she liues till doomesday she'l": [0, 65535], "poland winter if she liues till doomesday she'l burne": [0, 65535], "winter if she liues till doomesday she'l burne a": [0, 65535], "if she liues till doomesday she'l burne a weeke": [0, 65535], "she liues till doomesday she'l burne a weeke longer": [0, 65535], "liues till doomesday she'l burne a weeke longer then": [0, 65535], "till doomesday she'l burne a weeke longer then the": [0, 65535], "doomesday she'l burne a weeke longer then the whole": [0, 65535], "she'l burne a weeke longer then the whole world": [0, 65535], "burne a weeke longer then the whole world anti": [0, 65535], "a weeke longer then the whole world anti what": [0, 65535], "weeke longer then the whole world anti what complexion": [0, 65535], "longer then the whole world anti what complexion is": [0, 65535], "then the whole world anti what complexion is she": [0, 65535], "the whole world anti what complexion is she of": [0, 65535], "whole world anti what complexion is she of dro": [0, 65535], "world anti what complexion is she of dro swart": [0, 65535], "anti what complexion is she of dro swart like": [0, 65535], "what complexion is she of dro swart like my": [0, 65535], "complexion is she of dro swart like my shoo": [0, 65535], "is she of dro swart like my shoo but": [0, 65535], "she of dro swart like my shoo but her": [0, 65535], "of dro swart like my shoo but her face": [0, 65535], "dro swart like my shoo but her face nothing": [0, 65535], "swart like my shoo but her face nothing like": [0, 65535], "like my shoo but her face nothing like so": [0, 65535], "my shoo but her face nothing like so cleane": [0, 65535], "shoo but her face nothing like so cleane kept": [0, 65535], "but her face nothing like so cleane kept for": [0, 65535], "her face nothing like so cleane kept for why": [0, 65535], "face nothing like so cleane kept for why she": [0, 65535], "nothing like so cleane kept for why she sweats": [0, 65535], "like so cleane kept for why she sweats a": [0, 65535], "so cleane kept for why she sweats a man": [0, 65535], "cleane kept for why she sweats a man may": [0, 65535], "kept for why she sweats a man may goe": [0, 65535], "for why she sweats a man may goe o": [0, 65535], "why she sweats a man may goe o uer": [0, 65535], "she sweats a man may goe o uer shooes": [0, 65535], "sweats a man may goe o uer shooes in": [0, 65535], "a man may goe o uer shooes in the": [0, 65535], "man may goe o uer shooes in the grime": [0, 65535], "may goe o uer shooes in the grime of": [0, 65535], "goe o uer shooes in the grime of it": [0, 65535], "o uer shooes in the grime of it anti": [0, 65535], "uer shooes in the grime of it anti that's": [0, 65535], "shooes in the grime of it anti that's a": [0, 65535], "in the grime of it anti that's a fault": [0, 65535], "the grime of it anti that's a fault that": [0, 65535], "grime of it anti that's a fault that water": [0, 65535], "of it anti that's a fault that water will": [0, 65535], "it anti that's a fault that water will mend": [0, 65535], "anti that's a fault that water will mend dro": [0, 65535], "that's a fault that water will mend dro no": [0, 65535], "a fault that water will mend dro no sir": [0, 65535], "fault that water will mend dro no sir 'tis": [0, 65535], "that water will mend dro no sir 'tis in": [0, 65535], "water will mend dro no sir 'tis in graine": [0, 65535], "will mend dro no sir 'tis in graine noahs": [0, 65535], "mend dro no sir 'tis in graine noahs flood": [0, 65535], "dro no sir 'tis in graine noahs flood could": [0, 65535], "no sir 'tis in graine noahs flood could not": [0, 65535], "sir 'tis in graine noahs flood could not do": [0, 65535], "'tis in graine noahs flood could not do it": [0, 65535], "in graine noahs flood could not do it anti": [0, 65535], "graine noahs flood could not do it anti what's": [0, 65535], "noahs flood could not do it anti what's her": [0, 65535], "flood could not do it anti what's her name": [0, 65535], "could not do it anti what's her name dro": [0, 65535], "not do it anti what's her name dro nell": [0, 65535], "do it anti what's her name dro nell sir": [0, 65535], "it anti what's her name dro nell sir but": [0, 65535], "anti what's her name dro nell sir but her": [0, 65535], "what's her name dro nell sir but her name": [0, 65535], "her name dro nell sir but her name is": [0, 65535], "name dro nell sir but her name is three": [0, 65535], "dro nell sir but her name is three quarters": [0, 65535], "nell sir but her name is three quarters that's": [0, 65535], "sir but her name is three quarters that's an": [0, 65535], "but her name is three quarters that's an ell": [0, 65535], "her name is three quarters that's an ell and": [0, 65535], "name is three quarters that's an ell and three": [0, 65535], "is three quarters that's an ell and three quarters": [0, 65535], "three quarters that's an ell and three quarters will": [0, 65535], "quarters that's an ell and three quarters will not": [0, 65535], "that's an ell and three quarters will not measure": [0, 65535], "an ell and three quarters will not measure her": [0, 65535], "ell and three quarters will not measure her from": [0, 65535], "and three quarters will not measure her from hip": [0, 65535], "three quarters will not measure her from hip to": [0, 65535], "quarters will not measure her from hip to hip": [0, 65535], "will not measure her from hip to hip anti": [0, 65535], "not measure her from hip to hip anti then": [0, 65535], "measure her from hip to hip anti then she": [0, 65535], "her from hip to hip anti then she beares": [0, 65535], "from hip to hip anti then she beares some": [0, 65535], "hip to hip anti then she beares some bredth": [0, 65535], "to hip anti then she beares some bredth dro": [0, 65535], "hip anti then she beares some bredth dro no": [0, 65535], "anti then she beares some bredth dro no longer": [0, 65535], "then she beares some bredth dro no longer from": [0, 65535], "she beares some bredth dro no longer from head": [0, 65535], "beares some bredth dro no longer from head to": [0, 65535], "some bredth dro no longer from head to foot": [0, 65535], "bredth dro no longer from head to foot then": [0, 65535], "dro no longer from head to foot then from": [0, 65535], "no longer from head to foot then from hippe": [0, 65535], "longer from head to foot then from hippe to": [0, 65535], "from head to foot then from hippe to hippe": [0, 65535], "head to foot then from hippe to hippe she": [0, 65535], "to foot then from hippe to hippe she is": [0, 65535], "foot then from hippe to hippe she is sphericall": [0, 65535], "then from hippe to hippe she is sphericall like": [0, 65535], "from hippe to hippe she is sphericall like a": [0, 65535], "hippe to hippe she is sphericall like a globe": [0, 65535], "to hippe she is sphericall like a globe i": [0, 65535], "hippe she is sphericall like a globe i could": [0, 65535], "she is sphericall like a globe i could find": [0, 65535], "is sphericall like a globe i could find out": [0, 65535], "sphericall like a globe i could find out countries": [0, 65535], "like a globe i could find out countries in": [0, 65535], "a globe i could find out countries in her": [0, 65535], "globe i could find out countries in her anti": [0, 65535], "i could find out countries in her anti in": [0, 65535], "could find out countries in her anti in what": [0, 65535], "find out countries in her anti in what part": [0, 65535], "out countries in her anti in what part of": [0, 65535], "countries in her anti in what part of her": [0, 65535], "in her anti in what part of her body": [0, 65535], "her anti in what part of her body stands": [0, 65535], "anti in what part of her body stands ireland": [0, 65535], "in what part of her body stands ireland dro": [0, 65535], "what part of her body stands ireland dro marry": [0, 65535], "part of her body stands ireland dro marry sir": [0, 65535], "of her body stands ireland dro marry sir in": [0, 65535], "her body stands ireland dro marry sir in her": [0, 65535], "body stands ireland dro marry sir in her buttockes": [0, 65535], "stands ireland dro marry sir in her buttockes i": [0, 65535], "ireland dro marry sir in her buttockes i found": [0, 65535], "dro marry sir in her buttockes i found it": [0, 65535], "marry sir in her buttockes i found it out": [0, 65535], "sir in her buttockes i found it out by": [0, 65535], "in her buttockes i found it out by the": [0, 65535], "her buttockes i found it out by the bogges": [0, 65535], "buttockes i found it out by the bogges ant": [0, 65535], "i found it out by the bogges ant where": [0, 65535], "found it out by the bogges ant where scotland": [0, 65535], "it out by the bogges ant where scotland dro": [0, 65535], "out by the bogges ant where scotland dro i": [0, 65535], "by the bogges ant where scotland dro i found": [0, 65535], "the bogges ant where scotland dro i found it": [0, 65535], "bogges ant where scotland dro i found it by": [0, 65535], "ant where scotland dro i found it by the": [0, 65535], "where scotland dro i found it by the barrennesse": [0, 65535], "scotland dro i found it by the barrennesse hard": [0, 65535], "dro i found it by the barrennesse hard in": [0, 65535], "i found it by the barrennesse hard in the": [0, 65535], "found it by the barrennesse hard in the palme": [0, 65535], "it by the barrennesse hard in the palme of": [0, 65535], "by the barrennesse hard in the palme of the": [0, 65535], "the barrennesse hard in the palme of the hand": [0, 65535], "barrennesse hard in the palme of the hand ant": [0, 65535], "hard in the palme of the hand ant where": [0, 65535], "in the palme of the hand ant where france": [0, 65535], "the palme of the hand ant where france dro": [0, 65535], "palme of the hand ant where france dro in": [0, 65535], "of the hand ant where france dro in her": [0, 65535], "the hand ant where france dro in her forhead": [0, 65535], "hand ant where france dro in her forhead arm'd": [0, 65535], "ant where france dro in her forhead arm'd and": [0, 65535], "where france dro in her forhead arm'd and reuerted": [0, 65535], "france dro in her forhead arm'd and reuerted making": [0, 65535], "dro in her forhead arm'd and reuerted making warre": [0, 65535], "in her forhead arm'd and reuerted making warre against": [0, 65535], "her forhead arm'd and reuerted making warre against her": [0, 65535], "forhead arm'd and reuerted making warre against her heire": [0, 65535], "arm'd and reuerted making warre against her heire ant": [0, 65535], "and reuerted making warre against her heire ant where": [0, 65535], "reuerted making warre against her heire ant where england": [0, 65535], "making warre against her heire ant where england dro": [0, 65535], "warre against her heire ant where england dro i": [0, 65535], "against her heire ant where england dro i look'd": [0, 65535], "her heire ant where england dro i look'd for": [0, 65535], "heire ant where england dro i look'd for the": [0, 65535], "ant where england dro i look'd for the chalkle": [0, 65535], "where england dro i look'd for the chalkle cliffes": [0, 65535], "england dro i look'd for the chalkle cliffes but": [0, 65535], "dro i look'd for the chalkle cliffes but i": [0, 65535], "i look'd for the chalkle cliffes but i could": [0, 65535], "look'd for the chalkle cliffes but i could find": [0, 65535], "for the chalkle cliffes but i could find no": [0, 65535], "the chalkle cliffes but i could find no whitenesse": [0, 65535], "chalkle cliffes but i could find no whitenesse in": [0, 65535], "cliffes but i could find no whitenesse in them": [0, 65535], "but i could find no whitenesse in them but": [0, 65535], "i could find no whitenesse in them but i": [0, 65535], "could find no whitenesse in them but i guesse": [0, 65535], "find no whitenesse in them but i guesse it": [0, 65535], "no whitenesse in them but i guesse it stood": [0, 65535], "whitenesse in them but i guesse it stood in": [0, 65535], "in them but i guesse it stood in her": [0, 65535], "them but i guesse it stood in her chin": [0, 65535], "but i guesse it stood in her chin by": [0, 65535], "i guesse it stood in her chin by the": [0, 65535], "guesse it stood in her chin by the salt": [0, 65535], "it stood in her chin by the salt rheume": [0, 65535], "stood in her chin by the salt rheume that": [0, 65535], "in her chin by the salt rheume that ranne": [0, 65535], "her chin by the salt rheume that ranne betweene": [0, 65535], "chin by the salt rheume that ranne betweene france": [0, 65535], "by the salt rheume that ranne betweene france and": [0, 65535], "the salt rheume that ranne betweene france and it": [0, 65535], "salt rheume that ranne betweene france and it ant": [0, 65535], "rheume that ranne betweene france and it ant where": [0, 65535], "that ranne betweene france and it ant where spaine": [0, 65535], "ranne betweene france and it ant where spaine dro": [0, 65535], "betweene france and it ant where spaine dro faith": [0, 65535], "france and it ant where spaine dro faith i": [0, 65535], "and it ant where spaine dro faith i saw": [0, 65535], "it ant where spaine dro faith i saw it": [0, 65535], "ant where spaine dro faith i saw it not": [0, 65535], "where spaine dro faith i saw it not but": [0, 65535], "spaine dro faith i saw it not but i": [0, 65535], "dro faith i saw it not but i felt": [0, 65535], "faith i saw it not but i felt it": [0, 65535], "i saw it not but i felt it hot": [0, 65535], "saw it not but i felt it hot in": [0, 65535], "it not but i felt it hot in her": [0, 65535], "not but i felt it hot in her breth": [0, 65535], "but i felt it hot in her breth ant": [0, 65535], "i felt it hot in her breth ant where": [0, 65535], "felt it hot in her breth ant where america": [0, 65535], "it hot in her breth ant where america the": [0, 65535], "hot in her breth ant where america the indies": [0, 65535], "in her breth ant where america the indies dro": [0, 65535], "her breth ant where america the indies dro oh": [0, 65535], "breth ant where america the indies dro oh sir": [0, 65535], "ant where america the indies dro oh sir vpon": [0, 65535], "where america the indies dro oh sir vpon her": [0, 65535], "america the indies dro oh sir vpon her nose": [0, 65535], "the indies dro oh sir vpon her nose all": [0, 65535], "indies dro oh sir vpon her nose all ore": [0, 65535], "dro oh sir vpon her nose all ore embellished": [0, 65535], "oh sir vpon her nose all ore embellished with": [0, 65535], "sir vpon her nose all ore embellished with rubies": [0, 65535], "vpon her nose all ore embellished with rubies carbuncles": [0, 65535], "her nose all ore embellished with rubies carbuncles saphires": [0, 65535], "nose all ore embellished with rubies carbuncles saphires declining": [0, 65535], "all ore embellished with rubies carbuncles saphires declining their": [0, 65535], "ore embellished with rubies carbuncles saphires declining their rich": [0, 65535], "embellished with rubies carbuncles saphires declining their rich aspect": [0, 65535], "with rubies carbuncles saphires declining their rich aspect to": [0, 65535], "rubies carbuncles saphires declining their rich aspect to the": [0, 65535], "carbuncles saphires declining their rich aspect to the hot": [0, 65535], "saphires declining their rich aspect to the hot breath": [0, 65535], "declining their rich aspect to the hot breath of": [0, 65535], "their rich aspect to the hot breath of spaine": [0, 65535], "rich aspect to the hot breath of spaine who": [0, 65535], "aspect to the hot breath of spaine who sent": [0, 65535], "to the hot breath of spaine who sent whole": [0, 65535], "the hot breath of spaine who sent whole armadoes": [0, 65535], "hot breath of spaine who sent whole armadoes of": [0, 65535], "breath of spaine who sent whole armadoes of carrects": [0, 65535], "of spaine who sent whole armadoes of carrects to": [0, 65535], "spaine who sent whole armadoes of carrects to be": [0, 65535], "who sent whole armadoes of carrects to be ballast": [0, 65535], "sent whole armadoes of carrects to be ballast at": [0, 65535], "whole armadoes of carrects to be ballast at her": [0, 65535], "armadoes of carrects to be ballast at her nose": [0, 65535], "of carrects to be ballast at her nose anti": [0, 65535], "carrects to be ballast at her nose anti where": [0, 65535], "to be ballast at her nose anti where stood": [0, 65535], "be ballast at her nose anti where stood belgia": [0, 65535], "ballast at her nose anti where stood belgia the": [0, 65535], "at her nose anti where stood belgia the netherlands": [0, 65535], "her nose anti where stood belgia the netherlands dro": [0, 65535], "nose anti where stood belgia the netherlands dro oh": [0, 65535], "anti where stood belgia the netherlands dro oh sir": [0, 65535], "where stood belgia the netherlands dro oh sir i": [0, 65535], "stood belgia the netherlands dro oh sir i did": [0, 65535], "belgia the netherlands dro oh sir i did not": [0, 65535], "the netherlands dro oh sir i did not looke": [0, 65535], "netherlands dro oh sir i did not looke so": [0, 65535], "dro oh sir i did not looke so low": [0, 65535], "oh sir i did not looke so low to": [0, 65535], "sir i did not looke so low to conclude": [0, 65535], "i did not looke so low to conclude this": [0, 65535], "did not looke so low to conclude this drudge": [0, 65535], "not looke so low to conclude this drudge or": [0, 65535], "looke so low to conclude this drudge or diuiner": [0, 65535], "so low to conclude this drudge or diuiner layd": [0, 65535], "low to conclude this drudge or diuiner layd claime": [0, 65535], "to conclude this drudge or diuiner layd claime to": [0, 65535], "conclude this drudge or diuiner layd claime to mee": [0, 65535], "this drudge or diuiner layd claime to mee call'd": [0, 65535], "drudge or diuiner layd claime to mee call'd mee": [0, 65535], "or diuiner layd claime to mee call'd mee dromio": [0, 65535], "diuiner layd claime to mee call'd mee dromio swore": [0, 65535], "layd claime to mee call'd mee dromio swore i": [0, 65535], "claime to mee call'd mee dromio swore i was": [0, 65535], "to mee call'd mee dromio swore i was assur'd": [0, 65535], "mee call'd mee dromio swore i was assur'd to": [0, 65535], "call'd mee dromio swore i was assur'd to her": [0, 65535], "mee dromio swore i was assur'd to her told": [0, 65535], "dromio swore i was assur'd to her told me": [0, 65535], "swore i was assur'd to her told me what": [0, 65535], "i was assur'd to her told me what priuie": [0, 65535], "was assur'd to her told me what priuie markes": [0, 65535], "assur'd to her told me what priuie markes i": [0, 65535], "to her told me what priuie markes i had": [0, 65535], "her told me what priuie markes i had about": [0, 65535], "told me what priuie markes i had about mee": [0, 65535], "me what priuie markes i had about mee as": [0, 65535], "what priuie markes i had about mee as the": [0, 65535], "priuie markes i had about mee as the marke": [0, 65535], "markes i had about mee as the marke of": [0, 65535], "i had about mee as the marke of my": [0, 65535], "had about mee as the marke of my shoulder": [0, 65535], "about mee as the marke of my shoulder the": [0, 65535], "mee as the marke of my shoulder the mole": [0, 65535], "as the marke of my shoulder the mole in": [0, 65535], "the marke of my shoulder the mole in my": [0, 65535], "marke of my shoulder the mole in my necke": [0, 65535], "of my shoulder the mole in my necke the": [0, 65535], "my shoulder the mole in my necke the great": [0, 65535], "shoulder the mole in my necke the great wart": [0, 65535], "the mole in my necke the great wart on": [0, 65535], "mole in my necke the great wart on my": [0, 65535], "in my necke the great wart on my left": [0, 65535], "my necke the great wart on my left arme": [0, 65535], "necke the great wart on my left arme that": [0, 65535], "the great wart on my left arme that i": [0, 65535], "great wart on my left arme that i amaz'd": [0, 65535], "wart on my left arme that i amaz'd ranne": [0, 65535], "on my left arme that i amaz'd ranne from": [0, 65535], "my left arme that i amaz'd ranne from her": [0, 65535], "left arme that i amaz'd ranne from her as": [0, 65535], "arme that i amaz'd ranne from her as a": [0, 65535], "that i amaz'd ranne from her as a witch": [0, 65535], "i amaz'd ranne from her as a witch and": [0, 65535], "amaz'd ranne from her as a witch and i": [0, 65535], "ranne from her as a witch and i thinke": [0, 65535], "from her as a witch and i thinke if": [0, 65535], "her as a witch and i thinke if my": [0, 65535], "as a witch and i thinke if my brest": [0, 65535], "a witch and i thinke if my brest had": [0, 65535], "witch and i thinke if my brest had not": [0, 65535], "and i thinke if my brest had not beene": [0, 65535], "i thinke if my brest had not beene made": [0, 65535], "thinke if my brest had not beene made of": [0, 65535], "if my brest had not beene made of faith": [0, 65535], "my brest had not beene made of faith and": [0, 65535], "brest had not beene made of faith and my": [0, 65535], "had not beene made of faith and my heart": [0, 65535], "not beene made of faith and my heart of": [0, 65535], "beene made of faith and my heart of steele": [0, 65535], "made of faith and my heart of steele she": [0, 65535], "of faith and my heart of steele she had": [0, 65535], "faith and my heart of steele she had transform'd": [0, 65535], "and my heart of steele she had transform'd me": [0, 65535], "my heart of steele she had transform'd me to": [0, 65535], "heart of steele she had transform'd me to a": [0, 65535], "of steele she had transform'd me to a curtull": [0, 65535], "steele she had transform'd me to a curtull dog": [0, 65535], "she had transform'd me to a curtull dog made": [0, 65535], "had transform'd me to a curtull dog made me": [0, 65535], "transform'd me to a curtull dog made me turne": [0, 65535], "me to a curtull dog made me turne i'th": [0, 65535], "to a curtull dog made me turne i'th wheele": [0, 65535], "a curtull dog made me turne i'th wheele anti": [0, 65535], "curtull dog made me turne i'th wheele anti go": [0, 65535], "dog made me turne i'th wheele anti go hie": [0, 65535], "made me turne i'th wheele anti go hie thee": [0, 65535], "me turne i'th wheele anti go hie thee presently": [0, 65535], "turne i'th wheele anti go hie thee presently post": [0, 65535], "i'th wheele anti go hie thee presently post to": [0, 65535], "wheele anti go hie thee presently post to the": [0, 65535], "anti go hie thee presently post to the rode": [0, 65535], "go hie thee presently post to the rode and": [0, 65535], "hie thee presently post to the rode and if": [0, 65535], "thee presently post to the rode and if the": [0, 65535], "presently post to the rode and if the winde": [0, 65535], "post to the rode and if the winde blow": [0, 65535], "to the rode and if the winde blow any": [0, 65535], "the rode and if the winde blow any way": [0, 65535], "rode and if the winde blow any way from": [0, 65535], "and if the winde blow any way from shore": [0, 65535], "if the winde blow any way from shore i": [0, 65535], "the winde blow any way from shore i will": [0, 65535], "winde blow any way from shore i will not": [0, 65535], "blow any way from shore i will not harbour": [0, 65535], "any way from shore i will not harbour in": [0, 65535], "way from shore i will not harbour in this": [0, 65535], "from shore i will not harbour in this towne": [0, 65535], "shore i will not harbour in this towne to": [0, 65535], "i will not harbour in this towne to night": [0, 65535], "will not harbour in this towne to night if": [0, 65535], "not harbour in this towne to night if any": [0, 65535], "harbour in this towne to night if any barke": [0, 65535], "in this towne to night if any barke put": [0, 65535], "this towne to night if any barke put forth": [0, 65535], "towne to night if any barke put forth come": [0, 65535], "to night if any barke put forth come to": [0, 65535], "night if any barke put forth come to the": [0, 65535], "if any barke put forth come to the mart": [0, 65535], "any barke put forth come to the mart where": [0, 65535], "barke put forth come to the mart where i": [0, 65535], "put forth come to the mart where i will": [0, 65535], "forth come to the mart where i will walke": [0, 65535], "come to the mart where i will walke till": [0, 65535], "to the mart where i will walke till thou": [0, 65535], "the mart where i will walke till thou returne": [0, 65535], "mart where i will walke till thou returne to": [0, 65535], "where i will walke till thou returne to me": [0, 65535], "i will walke till thou returne to me if": [0, 65535], "will walke till thou returne to me if euerie": [0, 65535], "walke till thou returne to me if euerie one": [0, 65535], "till thou returne to me if euerie one knowes": [0, 65535], "thou returne to me if euerie one knowes vs": [0, 65535], "returne to me if euerie one knowes vs and": [0, 65535], "to me if euerie one knowes vs and we": [0, 65535], "me if euerie one knowes vs and we know": [0, 65535], "if euerie one knowes vs and we know none": [0, 65535], "euerie one knowes vs and we know none 'tis": [0, 65535], "one knowes vs and we know none 'tis time": [0, 65535], "knowes vs and we know none 'tis time i": [0, 65535], "vs and we know none 'tis time i thinke": [0, 65535], "and we know none 'tis time i thinke to": [0, 65535], "we know none 'tis time i thinke to trudge": [0, 65535], "know none 'tis time i thinke to trudge packe": [0, 65535], "none 'tis time i thinke to trudge packe and": [0, 65535], "'tis time i thinke to trudge packe and be": [0, 65535], "time i thinke to trudge packe and be gone": [0, 65535], "i thinke to trudge packe and be gone dro": [0, 65535], "thinke to trudge packe and be gone dro as": [0, 65535], "to trudge packe and be gone dro as from": [0, 65535], "trudge packe and be gone dro as from a": [0, 65535], "packe and be gone dro as from a beare": [0, 65535], "and be gone dro as from a beare a": [0, 65535], "be gone dro as from a beare a man": [0, 65535], "gone dro as from a beare a man would": [0, 65535], "dro as from a beare a man would run": [0, 65535], "as from a beare a man would run for": [0, 65535], "from a beare a man would run for life": [0, 65535], "a beare a man would run for life so": [0, 65535], "beare a man would run for life so flie": [0, 65535], "a man would run for life so flie i": [0, 65535], "man would run for life so flie i from": [0, 65535], "would run for life so flie i from her": [0, 65535], "run for life so flie i from her that": [0, 65535], "for life so flie i from her that would": [0, 65535], "life so flie i from her that would be": [0, 65535], "so flie i from her that would be my": [0, 65535], "flie i from her that would be my wife": [0, 65535], "i from her that would be my wife exit": [0, 65535], "from her that would be my wife exit anti": [0, 65535], "her that would be my wife exit anti there's": [0, 65535], "that would be my wife exit anti there's none": [0, 65535], "would be my wife exit anti there's none but": [0, 65535], "be my wife exit anti there's none but witches": [0, 65535], "my wife exit anti there's none but witches do": [0, 65535], "wife exit anti there's none but witches do inhabite": [0, 65535], "exit anti there's none but witches do inhabite heere": [0, 65535], "anti there's none but witches do inhabite heere and": [0, 65535], "there's none but witches do inhabite heere and therefore": [0, 65535], "none but witches do inhabite heere and therefore 'tis": [0, 65535], "but witches do inhabite heere and therefore 'tis hie": [0, 65535], "witches do inhabite heere and therefore 'tis hie time": [0, 65535], "do inhabite heere and therefore 'tis hie time that": [0, 65535], "inhabite heere and therefore 'tis hie time that i": [0, 65535], "heere and therefore 'tis hie time that i were": [0, 65535], "and therefore 'tis hie time that i were hence": [0, 65535], "therefore 'tis hie time that i were hence she": [0, 65535], "'tis hie time that i were hence she that": [0, 65535], "hie time that i were hence she that doth": [0, 65535], "time that i were hence she that doth call": [0, 65535], "that i were hence she that doth call me": [0, 65535], "i were hence she that doth call me husband": [0, 65535], "were hence she that doth call me husband euen": [0, 65535], "hence she that doth call me husband euen my": [0, 65535], "she that doth call me husband euen my soule": [0, 65535], "that doth call me husband euen my soule doth": [0, 65535], "doth call me husband euen my soule doth for": [0, 65535], "call me husband euen my soule doth for a": [0, 65535], "me husband euen my soule doth for a wife": [0, 65535], "husband euen my soule doth for a wife abhorre": [0, 65535], "euen my soule doth for a wife abhorre but": [0, 65535], "my soule doth for a wife abhorre but her": [0, 65535], "soule doth for a wife abhorre but her faire": [0, 65535], "doth for a wife abhorre but her faire sister": [0, 65535], "for a wife abhorre but her faire sister possest": [0, 65535], "a wife abhorre but her faire sister possest with": [0, 65535], "wife abhorre but her faire sister possest with such": [0, 65535], "abhorre but her faire sister possest with such a": [0, 65535], "but her faire sister possest with such a gentle": [0, 65535], "her faire sister possest with such a gentle soueraigne": [0, 65535], "faire sister possest with such a gentle soueraigne grace": [0, 65535], "sister possest with such a gentle soueraigne grace of": [0, 65535], "possest with such a gentle soueraigne grace of such": [0, 65535], "with such a gentle soueraigne grace of such inchanting": [0, 65535], "such a gentle soueraigne grace of such inchanting presence": [0, 65535], "a gentle soueraigne grace of such inchanting presence and": [0, 65535], "gentle soueraigne grace of such inchanting presence and discourse": [0, 65535], "soueraigne grace of such inchanting presence and discourse hath": [0, 65535], "grace of such inchanting presence and discourse hath almost": [0, 65535], "of such inchanting presence and discourse hath almost made": [0, 65535], "such inchanting presence and discourse hath almost made me": [0, 65535], "inchanting presence and discourse hath almost made me traitor": [0, 65535], "presence and discourse hath almost made me traitor to": [0, 65535], "and discourse hath almost made me traitor to my": [0, 65535], "discourse hath almost made me traitor to my selfe": [0, 65535], "hath almost made me traitor to my selfe but": [0, 65535], "almost made me traitor to my selfe but least": [0, 65535], "made me traitor to my selfe but least my": [0, 65535], "me traitor to my selfe but least my selfe": [0, 65535], "traitor to my selfe but least my selfe be": [0, 65535], "to my selfe but least my selfe be guilty": [0, 65535], "my selfe but least my selfe be guilty to": [0, 65535], "selfe but least my selfe be guilty to selfe": [0, 65535], "but least my selfe be guilty to selfe wrong": [0, 65535], "least my selfe be guilty to selfe wrong ile": [0, 65535], "my selfe be guilty to selfe wrong ile stop": [0, 65535], "selfe be guilty to selfe wrong ile stop mine": [0, 65535], "be guilty to selfe wrong ile stop mine eares": [0, 65535], "guilty to selfe wrong ile stop mine eares against": [0, 65535], "to selfe wrong ile stop mine eares against the": [0, 65535], "selfe wrong ile stop mine eares against the mermaids": [0, 65535], "wrong ile stop mine eares against the mermaids song": [0, 65535], "ile stop mine eares against the mermaids song enter": [0, 65535], "stop mine eares against the mermaids song enter angelo": [0, 65535], "mine eares against the mermaids song enter angelo with": [0, 65535], "eares against the mermaids song enter angelo with the": [0, 65535], "against the mermaids song enter angelo with the chaine": [0, 65535], "the mermaids song enter angelo with the chaine ang": [0, 65535], "mermaids song enter angelo with the chaine ang mr": [0, 65535], "song enter angelo with the chaine ang mr antipholus": [0, 65535], "enter angelo with the chaine ang mr antipholus anti": [0, 65535], "angelo with the chaine ang mr antipholus anti i": [0, 65535], "with the chaine ang mr antipholus anti i that's": [0, 65535], "the chaine ang mr antipholus anti i that's my": [0, 65535], "chaine ang mr antipholus anti i that's my name": [0, 65535], "ang mr antipholus anti i that's my name ang": [0, 65535], "mr antipholus anti i that's my name ang i": [0, 65535], "antipholus anti i that's my name ang i know": [0, 65535], "anti i that's my name ang i know it": [0, 65535], "i that's my name ang i know it well": [0, 65535], "that's my name ang i know it well sir": [0, 65535], "my name ang i know it well sir loe": [0, 65535], "name ang i know it well sir loe here's": [0, 65535], "ang i know it well sir loe here's the": [0, 65535], "i know it well sir loe here's the chaine": [0, 65535], "know it well sir loe here's the chaine i": [0, 65535], "it well sir loe here's the chaine i thought": [0, 65535], "well sir loe here's the chaine i thought to": [0, 65535], "sir loe here's the chaine i thought to haue": [0, 65535], "loe here's the chaine i thought to haue tane": [0, 65535], "here's the chaine i thought to haue tane you": [0, 65535], "the chaine i thought to haue tane you at": [0, 65535], "chaine i thought to haue tane you at the": [0, 65535], "i thought to haue tane you at the porpentine": [0, 65535], "thought to haue tane you at the porpentine the": [0, 65535], "to haue tane you at the porpentine the chaine": [0, 65535], "haue tane you at the porpentine the chaine vnfinish'd": [0, 65535], "tane you at the porpentine the chaine vnfinish'd made": [0, 65535], "you at the porpentine the chaine vnfinish'd made me": [0, 65535], "at the porpentine the chaine vnfinish'd made me stay": [0, 65535], "the porpentine the chaine vnfinish'd made me stay thus": [0, 65535], "porpentine the chaine vnfinish'd made me stay thus long": [0, 65535], "the chaine vnfinish'd made me stay thus long anti": [0, 65535], "chaine vnfinish'd made me stay thus long anti what": [0, 65535], "vnfinish'd made me stay thus long anti what is": [0, 65535], "made me stay thus long anti what is your": [0, 65535], "me stay thus long anti what is your will": [0, 65535], "stay thus long anti what is your will that": [0, 65535], "thus long anti what is your will that i": [0, 65535], "long anti what is your will that i shal": [0, 65535], "anti what is your will that i shal do": [0, 65535], "what is your will that i shal do with": [0, 65535], "is your will that i shal do with this": [0, 65535], "your will that i shal do with this ang": [0, 65535], "will that i shal do with this ang what": [0, 65535], "that i shal do with this ang what please": [0, 65535], "i shal do with this ang what please your": [0, 65535], "shal do with this ang what please your selfe": [0, 65535], "do with this ang what please your selfe sir": [0, 65535], "with this ang what please your selfe sir i": [0, 65535], "this ang what please your selfe sir i haue": [0, 65535], "ang what please your selfe sir i haue made": [0, 65535], "what please your selfe sir i haue made it": [0, 65535], "please your selfe sir i haue made it for": [0, 65535], "your selfe sir i haue made it for you": [0, 65535], "selfe sir i haue made it for you anti": [0, 65535], "sir i haue made it for you anti made": [0, 65535], "i haue made it for you anti made it": [0, 65535], "haue made it for you anti made it for": [0, 65535], "made it for you anti made it for me": [0, 65535], "it for you anti made it for me sir": [0, 65535], "for you anti made it for me sir i": [0, 65535], "you anti made it for me sir i bespoke": [0, 65535], "anti made it for me sir i bespoke it": [0, 65535], "made it for me sir i bespoke it not": [0, 65535], "it for me sir i bespoke it not ang": [0, 65535], "for me sir i bespoke it not ang not": [0, 65535], "me sir i bespoke it not ang not once": [0, 65535], "sir i bespoke it not ang not once nor": [0, 65535], "i bespoke it not ang not once nor twice": [0, 65535], "bespoke it not ang not once nor twice but": [0, 65535], "it not ang not once nor twice but twentie": [0, 65535], "not ang not once nor twice but twentie times": [0, 65535], "ang not once nor twice but twentie times you": [0, 65535], "not once nor twice but twentie times you haue": [0, 65535], "once nor twice but twentie times you haue go": [0, 65535], "nor twice but twentie times you haue go home": [0, 65535], "twice but twentie times you haue go home with": [0, 65535], "but twentie times you haue go home with it": [0, 65535], "twentie times you haue go home with it and": [0, 65535], "times you haue go home with it and please": [0, 65535], "you haue go home with it and please your": [0, 65535], "haue go home with it and please your wife": [0, 65535], "go home with it and please your wife withall": [0, 65535], "home with it and please your wife withall and": [0, 65535], "with it and please your wife withall and soone": [0, 65535], "it and please your wife withall and soone at": [0, 65535], "and please your wife withall and soone at supper": [0, 65535], "please your wife withall and soone at supper time": [0, 65535], "your wife withall and soone at supper time ile": [0, 65535], "wife withall and soone at supper time ile visit": [0, 65535], "withall and soone at supper time ile visit you": [0, 65535], "and soone at supper time ile visit you and": [0, 65535], "soone at supper time ile visit you and then": [0, 65535], "at supper time ile visit you and then receiue": [0, 65535], "supper time ile visit you and then receiue my": [0, 65535], "time ile visit you and then receiue my money": [0, 65535], "ile visit you and then receiue my money for": [0, 65535], "visit you and then receiue my money for the": [0, 65535], "you and then receiue my money for the chaine": [0, 65535], "and then receiue my money for the chaine anti": [0, 65535], "then receiue my money for the chaine anti i": [0, 65535], "receiue my money for the chaine anti i pray": [0, 65535], "my money for the chaine anti i pray you": [0, 65535], "money for the chaine anti i pray you sir": [0, 65535], "for the chaine anti i pray you sir receiue": [0, 65535], "the chaine anti i pray you sir receiue the": [0, 65535], "chaine anti i pray you sir receiue the money": [0, 65535], "anti i pray you sir receiue the money now": [0, 65535], "i pray you sir receiue the money now for": [0, 65535], "pray you sir receiue the money now for feare": [0, 65535], "you sir receiue the money now for feare you": [0, 65535], "sir receiue the money now for feare you ne're": [0, 65535], "receiue the money now for feare you ne're see": [0, 65535], "the money now for feare you ne're see chaine": [0, 65535], "money now for feare you ne're see chaine nor": [0, 65535], "now for feare you ne're see chaine nor mony": [0, 65535], "for feare you ne're see chaine nor mony more": [0, 65535], "feare you ne're see chaine nor mony more ang": [0, 65535], "you ne're see chaine nor mony more ang you": [0, 65535], "ne're see chaine nor mony more ang you are": [0, 65535], "see chaine nor mony more ang you are a": [0, 65535], "chaine nor mony more ang you are a merry": [0, 65535], "nor mony more ang you are a merry man": [0, 65535], "mony more ang you are a merry man sir": [0, 65535], "more ang you are a merry man sir fare": [0, 65535], "ang you are a merry man sir fare you": [0, 65535], "you are a merry man sir fare you well": [0, 65535], "are a merry man sir fare you well exit": [0, 65535], "a merry man sir fare you well exit ant": [0, 65535], "merry man sir fare you well exit ant what": [0, 65535], "man sir fare you well exit ant what i": [0, 65535], "sir fare you well exit ant what i should": [0, 65535], "fare you well exit ant what i should thinke": [0, 65535], "you well exit ant what i should thinke of": [0, 65535], "well exit ant what i should thinke of this": [0, 65535], "exit ant what i should thinke of this i": [0, 65535], "ant what i should thinke of this i cannot": [0, 65535], "what i should thinke of this i cannot tell": [0, 65535], "i should thinke of this i cannot tell but": [0, 65535], "should thinke of this i cannot tell but this": [0, 65535], "thinke of this i cannot tell but this i": [0, 65535], "of this i cannot tell but this i thinke": [0, 65535], "this i cannot tell but this i thinke there's": [0, 65535], "i cannot tell but this i thinke there's no": [0, 65535], "cannot tell but this i thinke there's no man": [0, 65535], "tell but this i thinke there's no man is": [0, 65535], "but this i thinke there's no man is so": [0, 65535], "this i thinke there's no man is so vaine": [0, 65535], "i thinke there's no man is so vaine that": [0, 65535], "thinke there's no man is so vaine that would": [0, 65535], "there's no man is so vaine that would refuse": [0, 65535], "no man is so vaine that would refuse so": [0, 65535], "man is so vaine that would refuse so faire": [0, 65535], "is so vaine that would refuse so faire an": [0, 65535], "so vaine that would refuse so faire an offer'd": [0, 65535], "vaine that would refuse so faire an offer'd chaine": [0, 65535], "that would refuse so faire an offer'd chaine i": [0, 65535], "would refuse so faire an offer'd chaine i see": [0, 65535], "refuse so faire an offer'd chaine i see a": [0, 65535], "so faire an offer'd chaine i see a man": [0, 65535], "faire an offer'd chaine i see a man heere": [0, 65535], "an offer'd chaine i see a man heere needs": [0, 65535], "offer'd chaine i see a man heere needs not": [0, 65535], "chaine i see a man heere needs not liue": [0, 65535], "i see a man heere needs not liue by": [0, 65535], "see a man heere needs not liue by shifts": [0, 65535], "a man heere needs not liue by shifts when": [0, 65535], "man heere needs not liue by shifts when in": [0, 65535], "heere needs not liue by shifts when in the": [0, 65535], "needs not liue by shifts when in the streets": [0, 65535], "not liue by shifts when in the streets he": [0, 65535], "liue by shifts when in the streets he meetes": [0, 65535], "by shifts when in the streets he meetes such": [0, 65535], "shifts when in the streets he meetes such golden": [0, 65535], "when in the streets he meetes such golden gifts": [0, 65535], "in the streets he meetes such golden gifts ile": [0, 65535], "the streets he meetes such golden gifts ile to": [0, 65535], "streets he meetes such golden gifts ile to the": [0, 65535], "he meetes such golden gifts ile to the mart": [0, 65535], "meetes such golden gifts ile to the mart and": [0, 65535], "such golden gifts ile to the mart and there": [0, 65535], "golden gifts ile to the mart and there for": [0, 65535], "gifts ile to the mart and there for dromio": [0, 65535], "ile to the mart and there for dromio stay": [0, 65535], "to the mart and there for dromio stay if": [0, 65535], "the mart and there for dromio stay if any": [0, 65535], "mart and there for dromio stay if any ship": [0, 65535], "and there for dromio stay if any ship put": [0, 65535], "there for dromio stay if any ship put out": [0, 65535], "for dromio stay if any ship put out then": [0, 65535], "dromio stay if any ship put out then straight": [0, 65535], "stay if any ship put out then straight away": [0, 65535], "if any ship put out then straight away exit": [0, 65535], "actus tertius scena prima enter antipholus of ephesus his man": [0, 65535], "tertius scena prima enter antipholus of ephesus his man dromio": [0, 65535], "scena prima enter antipholus of ephesus his man dromio angelo": [0, 65535], "prima enter antipholus of ephesus his man dromio angelo the": [0, 65535], "enter antipholus of ephesus his man dromio angelo the goldsmith": [0, 65535], "antipholus of ephesus his man dromio angelo the goldsmith and": [0, 65535], "of ephesus his man dromio angelo the goldsmith and balthaser": [0, 65535], "ephesus his man dromio angelo the goldsmith and balthaser the": [0, 65535], "his man dromio angelo the goldsmith and balthaser the merchant": [0, 65535], "man dromio angelo the goldsmith and balthaser the merchant e": [0, 65535], "dromio angelo the goldsmith and balthaser the merchant e anti": [0, 65535], "angelo the goldsmith and balthaser the merchant e anti good": [0, 65535], "the goldsmith and balthaser the merchant e anti good signior": [0, 65535], "goldsmith and balthaser the merchant e anti good signior angelo": [0, 65535], "and balthaser the merchant e anti good signior angelo you": [0, 65535], "balthaser the merchant e anti good signior angelo you must": [0, 65535], "the merchant e anti good signior angelo you must excuse": [0, 65535], "merchant e anti good signior angelo you must excuse vs": [0, 65535], "e anti good signior angelo you must excuse vs all": [0, 65535], "anti good signior angelo you must excuse vs all my": [0, 65535], "good signior angelo you must excuse vs all my wife": [0, 65535], "signior angelo you must excuse vs all my wife is": [0, 65535], "angelo you must excuse vs all my wife is shrewish": [0, 65535], "you must excuse vs all my wife is shrewish when": [0, 65535], "must excuse vs all my wife is shrewish when i": [0, 65535], "excuse vs all my wife is shrewish when i keepe": [0, 65535], "vs all my wife is shrewish when i keepe not": [0, 65535], "all my wife is shrewish when i keepe not howres": [0, 65535], "my wife is shrewish when i keepe not howres say": [0, 65535], "wife is shrewish when i keepe not howres say that": [0, 65535], "is shrewish when i keepe not howres say that i": [0, 65535], "shrewish when i keepe not howres say that i lingerd": [0, 65535], "when i keepe not howres say that i lingerd with": [0, 65535], "i keepe not howres say that i lingerd with you": [0, 65535], "keepe not howres say that i lingerd with you at": [0, 65535], "not howres say that i lingerd with you at your": [0, 65535], "howres say that i lingerd with you at your shop": [0, 65535], "say that i lingerd with you at your shop to": [0, 65535], "that i lingerd with you at your shop to see": [0, 65535], "i lingerd with you at your shop to see the": [0, 65535], "lingerd with you at your shop to see the making": [0, 65535], "with you at your shop to see the making of": [0, 65535], "you at your shop to see the making of her": [0, 65535], "at your shop to see the making of her carkanet": [0, 65535], "your shop to see the making of her carkanet and": [0, 65535], "shop to see the making of her carkanet and that": [0, 65535], "to see the making of her carkanet and that to": [0, 65535], "see the making of her carkanet and that to morrow": [0, 65535], "the making of her carkanet and that to morrow you": [0, 65535], "making of her carkanet and that to morrow you will": [0, 65535], "of her carkanet and that to morrow you will bring": [0, 65535], "her carkanet and that to morrow you will bring it": [0, 65535], "carkanet and that to morrow you will bring it home": [0, 65535], "and that to morrow you will bring it home but": [0, 65535], "that to morrow you will bring it home but here's": [0, 65535], "to morrow you will bring it home but here's a": [0, 65535], "morrow you will bring it home but here's a villaine": [0, 65535], "you will bring it home but here's a villaine that": [0, 65535], "will bring it home but here's a villaine that would": [0, 65535], "bring it home but here's a villaine that would face": [0, 65535], "it home but here's a villaine that would face me": [0, 65535], "home but here's a villaine that would face me downe": [0, 65535], "but here's a villaine that would face me downe he": [0, 65535], "here's a villaine that would face me downe he met": [0, 65535], "a villaine that would face me downe he met me": [0, 65535], "villaine that would face me downe he met me on": [0, 65535], "that would face me downe he met me on the": [0, 65535], "would face me downe he met me on the mart": [0, 65535], "face me downe he met me on the mart and": [0, 65535], "me downe he met me on the mart and that": [0, 65535], "downe he met me on the mart and that i": [0, 65535], "he met me on the mart and that i beat": [0, 65535], "met me on the mart and that i beat him": [0, 65535], "me on the mart and that i beat him and": [0, 65535], "on the mart and that i beat him and charg'd": [0, 65535], "the mart and that i beat him and charg'd him": [0, 65535], "mart and that i beat him and charg'd him with": [0, 65535], "and that i beat him and charg'd him with a": [0, 65535], "that i beat him and charg'd him with a thousand": [0, 65535], "i beat him and charg'd him with a thousand markes": [0, 65535], "beat him and charg'd him with a thousand markes in": [0, 65535], "him and charg'd him with a thousand markes in gold": [0, 65535], "and charg'd him with a thousand markes in gold and": [0, 65535], "charg'd him with a thousand markes in gold and that": [0, 65535], "him with a thousand markes in gold and that i": [0, 65535], "with a thousand markes in gold and that i did": [0, 65535], "a thousand markes in gold and that i did denie": [0, 65535], "thousand markes in gold and that i did denie my": [0, 65535], "markes in gold and that i did denie my wife": [0, 65535], "in gold and that i did denie my wife and": [0, 65535], "gold and that i did denie my wife and house": [0, 65535], "and that i did denie my wife and house thou": [0, 65535], "that i did denie my wife and house thou drunkard": [0, 65535], "i did denie my wife and house thou drunkard thou": [0, 65535], "did denie my wife and house thou drunkard thou what": [0, 65535], "denie my wife and house thou drunkard thou what didst": [0, 65535], "my wife and house thou drunkard thou what didst thou": [0, 65535], "wife and house thou drunkard thou what didst thou meane": [0, 65535], "and house thou drunkard thou what didst thou meane by": [0, 65535], "house thou drunkard thou what didst thou meane by this": [0, 65535], "thou drunkard thou what didst thou meane by this e": [0, 65535], "drunkard thou what didst thou meane by this e dro": [0, 65535], "thou what didst thou meane by this e dro say": [0, 65535], "what didst thou meane by this e dro say what": [0, 65535], "didst thou meane by this e dro say what you": [0, 65535], "thou meane by this e dro say what you wil": [0, 65535], "meane by this e dro say what you wil sir": [0, 65535], "by this e dro say what you wil sir but": [0, 65535], "this e dro say what you wil sir but i": [0, 65535], "e dro say what you wil sir but i know": [0, 65535], "dro say what you wil sir but i know what": [0, 65535], "say what you wil sir but i know what i": [0, 65535], "what you wil sir but i know what i know": [0, 65535], "you wil sir but i know what i know that": [0, 65535], "wil sir but i know what i know that you": [0, 65535], "sir but i know what i know that you beat": [0, 65535], "but i know what i know that you beat me": [0, 65535], "i know what i know that you beat me at": [0, 65535], "know what i know that you beat me at the": [0, 65535], "what i know that you beat me at the mart": [0, 65535], "i know that you beat me at the mart i": [0, 65535], "know that you beat me at the mart i haue": [0, 65535], "that you beat me at the mart i haue your": [0, 65535], "you beat me at the mart i haue your hand": [0, 65535], "beat me at the mart i haue your hand to": [0, 65535], "me at the mart i haue your hand to show": [0, 65535], "at the mart i haue your hand to show if": [0, 65535], "the mart i haue your hand to show if the": [0, 65535], "mart i haue your hand to show if the skin": [0, 65535], "i haue your hand to show if the skin were": [0, 65535], "haue your hand to show if the skin were parchment": [0, 65535], "your hand to show if the skin were parchment the": [0, 65535], "hand to show if the skin were parchment the blows": [0, 65535], "to show if the skin were parchment the blows you": [0, 65535], "show if the skin were parchment the blows you gaue": [0, 65535], "if the skin were parchment the blows you gaue were": [0, 65535], "the skin were parchment the blows you gaue were ink": [0, 65535], "skin were parchment the blows you gaue were ink your": [0, 65535], "were parchment the blows you gaue were ink your owne": [0, 65535], "parchment the blows you gaue were ink your owne hand": [0, 65535], "the blows you gaue were ink your owne hand writing": [0, 65535], "blows you gaue were ink your owne hand writing would": [0, 65535], "you gaue were ink your owne hand writing would tell": [0, 65535], "gaue were ink your owne hand writing would tell you": [0, 65535], "were ink your owne hand writing would tell you what": [0, 65535], "ink your owne hand writing would tell you what i": [0, 65535], "your owne hand writing would tell you what i thinke": [0, 65535], "owne hand writing would tell you what i thinke e": [0, 65535], "hand writing would tell you what i thinke e ant": [0, 65535], "writing would tell you what i thinke e ant i": [0, 65535], "would tell you what i thinke e ant i thinke": [0, 65535], "tell you what i thinke e ant i thinke thou": [0, 65535], "you what i thinke e ant i thinke thou art": [0, 65535], "what i thinke e ant i thinke thou art an": [0, 65535], "i thinke e ant i thinke thou art an asse": [0, 65535], "thinke e ant i thinke thou art an asse e": [0, 65535], "e ant i thinke thou art an asse e dro": [0, 65535], "ant i thinke thou art an asse e dro marry": [0, 65535], "i thinke thou art an asse e dro marry so": [0, 65535], "thinke thou art an asse e dro marry so it": [0, 65535], "thou art an asse e dro marry so it doth": [0, 65535], "art an asse e dro marry so it doth appeare": [0, 65535], "an asse e dro marry so it doth appeare by": [0, 65535], "asse e dro marry so it doth appeare by the": [0, 65535], "e dro marry so it doth appeare by the wrongs": [0, 65535], "dro marry so it doth appeare by the wrongs i": [0, 65535], "marry so it doth appeare by the wrongs i suffer": [0, 65535], "so it doth appeare by the wrongs i suffer and": [0, 65535], "it doth appeare by the wrongs i suffer and the": [0, 65535], "doth appeare by the wrongs i suffer and the blowes": [0, 65535], "appeare by the wrongs i suffer and the blowes i": [0, 65535], "by the wrongs i suffer and the blowes i beare": [0, 65535], "the wrongs i suffer and the blowes i beare i": [0, 65535], "wrongs i suffer and the blowes i beare i should": [0, 65535], "i suffer and the blowes i beare i should kicke": [0, 65535], "suffer and the blowes i beare i should kicke being": [0, 65535], "and the blowes i beare i should kicke being kickt": [0, 65535], "the blowes i beare i should kicke being kickt and": [0, 65535], "blowes i beare i should kicke being kickt and being": [0, 65535], "i beare i should kicke being kickt and being at": [0, 65535], "beare i should kicke being kickt and being at that": [0, 65535], "i should kicke being kickt and being at that passe": [0, 65535], "should kicke being kickt and being at that passe you": [0, 65535], "kicke being kickt and being at that passe you would": [0, 65535], "being kickt and being at that passe you would keepe": [0, 65535], "kickt and being at that passe you would keepe from": [0, 65535], "and being at that passe you would keepe from my": [0, 65535], "being at that passe you would keepe from my heeles": [0, 65535], "at that passe you would keepe from my heeles and": [0, 65535], "that passe you would keepe from my heeles and beware": [0, 65535], "passe you would keepe from my heeles and beware of": [0, 65535], "you would keepe from my heeles and beware of an": [0, 65535], "would keepe from my heeles and beware of an asse": [0, 65535], "keepe from my heeles and beware of an asse e": [0, 65535], "from my heeles and beware of an asse e an": [0, 65535], "my heeles and beware of an asse e an y'are": [0, 65535], "heeles and beware of an asse e an y'are sad": [0, 65535], "and beware of an asse e an y'are sad signior": [0, 65535], "beware of an asse e an y'are sad signior balthazar": [0, 65535], "of an asse e an y'are sad signior balthazar pray": [0, 65535], "an asse e an y'are sad signior balthazar pray god": [0, 65535], "asse e an y'are sad signior balthazar pray god our": [0, 65535], "e an y'are sad signior balthazar pray god our cheer": [0, 65535], "an y'are sad signior balthazar pray god our cheer may": [0, 65535], "y'are sad signior balthazar pray god our cheer may answer": [0, 65535], "sad signior balthazar pray god our cheer may answer my": [0, 65535], "signior balthazar pray god our cheer may answer my good": [0, 65535], "balthazar pray god our cheer may answer my good will": [0, 65535], "pray god our cheer may answer my good will and": [0, 65535], "god our cheer may answer my good will and your": [0, 65535], "our cheer may answer my good will and your good": [0, 65535], "cheer may answer my good will and your good welcom": [0, 65535], "may answer my good will and your good welcom here": [0, 65535], "answer my good will and your good welcom here bal": [0, 65535], "my good will and your good welcom here bal i": [0, 65535], "good will and your good welcom here bal i hold": [0, 65535], "will and your good welcom here bal i hold your": [0, 65535], "and your good welcom here bal i hold your dainties": [0, 65535], "your good welcom here bal i hold your dainties cheap": [0, 65535], "good welcom here bal i hold your dainties cheap sir": [0, 65535], "welcom here bal i hold your dainties cheap sir your": [0, 65535], "here bal i hold your dainties cheap sir your welcom": [0, 65535], "bal i hold your dainties cheap sir your welcom deer": [0, 65535], "i hold your dainties cheap sir your welcom deer e": [0, 65535], "hold your dainties cheap sir your welcom deer e an": [0, 65535], "your dainties cheap sir your welcom deer e an oh": [0, 65535], "dainties cheap sir your welcom deer e an oh signior": [0, 65535], "cheap sir your welcom deer e an oh signior balthazar": [0, 65535], "sir your welcom deer e an oh signior balthazar either": [0, 65535], "your welcom deer e an oh signior balthazar either at": [0, 65535], "welcom deer e an oh signior balthazar either at flesh": [0, 65535], "deer e an oh signior balthazar either at flesh or": [0, 65535], "e an oh signior balthazar either at flesh or fish": [0, 65535], "an oh signior balthazar either at flesh or fish a": [0, 65535], "oh signior balthazar either at flesh or fish a table": [0, 65535], "signior balthazar either at flesh or fish a table full": [0, 65535], "balthazar either at flesh or fish a table full of": [0, 65535], "either at flesh or fish a table full of welcome": [0, 65535], "at flesh or fish a table full of welcome makes": [0, 65535], "flesh or fish a table full of welcome makes scarce": [0, 65535], "or fish a table full of welcome makes scarce one": [0, 65535], "fish a table full of welcome makes scarce one dainty": [0, 65535], "a table full of welcome makes scarce one dainty dish": [0, 65535], "table full of welcome makes scarce one dainty dish bal": [0, 65535], "full of welcome makes scarce one dainty dish bal good": [0, 65535], "of welcome makes scarce one dainty dish bal good meat": [0, 65535], "welcome makes scarce one dainty dish bal good meat sir": [0, 65535], "makes scarce one dainty dish bal good meat sir is": [0, 65535], "scarce one dainty dish bal good meat sir is co": [0, 65535], "one dainty dish bal good meat sir is co m": [0, 65535], "dainty dish bal good meat sir is co m mon": [0, 65535], "dish bal good meat sir is co m mon that": [0, 65535], "bal good meat sir is co m mon that euery": [0, 65535], "good meat sir is co m mon that euery churle": [0, 65535], "meat sir is co m mon that euery churle affords": [0, 65535], "sir is co m mon that euery churle affords anti": [0, 65535], "is co m mon that euery churle affords anti and": [0, 65535], "co m mon that euery churle affords anti and welcome": [0, 65535], "m mon that euery churle affords anti and welcome more": [0, 65535], "mon that euery churle affords anti and welcome more common": [0, 65535], "that euery churle affords anti and welcome more common for": [0, 65535], "euery churle affords anti and welcome more common for thats": [0, 65535], "churle affords anti and welcome more common for thats nothing": [0, 65535], "affords anti and welcome more common for thats nothing but": [0, 65535], "anti and welcome more common for thats nothing but words": [0, 65535], "and welcome more common for thats nothing but words bal": [0, 65535], "welcome more common for thats nothing but words bal small": [0, 65535], "more common for thats nothing but words bal small cheere": [0, 65535], "common for thats nothing but words bal small cheere and": [0, 65535], "for thats nothing but words bal small cheere and great": [0, 65535], "thats nothing but words bal small cheere and great welcome": [0, 65535], "nothing but words bal small cheere and great welcome makes": [0, 65535], "but words bal small cheere and great welcome makes a": [0, 65535], "words bal small cheere and great welcome makes a merrie": [0, 65535], "bal small cheere and great welcome makes a merrie feast": [0, 65535], "small cheere and great welcome makes a merrie feast anti": [0, 65535], "cheere and great welcome makes a merrie feast anti i": [0, 65535], "and great welcome makes a merrie feast anti i to": [0, 65535], "great welcome makes a merrie feast anti i to a": [0, 65535], "welcome makes a merrie feast anti i to a niggardly": [0, 65535], "makes a merrie feast anti i to a niggardly host": [0, 65535], "a merrie feast anti i to a niggardly host and": [0, 65535], "merrie feast anti i to a niggardly host and more": [0, 65535], "feast anti i to a niggardly host and more sparing": [0, 65535], "anti i to a niggardly host and more sparing guest": [0, 65535], "i to a niggardly host and more sparing guest but": [0, 65535], "to a niggardly host and more sparing guest but though": [0, 65535], "a niggardly host and more sparing guest but though my": [0, 65535], "niggardly host and more sparing guest but though my cates": [0, 65535], "host and more sparing guest but though my cates be": [0, 65535], "and more sparing guest but though my cates be meane": [0, 65535], "more sparing guest but though my cates be meane take": [0, 65535], "sparing guest but though my cates be meane take them": [0, 65535], "guest but though my cates be meane take them in": [0, 65535], "but though my cates be meane take them in good": [0, 65535], "though my cates be meane take them in good part": [0, 65535], "my cates be meane take them in good part better": [0, 65535], "cates be meane take them in good part better cheere": [0, 65535], "be meane take them in good part better cheere may": [0, 65535], "meane take them in good part better cheere may you": [0, 65535], "take them in good part better cheere may you haue": [0, 65535], "them in good part better cheere may you haue but": [0, 65535], "in good part better cheere may you haue but not": [0, 65535], "good part better cheere may you haue but not with": [0, 65535], "part better cheere may you haue but not with better": [0, 65535], "better cheere may you haue but not with better hart": [0, 65535], "cheere may you haue but not with better hart but": [0, 65535], "may you haue but not with better hart but soft": [0, 65535], "you haue but not with better hart but soft my": [0, 65535], "haue but not with better hart but soft my doore": [0, 65535], "but not with better hart but soft my doore is": [0, 65535], "not with better hart but soft my doore is lockt": [0, 65535], "with better hart but soft my doore is lockt goe": [0, 65535], "better hart but soft my doore is lockt goe bid": [0, 65535], "hart but soft my doore is lockt goe bid them": [0, 65535], "but soft my doore is lockt goe bid them let": [0, 65535], "soft my doore is lockt goe bid them let vs": [0, 65535], "my doore is lockt goe bid them let vs in": [0, 65535], "doore is lockt goe bid them let vs in e": [0, 65535], "is lockt goe bid them let vs in e dro": [0, 65535], "lockt goe bid them let vs in e dro maud": [0, 65535], "goe bid them let vs in e dro maud briget": [0, 65535], "bid them let vs in e dro maud briget marian": [0, 65535], "them let vs in e dro maud briget marian cisley": [0, 65535], "let vs in e dro maud briget marian cisley gillian": [0, 65535], "vs in e dro maud briget marian cisley gillian ginn": [0, 65535], "in e dro maud briget marian cisley gillian ginn s": [0, 65535], "e dro maud briget marian cisley gillian ginn s dro": [0, 65535], "dro maud briget marian cisley gillian ginn s dro mome": [0, 65535], "maud briget marian cisley gillian ginn s dro mome malthorse": [0, 65535], "briget marian cisley gillian ginn s dro mome malthorse capon": [0, 65535], "marian cisley gillian ginn s dro mome malthorse capon coxcombe": [0, 65535], "cisley gillian ginn s dro mome malthorse capon coxcombe idiot": [0, 65535], "gillian ginn s dro mome malthorse capon coxcombe idiot patch": [0, 65535], "ginn s dro mome malthorse capon coxcombe idiot patch either": [0, 65535], "s dro mome malthorse capon coxcombe idiot patch either get": [0, 65535], "dro mome malthorse capon coxcombe idiot patch either get thee": [0, 65535], "mome malthorse capon coxcombe idiot patch either get thee from": [0, 65535], "malthorse capon coxcombe idiot patch either get thee from the": [0, 65535], "capon coxcombe idiot patch either get thee from the dore": [0, 65535], "coxcombe idiot patch either get thee from the dore or": [0, 65535], "idiot patch either get thee from the dore or sit": [0, 65535], "patch either get thee from the dore or sit downe": [0, 65535], "either get thee from the dore or sit downe at": [0, 65535], "get thee from the dore or sit downe at the": [0, 65535], "thee from the dore or sit downe at the hatch": [0, 65535], "from the dore or sit downe at the hatch dost": [0, 65535], "the dore or sit downe at the hatch dost thou": [0, 65535], "dore or sit downe at the hatch dost thou coniure": [0, 65535], "or sit downe at the hatch dost thou coniure for": [0, 65535], "sit downe at the hatch dost thou coniure for wenches": [0, 65535], "downe at the hatch dost thou coniure for wenches that": [0, 65535], "at the hatch dost thou coniure for wenches that thou": [0, 65535], "the hatch dost thou coniure for wenches that thou calst": [0, 65535], "hatch dost thou coniure for wenches that thou calst for": [0, 65535], "dost thou coniure for wenches that thou calst for such": [0, 65535], "thou coniure for wenches that thou calst for such store": [0, 65535], "coniure for wenches that thou calst for such store when": [0, 65535], "for wenches that thou calst for such store when one": [0, 65535], "wenches that thou calst for such store when one is": [0, 65535], "that thou calst for such store when one is one": [0, 65535], "thou calst for such store when one is one too": [0, 65535], "calst for such store when one is one too many": [0, 65535], "for such store when one is one too many goe": [0, 65535], "such store when one is one too many goe get": [0, 65535], "store when one is one too many goe get thee": [0, 65535], "when one is one too many goe get thee from": [0, 65535], "one is one too many goe get thee from the": [0, 65535], "is one too many goe get thee from the dore": [0, 65535], "one too many goe get thee from the dore e": [0, 65535], "too many goe get thee from the dore e dro": [0, 65535], "many goe get thee from the dore e dro what": [0, 65535], "goe get thee from the dore e dro what patch": [0, 65535], "get thee from the dore e dro what patch is": [0, 65535], "thee from the dore e dro what patch is made": [0, 65535], "from the dore e dro what patch is made our": [0, 65535], "the dore e dro what patch is made our porter": [0, 65535], "dore e dro what patch is made our porter my": [0, 65535], "e dro what patch is made our porter my master": [0, 65535], "dro what patch is made our porter my master stayes": [0, 65535], "what patch is made our porter my master stayes in": [0, 65535], "patch is made our porter my master stayes in the": [0, 65535], "is made our porter my master stayes in the street": [0, 65535], "made our porter my master stayes in the street s": [0, 65535], "our porter my master stayes in the street s dro": [0, 65535], "porter my master stayes in the street s dro let": [0, 65535], "my master stayes in the street s dro let him": [0, 65535], "master stayes in the street s dro let him walke": [0, 65535], "stayes in the street s dro let him walke from": [0, 65535], "in the street s dro let him walke from whence": [0, 65535], "the street s dro let him walke from whence he": [0, 65535], "street s dro let him walke from whence he came": [0, 65535], "s dro let him walke from whence he came lest": [0, 65535], "dro let him walke from whence he came lest hee": [0, 65535], "let him walke from whence he came lest hee catch": [0, 65535], "him walke from whence he came lest hee catch cold": [0, 65535], "walke from whence he came lest hee catch cold on's": [0, 65535], "from whence he came lest hee catch cold on's feet": [0, 65535], "whence he came lest hee catch cold on's feet e": [0, 65535], "he came lest hee catch cold on's feet e ant": [0, 65535], "came lest hee catch cold on's feet e ant who": [0, 65535], "lest hee catch cold on's feet e ant who talks": [0, 65535], "hee catch cold on's feet e ant who talks within": [0, 65535], "catch cold on's feet e ant who talks within there": [0, 65535], "cold on's feet e ant who talks within there hoa": [0, 65535], "on's feet e ant who talks within there hoa open": [0, 65535], "feet e ant who talks within there hoa open the": [0, 65535], "e ant who talks within there hoa open the dore": [0, 65535], "ant who talks within there hoa open the dore s": [0, 65535], "who talks within there hoa open the dore s dro": [0, 65535], "talks within there hoa open the dore s dro right": [0, 65535], "within there hoa open the dore s dro right sir": [0, 65535], "there hoa open the dore s dro right sir ile": [0, 65535], "hoa open the dore s dro right sir ile tell": [0, 65535], "open the dore s dro right sir ile tell you": [0, 65535], "the dore s dro right sir ile tell you when": [0, 65535], "dore s dro right sir ile tell you when and": [0, 65535], "s dro right sir ile tell you when and you'll": [0, 65535], "dro right sir ile tell you when and you'll tell": [0, 65535], "right sir ile tell you when and you'll tell me": [0, 65535], "sir ile tell you when and you'll tell me wherefore": [0, 65535], "ile tell you when and you'll tell me wherefore ant": [0, 65535], "tell you when and you'll tell me wherefore ant wherefore": [0, 65535], "you when and you'll tell me wherefore ant wherefore for": [0, 65535], "when and you'll tell me wherefore ant wherefore for my": [0, 65535], "and you'll tell me wherefore ant wherefore for my dinner": [0, 65535], "you'll tell me wherefore ant wherefore for my dinner i": [0, 65535], "tell me wherefore ant wherefore for my dinner i haue": [0, 65535], "me wherefore ant wherefore for my dinner i haue not": [0, 65535], "wherefore ant wherefore for my dinner i haue not din'd": [0, 65535], "ant wherefore for my dinner i haue not din'd to": [0, 65535], "wherefore for my dinner i haue not din'd to day": [0, 65535], "for my dinner i haue not din'd to day s": [0, 65535], "my dinner i haue not din'd to day s dro": [0, 65535], "dinner i haue not din'd to day s dro nor": [0, 65535], "i haue not din'd to day s dro nor to": [0, 65535], "haue not din'd to day s dro nor to day": [0, 65535], "not din'd to day s dro nor to day here": [0, 65535], "din'd to day s dro nor to day here you": [0, 65535], "to day s dro nor to day here you must": [0, 65535], "day s dro nor to day here you must not": [0, 65535], "s dro nor to day here you must not come": [0, 65535], "dro nor to day here you must not come againe": [0, 65535], "nor to day here you must not come againe when": [0, 65535], "to day here you must not come againe when you": [0, 65535], "day here you must not come againe when you may": [0, 65535], "here you must not come againe when you may anti": [0, 65535], "you must not come againe when you may anti what": [0, 65535], "must not come againe when you may anti what art": [0, 65535], "not come againe when you may anti what art thou": [0, 65535], "come againe when you may anti what art thou that": [0, 65535], "againe when you may anti what art thou that keep'st": [0, 65535], "when you may anti what art thou that keep'st mee": [0, 65535], "you may anti what art thou that keep'st mee out": [0, 65535], "may anti what art thou that keep'st mee out from": [0, 65535], "anti what art thou that keep'st mee out from the": [0, 65535], "what art thou that keep'st mee out from the howse": [0, 65535], "art thou that keep'st mee out from the howse i": [0, 65535], "thou that keep'st mee out from the howse i owe": [0, 65535], "that keep'st mee out from the howse i owe s": [0, 65535], "keep'st mee out from the howse i owe s dro": [0, 65535], "mee out from the howse i owe s dro the": [0, 65535], "out from the howse i owe s dro the porter": [0, 65535], "from the howse i owe s dro the porter for": [0, 65535], "the howse i owe s dro the porter for this": [0, 65535], "howse i owe s dro the porter for this time": [0, 65535], "i owe s dro the porter for this time sir": [0, 65535], "owe s dro the porter for this time sir and": [0, 65535], "s dro the porter for this time sir and my": [0, 65535], "dro the porter for this time sir and my name": [0, 65535], "the porter for this time sir and my name is": [0, 65535], "porter for this time sir and my name is dromio": [0, 65535], "for this time sir and my name is dromio e": [0, 65535], "this time sir and my name is dromio e dro": [0, 65535], "time sir and my name is dromio e dro o": [0, 65535], "sir and my name is dromio e dro o villaine": [0, 65535], "and my name is dromio e dro o villaine thou": [0, 65535], "my name is dromio e dro o villaine thou hast": [0, 65535], "name is dromio e dro o villaine thou hast stolne": [0, 65535], "is dromio e dro o villaine thou hast stolne both": [0, 65535], "dromio e dro o villaine thou hast stolne both mine": [0, 65535], "e dro o villaine thou hast stolne both mine office": [0, 65535], "dro o villaine thou hast stolne both mine office and": [0, 65535], "o villaine thou hast stolne both mine office and my": [0, 65535], "villaine thou hast stolne both mine office and my name": [0, 65535], "thou hast stolne both mine office and my name the": [0, 65535], "hast stolne both mine office and my name the one": [0, 65535], "stolne both mine office and my name the one nere": [0, 65535], "both mine office and my name the one nere got": [0, 65535], "mine office and my name the one nere got me": [0, 65535], "office and my name the one nere got me credit": [0, 65535], "and my name the one nere got me credit the": [0, 65535], "my name the one nere got me credit the other": [0, 65535], "name the one nere got me credit the other mickle": [0, 65535], "the one nere got me credit the other mickle blame": [0, 65535], "one nere got me credit the other mickle blame if": [0, 65535], "nere got me credit the other mickle blame if thou": [0, 65535], "got me credit the other mickle blame if thou hadst": [0, 65535], "me credit the other mickle blame if thou hadst beene": [0, 65535], "credit the other mickle blame if thou hadst beene dromio": [0, 65535], "the other mickle blame if thou hadst beene dromio to": [0, 65535], "other mickle blame if thou hadst beene dromio to day": [0, 65535], "mickle blame if thou hadst beene dromio to day in": [0, 65535], "blame if thou hadst beene dromio to day in my": [0, 65535], "if thou hadst beene dromio to day in my place": [0, 65535], "thou hadst beene dromio to day in my place thou": [0, 65535], "hadst beene dromio to day in my place thou wouldst": [0, 65535], "beene dromio to day in my place thou wouldst haue": [0, 65535], "dromio to day in my place thou wouldst haue chang'd": [0, 65535], "to day in my place thou wouldst haue chang'd thy": [0, 65535], "day in my place thou wouldst haue chang'd thy face": [0, 65535], "in my place thou wouldst haue chang'd thy face for": [0, 65535], "my place thou wouldst haue chang'd thy face for a": [0, 65535], "place thou wouldst haue chang'd thy face for a name": [0, 65535], "thou wouldst haue chang'd thy face for a name or": [0, 65535], "wouldst haue chang'd thy face for a name or thy": [0, 65535], "haue chang'd thy face for a name or thy name": [0, 65535], "chang'd thy face for a name or thy name for": [0, 65535], "thy face for a name or thy name for an": [0, 65535], "face for a name or thy name for an asse": [0, 65535], "for a name or thy name for an asse enter": [0, 65535], "a name or thy name for an asse enter luce": [0, 65535], "name or thy name for an asse enter luce luce": [0, 65535], "or thy name for an asse enter luce luce what": [0, 65535], "thy name for an asse enter luce luce what a": [0, 65535], "name for an asse enter luce luce what a coile": [0, 65535], "for an asse enter luce luce what a coile is": [0, 65535], "an asse enter luce luce what a coile is there": [0, 65535], "asse enter luce luce what a coile is there dromio": [0, 65535], "enter luce luce what a coile is there dromio who": [0, 65535], "luce luce what a coile is there dromio who are": [0, 65535], "luce what a coile is there dromio who are those": [0, 65535], "what a coile is there dromio who are those at": [0, 65535], "a coile is there dromio who are those at the": [0, 65535], "coile is there dromio who are those at the gate": [0, 65535], "is there dromio who are those at the gate e": [0, 65535], "there dromio who are those at the gate e dro": [0, 65535], "dromio who are those at the gate e dro let": [0, 65535], "who are those at the gate e dro let my": [0, 65535], "are those at the gate e dro let my master": [0, 65535], "those at the gate e dro let my master in": [0, 65535], "at the gate e dro let my master in luce": [0, 65535], "the gate e dro let my master in luce luce": [0, 65535], "gate e dro let my master in luce luce faith": [0, 65535], "e dro let my master in luce luce faith no": [0, 65535], "dro let my master in luce luce faith no hee": [0, 65535], "let my master in luce luce faith no hee comes": [0, 65535], "my master in luce luce faith no hee comes too": [0, 65535], "master in luce luce faith no hee comes too late": [0, 65535], "in luce luce faith no hee comes too late and": [0, 65535], "luce luce faith no hee comes too late and so": [0, 65535], "luce faith no hee comes too late and so tell": [0, 65535], "faith no hee comes too late and so tell your": [0, 65535], "no hee comes too late and so tell your master": [0, 65535], "hee comes too late and so tell your master e": [0, 65535], "comes too late and so tell your master e dro": [0, 65535], "too late and so tell your master e dro o": [0, 65535], "late and so tell your master e dro o lord": [0, 65535], "and so tell your master e dro o lord i": [0, 65535], "so tell your master e dro o lord i must": [0, 65535], "tell your master e dro o lord i must laugh": [0, 65535], "your master e dro o lord i must laugh haue": [0, 65535], "master e dro o lord i must laugh haue at": [0, 65535], "e dro o lord i must laugh haue at you": [0, 65535], "dro o lord i must laugh haue at you with": [0, 65535], "o lord i must laugh haue at you with a": [0, 65535], "lord i must laugh haue at you with a prouerbe": [0, 65535], "i must laugh haue at you with a prouerbe shall": [0, 65535], "must laugh haue at you with a prouerbe shall i": [0, 65535], "laugh haue at you with a prouerbe shall i set": [0, 65535], "haue at you with a prouerbe shall i set in": [0, 65535], "at you with a prouerbe shall i set in my": [0, 65535], "you with a prouerbe shall i set in my staffe": [0, 65535], "with a prouerbe shall i set in my staffe luce": [0, 65535], "a prouerbe shall i set in my staffe luce haue": [0, 65535], "prouerbe shall i set in my staffe luce haue at": [0, 65535], "shall i set in my staffe luce haue at you": [0, 65535], "i set in my staffe luce haue at you with": [0, 65535], "set in my staffe luce haue at you with another": [0, 65535], "in my staffe luce haue at you with another that's": [0, 65535], "my staffe luce haue at you with another that's when": [0, 65535], "staffe luce haue at you with another that's when can": [0, 65535], "luce haue at you with another that's when can you": [0, 65535], "haue at you with another that's when can you tell": [0, 65535], "at you with another that's when can you tell s": [0, 65535], "you with another that's when can you tell s dro": [0, 65535], "with another that's when can you tell s dro if": [0, 65535], "another that's when can you tell s dro if thy": [0, 65535], "that's when can you tell s dro if thy name": [0, 65535], "when can you tell s dro if thy name be": [0, 65535], "can you tell s dro if thy name be called": [0, 65535], "you tell s dro if thy name be called luce": [0, 65535], "tell s dro if thy name be called luce luce": [0, 65535], "s dro if thy name be called luce luce thou": [0, 65535], "dro if thy name be called luce luce thou hast": [0, 65535], "if thy name be called luce luce thou hast an": [0, 65535], "thy name be called luce luce thou hast an swer'd": [0, 65535], "name be called luce luce thou hast an swer'd him": [0, 65535], "be called luce luce thou hast an swer'd him well": [0, 65535], "called luce luce thou hast an swer'd him well anti": [0, 65535], "luce luce thou hast an swer'd him well anti doe": [0, 65535], "luce thou hast an swer'd him well anti doe you": [0, 65535], "thou hast an swer'd him well anti doe you heare": [0, 65535], "hast an swer'd him well anti doe you heare you": [0, 65535], "an swer'd him well anti doe you heare you minion": [0, 65535], "swer'd him well anti doe you heare you minion you'll": [0, 65535], "him well anti doe you heare you minion you'll let": [0, 65535], "well anti doe you heare you minion you'll let vs": [0, 65535], "anti doe you heare you minion you'll let vs in": [0, 65535], "doe you heare you minion you'll let vs in i": [0, 65535], "you heare you minion you'll let vs in i hope": [0, 65535], "heare you minion you'll let vs in i hope luce": [0, 65535], "you minion you'll let vs in i hope luce i": [0, 65535], "minion you'll let vs in i hope luce i thought": [0, 65535], "you'll let vs in i hope luce i thought to": [0, 65535], "let vs in i hope luce i thought to haue": [0, 65535], "vs in i hope luce i thought to haue askt": [0, 65535], "in i hope luce i thought to haue askt you": [0, 65535], "i hope luce i thought to haue askt you s": [0, 65535], "hope luce i thought to haue askt you s dro": [0, 65535], "luce i thought to haue askt you s dro and": [0, 65535], "i thought to haue askt you s dro and you": [0, 65535], "thought to haue askt you s dro and you said": [0, 65535], "to haue askt you s dro and you said no": [0, 65535], "haue askt you s dro and you said no e": [0, 65535], "askt you s dro and you said no e dro": [0, 65535], "you s dro and you said no e dro so": [0, 65535], "s dro and you said no e dro so come": [0, 65535], "dro and you said no e dro so come helpe": [0, 65535], "and you said no e dro so come helpe well": [0, 65535], "you said no e dro so come helpe well strooke": [0, 65535], "said no e dro so come helpe well strooke there": [0, 65535], "no e dro so come helpe well strooke there was": [0, 65535], "e dro so come helpe well strooke there was blow": [0, 65535], "dro so come helpe well strooke there was blow for": [0, 65535], "so come helpe well strooke there was blow for blow": [0, 65535], "come helpe well strooke there was blow for blow anti": [0, 65535], "helpe well strooke there was blow for blow anti thou": [0, 65535], "well strooke there was blow for blow anti thou baggage": [0, 65535], "strooke there was blow for blow anti thou baggage let": [0, 65535], "there was blow for blow anti thou baggage let me": [0, 65535], "was blow for blow anti thou baggage let me in": [0, 65535], "blow for blow anti thou baggage let me in luce": [0, 65535], "for blow anti thou baggage let me in luce can": [0, 65535], "blow anti thou baggage let me in luce can you": [0, 65535], "anti thou baggage let me in luce can you tell": [0, 65535], "thou baggage let me in luce can you tell for": [0, 65535], "baggage let me in luce can you tell for whose": [0, 65535], "let me in luce can you tell for whose sake": [0, 65535], "me in luce can you tell for whose sake e": [0, 65535], "in luce can you tell for whose sake e drom": [0, 65535], "luce can you tell for whose sake e drom master": [0, 65535], "can you tell for whose sake e drom master knocke": [0, 65535], "you tell for whose sake e drom master knocke the": [0, 65535], "tell for whose sake e drom master knocke the doore": [0, 65535], "for whose sake e drom master knocke the doore hard": [0, 65535], "whose sake e drom master knocke the doore hard luce": [0, 65535], "sake e drom master knocke the doore hard luce let": [0, 65535], "e drom master knocke the doore hard luce let him": [0, 65535], "drom master knocke the doore hard luce let him knocke": [0, 65535], "master knocke the doore hard luce let him knocke till": [0, 65535], "knocke the doore hard luce let him knocke till it": [0, 65535], "the doore hard luce let him knocke till it ake": [0, 65535], "doore hard luce let him knocke till it ake anti": [0, 65535], "hard luce let him knocke till it ake anti you'll": [0, 65535], "luce let him knocke till it ake anti you'll crie": [0, 65535], "let him knocke till it ake anti you'll crie for": [0, 65535], "him knocke till it ake anti you'll crie for this": [0, 65535], "knocke till it ake anti you'll crie for this minion": [0, 65535], "till it ake anti you'll crie for this minion if": [0, 65535], "it ake anti you'll crie for this minion if i": [0, 65535], "ake anti you'll crie for this minion if i beat": [0, 65535], "anti you'll crie for this minion if i beat the": [0, 65535], "you'll crie for this minion if i beat the doore": [0, 65535], "crie for this minion if i beat the doore downe": [0, 65535], "for this minion if i beat the doore downe luce": [0, 65535], "this minion if i beat the doore downe luce what": [0, 65535], "minion if i beat the doore downe luce what needs": [0, 65535], "if i beat the doore downe luce what needs all": [0, 65535], "i beat the doore downe luce what needs all that": [0, 65535], "beat the doore downe luce what needs all that and": [0, 65535], "the doore downe luce what needs all that and a": [0, 65535], "doore downe luce what needs all that and a paire": [0, 65535], "downe luce what needs all that and a paire of": [0, 65535], "luce what needs all that and a paire of stocks": [0, 65535], "what needs all that and a paire of stocks in": [0, 65535], "needs all that and a paire of stocks in the": [0, 65535], "all that and a paire of stocks in the towne": [0, 65535], "that and a paire of stocks in the towne enter": [0, 65535], "and a paire of stocks in the towne enter adriana": [0, 65535], "a paire of stocks in the towne enter adriana adr": [0, 65535], "paire of stocks in the towne enter adriana adr who": [0, 65535], "of stocks in the towne enter adriana adr who is": [0, 65535], "stocks in the towne enter adriana adr who is that": [0, 65535], "in the towne enter adriana adr who is that at": [0, 65535], "the towne enter adriana adr who is that at the": [0, 65535], "towne enter adriana adr who is that at the doore": [0, 65535], "enter adriana adr who is that at the doore that": [0, 65535], "adriana adr who is that at the doore that keeps": [0, 65535], "adr who is that at the doore that keeps all": [0, 65535], "who is that at the doore that keeps all this": [0, 65535], "is that at the doore that keeps all this noise": [0, 65535], "that at the doore that keeps all this noise s": [0, 65535], "at the doore that keeps all this noise s dro": [0, 65535], "the doore that keeps all this noise s dro by": [0, 65535], "doore that keeps all this noise s dro by my": [0, 65535], "that keeps all this noise s dro by my troth": [0, 65535], "keeps all this noise s dro by my troth your": [0, 65535], "all this noise s dro by my troth your towne": [0, 65535], "this noise s dro by my troth your towne is": [0, 65535], "noise s dro by my troth your towne is troubled": [0, 65535], "s dro by my troth your towne is troubled with": [0, 65535], "dro by my troth your towne is troubled with vnruly": [0, 65535], "by my troth your towne is troubled with vnruly boies": [0, 65535], "my troth your towne is troubled with vnruly boies anti": [0, 65535], "troth your towne is troubled with vnruly boies anti are": [0, 65535], "your towne is troubled with vnruly boies anti are you": [0, 65535], "towne is troubled with vnruly boies anti are you there": [0, 65535], "is troubled with vnruly boies anti are you there wife": [0, 65535], "troubled with vnruly boies anti are you there wife you": [0, 65535], "with vnruly boies anti are you there wife you might": [0, 65535], "vnruly boies anti are you there wife you might haue": [0, 65535], "boies anti are you there wife you might haue come": [0, 65535], "anti are you there wife you might haue come before": [0, 65535], "are you there wife you might haue come before adri": [0, 65535], "you there wife you might haue come before adri your": [0, 65535], "there wife you might haue come before adri your wife": [0, 65535], "wife you might haue come before adri your wife sir": [0, 65535], "you might haue come before adri your wife sir knaue": [0, 65535], "might haue come before adri your wife sir knaue go": [0, 65535], "haue come before adri your wife sir knaue go get": [0, 65535], "come before adri your wife sir knaue go get you": [0, 65535], "before adri your wife sir knaue go get you from": [0, 65535], "adri your wife sir knaue go get you from the": [0, 65535], "your wife sir knaue go get you from the dore": [0, 65535], "wife sir knaue go get you from the dore e": [0, 65535], "sir knaue go get you from the dore e dro": [0, 65535], "knaue go get you from the dore e dro if": [0, 65535], "go get you from the dore e dro if you": [0, 65535], "get you from the dore e dro if you went": [0, 65535], "you from the dore e dro if you went in": [0, 65535], "from the dore e dro if you went in paine": [0, 65535], "the dore e dro if you went in paine master": [0, 65535], "dore e dro if you went in paine master this": [0, 65535], "e dro if you went in paine master this knaue": [0, 65535], "dro if you went in paine master this knaue wold": [0, 65535], "if you went in paine master this knaue wold goe": [0, 65535], "you went in paine master this knaue wold goe sore": [0, 65535], "went in paine master this knaue wold goe sore angelo": [0, 65535], "in paine master this knaue wold goe sore angelo heere": [0, 65535], "paine master this knaue wold goe sore angelo heere is": [0, 65535], "master this knaue wold goe sore angelo heere is neither": [0, 65535], "this knaue wold goe sore angelo heere is neither cheere": [0, 65535], "knaue wold goe sore angelo heere is neither cheere sir": [0, 65535], "wold goe sore angelo heere is neither cheere sir nor": [0, 65535], "goe sore angelo heere is neither cheere sir nor welcome": [0, 65535], "sore angelo heere is neither cheere sir nor welcome we": [0, 65535], "angelo heere is neither cheere sir nor welcome we would": [0, 65535], "heere is neither cheere sir nor welcome we would faine": [0, 65535], "is neither cheere sir nor welcome we would faine haue": [0, 65535], "neither cheere sir nor welcome we would faine haue either": [0, 65535], "cheere sir nor welcome we would faine haue either baltz": [0, 65535], "sir nor welcome we would faine haue either baltz in": [0, 65535], "nor welcome we would faine haue either baltz in debating": [0, 65535], "welcome we would faine haue either baltz in debating which": [0, 65535], "we would faine haue either baltz in debating which was": [0, 65535], "would faine haue either baltz in debating which was best": [0, 65535], "faine haue either baltz in debating which was best wee": [0, 65535], "haue either baltz in debating which was best wee shall": [0, 65535], "either baltz in debating which was best wee shall part": [0, 65535], "baltz in debating which was best wee shall part with": [0, 65535], "in debating which was best wee shall part with neither": [0, 65535], "debating which was best wee shall part with neither e": [0, 65535], "which was best wee shall part with neither e dro": [0, 65535], "was best wee shall part with neither e dro they": [0, 65535], "best wee shall part with neither e dro they stand": [0, 65535], "wee shall part with neither e dro they stand at": [0, 65535], "shall part with neither e dro they stand at the": [0, 65535], "part with neither e dro they stand at the doore": [0, 65535], "with neither e dro they stand at the doore master": [0, 65535], "neither e dro they stand at the doore master bid": [0, 65535], "e dro they stand at the doore master bid them": [0, 65535], "dro they stand at the doore master bid them welcome": [0, 65535], "they stand at the doore master bid them welcome hither": [0, 65535], "stand at the doore master bid them welcome hither anti": [0, 65535], "at the doore master bid them welcome hither anti there": [0, 65535], "the doore master bid them welcome hither anti there is": [0, 65535], "doore master bid them welcome hither anti there is something": [0, 65535], "master bid them welcome hither anti there is something in": [0, 65535], "bid them welcome hither anti there is something in the": [0, 65535], "them welcome hither anti there is something in the winde": [0, 65535], "welcome hither anti there is something in the winde that": [0, 65535], "hither anti there is something in the winde that we": [0, 65535], "anti there is something in the winde that we cannot": [0, 65535], "there is something in the winde that we cannot get": [0, 65535], "is something in the winde that we cannot get in": [0, 65535], "something in the winde that we cannot get in e": [0, 65535], "in the winde that we cannot get in e dro": [0, 65535], "the winde that we cannot get in e dro you": [0, 65535], "winde that we cannot get in e dro you would": [0, 65535], "that we cannot get in e dro you would say": [0, 65535], "we cannot get in e dro you would say so": [0, 65535], "cannot get in e dro you would say so master": [0, 65535], "get in e dro you would say so master if": [0, 65535], "in e dro you would say so master if your": [0, 65535], "e dro you would say so master if your garments": [0, 65535], "dro you would say so master if your garments were": [0, 65535], "you would say so master if your garments were thin": [0, 65535], "would say so master if your garments were thin your": [0, 65535], "say so master if your garments were thin your cake": [0, 65535], "so master if your garments were thin your cake here": [0, 65535], "master if your garments were thin your cake here is": [0, 65535], "if your garments were thin your cake here is warme": [0, 65535], "your garments were thin your cake here is warme within": [0, 65535], "garments were thin your cake here is warme within you": [0, 65535], "were thin your cake here is warme within you stand": [0, 65535], "thin your cake here is warme within you stand here": [0, 65535], "your cake here is warme within you stand here in": [0, 65535], "cake here is warme within you stand here in the": [0, 65535], "here is warme within you stand here in the cold": [0, 65535], "is warme within you stand here in the cold it": [0, 65535], "warme within you stand here in the cold it would": [0, 65535], "within you stand here in the cold it would make": [0, 65535], "you stand here in the cold it would make a": [0, 65535], "stand here in the cold it would make a man": [0, 65535], "here in the cold it would make a man mad": [0, 65535], "in the cold it would make a man mad as": [0, 65535], "the cold it would make a man mad as a": [0, 65535], "cold it would make a man mad as a bucke": [0, 65535], "it would make a man mad as a bucke to": [0, 65535], "would make a man mad as a bucke to be": [0, 65535], "make a man mad as a bucke to be so": [0, 65535], "a man mad as a bucke to be so bought": [0, 65535], "man mad as a bucke to be so bought and": [0, 65535], "mad as a bucke to be so bought and sold": [0, 65535], "as a bucke to be so bought and sold ant": [0, 65535], "a bucke to be so bought and sold ant go": [0, 65535], "bucke to be so bought and sold ant go fetch": [0, 65535], "to be so bought and sold ant go fetch me": [0, 65535], "be so bought and sold ant go fetch me something": [0, 65535], "so bought and sold ant go fetch me something ile": [0, 65535], "bought and sold ant go fetch me something ile break": [0, 65535], "and sold ant go fetch me something ile break ope": [0, 65535], "sold ant go fetch me something ile break ope the": [0, 65535], "ant go fetch me something ile break ope the gate": [0, 65535], "go fetch me something ile break ope the gate s": [0, 65535], "fetch me something ile break ope the gate s dro": [0, 65535], "me something ile break ope the gate s dro breake": [0, 65535], "something ile break ope the gate s dro breake any": [0, 65535], "ile break ope the gate s dro breake any breaking": [0, 65535], "break ope the gate s dro breake any breaking here": [0, 65535], "ope the gate s dro breake any breaking here and": [0, 65535], "the gate s dro breake any breaking here and ile": [0, 65535], "gate s dro breake any breaking here and ile breake": [0, 65535], "s dro breake any breaking here and ile breake your": [0, 65535], "dro breake any breaking here and ile breake your knaues": [0, 65535], "breake any breaking here and ile breake your knaues pate": [0, 65535], "any breaking here and ile breake your knaues pate e": [0, 65535], "breaking here and ile breake your knaues pate e dro": [0, 65535], "here and ile breake your knaues pate e dro a": [0, 65535], "and ile breake your knaues pate e dro a man": [0, 65535], "ile breake your knaues pate e dro a man may": [0, 65535], "breake your knaues pate e dro a man may breake": [0, 65535], "your knaues pate e dro a man may breake a": [0, 65535], "knaues pate e dro a man may breake a word": [0, 65535], "pate e dro a man may breake a word with": [0, 65535], "e dro a man may breake a word with your": [0, 65535], "dro a man may breake a word with your sir": [0, 65535], "a man may breake a word with your sir and": [0, 65535], "man may breake a word with your sir and words": [0, 65535], "may breake a word with your sir and words are": [0, 65535], "breake a word with your sir and words are but": [0, 65535], "a word with your sir and words are but winde": [0, 65535], "word with your sir and words are but winde i": [0, 65535], "with your sir and words are but winde i and": [0, 65535], "your sir and words are but winde i and breake": [0, 65535], "sir and words are but winde i and breake it": [0, 65535], "and words are but winde i and breake it in": [0, 65535], "words are but winde i and breake it in your": [0, 65535], "are but winde i and breake it in your face": [0, 65535], "but winde i and breake it in your face so": [0, 65535], "winde i and breake it in your face so he": [0, 65535], "i and breake it in your face so he break": [0, 65535], "and breake it in your face so he break it": [0, 65535], "breake it in your face so he break it not": [0, 65535], "it in your face so he break it not behinde": [0, 65535], "in your face so he break it not behinde s": [0, 65535], "your face so he break it not behinde s dro": [0, 65535], "face so he break it not behinde s dro it": [0, 65535], "so he break it not behinde s dro it seemes": [0, 65535], "he break it not behinde s dro it seemes thou": [0, 65535], "break it not behinde s dro it seemes thou want'st": [0, 65535], "it not behinde s dro it seemes thou want'st breaking": [0, 65535], "not behinde s dro it seemes thou want'st breaking out": [0, 65535], "behinde s dro it seemes thou want'st breaking out vpon": [0, 65535], "s dro it seemes thou want'st breaking out vpon thee": [0, 65535], "dro it seemes thou want'st breaking out vpon thee hinde": [0, 65535], "it seemes thou want'st breaking out vpon thee hinde e": [0, 65535], "seemes thou want'st breaking out vpon thee hinde e dro": [0, 65535], "thou want'st breaking out vpon thee hinde e dro here's": [0, 65535], "want'st breaking out vpon thee hinde e dro here's too": [0, 65535], "breaking out vpon thee hinde e dro here's too much": [0, 65535], "out vpon thee hinde e dro here's too much out": [0, 65535], "vpon thee hinde e dro here's too much out vpon": [0, 65535], "thee hinde e dro here's too much out vpon thee": [0, 65535], "hinde e dro here's too much out vpon thee i": [0, 65535], "e dro here's too much out vpon thee i pray": [0, 65535], "dro here's too much out vpon thee i pray thee": [0, 65535], "here's too much out vpon thee i pray thee let": [0, 65535], "too much out vpon thee i pray thee let me": [0, 65535], "much out vpon thee i pray thee let me in": [0, 65535], "out vpon thee i pray thee let me in s": [0, 65535], "vpon thee i pray thee let me in s dro": [0, 65535], "thee i pray thee let me in s dro i": [0, 65535], "i pray thee let me in s dro i when": [0, 65535], "pray thee let me in s dro i when fowles": [0, 65535], "thee let me in s dro i when fowles haue": [0, 65535], "let me in s dro i when fowles haue no": [0, 65535], "me in s dro i when fowles haue no feathers": [0, 65535], "in s dro i when fowles haue no feathers and": [0, 65535], "s dro i when fowles haue no feathers and fish": [0, 65535], "dro i when fowles haue no feathers and fish haue": [0, 65535], "i when fowles haue no feathers and fish haue no": [0, 65535], "when fowles haue no feathers and fish haue no fin": [0, 65535], "fowles haue no feathers and fish haue no fin ant": [0, 65535], "haue no feathers and fish haue no fin ant well": [0, 65535], "no feathers and fish haue no fin ant well ile": [0, 65535], "feathers and fish haue no fin ant well ile breake": [0, 65535], "and fish haue no fin ant well ile breake in": [0, 65535], "fish haue no fin ant well ile breake in go": [0, 65535], "haue no fin ant well ile breake in go borrow": [0, 65535], "no fin ant well ile breake in go borrow me": [0, 65535], "fin ant well ile breake in go borrow me a": [0, 65535], "ant well ile breake in go borrow me a crow": [0, 65535], "well ile breake in go borrow me a crow e": [0, 65535], "ile breake in go borrow me a crow e dro": [0, 65535], "breake in go borrow me a crow e dro a": [0, 65535], "in go borrow me a crow e dro a crow": [0, 65535], "go borrow me a crow e dro a crow without": [0, 65535], "borrow me a crow e dro a crow without feather": [0, 65535], "me a crow e dro a crow without feather master": [0, 65535], "a crow e dro a crow without feather master meane": [0, 65535], "crow e dro a crow without feather master meane you": [0, 65535], "e dro a crow without feather master meane you so": [0, 65535], "dro a crow without feather master meane you so for": [0, 65535], "a crow without feather master meane you so for a": [0, 65535], "crow without feather master meane you so for a fish": [0, 65535], "without feather master meane you so for a fish without": [0, 65535], "feather master meane you so for a fish without a": [0, 65535], "master meane you so for a fish without a finne": [0, 65535], "meane you so for a fish without a finne ther's": [0, 65535], "you so for a fish without a finne ther's a": [0, 65535], "so for a fish without a finne ther's a fowle": [0, 65535], "for a fish without a finne ther's a fowle without": [0, 65535], "a fish without a finne ther's a fowle without a": [0, 65535], "fish without a finne ther's a fowle without a fether": [0, 65535], "without a finne ther's a fowle without a fether if": [0, 65535], "a finne ther's a fowle without a fether if a": [0, 65535], "finne ther's a fowle without a fether if a crow": [0, 65535], "ther's a fowle without a fether if a crow help": [0, 65535], "a fowle without a fether if a crow help vs": [0, 65535], "fowle without a fether if a crow help vs in": [0, 65535], "without a fether if a crow help vs in sirra": [0, 65535], "a fether if a crow help vs in sirra wee'll": [0, 65535], "fether if a crow help vs in sirra wee'll plucke": [0, 65535], "if a crow help vs in sirra wee'll plucke a": [0, 65535], "a crow help vs in sirra wee'll plucke a crow": [0, 65535], "crow help vs in sirra wee'll plucke a crow together": [0, 65535], "help vs in sirra wee'll plucke a crow together ant": [0, 65535], "vs in sirra wee'll plucke a crow together ant go": [0, 65535], "in sirra wee'll plucke a crow together ant go get": [0, 65535], "sirra wee'll plucke a crow together ant go get thee": [0, 65535], "wee'll plucke a crow together ant go get thee gon": [0, 65535], "plucke a crow together ant go get thee gon fetch": [0, 65535], "a crow together ant go get thee gon fetch me": [0, 65535], "crow together ant go get thee gon fetch me an": [0, 65535], "together ant go get thee gon fetch me an iron": [0, 65535], "ant go get thee gon fetch me an iron crow": [0, 65535], "go get thee gon fetch me an iron crow balth": [0, 65535], "get thee gon fetch me an iron crow balth haue": [0, 65535], "thee gon fetch me an iron crow balth haue patience": [0, 65535], "gon fetch me an iron crow balth haue patience sir": [0, 65535], "fetch me an iron crow balth haue patience sir oh": [0, 65535], "me an iron crow balth haue patience sir oh let": [0, 65535], "an iron crow balth haue patience sir oh let it": [0, 65535], "iron crow balth haue patience sir oh let it not": [0, 65535], "crow balth haue patience sir oh let it not be": [0, 65535], "balth haue patience sir oh let it not be so": [0, 65535], "haue patience sir oh let it not be so heerein": [0, 65535], "patience sir oh let it not be so heerein you": [0, 65535], "sir oh let it not be so heerein you warre": [0, 65535], "oh let it not be so heerein you warre against": [0, 65535], "let it not be so heerein you warre against your": [0, 65535], "it not be so heerein you warre against your reputation": [0, 65535], "not be so heerein you warre against your reputation and": [0, 65535], "be so heerein you warre against your reputation and draw": [0, 65535], "so heerein you warre against your reputation and draw within": [0, 65535], "heerein you warre against your reputation and draw within the": [0, 65535], "you warre against your reputation and draw within the compasse": [0, 65535], "warre against your reputation and draw within the compasse of": [0, 65535], "against your reputation and draw within the compasse of suspect": [0, 65535], "your reputation and draw within the compasse of suspect th'": [0, 65535], "reputation and draw within the compasse of suspect th' vnuiolated": [0, 65535], "and draw within the compasse of suspect th' vnuiolated honor": [0, 65535], "draw within the compasse of suspect th' vnuiolated honor of": [0, 65535], "within the compasse of suspect th' vnuiolated honor of your": [0, 65535], "the compasse of suspect th' vnuiolated honor of your wife": [0, 65535], "compasse of suspect th' vnuiolated honor of your wife once": [0, 65535], "of suspect th' vnuiolated honor of your wife once this": [0, 65535], "suspect th' vnuiolated honor of your wife once this your": [0, 65535], "th' vnuiolated honor of your wife once this your long": [0, 65535], "vnuiolated honor of your wife once this your long experience": [0, 65535], "honor of your wife once this your long experience of": [0, 65535], "of your wife once this your long experience of your": [0, 65535], "your wife once this your long experience of your wisedome": [0, 65535], "wife once this your long experience of your wisedome her": [0, 65535], "once this your long experience of your wisedome her sober": [0, 65535], "this your long experience of your wisedome her sober vertue": [0, 65535], "your long experience of your wisedome her sober vertue yeares": [0, 65535], "long experience of your wisedome her sober vertue yeares and": [0, 65535], "experience of your wisedome her sober vertue yeares and modestie": [0, 65535], "of your wisedome her sober vertue yeares and modestie plead": [0, 65535], "your wisedome her sober vertue yeares and modestie plead on": [0, 65535], "wisedome her sober vertue yeares and modestie plead on your": [0, 65535], "her sober vertue yeares and modestie plead on your part": [0, 65535], "sober vertue yeares and modestie plead on your part some": [0, 65535], "vertue yeares and modestie plead on your part some cause": [0, 65535], "yeares and modestie plead on your part some cause to": [0, 65535], "and modestie plead on your part some cause to you": [0, 65535], "modestie plead on your part some cause to you vnknowne": [0, 65535], "plead on your part some cause to you vnknowne and": [0, 65535], "on your part some cause to you vnknowne and doubt": [0, 65535], "your part some cause to you vnknowne and doubt not": [0, 65535], "part some cause to you vnknowne and doubt not sir": [0, 65535], "some cause to you vnknowne and doubt not sir but": [0, 65535], "cause to you vnknowne and doubt not sir but she": [0, 65535], "to you vnknowne and doubt not sir but she will": [0, 65535], "you vnknowne and doubt not sir but she will well": [0, 65535], "vnknowne and doubt not sir but she will well excuse": [0, 65535], "and doubt not sir but she will well excuse why": [0, 65535], "doubt not sir but she will well excuse why at": [0, 65535], "not sir but she will well excuse why at this": [0, 65535], "sir but she will well excuse why at this time": [0, 65535], "but she will well excuse why at this time the": [0, 65535], "she will well excuse why at this time the dores": [0, 65535], "will well excuse why at this time the dores are": [0, 65535], "well excuse why at this time the dores are made": [0, 65535], "excuse why at this time the dores are made against": [0, 65535], "why at this time the dores are made against you": [0, 65535], "at this time the dores are made against you be": [0, 65535], "this time the dores are made against you be rul'd": [0, 65535], "time the dores are made against you be rul'd by": [0, 65535], "the dores are made against you be rul'd by me": [0, 65535], "dores are made against you be rul'd by me depart": [0, 65535], "are made against you be rul'd by me depart in": [0, 65535], "made against you be rul'd by me depart in patience": [0, 65535], "against you be rul'd by me depart in patience and": [0, 65535], "you be rul'd by me depart in patience and let": [0, 65535], "be rul'd by me depart in patience and let vs": [0, 65535], "rul'd by me depart in patience and let vs to": [0, 65535], "by me depart in patience and let vs to the": [0, 65535], "me depart in patience and let vs to the tyger": [0, 65535], "depart in patience and let vs to the tyger all": [0, 65535], "in patience and let vs to the tyger all to": [0, 65535], "patience and let vs to the tyger all to dinner": [0, 65535], "and let vs to the tyger all to dinner and": [0, 65535], "let vs to the tyger all to dinner and about": [0, 65535], "vs to the tyger all to dinner and about euening": [0, 65535], "to the tyger all to dinner and about euening come": [0, 65535], "the tyger all to dinner and about euening come your": [0, 65535], "tyger all to dinner and about euening come your selfe": [0, 65535], "all to dinner and about euening come your selfe alone": [0, 65535], "to dinner and about euening come your selfe alone to": [0, 65535], "dinner and about euening come your selfe alone to know": [0, 65535], "and about euening come your selfe alone to know the": [0, 65535], "about euening come your selfe alone to know the reason": [0, 65535], "euening come your selfe alone to know the reason of": [0, 65535], "come your selfe alone to know the reason of this": [0, 65535], "your selfe alone to know the reason of this strange": [0, 65535], "selfe alone to know the reason of this strange restraint": [0, 65535], "alone to know the reason of this strange restraint if": [0, 65535], "to know the reason of this strange restraint if by": [0, 65535], "know the reason of this strange restraint if by strong": [0, 65535], "the reason of this strange restraint if by strong hand": [0, 65535], "reason of this strange restraint if by strong hand you": [0, 65535], "of this strange restraint if by strong hand you offer": [0, 65535], "this strange restraint if by strong hand you offer to": [0, 65535], "strange restraint if by strong hand you offer to breake": [0, 65535], "restraint if by strong hand you offer to breake in": [0, 65535], "if by strong hand you offer to breake in now": [0, 65535], "by strong hand you offer to breake in now in": [0, 65535], "strong hand you offer to breake in now in the": [0, 65535], "hand you offer to breake in now in the stirring": [0, 65535], "you offer to breake in now in the stirring passage": [0, 65535], "offer to breake in now in the stirring passage of": [0, 65535], "to breake in now in the stirring passage of the": [0, 65535], "breake in now in the stirring passage of the day": [0, 65535], "in now in the stirring passage of the day a": [0, 65535], "now in the stirring passage of the day a vulgar": [0, 65535], "in the stirring passage of the day a vulgar comment": [0, 65535], "the stirring passage of the day a vulgar comment will": [0, 65535], "stirring passage of the day a vulgar comment will be": [0, 65535], "passage of the day a vulgar comment will be made": [0, 65535], "of the day a vulgar comment will be made of": [0, 65535], "the day a vulgar comment will be made of it": [0, 65535], "day a vulgar comment will be made of it and": [0, 65535], "a vulgar comment will be made of it and that": [0, 65535], "vulgar comment will be made of it and that supposed": [0, 65535], "comment will be made of it and that supposed by": [0, 65535], "will be made of it and that supposed by the": [0, 65535], "be made of it and that supposed by the common": [0, 65535], "made of it and that supposed by the common rowt": [0, 65535], "of it and that supposed by the common rowt against": [0, 65535], "it and that supposed by the common rowt against your": [0, 65535], "and that supposed by the common rowt against your yet": [0, 65535], "that supposed by the common rowt against your yet vngalled": [0, 65535], "supposed by the common rowt against your yet vngalled estimation": [0, 65535], "by the common rowt against your yet vngalled estimation that": [0, 65535], "the common rowt against your yet vngalled estimation that may": [0, 65535], "common rowt against your yet vngalled estimation that may with": [0, 65535], "rowt against your yet vngalled estimation that may with foule": [0, 65535], "against your yet vngalled estimation that may with foule intrusion": [0, 65535], "your yet vngalled estimation that may with foule intrusion enter": [0, 65535], "yet vngalled estimation that may with foule intrusion enter in": [0, 65535], "vngalled estimation that may with foule intrusion enter in and": [0, 65535], "estimation that may with foule intrusion enter in and dwell": [0, 65535], "that may with foule intrusion enter in and dwell vpon": [0, 65535], "may with foule intrusion enter in and dwell vpon your": [0, 65535], "with foule intrusion enter in and dwell vpon your graue": [0, 65535], "foule intrusion enter in and dwell vpon your graue when": [0, 65535], "intrusion enter in and dwell vpon your graue when you": [0, 65535], "enter in and dwell vpon your graue when you are": [0, 65535], "in and dwell vpon your graue when you are dead": [0, 65535], "and dwell vpon your graue when you are dead for": [0, 65535], "dwell vpon your graue when you are dead for slander": [0, 65535], "vpon your graue when you are dead for slander liues": [0, 65535], "your graue when you are dead for slander liues vpon": [0, 65535], "graue when you are dead for slander liues vpon succession": [0, 65535], "when you are dead for slander liues vpon succession for": [0, 65535], "you are dead for slander liues vpon succession for euer": [0, 65535], "are dead for slander liues vpon succession for euer hows'd": [0, 65535], "dead for slander liues vpon succession for euer hows'd where": [0, 65535], "for slander liues vpon succession for euer hows'd where it": [0, 65535], "slander liues vpon succession for euer hows'd where it gets": [0, 65535], "liues vpon succession for euer hows'd where it gets possession": [0, 65535], "vpon succession for euer hows'd where it gets possession anti": [0, 65535], "succession for euer hows'd where it gets possession anti you": [0, 65535], "for euer hows'd where it gets possession anti you haue": [0, 65535], "euer hows'd where it gets possession anti you haue preuail'd": [0, 65535], "hows'd where it gets possession anti you haue preuail'd i": [0, 65535], "where it gets possession anti you haue preuail'd i will": [0, 65535], "it gets possession anti you haue preuail'd i will depart": [0, 65535], "gets possession anti you haue preuail'd i will depart in": [0, 65535], "possession anti you haue preuail'd i will depart in quiet": [0, 65535], "anti you haue preuail'd i will depart in quiet and": [0, 65535], "you haue preuail'd i will depart in quiet and in": [0, 65535], "haue preuail'd i will depart in quiet and in despight": [0, 65535], "preuail'd i will depart in quiet and in despight of": [0, 65535], "i will depart in quiet and in despight of mirth": [0, 65535], "will depart in quiet and in despight of mirth meane": [0, 65535], "depart in quiet and in despight of mirth meane to": [0, 65535], "in quiet and in despight of mirth meane to be": [0, 65535], "quiet and in despight of mirth meane to be merrie": [0, 65535], "and in despight of mirth meane to be merrie i": [0, 65535], "in despight of mirth meane to be merrie i know": [0, 65535], "despight of mirth meane to be merrie i know a": [0, 65535], "of mirth meane to be merrie i know a wench": [0, 65535], "mirth meane to be merrie i know a wench of": [0, 65535], "meane to be merrie i know a wench of excellent": [0, 65535], "to be merrie i know a wench of excellent discourse": [0, 65535], "be merrie i know a wench of excellent discourse prettie": [0, 65535], "merrie i know a wench of excellent discourse prettie and": [0, 65535], "i know a wench of excellent discourse prettie and wittie": [0, 65535], "know a wench of excellent discourse prettie and wittie wilde": [0, 65535], "a wench of excellent discourse prettie and wittie wilde and": [0, 65535], "wench of excellent discourse prettie and wittie wilde and yet": [0, 65535], "of excellent discourse prettie and wittie wilde and yet too": [0, 65535], "excellent discourse prettie and wittie wilde and yet too gentle": [0, 65535], "discourse prettie and wittie wilde and yet too gentle there": [0, 65535], "prettie and wittie wilde and yet too gentle there will": [0, 65535], "and wittie wilde and yet too gentle there will we": [0, 65535], "wittie wilde and yet too gentle there will we dine": [0, 65535], "wilde and yet too gentle there will we dine this": [0, 65535], "and yet too gentle there will we dine this woman": [0, 65535], "yet too gentle there will we dine this woman that": [0, 65535], "too gentle there will we dine this woman that i": [0, 65535], "gentle there will we dine this woman that i meane": [0, 65535], "there will we dine this woman that i meane my": [0, 65535], "will we dine this woman that i meane my wife": [0, 65535], "we dine this woman that i meane my wife but": [0, 65535], "dine this woman that i meane my wife but i": [0, 65535], "this woman that i meane my wife but i protest": [0, 65535], "woman that i meane my wife but i protest without": [0, 65535], "that i meane my wife but i protest without desert": [0, 65535], "i meane my wife but i protest without desert hath": [0, 65535], "meane my wife but i protest without desert hath oftentimes": [0, 65535], "my wife but i protest without desert hath oftentimes vpbraided": [0, 65535], "wife but i protest without desert hath oftentimes vpbraided me": [0, 65535], "but i protest without desert hath oftentimes vpbraided me withall": [0, 65535], "i protest without desert hath oftentimes vpbraided me withall to": [0, 65535], "protest without desert hath oftentimes vpbraided me withall to her": [0, 65535], "without desert hath oftentimes vpbraided me withall to her will": [0, 65535], "desert hath oftentimes vpbraided me withall to her will we": [0, 65535], "hath oftentimes vpbraided me withall to her will we to": [0, 65535], "oftentimes vpbraided me withall to her will we to dinner": [0, 65535], "vpbraided me withall to her will we to dinner get": [0, 65535], "me withall to her will we to dinner get you": [0, 65535], "withall to her will we to dinner get you home": [0, 65535], "to her will we to dinner get you home and": [0, 65535], "her will we to dinner get you home and fetch": [0, 65535], "will we to dinner get you home and fetch the": [0, 65535], "we to dinner get you home and fetch the chaine": [0, 65535], "to dinner get you home and fetch the chaine by": [0, 65535], "dinner get you home and fetch the chaine by this": [0, 65535], "get you home and fetch the chaine by this i": [0, 65535], "you home and fetch the chaine by this i know": [0, 65535], "home and fetch the chaine by this i know 'tis": [0, 65535], "and fetch the chaine by this i know 'tis made": [0, 65535], "fetch the chaine by this i know 'tis made bring": [0, 65535], "the chaine by this i know 'tis made bring it": [0, 65535], "chaine by this i know 'tis made bring it i": [0, 65535], "by this i know 'tis made bring it i pray": [0, 65535], "this i know 'tis made bring it i pray you": [0, 65535], "i know 'tis made bring it i pray you to": [0, 65535], "know 'tis made bring it i pray you to the": [0, 65535], "'tis made bring it i pray you to the porpentine": [0, 65535], "made bring it i pray you to the porpentine for": [0, 65535], "bring it i pray you to the porpentine for there's": [0, 65535], "it i pray you to the porpentine for there's the": [0, 65535], "i pray you to the porpentine for there's the house": [0, 65535], "pray you to the porpentine for there's the house that": [0, 65535], "you to the porpentine for there's the house that chaine": [0, 65535], "to the porpentine for there's the house that chaine will": [0, 65535], "the porpentine for there's the house that chaine will i": [0, 65535], "porpentine for there's the house that chaine will i bestow": [0, 65535], "for there's the house that chaine will i bestow be": [0, 65535], "there's the house that chaine will i bestow be it": [0, 65535], "the house that chaine will i bestow be it for": [0, 65535], "house that chaine will i bestow be it for nothing": [0, 65535], "that chaine will i bestow be it for nothing but": [0, 65535], "chaine will i bestow be it for nothing but to": [0, 65535], "will i bestow be it for nothing but to spight": [0, 65535], "i bestow be it for nothing but to spight my": [0, 65535], "bestow be it for nothing but to spight my wife": [0, 65535], "be it for nothing but to spight my wife vpon": [0, 65535], "it for nothing but to spight my wife vpon mine": [0, 65535], "for nothing but to spight my wife vpon mine hostesse": [0, 65535], "nothing but to spight my wife vpon mine hostesse there": [0, 65535], "but to spight my wife vpon mine hostesse there good": [0, 65535], "to spight my wife vpon mine hostesse there good sir": [0, 65535], "spight my wife vpon mine hostesse there good sir make": [0, 65535], "my wife vpon mine hostesse there good sir make haste": [0, 65535], "wife vpon mine hostesse there good sir make haste since": [0, 65535], "vpon mine hostesse there good sir make haste since mine": [0, 65535], "mine hostesse there good sir make haste since mine owne": [0, 65535], "hostesse there good sir make haste since mine owne doores": [0, 65535], "there good sir make haste since mine owne doores refuse": [0, 65535], "good sir make haste since mine owne doores refuse to": [0, 65535], "sir make haste since mine owne doores refuse to entertaine": [0, 65535], "make haste since mine owne doores refuse to entertaine me": [0, 65535], "haste since mine owne doores refuse to entertaine me ile": [0, 65535], "since mine owne doores refuse to entertaine me ile knocke": [0, 65535], "mine owne doores refuse to entertaine me ile knocke else": [0, 65535], "owne doores refuse to entertaine me ile knocke else where": [0, 65535], "doores refuse to entertaine me ile knocke else where to": [0, 65535], "refuse to entertaine me ile knocke else where to see": [0, 65535], "to entertaine me ile knocke else where to see if": [0, 65535], "entertaine me ile knocke else where to see if they'll": [0, 65535], "me ile knocke else where to see if they'll disdaine": [0, 65535], "ile knocke else where to see if they'll disdaine me": [0, 65535], "knocke else where to see if they'll disdaine me ang": [0, 65535], "else where to see if they'll disdaine me ang ile": [0, 65535], "where to see if they'll disdaine me ang ile meet": [0, 65535], "to see if they'll disdaine me ang ile meet you": [0, 65535], "see if they'll disdaine me ang ile meet you at": [0, 65535], "if they'll disdaine me ang ile meet you at that": [0, 65535], "they'll disdaine me ang ile meet you at that place": [0, 65535], "disdaine me ang ile meet you at that place some": [0, 65535], "me ang ile meet you at that place some houre": [0, 65535], "ang ile meet you at that place some houre hence": [0, 65535], "ile meet you at that place some houre hence anti": [0, 65535], "meet you at that place some houre hence anti do": [0, 65535], "you at that place some houre hence anti do so": [0, 65535], "at that place some houre hence anti do so this": [0, 65535], "that place some houre hence anti do so this iest": [0, 65535], "place some houre hence anti do so this iest shall": [0, 65535], "some houre hence anti do so this iest shall cost": [0, 65535], "houre hence anti do so this iest shall cost me": [0, 65535], "hence anti do so this iest shall cost me some": [0, 65535], "anti do so this iest shall cost me some expence": [0, 65535], "do so this iest shall cost me some expence exeunt": [0, 65535], "so this iest shall cost me some expence exeunt enter": [0, 65535], "this iest shall cost me some expence exeunt enter iuliana": [0, 65535], "iest shall cost me some expence exeunt enter iuliana with": [0, 65535], "shall cost me some expence exeunt enter iuliana with antipholus": [0, 65535], "cost me some expence exeunt enter iuliana with antipholus of": [0, 65535], "me some expence exeunt enter iuliana with antipholus of siracusia": [0, 65535], "some expence exeunt enter iuliana with antipholus of siracusia iulia": [0, 65535], "expence exeunt enter iuliana with antipholus of siracusia iulia and": [0, 65535], "exeunt enter iuliana with antipholus of siracusia iulia and may": [0, 65535], "enter iuliana with antipholus of siracusia iulia and may it": [0, 65535], "iuliana with antipholus of siracusia iulia and may it be": [0, 65535], "with antipholus of siracusia iulia and may it be that": [0, 65535], "antipholus of siracusia iulia and may it be that you": [0, 65535], "of siracusia iulia and may it be that you haue": [0, 65535], "siracusia iulia and may it be that you haue quite": [0, 65535], "iulia and may it be that you haue quite forgot": [0, 65535], "and may it be that you haue quite forgot a": [0, 65535], "may it be that you haue quite forgot a husbands": [0, 65535], "it be that you haue quite forgot a husbands office": [0, 65535], "be that you haue quite forgot a husbands office shall": [0, 65535], "that you haue quite forgot a husbands office shall antipholus": [0, 65535], "you haue quite forgot a husbands office shall antipholus euen": [0, 65535], "haue quite forgot a husbands office shall antipholus euen in": [0, 65535], "quite forgot a husbands office shall antipholus euen in the": [0, 65535], "forgot a husbands office shall antipholus euen in the spring": [0, 65535], "a husbands office shall antipholus euen in the spring of": [0, 65535], "husbands office shall antipholus euen in the spring of loue": [0, 65535], "office shall antipholus euen in the spring of loue thy": [0, 65535], "shall antipholus euen in the spring of loue thy loue": [0, 65535], "antipholus euen in the spring of loue thy loue springs": [0, 65535], "euen in the spring of loue thy loue springs rot": [0, 65535], "in the spring of loue thy loue springs rot shall": [0, 65535], "the spring of loue thy loue springs rot shall loue": [0, 65535], "spring of loue thy loue springs rot shall loue in": [0, 65535], "of loue thy loue springs rot shall loue in buildings": [0, 65535], "loue thy loue springs rot shall loue in buildings grow": [0, 65535], "thy loue springs rot shall loue in buildings grow so": [0, 65535], "loue springs rot shall loue in buildings grow so ruinate": [0, 65535], "springs rot shall loue in buildings grow so ruinate if": [0, 65535], "rot shall loue in buildings grow so ruinate if you": [0, 65535], "shall loue in buildings grow so ruinate if you did": [0, 65535], "loue in buildings grow so ruinate if you did wed": [0, 65535], "in buildings grow so ruinate if you did wed my": [0, 65535], "buildings grow so ruinate if you did wed my sister": [0, 65535], "grow so ruinate if you did wed my sister for": [0, 65535], "so ruinate if you did wed my sister for her": [0, 65535], "ruinate if you did wed my sister for her wealth": [0, 65535], "if you did wed my sister for her wealth then": [0, 65535], "you did wed my sister for her wealth then for": [0, 65535], "did wed my sister for her wealth then for her": [0, 65535], "wed my sister for her wealth then for her wealths": [0, 65535], "my sister for her wealth then for her wealths sake": [0, 65535], "sister for her wealth then for her wealths sake vse": [0, 65535], "for her wealth then for her wealths sake vse her": [0, 65535], "her wealth then for her wealths sake vse her with": [0, 65535], "wealth then for her wealths sake vse her with more": [0, 65535], "then for her wealths sake vse her with more kindnesse": [0, 65535], "for her wealths sake vse her with more kindnesse or": [0, 65535], "her wealths sake vse her with more kindnesse or if": [0, 65535], "wealths sake vse her with more kindnesse or if you": [0, 65535], "sake vse her with more kindnesse or if you like": [0, 65535], "vse her with more kindnesse or if you like else": [0, 65535], "her with more kindnesse or if you like else where": [0, 65535], "with more kindnesse or if you like else where doe": [0, 65535], "more kindnesse or if you like else where doe it": [0, 65535], "kindnesse or if you like else where doe it by": [0, 65535], "or if you like else where doe it by stealth": [0, 65535], "if you like else where doe it by stealth muffle": [0, 65535], "you like else where doe it by stealth muffle your": [0, 65535], "like else where doe it by stealth muffle your false": [0, 65535], "else where doe it by stealth muffle your false loue": [0, 65535], "where doe it by stealth muffle your false loue with": [0, 65535], "doe it by stealth muffle your false loue with some": [0, 65535], "it by stealth muffle your false loue with some shew": [0, 65535], "by stealth muffle your false loue with some shew of": [0, 65535], "stealth muffle your false loue with some shew of blindnesse": [0, 65535], "muffle your false loue with some shew of blindnesse let": [0, 65535], "your false loue with some shew of blindnesse let not": [0, 65535], "false loue with some shew of blindnesse let not my": [0, 65535], "loue with some shew of blindnesse let not my sister": [0, 65535], "with some shew of blindnesse let not my sister read": [0, 65535], "some shew of blindnesse let not my sister read it": [0, 65535], "shew of blindnesse let not my sister read it in": [0, 65535], "of blindnesse let not my sister read it in your": [0, 65535], "blindnesse let not my sister read it in your eye": [0, 65535], "let not my sister read it in your eye be": [0, 65535], "not my sister read it in your eye be not": [0, 65535], "my sister read it in your eye be not thy": [0, 65535], "sister read it in your eye be not thy tongue": [0, 65535], "read it in your eye be not thy tongue thy": [0, 65535], "it in your eye be not thy tongue thy owne": [0, 65535], "in your eye be not thy tongue thy owne shames": [0, 65535], "your eye be not thy tongue thy owne shames orator": [0, 65535], "eye be not thy tongue thy owne shames orator looke": [0, 65535], "be not thy tongue thy owne shames orator looke sweet": [0, 65535], "not thy tongue thy owne shames orator looke sweet speake": [0, 65535], "thy tongue thy owne shames orator looke sweet speake faire": [0, 65535], "tongue thy owne shames orator looke sweet speake faire become": [0, 65535], "thy owne shames orator looke sweet speake faire become disloyaltie": [0, 65535], "owne shames orator looke sweet speake faire become disloyaltie apparell": [0, 65535], "shames orator looke sweet speake faire become disloyaltie apparell vice": [0, 65535], "orator looke sweet speake faire become disloyaltie apparell vice like": [0, 65535], "looke sweet speake faire become disloyaltie apparell vice like vertues": [0, 65535], "sweet speake faire become disloyaltie apparell vice like vertues harbenger": [0, 65535], "speake faire become disloyaltie apparell vice like vertues harbenger beare": [0, 65535], "faire become disloyaltie apparell vice like vertues harbenger beare a": [0, 65535], "become disloyaltie apparell vice like vertues harbenger beare a faire": [0, 65535], "disloyaltie apparell vice like vertues harbenger beare a faire presence": [0, 65535], "apparell vice like vertues harbenger beare a faire presence though": [0, 65535], "vice like vertues harbenger beare a faire presence though your": [0, 65535], "like vertues harbenger beare a faire presence though your heart": [0, 65535], "vertues harbenger beare a faire presence though your heart be": [0, 65535], "harbenger beare a faire presence though your heart be tainted": [0, 65535], "beare a faire presence though your heart be tainted teach": [0, 65535], "a faire presence though your heart be tainted teach sinne": [0, 65535], "faire presence though your heart be tainted teach sinne the": [0, 65535], "presence though your heart be tainted teach sinne the carriage": [0, 65535], "though your heart be tainted teach sinne the carriage of": [0, 65535], "your heart be tainted teach sinne the carriage of a": [0, 65535], "heart be tainted teach sinne the carriage of a holy": [0, 65535], "be tainted teach sinne the carriage of a holy saint": [0, 65535], "tainted teach sinne the carriage of a holy saint be": [0, 65535], "teach sinne the carriage of a holy saint be secret": [0, 65535], "sinne the carriage of a holy saint be secret false": [0, 65535], "the carriage of a holy saint be secret false what": [0, 65535], "carriage of a holy saint be secret false what need": [0, 65535], "of a holy saint be secret false what need she": [0, 65535], "a holy saint be secret false what need she be": [0, 65535], "holy saint be secret false what need she be acquainted": [0, 65535], "saint be secret false what need she be acquainted what": [0, 65535], "be secret false what need she be acquainted what simple": [0, 65535], "secret false what need she be acquainted what simple thiefe": [0, 65535], "false what need she be acquainted what simple thiefe brags": [0, 65535], "what need she be acquainted what simple thiefe brags of": [0, 65535], "need she be acquainted what simple thiefe brags of his": [0, 65535], "she be acquainted what simple thiefe brags of his owne": [0, 65535], "be acquainted what simple thiefe brags of his owne attaine": [0, 65535], "acquainted what simple thiefe brags of his owne attaine 'tis": [0, 65535], "what simple thiefe brags of his owne attaine 'tis double": [0, 65535], "simple thiefe brags of his owne attaine 'tis double wrong": [0, 65535], "thiefe brags of his owne attaine 'tis double wrong to": [0, 65535], "brags of his owne attaine 'tis double wrong to truant": [0, 65535], "of his owne attaine 'tis double wrong to truant with": [0, 65535], "his owne attaine 'tis double wrong to truant with your": [0, 65535], "owne attaine 'tis double wrong to truant with your bed": [0, 65535], "attaine 'tis double wrong to truant with your bed and": [0, 65535], "'tis double wrong to truant with your bed and let": [0, 65535], "double wrong to truant with your bed and let her": [0, 65535], "wrong to truant with your bed and let her read": [0, 65535], "to truant with your bed and let her read it": [0, 65535], "truant with your bed and let her read it in": [0, 65535], "with your bed and let her read it in thy": [0, 65535], "your bed and let her read it in thy lookes": [0, 65535], "bed and let her read it in thy lookes at": [0, 65535], "and let her read it in thy lookes at boord": [0, 65535], "let her read it in thy lookes at boord shame": [0, 65535], "her read it in thy lookes at boord shame hath": [0, 65535], "read it in thy lookes at boord shame hath a": [0, 65535], "it in thy lookes at boord shame hath a bastard": [0, 65535], "in thy lookes at boord shame hath a bastard fame": [0, 65535], "thy lookes at boord shame hath a bastard fame well": [0, 65535], "lookes at boord shame hath a bastard fame well managed": [0, 65535], "at boord shame hath a bastard fame well managed ill": [0, 65535], "boord shame hath a bastard fame well managed ill deeds": [0, 65535], "shame hath a bastard fame well managed ill deeds is": [0, 65535], "hath a bastard fame well managed ill deeds is doubled": [0, 65535], "a bastard fame well managed ill deeds is doubled with": [0, 65535], "bastard fame well managed ill deeds is doubled with an": [0, 65535], "fame well managed ill deeds is doubled with an euill": [0, 65535], "well managed ill deeds is doubled with an euill word": [0, 65535], "managed ill deeds is doubled with an euill word alas": [0, 65535], "ill deeds is doubled with an euill word alas poore": [0, 65535], "deeds is doubled with an euill word alas poore women": [0, 65535], "is doubled with an euill word alas poore women make": [0, 65535], "doubled with an euill word alas poore women make vs": [0, 65535], "with an euill word alas poore women make vs not": [0, 65535], "an euill word alas poore women make vs not beleeue": [0, 65535], "euill word alas poore women make vs not beleeue being": [0, 65535], "word alas poore women make vs not beleeue being compact": [0, 65535], "alas poore women make vs not beleeue being compact of": [0, 65535], "poore women make vs not beleeue being compact of credit": [0, 65535], "women make vs not beleeue being compact of credit that": [0, 65535], "make vs not beleeue being compact of credit that you": [0, 65535], "vs not beleeue being compact of credit that you loue": [0, 65535], "not beleeue being compact of credit that you loue vs": [0, 65535], "beleeue being compact of credit that you loue vs though": [0, 65535], "being compact of credit that you loue vs though others": [0, 65535], "compact of credit that you loue vs though others haue": [0, 65535], "of credit that you loue vs though others haue the": [0, 65535], "credit that you loue vs though others haue the arme": [0, 65535], "that you loue vs though others haue the arme shew": [0, 65535], "you loue vs though others haue the arme shew vs": [0, 65535], "loue vs though others haue the arme shew vs the": [0, 65535], "vs though others haue the arme shew vs the sleeue": [0, 65535], "though others haue the arme shew vs the sleeue we": [0, 65535], "others haue the arme shew vs the sleeue we in": [0, 65535], "haue the arme shew vs the sleeue we in your": [0, 65535], "the arme shew vs the sleeue we in your motion": [0, 65535], "arme shew vs the sleeue we in your motion turne": [0, 65535], "shew vs the sleeue we in your motion turne and": [0, 65535], "vs the sleeue we in your motion turne and you": [0, 65535], "the sleeue we in your motion turne and you may": [0, 65535], "sleeue we in your motion turne and you may moue": [0, 65535], "we in your motion turne and you may moue vs": [0, 65535], "in your motion turne and you may moue vs then": [0, 65535], "your motion turne and you may moue vs then gentle": [0, 65535], "motion turne and you may moue vs then gentle brother": [0, 65535], "turne and you may moue vs then gentle brother get": [0, 65535], "and you may moue vs then gentle brother get you": [0, 65535], "you may moue vs then gentle brother get you in": [0, 65535], "may moue vs then gentle brother get you in againe": [0, 65535], "moue vs then gentle brother get you in againe comfort": [0, 65535], "vs then gentle brother get you in againe comfort my": [0, 65535], "then gentle brother get you in againe comfort my sister": [0, 65535], "gentle brother get you in againe comfort my sister cheere": [0, 65535], "brother get you in againe comfort my sister cheere her": [0, 65535], "get you in againe comfort my sister cheere her call": [0, 65535], "you in againe comfort my sister cheere her call her": [0, 65535], "in againe comfort my sister cheere her call her wise": [0, 65535], "againe comfort my sister cheere her call her wise 'tis": [0, 65535], "comfort my sister cheere her call her wise 'tis holy": [0, 65535], "my sister cheere her call her wise 'tis holy sport": [0, 65535], "sister cheere her call her wise 'tis holy sport to": [0, 65535], "cheere her call her wise 'tis holy sport to be": [0, 65535], "her call her wise 'tis holy sport to be a": [0, 65535], "call her wise 'tis holy sport to be a little": [0, 65535], "her wise 'tis holy sport to be a little vaine": [0, 65535], "wise 'tis holy sport to be a little vaine when": [0, 65535], "'tis holy sport to be a little vaine when the": [0, 65535], "holy sport to be a little vaine when the sweet": [0, 65535], "sport to be a little vaine when the sweet breath": [0, 65535], "to be a little vaine when the sweet breath of": [0, 65535], "be a little vaine when the sweet breath of flatterie": [0, 65535], "a little vaine when the sweet breath of flatterie conquers": [0, 65535], "little vaine when the sweet breath of flatterie conquers strife": [0, 65535], "vaine when the sweet breath of flatterie conquers strife s": [0, 65535], "when the sweet breath of flatterie conquers strife s anti": [0, 65535], "the sweet breath of flatterie conquers strife s anti sweete": [0, 65535], "sweet breath of flatterie conquers strife s anti sweete mistris": [0, 65535], "breath of flatterie conquers strife s anti sweete mistris what": [0, 65535], "of flatterie conquers strife s anti sweete mistris what your": [0, 65535], "flatterie conquers strife s anti sweete mistris what your name": [0, 65535], "conquers strife s anti sweete mistris what your name is": [0, 65535], "strife s anti sweete mistris what your name is else": [0, 65535], "s anti sweete mistris what your name is else i": [0, 65535], "anti sweete mistris what your name is else i know": [0, 65535], "sweete mistris what your name is else i know not": [0, 65535], "mistris what your name is else i know not nor": [0, 65535], "what your name is else i know not nor by": [0, 65535], "your name is else i know not nor by what": [0, 65535], "name is else i know not nor by what wonder": [0, 65535], "is else i know not nor by what wonder you": [0, 65535], "else i know not nor by what wonder you do": [0, 65535], "i know not nor by what wonder you do hit": [0, 65535], "know not nor by what wonder you do hit of": [0, 65535], "not nor by what wonder you do hit of mine": [0, 65535], "nor by what wonder you do hit of mine lesse": [0, 65535], "by what wonder you do hit of mine lesse in": [0, 65535], "what wonder you do hit of mine lesse in your": [0, 65535], "wonder you do hit of mine lesse in your knowledge": [0, 65535], "you do hit of mine lesse in your knowledge and": [0, 65535], "do hit of mine lesse in your knowledge and your": [0, 65535], "hit of mine lesse in your knowledge and your grace": [0, 65535], "of mine lesse in your knowledge and your grace you": [0, 65535], "mine lesse in your knowledge and your grace you show": [0, 65535], "lesse in your knowledge and your grace you show not": [0, 65535], "in your knowledge and your grace you show not then": [0, 65535], "your knowledge and your grace you show not then our": [0, 65535], "knowledge and your grace you show not then our earths": [0, 65535], "and your grace you show not then our earths wonder": [0, 65535], "your grace you show not then our earths wonder more": [0, 65535], "grace you show not then our earths wonder more then": [0, 65535], "you show not then our earths wonder more then earth": [0, 65535], "show not then our earths wonder more then earth diuine": [0, 65535], "not then our earths wonder more then earth diuine teach": [0, 65535], "then our earths wonder more then earth diuine teach me": [0, 65535], "our earths wonder more then earth diuine teach me deere": [0, 65535], "earths wonder more then earth diuine teach me deere creature": [0, 65535], "wonder more then earth diuine teach me deere creature how": [0, 65535], "more then earth diuine teach me deere creature how to": [0, 65535], "then earth diuine teach me deere creature how to thinke": [0, 65535], "earth diuine teach me deere creature how to thinke and": [0, 65535], "diuine teach me deere creature how to thinke and speake": [0, 65535], "teach me deere creature how to thinke and speake lay": [0, 65535], "me deere creature how to thinke and speake lay open": [0, 65535], "deere creature how to thinke and speake lay open to": [0, 65535], "creature how to thinke and speake lay open to my": [0, 65535], "how to thinke and speake lay open to my earthie": [0, 65535], "to thinke and speake lay open to my earthie grosse": [0, 65535], "thinke and speake lay open to my earthie grosse conceit": [0, 65535], "and speake lay open to my earthie grosse conceit smothred": [0, 65535], "speake lay open to my earthie grosse conceit smothred in": [0, 65535], "lay open to my earthie grosse conceit smothred in errors": [0, 65535], "open to my earthie grosse conceit smothred in errors feeble": [0, 65535], "to my earthie grosse conceit smothred in errors feeble shallow": [0, 65535], "my earthie grosse conceit smothred in errors feeble shallow weake": [0, 65535], "earthie grosse conceit smothred in errors feeble shallow weake the": [0, 65535], "grosse conceit smothred in errors feeble shallow weake the foulded": [0, 65535], "conceit smothred in errors feeble shallow weake the foulded meaning": [0, 65535], "smothred in errors feeble shallow weake the foulded meaning of": [0, 65535], "in errors feeble shallow weake the foulded meaning of your": [0, 65535], "errors feeble shallow weake the foulded meaning of your words": [0, 65535], "feeble shallow weake the foulded meaning of your words deceit": [0, 65535], "shallow weake the foulded meaning of your words deceit against": [0, 65535], "weake the foulded meaning of your words deceit against my": [0, 65535], "the foulded meaning of your words deceit against my soules": [0, 65535], "foulded meaning of your words deceit against my soules pure": [0, 65535], "meaning of your words deceit against my soules pure truth": [0, 65535], "of your words deceit against my soules pure truth why": [0, 65535], "your words deceit against my soules pure truth why labour": [0, 65535], "words deceit against my soules pure truth why labour you": [0, 65535], "deceit against my soules pure truth why labour you to": [0, 65535], "against my soules pure truth why labour you to make": [0, 65535], "my soules pure truth why labour you to make it": [0, 65535], "soules pure truth why labour you to make it wander": [0, 65535], "pure truth why labour you to make it wander in": [0, 65535], "truth why labour you to make it wander in an": [0, 65535], "why labour you to make it wander in an vnknowne": [0, 65535], "labour you to make it wander in an vnknowne field": [0, 65535], "you to make it wander in an vnknowne field are": [0, 65535], "to make it wander in an vnknowne field are you": [0, 65535], "make it wander in an vnknowne field are you a": [0, 65535], "it wander in an vnknowne field are you a god": [0, 65535], "wander in an vnknowne field are you a god would": [0, 65535], "in an vnknowne field are you a god would you": [0, 65535], "an vnknowne field are you a god would you create": [0, 65535], "vnknowne field are you a god would you create me": [0, 65535], "field are you a god would you create me new": [0, 65535], "are you a god would you create me new transforme": [0, 65535], "you a god would you create me new transforme me": [0, 65535], "a god would you create me new transforme me then": [0, 65535], "god would you create me new transforme me then and": [0, 65535], "would you create me new transforme me then and to": [0, 65535], "you create me new transforme me then and to your": [0, 65535], "create me new transforme me then and to your powre": [0, 65535], "me new transforme me then and to your powre ile": [0, 65535], "new transforme me then and to your powre ile yeeld": [0, 65535], "transforme me then and to your powre ile yeeld but": [0, 65535], "me then and to your powre ile yeeld but if": [0, 65535], "then and to your powre ile yeeld but if that": [0, 65535], "and to your powre ile yeeld but if that i": [0, 65535], "to your powre ile yeeld but if that i am": [0, 65535], "your powre ile yeeld but if that i am i": [0, 65535], "powre ile yeeld but if that i am i then": [0, 65535], "ile yeeld but if that i am i then well": [0, 65535], "yeeld but if that i am i then well i": [0, 65535], "but if that i am i then well i know": [0, 65535], "if that i am i then well i know your": [0, 65535], "that i am i then well i know your weeping": [0, 65535], "i am i then well i know your weeping sister": [0, 65535], "am i then well i know your weeping sister is": [0, 65535], "i then well i know your weeping sister is no": [0, 65535], "then well i know your weeping sister is no wife": [0, 65535], "well i know your weeping sister is no wife of": [0, 65535], "i know your weeping sister is no wife of mine": [0, 65535], "know your weeping sister is no wife of mine nor": [0, 65535], "your weeping sister is no wife of mine nor to": [0, 65535], "weeping sister is no wife of mine nor to her": [0, 65535], "sister is no wife of mine nor to her bed": [0, 65535], "is no wife of mine nor to her bed no": [0, 65535], "no wife of mine nor to her bed no homage": [0, 65535], "wife of mine nor to her bed no homage doe": [0, 65535], "of mine nor to her bed no homage doe i": [0, 65535], "mine nor to her bed no homage doe i owe": [0, 65535], "nor to her bed no homage doe i owe farre": [0, 65535], "to her bed no homage doe i owe farre more": [0, 65535], "her bed no homage doe i owe farre more farre": [0, 65535], "bed no homage doe i owe farre more farre more": [0, 65535], "no homage doe i owe farre more farre more to": [0, 65535], "homage doe i owe farre more farre more to you": [0, 65535], "doe i owe farre more farre more to you doe": [0, 65535], "i owe farre more farre more to you doe i": [0, 65535], "owe farre more farre more to you doe i decline": [0, 65535], "farre more farre more to you doe i decline oh": [0, 65535], "more farre more to you doe i decline oh traine": [0, 65535], "farre more to you doe i decline oh traine me": [0, 65535], "more to you doe i decline oh traine me not": [0, 65535], "to you doe i decline oh traine me not sweet": [0, 65535], "you doe i decline oh traine me not sweet mermaide": [0, 65535], "doe i decline oh traine me not sweet mermaide with": [0, 65535], "i decline oh traine me not sweet mermaide with thy": [0, 65535], "decline oh traine me not sweet mermaide with thy note": [0, 65535], "oh traine me not sweet mermaide with thy note to": [0, 65535], "traine me not sweet mermaide with thy note to drowne": [0, 65535], "me not sweet mermaide with thy note to drowne me": [0, 65535], "not sweet mermaide with thy note to drowne me in": [0, 65535], "sweet mermaide with thy note to drowne me in thy": [0, 65535], "mermaide with thy note to drowne me in thy sister": [0, 65535], "with thy note to drowne me in thy sister floud": [0, 65535], "thy note to drowne me in thy sister floud of": [0, 65535], "note to drowne me in thy sister floud of teares": [0, 65535], "to drowne me in thy sister floud of teares sing": [0, 65535], "drowne me in thy sister floud of teares sing siren": [0, 65535], "me in thy sister floud of teares sing siren for": [0, 65535], "in thy sister floud of teares sing siren for thy": [0, 65535], "thy sister floud of teares sing siren for thy selfe": [0, 65535], "sister floud of teares sing siren for thy selfe and": [0, 65535], "floud of teares sing siren for thy selfe and i": [0, 65535], "of teares sing siren for thy selfe and i will": [0, 65535], "teares sing siren for thy selfe and i will dote": [0, 65535], "sing siren for thy selfe and i will dote spread": [0, 65535], "siren for thy selfe and i will dote spread ore": [0, 65535], "for thy selfe and i will dote spread ore the": [0, 65535], "thy selfe and i will dote spread ore the siluer": [0, 65535], "selfe and i will dote spread ore the siluer waues": [0, 65535], "and i will dote spread ore the siluer waues thy": [0, 65535], "i will dote spread ore the siluer waues thy golden": [0, 65535], "will dote spread ore the siluer waues thy golden haires": [0, 65535], "dote spread ore the siluer waues thy golden haires and": [0, 65535], "spread ore the siluer waues thy golden haires and as": [0, 65535], "ore the siluer waues thy golden haires and as a": [0, 65535], "the siluer waues thy golden haires and as a bud": [0, 65535], "siluer waues thy golden haires and as a bud ile": [0, 65535], "waues thy golden haires and as a bud ile take": [0, 65535], "thy golden haires and as a bud ile take thee": [0, 65535], "golden haires and as a bud ile take thee and": [0, 65535], "haires and as a bud ile take thee and there": [0, 65535], "and as a bud ile take thee and there lie": [0, 65535], "as a bud ile take thee and there lie and": [0, 65535], "a bud ile take thee and there lie and in": [0, 65535], "bud ile take thee and there lie and in that": [0, 65535], "ile take thee and there lie and in that glorious": [0, 65535], "take thee and there lie and in that glorious supposition": [0, 65535], "thee and there lie and in that glorious supposition thinke": [0, 65535], "and there lie and in that glorious supposition thinke he": [0, 65535], "there lie and in that glorious supposition thinke he gaines": [0, 65535], "lie and in that glorious supposition thinke he gaines by": [0, 65535], "and in that glorious supposition thinke he gaines by death": [0, 65535], "in that glorious supposition thinke he gaines by death that": [0, 65535], "that glorious supposition thinke he gaines by death that hath": [0, 65535], "glorious supposition thinke he gaines by death that hath such": [0, 65535], "supposition thinke he gaines by death that hath such meanes": [0, 65535], "thinke he gaines by death that hath such meanes to": [0, 65535], "he gaines by death that hath such meanes to die": [0, 65535], "gaines by death that hath such meanes to die let": [0, 65535], "by death that hath such meanes to die let loue": [0, 65535], "death that hath such meanes to die let loue being": [0, 65535], "that hath such meanes to die let loue being light": [0, 65535], "hath such meanes to die let loue being light be": [0, 65535], "such meanes to die let loue being light be drowned": [0, 65535], "meanes to die let loue being light be drowned if": [0, 65535], "to die let loue being light be drowned if she": [0, 65535], "die let loue being light be drowned if she sinke": [0, 65535], "let loue being light be drowned if she sinke luc": [0, 65535], "loue being light be drowned if she sinke luc what": [0, 65535], "being light be drowned if she sinke luc what are": [0, 65535], "light be drowned if she sinke luc what are you": [0, 65535], "be drowned if she sinke luc what are you mad": [0, 65535], "drowned if she sinke luc what are you mad that": [0, 65535], "if she sinke luc what are you mad that you": [0, 65535], "she sinke luc what are you mad that you doe": [0, 65535], "sinke luc what are you mad that you doe reason": [0, 65535], "luc what are you mad that you doe reason so": [0, 65535], "what are you mad that you doe reason so ant": [0, 65535], "are you mad that you doe reason so ant not": [0, 65535], "you mad that you doe reason so ant not mad": [0, 65535], "mad that you doe reason so ant not mad but": [0, 65535], "that you doe reason so ant not mad but mated": [0, 65535], "you doe reason so ant not mad but mated how": [0, 65535], "doe reason so ant not mad but mated how i": [0, 65535], "reason so ant not mad but mated how i doe": [0, 65535], "so ant not mad but mated how i doe not": [0, 65535], "ant not mad but mated how i doe not know": [0, 65535], "not mad but mated how i doe not know luc": [0, 65535], "mad but mated how i doe not know luc it": [0, 65535], "but mated how i doe not know luc it is": [0, 65535], "mated how i doe not know luc it is a": [0, 65535], "how i doe not know luc it is a fault": [0, 65535], "i doe not know luc it is a fault that": [0, 65535], "doe not know luc it is a fault that springeth": [0, 65535], "not know luc it is a fault that springeth from": [0, 65535], "know luc it is a fault that springeth from your": [0, 65535], "luc it is a fault that springeth from your eie": [0, 65535], "it is a fault that springeth from your eie ant": [0, 65535], "is a fault that springeth from your eie ant for": [0, 65535], "a fault that springeth from your eie ant for gazing": [0, 65535], "fault that springeth from your eie ant for gazing on": [0, 65535], "that springeth from your eie ant for gazing on your": [0, 65535], "springeth from your eie ant for gazing on your beames": [0, 65535], "from your eie ant for gazing on your beames faire": [0, 65535], "your eie ant for gazing on your beames faire sun": [0, 65535], "eie ant for gazing on your beames faire sun being": [0, 65535], "ant for gazing on your beames faire sun being by": [0, 65535], "for gazing on your beames faire sun being by luc": [0, 65535], "gazing on your beames faire sun being by luc gaze": [0, 65535], "on your beames faire sun being by luc gaze when": [0, 65535], "your beames faire sun being by luc gaze when you": [0, 65535], "beames faire sun being by luc gaze when you should": [0, 65535], "faire sun being by luc gaze when you should and": [0, 65535], "sun being by luc gaze when you should and that": [0, 65535], "being by luc gaze when you should and that will": [0, 65535], "by luc gaze when you should and that will cleere": [0, 65535], "luc gaze when you should and that will cleere your": [0, 65535], "gaze when you should and that will cleere your sight": [0, 65535], "when you should and that will cleere your sight ant": [0, 65535], "you should and that will cleere your sight ant as": [0, 65535], "should and that will cleere your sight ant as good": [0, 65535], "and that will cleere your sight ant as good to": [0, 65535], "that will cleere your sight ant as good to winke": [0, 65535], "will cleere your sight ant as good to winke sweet": [0, 65535], "cleere your sight ant as good to winke sweet loue": [0, 65535], "your sight ant as good to winke sweet loue as": [0, 65535], "sight ant as good to winke sweet loue as looke": [0, 65535], "ant as good to winke sweet loue as looke on": [0, 65535], "as good to winke sweet loue as looke on night": [0, 65535], "good to winke sweet loue as looke on night luc": [0, 65535], "to winke sweet loue as looke on night luc why": [0, 65535], "winke sweet loue as looke on night luc why call": [0, 65535], "sweet loue as looke on night luc why call you": [0, 65535], "loue as looke on night luc why call you me": [0, 65535], "as looke on night luc why call you me loue": [0, 65535], "looke on night luc why call you me loue call": [0, 65535], "on night luc why call you me loue call my": [0, 65535], "night luc why call you me loue call my sister": [0, 65535], "luc why call you me loue call my sister so": [0, 65535], "why call you me loue call my sister so ant": [0, 65535], "call you me loue call my sister so ant thy": [0, 65535], "you me loue call my sister so ant thy sisters": [0, 65535], "me loue call my sister so ant thy sisters sister": [0, 65535], "loue call my sister so ant thy sisters sister luc": [0, 65535], "call my sister so ant thy sisters sister luc that's": [0, 65535], "my sister so ant thy sisters sister luc that's my": [0, 65535], "sister so ant thy sisters sister luc that's my sister": [0, 65535], "so ant thy sisters sister luc that's my sister ant": [0, 65535], "ant thy sisters sister luc that's my sister ant no": [0, 65535], "thy sisters sister luc that's my sister ant no it": [0, 65535], "sisters sister luc that's my sister ant no it is": [0, 65535], "sister luc that's my sister ant no it is thy": [0, 65535], "luc that's my sister ant no it is thy selfe": [0, 65535], "that's my sister ant no it is thy selfe mine": [0, 65535], "my sister ant no it is thy selfe mine owne": [0, 65535], "sister ant no it is thy selfe mine owne selfes": [0, 65535], "ant no it is thy selfe mine owne selfes better": [0, 65535], "no it is thy selfe mine owne selfes better part": [0, 65535], "it is thy selfe mine owne selfes better part mine": [0, 65535], "is thy selfe mine owne selfes better part mine eies": [0, 65535], "thy selfe mine owne selfes better part mine eies cleere": [0, 65535], "selfe mine owne selfes better part mine eies cleere eie": [0, 65535], "mine owne selfes better part mine eies cleere eie my": [0, 65535], "owne selfes better part mine eies cleere eie my deere": [0, 65535], "selfes better part mine eies cleere eie my deere hearts": [0, 65535], "better part mine eies cleere eie my deere hearts deerer": [0, 65535], "part mine eies cleere eie my deere hearts deerer heart": [0, 65535], "mine eies cleere eie my deere hearts deerer heart my": [0, 65535], "eies cleere eie my deere hearts deerer heart my foode": [0, 65535], "cleere eie my deere hearts deerer heart my foode my": [0, 65535], "eie my deere hearts deerer heart my foode my fortune": [0, 65535], "my deere hearts deerer heart my foode my fortune and": [0, 65535], "deere hearts deerer heart my foode my fortune and my": [0, 65535], "hearts deerer heart my foode my fortune and my sweet": [0, 65535], "deerer heart my foode my fortune and my sweet hopes": [0, 65535], "heart my foode my fortune and my sweet hopes aime": [0, 65535], "my foode my fortune and my sweet hopes aime my": [0, 65535], "foode my fortune and my sweet hopes aime my sole": [0, 65535], "my fortune and my sweet hopes aime my sole earths": [0, 65535], "fortune and my sweet hopes aime my sole earths heauen": [0, 65535], "and my sweet hopes aime my sole earths heauen and": [0, 65535], "my sweet hopes aime my sole earths heauen and my": [0, 65535], "sweet hopes aime my sole earths heauen and my heauens": [0, 65535], "hopes aime my sole earths heauen and my heauens claime": [0, 65535], "aime my sole earths heauen and my heauens claime luc": [0, 65535], "my sole earths heauen and my heauens claime luc all": [0, 65535], "sole earths heauen and my heauens claime luc all this": [0, 65535], "earths heauen and my heauens claime luc all this my": [0, 65535], "heauen and my heauens claime luc all this my sister": [0, 65535], "and my heauens claime luc all this my sister is": [0, 65535], "my heauens claime luc all this my sister is or": [0, 65535], "heauens claime luc all this my sister is or else": [0, 65535], "claime luc all this my sister is or else should": [0, 65535], "luc all this my sister is or else should be": [0, 65535], "all this my sister is or else should be ant": [0, 65535], "this my sister is or else should be ant call": [0, 65535], "my sister is or else should be ant call thy": [0, 65535], "sister is or else should be ant call thy selfe": [0, 65535], "is or else should be ant call thy selfe sister": [0, 65535], "or else should be ant call thy selfe sister sweet": [0, 65535], "else should be ant call thy selfe sister sweet for": [0, 65535], "should be ant call thy selfe sister sweet for i": [0, 65535], "be ant call thy selfe sister sweet for i am": [0, 65535], "ant call thy selfe sister sweet for i am thee": [0, 65535], "call thy selfe sister sweet for i am thee thee": [0, 65535], "thy selfe sister sweet for i am thee thee will": [0, 65535], "selfe sister sweet for i am thee thee will i": [0, 65535], "sister sweet for i am thee thee will i loue": [0, 65535], "sweet for i am thee thee will i loue and": [0, 65535], "for i am thee thee will i loue and with": [0, 65535], "i am thee thee will i loue and with thee": [0, 65535], "am thee thee will i loue and with thee lead": [0, 65535], "thee thee will i loue and with thee lead my": [0, 65535], "thee will i loue and with thee lead my life": [0, 65535], "will i loue and with thee lead my life thou": [0, 65535], "i loue and with thee lead my life thou hast": [0, 65535], "loue and with thee lead my life thou hast no": [0, 65535], "and with thee lead my life thou hast no husband": [0, 65535], "with thee lead my life thou hast no husband yet": [0, 65535], "thee lead my life thou hast no husband yet nor": [0, 65535], "lead my life thou hast no husband yet nor i": [0, 65535], "my life thou hast no husband yet nor i no": [0, 65535], "life thou hast no husband yet nor i no wife": [0, 65535], "thou hast no husband yet nor i no wife giue": [0, 65535], "hast no husband yet nor i no wife giue me": [0, 65535], "no husband yet nor i no wife giue me thy": [0, 65535], "husband yet nor i no wife giue me thy hand": [0, 65535], "yet nor i no wife giue me thy hand luc": [0, 65535], "nor i no wife giue me thy hand luc oh": [0, 65535], "i no wife giue me thy hand luc oh soft": [0, 65535], "no wife giue me thy hand luc oh soft sir": [0, 65535], "wife giue me thy hand luc oh soft sir hold": [0, 65535], "giue me thy hand luc oh soft sir hold you": [0, 65535], "me thy hand luc oh soft sir hold you still": [0, 65535], "thy hand luc oh soft sir hold you still ile": [0, 65535], "hand luc oh soft sir hold you still ile fetch": [0, 65535], "luc oh soft sir hold you still ile fetch my": [0, 65535], "oh soft sir hold you still ile fetch my sister": [0, 65535], "soft sir hold you still ile fetch my sister to": [0, 65535], "sir hold you still ile fetch my sister to get": [0, 65535], "hold you still ile fetch my sister to get her": [0, 65535], "you still ile fetch my sister to get her good": [0, 65535], "still ile fetch my sister to get her good will": [0, 65535], "ile fetch my sister to get her good will exit": [0, 65535], "fetch my sister to get her good will exit enter": [0, 65535], "my sister to get her good will exit enter dromio": [0, 65535], "sister to get her good will exit enter dromio siracusia": [0, 65535], "to get her good will exit enter dromio siracusia ant": [0, 65535], "get her good will exit enter dromio siracusia ant why": [0, 65535], "her good will exit enter dromio siracusia ant why how": [0, 65535], "good will exit enter dromio siracusia ant why how now": [0, 65535], "will exit enter dromio siracusia ant why how now dromio": [0, 65535], "exit enter dromio siracusia ant why how now dromio where": [0, 65535], "enter dromio siracusia ant why how now dromio where run'st": [0, 65535], "dromio siracusia ant why how now dromio where run'st thou": [0, 65535], "siracusia ant why how now dromio where run'st thou so": [0, 65535], "ant why how now dromio where run'st thou so fast": [0, 65535], "why how now dromio where run'st thou so fast s": [0, 65535], "how now dromio where run'st thou so fast s dro": [0, 65535], "now dromio where run'st thou so fast s dro doe": [0, 65535], "dromio where run'st thou so fast s dro doe you": [0, 65535], "where run'st thou so fast s dro doe you know": [0, 65535], "run'st thou so fast s dro doe you know me": [0, 65535], "thou so fast s dro doe you know me sir": [0, 65535], "so fast s dro doe you know me sir am": [0, 65535], "fast s dro doe you know me sir am i": [0, 65535], "s dro doe you know me sir am i dromio": [0, 65535], "dro doe you know me sir am i dromio am": [0, 65535], "doe you know me sir am i dromio am i": [0, 65535], "you know me sir am i dromio am i your": [0, 65535], "know me sir am i dromio am i your man": [0, 65535], "me sir am i dromio am i your man am": [0, 65535], "sir am i dromio am i your man am i": [0, 65535], "am i dromio am i your man am i my": [0, 65535], "i dromio am i your man am i my selfe": [0, 65535], "dromio am i your man am i my selfe ant": [0, 65535], "am i your man am i my selfe ant thou": [0, 65535], "i your man am i my selfe ant thou art": [0, 65535], "your man am i my selfe ant thou art dromio": [0, 65535], "man am i my selfe ant thou art dromio thou": [0, 65535], "am i my selfe ant thou art dromio thou art": [0, 65535], "i my selfe ant thou art dromio thou art my": [0, 65535], "my selfe ant thou art dromio thou art my man": [0, 65535], "selfe ant thou art dromio thou art my man thou": [0, 65535], "ant thou art dromio thou art my man thou art": [0, 65535], "thou art dromio thou art my man thou art thy": [0, 65535], "art dromio thou art my man thou art thy selfe": [0, 65535], "dromio thou art my man thou art thy selfe dro": [0, 65535], "thou art my man thou art thy selfe dro i": [0, 65535], "art my man thou art thy selfe dro i am": [0, 65535], "my man thou art thy selfe dro i am an": [0, 65535], "man thou art thy selfe dro i am an asse": [0, 65535], "thou art thy selfe dro i am an asse i": [0, 65535], "art thy selfe dro i am an asse i am": [0, 65535], "thy selfe dro i am an asse i am a": [0, 65535], "selfe dro i am an asse i am a womans": [0, 65535], "dro i am an asse i am a womans man": [0, 65535], "i am an asse i am a womans man and": [0, 65535], "am an asse i am a womans man and besides": [0, 65535], "an asse i am a womans man and besides my": [0, 65535], "asse i am a womans man and besides my selfe": [0, 65535], "i am a womans man and besides my selfe ant": [0, 65535], "am a womans man and besides my selfe ant what": [0, 65535], "a womans man and besides my selfe ant what womans": [0, 65535], "womans man and besides my selfe ant what womans man": [0, 65535], "man and besides my selfe ant what womans man and": [0, 65535], "and besides my selfe ant what womans man and how": [0, 65535], "besides my selfe ant what womans man and how besides": [0, 65535], "my selfe ant what womans man and how besides thy": [0, 65535], "selfe ant what womans man and how besides thy selfe": [0, 65535], "ant what womans man and how besides thy selfe dro": [0, 65535], "what womans man and how besides thy selfe dro marrie": [0, 65535], "womans man and how besides thy selfe dro marrie sir": [0, 65535], "man and how besides thy selfe dro marrie sir besides": [0, 65535], "and how besides thy selfe dro marrie sir besides my": [0, 65535], "how besides thy selfe dro marrie sir besides my selfe": [0, 65535], "besides thy selfe dro marrie sir besides my selfe i": [0, 65535], "thy selfe dro marrie sir besides my selfe i am": [0, 65535], "selfe dro marrie sir besides my selfe i am due": [0, 65535], "dro marrie sir besides my selfe i am due to": [0, 65535], "marrie sir besides my selfe i am due to a": [0, 65535], "sir besides my selfe i am due to a woman": [0, 65535], "besides my selfe i am due to a woman one": [0, 65535], "my selfe i am due to a woman one that": [0, 65535], "selfe i am due to a woman one that claimes": [0, 65535], "i am due to a woman one that claimes me": [0, 65535], "am due to a woman one that claimes me one": [0, 65535], "due to a woman one that claimes me one that": [0, 65535], "to a woman one that claimes me one that haunts": [0, 65535], "a woman one that claimes me one that haunts me": [0, 65535], "woman one that claimes me one that haunts me one": [0, 65535], "one that claimes me one that haunts me one that": [0, 65535], "that claimes me one that haunts me one that will": [0, 65535], "claimes me one that haunts me one that will haue": [0, 65535], "me one that haunts me one that will haue me": [0, 65535], "one that haunts me one that will haue me anti": [0, 65535], "that haunts me one that will haue me anti what": [0, 65535], "haunts me one that will haue me anti what claime": [0, 65535], "me one that will haue me anti what claime laies": [0, 65535], "one that will haue me anti what claime laies she": [0, 65535], "that will haue me anti what claime laies she to": [0, 65535], "will haue me anti what claime laies she to thee": [0, 65535], "haue me anti what claime laies she to thee dro": [0, 65535], "me anti what claime laies she to thee dro marry": [0, 65535], "anti what claime laies she to thee dro marry sir": [0, 65535], "what claime laies she to thee dro marry sir such": [0, 65535], "claime laies she to thee dro marry sir such claime": [0, 65535], "laies she to thee dro marry sir such claime as": [0, 65535], "she to thee dro marry sir such claime as you": [0, 65535], "to thee dro marry sir such claime as you would": [0, 65535], "thee dro marry sir such claime as you would lay": [0, 65535], "dro marry sir such claime as you would lay to": [0, 65535], "marry sir such claime as you would lay to your": [0, 65535], "sir such claime as you would lay to your horse": [0, 65535], "such claime as you would lay to your horse and": [0, 65535], "claime as you would lay to your horse and she": [0, 65535], "as you would lay to your horse and she would": [0, 65535], "you would lay to your horse and she would haue": [0, 65535], "would lay to your horse and she would haue me": [0, 65535], "lay to your horse and she would haue me as": [0, 65535], "to your horse and she would haue me as a": [0, 65535], "your horse and she would haue me as a beast": [0, 65535], "horse and she would haue me as a beast not": [0, 65535], "and she would haue me as a beast not that": [0, 65535], "she would haue me as a beast not that i": [0, 65535], "would haue me as a beast not that i beeing": [0, 65535], "haue me as a beast not that i beeing a": [0, 65535], "me as a beast not that i beeing a beast": [0, 65535], "as a beast not that i beeing a beast she": [0, 65535], "a beast not that i beeing a beast she would": [0, 65535], "beast not that i beeing a beast she would haue": [0, 65535], "not that i beeing a beast she would haue me": [0, 65535], "that i beeing a beast she would haue me but": [0, 65535], "i beeing a beast she would haue me but that": [0, 65535], "beeing a beast she would haue me but that she": [0, 65535], "a beast she would haue me but that she being": [0, 65535], "beast she would haue me but that she being a": [0, 65535], "she would haue me but that she being a verie": [0, 65535], "would haue me but that she being a verie beastly": [0, 65535], "haue me but that she being a verie beastly creature": [0, 65535], "me but that she being a verie beastly creature layes": [0, 65535], "but that she being a verie beastly creature layes claime": [0, 65535], "that she being a verie beastly creature layes claime to": [0, 65535], "she being a verie beastly creature layes claime to me": [0, 65535], "being a verie beastly creature layes claime to me anti": [0, 65535], "a verie beastly creature layes claime to me anti what": [0, 65535], "verie beastly creature layes claime to me anti what is": [0, 65535], "beastly creature layes claime to me anti what is she": [0, 65535], "creature layes claime to me anti what is she dro": [0, 65535], "layes claime to me anti what is she dro a": [0, 65535], "claime to me anti what is she dro a very": [0, 65535], "to me anti what is she dro a very reuerent": [0, 65535], "me anti what is she dro a very reuerent body": [0, 65535], "anti what is she dro a very reuerent body i": [0, 65535], "what is she dro a very reuerent body i such": [0, 65535], "is she dro a very reuerent body i such a": [0, 65535], "she dro a very reuerent body i such a one": [0, 65535], "dro a very reuerent body i such a one as": [0, 65535], "a very reuerent body i such a one as a": [0, 65535], "very reuerent body i such a one as a man": [0, 65535], "reuerent body i such a one as a man may": [0, 65535], "body i such a one as a man may not": [0, 65535], "i such a one as a man may not speake": [0, 65535], "such a one as a man may not speake of": [0, 65535], "a one as a man may not speake of without": [0, 65535], "one as a man may not speake of without he": [0, 65535], "as a man may not speake of without he say": [0, 65535], "a man may not speake of without he say sir": [0, 65535], "man may not speake of without he say sir reuerence": [0, 65535], "may not speake of without he say sir reuerence i": [0, 65535], "not speake of without he say sir reuerence i haue": [0, 65535], "speake of without he say sir reuerence i haue but": [0, 65535], "of without he say sir reuerence i haue but leane": [0, 65535], "without he say sir reuerence i haue but leane lucke": [0, 65535], "he say sir reuerence i haue but leane lucke in": [0, 65535], "say sir reuerence i haue but leane lucke in the": [0, 65535], "sir reuerence i haue but leane lucke in the match": [0, 65535], "reuerence i haue but leane lucke in the match and": [0, 65535], "i haue but leane lucke in the match and yet": [0, 65535], "haue but leane lucke in the match and yet is": [0, 65535], "but leane lucke in the match and yet is she": [0, 65535], "leane lucke in the match and yet is she a": [0, 65535], "lucke in the match and yet is she a wondrous": [0, 65535], "in the match and yet is she a wondrous fat": [0, 65535], "the match and yet is she a wondrous fat marriage": [0, 65535], "match and yet is she a wondrous fat marriage anti": [0, 65535], "and yet is she a wondrous fat marriage anti how": [0, 65535], "yet is she a wondrous fat marriage anti how dost": [0, 65535], "is she a wondrous fat marriage anti how dost thou": [0, 65535], "she a wondrous fat marriage anti how dost thou meane": [0, 65535], "a wondrous fat marriage anti how dost thou meane a": [0, 65535], "wondrous fat marriage anti how dost thou meane a fat": [0, 65535], "fat marriage anti how dost thou meane a fat marriage": [0, 65535], "marriage anti how dost thou meane a fat marriage dro": [0, 65535], "anti how dost thou meane a fat marriage dro marry": [0, 65535], "how dost thou meane a fat marriage dro marry sir": [0, 65535], "dost thou meane a fat marriage dro marry sir she's": [0, 65535], "thou meane a fat marriage dro marry sir she's the": [0, 65535], "meane a fat marriage dro marry sir she's the kitchin": [0, 65535], "a fat marriage dro marry sir she's the kitchin wench": [0, 65535], "fat marriage dro marry sir she's the kitchin wench al": [0, 65535], "marriage dro marry sir she's the kitchin wench al grease": [0, 65535], "dro marry sir she's the kitchin wench al grease and": [0, 65535], "marry sir she's the kitchin wench al grease and i": [0, 65535], "sir she's the kitchin wench al grease and i know": [0, 65535], "she's the kitchin wench al grease and i know not": [0, 65535], "the kitchin wench al grease and i know not what": [0, 65535], "kitchin wench al grease and i know not what vse": [0, 65535], "wench al grease and i know not what vse to": [0, 65535], "al grease and i know not what vse to put": [0, 65535], "grease and i know not what vse to put her": [0, 65535], "and i know not what vse to put her too": [0, 65535], "i know not what vse to put her too but": [0, 65535], "know not what vse to put her too but to": [0, 65535], "not what vse to put her too but to make": [0, 65535], "what vse to put her too but to make a": [0, 65535], "vse to put her too but to make a lampe": [0, 65535], "to put her too but to make a lampe of": [0, 65535], "put her too but to make a lampe of her": [0, 65535], "her too but to make a lampe of her and": [0, 65535], "too but to make a lampe of her and run": [0, 65535], "but to make a lampe of her and run from": [0, 65535], "to make a lampe of her and run from her": [0, 65535], "make a lampe of her and run from her by": [0, 65535], "a lampe of her and run from her by her": [0, 65535], "lampe of her and run from her by her owne": [0, 65535], "of her and run from her by her owne light": [0, 65535], "her and run from her by her owne light i": [0, 65535], "and run from her by her owne light i warrant": [0, 65535], "run from her by her owne light i warrant her": [0, 65535], "from her by her owne light i warrant her ragges": [0, 65535], "her by her owne light i warrant her ragges and": [0, 65535], "by her owne light i warrant her ragges and the": [0, 65535], "her owne light i warrant her ragges and the tallow": [0, 65535], "owne light i warrant her ragges and the tallow in": [0, 65535], "light i warrant her ragges and the tallow in them": [0, 65535], "i warrant her ragges and the tallow in them will": [0, 65535], "warrant her ragges and the tallow in them will burne": [0, 65535], "her ragges and the tallow in them will burne a": [0, 65535], "ragges and the tallow in them will burne a poland": [0, 65535], "and the tallow in them will burne a poland winter": [0, 65535], "the tallow in them will burne a poland winter if": [0, 65535], "tallow in them will burne a poland winter if she": [0, 65535], "in them will burne a poland winter if she liues": [0, 65535], "them will burne a poland winter if she liues till": [0, 65535], "will burne a poland winter if she liues till doomesday": [0, 65535], "burne a poland winter if she liues till doomesday she'l": [0, 65535], "a poland winter if she liues till doomesday she'l burne": [0, 65535], "poland winter if she liues till doomesday she'l burne a": [0, 65535], "winter if she liues till doomesday she'l burne a weeke": [0, 65535], "if she liues till doomesday she'l burne a weeke longer": [0, 65535], "she liues till doomesday she'l burne a weeke longer then": [0, 65535], "liues till doomesday she'l burne a weeke longer then the": [0, 65535], "till doomesday she'l burne a weeke longer then the whole": [0, 65535], "doomesday she'l burne a weeke longer then the whole world": [0, 65535], "she'l burne a weeke longer then the whole world anti": [0, 65535], "burne a weeke longer then the whole world anti what": [0, 65535], "a weeke longer then the whole world anti what complexion": [0, 65535], "weeke longer then the whole world anti what complexion is": [0, 65535], "longer then the whole world anti what complexion is she": [0, 65535], "then the whole world anti what complexion is she of": [0, 65535], "the whole world anti what complexion is she of dro": [0, 65535], "whole world anti what complexion is she of dro swart": [0, 65535], "world anti what complexion is she of dro swart like": [0, 65535], "anti what complexion is she of dro swart like my": [0, 65535], "what complexion is she of dro swart like my shoo": [0, 65535], "complexion is she of dro swart like my shoo but": [0, 65535], "is she of dro swart like my shoo but her": [0, 65535], "she of dro swart like my shoo but her face": [0, 65535], "of dro swart like my shoo but her face nothing": [0, 65535], "dro swart like my shoo but her face nothing like": [0, 65535], "swart like my shoo but her face nothing like so": [0, 65535], "like my shoo but her face nothing like so cleane": [0, 65535], "my shoo but her face nothing like so cleane kept": [0, 65535], "shoo but her face nothing like so cleane kept for": [0, 65535], "but her face nothing like so cleane kept for why": [0, 65535], "her face nothing like so cleane kept for why she": [0, 65535], "face nothing like so cleane kept for why she sweats": [0, 65535], "nothing like so cleane kept for why she sweats a": [0, 65535], "like so cleane kept for why she sweats a man": [0, 65535], "so cleane kept for why she sweats a man may": [0, 65535], "cleane kept for why she sweats a man may goe": [0, 65535], "kept for why she sweats a man may goe o": [0, 65535], "for why she sweats a man may goe o uer": [0, 65535], "why she sweats a man may goe o uer shooes": [0, 65535], "she sweats a man may goe o uer shooes in": [0, 65535], "sweats a man may goe o uer shooes in the": [0, 65535], "a man may goe o uer shooes in the grime": [0, 65535], "man may goe o uer shooes in the grime of": [0, 65535], "may goe o uer shooes in the grime of it": [0, 65535], "goe o uer shooes in the grime of it anti": [0, 65535], "o uer shooes in the grime of it anti that's": [0, 65535], "uer shooes in the grime of it anti that's a": [0, 65535], "shooes in the grime of it anti that's a fault": [0, 65535], "in the grime of it anti that's a fault that": [0, 65535], "the grime of it anti that's a fault that water": [0, 65535], "grime of it anti that's a fault that water will": [0, 65535], "of it anti that's a fault that water will mend": [0, 65535], "it anti that's a fault that water will mend dro": [0, 65535], "anti that's a fault that water will mend dro no": [0, 65535], "that's a fault that water will mend dro no sir": [0, 65535], "a fault that water will mend dro no sir 'tis": [0, 65535], "fault that water will mend dro no sir 'tis in": [0, 65535], "that water will mend dro no sir 'tis in graine": [0, 65535], "water will mend dro no sir 'tis in graine noahs": [0, 65535], "will mend dro no sir 'tis in graine noahs flood": [0, 65535], "mend dro no sir 'tis in graine noahs flood could": [0, 65535], "dro no sir 'tis in graine noahs flood could not": [0, 65535], "no sir 'tis in graine noahs flood could not do": [0, 65535], "sir 'tis in graine noahs flood could not do it": [0, 65535], "'tis in graine noahs flood could not do it anti": [0, 65535], "in graine noahs flood could not do it anti what's": [0, 65535], "graine noahs flood could not do it anti what's her": [0, 65535], "noahs flood could not do it anti what's her name": [0, 65535], "flood could not do it anti what's her name dro": [0, 65535], "could not do it anti what's her name dro nell": [0, 65535], "not do it anti what's her name dro nell sir": [0, 65535], "do it anti what's her name dro nell sir but": [0, 65535], "it anti what's her name dro nell sir but her": [0, 65535], "anti what's her name dro nell sir but her name": [0, 65535], "what's her name dro nell sir but her name is": [0, 65535], "her name dro nell sir but her name is three": [0, 65535], "name dro nell sir but her name is three quarters": [0, 65535], "dro nell sir but her name is three quarters that's": [0, 65535], "nell sir but her name is three quarters that's an": [0, 65535], "sir but her name is three quarters that's an ell": [0, 65535], "but her name is three quarters that's an ell and": [0, 65535], "her name is three quarters that's an ell and three": [0, 65535], "name is three quarters that's an ell and three quarters": [0, 65535], "is three quarters that's an ell and three quarters will": [0, 65535], "three quarters that's an ell and three quarters will not": [0, 65535], "quarters that's an ell and three quarters will not measure": [0, 65535], "that's an ell and three quarters will not measure her": [0, 65535], "an ell and three quarters will not measure her from": [0, 65535], "ell and three quarters will not measure her from hip": [0, 65535], "and three quarters will not measure her from hip to": [0, 65535], "three quarters will not measure her from hip to hip": [0, 65535], "quarters will not measure her from hip to hip anti": [0, 65535], "will not measure her from hip to hip anti then": [0, 65535], "not measure her from hip to hip anti then she": [0, 65535], "measure her from hip to hip anti then she beares": [0, 65535], "her from hip to hip anti then she beares some": [0, 65535], "from hip to hip anti then she beares some bredth": [0, 65535], "hip to hip anti then she beares some bredth dro": [0, 65535], "to hip anti then she beares some bredth dro no": [0, 65535], "hip anti then she beares some bredth dro no longer": [0, 65535], "anti then she beares some bredth dro no longer from": [0, 65535], "then she beares some bredth dro no longer from head": [0, 65535], "she beares some bredth dro no longer from head to": [0, 65535], "beares some bredth dro no longer from head to foot": [0, 65535], "some bredth dro no longer from head to foot then": [0, 65535], "bredth dro no longer from head to foot then from": [0, 65535], "dro no longer from head to foot then from hippe": [0, 65535], "no longer from head to foot then from hippe to": [0, 65535], "longer from head to foot then from hippe to hippe": [0, 65535], "from head to foot then from hippe to hippe she": [0, 65535], "head to foot then from hippe to hippe she is": [0, 65535], "to foot then from hippe to hippe she is sphericall": [0, 65535], "foot then from hippe to hippe she is sphericall like": [0, 65535], "then from hippe to hippe she is sphericall like a": [0, 65535], "from hippe to hippe she is sphericall like a globe": [0, 65535], "hippe to hippe she is sphericall like a globe i": [0, 65535], "to hippe she is sphericall like a globe i could": [0, 65535], "hippe she is sphericall like a globe i could find": [0, 65535], "she is sphericall like a globe i could find out": [0, 65535], "is sphericall like a globe i could find out countries": [0, 65535], "sphericall like a globe i could find out countries in": [0, 65535], "like a globe i could find out countries in her": [0, 65535], "a globe i could find out countries in her anti": [0, 65535], "globe i could find out countries in her anti in": [0, 65535], "i could find out countries in her anti in what": [0, 65535], "could find out countries in her anti in what part": [0, 65535], "find out countries in her anti in what part of": [0, 65535], "out countries in her anti in what part of her": [0, 65535], "countries in her anti in what part of her body": [0, 65535], "in her anti in what part of her body stands": [0, 65535], "her anti in what part of her body stands ireland": [0, 65535], "anti in what part of her body stands ireland dro": [0, 65535], "in what part of her body stands ireland dro marry": [0, 65535], "what part of her body stands ireland dro marry sir": [0, 65535], "part of her body stands ireland dro marry sir in": [0, 65535], "of her body stands ireland dro marry sir in her": [0, 65535], "her body stands ireland dro marry sir in her buttockes": [0, 65535], "body stands ireland dro marry sir in her buttockes i": [0, 65535], "stands ireland dro marry sir in her buttockes i found": [0, 65535], "ireland dro marry sir in her buttockes i found it": [0, 65535], "dro marry sir in her buttockes i found it out": [0, 65535], "marry sir in her buttockes i found it out by": [0, 65535], "sir in her buttockes i found it out by the": [0, 65535], "in her buttockes i found it out by the bogges": [0, 65535], "her buttockes i found it out by the bogges ant": [0, 65535], "buttockes i found it out by the bogges ant where": [0, 65535], "i found it out by the bogges ant where scotland": [0, 65535], "found it out by the bogges ant where scotland dro": [0, 65535], "it out by the bogges ant where scotland dro i": [0, 65535], "out by the bogges ant where scotland dro i found": [0, 65535], "by the bogges ant where scotland dro i found it": [0, 65535], "the bogges ant where scotland dro i found it by": [0, 65535], "bogges ant where scotland dro i found it by the": [0, 65535], "ant where scotland dro i found it by the barrennesse": [0, 65535], "where scotland dro i found it by the barrennesse hard": [0, 65535], "scotland dro i found it by the barrennesse hard in": [0, 65535], "dro i found it by the barrennesse hard in the": [0, 65535], "i found it by the barrennesse hard in the palme": [0, 65535], "found it by the barrennesse hard in the palme of": [0, 65535], "it by the barrennesse hard in the palme of the": [0, 65535], "by the barrennesse hard in the palme of the hand": [0, 65535], "the barrennesse hard in the palme of the hand ant": [0, 65535], "barrennesse hard in the palme of the hand ant where": [0, 65535], "hard in the palme of the hand ant where france": [0, 65535], "in the palme of the hand ant where france dro": [0, 65535], "the palme of the hand ant where france dro in": [0, 65535], "palme of the hand ant where france dro in her": [0, 65535], "of the hand ant where france dro in her forhead": [0, 65535], "the hand ant where france dro in her forhead arm'd": [0, 65535], "hand ant where france dro in her forhead arm'd and": [0, 65535], "ant where france dro in her forhead arm'd and reuerted": [0, 65535], "where france dro in her forhead arm'd and reuerted making": [0, 65535], "france dro in her forhead arm'd and reuerted making warre": [0, 65535], "dro in her forhead arm'd and reuerted making warre against": [0, 65535], "in her forhead arm'd and reuerted making warre against her": [0, 65535], "her forhead arm'd and reuerted making warre against her heire": [0, 65535], "forhead arm'd and reuerted making warre against her heire ant": [0, 65535], "arm'd and reuerted making warre against her heire ant where": [0, 65535], "and reuerted making warre against her heire ant where england": [0, 65535], "reuerted making warre against her heire ant where england dro": [0, 65535], "making warre against her heire ant where england dro i": [0, 65535], "warre against her heire ant where england dro i look'd": [0, 65535], "against her heire ant where england dro i look'd for": [0, 65535], "her heire ant where england dro i look'd for the": [0, 65535], "heire ant where england dro i look'd for the chalkle": [0, 65535], "ant where england dro i look'd for the chalkle cliffes": [0, 65535], "where england dro i look'd for the chalkle cliffes but": [0, 65535], "england dro i look'd for the chalkle cliffes but i": [0, 65535], "dro i look'd for the chalkle cliffes but i could": [0, 65535], "i look'd for the chalkle cliffes but i could find": [0, 65535], "look'd for the chalkle cliffes but i could find no": [0, 65535], "for the chalkle cliffes but i could find no whitenesse": [0, 65535], "the chalkle cliffes but i could find no whitenesse in": [0, 65535], "chalkle cliffes but i could find no whitenesse in them": [0, 65535], "cliffes but i could find no whitenesse in them but": [0, 65535], "but i could find no whitenesse in them but i": [0, 65535], "i could find no whitenesse in them but i guesse": [0, 65535], "could find no whitenesse in them but i guesse it": [0, 65535], "find no whitenesse in them but i guesse it stood": [0, 65535], "no whitenesse in them but i guesse it stood in": [0, 65535], "whitenesse in them but i guesse it stood in her": [0, 65535], "in them but i guesse it stood in her chin": [0, 65535], "them but i guesse it stood in her chin by": [0, 65535], "but i guesse it stood in her chin by the": [0, 65535], "i guesse it stood in her chin by the salt": [0, 65535], "guesse it stood in her chin by the salt rheume": [0, 65535], "it stood in her chin by the salt rheume that": [0, 65535], "stood in her chin by the salt rheume that ranne": [0, 65535], "in her chin by the salt rheume that ranne betweene": [0, 65535], "her chin by the salt rheume that ranne betweene france": [0, 65535], "chin by the salt rheume that ranne betweene france and": [0, 65535], "by the salt rheume that ranne betweene france and it": [0, 65535], "the salt rheume that ranne betweene france and it ant": [0, 65535], "salt rheume that ranne betweene france and it ant where": [0, 65535], "rheume that ranne betweene france and it ant where spaine": [0, 65535], "that ranne betweene france and it ant where spaine dro": [0, 65535], "ranne betweene france and it ant where spaine dro faith": [0, 65535], "betweene france and it ant where spaine dro faith i": [0, 65535], "france and it ant where spaine dro faith i saw": [0, 65535], "and it ant where spaine dro faith i saw it": [0, 65535], "it ant where spaine dro faith i saw it not": [0, 65535], "ant where spaine dro faith i saw it not but": [0, 65535], "where spaine dro faith i saw it not but i": [0, 65535], "spaine dro faith i saw it not but i felt": [0, 65535], "dro faith i saw it not but i felt it": [0, 65535], "faith i saw it not but i felt it hot": [0, 65535], "i saw it not but i felt it hot in": [0, 65535], "saw it not but i felt it hot in her": [0, 65535], "it not but i felt it hot in her breth": [0, 65535], "not but i felt it hot in her breth ant": [0, 65535], "but i felt it hot in her breth ant where": [0, 65535], "i felt it hot in her breth ant where america": [0, 65535], "felt it hot in her breth ant where america the": [0, 65535], "it hot in her breth ant where america the indies": [0, 65535], "hot in her breth ant where america the indies dro": [0, 65535], "in her breth ant where america the indies dro oh": [0, 65535], "her breth ant where america the indies dro oh sir": [0, 65535], "breth ant where america the indies dro oh sir vpon": [0, 65535], "ant where america the indies dro oh sir vpon her": [0, 65535], "where america the indies dro oh sir vpon her nose": [0, 65535], "america the indies dro oh sir vpon her nose all": [0, 65535], "the indies dro oh sir vpon her nose all ore": [0, 65535], "indies dro oh sir vpon her nose all ore embellished": [0, 65535], "dro oh sir vpon her nose all ore embellished with": [0, 65535], "oh sir vpon her nose all ore embellished with rubies": [0, 65535], "sir vpon her nose all ore embellished with rubies carbuncles": [0, 65535], "vpon her nose all ore embellished with rubies carbuncles saphires": [0, 65535], "her nose all ore embellished with rubies carbuncles saphires declining": [0, 65535], "nose all ore embellished with rubies carbuncles saphires declining their": [0, 65535], "all ore embellished with rubies carbuncles saphires declining their rich": [0, 65535], "ore embellished with rubies carbuncles saphires declining their rich aspect": [0, 65535], "embellished with rubies carbuncles saphires declining their rich aspect to": [0, 65535], "with rubies carbuncles saphires declining their rich aspect to the": [0, 65535], "rubies carbuncles saphires declining their rich aspect to the hot": [0, 65535], "carbuncles saphires declining their rich aspect to the hot breath": [0, 65535], "saphires declining their rich aspect to the hot breath of": [0, 65535], "declining their rich aspect to the hot breath of spaine": [0, 65535], "their rich aspect to the hot breath of spaine who": [0, 65535], "rich aspect to the hot breath of spaine who sent": [0, 65535], "aspect to the hot breath of spaine who sent whole": [0, 65535], "to the hot breath of spaine who sent whole armadoes": [0, 65535], "the hot breath of spaine who sent whole armadoes of": [0, 65535], "hot breath of spaine who sent whole armadoes of carrects": [0, 65535], "breath of spaine who sent whole armadoes of carrects to": [0, 65535], "of spaine who sent whole armadoes of carrects to be": [0, 65535], "spaine who sent whole armadoes of carrects to be ballast": [0, 65535], "who sent whole armadoes of carrects to be ballast at": [0, 65535], "sent whole armadoes of carrects to be ballast at her": [0, 65535], "whole armadoes of carrects to be ballast at her nose": [0, 65535], "armadoes of carrects to be ballast at her nose anti": [0, 65535], "of carrects to be ballast at her nose anti where": [0, 65535], "carrects to be ballast at her nose anti where stood": [0, 65535], "to be ballast at her nose anti where stood belgia": [0, 65535], "be ballast at her nose anti where stood belgia the": [0, 65535], "ballast at her nose anti where stood belgia the netherlands": [0, 65535], "at her nose anti where stood belgia the netherlands dro": [0, 65535], "her nose anti where stood belgia the netherlands dro oh": [0, 65535], "nose anti where stood belgia the netherlands dro oh sir": [0, 65535], "anti where stood belgia the netherlands dro oh sir i": [0, 65535], "where stood belgia the netherlands dro oh sir i did": [0, 65535], "stood belgia the netherlands dro oh sir i did not": [0, 65535], "belgia the netherlands dro oh sir i did not looke": [0, 65535], "the netherlands dro oh sir i did not looke so": [0, 65535], "netherlands dro oh sir i did not looke so low": [0, 65535], "dro oh sir i did not looke so low to": [0, 65535], "oh sir i did not looke so low to conclude": [0, 65535], "sir i did not looke so low to conclude this": [0, 65535], "i did not looke so low to conclude this drudge": [0, 65535], "did not looke so low to conclude this drudge or": [0, 65535], "not looke so low to conclude this drudge or diuiner": [0, 65535], "looke so low to conclude this drudge or diuiner layd": [0, 65535], "so low to conclude this drudge or diuiner layd claime": [0, 65535], "low to conclude this drudge or diuiner layd claime to": [0, 65535], "to conclude this drudge or diuiner layd claime to mee": [0, 65535], "conclude this drudge or diuiner layd claime to mee call'd": [0, 65535], "this drudge or diuiner layd claime to mee call'd mee": [0, 65535], "drudge or diuiner layd claime to mee call'd mee dromio": [0, 65535], "or diuiner layd claime to mee call'd mee dromio swore": [0, 65535], "diuiner layd claime to mee call'd mee dromio swore i": [0, 65535], "layd claime to mee call'd mee dromio swore i was": [0, 65535], "claime to mee call'd mee dromio swore i was assur'd": [0, 65535], "to mee call'd mee dromio swore i was assur'd to": [0, 65535], "mee call'd mee dromio swore i was assur'd to her": [0, 65535], "call'd mee dromio swore i was assur'd to her told": [0, 65535], "mee dromio swore i was assur'd to her told me": [0, 65535], "dromio swore i was assur'd to her told me what": [0, 65535], "swore i was assur'd to her told me what priuie": [0, 65535], "i was assur'd to her told me what priuie markes": [0, 65535], "was assur'd to her told me what priuie markes i": [0, 65535], "assur'd to her told me what priuie markes i had": [0, 65535], "to her told me what priuie markes i had about": [0, 65535], "her told me what priuie markes i had about mee": [0, 65535], "told me what priuie markes i had about mee as": [0, 65535], "me what priuie markes i had about mee as the": [0, 65535], "what priuie markes i had about mee as the marke": [0, 65535], "priuie markes i had about mee as the marke of": [0, 65535], "markes i had about mee as the marke of my": [0, 65535], "i had about mee as the marke of my shoulder": [0, 65535], "had about mee as the marke of my shoulder the": [0, 65535], "about mee as the marke of my shoulder the mole": [0, 65535], "mee as the marke of my shoulder the mole in": [0, 65535], "as the marke of my shoulder the mole in my": [0, 65535], "the marke of my shoulder the mole in my necke": [0, 65535], "marke of my shoulder the mole in my necke the": [0, 65535], "of my shoulder the mole in my necke the great": [0, 65535], "my shoulder the mole in my necke the great wart": [0, 65535], "shoulder the mole in my necke the great wart on": [0, 65535], "the mole in my necke the great wart on my": [0, 65535], "mole in my necke the great wart on my left": [0, 65535], "in my necke the great wart on my left arme": [0, 65535], "my necke the great wart on my left arme that": [0, 65535], "necke the great wart on my left arme that i": [0, 65535], "the great wart on my left arme that i amaz'd": [0, 65535], "great wart on my left arme that i amaz'd ranne": [0, 65535], "wart on my left arme that i amaz'd ranne from": [0, 65535], "on my left arme that i amaz'd ranne from her": [0, 65535], "my left arme that i amaz'd ranne from her as": [0, 65535], "left arme that i amaz'd ranne from her as a": [0, 65535], "arme that i amaz'd ranne from her as a witch": [0, 65535], "that i amaz'd ranne from her as a witch and": [0, 65535], "i amaz'd ranne from her as a witch and i": [0, 65535], "amaz'd ranne from her as a witch and i thinke": [0, 65535], "ranne from her as a witch and i thinke if": [0, 65535], "from her as a witch and i thinke if my": [0, 65535], "her as a witch and i thinke if my brest": [0, 65535], "as a witch and i thinke if my brest had": [0, 65535], "a witch and i thinke if my brest had not": [0, 65535], "witch and i thinke if my brest had not beene": [0, 65535], "and i thinke if my brest had not beene made": [0, 65535], "i thinke if my brest had not beene made of": [0, 65535], "thinke if my brest had not beene made of faith": [0, 65535], "if my brest had not beene made of faith and": [0, 65535], "my brest had not beene made of faith and my": [0, 65535], "brest had not beene made of faith and my heart": [0, 65535], "had not beene made of faith and my heart of": [0, 65535], "not beene made of faith and my heart of steele": [0, 65535], "beene made of faith and my heart of steele she": [0, 65535], "made of faith and my heart of steele she had": [0, 65535], "of faith and my heart of steele she had transform'd": [0, 65535], "faith and my heart of steele she had transform'd me": [0, 65535], "and my heart of steele she had transform'd me to": [0, 65535], "my heart of steele she had transform'd me to a": [0, 65535], "heart of steele she had transform'd me to a curtull": [0, 65535], "of steele she had transform'd me to a curtull dog": [0, 65535], "steele she had transform'd me to a curtull dog made": [0, 65535], "she had transform'd me to a curtull dog made me": [0, 65535], "had transform'd me to a curtull dog made me turne": [0, 65535], "transform'd me to a curtull dog made me turne i'th": [0, 65535], "me to a curtull dog made me turne i'th wheele": [0, 65535], "to a curtull dog made me turne i'th wheele anti": [0, 65535], "a curtull dog made me turne i'th wheele anti go": [0, 65535], "curtull dog made me turne i'th wheele anti go hie": [0, 65535], "dog made me turne i'th wheele anti go hie thee": [0, 65535], "made me turne i'th wheele anti go hie thee presently": [0, 65535], "me turne i'th wheele anti go hie thee presently post": [0, 65535], "turne i'th wheele anti go hie thee presently post to": [0, 65535], "i'th wheele anti go hie thee presently post to the": [0, 65535], "wheele anti go hie thee presently post to the rode": [0, 65535], "anti go hie thee presently post to the rode and": [0, 65535], "go hie thee presently post to the rode and if": [0, 65535], "hie thee presently post to the rode and if the": [0, 65535], "thee presently post to the rode and if the winde": [0, 65535], "presently post to the rode and if the winde blow": [0, 65535], "post to the rode and if the winde blow any": [0, 65535], "to the rode and if the winde blow any way": [0, 65535], "the rode and if the winde blow any way from": [0, 65535], "rode and if the winde blow any way from shore": [0, 65535], "and if the winde blow any way from shore i": [0, 65535], "if the winde blow any way from shore i will": [0, 65535], "the winde blow any way from shore i will not": [0, 65535], "winde blow any way from shore i will not harbour": [0, 65535], "blow any way from shore i will not harbour in": [0, 65535], "any way from shore i will not harbour in this": [0, 65535], "way from shore i will not harbour in this towne": [0, 65535], "from shore i will not harbour in this towne to": [0, 65535], "shore i will not harbour in this towne to night": [0, 65535], "i will not harbour in this towne to night if": [0, 65535], "will not harbour in this towne to night if any": [0, 65535], "not harbour in this towne to night if any barke": [0, 65535], "harbour in this towne to night if any barke put": [0, 65535], "in this towne to night if any barke put forth": [0, 65535], "this towne to night if any barke put forth come": [0, 65535], "towne to night if any barke put forth come to": [0, 65535], "to night if any barke put forth come to the": [0, 65535], "night if any barke put forth come to the mart": [0, 65535], "if any barke put forth come to the mart where": [0, 65535], "any barke put forth come to the mart where i": [0, 65535], "barke put forth come to the mart where i will": [0, 65535], "put forth come to the mart where i will walke": [0, 65535], "forth come to the mart where i will walke till": [0, 65535], "come to the mart where i will walke till thou": [0, 65535], "to the mart where i will walke till thou returne": [0, 65535], "the mart where i will walke till thou returne to": [0, 65535], "mart where i will walke till thou returne to me": [0, 65535], "where i will walke till thou returne to me if": [0, 65535], "i will walke till thou returne to me if euerie": [0, 65535], "will walke till thou returne to me if euerie one": [0, 65535], "walke till thou returne to me if euerie one knowes": [0, 65535], "till thou returne to me if euerie one knowes vs": [0, 65535], "thou returne to me if euerie one knowes vs and": [0, 65535], "returne to me if euerie one knowes vs and we": [0, 65535], "to me if euerie one knowes vs and we know": [0, 65535], "me if euerie one knowes vs and we know none": [0, 65535], "if euerie one knowes vs and we know none 'tis": [0, 65535], "euerie one knowes vs and we know none 'tis time": [0, 65535], "one knowes vs and we know none 'tis time i": [0, 65535], "knowes vs and we know none 'tis time i thinke": [0, 65535], "vs and we know none 'tis time i thinke to": [0, 65535], "and we know none 'tis time i thinke to trudge": [0, 65535], "we know none 'tis time i thinke to trudge packe": [0, 65535], "know none 'tis time i thinke to trudge packe and": [0, 65535], "none 'tis time i thinke to trudge packe and be": [0, 65535], "'tis time i thinke to trudge packe and be gone": [0, 65535], "time i thinke to trudge packe and be gone dro": [0, 65535], "i thinke to trudge packe and be gone dro as": [0, 65535], "thinke to trudge packe and be gone dro as from": [0, 65535], "to trudge packe and be gone dro as from a": [0, 65535], "trudge packe and be gone dro as from a beare": [0, 65535], "packe and be gone dro as from a beare a": [0, 65535], "and be gone dro as from a beare a man": [0, 65535], "be gone dro as from a beare a man would": [0, 65535], "gone dro as from a beare a man would run": [0, 65535], "dro as from a beare a man would run for": [0, 65535], "as from a beare a man would run for life": [0, 65535], "from a beare a man would run for life so": [0, 65535], "a beare a man would run for life so flie": [0, 65535], "beare a man would run for life so flie i": [0, 65535], "a man would run for life so flie i from": [0, 65535], "man would run for life so flie i from her": [0, 65535], "would run for life so flie i from her that": [0, 65535], "run for life so flie i from her that would": [0, 65535], "for life so flie i from her that would be": [0, 65535], "life so flie i from her that would be my": [0, 65535], "so flie i from her that would be my wife": [0, 65535], "flie i from her that would be my wife exit": [0, 65535], "i from her that would be my wife exit anti": [0, 65535], "from her that would be my wife exit anti there's": [0, 65535], "her that would be my wife exit anti there's none": [0, 65535], "that would be my wife exit anti there's none but": [0, 65535], "would be my wife exit anti there's none but witches": [0, 65535], "be my wife exit anti there's none but witches do": [0, 65535], "my wife exit anti there's none but witches do inhabite": [0, 65535], "wife exit anti there's none but witches do inhabite heere": [0, 65535], "exit anti there's none but witches do inhabite heere and": [0, 65535], "anti there's none but witches do inhabite heere and therefore": [0, 65535], "there's none but witches do inhabite heere and therefore 'tis": [0, 65535], "none but witches do inhabite heere and therefore 'tis hie": [0, 65535], "but witches do inhabite heere and therefore 'tis hie time": [0, 65535], "witches do inhabite heere and therefore 'tis hie time that": [0, 65535], "do inhabite heere and therefore 'tis hie time that i": [0, 65535], "inhabite heere and therefore 'tis hie time that i were": [0, 65535], "heere and therefore 'tis hie time that i were hence": [0, 65535], "and therefore 'tis hie time that i were hence she": [0, 65535], "therefore 'tis hie time that i were hence she that": [0, 65535], "'tis hie time that i were hence she that doth": [0, 65535], "hie time that i were hence she that doth call": [0, 65535], "time that i were hence she that doth call me": [0, 65535], "that i were hence she that doth call me husband": [0, 65535], "i were hence she that doth call me husband euen": [0, 65535], "were hence she that doth call me husband euen my": [0, 65535], "hence she that doth call me husband euen my soule": [0, 65535], "she that doth call me husband euen my soule doth": [0, 65535], "that doth call me husband euen my soule doth for": [0, 65535], "doth call me husband euen my soule doth for a": [0, 65535], "call me husband euen my soule doth for a wife": [0, 65535], "me husband euen my soule doth for a wife abhorre": [0, 65535], "husband euen my soule doth for a wife abhorre but": [0, 65535], "euen my soule doth for a wife abhorre but her": [0, 65535], "my soule doth for a wife abhorre but her faire": [0, 65535], "soule doth for a wife abhorre but her faire sister": [0, 65535], "doth for a wife abhorre but her faire sister possest": [0, 65535], "for a wife abhorre but her faire sister possest with": [0, 65535], "a wife abhorre but her faire sister possest with such": [0, 65535], "wife abhorre but her faire sister possest with such a": [0, 65535], "abhorre but her faire sister possest with such a gentle": [0, 65535], "but her faire sister possest with such a gentle soueraigne": [0, 65535], "her faire sister possest with such a gentle soueraigne grace": [0, 65535], "faire sister possest with such a gentle soueraigne grace of": [0, 65535], "sister possest with such a gentle soueraigne grace of such": [0, 65535], "possest with such a gentle soueraigne grace of such inchanting": [0, 65535], "with such a gentle soueraigne grace of such inchanting presence": [0, 65535], "such a gentle soueraigne grace of such inchanting presence and": [0, 65535], "a gentle soueraigne grace of such inchanting presence and discourse": [0, 65535], "gentle soueraigne grace of such inchanting presence and discourse hath": [0, 65535], "soueraigne grace of such inchanting presence and discourse hath almost": [0, 65535], "grace of such inchanting presence and discourse hath almost made": [0, 65535], "of such inchanting presence and discourse hath almost made me": [0, 65535], "such inchanting presence and discourse hath almost made me traitor": [0, 65535], "inchanting presence and discourse hath almost made me traitor to": [0, 65535], "presence and discourse hath almost made me traitor to my": [0, 65535], "and discourse hath almost made me traitor to my selfe": [0, 65535], "discourse hath almost made me traitor to my selfe but": [0, 65535], "hath almost made me traitor to my selfe but least": [0, 65535], "almost made me traitor to my selfe but least my": [0, 65535], "made me traitor to my selfe but least my selfe": [0, 65535], "me traitor to my selfe but least my selfe be": [0, 65535], "traitor to my selfe but least my selfe be guilty": [0, 65535], "to my selfe but least my selfe be guilty to": [0, 65535], "my selfe but least my selfe be guilty to selfe": [0, 65535], "selfe but least my selfe be guilty to selfe wrong": [0, 65535], "but least my selfe be guilty to selfe wrong ile": [0, 65535], "least my selfe be guilty to selfe wrong ile stop": [0, 65535], "my selfe be guilty to selfe wrong ile stop mine": [0, 65535], "selfe be guilty to selfe wrong ile stop mine eares": [0, 65535], "be guilty to selfe wrong ile stop mine eares against": [0, 65535], "guilty to selfe wrong ile stop mine eares against the": [0, 65535], "to selfe wrong ile stop mine eares against the mermaids": [0, 65535], "selfe wrong ile stop mine eares against the mermaids song": [0, 65535], "wrong ile stop mine eares against the mermaids song enter": [0, 65535], "ile stop mine eares against the mermaids song enter angelo": [0, 65535], "stop mine eares against the mermaids song enter angelo with": [0, 65535], "mine eares against the mermaids song enter angelo with the": [0, 65535], "eares against the mermaids song enter angelo with the chaine": [0, 65535], "against the mermaids song enter angelo with the chaine ang": [0, 65535], "the mermaids song enter angelo with the chaine ang mr": [0, 65535], "mermaids song enter angelo with the chaine ang mr antipholus": [0, 65535], "song enter angelo with the chaine ang mr antipholus anti": [0, 65535], "enter angelo with the chaine ang mr antipholus anti i": [0, 65535], "angelo with the chaine ang mr antipholus anti i that's": [0, 65535], "with the chaine ang mr antipholus anti i that's my": [0, 65535], "the chaine ang mr antipholus anti i that's my name": [0, 65535], "chaine ang mr antipholus anti i that's my name ang": [0, 65535], "ang mr antipholus anti i that's my name ang i": [0, 65535], "mr antipholus anti i that's my name ang i know": [0, 65535], "antipholus anti i that's my name ang i know it": [0, 65535], "anti i that's my name ang i know it well": [0, 65535], "i that's my name ang i know it well sir": [0, 65535], "that's my name ang i know it well sir loe": [0, 65535], "my name ang i know it well sir loe here's": [0, 65535], "name ang i know it well sir loe here's the": [0, 65535], "ang i know it well sir loe here's the chaine": [0, 65535], "i know it well sir loe here's the chaine i": [0, 65535], "know it well sir loe here's the chaine i thought": [0, 65535], "it well sir loe here's the chaine i thought to": [0, 65535], "well sir loe here's the chaine i thought to haue": [0, 65535], "sir loe here's the chaine i thought to haue tane": [0, 65535], "loe here's the chaine i thought to haue tane you": [0, 65535], "here's the chaine i thought to haue tane you at": [0, 65535], "the chaine i thought to haue tane you at the": [0, 65535], "chaine i thought to haue tane you at the porpentine": [0, 65535], "i thought to haue tane you at the porpentine the": [0, 65535], "thought to haue tane you at the porpentine the chaine": [0, 65535], "to haue tane you at the porpentine the chaine vnfinish'd": [0, 65535], "haue tane you at the porpentine the chaine vnfinish'd made": [0, 65535], "tane you at the porpentine the chaine vnfinish'd made me": [0, 65535], "you at the porpentine the chaine vnfinish'd made me stay": [0, 65535], "at the porpentine the chaine vnfinish'd made me stay thus": [0, 65535], "the porpentine the chaine vnfinish'd made me stay thus long": [0, 65535], "porpentine the chaine vnfinish'd made me stay thus long anti": [0, 65535], "the chaine vnfinish'd made me stay thus long anti what": [0, 65535], "chaine vnfinish'd made me stay thus long anti what is": [0, 65535], "vnfinish'd made me stay thus long anti what is your": [0, 65535], "made me stay thus long anti what is your will": [0, 65535], "me stay thus long anti what is your will that": [0, 65535], "stay thus long anti what is your will that i": [0, 65535], "thus long anti what is your will that i shal": [0, 65535], "long anti what is your will that i shal do": [0, 65535], "anti what is your will that i shal do with": [0, 65535], "what is your will that i shal do with this": [0, 65535], "is your will that i shal do with this ang": [0, 65535], "your will that i shal do with this ang what": [0, 65535], "will that i shal do with this ang what please": [0, 65535], "that i shal do with this ang what please your": [0, 65535], "i shal do with this ang what please your selfe": [0, 65535], "shal do with this ang what please your selfe sir": [0, 65535], "do with this ang what please your selfe sir i": [0, 65535], "with this ang what please your selfe sir i haue": [0, 65535], "this ang what please your selfe sir i haue made": [0, 65535], "ang what please your selfe sir i haue made it": [0, 65535], "what please your selfe sir i haue made it for": [0, 65535], "please your selfe sir i haue made it for you": [0, 65535], "your selfe sir i haue made it for you anti": [0, 65535], "selfe sir i haue made it for you anti made": [0, 65535], "sir i haue made it for you anti made it": [0, 65535], "i haue made it for you anti made it for": [0, 65535], "haue made it for you anti made it for me": [0, 65535], "made it for you anti made it for me sir": [0, 65535], "it for you anti made it for me sir i": [0, 65535], "for you anti made it for me sir i bespoke": [0, 65535], "you anti made it for me sir i bespoke it": [0, 65535], "anti made it for me sir i bespoke it not": [0, 65535], "made it for me sir i bespoke it not ang": [0, 65535], "it for me sir i bespoke it not ang not": [0, 65535], "for me sir i bespoke it not ang not once": [0, 65535], "me sir i bespoke it not ang not once nor": [0, 65535], "sir i bespoke it not ang not once nor twice": [0, 65535], "i bespoke it not ang not once nor twice but": [0, 65535], "bespoke it not ang not once nor twice but twentie": [0, 65535], "it not ang not once nor twice but twentie times": [0, 65535], "not ang not once nor twice but twentie times you": [0, 65535], "ang not once nor twice but twentie times you haue": [0, 65535], "not once nor twice but twentie times you haue go": [0, 65535], "once nor twice but twentie times you haue go home": [0, 65535], "nor twice but twentie times you haue go home with": [0, 65535], "twice but twentie times you haue go home with it": [0, 65535], "but twentie times you haue go home with it and": [0, 65535], "twentie times you haue go home with it and please": [0, 65535], "times you haue go home with it and please your": [0, 65535], "you haue go home with it and please your wife": [0, 65535], "haue go home with it and please your wife withall": [0, 65535], "go home with it and please your wife withall and": [0, 65535], "home with it and please your wife withall and soone": [0, 65535], "with it and please your wife withall and soone at": [0, 65535], "it and please your wife withall and soone at supper": [0, 65535], "and please your wife withall and soone at supper time": [0, 65535], "please your wife withall and soone at supper time ile": [0, 65535], "your wife withall and soone at supper time ile visit": [0, 65535], "wife withall and soone at supper time ile visit you": [0, 65535], "withall and soone at supper time ile visit you and": [0, 65535], "and soone at supper time ile visit you and then": [0, 65535], "soone at supper time ile visit you and then receiue": [0, 65535], "at supper time ile visit you and then receiue my": [0, 65535], "supper time ile visit you and then receiue my money": [0, 65535], "time ile visit you and then receiue my money for": [0, 65535], "ile visit you and then receiue my money for the": [0, 65535], "visit you and then receiue my money for the chaine": [0, 65535], "you and then receiue my money for the chaine anti": [0, 65535], "and then receiue my money for the chaine anti i": [0, 65535], "then receiue my money for the chaine anti i pray": [0, 65535], "receiue my money for the chaine anti i pray you": [0, 65535], "my money for the chaine anti i pray you sir": [0, 65535], "money for the chaine anti i pray you sir receiue": [0, 65535], "for the chaine anti i pray you sir receiue the": [0, 65535], "the chaine anti i pray you sir receiue the money": [0, 65535], "chaine anti i pray you sir receiue the money now": [0, 65535], "anti i pray you sir receiue the money now for": [0, 65535], "i pray you sir receiue the money now for feare": [0, 65535], "pray you sir receiue the money now for feare you": [0, 65535], "you sir receiue the money now for feare you ne're": [0, 65535], "sir receiue the money now for feare you ne're see": [0, 65535], "receiue the money now for feare you ne're see chaine": [0, 65535], "the money now for feare you ne're see chaine nor": [0, 65535], "money now for feare you ne're see chaine nor mony": [0, 65535], "now for feare you ne're see chaine nor mony more": [0, 65535], "for feare you ne're see chaine nor mony more ang": [0, 65535], "feare you ne're see chaine nor mony more ang you": [0, 65535], "you ne're see chaine nor mony more ang you are": [0, 65535], "ne're see chaine nor mony more ang you are a": [0, 65535], "see chaine nor mony more ang you are a merry": [0, 65535], "chaine nor mony more ang you are a merry man": [0, 65535], "nor mony more ang you are a merry man sir": [0, 65535], "mony more ang you are a merry man sir fare": [0, 65535], "more ang you are a merry man sir fare you": [0, 65535], "ang you are a merry man sir fare you well": [0, 65535], "you are a merry man sir fare you well exit": [0, 65535], "are a merry man sir fare you well exit ant": [0, 65535], "a merry man sir fare you well exit ant what": [0, 65535], "merry man sir fare you well exit ant what i": [0, 65535], "man sir fare you well exit ant what i should": [0, 65535], "sir fare you well exit ant what i should thinke": [0, 65535], "fare you well exit ant what i should thinke of": [0, 65535], "you well exit ant what i should thinke of this": [0, 65535], "well exit ant what i should thinke of this i": [0, 65535], "exit ant what i should thinke of this i cannot": [0, 65535], "ant what i should thinke of this i cannot tell": [0, 65535], "what i should thinke of this i cannot tell but": [0, 65535], "i should thinke of this i cannot tell but this": [0, 65535], "should thinke of this i cannot tell but this i": [0, 65535], "thinke of this i cannot tell but this i thinke": [0, 65535], "of this i cannot tell but this i thinke there's": [0, 65535], "this i cannot tell but this i thinke there's no": [0, 65535], "i cannot tell but this i thinke there's no man": [0, 65535], "cannot tell but this i thinke there's no man is": [0, 65535], "tell but this i thinke there's no man is so": [0, 65535], "but this i thinke there's no man is so vaine": [0, 65535], "this i thinke there's no man is so vaine that": [0, 65535], "i thinke there's no man is so vaine that would": [0, 65535], "thinke there's no man is so vaine that would refuse": [0, 65535], "there's no man is so vaine that would refuse so": [0, 65535], "no man is so vaine that would refuse so faire": [0, 65535], "man is so vaine that would refuse so faire an": [0, 65535], "is so vaine that would refuse so faire an offer'd": [0, 65535], "so vaine that would refuse so faire an offer'd chaine": [0, 65535], "vaine that would refuse so faire an offer'd chaine i": [0, 65535], "that would refuse so faire an offer'd chaine i see": [0, 65535], "would refuse so faire an offer'd chaine i see a": [0, 65535], "refuse so faire an offer'd chaine i see a man": [0, 65535], "so faire an offer'd chaine i see a man heere": [0, 65535], "faire an offer'd chaine i see a man heere needs": [0, 65535], "an offer'd chaine i see a man heere needs not": [0, 65535], "offer'd chaine i see a man heere needs not liue": [0, 65535], "chaine i see a man heere needs not liue by": [0, 65535], "i see a man heere needs not liue by shifts": [0, 65535], "see a man heere needs not liue by shifts when": [0, 65535], "a man heere needs not liue by shifts when in": [0, 65535], "man heere needs not liue by shifts when in the": [0, 65535], "heere needs not liue by shifts when in the streets": [0, 65535], "needs not liue by shifts when in the streets he": [0, 65535], "not liue by shifts when in the streets he meetes": [0, 65535], "liue by shifts when in the streets he meetes such": [0, 65535], "by shifts when in the streets he meetes such golden": [0, 65535], "shifts when in the streets he meetes such golden gifts": [0, 65535], "when in the streets he meetes such golden gifts ile": [0, 65535], "in the streets he meetes such golden gifts ile to": [0, 65535], "the streets he meetes such golden gifts ile to the": [0, 65535], "streets he meetes such golden gifts ile to the mart": [0, 65535], "he meetes such golden gifts ile to the mart and": [0, 65535], "meetes such golden gifts ile to the mart and there": [0, 65535], "such golden gifts ile to the mart and there for": [0, 65535], "golden gifts ile to the mart and there for dromio": [0, 65535], "gifts ile to the mart and there for dromio stay": [0, 65535], "ile to the mart and there for dromio stay if": [0, 65535], "to the mart and there for dromio stay if any": [0, 65535], "the mart and there for dromio stay if any ship": [0, 65535], "mart and there for dromio stay if any ship put": [0, 65535], "and there for dromio stay if any ship put out": [0, 65535], "there for dromio stay if any ship put out then": [0, 65535], "for dromio stay if any ship put out then straight": [0, 65535], "dromio stay if any ship put out then straight away": [0, 65535], "stay if any ship put out then straight away exit": [0, 65535], "secundus": [0, 65535], "antipholis": [0, 65535], "sereptus": [0, 65535], "luciana": [0, 65535], "slaue": [0, 65535], "return'd": [0, 65535], "seeke": [0, 65535], "clocke": [0, 65535], "inuited": [0, 65535], "neuer": [0, 65535], "fret": [0, 65535], "libertie": [0, 65535], "ours": [0, 65535], "businesse": [0, 65535], "lies": [0, 65535], "serue": [0, 65535], "bridle": [0, 65535], "asses": [0, 65535], "bridled": [0, 65535], "headstrong": [0, 65535], "liberty": [0, 65535], "lasht": [0, 65535], "woe": [0, 65535], "situate": [0, 65535], "vnder": [0, 65535], "skie": [0, 65535], "beasts": [0, 65535], "fishes": [0, 65535], "winged": [0, 65535], "males": [0, 65535], "subiects": [0, 65535], "controules": [0, 65535], "watry": [0, 65535], "indued": [0, 65535], "intellectuall": [0, 65535], "sence": [0, 65535], "preheminence": [0, 65535], "masters": [0, 65535], "females": [0, 65535], "lords": [0, 65535], "attend": [0, 65535], "accords": [0, 65535], "seruitude": [0, 65535], "vnwed": [0, 65535], "luci": [0, 65535], "wedded": [0, 65535], "sway": [0, 65535], "ere": [0, 65535], "learne": [0, 65535], "start": [0, 65535], "forbeare": [0, 65535], "vnmou'd": [0, 65535], "maruel": [0, 65535], "meeke": [0, 65535], "wretched": [0, 65535], "bruis'd": [0, 65535], "aduersitie": [0, 65535], "burdned": [0, 65535], "waight": [0, 65535], "selues": [0, 65535], "complaine": [0, 65535], "vnkinde": [0, 65535], "mate": [0, 65535], "greeue": [0, 65535], "vrging": [0, 65535], "helpelesse": [0, 65535], "releeue": [0, 65535], "bereft": [0, 65535], "foole": [0, 65535], "beg'd": [0, 65535], "trie": [0, 65535], "nie": [0, 65535], "eph": [0, 65535], "tardie": [0, 65535], "nay": [0, 65535], "hee's": [0, 65535], "witnesse": [0, 65535], "knowst": [0, 65535], "minde": [0, 65535], "eare": [0, 65535], "beshrew": [0, 65535], "vnderstand": [0, 65535], "spake": [0, 65535], "doubtfully": [0, 65535], "couldst": [0, 65535], "feele": [0, 65535], "prethee": [0, 65535], "comming": [0, 65535], "mistresse": [0, 65535], "horne": [0, 65535], "cuckold": [0, 65535], "starke": [0, 65535], "desir'd": [0, 65535], "ask'd": [0, 65535], "quoth": [0, 65535], "pigge": [0, 65535], "burn'd": [0, 65535], "vp": [0, 65535], "dr": [0, 65535], "arrant": [0, 65535], "vnto": [0, 65535], "thanke": [0, 65535], "backe": [0, 65535], "beaten": [0, 65535], "gods": [0, 65535], "send": [0, 65535], "messenger": [0, 65535], "crosse": [0, 65535], "blesse": [0, 65535], "beating": [0, 65535], "prating": [0, 65535], "pesant": [0, 65535], "ball": [0, 65535], "spurne": [0, 65535], "seruice": [0, 65535], "case": [0, 65535], "fie": [0, 65535], "impatience": [0, 65535], "lowreth": [0, 65535], "minions": [0, 65535], "whil'st": [0, 65535], "starue": [0, 65535], "homelie": [0, 65535], "alluring": [0, 65535], "beauty": [0, 65535], "tooke": [0, 65535], "cheeke": [0, 65535], "wasted": [0, 65535], "discourses": [0, 65535], "barren": [0, 65535], "wit": [0, 65535], "voluble": [0, 65535], "sharpe": [0, 65535], "mar'd": [0, 65535], "vnkindnesse": [0, 65535], "blunts": [0, 65535], "marble": [0, 65535], "vestments": [0, 65535], "affections": [0, 65535], "baite": [0, 65535], "ruines": [0, 65535], "ruin'd": [0, 65535], "defeatures": [0, 65535], "decayed": [0, 65535], "sunnie": [0, 65535], "repaire": [0, 65535], "breakes": [0, 65535], "pale": [0, 65535], "feedes": [0, 65535], "stale": [0, 65535], "harming": [0, 65535], "iealousie": [0, 65535], "ad": [0, 65535], "vnfeeling": [0, 65535], "dispence": [0, 65535], "lets": [0, 65535], "promis'd": [0, 65535], "detaine": [0, 65535], "quarter": [0, 65535], "iewell": [0, 65535], "enamaled": [0, 65535], "beautie": [0, 65535], "bides": [0, 65535], "falshood": [0, 65535], "corruption": [0, 65535], "weepe": [0, 65535], "manie": [0, 65535], "fooles": [0, 65535], "ielousie": [0, 65535], "errotis": [0, 65535], "centaur": [0, 65535], "heedfull": [0, 65535], "wandred": [0, 65535], "computation": [0, 65535], "humor": [0, 65535], "alter'd": [0, 65535], "stroakes": [0, 65535], "receiu'd": [0, 65535], "ph\u0153nix": [0, 65535], "wast": [0, 65535], "madlie": [0, 65535], "answere": [0, 65535], "halfe": [0, 65535], "howre": [0, 65535], "golds": [0, 65535], "receit": [0, 65535], "toldst": [0, 65535], "feltst": [0, 65535], "displeas'd": [0, 65535], "yea": [0, 65535], "ieere": [0, 65535], "flowt": [0, 65535], "thinkst": [0, 65535], "beats": [0, 65535], "bargaine": [0, 65535], "antiph": [0, 65535], "familiarlie": [0, 65535], "chat": [0, 65535], "sawcinesse": [0, 65535], "serious": [0, 65535], "sunne": [0, 65535], "shines": [0, 65535], "gnats": [0, 65535], "creepe": [0, 65535], "crannies": [0, 65535], "hides": [0, 65535], "demeanor": [0, 65535], "method": [0, 65535], "sconce": [0, 65535], "leaue": [0, 65535], "battering": [0, 65535], "insconce": [0, 65535], "flowting": [0, 65535], "anie": [0, 65535], "rime": [0, 65535], "amends": [0, 65535], "wants": [0, 65535], "basting": [0, 65535], "'twill": [0, 65535], "drie": [0, 65535], "eat": [0, 65535], "chollericke": [0, 65535], "purchase": [0, 65535], "durst": [0, 65535], "denied": [0, 65535], "rule": [0, 65535], "plaine": [0, 65535], "bald": [0, 65535], "father": [0, 65535], "himselfe": [0, 65535], "recouer": [0, 65535], "haire": [0, 65535], "growes": [0, 65535], "recouerie": [0, 65535], "perewig": [0, 65535], "niggard": [0, 65535], "plentifull": [0, 65535], "excrement": [0, 65535], "blessing": [0, 65535], "bestowes": [0, 65535], "scanted": [0, 65535], "giuen": [0, 65535], "theres": [0, 65535], "hairy": [0, 65535], "dealers": [0, 65535], "plainer": [0, 65535], "dealer": [0, 65535], "looseth": [0, 65535], "kinde": [0, 65535], "iollitie": [0, 65535], "falsing": [0, 65535], "certaine": [0, 65535], "saue": [0, 65535], "spends": [0, 65535], "porrage": [0, 65535], "prou'd": [0, 65535], "substantiall": [0, 65535], "followers": [0, 65535], "'twould": [0, 65535], "wafts": [0, 65535], "yonder": [0, 65535], "frowne": [0, 65535], "aspects": [0, 65535], "vn": [0, 65535], "vrg'd": [0, 65535], "vow": [0, 65535], "musicke": [0, 65535], "thine": [0, 65535], "obiect": [0, 65535], "pleasing": [0, 65535], "sauour'd": [0, 65535], "taste": [0, 65535], "vnlesse": [0, 65535], "touch'd": [0, 65535], "caru'd": [0, 65535], "estranged": [0, 65535], "vndiuidable": [0, 65535], "incorporate": [0, 65535], "teare": [0, 65535], "easie": [0, 65535], "maist": [0, 65535], "gulfe": [0, 65535], "vnmingled": [0, 65535], "thence": [0, 65535], "addition": [0, 65535], "diminishing": [0, 65535], "deerely": [0, 65535], "quicke": [0, 65535], "shouldst": [0, 65535], "licencious": [0, 65535], "consecrate": [0, 65535], "ruffian": [0, 65535], "lust": [0, 65535], "contaminate": [0, 65535], "hurle": [0, 65535], "stain'd": [0, 65535], "harlot": [0, 65535], "wedding": [0, 65535], "deepe": [0, 65535], "diuorcing": [0, 65535], "canst": [0, 65535], "adulterate": [0, 65535], "blot": [0, 65535], "bloud": [0, 65535], "crime": [0, 65535], "digest": [0, 65535], "poison": [0, 65535], "strumpeted": [0, 65535], "contagion": [0, 65535], "league": [0, 65535], "truce": [0, 65535], "distain'd": [0, 65535], "vndishonoured": [0, 65535], "antip": [0, 65535], "dame": [0, 65535], "houres": [0, 65535], "talke": [0, 65535], "scan'd": [0, 65535], "wont": [0, 65535], "buffet": [0, 65535], "conuerse": [0, 65535], "gentlewoman": [0, 65535], "drift": [0, 65535], "liest": [0, 65535], "deliuer": [0, 65535], "agrees": [0, 65535], "grauitie": [0, 65535], "counterfeit": [0, 65535], "grosely": [0, 65535], "abetting": [0, 65535], "thwart": [0, 65535], "moode": [0, 65535], "exempt": [0, 65535], "contempt": [0, 65535], "elme": [0, 65535], "vine": [0, 65535], "weaknesse": [0, 65535], "married": [0, 65535], "strength": [0, 65535], "communicate": [0, 65535], "ought": [0, 65535], "possesse": [0, 65535], "drosse": [0, 65535], "vsurping": [0, 65535], "iuie": [0, 65535], "brier": [0, 65535], "mosse": [0, 65535], "pruning": [0, 65535], "infect": [0, 65535], "sap": [0, 65535], "shee": [0, 65535], "speakes": [0, 65535], "moues": [0, 65535], "theame": [0, 65535], "dreame": [0, 65535], "sleepe": [0, 65535], "error": [0, 65535], "driues": [0, 65535], "amisse": [0, 65535], "vntill": [0, 65535], "vncertaintie": [0, 65535], "free'd": [0, 65535], "fallacie": [0, 65535], "seruants": [0, 65535], "spred": [0, 65535], "beads": [0, 65535], "sinner": [0, 65535], "fairie": [0, 65535], "spights": [0, 65535], "goblins": [0, 65535], "owles": [0, 65535], "sprights": [0, 65535], "obay": [0, 65535], "insue": [0, 65535], "sucke": [0, 65535], "pinch": [0, 65535], "blacke": [0, 65535], "blew": [0, 65535], "prat'st": [0, 65535], "answer'st": [0, 65535], "snaile": [0, 65535], "slug": [0, 65535], "sot": [0, 65535], "transformed": [0, 65535], "shape": [0, 65535], "forme": [0, 65535], "ape": [0, 65535], "rides": [0, 65535], "grasse": [0, 65535], "laughes": [0, 65535], "scorne": [0, 65535], "aboue": [0, 65535], "shriue": [0, 65535], "prankes": [0, 65535], "aske": [0, 65535], "dines": [0, 65535], "hell": [0, 65535], "sleeping": [0, 65535], "waking": [0, 65535], "aduisde": [0, 65535], "knowne": [0, 65535], "disguisde": [0, 65535], "perseuer": [0, 65535], "mist": [0, 65535], "aduentures": [0, 65535], "actus secundus": [0, 65535], "secundus enter": [0, 65535], "adriana wife": [0, 65535], "wife to": [0, 65535], "to antipholis": [0, 65535], "antipholis sereptus": [0, 65535], "sereptus with": [0, 65535], "with luciana": [0, 65535], "luciana her": [0, 65535], "her sister": [0, 65535], "sister adr": [0, 65535], "adr neither": [0, 65535], "neither my": [0, 65535], "my husband": [0, 65535], "husband nor": [0, 65535], "the slaue": [0, 65535], "slaue return'd": [0, 65535], "return'd that": [0, 65535], "such haste": [0, 65535], "haste i": [0, 65535], "i sent": [0, 65535], "sent to": [0, 65535], "to seeke": [0, 65535], "seeke his": [0, 65535], "his master": [0, 65535], "master sure": [0, 65535], "sure luciana": [0, 65535], "luciana it": [0, 65535], "is two": [0, 65535], "two a": [0, 65535], "a clocke": [0, 65535], "clocke luc": [0, 65535], "luc perhaps": [0, 65535], "perhaps some": [0, 65535], "some merchant": [0, 65535], "merchant hath": [0, 65535], "hath inuited": [0, 65535], "inuited him": [0, 65535], "mart he's": [0, 65535], "he's somewhere": [0, 65535], "somewhere gone": [0, 65535], "gone to": [0, 65535], "dinner good": [0, 65535], "good sister": [0, 65535], "sister let": [0, 65535], "vs dine": [0, 65535], "dine and": [0, 65535], "and neuer": [0, 65535], "neuer fret": [0, 65535], "fret a": [0, 65535], "is master": [0, 65535], "master of": [0, 65535], "his libertie": [0, 65535], "libertie time": [0, 65535], "time is": [0, 65535], "is their": [0, 65535], "their master": [0, 65535], "master and": [0, 65535], "they see": [0, 65535], "see time": [0, 65535], "time they'll": [0, 65535], "they'll goe": [0, 65535], "goe or": [0, 65535], "or come": [0, 65535], "come if": [0, 65535], "if so": [0, 65535], "so be": [0, 65535], "be patient": [0, 65535], "patient sister": [0, 65535], "adr why": [0, 65535], "why should": [0, 65535], "should their": [0, 65535], "their libertie": [0, 65535], "libertie then": [0, 65535], "then ours": [0, 65535], "ours be": [0, 65535], "be more": [0, 65535], "more luc": [0, 65535], "luc because": [0, 65535], "because their": [0, 65535], "their businesse": [0, 65535], "businesse still": [0, 65535], "still lies": [0, 65535], "lies out": [0, 65535], "dore adr": [0, 65535], "adr looke": [0, 65535], "looke when": [0, 65535], "i serue": [0, 65535], "serue him": [0, 65535], "it thus": [0, 65535], "thus luc": [0, 65535], "oh know": [0, 65535], "know he": [0, 65535], "the bridle": [0, 65535], "bridle of": [0, 65535], "will adr": [0, 65535], "adr there's": [0, 65535], "but asses": [0, 65535], "asses will": [0, 65535], "be bridled": [0, 65535], "bridled so": [0, 65535], "so luc": [0, 65535], "why headstrong": [0, 65535], "headstrong liberty": [0, 65535], "liberty is": [0, 65535], "is lasht": [0, 65535], "lasht with": [0, 65535], "with woe": [0, 65535], "woe there's": [0, 65535], "there's nothing": [0, 65535], "nothing situate": [0, 65535], "situate vnder": [0, 65535], "vnder heauens": [0, 65535], "heauens eye": [0, 65535], "but hath": [0, 65535], "hath his": [0, 65535], "his bound": [0, 65535], "bound in": [0, 65535], "in earth": [0, 65535], "earth in": [0, 65535], "in sea": [0, 65535], "sea in": [0, 65535], "in skie": [0, 65535], "skie the": [0, 65535], "the beasts": [0, 65535], "beasts the": [0, 65535], "the fishes": [0, 65535], "fishes and": [0, 65535], "the winged": [0, 65535], "winged fowles": [0, 65535], "fowles are": [0, 65535], "are their": [0, 65535], "their males": [0, 65535], "males subiects": [0, 65535], "subiects and": [0, 65535], "and at": [0, 65535], "at their": [0, 65535], "their controules": [0, 65535], "controules man": [0, 65535], "man more": [0, 65535], "more diuine": [0, 65535], "diuine the": [0, 65535], "all these": [0, 65535], "these lord": [0, 65535], "lord of": [0, 65535], "the wide": [0, 65535], "wide world": [0, 65535], "and wilde": [0, 65535], "wilde watry": [0, 65535], "watry seas": [0, 65535], "seas indued": [0, 65535], "indued with": [0, 65535], "with intellectuall": [0, 65535], "intellectuall sence": [0, 65535], "sence and": [0, 65535], "and soules": [0, 65535], "soules of": [0, 65535], "more preheminence": [0, 65535], "preheminence then": [0, 65535], "then fish": [0, 65535], "fish and": [0, 65535], "and fowles": [0, 65535], "are masters": [0, 65535], "masters to": [0, 65535], "their females": [0, 65535], "females and": [0, 65535], "and their": [0, 65535], "their lords": [0, 65535], "lords then": [0, 65535], "then let": [0, 65535], "will attend": [0, 65535], "attend on": [0, 65535], "on their": [0, 65535], "their accords": [0, 65535], "accords adri": [0, 65535], "adri this": [0, 65535], "this seruitude": [0, 65535], "seruitude makes": [0, 65535], "makes you": [0, 65535], "to keepe": [0, 65535], "keepe vnwed": [0, 65535], "vnwed luci": [0, 65535], "luci not": [0, 65535], "not this": [0, 65535], "this but": [0, 65535], "but troubles": [0, 65535], "troubles of": [0, 65535], "the marriage": [0, 65535], "marriage bed": [0, 65535], "bed adr": [0, 65535], "adr but": [0, 65535], "but were": [0, 65535], "were you": [0, 65535], "you wedded": [0, 65535], "wedded you": [0, 65535], "you wold": [0, 65535], "wold bear": [0, 65535], "bear some": [0, 65535], "some sway": [0, 65535], "sway luc": [0, 65535], "luc ere": [0, 65535], "ere i": [0, 65535], "i learne": [0, 65535], "learne loue": [0, 65535], "loue ile": [0, 65535], "ile practise": [0, 65535], "practise to": [0, 65535], "to obey": [0, 65535], "obey adr": [0, 65535], "adr how": [0, 65535], "how if": [0, 65535], "your husband": [0, 65535], "husband start": [0, 65535], "start some": [0, 65535], "other where": [0, 65535], "where luc": [0, 65535], "luc till": [0, 65535], "come home": [0, 65535], "home againe": [0, 65535], "againe i": [0, 65535], "i would": [0, 65535], "would forbeare": [0, 65535], "forbeare adr": [0, 65535], "adr patience": [0, 65535], "patience vnmou'd": [0, 65535], "vnmou'd no": [0, 65535], "no maruel": [0, 65535], "maruel though": [0, 65535], "though she": [0, 65535], "she pause": [0, 65535], "pause they": [0, 65535], "they can": [0, 65535], "be meeke": [0, 65535], "meeke that": [0, 65535], "that haue": [0, 65535], "no other": [0, 65535], "other cause": [0, 65535], "cause a": [0, 65535], "a wretched": [0, 65535], "wretched soule": [0, 65535], "soule bruis'd": [0, 65535], "bruis'd with": [0, 65535], "with aduersitie": [0, 65535], "aduersitie we": [0, 65535], "we bid": [0, 65535], "bid be": [0, 65535], "be quiet": [0, 65535], "quiet when": [0, 65535], "when we": [0, 65535], "we heare": [0, 65535], "heare it": [0, 65535], "it crie": [0, 65535], "crie but": [0, 65535], "were we": [0, 65535], "we burdned": [0, 65535], "burdned with": [0, 65535], "with like": [0, 65535], "like waight": [0, 65535], "waight of": [0, 65535], "of paine": [0, 65535], "paine as": [0, 65535], "much or": [0, 65535], "or more": [0, 65535], "more we": [0, 65535], "we should": [0, 65535], "should our": [0, 65535], "our selues": [0, 65535], "selues complaine": [0, 65535], "complaine so": [0, 65535], "so thou": [0, 65535], "that hast": [0, 65535], "no vnkinde": [0, 65535], "vnkinde mate": [0, 65535], "mate to": [0, 65535], "to greeue": [0, 65535], "greeue thee": [0, 65535], "thee with": [0, 65535], "with vrging": [0, 65535], "vrging helpelesse": [0, 65535], "helpelesse patience": [0, 65535], "patience would": [0, 65535], "would releeue": [0, 65535], "releeue me": [0, 65535], "thou liue": [0, 65535], "liue to": [0, 65535], "see like": [0, 65535], "like right": [0, 65535], "right bereft": [0, 65535], "bereft this": [0, 65535], "this foole": [0, 65535], "foole beg'd": [0, 65535], "beg'd patience": [0, 65535], "patience in": [0, 65535], "in thee": [0, 65535], "be left": [0, 65535], "left luci": [0, 65535], "luci well": [0, 65535], "will marry": [0, 65535], "marry one": [0, 65535], "day but": [0, 65535], "to trie": [0, 65535], "trie heere": [0, 65535], "heere comes": [0, 65535], "comes your": [0, 65535], "now is": [0, 65535], "husband nie": [0, 65535], "nie enter": [0, 65535], "dromio eph": [0, 65535], "eph adr": [0, 65535], "adr say": [0, 65535], "say is": [0, 65535], "your tardie": [0, 65535], "tardie master": [0, 65535], "master now": [0, 65535], "at hand": [0, 65535], "hand e": [0, 65535], "dro nay": [0, 65535], "nay hee's": [0, 65535], "hee's at": [0, 65535], "at too": [0, 65535], "too hands": [0, 65535], "with mee": [0, 65535], "mee and": [0, 65535], "that my": [0, 65535], "my two": [0, 65535], "two eares": [0, 65535], "eares can": [0, 65535], "can witnesse": [0, 65535], "witnesse adr": [0, 65535], "say didst": [0, 65535], "thou speake": [0, 65535], "speake with": [0, 65535], "him knowst": [0, 65535], "knowst thou": [0, 65535], "thou his": [0, 65535], "his minde": [0, 65535], "minde e": [0, 65535], "i i": [0, 65535], "i he": [0, 65535], "told his": [0, 65535], "minde vpon": [0, 65535], "mine eare": [0, 65535], "eare beshrew": [0, 65535], "beshrew his": [0, 65535], "hand i": [0, 65535], "i scarce": [0, 65535], "scarce could": [0, 65535], "could vnderstand": [0, 65535], "vnderstand it": [0, 65535], "it luc": [0, 65535], "luc spake": [0, 65535], "spake hee": [0, 65535], "hee so": [0, 65535], "so doubtfully": [0, 65535], "doubtfully thou": [0, 65535], "thou couldst": [0, 65535], "couldst not": [0, 65535], "not feele": [0, 65535], "feele his": [0, 65535], "his meaning": [0, 65535], "meaning e": [0, 65535], "nay hee": [0, 65535], "hee strooke": [0, 65535], "strooke so": [0, 65535], "so plainly": [0, 65535], "plainly i": [0, 65535], "could too": [0, 65535], "well feele": [0, 65535], "his blowes": [0, 65535], "blowes and": [0, 65535], "and withall": [0, 65535], "withall so": [0, 65535], "doubtfully that": [0, 65535], "could scarce": [0, 65535], "scarce vnderstand": [0, 65535], "vnderstand them": [0, 65535], "them adri": [0, 65535], "adri but": [0, 65535], "say i": [0, 65535], "i prethee": [0, 65535], "prethee is": [0, 65535], "is he": [0, 65535], "he comming": [0, 65535], "comming home": [0, 65535], "home it": [0, 65535], "seemes he": [0, 65535], "he hath": [0, 65535], "hath great": [0, 65535], "great care": [0, 65535], "care to": [0, 65535], "to please": [0, 65535], "please his": [0, 65535], "wife e": [0, 65535], "dro why": [0, 65535], "why mistresse": [0, 65535], "mistresse sure": [0, 65535], "sure my": [0, 65535], "master is": [0, 65535], "is horne": [0, 65535], "horne mad": [0, 65535], "mad adri": [0, 65535], "adri horne": [0, 65535], "mad thou": [0, 65535], "thou villaine": [0, 65535], "villaine e": [0, 65535], "meane not": [0, 65535], "not cuckold": [0, 65535], "cuckold mad": [0, 65535], "but sure": [0, 65535], "sure he": [0, 65535], "is starke": [0, 65535], "starke mad": [0, 65535], "mad when": [0, 65535], "i desir'd": [0, 65535], "desir'd him": [0, 65535], "dinner he": [0, 65535], "he ask'd": [0, 65535], "ask'd me": [0, 65535], "hundred markes": [0, 65535], "gold 'tis": [0, 65535], "'tis dinner": [0, 65535], "dinner time": [0, 65535], "time quoth": [0, 65535], "quoth i": [0, 65535], "my gold": [0, 65535], "gold quoth": [0, 65535], "quoth he": [0, 65535], "he your": [0, 65535], "your meat": [0, 65535], "meat doth": [0, 65535], "doth burne": [0, 65535], "burne quoth": [0, 65535], "he will": [0, 65535], "you come": [0, 65535], "come quoth": [0, 65535], "he where": [0, 65535], "where is": [0, 65535], "the thousand": [0, 65535], "i gaue": [0, 65535], "gaue thee": [0, 65535], "thee villaine": [0, 65535], "villaine the": [0, 65535], "the pigge": [0, 65535], "pigge quoth": [0, 65535], "i is": [0, 65535], "is burn'd": [0, 65535], "burn'd my": [0, 65535], "he my": [0, 65535], "my mistresse": [0, 65535], "mistresse sir": [0, 65535], "sir quoth": [0, 65535], "i hang": [0, 65535], "hang vp": [0, 65535], "vp thy": [0, 65535], "thy mistresse": [0, 65535], "mistresse i": [0, 65535], "mistresse out": [0, 65535], "out on": [0, 65535], "on thy": [0, 65535], "mistresse luci": [0, 65535], "luci quoth": [0, 65535], "quoth who": [0, 65535], "who e": [0, 65535], "e dr": [0, 65535], "dr quoth": [0, 65535], "quoth my": [0, 65535], "master i": [0, 65535], "know quoth": [0, 65535], "he no": [0, 65535], "no house": [0, 65535], "house no": [0, 65535], "wife no": [0, 65535], "no mistresse": [0, 65535], "mistresse so": [0, 65535], "my arrant": [0, 65535], "arrant due": [0, 65535], "due vnto": [0, 65535], "vnto my": [0, 65535], "my tongue": [0, 65535], "tongue i": [0, 65535], "i thanke": [0, 65535], "thanke him": [0, 65535], "i bare": [0, 65535], "bare home": [0, 65535], "home vpon": [0, 65535], "vpon my": [0, 65535], "my shoulders": [0, 65535], "shoulders for": [0, 65535], "for in": [0, 65535], "in conclusion": [0, 65535], "conclusion he": [0, 65535], "did beat": [0, 65535], "there adri": [0, 65535], "adri go": [0, 65535], "back againe": [0, 65535], "againe thou": [0, 65535], "thou slaue": [0, 65535], "slaue fetch": [0, 65535], "fetch him": [0, 65535], "him home": [0, 65535], "home dro": [0, 65535], "dro goe": [0, 65535], "goe backe": [0, 65535], "backe againe": [0, 65535], "againe and": [0, 65535], "be new": [0, 65535], "new beaten": [0, 65535], "beaten home": [0, 65535], "home for": [0, 65535], "for gods": [0, 65535], "gods sake": [0, 65535], "sake send": [0, 65535], "send some": [0, 65535], "other messenger": [0, 65535], "messenger adri": [0, 65535], "adri backe": [0, 65535], "backe slaue": [0, 65535], "slaue or": [0, 65535], "or i": [0, 65535], "will breake": [0, 65535], "breake thy": [0, 65535], "thy pate": [0, 65535], "pate a": [0, 65535], "a crosse": [0, 65535], "crosse dro": [0, 65535], "will blesse": [0, 65535], "blesse the": [0, 65535], "the crosse": [0, 65535], "crosse with": [0, 65535], "with other": [0, 65535], "other beating": [0, 65535], "beating betweene": [0, 65535], "betweene you": [0, 65535], "i shall": [0, 65535], "shall haue": [0, 65535], "haue a": [0, 65535], "holy head": [0, 65535], "head adri": [0, 65535], "adri hence": [0, 65535], "hence prating": [0, 65535], "prating pesant": [0, 65535], "pesant fetch": [0, 65535], "fetch thy": [0, 65535], "thy master": [0, 65535], "master home": [0, 65535], "dro am": [0, 65535], "i so": [0, 65535], "so round": [0, 65535], "round with": [0, 65535], "you as": [0, 65535], "that like": [0, 65535], "foot ball": [0, 65535], "ball you": [0, 65535], "doe spurne": [0, 65535], "spurne me": [0, 65535], "me thus": [0, 65535], "thus you": [0, 65535], "you spurne": [0, 65535], "me hence": [0, 65535], "hence and": [0, 65535], "will spurne": [0, 65535], "me hither": [0, 65535], "hither if": [0, 65535], "i last": [0, 65535], "last in": [0, 65535], "this seruice": [0, 65535], "seruice you": [0, 65535], "must case": [0, 65535], "case me": [0, 65535], "in leather": [0, 65535], "leather luci": [0, 65535], "luci fie": [0, 65535], "fie how": [0, 65535], "how impatience": [0, 65535], "impatience lowreth": [0, 65535], "lowreth in": [0, 65535], "face adri": [0, 65535], "adri his": [0, 65535], "his company": [0, 65535], "company must": [0, 65535], "must do": [0, 65535], "do his": [0, 65535], "his minions": [0, 65535], "minions grace": [0, 65535], "grace whil'st": [0, 65535], "whil'st i": [0, 65535], "i at": [0, 65535], "at home": [0, 65535], "home starue": [0, 65535], "starue for": [0, 65535], "merrie looke": [0, 65535], "looke hath": [0, 65535], "hath homelie": [0, 65535], "homelie age": [0, 65535], "age th'": [0, 65535], "th' alluring": [0, 65535], "alluring beauty": [0, 65535], "beauty tooke": [0, 65535], "tooke from": [0, 65535], "my poore": [0, 65535], "poore cheeke": [0, 65535], "cheeke then": [0, 65535], "hath wasted": [0, 65535], "wasted it": [0, 65535], "it are": [0, 65535], "are my": [0, 65535], "my discourses": [0, 65535], "discourses dull": [0, 65535], "dull barren": [0, 65535], "barren my": [0, 65535], "my wit": [0, 65535], "wit if": [0, 65535], "if voluble": [0, 65535], "voluble and": [0, 65535], "and sharpe": [0, 65535], "sharpe discourse": [0, 65535], "discourse be": [0, 65535], "be mar'd": [0, 65535], "mar'd vnkindnesse": [0, 65535], "vnkindnesse blunts": [0, 65535], "blunts it": [0, 65535], "it more": [0, 65535], "then marble": [0, 65535], "marble hard": [0, 65535], "hard doe": [0, 65535], "doe their": [0, 65535], "their gay": [0, 65535], "gay vestments": [0, 65535], "vestments his": [0, 65535], "his affections": [0, 65535], "affections baite": [0, 65535], "baite that's": [0, 65535], "that's not": [0, 65535], "my fault": [0, 65535], "fault hee's": [0, 65535], "hee's master": [0, 65535], "my state": [0, 65535], "state what": [0, 65535], "what ruines": [0, 65535], "ruines are": [0, 65535], "are in": [0, 65535], "in me": [0, 65535], "be found": [0, 65535], "found by": [0, 65535], "him not": [0, 65535], "not ruin'd": [0, 65535], "ruin'd then": [0, 65535], "then is": [0, 65535], "my defeatures": [0, 65535], "defeatures my": [0, 65535], "my decayed": [0, 65535], "decayed faire": [0, 65535], "faire a": [0, 65535], "a sunnie": [0, 65535], "sunnie looke": [0, 65535], "looke of": [0, 65535], "his would": [0, 65535], "would soone": [0, 65535], "soone repaire": [0, 65535], "repaire but": [0, 65535], "but too": [0, 65535], "too vnruly": [0, 65535], "vnruly deere": [0, 65535], "deere he": [0, 65535], "he breakes": [0, 65535], "breakes the": [0, 65535], "the pale": [0, 65535], "pale and": [0, 65535], "and feedes": [0, 65535], "feedes from": [0, 65535], "from home": [0, 65535], "home poore": [0, 65535], "poore i": [0, 65535], "am but": [0, 65535], "his stale": [0, 65535], "stale luci": [0, 65535], "luci selfe": [0, 65535], "selfe harming": [0, 65535], "harming iealousie": [0, 65535], "iealousie fie": [0, 65535], "fie beat": [0, 65535], "beat it": [0, 65535], "it hence": [0, 65535], "hence ad": [0, 65535], "ad vnfeeling": [0, 65535], "vnfeeling fools": [0, 65535], "fools can": [0, 65535], "can with": [0, 65535], "such wrongs": [0, 65535], "wrongs dispence": [0, 65535], "dispence i": [0, 65535], "know his": [0, 65535], "his eye": [0, 65535], "eye doth": [0, 65535], "doth homage": [0, 65535], "homage other": [0, 65535], "where or": [0, 65535], "else what": [0, 65535], "what lets": [0, 65535], "lets it": [0, 65535], "be here": [0, 65535], "here sister": [0, 65535], "sister you": [0, 65535], "he promis'd": [0, 65535], "promis'd me": [0, 65535], "a chaine": [0, 65535], "chaine would": [0, 65535], "would that": [0, 65535], "that alone": [0, 65535], "alone a": [0, 65535], "a loue": [0, 65535], "loue he": [0, 65535], "would detaine": [0, 65535], "detaine so": [0, 65535], "keepe faire": [0, 65535], "faire quarter": [0, 65535], "quarter with": [0, 65535], "his bed": [0, 65535], "bed i": [0, 65535], "the iewell": [0, 65535], "iewell best": [0, 65535], "best enamaled": [0, 65535], "enamaled will": [0, 65535], "will loose": [0, 65535], "loose his": [0, 65535], "his beautie": [0, 65535], "beautie yet": [0, 65535], "yet the": [0, 65535], "the gold": [0, 65535], "gold bides": [0, 65535], "bides still": [0, 65535], "still that": [0, 65535], "that others": [0, 65535], "others touch": [0, 65535], "touch and": [0, 65535], "and often": [0, 65535], "often touching": [0, 65535], "touching will": [0, 65535], "will where": [0, 65535], "where gold": [0, 65535], "and no": [0, 65535], "name by": [0, 65535], "by falshood": [0, 65535], "falshood and": [0, 65535], "and corruption": [0, 65535], "corruption doth": [0, 65535], "doth it": [0, 65535], "it shame": [0, 65535], "shame since": [0, 65535], "since that": [0, 65535], "my beautie": [0, 65535], "beautie cannot": [0, 65535], "cannot please": [0, 65535], "his eie": [0, 65535], "eie ile": [0, 65535], "ile weepe": [0, 65535], "weepe what's": [0, 65535], "what's left": [0, 65535], "left away": [0, 65535], "and weeping": [0, 65535], "weeping die": [0, 65535], "die luci": [0, 65535], "luci how": [0, 65535], "how manie": [0, 65535], "manie fond": [0, 65535], "fond fooles": [0, 65535], "fooles serue": [0, 65535], "serue mad": [0, 65535], "mad ielousie": [0, 65535], "ielousie exit": [0, 65535], "enter antipholis": [0, 65535], "antipholis errotis": [0, 65535], "errotis ant": [0, 65535], "ant the": [0, 65535], "gold i": [0, 65535], "gaue to": [0, 65535], "to dromio": [0, 65535], "dromio is": [0, 65535], "is laid": [0, 65535], "laid vp": [0, 65535], "vp safe": [0, 65535], "safe at": [0, 65535], "the centaur": [0, 65535], "centaur and": [0, 65535], "the heedfull": [0, 65535], "heedfull slaue": [0, 65535], "slaue is": [0, 65535], "is wandred": [0, 65535], "wandred forth": [0, 65535], "forth in": [0, 65535], "in care": [0, 65535], "seeke me": [0, 65535], "me out": [0, 65535], "by computation": [0, 65535], "computation and": [0, 65535], "and mine": [0, 65535], "mine hosts": [0, 65535], "hosts report": [0, 65535], "report i": [0, 65535], "with dromio": [0, 65535], "dromio since": [0, 65535], "since at": [0, 65535], "at first": [0, 65535], "first i": [0, 65535], "sent him": [0, 65535], "him from": [0, 65535], "mart see": [0, 65535], "see here": [0, 65535], "here he": [0, 65535], "he comes": [0, 65535], "comes enter": [0, 65535], "siracusia how": [0, 65535], "your merrie": [0, 65535], "merrie humor": [0, 65535], "humor alter'd": [0, 65535], "alter'd as": [0, 65535], "loue stroakes": [0, 65535], "stroakes so": [0, 65535], "so iest": [0, 65535], "iest with": [0, 65535], "me againe": [0, 65535], "againe you": [0, 65535], "know no": [0, 65535], "no centaur": [0, 65535], "centaur you": [0, 65535], "you receiu'd": [0, 65535], "receiu'd no": [0, 65535], "no gold": [0, 65535], "gold your": [0, 65535], "your mistresse": [0, 65535], "mistresse sent": [0, 65535], "me home": [0, 65535], "dinner my": [0, 65535], "my house": [0, 65535], "house was": [0, 65535], "the ph\u0153nix": [0, 65535], "ph\u0153nix wast": [0, 65535], "wast thou": [0, 65535], "thou mad": [0, 65535], "that thus": [0, 65535], "thus so": [0, 65535], "so madlie": [0, 65535], "madlie thou": [0, 65535], "thou did": [0, 65535], "did didst": [0, 65535], "didst answere": [0, 65535], "answere me": [0, 65535], "me s": [0, 65535], "what answer": [0, 65535], "answer sir": [0, 65535], "sir when": [0, 65535], "when spake": [0, 65535], "spake i": [0, 65535], "word e": [0, 65535], "ant euen": [0, 65535], "euen now": [0, 65535], "now euen": [0, 65535], "euen here": [0, 65535], "here not": [0, 65535], "not halfe": [0, 65535], "halfe an": [0, 65535], "an howre": [0, 65535], "howre since": [0, 65535], "since s": [0, 65535], "not see": [0, 65535], "you since": [0, 65535], "since you": [0, 65535], "you sent": [0, 65535], "sent me": [0, 65535], "hence home": [0, 65535], "centaur with": [0, 65535], "gold you": [0, 65535], "gaue me": [0, 65535], "me ant": [0, 65535], "ant villaine": [0, 65535], "thou didst": [0, 65535], "didst denie": [0, 65535], "denie the": [0, 65535], "the golds": [0, 65535], "golds receit": [0, 65535], "receit and": [0, 65535], "and toldst": [0, 65535], "toldst me": [0, 65535], "me of": [0, 65535], "a mistresse": [0, 65535], "mistresse and": [0, 65535], "a dinner": [0, 65535], "dinner for": [0, 65535], "for which": [0, 65535], "which i": [0, 65535], "hope thou": [0, 65535], "thou feltst": [0, 65535], "feltst i": [0, 65535], "was displeas'd": [0, 65535], "displeas'd s": [0, 65535], "am glad": [0, 65535], "glad to": [0, 65535], "this merrie": [0, 65535], "merrie vaine": [0, 65535], "vaine what": [0, 65535], "what meanes": [0, 65535], "meanes this": [0, 65535], "iest i": [0, 65535], "you master": [0, 65535], "master tell": [0, 65535], "ant yea": [0, 65535], "yea dost": [0, 65535], "thou ieere": [0, 65535], "ieere flowt": [0, 65535], "flowt me": [0, 65535], "the teeth": [0, 65535], "teeth thinkst": [0, 65535], "thinkst thou": [0, 65535], "thou i": [0, 65535], "i iest": [0, 65535], "iest hold": [0, 65535], "hold take": [0, 65535], "take thou": [0, 65535], "that beats": [0, 65535], "beats dro": [0, 65535], "dro s": [0, 65535], "s dr": [0, 65535], "dr hold": [0, 65535], "hold sir": [0, 65535], "sir for": [0, 65535], "sake now": [0, 65535], "now your": [0, 65535], "your iest": [0, 65535], "iest is": [0, 65535], "is earnest": [0, 65535], "earnest vpon": [0, 65535], "vpon what": [0, 65535], "what bargaine": [0, 65535], "bargaine do": [0, 65535], "you giue": [0, 65535], "giue it": [0, 65535], "it me": [0, 65535], "me antiph": [0, 65535], "antiph because": [0, 65535], "because that": [0, 65535], "i familiarlie": [0, 65535], "familiarlie sometimes": [0, 65535], "sometimes doe": [0, 65535], "doe vse": [0, 65535], "vse you": [0, 65535], "my foole": [0, 65535], "foole and": [0, 65535], "and chat": [0, 65535], "chat with": [0, 65535], "you your": [0, 65535], "your sawcinesse": [0, 65535], "sawcinesse will": [0, 65535], "will iest": [0, 65535], "iest vpon": [0, 65535], "my loue": [0, 65535], "a common": [0, 65535], "common of": [0, 65535], "my serious": [0, 65535], "serious howres": [0, 65535], "howres when": [0, 65535], "the sunne": [0, 65535], "sunne shines": [0, 65535], "shines let": [0, 65535], "let foolish": [0, 65535], "foolish gnats": [0, 65535], "gnats make": [0, 65535], "make sport": [0, 65535], "sport but": [0, 65535], "but creepe": [0, 65535], "creepe in": [0, 65535], "in crannies": [0, 65535], "crannies when": [0, 65535], "he hides": [0, 65535], "hides his": [0, 65535], "his beames": [0, 65535], "beames if": [0, 65535], "me know": [0, 65535], "know my": [0, 65535], "my aspect": [0, 65535], "aspect and": [0, 65535], "and fashion": [0, 65535], "fashion your": [0, 65535], "your demeanor": [0, 65535], "demeanor to": [0, 65535], "my lookes": [0, 65535], "lookes or": [0, 65535], "will beat": [0, 65535], "beat this": [0, 65535], "this method": [0, 65535], "method in": [0, 65535], "your sconce": [0, 65535], "sconce s": [0, 65535], "dro sconce": [0, 65535], "sconce call": [0, 65535], "you it": [0, 65535], "so you": [0, 65535], "would leaue": [0, 65535], "leaue battering": [0, 65535], "battering i": [0, 65535], "had rather": [0, 65535], "rather haue": [0, 65535], "haue it": [0, 65535], "you vse": [0, 65535], "vse these": [0, 65535], "these blows": [0, 65535], "blows long": [0, 65535], "long i": [0, 65535], "must get": [0, 65535], "a sconce": [0, 65535], "sconce for": [0, 65535], "my head": [0, 65535], "and insconce": [0, 65535], "insconce it": [0, 65535], "to or": [0, 65535], "shall seek": [0, 65535], "seek my": [0, 65535], "wit in": [0, 65535], "shoulders but": [0, 65535], "pray sir": [0, 65535], "why am": [0, 65535], "i beaten": [0, 65535], "beaten ant": [0, 65535], "ant dost": [0, 65535], "thou not": [0, 65535], "know s": [0, 65535], "dro nothing": [0, 65535], "nothing sir": [0, 65535], "am beaten": [0, 65535], "ant shall": [0, 65535], "you why": [0, 65535], "why s": [0, 65535], "i sir": [0, 65535], "and wherefore": [0, 65535], "say euery": [0, 65535], "euery why": [0, 65535], "why hath": [0, 65535], "a wherefore": [0, 65535], "why first": [0, 65535], "first for": [0, 65535], "for flowting": [0, 65535], "flowting me": [0, 65535], "then wherefore": [0, 65535], "for vrging": [0, 65535], "vrging it": [0, 65535], "second time": [0, 65535], "dro was": [0, 65535], "there euer": [0, 65535], "euer anie": [0, 65535], "anie man": [0, 65535], "man thus": [0, 65535], "thus beaten": [0, 65535], "beaten out": [0, 65535], "of season": [0, 65535], "season when": [0, 65535], "the why": [0, 65535], "why and": [0, 65535], "the wherefore": [0, 65535], "wherefore is": [0, 65535], "neither rime": [0, 65535], "rime nor": [0, 65535], "nor reason": [0, 65535], "reason well": [0, 65535], "thanke you": [0, 65535], "you ant": [0, 65535], "ant thanke": [0, 65535], "thanke me": [0, 65535], "for what": [0, 65535], "what s": [0, 65535], "this something": [0, 65535], "something that": [0, 65535], "nothing ant": [0, 65535], "ant ile": [0, 65535], "ile make": [0, 65535], "make you": [0, 65535], "you amends": [0, 65535], "amends next": [0, 65535], "next to": [0, 65535], "to giue": [0, 65535], "giue you": [0, 65535], "you nothing": [0, 65535], "nothing for": [0, 65535], "for something": [0, 65535], "something but": [0, 65535], "it dinner": [0, 65535], "time s": [0, 65535], "thinke the": [0, 65535], "the meat": [0, 65535], "meat wants": [0, 65535], "wants that": [0, 65535], "haue ant": [0, 65535], "ant in": [0, 65535], "sir what's": [0, 65535], "that s": [0, 65535], "dro basting": [0, 65535], "basting ant": [0, 65535], "sir then": [0, 65535], "then 'twill": [0, 65535], "'twill be": [0, 65535], "be drie": [0, 65535], "drie s": [0, 65535], "be sir": [0, 65535], "you eat": [0, 65535], "eat none": [0, 65535], "none of": [0, 65535], "ant your": [0, 65535], "your reason": [0, 65535], "reason s": [0, 65535], "dro lest": [0, 65535], "lest it": [0, 65535], "it make": [0, 65535], "you chollericke": [0, 65535], "chollericke and": [0, 65535], "and purchase": [0, 65535], "purchase me": [0, 65535], "me another": [0, 65535], "another drie": [0, 65535], "drie basting": [0, 65535], "sir learne": [0, 65535], "learne to": [0, 65535], "to iest": [0, 65535], "iest in": [0, 65535], "time there's": [0, 65535], "time for": [0, 65535], "for all": [0, 65535], "all things": [0, 65535], "things s": [0, 65535], "i durst": [0, 65535], "durst haue": [0, 65535], "haue denied": [0, 65535], "denied that": [0, 65535], "that before": [0, 65535], "before you": [0, 65535], "you were": [0, 65535], "so chollericke": [0, 65535], "chollericke anti": [0, 65535], "anti by": [0, 65535], "what rule": [0, 65535], "rule sir": [0, 65535], "sir s": [0, 65535], "sir by": [0, 65535], "a rule": [0, 65535], "rule as": [0, 65535], "as plaine": [0, 65535], "plaine as": [0, 65535], "the plaine": [0, 65535], "plaine bald": [0, 65535], "bald pate": [0, 65535], "pate of": [0, 65535], "of father": [0, 65535], "father time": [0, 65535], "time himselfe": [0, 65535], "himselfe ant": [0, 65535], "ant let's": [0, 65535], "let's heare": [0, 65535], "it s": [0, 65535], "dro there's": [0, 65535], "no time": [0, 65535], "man to": [0, 65535], "to recouer": [0, 65535], "recouer his": [0, 65535], "his haire": [0, 65535], "haire that": [0, 65535], "that growes": [0, 65535], "growes bald": [0, 65535], "bald by": [0, 65535], "nature ant": [0, 65535], "ant may": [0, 65535], "may he": [0, 65535], "he not": [0, 65535], "not doe": [0, 65535], "by fine": [0, 65535], "fine and": [0, 65535], "and recouerie": [0, 65535], "recouerie s": [0, 65535], "dro yes": [0, 65535], "yes to": [0, 65535], "to pay": [0, 65535], "pay a": [0, 65535], "fine for": [0, 65535], "a perewig": [0, 65535], "perewig and": [0, 65535], "and recouer": [0, 65535], "recouer the": [0, 65535], "the lost": [0, 65535], "lost haire": [0, 65535], "haire of": [0, 65535], "of another": [0, 65535], "another man": [0, 65535], "man ant": [0, 65535], "is time": [0, 65535], "time such": [0, 65535], "a niggard": [0, 65535], "niggard of": [0, 65535], "of haire": [0, 65535], "haire being": [0, 65535], "being as": [0, 65535], "so plentifull": [0, 65535], "plentifull an": [0, 65535], "an excrement": [0, 65535], "excrement s": [0, 65535], "dro because": [0, 65535], "a blessing": [0, 65535], "blessing that": [0, 65535], "that hee": [0, 65535], "hee bestowes": [0, 65535], "bestowes on": [0, 65535], "on beasts": [0, 65535], "beasts and": [0, 65535], "and what": [0, 65535], "hath scanted": [0, 65535], "scanted them": [0, 65535], "in haire": [0, 65535], "haire hee": [0, 65535], "hee hath": [0, 65535], "hath giuen": [0, 65535], "giuen them": [0, 65535], "in wit": [0, 65535], "wit ant": [0, 65535], "why but": [0, 65535], "but theres": [0, 65535], "theres manie": [0, 65535], "manie a": [0, 65535], "man hath": [0, 65535], "hath more": [0, 65535], "more haire": [0, 65535], "haire then": [0, 65535], "then wit": [0, 65535], "wit s": [0, 65535], "dro not": [0, 65535], "not a": [0, 65535], "man of": [0, 65535], "those but": [0, 65535], "hath the": [0, 65535], "the wit": [0, 65535], "wit to": [0, 65535], "to lose": [0, 65535], "lose his": [0, 65535], "haire ant": [0, 65535], "why thou": [0, 65535], "didst conclude": [0, 65535], "conclude hairy": [0, 65535], "hairy men": [0, 65535], "men plain": [0, 65535], "plain dealers": [0, 65535], "dealers without": [0, 65535], "without wit": [0, 65535], "the plainer": [0, 65535], "plainer dealer": [0, 65535], "dealer the": [0, 65535], "the sooner": [0, 65535], "sooner lost": [0, 65535], "lost yet": [0, 65535], "he looseth": [0, 65535], "looseth it": [0, 65535], "a kinde": [0, 65535], "kinde of": [0, 65535], "of iollitie": [0, 65535], "iollitie an": [0, 65535], "an for": [0, 65535], "what reason": [0, 65535], "dro for": [0, 65535], "two and": [0, 65535], "and sound": [0, 65535], "sound ones": [0, 65535], "ones to": [0, 65535], "to an": [0, 65535], "an nay": [0, 65535], "nay not": [0, 65535], "not sound": [0, 65535], "sound i": [0, 65535], "dro sure": [0, 65535], "sure ones": [0, 65535], "ones then": [0, 65535], "then an": [0, 65535], "not sure": [0, 65535], "sure in": [0, 65535], "thing falsing": [0, 65535], "falsing s": [0, 65535], "dro certaine": [0, 65535], "certaine ones": [0, 65535], "an name": [0, 65535], "name them": [0, 65535], "them s": [0, 65535], "one to": [0, 65535], "to saue": [0, 65535], "saue the": [0, 65535], "money that": [0, 65535], "he spends": [0, 65535], "spends in": [0, 65535], "in trying": [0, 65535], "other that": [0, 65535], "at dinner": [0, 65535], "dinner they": [0, 65535], "they should": [0, 65535], "should not": [0, 65535], "not drop": [0, 65535], "drop in": [0, 65535], "his porrage": [0, 65535], "porrage an": [0, 65535], "an you": [0, 65535], "would all": [0, 65535], "time haue": [0, 65535], "haue prou'd": [0, 65535], "prou'd there": [0, 65535], "marry and": [0, 65535], "did sir": [0, 65535], "sir namely": [0, 65535], "namely in": [0, 65535], "in no": [0, 65535], "recouer haire": [0, 65535], "haire lost": [0, 65535], "lost by": [0, 65535], "nature an": [0, 65535], "an but": [0, 65535], "but your": [0, 65535], "reason was": [0, 65535], "not substantiall": [0, 65535], "substantiall why": [0, 65535], "why there": [0, 65535], "recouer s": [0, 65535], "dro thus": [0, 65535], "thus i": [0, 65535], "i mend": [0, 65535], "mend it": [0, 65535], "it time": [0, 65535], "himselfe is": [0, 65535], "is bald": [0, 65535], "bald and": [0, 65535], "therefore to": [0, 65535], "the worlds": [0, 65535], "worlds end": [0, 65535], "end will": [0, 65535], "haue bald": [0, 65535], "bald followers": [0, 65535], "followers an": [0, 65535], "an i": [0, 65535], "i knew": [0, 65535], "knew 'twould": [0, 65535], "'twould be": [0, 65535], "a bald": [0, 65535], "bald conclusion": [0, 65535], "conclusion but": [0, 65535], "soft who": [0, 65535], "who wafts": [0, 65535], "wafts vs": [0, 65535], "vs yonder": [0, 65535], "yonder enter": [0, 65535], "adriana and": [0, 65535], "and luciana": [0, 65535], "luciana adri": [0, 65535], "adri i": [0, 65535], "i antipholus": [0, 65535], "antipholus looke": [0, 65535], "looke strange": [0, 65535], "strange and": [0, 65535], "and frowne": [0, 65535], "frowne some": [0, 65535], "other mistresse": [0, 65535], "mistresse hath": [0, 65535], "hath thy": [0, 65535], "thy sweet": [0, 65535], "sweet aspects": [0, 65535], "aspects i": [0, 65535], "am not": [0, 65535], "not adriana": [0, 65535], "adriana nor": [0, 65535], "nor thy": [0, 65535], "thy wife": [0, 65535], "time was": [0, 65535], "once when": [0, 65535], "when thou": [0, 65535], "thou vn": [0, 65535], "vn vrg'd": [0, 65535], "vrg'd wouldst": [0, 65535], "wouldst vow": [0, 65535], "vow that": [0, 65535], "that neuer": [0, 65535], "neuer words": [0, 65535], "were musicke": [0, 65535], "musicke to": [0, 65535], "to thine": [0, 65535], "thine eare": [0, 65535], "eare that": [0, 65535], "neuer obiect": [0, 65535], "obiect pleasing": [0, 65535], "pleasing in": [0, 65535], "in thine": [0, 65535], "thine eye": [0, 65535], "eye that": [0, 65535], "neuer touch": [0, 65535], "touch well": [0, 65535], "well welcome": [0, 65535], "welcome to": [0, 65535], "to thy": [0, 65535], "hand that": [0, 65535], "neuer meat": [0, 65535], "meat sweet": [0, 65535], "sweet sauour'd": [0, 65535], "sauour'd in": [0, 65535], "thy taste": [0, 65535], "taste vnlesse": [0, 65535], "vnlesse i": [0, 65535], "i spake": [0, 65535], "spake or": [0, 65535], "or look'd": [0, 65535], "look'd or": [0, 65535], "or touch'd": [0, 65535], "touch'd or": [0, 65535], "or caru'd": [0, 65535], "caru'd to": [0, 65535], "thee how": [0, 65535], "how comes": [0, 65535], "comes it": [0, 65535], "now my": [0, 65535], "husband oh": [0, 65535], "oh how": [0, 65535], "art then": [0, 65535], "then estranged": [0, 65535], "estranged from": [0, 65535], "from thy": [0, 65535], "selfe thy": [0, 65535], "i call": [0, 65535], "call it": [0, 65535], "it being": [0, 65535], "being strange": [0, 65535], "strange to": [0, 65535], "that vndiuidable": [0, 65535], "vndiuidable incorporate": [0, 65535], "incorporate am": [0, 65535], "am better": [0, 65535], "better then": [0, 65535], "then thy": [0, 65535], "thy deere": [0, 65535], "deere selfes": [0, 65535], "part ah": [0, 65535], "ah doe": [0, 65535], "not teare": [0, 65535], "teare away": [0, 65535], "away thy": [0, 65535], "selfe from": [0, 65535], "from me": [0, 65535], "for know": [0, 65535], "as easie": [0, 65535], "easie maist": [0, 65535], "maist thou": [0, 65535], "thou fall": [0, 65535], "fall a": [0, 65535], "a drop": [0, 65535], "drop of": [0, 65535], "water in": [0, 65535], "the breaking": [0, 65535], "breaking gulfe": [0, 65535], "gulfe and": [0, 65535], "take vnmingled": [0, 65535], "vnmingled thence": [0, 65535], "thence that": [0, 65535], "that drop": [0, 65535], "drop againe": [0, 65535], "againe without": [0, 65535], "without addition": [0, 65535], "addition or": [0, 65535], "or diminishing": [0, 65535], "diminishing as": [0, 65535], "as take": [0, 65535], "take from": [0, 65535], "not me": [0, 65535], "me too": [0, 65535], "too how": [0, 65535], "how deerely": [0, 65535], "deerely would": [0, 65535], "would it": [0, 65535], "it touch": [0, 65535], "touch thee": [0, 65535], "thee to": [0, 65535], "the quicke": [0, 65535], "quicke shouldst": [0, 65535], "shouldst thou": [0, 65535], "thou but": [0, 65535], "but heare": [0, 65535], "heare i": [0, 65535], "were licencious": [0, 65535], "licencious and": [0, 65535], "this body": [0, 65535], "body consecrate": [0, 65535], "consecrate to": [0, 65535], "thee by": [0, 65535], "by ruffian": [0, 65535], "ruffian lust": [0, 65535], "lust should": [0, 65535], "be contaminate": [0, 65535], "contaminate wouldst": [0, 65535], "wouldst thou": [0, 65535], "not spit": [0, 65535], "spit at": [0, 65535], "and spurne": [0, 65535], "spurne at": [0, 65535], "and hurle": [0, 65535], "hurle the": [0, 65535], "name of": [0, 65535], "of husband": [0, 65535], "husband in": [0, 65535], "my face": [0, 65535], "and teare": [0, 65535], "teare the": [0, 65535], "the stain'd": [0, 65535], "stain'd skin": [0, 65535], "skin of": [0, 65535], "my harlot": [0, 65535], "harlot brow": [0, 65535], "brow and": [0, 65535], "my false": [0, 65535], "false hand": [0, 65535], "hand cut": [0, 65535], "the wedding": [0, 65535], "wedding ring": [0, 65535], "a deepe": [0, 65535], "deepe diuorcing": [0, 65535], "diuorcing vow": [0, 65535], "vow i": [0, 65535], "know thou": [0, 65535], "thou canst": [0, 65535], "canst and": [0, 65535], "therefore see": [0, 65535], "see thou": [0, 65535], "thou doe": [0, 65535], "am possest": [0, 65535], "an adulterate": [0, 65535], "adulterate blot": [0, 65535], "blot my": [0, 65535], "my bloud": [0, 65535], "bloud is": [0, 65535], "is mingled": [0, 65535], "the crime": [0, 65535], "crime of": [0, 65535], "of lust": [0, 65535], "lust for": [0, 65535], "for if": [0, 65535], "if we": [0, 65535], "we two": [0, 65535], "two be": [0, 65535], "be one": [0, 65535], "and thou": [0, 65535], "thou play": [0, 65535], "play false": [0, 65535], "false i": [0, 65535], "doe digest": [0, 65535], "digest the": [0, 65535], "the poison": [0, 65535], "poison of": [0, 65535], "of thy": [0, 65535], "thy flesh": [0, 65535], "flesh being": [0, 65535], "being strumpeted": [0, 65535], "strumpeted by": [0, 65535], "by thy": [0, 65535], "thy contagion": [0, 65535], "contagion keepe": [0, 65535], "keepe then": [0, 65535], "then faire": [0, 65535], "faire league": [0, 65535], "league and": [0, 65535], "and truce": [0, 65535], "truce with": [0, 65535], "thy true": [0, 65535], "true bed": [0, 65535], "i liue": [0, 65535], "liue distain'd": [0, 65535], "distain'd thou": [0, 65535], "thou vndishonoured": [0, 65535], "vndishonoured antip": [0, 65535], "antip plead": [0, 65535], "plead you": [0, 65535], "me faire": [0, 65535], "faire dame": [0, 65535], "dame i": [0, 65535], "you not": [0, 65535], "not in": [0, 65535], "in ephesus": [0, 65535], "ephesus i": [0, 65535], "but two": [0, 65535], "two houres": [0, 65535], "houres old": [0, 65535], "old as": [0, 65535], "as strange": [0, 65535], "strange vnto": [0, 65535], "vnto your": [0, 65535], "towne as": [0, 65535], "your talke": [0, 65535], "talke who": [0, 65535], "who euery": [0, 65535], "euery word": [0, 65535], "word by": [0, 65535], "wit being": [0, 65535], "being scan'd": [0, 65535], "scan'd wants": [0, 65535], "wants wit": [0, 65535], "all one": [0, 65535], "one word": [0, 65535], "word to": [0, 65535], "to vnderstand": [0, 65535], "vnderstand luci": [0, 65535], "fie brother": [0, 65535], "brother how": [0, 65535], "how the": [0, 65535], "world is": [0, 65535], "is chang'd": [0, 65535], "chang'd with": [0, 65535], "when were": [0, 65535], "you wont": [0, 65535], "wont to": [0, 65535], "to vse": [0, 65535], "vse my": [0, 65535], "sister thus": [0, 65535], "she sent": [0, 65535], "sent for": [0, 65535], "you by": [0, 65535], "by dromio": [0, 65535], "dromio home": [0, 65535], "dinner ant": [0, 65535], "ant by": [0, 65535], "dromio drom": [0, 65535], "drom by": [0, 65535], "me adr": [0, 65535], "adr by": [0, 65535], "by thee": [0, 65535], "this thou": [0, 65535], "didst returne": [0, 65535], "returne from": [0, 65535], "did buffet": [0, 65535], "buffet thee": [0, 65535], "blowes denied": [0, 65535], "denied my": [0, 65535], "house for": [0, 65535], "his me": [0, 65535], "wife ant": [0, 65535], "ant did": [0, 65535], "you conuerse": [0, 65535], "conuerse sir": [0, 65535], "sir with": [0, 65535], "this gentlewoman": [0, 65535], "gentlewoman what": [0, 65535], "the course": [0, 65535], "and drift": [0, 65535], "drift of": [0, 65535], "your compact": [0, 65535], "compact s": [0, 65535], "i neuer": [0, 65535], "neuer saw": [0, 65535], "saw her": [0, 65535], "her till": [0, 65535], "till this": [0, 65535], "time ant": [0, 65535], "thou liest": [0, 65535], "liest for": [0, 65535], "for euen": [0, 65535], "euen her": [0, 65535], "her verie": [0, 65535], "verie words": [0, 65535], "words didst": [0, 65535], "thou deliuer": [0, 65535], "deliuer to": [0, 65535], "mart s": [0, 65535], "neuer spake": [0, 65535], "spake with": [0, 65535], "her in": [0, 65535], "life ant": [0, 65535], "ant how": [0, 65535], "how can": [0, 65535], "can she": [0, 65535], "she thus": [0, 65535], "thus then": [0, 65535], "then call": [0, 65535], "call vs": [0, 65535], "vs by": [0, 65535], "by our": [0, 65535], "our names": [0, 65535], "names vnlesse": [0, 65535], "vnlesse it": [0, 65535], "be by": [0, 65535], "by inspiration": [0, 65535], "inspiration adri": [0, 65535], "adri how": [0, 65535], "how ill": [0, 65535], "ill agrees": [0, 65535], "agrees it": [0, 65535], "your grauitie": [0, 65535], "grauitie to": [0, 65535], "to counterfeit": [0, 65535], "counterfeit thus": [0, 65535], "thus grosely": [0, 65535], "grosely with": [0, 65535], "your slaue": [0, 65535], "slaue abetting": [0, 65535], "abetting him": [0, 65535], "to thwart": [0, 65535], "thwart me": [0, 65535], "my moode": [0, 65535], "moode be": [0, 65535], "my wrong": [0, 65535], "wrong you": [0, 65535], "are from": [0, 65535], "me exempt": [0, 65535], "exempt but": [0, 65535], "but wrong": [0, 65535], "wrong not": [0, 65535], "that wrong": [0, 65535], "wrong with": [0, 65535], "a more": [0, 65535], "more contempt": [0, 65535], "contempt come": [0, 65535], "come i": [0, 65535], "will fasten": [0, 65535], "fasten on": [0, 65535], "on this": [0, 65535], "this sleeue": [0, 65535], "sleeue of": [0, 65535], "of thine": [0, 65535], "thine thou": [0, 65535], "an elme": [0, 65535], "elme my": [0, 65535], "husband i": [0, 65535], "i a": [0, 65535], "a vine": [0, 65535], "vine whose": [0, 65535], "whose weaknesse": [0, 65535], "weaknesse married": [0, 65535], "married to": [0, 65535], "thy stranger": [0, 65535], "stranger state": [0, 65535], "state makes": [0, 65535], "me with": [0, 65535], "thy strength": [0, 65535], "strength to": [0, 65535], "to communicate": [0, 65535], "communicate if": [0, 65535], "if ought": [0, 65535], "ought possesse": [0, 65535], "possesse thee": [0, 65535], "me it": [0, 65535], "is drosse": [0, 65535], "drosse vsurping": [0, 65535], "vsurping iuie": [0, 65535], "iuie brier": [0, 65535], "brier or": [0, 65535], "or idle": [0, 65535], "idle mosse": [0, 65535], "mosse who": [0, 65535], "who all": [0, 65535], "for want": [0, 65535], "want of": [0, 65535], "of pruning": [0, 65535], "pruning with": [0, 65535], "with intrusion": [0, 65535], "intrusion infect": [0, 65535], "infect thy": [0, 65535], "thy sap": [0, 65535], "sap and": [0, 65535], "and liue": [0, 65535], "liue on": [0, 65535], "thy confusion": [0, 65535], "confusion ant": [0, 65535], "ant to": [0, 65535], "mee shee": [0, 65535], "shee speakes": [0, 65535], "speakes shee": [0, 65535], "shee moues": [0, 65535], "moues mee": [0, 65535], "mee for": [0, 65535], "her theame": [0, 65535], "theame what": [0, 65535], "what was": [0, 65535], "was i": [0, 65535], "i married": [0, 65535], "my dreame": [0, 65535], "dreame or": [0, 65535], "or sleepe": [0, 65535], "sleepe i": [0, 65535], "i now": [0, 65535], "and thinke": [0, 65535], "thinke i": [0, 65535], "i heare": [0, 65535], "heare all": [0, 65535], "this what": [0, 65535], "what error": [0, 65535], "error driues": [0, 65535], "driues our": [0, 65535], "our eies": [0, 65535], "eies and": [0, 65535], "and eares": [0, 65535], "eares amisse": [0, 65535], "amisse vntill": [0, 65535], "vntill i": [0, 65535], "know this": [0, 65535], "this sure": [0, 65535], "sure vncertaintie": [0, 65535], "vncertaintie ile": [0, 65535], "ile entertaine": [0, 65535], "entertaine the": [0, 65535], "the free'd": [0, 65535], "free'd fallacie": [0, 65535], "fallacie luc": [0, 65535], "luc dromio": [0, 65535], "dromio goe": [0, 65535], "bid the": [0, 65535], "the seruants": [0, 65535], "seruants spred": [0, 65535], "spred for": [0, 65535], "for dinner": [0, 65535], "dinner s": [0, 65535], "oh for": [0, 65535], "my beads": [0, 65535], "beads i": [0, 65535], "i crosse": [0, 65535], "crosse me": [0, 65535], "a sinner": [0, 65535], "sinner this": [0, 65535], "the fairie": [0, 65535], "fairie land": [0, 65535], "land oh": [0, 65535], "oh spight": [0, 65535], "spight of": [0, 65535], "of spights": [0, 65535], "spights we": [0, 65535], "we talke": [0, 65535], "talke with": [0, 65535], "with goblins": [0, 65535], "goblins owles": [0, 65535], "owles and": [0, 65535], "and sprights": [0, 65535], "sprights if": [0, 65535], "we obay": [0, 65535], "obay them": [0, 65535], "them not": [0, 65535], "this will": [0, 65535], "will insue": [0, 65535], "insue they'll": [0, 65535], "they'll sucke": [0, 65535], "sucke our": [0, 65535], "our breath": [0, 65535], "breath or": [0, 65535], "or pinch": [0, 65535], "pinch vs": [0, 65535], "vs blacke": [0, 65535], "blacke and": [0, 65535], "and blew": [0, 65535], "blew luc": [0, 65535], "why prat'st": [0, 65535], "prat'st thou": [0, 65535], "thou to": [0, 65535], "and answer'st": [0, 65535], "answer'st not": [0, 65535], "not dromio": [0, 65535], "thou dromio": [0, 65535], "thou snaile": [0, 65535], "snaile thou": [0, 65535], "thou slug": [0, 65535], "slug thou": [0, 65535], "thou sot": [0, 65535], "sot s": [0, 65535], "am transformed": [0, 65535], "transformed master": [0, 65535], "master am": [0, 65535], "i not": [0, 65535], "not ant": [0, 65535], "art in": [0, 65535], "in minde": [0, 65535], "minde and": [0, 65535], "so am": [0, 65535], "i s": [0, 65535], "nay master": [0, 65535], "master both": [0, 65535], "both in": [0, 65535], "my shape": [0, 65535], "shape ant": [0, 65535], "hast thine": [0, 65535], "thine owne": [0, 65535], "owne forme": [0, 65535], "forme s": [0, 65535], "an ape": [0, 65535], "ape luc": [0, 65535], "luc if": [0, 65535], "art chang'd": [0, 65535], "chang'd to": [0, 65535], "to ought": [0, 65535], "ought 'tis": [0, 65535], "'tis to": [0, 65535], "asse s": [0, 65535], "dro 'tis": [0, 65535], "'tis true": [0, 65535], "true she": [0, 65535], "she rides": [0, 65535], "rides me": [0, 65535], "i long": [0, 65535], "long for": [0, 65535], "for grasse": [0, 65535], "grasse 'tis": [0, 65535], "'tis so": [0, 65535], "asse else": [0, 65535], "else it": [0, 65535], "it could": [0, 65535], "could neuer": [0, 65535], "neuer be": [0, 65535], "be but": [0, 65535], "should know": [0, 65535], "know her": [0, 65535], "well as": [0, 65535], "she knowes": [0, 65535], "knowes me": [0, 65535], "adr come": [0, 65535], "come come": [0, 65535], "longer will": [0, 65535], "a foole": [0, 65535], "foole to": [0, 65535], "finger in": [0, 65535], "the eie": [0, 65535], "eie and": [0, 65535], "and weepe": [0, 65535], "weepe whil'st": [0, 65535], "whil'st man": [0, 65535], "and master": [0, 65535], "master laughes": [0, 65535], "laughes my": [0, 65535], "my woes": [0, 65535], "woes to": [0, 65535], "to scorne": [0, 65535], "scorne come": [0, 65535], "come sir": [0, 65535], "sir to": [0, 65535], "dinner dromio": [0, 65535], "dromio keepe": [0, 65535], "keepe the": [0, 65535], "gate husband": [0, 65535], "husband ile": [0, 65535], "ile dine": [0, 65535], "dine aboue": [0, 65535], "aboue with": [0, 65535], "and shriue": [0, 65535], "shriue you": [0, 65535], "thousand idle": [0, 65535], "idle prankes": [0, 65535], "prankes sirra": [0, 65535], "sirra if": [0, 65535], "any aske": [0, 65535], "aske you": [0, 65535], "master say": [0, 65535], "say he": [0, 65535], "he dines": [0, 65535], "dines forth": [0, 65535], "let no": [0, 65535], "no creature": [0, 65535], "creature enter": [0, 65535], "enter come": [0, 65535], "come sister": [0, 65535], "sister dromio": [0, 65535], "dromio play": [0, 65535], "play the": [0, 65535], "porter well": [0, 65535], "well ant": [0, 65535], "ant am": [0, 65535], "i in": [0, 65535], "in heauen": [0, 65535], "heauen or": [0, 65535], "or in": [0, 65535], "in hell": [0, 65535], "hell sleeping": [0, 65535], "sleeping or": [0, 65535], "or waking": [0, 65535], "waking mad": [0, 65535], "mad or": [0, 65535], "or well": [0, 65535], "well aduisde": [0, 65535], "aduisde knowne": [0, 65535], "knowne vnto": [0, 65535], "vnto these": [0, 65535], "these and": [0, 65535], "selfe disguisde": [0, 65535], "disguisde ile": [0, 65535], "ile say": [0, 65535], "say as": [0, 65535], "say and": [0, 65535], "and perseuer": [0, 65535], "perseuer so": [0, 65535], "this mist": [0, 65535], "mist at": [0, 65535], "all aduentures": [0, 65535], "aduentures go": [0, 65535], "go s": [0, 65535], "dro master": [0, 65535], "master shall": [0, 65535], "be porter": [0, 65535], "porter at": [0, 65535], "gate adr": [0, 65535], "adr i": [0, 65535], "let none": [0, 65535], "none enter": [0, 65535], "enter least": [0, 65535], "i breake": [0, 65535], "your pate": [0, 65535], "pate luc": [0, 65535], "luc come": [0, 65535], "come antipholus": [0, 65535], "antipholus we": [0, 65535], "dine to": [0, 65535], "to late": [0, 65535], "actus secundus enter": [0, 65535], "secundus enter adriana": [0, 65535], "enter adriana wife": [0, 65535], "adriana wife to": [0, 65535], "wife to antipholis": [0, 65535], "to antipholis sereptus": [0, 65535], "antipholis sereptus with": [0, 65535], "sereptus with luciana": [0, 65535], "with luciana her": [0, 65535], "luciana her sister": [0, 65535], "her sister adr": [0, 65535], "sister adr neither": [0, 65535], "adr neither my": [0, 65535], "neither my husband": [0, 65535], "my husband nor": [0, 65535], "husband nor the": [0, 65535], "nor the slaue": [0, 65535], "the slaue return'd": [0, 65535], "slaue return'd that": [0, 65535], "return'd that in": [0, 65535], "that in such": [0, 65535], "in such haste": [0, 65535], "such haste i": [0, 65535], "haste i sent": [0, 65535], "i sent to": [0, 65535], "sent to seeke": [0, 65535], "to seeke his": [0, 65535], "seeke his master": [0, 65535], "his master sure": [0, 65535], "master sure luciana": [0, 65535], "sure luciana it": [0, 65535], "luciana it is": [0, 65535], "it is two": [0, 65535], "is two a": [0, 65535], "two a clocke": [0, 65535], "a clocke luc": [0, 65535], "clocke luc perhaps": [0, 65535], "luc perhaps some": [0, 65535], "perhaps some merchant": [0, 65535], "some merchant hath": [0, 65535], "merchant hath inuited": [0, 65535], "hath inuited him": [0, 65535], "inuited him and": [0, 65535], "him and from": [0, 65535], "from the mart": [0, 65535], "the mart he's": [0, 65535], "mart he's somewhere": [0, 65535], "he's somewhere gone": [0, 65535], "somewhere gone to": [0, 65535], "gone to dinner": [0, 65535], "to dinner good": [0, 65535], "dinner good sister": [0, 65535], "good sister let": [0, 65535], "sister let vs": [0, 65535], "let vs dine": [0, 65535], "vs dine and": [0, 65535], "dine and neuer": [0, 65535], "and neuer fret": [0, 65535], "neuer fret a": [0, 65535], "fret a man": [0, 65535], "a man is": [0, 65535], "man is master": [0, 65535], "is master of": [0, 65535], "master of his": [0, 65535], "of his libertie": [0, 65535], "his libertie time": [0, 65535], "libertie time is": [0, 65535], "time is their": [0, 65535], "is their master": [0, 65535], "their master and": [0, 65535], "master and when": [0, 65535], "and when they": [0, 65535], "when they see": [0, 65535], "they see time": [0, 65535], "see time they'll": [0, 65535], "time they'll goe": [0, 65535], "they'll goe or": [0, 65535], "goe or come": [0, 65535], "or come if": [0, 65535], "come if so": [0, 65535], "if so be": [0, 65535], "so be patient": [0, 65535], "be patient sister": [0, 65535], "patient sister adr": [0, 65535], "sister adr why": [0, 65535], "adr why should": [0, 65535], "why should their": [0, 65535], "should their libertie": [0, 65535], "their libertie then": [0, 65535], "libertie then ours": [0, 65535], "then ours be": [0, 65535], "ours be more": [0, 65535], "be more luc": [0, 65535], "more luc because": [0, 65535], "luc because their": [0, 65535], "because their businesse": [0, 65535], "their businesse still": [0, 65535], "businesse still lies": [0, 65535], "still lies out": [0, 65535], "lies out a": [0, 65535], "out a dore": [0, 65535], "a dore adr": [0, 65535], "dore adr looke": [0, 65535], "adr looke when": [0, 65535], "looke when i": [0, 65535], "when i serue": [0, 65535], "i serue him": [0, 65535], "serue him so": [0, 65535], "so he takes": [0, 65535], "takes it thus": [0, 65535], "it thus luc": [0, 65535], "thus luc oh": [0, 65535], "luc oh know": [0, 65535], "oh know he": [0, 65535], "know he is": [0, 65535], "he is the": [0, 65535], "is the bridle": [0, 65535], "the bridle of": [0, 65535], "bridle of your": [0, 65535], "of your will": [0, 65535], "your will adr": [0, 65535], "will adr there's": [0, 65535], "adr there's none": [0, 65535], "none but asses": [0, 65535], "but asses will": [0, 65535], "asses will be": [0, 65535], "will be bridled": [0, 65535], "be bridled so": [0, 65535], "bridled so luc": [0, 65535], "so luc why": [0, 65535], "luc why headstrong": [0, 65535], "why headstrong liberty": [0, 65535], "headstrong liberty is": [0, 65535], "liberty is lasht": [0, 65535], "is lasht with": [0, 65535], "lasht with woe": [0, 65535], "with woe there's": [0, 65535], "woe there's nothing": [0, 65535], "there's nothing situate": [0, 65535], "nothing situate vnder": [0, 65535], "situate vnder heauens": [0, 65535], "vnder heauens eye": [0, 65535], "heauens eye but": [0, 65535], "eye but hath": [0, 65535], "but hath his": [0, 65535], "hath his bound": [0, 65535], "his bound in": [0, 65535], "bound in earth": [0, 65535], "in earth in": [0, 65535], "earth in sea": [0, 65535], "in sea in": [0, 65535], "sea in skie": [0, 65535], "in skie the": [0, 65535], "skie the beasts": [0, 65535], "the beasts the": [0, 65535], "beasts the fishes": [0, 65535], "the fishes and": [0, 65535], "fishes and the": [0, 65535], "and the winged": [0, 65535], "the winged fowles": [0, 65535], "winged fowles are": [0, 65535], "fowles are their": [0, 65535], "are their males": [0, 65535], "their males subiects": [0, 65535], "males subiects and": [0, 65535], "subiects and at": [0, 65535], "and at their": [0, 65535], "at their controules": [0, 65535], "their controules man": [0, 65535], "controules man more": [0, 65535], "man more diuine": [0, 65535], "more diuine the": [0, 65535], "diuine the master": [0, 65535], "the master of": [0, 65535], "master of all": [0, 65535], "of all these": [0, 65535], "all these lord": [0, 65535], "these lord of": [0, 65535], "lord of the": [0, 65535], "of the wide": [0, 65535], "the wide world": [0, 65535], "wide world and": [0, 65535], "world and wilde": [0, 65535], "and wilde watry": [0, 65535], "wilde watry seas": [0, 65535], "watry seas indued": [0, 65535], "seas indued with": [0, 65535], "indued with intellectuall": [0, 65535], "with intellectuall sence": [0, 65535], "intellectuall sence and": [0, 65535], "sence and soules": [0, 65535], "and soules of": [0, 65535], "soules of more": [0, 65535], "of more preheminence": [0, 65535], "more preheminence then": [0, 65535], "preheminence then fish": [0, 65535], "then fish and": [0, 65535], "fish and fowles": [0, 65535], "and fowles are": [0, 65535], "fowles are masters": [0, 65535], "are masters to": [0, 65535], "masters to their": [0, 65535], "to their females": [0, 65535], "their females and": [0, 65535], "females and their": [0, 65535], "and their lords": [0, 65535], "their lords then": [0, 65535], "lords then let": [0, 65535], "then let your": [0, 65535], "let your will": [0, 65535], "your will attend": [0, 65535], "will attend on": [0, 65535], "attend on their": [0, 65535], "on their accords": [0, 65535], "their accords adri": [0, 65535], "accords adri this": [0, 65535], "adri this seruitude": [0, 65535], "this seruitude makes": [0, 65535], "seruitude makes you": [0, 65535], "makes you to": [0, 65535], "you to keepe": [0, 65535], "to keepe vnwed": [0, 65535], "keepe vnwed luci": [0, 65535], "vnwed luci not": [0, 65535], "luci not this": [0, 65535], "not this but": [0, 65535], "this but troubles": [0, 65535], "but troubles of": [0, 65535], "troubles of the": [0, 65535], "of the marriage": [0, 65535], "the marriage bed": [0, 65535], "marriage bed adr": [0, 65535], "bed adr but": [0, 65535], "adr but were": [0, 65535], "but were you": [0, 65535], "were you wedded": [0, 65535], "you wedded you": [0, 65535], "wedded you wold": [0, 65535], "you wold bear": [0, 65535], "wold bear some": [0, 65535], "bear some sway": [0, 65535], "some sway luc": [0, 65535], "sway luc ere": [0, 65535], "luc ere i": [0, 65535], "ere i learne": [0, 65535], "i learne loue": [0, 65535], "learne loue ile": [0, 65535], "loue ile practise": [0, 65535], "ile practise to": [0, 65535], "practise to obey": [0, 65535], "to obey adr": [0, 65535], "obey adr how": [0, 65535], "adr how if": [0, 65535], "how if your": [0, 65535], "if your husband": [0, 65535], "your husband start": [0, 65535], "husband start some": [0, 65535], "start some other": [0, 65535], "some other where": [0, 65535], "other where luc": [0, 65535], "where luc till": [0, 65535], "luc till he": [0, 65535], "till he come": [0, 65535], "he come home": [0, 65535], "come home againe": [0, 65535], "home againe i": [0, 65535], "againe i would": [0, 65535], "i would forbeare": [0, 65535], "would forbeare adr": [0, 65535], "forbeare adr patience": [0, 65535], "adr patience vnmou'd": [0, 65535], "patience vnmou'd no": [0, 65535], "vnmou'd no maruel": [0, 65535], "no maruel though": [0, 65535], "maruel though she": [0, 65535], "though she pause": [0, 65535], "she pause they": [0, 65535], "pause they can": [0, 65535], "they can be": [0, 65535], "can be meeke": [0, 65535], "be meeke that": [0, 65535], "meeke that haue": [0, 65535], "that haue no": [0, 65535], "haue no other": [0, 65535], "no other cause": [0, 65535], "other cause a": [0, 65535], "cause a wretched": [0, 65535], "a wretched soule": [0, 65535], "wretched soule bruis'd": [0, 65535], "soule bruis'd with": [0, 65535], "bruis'd with aduersitie": [0, 65535], "with aduersitie we": [0, 65535], "aduersitie we bid": [0, 65535], "we bid be": [0, 65535], "bid be quiet": [0, 65535], "be quiet when": [0, 65535], "quiet when we": [0, 65535], "when we heare": [0, 65535], "we heare it": [0, 65535], "heare it crie": [0, 65535], "it crie but": [0, 65535], "crie but were": [0, 65535], "but were we": [0, 65535], "were we burdned": [0, 65535], "we burdned with": [0, 65535], "burdned with like": [0, 65535], "with like waight": [0, 65535], "like waight of": [0, 65535], "waight of paine": [0, 65535], "of paine as": [0, 65535], "paine as much": [0, 65535], "as much or": [0, 65535], "much or more": [0, 65535], "or more we": [0, 65535], "more we should": [0, 65535], "we should our": [0, 65535], "should our selues": [0, 65535], "our selues complaine": [0, 65535], "selues complaine so": [0, 65535], "complaine so thou": [0, 65535], "so thou that": [0, 65535], "thou that hast": [0, 65535], "that hast no": [0, 65535], "hast no vnkinde": [0, 65535], "no vnkinde mate": [0, 65535], "vnkinde mate to": [0, 65535], "mate to greeue": [0, 65535], "to greeue thee": [0, 65535], "greeue thee with": [0, 65535], "thee with vrging": [0, 65535], "with vrging helpelesse": [0, 65535], "vrging helpelesse patience": [0, 65535], "helpelesse patience would": [0, 65535], "patience would releeue": [0, 65535], "would releeue me": [0, 65535], "releeue me but": [0, 65535], "me but if": [0, 65535], "but if thou": [0, 65535], "if thou liue": [0, 65535], "thou liue to": [0, 65535], "liue to see": [0, 65535], "to see like": [0, 65535], "see like right": [0, 65535], "like right bereft": [0, 65535], "right bereft this": [0, 65535], "bereft this foole": [0, 65535], "this foole beg'd": [0, 65535], "foole beg'd patience": [0, 65535], "beg'd patience in": [0, 65535], "patience in thee": [0, 65535], "in thee will": [0, 65535], "thee will be": [0, 65535], "will be left": [0, 65535], "be left luci": [0, 65535], "left luci well": [0, 65535], "luci well i": [0, 65535], "i will marry": [0, 65535], "will marry one": [0, 65535], "marry one day": [0, 65535], "one day but": [0, 65535], "day but to": [0, 65535], "but to trie": [0, 65535], "to trie heere": [0, 65535], "trie heere comes": [0, 65535], "heere comes your": [0, 65535], "comes your man": [0, 65535], "your man now": [0, 65535], "man now is": [0, 65535], "now is your": [0, 65535], "is your husband": [0, 65535], "your husband nie": [0, 65535], "husband nie enter": [0, 65535], "nie enter dromio": [0, 65535], "enter dromio eph": [0, 65535], "dromio eph adr": [0, 65535], "eph adr say": [0, 65535], "adr say is": [0, 65535], "say is your": [0, 65535], "is your tardie": [0, 65535], "your tardie master": [0, 65535], "tardie master now": [0, 65535], "master now at": [0, 65535], "now at hand": [0, 65535], "at hand e": [0, 65535], "hand e dro": [0, 65535], "e dro nay": [0, 65535], "dro nay hee's": [0, 65535], "nay hee's at": [0, 65535], "hee's at too": [0, 65535], "at too hands": [0, 65535], "too hands with": [0, 65535], "hands with mee": [0, 65535], "with mee and": [0, 65535], "mee and that": [0, 65535], "and that my": [0, 65535], "that my two": [0, 65535], "my two eares": [0, 65535], "two eares can": [0, 65535], "eares can witnesse": [0, 65535], "can witnesse adr": [0, 65535], "witnesse adr say": [0, 65535], "adr say didst": [0, 65535], "say didst thou": [0, 65535], "didst thou speake": [0, 65535], "thou speake with": [0, 65535], "speake with him": [0, 65535], "with him knowst": [0, 65535], "him knowst thou": [0, 65535], "knowst thou his": [0, 65535], "thou his minde": [0, 65535], "his minde e": [0, 65535], "minde e dro": [0, 65535], "e dro i": [0, 65535], "dro i i": [0, 65535], "i i he": [0, 65535], "i he told": [0, 65535], "he told his": [0, 65535], "told his minde": [0, 65535], "his minde vpon": [0, 65535], "minde vpon mine": [0, 65535], "vpon mine eare": [0, 65535], "mine eare beshrew": [0, 65535], "eare beshrew his": [0, 65535], "beshrew his hand": [0, 65535], "his hand i": [0, 65535], "hand i scarce": [0, 65535], "i scarce could": [0, 65535], "scarce could vnderstand": [0, 65535], "could vnderstand it": [0, 65535], "vnderstand it luc": [0, 65535], "it luc spake": [0, 65535], "luc spake hee": [0, 65535], "spake hee so": [0, 65535], "hee so doubtfully": [0, 65535], "so doubtfully thou": [0, 65535], "doubtfully thou couldst": [0, 65535], "thou couldst not": [0, 65535], "couldst not feele": [0, 65535], "not feele his": [0, 65535], "feele his meaning": [0, 65535], "his meaning e": [0, 65535], "meaning e dro": [0, 65535], "dro nay hee": [0, 65535], "nay hee strooke": [0, 65535], "hee strooke so": [0, 65535], "strooke so plainly": [0, 65535], "so plainly i": [0, 65535], "plainly i could": [0, 65535], "i could too": [0, 65535], "could too well": [0, 65535], "too well feele": [0, 65535], "well feele his": [0, 65535], "feele his blowes": [0, 65535], "his blowes and": [0, 65535], "blowes and withall": [0, 65535], "and withall so": [0, 65535], "withall so doubtfully": [0, 65535], "so doubtfully that": [0, 65535], "doubtfully that i": [0, 65535], "that i could": [0, 65535], "i could scarce": [0, 65535], "could scarce vnderstand": [0, 65535], "scarce vnderstand them": [0, 65535], "vnderstand them adri": [0, 65535], "them adri but": [0, 65535], "adri but say": [0, 65535], "but say i": [0, 65535], "say i prethee": [0, 65535], "i prethee is": [0, 65535], "prethee is he": [0, 65535], "is he comming": [0, 65535], "he comming home": [0, 65535], "comming home it": [0, 65535], "home it seemes": [0, 65535], "it seemes he": [0, 65535], "seemes he hath": [0, 65535], "he hath great": [0, 65535], "hath great care": [0, 65535], "great care to": [0, 65535], "care to please": [0, 65535], "to please his": [0, 65535], "please his wife": [0, 65535], "his wife e": [0, 65535], "wife e dro": [0, 65535], "e dro why": [0, 65535], "dro why mistresse": [0, 65535], "why mistresse sure": [0, 65535], "mistresse sure my": [0, 65535], "sure my master": [0, 65535], "my master is": [0, 65535], "master is horne": [0, 65535], "is horne mad": [0, 65535], "horne mad adri": [0, 65535], "mad adri horne": [0, 65535], "adri horne mad": [0, 65535], "horne mad thou": [0, 65535], "mad thou villaine": [0, 65535], "thou villaine e": [0, 65535], "villaine e dro": [0, 65535], "dro i meane": [0, 65535], "i meane not": [0, 65535], "meane not cuckold": [0, 65535], "not cuckold mad": [0, 65535], "cuckold mad but": [0, 65535], "mad but sure": [0, 65535], "but sure he": [0, 65535], "sure he is": [0, 65535], "he is starke": [0, 65535], "is starke mad": [0, 65535], "starke mad when": [0, 65535], "mad when i": [0, 65535], "when i desir'd": [0, 65535], "i desir'd him": [0, 65535], "desir'd him to": [0, 65535], "him to come": [0, 65535], "to come home": [0, 65535], "come home to": [0, 65535], "to dinner he": [0, 65535], "dinner he ask'd": [0, 65535], "he ask'd me": [0, 65535], "ask'd me for": [0, 65535], "me for a": [0, 65535], "for a hundred": [0, 65535], "a hundred markes": [0, 65535], "hundred markes in": [0, 65535], "in gold 'tis": [0, 65535], "gold 'tis dinner": [0, 65535], "'tis dinner time": [0, 65535], "dinner time quoth": [0, 65535], "time quoth i": [0, 65535], "quoth i my": [0, 65535], "i my gold": [0, 65535], "my gold quoth": [0, 65535], "gold quoth he": [0, 65535], "quoth he your": [0, 65535], "he your meat": [0, 65535], "your meat doth": [0, 65535], "meat doth burne": [0, 65535], "doth burne quoth": [0, 65535], "burne quoth i": [0, 65535], "quoth he will": [0, 65535], "he will you": [0, 65535], "will you come": [0, 65535], "you come quoth": [0, 65535], "come quoth i": [0, 65535], "quoth he where": [0, 65535], "he where is": [0, 65535], "where is the": [0, 65535], "is the thousand": [0, 65535], "the thousand markes": [0, 65535], "thousand markes i": [0, 65535], "markes i gaue": [0, 65535], "i gaue thee": [0, 65535], "gaue thee villaine": [0, 65535], "thee villaine the": [0, 65535], "villaine the pigge": [0, 65535], "the pigge quoth": [0, 65535], "pigge quoth i": [0, 65535], "quoth i is": [0, 65535], "i is burn'd": [0, 65535], "is burn'd my": [0, 65535], "burn'd my gold": [0, 65535], "quoth he my": [0, 65535], "he my mistresse": [0, 65535], "my mistresse sir": [0, 65535], "mistresse sir quoth": [0, 65535], "sir quoth i": [0, 65535], "quoth i hang": [0, 65535], "i hang vp": [0, 65535], "hang vp thy": [0, 65535], "vp thy mistresse": [0, 65535], "thy mistresse i": [0, 65535], "mistresse i know": [0, 65535], "know not thy": [0, 65535], "not thy mistresse": [0, 65535], "thy mistresse out": [0, 65535], "mistresse out on": [0, 65535], "out on thy": [0, 65535], "on thy mistresse": [0, 65535], "thy mistresse luci": [0, 65535], "mistresse luci quoth": [0, 65535], "luci quoth who": [0, 65535], "quoth who e": [0, 65535], "who e dr": [0, 65535], "e dr quoth": [0, 65535], "dr quoth my": [0, 65535], "quoth my master": [0, 65535], "my master i": [0, 65535], "master i know": [0, 65535], "i know quoth": [0, 65535], "know quoth he": [0, 65535], "quoth he no": [0, 65535], "he no house": [0, 65535], "no house no": [0, 65535], "house no wife": [0, 65535], "no wife no": [0, 65535], "wife no mistresse": [0, 65535], "no mistresse so": [0, 65535], "mistresse so that": [0, 65535], "so that my": [0, 65535], "that my arrant": [0, 65535], "my arrant due": [0, 65535], "arrant due vnto": [0, 65535], "due vnto my": [0, 65535], "vnto my tongue": [0, 65535], "my tongue i": [0, 65535], "tongue i thanke": [0, 65535], "i thanke him": [0, 65535], "thanke him i": [0, 65535], "him i bare": [0, 65535], "i bare home": [0, 65535], "bare home vpon": [0, 65535], "home vpon my": [0, 65535], "vpon my shoulders": [0, 65535], "my shoulders for": [0, 65535], "shoulders for in": [0, 65535], "for in conclusion": [0, 65535], "in conclusion he": [0, 65535], "conclusion he did": [0, 65535], "he did beat": [0, 65535], "did beat me": [0, 65535], "beat me there": [0, 65535], "me there adri": [0, 65535], "there adri go": [0, 65535], "adri go back": [0, 65535], "go back againe": [0, 65535], "back againe thou": [0, 65535], "againe thou slaue": [0, 65535], "thou slaue fetch": [0, 65535], "slaue fetch him": [0, 65535], "fetch him home": [0, 65535], "him home dro": [0, 65535], "home dro goe": [0, 65535], "dro goe backe": [0, 65535], "goe backe againe": [0, 65535], "backe againe and": [0, 65535], "againe and be": [0, 65535], "and be new": [0, 65535], "be new beaten": [0, 65535], "new beaten home": [0, 65535], "beaten home for": [0, 65535], "home for gods": [0, 65535], "for gods sake": [0, 65535], "gods sake send": [0, 65535], "sake send some": [0, 65535], "send some other": [0, 65535], "some other messenger": [0, 65535], "other messenger adri": [0, 65535], "messenger adri backe": [0, 65535], "adri backe slaue": [0, 65535], "backe slaue or": [0, 65535], "slaue or i": [0, 65535], "or i will": [0, 65535], "i will breake": [0, 65535], "will breake thy": [0, 65535], "breake thy pate": [0, 65535], "thy pate a": [0, 65535], "pate a crosse": [0, 65535], "a crosse dro": [0, 65535], "crosse dro and": [0, 65535], "dro and he": [0, 65535], "and he will": [0, 65535], "he will blesse": [0, 65535], "will blesse the": [0, 65535], "blesse the crosse": [0, 65535], "the crosse with": [0, 65535], "crosse with other": [0, 65535], "with other beating": [0, 65535], "other beating betweene": [0, 65535], "beating betweene you": [0, 65535], "betweene you i": [0, 65535], "you i shall": [0, 65535], "i shall haue": [0, 65535], "shall haue a": [0, 65535], "haue a holy": [0, 65535], "a holy head": [0, 65535], "holy head adri": [0, 65535], "head adri hence": [0, 65535], "adri hence prating": [0, 65535], "hence prating pesant": [0, 65535], "prating pesant fetch": [0, 65535], "pesant fetch thy": [0, 65535], "fetch thy master": [0, 65535], "thy master home": [0, 65535], "master home dro": [0, 65535], "home dro am": [0, 65535], "dro am i": [0, 65535], "am i so": [0, 65535], "i so round": [0, 65535], "so round with": [0, 65535], "round with you": [0, 65535], "with you as": [0, 65535], "you as you": [0, 65535], "as you with": [0, 65535], "you with me": [0, 65535], "with me that": [0, 65535], "me that like": [0, 65535], "that like a": [0, 65535], "like a foot": [0, 65535], "a foot ball": [0, 65535], "foot ball you": [0, 65535], "ball you doe": [0, 65535], "you doe spurne": [0, 65535], "doe spurne me": [0, 65535], "spurne me thus": [0, 65535], "me thus you": [0, 65535], "thus you spurne": [0, 65535], "you spurne me": [0, 65535], "spurne me hence": [0, 65535], "me hence and": [0, 65535], "hence and he": [0, 65535], "he will spurne": [0, 65535], "will spurne me": [0, 65535], "spurne me hither": [0, 65535], "me hither if": [0, 65535], "hither if i": [0, 65535], "if i last": [0, 65535], "i last in": [0, 65535], "last in this": [0, 65535], "in this seruice": [0, 65535], "this seruice you": [0, 65535], "seruice you must": [0, 65535], "you must case": [0, 65535], "must case me": [0, 65535], "case me in": [0, 65535], "me in leather": [0, 65535], "in leather luci": [0, 65535], "leather luci fie": [0, 65535], "luci fie how": [0, 65535], "fie how impatience": [0, 65535], "how impatience lowreth": [0, 65535], "impatience lowreth in": [0, 65535], "lowreth in your": [0, 65535], "your face adri": [0, 65535], "face adri his": [0, 65535], "adri his company": [0, 65535], "his company must": [0, 65535], "company must do": [0, 65535], "must do his": [0, 65535], "do his minions": [0, 65535], "his minions grace": [0, 65535], "minions grace whil'st": [0, 65535], "grace whil'st i": [0, 65535], "whil'st i at": [0, 65535], "i at home": [0, 65535], "at home starue": [0, 65535], "home starue for": [0, 65535], "starue for a": [0, 65535], "for a merrie": [0, 65535], "a merrie looke": [0, 65535], "merrie looke hath": [0, 65535], "looke hath homelie": [0, 65535], "hath homelie age": [0, 65535], "homelie age th'": [0, 65535], "age th' alluring": [0, 65535], "th' alluring beauty": [0, 65535], "alluring beauty tooke": [0, 65535], "beauty tooke from": [0, 65535], "tooke from my": [0, 65535], "from my poore": [0, 65535], "my poore cheeke": [0, 65535], "poore cheeke then": [0, 65535], "cheeke then he": [0, 65535], "then he hath": [0, 65535], "he hath wasted": [0, 65535], "hath wasted it": [0, 65535], "wasted it are": [0, 65535], "it are my": [0, 65535], "are my discourses": [0, 65535], "my discourses dull": [0, 65535], "discourses dull barren": [0, 65535], "dull barren my": [0, 65535], "barren my wit": [0, 65535], "my wit if": [0, 65535], "wit if voluble": [0, 65535], "if voluble and": [0, 65535], "voluble and sharpe": [0, 65535], "and sharpe discourse": [0, 65535], "sharpe discourse be": [0, 65535], "discourse be mar'd": [0, 65535], "be mar'd vnkindnesse": [0, 65535], "mar'd vnkindnesse blunts": [0, 65535], "vnkindnesse blunts it": [0, 65535], "blunts it more": [0, 65535], "it more then": [0, 65535], "more then marble": [0, 65535], "then marble hard": [0, 65535], "marble hard doe": [0, 65535], "hard doe their": [0, 65535], "doe their gay": [0, 65535], "their gay vestments": [0, 65535], "gay vestments his": [0, 65535], "vestments his affections": [0, 65535], "his affections baite": [0, 65535], "affections baite that's": [0, 65535], "baite that's not": [0, 65535], "that's not my": [0, 65535], "not my fault": [0, 65535], "my fault hee's": [0, 65535], "fault hee's master": [0, 65535], "hee's master of": [0, 65535], "master of my": [0, 65535], "of my state": [0, 65535], "my state what": [0, 65535], "state what ruines": [0, 65535], "what ruines are": [0, 65535], "ruines are in": [0, 65535], "are in me": [0, 65535], "in me that": [0, 65535], "me that can": [0, 65535], "that can be": [0, 65535], "can be found": [0, 65535], "be found by": [0, 65535], "found by him": [0, 65535], "by him not": [0, 65535], "him not ruin'd": [0, 65535], "not ruin'd then": [0, 65535], "ruin'd then is": [0, 65535], "then is he": [0, 65535], "is he the": [0, 65535], "he the ground": [0, 65535], "ground of my": [0, 65535], "of my defeatures": [0, 65535], "my defeatures my": [0, 65535], "defeatures my decayed": [0, 65535], "my decayed faire": [0, 65535], "decayed faire a": [0, 65535], "faire a sunnie": [0, 65535], "a sunnie looke": [0, 65535], "sunnie looke of": [0, 65535], "looke of his": [0, 65535], "of his would": [0, 65535], "his would soone": [0, 65535], "would soone repaire": [0, 65535], "soone repaire but": [0, 65535], "repaire but too": [0, 65535], "but too vnruly": [0, 65535], "too vnruly deere": [0, 65535], "vnruly deere he": [0, 65535], "deere he breakes": [0, 65535], "he breakes the": [0, 65535], "breakes the pale": [0, 65535], "the pale and": [0, 65535], "pale and feedes": [0, 65535], "and feedes from": [0, 65535], "feedes from home": [0, 65535], "from home poore": [0, 65535], "home poore i": [0, 65535], "poore i am": [0, 65535], "i am but": [0, 65535], "am but his": [0, 65535], "but his stale": [0, 65535], "his stale luci": [0, 65535], "stale luci selfe": [0, 65535], "luci selfe harming": [0, 65535], "selfe harming iealousie": [0, 65535], "harming iealousie fie": [0, 65535], "iealousie fie beat": [0, 65535], "fie beat it": [0, 65535], "beat it hence": [0, 65535], "it hence ad": [0, 65535], "hence ad vnfeeling": [0, 65535], "ad vnfeeling fools": [0, 65535], "vnfeeling fools can": [0, 65535], "fools can with": [0, 65535], "can with such": [0, 65535], "with such wrongs": [0, 65535], "such wrongs dispence": [0, 65535], "wrongs dispence i": [0, 65535], "dispence i know": [0, 65535], "i know his": [0, 65535], "know his eye": [0, 65535], "his eye doth": [0, 65535], "eye doth homage": [0, 65535], "doth homage other": [0, 65535], "homage other where": [0, 65535], "other where or": [0, 65535], "where or else": [0, 65535], "or else what": [0, 65535], "else what lets": [0, 65535], "what lets it": [0, 65535], "lets it but": [0, 65535], "it but he": [0, 65535], "he would be": [0, 65535], "would be here": [0, 65535], "be here sister": [0, 65535], "here sister you": [0, 65535], "sister you know": [0, 65535], "you know he": [0, 65535], "know he promis'd": [0, 65535], "he promis'd me": [0, 65535], "promis'd me a": [0, 65535], "me a chaine": [0, 65535], "a chaine would": [0, 65535], "chaine would that": [0, 65535], "would that alone": [0, 65535], "that alone a": [0, 65535], "alone a loue": [0, 65535], "a loue he": [0, 65535], "loue he would": [0, 65535], "he would detaine": [0, 65535], "would detaine so": [0, 65535], "detaine so he": [0, 65535], "so he would": [0, 65535], "he would keepe": [0, 65535], "would keepe faire": [0, 65535], "keepe faire quarter": [0, 65535], "faire quarter with": [0, 65535], "quarter with his": [0, 65535], "with his bed": [0, 65535], "his bed i": [0, 65535], "bed i see": [0, 65535], "i see the": [0, 65535], "see the iewell": [0, 65535], "the iewell best": [0, 65535], "iewell best enamaled": [0, 65535], "best enamaled will": [0, 65535], "enamaled will loose": [0, 65535], "will loose his": [0, 65535], "loose his beautie": [0, 65535], "his beautie yet": [0, 65535], "beautie yet the": [0, 65535], "yet the gold": [0, 65535], "the gold bides": [0, 65535], "gold bides still": [0, 65535], "bides still that": [0, 65535], "still that others": [0, 65535], "that others touch": [0, 65535], "others touch and": [0, 65535], "touch and often": [0, 65535], "and often touching": [0, 65535], "often touching will": [0, 65535], "touching will where": [0, 65535], "will where gold": [0, 65535], "where gold and": [0, 65535], "gold and no": [0, 65535], "and no man": [0, 65535], "no man that": [0, 65535], "man that hath": [0, 65535], "that hath a": [0, 65535], "hath a name": [0, 65535], "a name by": [0, 65535], "name by falshood": [0, 65535], "by falshood and": [0, 65535], "falshood and corruption": [0, 65535], "and corruption doth": [0, 65535], "corruption doth it": [0, 65535], "doth it shame": [0, 65535], "it shame since": [0, 65535], "shame since that": [0, 65535], "since that my": [0, 65535], "that my beautie": [0, 65535], "my beautie cannot": [0, 65535], "beautie cannot please": [0, 65535], "cannot please his": [0, 65535], "please his eie": [0, 65535], "his eie ile": [0, 65535], "eie ile weepe": [0, 65535], "ile weepe what's": [0, 65535], "weepe what's left": [0, 65535], "what's left away": [0, 65535], "left away and": [0, 65535], "away and weeping": [0, 65535], "and weeping die": [0, 65535], "weeping die luci": [0, 65535], "die luci how": [0, 65535], "luci how manie": [0, 65535], "how manie fond": [0, 65535], "manie fond fooles": [0, 65535], "fond fooles serue": [0, 65535], "fooles serue mad": [0, 65535], "serue mad ielousie": [0, 65535], "mad ielousie exit": [0, 65535], "ielousie exit enter": [0, 65535], "exit enter antipholis": [0, 65535], "enter antipholis errotis": [0, 65535], "antipholis errotis ant": [0, 65535], "errotis ant the": [0, 65535], "ant the gold": [0, 65535], "the gold i": [0, 65535], "gold i gaue": [0, 65535], "i gaue to": [0, 65535], "gaue to dromio": [0, 65535], "to dromio is": [0, 65535], "dromio is laid": [0, 65535], "is laid vp": [0, 65535], "laid vp safe": [0, 65535], "vp safe at": [0, 65535], "safe at the": [0, 65535], "at the centaur": [0, 65535], "the centaur and": [0, 65535], "centaur and the": [0, 65535], "and the heedfull": [0, 65535], "the heedfull slaue": [0, 65535], "heedfull slaue is": [0, 65535], "slaue is wandred": [0, 65535], "is wandred forth": [0, 65535], "wandred forth in": [0, 65535], "forth in care": [0, 65535], "in care to": [0, 65535], "care to seeke": [0, 65535], "to seeke me": [0, 65535], "seeke me out": [0, 65535], "me out by": [0, 65535], "out by computation": [0, 65535], "by computation and": [0, 65535], "computation and mine": [0, 65535], "and mine hosts": [0, 65535], "mine hosts report": [0, 65535], "hosts report i": [0, 65535], "report i could": [0, 65535], "i could not": [0, 65535], "could not speake": [0, 65535], "not speake with": [0, 65535], "speake with dromio": [0, 65535], "with dromio since": [0, 65535], "dromio since at": [0, 65535], "since at first": [0, 65535], "at first i": [0, 65535], "first i sent": [0, 65535], "i sent him": [0, 65535], "sent him from": [0, 65535], "him from the": [0, 65535], "the mart see": [0, 65535], "mart see here": [0, 65535], "see here he": [0, 65535], "here he comes": [0, 65535], "he comes enter": [0, 65535], "comes enter dromio": [0, 65535], "dromio siracusia how": [0, 65535], "siracusia how now": [0, 65535], "how now sir": [0, 65535], "now sir is": [0, 65535], "sir is your": [0, 65535], "is your merrie": [0, 65535], "your merrie humor": [0, 65535], "merrie humor alter'd": [0, 65535], "humor alter'd as": [0, 65535], "alter'd as you": [0, 65535], "as you loue": [0, 65535], "you loue stroakes": [0, 65535], "loue stroakes so": [0, 65535], "stroakes so iest": [0, 65535], "so iest with": [0, 65535], "iest with me": [0, 65535], "with me againe": [0, 65535], "me againe you": [0, 65535], "againe you know": [0, 65535], "you know no": [0, 65535], "know no centaur": [0, 65535], "no centaur you": [0, 65535], "centaur you receiu'd": [0, 65535], "you receiu'd no": [0, 65535], "receiu'd no gold": [0, 65535], "no gold your": [0, 65535], "gold your mistresse": [0, 65535], "your mistresse sent": [0, 65535], "mistresse sent to": [0, 65535], "sent to haue": [0, 65535], "to haue me": [0, 65535], "haue me home": [0, 65535], "me home to": [0, 65535], "to dinner my": [0, 65535], "dinner my house": [0, 65535], "my house was": [0, 65535], "house was at": [0, 65535], "was at the": [0, 65535], "at the ph\u0153nix": [0, 65535], "the ph\u0153nix wast": [0, 65535], "ph\u0153nix wast thou": [0, 65535], "wast thou mad": [0, 65535], "thou mad that": [0, 65535], "mad that thus": [0, 65535], "that thus so": [0, 65535], "thus so madlie": [0, 65535], "so madlie thou": [0, 65535], "madlie thou did": [0, 65535], "thou did didst": [0, 65535], "did didst answere": [0, 65535], "didst answere me": [0, 65535], "answere me s": [0, 65535], "me s dro": [0, 65535], "s dro what": [0, 65535], "dro what answer": [0, 65535], "what answer sir": [0, 65535], "answer sir when": [0, 65535], "sir when spake": [0, 65535], "when spake i": [0, 65535], "spake i such": [0, 65535], "such a word": [0, 65535], "a word e": [0, 65535], "word e ant": [0, 65535], "e ant euen": [0, 65535], "ant euen now": [0, 65535], "euen now euen": [0, 65535], "now euen here": [0, 65535], "euen here not": [0, 65535], "here not halfe": [0, 65535], "not halfe an": [0, 65535], "halfe an howre": [0, 65535], "an howre since": [0, 65535], "howre since s": [0, 65535], "since s dro": [0, 65535], "dro i did": [0, 65535], "did not see": [0, 65535], "not see you": [0, 65535], "see you since": [0, 65535], "you since you": [0, 65535], "since you sent": [0, 65535], "you sent me": [0, 65535], "sent me hence": [0, 65535], "me hence home": [0, 65535], "hence home to": [0, 65535], "home to the": [0, 65535], "to the centaur": [0, 65535], "the centaur with": [0, 65535], "centaur with the": [0, 65535], "with the gold": [0, 65535], "the gold you": [0, 65535], "gold you gaue": [0, 65535], "you gaue me": [0, 65535], "gaue me ant": [0, 65535], "me ant villaine": [0, 65535], "ant villaine thou": [0, 65535], "villaine thou didst": [0, 65535], "thou didst denie": [0, 65535], "didst denie the": [0, 65535], "denie the golds": [0, 65535], "the golds receit": [0, 65535], "golds receit and": [0, 65535], "receit and toldst": [0, 65535], "and toldst me": [0, 65535], "toldst me of": [0, 65535], "me of a": [0, 65535], "of a mistresse": [0, 65535], "a mistresse and": [0, 65535], "mistresse and a": [0, 65535], "and a dinner": [0, 65535], "a dinner for": [0, 65535], "dinner for which": [0, 65535], "for which i": [0, 65535], "which i hope": [0, 65535], "i hope thou": [0, 65535], "hope thou feltst": [0, 65535], "thou feltst i": [0, 65535], "feltst i was": [0, 65535], "i was displeas'd": [0, 65535], "was displeas'd s": [0, 65535], "displeas'd s dro": [0, 65535], "i am glad": [0, 65535], "am glad to": [0, 65535], "glad to see": [0, 65535], "see you in": [0, 65535], "you in this": [0, 65535], "in this merrie": [0, 65535], "this merrie vaine": [0, 65535], "merrie vaine what": [0, 65535], "vaine what meanes": [0, 65535], "what meanes this": [0, 65535], "meanes this iest": [0, 65535], "this iest i": [0, 65535], "iest i pray": [0, 65535], "pray you master": [0, 65535], "you master tell": [0, 65535], "master tell me": [0, 65535], "tell me ant": [0, 65535], "me ant yea": [0, 65535], "ant yea dost": [0, 65535], "yea dost thou": [0, 65535], "dost thou ieere": [0, 65535], "thou ieere flowt": [0, 65535], "ieere flowt me": [0, 65535], "flowt me in": [0, 65535], "me in the": [0, 65535], "in the teeth": [0, 65535], "the teeth thinkst": [0, 65535], "teeth thinkst thou": [0, 65535], "thinkst thou i": [0, 65535], "thou i iest": [0, 65535], "i iest hold": [0, 65535], "iest hold take": [0, 65535], "hold take thou": [0, 65535], "take thou that": [0, 65535], "thou that that": [0, 65535], "that that beats": [0, 65535], "that beats dro": [0, 65535], "beats dro s": [0, 65535], "dro s dr": [0, 65535], "s dr hold": [0, 65535], "dr hold sir": [0, 65535], "hold sir for": [0, 65535], "sir for gods": [0, 65535], "gods sake now": [0, 65535], "sake now your": [0, 65535], "now your iest": [0, 65535], "your iest is": [0, 65535], "iest is earnest": [0, 65535], "is earnest vpon": [0, 65535], "earnest vpon what": [0, 65535], "vpon what bargaine": [0, 65535], "what bargaine do": [0, 65535], "bargaine do you": [0, 65535], "do you giue": [0, 65535], "you giue it": [0, 65535], "giue it me": [0, 65535], "it me antiph": [0, 65535], "me antiph because": [0, 65535], "antiph because that": [0, 65535], "because that i": [0, 65535], "that i familiarlie": [0, 65535], "i familiarlie sometimes": [0, 65535], "familiarlie sometimes doe": [0, 65535], "sometimes doe vse": [0, 65535], "doe vse you": [0, 65535], "vse you for": [0, 65535], "you for my": [0, 65535], "for my foole": [0, 65535], "my foole and": [0, 65535], "foole and chat": [0, 65535], "and chat with": [0, 65535], "chat with you": [0, 65535], "with you your": [0, 65535], "you your sawcinesse": [0, 65535], "your sawcinesse will": [0, 65535], "sawcinesse will iest": [0, 65535], "will iest vpon": [0, 65535], "iest vpon my": [0, 65535], "vpon my loue": [0, 65535], "my loue and": [0, 65535], "loue and make": [0, 65535], "and make a": [0, 65535], "make a common": [0, 65535], "a common of": [0, 65535], "common of my": [0, 65535], "of my serious": [0, 65535], "my serious howres": [0, 65535], "serious howres when": [0, 65535], "howres when the": [0, 65535], "when the sunne": [0, 65535], "the sunne shines": [0, 65535], "sunne shines let": [0, 65535], "shines let foolish": [0, 65535], "let foolish gnats": [0, 65535], "foolish gnats make": [0, 65535], "gnats make sport": [0, 65535], "make sport but": [0, 65535], "sport but creepe": [0, 65535], "but creepe in": [0, 65535], "creepe in crannies": [0, 65535], "in crannies when": [0, 65535], "crannies when he": [0, 65535], "when he hides": [0, 65535], "he hides his": [0, 65535], "hides his beames": [0, 65535], "his beames if": [0, 65535], "beames if you": [0, 65535], "you will iest": [0, 65535], "will iest with": [0, 65535], "with me know": [0, 65535], "me know my": [0, 65535], "know my aspect": [0, 65535], "my aspect and": [0, 65535], "aspect and fashion": [0, 65535], "and fashion your": [0, 65535], "fashion your demeanor": [0, 65535], "your demeanor to": [0, 65535], "demeanor to my": [0, 65535], "to my lookes": [0, 65535], "my lookes or": [0, 65535], "lookes or i": [0, 65535], "i will beat": [0, 65535], "will beat this": [0, 65535], "beat this method": [0, 65535], "this method in": [0, 65535], "method in your": [0, 65535], "in your sconce": [0, 65535], "your sconce s": [0, 65535], "sconce s dro": [0, 65535], "s dro sconce": [0, 65535], "dro sconce call": [0, 65535], "sconce call you": [0, 65535], "call you it": [0, 65535], "you it so": [0, 65535], "it so you": [0, 65535], "so you would": [0, 65535], "you would leaue": [0, 65535], "would leaue battering": [0, 65535], "leaue battering i": [0, 65535], "battering i had": [0, 65535], "i had rather": [0, 65535], "had rather haue": [0, 65535], "rather haue it": [0, 65535], "haue it a": [0, 65535], "it a head": [0, 65535], "a head and": [0, 65535], "head and you": [0, 65535], "and you vse": [0, 65535], "you vse these": [0, 65535], "vse these blows": [0, 65535], "these blows long": [0, 65535], "blows long i": [0, 65535], "long i must": [0, 65535], "i must get": [0, 65535], "must get a": [0, 65535], "get a sconce": [0, 65535], "a sconce for": [0, 65535], "sconce for my": [0, 65535], "for my head": [0, 65535], "my head and": [0, 65535], "head and insconce": [0, 65535], "and insconce it": [0, 65535], "insconce it to": [0, 65535], "it to or": [0, 65535], "to or else": [0, 65535], "or else i": [0, 65535], "else i shall": [0, 65535], "i shall seek": [0, 65535], "shall seek my": [0, 65535], "seek my wit": [0, 65535], "my wit in": [0, 65535], "wit in my": [0, 65535], "in my shoulders": [0, 65535], "my shoulders but": [0, 65535], "shoulders but i": [0, 65535], "but i pray": [0, 65535], "i pray sir": [0, 65535], "pray sir why": [0, 65535], "sir why am": [0, 65535], "why am i": [0, 65535], "am i beaten": [0, 65535], "i beaten ant": [0, 65535], "beaten ant dost": [0, 65535], "ant dost thou": [0, 65535], "dost thou not": [0, 65535], "thou not know": [0, 65535], "not know s": [0, 65535], "know s dro": [0, 65535], "s dro nothing": [0, 65535], "dro nothing sir": [0, 65535], "nothing sir but": [0, 65535], "sir but that": [0, 65535], "but that i": [0, 65535], "i am beaten": [0, 65535], "am beaten ant": [0, 65535], "beaten ant shall": [0, 65535], "ant shall i": [0, 65535], "shall i tell": [0, 65535], "tell you why": [0, 65535], "you why s": [0, 65535], "why s dro": [0, 65535], "dro i sir": [0, 65535], "i sir and": [0, 65535], "sir and wherefore": [0, 65535], "and wherefore for": [0, 65535], "wherefore for they": [0, 65535], "for they say": [0, 65535], "they say euery": [0, 65535], "say euery why": [0, 65535], "euery why hath": [0, 65535], "why hath a": [0, 65535], "hath a wherefore": [0, 65535], "a wherefore ant": [0, 65535], "wherefore ant why": [0, 65535], "ant why first": [0, 65535], "why first for": [0, 65535], "first for flowting": [0, 65535], "for flowting me": [0, 65535], "flowting me and": [0, 65535], "me and then": [0, 65535], "and then wherefore": [0, 65535], "then wherefore for": [0, 65535], "wherefore for vrging": [0, 65535], "for vrging it": [0, 65535], "vrging it the": [0, 65535], "it the second": [0, 65535], "the second time": [0, 65535], "second time to": [0, 65535], "time to me": [0, 65535], "to me s": [0, 65535], "s dro was": [0, 65535], "dro was there": [0, 65535], "was there euer": [0, 65535], "there euer anie": [0, 65535], "euer anie man": [0, 65535], "anie man thus": [0, 65535], "man thus beaten": [0, 65535], "thus beaten out": [0, 65535], "beaten out of": [0, 65535], "out of season": [0, 65535], "of season when": [0, 65535], "season when in": [0, 65535], "in the why": [0, 65535], "the why and": [0, 65535], "why and the": [0, 65535], "and the wherefore": [0, 65535], "the wherefore is": [0, 65535], "wherefore is neither": [0, 65535], "is neither rime": [0, 65535], "neither rime nor": [0, 65535], "rime nor reason": [0, 65535], "nor reason well": [0, 65535], "reason well sir": [0, 65535], "well sir i": [0, 65535], "sir i thanke": [0, 65535], "i thanke you": [0, 65535], "thanke you ant": [0, 65535], "you ant thanke": [0, 65535], "ant thanke me": [0, 65535], "thanke me sir": [0, 65535], "me sir for": [0, 65535], "sir for what": [0, 65535], "for what s": [0, 65535], "what s dro": [0, 65535], "s dro marry": [0, 65535], "marry sir for": [0, 65535], "sir for this": [0, 65535], "for this something": [0, 65535], "this something that": [0, 65535], "something that you": [0, 65535], "that you gaue": [0, 65535], "gaue me for": [0, 65535], "me for nothing": [0, 65535], "for nothing ant": [0, 65535], "nothing ant ile": [0, 65535], "ant ile make": [0, 65535], "ile make you": [0, 65535], "make you amends": [0, 65535], "you amends next": [0, 65535], "amends next to": [0, 65535], "next to giue": [0, 65535], "to giue you": [0, 65535], "giue you nothing": [0, 65535], "you nothing for": [0, 65535], "nothing for something": [0, 65535], "for something but": [0, 65535], "something but say": [0, 65535], "but say sir": [0, 65535], "say sir is": [0, 65535], "sir is it": [0, 65535], "is it dinner": [0, 65535], "it dinner time": [0, 65535], "dinner time s": [0, 65535], "time s dro": [0, 65535], "s dro no": [0, 65535], "no sir i": [0, 65535], "sir i thinke": [0, 65535], "i thinke the": [0, 65535], "thinke the meat": [0, 65535], "the meat wants": [0, 65535], "meat wants that": [0, 65535], "wants that i": [0, 65535], "that i haue": [0, 65535], "i haue ant": [0, 65535], "haue ant in": [0, 65535], "ant in good": [0, 65535], "in good time": [0, 65535], "good time sir": [0, 65535], "time sir what's": [0, 65535], "sir what's that": [0, 65535], "what's that s": [0, 65535], "that s dro": [0, 65535], "s dro basting": [0, 65535], "dro basting ant": [0, 65535], "basting ant well": [0, 65535], "ant well sir": [0, 65535], "well sir then": [0, 65535], "sir then 'twill": [0, 65535], "then 'twill be": [0, 65535], "'twill be drie": [0, 65535], "be drie s": [0, 65535], "drie s dro": [0, 65535], "dro if it": [0, 65535], "if it be": [0, 65535], "it be sir": [0, 65535], "be sir i": [0, 65535], "sir i pray": [0, 65535], "pray you eat": [0, 65535], "you eat none": [0, 65535], "eat none of": [0, 65535], "none of it": [0, 65535], "of it ant": [0, 65535], "it ant your": [0, 65535], "ant your reason": [0, 65535], "your reason s": [0, 65535], "reason s dro": [0, 65535], "s dro lest": [0, 65535], "dro lest it": [0, 65535], "lest it make": [0, 65535], "it make you": [0, 65535], "make you chollericke": [0, 65535], "you chollericke and": [0, 65535], "chollericke and purchase": [0, 65535], "and purchase me": [0, 65535], "purchase me another": [0, 65535], "me another drie": [0, 65535], "another drie basting": [0, 65535], "drie basting ant": [0, 65535], "well sir learne": [0, 65535], "sir learne to": [0, 65535], "learne to iest": [0, 65535], "to iest in": [0, 65535], "iest in good": [0, 65535], "good time there's": [0, 65535], "time there's a": [0, 65535], "there's a time": [0, 65535], "a time for": [0, 65535], "time for all": [0, 65535], "for all things": [0, 65535], "all things s": [0, 65535], "things s dro": [0, 65535], "dro i durst": [0, 65535], "i durst haue": [0, 65535], "durst haue denied": [0, 65535], "haue denied that": [0, 65535], "denied that before": [0, 65535], "that before you": [0, 65535], "before you were": [0, 65535], "you were so": [0, 65535], "were so chollericke": [0, 65535], "so chollericke anti": [0, 65535], "chollericke anti by": [0, 65535], "anti by what": [0, 65535], "by what rule": [0, 65535], "what rule sir": [0, 65535], "rule sir s": [0, 65535], "sir s dro": [0, 65535], "marry sir by": [0, 65535], "sir by a": [0, 65535], "by a rule": [0, 65535], "a rule as": [0, 65535], "rule as plaine": [0, 65535], "as plaine as": [0, 65535], "plaine as the": [0, 65535], "as the plaine": [0, 65535], "the plaine bald": [0, 65535], "plaine bald pate": [0, 65535], "bald pate of": [0, 65535], "pate of father": [0, 65535], "of father time": [0, 65535], "father time himselfe": [0, 65535], "time himselfe ant": [0, 65535], "himselfe ant let's": [0, 65535], "ant let's heare": [0, 65535], "let's heare it": [0, 65535], "heare it s": [0, 65535], "it s dro": [0, 65535], "s dro there's": [0, 65535], "dro there's no": [0, 65535], "there's no time": [0, 65535], "no time for": [0, 65535], "time for a": [0, 65535], "for a man": [0, 65535], "a man to": [0, 65535], "man to recouer": [0, 65535], "to recouer his": [0, 65535], "recouer his haire": [0, 65535], "his haire that": [0, 65535], "haire that growes": [0, 65535], "that growes bald": [0, 65535], "growes bald by": [0, 65535], "bald by nature": [0, 65535], "by nature ant": [0, 65535], "nature ant may": [0, 65535], "ant may he": [0, 65535], "may he not": [0, 65535], "he not doe": [0, 65535], "not doe it": [0, 65535], "it by fine": [0, 65535], "by fine and": [0, 65535], "fine and recouerie": [0, 65535], "and recouerie s": [0, 65535], "recouerie s dro": [0, 65535], "s dro yes": [0, 65535], "dro yes to": [0, 65535], "yes to pay": [0, 65535], "to pay a": [0, 65535], "pay a fine": [0, 65535], "a fine for": [0, 65535], "fine for a": [0, 65535], "for a perewig": [0, 65535], "a perewig and": [0, 65535], "perewig and recouer": [0, 65535], "and recouer the": [0, 65535], "recouer the lost": [0, 65535], "the lost haire": [0, 65535], "lost haire of": [0, 65535], "haire of another": [0, 65535], "of another man": [0, 65535], "another man ant": [0, 65535], "man ant why": [0, 65535], "ant why is": [0, 65535], "why is time": [0, 65535], "is time such": [0, 65535], "time such a": [0, 65535], "such a niggard": [0, 65535], "a niggard of": [0, 65535], "niggard of haire": [0, 65535], "of haire being": [0, 65535], "haire being as": [0, 65535], "being as it": [0, 65535], "as it is": [0, 65535], "it is so": [0, 65535], "is so plentifull": [0, 65535], "so plentifull an": [0, 65535], "plentifull an excrement": [0, 65535], "an excrement s": [0, 65535], "excrement s dro": [0, 65535], "s dro because": [0, 65535], "dro because it": [0, 65535], "because it is": [0, 65535], "is a blessing": [0, 65535], "a blessing that": [0, 65535], "blessing that hee": [0, 65535], "that hee bestowes": [0, 65535], "hee bestowes on": [0, 65535], "bestowes on beasts": [0, 65535], "on beasts and": [0, 65535], "beasts and what": [0, 65535], "and what he": [0, 65535], "what he hath": [0, 65535], "he hath scanted": [0, 65535], "hath scanted them": [0, 65535], "scanted them in": [0, 65535], "them in haire": [0, 65535], "in haire hee": [0, 65535], "haire hee hath": [0, 65535], "hee hath giuen": [0, 65535], "hath giuen them": [0, 65535], "giuen them in": [0, 65535], "them in wit": [0, 65535], "in wit ant": [0, 65535], "wit ant why": [0, 65535], "ant why but": [0, 65535], "why but theres": [0, 65535], "but theres manie": [0, 65535], "theres manie a": [0, 65535], "manie a man": [0, 65535], "a man hath": [0, 65535], "man hath more": [0, 65535], "hath more haire": [0, 65535], "more haire then": [0, 65535], "haire then wit": [0, 65535], "then wit s": [0, 65535], "wit s dro": [0, 65535], "s dro not": [0, 65535], "dro not a": [0, 65535], "not a man": [0, 65535], "a man of": [0, 65535], "man of those": [0, 65535], "of those but": [0, 65535], "those but he": [0, 65535], "but he hath": [0, 65535], "he hath the": [0, 65535], "hath the wit": [0, 65535], "the wit to": [0, 65535], "wit to lose": [0, 65535], "to lose his": [0, 65535], "lose his haire": [0, 65535], "his haire ant": [0, 65535], "haire ant why": [0, 65535], "ant why thou": [0, 65535], "why thou didst": [0, 65535], "thou didst conclude": [0, 65535], "didst conclude hairy": [0, 65535], "conclude hairy men": [0, 65535], "hairy men plain": [0, 65535], "men plain dealers": [0, 65535], "plain dealers without": [0, 65535], "dealers without wit": [0, 65535], "without wit s": [0, 65535], "dro the plainer": [0, 65535], "the plainer dealer": [0, 65535], "plainer dealer the": [0, 65535], "dealer the sooner": [0, 65535], "the sooner lost": [0, 65535], "sooner lost yet": [0, 65535], "lost yet he": [0, 65535], "yet he looseth": [0, 65535], "he looseth it": [0, 65535], "looseth it in": [0, 65535], "it in a": [0, 65535], "in a kinde": [0, 65535], "a kinde of": [0, 65535], "kinde of iollitie": [0, 65535], "of iollitie an": [0, 65535], "iollitie an for": [0, 65535], "an for what": [0, 65535], "for what reason": [0, 65535], "what reason s": [0, 65535], "s dro for": [0, 65535], "dro for two": [0, 65535], "for two and": [0, 65535], "two and sound": [0, 65535], "and sound ones": [0, 65535], "sound ones to": [0, 65535], "ones to an": [0, 65535], "to an nay": [0, 65535], "an nay not": [0, 65535], "nay not sound": [0, 65535], "not sound i": [0, 65535], "sound i pray": [0, 65535], "pray you s": [0, 65535], "s dro sure": [0, 65535], "dro sure ones": [0, 65535], "sure ones then": [0, 65535], "ones then an": [0, 65535], "then an nay": [0, 65535], "nay not sure": [0, 65535], "not sure in": [0, 65535], "sure in a": [0, 65535], "in a thing": [0, 65535], "a thing falsing": [0, 65535], "thing falsing s": [0, 65535], "falsing s dro": [0, 65535], "s dro certaine": [0, 65535], "dro certaine ones": [0, 65535], "certaine ones then": [0, 65535], "then an name": [0, 65535], "an name them": [0, 65535], "name them s": [0, 65535], "them s dro": [0, 65535], "dro the one": [0, 65535], "the one to": [0, 65535], "one to saue": [0, 65535], "to saue the": [0, 65535], "saue the money": [0, 65535], "the money that": [0, 65535], "money that he": [0, 65535], "that he spends": [0, 65535], "he spends in": [0, 65535], "spends in trying": [0, 65535], "in trying the": [0, 65535], "trying the other": [0, 65535], "the other that": [0, 65535], "other that at": [0, 65535], "that at dinner": [0, 65535], "at dinner they": [0, 65535], "dinner they should": [0, 65535], "they should not": [0, 65535], "should not drop": [0, 65535], "not drop in": [0, 65535], "drop in his": [0, 65535], "in his porrage": [0, 65535], "his porrage an": [0, 65535], "porrage an you": [0, 65535], "an you would": [0, 65535], "you would all": [0, 65535], "would all this": [0, 65535], "all this time": [0, 65535], "this time haue": [0, 65535], "time haue prou'd": [0, 65535], "haue prou'd there": [0, 65535], "prou'd there is": [0, 65535], "there is no": [0, 65535], "is no time": [0, 65535], "dro marry and": [0, 65535], "marry and did": [0, 65535], "and did sir": [0, 65535], "did sir namely": [0, 65535], "sir namely in": [0, 65535], "namely in no": [0, 65535], "in no time": [0, 65535], "no time to": [0, 65535], "time to recouer": [0, 65535], "to recouer haire": [0, 65535], "recouer haire lost": [0, 65535], "haire lost by": [0, 65535], "lost by nature": [0, 65535], "by nature an": [0, 65535], "nature an but": [0, 65535], "an but your": [0, 65535], "but your reason": [0, 65535], "your reason was": [0, 65535], "reason was not": [0, 65535], "was not substantiall": [0, 65535], "not substantiall why": [0, 65535], "substantiall why there": [0, 65535], "why there is": [0, 65535], "to recouer s": [0, 65535], "recouer s dro": [0, 65535], "s dro thus": [0, 65535], "dro thus i": [0, 65535], "thus i mend": [0, 65535], "i mend it": [0, 65535], "mend it time": [0, 65535], "it time himselfe": [0, 65535], "time himselfe is": [0, 65535], "himselfe is bald": [0, 65535], "is bald and": [0, 65535], "bald and therefore": [0, 65535], "and therefore to": [0, 65535], "therefore to the": [0, 65535], "to the worlds": [0, 65535], "the worlds end": [0, 65535], "worlds end will": [0, 65535], "end will haue": [0, 65535], "will haue bald": [0, 65535], "haue bald followers": [0, 65535], "bald followers an": [0, 65535], "followers an i": [0, 65535], "an i knew": [0, 65535], "i knew 'twould": [0, 65535], "knew 'twould be": [0, 65535], "'twould be a": [0, 65535], "be a bald": [0, 65535], "a bald conclusion": [0, 65535], "bald conclusion but": [0, 65535], "conclusion but soft": [0, 65535], "but soft who": [0, 65535], "soft who wafts": [0, 65535], "who wafts vs": [0, 65535], "wafts vs yonder": [0, 65535], "vs yonder enter": [0, 65535], "yonder enter adriana": [0, 65535], "enter adriana and": [0, 65535], "adriana and luciana": [0, 65535], "and luciana adri": [0, 65535], "luciana adri i": [0, 65535], "adri i i": [0, 65535], "i i antipholus": [0, 65535], "i antipholus looke": [0, 65535], "antipholus looke strange": [0, 65535], "looke strange and": [0, 65535], "strange and frowne": [0, 65535], "and frowne some": [0, 65535], "frowne some other": [0, 65535], "some other mistresse": [0, 65535], "other mistresse hath": [0, 65535], "mistresse hath thy": [0, 65535], "hath thy sweet": [0, 65535], "thy sweet aspects": [0, 65535], "sweet aspects i": [0, 65535], "aspects i am": [0, 65535], "i am not": [0, 65535], "am not adriana": [0, 65535], "not adriana nor": [0, 65535], "adriana nor thy": [0, 65535], "nor thy wife": [0, 65535], "thy wife the": [0, 65535], "wife the time": [0, 65535], "the time was": [0, 65535], "time was once": [0, 65535], "was once when": [0, 65535], "once when thou": [0, 65535], "when thou vn": [0, 65535], "thou vn vrg'd": [0, 65535], "vn vrg'd wouldst": [0, 65535], "vrg'd wouldst vow": [0, 65535], "wouldst vow that": [0, 65535], "vow that neuer": [0, 65535], "that neuer words": [0, 65535], "neuer words were": [0, 65535], "words were musicke": [0, 65535], "were musicke to": [0, 65535], "musicke to thine": [0, 65535], "to thine eare": [0, 65535], "thine eare that": [0, 65535], "eare that neuer": [0, 65535], "that neuer obiect": [0, 65535], "neuer obiect pleasing": [0, 65535], "obiect pleasing in": [0, 65535], "pleasing in thine": [0, 65535], "in thine eye": [0, 65535], "thine eye that": [0, 65535], "eye that neuer": [0, 65535], "that neuer touch": [0, 65535], "neuer touch well": [0, 65535], "touch well welcome": [0, 65535], "well welcome to": [0, 65535], "welcome to thy": [0, 65535], "to thy hand": [0, 65535], "thy hand that": [0, 65535], "hand that neuer": [0, 65535], "that neuer meat": [0, 65535], "neuer meat sweet": [0, 65535], "meat sweet sauour'd": [0, 65535], "sweet sauour'd in": [0, 65535], "sauour'd in thy": [0, 65535], "in thy taste": [0, 65535], "thy taste vnlesse": [0, 65535], "taste vnlesse i": [0, 65535], "vnlesse i spake": [0, 65535], "i spake or": [0, 65535], "spake or look'd": [0, 65535], "or look'd or": [0, 65535], "look'd or touch'd": [0, 65535], "or touch'd or": [0, 65535], "touch'd or caru'd": [0, 65535], "or caru'd to": [0, 65535], "caru'd to thee": [0, 65535], "to thee how": [0, 65535], "thee how comes": [0, 65535], "how comes it": [0, 65535], "comes it now": [0, 65535], "it now my": [0, 65535], "now my husband": [0, 65535], "my husband oh": [0, 65535], "husband oh how": [0, 65535], "oh how comes": [0, 65535], "comes it that": [0, 65535], "it that thou": [0, 65535], "that thou art": [0, 65535], "thou art then": [0, 65535], "art then estranged": [0, 65535], "then estranged from": [0, 65535], "estranged from thy": [0, 65535], "from thy selfe": [0, 65535], "thy selfe thy": [0, 65535], "selfe thy selfe": [0, 65535], "thy selfe i": [0, 65535], "selfe i call": [0, 65535], "i call it": [0, 65535], "call it being": [0, 65535], "it being strange": [0, 65535], "being strange to": [0, 65535], "strange to me": [0, 65535], "to me that": [0, 65535], "me that vndiuidable": [0, 65535], "that vndiuidable incorporate": [0, 65535], "vndiuidable incorporate am": [0, 65535], "incorporate am better": [0, 65535], "am better then": [0, 65535], "better then thy": [0, 65535], "then thy deere": [0, 65535], "thy deere selfes": [0, 65535], "deere selfes better": [0, 65535], "better part ah": [0, 65535], "part ah doe": [0, 65535], "ah doe not": [0, 65535], "doe not teare": [0, 65535], "not teare away": [0, 65535], "teare away thy": [0, 65535], "away thy selfe": [0, 65535], "thy selfe from": [0, 65535], "selfe from me": [0, 65535], "from me for": [0, 65535], "me for know": [0, 65535], "for know my": [0, 65535], "know my loue": [0, 65535], "my loue as": [0, 65535], "loue as easie": [0, 65535], "as easie maist": [0, 65535], "easie maist thou": [0, 65535], "maist thou fall": [0, 65535], "thou fall a": [0, 65535], "fall a drop": [0, 65535], "a drop of": [0, 65535], "drop of water": [0, 65535], "of water in": [0, 65535], "water in the": [0, 65535], "in the breaking": [0, 65535], "the breaking gulfe": [0, 65535], "breaking gulfe and": [0, 65535], "gulfe and take": [0, 65535], "and take vnmingled": [0, 65535], "take vnmingled thence": [0, 65535], "vnmingled thence that": [0, 65535], "thence that drop": [0, 65535], "that drop againe": [0, 65535], "drop againe without": [0, 65535], "againe without addition": [0, 65535], "without addition or": [0, 65535], "addition or diminishing": [0, 65535], "or diminishing as": [0, 65535], "diminishing as take": [0, 65535], "as take from": [0, 65535], "take from me": [0, 65535], "from me thy": [0, 65535], "me thy selfe": [0, 65535], "selfe and not": [0, 65535], "and not me": [0, 65535], "not me too": [0, 65535], "me too how": [0, 65535], "too how deerely": [0, 65535], "how deerely would": [0, 65535], "deerely would it": [0, 65535], "would it touch": [0, 65535], "it touch thee": [0, 65535], "touch thee to": [0, 65535], "thee to the": [0, 65535], "to the quicke": [0, 65535], "the quicke shouldst": [0, 65535], "quicke shouldst thou": [0, 65535], "shouldst thou but": [0, 65535], "thou but heare": [0, 65535], "but heare i": [0, 65535], "heare i were": [0, 65535], "i were licencious": [0, 65535], "were licencious and": [0, 65535], "licencious and that": [0, 65535], "and that this": [0, 65535], "that this body": [0, 65535], "this body consecrate": [0, 65535], "body consecrate to": [0, 65535], "consecrate to thee": [0, 65535], "to thee by": [0, 65535], "thee by ruffian": [0, 65535], "by ruffian lust": [0, 65535], "ruffian lust should": [0, 65535], "lust should be": [0, 65535], "should be contaminate": [0, 65535], "be contaminate wouldst": [0, 65535], "contaminate wouldst thou": [0, 65535], "wouldst thou not": [0, 65535], "thou not spit": [0, 65535], "not spit at": [0, 65535], "spit at me": [0, 65535], "me and spurne": [0, 65535], "and spurne at": [0, 65535], "spurne at me": [0, 65535], "me and hurle": [0, 65535], "and hurle the": [0, 65535], "hurle the name": [0, 65535], "the name of": [0, 65535], "name of husband": [0, 65535], "of husband in": [0, 65535], "husband in my": [0, 65535], "in my face": [0, 65535], "my face and": [0, 65535], "face and teare": [0, 65535], "and teare the": [0, 65535], "teare the stain'd": [0, 65535], "the stain'd skin": [0, 65535], "stain'd skin of": [0, 65535], "skin of my": [0, 65535], "of my harlot": [0, 65535], "my harlot brow": [0, 65535], "harlot brow and": [0, 65535], "brow and from": [0, 65535], "and from my": [0, 65535], "from my false": [0, 65535], "my false hand": [0, 65535], "false hand cut": [0, 65535], "hand cut the": [0, 65535], "cut the wedding": [0, 65535], "the wedding ring": [0, 65535], "wedding ring and": [0, 65535], "ring and breake": [0, 65535], "breake it with": [0, 65535], "it with a": [0, 65535], "with a deepe": [0, 65535], "a deepe diuorcing": [0, 65535], "deepe diuorcing vow": [0, 65535], "diuorcing vow i": [0, 65535], "vow i know": [0, 65535], "i know thou": [0, 65535], "know thou canst": [0, 65535], "thou canst and": [0, 65535], "canst and therefore": [0, 65535], "and therefore see": [0, 65535], "therefore see thou": [0, 65535], "see thou doe": [0, 65535], "thou doe it": [0, 65535], "doe it i": [0, 65535], "it i am": [0, 65535], "i am possest": [0, 65535], "am possest with": [0, 65535], "possest with an": [0, 65535], "with an adulterate": [0, 65535], "an adulterate blot": [0, 65535], "adulterate blot my": [0, 65535], "blot my bloud": [0, 65535], "my bloud is": [0, 65535], "bloud is mingled": [0, 65535], "is mingled with": [0, 65535], "with the crime": [0, 65535], "the crime of": [0, 65535], "crime of lust": [0, 65535], "of lust for": [0, 65535], "lust for if": [0, 65535], "for if we": [0, 65535], "if we two": [0, 65535], "we two be": [0, 65535], "two be one": [0, 65535], "be one and": [0, 65535], "one and thou": [0, 65535], "and thou play": [0, 65535], "thou play false": [0, 65535], "play false i": [0, 65535], "false i doe": [0, 65535], "i doe digest": [0, 65535], "doe digest the": [0, 65535], "digest the poison": [0, 65535], "the poison of": [0, 65535], "poison of thy": [0, 65535], "of thy flesh": [0, 65535], "thy flesh being": [0, 65535], "flesh being strumpeted": [0, 65535], "being strumpeted by": [0, 65535], "strumpeted by thy": [0, 65535], "by thy contagion": [0, 65535], "thy contagion keepe": [0, 65535], "contagion keepe then": [0, 65535], "keepe then faire": [0, 65535], "then faire league": [0, 65535], "faire league and": [0, 65535], "league and truce": [0, 65535], "and truce with": [0, 65535], "truce with thy": [0, 65535], "with thy true": [0, 65535], "thy true bed": [0, 65535], "true bed i": [0, 65535], "bed i liue": [0, 65535], "i liue distain'd": [0, 65535], "liue distain'd thou": [0, 65535], "distain'd thou vndishonoured": [0, 65535], "thou vndishonoured antip": [0, 65535], "vndishonoured antip plead": [0, 65535], "antip plead you": [0, 65535], "plead you to": [0, 65535], "you to me": [0, 65535], "to me faire": [0, 65535], "me faire dame": [0, 65535], "faire dame i": [0, 65535], "dame i know": [0, 65535], "know you not": [0, 65535], "you not in": [0, 65535], "not in ephesus": [0, 65535], "in ephesus i": [0, 65535], "ephesus i am": [0, 65535], "am but two": [0, 65535], "but two houres": [0, 65535], "two houres old": [0, 65535], "houres old as": [0, 65535], "old as strange": [0, 65535], "as strange vnto": [0, 65535], "strange vnto your": [0, 65535], "vnto your towne": [0, 65535], "your towne as": [0, 65535], "towne as to": [0, 65535], "as to your": [0, 65535], "to your talke": [0, 65535], "your talke who": [0, 65535], "talke who euery": [0, 65535], "who euery word": [0, 65535], "euery word by": [0, 65535], "word by all": [0, 65535], "by all my": [0, 65535], "all my wit": [0, 65535], "my wit being": [0, 65535], "wit being scan'd": [0, 65535], "being scan'd wants": [0, 65535], "scan'd wants wit": [0, 65535], "wants wit in": [0, 65535], "wit in all": [0, 65535], "in all one": [0, 65535], "all one word": [0, 65535], "one word to": [0, 65535], "word to vnderstand": [0, 65535], "to vnderstand luci": [0, 65535], "vnderstand luci fie": [0, 65535], "luci fie brother": [0, 65535], "fie brother how": [0, 65535], "brother how the": [0, 65535], "how the world": [0, 65535], "the world is": [0, 65535], "world is chang'd": [0, 65535], "is chang'd with": [0, 65535], "chang'd with you": [0, 65535], "with you when": [0, 65535], "you when were": [0, 65535], "when were you": [0, 65535], "were you wont": [0, 65535], "you wont to": [0, 65535], "wont to vse": [0, 65535], "to vse my": [0, 65535], "vse my sister": [0, 65535], "my sister thus": [0, 65535], "sister thus she": [0, 65535], "thus she sent": [0, 65535], "she sent for": [0, 65535], "sent for you": [0, 65535], "for you by": [0, 65535], "you by dromio": [0, 65535], "by dromio home": [0, 65535], "dromio home to": [0, 65535], "to dinner ant": [0, 65535], "dinner ant by": [0, 65535], "ant by dromio": [0, 65535], "by dromio drom": [0, 65535], "dromio drom by": [0, 65535], "drom by me": [0, 65535], "by me adr": [0, 65535], "me adr by": [0, 65535], "adr by thee": [0, 65535], "by thee and": [0, 65535], "thee and this": [0, 65535], "and this thou": [0, 65535], "this thou didst": [0, 65535], "thou didst returne": [0, 65535], "didst returne from": [0, 65535], "returne from him": [0, 65535], "from him that": [0, 65535], "that he did": [0, 65535], "he did buffet": [0, 65535], "did buffet thee": [0, 65535], "buffet thee and": [0, 65535], "thee and in": [0, 65535], "and in his": [0, 65535], "in his blowes": [0, 65535], "his blowes denied": [0, 65535], "blowes denied my": [0, 65535], "denied my house": [0, 65535], "my house for": [0, 65535], "house for his": [0, 65535], "for his me": [0, 65535], "his me for": [0, 65535], "me for his": [0, 65535], "for his wife": [0, 65535], "his wife ant": [0, 65535], "wife ant did": [0, 65535], "ant did you": [0, 65535], "did you conuerse": [0, 65535], "you conuerse sir": [0, 65535], "conuerse sir with": [0, 65535], "sir with this": [0, 65535], "with this gentlewoman": [0, 65535], "this gentlewoman what": [0, 65535], "gentlewoman what is": [0, 65535], "is the course": [0, 65535], "the course and": [0, 65535], "course and drift": [0, 65535], "and drift of": [0, 65535], "drift of your": [0, 65535], "of your compact": [0, 65535], "your compact s": [0, 65535], "compact s dro": [0, 65535], "i sir i": [0, 65535], "sir i neuer": [0, 65535], "i neuer saw": [0, 65535], "neuer saw her": [0, 65535], "saw her till": [0, 65535], "her till this": [0, 65535], "till this time": [0, 65535], "this time ant": [0, 65535], "time ant villaine": [0, 65535], "villaine thou liest": [0, 65535], "thou liest for": [0, 65535], "liest for euen": [0, 65535], "for euen her": [0, 65535], "euen her verie": [0, 65535], "her verie words": [0, 65535], "verie words didst": [0, 65535], "words didst thou": [0, 65535], "didst thou deliuer": [0, 65535], "thou deliuer to": [0, 65535], "deliuer to me": [0, 65535], "to me on": [0, 65535], "the mart s": [0, 65535], "mart s dro": [0, 65535], "dro i neuer": [0, 65535], "i neuer spake": [0, 65535], "neuer spake with": [0, 65535], "spake with her": [0, 65535], "with her in": [0, 65535], "her in all": [0, 65535], "in all my": [0, 65535], "all my life": [0, 65535], "my life ant": [0, 65535], "life ant how": [0, 65535], "ant how can": [0, 65535], "how can she": [0, 65535], "can she thus": [0, 65535], "she thus then": [0, 65535], "thus then call": [0, 65535], "then call vs": [0, 65535], "call vs by": [0, 65535], "vs by our": [0, 65535], "by our names": [0, 65535], "our names vnlesse": [0, 65535], "names vnlesse it": [0, 65535], "vnlesse it be": [0, 65535], "it be by": [0, 65535], "be by inspiration": [0, 65535], "by inspiration adri": [0, 65535], "inspiration adri how": [0, 65535], "adri how ill": [0, 65535], "how ill agrees": [0, 65535], "ill agrees it": [0, 65535], "agrees it with": [0, 65535], "it with your": [0, 65535], "with your grauitie": [0, 65535], "your grauitie to": [0, 65535], "grauitie to counterfeit": [0, 65535], "to counterfeit thus": [0, 65535], "counterfeit thus grosely": [0, 65535], "thus grosely with": [0, 65535], "grosely with your": [0, 65535], "with your slaue": [0, 65535], "your slaue abetting": [0, 65535], "slaue abetting him": [0, 65535], "abetting him to": [0, 65535], "him to thwart": [0, 65535], "to thwart me": [0, 65535], "thwart me in": [0, 65535], "me in my": [0, 65535], "in my moode": [0, 65535], "my moode be": [0, 65535], "moode be it": [0, 65535], "be it my": [0, 65535], "it my wrong": [0, 65535], "my wrong you": [0, 65535], "wrong you are": [0, 65535], "you are from": [0, 65535], "are from me": [0, 65535], "from me exempt": [0, 65535], "me exempt but": [0, 65535], "exempt but wrong": [0, 65535], "but wrong not": [0, 65535], "wrong not that": [0, 65535], "not that wrong": [0, 65535], "that wrong with": [0, 65535], "wrong with a": [0, 65535], "with a more": [0, 65535], "a more contempt": [0, 65535], "more contempt come": [0, 65535], "contempt come i": [0, 65535], "come i will": [0, 65535], "i will fasten": [0, 65535], "will fasten on": [0, 65535], "fasten on this": [0, 65535], "on this sleeue": [0, 65535], "this sleeue of": [0, 65535], "sleeue of thine": [0, 65535], "of thine thou": [0, 65535], "thine thou art": [0, 65535], "art an elme": [0, 65535], "an elme my": [0, 65535], "elme my husband": [0, 65535], "my husband i": [0, 65535], "husband i a": [0, 65535], "i a vine": [0, 65535], "a vine whose": [0, 65535], "vine whose weaknesse": [0, 65535], "whose weaknesse married": [0, 65535], "weaknesse married to": [0, 65535], "married to thy": [0, 65535], "to thy stranger": [0, 65535], "thy stranger state": [0, 65535], "stranger state makes": [0, 65535], "state makes me": [0, 65535], "makes me with": [0, 65535], "me with thy": [0, 65535], "with thy strength": [0, 65535], "thy strength to": [0, 65535], "strength to communicate": [0, 65535], "to communicate if": [0, 65535], "communicate if ought": [0, 65535], "if ought possesse": [0, 65535], "ought possesse thee": [0, 65535], "possesse thee from": [0, 65535], "thee from me": [0, 65535], "from me it": [0, 65535], "me it is": [0, 65535], "it is drosse": [0, 65535], "is drosse vsurping": [0, 65535], "drosse vsurping iuie": [0, 65535], "vsurping iuie brier": [0, 65535], "iuie brier or": [0, 65535], "brier or idle": [0, 65535], "or idle mosse": [0, 65535], "idle mosse who": [0, 65535], "mosse who all": [0, 65535], "who all for": [0, 65535], "all for want": [0, 65535], "for want of": [0, 65535], "want of pruning": [0, 65535], "of pruning with": [0, 65535], "pruning with intrusion": [0, 65535], "with intrusion infect": [0, 65535], "intrusion infect thy": [0, 65535], "infect thy sap": [0, 65535], "thy sap and": [0, 65535], "sap and liue": [0, 65535], "and liue on": [0, 65535], "liue on thy": [0, 65535], "on thy confusion": [0, 65535], "thy confusion ant": [0, 65535], "confusion ant to": [0, 65535], "ant to mee": [0, 65535], "to mee shee": [0, 65535], "mee shee speakes": [0, 65535], "shee speakes shee": [0, 65535], "speakes shee moues": [0, 65535], "shee moues mee": [0, 65535], "moues mee for": [0, 65535], "mee for her": [0, 65535], "for her theame": [0, 65535], "her theame what": [0, 65535], "theame what was": [0, 65535], "what was i": [0, 65535], "was i married": [0, 65535], "i married to": [0, 65535], "married to her": [0, 65535], "to her in": [0, 65535], "her in my": [0, 65535], "in my dreame": [0, 65535], "my dreame or": [0, 65535], "dreame or sleepe": [0, 65535], "or sleepe i": [0, 65535], "sleepe i now": [0, 65535], "i now and": [0, 65535], "now and thinke": [0, 65535], "and thinke i": [0, 65535], "thinke i heare": [0, 65535], "i heare all": [0, 65535], "heare all this": [0, 65535], "all this what": [0, 65535], "this what error": [0, 65535], "what error driues": [0, 65535], "error driues our": [0, 65535], "driues our eies": [0, 65535], "our eies and": [0, 65535], "eies and eares": [0, 65535], "and eares amisse": [0, 65535], "eares amisse vntill": [0, 65535], "amisse vntill i": [0, 65535], "vntill i know": [0, 65535], "i know this": [0, 65535], "know this sure": [0, 65535], "this sure vncertaintie": [0, 65535], "sure vncertaintie ile": [0, 65535], "vncertaintie ile entertaine": [0, 65535], "ile entertaine the": [0, 65535], "entertaine the free'd": [0, 65535], "the free'd fallacie": [0, 65535], "free'd fallacie luc": [0, 65535], "fallacie luc dromio": [0, 65535], "luc dromio goe": [0, 65535], "dromio goe bid": [0, 65535], "goe bid the": [0, 65535], "bid the seruants": [0, 65535], "the seruants spred": [0, 65535], "seruants spred for": [0, 65535], "spred for dinner": [0, 65535], "for dinner s": [0, 65535], "dinner s dro": [0, 65535], "s dro oh": [0, 65535], "dro oh for": [0, 65535], "oh for my": [0, 65535], "for my beads": [0, 65535], "my beads i": [0, 65535], "beads i crosse": [0, 65535], "i crosse me": [0, 65535], "crosse me for": [0, 65535], "for a sinner": [0, 65535], "a sinner this": [0, 65535], "sinner this is": [0, 65535], "is the fairie": [0, 65535], "the fairie land": [0, 65535], "fairie land oh": [0, 65535], "land oh spight": [0, 65535], "oh spight of": [0, 65535], "spight of spights": [0, 65535], "of spights we": [0, 65535], "spights we talke": [0, 65535], "we talke with": [0, 65535], "talke with goblins": [0, 65535], "with goblins owles": [0, 65535], "goblins owles and": [0, 65535], "owles and sprights": [0, 65535], "and sprights if": [0, 65535], "sprights if we": [0, 65535], "if we obay": [0, 65535], "we obay them": [0, 65535], "obay them not": [0, 65535], "them not this": [0, 65535], "not this will": [0, 65535], "this will insue": [0, 65535], "will insue they'll": [0, 65535], "insue they'll sucke": [0, 65535], "they'll sucke our": [0, 65535], "sucke our breath": [0, 65535], "our breath or": [0, 65535], "breath or pinch": [0, 65535], "or pinch vs": [0, 65535], "pinch vs blacke": [0, 65535], "vs blacke and": [0, 65535], "blacke and blew": [0, 65535], "and blew luc": [0, 65535], "blew luc why": [0, 65535], "luc why prat'st": [0, 65535], "why prat'st thou": [0, 65535], "prat'st thou to": [0, 65535], "thou to thy": [0, 65535], "to thy selfe": [0, 65535], "selfe and answer'st": [0, 65535], "and answer'st not": [0, 65535], "answer'st not dromio": [0, 65535], "not dromio thou": [0, 65535], "dromio thou dromio": [0, 65535], "thou dromio thou": [0, 65535], "dromio thou snaile": [0, 65535], "thou snaile thou": [0, 65535], "snaile thou slug": [0, 65535], "thou slug thou": [0, 65535], "slug thou sot": [0, 65535], "thou sot s": [0, 65535], "sot s dro": [0, 65535], "i am transformed": [0, 65535], "am transformed master": [0, 65535], "transformed master am": [0, 65535], "master am i": [0, 65535], "am i not": [0, 65535], "i not ant": [0, 65535], "not ant i": [0, 65535], "thou art in": [0, 65535], "art in minde": [0, 65535], "in minde and": [0, 65535], "minde and so": [0, 65535], "and so am": [0, 65535], "so am i": [0, 65535], "am i s": [0, 65535], "i s dro": [0, 65535], "s dro nay": [0, 65535], "dro nay master": [0, 65535], "nay master both": [0, 65535], "master both in": [0, 65535], "both in minde": [0, 65535], "minde and in": [0, 65535], "and in my": [0, 65535], "in my shape": [0, 65535], "my shape ant": [0, 65535], "shape ant thou": [0, 65535], "ant thou hast": [0, 65535], "thou hast thine": [0, 65535], "hast thine owne": [0, 65535], "thine owne forme": [0, 65535], "owne forme s": [0, 65535], "forme s dro": [0, 65535], "dro no i": [0, 65535], "no i am": [0, 65535], "am an ape": [0, 65535], "an ape luc": [0, 65535], "ape luc if": [0, 65535], "luc if thou": [0, 65535], "if thou art": [0, 65535], "thou art chang'd": [0, 65535], "art chang'd to": [0, 65535], "chang'd to ought": [0, 65535], "to ought 'tis": [0, 65535], "ought 'tis to": [0, 65535], "'tis to an": [0, 65535], "to an asse": [0, 65535], "an asse s": [0, 65535], "asse s dro": [0, 65535], "s dro 'tis": [0, 65535], "dro 'tis true": [0, 65535], "'tis true she": [0, 65535], "true she rides": [0, 65535], "she rides me": [0, 65535], "rides me and": [0, 65535], "me and i": [0, 65535], "and i long": [0, 65535], "i long for": [0, 65535], "long for grasse": [0, 65535], "for grasse 'tis": [0, 65535], "grasse 'tis so": [0, 65535], "'tis so i": [0, 65535], "so i am": [0, 65535], "an asse else": [0, 65535], "asse else it": [0, 65535], "else it could": [0, 65535], "it could neuer": [0, 65535], "could neuer be": [0, 65535], "neuer be but": [0, 65535], "be but i": [0, 65535], "but i should": [0, 65535], "i should know": [0, 65535], "should know her": [0, 65535], "know her as": [0, 65535], "her as well": [0, 65535], "as well as": [0, 65535], "well as she": [0, 65535], "as she knowes": [0, 65535], "she knowes me": [0, 65535], "knowes me adr": [0, 65535], "me adr come": [0, 65535], "adr come come": [0, 65535], "come come no": [0, 65535], "come no longer": [0, 65535], "no longer will": [0, 65535], "longer will i": [0, 65535], "will i be": [0, 65535], "i be a": [0, 65535], "be a foole": [0, 65535], "a foole to": [0, 65535], "foole to put": [0, 65535], "to put the": [0, 65535], "put the finger": [0, 65535], "the finger in": [0, 65535], "finger in the": [0, 65535], "in the eie": [0, 65535], "the eie and": [0, 65535], "eie and weepe": [0, 65535], "and weepe whil'st": [0, 65535], "weepe whil'st man": [0, 65535], "whil'st man and": [0, 65535], "man and master": [0, 65535], "and master laughes": [0, 65535], "master laughes my": [0, 65535], "laughes my woes": [0, 65535], "my woes to": [0, 65535], "woes to scorne": [0, 65535], "to scorne come": [0, 65535], "scorne come sir": [0, 65535], "come sir to": [0, 65535], "sir to dinner": [0, 65535], "to dinner dromio": [0, 65535], "dinner dromio keepe": [0, 65535], "dromio keepe the": [0, 65535], "keepe the gate": [0, 65535], "the gate husband": [0, 65535], "gate husband ile": [0, 65535], "husband ile dine": [0, 65535], "ile dine aboue": [0, 65535], "dine aboue with": [0, 65535], "aboue with you": [0, 65535], "with you to": [0, 65535], "you to day": [0, 65535], "to day and": [0, 65535], "day and shriue": [0, 65535], "and shriue you": [0, 65535], "shriue you of": [0, 65535], "you of a": [0, 65535], "of a thousand": [0, 65535], "a thousand idle": [0, 65535], "thousand idle prankes": [0, 65535], "idle prankes sirra": [0, 65535], "prankes sirra if": [0, 65535], "sirra if any": [0, 65535], "if any aske": [0, 65535], "any aske you": [0, 65535], "aske you for": [0, 65535], "you for your": [0, 65535], "for your master": [0, 65535], "your master say": [0, 65535], "master say he": [0, 65535], "say he dines": [0, 65535], "he dines forth": [0, 65535], "dines forth and": [0, 65535], "forth and let": [0, 65535], "and let no": [0, 65535], "let no creature": [0, 65535], "no creature enter": [0, 65535], "creature enter come": [0, 65535], "enter come sister": [0, 65535], "come sister dromio": [0, 65535], "sister dromio play": [0, 65535], "dromio play the": [0, 65535], "play the porter": [0, 65535], "the porter well": [0, 65535], "porter well ant": [0, 65535], "well ant am": [0, 65535], "ant am i": [0, 65535], "am i in": [0, 65535], "i in earth": [0, 65535], "earth in heauen": [0, 65535], "in heauen or": [0, 65535], "heauen or in": [0, 65535], "or in hell": [0, 65535], "in hell sleeping": [0, 65535], "hell sleeping or": [0, 65535], "sleeping or waking": [0, 65535], "or waking mad": [0, 65535], "waking mad or": [0, 65535], "mad or well": [0, 65535], "or well aduisde": [0, 65535], "well aduisde knowne": [0, 65535], "aduisde knowne vnto": [0, 65535], "knowne vnto these": [0, 65535], "vnto these and": [0, 65535], "these and to": [0, 65535], "and to my": [0, 65535], "my selfe disguisde": [0, 65535], "selfe disguisde ile": [0, 65535], "disguisde ile say": [0, 65535], "ile say as": [0, 65535], "say as they": [0, 65535], "as they say": [0, 65535], "they say and": [0, 65535], "say and perseuer": [0, 65535], "and perseuer so": [0, 65535], "perseuer so and": [0, 65535], "so and in": [0, 65535], "and in this": [0, 65535], "in this mist": [0, 65535], "this mist at": [0, 65535], "mist at all": [0, 65535], "at all aduentures": [0, 65535], "all aduentures go": [0, 65535], "aduentures go s": [0, 65535], "go s dro": [0, 65535], "s dro master": [0, 65535], "dro master shall": [0, 65535], "master shall i": [0, 65535], "i be porter": [0, 65535], "be porter at": [0, 65535], "porter at the": [0, 65535], "the gate adr": [0, 65535], "gate adr i": [0, 65535], "adr i and": [0, 65535], "i and let": [0, 65535], "and let none": [0, 65535], "let none enter": [0, 65535], "none enter least": [0, 65535], "enter least i": [0, 65535], "least i breake": [0, 65535], "i breake your": [0, 65535], "breake your pate": [0, 65535], "your pate luc": [0, 65535], "pate luc come": [0, 65535], "luc come come": [0, 65535], "come come antipholus": [0, 65535], "come antipholus we": [0, 65535], "antipholus we dine": [0, 65535], "we dine to": [0, 65535], "dine to late": [0, 65535], "actus secundus enter adriana": [0, 65535], "secundus enter adriana wife": [0, 65535], "enter adriana wife to": [0, 65535], "adriana wife to antipholis": [0, 65535], "wife to antipholis sereptus": [0, 65535], "to antipholis sereptus with": [0, 65535], "antipholis sereptus with luciana": [0, 65535], "sereptus with luciana her": [0, 65535], "with luciana her sister": [0, 65535], "luciana her sister adr": [0, 65535], "her sister adr neither": [0, 65535], "sister adr neither my": [0, 65535], "adr neither my husband": [0, 65535], "neither my husband nor": [0, 65535], "my husband nor the": [0, 65535], "husband nor the slaue": [0, 65535], "nor the slaue return'd": [0, 65535], "the slaue return'd that": [0, 65535], "slaue return'd that in": [0, 65535], "return'd that in such": [0, 65535], "that in such haste": [0, 65535], "in such haste i": [0, 65535], "such haste i sent": [0, 65535], "haste i sent to": [0, 65535], "i sent to seeke": [0, 65535], "sent to seeke his": [0, 65535], "to seeke his master": [0, 65535], "seeke his master sure": [0, 65535], "his master sure luciana": [0, 65535], "master sure luciana it": [0, 65535], "sure luciana it is": [0, 65535], "luciana it is two": [0, 65535], "it is two a": [0, 65535], "is two a clocke": [0, 65535], "two a clocke luc": [0, 65535], "a clocke luc perhaps": [0, 65535], "clocke luc perhaps some": [0, 65535], "luc perhaps some merchant": [0, 65535], "perhaps some merchant hath": [0, 65535], "some merchant hath inuited": [0, 65535], "merchant hath inuited him": [0, 65535], "hath inuited him and": [0, 65535], "inuited him and from": [0, 65535], "him and from the": [0, 65535], "and from the mart": [0, 65535], "from the mart he's": [0, 65535], "the mart he's somewhere": [0, 65535], "mart he's somewhere gone": [0, 65535], "he's somewhere gone to": [0, 65535], "somewhere gone to dinner": [0, 65535], "gone to dinner good": [0, 65535], "to dinner good sister": [0, 65535], "dinner good sister let": [0, 65535], "good sister let vs": [0, 65535], "sister let vs dine": [0, 65535], "let vs dine and": [0, 65535], "vs dine and neuer": [0, 65535], "dine and neuer fret": [0, 65535], "and neuer fret a": [0, 65535], "neuer fret a man": [0, 65535], "fret a man is": [0, 65535], "a man is master": [0, 65535], "man is master of": [0, 65535], "is master of his": [0, 65535], "master of his libertie": [0, 65535], "of his libertie time": [0, 65535], "his libertie time is": [0, 65535], "libertie time is their": [0, 65535], "time is their master": [0, 65535], "is their master and": [0, 65535], "their master and when": [0, 65535], "master and when they": [0, 65535], "and when they see": [0, 65535], "when they see time": [0, 65535], "they see time they'll": [0, 65535], "see time they'll goe": [0, 65535], "time they'll goe or": [0, 65535], "they'll goe or come": [0, 65535], "goe or come if": [0, 65535], "or come if so": [0, 65535], "come if so be": [0, 65535], "if so be patient": [0, 65535], "so be patient sister": [0, 65535], "be patient sister adr": [0, 65535], "patient sister adr why": [0, 65535], "sister adr why should": [0, 65535], "adr why should their": [0, 65535], "why should their libertie": [0, 65535], "should their libertie then": [0, 65535], "their libertie then ours": [0, 65535], "libertie then ours be": [0, 65535], "then ours be more": [0, 65535], "ours be more luc": [0, 65535], "be more luc because": [0, 65535], "more luc because their": [0, 65535], "luc because their businesse": [0, 65535], "because their businesse still": [0, 65535], "their businesse still lies": [0, 65535], "businesse still lies out": [0, 65535], "still lies out a": [0, 65535], "lies out a dore": [0, 65535], "out a dore adr": [0, 65535], "a dore adr looke": [0, 65535], "dore adr looke when": [0, 65535], "adr looke when i": [0, 65535], "looke when i serue": [0, 65535], "when i serue him": [0, 65535], "i serue him so": [0, 65535], "serue him so he": [0, 65535], "him so he takes": [0, 65535], "so he takes it": [0, 65535], "he takes it thus": [0, 65535], "takes it thus luc": [0, 65535], "it thus luc oh": [0, 65535], "thus luc oh know": [0, 65535], "luc oh know he": [0, 65535], "oh know he is": [0, 65535], "know he is the": [0, 65535], "he is the bridle": [0, 65535], "is the bridle of": [0, 65535], "the bridle of your": [0, 65535], "bridle of your will": [0, 65535], "of your will adr": [0, 65535], "your will adr there's": [0, 65535], "will adr there's none": [0, 65535], "adr there's none but": [0, 65535], "there's none but asses": [0, 65535], "none but asses will": [0, 65535], "but asses will be": [0, 65535], "asses will be bridled": [0, 65535], "will be bridled so": [0, 65535], "be bridled so luc": [0, 65535], "bridled so luc why": [0, 65535], "so luc why headstrong": [0, 65535], "luc why headstrong liberty": [0, 65535], "why headstrong liberty is": [0, 65535], "headstrong liberty is lasht": [0, 65535], "liberty is lasht with": [0, 65535], "is lasht with woe": [0, 65535], "lasht with woe there's": [0, 65535], "with woe there's nothing": [0, 65535], "woe there's nothing situate": [0, 65535], "there's nothing situate vnder": [0, 65535], "nothing situate vnder heauens": [0, 65535], "situate vnder heauens eye": [0, 65535], "vnder heauens eye but": [0, 65535], "heauens eye but hath": [0, 65535], "eye but hath his": [0, 65535], "but hath his bound": [0, 65535], "hath his bound in": [0, 65535], "his bound in earth": [0, 65535], "bound in earth in": [0, 65535], "in earth in sea": [0, 65535], "earth in sea in": [0, 65535], "in sea in skie": [0, 65535], "sea in skie the": [0, 65535], "in skie the beasts": [0, 65535], "skie the beasts the": [0, 65535], "the beasts the fishes": [0, 65535], "beasts the fishes and": [0, 65535], "the fishes and the": [0, 65535], "fishes and the winged": [0, 65535], "and the winged fowles": [0, 65535], "the winged fowles are": [0, 65535], "winged fowles are their": [0, 65535], "fowles are their males": [0, 65535], "are their males subiects": [0, 65535], "their males subiects and": [0, 65535], "males subiects and at": [0, 65535], "subiects and at their": [0, 65535], "and at their controules": [0, 65535], "at their controules man": [0, 65535], "their controules man more": [0, 65535], "controules man more diuine": [0, 65535], "man more diuine the": [0, 65535], "more diuine the master": [0, 65535], "diuine the master of": [0, 65535], "the master of all": [0, 65535], "master of all these": [0, 65535], "of all these lord": [0, 65535], "all these lord of": [0, 65535], "these lord of the": [0, 65535], "lord of the wide": [0, 65535], "of the wide world": [0, 65535], "the wide world and": [0, 65535], "wide world and wilde": [0, 65535], "world and wilde watry": [0, 65535], "and wilde watry seas": [0, 65535], "wilde watry seas indued": [0, 65535], "watry seas indued with": [0, 65535], "seas indued with intellectuall": [0, 65535], "indued with intellectuall sence": [0, 65535], "with intellectuall sence and": [0, 65535], "intellectuall sence and soules": [0, 65535], "sence and soules of": [0, 65535], "and soules of more": [0, 65535], "soules of more preheminence": [0, 65535], "of more preheminence then": [0, 65535], "more preheminence then fish": [0, 65535], "preheminence then fish and": [0, 65535], "then fish and fowles": [0, 65535], "fish and fowles are": [0, 65535], "and fowles are masters": [0, 65535], "fowles are masters to": [0, 65535], "are masters to their": [0, 65535], "masters to their females": [0, 65535], "to their females and": [0, 65535], "their females and their": [0, 65535], "females and their lords": [0, 65535], "and their lords then": [0, 65535], "their lords then let": [0, 65535], "lords then let your": [0, 65535], "then let your will": [0, 65535], "let your will attend": [0, 65535], "your will attend on": [0, 65535], "will attend on their": [0, 65535], "attend on their accords": [0, 65535], "on their accords adri": [0, 65535], "their accords adri this": [0, 65535], "accords adri this seruitude": [0, 65535], "adri this seruitude makes": [0, 65535], "this seruitude makes you": [0, 65535], "seruitude makes you to": [0, 65535], "makes you to keepe": [0, 65535], "you to keepe vnwed": [0, 65535], "to keepe vnwed luci": [0, 65535], "keepe vnwed luci not": [0, 65535], "vnwed luci not this": [0, 65535], "luci not this but": [0, 65535], "not this but troubles": [0, 65535], "this but troubles of": [0, 65535], "but troubles of the": [0, 65535], "troubles of the marriage": [0, 65535], "of the marriage bed": [0, 65535], "the marriage bed adr": [0, 65535], "marriage bed adr but": [0, 65535], "bed adr but were": [0, 65535], "adr but were you": [0, 65535], "but were you wedded": [0, 65535], "were you wedded you": [0, 65535], "you wedded you wold": [0, 65535], "wedded you wold bear": [0, 65535], "you wold bear some": [0, 65535], "wold bear some sway": [0, 65535], "bear some sway luc": [0, 65535], "some sway luc ere": [0, 65535], "sway luc ere i": [0, 65535], "luc ere i learne": [0, 65535], "ere i learne loue": [0, 65535], "i learne loue ile": [0, 65535], "learne loue ile practise": [0, 65535], "loue ile practise to": [0, 65535], "ile practise to obey": [0, 65535], "practise to obey adr": [0, 65535], "to obey adr how": [0, 65535], "obey adr how if": [0, 65535], "adr how if your": [0, 65535], "how if your husband": [0, 65535], "if your husband start": [0, 65535], "your husband start some": [0, 65535], "husband start some other": [0, 65535], "start some other where": [0, 65535], "some other where luc": [0, 65535], "other where luc till": [0, 65535], "where luc till he": [0, 65535], "luc till he come": [0, 65535], "till he come home": [0, 65535], "he come home againe": [0, 65535], "come home againe i": [0, 65535], "home againe i would": [0, 65535], "againe i would forbeare": [0, 65535], "i would forbeare adr": [0, 65535], "would forbeare adr patience": [0, 65535], "forbeare adr patience vnmou'd": [0, 65535], "adr patience vnmou'd no": [0, 65535], "patience vnmou'd no maruel": [0, 65535], "vnmou'd no maruel though": [0, 65535], "no maruel though she": [0, 65535], "maruel though she pause": [0, 65535], "though she pause they": [0, 65535], "she pause they can": [0, 65535], "pause they can be": [0, 65535], "they can be meeke": [0, 65535], "can be meeke that": [0, 65535], "be meeke that haue": [0, 65535], "meeke that haue no": [0, 65535], "that haue no other": [0, 65535], "haue no other cause": [0, 65535], "no other cause a": [0, 65535], "other cause a wretched": [0, 65535], "cause a wretched soule": [0, 65535], "a wretched soule bruis'd": [0, 65535], "wretched soule bruis'd with": [0, 65535], "soule bruis'd with aduersitie": [0, 65535], "bruis'd with aduersitie we": [0, 65535], "with aduersitie we bid": [0, 65535], "aduersitie we bid be": [0, 65535], "we bid be quiet": [0, 65535], "bid be quiet when": [0, 65535], "be quiet when we": [0, 65535], "quiet when we heare": [0, 65535], "when we heare it": [0, 65535], "we heare it crie": [0, 65535], "heare it crie but": [0, 65535], "it crie but were": [0, 65535], "crie but were we": [0, 65535], "but were we burdned": [0, 65535], "were we burdned with": [0, 65535], "we burdned with like": [0, 65535], "burdned with like waight": [0, 65535], "with like waight of": [0, 65535], "like waight of paine": [0, 65535], "waight of paine as": [0, 65535], "of paine as much": [0, 65535], "paine as much or": [0, 65535], "as much or more": [0, 65535], "much or more we": [0, 65535], "or more we should": [0, 65535], "more we should our": [0, 65535], "we should our selues": [0, 65535], "should our selues complaine": [0, 65535], "our selues complaine so": [0, 65535], "selues complaine so thou": [0, 65535], "complaine so thou that": [0, 65535], "so thou that hast": [0, 65535], "thou that hast no": [0, 65535], "that hast no vnkinde": [0, 65535], "hast no vnkinde mate": [0, 65535], "no vnkinde mate to": [0, 65535], "vnkinde mate to greeue": [0, 65535], "mate to greeue thee": [0, 65535], "to greeue thee with": [0, 65535], "greeue thee with vrging": [0, 65535], "thee with vrging helpelesse": [0, 65535], "with vrging helpelesse patience": [0, 65535], "vrging helpelesse patience would": [0, 65535], "helpelesse patience would releeue": [0, 65535], "patience would releeue me": [0, 65535], "would releeue me but": [0, 65535], "releeue me but if": [0, 65535], "me but if thou": [0, 65535], "but if thou liue": [0, 65535], "if thou liue to": [0, 65535], "thou liue to see": [0, 65535], "liue to see like": [0, 65535], "to see like right": [0, 65535], "see like right bereft": [0, 65535], "like right bereft this": [0, 65535], "right bereft this foole": [0, 65535], "bereft this foole beg'd": [0, 65535], "this foole beg'd patience": [0, 65535], "foole beg'd patience in": [0, 65535], "beg'd patience in thee": [0, 65535], "patience in thee will": [0, 65535], "in thee will be": [0, 65535], "thee will be left": [0, 65535], "will be left luci": [0, 65535], "be left luci well": [0, 65535], "left luci well i": [0, 65535], "luci well i will": [0, 65535], "well i will marry": [0, 65535], "i will marry one": [0, 65535], "will marry one day": [0, 65535], "marry one day but": [0, 65535], "one day but to": [0, 65535], "day but to trie": [0, 65535], "but to trie heere": [0, 65535], "to trie heere comes": [0, 65535], "trie heere comes your": [0, 65535], "heere comes your man": [0, 65535], "comes your man now": [0, 65535], "your man now is": [0, 65535], "man now is your": [0, 65535], "now is your husband": [0, 65535], "is your husband nie": [0, 65535], "your husband nie enter": [0, 65535], "husband nie enter dromio": [0, 65535], "nie enter dromio eph": [0, 65535], "enter dromio eph adr": [0, 65535], "dromio eph adr say": [0, 65535], "eph adr say is": [0, 65535], "adr say is your": [0, 65535], "say is your tardie": [0, 65535], "is your tardie master": [0, 65535], "your tardie master now": [0, 65535], "tardie master now at": [0, 65535], "master now at hand": [0, 65535], "now at hand e": [0, 65535], "at hand e dro": [0, 65535], "hand e dro nay": [0, 65535], "e dro nay hee's": [0, 65535], "dro nay hee's at": [0, 65535], "nay hee's at too": [0, 65535], "hee's at too hands": [0, 65535], "at too hands with": [0, 65535], "too hands with mee": [0, 65535], "hands with mee and": [0, 65535], "with mee and that": [0, 65535], "mee and that my": [0, 65535], "and that my two": [0, 65535], "that my two eares": [0, 65535], "my two eares can": [0, 65535], "two eares can witnesse": [0, 65535], "eares can witnesse adr": [0, 65535], "can witnesse adr say": [0, 65535], "witnesse adr say didst": [0, 65535], "adr say didst thou": [0, 65535], "say didst thou speake": [0, 65535], "didst thou speake with": [0, 65535], "thou speake with him": [0, 65535], "speake with him knowst": [0, 65535], "with him knowst thou": [0, 65535], "him knowst thou his": [0, 65535], "knowst thou his minde": [0, 65535], "thou his minde e": [0, 65535], "his minde e dro": [0, 65535], "minde e dro i": [0, 65535], "e dro i i": [0, 65535], "dro i i he": [0, 65535], "i i he told": [0, 65535], "i he told his": [0, 65535], "he told his minde": [0, 65535], "told his minde vpon": [0, 65535], "his minde vpon mine": [0, 65535], "minde vpon mine eare": [0, 65535], "vpon mine eare beshrew": [0, 65535], "mine eare beshrew his": [0, 65535], "eare beshrew his hand": [0, 65535], "beshrew his hand i": [0, 65535], "his hand i scarce": [0, 65535], "hand i scarce could": [0, 65535], "i scarce could vnderstand": [0, 65535], "scarce could vnderstand it": [0, 65535], "could vnderstand it luc": [0, 65535], "vnderstand it luc spake": [0, 65535], "it luc spake hee": [0, 65535], "luc spake hee so": [0, 65535], "spake hee so doubtfully": [0, 65535], "hee so doubtfully thou": [0, 65535], "so doubtfully thou couldst": [0, 65535], "doubtfully thou couldst not": [0, 65535], "thou couldst not feele": [0, 65535], "couldst not feele his": [0, 65535], "not feele his meaning": [0, 65535], "feele his meaning e": [0, 65535], "his meaning e dro": [0, 65535], "meaning e dro nay": [0, 65535], "e dro nay hee": [0, 65535], "dro nay hee strooke": [0, 65535], "nay hee strooke so": [0, 65535], "hee strooke so plainly": [0, 65535], "strooke so plainly i": [0, 65535], "so plainly i could": [0, 65535], "plainly i could too": [0, 65535], "i could too well": [0, 65535], "could too well feele": [0, 65535], "too well feele his": [0, 65535], "well feele his blowes": [0, 65535], "feele his blowes and": [0, 65535], "his blowes and withall": [0, 65535], "blowes and withall so": [0, 65535], "and withall so doubtfully": [0, 65535], "withall so doubtfully that": [0, 65535], "so doubtfully that i": [0, 65535], "doubtfully that i could": [0, 65535], "that i could scarce": [0, 65535], "i could scarce vnderstand": [0, 65535], "could scarce vnderstand them": [0, 65535], "scarce vnderstand them adri": [0, 65535], "vnderstand them adri but": [0, 65535], "them adri but say": [0, 65535], "adri but say i": [0, 65535], "but say i prethee": [0, 65535], "say i prethee is": [0, 65535], "i prethee is he": [0, 65535], "prethee is he comming": [0, 65535], "is he comming home": [0, 65535], "he comming home it": [0, 65535], "comming home it seemes": [0, 65535], "home it seemes he": [0, 65535], "it seemes he hath": [0, 65535], "seemes he hath great": [0, 65535], "he hath great care": [0, 65535], "hath great care to": [0, 65535], "great care to please": [0, 65535], "care to please his": [0, 65535], "to please his wife": [0, 65535], "please his wife e": [0, 65535], "his wife e dro": [0, 65535], "wife e dro why": [0, 65535], "e dro why mistresse": [0, 65535], "dro why mistresse sure": [0, 65535], "why mistresse sure my": [0, 65535], "mistresse sure my master": [0, 65535], "sure my master is": [0, 65535], "my master is horne": [0, 65535], "master is horne mad": [0, 65535], "is horne mad adri": [0, 65535], "horne mad adri horne": [0, 65535], "mad adri horne mad": [0, 65535], "adri horne mad thou": [0, 65535], "horne mad thou villaine": [0, 65535], "mad thou villaine e": [0, 65535], "thou villaine e dro": [0, 65535], "villaine e dro i": [0, 65535], "e dro i meane": [0, 65535], "dro i meane not": [0, 65535], "i meane not cuckold": [0, 65535], "meane not cuckold mad": [0, 65535], "not cuckold mad but": [0, 65535], "cuckold mad but sure": [0, 65535], "mad but sure he": [0, 65535], "but sure he is": [0, 65535], "sure he is starke": [0, 65535], "he is starke mad": [0, 65535], "is starke mad when": [0, 65535], "starke mad when i": [0, 65535], "mad when i desir'd": [0, 65535], "when i desir'd him": [0, 65535], "i desir'd him to": [0, 65535], "desir'd him to come": [0, 65535], "him to come home": [0, 65535], "to come home to": [0, 65535], "come home to dinner": [0, 65535], "home to dinner he": [0, 65535], "to dinner he ask'd": [0, 65535], "dinner he ask'd me": [0, 65535], "he ask'd me for": [0, 65535], "ask'd me for a": [0, 65535], "me for a hundred": [0, 65535], "for a hundred markes": [0, 65535], "a hundred markes in": [0, 65535], "hundred markes in gold": [0, 65535], "markes in gold 'tis": [0, 65535], "in gold 'tis dinner": [0, 65535], "gold 'tis dinner time": [0, 65535], "'tis dinner time quoth": [0, 65535], "dinner time quoth i": [0, 65535], "time quoth i my": [0, 65535], "quoth i my gold": [0, 65535], "i my gold quoth": [0, 65535], "my gold quoth he": [0, 65535], "gold quoth he your": [0, 65535], "quoth he your meat": [0, 65535], "he your meat doth": [0, 65535], "your meat doth burne": [0, 65535], "meat doth burne quoth": [0, 65535], "doth burne quoth i": [0, 65535], "burne quoth i my": [0, 65535], "gold quoth he will": [0, 65535], "quoth he will you": [0, 65535], "he will you come": [0, 65535], "will you come quoth": [0, 65535], "you come quoth i": [0, 65535], "come quoth i my": [0, 65535], "gold quoth he where": [0, 65535], "quoth he where is": [0, 65535], "he where is the": [0, 65535], "where is the thousand": [0, 65535], "is the thousand markes": [0, 65535], "the thousand markes i": [0, 65535], "thousand markes i gaue": [0, 65535], "markes i gaue thee": [0, 65535], "i gaue thee villaine": [0, 65535], "gaue thee villaine the": [0, 65535], "thee villaine the pigge": [0, 65535], "villaine the pigge quoth": [0, 65535], "the pigge quoth i": [0, 65535], "pigge quoth i is": [0, 65535], "quoth i is burn'd": [0, 65535], "i is burn'd my": [0, 65535], "is burn'd my gold": [0, 65535], "burn'd my gold quoth": [0, 65535], "gold quoth he my": [0, 65535], "quoth he my mistresse": [0, 65535], "he my mistresse sir": [0, 65535], "my mistresse sir quoth": [0, 65535], "mistresse sir quoth i": [0, 65535], "sir quoth i hang": [0, 65535], "quoth i hang vp": [0, 65535], "i hang vp thy": [0, 65535], "hang vp thy mistresse": [0, 65535], "vp thy mistresse i": [0, 65535], "thy mistresse i know": [0, 65535], "mistresse i know not": [0, 65535], "i know not thy": [0, 65535], "know not thy mistresse": [0, 65535], "not thy mistresse out": [0, 65535], "thy mistresse out on": [0, 65535], "mistresse out on thy": [0, 65535], "out on thy mistresse": [0, 65535], "on thy mistresse luci": [0, 65535], "thy mistresse luci quoth": [0, 65535], "mistresse luci quoth who": [0, 65535], "luci quoth who e": [0, 65535], "quoth who e dr": [0, 65535], "who e dr quoth": [0, 65535], "e dr quoth my": [0, 65535], "dr quoth my master": [0, 65535], "quoth my master i": [0, 65535], "my master i know": [0, 65535], "master i know quoth": [0, 65535], "i know quoth he": [0, 65535], "know quoth he no": [0, 65535], "quoth he no house": [0, 65535], "he no house no": [0, 65535], "no house no wife": [0, 65535], "house no wife no": [0, 65535], "no wife no mistresse": [0, 65535], "wife no mistresse so": [0, 65535], "no mistresse so that": [0, 65535], "mistresse so that my": [0, 65535], "so that my arrant": [0, 65535], "that my arrant due": [0, 65535], "my arrant due vnto": [0, 65535], "arrant due vnto my": [0, 65535], "due vnto my tongue": [0, 65535], "vnto my tongue i": [0, 65535], "my tongue i thanke": [0, 65535], "tongue i thanke him": [0, 65535], "i thanke him i": [0, 65535], "thanke him i bare": [0, 65535], "him i bare home": [0, 65535], "i bare home vpon": [0, 65535], "bare home vpon my": [0, 65535], "home vpon my shoulders": [0, 65535], "vpon my shoulders for": [0, 65535], "my shoulders for in": [0, 65535], "shoulders for in conclusion": [0, 65535], "for in conclusion he": [0, 65535], "in conclusion he did": [0, 65535], "conclusion he did beat": [0, 65535], "he did beat me": [0, 65535], "did beat me there": [0, 65535], "beat me there adri": [0, 65535], "me there adri go": [0, 65535], "there adri go back": [0, 65535], "adri go back againe": [0, 65535], "go back againe thou": [0, 65535], "back againe thou slaue": [0, 65535], "againe thou slaue fetch": [0, 65535], "thou slaue fetch him": [0, 65535], "slaue fetch him home": [0, 65535], "fetch him home dro": [0, 65535], "him home dro goe": [0, 65535], "home dro goe backe": [0, 65535], "dro goe backe againe": [0, 65535], "goe backe againe and": [0, 65535], "backe againe and be": [0, 65535], "againe and be new": [0, 65535], "and be new beaten": [0, 65535], "be new beaten home": [0, 65535], "new beaten home for": [0, 65535], "beaten home for gods": [0, 65535], "home for gods sake": [0, 65535], "for gods sake send": [0, 65535], "gods sake send some": [0, 65535], "sake send some other": [0, 65535], "send some other messenger": [0, 65535], "some other messenger adri": [0, 65535], "other messenger adri backe": [0, 65535], "messenger adri backe slaue": [0, 65535], "adri backe slaue or": [0, 65535], "backe slaue or i": [0, 65535], "slaue or i will": [0, 65535], "or i will breake": [0, 65535], "i will breake thy": [0, 65535], "will breake thy pate": [0, 65535], "breake thy pate a": [0, 65535], "thy pate a crosse": [0, 65535], "pate a crosse dro": [0, 65535], "a crosse dro and": [0, 65535], "crosse dro and he": [0, 65535], "dro and he will": [0, 65535], "and he will blesse": [0, 65535], "he will blesse the": [0, 65535], "will blesse the crosse": [0, 65535], "blesse the crosse with": [0, 65535], "the crosse with other": [0, 65535], "crosse with other beating": [0, 65535], "with other beating betweene": [0, 65535], "other beating betweene you": [0, 65535], "beating betweene you i": [0, 65535], "betweene you i shall": [0, 65535], "you i shall haue": [0, 65535], "i shall haue a": [0, 65535], "shall haue a holy": [0, 65535], "haue a holy head": [0, 65535], "a holy head adri": [0, 65535], "holy head adri hence": [0, 65535], "head adri hence prating": [0, 65535], "adri hence prating pesant": [0, 65535], "hence prating pesant fetch": [0, 65535], "prating pesant fetch thy": [0, 65535], "pesant fetch thy master": [0, 65535], "fetch thy master home": [0, 65535], "thy master home dro": [0, 65535], "master home dro am": [0, 65535], "home dro am i": [0, 65535], "dro am i so": [0, 65535], "am i so round": [0, 65535], "i so round with": [0, 65535], "so round with you": [0, 65535], "round with you as": [0, 65535], "with you as you": [0, 65535], "you as you with": [0, 65535], "as you with me": [0, 65535], "you with me that": [0, 65535], "with me that like": [0, 65535], "me that like a": [0, 65535], "that like a foot": [0, 65535], "like a foot ball": [0, 65535], "a foot ball you": [0, 65535], "foot ball you doe": [0, 65535], "ball you doe spurne": [0, 65535], "you doe spurne me": [0, 65535], "doe spurne me thus": [0, 65535], "spurne me thus you": [0, 65535], "me thus you spurne": [0, 65535], "thus you spurne me": [0, 65535], "you spurne me hence": [0, 65535], "spurne me hence and": [0, 65535], "me hence and he": [0, 65535], "hence and he will": [0, 65535], "and he will spurne": [0, 65535], "he will spurne me": [0, 65535], "will spurne me hither": [0, 65535], "spurne me hither if": [0, 65535], "me hither if i": [0, 65535], "hither if i last": [0, 65535], "if i last in": [0, 65535], "i last in this": [0, 65535], "last in this seruice": [0, 65535], "in this seruice you": [0, 65535], "this seruice you must": [0, 65535], "seruice you must case": [0, 65535], "you must case me": [0, 65535], "must case me in": [0, 65535], "case me in leather": [0, 65535], "me in leather luci": [0, 65535], "in leather luci fie": [0, 65535], "leather luci fie how": [0, 65535], "luci fie how impatience": [0, 65535], "fie how impatience lowreth": [0, 65535], "how impatience lowreth in": [0, 65535], "impatience lowreth in your": [0, 65535], "lowreth in your face": [0, 65535], "in your face adri": [0, 65535], "your face adri his": [0, 65535], "face adri his company": [0, 65535], "adri his company must": [0, 65535], "his company must do": [0, 65535], "company must do his": [0, 65535], "must do his minions": [0, 65535], "do his minions grace": [0, 65535], "his minions grace whil'st": [0, 65535], "minions grace whil'st i": [0, 65535], "grace whil'st i at": [0, 65535], "whil'st i at home": [0, 65535], "i at home starue": [0, 65535], "at home starue for": [0, 65535], "home starue for a": [0, 65535], "starue for a merrie": [0, 65535], "for a merrie looke": [0, 65535], "a merrie looke hath": [0, 65535], "merrie looke hath homelie": [0, 65535], "looke hath homelie age": [0, 65535], "hath homelie age th'": [0, 65535], "homelie age th' alluring": [0, 65535], "age th' alluring beauty": [0, 65535], "th' alluring beauty tooke": [0, 65535], "alluring beauty tooke from": [0, 65535], "beauty tooke from my": [0, 65535], "tooke from my poore": [0, 65535], "from my poore cheeke": [0, 65535], "my poore cheeke then": [0, 65535], "poore cheeke then he": [0, 65535], "cheeke then he hath": [0, 65535], "then he hath wasted": [0, 65535], "he hath wasted it": [0, 65535], "hath wasted it are": [0, 65535], "wasted it are my": [0, 65535], "it are my discourses": [0, 65535], "are my discourses dull": [0, 65535], "my discourses dull barren": [0, 65535], "discourses dull barren my": [0, 65535], "dull barren my wit": [0, 65535], "barren my wit if": [0, 65535], "my wit if voluble": [0, 65535], "wit if voluble and": [0, 65535], "if voluble and sharpe": [0, 65535], "voluble and sharpe discourse": [0, 65535], "and sharpe discourse be": [0, 65535], "sharpe discourse be mar'd": [0, 65535], "discourse be mar'd vnkindnesse": [0, 65535], "be mar'd vnkindnesse blunts": [0, 65535], "mar'd vnkindnesse blunts it": [0, 65535], "vnkindnesse blunts it more": [0, 65535], "blunts it more then": [0, 65535], "it more then marble": [0, 65535], "more then marble hard": [0, 65535], "then marble hard doe": [0, 65535], "marble hard doe their": [0, 65535], "hard doe their gay": [0, 65535], "doe their gay vestments": [0, 65535], "their gay vestments his": [0, 65535], "gay vestments his affections": [0, 65535], "vestments his affections baite": [0, 65535], "his affections baite that's": [0, 65535], "affections baite that's not": [0, 65535], "baite that's not my": [0, 65535], "that's not my fault": [0, 65535], "not my fault hee's": [0, 65535], "my fault hee's master": [0, 65535], "fault hee's master of": [0, 65535], "hee's master of my": [0, 65535], "master of my state": [0, 65535], "of my state what": [0, 65535], "my state what ruines": [0, 65535], "state what ruines are": [0, 65535], "what ruines are in": [0, 65535], "ruines are in me": [0, 65535], "are in me that": [0, 65535], "in me that can": [0, 65535], "me that can be": [0, 65535], "that can be found": [0, 65535], "can be found by": [0, 65535], "be found by him": [0, 65535], "found by him not": [0, 65535], "by him not ruin'd": [0, 65535], "him not ruin'd then": [0, 65535], "not ruin'd then is": [0, 65535], "ruin'd then is he": [0, 65535], "then is he the": [0, 65535], "is he the ground": [0, 65535], "he the ground of": [0, 65535], "the ground of my": [0, 65535], "ground of my defeatures": [0, 65535], "of my defeatures my": [0, 65535], "my defeatures my decayed": [0, 65535], "defeatures my decayed faire": [0, 65535], "my decayed faire a": [0, 65535], "decayed faire a sunnie": [0, 65535], "faire a sunnie looke": [0, 65535], "a sunnie looke of": [0, 65535], "sunnie looke of his": [0, 65535], "looke of his would": [0, 65535], "of his would soone": [0, 65535], "his would soone repaire": [0, 65535], "would soone repaire but": [0, 65535], "soone repaire but too": [0, 65535], "repaire but too vnruly": [0, 65535], "but too vnruly deere": [0, 65535], "too vnruly deere he": [0, 65535], "vnruly deere he breakes": [0, 65535], "deere he breakes the": [0, 65535], "he breakes the pale": [0, 65535], "breakes the pale and": [0, 65535], "the pale and feedes": [0, 65535], "pale and feedes from": [0, 65535], "and feedes from home": [0, 65535], "feedes from home poore": [0, 65535], "from home poore i": [0, 65535], "home poore i am": [0, 65535], "poore i am but": [0, 65535], "i am but his": [0, 65535], "am but his stale": [0, 65535], "but his stale luci": [0, 65535], "his stale luci selfe": [0, 65535], "stale luci selfe harming": [0, 65535], "luci selfe harming iealousie": [0, 65535], "selfe harming iealousie fie": [0, 65535], "harming iealousie fie beat": [0, 65535], "iealousie fie beat it": [0, 65535], "fie beat it hence": [0, 65535], "beat it hence ad": [0, 65535], "it hence ad vnfeeling": [0, 65535], "hence ad vnfeeling fools": [0, 65535], "ad vnfeeling fools can": [0, 65535], "vnfeeling fools can with": [0, 65535], "fools can with such": [0, 65535], "can with such wrongs": [0, 65535], "with such wrongs dispence": [0, 65535], "such wrongs dispence i": [0, 65535], "wrongs dispence i know": [0, 65535], "dispence i know his": [0, 65535], "i know his eye": [0, 65535], "know his eye doth": [0, 65535], "his eye doth homage": [0, 65535], "eye doth homage other": [0, 65535], "doth homage other where": [0, 65535], "homage other where or": [0, 65535], "other where or else": [0, 65535], "where or else what": [0, 65535], "or else what lets": [0, 65535], "else what lets it": [0, 65535], "what lets it but": [0, 65535], "lets it but he": [0, 65535], "it but he would": [0, 65535], "but he would be": [0, 65535], "he would be here": [0, 65535], "would be here sister": [0, 65535], "be here sister you": [0, 65535], "here sister you know": [0, 65535], "sister you know he": [0, 65535], "you know he promis'd": [0, 65535], "know he promis'd me": [0, 65535], "he promis'd me a": [0, 65535], "promis'd me a chaine": [0, 65535], "me a chaine would": [0, 65535], "a chaine would that": [0, 65535], "chaine would that alone": [0, 65535], "would that alone a": [0, 65535], "that alone a loue": [0, 65535], "alone a loue he": [0, 65535], "a loue he would": [0, 65535], "loue he would detaine": [0, 65535], "he would detaine so": [0, 65535], "would detaine so he": [0, 65535], "detaine so he would": [0, 65535], "so he would keepe": [0, 65535], "he would keepe faire": [0, 65535], "would keepe faire quarter": [0, 65535], "keepe faire quarter with": [0, 65535], "faire quarter with his": [0, 65535], "quarter with his bed": [0, 65535], "with his bed i": [0, 65535], "his bed i see": [0, 65535], "bed i see the": [0, 65535], "i see the iewell": [0, 65535], "see the iewell best": [0, 65535], "the iewell best enamaled": [0, 65535], "iewell best enamaled will": [0, 65535], "best enamaled will loose": [0, 65535], "enamaled will loose his": [0, 65535], "will loose his beautie": [0, 65535], "loose his beautie yet": [0, 65535], "his beautie yet the": [0, 65535], "beautie yet the gold": [0, 65535], "yet the gold bides": [0, 65535], "the gold bides still": [0, 65535], "gold bides still that": [0, 65535], "bides still that others": [0, 65535], "still that others touch": [0, 65535], "that others touch and": [0, 65535], "others touch and often": [0, 65535], "touch and often touching": [0, 65535], "and often touching will": [0, 65535], "often touching will where": [0, 65535], "touching will where gold": [0, 65535], "will where gold and": [0, 65535], "where gold and no": [0, 65535], "gold and no man": [0, 65535], "and no man that": [0, 65535], "no man that hath": [0, 65535], "man that hath a": [0, 65535], "that hath a name": [0, 65535], "hath a name by": [0, 65535], "a name by falshood": [0, 65535], "name by falshood and": [0, 65535], "by falshood and corruption": [0, 65535], "falshood and corruption doth": [0, 65535], "and corruption doth it": [0, 65535], "corruption doth it shame": [0, 65535], "doth it shame since": [0, 65535], "it shame since that": [0, 65535], "shame since that my": [0, 65535], "since that my beautie": [0, 65535], "that my beautie cannot": [0, 65535], "my beautie cannot please": [0, 65535], "beautie cannot please his": [0, 65535], "cannot please his eie": [0, 65535], "please his eie ile": [0, 65535], "his eie ile weepe": [0, 65535], "eie ile weepe what's": [0, 65535], "ile weepe what's left": [0, 65535], "weepe what's left away": [0, 65535], "what's left away and": [0, 65535], "left away and weeping": [0, 65535], "away and weeping die": [0, 65535], "and weeping die luci": [0, 65535], "weeping die luci how": [0, 65535], "die luci how manie": [0, 65535], "luci how manie fond": [0, 65535], "how manie fond fooles": [0, 65535], "manie fond fooles serue": [0, 65535], "fond fooles serue mad": [0, 65535], "fooles serue mad ielousie": [0, 65535], "serue mad ielousie exit": [0, 65535], "mad ielousie exit enter": [0, 65535], "ielousie exit enter antipholis": [0, 65535], "exit enter antipholis errotis": [0, 65535], "enter antipholis errotis ant": [0, 65535], "antipholis errotis ant the": [0, 65535], "errotis ant the gold": [0, 65535], "ant the gold i": [0, 65535], "the gold i gaue": [0, 65535], "gold i gaue to": [0, 65535], "i gaue to dromio": [0, 65535], "gaue to dromio is": [0, 65535], "to dromio is laid": [0, 65535], "dromio is laid vp": [0, 65535], "is laid vp safe": [0, 65535], "laid vp safe at": [0, 65535], "vp safe at the": [0, 65535], "safe at the centaur": [0, 65535], "at the centaur and": [0, 65535], "the centaur and the": [0, 65535], "centaur and the heedfull": [0, 65535], "and the heedfull slaue": [0, 65535], "the heedfull slaue is": [0, 65535], "heedfull slaue is wandred": [0, 65535], "slaue is wandred forth": [0, 65535], "is wandred forth in": [0, 65535], "wandred forth in care": [0, 65535], "forth in care to": [0, 65535], "in care to seeke": [0, 65535], "care to seeke me": [0, 65535], "to seeke me out": [0, 65535], "seeke me out by": [0, 65535], "me out by computation": [0, 65535], "out by computation and": [0, 65535], "by computation and mine": [0, 65535], "computation and mine hosts": [0, 65535], "and mine hosts report": [0, 65535], "mine hosts report i": [0, 65535], "hosts report i could": [0, 65535], "report i could not": [0, 65535], "i could not speake": [0, 65535], "could not speake with": [0, 65535], "not speake with dromio": [0, 65535], "speake with dromio since": [0, 65535], "with dromio since at": [0, 65535], "dromio since at first": [0, 65535], "since at first i": [0, 65535], "at first i sent": [0, 65535], "first i sent him": [0, 65535], "i sent him from": [0, 65535], "sent him from the": [0, 65535], "him from the mart": [0, 65535], "from the mart see": [0, 65535], "the mart see here": [0, 65535], "mart see here he": [0, 65535], "see here he comes": [0, 65535], "here he comes enter": [0, 65535], "he comes enter dromio": [0, 65535], "comes enter dromio siracusia": [0, 65535], "enter dromio siracusia how": [0, 65535], "dromio siracusia how now": [0, 65535], "siracusia how now sir": [0, 65535], "how now sir is": [0, 65535], "now sir is your": [0, 65535], "sir is your merrie": [0, 65535], "is your merrie humor": [0, 65535], "your merrie humor alter'd": [0, 65535], "merrie humor alter'd as": [0, 65535], "humor alter'd as you": [0, 65535], "alter'd as you loue": [0, 65535], "as you loue stroakes": [0, 65535], "you loue stroakes so": [0, 65535], "loue stroakes so iest": [0, 65535], "stroakes so iest with": [0, 65535], "so iest with me": [0, 65535], "iest with me againe": [0, 65535], "with me againe you": [0, 65535], "me againe you know": [0, 65535], "againe you know no": [0, 65535], "you know no centaur": [0, 65535], "know no centaur you": [0, 65535], "no centaur you receiu'd": [0, 65535], "centaur you receiu'd no": [0, 65535], "you receiu'd no gold": [0, 65535], "receiu'd no gold your": [0, 65535], "no gold your mistresse": [0, 65535], "gold your mistresse sent": [0, 65535], "your mistresse sent to": [0, 65535], "mistresse sent to haue": [0, 65535], "sent to haue me": [0, 65535], "to haue me home": [0, 65535], "haue me home to": [0, 65535], "me home to dinner": [0, 65535], "home to dinner my": [0, 65535], "to dinner my house": [0, 65535], "dinner my house was": [0, 65535], "my house was at": [0, 65535], "house was at the": [0, 65535], "was at the ph\u0153nix": [0, 65535], "at the ph\u0153nix wast": [0, 65535], "the ph\u0153nix wast thou": [0, 65535], "ph\u0153nix wast thou mad": [0, 65535], "wast thou mad that": [0, 65535], "thou mad that thus": [0, 65535], "mad that thus so": [0, 65535], "that thus so madlie": [0, 65535], "thus so madlie thou": [0, 65535], "so madlie thou did": [0, 65535], "madlie thou did didst": [0, 65535], "thou did didst answere": [0, 65535], "did didst answere me": [0, 65535], "didst answere me s": [0, 65535], "answere me s dro": [0, 65535], "me s dro what": [0, 65535], "s dro what answer": [0, 65535], "dro what answer sir": [0, 65535], "what answer sir when": [0, 65535], "answer sir when spake": [0, 65535], "sir when spake i": [0, 65535], "when spake i such": [0, 65535], "spake i such a": [0, 65535], "i such a word": [0, 65535], "such a word e": [0, 65535], "a word e ant": [0, 65535], "word e ant euen": [0, 65535], "e ant euen now": [0, 65535], "ant euen now euen": [0, 65535], "euen now euen here": [0, 65535], "now euen here not": [0, 65535], "euen here not halfe": [0, 65535], "here not halfe an": [0, 65535], "not halfe an howre": [0, 65535], "halfe an howre since": [0, 65535], "an howre since s": [0, 65535], "howre since s dro": [0, 65535], "since s dro i": [0, 65535], "s dro i did": [0, 65535], "dro i did not": [0, 65535], "i did not see": [0, 65535], "did not see you": [0, 65535], "not see you since": [0, 65535], "see you since you": [0, 65535], "you since you sent": [0, 65535], "since you sent me": [0, 65535], "you sent me hence": [0, 65535], "sent me hence home": [0, 65535], "me hence home to": [0, 65535], "hence home to the": [0, 65535], "home to the centaur": [0, 65535], "to the centaur with": [0, 65535], "the centaur with the": [0, 65535], "centaur with the gold": [0, 65535], "with the gold you": [0, 65535], "the gold you gaue": [0, 65535], "gold you gaue me": [0, 65535], "you gaue me ant": [0, 65535], "gaue me ant villaine": [0, 65535], "me ant villaine thou": [0, 65535], "ant villaine thou didst": [0, 65535], "villaine thou didst denie": [0, 65535], "thou didst denie the": [0, 65535], "didst denie the golds": [0, 65535], "denie the golds receit": [0, 65535], "the golds receit and": [0, 65535], "golds receit and toldst": [0, 65535], "receit and toldst me": [0, 65535], "and toldst me of": [0, 65535], "toldst me of a": [0, 65535], "me of a mistresse": [0, 65535], "of a mistresse and": [0, 65535], "a mistresse and a": [0, 65535], "mistresse and a dinner": [0, 65535], "and a dinner for": [0, 65535], "a dinner for which": [0, 65535], "dinner for which i": [0, 65535], "for which i hope": [0, 65535], "which i hope thou": [0, 65535], "i hope thou feltst": [0, 65535], "hope thou feltst i": [0, 65535], "thou feltst i was": [0, 65535], "feltst i was displeas'd": [0, 65535], "i was displeas'd s": [0, 65535], "was displeas'd s dro": [0, 65535], "displeas'd s dro i": [0, 65535], "s dro i am": [0, 65535], "dro i am glad": [0, 65535], "i am glad to": [0, 65535], "am glad to see": [0, 65535], "glad to see you": [0, 65535], "to see you in": [0, 65535], "see you in this": [0, 65535], "you in this merrie": [0, 65535], "in this merrie vaine": [0, 65535], "this merrie vaine what": [0, 65535], "merrie vaine what meanes": [0, 65535], "vaine what meanes this": [0, 65535], "what meanes this iest": [0, 65535], "meanes this iest i": [0, 65535], "this iest i pray": [0, 65535], "iest i pray you": [0, 65535], "i pray you master": [0, 65535], "pray you master tell": [0, 65535], "you master tell me": [0, 65535], "master tell me ant": [0, 65535], "tell me ant yea": [0, 65535], "me ant yea dost": [0, 65535], "ant yea dost thou": [0, 65535], "yea dost thou ieere": [0, 65535], "dost thou ieere flowt": [0, 65535], "thou ieere flowt me": [0, 65535], "ieere flowt me in": [0, 65535], "flowt me in the": [0, 65535], "me in the teeth": [0, 65535], "in the teeth thinkst": [0, 65535], "the teeth thinkst thou": [0, 65535], "teeth thinkst thou i": [0, 65535], "thinkst thou i iest": [0, 65535], "thou i iest hold": [0, 65535], "i iest hold take": [0, 65535], "iest hold take thou": [0, 65535], "hold take thou that": [0, 65535], "take thou that that": [0, 65535], "thou that that beats": [0, 65535], "that that beats dro": [0, 65535], "that beats dro s": [0, 65535], "beats dro s dr": [0, 65535], "dro s dr hold": [0, 65535], "s dr hold sir": [0, 65535], "dr hold sir for": [0, 65535], "hold sir for gods": [0, 65535], "sir for gods sake": [0, 65535], "for gods sake now": [0, 65535], "gods sake now your": [0, 65535], "sake now your iest": [0, 65535], "now your iest is": [0, 65535], "your iest is earnest": [0, 65535], "iest is earnest vpon": [0, 65535], "is earnest vpon what": [0, 65535], "earnest vpon what bargaine": [0, 65535], "vpon what bargaine do": [0, 65535], "what bargaine do you": [0, 65535], "bargaine do you giue": [0, 65535], "do you giue it": [0, 65535], "you giue it me": [0, 65535], "giue it me antiph": [0, 65535], "it me antiph because": [0, 65535], "me antiph because that": [0, 65535], "antiph because that i": [0, 65535], "because that i familiarlie": [0, 65535], "that i familiarlie sometimes": [0, 65535], "i familiarlie sometimes doe": [0, 65535], "familiarlie sometimes doe vse": [0, 65535], "sometimes doe vse you": [0, 65535], "doe vse you for": [0, 65535], "vse you for my": [0, 65535], "you for my foole": [0, 65535], "for my foole and": [0, 65535], "my foole and chat": [0, 65535], "foole and chat with": [0, 65535], "and chat with you": [0, 65535], "chat with you your": [0, 65535], "with you your sawcinesse": [0, 65535], "you your sawcinesse will": [0, 65535], "your sawcinesse will iest": [0, 65535], "sawcinesse will iest vpon": [0, 65535], "will iest vpon my": [0, 65535], "iest vpon my loue": [0, 65535], "vpon my loue and": [0, 65535], "my loue and make": [0, 65535], "loue and make a": [0, 65535], "and make a common": [0, 65535], "make a common of": [0, 65535], "a common of my": [0, 65535], "common of my serious": [0, 65535], "of my serious howres": [0, 65535], "my serious howres when": [0, 65535], "serious howres when the": [0, 65535], "howres when the sunne": [0, 65535], "when the sunne shines": [0, 65535], "the sunne shines let": [0, 65535], "sunne shines let foolish": [0, 65535], "shines let foolish gnats": [0, 65535], "let foolish gnats make": [0, 65535], "foolish gnats make sport": [0, 65535], "gnats make sport but": [0, 65535], "make sport but creepe": [0, 65535], "sport but creepe in": [0, 65535], "but creepe in crannies": [0, 65535], "creepe in crannies when": [0, 65535], "in crannies when he": [0, 65535], "crannies when he hides": [0, 65535], "when he hides his": [0, 65535], "he hides his beames": [0, 65535], "hides his beames if": [0, 65535], "his beames if you": [0, 65535], "beames if you will": [0, 65535], "if you will iest": [0, 65535], "you will iest with": [0, 65535], "will iest with me": [0, 65535], "iest with me know": [0, 65535], "with me know my": [0, 65535], "me know my aspect": [0, 65535], "know my aspect and": [0, 65535], "my aspect and fashion": [0, 65535], "aspect and fashion your": [0, 65535], "and fashion your demeanor": [0, 65535], "fashion your demeanor to": [0, 65535], "your demeanor to my": [0, 65535], "demeanor to my lookes": [0, 65535], "to my lookes or": [0, 65535], "my lookes or i": [0, 65535], "lookes or i will": [0, 65535], "or i will beat": [0, 65535], "i will beat this": [0, 65535], "will beat this method": [0, 65535], "beat this method in": [0, 65535], "this method in your": [0, 65535], "method in your sconce": [0, 65535], "in your sconce s": [0, 65535], "your sconce s dro": [0, 65535], "sconce s dro sconce": [0, 65535], "s dro sconce call": [0, 65535], "dro sconce call you": [0, 65535], "sconce call you it": [0, 65535], "call you it so": [0, 65535], "you it so you": [0, 65535], "it so you would": [0, 65535], "so you would leaue": [0, 65535], "you would leaue battering": [0, 65535], "would leaue battering i": [0, 65535], "leaue battering i had": [0, 65535], "battering i had rather": [0, 65535], "i had rather haue": [0, 65535], "had rather haue it": [0, 65535], "rather haue it a": [0, 65535], "haue it a head": [0, 65535], "it a head and": [0, 65535], "a head and you": [0, 65535], "head and you vse": [0, 65535], "and you vse these": [0, 65535], "you vse these blows": [0, 65535], "vse these blows long": [0, 65535], "these blows long i": [0, 65535], "blows long i must": [0, 65535], "long i must get": [0, 65535], "i must get a": [0, 65535], "must get a sconce": [0, 65535], "get a sconce for": [0, 65535], "a sconce for my": [0, 65535], "sconce for my head": [0, 65535], "for my head and": [0, 65535], "my head and insconce": [0, 65535], "head and insconce it": [0, 65535], "and insconce it to": [0, 65535], "insconce it to or": [0, 65535], "it to or else": [0, 65535], "to or else i": [0, 65535], "or else i shall": [0, 65535], "else i shall seek": [0, 65535], "i shall seek my": [0, 65535], "shall seek my wit": [0, 65535], "seek my wit in": [0, 65535], "my wit in my": [0, 65535], "wit in my shoulders": [0, 65535], "in my shoulders but": [0, 65535], "my shoulders but i": [0, 65535], "shoulders but i pray": [0, 65535], "but i pray sir": [0, 65535], "i pray sir why": [0, 65535], "pray sir why am": [0, 65535], "sir why am i": [0, 65535], "why am i beaten": [0, 65535], "am i beaten ant": [0, 65535], "i beaten ant dost": [0, 65535], "beaten ant dost thou": [0, 65535], "ant dost thou not": [0, 65535], "dost thou not know": [0, 65535], "thou not know s": [0, 65535], "not know s dro": [0, 65535], "know s dro nothing": [0, 65535], "s dro nothing sir": [0, 65535], "dro nothing sir but": [0, 65535], "nothing sir but that": [0, 65535], "sir but that i": [0, 65535], "but that i am": [0, 65535], "that i am beaten": [0, 65535], "i am beaten ant": [0, 65535], "am beaten ant shall": [0, 65535], "beaten ant shall i": [0, 65535], "ant shall i tell": [0, 65535], "shall i tell you": [0, 65535], "i tell you why": [0, 65535], "tell you why s": [0, 65535], "you why s dro": [0, 65535], "why s dro i": [0, 65535], "s dro i sir": [0, 65535], "dro i sir and": [0, 65535], "i sir and wherefore": [0, 65535], "sir and wherefore for": [0, 65535], "and wherefore for they": [0, 65535], "wherefore for they say": [0, 65535], "for they say euery": [0, 65535], "they say euery why": [0, 65535], "say euery why hath": [0, 65535], "euery why hath a": [0, 65535], "why hath a wherefore": [0, 65535], "hath a wherefore ant": [0, 65535], "a wherefore ant why": [0, 65535], "wherefore ant why first": [0, 65535], "ant why first for": [0, 65535], "why first for flowting": [0, 65535], "first for flowting me": [0, 65535], "for flowting me and": [0, 65535], "flowting me and then": [0, 65535], "me and then wherefore": [0, 65535], "and then wherefore for": [0, 65535], "then wherefore for vrging": [0, 65535], "wherefore for vrging it": [0, 65535], "for vrging it the": [0, 65535], "vrging it the second": [0, 65535], "it the second time": [0, 65535], "the second time to": [0, 65535], "second time to me": [0, 65535], "time to me s": [0, 65535], "to me s dro": [0, 65535], "me s dro was": [0, 65535], "s dro was there": [0, 65535], "dro was there euer": [0, 65535], "was there euer anie": [0, 65535], "there euer anie man": [0, 65535], "euer anie man thus": [0, 65535], "anie man thus beaten": [0, 65535], "man thus beaten out": [0, 65535], "thus beaten out of": [0, 65535], "beaten out of season": [0, 65535], "out of season when": [0, 65535], "of season when in": [0, 65535], "season when in the": [0, 65535], "when in the why": [0, 65535], "in the why and": [0, 65535], "the why and the": [0, 65535], "why and the wherefore": [0, 65535], "and the wherefore is": [0, 65535], "the wherefore is neither": [0, 65535], "wherefore is neither rime": [0, 65535], "is neither rime nor": [0, 65535], "neither rime nor reason": [0, 65535], "rime nor reason well": [0, 65535], "nor reason well sir": [0, 65535], "reason well sir i": [0, 65535], "well sir i thanke": [0, 65535], "sir i thanke you": [0, 65535], "i thanke you ant": [0, 65535], "thanke you ant thanke": [0, 65535], "you ant thanke me": [0, 65535], "ant thanke me sir": [0, 65535], "thanke me sir for": [0, 65535], "me sir for what": [0, 65535], "sir for what s": [0, 65535], "for what s dro": [0, 65535], "what s dro marry": [0, 65535], "s dro marry sir": [0, 65535], "dro marry sir for": [0, 65535], "marry sir for this": [0, 65535], "sir for this something": [0, 65535], "for this something that": [0, 65535], "this something that you": [0, 65535], "something that you gaue": [0, 65535], "that you gaue me": [0, 65535], "you gaue me for": [0, 65535], "gaue me for nothing": [0, 65535], "me for nothing ant": [0, 65535], "for nothing ant ile": [0, 65535], "nothing ant ile make": [0, 65535], "ant ile make you": [0, 65535], "ile make you amends": [0, 65535], "make you amends next": [0, 65535], "you amends next to": [0, 65535], "amends next to giue": [0, 65535], "next to giue you": [0, 65535], "to giue you nothing": [0, 65535], "giue you nothing for": [0, 65535], "you nothing for something": [0, 65535], "nothing for something but": [0, 65535], "for something but say": [0, 65535], "something but say sir": [0, 65535], "but say sir is": [0, 65535], "say sir is it": [0, 65535], "sir is it dinner": [0, 65535], "is it dinner time": [0, 65535], "it dinner time s": [0, 65535], "dinner time s dro": [0, 65535], "time s dro no": [0, 65535], "s dro no sir": [0, 65535], "dro no sir i": [0, 65535], "no sir i thinke": [0, 65535], "sir i thinke the": [0, 65535], "i thinke the meat": [0, 65535], "thinke the meat wants": [0, 65535], "the meat wants that": [0, 65535], "meat wants that i": [0, 65535], "wants that i haue": [0, 65535], "that i haue ant": [0, 65535], "i haue ant in": [0, 65535], "haue ant in good": [0, 65535], "ant in good time": [0, 65535], "in good time sir": [0, 65535], "good time sir what's": [0, 65535], "time sir what's that": [0, 65535], "sir what's that s": [0, 65535], "what's that s dro": [0, 65535], "that s dro basting": [0, 65535], "s dro basting ant": [0, 65535], "dro basting ant well": [0, 65535], "basting ant well sir": [0, 65535], "ant well sir then": [0, 65535], "well sir then 'twill": [0, 65535], "sir then 'twill be": [0, 65535], "then 'twill be drie": [0, 65535], "'twill be drie s": [0, 65535], "be drie s dro": [0, 65535], "drie s dro if": [0, 65535], "s dro if it": [0, 65535], "dro if it be": [0, 65535], "if it be sir": [0, 65535], "it be sir i": [0, 65535], "be sir i pray": [0, 65535], "sir i pray you": [0, 65535], "i pray you eat": [0, 65535], "pray you eat none": [0, 65535], "you eat none of": [0, 65535], "eat none of it": [0, 65535], "none of it ant": [0, 65535], "of it ant your": [0, 65535], "it ant your reason": [0, 65535], "ant your reason s": [0, 65535], "your reason s dro": [0, 65535], "reason s dro lest": [0, 65535], "s dro lest it": [0, 65535], "dro lest it make": [0, 65535], "lest it make you": [0, 65535], "it make you chollericke": [0, 65535], "make you chollericke and": [0, 65535], "you chollericke and purchase": [0, 65535], "chollericke and purchase me": [0, 65535], "and purchase me another": [0, 65535], "purchase me another drie": [0, 65535], "me another drie basting": [0, 65535], "another drie basting ant": [0, 65535], "drie basting ant well": [0, 65535], "ant well sir learne": [0, 65535], "well sir learne to": [0, 65535], "sir learne to iest": [0, 65535], "learne to iest in": [0, 65535], "to iest in good": [0, 65535], "iest in good time": [0, 65535], "in good time there's": [0, 65535], "good time there's a": [0, 65535], "time there's a time": [0, 65535], "there's a time for": [0, 65535], "a time for all": [0, 65535], "time for all things": [0, 65535], "for all things s": [0, 65535], "all things s dro": [0, 65535], "things s dro i": [0, 65535], "s dro i durst": [0, 65535], "dro i durst haue": [0, 65535], "i durst haue denied": [0, 65535], "durst haue denied that": [0, 65535], "haue denied that before": [0, 65535], "denied that before you": [0, 65535], "that before you were": [0, 65535], "before you were so": [0, 65535], "you were so chollericke": [0, 65535], "were so chollericke anti": [0, 65535], "so chollericke anti by": [0, 65535], "chollericke anti by what": [0, 65535], "anti by what rule": [0, 65535], "by what rule sir": [0, 65535], "what rule sir s": [0, 65535], "rule sir s dro": [0, 65535], "sir s dro marry": [0, 65535], "dro marry sir by": [0, 65535], "marry sir by a": [0, 65535], "sir by a rule": [0, 65535], "by a rule as": [0, 65535], "a rule as plaine": [0, 65535], "rule as plaine as": [0, 65535], "as plaine as the": [0, 65535], "plaine as the plaine": [0, 65535], "as the plaine bald": [0, 65535], "the plaine bald pate": [0, 65535], "plaine bald pate of": [0, 65535], "bald pate of father": [0, 65535], "pate of father time": [0, 65535], "of father time himselfe": [0, 65535], "father time himselfe ant": [0, 65535], "time himselfe ant let's": [0, 65535], "himselfe ant let's heare": [0, 65535], "ant let's heare it": [0, 65535], "let's heare it s": [0, 65535], "heare it s dro": [0, 65535], "it s dro there's": [0, 65535], "s dro there's no": [0, 65535], "dro there's no time": [0, 65535], "there's no time for": [0, 65535], "no time for a": [0, 65535], "time for a man": [0, 65535], "for a man to": [0, 65535], "a man to recouer": [0, 65535], "man to recouer his": [0, 65535], "to recouer his haire": [0, 65535], "recouer his haire that": [0, 65535], "his haire that growes": [0, 65535], "haire that growes bald": [0, 65535], "that growes bald by": [0, 65535], "growes bald by nature": [0, 65535], "bald by nature ant": [0, 65535], "by nature ant may": [0, 65535], "nature ant may he": [0, 65535], "ant may he not": [0, 65535], "may he not doe": [0, 65535], "he not doe it": [0, 65535], "not doe it by": [0, 65535], "doe it by fine": [0, 65535], "it by fine and": [0, 65535], "by fine and recouerie": [0, 65535], "fine and recouerie s": [0, 65535], "and recouerie s dro": [0, 65535], "recouerie s dro yes": [0, 65535], "s dro yes to": [0, 65535], "dro yes to pay": [0, 65535], "yes to pay a": [0, 65535], "to pay a fine": [0, 65535], "pay a fine for": [0, 65535], "a fine for a": [0, 65535], "fine for a perewig": [0, 65535], "for a perewig and": [0, 65535], "a perewig and recouer": [0, 65535], "perewig and recouer the": [0, 65535], "and recouer the lost": [0, 65535], "recouer the lost haire": [0, 65535], "the lost haire of": [0, 65535], "lost haire of another": [0, 65535], "haire of another man": [0, 65535], "of another man ant": [0, 65535], "another man ant why": [0, 65535], "man ant why is": [0, 65535], "ant why is time": [0, 65535], "why is time such": [0, 65535], "is time such a": [0, 65535], "time such a niggard": [0, 65535], "such a niggard of": [0, 65535], "a niggard of haire": [0, 65535], "niggard of haire being": [0, 65535], "of haire being as": [0, 65535], "haire being as it": [0, 65535], "being as it is": [0, 65535], "as it is so": [0, 65535], "it is so plentifull": [0, 65535], "is so plentifull an": [0, 65535], "so plentifull an excrement": [0, 65535], "plentifull an excrement s": [0, 65535], "an excrement s dro": [0, 65535], "excrement s dro because": [0, 65535], "s dro because it": [0, 65535], "dro because it is": [0, 65535], "because it is a": [0, 65535], "it is a blessing": [0, 65535], "is a blessing that": [0, 65535], "a blessing that hee": [0, 65535], "blessing that hee bestowes": [0, 65535], "that hee bestowes on": [0, 65535], "hee bestowes on beasts": [0, 65535], "bestowes on beasts and": [0, 65535], "on beasts and what": [0, 65535], "beasts and what he": [0, 65535], "and what he hath": [0, 65535], "what he hath scanted": [0, 65535], "he hath scanted them": [0, 65535], "hath scanted them in": [0, 65535], "scanted them in haire": [0, 65535], "them in haire hee": [0, 65535], "in haire hee hath": [0, 65535], "haire hee hath giuen": [0, 65535], "hee hath giuen them": [0, 65535], "hath giuen them in": [0, 65535], "giuen them in wit": [0, 65535], "them in wit ant": [0, 65535], "in wit ant why": [0, 65535], "wit ant why but": [0, 65535], "ant why but theres": [0, 65535], "why but theres manie": [0, 65535], "but theres manie a": [0, 65535], "theres manie a man": [0, 65535], "manie a man hath": [0, 65535], "a man hath more": [0, 65535], "man hath more haire": [0, 65535], "hath more haire then": [0, 65535], "more haire then wit": [0, 65535], "haire then wit s": [0, 65535], "then wit s dro": [0, 65535], "wit s dro not": [0, 65535], "s dro not a": [0, 65535], "dro not a man": [0, 65535], "not a man of": [0, 65535], "a man of those": [0, 65535], "man of those but": [0, 65535], "of those but he": [0, 65535], "those but he hath": [0, 65535], "but he hath the": [0, 65535], "he hath the wit": [0, 65535], "hath the wit to": [0, 65535], "the wit to lose": [0, 65535], "wit to lose his": [0, 65535], "to lose his haire": [0, 65535], "lose his haire ant": [0, 65535], "his haire ant why": [0, 65535], "haire ant why thou": [0, 65535], "ant why thou didst": [0, 65535], "why thou didst conclude": [0, 65535], "thou didst conclude hairy": [0, 65535], "didst conclude hairy men": [0, 65535], "conclude hairy men plain": [0, 65535], "hairy men plain dealers": [0, 65535], "men plain dealers without": [0, 65535], "plain dealers without wit": [0, 65535], "dealers without wit s": [0, 65535], "without wit s dro": [0, 65535], "wit s dro the": [0, 65535], "s dro the plainer": [0, 65535], "dro the plainer dealer": [0, 65535], "the plainer dealer the": [0, 65535], "plainer dealer the sooner": [0, 65535], "dealer the sooner lost": [0, 65535], "the sooner lost yet": [0, 65535], "sooner lost yet he": [0, 65535], "lost yet he looseth": [0, 65535], "yet he looseth it": [0, 65535], "he looseth it in": [0, 65535], "looseth it in a": [0, 65535], "it in a kinde": [0, 65535], "in a kinde of": [0, 65535], "a kinde of iollitie": [0, 65535], "kinde of iollitie an": [0, 65535], "of iollitie an for": [0, 65535], "iollitie an for what": [0, 65535], "an for what reason": [0, 65535], "for what reason s": [0, 65535], "what reason s dro": [0, 65535], "reason s dro for": [0, 65535], "s dro for two": [0, 65535], "dro for two and": [0, 65535], "for two and sound": [0, 65535], "two and sound ones": [0, 65535], "and sound ones to": [0, 65535], "sound ones to an": [0, 65535], "ones to an nay": [0, 65535], "to an nay not": [0, 65535], "an nay not sound": [0, 65535], "nay not sound i": [0, 65535], "not sound i pray": [0, 65535], "sound i pray you": [0, 65535], "i pray you s": [0, 65535], "pray you s dro": [0, 65535], "you s dro sure": [0, 65535], "s dro sure ones": [0, 65535], "dro sure ones then": [0, 65535], "sure ones then an": [0, 65535], "ones then an nay": [0, 65535], "then an nay not": [0, 65535], "an nay not sure": [0, 65535], "nay not sure in": [0, 65535], "not sure in a": [0, 65535], "sure in a thing": [0, 65535], "in a thing falsing": [0, 65535], "a thing falsing s": [0, 65535], "thing falsing s dro": [0, 65535], "falsing s dro certaine": [0, 65535], "s dro certaine ones": [0, 65535], "dro certaine ones then": [0, 65535], "certaine ones then an": [0, 65535], "ones then an name": [0, 65535], "then an name them": [0, 65535], "an name them s": [0, 65535], "name them s dro": [0, 65535], "them s dro the": [0, 65535], "s dro the one": [0, 65535], "dro the one to": [0, 65535], "the one to saue": [0, 65535], "one to saue the": [0, 65535], "to saue the money": [0, 65535], "saue the money that": [0, 65535], "the money that he": [0, 65535], "money that he spends": [0, 65535], "that he spends in": [0, 65535], "he spends in trying": [0, 65535], "spends in trying the": [0, 65535], "in trying the other": [0, 65535], "trying the other that": [0, 65535], "the other that at": [0, 65535], "other that at dinner": [0, 65535], "that at dinner they": [0, 65535], "at dinner they should": [0, 65535], "dinner they should not": [0, 65535], "they should not drop": [0, 65535], "should not drop in": [0, 65535], "not drop in his": [0, 65535], "drop in his porrage": [0, 65535], "in his porrage an": [0, 65535], "his porrage an you": [0, 65535], "porrage an you would": [0, 65535], "an you would all": [0, 65535], "you would all this": [0, 65535], "would all this time": [0, 65535], "all this time haue": [0, 65535], "this time haue prou'd": [0, 65535], "time haue prou'd there": [0, 65535], "haue prou'd there is": [0, 65535], "prou'd there is no": [0, 65535], "there is no time": [0, 65535], "is no time for": [0, 65535], "no time for all": [0, 65535], "things s dro marry": [0, 65535], "s dro marry and": [0, 65535], "dro marry and did": [0, 65535], "marry and did sir": [0, 65535], "and did sir namely": [0, 65535], "did sir namely in": [0, 65535], "sir namely in no": [0, 65535], "namely in no time": [0, 65535], "in no time to": [0, 65535], "no time to recouer": [0, 65535], "time to recouer haire": [0, 65535], "to recouer haire lost": [0, 65535], "recouer haire lost by": [0, 65535], "haire lost by nature": [0, 65535], "lost by nature an": [0, 65535], "by nature an but": [0, 65535], "nature an but your": [0, 65535], "an but your reason": [0, 65535], "but your reason was": [0, 65535], "your reason was not": [0, 65535], "reason was not substantiall": [0, 65535], "was not substantiall why": [0, 65535], "not substantiall why there": [0, 65535], "substantiall why there is": [0, 65535], "why there is no": [0, 65535], "is no time to": [0, 65535], "time to recouer s": [0, 65535], "to recouer s dro": [0, 65535], "recouer s dro thus": [0, 65535], "s dro thus i": [0, 65535], "dro thus i mend": [0, 65535], "thus i mend it": [0, 65535], "i mend it time": [0, 65535], "mend it time himselfe": [0, 65535], "it time himselfe is": [0, 65535], "time himselfe is bald": [0, 65535], "himselfe is bald and": [0, 65535], "is bald and therefore": [0, 65535], "bald and therefore to": [0, 65535], "and therefore to the": [0, 65535], "therefore to the worlds": [0, 65535], "to the worlds end": [0, 65535], "the worlds end will": [0, 65535], "worlds end will haue": [0, 65535], "end will haue bald": [0, 65535], "will haue bald followers": [0, 65535], "haue bald followers an": [0, 65535], "bald followers an i": [0, 65535], "followers an i knew": [0, 65535], "an i knew 'twould": [0, 65535], "i knew 'twould be": [0, 65535], "knew 'twould be a": [0, 65535], "'twould be a bald": [0, 65535], "be a bald conclusion": [0, 65535], "a bald conclusion but": [0, 65535], "bald conclusion but soft": [0, 65535], "conclusion but soft who": [0, 65535], "but soft who wafts": [0, 65535], "soft who wafts vs": [0, 65535], "who wafts vs yonder": [0, 65535], "wafts vs yonder enter": [0, 65535], "vs yonder enter adriana": [0, 65535], "yonder enter adriana and": [0, 65535], "enter adriana and luciana": [0, 65535], "adriana and luciana adri": [0, 65535], "and luciana adri i": [0, 65535], "luciana adri i i": [0, 65535], "adri i i antipholus": [0, 65535], "i i antipholus looke": [0, 65535], "i antipholus looke strange": [0, 65535], "antipholus looke strange and": [0, 65535], "looke strange and frowne": [0, 65535], "strange and frowne some": [0, 65535], "and frowne some other": [0, 65535], "frowne some other mistresse": [0, 65535], "some other mistresse hath": [0, 65535], "other mistresse hath thy": [0, 65535], "mistresse hath thy sweet": [0, 65535], "hath thy sweet aspects": [0, 65535], "thy sweet aspects i": [0, 65535], "sweet aspects i am": [0, 65535], "aspects i am not": [0, 65535], "i am not adriana": [0, 65535], "am not adriana nor": [0, 65535], "not adriana nor thy": [0, 65535], "adriana nor thy wife": [0, 65535], "nor thy wife the": [0, 65535], "thy wife the time": [0, 65535], "wife the time was": [0, 65535], "the time was once": [0, 65535], "time was once when": [0, 65535], "was once when thou": [0, 65535], "once when thou vn": [0, 65535], "when thou vn vrg'd": [0, 65535], "thou vn vrg'd wouldst": [0, 65535], "vn vrg'd wouldst vow": [0, 65535], "vrg'd wouldst vow that": [0, 65535], "wouldst vow that neuer": [0, 65535], "vow that neuer words": [0, 65535], "that neuer words were": [0, 65535], "neuer words were musicke": [0, 65535], "words were musicke to": [0, 65535], "were musicke to thine": [0, 65535], "musicke to thine eare": [0, 65535], "to thine eare that": [0, 65535], "thine eare that neuer": [0, 65535], "eare that neuer obiect": [0, 65535], "that neuer obiect pleasing": [0, 65535], "neuer obiect pleasing in": [0, 65535], "obiect pleasing in thine": [0, 65535], "pleasing in thine eye": [0, 65535], "in thine eye that": [0, 65535], "thine eye that neuer": [0, 65535], "eye that neuer touch": [0, 65535], "that neuer touch well": [0, 65535], "neuer touch well welcome": [0, 65535], "touch well welcome to": [0, 65535], "well welcome to thy": [0, 65535], "welcome to thy hand": [0, 65535], "to thy hand that": [0, 65535], "thy hand that neuer": [0, 65535], "hand that neuer meat": [0, 65535], "that neuer meat sweet": [0, 65535], "neuer meat sweet sauour'd": [0, 65535], "meat sweet sauour'd in": [0, 65535], "sweet sauour'd in thy": [0, 65535], "sauour'd in thy taste": [0, 65535], "in thy taste vnlesse": [0, 65535], "thy taste vnlesse i": [0, 65535], "taste vnlesse i spake": [0, 65535], "vnlesse i spake or": [0, 65535], "i spake or look'd": [0, 65535], "spake or look'd or": [0, 65535], "or look'd or touch'd": [0, 65535], "look'd or touch'd or": [0, 65535], "or touch'd or caru'd": [0, 65535], "touch'd or caru'd to": [0, 65535], "or caru'd to thee": [0, 65535], "caru'd to thee how": [0, 65535], "to thee how comes": [0, 65535], "thee how comes it": [0, 65535], "how comes it now": [0, 65535], "comes it now my": [0, 65535], "it now my husband": [0, 65535], "now my husband oh": [0, 65535], "my husband oh how": [0, 65535], "husband oh how comes": [0, 65535], "oh how comes it": [0, 65535], "how comes it that": [0, 65535], "comes it that thou": [0, 65535], "it that thou art": [0, 65535], "that thou art then": [0, 65535], "thou art then estranged": [0, 65535], "art then estranged from": [0, 65535], "then estranged from thy": [0, 65535], "estranged from thy selfe": [0, 65535], "from thy selfe thy": [0, 65535], "thy selfe thy selfe": [0, 65535], "selfe thy selfe i": [0, 65535], "thy selfe i call": [0, 65535], "selfe i call it": [0, 65535], "i call it being": [0, 65535], "call it being strange": [0, 65535], "it being strange to": [0, 65535], "being strange to me": [0, 65535], "strange to me that": [0, 65535], "to me that vndiuidable": [0, 65535], "me that vndiuidable incorporate": [0, 65535], "that vndiuidable incorporate am": [0, 65535], "vndiuidable incorporate am better": [0, 65535], "incorporate am better then": [0, 65535], "am better then thy": [0, 65535], "better then thy deere": [0, 65535], "then thy deere selfes": [0, 65535], "thy deere selfes better": [0, 65535], "deere selfes better part": [0, 65535], "selfes better part ah": [0, 65535], "better part ah doe": [0, 65535], "part ah doe not": [0, 65535], "ah doe not teare": [0, 65535], "doe not teare away": [0, 65535], "not teare away thy": [0, 65535], "teare away thy selfe": [0, 65535], "away thy selfe from": [0, 65535], "thy selfe from me": [0, 65535], "selfe from me for": [0, 65535], "from me for know": [0, 65535], "me for know my": [0, 65535], "for know my loue": [0, 65535], "know my loue as": [0, 65535], "my loue as easie": [0, 65535], "loue as easie maist": [0, 65535], "as easie maist thou": [0, 65535], "easie maist thou fall": [0, 65535], "maist thou fall a": [0, 65535], "thou fall a drop": [0, 65535], "fall a drop of": [0, 65535], "a drop of water": [0, 65535], "drop of water in": [0, 65535], "of water in the": [0, 65535], "water in the breaking": [0, 65535], "in the breaking gulfe": [0, 65535], "the breaking gulfe and": [0, 65535], "breaking gulfe and take": [0, 65535], "gulfe and take vnmingled": [0, 65535], "and take vnmingled thence": [0, 65535], "take vnmingled thence that": [0, 65535], "vnmingled thence that drop": [0, 65535], "thence that drop againe": [0, 65535], "that drop againe without": [0, 65535], "drop againe without addition": [0, 65535], "againe without addition or": [0, 65535], "without addition or diminishing": [0, 65535], "addition or diminishing as": [0, 65535], "or diminishing as take": [0, 65535], "diminishing as take from": [0, 65535], "as take from me": [0, 65535], "take from me thy": [0, 65535], "from me thy selfe": [0, 65535], "me thy selfe and": [0, 65535], "thy selfe and not": [0, 65535], "selfe and not me": [0, 65535], "and not me too": [0, 65535], "not me too how": [0, 65535], "me too how deerely": [0, 65535], "too how deerely would": [0, 65535], "how deerely would it": [0, 65535], "deerely would it touch": [0, 65535], "would it touch thee": [0, 65535], "it touch thee to": [0, 65535], "touch thee to the": [0, 65535], "thee to the quicke": [0, 65535], "to the quicke shouldst": [0, 65535], "the quicke shouldst thou": [0, 65535], "quicke shouldst thou but": [0, 65535], "shouldst thou but heare": [0, 65535], "thou but heare i": [0, 65535], "but heare i were": [0, 65535], "heare i were licencious": [0, 65535], "i were licencious and": [0, 65535], "were licencious and that": [0, 65535], "licencious and that this": [0, 65535], "and that this body": [0, 65535], "that this body consecrate": [0, 65535], "this body consecrate to": [0, 65535], "body consecrate to thee": [0, 65535], "consecrate to thee by": [0, 65535], "to thee by ruffian": [0, 65535], "thee by ruffian lust": [0, 65535], "by ruffian lust should": [0, 65535], "ruffian lust should be": [0, 65535], "lust should be contaminate": [0, 65535], "should be contaminate wouldst": [0, 65535], "be contaminate wouldst thou": [0, 65535], "contaminate wouldst thou not": [0, 65535], "wouldst thou not spit": [0, 65535], "thou not spit at": [0, 65535], "not spit at me": [0, 65535], "spit at me and": [0, 65535], "at me and spurne": [0, 65535], "me and spurne at": [0, 65535], "and spurne at me": [0, 65535], "spurne at me and": [0, 65535], "at me and hurle": [0, 65535], "me and hurle the": [0, 65535], "and hurle the name": [0, 65535], "hurle the name of": [0, 65535], "the name of husband": [0, 65535], "name of husband in": [0, 65535], "of husband in my": [0, 65535], "husband in my face": [0, 65535], "in my face and": [0, 65535], "my face and teare": [0, 65535], "face and teare the": [0, 65535], "and teare the stain'd": [0, 65535], "teare the stain'd skin": [0, 65535], "the stain'd skin of": [0, 65535], "stain'd skin of my": [0, 65535], "skin of my harlot": [0, 65535], "of my harlot brow": [0, 65535], "my harlot brow and": [0, 65535], "harlot brow and from": [0, 65535], "brow and from my": [0, 65535], "and from my false": [0, 65535], "from my false hand": [0, 65535], "my false hand cut": [0, 65535], "false hand cut the": [0, 65535], "hand cut the wedding": [0, 65535], "cut the wedding ring": [0, 65535], "the wedding ring and": [0, 65535], "wedding ring and breake": [0, 65535], "ring and breake it": [0, 65535], "and breake it with": [0, 65535], "breake it with a": [0, 65535], "it with a deepe": [0, 65535], "with a deepe diuorcing": [0, 65535], "a deepe diuorcing vow": [0, 65535], "deepe diuorcing vow i": [0, 65535], "diuorcing vow i know": [0, 65535], "vow i know thou": [0, 65535], "i know thou canst": [0, 65535], "know thou canst and": [0, 65535], "thou canst and therefore": [0, 65535], "canst and therefore see": [0, 65535], "and therefore see thou": [0, 65535], "therefore see thou doe": [0, 65535], "see thou doe it": [0, 65535], "thou doe it i": [0, 65535], "doe it i am": [0, 65535], "it i am possest": [0, 65535], "i am possest with": [0, 65535], "am possest with an": [0, 65535], "possest with an adulterate": [0, 65535], "with an adulterate blot": [0, 65535], "an adulterate blot my": [0, 65535], "adulterate blot my bloud": [0, 65535], "blot my bloud is": [0, 65535], "my bloud is mingled": [0, 65535], "bloud is mingled with": [0, 65535], "is mingled with the": [0, 65535], "mingled with the crime": [0, 65535], "with the crime of": [0, 65535], "the crime of lust": [0, 65535], "crime of lust for": [0, 65535], "of lust for if": [0, 65535], "lust for if we": [0, 65535], "for if we two": [0, 65535], "if we two be": [0, 65535], "we two be one": [0, 65535], "two be one and": [0, 65535], "be one and thou": [0, 65535], "one and thou play": [0, 65535], "and thou play false": [0, 65535], "thou play false i": [0, 65535], "play false i doe": [0, 65535], "false i doe digest": [0, 65535], "i doe digest the": [0, 65535], "doe digest the poison": [0, 65535], "digest the poison of": [0, 65535], "the poison of thy": [0, 65535], "poison of thy flesh": [0, 65535], "of thy flesh being": [0, 65535], "thy flesh being strumpeted": [0, 65535], "flesh being strumpeted by": [0, 65535], "being strumpeted by thy": [0, 65535], "strumpeted by thy contagion": [0, 65535], "by thy contagion keepe": [0, 65535], "thy contagion keepe then": [0, 65535], "contagion keepe then faire": [0, 65535], "keepe then faire league": [0, 65535], "then faire league and": [0, 65535], "faire league and truce": [0, 65535], "league and truce with": [0, 65535], "and truce with thy": [0, 65535], "truce with thy true": [0, 65535], "with thy true bed": [0, 65535], "thy true bed i": [0, 65535], "true bed i liue": [0, 65535], "bed i liue distain'd": [0, 65535], "i liue distain'd thou": [0, 65535], "liue distain'd thou vndishonoured": [0, 65535], "distain'd thou vndishonoured antip": [0, 65535], "thou vndishonoured antip plead": [0, 65535], "vndishonoured antip plead you": [0, 65535], "antip plead you to": [0, 65535], "plead you to me": [0, 65535], "you to me faire": [0, 65535], "to me faire dame": [0, 65535], "me faire dame i": [0, 65535], "faire dame i know": [0, 65535], "dame i know you": [0, 65535], "i know you not": [0, 65535], "know you not in": [0, 65535], "you not in ephesus": [0, 65535], "not in ephesus i": [0, 65535], "in ephesus i am": [0, 65535], "ephesus i am but": [0, 65535], "i am but two": [0, 65535], "am but two houres": [0, 65535], "but two houres old": [0, 65535], "two houres old as": [0, 65535], "houres old as strange": [0, 65535], "old as strange vnto": [0, 65535], "as strange vnto your": [0, 65535], "strange vnto your towne": [0, 65535], "vnto your towne as": [0, 65535], "your towne as to": [0, 65535], "towne as to your": [0, 65535], "as to your talke": [0, 65535], "to your talke who": [0, 65535], "your talke who euery": [0, 65535], "talke who euery word": [0, 65535], "who euery word by": [0, 65535], "euery word by all": [0, 65535], "word by all my": [0, 65535], "by all my wit": [0, 65535], "all my wit being": [0, 65535], "my wit being scan'd": [0, 65535], "wit being scan'd wants": [0, 65535], "being scan'd wants wit": [0, 65535], "scan'd wants wit in": [0, 65535], "wants wit in all": [0, 65535], "wit in all one": [0, 65535], "in all one word": [0, 65535], "all one word to": [0, 65535], "one word to vnderstand": [0, 65535], "word to vnderstand luci": [0, 65535], "to vnderstand luci fie": [0, 65535], "vnderstand luci fie brother": [0, 65535], "luci fie brother how": [0, 65535], "fie brother how the": [0, 65535], "brother how the world": [0, 65535], "how the world is": [0, 65535], "the world is chang'd": [0, 65535], "world is chang'd with": [0, 65535], "is chang'd with you": [0, 65535], "chang'd with you when": [0, 65535], "with you when were": [0, 65535], "you when were you": [0, 65535], "when were you wont": [0, 65535], "were you wont to": [0, 65535], "you wont to vse": [0, 65535], "wont to vse my": [0, 65535], "to vse my sister": [0, 65535], "vse my sister thus": [0, 65535], "my sister thus she": [0, 65535], "sister thus she sent": [0, 65535], "thus she sent for": [0, 65535], "she sent for you": [0, 65535], "sent for you by": [0, 65535], "for you by dromio": [0, 65535], "you by dromio home": [0, 65535], "by dromio home to": [0, 65535], "dromio home to dinner": [0, 65535], "home to dinner ant": [0, 65535], "to dinner ant by": [0, 65535], "dinner ant by dromio": [0, 65535], "ant by dromio drom": [0, 65535], "by dromio drom by": [0, 65535], "dromio drom by me": [0, 65535], "drom by me adr": [0, 65535], "by me adr by": [0, 65535], "me adr by thee": [0, 65535], "adr by thee and": [0, 65535], "by thee and this": [0, 65535], "thee and this thou": [0, 65535], "and this thou didst": [0, 65535], "this thou didst returne": [0, 65535], "thou didst returne from": [0, 65535], "didst returne from him": [0, 65535], "returne from him that": [0, 65535], "from him that he": [0, 65535], "him that he did": [0, 65535], "that he did buffet": [0, 65535], "he did buffet thee": [0, 65535], "did buffet thee and": [0, 65535], "buffet thee and in": [0, 65535], "thee and in his": [0, 65535], "and in his blowes": [0, 65535], "in his blowes denied": [0, 65535], "his blowes denied my": [0, 65535], "blowes denied my house": [0, 65535], "denied my house for": [0, 65535], "my house for his": [0, 65535], "house for his me": [0, 65535], "for his me for": [0, 65535], "his me for his": [0, 65535], "me for his wife": [0, 65535], "for his wife ant": [0, 65535], "his wife ant did": [0, 65535], "wife ant did you": [0, 65535], "ant did you conuerse": [0, 65535], "did you conuerse sir": [0, 65535], "you conuerse sir with": [0, 65535], "conuerse sir with this": [0, 65535], "sir with this gentlewoman": [0, 65535], "with this gentlewoman what": [0, 65535], "this gentlewoman what is": [0, 65535], "gentlewoman what is the": [0, 65535], "what is the course": [0, 65535], "is the course and": [0, 65535], "the course and drift": [0, 65535], "course and drift of": [0, 65535], "and drift of your": [0, 65535], "drift of your compact": [0, 65535], "of your compact s": [0, 65535], "your compact s dro": [0, 65535], "compact s dro i": [0, 65535], "dro i sir i": [0, 65535], "i sir i neuer": [0, 65535], "sir i neuer saw": [0, 65535], "i neuer saw her": [0, 65535], "neuer saw her till": [0, 65535], "saw her till this": [0, 65535], "her till this time": [0, 65535], "till this time ant": [0, 65535], "this time ant villaine": [0, 65535], "time ant villaine thou": [0, 65535], "ant villaine thou liest": [0, 65535], "villaine thou liest for": [0, 65535], "thou liest for euen": [0, 65535], "liest for euen her": [0, 65535], "for euen her verie": [0, 65535], "euen her verie words": [0, 65535], "her verie words didst": [0, 65535], "verie words didst thou": [0, 65535], "words didst thou deliuer": [0, 65535], "didst thou deliuer to": [0, 65535], "thou deliuer to me": [0, 65535], "deliuer to me on": [0, 65535], "to me on the": [0, 65535], "on the mart s": [0, 65535], "the mart s dro": [0, 65535], "mart s dro i": [0, 65535], "s dro i neuer": [0, 65535], "dro i neuer spake": [0, 65535], "i neuer spake with": [0, 65535], "neuer spake with her": [0, 65535], "spake with her in": [0, 65535], "with her in all": [0, 65535], "her in all my": [0, 65535], "in all my life": [0, 65535], "all my life ant": [0, 65535], "my life ant how": [0, 65535], "life ant how can": [0, 65535], "ant how can she": [0, 65535], "how can she thus": [0, 65535], "can she thus then": [0, 65535], "she thus then call": [0, 65535], "thus then call vs": [0, 65535], "then call vs by": [0, 65535], "call vs by our": [0, 65535], "vs by our names": [0, 65535], "by our names vnlesse": [0, 65535], "our names vnlesse it": [0, 65535], "names vnlesse it be": [0, 65535], "vnlesse it be by": [0, 65535], "it be by inspiration": [0, 65535], "be by inspiration adri": [0, 65535], "by inspiration adri how": [0, 65535], "inspiration adri how ill": [0, 65535], "adri how ill agrees": [0, 65535], "how ill agrees it": [0, 65535], "ill agrees it with": [0, 65535], "agrees it with your": [0, 65535], "it with your grauitie": [0, 65535], "with your grauitie to": [0, 65535], "your grauitie to counterfeit": [0, 65535], "grauitie to counterfeit thus": [0, 65535], "to counterfeit thus grosely": [0, 65535], "counterfeit thus grosely with": [0, 65535], "thus grosely with your": [0, 65535], "grosely with your slaue": [0, 65535], "with your slaue abetting": [0, 65535], "your slaue abetting him": [0, 65535], "slaue abetting him to": [0, 65535], "abetting him to thwart": [0, 65535], "him to thwart me": [0, 65535], "to thwart me in": [0, 65535], "thwart me in my": [0, 65535], "me in my moode": [0, 65535], "in my moode be": [0, 65535], "my moode be it": [0, 65535], "moode be it my": [0, 65535], "be it my wrong": [0, 65535], "it my wrong you": [0, 65535], "my wrong you are": [0, 65535], "wrong you are from": [0, 65535], "you are from me": [0, 65535], "are from me exempt": [0, 65535], "from me exempt but": [0, 65535], "me exempt but wrong": [0, 65535], "exempt but wrong not": [0, 65535], "but wrong not that": [0, 65535], "wrong not that wrong": [0, 65535], "not that wrong with": [0, 65535], "that wrong with a": [0, 65535], "wrong with a more": [0, 65535], "with a more contempt": [0, 65535], "a more contempt come": [0, 65535], "more contempt come i": [0, 65535], "contempt come i will": [0, 65535], "come i will fasten": [0, 65535], "i will fasten on": [0, 65535], "will fasten on this": [0, 65535], "fasten on this sleeue": [0, 65535], "on this sleeue of": [0, 65535], "this sleeue of thine": [0, 65535], "sleeue of thine thou": [0, 65535], "of thine thou art": [0, 65535], "thine thou art an": [0, 65535], "thou art an elme": [0, 65535], "art an elme my": [0, 65535], "an elme my husband": [0, 65535], "elme my husband i": [0, 65535], "my husband i a": [0, 65535], "husband i a vine": [0, 65535], "i a vine whose": [0, 65535], "a vine whose weaknesse": [0, 65535], "vine whose weaknesse married": [0, 65535], "whose weaknesse married to": [0, 65535], "weaknesse married to thy": [0, 65535], "married to thy stranger": [0, 65535], "to thy stranger state": [0, 65535], "thy stranger state makes": [0, 65535], "stranger state makes me": [0, 65535], "state makes me with": [0, 65535], "makes me with thy": [0, 65535], "me with thy strength": [0, 65535], "with thy strength to": [0, 65535], "thy strength to communicate": [0, 65535], "strength to communicate if": [0, 65535], "to communicate if ought": [0, 65535], "communicate if ought possesse": [0, 65535], "if ought possesse thee": [0, 65535], "ought possesse thee from": [0, 65535], "possesse thee from me": [0, 65535], "thee from me it": [0, 65535], "from me it is": [0, 65535], "me it is drosse": [0, 65535], "it is drosse vsurping": [0, 65535], "is drosse vsurping iuie": [0, 65535], "drosse vsurping iuie brier": [0, 65535], "vsurping iuie brier or": [0, 65535], "iuie brier or idle": [0, 65535], "brier or idle mosse": [0, 65535], "or idle mosse who": [0, 65535], "idle mosse who all": [0, 65535], "mosse who all for": [0, 65535], "who all for want": [0, 65535], "all for want of": [0, 65535], "for want of pruning": [0, 65535], "want of pruning with": [0, 65535], "of pruning with intrusion": [0, 65535], "pruning with intrusion infect": [0, 65535], "with intrusion infect thy": [0, 65535], "intrusion infect thy sap": [0, 65535], "infect thy sap and": [0, 65535], "thy sap and liue": [0, 65535], "sap and liue on": [0, 65535], "and liue on thy": [0, 65535], "liue on thy confusion": [0, 65535], "on thy confusion ant": [0, 65535], "thy confusion ant to": [0, 65535], "confusion ant to mee": [0, 65535], "ant to mee shee": [0, 65535], "to mee shee speakes": [0, 65535], "mee shee speakes shee": [0, 65535], "shee speakes shee moues": [0, 65535], "speakes shee moues mee": [0, 65535], "shee moues mee for": [0, 65535], "moues mee for her": [0, 65535], "mee for her theame": [0, 65535], "for her theame what": [0, 65535], "her theame what was": [0, 65535], "theame what was i": [0, 65535], "what was i married": [0, 65535], "was i married to": [0, 65535], "i married to her": [0, 65535], "married to her in": [0, 65535], "to her in my": [0, 65535], "her in my dreame": [0, 65535], "in my dreame or": [0, 65535], "my dreame or sleepe": [0, 65535], "dreame or sleepe i": [0, 65535], "or sleepe i now": [0, 65535], "sleepe i now and": [0, 65535], "i now and thinke": [0, 65535], "now and thinke i": [0, 65535], "and thinke i heare": [0, 65535], "thinke i heare all": [0, 65535], "i heare all this": [0, 65535], "heare all this what": [0, 65535], "all this what error": [0, 65535], "this what error driues": [0, 65535], "what error driues our": [0, 65535], "error driues our eies": [0, 65535], "driues our eies and": [0, 65535], "our eies and eares": [0, 65535], "eies and eares amisse": [0, 65535], "and eares amisse vntill": [0, 65535], "eares amisse vntill i": [0, 65535], "amisse vntill i know": [0, 65535], "vntill i know this": [0, 65535], "i know this sure": [0, 65535], "know this sure vncertaintie": [0, 65535], "this sure vncertaintie ile": [0, 65535], "sure vncertaintie ile entertaine": [0, 65535], "vncertaintie ile entertaine the": [0, 65535], "ile entertaine the free'd": [0, 65535], "entertaine the free'd fallacie": [0, 65535], "the free'd fallacie luc": [0, 65535], "free'd fallacie luc dromio": [0, 65535], "fallacie luc dromio goe": [0, 65535], "luc dromio goe bid": [0, 65535], "dromio goe bid the": [0, 65535], "goe bid the seruants": [0, 65535], "bid the seruants spred": [0, 65535], "the seruants spred for": [0, 65535], "seruants spred for dinner": [0, 65535], "spred for dinner s": [0, 65535], "for dinner s dro": [0, 65535], "dinner s dro oh": [0, 65535], "s dro oh for": [0, 65535], "dro oh for my": [0, 65535], "oh for my beads": [0, 65535], "for my beads i": [0, 65535], "my beads i crosse": [0, 65535], "beads i crosse me": [0, 65535], "i crosse me for": [0, 65535], "crosse me for a": [0, 65535], "me for a sinner": [0, 65535], "for a sinner this": [0, 65535], "a sinner this is": [0, 65535], "sinner this is the": [0, 65535], "this is the fairie": [0, 65535], "is the fairie land": [0, 65535], "the fairie land oh": [0, 65535], "fairie land oh spight": [0, 65535], "land oh spight of": [0, 65535], "oh spight of spights": [0, 65535], "spight of spights we": [0, 65535], "of spights we talke": [0, 65535], "spights we talke with": [0, 65535], "we talke with goblins": [0, 65535], "talke with goblins owles": [0, 65535], "with goblins owles and": [0, 65535], "goblins owles and sprights": [0, 65535], "owles and sprights if": [0, 65535], "and sprights if we": [0, 65535], "sprights if we obay": [0, 65535], "if we obay them": [0, 65535], "we obay them not": [0, 65535], "obay them not this": [0, 65535], "them not this will": [0, 65535], "not this will insue": [0, 65535], "this will insue they'll": [0, 65535], "will insue they'll sucke": [0, 65535], "insue they'll sucke our": [0, 65535], "they'll sucke our breath": [0, 65535], "sucke our breath or": [0, 65535], "our breath or pinch": [0, 65535], "breath or pinch vs": [0, 65535], "or pinch vs blacke": [0, 65535], "pinch vs blacke and": [0, 65535], "vs blacke and blew": [0, 65535], "blacke and blew luc": [0, 65535], "and blew luc why": [0, 65535], "blew luc why prat'st": [0, 65535], "luc why prat'st thou": [0, 65535], "why prat'st thou to": [0, 65535], "prat'st thou to thy": [0, 65535], "thou to thy selfe": [0, 65535], "to thy selfe and": [0, 65535], "thy selfe and answer'st": [0, 65535], "selfe and answer'st not": [0, 65535], "and answer'st not dromio": [0, 65535], "answer'st not dromio thou": [0, 65535], "not dromio thou dromio": [0, 65535], "dromio thou dromio thou": [0, 65535], "thou dromio thou snaile": [0, 65535], "dromio thou snaile thou": [0, 65535], "thou snaile thou slug": [0, 65535], "snaile thou slug thou": [0, 65535], "thou slug thou sot": [0, 65535], "slug thou sot s": [0, 65535], "thou sot s dro": [0, 65535], "sot s dro i": [0, 65535], "dro i am transformed": [0, 65535], "i am transformed master": [0, 65535], "am transformed master am": [0, 65535], "transformed master am i": [0, 65535], "master am i not": [0, 65535], "am i not ant": [0, 65535], "i not ant i": [0, 65535], "not ant i thinke": [0, 65535], "thinke thou art in": [0, 65535], "thou art in minde": [0, 65535], "art in minde and": [0, 65535], "in minde and so": [0, 65535], "minde and so am": [0, 65535], "and so am i": [0, 65535], "so am i s": [0, 65535], "am i s dro": [0, 65535], "i s dro nay": [0, 65535], "s dro nay master": [0, 65535], "dro nay master both": [0, 65535], "nay master both in": [0, 65535], "master both in minde": [0, 65535], "both in minde and": [0, 65535], "in minde and in": [0, 65535], "minde and in my": [0, 65535], "and in my shape": [0, 65535], "in my shape ant": [0, 65535], "my shape ant thou": [0, 65535], "shape ant thou hast": [0, 65535], "ant thou hast thine": [0, 65535], "thou hast thine owne": [0, 65535], "hast thine owne forme": [0, 65535], "thine owne forme s": [0, 65535], "owne forme s dro": [0, 65535], "forme s dro no": [0, 65535], "s dro no i": [0, 65535], "dro no i am": [0, 65535], "no i am an": [0, 65535], "i am an ape": [0, 65535], "am an ape luc": [0, 65535], "an ape luc if": [0, 65535], "ape luc if thou": [0, 65535], "luc if thou art": [0, 65535], "if thou art chang'd": [0, 65535], "thou art chang'd to": [0, 65535], "art chang'd to ought": [0, 65535], "chang'd to ought 'tis": [0, 65535], "to ought 'tis to": [0, 65535], "ought 'tis to an": [0, 65535], "'tis to an asse": [0, 65535], "to an asse s": [0, 65535], "an asse s dro": [0, 65535], "asse s dro 'tis": [0, 65535], "s dro 'tis true": [0, 65535], "dro 'tis true she": [0, 65535], "'tis true she rides": [0, 65535], "true she rides me": [0, 65535], "she rides me and": [0, 65535], "rides me and i": [0, 65535], "me and i long": [0, 65535], "and i long for": [0, 65535], "i long for grasse": [0, 65535], "long for grasse 'tis": [0, 65535], "for grasse 'tis so": [0, 65535], "grasse 'tis so i": [0, 65535], "'tis so i am": [0, 65535], "so i am an": [0, 65535], "am an asse else": [0, 65535], "an asse else it": [0, 65535], "asse else it could": [0, 65535], "else it could neuer": [0, 65535], "it could neuer be": [0, 65535], "could neuer be but": [0, 65535], "neuer be but i": [0, 65535], "be but i should": [0, 65535], "but i should know": [0, 65535], "i should know her": [0, 65535], "should know her as": [0, 65535], "know her as well": [0, 65535], "her as well as": [0, 65535], "as well as she": [0, 65535], "well as she knowes": [0, 65535], "as she knowes me": [0, 65535], "she knowes me adr": [0, 65535], "knowes me adr come": [0, 65535], "me adr come come": [0, 65535], "adr come come no": [0, 65535], "come come no longer": [0, 65535], "come no longer will": [0, 65535], "no longer will i": [0, 65535], "longer will i be": [0, 65535], "will i be a": [0, 65535], "i be a foole": [0, 65535], "be a foole to": [0, 65535], "a foole to put": [0, 65535], "foole to put the": [0, 65535], "to put the finger": [0, 65535], "put the finger in": [0, 65535], "the finger in the": [0, 65535], "finger in the eie": [0, 65535], "in the eie and": [0, 65535], "the eie and weepe": [0, 65535], "eie and weepe whil'st": [0, 65535], "and weepe whil'st man": [0, 65535], "weepe whil'st man and": [0, 65535], "whil'st man and master": [0, 65535], "man and master laughes": [0, 65535], "and master laughes my": [0, 65535], "master laughes my woes": [0, 65535], "laughes my woes to": [0, 65535], "my woes to scorne": [0, 65535], "woes to scorne come": [0, 65535], "to scorne come sir": [0, 65535], "scorne come sir to": [0, 65535], "come sir to dinner": [0, 65535], "sir to dinner dromio": [0, 65535], "to dinner dromio keepe": [0, 65535], "dinner dromio keepe the": [0, 65535], "dromio keepe the gate": [0, 65535], "keepe the gate husband": [0, 65535], "the gate husband ile": [0, 65535], "gate husband ile dine": [0, 65535], "husband ile dine aboue": [0, 65535], "ile dine aboue with": [0, 65535], "dine aboue with you": [0, 65535], "aboue with you to": [0, 65535], "with you to day": [0, 65535], "you to day and": [0, 65535], "to day and shriue": [0, 65535], "day and shriue you": [0, 65535], "and shriue you of": [0, 65535], "shriue you of a": [0, 65535], "you of a thousand": [0, 65535], "of a thousand idle": [0, 65535], "a thousand idle prankes": [0, 65535], "thousand idle prankes sirra": [0, 65535], "idle prankes sirra if": [0, 65535], "prankes sirra if any": [0, 65535], "sirra if any aske": [0, 65535], "if any aske you": [0, 65535], "any aske you for": [0, 65535], "aske you for your": [0, 65535], "you for your master": [0, 65535], "for your master say": [0, 65535], "your master say he": [0, 65535], "master say he dines": [0, 65535], "say he dines forth": [0, 65535], "he dines forth and": [0, 65535], "dines forth and let": [0, 65535], "forth and let no": [0, 65535], "and let no creature": [0, 65535], "let no creature enter": [0, 65535], "no creature enter come": [0, 65535], "creature enter come sister": [0, 65535], "enter come sister dromio": [0, 65535], "come sister dromio play": [0, 65535], "sister dromio play the": [0, 65535], "dromio play the porter": [0, 65535], "play the porter well": [0, 65535], "the porter well ant": [0, 65535], "porter well ant am": [0, 65535], "well ant am i": [0, 65535], "ant am i in": [0, 65535], "am i in earth": [0, 65535], "i in earth in": [0, 65535], "in earth in heauen": [0, 65535], "earth in heauen or": [0, 65535], "in heauen or in": [0, 65535], "heauen or in hell": [0, 65535], "or in hell sleeping": [0, 65535], "in hell sleeping or": [0, 65535], "hell sleeping or waking": [0, 65535], "sleeping or waking mad": [0, 65535], "or waking mad or": [0, 65535], "waking mad or well": [0, 65535], "mad or well aduisde": [0, 65535], "or well aduisde knowne": [0, 65535], "well aduisde knowne vnto": [0, 65535], "aduisde knowne vnto these": [0, 65535], "knowne vnto these and": [0, 65535], "vnto these and to": [0, 65535], "these and to my": [0, 65535], "and to my selfe": [0, 65535], "to my selfe disguisde": [0, 65535], "my selfe disguisde ile": [0, 65535], "selfe disguisde ile say": [0, 65535], "disguisde ile say as": [0, 65535], "ile say as they": [0, 65535], "say as they say": [0, 65535], "as they say and": [0, 65535], "they say and perseuer": [0, 65535], "say and perseuer so": [0, 65535], "and perseuer so and": [0, 65535], "perseuer so and in": [0, 65535], "so and in this": [0, 65535], "and in this mist": [0, 65535], "in this mist at": [0, 65535], "this mist at all": [0, 65535], "mist at all aduentures": [0, 65535], "at all aduentures go": [0, 65535], "all aduentures go s": [0, 65535], "aduentures go s dro": [0, 65535], "go s dro master": [0, 65535], "s dro master shall": [0, 65535], "dro master shall i": [0, 65535], "master shall i be": [0, 65535], "shall i be porter": [0, 65535], "i be porter at": [0, 65535], "be porter at the": [0, 65535], "porter at the gate": [0, 65535], "at the gate adr": [0, 65535], "the gate adr i": [0, 65535], "gate adr i and": [0, 65535], "adr i and let": [0, 65535], "i and let none": [0, 65535], "and let none enter": [0, 65535], "let none enter least": [0, 65535], "none enter least i": [0, 65535], "enter least i breake": [0, 65535], "least i breake your": [0, 65535], "i breake your pate": [0, 65535], "breake your pate luc": [0, 65535], "your pate luc come": [0, 65535], "pate luc come come": [0, 65535], "luc come come antipholus": [0, 65535], "come come antipholus we": [0, 65535], "come antipholus we dine": [0, 65535], "antipholus we dine to": [0, 65535], "we dine to late": [0, 65535], "actus secundus enter adriana wife": [0, 65535], "secundus enter adriana wife to": [0, 65535], "enter adriana wife to antipholis": [0, 65535], "adriana wife to antipholis sereptus": [0, 65535], "wife to antipholis sereptus with": [0, 65535], "to antipholis sereptus with luciana": [0, 65535], "antipholis sereptus with luciana her": [0, 65535], "sereptus with luciana her sister": [0, 65535], "with luciana her sister adr": [0, 65535], "luciana her sister adr neither": [0, 65535], "her sister adr neither my": [0, 65535], "sister adr neither my husband": [0, 65535], "adr neither my husband nor": [0, 65535], "neither my husband nor the": [0, 65535], "my husband nor the slaue": [0, 65535], "husband nor the slaue return'd": [0, 65535], "nor the slaue return'd that": [0, 65535], "the slaue return'd that in": [0, 65535], "slaue return'd that in such": [0, 65535], "return'd that in such haste": [0, 65535], "that in such haste i": [0, 65535], "in such haste i sent": [0, 65535], "such haste i sent to": [0, 65535], "haste i sent to seeke": [0, 65535], "i sent to seeke his": [0, 65535], "sent to seeke his master": [0, 65535], "to seeke his master sure": [0, 65535], "seeke his master sure luciana": [0, 65535], "his master sure luciana it": [0, 65535], "master sure luciana it is": [0, 65535], "sure luciana it is two": [0, 65535], "luciana it is two a": [0, 65535], "it is two a clocke": [0, 65535], "is two a clocke luc": [0, 65535], "two a clocke luc perhaps": [0, 65535], "a clocke luc perhaps some": [0, 65535], "clocke luc perhaps some merchant": [0, 65535], "luc perhaps some merchant hath": [0, 65535], "perhaps some merchant hath inuited": [0, 65535], "some merchant hath inuited him": [0, 65535], "merchant hath inuited him and": [0, 65535], "hath inuited him and from": [0, 65535], "inuited him and from the": [0, 65535], "him and from the mart": [0, 65535], "and from the mart he's": [0, 65535], "from the mart he's somewhere": [0, 65535], "the mart he's somewhere gone": [0, 65535], "mart he's somewhere gone to": [0, 65535], "he's somewhere gone to dinner": [0, 65535], "somewhere gone to dinner good": [0, 65535], "gone to dinner good sister": [0, 65535], "to dinner good sister let": [0, 65535], "dinner good sister let vs": [0, 65535], "good sister let vs dine": [0, 65535], "sister let vs dine and": [0, 65535], "let vs dine and neuer": [0, 65535], "vs dine and neuer fret": [0, 65535], "dine and neuer fret a": [0, 65535], "and neuer fret a man": [0, 65535], "neuer fret a man is": [0, 65535], "fret a man is master": [0, 65535], "a man is master of": [0, 65535], "man is master of his": [0, 65535], "is master of his libertie": [0, 65535], "master of his libertie time": [0, 65535], "of his libertie time is": [0, 65535], "his libertie time is their": [0, 65535], "libertie time is their master": [0, 65535], "time is their master and": [0, 65535], "is their master and when": [0, 65535], "their master and when they": [0, 65535], "master and when they see": [0, 65535], "and when they see time": [0, 65535], "when they see time they'll": [0, 65535], "they see time they'll goe": [0, 65535], "see time they'll goe or": [0, 65535], "time they'll goe or come": [0, 65535], "they'll goe or come if": [0, 65535], "goe or come if so": [0, 65535], "or come if so be": [0, 65535], "come if so be patient": [0, 65535], "if so be patient sister": [0, 65535], "so be patient sister adr": [0, 65535], "be patient sister adr why": [0, 65535], "patient sister adr why should": [0, 65535], "sister adr why should their": [0, 65535], "adr why should their libertie": [0, 65535], "why should their libertie then": [0, 65535], "should their libertie then ours": [0, 65535], "their libertie then ours be": [0, 65535], "libertie then ours be more": [0, 65535], "then ours be more luc": [0, 65535], "ours be more luc because": [0, 65535], "be more luc because their": [0, 65535], "more luc because their businesse": [0, 65535], "luc because their businesse still": [0, 65535], "because their businesse still lies": [0, 65535], "their businesse still lies out": [0, 65535], "businesse still lies out a": [0, 65535], "still lies out a dore": [0, 65535], "lies out a dore adr": [0, 65535], "out a dore adr looke": [0, 65535], "a dore adr looke when": [0, 65535], "dore adr looke when i": [0, 65535], "adr looke when i serue": [0, 65535], "looke when i serue him": [0, 65535], "when i serue him so": [0, 65535], "i serue him so he": [0, 65535], "serue him so he takes": [0, 65535], "him so he takes it": [0, 65535], "so he takes it thus": [0, 65535], "he takes it thus luc": [0, 65535], "takes it thus luc oh": [0, 65535], "it thus luc oh know": [0, 65535], "thus luc oh know he": [0, 65535], "luc oh know he is": [0, 65535], "oh know he is the": [0, 65535], "know he is the bridle": [0, 65535], "he is the bridle of": [0, 65535], "is the bridle of your": [0, 65535], "the bridle of your will": [0, 65535], "bridle of your will adr": [0, 65535], "of your will adr there's": [0, 65535], "your will adr there's none": [0, 65535], "will adr there's none but": [0, 65535], "adr there's none but asses": [0, 65535], "there's none but asses will": [0, 65535], "none but asses will be": [0, 65535], "but asses will be bridled": [0, 65535], "asses will be bridled so": [0, 65535], "will be bridled so luc": [0, 65535], "be bridled so luc why": [0, 65535], "bridled so luc why headstrong": [0, 65535], "so luc why headstrong liberty": [0, 65535], "luc why headstrong liberty is": [0, 65535], "why headstrong liberty is lasht": [0, 65535], "headstrong liberty is lasht with": [0, 65535], "liberty is lasht with woe": [0, 65535], "is lasht with woe there's": [0, 65535], "lasht with woe there's nothing": [0, 65535], "with woe there's nothing situate": [0, 65535], "woe there's nothing situate vnder": [0, 65535], "there's nothing situate vnder heauens": [0, 65535], "nothing situate vnder heauens eye": [0, 65535], "situate vnder heauens eye but": [0, 65535], "vnder heauens eye but hath": [0, 65535], "heauens eye but hath his": [0, 65535], "eye but hath his bound": [0, 65535], "but hath his bound in": [0, 65535], "hath his bound in earth": [0, 65535], "his bound in earth in": [0, 65535], "bound in earth in sea": [0, 65535], "in earth in sea in": [0, 65535], "earth in sea in skie": [0, 65535], "in sea in skie the": [0, 65535], "sea in skie the beasts": [0, 65535], "in skie the beasts the": [0, 65535], "skie the beasts the fishes": [0, 65535], "the beasts the fishes and": [0, 65535], "beasts the fishes and the": [0, 65535], "the fishes and the winged": [0, 65535], "fishes and the winged fowles": [0, 65535], "and the winged fowles are": [0, 65535], "the winged fowles are their": [0, 65535], "winged fowles are their males": [0, 65535], "fowles are their males subiects": [0, 65535], "are their males subiects and": [0, 65535], "their males subiects and at": [0, 65535], "males subiects and at their": [0, 65535], "subiects and at their controules": [0, 65535], "and at their controules man": [0, 65535], "at their controules man more": [0, 65535], "their controules man more diuine": [0, 65535], "controules man more diuine the": [0, 65535], "man more diuine the master": [0, 65535], "more diuine the master of": [0, 65535], "diuine the master of all": [0, 65535], "the master of all these": [0, 65535], "master of all these lord": [0, 65535], "of all these lord of": [0, 65535], "all these lord of the": [0, 65535], "these lord of the wide": [0, 65535], "lord of the wide world": [0, 65535], "of the wide world and": [0, 65535], "the wide world and wilde": [0, 65535], "wide world and wilde watry": [0, 65535], "world and wilde watry seas": [0, 65535], "and wilde watry seas indued": [0, 65535], "wilde watry seas indued with": [0, 65535], "watry seas indued with intellectuall": [0, 65535], "seas indued with intellectuall sence": [0, 65535], "indued with intellectuall sence and": [0, 65535], "with intellectuall sence and soules": [0, 65535], "intellectuall sence and soules of": [0, 65535], "sence and soules of more": [0, 65535], "and soules of more preheminence": [0, 65535], "soules of more preheminence then": [0, 65535], "of more preheminence then fish": [0, 65535], "more preheminence then fish and": [0, 65535], "preheminence then fish and fowles": [0, 65535], "then fish and fowles are": [0, 65535], "fish and fowles are masters": [0, 65535], "and fowles are masters to": [0, 65535], "fowles are masters to their": [0, 65535], "are masters to their females": [0, 65535], "masters to their females and": [0, 65535], "to their females and their": [0, 65535], "their females and their lords": [0, 65535], "females and their lords then": [0, 65535], "and their lords then let": [0, 65535], "their lords then let your": [0, 65535], "lords then let your will": [0, 65535], "then let your will attend": [0, 65535], "let your will attend on": [0, 65535], "your will attend on their": [0, 65535], "will attend on their accords": [0, 65535], "attend on their accords adri": [0, 65535], "on their accords adri this": [0, 65535], "their accords adri this seruitude": [0, 65535], "accords adri this seruitude makes": [0, 65535], "adri this seruitude makes you": [0, 65535], "this seruitude makes you to": [0, 65535], "seruitude makes you to keepe": [0, 65535], "makes you to keepe vnwed": [0, 65535], "you to keepe vnwed luci": [0, 65535], "to keepe vnwed luci not": [0, 65535], "keepe vnwed luci not this": [0, 65535], "vnwed luci not this but": [0, 65535], "luci not this but troubles": [0, 65535], "not this but troubles of": [0, 65535], "this but troubles of the": [0, 65535], "but troubles of the marriage": [0, 65535], "troubles of the marriage bed": [0, 65535], "of the marriage bed adr": [0, 65535], "the marriage bed adr but": [0, 65535], "marriage bed adr but were": [0, 65535], "bed adr but were you": [0, 65535], "adr but were you wedded": [0, 65535], "but were you wedded you": [0, 65535], "were you wedded you wold": [0, 65535], "you wedded you wold bear": [0, 65535], "wedded you wold bear some": [0, 65535], "you wold bear some sway": [0, 65535], "wold bear some sway luc": [0, 65535], "bear some sway luc ere": [0, 65535], "some sway luc ere i": [0, 65535], "sway luc ere i learne": [0, 65535], "luc ere i learne loue": [0, 65535], "ere i learne loue ile": [0, 65535], "i learne loue ile practise": [0, 65535], "learne loue ile practise to": [0, 65535], "loue ile practise to obey": [0, 65535], "ile practise to obey adr": [0, 65535], "practise to obey adr how": [0, 65535], "to obey adr how if": [0, 65535], "obey adr how if your": [0, 65535], "adr how if your husband": [0, 65535], "how if your husband start": [0, 65535], "if your husband start some": [0, 65535], "your husband start some other": [0, 65535], "husband start some other where": [0, 65535], "start some other where luc": [0, 65535], "some other where luc till": [0, 65535], "other where luc till he": [0, 65535], "where luc till he come": [0, 65535], "luc till he come home": [0, 65535], "till he come home againe": [0, 65535], "he come home againe i": [0, 65535], "come home againe i would": [0, 65535], "home againe i would forbeare": [0, 65535], "againe i would forbeare adr": [0, 65535], "i would forbeare adr patience": [0, 65535], "would forbeare adr patience vnmou'd": [0, 65535], "forbeare adr patience vnmou'd no": [0, 65535], "adr patience vnmou'd no maruel": [0, 65535], "patience vnmou'd no maruel though": [0, 65535], "vnmou'd no maruel though she": [0, 65535], "no maruel though she pause": [0, 65535], "maruel though she pause they": [0, 65535], "though she pause they can": [0, 65535], "she pause they can be": [0, 65535], "pause they can be meeke": [0, 65535], "they can be meeke that": [0, 65535], "can be meeke that haue": [0, 65535], "be meeke that haue no": [0, 65535], "meeke that haue no other": [0, 65535], "that haue no other cause": [0, 65535], "haue no other cause a": [0, 65535], "no other cause a wretched": [0, 65535], "other cause a wretched soule": [0, 65535], "cause a wretched soule bruis'd": [0, 65535], "a wretched soule bruis'd with": [0, 65535], "wretched soule bruis'd with aduersitie": [0, 65535], "soule bruis'd with aduersitie we": [0, 65535], "bruis'd with aduersitie we bid": [0, 65535], "with aduersitie we bid be": [0, 65535], "aduersitie we bid be quiet": [0, 65535], "we bid be quiet when": [0, 65535], "bid be quiet when we": [0, 65535], "be quiet when we heare": [0, 65535], "quiet when we heare it": [0, 65535], "when we heare it crie": [0, 65535], "we heare it crie but": [0, 65535], "heare it crie but were": [0, 65535], "it crie but were we": [0, 65535], "crie but were we burdned": [0, 65535], "but were we burdned with": [0, 65535], "were we burdned with like": [0, 65535], "we burdned with like waight": [0, 65535], "burdned with like waight of": [0, 65535], "with like waight of paine": [0, 65535], "like waight of paine as": [0, 65535], "waight of paine as much": [0, 65535], "of paine as much or": [0, 65535], "paine as much or more": [0, 65535], "as much or more we": [0, 65535], "much or more we should": [0, 65535], "or more we should our": [0, 65535], "more we should our selues": [0, 65535], "we should our selues complaine": [0, 65535], "should our selues complaine so": [0, 65535], "our selues complaine so thou": [0, 65535], "selues complaine so thou that": [0, 65535], "complaine so thou that hast": [0, 65535], "so thou that hast no": [0, 65535], "thou that hast no vnkinde": [0, 65535], "that hast no vnkinde mate": [0, 65535], "hast no vnkinde mate to": [0, 65535], "no vnkinde mate to greeue": [0, 65535], "vnkinde mate to greeue thee": [0, 65535], "mate to greeue thee with": [0, 65535], "to greeue thee with vrging": [0, 65535], "greeue thee with vrging helpelesse": [0, 65535], "thee with vrging helpelesse patience": [0, 65535], "with vrging helpelesse patience would": [0, 65535], "vrging helpelesse patience would releeue": [0, 65535], "helpelesse patience would releeue me": [0, 65535], "patience would releeue me but": [0, 65535], "would releeue me but if": [0, 65535], "releeue me but if thou": [0, 65535], "me but if thou liue": [0, 65535], "but if thou liue to": [0, 65535], "if thou liue to see": [0, 65535], "thou liue to see like": [0, 65535], "liue to see like right": [0, 65535], "to see like right bereft": [0, 65535], "see like right bereft this": [0, 65535], "like right bereft this foole": [0, 65535], "right bereft this foole beg'd": [0, 65535], "bereft this foole beg'd patience": [0, 65535], "this foole beg'd patience in": [0, 65535], "foole beg'd patience in thee": [0, 65535], "beg'd patience in thee will": [0, 65535], "patience in thee will be": [0, 65535], "in thee will be left": [0, 65535], "thee will be left luci": [0, 65535], "will be left luci well": [0, 65535], "be left luci well i": [0, 65535], "left luci well i will": [0, 65535], "luci well i will marry": [0, 65535], "well i will marry one": [0, 65535], "i will marry one day": [0, 65535], "will marry one day but": [0, 65535], "marry one day but to": [0, 65535], "one day but to trie": [0, 65535], "day but to trie heere": [0, 65535], "but to trie heere comes": [0, 65535], "to trie heere comes your": [0, 65535], "trie heere comes your man": [0, 65535], "heere comes your man now": [0, 65535], "comes your man now is": [0, 65535], "your man now is your": [0, 65535], "man now is your husband": [0, 65535], "now is your husband nie": [0, 65535], "is your husband nie enter": [0, 65535], "your husband nie enter dromio": [0, 65535], "husband nie enter dromio eph": [0, 65535], "nie enter dromio eph adr": [0, 65535], "enter dromio eph adr say": [0, 65535], "dromio eph adr say is": [0, 65535], "eph adr say is your": [0, 65535], "adr say is your tardie": [0, 65535], "say is your tardie master": [0, 65535], "is your tardie master now": [0, 65535], "your tardie master now at": [0, 65535], "tardie master now at hand": [0, 65535], "master now at hand e": [0, 65535], "now at hand e dro": [0, 65535], "at hand e dro nay": [0, 65535], "hand e dro nay hee's": [0, 65535], "e dro nay hee's at": [0, 65535], "dro nay hee's at too": [0, 65535], "nay hee's at too hands": [0, 65535], "hee's at too hands with": [0, 65535], "at too hands with mee": [0, 65535], "too hands with mee and": [0, 65535], "hands with mee and that": [0, 65535], "with mee and that my": [0, 65535], "mee and that my two": [0, 65535], "and that my two eares": [0, 65535], "that my two eares can": [0, 65535], "my two eares can witnesse": [0, 65535], "two eares can witnesse adr": [0, 65535], "eares can witnesse adr say": [0, 65535], "can witnesse adr say didst": [0, 65535], "witnesse adr say didst thou": [0, 65535], "adr say didst thou speake": [0, 65535], "say didst thou speake with": [0, 65535], "didst thou speake with him": [0, 65535], "thou speake with him knowst": [0, 65535], "speake with him knowst thou": [0, 65535], "with him knowst thou his": [0, 65535], "him knowst thou his minde": [0, 65535], "knowst thou his minde e": [0, 65535], "thou his minde e dro": [0, 65535], "his minde e dro i": [0, 65535], "minde e dro i i": [0, 65535], "e dro i i he": [0, 65535], "dro i i he told": [0, 65535], "i i he told his": [0, 65535], "i he told his minde": [0, 65535], "he told his minde vpon": [0, 65535], "told his minde vpon mine": [0, 65535], "his minde vpon mine eare": [0, 65535], "minde vpon mine eare beshrew": [0, 65535], "vpon mine eare beshrew his": [0, 65535], "mine eare beshrew his hand": [0, 65535], "eare beshrew his hand i": [0, 65535], "beshrew his hand i scarce": [0, 65535], "his hand i scarce could": [0, 65535], "hand i scarce could vnderstand": [0, 65535], "i scarce could vnderstand it": [0, 65535], "scarce could vnderstand it luc": [0, 65535], "could vnderstand it luc spake": [0, 65535], "vnderstand it luc spake hee": [0, 65535], "it luc spake hee so": [0, 65535], "luc spake hee so doubtfully": [0, 65535], "spake hee so doubtfully thou": [0, 65535], "hee so doubtfully thou couldst": [0, 65535], "so doubtfully thou couldst not": [0, 65535], "doubtfully thou couldst not feele": [0, 65535], "thou couldst not feele his": [0, 65535], "couldst not feele his meaning": [0, 65535], "not feele his meaning e": [0, 65535], "feele his meaning e dro": [0, 65535], "his meaning e dro nay": [0, 65535], "meaning e dro nay hee": [0, 65535], "e dro nay hee strooke": [0, 65535], "dro nay hee strooke so": [0, 65535], "nay hee strooke so plainly": [0, 65535], "hee strooke so plainly i": [0, 65535], "strooke so plainly i could": [0, 65535], "so plainly i could too": [0, 65535], "plainly i could too well": [0, 65535], "i could too well feele": [0, 65535], "could too well feele his": [0, 65535], "too well feele his blowes": [0, 65535], "well feele his blowes and": [0, 65535], "feele his blowes and withall": [0, 65535], "his blowes and withall so": [0, 65535], "blowes and withall so doubtfully": [0, 65535], "and withall so doubtfully that": [0, 65535], "withall so doubtfully that i": [0, 65535], "so doubtfully that i could": [0, 65535], "doubtfully that i could scarce": [0, 65535], "that i could scarce vnderstand": [0, 65535], "i could scarce vnderstand them": [0, 65535], "could scarce vnderstand them adri": [0, 65535], "scarce vnderstand them adri but": [0, 65535], "vnderstand them adri but say": [0, 65535], "them adri but say i": [0, 65535], "adri but say i prethee": [0, 65535], "but say i prethee is": [0, 65535], "say i prethee is he": [0, 65535], "i prethee is he comming": [0, 65535], "prethee is he comming home": [0, 65535], "is he comming home it": [0, 65535], "he comming home it seemes": [0, 65535], "comming home it seemes he": [0, 65535], "home it seemes he hath": [0, 65535], "it seemes he hath great": [0, 65535], "seemes he hath great care": [0, 65535], "he hath great care to": [0, 65535], "hath great care to please": [0, 65535], "great care to please his": [0, 65535], "care to please his wife": [0, 65535], "to please his wife e": [0, 65535], "please his wife e dro": [0, 65535], "his wife e dro why": [0, 65535], "wife e dro why mistresse": [0, 65535], "e dro why mistresse sure": [0, 65535], "dro why mistresse sure my": [0, 65535], "why mistresse sure my master": [0, 65535], "mistresse sure my master is": [0, 65535], "sure my master is horne": [0, 65535], "my master is horne mad": [0, 65535], "master is horne mad adri": [0, 65535], "is horne mad adri horne": [0, 65535], "horne mad adri horne mad": [0, 65535], "mad adri horne mad thou": [0, 65535], "adri horne mad thou villaine": [0, 65535], "horne mad thou villaine e": [0, 65535], "mad thou villaine e dro": [0, 65535], "thou villaine e dro i": [0, 65535], "villaine e dro i meane": [0, 65535], "e dro i meane not": [0, 65535], "dro i meane not cuckold": [0, 65535], "i meane not cuckold mad": [0, 65535], "meane not cuckold mad but": [0, 65535], "not cuckold mad but sure": [0, 65535], "cuckold mad but sure he": [0, 65535], "mad but sure he is": [0, 65535], "but sure he is starke": [0, 65535], "sure he is starke mad": [0, 65535], "he is starke mad when": [0, 65535], "is starke mad when i": [0, 65535], "starke mad when i desir'd": [0, 65535], "mad when i desir'd him": [0, 65535], "when i desir'd him to": [0, 65535], "i desir'd him to come": [0, 65535], "desir'd him to come home": [0, 65535], "him to come home to": [0, 65535], "to come home to dinner": [0, 65535], "come home to dinner he": [0, 65535], "home to dinner he ask'd": [0, 65535], "to dinner he ask'd me": [0, 65535], "dinner he ask'd me for": [0, 65535], "he ask'd me for a": [0, 65535], "ask'd me for a hundred": [0, 65535], "me for a hundred markes": [0, 65535], "for a hundred markes in": [0, 65535], "a hundred markes in gold": [0, 65535], "hundred markes in gold 'tis": [0, 65535], "markes in gold 'tis dinner": [0, 65535], "in gold 'tis dinner time": [0, 65535], "gold 'tis dinner time quoth": [0, 65535], "'tis dinner time quoth i": [0, 65535], "dinner time quoth i my": [0, 65535], "time quoth i my gold": [0, 65535], "quoth i my gold quoth": [0, 65535], "i my gold quoth he": [0, 65535], "my gold quoth he your": [0, 65535], "gold quoth he your meat": [0, 65535], "quoth he your meat doth": [0, 65535], "he your meat doth burne": [0, 65535], "your meat doth burne quoth": [0, 65535], "meat doth burne quoth i": [0, 65535], "doth burne quoth i my": [0, 65535], "burne quoth i my gold": [0, 65535], "my gold quoth he will": [0, 65535], "gold quoth he will you": [0, 65535], "quoth he will you come": [0, 65535], "he will you come quoth": [0, 65535], "will you come quoth i": [0, 65535], "you come quoth i my": [0, 65535], "come quoth i my gold": [0, 65535], "my gold quoth he where": [0, 65535], "gold quoth he where is": [0, 65535], "quoth he where is the": [0, 65535], "he where is the thousand": [0, 65535], "where is the thousand markes": [0, 65535], "is the thousand markes i": [0, 65535], "the thousand markes i gaue": [0, 65535], "thousand markes i gaue thee": [0, 65535], "markes i gaue thee villaine": [0, 65535], "i gaue thee villaine the": [0, 65535], "gaue thee villaine the pigge": [0, 65535], "thee villaine the pigge quoth": [0, 65535], "villaine the pigge quoth i": [0, 65535], "the pigge quoth i is": [0, 65535], "pigge quoth i is burn'd": [0, 65535], "quoth i is burn'd my": [0, 65535], "i is burn'd my gold": [0, 65535], "is burn'd my gold quoth": [0, 65535], "burn'd my gold quoth he": [0, 65535], "my gold quoth he my": [0, 65535], "gold quoth he my mistresse": [0, 65535], "quoth he my mistresse sir": [0, 65535], "he my mistresse sir quoth": [0, 65535], "my mistresse sir quoth i": [0, 65535], "mistresse sir quoth i hang": [0, 65535], "sir quoth i hang vp": [0, 65535], "quoth i hang vp thy": [0, 65535], "i hang vp thy mistresse": [0, 65535], "hang vp thy mistresse i": [0, 65535], "vp thy mistresse i know": [0, 65535], "thy mistresse i know not": [0, 65535], "mistresse i know not thy": [0, 65535], "i know not thy mistresse": [0, 65535], "know not thy mistresse out": [0, 65535], "not thy mistresse out on": [0, 65535], "thy mistresse out on thy": [0, 65535], "mistresse out on thy mistresse": [0, 65535], "out on thy mistresse luci": [0, 65535], "on thy mistresse luci quoth": [0, 65535], "thy mistresse luci quoth who": [0, 65535], "mistresse luci quoth who e": [0, 65535], "luci quoth who e dr": [0, 65535], "quoth who e dr quoth": [0, 65535], "who e dr quoth my": [0, 65535], "e dr quoth my master": [0, 65535], "dr quoth my master i": [0, 65535], "quoth my master i know": [0, 65535], "my master i know quoth": [0, 65535], "master i know quoth he": [0, 65535], "i know quoth he no": [0, 65535], "know quoth he no house": [0, 65535], "quoth he no house no": [0, 65535], "he no house no wife": [0, 65535], "no house no wife no": [0, 65535], "house no wife no mistresse": [0, 65535], "no wife no mistresse so": [0, 65535], "wife no mistresse so that": [0, 65535], "no mistresse so that my": [0, 65535], "mistresse so that my arrant": [0, 65535], "so that my arrant due": [0, 65535], "that my arrant due vnto": [0, 65535], "my arrant due vnto my": [0, 65535], "arrant due vnto my tongue": [0, 65535], "due vnto my tongue i": [0, 65535], "vnto my tongue i thanke": [0, 65535], "my tongue i thanke him": [0, 65535], "tongue i thanke him i": [0, 65535], "i thanke him i bare": [0, 65535], "thanke him i bare home": [0, 65535], "him i bare home vpon": [0, 65535], "i bare home vpon my": [0, 65535], "bare home vpon my shoulders": [0, 65535], "home vpon my shoulders for": [0, 65535], "vpon my shoulders for in": [0, 65535], "my shoulders for in conclusion": [0, 65535], "shoulders for in conclusion he": [0, 65535], "for in conclusion he did": [0, 65535], "in conclusion he did beat": [0, 65535], "conclusion he did beat me": [0, 65535], "he did beat me there": [0, 65535], "did beat me there adri": [0, 65535], "beat me there adri go": [0, 65535], "me there adri go back": [0, 65535], "there adri go back againe": [0, 65535], "adri go back againe thou": [0, 65535], "go back againe thou slaue": [0, 65535], "back againe thou slaue fetch": [0, 65535], "againe thou slaue fetch him": [0, 65535], "thou slaue fetch him home": [0, 65535], "slaue fetch him home dro": [0, 65535], "fetch him home dro goe": [0, 65535], "him home dro goe backe": [0, 65535], "home dro goe backe againe": [0, 65535], "dro goe backe againe and": [0, 65535], "goe backe againe and be": [0, 65535], "backe againe and be new": [0, 65535], "againe and be new beaten": [0, 65535], "and be new beaten home": [0, 65535], "be new beaten home for": [0, 65535], "new beaten home for gods": [0, 65535], "beaten home for gods sake": [0, 65535], "home for gods sake send": [0, 65535], "for gods sake send some": [0, 65535], "gods sake send some other": [0, 65535], "sake send some other messenger": [0, 65535], "send some other messenger adri": [0, 65535], "some other messenger adri backe": [0, 65535], "other messenger adri backe slaue": [0, 65535], "messenger adri backe slaue or": [0, 65535], "adri backe slaue or i": [0, 65535], "backe slaue or i will": [0, 65535], "slaue or i will breake": [0, 65535], "or i will breake thy": [0, 65535], "i will breake thy pate": [0, 65535], "will breake thy pate a": [0, 65535], "breake thy pate a crosse": [0, 65535], "thy pate a crosse dro": [0, 65535], "pate a crosse dro and": [0, 65535], "a crosse dro and he": [0, 65535], "crosse dro and he will": [0, 65535], "dro and he will blesse": [0, 65535], "and he will blesse the": [0, 65535], "he will blesse the crosse": [0, 65535], "will blesse the crosse with": [0, 65535], "blesse the crosse with other": [0, 65535], "the crosse with other beating": [0, 65535], "crosse with other beating betweene": [0, 65535], "with other beating betweene you": [0, 65535], "other beating betweene you i": [0, 65535], "beating betweene you i shall": [0, 65535], "betweene you i shall haue": [0, 65535], "you i shall haue a": [0, 65535], "i shall haue a holy": [0, 65535], "shall haue a holy head": [0, 65535], "haue a holy head adri": [0, 65535], "a holy head adri hence": [0, 65535], "holy head adri hence prating": [0, 65535], "head adri hence prating pesant": [0, 65535], "adri hence prating pesant fetch": [0, 65535], "hence prating pesant fetch thy": [0, 65535], "prating pesant fetch thy master": [0, 65535], "pesant fetch thy master home": [0, 65535], "fetch thy master home dro": [0, 65535], "thy master home dro am": [0, 65535], "master home dro am i": [0, 65535], "home dro am i so": [0, 65535], "dro am i so round": [0, 65535], "am i so round with": [0, 65535], "i so round with you": [0, 65535], "so round with you as": [0, 65535], "round with you as you": [0, 65535], "with you as you with": [0, 65535], "you as you with me": [0, 65535], "as you with me that": [0, 65535], "you with me that like": [0, 65535], "with me that like a": [0, 65535], "me that like a foot": [0, 65535], "that like a foot ball": [0, 65535], "like a foot ball you": [0, 65535], "a foot ball you doe": [0, 65535], "foot ball you doe spurne": [0, 65535], "ball you doe spurne me": [0, 65535], "you doe spurne me thus": [0, 65535], "doe spurne me thus you": [0, 65535], "spurne me thus you spurne": [0, 65535], "me thus you spurne me": [0, 65535], "thus you spurne me hence": [0, 65535], "you spurne me hence and": [0, 65535], "spurne me hence and he": [0, 65535], "me hence and he will": [0, 65535], "hence and he will spurne": [0, 65535], "and he will spurne me": [0, 65535], "he will spurne me hither": [0, 65535], "will spurne me hither if": [0, 65535], "spurne me hither if i": [0, 65535], "me hither if i last": [0, 65535], "hither if i last in": [0, 65535], "if i last in this": [0, 65535], "i last in this seruice": [0, 65535], "last in this seruice you": [0, 65535], "in this seruice you must": [0, 65535], "this seruice you must case": [0, 65535], "seruice you must case me": [0, 65535], "you must case me in": [0, 65535], "must case me in leather": [0, 65535], "case me in leather luci": [0, 65535], "me in leather luci fie": [0, 65535], "in leather luci fie how": [0, 65535], "leather luci fie how impatience": [0, 65535], "luci fie how impatience lowreth": [0, 65535], "fie how impatience lowreth in": [0, 65535], "how impatience lowreth in your": [0, 65535], "impatience lowreth in your face": [0, 65535], "lowreth in your face adri": [0, 65535], "in your face adri his": [0, 65535], "your face adri his company": [0, 65535], "face adri his company must": [0, 65535], "adri his company must do": [0, 65535], "his company must do his": [0, 65535], "company must do his minions": [0, 65535], "must do his minions grace": [0, 65535], "do his minions grace whil'st": [0, 65535], "his minions grace whil'st i": [0, 65535], "minions grace whil'st i at": [0, 65535], "grace whil'st i at home": [0, 65535], "whil'st i at home starue": [0, 65535], "i at home starue for": [0, 65535], "at home starue for a": [0, 65535], "home starue for a merrie": [0, 65535], "starue for a merrie looke": [0, 65535], "for a merrie looke hath": [0, 65535], "a merrie looke hath homelie": [0, 65535], "merrie looke hath homelie age": [0, 65535], "looke hath homelie age th'": [0, 65535], "hath homelie age th' alluring": [0, 65535], "homelie age th' alluring beauty": [0, 65535], "age th' alluring beauty tooke": [0, 65535], "th' alluring beauty tooke from": [0, 65535], "alluring beauty tooke from my": [0, 65535], "beauty tooke from my poore": [0, 65535], "tooke from my poore cheeke": [0, 65535], "from my poore cheeke then": [0, 65535], "my poore cheeke then he": [0, 65535], "poore cheeke then he hath": [0, 65535], "cheeke then he hath wasted": [0, 65535], "then he hath wasted it": [0, 65535], "he hath wasted it are": [0, 65535], "hath wasted it are my": [0, 65535], "wasted it are my discourses": [0, 65535], "it are my discourses dull": [0, 65535], "are my discourses dull barren": [0, 65535], "my discourses dull barren my": [0, 65535], "discourses dull barren my wit": [0, 65535], "dull barren my wit if": [0, 65535], "barren my wit if voluble": [0, 65535], "my wit if voluble and": [0, 65535], "wit if voluble and sharpe": [0, 65535], "if voluble and sharpe discourse": [0, 65535], "voluble and sharpe discourse be": [0, 65535], "and sharpe discourse be mar'd": [0, 65535], "sharpe discourse be mar'd vnkindnesse": [0, 65535], "discourse be mar'd vnkindnesse blunts": [0, 65535], "be mar'd vnkindnesse blunts it": [0, 65535], "mar'd vnkindnesse blunts it more": [0, 65535], "vnkindnesse blunts it more then": [0, 65535], "blunts it more then marble": [0, 65535], "it more then marble hard": [0, 65535], "more then marble hard doe": [0, 65535], "then marble hard doe their": [0, 65535], "marble hard doe their gay": [0, 65535], "hard doe their gay vestments": [0, 65535], "doe their gay vestments his": [0, 65535], "their gay vestments his affections": [0, 65535], "gay vestments his affections baite": [0, 65535], "vestments his affections baite that's": [0, 65535], "his affections baite that's not": [0, 65535], "affections baite that's not my": [0, 65535], "baite that's not my fault": [0, 65535], "that's not my fault hee's": [0, 65535], "not my fault hee's master": [0, 65535], "my fault hee's master of": [0, 65535], "fault hee's master of my": [0, 65535], "hee's master of my state": [0, 65535], "master of my state what": [0, 65535], "of my state what ruines": [0, 65535], "my state what ruines are": [0, 65535], "state what ruines are in": [0, 65535], "what ruines are in me": [0, 65535], "ruines are in me that": [0, 65535], "are in me that can": [0, 65535], "in me that can be": [0, 65535], "me that can be found": [0, 65535], "that can be found by": [0, 65535], "can be found by him": [0, 65535], "be found by him not": [0, 65535], "found by him not ruin'd": [0, 65535], "by him not ruin'd then": [0, 65535], "him not ruin'd then is": [0, 65535], "not ruin'd then is he": [0, 65535], "ruin'd then is he the": [0, 65535], "then is he the ground": [0, 65535], "is he the ground of": [0, 65535], "he the ground of my": [0, 65535], "the ground of my defeatures": [0, 65535], "ground of my defeatures my": [0, 65535], "of my defeatures my decayed": [0, 65535], "my defeatures my decayed faire": [0, 65535], "defeatures my decayed faire a": [0, 65535], "my decayed faire a sunnie": [0, 65535], "decayed faire a sunnie looke": [0, 65535], "faire a sunnie looke of": [0, 65535], "a sunnie looke of his": [0, 65535], "sunnie looke of his would": [0, 65535], "looke of his would soone": [0, 65535], "of his would soone repaire": [0, 65535], "his would soone repaire but": [0, 65535], "would soone repaire but too": [0, 65535], "soone repaire but too vnruly": [0, 65535], "repaire but too vnruly deere": [0, 65535], "but too vnruly deere he": [0, 65535], "too vnruly deere he breakes": [0, 65535], "vnruly deere he breakes the": [0, 65535], "deere he breakes the pale": [0, 65535], "he breakes the pale and": [0, 65535], "breakes the pale and feedes": [0, 65535], "the pale and feedes from": [0, 65535], "pale and feedes from home": [0, 65535], "and feedes from home poore": [0, 65535], "feedes from home poore i": [0, 65535], "from home poore i am": [0, 65535], "home poore i am but": [0, 65535], "poore i am but his": [0, 65535], "i am but his stale": [0, 65535], "am but his stale luci": [0, 65535], "but his stale luci selfe": [0, 65535], "his stale luci selfe harming": [0, 65535], "stale luci selfe harming iealousie": [0, 65535], "luci selfe harming iealousie fie": [0, 65535], "selfe harming iealousie fie beat": [0, 65535], "harming iealousie fie beat it": [0, 65535], "iealousie fie beat it hence": [0, 65535], "fie beat it hence ad": [0, 65535], "beat it hence ad vnfeeling": [0, 65535], "it hence ad vnfeeling fools": [0, 65535], "hence ad vnfeeling fools can": [0, 65535], "ad vnfeeling fools can with": [0, 65535], "vnfeeling fools can with such": [0, 65535], "fools can with such wrongs": [0, 65535], "can with such wrongs dispence": [0, 65535], "with such wrongs dispence i": [0, 65535], "such wrongs dispence i know": [0, 65535], "wrongs dispence i know his": [0, 65535], "dispence i know his eye": [0, 65535], "i know his eye doth": [0, 65535], "know his eye doth homage": [0, 65535], "his eye doth homage other": [0, 65535], "eye doth homage other where": [0, 65535], "doth homage other where or": [0, 65535], "homage other where or else": [0, 65535], "other where or else what": [0, 65535], "where or else what lets": [0, 65535], "or else what lets it": [0, 65535], "else what lets it but": [0, 65535], "what lets it but he": [0, 65535], "lets it but he would": [0, 65535], "it but he would be": [0, 65535], "but he would be here": [0, 65535], "he would be here sister": [0, 65535], "would be here sister you": [0, 65535], "be here sister you know": [0, 65535], "here sister you know he": [0, 65535], "sister you know he promis'd": [0, 65535], "you know he promis'd me": [0, 65535], "know he promis'd me a": [0, 65535], "he promis'd me a chaine": [0, 65535], "promis'd me a chaine would": [0, 65535], "me a chaine would that": [0, 65535], "a chaine would that alone": [0, 65535], "chaine would that alone a": [0, 65535], "would that alone a loue": [0, 65535], "that alone a loue he": [0, 65535], "alone a loue he would": [0, 65535], "a loue he would detaine": [0, 65535], "loue he would detaine so": [0, 65535], "he would detaine so he": [0, 65535], "would detaine so he would": [0, 65535], "detaine so he would keepe": [0, 65535], "so he would keepe faire": [0, 65535], "he would keepe faire quarter": [0, 65535], "would keepe faire quarter with": [0, 65535], "keepe faire quarter with his": [0, 65535], "faire quarter with his bed": [0, 65535], "quarter with his bed i": [0, 65535], "with his bed i see": [0, 65535], "his bed i see the": [0, 65535], "bed i see the iewell": [0, 65535], "i see the iewell best": [0, 65535], "see the iewell best enamaled": [0, 65535], "the iewell best enamaled will": [0, 65535], "iewell best enamaled will loose": [0, 65535], "best enamaled will loose his": [0, 65535], "enamaled will loose his beautie": [0, 65535], "will loose his beautie yet": [0, 65535], "loose his beautie yet the": [0, 65535], "his beautie yet the gold": [0, 65535], "beautie yet the gold bides": [0, 65535], "yet the gold bides still": [0, 65535], "the gold bides still that": [0, 65535], "gold bides still that others": [0, 65535], "bides still that others touch": [0, 65535], "still that others touch and": [0, 65535], "that others touch and often": [0, 65535], "others touch and often touching": [0, 65535], "touch and often touching will": [0, 65535], "and often touching will where": [0, 65535], "often touching will where gold": [0, 65535], "touching will where gold and": [0, 65535], "will where gold and no": [0, 65535], "where gold and no man": [0, 65535], "gold and no man that": [0, 65535], "and no man that hath": [0, 65535], "no man that hath a": [0, 65535], "man that hath a name": [0, 65535], "that hath a name by": [0, 65535], "hath a name by falshood": [0, 65535], "a name by falshood and": [0, 65535], "name by falshood and corruption": [0, 65535], "by falshood and corruption doth": [0, 65535], "falshood and corruption doth it": [0, 65535], "and corruption doth it shame": [0, 65535], "corruption doth it shame since": [0, 65535], "doth it shame since that": [0, 65535], "it shame since that my": [0, 65535], "shame since that my beautie": [0, 65535], "since that my beautie cannot": [0, 65535], "that my beautie cannot please": [0, 65535], "my beautie cannot please his": [0, 65535], "beautie cannot please his eie": [0, 65535], "cannot please his eie ile": [0, 65535], "please his eie ile weepe": [0, 65535], "his eie ile weepe what's": [0, 65535], "eie ile weepe what's left": [0, 65535], "ile weepe what's left away": [0, 65535], "weepe what's left away and": [0, 65535], "what's left away and weeping": [0, 65535], "left away and weeping die": [0, 65535], "away and weeping die luci": [0, 65535], "and weeping die luci how": [0, 65535], "weeping die luci how manie": [0, 65535], "die luci how manie fond": [0, 65535], "luci how manie fond fooles": [0, 65535], "how manie fond fooles serue": [0, 65535], "manie fond fooles serue mad": [0, 65535], "fond fooles serue mad ielousie": [0, 65535], "fooles serue mad ielousie exit": [0, 65535], "serue mad ielousie exit enter": [0, 65535], "mad ielousie exit enter antipholis": [0, 65535], "ielousie exit enter antipholis errotis": [0, 65535], "exit enter antipholis errotis ant": [0, 65535], "enter antipholis errotis ant the": [0, 65535], "antipholis errotis ant the gold": [0, 65535], "errotis ant the gold i": [0, 65535], "ant the gold i gaue": [0, 65535], "the gold i gaue to": [0, 65535], "gold i gaue to dromio": [0, 65535], "i gaue to dromio is": [0, 65535], "gaue to dromio is laid": [0, 65535], "to dromio is laid vp": [0, 65535], "dromio is laid vp safe": [0, 65535], "is laid vp safe at": [0, 65535], "laid vp safe at the": [0, 65535], "vp safe at the centaur": [0, 65535], "safe at the centaur and": [0, 65535], "at the centaur and the": [0, 65535], "the centaur and the heedfull": [0, 65535], "centaur and the heedfull slaue": [0, 65535], "and the heedfull slaue is": [0, 65535], "the heedfull slaue is wandred": [0, 65535], "heedfull slaue is wandred forth": [0, 65535], "slaue is wandred forth in": [0, 65535], "is wandred forth in care": [0, 65535], "wandred forth in care to": [0, 65535], "forth in care to seeke": [0, 65535], "in care to seeke me": [0, 65535], "care to seeke me out": [0, 65535], "to seeke me out by": [0, 65535], "seeke me out by computation": [0, 65535], "me out by computation and": [0, 65535], "out by computation and mine": [0, 65535], "by computation and mine hosts": [0, 65535], "computation and mine hosts report": [0, 65535], "and mine hosts report i": [0, 65535], "mine hosts report i could": [0, 65535], "hosts report i could not": [0, 65535], "report i could not speake": [0, 65535], "i could not speake with": [0, 65535], "could not speake with dromio": [0, 65535], "not speake with dromio since": [0, 65535], "speake with dromio since at": [0, 65535], "with dromio since at first": [0, 65535], "dromio since at first i": [0, 65535], "since at first i sent": [0, 65535], "at first i sent him": [0, 65535], "first i sent him from": [0, 65535], "i sent him from the": [0, 65535], "sent him from the mart": [0, 65535], "him from the mart see": [0, 65535], "from the mart see here": [0, 65535], "the mart see here he": [0, 65535], "mart see here he comes": [0, 65535], "see here he comes enter": [0, 65535], "here he comes enter dromio": [0, 65535], "he comes enter dromio siracusia": [0, 65535], "comes enter dromio siracusia how": [0, 65535], "enter dromio siracusia how now": [0, 65535], "dromio siracusia how now sir": [0, 65535], "siracusia how now sir is": [0, 65535], "how now sir is your": [0, 65535], "now sir is your merrie": [0, 65535], "sir is your merrie humor": [0, 65535], "is your merrie humor alter'd": [0, 65535], "your merrie humor alter'd as": [0, 65535], "merrie humor alter'd as you": [0, 65535], "humor alter'd as you loue": [0, 65535], "alter'd as you loue stroakes": [0, 65535], "as you loue stroakes so": [0, 65535], "you loue stroakes so iest": [0, 65535], "loue stroakes so iest with": [0, 65535], "stroakes so iest with me": [0, 65535], "so iest with me againe": [0, 65535], "iest with me againe you": [0, 65535], "with me againe you know": [0, 65535], "me againe you know no": [0, 65535], "againe you know no centaur": [0, 65535], "you know no centaur you": [0, 65535], "know no centaur you receiu'd": [0, 65535], "no centaur you receiu'd no": [0, 65535], "centaur you receiu'd no gold": [0, 65535], "you receiu'd no gold your": [0, 65535], "receiu'd no gold your mistresse": [0, 65535], "no gold your mistresse sent": [0, 65535], "gold your mistresse sent to": [0, 65535], "your mistresse sent to haue": [0, 65535], "mistresse sent to haue me": [0, 65535], "sent to haue me home": [0, 65535], "to haue me home to": [0, 65535], "haue me home to dinner": [0, 65535], "me home to dinner my": [0, 65535], "home to dinner my house": [0, 65535], "to dinner my house was": [0, 65535], "dinner my house was at": [0, 65535], "my house was at the": [0, 65535], "house was at the ph\u0153nix": [0, 65535], "was at the ph\u0153nix wast": [0, 65535], "at the ph\u0153nix wast thou": [0, 65535], "the ph\u0153nix wast thou mad": [0, 65535], "ph\u0153nix wast thou mad that": [0, 65535], "wast thou mad that thus": [0, 65535], "thou mad that thus so": [0, 65535], "mad that thus so madlie": [0, 65535], "that thus so madlie thou": [0, 65535], "thus so madlie thou did": [0, 65535], "so madlie thou did didst": [0, 65535], "madlie thou did didst answere": [0, 65535], "thou did didst answere me": [0, 65535], "did didst answere me s": [0, 65535], "didst answere me s dro": [0, 65535], "answere me s dro what": [0, 65535], "me s dro what answer": [0, 65535], "s dro what answer sir": [0, 65535], "dro what answer sir when": [0, 65535], "what answer sir when spake": [0, 65535], "answer sir when spake i": [0, 65535], "sir when spake i such": [0, 65535], "when spake i such a": [0, 65535], "spake i such a word": [0, 65535], "i such a word e": [0, 65535], "such a word e ant": [0, 65535], "a word e ant euen": [0, 65535], "word e ant euen now": [0, 65535], "e ant euen now euen": [0, 65535], "ant euen now euen here": [0, 65535], "euen now euen here not": [0, 65535], "now euen here not halfe": [0, 65535], "euen here not halfe an": [0, 65535], "here not halfe an howre": [0, 65535], "not halfe an howre since": [0, 65535], "halfe an howre since s": [0, 65535], "an howre since s dro": [0, 65535], "howre since s dro i": [0, 65535], "since s dro i did": [0, 65535], "s dro i did not": [0, 65535], "dro i did not see": [0, 65535], "i did not see you": [0, 65535], "did not see you since": [0, 65535], "not see you since you": [0, 65535], "see you since you sent": [0, 65535], "you since you sent me": [0, 65535], "since you sent me hence": [0, 65535], "you sent me hence home": [0, 65535], "sent me hence home to": [0, 65535], "me hence home to the": [0, 65535], "hence home to the centaur": [0, 65535], "home to the centaur with": [0, 65535], "to the centaur with the": [0, 65535], "the centaur with the gold": [0, 65535], "centaur with the gold you": [0, 65535], "with the gold you gaue": [0, 65535], "the gold you gaue me": [0, 65535], "gold you gaue me ant": [0, 65535], "you gaue me ant villaine": [0, 65535], "gaue me ant villaine thou": [0, 65535], "me ant villaine thou didst": [0, 65535], "ant villaine thou didst denie": [0, 65535], "villaine thou didst denie the": [0, 65535], "thou didst denie the golds": [0, 65535], "didst denie the golds receit": [0, 65535], "denie the golds receit and": [0, 65535], "the golds receit and toldst": [0, 65535], "golds receit and toldst me": [0, 65535], "receit and toldst me of": [0, 65535], "and toldst me of a": [0, 65535], "toldst me of a mistresse": [0, 65535], "me of a mistresse and": [0, 65535], "of a mistresse and a": [0, 65535], "a mistresse and a dinner": [0, 65535], "mistresse and a dinner for": [0, 65535], "and a dinner for which": [0, 65535], "a dinner for which i": [0, 65535], "dinner for which i hope": [0, 65535], "for which i hope thou": [0, 65535], "which i hope thou feltst": [0, 65535], "i hope thou feltst i": [0, 65535], "hope thou feltst i was": [0, 65535], "thou feltst i was displeas'd": [0, 65535], "feltst i was displeas'd s": [0, 65535], "i was displeas'd s dro": [0, 65535], "was displeas'd s dro i": [0, 65535], "displeas'd s dro i am": [0, 65535], "s dro i am glad": [0, 65535], "dro i am glad to": [0, 65535], "i am glad to see": [0, 65535], "am glad to see you": [0, 65535], "glad to see you in": [0, 65535], "to see you in this": [0, 65535], "see you in this merrie": [0, 65535], "you in this merrie vaine": [0, 65535], "in this merrie vaine what": [0, 65535], "this merrie vaine what meanes": [0, 65535], "merrie vaine what meanes this": [0, 65535], "vaine what meanes this iest": [0, 65535], "what meanes this iest i": [0, 65535], "meanes this iest i pray": [0, 65535], "this iest i pray you": [0, 65535], "iest i pray you master": [0, 65535], "i pray you master tell": [0, 65535], "pray you master tell me": [0, 65535], "you master tell me ant": [0, 65535], "master tell me ant yea": [0, 65535], "tell me ant yea dost": [0, 65535], "me ant yea dost thou": [0, 65535], "ant yea dost thou ieere": [0, 65535], "yea dost thou ieere flowt": [0, 65535], "dost thou ieere flowt me": [0, 65535], "thou ieere flowt me in": [0, 65535], "ieere flowt me in the": [0, 65535], "flowt me in the teeth": [0, 65535], "me in the teeth thinkst": [0, 65535], "in the teeth thinkst thou": [0, 65535], "the teeth thinkst thou i": [0, 65535], "teeth thinkst thou i iest": [0, 65535], "thinkst thou i iest hold": [0, 65535], "thou i iest hold take": [0, 65535], "i iest hold take thou": [0, 65535], "iest hold take thou that": [0, 65535], "hold take thou that that": [0, 65535], "take thou that that beats": [0, 65535], "thou that that beats dro": [0, 65535], "that that beats dro s": [0, 65535], "that beats dro s dr": [0, 65535], "beats dro s dr hold": [0, 65535], "dro s dr hold sir": [0, 65535], "s dr hold sir for": [0, 65535], "dr hold sir for gods": [0, 65535], "hold sir for gods sake": [0, 65535], "sir for gods sake now": [0, 65535], "for gods sake now your": [0, 65535], "gods sake now your iest": [0, 65535], "sake now your iest is": [0, 65535], "now your iest is earnest": [0, 65535], "your iest is earnest vpon": [0, 65535], "iest is earnest vpon what": [0, 65535], "is earnest vpon what bargaine": [0, 65535], "earnest vpon what bargaine do": [0, 65535], "vpon what bargaine do you": [0, 65535], "what bargaine do you giue": [0, 65535], "bargaine do you giue it": [0, 65535], "do you giue it me": [0, 65535], "you giue it me antiph": [0, 65535], "giue it me antiph because": [0, 65535], "it me antiph because that": [0, 65535], "me antiph because that i": [0, 65535], "antiph because that i familiarlie": [0, 65535], "because that i familiarlie sometimes": [0, 65535], "that i familiarlie sometimes doe": [0, 65535], "i familiarlie sometimes doe vse": [0, 65535], "familiarlie sometimes doe vse you": [0, 65535], "sometimes doe vse you for": [0, 65535], "doe vse you for my": [0, 65535], "vse you for my foole": [0, 65535], "you for my foole and": [0, 65535], "for my foole and chat": [0, 65535], "my foole and chat with": [0, 65535], "foole and chat with you": [0, 65535], "and chat with you your": [0, 65535], "chat with you your sawcinesse": [0, 65535], "with you your sawcinesse will": [0, 65535], "you your sawcinesse will iest": [0, 65535], "your sawcinesse will iest vpon": [0, 65535], "sawcinesse will iest vpon my": [0, 65535], "will iest vpon my loue": [0, 65535], "iest vpon my loue and": [0, 65535], "vpon my loue and make": [0, 65535], "my loue and make a": [0, 65535], "loue and make a common": [0, 65535], "and make a common of": [0, 65535], "make a common of my": [0, 65535], "a common of my serious": [0, 65535], "common of my serious howres": [0, 65535], "of my serious howres when": [0, 65535], "my serious howres when the": [0, 65535], "serious howres when the sunne": [0, 65535], "howres when the sunne shines": [0, 65535], "when the sunne shines let": [0, 65535], "the sunne shines let foolish": [0, 65535], "sunne shines let foolish gnats": [0, 65535], "shines let foolish gnats make": [0, 65535], "let foolish gnats make sport": [0, 65535], "foolish gnats make sport but": [0, 65535], "gnats make sport but creepe": [0, 65535], "make sport but creepe in": [0, 65535], "sport but creepe in crannies": [0, 65535], "but creepe in crannies when": [0, 65535], "creepe in crannies when he": [0, 65535], "in crannies when he hides": [0, 65535], "crannies when he hides his": [0, 65535], "when he hides his beames": [0, 65535], "he hides his beames if": [0, 65535], "hides his beames if you": [0, 65535], "his beames if you will": [0, 65535], "beames if you will iest": [0, 65535], "if you will iest with": [0, 65535], "you will iest with me": [0, 65535], "will iest with me know": [0, 65535], "iest with me know my": [0, 65535], "with me know my aspect": [0, 65535], "me know my aspect and": [0, 65535], "know my aspect and fashion": [0, 65535], "my aspect and fashion your": [0, 65535], "aspect and fashion your demeanor": [0, 65535], "and fashion your demeanor to": [0, 65535], "fashion your demeanor to my": [0, 65535], "your demeanor to my lookes": [0, 65535], "demeanor to my lookes or": [0, 65535], "to my lookes or i": [0, 65535], "my lookes or i will": [0, 65535], "lookes or i will beat": [0, 65535], "or i will beat this": [0, 65535], "i will beat this method": [0, 65535], "will beat this method in": [0, 65535], "beat this method in your": [0, 65535], "this method in your sconce": [0, 65535], "method in your sconce s": [0, 65535], "in your sconce s dro": [0, 65535], "your sconce s dro sconce": [0, 65535], "sconce s dro sconce call": [0, 65535], "s dro sconce call you": [0, 65535], "dro sconce call you it": [0, 65535], "sconce call you it so": [0, 65535], "call you it so you": [0, 65535], "you it so you would": [0, 65535], "it so you would leaue": [0, 65535], "so you would leaue battering": [0, 65535], "you would leaue battering i": [0, 65535], "would leaue battering i had": [0, 65535], "leaue battering i had rather": [0, 65535], "battering i had rather haue": [0, 65535], "i had rather haue it": [0, 65535], "had rather haue it a": [0, 65535], "rather haue it a head": [0, 65535], "haue it a head and": [0, 65535], "it a head and you": [0, 65535], "a head and you vse": [0, 65535], "head and you vse these": [0, 65535], "and you vse these blows": [0, 65535], "you vse these blows long": [0, 65535], "vse these blows long i": [0, 65535], "these blows long i must": [0, 65535], "blows long i must get": [0, 65535], "long i must get a": [0, 65535], "i must get a sconce": [0, 65535], "must get a sconce for": [0, 65535], "get a sconce for my": [0, 65535], "a sconce for my head": [0, 65535], "sconce for my head and": [0, 65535], "for my head and insconce": [0, 65535], "my head and insconce it": [0, 65535], "head and insconce it to": [0, 65535], "and insconce it to or": [0, 65535], "insconce it to or else": [0, 65535], "it to or else i": [0, 65535], "to or else i shall": [0, 65535], "or else i shall seek": [0, 65535], "else i shall seek my": [0, 65535], "i shall seek my wit": [0, 65535], "shall seek my wit in": [0, 65535], "seek my wit in my": [0, 65535], "my wit in my shoulders": [0, 65535], "wit in my shoulders but": [0, 65535], "in my shoulders but i": [0, 65535], "my shoulders but i pray": [0, 65535], "shoulders but i pray sir": [0, 65535], "but i pray sir why": [0, 65535], "i pray sir why am": [0, 65535], "pray sir why am i": [0, 65535], "sir why am i beaten": [0, 65535], "why am i beaten ant": [0, 65535], "am i beaten ant dost": [0, 65535], "i beaten ant dost thou": [0, 65535], "beaten ant dost thou not": [0, 65535], "ant dost thou not know": [0, 65535], "dost thou not know s": [0, 65535], "thou not know s dro": [0, 65535], "not know s dro nothing": [0, 65535], "know s dro nothing sir": [0, 65535], "s dro nothing sir but": [0, 65535], "dro nothing sir but that": [0, 65535], "nothing sir but that i": [0, 65535], "sir but that i am": [0, 65535], "but that i am beaten": [0, 65535], "that i am beaten ant": [0, 65535], "i am beaten ant shall": [0, 65535], "am beaten ant shall i": [0, 65535], "beaten ant shall i tell": [0, 65535], "ant shall i tell you": [0, 65535], "shall i tell you why": [0, 65535], "i tell you why s": [0, 65535], "tell you why s dro": [0, 65535], "you why s dro i": [0, 65535], "why s dro i sir": [0, 65535], "s dro i sir and": [0, 65535], "dro i sir and wherefore": [0, 65535], "i sir and wherefore for": [0, 65535], "sir and wherefore for they": [0, 65535], "and wherefore for they say": [0, 65535], "wherefore for they say euery": [0, 65535], "for they say euery why": [0, 65535], "they say euery why hath": [0, 65535], "say euery why hath a": [0, 65535], "euery why hath a wherefore": [0, 65535], "why hath a wherefore ant": [0, 65535], "hath a wherefore ant why": [0, 65535], "a wherefore ant why first": [0, 65535], "wherefore ant why first for": [0, 65535], "ant why first for flowting": [0, 65535], "why first for flowting me": [0, 65535], "first for flowting me and": [0, 65535], "for flowting me and then": [0, 65535], "flowting me and then wherefore": [0, 65535], "me and then wherefore for": [0, 65535], "and then wherefore for vrging": [0, 65535], "then wherefore for vrging it": [0, 65535], "wherefore for vrging it the": [0, 65535], "for vrging it the second": [0, 65535], "vrging it the second time": [0, 65535], "it the second time to": [0, 65535], "the second time to me": [0, 65535], "second time to me s": [0, 65535], "time to me s dro": [0, 65535], "to me s dro was": [0, 65535], "me s dro was there": [0, 65535], "s dro was there euer": [0, 65535], "dro was there euer anie": [0, 65535], "was there euer anie man": [0, 65535], "there euer anie man thus": [0, 65535], "euer anie man thus beaten": [0, 65535], "anie man thus beaten out": [0, 65535], "man thus beaten out of": [0, 65535], "thus beaten out of season": [0, 65535], "beaten out of season when": [0, 65535], "out of season when in": [0, 65535], "of season when in the": [0, 65535], "season when in the why": [0, 65535], "when in the why and": [0, 65535], "in the why and the": [0, 65535], "the why and the wherefore": [0, 65535], "why and the wherefore is": [0, 65535], "and the wherefore is neither": [0, 65535], "the wherefore is neither rime": [0, 65535], "wherefore is neither rime nor": [0, 65535], "is neither rime nor reason": [0, 65535], "neither rime nor reason well": [0, 65535], "rime nor reason well sir": [0, 65535], "nor reason well sir i": [0, 65535], "reason well sir i thanke": [0, 65535], "well sir i thanke you": [0, 65535], "sir i thanke you ant": [0, 65535], "i thanke you ant thanke": [0, 65535], "thanke you ant thanke me": [0, 65535], "you ant thanke me sir": [0, 65535], "ant thanke me sir for": [0, 65535], "thanke me sir for what": [0, 65535], "me sir for what s": [0, 65535], "sir for what s dro": [0, 65535], "for what s dro marry": [0, 65535], "what s dro marry sir": [0, 65535], "s dro marry sir for": [0, 65535], "dro marry sir for this": [0, 65535], "marry sir for this something": [0, 65535], "sir for this something that": [0, 65535], "for this something that you": [0, 65535], "this something that you gaue": [0, 65535], "something that you gaue me": [0, 65535], "that you gaue me for": [0, 65535], "you gaue me for nothing": [0, 65535], "gaue me for nothing ant": [0, 65535], "me for nothing ant ile": [0, 65535], "for nothing ant ile make": [0, 65535], "nothing ant ile make you": [0, 65535], "ant ile make you amends": [0, 65535], "ile make you amends next": [0, 65535], "make you amends next to": [0, 65535], "you amends next to giue": [0, 65535], "amends next to giue you": [0, 65535], "next to giue you nothing": [0, 65535], "to giue you nothing for": [0, 65535], "giue you nothing for something": [0, 65535], "you nothing for something but": [0, 65535], "nothing for something but say": [0, 65535], "for something but say sir": [0, 65535], "something but say sir is": [0, 65535], "but say sir is it": [0, 65535], "say sir is it dinner": [0, 65535], "sir is it dinner time": [0, 65535], "is it dinner time s": [0, 65535], "it dinner time s dro": [0, 65535], "dinner time s dro no": [0, 65535], "time s dro no sir": [0, 65535], "s dro no sir i": [0, 65535], "dro no sir i thinke": [0, 65535], "no sir i thinke the": [0, 65535], "sir i thinke the meat": [0, 65535], "i thinke the meat wants": [0, 65535], "thinke the meat wants that": [0, 65535], "the meat wants that i": [0, 65535], "meat wants that i haue": [0, 65535], "wants that i haue ant": [0, 65535], "that i haue ant in": [0, 65535], "i haue ant in good": [0, 65535], "haue ant in good time": [0, 65535], "ant in good time sir": [0, 65535], "in good time sir what's": [0, 65535], "good time sir what's that": [0, 65535], "time sir what's that s": [0, 65535], "sir what's that s dro": [0, 65535], "what's that s dro basting": [0, 65535], "that s dro basting ant": [0, 65535], "s dro basting ant well": [0, 65535], "dro basting ant well sir": [0, 65535], "basting ant well sir then": [0, 65535], "ant well sir then 'twill": [0, 65535], "well sir then 'twill be": [0, 65535], "sir then 'twill be drie": [0, 65535], "then 'twill be drie s": [0, 65535], "'twill be drie s dro": [0, 65535], "be drie s dro if": [0, 65535], "drie s dro if it": [0, 65535], "s dro if it be": [0, 65535], "dro if it be sir": [0, 65535], "if it be sir i": [0, 65535], "it be sir i pray": [0, 65535], "be sir i pray you": [0, 65535], "sir i pray you eat": [0, 65535], "i pray you eat none": [0, 65535], "pray you eat none of": [0, 65535], "you eat none of it": [0, 65535], "eat none of it ant": [0, 65535], "none of it ant your": [0, 65535], "of it ant your reason": [0, 65535], "it ant your reason s": [0, 65535], "ant your reason s dro": [0, 65535], "your reason s dro lest": [0, 65535], "reason s dro lest it": [0, 65535], "s dro lest it make": [0, 65535], "dro lest it make you": [0, 65535], "lest it make you chollericke": [0, 65535], "it make you chollericke and": [0, 65535], "make you chollericke and purchase": [0, 65535], "you chollericke and purchase me": [0, 65535], "chollericke and purchase me another": [0, 65535], "and purchase me another drie": [0, 65535], "purchase me another drie basting": [0, 65535], "me another drie basting ant": [0, 65535], "another drie basting ant well": [0, 65535], "drie basting ant well sir": [0, 65535], "basting ant well sir learne": [0, 65535], "ant well sir learne to": [0, 65535], "well sir learne to iest": [0, 65535], "sir learne to iest in": [0, 65535], "learne to iest in good": [0, 65535], "to iest in good time": [0, 65535], "iest in good time there's": [0, 65535], "in good time there's a": [0, 65535], "good time there's a time": [0, 65535], "time there's a time for": [0, 65535], "there's a time for all": [0, 65535], "a time for all things": [0, 65535], "time for all things s": [0, 65535], "for all things s dro": [0, 65535], "all things s dro i": [0, 65535], "things s dro i durst": [0, 65535], "s dro i durst haue": [0, 65535], "dro i durst haue denied": [0, 65535], "i durst haue denied that": [0, 65535], "durst haue denied that before": [0, 65535], "haue denied that before you": [0, 65535], "denied that before you were": [0, 65535], "that before you were so": [0, 65535], "before you were so chollericke": [0, 65535], "you were so chollericke anti": [0, 65535], "were so chollericke anti by": [0, 65535], "so chollericke anti by what": [0, 65535], "chollericke anti by what rule": [0, 65535], "anti by what rule sir": [0, 65535], "by what rule sir s": [0, 65535], "what rule sir s dro": [0, 65535], "rule sir s dro marry": [0, 65535], "sir s dro marry sir": [0, 65535], "s dro marry sir by": [0, 65535], "dro marry sir by a": [0, 65535], "marry sir by a rule": [0, 65535], "sir by a rule as": [0, 65535], "by a rule as plaine": [0, 65535], "a rule as plaine as": [0, 65535], "rule as plaine as the": [0, 65535], "as plaine as the plaine": [0, 65535], "plaine as the plaine bald": [0, 65535], "as the plaine bald pate": [0, 65535], "the plaine bald pate of": [0, 65535], "plaine bald pate of father": [0, 65535], "bald pate of father time": [0, 65535], "pate of father time himselfe": [0, 65535], "of father time himselfe ant": [0, 65535], "father time himselfe ant let's": [0, 65535], "time himselfe ant let's heare": [0, 65535], "himselfe ant let's heare it": [0, 65535], "ant let's heare it s": [0, 65535], "let's heare it s dro": [0, 65535], "heare it s dro there's": [0, 65535], "it s dro there's no": [0, 65535], "s dro there's no time": [0, 65535], "dro there's no time for": [0, 65535], "there's no time for a": [0, 65535], "no time for a man": [0, 65535], "time for a man to": [0, 65535], "for a man to recouer": [0, 65535], "a man to recouer his": [0, 65535], "man to recouer his haire": [0, 65535], "to recouer his haire that": [0, 65535], "recouer his haire that growes": [0, 65535], "his haire that growes bald": [0, 65535], "haire that growes bald by": [0, 65535], "that growes bald by nature": [0, 65535], "growes bald by nature ant": [0, 65535], "bald by nature ant may": [0, 65535], "by nature ant may he": [0, 65535], "nature ant may he not": [0, 65535], "ant may he not doe": [0, 65535], "may he not doe it": [0, 65535], "he not doe it by": [0, 65535], "not doe it by fine": [0, 65535], "doe it by fine and": [0, 65535], "it by fine and recouerie": [0, 65535], "by fine and recouerie s": [0, 65535], "fine and recouerie s dro": [0, 65535], "and recouerie s dro yes": [0, 65535], "recouerie s dro yes to": [0, 65535], "s dro yes to pay": [0, 65535], "dro yes to pay a": [0, 65535], "yes to pay a fine": [0, 65535], "to pay a fine for": [0, 65535], "pay a fine for a": [0, 65535], "a fine for a perewig": [0, 65535], "fine for a perewig and": [0, 65535], "for a perewig and recouer": [0, 65535], "a perewig and recouer the": [0, 65535], "perewig and recouer the lost": [0, 65535], "and recouer the lost haire": [0, 65535], "recouer the lost haire of": [0, 65535], "the lost haire of another": [0, 65535], "lost haire of another man": [0, 65535], "haire of another man ant": [0, 65535], "of another man ant why": [0, 65535], "another man ant why is": [0, 65535], "man ant why is time": [0, 65535], "ant why is time such": [0, 65535], "why is time such a": [0, 65535], "is time such a niggard": [0, 65535], "time such a niggard of": [0, 65535], "such a niggard of haire": [0, 65535], "a niggard of haire being": [0, 65535], "niggard of haire being as": [0, 65535], "of haire being as it": [0, 65535], "haire being as it is": [0, 65535], "being as it is so": [0, 65535], "as it is so plentifull": [0, 65535], "it is so plentifull an": [0, 65535], "is so plentifull an excrement": [0, 65535], "so plentifull an excrement s": [0, 65535], "plentifull an excrement s dro": [0, 65535], "an excrement s dro because": [0, 65535], "excrement s dro because it": [0, 65535], "s dro because it is": [0, 65535], "dro because it is a": [0, 65535], "because it is a blessing": [0, 65535], "it is a blessing that": [0, 65535], "is a blessing that hee": [0, 65535], "a blessing that hee bestowes": [0, 65535], "blessing that hee bestowes on": [0, 65535], "that hee bestowes on beasts": [0, 65535], "hee bestowes on beasts and": [0, 65535], "bestowes on beasts and what": [0, 65535], "on beasts and what he": [0, 65535], "beasts and what he hath": [0, 65535], "and what he hath scanted": [0, 65535], "what he hath scanted them": [0, 65535], "he hath scanted them in": [0, 65535], "hath scanted them in haire": [0, 65535], "scanted them in haire hee": [0, 65535], "them in haire hee hath": [0, 65535], "in haire hee hath giuen": [0, 65535], "haire hee hath giuen them": [0, 65535], "hee hath giuen them in": [0, 65535], "hath giuen them in wit": [0, 65535], "giuen them in wit ant": [0, 65535], "them in wit ant why": [0, 65535], "in wit ant why but": [0, 65535], "wit ant why but theres": [0, 65535], "ant why but theres manie": [0, 65535], "why but theres manie a": [0, 65535], "but theres manie a man": [0, 65535], "theres manie a man hath": [0, 65535], "manie a man hath more": [0, 65535], "a man hath more haire": [0, 65535], "man hath more haire then": [0, 65535], "hath more haire then wit": [0, 65535], "more haire then wit s": [0, 65535], "haire then wit s dro": [0, 65535], "then wit s dro not": [0, 65535], "wit s dro not a": [0, 65535], "s dro not a man": [0, 65535], "dro not a man of": [0, 65535], "not a man of those": [0, 65535], "a man of those but": [0, 65535], "man of those but he": [0, 65535], "of those but he hath": [0, 65535], "those but he hath the": [0, 65535], "but he hath the wit": [0, 65535], "he hath the wit to": [0, 65535], "hath the wit to lose": [0, 65535], "the wit to lose his": [0, 65535], "wit to lose his haire": [0, 65535], "to lose his haire ant": [0, 65535], "lose his haire ant why": [0, 65535], "his haire ant why thou": [0, 65535], "haire ant why thou didst": [0, 65535], "ant why thou didst conclude": [0, 65535], "why thou didst conclude hairy": [0, 65535], "thou didst conclude hairy men": [0, 65535], "didst conclude hairy men plain": [0, 65535], "conclude hairy men plain dealers": [0, 65535], "hairy men plain dealers without": [0, 65535], "men plain dealers without wit": [0, 65535], "plain dealers without wit s": [0, 65535], "dealers without wit s dro": [0, 65535], "without wit s dro the": [0, 65535], "wit s dro the plainer": [0, 65535], "s dro the plainer dealer": [0, 65535], "dro the plainer dealer the": [0, 65535], "the plainer dealer the sooner": [0, 65535], "plainer dealer the sooner lost": [0, 65535], "dealer the sooner lost yet": [0, 65535], "the sooner lost yet he": [0, 65535], "sooner lost yet he looseth": [0, 65535], "lost yet he looseth it": [0, 65535], "yet he looseth it in": [0, 65535], "he looseth it in a": [0, 65535], "looseth it in a kinde": [0, 65535], "it in a kinde of": [0, 65535], "in a kinde of iollitie": [0, 65535], "a kinde of iollitie an": [0, 65535], "kinde of iollitie an for": [0, 65535], "of iollitie an for what": [0, 65535], "iollitie an for what reason": [0, 65535], "an for what reason s": [0, 65535], "for what reason s dro": [0, 65535], "what reason s dro for": [0, 65535], "reason s dro for two": [0, 65535], "s dro for two and": [0, 65535], "dro for two and sound": [0, 65535], "for two and sound ones": [0, 65535], "two and sound ones to": [0, 65535], "and sound ones to an": [0, 65535], "sound ones to an nay": [0, 65535], "ones to an nay not": [0, 65535], "to an nay not sound": [0, 65535], "an nay not sound i": [0, 65535], "nay not sound i pray": [0, 65535], "not sound i pray you": [0, 65535], "sound i pray you s": [0, 65535], "i pray you s dro": [0, 65535], "pray you s dro sure": [0, 65535], "you s dro sure ones": [0, 65535], "s dro sure ones then": [0, 65535], "dro sure ones then an": [0, 65535], "sure ones then an nay": [0, 65535], "ones then an nay not": [0, 65535], "then an nay not sure": [0, 65535], "an nay not sure in": [0, 65535], "nay not sure in a": [0, 65535], "not sure in a thing": [0, 65535], "sure in a thing falsing": [0, 65535], "in a thing falsing s": [0, 65535], "a thing falsing s dro": [0, 65535], "thing falsing s dro certaine": [0, 65535], "falsing s dro certaine ones": [0, 65535], "s dro certaine ones then": [0, 65535], "dro certaine ones then an": [0, 65535], "certaine ones then an name": [0, 65535], "ones then an name them": [0, 65535], "then an name them s": [0, 65535], "an name them s dro": [0, 65535], "name them s dro the": [0, 65535], "them s dro the one": [0, 65535], "s dro the one to": [0, 65535], "dro the one to saue": [0, 65535], "the one to saue the": [0, 65535], "one to saue the money": [0, 65535], "to saue the money that": [0, 65535], "saue the money that he": [0, 65535], "the money that he spends": [0, 65535], "money that he spends in": [0, 65535], "that he spends in trying": [0, 65535], "he spends in trying the": [0, 65535], "spends in trying the other": [0, 65535], "in trying the other that": [0, 65535], "trying the other that at": [0, 65535], "the other that at dinner": [0, 65535], "other that at dinner they": [0, 65535], "that at dinner they should": [0, 65535], "at dinner they should not": [0, 65535], "dinner they should not drop": [0, 65535], "they should not drop in": [0, 65535], "should not drop in his": [0, 65535], "not drop in his porrage": [0, 65535], "drop in his porrage an": [0, 65535], "in his porrage an you": [0, 65535], "his porrage an you would": [0, 65535], "porrage an you would all": [0, 65535], "an you would all this": [0, 65535], "you would all this time": [0, 65535], "would all this time haue": [0, 65535], "all this time haue prou'd": [0, 65535], "this time haue prou'd there": [0, 65535], "time haue prou'd there is": [0, 65535], "haue prou'd there is no": [0, 65535], "prou'd there is no time": [0, 65535], "there is no time for": [0, 65535], "is no time for all": [0, 65535], "no time for all things": [0, 65535], "all things s dro marry": [0, 65535], "things s dro marry and": [0, 65535], "s dro marry and did": [0, 65535], "dro marry and did sir": [0, 65535], "marry and did sir namely": [0, 65535], "and did sir namely in": [0, 65535], "did sir namely in no": [0, 65535], "sir namely in no time": [0, 65535], "namely in no time to": [0, 65535], "in no time to recouer": [0, 65535], "no time to recouer haire": [0, 65535], "time to recouer haire lost": [0, 65535], "to recouer haire lost by": [0, 65535], "recouer haire lost by nature": [0, 65535], "haire lost by nature an": [0, 65535], "lost by nature an but": [0, 65535], "by nature an but your": [0, 65535], "nature an but your reason": [0, 65535], "an but your reason was": [0, 65535], "but your reason was not": [0, 65535], "your reason was not substantiall": [0, 65535], "reason was not substantiall why": [0, 65535], "was not substantiall why there": [0, 65535], "not substantiall why there is": [0, 65535], "substantiall why there is no": [0, 65535], "why there is no time": [0, 65535], "there is no time to": [0, 65535], "is no time to recouer": [0, 65535], "no time to recouer s": [0, 65535], "time to recouer s dro": [0, 65535], "to recouer s dro thus": [0, 65535], "recouer s dro thus i": [0, 65535], "s dro thus i mend": [0, 65535], "dro thus i mend it": [0, 65535], "thus i mend it time": [0, 65535], "i mend it time himselfe": [0, 65535], "mend it time himselfe is": [0, 65535], "it time himselfe is bald": [0, 65535], "time himselfe is bald and": [0, 65535], "himselfe is bald and therefore": [0, 65535], "is bald and therefore to": [0, 65535], "bald and therefore to the": [0, 65535], "and therefore to the worlds": [0, 65535], "therefore to the worlds end": [0, 65535], "to the worlds end will": [0, 65535], "the worlds end will haue": [0, 65535], "worlds end will haue bald": [0, 65535], "end will haue bald followers": [0, 65535], "will haue bald followers an": [0, 65535], "haue bald followers an i": [0, 65535], "bald followers an i knew": [0, 65535], "followers an i knew 'twould": [0, 65535], "an i knew 'twould be": [0, 65535], "i knew 'twould be a": [0, 65535], "knew 'twould be a bald": [0, 65535], "'twould be a bald conclusion": [0, 65535], "be a bald conclusion but": [0, 65535], "a bald conclusion but soft": [0, 65535], "bald conclusion but soft who": [0, 65535], "conclusion but soft who wafts": [0, 65535], "but soft who wafts vs": [0, 65535], "soft who wafts vs yonder": [0, 65535], "who wafts vs yonder enter": [0, 65535], "wafts vs yonder enter adriana": [0, 65535], "vs yonder enter adriana and": [0, 65535], "yonder enter adriana and luciana": [0, 65535], "enter adriana and luciana adri": [0, 65535], "adriana and luciana adri i": [0, 65535], "and luciana adri i i": [0, 65535], "luciana adri i i antipholus": [0, 65535], "adri i i antipholus looke": [0, 65535], "i i antipholus looke strange": [0, 65535], "i antipholus looke strange and": [0, 65535], "antipholus looke strange and frowne": [0, 65535], "looke strange and frowne some": [0, 65535], "strange and frowne some other": [0, 65535], "and frowne some other mistresse": [0, 65535], "frowne some other mistresse hath": [0, 65535], "some other mistresse hath thy": [0, 65535], "other mistresse hath thy sweet": [0, 65535], "mistresse hath thy sweet aspects": [0, 65535], "hath thy sweet aspects i": [0, 65535], "thy sweet aspects i am": [0, 65535], "sweet aspects i am not": [0, 65535], "aspects i am not adriana": [0, 65535], "i am not adriana nor": [0, 65535], "am not adriana nor thy": [0, 65535], "not adriana nor thy wife": [0, 65535], "adriana nor thy wife the": [0, 65535], "nor thy wife the time": [0, 65535], "thy wife the time was": [0, 65535], "wife the time was once": [0, 65535], "the time was once when": [0, 65535], "time was once when thou": [0, 65535], "was once when thou vn": [0, 65535], "once when thou vn vrg'd": [0, 65535], "when thou vn vrg'd wouldst": [0, 65535], "thou vn vrg'd wouldst vow": [0, 65535], "vn vrg'd wouldst vow that": [0, 65535], "vrg'd wouldst vow that neuer": [0, 65535], "wouldst vow that neuer words": [0, 65535], "vow that neuer words were": [0, 65535], "that neuer words were musicke": [0, 65535], "neuer words were musicke to": [0, 65535], "words were musicke to thine": [0, 65535], "were musicke to thine eare": [0, 65535], "musicke to thine eare that": [0, 65535], "to thine eare that neuer": [0, 65535], "thine eare that neuer obiect": [0, 65535], "eare that neuer obiect pleasing": [0, 65535], "that neuer obiect pleasing in": [0, 65535], "neuer obiect pleasing in thine": [0, 65535], "obiect pleasing in thine eye": [0, 65535], "pleasing in thine eye that": [0, 65535], "in thine eye that neuer": [0, 65535], "thine eye that neuer touch": [0, 65535], "eye that neuer touch well": [0, 65535], "that neuer touch well welcome": [0, 65535], "neuer touch well welcome to": [0, 65535], "touch well welcome to thy": [0, 65535], "well welcome to thy hand": [0, 65535], "welcome to thy hand that": [0, 65535], "to thy hand that neuer": [0, 65535], "thy hand that neuer meat": [0, 65535], "hand that neuer meat sweet": [0, 65535], "that neuer meat sweet sauour'd": [0, 65535], "neuer meat sweet sauour'd in": [0, 65535], "meat sweet sauour'd in thy": [0, 65535], "sweet sauour'd in thy taste": [0, 65535], "sauour'd in thy taste vnlesse": [0, 65535], "in thy taste vnlesse i": [0, 65535], "thy taste vnlesse i spake": [0, 65535], "taste vnlesse i spake or": [0, 65535], "vnlesse i spake or look'd": [0, 65535], "i spake or look'd or": [0, 65535], "spake or look'd or touch'd": [0, 65535], "or look'd or touch'd or": [0, 65535], "look'd or touch'd or caru'd": [0, 65535], "or touch'd or caru'd to": [0, 65535], "touch'd or caru'd to thee": [0, 65535], "or caru'd to thee how": [0, 65535], "caru'd to thee how comes": [0, 65535], "to thee how comes it": [0, 65535], "thee how comes it now": [0, 65535], "how comes it now my": [0, 65535], "comes it now my husband": [0, 65535], "it now my husband oh": [0, 65535], "now my husband oh how": [0, 65535], "my husband oh how comes": [0, 65535], "husband oh how comes it": [0, 65535], "oh how comes it that": [0, 65535], "how comes it that thou": [0, 65535], "comes it that thou art": [0, 65535], "it that thou art then": [0, 65535], "that thou art then estranged": [0, 65535], "thou art then estranged from": [0, 65535], "art then estranged from thy": [0, 65535], "then estranged from thy selfe": [0, 65535], "estranged from thy selfe thy": [0, 65535], "from thy selfe thy selfe": [0, 65535], "thy selfe thy selfe i": [0, 65535], "selfe thy selfe i call": [0, 65535], "thy selfe i call it": [0, 65535], "selfe i call it being": [0, 65535], "i call it being strange": [0, 65535], "call it being strange to": [0, 65535], "it being strange to me": [0, 65535], "being strange to me that": [0, 65535], "strange to me that vndiuidable": [0, 65535], "to me that vndiuidable incorporate": [0, 65535], "me that vndiuidable incorporate am": [0, 65535], "that vndiuidable incorporate am better": [0, 65535], "vndiuidable incorporate am better then": [0, 65535], "incorporate am better then thy": [0, 65535], "am better then thy deere": [0, 65535], "better then thy deere selfes": [0, 65535], "then thy deere selfes better": [0, 65535], "thy deere selfes better part": [0, 65535], "deere selfes better part ah": [0, 65535], "selfes better part ah doe": [0, 65535], "better part ah doe not": [0, 65535], "part ah doe not teare": [0, 65535], "ah doe not teare away": [0, 65535], "doe not teare away thy": [0, 65535], "not teare away thy selfe": [0, 65535], "teare away thy selfe from": [0, 65535], "away thy selfe from me": [0, 65535], "thy selfe from me for": [0, 65535], "selfe from me for know": [0, 65535], "from me for know my": [0, 65535], "me for know my loue": [0, 65535], "for know my loue as": [0, 65535], "know my loue as easie": [0, 65535], "my loue as easie maist": [0, 65535], "loue as easie maist thou": [0, 65535], "as easie maist thou fall": [0, 65535], "easie maist thou fall a": [0, 65535], "maist thou fall a drop": [0, 65535], "thou fall a drop of": [0, 65535], "fall a drop of water": [0, 65535], "a drop of water in": [0, 65535], "drop of water in the": [0, 65535], "of water in the breaking": [0, 65535], "water in the breaking gulfe": [0, 65535], "in the breaking gulfe and": [0, 65535], "the breaking gulfe and take": [0, 65535], "breaking gulfe and take vnmingled": [0, 65535], "gulfe and take vnmingled thence": [0, 65535], "and take vnmingled thence that": [0, 65535], "take vnmingled thence that drop": [0, 65535], "vnmingled thence that drop againe": [0, 65535], "thence that drop againe without": [0, 65535], "that drop againe without addition": [0, 65535], "drop againe without addition or": [0, 65535], "againe without addition or diminishing": [0, 65535], "without addition or diminishing as": [0, 65535], "addition or diminishing as take": [0, 65535], "or diminishing as take from": [0, 65535], "diminishing as take from me": [0, 65535], "as take from me thy": [0, 65535], "take from me thy selfe": [0, 65535], "from me thy selfe and": [0, 65535], "me thy selfe and not": [0, 65535], "thy selfe and not me": [0, 65535], "selfe and not me too": [0, 65535], "and not me too how": [0, 65535], "not me too how deerely": [0, 65535], "me too how deerely would": [0, 65535], "too how deerely would it": [0, 65535], "how deerely would it touch": [0, 65535], "deerely would it touch thee": [0, 65535], "would it touch thee to": [0, 65535], "it touch thee to the": [0, 65535], "touch thee to the quicke": [0, 65535], "thee to the quicke shouldst": [0, 65535], "to the quicke shouldst thou": [0, 65535], "the quicke shouldst thou but": [0, 65535], "quicke shouldst thou but heare": [0, 65535], "shouldst thou but heare i": [0, 65535], "thou but heare i were": [0, 65535], "but heare i were licencious": [0, 65535], "heare i were licencious and": [0, 65535], "i were licencious and that": [0, 65535], "were licencious and that this": [0, 65535], "licencious and that this body": [0, 65535], "and that this body consecrate": [0, 65535], "that this body consecrate to": [0, 65535], "this body consecrate to thee": [0, 65535], "body consecrate to thee by": [0, 65535], "consecrate to thee by ruffian": [0, 65535], "to thee by ruffian lust": [0, 65535], "thee by ruffian lust should": [0, 65535], "by ruffian lust should be": [0, 65535], "ruffian lust should be contaminate": [0, 65535], "lust should be contaminate wouldst": [0, 65535], "should be contaminate wouldst thou": [0, 65535], "be contaminate wouldst thou not": [0, 65535], "contaminate wouldst thou not spit": [0, 65535], "wouldst thou not spit at": [0, 65535], "thou not spit at me": [0, 65535], "not spit at me and": [0, 65535], "spit at me and spurne": [0, 65535], "at me and spurne at": [0, 65535], "me and spurne at me": [0, 65535], "and spurne at me and": [0, 65535], "spurne at me and hurle": [0, 65535], "at me and hurle the": [0, 65535], "me and hurle the name": [0, 65535], "and hurle the name of": [0, 65535], "hurle the name of husband": [0, 65535], "the name of husband in": [0, 65535], "name of husband in my": [0, 65535], "of husband in my face": [0, 65535], "husband in my face and": [0, 65535], "in my face and teare": [0, 65535], "my face and teare the": [0, 65535], "face and teare the stain'd": [0, 65535], "and teare the stain'd skin": [0, 65535], "teare the stain'd skin of": [0, 65535], "the stain'd skin of my": [0, 65535], "stain'd skin of my harlot": [0, 65535], "skin of my harlot brow": [0, 65535], "of my harlot brow and": [0, 65535], "my harlot brow and from": [0, 65535], "harlot brow and from my": [0, 65535], "brow and from my false": [0, 65535], "and from my false hand": [0, 65535], "from my false hand cut": [0, 65535], "my false hand cut the": [0, 65535], "false hand cut the wedding": [0, 65535], "hand cut the wedding ring": [0, 65535], "cut the wedding ring and": [0, 65535], "the wedding ring and breake": [0, 65535], "wedding ring and breake it": [0, 65535], "ring and breake it with": [0, 65535], "and breake it with a": [0, 65535], "breake it with a deepe": [0, 65535], "it with a deepe diuorcing": [0, 65535], "with a deepe diuorcing vow": [0, 65535], "a deepe diuorcing vow i": [0, 65535], "deepe diuorcing vow i know": [0, 65535], "diuorcing vow i know thou": [0, 65535], "vow i know thou canst": [0, 65535], "i know thou canst and": [0, 65535], "know thou canst and therefore": [0, 65535], "thou canst and therefore see": [0, 65535], "canst and therefore see thou": [0, 65535], "and therefore see thou doe": [0, 65535], "therefore see thou doe it": [0, 65535], "see thou doe it i": [0, 65535], "thou doe it i am": [0, 65535], "doe it i am possest": [0, 65535], "it i am possest with": [0, 65535], "i am possest with an": [0, 65535], "am possest with an adulterate": [0, 65535], "possest with an adulterate blot": [0, 65535], "with an adulterate blot my": [0, 65535], "an adulterate blot my bloud": [0, 65535], "adulterate blot my bloud is": [0, 65535], "blot my bloud is mingled": [0, 65535], "my bloud is mingled with": [0, 65535], "bloud is mingled with the": [0, 65535], "is mingled with the crime": [0, 65535], "mingled with the crime of": [0, 65535], "with the crime of lust": [0, 65535], "the crime of lust for": [0, 65535], "crime of lust for if": [0, 65535], "of lust for if we": [0, 65535], "lust for if we two": [0, 65535], "for if we two be": [0, 65535], "if we two be one": [0, 65535], "we two be one and": [0, 65535], "two be one and thou": [0, 65535], "be one and thou play": [0, 65535], "one and thou play false": [0, 65535], "and thou play false i": [0, 65535], "thou play false i doe": [0, 65535], "play false i doe digest": [0, 65535], "false i doe digest the": [0, 65535], "i doe digest the poison": [0, 65535], "doe digest the poison of": [0, 65535], "digest the poison of thy": [0, 65535], "the poison of thy flesh": [0, 65535], "poison of thy flesh being": [0, 65535], "of thy flesh being strumpeted": [0, 65535], "thy flesh being strumpeted by": [0, 65535], "flesh being strumpeted by thy": [0, 65535], "being strumpeted by thy contagion": [0, 65535], "strumpeted by thy contagion keepe": [0, 65535], "by thy contagion keepe then": [0, 65535], "thy contagion keepe then faire": [0, 65535], "contagion keepe then faire league": [0, 65535], "keepe then faire league and": [0, 65535], "then faire league and truce": [0, 65535], "faire league and truce with": [0, 65535], "league and truce with thy": [0, 65535], "and truce with thy true": [0, 65535], "truce with thy true bed": [0, 65535], "with thy true bed i": [0, 65535], "thy true bed i liue": [0, 65535], "true bed i liue distain'd": [0, 65535], "bed i liue distain'd thou": [0, 65535], "i liue distain'd thou vndishonoured": [0, 65535], "liue distain'd thou vndishonoured antip": [0, 65535], "distain'd thou vndishonoured antip plead": [0, 65535], "thou vndishonoured antip plead you": [0, 65535], "vndishonoured antip plead you to": [0, 65535], "antip plead you to me": [0, 65535], "plead you to me faire": [0, 65535], "you to me faire dame": [0, 65535], "to me faire dame i": [0, 65535], "me faire dame i know": [0, 65535], "faire dame i know you": [0, 65535], "dame i know you not": [0, 65535], "i know you not in": [0, 65535], "know you not in ephesus": [0, 65535], "you not in ephesus i": [0, 65535], "not in ephesus i am": [0, 65535], "in ephesus i am but": [0, 65535], "ephesus i am but two": [0, 65535], "i am but two houres": [0, 65535], "am but two houres old": [0, 65535], "but two houres old as": [0, 65535], "two houres old as strange": [0, 65535], "houres old as strange vnto": [0, 65535], "old as strange vnto your": [0, 65535], "as strange vnto your towne": [0, 65535], "strange vnto your towne as": [0, 65535], "vnto your towne as to": [0, 65535], "your towne as to your": [0, 65535], "towne as to your talke": [0, 65535], "as to your talke who": [0, 65535], "to your talke who euery": [0, 65535], "your talke who euery word": [0, 65535], "talke who euery word by": [0, 65535], "who euery word by all": [0, 65535], "euery word by all my": [0, 65535], "word by all my wit": [0, 65535], "by all my wit being": [0, 65535], "all my wit being scan'd": [0, 65535], "my wit being scan'd wants": [0, 65535], "wit being scan'd wants wit": [0, 65535], "being scan'd wants wit in": [0, 65535], "scan'd wants wit in all": [0, 65535], "wants wit in all one": [0, 65535], "wit in all one word": [0, 65535], "in all one word to": [0, 65535], "all one word to vnderstand": [0, 65535], "one word to vnderstand luci": [0, 65535], "word to vnderstand luci fie": [0, 65535], "to vnderstand luci fie brother": [0, 65535], "vnderstand luci fie brother how": [0, 65535], "luci fie brother how the": [0, 65535], "fie brother how the world": [0, 65535], "brother how the world is": [0, 65535], "how the world is chang'd": [0, 65535], "the world is chang'd with": [0, 65535], "world is chang'd with you": [0, 65535], "is chang'd with you when": [0, 65535], "chang'd with you when were": [0, 65535], "with you when were you": [0, 65535], "you when were you wont": [0, 65535], "when were you wont to": [0, 65535], "were you wont to vse": [0, 65535], "you wont to vse my": [0, 65535], "wont to vse my sister": [0, 65535], "to vse my sister thus": [0, 65535], "vse my sister thus she": [0, 65535], "my sister thus she sent": [0, 65535], "sister thus she sent for": [0, 65535], "thus she sent for you": [0, 65535], "she sent for you by": [0, 65535], "sent for you by dromio": [0, 65535], "for you by dromio home": [0, 65535], "you by dromio home to": [0, 65535], "by dromio home to dinner": [0, 65535], "dromio home to dinner ant": [0, 65535], "home to dinner ant by": [0, 65535], "to dinner ant by dromio": [0, 65535], "dinner ant by dromio drom": [0, 65535], "ant by dromio drom by": [0, 65535], "by dromio drom by me": [0, 65535], "dromio drom by me adr": [0, 65535], "drom by me adr by": [0, 65535], "by me adr by thee": [0, 65535], "me adr by thee and": [0, 65535], "adr by thee and this": [0, 65535], "by thee and this thou": [0, 65535], "thee and this thou didst": [0, 65535], "and this thou didst returne": [0, 65535], "this thou didst returne from": [0, 65535], "thou didst returne from him": [0, 65535], "didst returne from him that": [0, 65535], "returne from him that he": [0, 65535], "from him that he did": [0, 65535], "him that he did buffet": [0, 65535], "that he did buffet thee": [0, 65535], "he did buffet thee and": [0, 65535], "did buffet thee and in": [0, 65535], "buffet thee and in his": [0, 65535], "thee and in his blowes": [0, 65535], "and in his blowes denied": [0, 65535], "in his blowes denied my": [0, 65535], "his blowes denied my house": [0, 65535], "blowes denied my house for": [0, 65535], "denied my house for his": [0, 65535], "my house for his me": [0, 65535], "house for his me for": [0, 65535], "for his me for his": [0, 65535], "his me for his wife": [0, 65535], "me for his wife ant": [0, 65535], "for his wife ant did": [0, 65535], "his wife ant did you": [0, 65535], "wife ant did you conuerse": [0, 65535], "ant did you conuerse sir": [0, 65535], "did you conuerse sir with": [0, 65535], "you conuerse sir with this": [0, 65535], "conuerse sir with this gentlewoman": [0, 65535], "sir with this gentlewoman what": [0, 65535], "with this gentlewoman what is": [0, 65535], "this gentlewoman what is the": [0, 65535], "gentlewoman what is the course": [0, 65535], "what is the course and": [0, 65535], "is the course and drift": [0, 65535], "the course and drift of": [0, 65535], "course and drift of your": [0, 65535], "and drift of your compact": [0, 65535], "drift of your compact s": [0, 65535], "of your compact s dro": [0, 65535], "your compact s dro i": [0, 65535], "compact s dro i sir": [0, 65535], "s dro i sir i": [0, 65535], "dro i sir i neuer": [0, 65535], "i sir i neuer saw": [0, 65535], "sir i neuer saw her": [0, 65535], "i neuer saw her till": [0, 65535], "neuer saw her till this": [0, 65535], "saw her till this time": [0, 65535], "her till this time ant": [0, 65535], "till this time ant villaine": [0, 65535], "this time ant villaine thou": [0, 65535], "time ant villaine thou liest": [0, 65535], "ant villaine thou liest for": [0, 65535], "villaine thou liest for euen": [0, 65535], "thou liest for euen her": [0, 65535], "liest for euen her verie": [0, 65535], "for euen her verie words": [0, 65535], "euen her verie words didst": [0, 65535], "her verie words didst thou": [0, 65535], "verie words didst thou deliuer": [0, 65535], "words didst thou deliuer to": [0, 65535], "didst thou deliuer to me": [0, 65535], "thou deliuer to me on": [0, 65535], "deliuer to me on the": [0, 65535], "to me on the mart": [0, 65535], "me on the mart s": [0, 65535], "on the mart s dro": [0, 65535], "the mart s dro i": [0, 65535], "mart s dro i neuer": [0, 65535], "s dro i neuer spake": [0, 65535], "dro i neuer spake with": [0, 65535], "i neuer spake with her": [0, 65535], "neuer spake with her in": [0, 65535], "spake with her in all": [0, 65535], "with her in all my": [0, 65535], "her in all my life": [0, 65535], "in all my life ant": [0, 65535], "all my life ant how": [0, 65535], "my life ant how can": [0, 65535], "life ant how can she": [0, 65535], "ant how can she thus": [0, 65535], "how can she thus then": [0, 65535], "can she thus then call": [0, 65535], "she thus then call vs": [0, 65535], "thus then call vs by": [0, 65535], "then call vs by our": [0, 65535], "call vs by our names": [0, 65535], "vs by our names vnlesse": [0, 65535], "by our names vnlesse it": [0, 65535], "our names vnlesse it be": [0, 65535], "names vnlesse it be by": [0, 65535], "vnlesse it be by inspiration": [0, 65535], "it be by inspiration adri": [0, 65535], "be by inspiration adri how": [0, 65535], "by inspiration adri how ill": [0, 65535], "inspiration adri how ill agrees": [0, 65535], "adri how ill agrees it": [0, 65535], "how ill agrees it with": [0, 65535], "ill agrees it with your": [0, 65535], "agrees it with your grauitie": [0, 65535], "it with your grauitie to": [0, 65535], "with your grauitie to counterfeit": [0, 65535], "your grauitie to counterfeit thus": [0, 65535], "grauitie to counterfeit thus grosely": [0, 65535], "to counterfeit thus grosely with": [0, 65535], "counterfeit thus grosely with your": [0, 65535], "thus grosely with your slaue": [0, 65535], "grosely with your slaue abetting": [0, 65535], "with your slaue abetting him": [0, 65535], "your slaue abetting him to": [0, 65535], "slaue abetting him to thwart": [0, 65535], "abetting him to thwart me": [0, 65535], "him to thwart me in": [0, 65535], "to thwart me in my": [0, 65535], "thwart me in my moode": [0, 65535], "me in my moode be": [0, 65535], "in my moode be it": [0, 65535], "my moode be it my": [0, 65535], "moode be it my wrong": [0, 65535], "be it my wrong you": [0, 65535], "it my wrong you are": [0, 65535], "my wrong you are from": [0, 65535], "wrong you are from me": [0, 65535], "you are from me exempt": [0, 65535], "are from me exempt but": [0, 65535], "from me exempt but wrong": [0, 65535], "me exempt but wrong not": [0, 65535], "exempt but wrong not that": [0, 65535], "but wrong not that wrong": [0, 65535], "wrong not that wrong with": [0, 65535], "not that wrong with a": [0, 65535], "that wrong with a more": [0, 65535], "wrong with a more contempt": [0, 65535], "with a more contempt come": [0, 65535], "a more contempt come i": [0, 65535], "more contempt come i will": [0, 65535], "contempt come i will fasten": [0, 65535], "come i will fasten on": [0, 65535], "i will fasten on this": [0, 65535], "will fasten on this sleeue": [0, 65535], "fasten on this sleeue of": [0, 65535], "on this sleeue of thine": [0, 65535], "this sleeue of thine thou": [0, 65535], "sleeue of thine thou art": [0, 65535], "of thine thou art an": [0, 65535], "thine thou art an elme": [0, 65535], "thou art an elme my": [0, 65535], "art an elme my husband": [0, 65535], "an elme my husband i": [0, 65535], "elme my husband i a": [0, 65535], "my husband i a vine": [0, 65535], "husband i a vine whose": [0, 65535], "i a vine whose weaknesse": [0, 65535], "a vine whose weaknesse married": [0, 65535], "vine whose weaknesse married to": [0, 65535], "whose weaknesse married to thy": [0, 65535], "weaknesse married to thy stranger": [0, 65535], "married to thy stranger state": [0, 65535], "to thy stranger state makes": [0, 65535], "thy stranger state makes me": [0, 65535], "stranger state makes me with": [0, 65535], "state makes me with thy": [0, 65535], "makes me with thy strength": [0, 65535], "me with thy strength to": [0, 65535], "with thy strength to communicate": [0, 65535], "thy strength to communicate if": [0, 65535], "strength to communicate if ought": [0, 65535], "to communicate if ought possesse": [0, 65535], "communicate if ought possesse thee": [0, 65535], "if ought possesse thee from": [0, 65535], "ought possesse thee from me": [0, 65535], "possesse thee from me it": [0, 65535], "thee from me it is": [0, 65535], "from me it is drosse": [0, 65535], "me it is drosse vsurping": [0, 65535], "it is drosse vsurping iuie": [0, 65535], "is drosse vsurping iuie brier": [0, 65535], "drosse vsurping iuie brier or": [0, 65535], "vsurping iuie brier or idle": [0, 65535], "iuie brier or idle mosse": [0, 65535], "brier or idle mosse who": [0, 65535], "or idle mosse who all": [0, 65535], "idle mosse who all for": [0, 65535], "mosse who all for want": [0, 65535], "who all for want of": [0, 65535], "all for want of pruning": [0, 65535], "for want of pruning with": [0, 65535], "want of pruning with intrusion": [0, 65535], "of pruning with intrusion infect": [0, 65535], "pruning with intrusion infect thy": [0, 65535], "with intrusion infect thy sap": [0, 65535], "intrusion infect thy sap and": [0, 65535], "infect thy sap and liue": [0, 65535], "thy sap and liue on": [0, 65535], "sap and liue on thy": [0, 65535], "and liue on thy confusion": [0, 65535], "liue on thy confusion ant": [0, 65535], "on thy confusion ant to": [0, 65535], "thy confusion ant to mee": [0, 65535], "confusion ant to mee shee": [0, 65535], "ant to mee shee speakes": [0, 65535], "to mee shee speakes shee": [0, 65535], "mee shee speakes shee moues": [0, 65535], "shee speakes shee moues mee": [0, 65535], "speakes shee moues mee for": [0, 65535], "shee moues mee for her": [0, 65535], "moues mee for her theame": [0, 65535], "mee for her theame what": [0, 65535], "for her theame what was": [0, 65535], "her theame what was i": [0, 65535], "theame what was i married": [0, 65535], "what was i married to": [0, 65535], "was i married to her": [0, 65535], "i married to her in": [0, 65535], "married to her in my": [0, 65535], "to her in my dreame": [0, 65535], "her in my dreame or": [0, 65535], "in my dreame or sleepe": [0, 65535], "my dreame or sleepe i": [0, 65535], "dreame or sleepe i now": [0, 65535], "or sleepe i now and": [0, 65535], "sleepe i now and thinke": [0, 65535], "i now and thinke i": [0, 65535], "now and thinke i heare": [0, 65535], "and thinke i heare all": [0, 65535], "thinke i heare all this": [0, 65535], "i heare all this what": [0, 65535], "heare all this what error": [0, 65535], "all this what error driues": [0, 65535], "this what error driues our": [0, 65535], "what error driues our eies": [0, 65535], "error driues our eies and": [0, 65535], "driues our eies and eares": [0, 65535], "our eies and eares amisse": [0, 65535], "eies and eares amisse vntill": [0, 65535], "and eares amisse vntill i": [0, 65535], "eares amisse vntill i know": [0, 65535], "amisse vntill i know this": [0, 65535], "vntill i know this sure": [0, 65535], "i know this sure vncertaintie": [0, 65535], "know this sure vncertaintie ile": [0, 65535], "this sure vncertaintie ile entertaine": [0, 65535], "sure vncertaintie ile entertaine the": [0, 65535], "vncertaintie ile entertaine the free'd": [0, 65535], "ile entertaine the free'd fallacie": [0, 65535], "entertaine the free'd fallacie luc": [0, 65535], "the free'd fallacie luc dromio": [0, 65535], "free'd fallacie luc dromio goe": [0, 65535], "fallacie luc dromio goe bid": [0, 65535], "luc dromio goe bid the": [0, 65535], "dromio goe bid the seruants": [0, 65535], "goe bid the seruants spred": [0, 65535], "bid the seruants spred for": [0, 65535], "the seruants spred for dinner": [0, 65535], "seruants spred for dinner s": [0, 65535], "spred for dinner s dro": [0, 65535], "for dinner s dro oh": [0, 65535], "dinner s dro oh for": [0, 65535], "s dro oh for my": [0, 65535], "dro oh for my beads": [0, 65535], "oh for my beads i": [0, 65535], "for my beads i crosse": [0, 65535], "my beads i crosse me": [0, 65535], "beads i crosse me for": [0, 65535], "i crosse me for a": [0, 65535], "crosse me for a sinner": [0, 65535], "me for a sinner this": [0, 65535], "for a sinner this is": [0, 65535], "a sinner this is the": [0, 65535], "sinner this is the fairie": [0, 65535], "this is the fairie land": [0, 65535], "is the fairie land oh": [0, 65535], "the fairie land oh spight": [0, 65535], "fairie land oh spight of": [0, 65535], "land oh spight of spights": [0, 65535], "oh spight of spights we": [0, 65535], "spight of spights we talke": [0, 65535], "of spights we talke with": [0, 65535], "spights we talke with goblins": [0, 65535], "we talke with goblins owles": [0, 65535], "talke with goblins owles and": [0, 65535], "with goblins owles and sprights": [0, 65535], "goblins owles and sprights if": [0, 65535], "owles and sprights if we": [0, 65535], "and sprights if we obay": [0, 65535], "sprights if we obay them": [0, 65535], "if we obay them not": [0, 65535], "we obay them not this": [0, 65535], "obay them not this will": [0, 65535], "them not this will insue": [0, 65535], "not this will insue they'll": [0, 65535], "this will insue they'll sucke": [0, 65535], "will insue they'll sucke our": [0, 65535], "insue they'll sucke our breath": [0, 65535], "they'll sucke our breath or": [0, 65535], "sucke our breath or pinch": [0, 65535], "our breath or pinch vs": [0, 65535], "breath or pinch vs blacke": [0, 65535], "or pinch vs blacke and": [0, 65535], "pinch vs blacke and blew": [0, 65535], "vs blacke and blew luc": [0, 65535], "blacke and blew luc why": [0, 65535], "and blew luc why prat'st": [0, 65535], "blew luc why prat'st thou": [0, 65535], "luc why prat'st thou to": [0, 65535], "why prat'st thou to thy": [0, 65535], "prat'st thou to thy selfe": [0, 65535], "thou to thy selfe and": [0, 65535], "to thy selfe and answer'st": [0, 65535], "thy selfe and answer'st not": [0, 65535], "selfe and answer'st not dromio": [0, 65535], "and answer'st not dromio thou": [0, 65535], "answer'st not dromio thou dromio": [0, 65535], "not dromio thou dromio thou": [0, 65535], "dromio thou dromio thou snaile": [0, 65535], "thou dromio thou snaile thou": [0, 65535], "dromio thou snaile thou slug": [0, 65535], "thou snaile thou slug thou": [0, 65535], "snaile thou slug thou sot": [0, 65535], "thou slug thou sot s": [0, 65535], "slug thou sot s dro": [0, 65535], "thou sot s dro i": [0, 65535], "sot s dro i am": [0, 65535], "s dro i am transformed": [0, 65535], "dro i am transformed master": [0, 65535], "i am transformed master am": [0, 65535], "am transformed master am i": [0, 65535], "transformed master am i not": [0, 65535], "master am i not ant": [0, 65535], "am i not ant i": [0, 65535], "i not ant i thinke": [0, 65535], "not ant i thinke thou": [0, 65535], "i thinke thou art in": [0, 65535], "thinke thou art in minde": [0, 65535], "thou art in minde and": [0, 65535], "art in minde and so": [0, 65535], "in minde and so am": [0, 65535], "minde and so am i": [0, 65535], "and so am i s": [0, 65535], "so am i s dro": [0, 65535], "am i s dro nay": [0, 65535], "i s dro nay master": [0, 65535], "s dro nay master both": [0, 65535], "dro nay master both in": [0, 65535], "nay master both in minde": [0, 65535], "master both in minde and": [0, 65535], "both in minde and in": [0, 65535], "in minde and in my": [0, 65535], "minde and in my shape": [0, 65535], "and in my shape ant": [0, 65535], "in my shape ant thou": [0, 65535], "my shape ant thou hast": [0, 65535], "shape ant thou hast thine": [0, 65535], "ant thou hast thine owne": [0, 65535], "thou hast thine owne forme": [0, 65535], "hast thine owne forme s": [0, 65535], "thine owne forme s dro": [0, 65535], "owne forme s dro no": [0, 65535], "forme s dro no i": [0, 65535], "s dro no i am": [0, 65535], "dro no i am an": [0, 65535], "no i am an ape": [0, 65535], "i am an ape luc": [0, 65535], "am an ape luc if": [0, 65535], "an ape luc if thou": [0, 65535], "ape luc if thou art": [0, 65535], "luc if thou art chang'd": [0, 65535], "if thou art chang'd to": [0, 65535], "thou art chang'd to ought": [0, 65535], "art chang'd to ought 'tis": [0, 65535], "chang'd to ought 'tis to": [0, 65535], "to ought 'tis to an": [0, 65535], "ought 'tis to an asse": [0, 65535], "'tis to an asse s": [0, 65535], "to an asse s dro": [0, 65535], "an asse s dro 'tis": [0, 65535], "asse s dro 'tis true": [0, 65535], "s dro 'tis true she": [0, 65535], "dro 'tis true she rides": [0, 65535], "'tis true she rides me": [0, 65535], "true she rides me and": [0, 65535], "she rides me and i": [0, 65535], "rides me and i long": [0, 65535], "me and i long for": [0, 65535], "and i long for grasse": [0, 65535], "i long for grasse 'tis": [0, 65535], "long for grasse 'tis so": [0, 65535], "for grasse 'tis so i": [0, 65535], "grasse 'tis so i am": [0, 65535], "'tis so i am an": [0, 65535], "so i am an asse": [0, 65535], "i am an asse else": [0, 65535], "am an asse else it": [0, 65535], "an asse else it could": [0, 65535], "asse else it could neuer": [0, 65535], "else it could neuer be": [0, 65535], "it could neuer be but": [0, 65535], "could neuer be but i": [0, 65535], "neuer be but i should": [0, 65535], "be but i should know": [0, 65535], "but i should know her": [0, 65535], "i should know her as": [0, 65535], "should know her as well": [0, 65535], "know her as well as": [0, 65535], "her as well as she": [0, 65535], "as well as she knowes": [0, 65535], "well as she knowes me": [0, 65535], "as she knowes me adr": [0, 65535], "she knowes me adr come": [0, 65535], "knowes me adr come come": [0, 65535], "me adr come come no": [0, 65535], "adr come come no longer": [0, 65535], "come come no longer will": [0, 65535], "come no longer will i": [0, 65535], "no longer will i be": [0, 65535], "longer will i be a": [0, 65535], "will i be a foole": [0, 65535], "i be a foole to": [0, 65535], "be a foole to put": [0, 65535], "a foole to put the": [0, 65535], "foole to put the finger": [0, 65535], "to put the finger in": [0, 65535], "put the finger in the": [0, 65535], "the finger in the eie": [0, 65535], "finger in the eie and": [0, 65535], "in the eie and weepe": [0, 65535], "the eie and weepe whil'st": [0, 65535], "eie and weepe whil'st man": [0, 65535], "and weepe whil'st man and": [0, 65535], "weepe whil'st man and master": [0, 65535], "whil'st man and master laughes": [0, 65535], "man and master laughes my": [0, 65535], "and master laughes my woes": [0, 65535], "master laughes my woes to": [0, 65535], "laughes my woes to scorne": [0, 65535], "my woes to scorne come": [0, 65535], "woes to scorne come sir": [0, 65535], "to scorne come sir to": [0, 65535], "scorne come sir to dinner": [0, 65535], "come sir to dinner dromio": [0, 65535], "sir to dinner dromio keepe": [0, 65535], "to dinner dromio keepe the": [0, 65535], "dinner dromio keepe the gate": [0, 65535], "dromio keepe the gate husband": [0, 65535], "keepe the gate husband ile": [0, 65535], "the gate husband ile dine": [0, 65535], "gate husband ile dine aboue": [0, 65535], "husband ile dine aboue with": [0, 65535], "ile dine aboue with you": [0, 65535], "dine aboue with you to": [0, 65535], "aboue with you to day": [0, 65535], "with you to day and": [0, 65535], "you to day and shriue": [0, 65535], "to day and shriue you": [0, 65535], "day and shriue you of": [0, 65535], "and shriue you of a": [0, 65535], "shriue you of a thousand": [0, 65535], "you of a thousand idle": [0, 65535], "of a thousand idle prankes": [0, 65535], "a thousand idle prankes sirra": [0, 65535], "thousand idle prankes sirra if": [0, 65535], "idle prankes sirra if any": [0, 65535], "prankes sirra if any aske": [0, 65535], "sirra if any aske you": [0, 65535], "if any aske you for": [0, 65535], "any aske you for your": [0, 65535], "aske you for your master": [0, 65535], "you for your master say": [0, 65535], "for your master say he": [0, 65535], "your master say he dines": [0, 65535], "master say he dines forth": [0, 65535], "say he dines forth and": [0, 65535], "he dines forth and let": [0, 65535], "dines forth and let no": [0, 65535], "forth and let no creature": [0, 65535], "and let no creature enter": [0, 65535], "let no creature enter come": [0, 65535], "no creature enter come sister": [0, 65535], "creature enter come sister dromio": [0, 65535], "enter come sister dromio play": [0, 65535], "come sister dromio play the": [0, 65535], "sister dromio play the porter": [0, 65535], "dromio play the porter well": [0, 65535], "play the porter well ant": [0, 65535], "the porter well ant am": [0, 65535], "porter well ant am i": [0, 65535], "well ant am i in": [0, 65535], "ant am i in earth": [0, 65535], "am i in earth in": [0, 65535], "i in earth in heauen": [0, 65535], "in earth in heauen or": [0, 65535], "earth in heauen or in": [0, 65535], "in heauen or in hell": [0, 65535], "heauen or in hell sleeping": [0, 65535], "or in hell sleeping or": [0, 65535], "in hell sleeping or waking": [0, 65535], "hell sleeping or waking mad": [0, 65535], "sleeping or waking mad or": [0, 65535], "or waking mad or well": [0, 65535], "waking mad or well aduisde": [0, 65535], "mad or well aduisde knowne": [0, 65535], "or well aduisde knowne vnto": [0, 65535], "well aduisde knowne vnto these": [0, 65535], "aduisde knowne vnto these and": [0, 65535], "knowne vnto these and to": [0, 65535], "vnto these and to my": [0, 65535], "these and to my selfe": [0, 65535], "and to my selfe disguisde": [0, 65535], "to my selfe disguisde ile": [0, 65535], "my selfe disguisde ile say": [0, 65535], "selfe disguisde ile say as": [0, 65535], "disguisde ile say as they": [0, 65535], "ile say as they say": [0, 65535], "say as they say and": [0, 65535], "as they say and perseuer": [0, 65535], "they say and perseuer so": [0, 65535], "say and perseuer so and": [0, 65535], "and perseuer so and in": [0, 65535], "perseuer so and in this": [0, 65535], "so and in this mist": [0, 65535], "and in this mist at": [0, 65535], "in this mist at all": [0, 65535], "this mist at all aduentures": [0, 65535], "mist at all aduentures go": [0, 65535], "at all aduentures go s": [0, 65535], "all aduentures go s dro": [0, 65535], "aduentures go s dro master": [0, 65535], "go s dro master shall": [0, 65535], "s dro master shall i": [0, 65535], "dro master shall i be": [0, 65535], "master shall i be porter": [0, 65535], "shall i be porter at": [0, 65535], "i be porter at the": [0, 65535], "be porter at the gate": [0, 65535], "porter at the gate adr": [0, 65535], "at the gate adr i": [0, 65535], "the gate adr i and": [0, 65535], "gate adr i and let": [0, 65535], "adr i and let none": [0, 65535], "i and let none enter": [0, 65535], "and let none enter least": [0, 65535], "let none enter least i": [0, 65535], "none enter least i breake": [0, 65535], "enter least i breake your": [0, 65535], "least i breake your pate": [0, 65535], "i breake your pate luc": [0, 65535], "breake your pate luc come": [0, 65535], "your pate luc come come": [0, 65535], "pate luc come come antipholus": [0, 65535], "luc come come antipholus we": [0, 65535], "come come antipholus we dine": [0, 65535], "come antipholus we dine to": [0, 65535], "antipholus we dine to late": [0, 65535], "actus secundus enter adriana wife to": [0, 65535], "secundus enter adriana wife to antipholis": [0, 65535], "enter adriana wife to antipholis sereptus": [0, 65535], "adriana wife to antipholis sereptus with": [0, 65535], "wife to antipholis sereptus with luciana": [0, 65535], "to antipholis sereptus with luciana her": [0, 65535], "antipholis sereptus with luciana her sister": [0, 65535], "sereptus with luciana her sister adr": [0, 65535], "with luciana her sister adr neither": [0, 65535], "luciana her sister adr neither my": [0, 65535], "her sister adr neither my husband": [0, 65535], "sister adr neither my husband nor": [0, 65535], "adr neither my husband nor the": [0, 65535], "neither my husband nor the slaue": [0, 65535], "my husband nor the slaue return'd": [0, 65535], "husband nor the slaue return'd that": [0, 65535], "nor the slaue return'd that in": [0, 65535], "the slaue return'd that in such": [0, 65535], "slaue return'd that in such haste": [0, 65535], "return'd that in such haste i": [0, 65535], "that in such haste i sent": [0, 65535], "in such haste i sent to": [0, 65535], "such haste i sent to seeke": [0, 65535], "haste i sent to seeke his": [0, 65535], "i sent to seeke his master": [0, 65535], "sent to seeke his master sure": [0, 65535], "to seeke his master sure luciana": [0, 65535], "seeke his master sure luciana it": [0, 65535], "his master sure luciana it is": [0, 65535], "master sure luciana it is two": [0, 65535], "sure luciana it is two a": [0, 65535], "luciana it is two a clocke": [0, 65535], "it is two a clocke luc": [0, 65535], "is two a clocke luc perhaps": [0, 65535], "two a clocke luc perhaps some": [0, 65535], "a clocke luc perhaps some merchant": [0, 65535], "clocke luc perhaps some merchant hath": [0, 65535], "luc perhaps some merchant hath inuited": [0, 65535], "perhaps some merchant hath inuited him": [0, 65535], "some merchant hath inuited him and": [0, 65535], "merchant hath inuited him and from": [0, 65535], "hath inuited him and from the": [0, 65535], "inuited him and from the mart": [0, 65535], "him and from the mart he's": [0, 65535], "and from the mart he's somewhere": [0, 65535], "from the mart he's somewhere gone": [0, 65535], "the mart he's somewhere gone to": [0, 65535], "mart he's somewhere gone to dinner": [0, 65535], "he's somewhere gone to dinner good": [0, 65535], "somewhere gone to dinner good sister": [0, 65535], "gone to dinner good sister let": [0, 65535], "to dinner good sister let vs": [0, 65535], "dinner good sister let vs dine": [0, 65535], "good sister let vs dine and": [0, 65535], "sister let vs dine and neuer": [0, 65535], "let vs dine and neuer fret": [0, 65535], "vs dine and neuer fret a": [0, 65535], "dine and neuer fret a man": [0, 65535], "and neuer fret a man is": [0, 65535], "neuer fret a man is master": [0, 65535], "fret a man is master of": [0, 65535], "a man is master of his": [0, 65535], "man is master of his libertie": [0, 65535], "is master of his libertie time": [0, 65535], "master of his libertie time is": [0, 65535], "of his libertie time is their": [0, 65535], "his libertie time is their master": [0, 65535], "libertie time is their master and": [0, 65535], "time is their master and when": [0, 65535], "is their master and when they": [0, 65535], "their master and when they see": [0, 65535], "master and when they see time": [0, 65535], "and when they see time they'll": [0, 65535], "when they see time they'll goe": [0, 65535], "they see time they'll goe or": [0, 65535], "see time they'll goe or come": [0, 65535], "time they'll goe or come if": [0, 65535], "they'll goe or come if so": [0, 65535], "goe or come if so be": [0, 65535], "or come if so be patient": [0, 65535], "come if so be patient sister": [0, 65535], "if so be patient sister adr": [0, 65535], "so be patient sister adr why": [0, 65535], "be patient sister adr why should": [0, 65535], "patient sister adr why should their": [0, 65535], "sister adr why should their libertie": [0, 65535], "adr why should their libertie then": [0, 65535], "why should their libertie then ours": [0, 65535], "should their libertie then ours be": [0, 65535], "their libertie then ours be more": [0, 65535], "libertie then ours be more luc": [0, 65535], "then ours be more luc because": [0, 65535], "ours be more luc because their": [0, 65535], "be more luc because their businesse": [0, 65535], "more luc because their businesse still": [0, 65535], "luc because their businesse still lies": [0, 65535], "because their businesse still lies out": [0, 65535], "their businesse still lies out a": [0, 65535], "businesse still lies out a dore": [0, 65535], "still lies out a dore adr": [0, 65535], "lies out a dore adr looke": [0, 65535], "out a dore adr looke when": [0, 65535], "a dore adr looke when i": [0, 65535], "dore adr looke when i serue": [0, 65535], "adr looke when i serue him": [0, 65535], "looke when i serue him so": [0, 65535], "when i serue him so he": [0, 65535], "i serue him so he takes": [0, 65535], "serue him so he takes it": [0, 65535], "him so he takes it thus": [0, 65535], "so he takes it thus luc": [0, 65535], "he takes it thus luc oh": [0, 65535], "takes it thus luc oh know": [0, 65535], "it thus luc oh know he": [0, 65535], "thus luc oh know he is": [0, 65535], "luc oh know he is the": [0, 65535], "oh know he is the bridle": [0, 65535], "know he is the bridle of": [0, 65535], "he is the bridle of your": [0, 65535], "is the bridle of your will": [0, 65535], "the bridle of your will adr": [0, 65535], "bridle of your will adr there's": [0, 65535], "of your will adr there's none": [0, 65535], "your will adr there's none but": [0, 65535], "will adr there's none but asses": [0, 65535], "adr there's none but asses will": [0, 65535], "there's none but asses will be": [0, 65535], "none but asses will be bridled": [0, 65535], "but asses will be bridled so": [0, 65535], "asses will be bridled so luc": [0, 65535], "will be bridled so luc why": [0, 65535], "be bridled so luc why headstrong": [0, 65535], "bridled so luc why headstrong liberty": [0, 65535], "so luc why headstrong liberty is": [0, 65535], "luc why headstrong liberty is lasht": [0, 65535], "why headstrong liberty is lasht with": [0, 65535], "headstrong liberty is lasht with woe": [0, 65535], "liberty is lasht with woe there's": [0, 65535], "is lasht with woe there's nothing": [0, 65535], "lasht with woe there's nothing situate": [0, 65535], "with woe there's nothing situate vnder": [0, 65535], "woe there's nothing situate vnder heauens": [0, 65535], "there's nothing situate vnder heauens eye": [0, 65535], "nothing situate vnder heauens eye but": [0, 65535], "situate vnder heauens eye but hath": [0, 65535], "vnder heauens eye but hath his": [0, 65535], "heauens eye but hath his bound": [0, 65535], "eye but hath his bound in": [0, 65535], "but hath his bound in earth": [0, 65535], "hath his bound in earth in": [0, 65535], "his bound in earth in sea": [0, 65535], "bound in earth in sea in": [0, 65535], "in earth in sea in skie": [0, 65535], "earth in sea in skie the": [0, 65535], "in sea in skie the beasts": [0, 65535], "sea in skie the beasts the": [0, 65535], "in skie the beasts the fishes": [0, 65535], "skie the beasts the fishes and": [0, 65535], "the beasts the fishes and the": [0, 65535], "beasts the fishes and the winged": [0, 65535], "the fishes and the winged fowles": [0, 65535], "fishes and the winged fowles are": [0, 65535], "and the winged fowles are their": [0, 65535], "the winged fowles are their males": [0, 65535], "winged fowles are their males subiects": [0, 65535], "fowles are their males subiects and": [0, 65535], "are their males subiects and at": [0, 65535], "their males subiects and at their": [0, 65535], "males subiects and at their controules": [0, 65535], "subiects and at their controules man": [0, 65535], "and at their controules man more": [0, 65535], "at their controules man more diuine": [0, 65535], "their controules man more diuine the": [0, 65535], "controules man more diuine the master": [0, 65535], "man more diuine the master of": [0, 65535], "more diuine the master of all": [0, 65535], "diuine the master of all these": [0, 65535], "the master of all these lord": [0, 65535], "master of all these lord of": [0, 65535], "of all these lord of the": [0, 65535], "all these lord of the wide": [0, 65535], "these lord of the wide world": [0, 65535], "lord of the wide world and": [0, 65535], "of the wide world and wilde": [0, 65535], "the wide world and wilde watry": [0, 65535], "wide world and wilde watry seas": [0, 65535], "world and wilde watry seas indued": [0, 65535], "and wilde watry seas indued with": [0, 65535], "wilde watry seas indued with intellectuall": [0, 65535], "watry seas indued with intellectuall sence": [0, 65535], "seas indued with intellectuall sence and": [0, 65535], "indued with intellectuall sence and soules": [0, 65535], "with intellectuall sence and soules of": [0, 65535], "intellectuall sence and soules of more": [0, 65535], "sence and soules of more preheminence": [0, 65535], "and soules of more preheminence then": [0, 65535], "soules of more preheminence then fish": [0, 65535], "of more preheminence then fish and": [0, 65535], "more preheminence then fish and fowles": [0, 65535], "preheminence then fish and fowles are": [0, 65535], "then fish and fowles are masters": [0, 65535], "fish and fowles are masters to": [0, 65535], "and fowles are masters to their": [0, 65535], "fowles are masters to their females": [0, 65535], "are masters to their females and": [0, 65535], "masters to their females and their": [0, 65535], "to their females and their lords": [0, 65535], "their females and their lords then": [0, 65535], "females and their lords then let": [0, 65535], "and their lords then let your": [0, 65535], "their lords then let your will": [0, 65535], "lords then let your will attend": [0, 65535], "then let your will attend on": [0, 65535], "let your will attend on their": [0, 65535], "your will attend on their accords": [0, 65535], "will attend on their accords adri": [0, 65535], "attend on their accords adri this": [0, 65535], "on their accords adri this seruitude": [0, 65535], "their accords adri this seruitude makes": [0, 65535], "accords adri this seruitude makes you": [0, 65535], "adri this seruitude makes you to": [0, 65535], "this seruitude makes you to keepe": [0, 65535], "seruitude makes you to keepe vnwed": [0, 65535], "makes you to keepe vnwed luci": [0, 65535], "you to keepe vnwed luci not": [0, 65535], "to keepe vnwed luci not this": [0, 65535], "keepe vnwed luci not this but": [0, 65535], "vnwed luci not this but troubles": [0, 65535], "luci not this but troubles of": [0, 65535], "not this but troubles of the": [0, 65535], "this but troubles of the marriage": [0, 65535], "but troubles of the marriage bed": [0, 65535], "troubles of the marriage bed adr": [0, 65535], "of the marriage bed adr but": [0, 65535], "the marriage bed adr but were": [0, 65535], "marriage bed adr but were you": [0, 65535], "bed adr but were you wedded": [0, 65535], "adr but were you wedded you": [0, 65535], "but were you wedded you wold": [0, 65535], "were you wedded you wold bear": [0, 65535], "you wedded you wold bear some": [0, 65535], "wedded you wold bear some sway": [0, 65535], "you wold bear some sway luc": [0, 65535], "wold bear some sway luc ere": [0, 65535], "bear some sway luc ere i": [0, 65535], "some sway luc ere i learne": [0, 65535], "sway luc ere i learne loue": [0, 65535], "luc ere i learne loue ile": [0, 65535], "ere i learne loue ile practise": [0, 65535], "i learne loue ile practise to": [0, 65535], "learne loue ile practise to obey": [0, 65535], "loue ile practise to obey adr": [0, 65535], "ile practise to obey adr how": [0, 65535], "practise to obey adr how if": [0, 65535], "to obey adr how if your": [0, 65535], "obey adr how if your husband": [0, 65535], "adr how if your husband start": [0, 65535], "how if your husband start some": [0, 65535], "if your husband start some other": [0, 65535], "your husband start some other where": [0, 65535], "husband start some other where luc": [0, 65535], "start some other where luc till": [0, 65535], "some other where luc till he": [0, 65535], "other where luc till he come": [0, 65535], "where luc till he come home": [0, 65535], "luc till he come home againe": [0, 65535], "till he come home againe i": [0, 65535], "he come home againe i would": [0, 65535], "come home againe i would forbeare": [0, 65535], "home againe i would forbeare adr": [0, 65535], "againe i would forbeare adr patience": [0, 65535], "i would forbeare adr patience vnmou'd": [0, 65535], "would forbeare adr patience vnmou'd no": [0, 65535], "forbeare adr patience vnmou'd no maruel": [0, 65535], "adr patience vnmou'd no maruel though": [0, 65535], "patience vnmou'd no maruel though she": [0, 65535], "vnmou'd no maruel though she pause": [0, 65535], "no maruel though she pause they": [0, 65535], "maruel though she pause they can": [0, 65535], "though she pause they can be": [0, 65535], "she pause they can be meeke": [0, 65535], "pause they can be meeke that": [0, 65535], "they can be meeke that haue": [0, 65535], "can be meeke that haue no": [0, 65535], "be meeke that haue no other": [0, 65535], "meeke that haue no other cause": [0, 65535], "that haue no other cause a": [0, 65535], "haue no other cause a wretched": [0, 65535], "no other cause a wretched soule": [0, 65535], "other cause a wretched soule bruis'd": [0, 65535], "cause a wretched soule bruis'd with": [0, 65535], "a wretched soule bruis'd with aduersitie": [0, 65535], "wretched soule bruis'd with aduersitie we": [0, 65535], "soule bruis'd with aduersitie we bid": [0, 65535], "bruis'd with aduersitie we bid be": [0, 65535], "with aduersitie we bid be quiet": [0, 65535], "aduersitie we bid be quiet when": [0, 65535], "we bid be quiet when we": [0, 65535], "bid be quiet when we heare": [0, 65535], "be quiet when we heare it": [0, 65535], "quiet when we heare it crie": [0, 65535], "when we heare it crie but": [0, 65535], "we heare it crie but were": [0, 65535], "heare it crie but were we": [0, 65535], "it crie but were we burdned": [0, 65535], "crie but were we burdned with": [0, 65535], "but were we burdned with like": [0, 65535], "were we burdned with like waight": [0, 65535], "we burdned with like waight of": [0, 65535], "burdned with like waight of paine": [0, 65535], "with like waight of paine as": [0, 65535], "like waight of paine as much": [0, 65535], "waight of paine as much or": [0, 65535], "of paine as much or more": [0, 65535], "paine as much or more we": [0, 65535], "as much or more we should": [0, 65535], "much or more we should our": [0, 65535], "or more we should our selues": [0, 65535], "more we should our selues complaine": [0, 65535], "we should our selues complaine so": [0, 65535], "should our selues complaine so thou": [0, 65535], "our selues complaine so thou that": [0, 65535], "selues complaine so thou that hast": [0, 65535], "complaine so thou that hast no": [0, 65535], "so thou that hast no vnkinde": [0, 65535], "thou that hast no vnkinde mate": [0, 65535], "that hast no vnkinde mate to": [0, 65535], "hast no vnkinde mate to greeue": [0, 65535], "no vnkinde mate to greeue thee": [0, 65535], "vnkinde mate to greeue thee with": [0, 65535], "mate to greeue thee with vrging": [0, 65535], "to greeue thee with vrging helpelesse": [0, 65535], "greeue thee with vrging helpelesse patience": [0, 65535], "thee with vrging helpelesse patience would": [0, 65535], "with vrging helpelesse patience would releeue": [0, 65535], "vrging helpelesse patience would releeue me": [0, 65535], "helpelesse patience would releeue me but": [0, 65535], "patience would releeue me but if": [0, 65535], "would releeue me but if thou": [0, 65535], "releeue me but if thou liue": [0, 65535], "me but if thou liue to": [0, 65535], "but if thou liue to see": [0, 65535], "if thou liue to see like": [0, 65535], "thou liue to see like right": [0, 65535], "liue to see like right bereft": [0, 65535], "to see like right bereft this": [0, 65535], "see like right bereft this foole": [0, 65535], "like right bereft this foole beg'd": [0, 65535], "right bereft this foole beg'd patience": [0, 65535], "bereft this foole beg'd patience in": [0, 65535], "this foole beg'd patience in thee": [0, 65535], "foole beg'd patience in thee will": [0, 65535], "beg'd patience in thee will be": [0, 65535], "patience in thee will be left": [0, 65535], "in thee will be left luci": [0, 65535], "thee will be left luci well": [0, 65535], "will be left luci well i": [0, 65535], "be left luci well i will": [0, 65535], "left luci well i will marry": [0, 65535], "luci well i will marry one": [0, 65535], "well i will marry one day": [0, 65535], "i will marry one day but": [0, 65535], "will marry one day but to": [0, 65535], "marry one day but to trie": [0, 65535], "one day but to trie heere": [0, 65535], "day but to trie heere comes": [0, 65535], "but to trie heere comes your": [0, 65535], "to trie heere comes your man": [0, 65535], "trie heere comes your man now": [0, 65535], "heere comes your man now is": [0, 65535], "comes your man now is your": [0, 65535], "your man now is your husband": [0, 65535], "man now is your husband nie": [0, 65535], "now is your husband nie enter": [0, 65535], "is your husband nie enter dromio": [0, 65535], "your husband nie enter dromio eph": [0, 65535], "husband nie enter dromio eph adr": [0, 65535], "nie enter dromio eph adr say": [0, 65535], "enter dromio eph adr say is": [0, 65535], "dromio eph adr say is your": [0, 65535], "eph adr say is your tardie": [0, 65535], "adr say is your tardie master": [0, 65535], "say is your tardie master now": [0, 65535], "is your tardie master now at": [0, 65535], "your tardie master now at hand": [0, 65535], "tardie master now at hand e": [0, 65535], "master now at hand e dro": [0, 65535], "now at hand e dro nay": [0, 65535], "at hand e dro nay hee's": [0, 65535], "hand e dro nay hee's at": [0, 65535], "e dro nay hee's at too": [0, 65535], "dro nay hee's at too hands": [0, 65535], "nay hee's at too hands with": [0, 65535], "hee's at too hands with mee": [0, 65535], "at too hands with mee and": [0, 65535], "too hands with mee and that": [0, 65535], "hands with mee and that my": [0, 65535], "with mee and that my two": [0, 65535], "mee and that my two eares": [0, 65535], "and that my two eares can": [0, 65535], "that my two eares can witnesse": [0, 65535], "my two eares can witnesse adr": [0, 65535], "two eares can witnesse adr say": [0, 65535], "eares can witnesse adr say didst": [0, 65535], "can witnesse adr say didst thou": [0, 65535], "witnesse adr say didst thou speake": [0, 65535], "adr say didst thou speake with": [0, 65535], "say didst thou speake with him": [0, 65535], "didst thou speake with him knowst": [0, 65535], "thou speake with him knowst thou": [0, 65535], "speake with him knowst thou his": [0, 65535], "with him knowst thou his minde": [0, 65535], "him knowst thou his minde e": [0, 65535], "knowst thou his minde e dro": [0, 65535], "thou his minde e dro i": [0, 65535], "his minde e dro i i": [0, 65535], "minde e dro i i he": [0, 65535], "e dro i i he told": [0, 65535], "dro i i he told his": [0, 65535], "i i he told his minde": [0, 65535], "i he told his minde vpon": [0, 65535], "he told his minde vpon mine": [0, 65535], "told his minde vpon mine eare": [0, 65535], "his minde vpon mine eare beshrew": [0, 65535], "minde vpon mine eare beshrew his": [0, 65535], "vpon mine eare beshrew his hand": [0, 65535], "mine eare beshrew his hand i": [0, 65535], "eare beshrew his hand i scarce": [0, 65535], "beshrew his hand i scarce could": [0, 65535], "his hand i scarce could vnderstand": [0, 65535], "hand i scarce could vnderstand it": [0, 65535], "i scarce could vnderstand it luc": [0, 65535], "scarce could vnderstand it luc spake": [0, 65535], "could vnderstand it luc spake hee": [0, 65535], "vnderstand it luc spake hee so": [0, 65535], "it luc spake hee so doubtfully": [0, 65535], "luc spake hee so doubtfully thou": [0, 65535], "spake hee so doubtfully thou couldst": [0, 65535], "hee so doubtfully thou couldst not": [0, 65535], "so doubtfully thou couldst not feele": [0, 65535], "doubtfully thou couldst not feele his": [0, 65535], "thou couldst not feele his meaning": [0, 65535], "couldst not feele his meaning e": [0, 65535], "not feele his meaning e dro": [0, 65535], "feele his meaning e dro nay": [0, 65535], "his meaning e dro nay hee": [0, 65535], "meaning e dro nay hee strooke": [0, 65535], "e dro nay hee strooke so": [0, 65535], "dro nay hee strooke so plainly": [0, 65535], "nay hee strooke so plainly i": [0, 65535], "hee strooke so plainly i could": [0, 65535], "strooke so plainly i could too": [0, 65535], "so plainly i could too well": [0, 65535], "plainly i could too well feele": [0, 65535], "i could too well feele his": [0, 65535], "could too well feele his blowes": [0, 65535], "too well feele his blowes and": [0, 65535], "well feele his blowes and withall": [0, 65535], "feele his blowes and withall so": [0, 65535], "his blowes and withall so doubtfully": [0, 65535], "blowes and withall so doubtfully that": [0, 65535], "and withall so doubtfully that i": [0, 65535], "withall so doubtfully that i could": [0, 65535], "so doubtfully that i could scarce": [0, 65535], "doubtfully that i could scarce vnderstand": [0, 65535], "that i could scarce vnderstand them": [0, 65535], "i could scarce vnderstand them adri": [0, 65535], "could scarce vnderstand them adri but": [0, 65535], "scarce vnderstand them adri but say": [0, 65535], "vnderstand them adri but say i": [0, 65535], "them adri but say i prethee": [0, 65535], "adri but say i prethee is": [0, 65535], "but say i prethee is he": [0, 65535], "say i prethee is he comming": [0, 65535], "i prethee is he comming home": [0, 65535], "prethee is he comming home it": [0, 65535], "is he comming home it seemes": [0, 65535], "he comming home it seemes he": [0, 65535], "comming home it seemes he hath": [0, 65535], "home it seemes he hath great": [0, 65535], "it seemes he hath great care": [0, 65535], "seemes he hath great care to": [0, 65535], "he hath great care to please": [0, 65535], "hath great care to please his": [0, 65535], "great care to please his wife": [0, 65535], "care to please his wife e": [0, 65535], "to please his wife e dro": [0, 65535], "please his wife e dro why": [0, 65535], "his wife e dro why mistresse": [0, 65535], "wife e dro why mistresse sure": [0, 65535], "e dro why mistresse sure my": [0, 65535], "dro why mistresse sure my master": [0, 65535], "why mistresse sure my master is": [0, 65535], "mistresse sure my master is horne": [0, 65535], "sure my master is horne mad": [0, 65535], "my master is horne mad adri": [0, 65535], "master is horne mad adri horne": [0, 65535], "is horne mad adri horne mad": [0, 65535], "horne mad adri horne mad thou": [0, 65535], "mad adri horne mad thou villaine": [0, 65535], "adri horne mad thou villaine e": [0, 65535], "horne mad thou villaine e dro": [0, 65535], "mad thou villaine e dro i": [0, 65535], "thou villaine e dro i meane": [0, 65535], "villaine e dro i meane not": [0, 65535], "e dro i meane not cuckold": [0, 65535], "dro i meane not cuckold mad": [0, 65535], "i meane not cuckold mad but": [0, 65535], "meane not cuckold mad but sure": [0, 65535], "not cuckold mad but sure he": [0, 65535], "cuckold mad but sure he is": [0, 65535], "mad but sure he is starke": [0, 65535], "but sure he is starke mad": [0, 65535], "sure he is starke mad when": [0, 65535], "he is starke mad when i": [0, 65535], "is starke mad when i desir'd": [0, 65535], "starke mad when i desir'd him": [0, 65535], "mad when i desir'd him to": [0, 65535], "when i desir'd him to come": [0, 65535], "i desir'd him to come home": [0, 65535], "desir'd him to come home to": [0, 65535], "him to come home to dinner": [0, 65535], "to come home to dinner he": [0, 65535], "come home to dinner he ask'd": [0, 65535], "home to dinner he ask'd me": [0, 65535], "to dinner he ask'd me for": [0, 65535], "dinner he ask'd me for a": [0, 65535], "he ask'd me for a hundred": [0, 65535], "ask'd me for a hundred markes": [0, 65535], "me for a hundred markes in": [0, 65535], "for a hundred markes in gold": [0, 65535], "a hundred markes in gold 'tis": [0, 65535], "hundred markes in gold 'tis dinner": [0, 65535], "markes in gold 'tis dinner time": [0, 65535], "in gold 'tis dinner time quoth": [0, 65535], "gold 'tis dinner time quoth i": [0, 65535], "'tis dinner time quoth i my": [0, 65535], "dinner time quoth i my gold": [0, 65535], "time quoth i my gold quoth": [0, 65535], "quoth i my gold quoth he": [0, 65535], "i my gold quoth he your": [0, 65535], "my gold quoth he your meat": [0, 65535], "gold quoth he your meat doth": [0, 65535], "quoth he your meat doth burne": [0, 65535], "he your meat doth burne quoth": [0, 65535], "your meat doth burne quoth i": [0, 65535], "meat doth burne quoth i my": [0, 65535], "doth burne quoth i my gold": [0, 65535], "burne quoth i my gold quoth": [0, 65535], "i my gold quoth he will": [0, 65535], "my gold quoth he will you": [0, 65535], "gold quoth he will you come": [0, 65535], "quoth he will you come quoth": [0, 65535], "he will you come quoth i": [0, 65535], "will you come quoth i my": [0, 65535], "you come quoth i my gold": [0, 65535], "come quoth i my gold quoth": [0, 65535], "i my gold quoth he where": [0, 65535], "my gold quoth he where is": [0, 65535], "gold quoth he where is the": [0, 65535], "quoth he where is the thousand": [0, 65535], "he where is the thousand markes": [0, 65535], "where is the thousand markes i": [0, 65535], "is the thousand markes i gaue": [0, 65535], "the thousand markes i gaue thee": [0, 65535], "thousand markes i gaue thee villaine": [0, 65535], "markes i gaue thee villaine the": [0, 65535], "i gaue thee villaine the pigge": [0, 65535], "gaue thee villaine the pigge quoth": [0, 65535], "thee villaine the pigge quoth i": [0, 65535], "villaine the pigge quoth i is": [0, 65535], "the pigge quoth i is burn'd": [0, 65535], "pigge quoth i is burn'd my": [0, 65535], "quoth i is burn'd my gold": [0, 65535], "i is burn'd my gold quoth": [0, 65535], "is burn'd my gold quoth he": [0, 65535], "burn'd my gold quoth he my": [0, 65535], "my gold quoth he my mistresse": [0, 65535], "gold quoth he my mistresse sir": [0, 65535], "quoth he my mistresse sir quoth": [0, 65535], "he my mistresse sir quoth i": [0, 65535], "my mistresse sir quoth i hang": [0, 65535], "mistresse sir quoth i hang vp": [0, 65535], "sir quoth i hang vp thy": [0, 65535], "quoth i hang vp thy mistresse": [0, 65535], "i hang vp thy mistresse i": [0, 65535], "hang vp thy mistresse i know": [0, 65535], "vp thy mistresse i know not": [0, 65535], "thy mistresse i know not thy": [0, 65535], "mistresse i know not thy mistresse": [0, 65535], "i know not thy mistresse out": [0, 65535], "know not thy mistresse out on": [0, 65535], "not thy mistresse out on thy": [0, 65535], "thy mistresse out on thy mistresse": [0, 65535], "mistresse out on thy mistresse luci": [0, 65535], "out on thy mistresse luci quoth": [0, 65535], "on thy mistresse luci quoth who": [0, 65535], "thy mistresse luci quoth who e": [0, 65535], "mistresse luci quoth who e dr": [0, 65535], "luci quoth who e dr quoth": [0, 65535], "quoth who e dr quoth my": [0, 65535], "who e dr quoth my master": [0, 65535], "e dr quoth my master i": [0, 65535], "dr quoth my master i know": [0, 65535], "quoth my master i know quoth": [0, 65535], "my master i know quoth he": [0, 65535], "master i know quoth he no": [0, 65535], "i know quoth he no house": [0, 65535], "know quoth he no house no": [0, 65535], "quoth he no house no wife": [0, 65535], "he no house no wife no": [0, 65535], "no house no wife no mistresse": [0, 65535], "house no wife no mistresse so": [0, 65535], "no wife no mistresse so that": [0, 65535], "wife no mistresse so that my": [0, 65535], "no mistresse so that my arrant": [0, 65535], "mistresse so that my arrant due": [0, 65535], "so that my arrant due vnto": [0, 65535], "that my arrant due vnto my": [0, 65535], "my arrant due vnto my tongue": [0, 65535], "arrant due vnto my tongue i": [0, 65535], "due vnto my tongue i thanke": [0, 65535], "vnto my tongue i thanke him": [0, 65535], "my tongue i thanke him i": [0, 65535], "tongue i thanke him i bare": [0, 65535], "i thanke him i bare home": [0, 65535], "thanke him i bare home vpon": [0, 65535], "him i bare home vpon my": [0, 65535], "i bare home vpon my shoulders": [0, 65535], "bare home vpon my shoulders for": [0, 65535], "home vpon my shoulders for in": [0, 65535], "vpon my shoulders for in conclusion": [0, 65535], "my shoulders for in conclusion he": [0, 65535], "shoulders for in conclusion he did": [0, 65535], "for in conclusion he did beat": [0, 65535], "in conclusion he did beat me": [0, 65535], "conclusion he did beat me there": [0, 65535], "he did beat me there adri": [0, 65535], "did beat me there adri go": [0, 65535], "beat me there adri go back": [0, 65535], "me there adri go back againe": [0, 65535], "there adri go back againe thou": [0, 65535], "adri go back againe thou slaue": [0, 65535], "go back againe thou slaue fetch": [0, 65535], "back againe thou slaue fetch him": [0, 65535], "againe thou slaue fetch him home": [0, 65535], "thou slaue fetch him home dro": [0, 65535], "slaue fetch him home dro goe": [0, 65535], "fetch him home dro goe backe": [0, 65535], "him home dro goe backe againe": [0, 65535], "home dro goe backe againe and": [0, 65535], "dro goe backe againe and be": [0, 65535], "goe backe againe and be new": [0, 65535], "backe againe and be new beaten": [0, 65535], "againe and be new beaten home": [0, 65535], "and be new beaten home for": [0, 65535], "be new beaten home for gods": [0, 65535], "new beaten home for gods sake": [0, 65535], "beaten home for gods sake send": [0, 65535], "home for gods sake send some": [0, 65535], "for gods sake send some other": [0, 65535], "gods sake send some other messenger": [0, 65535], "sake send some other messenger adri": [0, 65535], "send some other messenger adri backe": [0, 65535], "some other messenger adri backe slaue": [0, 65535], "other messenger adri backe slaue or": [0, 65535], "messenger adri backe slaue or i": [0, 65535], "adri backe slaue or i will": [0, 65535], "backe slaue or i will breake": [0, 65535], "slaue or i will breake thy": [0, 65535], "or i will breake thy pate": [0, 65535], "i will breake thy pate a": [0, 65535], "will breake thy pate a crosse": [0, 65535], "breake thy pate a crosse dro": [0, 65535], "thy pate a crosse dro and": [0, 65535], "pate a crosse dro and he": [0, 65535], "a crosse dro and he will": [0, 65535], "crosse dro and he will blesse": [0, 65535], "dro and he will blesse the": [0, 65535], "and he will blesse the crosse": [0, 65535], "he will blesse the crosse with": [0, 65535], "will blesse the crosse with other": [0, 65535], "blesse the crosse with other beating": [0, 65535], "the crosse with other beating betweene": [0, 65535], "crosse with other beating betweene you": [0, 65535], "with other beating betweene you i": [0, 65535], "other beating betweene you i shall": [0, 65535], "beating betweene you i shall haue": [0, 65535], "betweene you i shall haue a": [0, 65535], "you i shall haue a holy": [0, 65535], "i shall haue a holy head": [0, 65535], "shall haue a holy head adri": [0, 65535], "haue a holy head adri hence": [0, 65535], "a holy head adri hence prating": [0, 65535], "holy head adri hence prating pesant": [0, 65535], "head adri hence prating pesant fetch": [0, 65535], "adri hence prating pesant fetch thy": [0, 65535], "hence prating pesant fetch thy master": [0, 65535], "prating pesant fetch thy master home": [0, 65535], "pesant fetch thy master home dro": [0, 65535], "fetch thy master home dro am": [0, 65535], "thy master home dro am i": [0, 65535], "master home dro am i so": [0, 65535], "home dro am i so round": [0, 65535], "dro am i so round with": [0, 65535], "am i so round with you": [0, 65535], "i so round with you as": [0, 65535], "so round with you as you": [0, 65535], "round with you as you with": [0, 65535], "with you as you with me": [0, 65535], "you as you with me that": [0, 65535], "as you with me that like": [0, 65535], "you with me that like a": [0, 65535], "with me that like a foot": [0, 65535], "me that like a foot ball": [0, 65535], "that like a foot ball you": [0, 65535], "like a foot ball you doe": [0, 65535], "a foot ball you doe spurne": [0, 65535], "foot ball you doe spurne me": [0, 65535], "ball you doe spurne me thus": [0, 65535], "you doe spurne me thus you": [0, 65535], "doe spurne me thus you spurne": [0, 65535], "spurne me thus you spurne me": [0, 65535], "me thus you spurne me hence": [0, 65535], "thus you spurne me hence and": [0, 65535], "you spurne me hence and he": [0, 65535], "spurne me hence and he will": [0, 65535], "me hence and he will spurne": [0, 65535], "hence and he will spurne me": [0, 65535], "and he will spurne me hither": [0, 65535], "he will spurne me hither if": [0, 65535], "will spurne me hither if i": [0, 65535], "spurne me hither if i last": [0, 65535], "me hither if i last in": [0, 65535], "hither if i last in this": [0, 65535], "if i last in this seruice": [0, 65535], "i last in this seruice you": [0, 65535], "last in this seruice you must": [0, 65535], "in this seruice you must case": [0, 65535], "this seruice you must case me": [0, 65535], "seruice you must case me in": [0, 65535], "you must case me in leather": [0, 65535], "must case me in leather luci": [0, 65535], "case me in leather luci fie": [0, 65535], "me in leather luci fie how": [0, 65535], "in leather luci fie how impatience": [0, 65535], "leather luci fie how impatience lowreth": [0, 65535], "luci fie how impatience lowreth in": [0, 65535], "fie how impatience lowreth in your": [0, 65535], "how impatience lowreth in your face": [0, 65535], "impatience lowreth in your face adri": [0, 65535], "lowreth in your face adri his": [0, 65535], "in your face adri his company": [0, 65535], "your face adri his company must": [0, 65535], "face adri his company must do": [0, 65535], "adri his company must do his": [0, 65535], "his company must do his minions": [0, 65535], "company must do his minions grace": [0, 65535], "must do his minions grace whil'st": [0, 65535], "do his minions grace whil'st i": [0, 65535], "his minions grace whil'st i at": [0, 65535], "minions grace whil'st i at home": [0, 65535], "grace whil'st i at home starue": [0, 65535], "whil'st i at home starue for": [0, 65535], "i at home starue for a": [0, 65535], "at home starue for a merrie": [0, 65535], "home starue for a merrie looke": [0, 65535], "starue for a merrie looke hath": [0, 65535], "for a merrie looke hath homelie": [0, 65535], "a merrie looke hath homelie age": [0, 65535], "merrie looke hath homelie age th'": [0, 65535], "looke hath homelie age th' alluring": [0, 65535], "hath homelie age th' alluring beauty": [0, 65535], "homelie age th' alluring beauty tooke": [0, 65535], "age th' alluring beauty tooke from": [0, 65535], "th' alluring beauty tooke from my": [0, 65535], "alluring beauty tooke from my poore": [0, 65535], "beauty tooke from my poore cheeke": [0, 65535], "tooke from my poore cheeke then": [0, 65535], "from my poore cheeke then he": [0, 65535], "my poore cheeke then he hath": [0, 65535], "poore cheeke then he hath wasted": [0, 65535], "cheeke then he hath wasted it": [0, 65535], "then he hath wasted it are": [0, 65535], "he hath wasted it are my": [0, 65535], "hath wasted it are my discourses": [0, 65535], "wasted it are my discourses dull": [0, 65535], "it are my discourses dull barren": [0, 65535], "are my discourses dull barren my": [0, 65535], "my discourses dull barren my wit": [0, 65535], "discourses dull barren my wit if": [0, 65535], "dull barren my wit if voluble": [0, 65535], "barren my wit if voluble and": [0, 65535], "my wit if voluble and sharpe": [0, 65535], "wit if voluble and sharpe discourse": [0, 65535], "if voluble and sharpe discourse be": [0, 65535], "voluble and sharpe discourse be mar'd": [0, 65535], "and sharpe discourse be mar'd vnkindnesse": [0, 65535], "sharpe discourse be mar'd vnkindnesse blunts": [0, 65535], "discourse be mar'd vnkindnesse blunts it": [0, 65535], "be mar'd vnkindnesse blunts it more": [0, 65535], "mar'd vnkindnesse blunts it more then": [0, 65535], "vnkindnesse blunts it more then marble": [0, 65535], "blunts it more then marble hard": [0, 65535], "it more then marble hard doe": [0, 65535], "more then marble hard doe their": [0, 65535], "then marble hard doe their gay": [0, 65535], "marble hard doe their gay vestments": [0, 65535], "hard doe their gay vestments his": [0, 65535], "doe their gay vestments his affections": [0, 65535], "their gay vestments his affections baite": [0, 65535], "gay vestments his affections baite that's": [0, 65535], "vestments his affections baite that's not": [0, 65535], "his affections baite that's not my": [0, 65535], "affections baite that's not my fault": [0, 65535], "baite that's not my fault hee's": [0, 65535], "that's not my fault hee's master": [0, 65535], "not my fault hee's master of": [0, 65535], "my fault hee's master of my": [0, 65535], "fault hee's master of my state": [0, 65535], "hee's master of my state what": [0, 65535], "master of my state what ruines": [0, 65535], "of my state what ruines are": [0, 65535], "my state what ruines are in": [0, 65535], "state what ruines are in me": [0, 65535], "what ruines are in me that": [0, 65535], "ruines are in me that can": [0, 65535], "are in me that can be": [0, 65535], "in me that can be found": [0, 65535], "me that can be found by": [0, 65535], "that can be found by him": [0, 65535], "can be found by him not": [0, 65535], "be found by him not ruin'd": [0, 65535], "found by him not ruin'd then": [0, 65535], "by him not ruin'd then is": [0, 65535], "him not ruin'd then is he": [0, 65535], "not ruin'd then is he the": [0, 65535], "ruin'd then is he the ground": [0, 65535], "then is he the ground of": [0, 65535], "is he the ground of my": [0, 65535], "he the ground of my defeatures": [0, 65535], "the ground of my defeatures my": [0, 65535], "ground of my defeatures my decayed": [0, 65535], "of my defeatures my decayed faire": [0, 65535], "my defeatures my decayed faire a": [0, 65535], "defeatures my decayed faire a sunnie": [0, 65535], "my decayed faire a sunnie looke": [0, 65535], "decayed faire a sunnie looke of": [0, 65535], "faire a sunnie looke of his": [0, 65535], "a sunnie looke of his would": [0, 65535], "sunnie looke of his would soone": [0, 65535], "looke of his would soone repaire": [0, 65535], "of his would soone repaire but": [0, 65535], "his would soone repaire but too": [0, 65535], "would soone repaire but too vnruly": [0, 65535], "soone repaire but too vnruly deere": [0, 65535], "repaire but too vnruly deere he": [0, 65535], "but too vnruly deere he breakes": [0, 65535], "too vnruly deere he breakes the": [0, 65535], "vnruly deere he breakes the pale": [0, 65535], "deere he breakes the pale and": [0, 65535], "he breakes the pale and feedes": [0, 65535], "breakes the pale and feedes from": [0, 65535], "the pale and feedes from home": [0, 65535], "pale and feedes from home poore": [0, 65535], "and feedes from home poore i": [0, 65535], "feedes from home poore i am": [0, 65535], "from home poore i am but": [0, 65535], "home poore i am but his": [0, 65535], "poore i am but his stale": [0, 65535], "i am but his stale luci": [0, 65535], "am but his stale luci selfe": [0, 65535], "but his stale luci selfe harming": [0, 65535], "his stale luci selfe harming iealousie": [0, 65535], "stale luci selfe harming iealousie fie": [0, 65535], "luci selfe harming iealousie fie beat": [0, 65535], "selfe harming iealousie fie beat it": [0, 65535], "harming iealousie fie beat it hence": [0, 65535], "iealousie fie beat it hence ad": [0, 65535], "fie beat it hence ad vnfeeling": [0, 65535], "beat it hence ad vnfeeling fools": [0, 65535], "it hence ad vnfeeling fools can": [0, 65535], "hence ad vnfeeling fools can with": [0, 65535], "ad vnfeeling fools can with such": [0, 65535], "vnfeeling fools can with such wrongs": [0, 65535], "fools can with such wrongs dispence": [0, 65535], "can with such wrongs dispence i": [0, 65535], "with such wrongs dispence i know": [0, 65535], "such wrongs dispence i know his": [0, 65535], "wrongs dispence i know his eye": [0, 65535], "dispence i know his eye doth": [0, 65535], "i know his eye doth homage": [0, 65535], "know his eye doth homage other": [0, 65535], "his eye doth homage other where": [0, 65535], "eye doth homage other where or": [0, 65535], "doth homage other where or else": [0, 65535], "homage other where or else what": [0, 65535], "other where or else what lets": [0, 65535], "where or else what lets it": [0, 65535], "or else what lets it but": [0, 65535], "else what lets it but he": [0, 65535], "what lets it but he would": [0, 65535], "lets it but he would be": [0, 65535], "it but he would be here": [0, 65535], "but he would be here sister": [0, 65535], "he would be here sister you": [0, 65535], "would be here sister you know": [0, 65535], "be here sister you know he": [0, 65535], "here sister you know he promis'd": [0, 65535], "sister you know he promis'd me": [0, 65535], "you know he promis'd me a": [0, 65535], "know he promis'd me a chaine": [0, 65535], "he promis'd me a chaine would": [0, 65535], "promis'd me a chaine would that": [0, 65535], "me a chaine would that alone": [0, 65535], "a chaine would that alone a": [0, 65535], "chaine would that alone a loue": [0, 65535], "would that alone a loue he": [0, 65535], "that alone a loue he would": [0, 65535], "alone a loue he would detaine": [0, 65535], "a loue he would detaine so": [0, 65535], "loue he would detaine so he": [0, 65535], "he would detaine so he would": [0, 65535], "would detaine so he would keepe": [0, 65535], "detaine so he would keepe faire": [0, 65535], "so he would keepe faire quarter": [0, 65535], "he would keepe faire quarter with": [0, 65535], "would keepe faire quarter with his": [0, 65535], "keepe faire quarter with his bed": [0, 65535], "faire quarter with his bed i": [0, 65535], "quarter with his bed i see": [0, 65535], "with his bed i see the": [0, 65535], "his bed i see the iewell": [0, 65535], "bed i see the iewell best": [0, 65535], "i see the iewell best enamaled": [0, 65535], "see the iewell best enamaled will": [0, 65535], "the iewell best enamaled will loose": [0, 65535], "iewell best enamaled will loose his": [0, 65535], "best enamaled will loose his beautie": [0, 65535], "enamaled will loose his beautie yet": [0, 65535], "will loose his beautie yet the": [0, 65535], "loose his beautie yet the gold": [0, 65535], "his beautie yet the gold bides": [0, 65535], "beautie yet the gold bides still": [0, 65535], "yet the gold bides still that": [0, 65535], "the gold bides still that others": [0, 65535], "gold bides still that others touch": [0, 65535], "bides still that others touch and": [0, 65535], "still that others touch and often": [0, 65535], "that others touch and often touching": [0, 65535], "others touch and often touching will": [0, 65535], "touch and often touching will where": [0, 65535], "and often touching will where gold": [0, 65535], "often touching will where gold and": [0, 65535], "touching will where gold and no": [0, 65535], "will where gold and no man": [0, 65535], "where gold and no man that": [0, 65535], "gold and no man that hath": [0, 65535], "and no man that hath a": [0, 65535], "no man that hath a name": [0, 65535], "man that hath a name by": [0, 65535], "that hath a name by falshood": [0, 65535], "hath a name by falshood and": [0, 65535], "a name by falshood and corruption": [0, 65535], "name by falshood and corruption doth": [0, 65535], "by falshood and corruption doth it": [0, 65535], "falshood and corruption doth it shame": [0, 65535], "and corruption doth it shame since": [0, 65535], "corruption doth it shame since that": [0, 65535], "doth it shame since that my": [0, 65535], "it shame since that my beautie": [0, 65535], "shame since that my beautie cannot": [0, 65535], "since that my beautie cannot please": [0, 65535], "that my beautie cannot please his": [0, 65535], "my beautie cannot please his eie": [0, 65535], "beautie cannot please his eie ile": [0, 65535], "cannot please his eie ile weepe": [0, 65535], "please his eie ile weepe what's": [0, 65535], "his eie ile weepe what's left": [0, 65535], "eie ile weepe what's left away": [0, 65535], "ile weepe what's left away and": [0, 65535], "weepe what's left away and weeping": [0, 65535], "what's left away and weeping die": [0, 65535], "left away and weeping die luci": [0, 65535], "away and weeping die luci how": [0, 65535], "and weeping die luci how manie": [0, 65535], "weeping die luci how manie fond": [0, 65535], "die luci how manie fond fooles": [0, 65535], "luci how manie fond fooles serue": [0, 65535], "how manie fond fooles serue mad": [0, 65535], "manie fond fooles serue mad ielousie": [0, 65535], "fond fooles serue mad ielousie exit": [0, 65535], "fooles serue mad ielousie exit enter": [0, 65535], "serue mad ielousie exit enter antipholis": [0, 65535], "mad ielousie exit enter antipholis errotis": [0, 65535], "ielousie exit enter antipholis errotis ant": [0, 65535], "exit enter antipholis errotis ant the": [0, 65535], "enter antipholis errotis ant the gold": [0, 65535], "antipholis errotis ant the gold i": [0, 65535], "errotis ant the gold i gaue": [0, 65535], "ant the gold i gaue to": [0, 65535], "the gold i gaue to dromio": [0, 65535], "gold i gaue to dromio is": [0, 65535], "i gaue to dromio is laid": [0, 65535], "gaue to dromio is laid vp": [0, 65535], "to dromio is laid vp safe": [0, 65535], "dromio is laid vp safe at": [0, 65535], "is laid vp safe at the": [0, 65535], "laid vp safe at the centaur": [0, 65535], "vp safe at the centaur and": [0, 65535], "safe at the centaur and the": [0, 65535], "at the centaur and the heedfull": [0, 65535], "the centaur and the heedfull slaue": [0, 65535], "centaur and the heedfull slaue is": [0, 65535], "and the heedfull slaue is wandred": [0, 65535], "the heedfull slaue is wandred forth": [0, 65535], "heedfull slaue is wandred forth in": [0, 65535], "slaue is wandred forth in care": [0, 65535], "is wandred forth in care to": [0, 65535], "wandred forth in care to seeke": [0, 65535], "forth in care to seeke me": [0, 65535], "in care to seeke me out": [0, 65535], "care to seeke me out by": [0, 65535], "to seeke me out by computation": [0, 65535], "seeke me out by computation and": [0, 65535], "me out by computation and mine": [0, 65535], "out by computation and mine hosts": [0, 65535], "by computation and mine hosts report": [0, 65535], "computation and mine hosts report i": [0, 65535], "and mine hosts report i could": [0, 65535], "mine hosts report i could not": [0, 65535], "hosts report i could not speake": [0, 65535], "report i could not speake with": [0, 65535], "i could not speake with dromio": [0, 65535], "could not speake with dromio since": [0, 65535], "not speake with dromio since at": [0, 65535], "speake with dromio since at first": [0, 65535], "with dromio since at first i": [0, 65535], "dromio since at first i sent": [0, 65535], "since at first i sent him": [0, 65535], "at first i sent him from": [0, 65535], "first i sent him from the": [0, 65535], "i sent him from the mart": [0, 65535], "sent him from the mart see": [0, 65535], "him from the mart see here": [0, 65535], "from the mart see here he": [0, 65535], "the mart see here he comes": [0, 65535], "mart see here he comes enter": [0, 65535], "see here he comes enter dromio": [0, 65535], "here he comes enter dromio siracusia": [0, 65535], "he comes enter dromio siracusia how": [0, 65535], "comes enter dromio siracusia how now": [0, 65535], "enter dromio siracusia how now sir": [0, 65535], "dromio siracusia how now sir is": [0, 65535], "siracusia how now sir is your": [0, 65535], "how now sir is your merrie": [0, 65535], "now sir is your merrie humor": [0, 65535], "sir is your merrie humor alter'd": [0, 65535], "is your merrie humor alter'd as": [0, 65535], "your merrie humor alter'd as you": [0, 65535], "merrie humor alter'd as you loue": [0, 65535], "humor alter'd as you loue stroakes": [0, 65535], "alter'd as you loue stroakes so": [0, 65535], "as you loue stroakes so iest": [0, 65535], "you loue stroakes so iest with": [0, 65535], "loue stroakes so iest with me": [0, 65535], "stroakes so iest with me againe": [0, 65535], "so iest with me againe you": [0, 65535], "iest with me againe you know": [0, 65535], "with me againe you know no": [0, 65535], "me againe you know no centaur": [0, 65535], "againe you know no centaur you": [0, 65535], "you know no centaur you receiu'd": [0, 65535], "know no centaur you receiu'd no": [0, 65535], "no centaur you receiu'd no gold": [0, 65535], "centaur you receiu'd no gold your": [0, 65535], "you receiu'd no gold your mistresse": [0, 65535], "receiu'd no gold your mistresse sent": [0, 65535], "no gold your mistresse sent to": [0, 65535], "gold your mistresse sent to haue": [0, 65535], "your mistresse sent to haue me": [0, 65535], "mistresse sent to haue me home": [0, 65535], "sent to haue me home to": [0, 65535], "to haue me home to dinner": [0, 65535], "haue me home to dinner my": [0, 65535], "me home to dinner my house": [0, 65535], "home to dinner my house was": [0, 65535], "to dinner my house was at": [0, 65535], "dinner my house was at the": [0, 65535], "my house was at the ph\u0153nix": [0, 65535], "house was at the ph\u0153nix wast": [0, 65535], "was at the ph\u0153nix wast thou": [0, 65535], "at the ph\u0153nix wast thou mad": [0, 65535], "the ph\u0153nix wast thou mad that": [0, 65535], "ph\u0153nix wast thou mad that thus": [0, 65535], "wast thou mad that thus so": [0, 65535], "thou mad that thus so madlie": [0, 65535], "mad that thus so madlie thou": [0, 65535], "that thus so madlie thou did": [0, 65535], "thus so madlie thou did didst": [0, 65535], "so madlie thou did didst answere": [0, 65535], "madlie thou did didst answere me": [0, 65535], "thou did didst answere me s": [0, 65535], "did didst answere me s dro": [0, 65535], "didst answere me s dro what": [0, 65535], "answere me s dro what answer": [0, 65535], "me s dro what answer sir": [0, 65535], "s dro what answer sir when": [0, 65535], "dro what answer sir when spake": [0, 65535], "what answer sir when spake i": [0, 65535], "answer sir when spake i such": [0, 65535], "sir when spake i such a": [0, 65535], "when spake i such a word": [0, 65535], "spake i such a word e": [0, 65535], "i such a word e ant": [0, 65535], "such a word e ant euen": [0, 65535], "a word e ant euen now": [0, 65535], "word e ant euen now euen": [0, 65535], "e ant euen now euen here": [0, 65535], "ant euen now euen here not": [0, 65535], "euen now euen here not halfe": [0, 65535], "now euen here not halfe an": [0, 65535], "euen here not halfe an howre": [0, 65535], "here not halfe an howre since": [0, 65535], "not halfe an howre since s": [0, 65535], "halfe an howre since s dro": [0, 65535], "an howre since s dro i": [0, 65535], "howre since s dro i did": [0, 65535], "since s dro i did not": [0, 65535], "s dro i did not see": [0, 65535], "dro i did not see you": [0, 65535], "i did not see you since": [0, 65535], "did not see you since you": [0, 65535], "not see you since you sent": [0, 65535], "see you since you sent me": [0, 65535], "you since you sent me hence": [0, 65535], "since you sent me hence home": [0, 65535], "you sent me hence home to": [0, 65535], "sent me hence home to the": [0, 65535], "me hence home to the centaur": [0, 65535], "hence home to the centaur with": [0, 65535], "home to the centaur with the": [0, 65535], "to the centaur with the gold": [0, 65535], "the centaur with the gold you": [0, 65535], "centaur with the gold you gaue": [0, 65535], "with the gold you gaue me": [0, 65535], "the gold you gaue me ant": [0, 65535], "gold you gaue me ant villaine": [0, 65535], "you gaue me ant villaine thou": [0, 65535], "gaue me ant villaine thou didst": [0, 65535], "me ant villaine thou didst denie": [0, 65535], "ant villaine thou didst denie the": [0, 65535], "villaine thou didst denie the golds": [0, 65535], "thou didst denie the golds receit": [0, 65535], "didst denie the golds receit and": [0, 65535], "denie the golds receit and toldst": [0, 65535], "the golds receit and toldst me": [0, 65535], "golds receit and toldst me of": [0, 65535], "receit and toldst me of a": [0, 65535], "and toldst me of a mistresse": [0, 65535], "toldst me of a mistresse and": [0, 65535], "me of a mistresse and a": [0, 65535], "of a mistresse and a dinner": [0, 65535], "a mistresse and a dinner for": [0, 65535], "mistresse and a dinner for which": [0, 65535], "and a dinner for which i": [0, 65535], "a dinner for which i hope": [0, 65535], "dinner for which i hope thou": [0, 65535], "for which i hope thou feltst": [0, 65535], "which i hope thou feltst i": [0, 65535], "i hope thou feltst i was": [0, 65535], "hope thou feltst i was displeas'd": [0, 65535], "thou feltst i was displeas'd s": [0, 65535], "feltst i was displeas'd s dro": [0, 65535], "i was displeas'd s dro i": [0, 65535], "was displeas'd s dro i am": [0, 65535], "displeas'd s dro i am glad": [0, 65535], "s dro i am glad to": [0, 65535], "dro i am glad to see": [0, 65535], "i am glad to see you": [0, 65535], "am glad to see you in": [0, 65535], "glad to see you in this": [0, 65535], "to see you in this merrie": [0, 65535], "see you in this merrie vaine": [0, 65535], "you in this merrie vaine what": [0, 65535], "in this merrie vaine what meanes": [0, 65535], "this merrie vaine what meanes this": [0, 65535], "merrie vaine what meanes this iest": [0, 65535], "vaine what meanes this iest i": [0, 65535], "what meanes this iest i pray": [0, 65535], "meanes this iest i pray you": [0, 65535], "this iest i pray you master": [0, 65535], "iest i pray you master tell": [0, 65535], "i pray you master tell me": [0, 65535], "pray you master tell me ant": [0, 65535], "you master tell me ant yea": [0, 65535], "master tell me ant yea dost": [0, 65535], "tell me ant yea dost thou": [0, 65535], "me ant yea dost thou ieere": [0, 65535], "ant yea dost thou ieere flowt": [0, 65535], "yea dost thou ieere flowt me": [0, 65535], "dost thou ieere flowt me in": [0, 65535], "thou ieere flowt me in the": [0, 65535], "ieere flowt me in the teeth": [0, 65535], "flowt me in the teeth thinkst": [0, 65535], "me in the teeth thinkst thou": [0, 65535], "in the teeth thinkst thou i": [0, 65535], "the teeth thinkst thou i iest": [0, 65535], "teeth thinkst thou i iest hold": [0, 65535], "thinkst thou i iest hold take": [0, 65535], "thou i iest hold take thou": [0, 65535], "i iest hold take thou that": [0, 65535], "iest hold take thou that that": [0, 65535], "hold take thou that that beats": [0, 65535], "take thou that that beats dro": [0, 65535], "thou that that beats dro s": [0, 65535], "that that beats dro s dr": [0, 65535], "that beats dro s dr hold": [0, 65535], "beats dro s dr hold sir": [0, 65535], "dro s dr hold sir for": [0, 65535], "s dr hold sir for gods": [0, 65535], "dr hold sir for gods sake": [0, 65535], "hold sir for gods sake now": [0, 65535], "sir for gods sake now your": [0, 65535], "for gods sake now your iest": [0, 65535], "gods sake now your iest is": [0, 65535], "sake now your iest is earnest": [0, 65535], "now your iest is earnest vpon": [0, 65535], "your iest is earnest vpon what": [0, 65535], "iest is earnest vpon what bargaine": [0, 65535], "is earnest vpon what bargaine do": [0, 65535], "earnest vpon what bargaine do you": [0, 65535], "vpon what bargaine do you giue": [0, 65535], "what bargaine do you giue it": [0, 65535], "bargaine do you giue it me": [0, 65535], "do you giue it me antiph": [0, 65535], "you giue it me antiph because": [0, 65535], "giue it me antiph because that": [0, 65535], "it me antiph because that i": [0, 65535], "me antiph because that i familiarlie": [0, 65535], "antiph because that i familiarlie sometimes": [0, 65535], "because that i familiarlie sometimes doe": [0, 65535], "that i familiarlie sometimes doe vse": [0, 65535], "i familiarlie sometimes doe vse you": [0, 65535], "familiarlie sometimes doe vse you for": [0, 65535], "sometimes doe vse you for my": [0, 65535], "doe vse you for my foole": [0, 65535], "vse you for my foole and": [0, 65535], "you for my foole and chat": [0, 65535], "for my foole and chat with": [0, 65535], "my foole and chat with you": [0, 65535], "foole and chat with you your": [0, 65535], "and chat with you your sawcinesse": [0, 65535], "chat with you your sawcinesse will": [0, 65535], "with you your sawcinesse will iest": [0, 65535], "you your sawcinesse will iest vpon": [0, 65535], "your sawcinesse will iest vpon my": [0, 65535], "sawcinesse will iest vpon my loue": [0, 65535], "will iest vpon my loue and": [0, 65535], "iest vpon my loue and make": [0, 65535], "vpon my loue and make a": [0, 65535], "my loue and make a common": [0, 65535], "loue and make a common of": [0, 65535], "and make a common of my": [0, 65535], "make a common of my serious": [0, 65535], "a common of my serious howres": [0, 65535], "common of my serious howres when": [0, 65535], "of my serious howres when the": [0, 65535], "my serious howres when the sunne": [0, 65535], "serious howres when the sunne shines": [0, 65535], "howres when the sunne shines let": [0, 65535], "when the sunne shines let foolish": [0, 65535], "the sunne shines let foolish gnats": [0, 65535], "sunne shines let foolish gnats make": [0, 65535], "shines let foolish gnats make sport": [0, 65535], "let foolish gnats make sport but": [0, 65535], "foolish gnats make sport but creepe": [0, 65535], "gnats make sport but creepe in": [0, 65535], "make sport but creepe in crannies": [0, 65535], "sport but creepe in crannies when": [0, 65535], "but creepe in crannies when he": [0, 65535], "creepe in crannies when he hides": [0, 65535], "in crannies when he hides his": [0, 65535], "crannies when he hides his beames": [0, 65535], "when he hides his beames if": [0, 65535], "he hides his beames if you": [0, 65535], "hides his beames if you will": [0, 65535], "his beames if you will iest": [0, 65535], "beames if you will iest with": [0, 65535], "if you will iest with me": [0, 65535], "you will iest with me know": [0, 65535], "will iest with me know my": [0, 65535], "iest with me know my aspect": [0, 65535], "with me know my aspect and": [0, 65535], "me know my aspect and fashion": [0, 65535], "know my aspect and fashion your": [0, 65535], "my aspect and fashion your demeanor": [0, 65535], "aspect and fashion your demeanor to": [0, 65535], "and fashion your demeanor to my": [0, 65535], "fashion your demeanor to my lookes": [0, 65535], "your demeanor to my lookes or": [0, 65535], "demeanor to my lookes or i": [0, 65535], "to my lookes or i will": [0, 65535], "my lookes or i will beat": [0, 65535], "lookes or i will beat this": [0, 65535], "or i will beat this method": [0, 65535], "i will beat this method in": [0, 65535], "will beat this method in your": [0, 65535], "beat this method in your sconce": [0, 65535], "this method in your sconce s": [0, 65535], "method in your sconce s dro": [0, 65535], "in your sconce s dro sconce": [0, 65535], "your sconce s dro sconce call": [0, 65535], "sconce s dro sconce call you": [0, 65535], "s dro sconce call you it": [0, 65535], "dro sconce call you it so": [0, 65535], "sconce call you it so you": [0, 65535], "call you it so you would": [0, 65535], "you it so you would leaue": [0, 65535], "it so you would leaue battering": [0, 65535], "so you would leaue battering i": [0, 65535], "you would leaue battering i had": [0, 65535], "would leaue battering i had rather": [0, 65535], "leaue battering i had rather haue": [0, 65535], "battering i had rather haue it": [0, 65535], "i had rather haue it a": [0, 65535], "had rather haue it a head": [0, 65535], "rather haue it a head and": [0, 65535], "haue it a head and you": [0, 65535], "it a head and you vse": [0, 65535], "a head and you vse these": [0, 65535], "head and you vse these blows": [0, 65535], "and you vse these blows long": [0, 65535], "you vse these blows long i": [0, 65535], "vse these blows long i must": [0, 65535], "these blows long i must get": [0, 65535], "blows long i must get a": [0, 65535], "long i must get a sconce": [0, 65535], "i must get a sconce for": [0, 65535], "must get a sconce for my": [0, 65535], "get a sconce for my head": [0, 65535], "a sconce for my head and": [0, 65535], "sconce for my head and insconce": [0, 65535], "for my head and insconce it": [0, 65535], "my head and insconce it to": [0, 65535], "head and insconce it to or": [0, 65535], "and insconce it to or else": [0, 65535], "insconce it to or else i": [0, 65535], "it to or else i shall": [0, 65535], "to or else i shall seek": [0, 65535], "or else i shall seek my": [0, 65535], "else i shall seek my wit": [0, 65535], "i shall seek my wit in": [0, 65535], "shall seek my wit in my": [0, 65535], "seek my wit in my shoulders": [0, 65535], "my wit in my shoulders but": [0, 65535], "wit in my shoulders but i": [0, 65535], "in my shoulders but i pray": [0, 65535], "my shoulders but i pray sir": [0, 65535], "shoulders but i pray sir why": [0, 65535], "but i pray sir why am": [0, 65535], "i pray sir why am i": [0, 65535], "pray sir why am i beaten": [0, 65535], "sir why am i beaten ant": [0, 65535], "why am i beaten ant dost": [0, 65535], "am i beaten ant dost thou": [0, 65535], "i beaten ant dost thou not": [0, 65535], "beaten ant dost thou not know": [0, 65535], "ant dost thou not know s": [0, 65535], "dost thou not know s dro": [0, 65535], "thou not know s dro nothing": [0, 65535], "not know s dro nothing sir": [0, 65535], "know s dro nothing sir but": [0, 65535], "s dro nothing sir but that": [0, 65535], "dro nothing sir but that i": [0, 65535], "nothing sir but that i am": [0, 65535], "sir but that i am beaten": [0, 65535], "but that i am beaten ant": [0, 65535], "that i am beaten ant shall": [0, 65535], "i am beaten ant shall i": [0, 65535], "am beaten ant shall i tell": [0, 65535], "beaten ant shall i tell you": [0, 65535], "ant shall i tell you why": [0, 65535], "shall i tell you why s": [0, 65535], "i tell you why s dro": [0, 65535], "tell you why s dro i": [0, 65535], "you why s dro i sir": [0, 65535], "why s dro i sir and": [0, 65535], "s dro i sir and wherefore": [0, 65535], "dro i sir and wherefore for": [0, 65535], "i sir and wherefore for they": [0, 65535], "sir and wherefore for they say": [0, 65535], "and wherefore for they say euery": [0, 65535], "wherefore for they say euery why": [0, 65535], "for they say euery why hath": [0, 65535], "they say euery why hath a": [0, 65535], "say euery why hath a wherefore": [0, 65535], "euery why hath a wherefore ant": [0, 65535], "why hath a wherefore ant why": [0, 65535], "hath a wherefore ant why first": [0, 65535], "a wherefore ant why first for": [0, 65535], "wherefore ant why first for flowting": [0, 65535], "ant why first for flowting me": [0, 65535], "why first for flowting me and": [0, 65535], "first for flowting me and then": [0, 65535], "for flowting me and then wherefore": [0, 65535], "flowting me and then wherefore for": [0, 65535], "me and then wherefore for vrging": [0, 65535], "and then wherefore for vrging it": [0, 65535], "then wherefore for vrging it the": [0, 65535], "wherefore for vrging it the second": [0, 65535], "for vrging it the second time": [0, 65535], "vrging it the second time to": [0, 65535], "it the second time to me": [0, 65535], "the second time to me s": [0, 65535], "second time to me s dro": [0, 65535], "time to me s dro was": [0, 65535], "to me s dro was there": [0, 65535], "me s dro was there euer": [0, 65535], "s dro was there euer anie": [0, 65535], "dro was there euer anie man": [0, 65535], "was there euer anie man thus": [0, 65535], "there euer anie man thus beaten": [0, 65535], "euer anie man thus beaten out": [0, 65535], "anie man thus beaten out of": [0, 65535], "man thus beaten out of season": [0, 65535], "thus beaten out of season when": [0, 65535], "beaten out of season when in": [0, 65535], "out of season when in the": [0, 65535], "of season when in the why": [0, 65535], "season when in the why and": [0, 65535], "when in the why and the": [0, 65535], "in the why and the wherefore": [0, 65535], "the why and the wherefore is": [0, 65535], "why and the wherefore is neither": [0, 65535], "and the wherefore is neither rime": [0, 65535], "the wherefore is neither rime nor": [0, 65535], "wherefore is neither rime nor reason": [0, 65535], "is neither rime nor reason well": [0, 65535], "neither rime nor reason well sir": [0, 65535], "rime nor reason well sir i": [0, 65535], "nor reason well sir i thanke": [0, 65535], "reason well sir i thanke you": [0, 65535], "well sir i thanke you ant": [0, 65535], "sir i thanke you ant thanke": [0, 65535], "i thanke you ant thanke me": [0, 65535], "thanke you ant thanke me sir": [0, 65535], "you ant thanke me sir for": [0, 65535], "ant thanke me sir for what": [0, 65535], "thanke me sir for what s": [0, 65535], "me sir for what s dro": [0, 65535], "sir for what s dro marry": [0, 65535], "for what s dro marry sir": [0, 65535], "what s dro marry sir for": [0, 65535], "s dro marry sir for this": [0, 65535], "dro marry sir for this something": [0, 65535], "marry sir for this something that": [0, 65535], "sir for this something that you": [0, 65535], "for this something that you gaue": [0, 65535], "this something that you gaue me": [0, 65535], "something that you gaue me for": [0, 65535], "that you gaue me for nothing": [0, 65535], "you gaue me for nothing ant": [0, 65535], "gaue me for nothing ant ile": [0, 65535], "me for nothing ant ile make": [0, 65535], "for nothing ant ile make you": [0, 65535], "nothing ant ile make you amends": [0, 65535], "ant ile make you amends next": [0, 65535], "ile make you amends next to": [0, 65535], "make you amends next to giue": [0, 65535], "you amends next to giue you": [0, 65535], "amends next to giue you nothing": [0, 65535], "next to giue you nothing for": [0, 65535], "to giue you nothing for something": [0, 65535], "giue you nothing for something but": [0, 65535], "you nothing for something but say": [0, 65535], "nothing for something but say sir": [0, 65535], "for something but say sir is": [0, 65535], "something but say sir is it": [0, 65535], "but say sir is it dinner": [0, 65535], "say sir is it dinner time": [0, 65535], "sir is it dinner time s": [0, 65535], "is it dinner time s dro": [0, 65535], "it dinner time s dro no": [0, 65535], "dinner time s dro no sir": [0, 65535], "time s dro no sir i": [0, 65535], "s dro no sir i thinke": [0, 65535], "dro no sir i thinke the": [0, 65535], "no sir i thinke the meat": [0, 65535], "sir i thinke the meat wants": [0, 65535], "i thinke the meat wants that": [0, 65535], "thinke the meat wants that i": [0, 65535], "the meat wants that i haue": [0, 65535], "meat wants that i haue ant": [0, 65535], "wants that i haue ant in": [0, 65535], "that i haue ant in good": [0, 65535], "i haue ant in good time": [0, 65535], "haue ant in good time sir": [0, 65535], "ant in good time sir what's": [0, 65535], "in good time sir what's that": [0, 65535], "good time sir what's that s": [0, 65535], "time sir what's that s dro": [0, 65535], "sir what's that s dro basting": [0, 65535], "what's that s dro basting ant": [0, 65535], "that s dro basting ant well": [0, 65535], "s dro basting ant well sir": [0, 65535], "dro basting ant well sir then": [0, 65535], "basting ant well sir then 'twill": [0, 65535], "ant well sir then 'twill be": [0, 65535], "well sir then 'twill be drie": [0, 65535], "sir then 'twill be drie s": [0, 65535], "then 'twill be drie s dro": [0, 65535], "'twill be drie s dro if": [0, 65535], "be drie s dro if it": [0, 65535], "drie s dro if it be": [0, 65535], "s dro if it be sir": [0, 65535], "dro if it be sir i": [0, 65535], "if it be sir i pray": [0, 65535], "it be sir i pray you": [0, 65535], "be sir i pray you eat": [0, 65535], "sir i pray you eat none": [0, 65535], "i pray you eat none of": [0, 65535], "pray you eat none of it": [0, 65535], "you eat none of it ant": [0, 65535], "eat none of it ant your": [0, 65535], "none of it ant your reason": [0, 65535], "of it ant your reason s": [0, 65535], "it ant your reason s dro": [0, 65535], "ant your reason s dro lest": [0, 65535], "your reason s dro lest it": [0, 65535], "reason s dro lest it make": [0, 65535], "s dro lest it make you": [0, 65535], "dro lest it make you chollericke": [0, 65535], "lest it make you chollericke and": [0, 65535], "it make you chollericke and purchase": [0, 65535], "make you chollericke and purchase me": [0, 65535], "you chollericke and purchase me another": [0, 65535], "chollericke and purchase me another drie": [0, 65535], "and purchase me another drie basting": [0, 65535], "purchase me another drie basting ant": [0, 65535], "me another drie basting ant well": [0, 65535], "another drie basting ant well sir": [0, 65535], "drie basting ant well sir learne": [0, 65535], "basting ant well sir learne to": [0, 65535], "ant well sir learne to iest": [0, 65535], "well sir learne to iest in": [0, 65535], "sir learne to iest in good": [0, 65535], "learne to iest in good time": [0, 65535], "to iest in good time there's": [0, 65535], "iest in good time there's a": [0, 65535], "in good time there's a time": [0, 65535], "good time there's a time for": [0, 65535], "time there's a time for all": [0, 65535], "there's a time for all things": [0, 65535], "a time for all things s": [0, 65535], "time for all things s dro": [0, 65535], "for all things s dro i": [0, 65535], "all things s dro i durst": [0, 65535], "things s dro i durst haue": [0, 65535], "s dro i durst haue denied": [0, 65535], "dro i durst haue denied that": [0, 65535], "i durst haue denied that before": [0, 65535], "durst haue denied that before you": [0, 65535], "haue denied that before you were": [0, 65535], "denied that before you were so": [0, 65535], "that before you were so chollericke": [0, 65535], "before you were so chollericke anti": [0, 65535], "you were so chollericke anti by": [0, 65535], "were so chollericke anti by what": [0, 65535], "so chollericke anti by what rule": [0, 65535], "chollericke anti by what rule sir": [0, 65535], "anti by what rule sir s": [0, 65535], "by what rule sir s dro": [0, 65535], "what rule sir s dro marry": [0, 65535], "rule sir s dro marry sir": [0, 65535], "sir s dro marry sir by": [0, 65535], "s dro marry sir by a": [0, 65535], "dro marry sir by a rule": [0, 65535], "marry sir by a rule as": [0, 65535], "sir by a rule as plaine": [0, 65535], "by a rule as plaine as": [0, 65535], "a rule as plaine as the": [0, 65535], "rule as plaine as the plaine": [0, 65535], "as plaine as the plaine bald": [0, 65535], "plaine as the plaine bald pate": [0, 65535], "as the plaine bald pate of": [0, 65535], "the plaine bald pate of father": [0, 65535], "plaine bald pate of father time": [0, 65535], "bald pate of father time himselfe": [0, 65535], "pate of father time himselfe ant": [0, 65535], "of father time himselfe ant let's": [0, 65535], "father time himselfe ant let's heare": [0, 65535], "time himselfe ant let's heare it": [0, 65535], "himselfe ant let's heare it s": [0, 65535], "ant let's heare it s dro": [0, 65535], "let's heare it s dro there's": [0, 65535], "heare it s dro there's no": [0, 65535], "it s dro there's no time": [0, 65535], "s dro there's no time for": [0, 65535], "dro there's no time for a": [0, 65535], "there's no time for a man": [0, 65535], "no time for a man to": [0, 65535], "time for a man to recouer": [0, 65535], "for a man to recouer his": [0, 65535], "a man to recouer his haire": [0, 65535], "man to recouer his haire that": [0, 65535], "to recouer his haire that growes": [0, 65535], "recouer his haire that growes bald": [0, 65535], "his haire that growes bald by": [0, 65535], "haire that growes bald by nature": [0, 65535], "that growes bald by nature ant": [0, 65535], "growes bald by nature ant may": [0, 65535], "bald by nature ant may he": [0, 65535], "by nature ant may he not": [0, 65535], "nature ant may he not doe": [0, 65535], "ant may he not doe it": [0, 65535], "may he not doe it by": [0, 65535], "he not doe it by fine": [0, 65535], "not doe it by fine and": [0, 65535], "doe it by fine and recouerie": [0, 65535], "it by fine and recouerie s": [0, 65535], "by fine and recouerie s dro": [0, 65535], "fine and recouerie s dro yes": [0, 65535], "and recouerie s dro yes to": [0, 65535], "recouerie s dro yes to pay": [0, 65535], "s dro yes to pay a": [0, 65535], "dro yes to pay a fine": [0, 65535], "yes to pay a fine for": [0, 65535], "to pay a fine for a": [0, 65535], "pay a fine for a perewig": [0, 65535], "a fine for a perewig and": [0, 65535], "fine for a perewig and recouer": [0, 65535], "for a perewig and recouer the": [0, 65535], "a perewig and recouer the lost": [0, 65535], "perewig and recouer the lost haire": [0, 65535], "and recouer the lost haire of": [0, 65535], "recouer the lost haire of another": [0, 65535], "the lost haire of another man": [0, 65535], "lost haire of another man ant": [0, 65535], "haire of another man ant why": [0, 65535], "of another man ant why is": [0, 65535], "another man ant why is time": [0, 65535], "man ant why is time such": [0, 65535], "ant why is time such a": [0, 65535], "why is time such a niggard": [0, 65535], "is time such a niggard of": [0, 65535], "time such a niggard of haire": [0, 65535], "such a niggard of haire being": [0, 65535], "a niggard of haire being as": [0, 65535], "niggard of haire being as it": [0, 65535], "of haire being as it is": [0, 65535], "haire being as it is so": [0, 65535], "being as it is so plentifull": [0, 65535], "as it is so plentifull an": [0, 65535], "it is so plentifull an excrement": [0, 65535], "is so plentifull an excrement s": [0, 65535], "so plentifull an excrement s dro": [0, 65535], "plentifull an excrement s dro because": [0, 65535], "an excrement s dro because it": [0, 65535], "excrement s dro because it is": [0, 65535], "s dro because it is a": [0, 65535], "dro because it is a blessing": [0, 65535], "because it is a blessing that": [0, 65535], "it is a blessing that hee": [0, 65535], "is a blessing that hee bestowes": [0, 65535], "a blessing that hee bestowes on": [0, 65535], "blessing that hee bestowes on beasts": [0, 65535], "that hee bestowes on beasts and": [0, 65535], "hee bestowes on beasts and what": [0, 65535], "bestowes on beasts and what he": [0, 65535], "on beasts and what he hath": [0, 65535], "beasts and what he hath scanted": [0, 65535], "and what he hath scanted them": [0, 65535], "what he hath scanted them in": [0, 65535], "he hath scanted them in haire": [0, 65535], "hath scanted them in haire hee": [0, 65535], "scanted them in haire hee hath": [0, 65535], "them in haire hee hath giuen": [0, 65535], "in haire hee hath giuen them": [0, 65535], "haire hee hath giuen them in": [0, 65535], "hee hath giuen them in wit": [0, 65535], "hath giuen them in wit ant": [0, 65535], "giuen them in wit ant why": [0, 65535], "them in wit ant why but": [0, 65535], "in wit ant why but theres": [0, 65535], "wit ant why but theres manie": [0, 65535], "ant why but theres manie a": [0, 65535], "why but theres manie a man": [0, 65535], "but theres manie a man hath": [0, 65535], "theres manie a man hath more": [0, 65535], "manie a man hath more haire": [0, 65535], "a man hath more haire then": [0, 65535], "man hath more haire then wit": [0, 65535], "hath more haire then wit s": [0, 65535], "more haire then wit s dro": [0, 65535], "haire then wit s dro not": [0, 65535], "then wit s dro not a": [0, 65535], "wit s dro not a man": [0, 65535], "s dro not a man of": [0, 65535], "dro not a man of those": [0, 65535], "not a man of those but": [0, 65535], "a man of those but he": [0, 65535], "man of those but he hath": [0, 65535], "of those but he hath the": [0, 65535], "those but he hath the wit": [0, 65535], "but he hath the wit to": [0, 65535], "he hath the wit to lose": [0, 65535], "hath the wit to lose his": [0, 65535], "the wit to lose his haire": [0, 65535], "wit to lose his haire ant": [0, 65535], "to lose his haire ant why": [0, 65535], "lose his haire ant why thou": [0, 65535], "his haire ant why thou didst": [0, 65535], "haire ant why thou didst conclude": [0, 65535], "ant why thou didst conclude hairy": [0, 65535], "why thou didst conclude hairy men": [0, 65535], "thou didst conclude hairy men plain": [0, 65535], "didst conclude hairy men plain dealers": [0, 65535], "conclude hairy men plain dealers without": [0, 65535], "hairy men plain dealers without wit": [0, 65535], "men plain dealers without wit s": [0, 65535], "plain dealers without wit s dro": [0, 65535], "dealers without wit s dro the": [0, 65535], "without wit s dro the plainer": [0, 65535], "wit s dro the plainer dealer": [0, 65535], "s dro the plainer dealer the": [0, 65535], "dro the plainer dealer the sooner": [0, 65535], "the plainer dealer the sooner lost": [0, 65535], "plainer dealer the sooner lost yet": [0, 65535], "dealer the sooner lost yet he": [0, 65535], "the sooner lost yet he looseth": [0, 65535], "sooner lost yet he looseth it": [0, 65535], "lost yet he looseth it in": [0, 65535], "yet he looseth it in a": [0, 65535], "he looseth it in a kinde": [0, 65535], "looseth it in a kinde of": [0, 65535], "it in a kinde of iollitie": [0, 65535], "in a kinde of iollitie an": [0, 65535], "a kinde of iollitie an for": [0, 65535], "kinde of iollitie an for what": [0, 65535], "of iollitie an for what reason": [0, 65535], "iollitie an for what reason s": [0, 65535], "an for what reason s dro": [0, 65535], "for what reason s dro for": [0, 65535], "what reason s dro for two": [0, 65535], "reason s dro for two and": [0, 65535], "s dro for two and sound": [0, 65535], "dro for two and sound ones": [0, 65535], "for two and sound ones to": [0, 65535], "two and sound ones to an": [0, 65535], "and sound ones to an nay": [0, 65535], "sound ones to an nay not": [0, 65535], "ones to an nay not sound": [0, 65535], "to an nay not sound i": [0, 65535], "an nay not sound i pray": [0, 65535], "nay not sound i pray you": [0, 65535], "not sound i pray you s": [0, 65535], "sound i pray you s dro": [0, 65535], "i pray you s dro sure": [0, 65535], "pray you s dro sure ones": [0, 65535], "you s dro sure ones then": [0, 65535], "s dro sure ones then an": [0, 65535], "dro sure ones then an nay": [0, 65535], "sure ones then an nay not": [0, 65535], "ones then an nay not sure": [0, 65535], "then an nay not sure in": [0, 65535], "an nay not sure in a": [0, 65535], "nay not sure in a thing": [0, 65535], "not sure in a thing falsing": [0, 65535], "sure in a thing falsing s": [0, 65535], "in a thing falsing s dro": [0, 65535], "a thing falsing s dro certaine": [0, 65535], "thing falsing s dro certaine ones": [0, 65535], "falsing s dro certaine ones then": [0, 65535], "s dro certaine ones then an": [0, 65535], "dro certaine ones then an name": [0, 65535], "certaine ones then an name them": [0, 65535], "ones then an name them s": [0, 65535], "then an name them s dro": [0, 65535], "an name them s dro the": [0, 65535], "name them s dro the one": [0, 65535], "them s dro the one to": [0, 65535], "s dro the one to saue": [0, 65535], "dro the one to saue the": [0, 65535], "the one to saue the money": [0, 65535], "one to saue the money that": [0, 65535], "to saue the money that he": [0, 65535], "saue the money that he spends": [0, 65535], "the money that he spends in": [0, 65535], "money that he spends in trying": [0, 65535], "that he spends in trying the": [0, 65535], "he spends in trying the other": [0, 65535], "spends in trying the other that": [0, 65535], "in trying the other that at": [0, 65535], "trying the other that at dinner": [0, 65535], "the other that at dinner they": [0, 65535], "other that at dinner they should": [0, 65535], "that at dinner they should not": [0, 65535], "at dinner they should not drop": [0, 65535], "dinner they should not drop in": [0, 65535], "they should not drop in his": [0, 65535], "should not drop in his porrage": [0, 65535], "not drop in his porrage an": [0, 65535], "drop in his porrage an you": [0, 65535], "in his porrage an you would": [0, 65535], "his porrage an you would all": [0, 65535], "porrage an you would all this": [0, 65535], "an you would all this time": [0, 65535], "you would all this time haue": [0, 65535], "would all this time haue prou'd": [0, 65535], "all this time haue prou'd there": [0, 65535], "this time haue prou'd there is": [0, 65535], "time haue prou'd there is no": [0, 65535], "haue prou'd there is no time": [0, 65535], "prou'd there is no time for": [0, 65535], "there is no time for all": [0, 65535], "is no time for all things": [0, 65535], "no time for all things s": [0, 65535], "for all things s dro marry": [0, 65535], "all things s dro marry and": [0, 65535], "things s dro marry and did": [0, 65535], "s dro marry and did sir": [0, 65535], "dro marry and did sir namely": [0, 65535], "marry and did sir namely in": [0, 65535], "and did sir namely in no": [0, 65535], "did sir namely in no time": [0, 65535], "sir namely in no time to": [0, 65535], "namely in no time to recouer": [0, 65535], "in no time to recouer haire": [0, 65535], "no time to recouer haire lost": [0, 65535], "time to recouer haire lost by": [0, 65535], "to recouer haire lost by nature": [0, 65535], "recouer haire lost by nature an": [0, 65535], "haire lost by nature an but": [0, 65535], "lost by nature an but your": [0, 65535], "by nature an but your reason": [0, 65535], "nature an but your reason was": [0, 65535], "an but your reason was not": [0, 65535], "but your reason was not substantiall": [0, 65535], "your reason was not substantiall why": [0, 65535], "reason was not substantiall why there": [0, 65535], "was not substantiall why there is": [0, 65535], "not substantiall why there is no": [0, 65535], "substantiall why there is no time": [0, 65535], "why there is no time to": [0, 65535], "there is no time to recouer": [0, 65535], "is no time to recouer s": [0, 65535], "no time to recouer s dro": [0, 65535], "time to recouer s dro thus": [0, 65535], "to recouer s dro thus i": [0, 65535], "recouer s dro thus i mend": [0, 65535], "s dro thus i mend it": [0, 65535], "dro thus i mend it time": [0, 65535], "thus i mend it time himselfe": [0, 65535], "i mend it time himselfe is": [0, 65535], "mend it time himselfe is bald": [0, 65535], "it time himselfe is bald and": [0, 65535], "time himselfe is bald and therefore": [0, 65535], "himselfe is bald and therefore to": [0, 65535], "is bald and therefore to the": [0, 65535], "bald and therefore to the worlds": [0, 65535], "and therefore to the worlds end": [0, 65535], "therefore to the worlds end will": [0, 65535], "to the worlds end will haue": [0, 65535], "the worlds end will haue bald": [0, 65535], "worlds end will haue bald followers": [0, 65535], "end will haue bald followers an": [0, 65535], "will haue bald followers an i": [0, 65535], "haue bald followers an i knew": [0, 65535], "bald followers an i knew 'twould": [0, 65535], "followers an i knew 'twould be": [0, 65535], "an i knew 'twould be a": [0, 65535], "i knew 'twould be a bald": [0, 65535], "knew 'twould be a bald conclusion": [0, 65535], "'twould be a bald conclusion but": [0, 65535], "be a bald conclusion but soft": [0, 65535], "a bald conclusion but soft who": [0, 65535], "bald conclusion but soft who wafts": [0, 65535], "conclusion but soft who wafts vs": [0, 65535], "but soft who wafts vs yonder": [0, 65535], "soft who wafts vs yonder enter": [0, 65535], "who wafts vs yonder enter adriana": [0, 65535], "wafts vs yonder enter adriana and": [0, 65535], "vs yonder enter adriana and luciana": [0, 65535], "yonder enter adriana and luciana adri": [0, 65535], "enter adriana and luciana adri i": [0, 65535], "adriana and luciana adri i i": [0, 65535], "and luciana adri i i antipholus": [0, 65535], "luciana adri i i antipholus looke": [0, 65535], "adri i i antipholus looke strange": [0, 65535], "i i antipholus looke strange and": [0, 65535], "i antipholus looke strange and frowne": [0, 65535], "antipholus looke strange and frowne some": [0, 65535], "looke strange and frowne some other": [0, 65535], "strange and frowne some other mistresse": [0, 65535], "and frowne some other mistresse hath": [0, 65535], "frowne some other mistresse hath thy": [0, 65535], "some other mistresse hath thy sweet": [0, 65535], "other mistresse hath thy sweet aspects": [0, 65535], "mistresse hath thy sweet aspects i": [0, 65535], "hath thy sweet aspects i am": [0, 65535], "thy sweet aspects i am not": [0, 65535], "sweet aspects i am not adriana": [0, 65535], "aspects i am not adriana nor": [0, 65535], "i am not adriana nor thy": [0, 65535], "am not adriana nor thy wife": [0, 65535], "not adriana nor thy wife the": [0, 65535], "adriana nor thy wife the time": [0, 65535], "nor thy wife the time was": [0, 65535], "thy wife the time was once": [0, 65535], "wife the time was once when": [0, 65535], "the time was once when thou": [0, 65535], "time was once when thou vn": [0, 65535], "was once when thou vn vrg'd": [0, 65535], "once when thou vn vrg'd wouldst": [0, 65535], "when thou vn vrg'd wouldst vow": [0, 65535], "thou vn vrg'd wouldst vow that": [0, 65535], "vn vrg'd wouldst vow that neuer": [0, 65535], "vrg'd wouldst vow that neuer words": [0, 65535], "wouldst vow that neuer words were": [0, 65535], "vow that neuer words were musicke": [0, 65535], "that neuer words were musicke to": [0, 65535], "neuer words were musicke to thine": [0, 65535], "words were musicke to thine eare": [0, 65535], "were musicke to thine eare that": [0, 65535], "musicke to thine eare that neuer": [0, 65535], "to thine eare that neuer obiect": [0, 65535], "thine eare that neuer obiect pleasing": [0, 65535], "eare that neuer obiect pleasing in": [0, 65535], "that neuer obiect pleasing in thine": [0, 65535], "neuer obiect pleasing in thine eye": [0, 65535], "obiect pleasing in thine eye that": [0, 65535], "pleasing in thine eye that neuer": [0, 65535], "in thine eye that neuer touch": [0, 65535], "thine eye that neuer touch well": [0, 65535], "eye that neuer touch well welcome": [0, 65535], "that neuer touch well welcome to": [0, 65535], "neuer touch well welcome to thy": [0, 65535], "touch well welcome to thy hand": [0, 65535], "well welcome to thy hand that": [0, 65535], "welcome to thy hand that neuer": [0, 65535], "to thy hand that neuer meat": [0, 65535], "thy hand that neuer meat sweet": [0, 65535], "hand that neuer meat sweet sauour'd": [0, 65535], "that neuer meat sweet sauour'd in": [0, 65535], "neuer meat sweet sauour'd in thy": [0, 65535], "meat sweet sauour'd in thy taste": [0, 65535], "sweet sauour'd in thy taste vnlesse": [0, 65535], "sauour'd in thy taste vnlesse i": [0, 65535], "in thy taste vnlesse i spake": [0, 65535], "thy taste vnlesse i spake or": [0, 65535], "taste vnlesse i spake or look'd": [0, 65535], "vnlesse i spake or look'd or": [0, 65535], "i spake or look'd or touch'd": [0, 65535], "spake or look'd or touch'd or": [0, 65535], "or look'd or touch'd or caru'd": [0, 65535], "look'd or touch'd or caru'd to": [0, 65535], "or touch'd or caru'd to thee": [0, 65535], "touch'd or caru'd to thee how": [0, 65535], "or caru'd to thee how comes": [0, 65535], "caru'd to thee how comes it": [0, 65535], "to thee how comes it now": [0, 65535], "thee how comes it now my": [0, 65535], "how comes it now my husband": [0, 65535], "comes it now my husband oh": [0, 65535], "it now my husband oh how": [0, 65535], "now my husband oh how comes": [0, 65535], "my husband oh how comes it": [0, 65535], "husband oh how comes it that": [0, 65535], "oh how comes it that thou": [0, 65535], "how comes it that thou art": [0, 65535], "comes it that thou art then": [0, 65535], "it that thou art then estranged": [0, 65535], "that thou art then estranged from": [0, 65535], "thou art then estranged from thy": [0, 65535], "art then estranged from thy selfe": [0, 65535], "then estranged from thy selfe thy": [0, 65535], "estranged from thy selfe thy selfe": [0, 65535], "from thy selfe thy selfe i": [0, 65535], "thy selfe thy selfe i call": [0, 65535], "selfe thy selfe i call it": [0, 65535], "thy selfe i call it being": [0, 65535], "selfe i call it being strange": [0, 65535], "i call it being strange to": [0, 65535], "call it being strange to me": [0, 65535], "it being strange to me that": [0, 65535], "being strange to me that vndiuidable": [0, 65535], "strange to me that vndiuidable incorporate": [0, 65535], "to me that vndiuidable incorporate am": [0, 65535], "me that vndiuidable incorporate am better": [0, 65535], "that vndiuidable incorporate am better then": [0, 65535], "vndiuidable incorporate am better then thy": [0, 65535], "incorporate am better then thy deere": [0, 65535], "am better then thy deere selfes": [0, 65535], "better then thy deere selfes better": [0, 65535], "then thy deere selfes better part": [0, 65535], "thy deere selfes better part ah": [0, 65535], "deere selfes better part ah doe": [0, 65535], "selfes better part ah doe not": [0, 65535], "better part ah doe not teare": [0, 65535], "part ah doe not teare away": [0, 65535], "ah doe not teare away thy": [0, 65535], "doe not teare away thy selfe": [0, 65535], "not teare away thy selfe from": [0, 65535], "teare away thy selfe from me": [0, 65535], "away thy selfe from me for": [0, 65535], "thy selfe from me for know": [0, 65535], "selfe from me for know my": [0, 65535], "from me for know my loue": [0, 65535], "me for know my loue as": [0, 65535], "for know my loue as easie": [0, 65535], "know my loue as easie maist": [0, 65535], "my loue as easie maist thou": [0, 65535], "loue as easie maist thou fall": [0, 65535], "as easie maist thou fall a": [0, 65535], "easie maist thou fall a drop": [0, 65535], "maist thou fall a drop of": [0, 65535], "thou fall a drop of water": [0, 65535], "fall a drop of water in": [0, 65535], "a drop of water in the": [0, 65535], "drop of water in the breaking": [0, 65535], "of water in the breaking gulfe": [0, 65535], "water in the breaking gulfe and": [0, 65535], "in the breaking gulfe and take": [0, 65535], "the breaking gulfe and take vnmingled": [0, 65535], "breaking gulfe and take vnmingled thence": [0, 65535], "gulfe and take vnmingled thence that": [0, 65535], "and take vnmingled thence that drop": [0, 65535], "take vnmingled thence that drop againe": [0, 65535], "vnmingled thence that drop againe without": [0, 65535], "thence that drop againe without addition": [0, 65535], "that drop againe without addition or": [0, 65535], "drop againe without addition or diminishing": [0, 65535], "againe without addition or diminishing as": [0, 65535], "without addition or diminishing as take": [0, 65535], "addition or diminishing as take from": [0, 65535], "or diminishing as take from me": [0, 65535], "diminishing as take from me thy": [0, 65535], "as take from me thy selfe": [0, 65535], "take from me thy selfe and": [0, 65535], "from me thy selfe and not": [0, 65535], "me thy selfe and not me": [0, 65535], "thy selfe and not me too": [0, 65535], "selfe and not me too how": [0, 65535], "and not me too how deerely": [0, 65535], "not me too how deerely would": [0, 65535], "me too how deerely would it": [0, 65535], "too how deerely would it touch": [0, 65535], "how deerely would it touch thee": [0, 65535], "deerely would it touch thee to": [0, 65535], "would it touch thee to the": [0, 65535], "it touch thee to the quicke": [0, 65535], "touch thee to the quicke shouldst": [0, 65535], "thee to the quicke shouldst thou": [0, 65535], "to the quicke shouldst thou but": [0, 65535], "the quicke shouldst thou but heare": [0, 65535], "quicke shouldst thou but heare i": [0, 65535], "shouldst thou but heare i were": [0, 65535], "thou but heare i were licencious": [0, 65535], "but heare i were licencious and": [0, 65535], "heare i were licencious and that": [0, 65535], "i were licencious and that this": [0, 65535], "were licencious and that this body": [0, 65535], "licencious and that this body consecrate": [0, 65535], "and that this body consecrate to": [0, 65535], "that this body consecrate to thee": [0, 65535], "this body consecrate to thee by": [0, 65535], "body consecrate to thee by ruffian": [0, 65535], "consecrate to thee by ruffian lust": [0, 65535], "to thee by ruffian lust should": [0, 65535], "thee by ruffian lust should be": [0, 65535], "by ruffian lust should be contaminate": [0, 65535], "ruffian lust should be contaminate wouldst": [0, 65535], "lust should be contaminate wouldst thou": [0, 65535], "should be contaminate wouldst thou not": [0, 65535], "be contaminate wouldst thou not spit": [0, 65535], "contaminate wouldst thou not spit at": [0, 65535], "wouldst thou not spit at me": [0, 65535], "thou not spit at me and": [0, 65535], "not spit at me and spurne": [0, 65535], "spit at me and spurne at": [0, 65535], "at me and spurne at me": [0, 65535], "me and spurne at me and": [0, 65535], "and spurne at me and hurle": [0, 65535], "spurne at me and hurle the": [0, 65535], "at me and hurle the name": [0, 65535], "me and hurle the name of": [0, 65535], "and hurle the name of husband": [0, 65535], "hurle the name of husband in": [0, 65535], "the name of husband in my": [0, 65535], "name of husband in my face": [0, 65535], "of husband in my face and": [0, 65535], "husband in my face and teare": [0, 65535], "in my face and teare the": [0, 65535], "my face and teare the stain'd": [0, 65535], "face and teare the stain'd skin": [0, 65535], "and teare the stain'd skin of": [0, 65535], "teare the stain'd skin of my": [0, 65535], "the stain'd skin of my harlot": [0, 65535], "stain'd skin of my harlot brow": [0, 65535], "skin of my harlot brow and": [0, 65535], "of my harlot brow and from": [0, 65535], "my harlot brow and from my": [0, 65535], "harlot brow and from my false": [0, 65535], "brow and from my false hand": [0, 65535], "and from my false hand cut": [0, 65535], "from my false hand cut the": [0, 65535], "my false hand cut the wedding": [0, 65535], "false hand cut the wedding ring": [0, 65535], "hand cut the wedding ring and": [0, 65535], "cut the wedding ring and breake": [0, 65535], "the wedding ring and breake it": [0, 65535], "wedding ring and breake it with": [0, 65535], "ring and breake it with a": [0, 65535], "and breake it with a deepe": [0, 65535], "breake it with a deepe diuorcing": [0, 65535], "it with a deepe diuorcing vow": [0, 65535], "with a deepe diuorcing vow i": [0, 65535], "a deepe diuorcing vow i know": [0, 65535], "deepe diuorcing vow i know thou": [0, 65535], "diuorcing vow i know thou canst": [0, 65535], "vow i know thou canst and": [0, 65535], "i know thou canst and therefore": [0, 65535], "know thou canst and therefore see": [0, 65535], "thou canst and therefore see thou": [0, 65535], "canst and therefore see thou doe": [0, 65535], "and therefore see thou doe it": [0, 65535], "therefore see thou doe it i": [0, 65535], "see thou doe it i am": [0, 65535], "thou doe it i am possest": [0, 65535], "doe it i am possest with": [0, 65535], "it i am possest with an": [0, 65535], "i am possest with an adulterate": [0, 65535], "am possest with an adulterate blot": [0, 65535], "possest with an adulterate blot my": [0, 65535], "with an adulterate blot my bloud": [0, 65535], "an adulterate blot my bloud is": [0, 65535], "adulterate blot my bloud is mingled": [0, 65535], "blot my bloud is mingled with": [0, 65535], "my bloud is mingled with the": [0, 65535], "bloud is mingled with the crime": [0, 65535], "is mingled with the crime of": [0, 65535], "mingled with the crime of lust": [0, 65535], "with the crime of lust for": [0, 65535], "the crime of lust for if": [0, 65535], "crime of lust for if we": [0, 65535], "of lust for if we two": [0, 65535], "lust for if we two be": [0, 65535], "for if we two be one": [0, 65535], "if we two be one and": [0, 65535], "we two be one and thou": [0, 65535], "two be one and thou play": [0, 65535], "be one and thou play false": [0, 65535], "one and thou play false i": [0, 65535], "and thou play false i doe": [0, 65535], "thou play false i doe digest": [0, 65535], "play false i doe digest the": [0, 65535], "false i doe digest the poison": [0, 65535], "i doe digest the poison of": [0, 65535], "doe digest the poison of thy": [0, 65535], "digest the poison of thy flesh": [0, 65535], "the poison of thy flesh being": [0, 65535], "poison of thy flesh being strumpeted": [0, 65535], "of thy flesh being strumpeted by": [0, 65535], "thy flesh being strumpeted by thy": [0, 65535], "flesh being strumpeted by thy contagion": [0, 65535], "being strumpeted by thy contagion keepe": [0, 65535], "strumpeted by thy contagion keepe then": [0, 65535], "by thy contagion keepe then faire": [0, 65535], "thy contagion keepe then faire league": [0, 65535], "contagion keepe then faire league and": [0, 65535], "keepe then faire league and truce": [0, 65535], "then faire league and truce with": [0, 65535], "faire league and truce with thy": [0, 65535], "league and truce with thy true": [0, 65535], "and truce with thy true bed": [0, 65535], "truce with thy true bed i": [0, 65535], "with thy true bed i liue": [0, 65535], "thy true bed i liue distain'd": [0, 65535], "true bed i liue distain'd thou": [0, 65535], "bed i liue distain'd thou vndishonoured": [0, 65535], "i liue distain'd thou vndishonoured antip": [0, 65535], "liue distain'd thou vndishonoured antip plead": [0, 65535], "distain'd thou vndishonoured antip plead you": [0, 65535], "thou vndishonoured antip plead you to": [0, 65535], "vndishonoured antip plead you to me": [0, 65535], "antip plead you to me faire": [0, 65535], "plead you to me faire dame": [0, 65535], "you to me faire dame i": [0, 65535], "to me faire dame i know": [0, 65535], "me faire dame i know you": [0, 65535], "faire dame i know you not": [0, 65535], "dame i know you not in": [0, 65535], "i know you not in ephesus": [0, 65535], "know you not in ephesus i": [0, 65535], "you not in ephesus i am": [0, 65535], "not in ephesus i am but": [0, 65535], "in ephesus i am but two": [0, 65535], "ephesus i am but two houres": [0, 65535], "i am but two houres old": [0, 65535], "am but two houres old as": [0, 65535], "but two houres old as strange": [0, 65535], "two houres old as strange vnto": [0, 65535], "houres old as strange vnto your": [0, 65535], "old as strange vnto your towne": [0, 65535], "as strange vnto your towne as": [0, 65535], "strange vnto your towne as to": [0, 65535], "vnto your towne as to your": [0, 65535], "your towne as to your talke": [0, 65535], "towne as to your talke who": [0, 65535], "as to your talke who euery": [0, 65535], "to your talke who euery word": [0, 65535], "your talke who euery word by": [0, 65535], "talke who euery word by all": [0, 65535], "who euery word by all my": [0, 65535], "euery word by all my wit": [0, 65535], "word by all my wit being": [0, 65535], "by all my wit being scan'd": [0, 65535], "all my wit being scan'd wants": [0, 65535], "my wit being scan'd wants wit": [0, 65535], "wit being scan'd wants wit in": [0, 65535], "being scan'd wants wit in all": [0, 65535], "scan'd wants wit in all one": [0, 65535], "wants wit in all one word": [0, 65535], "wit in all one word to": [0, 65535], "in all one word to vnderstand": [0, 65535], "all one word to vnderstand luci": [0, 65535], "one word to vnderstand luci fie": [0, 65535], "word to vnderstand luci fie brother": [0, 65535], "to vnderstand luci fie brother how": [0, 65535], "vnderstand luci fie brother how the": [0, 65535], "luci fie brother how the world": [0, 65535], "fie brother how the world is": [0, 65535], "brother how the world is chang'd": [0, 65535], "how the world is chang'd with": [0, 65535], "the world is chang'd with you": [0, 65535], "world is chang'd with you when": [0, 65535], "is chang'd with you when were": [0, 65535], "chang'd with you when were you": [0, 65535], "with you when were you wont": [0, 65535], "you when were you wont to": [0, 65535], "when were you wont to vse": [0, 65535], "were you wont to vse my": [0, 65535], "you wont to vse my sister": [0, 65535], "wont to vse my sister thus": [0, 65535], "to vse my sister thus she": [0, 65535], "vse my sister thus she sent": [0, 65535], "my sister thus she sent for": [0, 65535], "sister thus she sent for you": [0, 65535], "thus she sent for you by": [0, 65535], "she sent for you by dromio": [0, 65535], "sent for you by dromio home": [0, 65535], "for you by dromio home to": [0, 65535], "you by dromio home to dinner": [0, 65535], "by dromio home to dinner ant": [0, 65535], "dromio home to dinner ant by": [0, 65535], "home to dinner ant by dromio": [0, 65535], "to dinner ant by dromio drom": [0, 65535], "dinner ant by dromio drom by": [0, 65535], "ant by dromio drom by me": [0, 65535], "by dromio drom by me adr": [0, 65535], "dromio drom by me adr by": [0, 65535], "drom by me adr by thee": [0, 65535], "by me adr by thee and": [0, 65535], "me adr by thee and this": [0, 65535], "adr by thee and this thou": [0, 65535], "by thee and this thou didst": [0, 65535], "thee and this thou didst returne": [0, 65535], "and this thou didst returne from": [0, 65535], "this thou didst returne from him": [0, 65535], "thou didst returne from him that": [0, 65535], "didst returne from him that he": [0, 65535], "returne from him that he did": [0, 65535], "from him that he did buffet": [0, 65535], "him that he did buffet thee": [0, 65535], "that he did buffet thee and": [0, 65535], "he did buffet thee and in": [0, 65535], "did buffet thee and in his": [0, 65535], "buffet thee and in his blowes": [0, 65535], "thee and in his blowes denied": [0, 65535], "and in his blowes denied my": [0, 65535], "in his blowes denied my house": [0, 65535], "his blowes denied my house for": [0, 65535], "blowes denied my house for his": [0, 65535], "denied my house for his me": [0, 65535], "my house for his me for": [0, 65535], "house for his me for his": [0, 65535], "for his me for his wife": [0, 65535], "his me for his wife ant": [0, 65535], "me for his wife ant did": [0, 65535], "for his wife ant did you": [0, 65535], "his wife ant did you conuerse": [0, 65535], "wife ant did you conuerse sir": [0, 65535], "ant did you conuerse sir with": [0, 65535], "did you conuerse sir with this": [0, 65535], "you conuerse sir with this gentlewoman": [0, 65535], "conuerse sir with this gentlewoman what": [0, 65535], "sir with this gentlewoman what is": [0, 65535], "with this gentlewoman what is the": [0, 65535], "this gentlewoman what is the course": [0, 65535], "gentlewoman what is the course and": [0, 65535], "what is the course and drift": [0, 65535], "is the course and drift of": [0, 65535], "the course and drift of your": [0, 65535], "course and drift of your compact": [0, 65535], "and drift of your compact s": [0, 65535], "drift of your compact s dro": [0, 65535], "of your compact s dro i": [0, 65535], "your compact s dro i sir": [0, 65535], "compact s dro i sir i": [0, 65535], "s dro i sir i neuer": [0, 65535], "dro i sir i neuer saw": [0, 65535], "i sir i neuer saw her": [0, 65535], "sir i neuer saw her till": [0, 65535], "i neuer saw her till this": [0, 65535], "neuer saw her till this time": [0, 65535], "saw her till this time ant": [0, 65535], "her till this time ant villaine": [0, 65535], "till this time ant villaine thou": [0, 65535], "this time ant villaine thou liest": [0, 65535], "time ant villaine thou liest for": [0, 65535], "ant villaine thou liest for euen": [0, 65535], "villaine thou liest for euen her": [0, 65535], "thou liest for euen her verie": [0, 65535], "liest for euen her verie words": [0, 65535], "for euen her verie words didst": [0, 65535], "euen her verie words didst thou": [0, 65535], "her verie words didst thou deliuer": [0, 65535], "verie words didst thou deliuer to": [0, 65535], "words didst thou deliuer to me": [0, 65535], "didst thou deliuer to me on": [0, 65535], "thou deliuer to me on the": [0, 65535], "deliuer to me on the mart": [0, 65535], "to me on the mart s": [0, 65535], "me on the mart s dro": [0, 65535], "on the mart s dro i": [0, 65535], "the mart s dro i neuer": [0, 65535], "mart s dro i neuer spake": [0, 65535], "s dro i neuer spake with": [0, 65535], "dro i neuer spake with her": [0, 65535], "i neuer spake with her in": [0, 65535], "neuer spake with her in all": [0, 65535], "spake with her in all my": [0, 65535], "with her in all my life": [0, 65535], "her in all my life ant": [0, 65535], "in all my life ant how": [0, 65535], "all my life ant how can": [0, 65535], "my life ant how can she": [0, 65535], "life ant how can she thus": [0, 65535], "ant how can she thus then": [0, 65535], "how can she thus then call": [0, 65535], "can she thus then call vs": [0, 65535], "she thus then call vs by": [0, 65535], "thus then call vs by our": [0, 65535], "then call vs by our names": [0, 65535], "call vs by our names vnlesse": [0, 65535], "vs by our names vnlesse it": [0, 65535], "by our names vnlesse it be": [0, 65535], "our names vnlesse it be by": [0, 65535], "names vnlesse it be by inspiration": [0, 65535], "vnlesse it be by inspiration adri": [0, 65535], "it be by inspiration adri how": [0, 65535], "be by inspiration adri how ill": [0, 65535], "by inspiration adri how ill agrees": [0, 65535], "inspiration adri how ill agrees it": [0, 65535], "adri how ill agrees it with": [0, 65535], "how ill agrees it with your": [0, 65535], "ill agrees it with your grauitie": [0, 65535], "agrees it with your grauitie to": [0, 65535], "it with your grauitie to counterfeit": [0, 65535], "with your grauitie to counterfeit thus": [0, 65535], "your grauitie to counterfeit thus grosely": [0, 65535], "grauitie to counterfeit thus grosely with": [0, 65535], "to counterfeit thus grosely with your": [0, 65535], "counterfeit thus grosely with your slaue": [0, 65535], "thus grosely with your slaue abetting": [0, 65535], "grosely with your slaue abetting him": [0, 65535], "with your slaue abetting him to": [0, 65535], "your slaue abetting him to thwart": [0, 65535], "slaue abetting him to thwart me": [0, 65535], "abetting him to thwart me in": [0, 65535], "him to thwart me in my": [0, 65535], "to thwart me in my moode": [0, 65535], "thwart me in my moode be": [0, 65535], "me in my moode be it": [0, 65535], "in my moode be it my": [0, 65535], "my moode be it my wrong": [0, 65535], "moode be it my wrong you": [0, 65535], "be it my wrong you are": [0, 65535], "it my wrong you are from": [0, 65535], "my wrong you are from me": [0, 65535], "wrong you are from me exempt": [0, 65535], "you are from me exempt but": [0, 65535], "are from me exempt but wrong": [0, 65535], "from me exempt but wrong not": [0, 65535], "me exempt but wrong not that": [0, 65535], "exempt but wrong not that wrong": [0, 65535], "but wrong not that wrong with": [0, 65535], "wrong not that wrong with a": [0, 65535], "not that wrong with a more": [0, 65535], "that wrong with a more contempt": [0, 65535], "wrong with a more contempt come": [0, 65535], "with a more contempt come i": [0, 65535], "a more contempt come i will": [0, 65535], "more contempt come i will fasten": [0, 65535], "contempt come i will fasten on": [0, 65535], "come i will fasten on this": [0, 65535], "i will fasten on this sleeue": [0, 65535], "will fasten on this sleeue of": [0, 65535], "fasten on this sleeue of thine": [0, 65535], "on this sleeue of thine thou": [0, 65535], "this sleeue of thine thou art": [0, 65535], "sleeue of thine thou art an": [0, 65535], "of thine thou art an elme": [0, 65535], "thine thou art an elme my": [0, 65535], "thou art an elme my husband": [0, 65535], "art an elme my husband i": [0, 65535], "an elme my husband i a": [0, 65535], "elme my husband i a vine": [0, 65535], "my husband i a vine whose": [0, 65535], "husband i a vine whose weaknesse": [0, 65535], "i a vine whose weaknesse married": [0, 65535], "a vine whose weaknesse married to": [0, 65535], "vine whose weaknesse married to thy": [0, 65535], "whose weaknesse married to thy stranger": [0, 65535], "weaknesse married to thy stranger state": [0, 65535], "married to thy stranger state makes": [0, 65535], "to thy stranger state makes me": [0, 65535], "thy stranger state makes me with": [0, 65535], "stranger state makes me with thy": [0, 65535], "state makes me with thy strength": [0, 65535], "makes me with thy strength to": [0, 65535], "me with thy strength to communicate": [0, 65535], "with thy strength to communicate if": [0, 65535], "thy strength to communicate if ought": [0, 65535], "strength to communicate if ought possesse": [0, 65535], "to communicate if ought possesse thee": [0, 65535], "communicate if ought possesse thee from": [0, 65535], "if ought possesse thee from me": [0, 65535], "ought possesse thee from me it": [0, 65535], "possesse thee from me it is": [0, 65535], "thee from me it is drosse": [0, 65535], "from me it is drosse vsurping": [0, 65535], "me it is drosse vsurping iuie": [0, 65535], "it is drosse vsurping iuie brier": [0, 65535], "is drosse vsurping iuie brier or": [0, 65535], "drosse vsurping iuie brier or idle": [0, 65535], "vsurping iuie brier or idle mosse": [0, 65535], "iuie brier or idle mosse who": [0, 65535], "brier or idle mosse who all": [0, 65535], "or idle mosse who all for": [0, 65535], "idle mosse who all for want": [0, 65535], "mosse who all for want of": [0, 65535], "who all for want of pruning": [0, 65535], "all for want of pruning with": [0, 65535], "for want of pruning with intrusion": [0, 65535], "want of pruning with intrusion infect": [0, 65535], "of pruning with intrusion infect thy": [0, 65535], "pruning with intrusion infect thy sap": [0, 65535], "with intrusion infect thy sap and": [0, 65535], "intrusion infect thy sap and liue": [0, 65535], "infect thy sap and liue on": [0, 65535], "thy sap and liue on thy": [0, 65535], "sap and liue on thy confusion": [0, 65535], "and liue on thy confusion ant": [0, 65535], "liue on thy confusion ant to": [0, 65535], "on thy confusion ant to mee": [0, 65535], "thy confusion ant to mee shee": [0, 65535], "confusion ant to mee shee speakes": [0, 65535], "ant to mee shee speakes shee": [0, 65535], "to mee shee speakes shee moues": [0, 65535], "mee shee speakes shee moues mee": [0, 65535], "shee speakes shee moues mee for": [0, 65535], "speakes shee moues mee for her": [0, 65535], "shee moues mee for her theame": [0, 65535], "moues mee for her theame what": [0, 65535], "mee for her theame what was": [0, 65535], "for her theame what was i": [0, 65535], "her theame what was i married": [0, 65535], "theame what was i married to": [0, 65535], "what was i married to her": [0, 65535], "was i married to her in": [0, 65535], "i married to her in my": [0, 65535], "married to her in my dreame": [0, 65535], "to her in my dreame or": [0, 65535], "her in my dreame or sleepe": [0, 65535], "in my dreame or sleepe i": [0, 65535], "my dreame or sleepe i now": [0, 65535], "dreame or sleepe i now and": [0, 65535], "or sleepe i now and thinke": [0, 65535], "sleepe i now and thinke i": [0, 65535], "i now and thinke i heare": [0, 65535], "now and thinke i heare all": [0, 65535], "and thinke i heare all this": [0, 65535], "thinke i heare all this what": [0, 65535], "i heare all this what error": [0, 65535], "heare all this what error driues": [0, 65535], "all this what error driues our": [0, 65535], "this what error driues our eies": [0, 65535], "what error driues our eies and": [0, 65535], "error driues our eies and eares": [0, 65535], "driues our eies and eares amisse": [0, 65535], "our eies and eares amisse vntill": [0, 65535], "eies and eares amisse vntill i": [0, 65535], "and eares amisse vntill i know": [0, 65535], "eares amisse vntill i know this": [0, 65535], "amisse vntill i know this sure": [0, 65535], "vntill i know this sure vncertaintie": [0, 65535], "i know this sure vncertaintie ile": [0, 65535], "know this sure vncertaintie ile entertaine": [0, 65535], "this sure vncertaintie ile entertaine the": [0, 65535], "sure vncertaintie ile entertaine the free'd": [0, 65535], "vncertaintie ile entertaine the free'd fallacie": [0, 65535], "ile entertaine the free'd fallacie luc": [0, 65535], "entertaine the free'd fallacie luc dromio": [0, 65535], "the free'd fallacie luc dromio goe": [0, 65535], "free'd fallacie luc dromio goe bid": [0, 65535], "fallacie luc dromio goe bid the": [0, 65535], "luc dromio goe bid the seruants": [0, 65535], "dromio goe bid the seruants spred": [0, 65535], "goe bid the seruants spred for": [0, 65535], "bid the seruants spred for dinner": [0, 65535], "the seruants spred for dinner s": [0, 65535], "seruants spred for dinner s dro": [0, 65535], "spred for dinner s dro oh": [0, 65535], "for dinner s dro oh for": [0, 65535], "dinner s dro oh for my": [0, 65535], "s dro oh for my beads": [0, 65535], "dro oh for my beads i": [0, 65535], "oh for my beads i crosse": [0, 65535], "for my beads i crosse me": [0, 65535], "my beads i crosse me for": [0, 65535], "beads i crosse me for a": [0, 65535], "i crosse me for a sinner": [0, 65535], "crosse me for a sinner this": [0, 65535], "me for a sinner this is": [0, 65535], "for a sinner this is the": [0, 65535], "a sinner this is the fairie": [0, 65535], "sinner this is the fairie land": [0, 65535], "this is the fairie land oh": [0, 65535], "is the fairie land oh spight": [0, 65535], "the fairie land oh spight of": [0, 65535], "fairie land oh spight of spights": [0, 65535], "land oh spight of spights we": [0, 65535], "oh spight of spights we talke": [0, 65535], "spight of spights we talke with": [0, 65535], "of spights we talke with goblins": [0, 65535], "spights we talke with goblins owles": [0, 65535], "we talke with goblins owles and": [0, 65535], "talke with goblins owles and sprights": [0, 65535], "with goblins owles and sprights if": [0, 65535], "goblins owles and sprights if we": [0, 65535], "owles and sprights if we obay": [0, 65535], "and sprights if we obay them": [0, 65535], "sprights if we obay them not": [0, 65535], "if we obay them not this": [0, 65535], "we obay them not this will": [0, 65535], "obay them not this will insue": [0, 65535], "them not this will insue they'll": [0, 65535], "not this will insue they'll sucke": [0, 65535], "this will insue they'll sucke our": [0, 65535], "will insue they'll sucke our breath": [0, 65535], "insue they'll sucke our breath or": [0, 65535], "they'll sucke our breath or pinch": [0, 65535], "sucke our breath or pinch vs": [0, 65535], "our breath or pinch vs blacke": [0, 65535], "breath or pinch vs blacke and": [0, 65535], "or pinch vs blacke and blew": [0, 65535], "pinch vs blacke and blew luc": [0, 65535], "vs blacke and blew luc why": [0, 65535], "blacke and blew luc why prat'st": [0, 65535], "and blew luc why prat'st thou": [0, 65535], "blew luc why prat'st thou to": [0, 65535], "luc why prat'st thou to thy": [0, 65535], "why prat'st thou to thy selfe": [0, 65535], "prat'st thou to thy selfe and": [0, 65535], "thou to thy selfe and answer'st": [0, 65535], "to thy selfe and answer'st not": [0, 65535], "thy selfe and answer'st not dromio": [0, 65535], "selfe and answer'st not dromio thou": [0, 65535], "and answer'st not dromio thou dromio": [0, 65535], "answer'st not dromio thou dromio thou": [0, 65535], "not dromio thou dromio thou snaile": [0, 65535], "dromio thou dromio thou snaile thou": [0, 65535], "thou dromio thou snaile thou slug": [0, 65535], "dromio thou snaile thou slug thou": [0, 65535], "thou snaile thou slug thou sot": [0, 65535], "snaile thou slug thou sot s": [0, 65535], "thou slug thou sot s dro": [0, 65535], "slug thou sot s dro i": [0, 65535], "thou sot s dro i am": [0, 65535], "sot s dro i am transformed": [0, 65535], "s dro i am transformed master": [0, 65535], "dro i am transformed master am": [0, 65535], "i am transformed master am i": [0, 65535], "am transformed master am i not": [0, 65535], "transformed master am i not ant": [0, 65535], "master am i not ant i": [0, 65535], "am i not ant i thinke": [0, 65535], "i not ant i thinke thou": [0, 65535], "not ant i thinke thou art": [0, 65535], "ant i thinke thou art in": [0, 65535], "i thinke thou art in minde": [0, 65535], "thinke thou art in minde and": [0, 65535], "thou art in minde and so": [0, 65535], "art in minde and so am": [0, 65535], "in minde and so am i": [0, 65535], "minde and so am i s": [0, 65535], "and so am i s dro": [0, 65535], "so am i s dro nay": [0, 65535], "am i s dro nay master": [0, 65535], "i s dro nay master both": [0, 65535], "s dro nay master both in": [0, 65535], "dro nay master both in minde": [0, 65535], "nay master both in minde and": [0, 65535], "master both in minde and in": [0, 65535], "both in minde and in my": [0, 65535], "in minde and in my shape": [0, 65535], "minde and in my shape ant": [0, 65535], "and in my shape ant thou": [0, 65535], "in my shape ant thou hast": [0, 65535], "my shape ant thou hast thine": [0, 65535], "shape ant thou hast thine owne": [0, 65535], "ant thou hast thine owne forme": [0, 65535], "thou hast thine owne forme s": [0, 65535], "hast thine owne forme s dro": [0, 65535], "thine owne forme s dro no": [0, 65535], "owne forme s dro no i": [0, 65535], "forme s dro no i am": [0, 65535], "s dro no i am an": [0, 65535], "dro no i am an ape": [0, 65535], "no i am an ape luc": [0, 65535], "i am an ape luc if": [0, 65535], "am an ape luc if thou": [0, 65535], "an ape luc if thou art": [0, 65535], "ape luc if thou art chang'd": [0, 65535], "luc if thou art chang'd to": [0, 65535], "if thou art chang'd to ought": [0, 65535], "thou art chang'd to ought 'tis": [0, 65535], "art chang'd to ought 'tis to": [0, 65535], "chang'd to ought 'tis to an": [0, 65535], "to ought 'tis to an asse": [0, 65535], "ought 'tis to an asse s": [0, 65535], "'tis to an asse s dro": [0, 65535], "to an asse s dro 'tis": [0, 65535], "an asse s dro 'tis true": [0, 65535], "asse s dro 'tis true she": [0, 65535], "s dro 'tis true she rides": [0, 65535], "dro 'tis true she rides me": [0, 65535], "'tis true she rides me and": [0, 65535], "true she rides me and i": [0, 65535], "she rides me and i long": [0, 65535], "rides me and i long for": [0, 65535], "me and i long for grasse": [0, 65535], "and i long for grasse 'tis": [0, 65535], "i long for grasse 'tis so": [0, 65535], "long for grasse 'tis so i": [0, 65535], "for grasse 'tis so i am": [0, 65535], "grasse 'tis so i am an": [0, 65535], "'tis so i am an asse": [0, 65535], "so i am an asse else": [0, 65535], "i am an asse else it": [0, 65535], "am an asse else it could": [0, 65535], "an asse else it could neuer": [0, 65535], "asse else it could neuer be": [0, 65535], "else it could neuer be but": [0, 65535], "it could neuer be but i": [0, 65535], "could neuer be but i should": [0, 65535], "neuer be but i should know": [0, 65535], "be but i should know her": [0, 65535], "but i should know her as": [0, 65535], "i should know her as well": [0, 65535], "should know her as well as": [0, 65535], "know her as well as she": [0, 65535], "her as well as she knowes": [0, 65535], "as well as she knowes me": [0, 65535], "well as she knowes me adr": [0, 65535], "as she knowes me adr come": [0, 65535], "she knowes me adr come come": [0, 65535], "knowes me adr come come no": [0, 65535], "me adr come come no longer": [0, 65535], "adr come come no longer will": [0, 65535], "come come no longer will i": [0, 65535], "come no longer will i be": [0, 65535], "no longer will i be a": [0, 65535], "longer will i be a foole": [0, 65535], "will i be a foole to": [0, 65535], "i be a foole to put": [0, 65535], "be a foole to put the": [0, 65535], "a foole to put the finger": [0, 65535], "foole to put the finger in": [0, 65535], "to put the finger in the": [0, 65535], "put the finger in the eie": [0, 65535], "the finger in the eie and": [0, 65535], "finger in the eie and weepe": [0, 65535], "in the eie and weepe whil'st": [0, 65535], "the eie and weepe whil'st man": [0, 65535], "eie and weepe whil'st man and": [0, 65535], "and weepe whil'st man and master": [0, 65535], "weepe whil'st man and master laughes": [0, 65535], "whil'st man and master laughes my": [0, 65535], "man and master laughes my woes": [0, 65535], "and master laughes my woes to": [0, 65535], "master laughes my woes to scorne": [0, 65535], "laughes my woes to scorne come": [0, 65535], "my woes to scorne come sir": [0, 65535], "woes to scorne come sir to": [0, 65535], "to scorne come sir to dinner": [0, 65535], "scorne come sir to dinner dromio": [0, 65535], "come sir to dinner dromio keepe": [0, 65535], "sir to dinner dromio keepe the": [0, 65535], "to dinner dromio keepe the gate": [0, 65535], "dinner dromio keepe the gate husband": [0, 65535], "dromio keepe the gate husband ile": [0, 65535], "keepe the gate husband ile dine": [0, 65535], "the gate husband ile dine aboue": [0, 65535], "gate husband ile dine aboue with": [0, 65535], "husband ile dine aboue with you": [0, 65535], "ile dine aboue with you to": [0, 65535], "dine aboue with you to day": [0, 65535], "aboue with you to day and": [0, 65535], "with you to day and shriue": [0, 65535], "you to day and shriue you": [0, 65535], "to day and shriue you of": [0, 65535], "day and shriue you of a": [0, 65535], "and shriue you of a thousand": [0, 65535], "shriue you of a thousand idle": [0, 65535], "you of a thousand idle prankes": [0, 65535], "of a thousand idle prankes sirra": [0, 65535], "a thousand idle prankes sirra if": [0, 65535], "thousand idle prankes sirra if any": [0, 65535], "idle prankes sirra if any aske": [0, 65535], "prankes sirra if any aske you": [0, 65535], "sirra if any aske you for": [0, 65535], "if any aske you for your": [0, 65535], "any aske you for your master": [0, 65535], "aske you for your master say": [0, 65535], "you for your master say he": [0, 65535], "for your master say he dines": [0, 65535], "your master say he dines forth": [0, 65535], "master say he dines forth and": [0, 65535], "say he dines forth and let": [0, 65535], "he dines forth and let no": [0, 65535], "dines forth and let no creature": [0, 65535], "forth and let no creature enter": [0, 65535], "and let no creature enter come": [0, 65535], "let no creature enter come sister": [0, 65535], "no creature enter come sister dromio": [0, 65535], "creature enter come sister dromio play": [0, 65535], "enter come sister dromio play the": [0, 65535], "come sister dromio play the porter": [0, 65535], "sister dromio play the porter well": [0, 65535], "dromio play the porter well ant": [0, 65535], "play the porter well ant am": [0, 65535], "the porter well ant am i": [0, 65535], "porter well ant am i in": [0, 65535], "well ant am i in earth": [0, 65535], "ant am i in earth in": [0, 65535], "am i in earth in heauen": [0, 65535], "i in earth in heauen or": [0, 65535], "in earth in heauen or in": [0, 65535], "earth in heauen or in hell": [0, 65535], "in heauen or in hell sleeping": [0, 65535], "heauen or in hell sleeping or": [0, 65535], "or in hell sleeping or waking": [0, 65535], "in hell sleeping or waking mad": [0, 65535], "hell sleeping or waking mad or": [0, 65535], "sleeping or waking mad or well": [0, 65535], "or waking mad or well aduisde": [0, 65535], "waking mad or well aduisde knowne": [0, 65535], "mad or well aduisde knowne vnto": [0, 65535], "or well aduisde knowne vnto these": [0, 65535], "well aduisde knowne vnto these and": [0, 65535], "aduisde knowne vnto these and to": [0, 65535], "knowne vnto these and to my": [0, 65535], "vnto these and to my selfe": [0, 65535], "these and to my selfe disguisde": [0, 65535], "and to my selfe disguisde ile": [0, 65535], "to my selfe disguisde ile say": [0, 65535], "my selfe disguisde ile say as": [0, 65535], "selfe disguisde ile say as they": [0, 65535], "disguisde ile say as they say": [0, 65535], "ile say as they say and": [0, 65535], "say as they say and perseuer": [0, 65535], "as they say and perseuer so": [0, 65535], "they say and perseuer so and": [0, 65535], "say and perseuer so and in": [0, 65535], "and perseuer so and in this": [0, 65535], "perseuer so and in this mist": [0, 65535], "so and in this mist at": [0, 65535], "and in this mist at all": [0, 65535], "in this mist at all aduentures": [0, 65535], "this mist at all aduentures go": [0, 65535], "mist at all aduentures go s": [0, 65535], "at all aduentures go s dro": [0, 65535], "all aduentures go s dro master": [0, 65535], "aduentures go s dro master shall": [0, 65535], "go s dro master shall i": [0, 65535], "s dro master shall i be": [0, 65535], "dro master shall i be porter": [0, 65535], "master shall i be porter at": [0, 65535], "shall i be porter at the": [0, 65535], "i be porter at the gate": [0, 65535], "be porter at the gate adr": [0, 65535], "porter at the gate adr i": [0, 65535], "at the gate adr i and": [0, 65535], "the gate adr i and let": [0, 65535], "gate adr i and let none": [0, 65535], "adr i and let none enter": [0, 65535], "i and let none enter least": [0, 65535], "and let none enter least i": [0, 65535], "let none enter least i breake": [0, 65535], "none enter least i breake your": [0, 65535], "enter least i breake your pate": [0, 65535], "least i breake your pate luc": [0, 65535], "i breake your pate luc come": [0, 65535], "breake your pate luc come come": [0, 65535], "your pate luc come come antipholus": [0, 65535], "pate luc come come antipholus we": [0, 65535], "luc come come antipholus we dine": [0, 65535], "come come antipholus we dine to": [0, 65535], "come antipholus we dine to late": [0, 65535], "actus secundus enter adriana wife to antipholis": [0, 65535], "secundus enter adriana wife to antipholis sereptus": [0, 65535], "enter adriana wife to antipholis sereptus with": [0, 65535], "adriana wife to antipholis sereptus with luciana": [0, 65535], "wife to antipholis sereptus with luciana her": [0, 65535], "to antipholis sereptus with luciana her sister": [0, 65535], "antipholis sereptus with luciana her sister adr": [0, 65535], "sereptus with luciana her sister adr neither": [0, 65535], "with luciana her sister adr neither my": [0, 65535], "luciana her sister adr neither my husband": [0, 65535], "her sister adr neither my husband nor": [0, 65535], "sister adr neither my husband nor the": [0, 65535], "adr neither my husband nor the slaue": [0, 65535], "neither my husband nor the slaue return'd": [0, 65535], "my husband nor the slaue return'd that": [0, 65535], "husband nor the slaue return'd that in": [0, 65535], "nor the slaue return'd that in such": [0, 65535], "the slaue return'd that in such haste": [0, 65535], "slaue return'd that in such haste i": [0, 65535], "return'd that in such haste i sent": [0, 65535], "that in such haste i sent to": [0, 65535], "in such haste i sent to seeke": [0, 65535], "such haste i sent to seeke his": [0, 65535], "haste i sent to seeke his master": [0, 65535], "i sent to seeke his master sure": [0, 65535], "sent to seeke his master sure luciana": [0, 65535], "to seeke his master sure luciana it": [0, 65535], "seeke his master sure luciana it is": [0, 65535], "his master sure luciana it is two": [0, 65535], "master sure luciana it is two a": [0, 65535], "sure luciana it is two a clocke": [0, 65535], "luciana it is two a clocke luc": [0, 65535], "it is two a clocke luc perhaps": [0, 65535], "is two a clocke luc perhaps some": [0, 65535], "two a clocke luc perhaps some merchant": [0, 65535], "a clocke luc perhaps some merchant hath": [0, 65535], "clocke luc perhaps some merchant hath inuited": [0, 65535], "luc perhaps some merchant hath inuited him": [0, 65535], "perhaps some merchant hath inuited him and": [0, 65535], "some merchant hath inuited him and from": [0, 65535], "merchant hath inuited him and from the": [0, 65535], "hath inuited him and from the mart": [0, 65535], "inuited him and from the mart he's": [0, 65535], "him and from the mart he's somewhere": [0, 65535], "and from the mart he's somewhere gone": [0, 65535], "from the mart he's somewhere gone to": [0, 65535], "the mart he's somewhere gone to dinner": [0, 65535], "mart he's somewhere gone to dinner good": [0, 65535], "he's somewhere gone to dinner good sister": [0, 65535], "somewhere gone to dinner good sister let": [0, 65535], "gone to dinner good sister let vs": [0, 65535], "to dinner good sister let vs dine": [0, 65535], "dinner good sister let vs dine and": [0, 65535], "good sister let vs dine and neuer": [0, 65535], "sister let vs dine and neuer fret": [0, 65535], "let vs dine and neuer fret a": [0, 65535], "vs dine and neuer fret a man": [0, 65535], "dine and neuer fret a man is": [0, 65535], "and neuer fret a man is master": [0, 65535], "neuer fret a man is master of": [0, 65535], "fret a man is master of his": [0, 65535], "a man is master of his libertie": [0, 65535], "man is master of his libertie time": [0, 65535], "is master of his libertie time is": [0, 65535], "master of his libertie time is their": [0, 65535], "of his libertie time is their master": [0, 65535], "his libertie time is their master and": [0, 65535], "libertie time is their master and when": [0, 65535], "time is their master and when they": [0, 65535], "is their master and when they see": [0, 65535], "their master and when they see time": [0, 65535], "master and when they see time they'll": [0, 65535], "and when they see time they'll goe": [0, 65535], "when they see time they'll goe or": [0, 65535], "they see time they'll goe or come": [0, 65535], "see time they'll goe or come if": [0, 65535], "time they'll goe or come if so": [0, 65535], "they'll goe or come if so be": [0, 65535], "goe or come if so be patient": [0, 65535], "or come if so be patient sister": [0, 65535], "come if so be patient sister adr": [0, 65535], "if so be patient sister adr why": [0, 65535], "so be patient sister adr why should": [0, 65535], "be patient sister adr why should their": [0, 65535], "patient sister adr why should their libertie": [0, 65535], "sister adr why should their libertie then": [0, 65535], "adr why should their libertie then ours": [0, 65535], "why should their libertie then ours be": [0, 65535], "should their libertie then ours be more": [0, 65535], "their libertie then ours be more luc": [0, 65535], "libertie then ours be more luc because": [0, 65535], "then ours be more luc because their": [0, 65535], "ours be more luc because their businesse": [0, 65535], "be more luc because their businesse still": [0, 65535], "more luc because their businesse still lies": [0, 65535], "luc because their businesse still lies out": [0, 65535], "because their businesse still lies out a": [0, 65535], "their businesse still lies out a dore": [0, 65535], "businesse still lies out a dore adr": [0, 65535], "still lies out a dore adr looke": [0, 65535], "lies out a dore adr looke when": [0, 65535], "out a dore adr looke when i": [0, 65535], "a dore adr looke when i serue": [0, 65535], "dore adr looke when i serue him": [0, 65535], "adr looke when i serue him so": [0, 65535], "looke when i serue him so he": [0, 65535], "when i serue him so he takes": [0, 65535], "i serue him so he takes it": [0, 65535], "serue him so he takes it thus": [0, 65535], "him so he takes it thus luc": [0, 65535], "so he takes it thus luc oh": [0, 65535], "he takes it thus luc oh know": [0, 65535], "takes it thus luc oh know he": [0, 65535], "it thus luc oh know he is": [0, 65535], "thus luc oh know he is the": [0, 65535], "luc oh know he is the bridle": [0, 65535], "oh know he is the bridle of": [0, 65535], "know he is the bridle of your": [0, 65535], "he is the bridle of your will": [0, 65535], "is the bridle of your will adr": [0, 65535], "the bridle of your will adr there's": [0, 65535], "bridle of your will adr there's none": [0, 65535], "of your will adr there's none but": [0, 65535], "your will adr there's none but asses": [0, 65535], "will adr there's none but asses will": [0, 65535], "adr there's none but asses will be": [0, 65535], "there's none but asses will be bridled": [0, 65535], "none but asses will be bridled so": [0, 65535], "but asses will be bridled so luc": [0, 65535], "asses will be bridled so luc why": [0, 65535], "will be bridled so luc why headstrong": [0, 65535], "be bridled so luc why headstrong liberty": [0, 65535], "bridled so luc why headstrong liberty is": [0, 65535], "so luc why headstrong liberty is lasht": [0, 65535], "luc why headstrong liberty is lasht with": [0, 65535], "why headstrong liberty is lasht with woe": [0, 65535], "headstrong liberty is lasht with woe there's": [0, 65535], "liberty is lasht with woe there's nothing": [0, 65535], "is lasht with woe there's nothing situate": [0, 65535], "lasht with woe there's nothing situate vnder": [0, 65535], "with woe there's nothing situate vnder heauens": [0, 65535], "woe there's nothing situate vnder heauens eye": [0, 65535], "there's nothing situate vnder heauens eye but": [0, 65535], "nothing situate vnder heauens eye but hath": [0, 65535], "situate vnder heauens eye but hath his": [0, 65535], "vnder heauens eye but hath his bound": [0, 65535], "heauens eye but hath his bound in": [0, 65535], "eye but hath his bound in earth": [0, 65535], "but hath his bound in earth in": [0, 65535], "hath his bound in earth in sea": [0, 65535], "his bound in earth in sea in": [0, 65535], "bound in earth in sea in skie": [0, 65535], "in earth in sea in skie the": [0, 65535], "earth in sea in skie the beasts": [0, 65535], "in sea in skie the beasts the": [0, 65535], "sea in skie the beasts the fishes": [0, 65535], "in skie the beasts the fishes and": [0, 65535], "skie the beasts the fishes and the": [0, 65535], "the beasts the fishes and the winged": [0, 65535], "beasts the fishes and the winged fowles": [0, 65535], "the fishes and the winged fowles are": [0, 65535], "fishes and the winged fowles are their": [0, 65535], "and the winged fowles are their males": [0, 65535], "the winged fowles are their males subiects": [0, 65535], "winged fowles are their males subiects and": [0, 65535], "fowles are their males subiects and at": [0, 65535], "are their males subiects and at their": [0, 65535], "their males subiects and at their controules": [0, 65535], "males subiects and at their controules man": [0, 65535], "subiects and at their controules man more": [0, 65535], "and at their controules man more diuine": [0, 65535], "at their controules man more diuine the": [0, 65535], "their controules man more diuine the master": [0, 65535], "controules man more diuine the master of": [0, 65535], "man more diuine the master of all": [0, 65535], "more diuine the master of all these": [0, 65535], "diuine the master of all these lord": [0, 65535], "the master of all these lord of": [0, 65535], "master of all these lord of the": [0, 65535], "of all these lord of the wide": [0, 65535], "all these lord of the wide world": [0, 65535], "these lord of the wide world and": [0, 65535], "lord of the wide world and wilde": [0, 65535], "of the wide world and wilde watry": [0, 65535], "the wide world and wilde watry seas": [0, 65535], "wide world and wilde watry seas indued": [0, 65535], "world and wilde watry seas indued with": [0, 65535], "and wilde watry seas indued with intellectuall": [0, 65535], "wilde watry seas indued with intellectuall sence": [0, 65535], "watry seas indued with intellectuall sence and": [0, 65535], "seas indued with intellectuall sence and soules": [0, 65535], "indued with intellectuall sence and soules of": [0, 65535], "with intellectuall sence and soules of more": [0, 65535], "intellectuall sence and soules of more preheminence": [0, 65535], "sence and soules of more preheminence then": [0, 65535], "and soules of more preheminence then fish": [0, 65535], "soules of more preheminence then fish and": [0, 65535], "of more preheminence then fish and fowles": [0, 65535], "more preheminence then fish and fowles are": [0, 65535], "preheminence then fish and fowles are masters": [0, 65535], "then fish and fowles are masters to": [0, 65535], "fish and fowles are masters to their": [0, 65535], "and fowles are masters to their females": [0, 65535], "fowles are masters to their females and": [0, 65535], "are masters to their females and their": [0, 65535], "masters to their females and their lords": [0, 65535], "to their females and their lords then": [0, 65535], "their females and their lords then let": [0, 65535], "females and their lords then let your": [0, 65535], "and their lords then let your will": [0, 65535], "their lords then let your will attend": [0, 65535], "lords then let your will attend on": [0, 65535], "then let your will attend on their": [0, 65535], "let your will attend on their accords": [0, 65535], "your will attend on their accords adri": [0, 65535], "will attend on their accords adri this": [0, 65535], "attend on their accords adri this seruitude": [0, 65535], "on their accords adri this seruitude makes": [0, 65535], "their accords adri this seruitude makes you": [0, 65535], "accords adri this seruitude makes you to": [0, 65535], "adri this seruitude makes you to keepe": [0, 65535], "this seruitude makes you to keepe vnwed": [0, 65535], "seruitude makes you to keepe vnwed luci": [0, 65535], "makes you to keepe vnwed luci not": [0, 65535], "you to keepe vnwed luci not this": [0, 65535], "to keepe vnwed luci not this but": [0, 65535], "keepe vnwed luci not this but troubles": [0, 65535], "vnwed luci not this but troubles of": [0, 65535], "luci not this but troubles of the": [0, 65535], "not this but troubles of the marriage": [0, 65535], "this but troubles of the marriage bed": [0, 65535], "but troubles of the marriage bed adr": [0, 65535], "troubles of the marriage bed adr but": [0, 65535], "of the marriage bed adr but were": [0, 65535], "the marriage bed adr but were you": [0, 65535], "marriage bed adr but were you wedded": [0, 65535], "bed adr but were you wedded you": [0, 65535], "adr but were you wedded you wold": [0, 65535], "but were you wedded you wold bear": [0, 65535], "were you wedded you wold bear some": [0, 65535], "you wedded you wold bear some sway": [0, 65535], "wedded you wold bear some sway luc": [0, 65535], "you wold bear some sway luc ere": [0, 65535], "wold bear some sway luc ere i": [0, 65535], "bear some sway luc ere i learne": [0, 65535], "some sway luc ere i learne loue": [0, 65535], "sway luc ere i learne loue ile": [0, 65535], "luc ere i learne loue ile practise": [0, 65535], "ere i learne loue ile practise to": [0, 65535], "i learne loue ile practise to obey": [0, 65535], "learne loue ile practise to obey adr": [0, 65535], "loue ile practise to obey adr how": [0, 65535], "ile practise to obey adr how if": [0, 65535], "practise to obey adr how if your": [0, 65535], "to obey adr how if your husband": [0, 65535], "obey adr how if your husband start": [0, 65535], "adr how if your husband start some": [0, 65535], "how if your husband start some other": [0, 65535], "if your husband start some other where": [0, 65535], "your husband start some other where luc": [0, 65535], "husband start some other where luc till": [0, 65535], "start some other where luc till he": [0, 65535], "some other where luc till he come": [0, 65535], "other where luc till he come home": [0, 65535], "where luc till he come home againe": [0, 65535], "luc till he come home againe i": [0, 65535], "till he come home againe i would": [0, 65535], "he come home againe i would forbeare": [0, 65535], "come home againe i would forbeare adr": [0, 65535], "home againe i would forbeare adr patience": [0, 65535], "againe i would forbeare adr patience vnmou'd": [0, 65535], "i would forbeare adr patience vnmou'd no": [0, 65535], "would forbeare adr patience vnmou'd no maruel": [0, 65535], "forbeare adr patience vnmou'd no maruel though": [0, 65535], "adr patience vnmou'd no maruel though she": [0, 65535], "patience vnmou'd no maruel though she pause": [0, 65535], "vnmou'd no maruel though she pause they": [0, 65535], "no maruel though she pause they can": [0, 65535], "maruel though she pause they can be": [0, 65535], "though she pause they can be meeke": [0, 65535], "she pause they can be meeke that": [0, 65535], "pause they can be meeke that haue": [0, 65535], "they can be meeke that haue no": [0, 65535], "can be meeke that haue no other": [0, 65535], "be meeke that haue no other cause": [0, 65535], "meeke that haue no other cause a": [0, 65535], "that haue no other cause a wretched": [0, 65535], "haue no other cause a wretched soule": [0, 65535], "no other cause a wretched soule bruis'd": [0, 65535], "other cause a wretched soule bruis'd with": [0, 65535], "cause a wretched soule bruis'd with aduersitie": [0, 65535], "a wretched soule bruis'd with aduersitie we": [0, 65535], "wretched soule bruis'd with aduersitie we bid": [0, 65535], "soule bruis'd with aduersitie we bid be": [0, 65535], "bruis'd with aduersitie we bid be quiet": [0, 65535], "with aduersitie we bid be quiet when": [0, 65535], "aduersitie we bid be quiet when we": [0, 65535], "we bid be quiet when we heare": [0, 65535], "bid be quiet when we heare it": [0, 65535], "be quiet when we heare it crie": [0, 65535], "quiet when we heare it crie but": [0, 65535], "when we heare it crie but were": [0, 65535], "we heare it crie but were we": [0, 65535], "heare it crie but were we burdned": [0, 65535], "it crie but were we burdned with": [0, 65535], "crie but were we burdned with like": [0, 65535], "but were we burdned with like waight": [0, 65535], "were we burdned with like waight of": [0, 65535], "we burdned with like waight of paine": [0, 65535], "burdned with like waight of paine as": [0, 65535], "with like waight of paine as much": [0, 65535], "like waight of paine as much or": [0, 65535], "waight of paine as much or more": [0, 65535], "of paine as much or more we": [0, 65535], "paine as much or more we should": [0, 65535], "as much or more we should our": [0, 65535], "much or more we should our selues": [0, 65535], "or more we should our selues complaine": [0, 65535], "more we should our selues complaine so": [0, 65535], "we should our selues complaine so thou": [0, 65535], "should our selues complaine so thou that": [0, 65535], "our selues complaine so thou that hast": [0, 65535], "selues complaine so thou that hast no": [0, 65535], "complaine so thou that hast no vnkinde": [0, 65535], "so thou that hast no vnkinde mate": [0, 65535], "thou that hast no vnkinde mate to": [0, 65535], "that hast no vnkinde mate to greeue": [0, 65535], "hast no vnkinde mate to greeue thee": [0, 65535], "no vnkinde mate to greeue thee with": [0, 65535], "vnkinde mate to greeue thee with vrging": [0, 65535], "mate to greeue thee with vrging helpelesse": [0, 65535], "to greeue thee with vrging helpelesse patience": [0, 65535], "greeue thee with vrging helpelesse patience would": [0, 65535], "thee with vrging helpelesse patience would releeue": [0, 65535], "with vrging helpelesse patience would releeue me": [0, 65535], "vrging helpelesse patience would releeue me but": [0, 65535], "helpelesse patience would releeue me but if": [0, 65535], "patience would releeue me but if thou": [0, 65535], "would releeue me but if thou liue": [0, 65535], "releeue me but if thou liue to": [0, 65535], "me but if thou liue to see": [0, 65535], "but if thou liue to see like": [0, 65535], "if thou liue to see like right": [0, 65535], "thou liue to see like right bereft": [0, 65535], "liue to see like right bereft this": [0, 65535], "to see like right bereft this foole": [0, 65535], "see like right bereft this foole beg'd": [0, 65535], "like right bereft this foole beg'd patience": [0, 65535], "right bereft this foole beg'd patience in": [0, 65535], "bereft this foole beg'd patience in thee": [0, 65535], "this foole beg'd patience in thee will": [0, 65535], "foole beg'd patience in thee will be": [0, 65535], "beg'd patience in thee will be left": [0, 65535], "patience in thee will be left luci": [0, 65535], "in thee will be left luci well": [0, 65535], "thee will be left luci well i": [0, 65535], "will be left luci well i will": [0, 65535], "be left luci well i will marry": [0, 65535], "left luci well i will marry one": [0, 65535], "luci well i will marry one day": [0, 65535], "well i will marry one day but": [0, 65535], "i will marry one day but to": [0, 65535], "will marry one day but to trie": [0, 65535], "marry one day but to trie heere": [0, 65535], "one day but to trie heere comes": [0, 65535], "day but to trie heere comes your": [0, 65535], "but to trie heere comes your man": [0, 65535], "to trie heere comes your man now": [0, 65535], "trie heere comes your man now is": [0, 65535], "heere comes your man now is your": [0, 65535], "comes your man now is your husband": [0, 65535], "your man now is your husband nie": [0, 65535], "man now is your husband nie enter": [0, 65535], "now is your husband nie enter dromio": [0, 65535], "is your husband nie enter dromio eph": [0, 65535], "your husband nie enter dromio eph adr": [0, 65535], "husband nie enter dromio eph adr say": [0, 65535], "nie enter dromio eph adr say is": [0, 65535], "enter dromio eph adr say is your": [0, 65535], "dromio eph adr say is your tardie": [0, 65535], "eph adr say is your tardie master": [0, 65535], "adr say is your tardie master now": [0, 65535], "say is your tardie master now at": [0, 65535], "is your tardie master now at hand": [0, 65535], "your tardie master now at hand e": [0, 65535], "tardie master now at hand e dro": [0, 65535], "master now at hand e dro nay": [0, 65535], "now at hand e dro nay hee's": [0, 65535], "at hand e dro nay hee's at": [0, 65535], "hand e dro nay hee's at too": [0, 65535], "e dro nay hee's at too hands": [0, 65535], "dro nay hee's at too hands with": [0, 65535], "nay hee's at too hands with mee": [0, 65535], "hee's at too hands with mee and": [0, 65535], "at too hands with mee and that": [0, 65535], "too hands with mee and that my": [0, 65535], "hands with mee and that my two": [0, 65535], "with mee and that my two eares": [0, 65535], "mee and that my two eares can": [0, 65535], "and that my two eares can witnesse": [0, 65535], "that my two eares can witnesse adr": [0, 65535], "my two eares can witnesse adr say": [0, 65535], "two eares can witnesse adr say didst": [0, 65535], "eares can witnesse adr say didst thou": [0, 65535], "can witnesse adr say didst thou speake": [0, 65535], "witnesse adr say didst thou speake with": [0, 65535], "adr say didst thou speake with him": [0, 65535], "say didst thou speake with him knowst": [0, 65535], "didst thou speake with him knowst thou": [0, 65535], "thou speake with him knowst thou his": [0, 65535], "speake with him knowst thou his minde": [0, 65535], "with him knowst thou his minde e": [0, 65535], "him knowst thou his minde e dro": [0, 65535], "knowst thou his minde e dro i": [0, 65535], "thou his minde e dro i i": [0, 65535], "his minde e dro i i he": [0, 65535], "minde e dro i i he told": [0, 65535], "e dro i i he told his": [0, 65535], "dro i i he told his minde": [0, 65535], "i i he told his minde vpon": [0, 65535], "i he told his minde vpon mine": [0, 65535], "he told his minde vpon mine eare": [0, 65535], "told his minde vpon mine eare beshrew": [0, 65535], "his minde vpon mine eare beshrew his": [0, 65535], "minde vpon mine eare beshrew his hand": [0, 65535], "vpon mine eare beshrew his hand i": [0, 65535], "mine eare beshrew his hand i scarce": [0, 65535], "eare beshrew his hand i scarce could": [0, 65535], "beshrew his hand i scarce could vnderstand": [0, 65535], "his hand i scarce could vnderstand it": [0, 65535], "hand i scarce could vnderstand it luc": [0, 65535], "i scarce could vnderstand it luc spake": [0, 65535], "scarce could vnderstand it luc spake hee": [0, 65535], "could vnderstand it luc spake hee so": [0, 65535], "vnderstand it luc spake hee so doubtfully": [0, 65535], "it luc spake hee so doubtfully thou": [0, 65535], "luc spake hee so doubtfully thou couldst": [0, 65535], "spake hee so doubtfully thou couldst not": [0, 65535], "hee so doubtfully thou couldst not feele": [0, 65535], "so doubtfully thou couldst not feele his": [0, 65535], "doubtfully thou couldst not feele his meaning": [0, 65535], "thou couldst not feele his meaning e": [0, 65535], "couldst not feele his meaning e dro": [0, 65535], "not feele his meaning e dro nay": [0, 65535], "feele his meaning e dro nay hee": [0, 65535], "his meaning e dro nay hee strooke": [0, 65535], "meaning e dro nay hee strooke so": [0, 65535], "e dro nay hee strooke so plainly": [0, 65535], "dro nay hee strooke so plainly i": [0, 65535], "nay hee strooke so plainly i could": [0, 65535], "hee strooke so plainly i could too": [0, 65535], "strooke so plainly i could too well": [0, 65535], "so plainly i could too well feele": [0, 65535], "plainly i could too well feele his": [0, 65535], "i could too well feele his blowes": [0, 65535], "could too well feele his blowes and": [0, 65535], "too well feele his blowes and withall": [0, 65535], "well feele his blowes and withall so": [0, 65535], "feele his blowes and withall so doubtfully": [0, 65535], "his blowes and withall so doubtfully that": [0, 65535], "blowes and withall so doubtfully that i": [0, 65535], "and withall so doubtfully that i could": [0, 65535], "withall so doubtfully that i could scarce": [0, 65535], "so doubtfully that i could scarce vnderstand": [0, 65535], "doubtfully that i could scarce vnderstand them": [0, 65535], "that i could scarce vnderstand them adri": [0, 65535], "i could scarce vnderstand them adri but": [0, 65535], "could scarce vnderstand them adri but say": [0, 65535], "scarce vnderstand them adri but say i": [0, 65535], "vnderstand them adri but say i prethee": [0, 65535], "them adri but say i prethee is": [0, 65535], "adri but say i prethee is he": [0, 65535], "but say i prethee is he comming": [0, 65535], "say i prethee is he comming home": [0, 65535], "i prethee is he comming home it": [0, 65535], "prethee is he comming home it seemes": [0, 65535], "is he comming home it seemes he": [0, 65535], "he comming home it seemes he hath": [0, 65535], "comming home it seemes he hath great": [0, 65535], "home it seemes he hath great care": [0, 65535], "it seemes he hath great care to": [0, 65535], "seemes he hath great care to please": [0, 65535], "he hath great care to please his": [0, 65535], "hath great care to please his wife": [0, 65535], "great care to please his wife e": [0, 65535], "care to please his wife e dro": [0, 65535], "to please his wife e dro why": [0, 65535], "please his wife e dro why mistresse": [0, 65535], "his wife e dro why mistresse sure": [0, 65535], "wife e dro why mistresse sure my": [0, 65535], "e dro why mistresse sure my master": [0, 65535], "dro why mistresse sure my master is": [0, 65535], "why mistresse sure my master is horne": [0, 65535], "mistresse sure my master is horne mad": [0, 65535], "sure my master is horne mad adri": [0, 65535], "my master is horne mad adri horne": [0, 65535], "master is horne mad adri horne mad": [0, 65535], "is horne mad adri horne mad thou": [0, 65535], "horne mad adri horne mad thou villaine": [0, 65535], "mad adri horne mad thou villaine e": [0, 65535], "adri horne mad thou villaine e dro": [0, 65535], "horne mad thou villaine e dro i": [0, 65535], "mad thou villaine e dro i meane": [0, 65535], "thou villaine e dro i meane not": [0, 65535], "villaine e dro i meane not cuckold": [0, 65535], "e dro i meane not cuckold mad": [0, 65535], "dro i meane not cuckold mad but": [0, 65535], "i meane not cuckold mad but sure": [0, 65535], "meane not cuckold mad but sure he": [0, 65535], "not cuckold mad but sure he is": [0, 65535], "cuckold mad but sure he is starke": [0, 65535], "mad but sure he is starke mad": [0, 65535], "but sure he is starke mad when": [0, 65535], "sure he is starke mad when i": [0, 65535], "he is starke mad when i desir'd": [0, 65535], "is starke mad when i desir'd him": [0, 65535], "starke mad when i desir'd him to": [0, 65535], "mad when i desir'd him to come": [0, 65535], "when i desir'd him to come home": [0, 65535], "i desir'd him to come home to": [0, 65535], "desir'd him to come home to dinner": [0, 65535], "him to come home to dinner he": [0, 65535], "to come home to dinner he ask'd": [0, 65535], "come home to dinner he ask'd me": [0, 65535], "home to dinner he ask'd me for": [0, 65535], "to dinner he ask'd me for a": [0, 65535], "dinner he ask'd me for a hundred": [0, 65535], "he ask'd me for a hundred markes": [0, 65535], "ask'd me for a hundred markes in": [0, 65535], "me for a hundred markes in gold": [0, 65535], "for a hundred markes in gold 'tis": [0, 65535], "a hundred markes in gold 'tis dinner": [0, 65535], "hundred markes in gold 'tis dinner time": [0, 65535], "markes in gold 'tis dinner time quoth": [0, 65535], "in gold 'tis dinner time quoth i": [0, 65535], "gold 'tis dinner time quoth i my": [0, 65535], "'tis dinner time quoth i my gold": [0, 65535], "dinner time quoth i my gold quoth": [0, 65535], "time quoth i my gold quoth he": [0, 65535], "quoth i my gold quoth he your": [0, 65535], "i my gold quoth he your meat": [0, 65535], "my gold quoth he your meat doth": [0, 65535], "gold quoth he your meat doth burne": [0, 65535], "quoth he your meat doth burne quoth": [0, 65535], "he your meat doth burne quoth i": [0, 65535], "your meat doth burne quoth i my": [0, 65535], "meat doth burne quoth i my gold": [0, 65535], "doth burne quoth i my gold quoth": [0, 65535], "burne quoth i my gold quoth he": [0, 65535], "quoth i my gold quoth he will": [0, 65535], "i my gold quoth he will you": [0, 65535], "my gold quoth he will you come": [0, 65535], "gold quoth he will you come quoth": [0, 65535], "quoth he will you come quoth i": [0, 65535], "he will you come quoth i my": [0, 65535], "will you come quoth i my gold": [0, 65535], "you come quoth i my gold quoth": [0, 65535], "come quoth i my gold quoth he": [0, 65535], "quoth i my gold quoth he where": [0, 65535], "i my gold quoth he where is": [0, 65535], "my gold quoth he where is the": [0, 65535], "gold quoth he where is the thousand": [0, 65535], "quoth he where is the thousand markes": [0, 65535], "he where is the thousand markes i": [0, 65535], "where is the thousand markes i gaue": [0, 65535], "is the thousand markes i gaue thee": [0, 65535], "the thousand markes i gaue thee villaine": [0, 65535], "thousand markes i gaue thee villaine the": [0, 65535], "markes i gaue thee villaine the pigge": [0, 65535], "i gaue thee villaine the pigge quoth": [0, 65535], "gaue thee villaine the pigge quoth i": [0, 65535], "thee villaine the pigge quoth i is": [0, 65535], "villaine the pigge quoth i is burn'd": [0, 65535], "the pigge quoth i is burn'd my": [0, 65535], "pigge quoth i is burn'd my gold": [0, 65535], "quoth i is burn'd my gold quoth": [0, 65535], "i is burn'd my gold quoth he": [0, 65535], "is burn'd my gold quoth he my": [0, 65535], "burn'd my gold quoth he my mistresse": [0, 65535], "my gold quoth he my mistresse sir": [0, 65535], "gold quoth he my mistresse sir quoth": [0, 65535], "quoth he my mistresse sir quoth i": [0, 65535], "he my mistresse sir quoth i hang": [0, 65535], "my mistresse sir quoth i hang vp": [0, 65535], "mistresse sir quoth i hang vp thy": [0, 65535], "sir quoth i hang vp thy mistresse": [0, 65535], "quoth i hang vp thy mistresse i": [0, 65535], "i hang vp thy mistresse i know": [0, 65535], "hang vp thy mistresse i know not": [0, 65535], "vp thy mistresse i know not thy": [0, 65535], "thy mistresse i know not thy mistresse": [0, 65535], "mistresse i know not thy mistresse out": [0, 65535], "i know not thy mistresse out on": [0, 65535], "know not thy mistresse out on thy": [0, 65535], "not thy mistresse out on thy mistresse": [0, 65535], "thy mistresse out on thy mistresse luci": [0, 65535], "mistresse out on thy mistresse luci quoth": [0, 65535], "out on thy mistresse luci quoth who": [0, 65535], "on thy mistresse luci quoth who e": [0, 65535], "thy mistresse luci quoth who e dr": [0, 65535], "mistresse luci quoth who e dr quoth": [0, 65535], "luci quoth who e dr quoth my": [0, 65535], "quoth who e dr quoth my master": [0, 65535], "who e dr quoth my master i": [0, 65535], "e dr quoth my master i know": [0, 65535], "dr quoth my master i know quoth": [0, 65535], "quoth my master i know quoth he": [0, 65535], "my master i know quoth he no": [0, 65535], "master i know quoth he no house": [0, 65535], "i know quoth he no house no": [0, 65535], "know quoth he no house no wife": [0, 65535], "quoth he no house no wife no": [0, 65535], "he no house no wife no mistresse": [0, 65535], "no house no wife no mistresse so": [0, 65535], "house no wife no mistresse so that": [0, 65535], "no wife no mistresse so that my": [0, 65535], "wife no mistresse so that my arrant": [0, 65535], "no mistresse so that my arrant due": [0, 65535], "mistresse so that my arrant due vnto": [0, 65535], "so that my arrant due vnto my": [0, 65535], "that my arrant due vnto my tongue": [0, 65535], "my arrant due vnto my tongue i": [0, 65535], "arrant due vnto my tongue i thanke": [0, 65535], "due vnto my tongue i thanke him": [0, 65535], "vnto my tongue i thanke him i": [0, 65535], "my tongue i thanke him i bare": [0, 65535], "tongue i thanke him i bare home": [0, 65535], "i thanke him i bare home vpon": [0, 65535], "thanke him i bare home vpon my": [0, 65535], "him i bare home vpon my shoulders": [0, 65535], "i bare home vpon my shoulders for": [0, 65535], "bare home vpon my shoulders for in": [0, 65535], "home vpon my shoulders for in conclusion": [0, 65535], "vpon my shoulders for in conclusion he": [0, 65535], "my shoulders for in conclusion he did": [0, 65535], "shoulders for in conclusion he did beat": [0, 65535], "for in conclusion he did beat me": [0, 65535], "in conclusion he did beat me there": [0, 65535], "conclusion he did beat me there adri": [0, 65535], "he did beat me there adri go": [0, 65535], "did beat me there adri go back": [0, 65535], "beat me there adri go back againe": [0, 65535], "me there adri go back againe thou": [0, 65535], "there adri go back againe thou slaue": [0, 65535], "adri go back againe thou slaue fetch": [0, 65535], "go back againe thou slaue fetch him": [0, 65535], "back againe thou slaue fetch him home": [0, 65535], "againe thou slaue fetch him home dro": [0, 65535], "thou slaue fetch him home dro goe": [0, 65535], "slaue fetch him home dro goe backe": [0, 65535], "fetch him home dro goe backe againe": [0, 65535], "him home dro goe backe againe and": [0, 65535], "home dro goe backe againe and be": [0, 65535], "dro goe backe againe and be new": [0, 65535], "goe backe againe and be new beaten": [0, 65535], "backe againe and be new beaten home": [0, 65535], "againe and be new beaten home for": [0, 65535], "and be new beaten home for gods": [0, 65535], "be new beaten home for gods sake": [0, 65535], "new beaten home for gods sake send": [0, 65535], "beaten home for gods sake send some": [0, 65535], "home for gods sake send some other": [0, 65535], "for gods sake send some other messenger": [0, 65535], "gods sake send some other messenger adri": [0, 65535], "sake send some other messenger adri backe": [0, 65535], "send some other messenger adri backe slaue": [0, 65535], "some other messenger adri backe slaue or": [0, 65535], "other messenger adri backe slaue or i": [0, 65535], "messenger adri backe slaue or i will": [0, 65535], "adri backe slaue or i will breake": [0, 65535], "backe slaue or i will breake thy": [0, 65535], "slaue or i will breake thy pate": [0, 65535], "or i will breake thy pate a": [0, 65535], "i will breake thy pate a crosse": [0, 65535], "will breake thy pate a crosse dro": [0, 65535], "breake thy pate a crosse dro and": [0, 65535], "thy pate a crosse dro and he": [0, 65535], "pate a crosse dro and he will": [0, 65535], "a crosse dro and he will blesse": [0, 65535], "crosse dro and he will blesse the": [0, 65535], "dro and he will blesse the crosse": [0, 65535], "and he will blesse the crosse with": [0, 65535], "he will blesse the crosse with other": [0, 65535], "will blesse the crosse with other beating": [0, 65535], "blesse the crosse with other beating betweene": [0, 65535], "the crosse with other beating betweene you": [0, 65535], "crosse with other beating betweene you i": [0, 65535], "with other beating betweene you i shall": [0, 65535], "other beating betweene you i shall haue": [0, 65535], "beating betweene you i shall haue a": [0, 65535], "betweene you i shall haue a holy": [0, 65535], "you i shall haue a holy head": [0, 65535], "i shall haue a holy head adri": [0, 65535], "shall haue a holy head adri hence": [0, 65535], "haue a holy head adri hence prating": [0, 65535], "a holy head adri hence prating pesant": [0, 65535], "holy head adri hence prating pesant fetch": [0, 65535], "head adri hence prating pesant fetch thy": [0, 65535], "adri hence prating pesant fetch thy master": [0, 65535], "hence prating pesant fetch thy master home": [0, 65535], "prating pesant fetch thy master home dro": [0, 65535], "pesant fetch thy master home dro am": [0, 65535], "fetch thy master home dro am i": [0, 65535], "thy master home dro am i so": [0, 65535], "master home dro am i so round": [0, 65535], "home dro am i so round with": [0, 65535], "dro am i so round with you": [0, 65535], "am i so round with you as": [0, 65535], "i so round with you as you": [0, 65535], "so round with you as you with": [0, 65535], "round with you as you with me": [0, 65535], "with you as you with me that": [0, 65535], "you as you with me that like": [0, 65535], "as you with me that like a": [0, 65535], "you with me that like a foot": [0, 65535], "with me that like a foot ball": [0, 65535], "me that like a foot ball you": [0, 65535], "that like a foot ball you doe": [0, 65535], "like a foot ball you doe spurne": [0, 65535], "a foot ball you doe spurne me": [0, 65535], "foot ball you doe spurne me thus": [0, 65535], "ball you doe spurne me thus you": [0, 65535], "you doe spurne me thus you spurne": [0, 65535], "doe spurne me thus you spurne me": [0, 65535], "spurne me thus you spurne me hence": [0, 65535], "me thus you spurne me hence and": [0, 65535], "thus you spurne me hence and he": [0, 65535], "you spurne me hence and he will": [0, 65535], "spurne me hence and he will spurne": [0, 65535], "me hence and he will spurne me": [0, 65535], "hence and he will spurne me hither": [0, 65535], "and he will spurne me hither if": [0, 65535], "he will spurne me hither if i": [0, 65535], "will spurne me hither if i last": [0, 65535], "spurne me hither if i last in": [0, 65535], "me hither if i last in this": [0, 65535], "hither if i last in this seruice": [0, 65535], "if i last in this seruice you": [0, 65535], "i last in this seruice you must": [0, 65535], "last in this seruice you must case": [0, 65535], "in this seruice you must case me": [0, 65535], "this seruice you must case me in": [0, 65535], "seruice you must case me in leather": [0, 65535], "you must case me in leather luci": [0, 65535], "must case me in leather luci fie": [0, 65535], "case me in leather luci fie how": [0, 65535], "me in leather luci fie how impatience": [0, 65535], "in leather luci fie how impatience lowreth": [0, 65535], "leather luci fie how impatience lowreth in": [0, 65535], "luci fie how impatience lowreth in your": [0, 65535], "fie how impatience lowreth in your face": [0, 65535], "how impatience lowreth in your face adri": [0, 65535], "impatience lowreth in your face adri his": [0, 65535], "lowreth in your face adri his company": [0, 65535], "in your face adri his company must": [0, 65535], "your face adri his company must do": [0, 65535], "face adri his company must do his": [0, 65535], "adri his company must do his minions": [0, 65535], "his company must do his minions grace": [0, 65535], "company must do his minions grace whil'st": [0, 65535], "must do his minions grace whil'st i": [0, 65535], "do his minions grace whil'st i at": [0, 65535], "his minions grace whil'st i at home": [0, 65535], "minions grace whil'st i at home starue": [0, 65535], "grace whil'st i at home starue for": [0, 65535], "whil'st i at home starue for a": [0, 65535], "i at home starue for a merrie": [0, 65535], "at home starue for a merrie looke": [0, 65535], "home starue for a merrie looke hath": [0, 65535], "starue for a merrie looke hath homelie": [0, 65535], "for a merrie looke hath homelie age": [0, 65535], "a merrie looke hath homelie age th'": [0, 65535], "merrie looke hath homelie age th' alluring": [0, 65535], "looke hath homelie age th' alluring beauty": [0, 65535], "hath homelie age th' alluring beauty tooke": [0, 65535], "homelie age th' alluring beauty tooke from": [0, 65535], "age th' alluring beauty tooke from my": [0, 65535], "th' alluring beauty tooke from my poore": [0, 65535], "alluring beauty tooke from my poore cheeke": [0, 65535], "beauty tooke from my poore cheeke then": [0, 65535], "tooke from my poore cheeke then he": [0, 65535], "from my poore cheeke then he hath": [0, 65535], "my poore cheeke then he hath wasted": [0, 65535], "poore cheeke then he hath wasted it": [0, 65535], "cheeke then he hath wasted it are": [0, 65535], "then he hath wasted it are my": [0, 65535], "he hath wasted it are my discourses": [0, 65535], "hath wasted it are my discourses dull": [0, 65535], "wasted it are my discourses dull barren": [0, 65535], "it are my discourses dull barren my": [0, 65535], "are my discourses dull barren my wit": [0, 65535], "my discourses dull barren my wit if": [0, 65535], "discourses dull barren my wit if voluble": [0, 65535], "dull barren my wit if voluble and": [0, 65535], "barren my wit if voluble and sharpe": [0, 65535], "my wit if voluble and sharpe discourse": [0, 65535], "wit if voluble and sharpe discourse be": [0, 65535], "if voluble and sharpe discourse be mar'd": [0, 65535], "voluble and sharpe discourse be mar'd vnkindnesse": [0, 65535], "and sharpe discourse be mar'd vnkindnesse blunts": [0, 65535], "sharpe discourse be mar'd vnkindnesse blunts it": [0, 65535], "discourse be mar'd vnkindnesse blunts it more": [0, 65535], "be mar'd vnkindnesse blunts it more then": [0, 65535], "mar'd vnkindnesse blunts it more then marble": [0, 65535], "vnkindnesse blunts it more then marble hard": [0, 65535], "blunts it more then marble hard doe": [0, 65535], "it more then marble hard doe their": [0, 65535], "more then marble hard doe their gay": [0, 65535], "then marble hard doe their gay vestments": [0, 65535], "marble hard doe their gay vestments his": [0, 65535], "hard doe their gay vestments his affections": [0, 65535], "doe their gay vestments his affections baite": [0, 65535], "their gay vestments his affections baite that's": [0, 65535], "gay vestments his affections baite that's not": [0, 65535], "vestments his affections baite that's not my": [0, 65535], "his affections baite that's not my fault": [0, 65535], "affections baite that's not my fault hee's": [0, 65535], "baite that's not my fault hee's master": [0, 65535], "that's not my fault hee's master of": [0, 65535], "not my fault hee's master of my": [0, 65535], "my fault hee's master of my state": [0, 65535], "fault hee's master of my state what": [0, 65535], "hee's master of my state what ruines": [0, 65535], "master of my state what ruines are": [0, 65535], "of my state what ruines are in": [0, 65535], "my state what ruines are in me": [0, 65535], "state what ruines are in me that": [0, 65535], "what ruines are in me that can": [0, 65535], "ruines are in me that can be": [0, 65535], "are in me that can be found": [0, 65535], "in me that can be found by": [0, 65535], "me that can be found by him": [0, 65535], "that can be found by him not": [0, 65535], "can be found by him not ruin'd": [0, 65535], "be found by him not ruin'd then": [0, 65535], "found by him not ruin'd then is": [0, 65535], "by him not ruin'd then is he": [0, 65535], "him not ruin'd then is he the": [0, 65535], "not ruin'd then is he the ground": [0, 65535], "ruin'd then is he the ground of": [0, 65535], "then is he the ground of my": [0, 65535], "is he the ground of my defeatures": [0, 65535], "he the ground of my defeatures my": [0, 65535], "the ground of my defeatures my decayed": [0, 65535], "ground of my defeatures my decayed faire": [0, 65535], "of my defeatures my decayed faire a": [0, 65535], "my defeatures my decayed faire a sunnie": [0, 65535], "defeatures my decayed faire a sunnie looke": [0, 65535], "my decayed faire a sunnie looke of": [0, 65535], "decayed faire a sunnie looke of his": [0, 65535], "faire a sunnie looke of his would": [0, 65535], "a sunnie looke of his would soone": [0, 65535], "sunnie looke of his would soone repaire": [0, 65535], "looke of his would soone repaire but": [0, 65535], "of his would soone repaire but too": [0, 65535], "his would soone repaire but too vnruly": [0, 65535], "would soone repaire but too vnruly deere": [0, 65535], "soone repaire but too vnruly deere he": [0, 65535], "repaire but too vnruly deere he breakes": [0, 65535], "but too vnruly deere he breakes the": [0, 65535], "too vnruly deere he breakes the pale": [0, 65535], "vnruly deere he breakes the pale and": [0, 65535], "deere he breakes the pale and feedes": [0, 65535], "he breakes the pale and feedes from": [0, 65535], "breakes the pale and feedes from home": [0, 65535], "the pale and feedes from home poore": [0, 65535], "pale and feedes from home poore i": [0, 65535], "and feedes from home poore i am": [0, 65535], "feedes from home poore i am but": [0, 65535], "from home poore i am but his": [0, 65535], "home poore i am but his stale": [0, 65535], "poore i am but his stale luci": [0, 65535], "i am but his stale luci selfe": [0, 65535], "am but his stale luci selfe harming": [0, 65535], "but his stale luci selfe harming iealousie": [0, 65535], "his stale luci selfe harming iealousie fie": [0, 65535], "stale luci selfe harming iealousie fie beat": [0, 65535], "luci selfe harming iealousie fie beat it": [0, 65535], "selfe harming iealousie fie beat it hence": [0, 65535], "harming iealousie fie beat it hence ad": [0, 65535], "iealousie fie beat it hence ad vnfeeling": [0, 65535], "fie beat it hence ad vnfeeling fools": [0, 65535], "beat it hence ad vnfeeling fools can": [0, 65535], "it hence ad vnfeeling fools can with": [0, 65535], "hence ad vnfeeling fools can with such": [0, 65535], "ad vnfeeling fools can with such wrongs": [0, 65535], "vnfeeling fools can with such wrongs dispence": [0, 65535], "fools can with such wrongs dispence i": [0, 65535], "can with such wrongs dispence i know": [0, 65535], "with such wrongs dispence i know his": [0, 65535], "such wrongs dispence i know his eye": [0, 65535], "wrongs dispence i know his eye doth": [0, 65535], "dispence i know his eye doth homage": [0, 65535], "i know his eye doth homage other": [0, 65535], "know his eye doth homage other where": [0, 65535], "his eye doth homage other where or": [0, 65535], "eye doth homage other where or else": [0, 65535], "doth homage other where or else what": [0, 65535], "homage other where or else what lets": [0, 65535], "other where or else what lets it": [0, 65535], "where or else what lets it but": [0, 65535], "or else what lets it but he": [0, 65535], "else what lets it but he would": [0, 65535], "what lets it but he would be": [0, 65535], "lets it but he would be here": [0, 65535], "it but he would be here sister": [0, 65535], "but he would be here sister you": [0, 65535], "he would be here sister you know": [0, 65535], "would be here sister you know he": [0, 65535], "be here sister you know he promis'd": [0, 65535], "here sister you know he promis'd me": [0, 65535], "sister you know he promis'd me a": [0, 65535], "you know he promis'd me a chaine": [0, 65535], "know he promis'd me a chaine would": [0, 65535], "he promis'd me a chaine would that": [0, 65535], "promis'd me a chaine would that alone": [0, 65535], "me a chaine would that alone a": [0, 65535], "a chaine would that alone a loue": [0, 65535], "chaine would that alone a loue he": [0, 65535], "would that alone a loue he would": [0, 65535], "that alone a loue he would detaine": [0, 65535], "alone a loue he would detaine so": [0, 65535], "a loue he would detaine so he": [0, 65535], "loue he would detaine so he would": [0, 65535], "he would detaine so he would keepe": [0, 65535], "would detaine so he would keepe faire": [0, 65535], "detaine so he would keepe faire quarter": [0, 65535], "so he would keepe faire quarter with": [0, 65535], "he would keepe faire quarter with his": [0, 65535], "would keepe faire quarter with his bed": [0, 65535], "keepe faire quarter with his bed i": [0, 65535], "faire quarter with his bed i see": [0, 65535], "quarter with his bed i see the": [0, 65535], "with his bed i see the iewell": [0, 65535], "his bed i see the iewell best": [0, 65535], "bed i see the iewell best enamaled": [0, 65535], "i see the iewell best enamaled will": [0, 65535], "see the iewell best enamaled will loose": [0, 65535], "the iewell best enamaled will loose his": [0, 65535], "iewell best enamaled will loose his beautie": [0, 65535], "best enamaled will loose his beautie yet": [0, 65535], "enamaled will loose his beautie yet the": [0, 65535], "will loose his beautie yet the gold": [0, 65535], "loose his beautie yet the gold bides": [0, 65535], "his beautie yet the gold bides still": [0, 65535], "beautie yet the gold bides still that": [0, 65535], "yet the gold bides still that others": [0, 65535], "the gold bides still that others touch": [0, 65535], "gold bides still that others touch and": [0, 65535], "bides still that others touch and often": [0, 65535], "still that others touch and often touching": [0, 65535], "that others touch and often touching will": [0, 65535], "others touch and often touching will where": [0, 65535], "touch and often touching will where gold": [0, 65535], "and often touching will where gold and": [0, 65535], "often touching will where gold and no": [0, 65535], "touching will where gold and no man": [0, 65535], "will where gold and no man that": [0, 65535], "where gold and no man that hath": [0, 65535], "gold and no man that hath a": [0, 65535], "and no man that hath a name": [0, 65535], "no man that hath a name by": [0, 65535], "man that hath a name by falshood": [0, 65535], "that hath a name by falshood and": [0, 65535], "hath a name by falshood and corruption": [0, 65535], "a name by falshood and corruption doth": [0, 65535], "name by falshood and corruption doth it": [0, 65535], "by falshood and corruption doth it shame": [0, 65535], "falshood and corruption doth it shame since": [0, 65535], "and corruption doth it shame since that": [0, 65535], "corruption doth it shame since that my": [0, 65535], "doth it shame since that my beautie": [0, 65535], "it shame since that my beautie cannot": [0, 65535], "shame since that my beautie cannot please": [0, 65535], "since that my beautie cannot please his": [0, 65535], "that my beautie cannot please his eie": [0, 65535], "my beautie cannot please his eie ile": [0, 65535], "beautie cannot please his eie ile weepe": [0, 65535], "cannot please his eie ile weepe what's": [0, 65535], "please his eie ile weepe what's left": [0, 65535], "his eie ile weepe what's left away": [0, 65535], "eie ile weepe what's left away and": [0, 65535], "ile weepe what's left away and weeping": [0, 65535], "weepe what's left away and weeping die": [0, 65535], "what's left away and weeping die luci": [0, 65535], "left away and weeping die luci how": [0, 65535], "away and weeping die luci how manie": [0, 65535], "and weeping die luci how manie fond": [0, 65535], "weeping die luci how manie fond fooles": [0, 65535], "die luci how manie fond fooles serue": [0, 65535], "luci how manie fond fooles serue mad": [0, 65535], "how manie fond fooles serue mad ielousie": [0, 65535], "manie fond fooles serue mad ielousie exit": [0, 65535], "fond fooles serue mad ielousie exit enter": [0, 65535], "fooles serue mad ielousie exit enter antipholis": [0, 65535], "serue mad ielousie exit enter antipholis errotis": [0, 65535], "mad ielousie exit enter antipholis errotis ant": [0, 65535], "ielousie exit enter antipholis errotis ant the": [0, 65535], "exit enter antipholis errotis ant the gold": [0, 65535], "enter antipholis errotis ant the gold i": [0, 65535], "antipholis errotis ant the gold i gaue": [0, 65535], "errotis ant the gold i gaue to": [0, 65535], "ant the gold i gaue to dromio": [0, 65535], "the gold i gaue to dromio is": [0, 65535], "gold i gaue to dromio is laid": [0, 65535], "i gaue to dromio is laid vp": [0, 65535], "gaue to dromio is laid vp safe": [0, 65535], "to dromio is laid vp safe at": [0, 65535], "dromio is laid vp safe at the": [0, 65535], "is laid vp safe at the centaur": [0, 65535], "laid vp safe at the centaur and": [0, 65535], "vp safe at the centaur and the": [0, 65535], "safe at the centaur and the heedfull": [0, 65535], "at the centaur and the heedfull slaue": [0, 65535], "the centaur and the heedfull slaue is": [0, 65535], "centaur and the heedfull slaue is wandred": [0, 65535], "and the heedfull slaue is wandred forth": [0, 65535], "the heedfull slaue is wandred forth in": [0, 65535], "heedfull slaue is wandred forth in care": [0, 65535], "slaue is wandred forth in care to": [0, 65535], "is wandred forth in care to seeke": [0, 65535], "wandred forth in care to seeke me": [0, 65535], "forth in care to seeke me out": [0, 65535], "in care to seeke me out by": [0, 65535], "care to seeke me out by computation": [0, 65535], "to seeke me out by computation and": [0, 65535], "seeke me out by computation and mine": [0, 65535], "me out by computation and mine hosts": [0, 65535], "out by computation and mine hosts report": [0, 65535], "by computation and mine hosts report i": [0, 65535], "computation and mine hosts report i could": [0, 65535], "and mine hosts report i could not": [0, 65535], "mine hosts report i could not speake": [0, 65535], "hosts report i could not speake with": [0, 65535], "report i could not speake with dromio": [0, 65535], "i could not speake with dromio since": [0, 65535], "could not speake with dromio since at": [0, 65535], "not speake with dromio since at first": [0, 65535], "speake with dromio since at first i": [0, 65535], "with dromio since at first i sent": [0, 65535], "dromio since at first i sent him": [0, 65535], "since at first i sent him from": [0, 65535], "at first i sent him from the": [0, 65535], "first i sent him from the mart": [0, 65535], "i sent him from the mart see": [0, 65535], "sent him from the mart see here": [0, 65535], "him from the mart see here he": [0, 65535], "from the mart see here he comes": [0, 65535], "the mart see here he comes enter": [0, 65535], "mart see here he comes enter dromio": [0, 65535], "see here he comes enter dromio siracusia": [0, 65535], "here he comes enter dromio siracusia how": [0, 65535], "he comes enter dromio siracusia how now": [0, 65535], "comes enter dromio siracusia how now sir": [0, 65535], "enter dromio siracusia how now sir is": [0, 65535], "dromio siracusia how now sir is your": [0, 65535], "siracusia how now sir is your merrie": [0, 65535], "how now sir is your merrie humor": [0, 65535], "now sir is your merrie humor alter'd": [0, 65535], "sir is your merrie humor alter'd as": [0, 65535], "is your merrie humor alter'd as you": [0, 65535], "your merrie humor alter'd as you loue": [0, 65535], "merrie humor alter'd as you loue stroakes": [0, 65535], "humor alter'd as you loue stroakes so": [0, 65535], "alter'd as you loue stroakes so iest": [0, 65535], "as you loue stroakes so iest with": [0, 65535], "you loue stroakes so iest with me": [0, 65535], "loue stroakes so iest with me againe": [0, 65535], "stroakes so iest with me againe you": [0, 65535], "so iest with me againe you know": [0, 65535], "iest with me againe you know no": [0, 65535], "with me againe you know no centaur": [0, 65535], "me againe you know no centaur you": [0, 65535], "againe you know no centaur you receiu'd": [0, 65535], "you know no centaur you receiu'd no": [0, 65535], "know no centaur you receiu'd no gold": [0, 65535], "no centaur you receiu'd no gold your": [0, 65535], "centaur you receiu'd no gold your mistresse": [0, 65535], "you receiu'd no gold your mistresse sent": [0, 65535], "receiu'd no gold your mistresse sent to": [0, 65535], "no gold your mistresse sent to haue": [0, 65535], "gold your mistresse sent to haue me": [0, 65535], "your mistresse sent to haue me home": [0, 65535], "mistresse sent to haue me home to": [0, 65535], "sent to haue me home to dinner": [0, 65535], "to haue me home to dinner my": [0, 65535], "haue me home to dinner my house": [0, 65535], "me home to dinner my house was": [0, 65535], "home to dinner my house was at": [0, 65535], "to dinner my house was at the": [0, 65535], "dinner my house was at the ph\u0153nix": [0, 65535], "my house was at the ph\u0153nix wast": [0, 65535], "house was at the ph\u0153nix wast thou": [0, 65535], "was at the ph\u0153nix wast thou mad": [0, 65535], "at the ph\u0153nix wast thou mad that": [0, 65535], "the ph\u0153nix wast thou mad that thus": [0, 65535], "ph\u0153nix wast thou mad that thus so": [0, 65535], "wast thou mad that thus so madlie": [0, 65535], "thou mad that thus so madlie thou": [0, 65535], "mad that thus so madlie thou did": [0, 65535], "that thus so madlie thou did didst": [0, 65535], "thus so madlie thou did didst answere": [0, 65535], "so madlie thou did didst answere me": [0, 65535], "madlie thou did didst answere me s": [0, 65535], "thou did didst answere me s dro": [0, 65535], "did didst answere me s dro what": [0, 65535], "didst answere me s dro what answer": [0, 65535], "answere me s dro what answer sir": [0, 65535], "me s dro what answer sir when": [0, 65535], "s dro what answer sir when spake": [0, 65535], "dro what answer sir when spake i": [0, 65535], "what answer sir when spake i such": [0, 65535], "answer sir when spake i such a": [0, 65535], "sir when spake i such a word": [0, 65535], "when spake i such a word e": [0, 65535], "spake i such a word e ant": [0, 65535], "i such a word e ant euen": [0, 65535], "such a word e ant euen now": [0, 65535], "a word e ant euen now euen": [0, 65535], "word e ant euen now euen here": [0, 65535], "e ant euen now euen here not": [0, 65535], "ant euen now euen here not halfe": [0, 65535], "euen now euen here not halfe an": [0, 65535], "now euen here not halfe an howre": [0, 65535], "euen here not halfe an howre since": [0, 65535], "here not halfe an howre since s": [0, 65535], "not halfe an howre since s dro": [0, 65535], "halfe an howre since s dro i": [0, 65535], "an howre since s dro i did": [0, 65535], "howre since s dro i did not": [0, 65535], "since s dro i did not see": [0, 65535], "s dro i did not see you": [0, 65535], "dro i did not see you since": [0, 65535], "i did not see you since you": [0, 65535], "did not see you since you sent": [0, 65535], "not see you since you sent me": [0, 65535], "see you since you sent me hence": [0, 65535], "you since you sent me hence home": [0, 65535], "since you sent me hence home to": [0, 65535], "you sent me hence home to the": [0, 65535], "sent me hence home to the centaur": [0, 65535], "me hence home to the centaur with": [0, 65535], "hence home to the centaur with the": [0, 65535], "home to the centaur with the gold": [0, 65535], "to the centaur with the gold you": [0, 65535], "the centaur with the gold you gaue": [0, 65535], "centaur with the gold you gaue me": [0, 65535], "with the gold you gaue me ant": [0, 65535], "the gold you gaue me ant villaine": [0, 65535], "gold you gaue me ant villaine thou": [0, 65535], "you gaue me ant villaine thou didst": [0, 65535], "gaue me ant villaine thou didst denie": [0, 65535], "me ant villaine thou didst denie the": [0, 65535], "ant villaine thou didst denie the golds": [0, 65535], "villaine thou didst denie the golds receit": [0, 65535], "thou didst denie the golds receit and": [0, 65535], "didst denie the golds receit and toldst": [0, 65535], "denie the golds receit and toldst me": [0, 65535], "the golds receit and toldst me of": [0, 65535], "golds receit and toldst me of a": [0, 65535], "receit and toldst me of a mistresse": [0, 65535], "and toldst me of a mistresse and": [0, 65535], "toldst me of a mistresse and a": [0, 65535], "me of a mistresse and a dinner": [0, 65535], "of a mistresse and a dinner for": [0, 65535], "a mistresse and a dinner for which": [0, 65535], "mistresse and a dinner for which i": [0, 65535], "and a dinner for which i hope": [0, 65535], "a dinner for which i hope thou": [0, 65535], "dinner for which i hope thou feltst": [0, 65535], "for which i hope thou feltst i": [0, 65535], "which i hope thou feltst i was": [0, 65535], "i hope thou feltst i was displeas'd": [0, 65535], "hope thou feltst i was displeas'd s": [0, 65535], "thou feltst i was displeas'd s dro": [0, 65535], "feltst i was displeas'd s dro i": [0, 65535], "i was displeas'd s dro i am": [0, 65535], "was displeas'd s dro i am glad": [0, 65535], "displeas'd s dro i am glad to": [0, 65535], "s dro i am glad to see": [0, 65535], "dro i am glad to see you": [0, 65535], "i am glad to see you in": [0, 65535], "am glad to see you in this": [0, 65535], "glad to see you in this merrie": [0, 65535], "to see you in this merrie vaine": [0, 65535], "see you in this merrie vaine what": [0, 65535], "you in this merrie vaine what meanes": [0, 65535], "in this merrie vaine what meanes this": [0, 65535], "this merrie vaine what meanes this iest": [0, 65535], "merrie vaine what meanes this iest i": [0, 65535], "vaine what meanes this iest i pray": [0, 65535], "what meanes this iest i pray you": [0, 65535], "meanes this iest i pray you master": [0, 65535], "this iest i pray you master tell": [0, 65535], "iest i pray you master tell me": [0, 65535], "i pray you master tell me ant": [0, 65535], "pray you master tell me ant yea": [0, 65535], "you master tell me ant yea dost": [0, 65535], "master tell me ant yea dost thou": [0, 65535], "tell me ant yea dost thou ieere": [0, 65535], "me ant yea dost thou ieere flowt": [0, 65535], "ant yea dost thou ieere flowt me": [0, 65535], "yea dost thou ieere flowt me in": [0, 65535], "dost thou ieere flowt me in the": [0, 65535], "thou ieere flowt me in the teeth": [0, 65535], "ieere flowt me in the teeth thinkst": [0, 65535], "flowt me in the teeth thinkst thou": [0, 65535], "me in the teeth thinkst thou i": [0, 65535], "in the teeth thinkst thou i iest": [0, 65535], "the teeth thinkst thou i iest hold": [0, 65535], "teeth thinkst thou i iest hold take": [0, 65535], "thinkst thou i iest hold take thou": [0, 65535], "thou i iest hold take thou that": [0, 65535], "i iest hold take thou that that": [0, 65535], "iest hold take thou that that beats": [0, 65535], "hold take thou that that beats dro": [0, 65535], "take thou that that beats dro s": [0, 65535], "thou that that beats dro s dr": [0, 65535], "that that beats dro s dr hold": [0, 65535], "that beats dro s dr hold sir": [0, 65535], "beats dro s dr hold sir for": [0, 65535], "dro s dr hold sir for gods": [0, 65535], "s dr hold sir for gods sake": [0, 65535], "dr hold sir for gods sake now": [0, 65535], "hold sir for gods sake now your": [0, 65535], "sir for gods sake now your iest": [0, 65535], "for gods sake now your iest is": [0, 65535], "gods sake now your iest is earnest": [0, 65535], "sake now your iest is earnest vpon": [0, 65535], "now your iest is earnest vpon what": [0, 65535], "your iest is earnest vpon what bargaine": [0, 65535], "iest is earnest vpon what bargaine do": [0, 65535], "is earnest vpon what bargaine do you": [0, 65535], "earnest vpon what bargaine do you giue": [0, 65535], "vpon what bargaine do you giue it": [0, 65535], "what bargaine do you giue it me": [0, 65535], "bargaine do you giue it me antiph": [0, 65535], "do you giue it me antiph because": [0, 65535], "you giue it me antiph because that": [0, 65535], "giue it me antiph because that i": [0, 65535], "it me antiph because that i familiarlie": [0, 65535], "me antiph because that i familiarlie sometimes": [0, 65535], "antiph because that i familiarlie sometimes doe": [0, 65535], "because that i familiarlie sometimes doe vse": [0, 65535], "that i familiarlie sometimes doe vse you": [0, 65535], "i familiarlie sometimes doe vse you for": [0, 65535], "familiarlie sometimes doe vse you for my": [0, 65535], "sometimes doe vse you for my foole": [0, 65535], "doe vse you for my foole and": [0, 65535], "vse you for my foole and chat": [0, 65535], "you for my foole and chat with": [0, 65535], "for my foole and chat with you": [0, 65535], "my foole and chat with you your": [0, 65535], "foole and chat with you your sawcinesse": [0, 65535], "and chat with you your sawcinesse will": [0, 65535], "chat with you your sawcinesse will iest": [0, 65535], "with you your sawcinesse will iest vpon": [0, 65535], "you your sawcinesse will iest vpon my": [0, 65535], "your sawcinesse will iest vpon my loue": [0, 65535], "sawcinesse will iest vpon my loue and": [0, 65535], "will iest vpon my loue and make": [0, 65535], "iest vpon my loue and make a": [0, 65535], "vpon my loue and make a common": [0, 65535], "my loue and make a common of": [0, 65535], "loue and make a common of my": [0, 65535], "and make a common of my serious": [0, 65535], "make a common of my serious howres": [0, 65535], "a common of my serious howres when": [0, 65535], "common of my serious howres when the": [0, 65535], "of my serious howres when the sunne": [0, 65535], "my serious howres when the sunne shines": [0, 65535], "serious howres when the sunne shines let": [0, 65535], "howres when the sunne shines let foolish": [0, 65535], "when the sunne shines let foolish gnats": [0, 65535], "the sunne shines let foolish gnats make": [0, 65535], "sunne shines let foolish gnats make sport": [0, 65535], "shines let foolish gnats make sport but": [0, 65535], "let foolish gnats make sport but creepe": [0, 65535], "foolish gnats make sport but creepe in": [0, 65535], "gnats make sport but creepe in crannies": [0, 65535], "make sport but creepe in crannies when": [0, 65535], "sport but creepe in crannies when he": [0, 65535], "but creepe in crannies when he hides": [0, 65535], "creepe in crannies when he hides his": [0, 65535], "in crannies when he hides his beames": [0, 65535], "crannies when he hides his beames if": [0, 65535], "when he hides his beames if you": [0, 65535], "he hides his beames if you will": [0, 65535], "hides his beames if you will iest": [0, 65535], "his beames if you will iest with": [0, 65535], "beames if you will iest with me": [0, 65535], "if you will iest with me know": [0, 65535], "you will iest with me know my": [0, 65535], "will iest with me know my aspect": [0, 65535], "iest with me know my aspect and": [0, 65535], "with me know my aspect and fashion": [0, 65535], "me know my aspect and fashion your": [0, 65535], "know my aspect and fashion your demeanor": [0, 65535], "my aspect and fashion your demeanor to": [0, 65535], "aspect and fashion your demeanor to my": [0, 65535], "and fashion your demeanor to my lookes": [0, 65535], "fashion your demeanor to my lookes or": [0, 65535], "your demeanor to my lookes or i": [0, 65535], "demeanor to my lookes or i will": [0, 65535], "to my lookes or i will beat": [0, 65535], "my lookes or i will beat this": [0, 65535], "lookes or i will beat this method": [0, 65535], "or i will beat this method in": [0, 65535], "i will beat this method in your": [0, 65535], "will beat this method in your sconce": [0, 65535], "beat this method in your sconce s": [0, 65535], "this method in your sconce s dro": [0, 65535], "method in your sconce s dro sconce": [0, 65535], "in your sconce s dro sconce call": [0, 65535], "your sconce s dro sconce call you": [0, 65535], "sconce s dro sconce call you it": [0, 65535], "s dro sconce call you it so": [0, 65535], "dro sconce call you it so you": [0, 65535], "sconce call you it so you would": [0, 65535], "call you it so you would leaue": [0, 65535], "you it so you would leaue battering": [0, 65535], "it so you would leaue battering i": [0, 65535], "so you would leaue battering i had": [0, 65535], "you would leaue battering i had rather": [0, 65535], "would leaue battering i had rather haue": [0, 65535], "leaue battering i had rather haue it": [0, 65535], "battering i had rather haue it a": [0, 65535], "i had rather haue it a head": [0, 65535], "had rather haue it a head and": [0, 65535], "rather haue it a head and you": [0, 65535], "haue it a head and you vse": [0, 65535], "it a head and you vse these": [0, 65535], "a head and you vse these blows": [0, 65535], "head and you vse these blows long": [0, 65535], "and you vse these blows long i": [0, 65535], "you vse these blows long i must": [0, 65535], "vse these blows long i must get": [0, 65535], "these blows long i must get a": [0, 65535], "blows long i must get a sconce": [0, 65535], "long i must get a sconce for": [0, 65535], "i must get a sconce for my": [0, 65535], "must get a sconce for my head": [0, 65535], "get a sconce for my head and": [0, 65535], "a sconce for my head and insconce": [0, 65535], "sconce for my head and insconce it": [0, 65535], "for my head and insconce it to": [0, 65535], "my head and insconce it to or": [0, 65535], "head and insconce it to or else": [0, 65535], "and insconce it to or else i": [0, 65535], "insconce it to or else i shall": [0, 65535], "it to or else i shall seek": [0, 65535], "to or else i shall seek my": [0, 65535], "or else i shall seek my wit": [0, 65535], "else i shall seek my wit in": [0, 65535], "i shall seek my wit in my": [0, 65535], "shall seek my wit in my shoulders": [0, 65535], "seek my wit in my shoulders but": [0, 65535], "my wit in my shoulders but i": [0, 65535], "wit in my shoulders but i pray": [0, 65535], "in my shoulders but i pray sir": [0, 65535], "my shoulders but i pray sir why": [0, 65535], "shoulders but i pray sir why am": [0, 65535], "but i pray sir why am i": [0, 65535], "i pray sir why am i beaten": [0, 65535], "pray sir why am i beaten ant": [0, 65535], "sir why am i beaten ant dost": [0, 65535], "why am i beaten ant dost thou": [0, 65535], "am i beaten ant dost thou not": [0, 65535], "i beaten ant dost thou not know": [0, 65535], "beaten ant dost thou not know s": [0, 65535], "ant dost thou not know s dro": [0, 65535], "dost thou not know s dro nothing": [0, 65535], "thou not know s dro nothing sir": [0, 65535], "not know s dro nothing sir but": [0, 65535], "know s dro nothing sir but that": [0, 65535], "s dro nothing sir but that i": [0, 65535], "dro nothing sir but that i am": [0, 65535], "nothing sir but that i am beaten": [0, 65535], "sir but that i am beaten ant": [0, 65535], "but that i am beaten ant shall": [0, 65535], "that i am beaten ant shall i": [0, 65535], "i am beaten ant shall i tell": [0, 65535], "am beaten ant shall i tell you": [0, 65535], "beaten ant shall i tell you why": [0, 65535], "ant shall i tell you why s": [0, 65535], "shall i tell you why s dro": [0, 65535], "i tell you why s dro i": [0, 65535], "tell you why s dro i sir": [0, 65535], "you why s dro i sir and": [0, 65535], "why s dro i sir and wherefore": [0, 65535], "s dro i sir and wherefore for": [0, 65535], "dro i sir and wherefore for they": [0, 65535], "i sir and wherefore for they say": [0, 65535], "sir and wherefore for they say euery": [0, 65535], "and wherefore for they say euery why": [0, 65535], "wherefore for they say euery why hath": [0, 65535], "for they say euery why hath a": [0, 65535], "they say euery why hath a wherefore": [0, 65535], "say euery why hath a wherefore ant": [0, 65535], "euery why hath a wherefore ant why": [0, 65535], "why hath a wherefore ant why first": [0, 65535], "hath a wherefore ant why first for": [0, 65535], "a wherefore ant why first for flowting": [0, 65535], "wherefore ant why first for flowting me": [0, 65535], "ant why first for flowting me and": [0, 65535], "why first for flowting me and then": [0, 65535], "first for flowting me and then wherefore": [0, 65535], "for flowting me and then wherefore for": [0, 65535], "flowting me and then wherefore for vrging": [0, 65535], "me and then wherefore for vrging it": [0, 65535], "and then wherefore for vrging it the": [0, 65535], "then wherefore for vrging it the second": [0, 65535], "wherefore for vrging it the second time": [0, 65535], "for vrging it the second time to": [0, 65535], "vrging it the second time to me": [0, 65535], "it the second time to me s": [0, 65535], "the second time to me s dro": [0, 65535], "second time to me s dro was": [0, 65535], "time to me s dro was there": [0, 65535], "to me s dro was there euer": [0, 65535], "me s dro was there euer anie": [0, 65535], "s dro was there euer anie man": [0, 65535], "dro was there euer anie man thus": [0, 65535], "was there euer anie man thus beaten": [0, 65535], "there euer anie man thus beaten out": [0, 65535], "euer anie man thus beaten out of": [0, 65535], "anie man thus beaten out of season": [0, 65535], "man thus beaten out of season when": [0, 65535], "thus beaten out of season when in": [0, 65535], "beaten out of season when in the": [0, 65535], "out of season when in the why": [0, 65535], "of season when in the why and": [0, 65535], "season when in the why and the": [0, 65535], "when in the why and the wherefore": [0, 65535], "in the why and the wherefore is": [0, 65535], "the why and the wherefore is neither": [0, 65535], "why and the wherefore is neither rime": [0, 65535], "and the wherefore is neither rime nor": [0, 65535], "the wherefore is neither rime nor reason": [0, 65535], "wherefore is neither rime nor reason well": [0, 65535], "is neither rime nor reason well sir": [0, 65535], "neither rime nor reason well sir i": [0, 65535], "rime nor reason well sir i thanke": [0, 65535], "nor reason well sir i thanke you": [0, 65535], "reason well sir i thanke you ant": [0, 65535], "well sir i thanke you ant thanke": [0, 65535], "sir i thanke you ant thanke me": [0, 65535], "i thanke you ant thanke me sir": [0, 65535], "thanke you ant thanke me sir for": [0, 65535], "you ant thanke me sir for what": [0, 65535], "ant thanke me sir for what s": [0, 65535], "thanke me sir for what s dro": [0, 65535], "me sir for what s dro marry": [0, 65535], "sir for what s dro marry sir": [0, 65535], "for what s dro marry sir for": [0, 65535], "what s dro marry sir for this": [0, 65535], "s dro marry sir for this something": [0, 65535], "dro marry sir for this something that": [0, 65535], "marry sir for this something that you": [0, 65535], "sir for this something that you gaue": [0, 65535], "for this something that you gaue me": [0, 65535], "this something that you gaue me for": [0, 65535], "something that you gaue me for nothing": [0, 65535], "that you gaue me for nothing ant": [0, 65535], "you gaue me for nothing ant ile": [0, 65535], "gaue me for nothing ant ile make": [0, 65535], "me for nothing ant ile make you": [0, 65535], "for nothing ant ile make you amends": [0, 65535], "nothing ant ile make you amends next": [0, 65535], "ant ile make you amends next to": [0, 65535], "ile make you amends next to giue": [0, 65535], "make you amends next to giue you": [0, 65535], "you amends next to giue you nothing": [0, 65535], "amends next to giue you nothing for": [0, 65535], "next to giue you nothing for something": [0, 65535], "to giue you nothing for something but": [0, 65535], "giue you nothing for something but say": [0, 65535], "you nothing for something but say sir": [0, 65535], "nothing for something but say sir is": [0, 65535], "for something but say sir is it": [0, 65535], "something but say sir is it dinner": [0, 65535], "but say sir is it dinner time": [0, 65535], "say sir is it dinner time s": [0, 65535], "sir is it dinner time s dro": [0, 65535], "is it dinner time s dro no": [0, 65535], "it dinner time s dro no sir": [0, 65535], "dinner time s dro no sir i": [0, 65535], "time s dro no sir i thinke": [0, 65535], "s dro no sir i thinke the": [0, 65535], "dro no sir i thinke the meat": [0, 65535], "no sir i thinke the meat wants": [0, 65535], "sir i thinke the meat wants that": [0, 65535], "i thinke the meat wants that i": [0, 65535], "thinke the meat wants that i haue": [0, 65535], "the meat wants that i haue ant": [0, 65535], "meat wants that i haue ant in": [0, 65535], "wants that i haue ant in good": [0, 65535], "that i haue ant in good time": [0, 65535], "i haue ant in good time sir": [0, 65535], "haue ant in good time sir what's": [0, 65535], "ant in good time sir what's that": [0, 65535], "in good time sir what's that s": [0, 65535], "good time sir what's that s dro": [0, 65535], "time sir what's that s dro basting": [0, 65535], "sir what's that s dro basting ant": [0, 65535], "what's that s dro basting ant well": [0, 65535], "that s dro basting ant well sir": [0, 65535], "s dro basting ant well sir then": [0, 65535], "dro basting ant well sir then 'twill": [0, 65535], "basting ant well sir then 'twill be": [0, 65535], "ant well sir then 'twill be drie": [0, 65535], "well sir then 'twill be drie s": [0, 65535], "sir then 'twill be drie s dro": [0, 65535], "then 'twill be drie s dro if": [0, 65535], "'twill be drie s dro if it": [0, 65535], "be drie s dro if it be": [0, 65535], "drie s dro if it be sir": [0, 65535], "s dro if it be sir i": [0, 65535], "dro if it be sir i pray": [0, 65535], "if it be sir i pray you": [0, 65535], "it be sir i pray you eat": [0, 65535], "be sir i pray you eat none": [0, 65535], "sir i pray you eat none of": [0, 65535], "i pray you eat none of it": [0, 65535], "pray you eat none of it ant": [0, 65535], "you eat none of it ant your": [0, 65535], "eat none of it ant your reason": [0, 65535], "none of it ant your reason s": [0, 65535], "of it ant your reason s dro": [0, 65535], "it ant your reason s dro lest": [0, 65535], "ant your reason s dro lest it": [0, 65535], "your reason s dro lest it make": [0, 65535], "reason s dro lest it make you": [0, 65535], "s dro lest it make you chollericke": [0, 65535], "dro lest it make you chollericke and": [0, 65535], "lest it make you chollericke and purchase": [0, 65535], "it make you chollericke and purchase me": [0, 65535], "make you chollericke and purchase me another": [0, 65535], "you chollericke and purchase me another drie": [0, 65535], "chollericke and purchase me another drie basting": [0, 65535], "and purchase me another drie basting ant": [0, 65535], "purchase me another drie basting ant well": [0, 65535], "me another drie basting ant well sir": [0, 65535], "another drie basting ant well sir learne": [0, 65535], "drie basting ant well sir learne to": [0, 65535], "basting ant well sir learne to iest": [0, 65535], "ant well sir learne to iest in": [0, 65535], "well sir learne to iest in good": [0, 65535], "sir learne to iest in good time": [0, 65535], "learne to iest in good time there's": [0, 65535], "to iest in good time there's a": [0, 65535], "iest in good time there's a time": [0, 65535], "in good time there's a time for": [0, 65535], "good time there's a time for all": [0, 65535], "time there's a time for all things": [0, 65535], "there's a time for all things s": [0, 65535], "a time for all things s dro": [0, 65535], "time for all things s dro i": [0, 65535], "for all things s dro i durst": [0, 65535], "all things s dro i durst haue": [0, 65535], "things s dro i durst haue denied": [0, 65535], "s dro i durst haue denied that": [0, 65535], "dro i durst haue denied that before": [0, 65535], "i durst haue denied that before you": [0, 65535], "durst haue denied that before you were": [0, 65535], "haue denied that before you were so": [0, 65535], "denied that before you were so chollericke": [0, 65535], "that before you were so chollericke anti": [0, 65535], "before you were so chollericke anti by": [0, 65535], "you were so chollericke anti by what": [0, 65535], "were so chollericke anti by what rule": [0, 65535], "so chollericke anti by what rule sir": [0, 65535], "chollericke anti by what rule sir s": [0, 65535], "anti by what rule sir s dro": [0, 65535], "by what rule sir s dro marry": [0, 65535], "what rule sir s dro marry sir": [0, 65535], "rule sir s dro marry sir by": [0, 65535], "sir s dro marry sir by a": [0, 65535], "s dro marry sir by a rule": [0, 65535], "dro marry sir by a rule as": [0, 65535], "marry sir by a rule as plaine": [0, 65535], "sir by a rule as plaine as": [0, 65535], "by a rule as plaine as the": [0, 65535], "a rule as plaine as the plaine": [0, 65535], "rule as plaine as the plaine bald": [0, 65535], "as plaine as the plaine bald pate": [0, 65535], "plaine as the plaine bald pate of": [0, 65535], "as the plaine bald pate of father": [0, 65535], "the plaine bald pate of father time": [0, 65535], "plaine bald pate of father time himselfe": [0, 65535], "bald pate of father time himselfe ant": [0, 65535], "pate of father time himselfe ant let's": [0, 65535], "of father time himselfe ant let's heare": [0, 65535], "father time himselfe ant let's heare it": [0, 65535], "time himselfe ant let's heare it s": [0, 65535], "himselfe ant let's heare it s dro": [0, 65535], "ant let's heare it s dro there's": [0, 65535], "let's heare it s dro there's no": [0, 65535], "heare it s dro there's no time": [0, 65535], "it s dro there's no time for": [0, 65535], "s dro there's no time for a": [0, 65535], "dro there's no time for a man": [0, 65535], "there's no time for a man to": [0, 65535], "no time for a man to recouer": [0, 65535], "time for a man to recouer his": [0, 65535], "for a man to recouer his haire": [0, 65535], "a man to recouer his haire that": [0, 65535], "man to recouer his haire that growes": [0, 65535], "to recouer his haire that growes bald": [0, 65535], "recouer his haire that growes bald by": [0, 65535], "his haire that growes bald by nature": [0, 65535], "haire that growes bald by nature ant": [0, 65535], "that growes bald by nature ant may": [0, 65535], "growes bald by nature ant may he": [0, 65535], "bald by nature ant may he not": [0, 65535], "by nature ant may he not doe": [0, 65535], "nature ant may he not doe it": [0, 65535], "ant may he not doe it by": [0, 65535], "may he not doe it by fine": [0, 65535], "he not doe it by fine and": [0, 65535], "not doe it by fine and recouerie": [0, 65535], "doe it by fine and recouerie s": [0, 65535], "it by fine and recouerie s dro": [0, 65535], "by fine and recouerie s dro yes": [0, 65535], "fine and recouerie s dro yes to": [0, 65535], "and recouerie s dro yes to pay": [0, 65535], "recouerie s dro yes to pay a": [0, 65535], "s dro yes to pay a fine": [0, 65535], "dro yes to pay a fine for": [0, 65535], "yes to pay a fine for a": [0, 65535], "to pay a fine for a perewig": [0, 65535], "pay a fine for a perewig and": [0, 65535], "a fine for a perewig and recouer": [0, 65535], "fine for a perewig and recouer the": [0, 65535], "for a perewig and recouer the lost": [0, 65535], "a perewig and recouer the lost haire": [0, 65535], "perewig and recouer the lost haire of": [0, 65535], "and recouer the lost haire of another": [0, 65535], "recouer the lost haire of another man": [0, 65535], "the lost haire of another man ant": [0, 65535], "lost haire of another man ant why": [0, 65535], "haire of another man ant why is": [0, 65535], "of another man ant why is time": [0, 65535], "another man ant why is time such": [0, 65535], "man ant why is time such a": [0, 65535], "ant why is time such a niggard": [0, 65535], "why is time such a niggard of": [0, 65535], "is time such a niggard of haire": [0, 65535], "time such a niggard of haire being": [0, 65535], "such a niggard of haire being as": [0, 65535], "a niggard of haire being as it": [0, 65535], "niggard of haire being as it is": [0, 65535], "of haire being as it is so": [0, 65535], "haire being as it is so plentifull": [0, 65535], "being as it is so plentifull an": [0, 65535], "as it is so plentifull an excrement": [0, 65535], "it is so plentifull an excrement s": [0, 65535], "is so plentifull an excrement s dro": [0, 65535], "so plentifull an excrement s dro because": [0, 65535], "plentifull an excrement s dro because it": [0, 65535], "an excrement s dro because it is": [0, 65535], "excrement s dro because it is a": [0, 65535], "s dro because it is a blessing": [0, 65535], "dro because it is a blessing that": [0, 65535], "because it is a blessing that hee": [0, 65535], "it is a blessing that hee bestowes": [0, 65535], "is a blessing that hee bestowes on": [0, 65535], "a blessing that hee bestowes on beasts": [0, 65535], "blessing that hee bestowes on beasts and": [0, 65535], "that hee bestowes on beasts and what": [0, 65535], "hee bestowes on beasts and what he": [0, 65535], "bestowes on beasts and what he hath": [0, 65535], "on beasts and what he hath scanted": [0, 65535], "beasts and what he hath scanted them": [0, 65535], "and what he hath scanted them in": [0, 65535], "what he hath scanted them in haire": [0, 65535], "he hath scanted them in haire hee": [0, 65535], "hath scanted them in haire hee hath": [0, 65535], "scanted them in haire hee hath giuen": [0, 65535], "them in haire hee hath giuen them": [0, 65535], "in haire hee hath giuen them in": [0, 65535], "haire hee hath giuen them in wit": [0, 65535], "hee hath giuen them in wit ant": [0, 65535], "hath giuen them in wit ant why": [0, 65535], "giuen them in wit ant why but": [0, 65535], "them in wit ant why but theres": [0, 65535], "in wit ant why but theres manie": [0, 65535], "wit ant why but theres manie a": [0, 65535], "ant why but theres manie a man": [0, 65535], "why but theres manie a man hath": [0, 65535], "but theres manie a man hath more": [0, 65535], "theres manie a man hath more haire": [0, 65535], "manie a man hath more haire then": [0, 65535], "a man hath more haire then wit": [0, 65535], "man hath more haire then wit s": [0, 65535], "hath more haire then wit s dro": [0, 65535], "more haire then wit s dro not": [0, 65535], "haire then wit s dro not a": [0, 65535], "then wit s dro not a man": [0, 65535], "wit s dro not a man of": [0, 65535], "s dro not a man of those": [0, 65535], "dro not a man of those but": [0, 65535], "not a man of those but he": [0, 65535], "a man of those but he hath": [0, 65535], "man of those but he hath the": [0, 65535], "of those but he hath the wit": [0, 65535], "those but he hath the wit to": [0, 65535], "but he hath the wit to lose": [0, 65535], "he hath the wit to lose his": [0, 65535], "hath the wit to lose his haire": [0, 65535], "the wit to lose his haire ant": [0, 65535], "wit to lose his haire ant why": [0, 65535], "to lose his haire ant why thou": [0, 65535], "lose his haire ant why thou didst": [0, 65535], "his haire ant why thou didst conclude": [0, 65535], "haire ant why thou didst conclude hairy": [0, 65535], "ant why thou didst conclude hairy men": [0, 65535], "why thou didst conclude hairy men plain": [0, 65535], "thou didst conclude hairy men plain dealers": [0, 65535], "didst conclude hairy men plain dealers without": [0, 65535], "conclude hairy men plain dealers without wit": [0, 65535], "hairy men plain dealers without wit s": [0, 65535], "men plain dealers without wit s dro": [0, 65535], "plain dealers without wit s dro the": [0, 65535], "dealers without wit s dro the plainer": [0, 65535], "without wit s dro the plainer dealer": [0, 65535], "wit s dro the plainer dealer the": [0, 65535], "s dro the plainer dealer the sooner": [0, 65535], "dro the plainer dealer the sooner lost": [0, 65535], "the plainer dealer the sooner lost yet": [0, 65535], "plainer dealer the sooner lost yet he": [0, 65535], "dealer the sooner lost yet he looseth": [0, 65535], "the sooner lost yet he looseth it": [0, 65535], "sooner lost yet he looseth it in": [0, 65535], "lost yet he looseth it in a": [0, 65535], "yet he looseth it in a kinde": [0, 65535], "he looseth it in a kinde of": [0, 65535], "looseth it in a kinde of iollitie": [0, 65535], "it in a kinde of iollitie an": [0, 65535], "in a kinde of iollitie an for": [0, 65535], "a kinde of iollitie an for what": [0, 65535], "kinde of iollitie an for what reason": [0, 65535], "of iollitie an for what reason s": [0, 65535], "iollitie an for what reason s dro": [0, 65535], "an for what reason s dro for": [0, 65535], "for what reason s dro for two": [0, 65535], "what reason s dro for two and": [0, 65535], "reason s dro for two and sound": [0, 65535], "s dro for two and sound ones": [0, 65535], "dro for two and sound ones to": [0, 65535], "for two and sound ones to an": [0, 65535], "two and sound ones to an nay": [0, 65535], "and sound ones to an nay not": [0, 65535], "sound ones to an nay not sound": [0, 65535], "ones to an nay not sound i": [0, 65535], "to an nay not sound i pray": [0, 65535], "an nay not sound i pray you": [0, 65535], "nay not sound i pray you s": [0, 65535], "not sound i pray you s dro": [0, 65535], "sound i pray you s dro sure": [0, 65535], "i pray you s dro sure ones": [0, 65535], "pray you s dro sure ones then": [0, 65535], "you s dro sure ones then an": [0, 65535], "s dro sure ones then an nay": [0, 65535], "dro sure ones then an nay not": [0, 65535], "sure ones then an nay not sure": [0, 65535], "ones then an nay not sure in": [0, 65535], "then an nay not sure in a": [0, 65535], "an nay not sure in a thing": [0, 65535], "nay not sure in a thing falsing": [0, 65535], "not sure in a thing falsing s": [0, 65535], "sure in a thing falsing s dro": [0, 65535], "in a thing falsing s dro certaine": [0, 65535], "a thing falsing s dro certaine ones": [0, 65535], "thing falsing s dro certaine ones then": [0, 65535], "falsing s dro certaine ones then an": [0, 65535], "s dro certaine ones then an name": [0, 65535], "dro certaine ones then an name them": [0, 65535], "certaine ones then an name them s": [0, 65535], "ones then an name them s dro": [0, 65535], "then an name them s dro the": [0, 65535], "an name them s dro the one": [0, 65535], "name them s dro the one to": [0, 65535], "them s dro the one to saue": [0, 65535], "s dro the one to saue the": [0, 65535], "dro the one to saue the money": [0, 65535], "the one to saue the money that": [0, 65535], "one to saue the money that he": [0, 65535], "to saue the money that he spends": [0, 65535], "saue the money that he spends in": [0, 65535], "the money that he spends in trying": [0, 65535], "money that he spends in trying the": [0, 65535], "that he spends in trying the other": [0, 65535], "he spends in trying the other that": [0, 65535], "spends in trying the other that at": [0, 65535], "in trying the other that at dinner": [0, 65535], "trying the other that at dinner they": [0, 65535], "the other that at dinner they should": [0, 65535], "other that at dinner they should not": [0, 65535], "that at dinner they should not drop": [0, 65535], "at dinner they should not drop in": [0, 65535], "dinner they should not drop in his": [0, 65535], "they should not drop in his porrage": [0, 65535], "should not drop in his porrage an": [0, 65535], "not drop in his porrage an you": [0, 65535], "drop in his porrage an you would": [0, 65535], "in his porrage an you would all": [0, 65535], "his porrage an you would all this": [0, 65535], "porrage an you would all this time": [0, 65535], "an you would all this time haue": [0, 65535], "you would all this time haue prou'd": [0, 65535], "would all this time haue prou'd there": [0, 65535], "all this time haue prou'd there is": [0, 65535], "this time haue prou'd there is no": [0, 65535], "time haue prou'd there is no time": [0, 65535], "haue prou'd there is no time for": [0, 65535], "prou'd there is no time for all": [0, 65535], "there is no time for all things": [0, 65535], "is no time for all things s": [0, 65535], "no time for all things s dro": [0, 65535], "time for all things s dro marry": [0, 65535], "for all things s dro marry and": [0, 65535], "all things s dro marry and did": [0, 65535], "things s dro marry and did sir": [0, 65535], "s dro marry and did sir namely": [0, 65535], "dro marry and did sir namely in": [0, 65535], "marry and did sir namely in no": [0, 65535], "and did sir namely in no time": [0, 65535], "did sir namely in no time to": [0, 65535], "sir namely in no time to recouer": [0, 65535], "namely in no time to recouer haire": [0, 65535], "in no time to recouer haire lost": [0, 65535], "no time to recouer haire lost by": [0, 65535], "time to recouer haire lost by nature": [0, 65535], "to recouer haire lost by nature an": [0, 65535], "recouer haire lost by nature an but": [0, 65535], "haire lost by nature an but your": [0, 65535], "lost by nature an but your reason": [0, 65535], "by nature an but your reason was": [0, 65535], "nature an but your reason was not": [0, 65535], "an but your reason was not substantiall": [0, 65535], "but your reason was not substantiall why": [0, 65535], "your reason was not substantiall why there": [0, 65535], "reason was not substantiall why there is": [0, 65535], "was not substantiall why there is no": [0, 65535], "not substantiall why there is no time": [0, 65535], "substantiall why there is no time to": [0, 65535], "why there is no time to recouer": [0, 65535], "there is no time to recouer s": [0, 65535], "is no time to recouer s dro": [0, 65535], "no time to recouer s dro thus": [0, 65535], "time to recouer s dro thus i": [0, 65535], "to recouer s dro thus i mend": [0, 65535], "recouer s dro thus i mend it": [0, 65535], "s dro thus i mend it time": [0, 65535], "dro thus i mend it time himselfe": [0, 65535], "thus i mend it time himselfe is": [0, 65535], "i mend it time himselfe is bald": [0, 65535], "mend it time himselfe is bald and": [0, 65535], "it time himselfe is bald and therefore": [0, 65535], "time himselfe is bald and therefore to": [0, 65535], "himselfe is bald and therefore to the": [0, 65535], "is bald and therefore to the worlds": [0, 65535], "bald and therefore to the worlds end": [0, 65535], "and therefore to the worlds end will": [0, 65535], "therefore to the worlds end will haue": [0, 65535], "to the worlds end will haue bald": [0, 65535], "the worlds end will haue bald followers": [0, 65535], "worlds end will haue bald followers an": [0, 65535], "end will haue bald followers an i": [0, 65535], "will haue bald followers an i knew": [0, 65535], "haue bald followers an i knew 'twould": [0, 65535], "bald followers an i knew 'twould be": [0, 65535], "followers an i knew 'twould be a": [0, 65535], "an i knew 'twould be a bald": [0, 65535], "i knew 'twould be a bald conclusion": [0, 65535], "knew 'twould be a bald conclusion but": [0, 65535], "'twould be a bald conclusion but soft": [0, 65535], "be a bald conclusion but soft who": [0, 65535], "a bald conclusion but soft who wafts": [0, 65535], "bald conclusion but soft who wafts vs": [0, 65535], "conclusion but soft who wafts vs yonder": [0, 65535], "but soft who wafts vs yonder enter": [0, 65535], "soft who wafts vs yonder enter adriana": [0, 65535], "who wafts vs yonder enter adriana and": [0, 65535], "wafts vs yonder enter adriana and luciana": [0, 65535], "vs yonder enter adriana and luciana adri": [0, 65535], "yonder enter adriana and luciana adri i": [0, 65535], "enter adriana and luciana adri i i": [0, 65535], "adriana and luciana adri i i antipholus": [0, 65535], "and luciana adri i i antipholus looke": [0, 65535], "luciana adri i i antipholus looke strange": [0, 65535], "adri i i antipholus looke strange and": [0, 65535], "i i antipholus looke strange and frowne": [0, 65535], "i antipholus looke strange and frowne some": [0, 65535], "antipholus looke strange and frowne some other": [0, 65535], "looke strange and frowne some other mistresse": [0, 65535], "strange and frowne some other mistresse hath": [0, 65535], "and frowne some other mistresse hath thy": [0, 65535], "frowne some other mistresse hath thy sweet": [0, 65535], "some other mistresse hath thy sweet aspects": [0, 65535], "other mistresse hath thy sweet aspects i": [0, 65535], "mistresse hath thy sweet aspects i am": [0, 65535], "hath thy sweet aspects i am not": [0, 65535], "thy sweet aspects i am not adriana": [0, 65535], "sweet aspects i am not adriana nor": [0, 65535], "aspects i am not adriana nor thy": [0, 65535], "i am not adriana nor thy wife": [0, 65535], "am not adriana nor thy wife the": [0, 65535], "not adriana nor thy wife the time": [0, 65535], "adriana nor thy wife the time was": [0, 65535], "nor thy wife the time was once": [0, 65535], "thy wife the time was once when": [0, 65535], "wife the time was once when thou": [0, 65535], "the time was once when thou vn": [0, 65535], "time was once when thou vn vrg'd": [0, 65535], "was once when thou vn vrg'd wouldst": [0, 65535], "once when thou vn vrg'd wouldst vow": [0, 65535], "when thou vn vrg'd wouldst vow that": [0, 65535], "thou vn vrg'd wouldst vow that neuer": [0, 65535], "vn vrg'd wouldst vow that neuer words": [0, 65535], "vrg'd wouldst vow that neuer words were": [0, 65535], "wouldst vow that neuer words were musicke": [0, 65535], "vow that neuer words were musicke to": [0, 65535], "that neuer words were musicke to thine": [0, 65535], "neuer words were musicke to thine eare": [0, 65535], "words were musicke to thine eare that": [0, 65535], "were musicke to thine eare that neuer": [0, 65535], "musicke to thine eare that neuer obiect": [0, 65535], "to thine eare that neuer obiect pleasing": [0, 65535], "thine eare that neuer obiect pleasing in": [0, 65535], "eare that neuer obiect pleasing in thine": [0, 65535], "that neuer obiect pleasing in thine eye": [0, 65535], "neuer obiect pleasing in thine eye that": [0, 65535], "obiect pleasing in thine eye that neuer": [0, 65535], "pleasing in thine eye that neuer touch": [0, 65535], "in thine eye that neuer touch well": [0, 65535], "thine eye that neuer touch well welcome": [0, 65535], "eye that neuer touch well welcome to": [0, 65535], "that neuer touch well welcome to thy": [0, 65535], "neuer touch well welcome to thy hand": [0, 65535], "touch well welcome to thy hand that": [0, 65535], "well welcome to thy hand that neuer": [0, 65535], "welcome to thy hand that neuer meat": [0, 65535], "to thy hand that neuer meat sweet": [0, 65535], "thy hand that neuer meat sweet sauour'd": [0, 65535], "hand that neuer meat sweet sauour'd in": [0, 65535], "that neuer meat sweet sauour'd in thy": [0, 65535], "neuer meat sweet sauour'd in thy taste": [0, 65535], "meat sweet sauour'd in thy taste vnlesse": [0, 65535], "sweet sauour'd in thy taste vnlesse i": [0, 65535], "sauour'd in thy taste vnlesse i spake": [0, 65535], "in thy taste vnlesse i spake or": [0, 65535], "thy taste vnlesse i spake or look'd": [0, 65535], "taste vnlesse i spake or look'd or": [0, 65535], "vnlesse i spake or look'd or touch'd": [0, 65535], "i spake or look'd or touch'd or": [0, 65535], "spake or look'd or touch'd or caru'd": [0, 65535], "or look'd or touch'd or caru'd to": [0, 65535], "look'd or touch'd or caru'd to thee": [0, 65535], "or touch'd or caru'd to thee how": [0, 65535], "touch'd or caru'd to thee how comes": [0, 65535], "or caru'd to thee how comes it": [0, 65535], "caru'd to thee how comes it now": [0, 65535], "to thee how comes it now my": [0, 65535], "thee how comes it now my husband": [0, 65535], "how comes it now my husband oh": [0, 65535], "comes it now my husband oh how": [0, 65535], "it now my husband oh how comes": [0, 65535], "now my husband oh how comes it": [0, 65535], "my husband oh how comes it that": [0, 65535], "husband oh how comes it that thou": [0, 65535], "oh how comes it that thou art": [0, 65535], "how comes it that thou art then": [0, 65535], "comes it that thou art then estranged": [0, 65535], "it that thou art then estranged from": [0, 65535], "that thou art then estranged from thy": [0, 65535], "thou art then estranged from thy selfe": [0, 65535], "art then estranged from thy selfe thy": [0, 65535], "then estranged from thy selfe thy selfe": [0, 65535], "estranged from thy selfe thy selfe i": [0, 65535], "from thy selfe thy selfe i call": [0, 65535], "thy selfe thy selfe i call it": [0, 65535], "selfe thy selfe i call it being": [0, 65535], "thy selfe i call it being strange": [0, 65535], "selfe i call it being strange to": [0, 65535], "i call it being strange to me": [0, 65535], "call it being strange to me that": [0, 65535], "it being strange to me that vndiuidable": [0, 65535], "being strange to me that vndiuidable incorporate": [0, 65535], "strange to me that vndiuidable incorporate am": [0, 65535], "to me that vndiuidable incorporate am better": [0, 65535], "me that vndiuidable incorporate am better then": [0, 65535], "that vndiuidable incorporate am better then thy": [0, 65535], "vndiuidable incorporate am better then thy deere": [0, 65535], "incorporate am better then thy deere selfes": [0, 65535], "am better then thy deere selfes better": [0, 65535], "better then thy deere selfes better part": [0, 65535], "then thy deere selfes better part ah": [0, 65535], "thy deere selfes better part ah doe": [0, 65535], "deere selfes better part ah doe not": [0, 65535], "selfes better part ah doe not teare": [0, 65535], "better part ah doe not teare away": [0, 65535], "part ah doe not teare away thy": [0, 65535], "ah doe not teare away thy selfe": [0, 65535], "doe not teare away thy selfe from": [0, 65535], "not teare away thy selfe from me": [0, 65535], "teare away thy selfe from me for": [0, 65535], "away thy selfe from me for know": [0, 65535], "thy selfe from me for know my": [0, 65535], "selfe from me for know my loue": [0, 65535], "from me for know my loue as": [0, 65535], "me for know my loue as easie": [0, 65535], "for know my loue as easie maist": [0, 65535], "know my loue as easie maist thou": [0, 65535], "my loue as easie maist thou fall": [0, 65535], "loue as easie maist thou fall a": [0, 65535], "as easie maist thou fall a drop": [0, 65535], "easie maist thou fall a drop of": [0, 65535], "maist thou fall a drop of water": [0, 65535], "thou fall a drop of water in": [0, 65535], "fall a drop of water in the": [0, 65535], "a drop of water in the breaking": [0, 65535], "drop of water in the breaking gulfe": [0, 65535], "of water in the breaking gulfe and": [0, 65535], "water in the breaking gulfe and take": [0, 65535], "in the breaking gulfe and take vnmingled": [0, 65535], "the breaking gulfe and take vnmingled thence": [0, 65535], "breaking gulfe and take vnmingled thence that": [0, 65535], "gulfe and take vnmingled thence that drop": [0, 65535], "and take vnmingled thence that drop againe": [0, 65535], "take vnmingled thence that drop againe without": [0, 65535], "vnmingled thence that drop againe without addition": [0, 65535], "thence that drop againe without addition or": [0, 65535], "that drop againe without addition or diminishing": [0, 65535], "drop againe without addition or diminishing as": [0, 65535], "againe without addition or diminishing as take": [0, 65535], "without addition or diminishing as take from": [0, 65535], "addition or diminishing as take from me": [0, 65535], "or diminishing as take from me thy": [0, 65535], "diminishing as take from me thy selfe": [0, 65535], "as take from me thy selfe and": [0, 65535], "take from me thy selfe and not": [0, 65535], "from me thy selfe and not me": [0, 65535], "me thy selfe and not me too": [0, 65535], "thy selfe and not me too how": [0, 65535], "selfe and not me too how deerely": [0, 65535], "and not me too how deerely would": [0, 65535], "not me too how deerely would it": [0, 65535], "me too how deerely would it touch": [0, 65535], "too how deerely would it touch thee": [0, 65535], "how deerely would it touch thee to": [0, 65535], "deerely would it touch thee to the": [0, 65535], "would it touch thee to the quicke": [0, 65535], "it touch thee to the quicke shouldst": [0, 65535], "touch thee to the quicke shouldst thou": [0, 65535], "thee to the quicke shouldst thou but": [0, 65535], "to the quicke shouldst thou but heare": [0, 65535], "the quicke shouldst thou but heare i": [0, 65535], "quicke shouldst thou but heare i were": [0, 65535], "shouldst thou but heare i were licencious": [0, 65535], "thou but heare i were licencious and": [0, 65535], "but heare i were licencious and that": [0, 65535], "heare i were licencious and that this": [0, 65535], "i were licencious and that this body": [0, 65535], "were licencious and that this body consecrate": [0, 65535], "licencious and that this body consecrate to": [0, 65535], "and that this body consecrate to thee": [0, 65535], "that this body consecrate to thee by": [0, 65535], "this body consecrate to thee by ruffian": [0, 65535], "body consecrate to thee by ruffian lust": [0, 65535], "consecrate to thee by ruffian lust should": [0, 65535], "to thee by ruffian lust should be": [0, 65535], "thee by ruffian lust should be contaminate": [0, 65535], "by ruffian lust should be contaminate wouldst": [0, 65535], "ruffian lust should be contaminate wouldst thou": [0, 65535], "lust should be contaminate wouldst thou not": [0, 65535], "should be contaminate wouldst thou not spit": [0, 65535], "be contaminate wouldst thou not spit at": [0, 65535], "contaminate wouldst thou not spit at me": [0, 65535], "wouldst thou not spit at me and": [0, 65535], "thou not spit at me and spurne": [0, 65535], "not spit at me and spurne at": [0, 65535], "spit at me and spurne at me": [0, 65535], "at me and spurne at me and": [0, 65535], "me and spurne at me and hurle": [0, 65535], "and spurne at me and hurle the": [0, 65535], "spurne at me and hurle the name": [0, 65535], "at me and hurle the name of": [0, 65535], "me and hurle the name of husband": [0, 65535], "and hurle the name of husband in": [0, 65535], "hurle the name of husband in my": [0, 65535], "the name of husband in my face": [0, 65535], "name of husband in my face and": [0, 65535], "of husband in my face and teare": [0, 65535], "husband in my face and teare the": [0, 65535], "in my face and teare the stain'd": [0, 65535], "my face and teare the stain'd skin": [0, 65535], "face and teare the stain'd skin of": [0, 65535], "and teare the stain'd skin of my": [0, 65535], "teare the stain'd skin of my harlot": [0, 65535], "the stain'd skin of my harlot brow": [0, 65535], "stain'd skin of my harlot brow and": [0, 65535], "skin of my harlot brow and from": [0, 65535], "of my harlot brow and from my": [0, 65535], "my harlot brow and from my false": [0, 65535], "harlot brow and from my false hand": [0, 65535], "brow and from my false hand cut": [0, 65535], "and from my false hand cut the": [0, 65535], "from my false hand cut the wedding": [0, 65535], "my false hand cut the wedding ring": [0, 65535], "false hand cut the wedding ring and": [0, 65535], "hand cut the wedding ring and breake": [0, 65535], "cut the wedding ring and breake it": [0, 65535], "the wedding ring and breake it with": [0, 65535], "wedding ring and breake it with a": [0, 65535], "ring and breake it with a deepe": [0, 65535], "and breake it with a deepe diuorcing": [0, 65535], "breake it with a deepe diuorcing vow": [0, 65535], "it with a deepe diuorcing vow i": [0, 65535], "with a deepe diuorcing vow i know": [0, 65535], "a deepe diuorcing vow i know thou": [0, 65535], "deepe diuorcing vow i know thou canst": [0, 65535], "diuorcing vow i know thou canst and": [0, 65535], "vow i know thou canst and therefore": [0, 65535], "i know thou canst and therefore see": [0, 65535], "know thou canst and therefore see thou": [0, 65535], "thou canst and therefore see thou doe": [0, 65535], "canst and therefore see thou doe it": [0, 65535], "and therefore see thou doe it i": [0, 65535], "therefore see thou doe it i am": [0, 65535], "see thou doe it i am possest": [0, 65535], "thou doe it i am possest with": [0, 65535], "doe it i am possest with an": [0, 65535], "it i am possest with an adulterate": [0, 65535], "i am possest with an adulterate blot": [0, 65535], "am possest with an adulterate blot my": [0, 65535], "possest with an adulterate blot my bloud": [0, 65535], "with an adulterate blot my bloud is": [0, 65535], "an adulterate blot my bloud is mingled": [0, 65535], "adulterate blot my bloud is mingled with": [0, 65535], "blot my bloud is mingled with the": [0, 65535], "my bloud is mingled with the crime": [0, 65535], "bloud is mingled with the crime of": [0, 65535], "is mingled with the crime of lust": [0, 65535], "mingled with the crime of lust for": [0, 65535], "with the crime of lust for if": [0, 65535], "the crime of lust for if we": [0, 65535], "crime of lust for if we two": [0, 65535], "of lust for if we two be": [0, 65535], "lust for if we two be one": [0, 65535], "for if we two be one and": [0, 65535], "if we two be one and thou": [0, 65535], "we two be one and thou play": [0, 65535], "two be one and thou play false": [0, 65535], "be one and thou play false i": [0, 65535], "one and thou play false i doe": [0, 65535], "and thou play false i doe digest": [0, 65535], "thou play false i doe digest the": [0, 65535], "play false i doe digest the poison": [0, 65535], "false i doe digest the poison of": [0, 65535], "i doe digest the poison of thy": [0, 65535], "doe digest the poison of thy flesh": [0, 65535], "digest the poison of thy flesh being": [0, 65535], "the poison of thy flesh being strumpeted": [0, 65535], "poison of thy flesh being strumpeted by": [0, 65535], "of thy flesh being strumpeted by thy": [0, 65535], "thy flesh being strumpeted by thy contagion": [0, 65535], "flesh being strumpeted by thy contagion keepe": [0, 65535], "being strumpeted by thy contagion keepe then": [0, 65535], "strumpeted by thy contagion keepe then faire": [0, 65535], "by thy contagion keepe then faire league": [0, 65535], "thy contagion keepe then faire league and": [0, 65535], "contagion keepe then faire league and truce": [0, 65535], "keepe then faire league and truce with": [0, 65535], "then faire league and truce with thy": [0, 65535], "faire league and truce with thy true": [0, 65535], "league and truce with thy true bed": [0, 65535], "and truce with thy true bed i": [0, 65535], "truce with thy true bed i liue": [0, 65535], "with thy true bed i liue distain'd": [0, 65535], "thy true bed i liue distain'd thou": [0, 65535], "true bed i liue distain'd thou vndishonoured": [0, 65535], "bed i liue distain'd thou vndishonoured antip": [0, 65535], "i liue distain'd thou vndishonoured antip plead": [0, 65535], "liue distain'd thou vndishonoured antip plead you": [0, 65535], "distain'd thou vndishonoured antip plead you to": [0, 65535], "thou vndishonoured antip plead you to me": [0, 65535], "vndishonoured antip plead you to me faire": [0, 65535], "antip plead you to me faire dame": [0, 65535], "plead you to me faire dame i": [0, 65535], "you to me faire dame i know": [0, 65535], "to me faire dame i know you": [0, 65535], "me faire dame i know you not": [0, 65535], "faire dame i know you not in": [0, 65535], "dame i know you not in ephesus": [0, 65535], "i know you not in ephesus i": [0, 65535], "know you not in ephesus i am": [0, 65535], "you not in ephesus i am but": [0, 65535], "not in ephesus i am but two": [0, 65535], "in ephesus i am but two houres": [0, 65535], "ephesus i am but two houres old": [0, 65535], "i am but two houres old as": [0, 65535], "am but two houres old as strange": [0, 65535], "but two houres old as strange vnto": [0, 65535], "two houres old as strange vnto your": [0, 65535], "houres old as strange vnto your towne": [0, 65535], "old as strange vnto your towne as": [0, 65535], "as strange vnto your towne as to": [0, 65535], "strange vnto your towne as to your": [0, 65535], "vnto your towne as to your talke": [0, 65535], "your towne as to your talke who": [0, 65535], "towne as to your talke who euery": [0, 65535], "as to your talke who euery word": [0, 65535], "to your talke who euery word by": [0, 65535], "your talke who euery word by all": [0, 65535], "talke who euery word by all my": [0, 65535], "who euery word by all my wit": [0, 65535], "euery word by all my wit being": [0, 65535], "word by all my wit being scan'd": [0, 65535], "by all my wit being scan'd wants": [0, 65535], "all my wit being scan'd wants wit": [0, 65535], "my wit being scan'd wants wit in": [0, 65535], "wit being scan'd wants wit in all": [0, 65535], "being scan'd wants wit in all one": [0, 65535], "scan'd wants wit in all one word": [0, 65535], "wants wit in all one word to": [0, 65535], "wit in all one word to vnderstand": [0, 65535], "in all one word to vnderstand luci": [0, 65535], "all one word to vnderstand luci fie": [0, 65535], "one word to vnderstand luci fie brother": [0, 65535], "word to vnderstand luci fie brother how": [0, 65535], "to vnderstand luci fie brother how the": [0, 65535], "vnderstand luci fie brother how the world": [0, 65535], "luci fie brother how the world is": [0, 65535], "fie brother how the world is chang'd": [0, 65535], "brother how the world is chang'd with": [0, 65535], "how the world is chang'd with you": [0, 65535], "the world is chang'd with you when": [0, 65535], "world is chang'd with you when were": [0, 65535], "is chang'd with you when were you": [0, 65535], "chang'd with you when were you wont": [0, 65535], "with you when were you wont to": [0, 65535], "you when were you wont to vse": [0, 65535], "when were you wont to vse my": [0, 65535], "were you wont to vse my sister": [0, 65535], "you wont to vse my sister thus": [0, 65535], "wont to vse my sister thus she": [0, 65535], "to vse my sister thus she sent": [0, 65535], "vse my sister thus she sent for": [0, 65535], "my sister thus she sent for you": [0, 65535], "sister thus she sent for you by": [0, 65535], "thus she sent for you by dromio": [0, 65535], "she sent for you by dromio home": [0, 65535], "sent for you by dromio home to": [0, 65535], "for you by dromio home to dinner": [0, 65535], "you by dromio home to dinner ant": [0, 65535], "by dromio home to dinner ant by": [0, 65535], "dromio home to dinner ant by dromio": [0, 65535], "home to dinner ant by dromio drom": [0, 65535], "to dinner ant by dromio drom by": [0, 65535], "dinner ant by dromio drom by me": [0, 65535], "ant by dromio drom by me adr": [0, 65535], "by dromio drom by me adr by": [0, 65535], "dromio drom by me adr by thee": [0, 65535], "drom by me adr by thee and": [0, 65535], "by me adr by thee and this": [0, 65535], "me adr by thee and this thou": [0, 65535], "adr by thee and this thou didst": [0, 65535], "by thee and this thou didst returne": [0, 65535], "thee and this thou didst returne from": [0, 65535], "and this thou didst returne from him": [0, 65535], "this thou didst returne from him that": [0, 65535], "thou didst returne from him that he": [0, 65535], "didst returne from him that he did": [0, 65535], "returne from him that he did buffet": [0, 65535], "from him that he did buffet thee": [0, 65535], "him that he did buffet thee and": [0, 65535], "that he did buffet thee and in": [0, 65535], "he did buffet thee and in his": [0, 65535], "did buffet thee and in his blowes": [0, 65535], "buffet thee and in his blowes denied": [0, 65535], "thee and in his blowes denied my": [0, 65535], "and in his blowes denied my house": [0, 65535], "in his blowes denied my house for": [0, 65535], "his blowes denied my house for his": [0, 65535], "blowes denied my house for his me": [0, 65535], "denied my house for his me for": [0, 65535], "my house for his me for his": [0, 65535], "house for his me for his wife": [0, 65535], "for his me for his wife ant": [0, 65535], "his me for his wife ant did": [0, 65535], "me for his wife ant did you": [0, 65535], "for his wife ant did you conuerse": [0, 65535], "his wife ant did you conuerse sir": [0, 65535], "wife ant did you conuerse sir with": [0, 65535], "ant did you conuerse sir with this": [0, 65535], "did you conuerse sir with this gentlewoman": [0, 65535], "you conuerse sir with this gentlewoman what": [0, 65535], "conuerse sir with this gentlewoman what is": [0, 65535], "sir with this gentlewoman what is the": [0, 65535], "with this gentlewoman what is the course": [0, 65535], "this gentlewoman what is the course and": [0, 65535], "gentlewoman what is the course and drift": [0, 65535], "what is the course and drift of": [0, 65535], "is the course and drift of your": [0, 65535], "the course and drift of your compact": [0, 65535], "course and drift of your compact s": [0, 65535], "and drift of your compact s dro": [0, 65535], "drift of your compact s dro i": [0, 65535], "of your compact s dro i sir": [0, 65535], "your compact s dro i sir i": [0, 65535], "compact s dro i sir i neuer": [0, 65535], "s dro i sir i neuer saw": [0, 65535], "dro i sir i neuer saw her": [0, 65535], "i sir i neuer saw her till": [0, 65535], "sir i neuer saw her till this": [0, 65535], "i neuer saw her till this time": [0, 65535], "neuer saw her till this time ant": [0, 65535], "saw her till this time ant villaine": [0, 65535], "her till this time ant villaine thou": [0, 65535], "till this time ant villaine thou liest": [0, 65535], "this time ant villaine thou liest for": [0, 65535], "time ant villaine thou liest for euen": [0, 65535], "ant villaine thou liest for euen her": [0, 65535], "villaine thou liest for euen her verie": [0, 65535], "thou liest for euen her verie words": [0, 65535], "liest for euen her verie words didst": [0, 65535], "for euen her verie words didst thou": [0, 65535], "euen her verie words didst thou deliuer": [0, 65535], "her verie words didst thou deliuer to": [0, 65535], "verie words didst thou deliuer to me": [0, 65535], "words didst thou deliuer to me on": [0, 65535], "didst thou deliuer to me on the": [0, 65535], "thou deliuer to me on the mart": [0, 65535], "deliuer to me on the mart s": [0, 65535], "to me on the mart s dro": [0, 65535], "me on the mart s dro i": [0, 65535], "on the mart s dro i neuer": [0, 65535], "the mart s dro i neuer spake": [0, 65535], "mart s dro i neuer spake with": [0, 65535], "s dro i neuer spake with her": [0, 65535], "dro i neuer spake with her in": [0, 65535], "i neuer spake with her in all": [0, 65535], "neuer spake with her in all my": [0, 65535], "spake with her in all my life": [0, 65535], "with her in all my life ant": [0, 65535], "her in all my life ant how": [0, 65535], "in all my life ant how can": [0, 65535], "all my life ant how can she": [0, 65535], "my life ant how can she thus": [0, 65535], "life ant how can she thus then": [0, 65535], "ant how can she thus then call": [0, 65535], "how can she thus then call vs": [0, 65535], "can she thus then call vs by": [0, 65535], "she thus then call vs by our": [0, 65535], "thus then call vs by our names": [0, 65535], "then call vs by our names vnlesse": [0, 65535], "call vs by our names vnlesse it": [0, 65535], "vs by our names vnlesse it be": [0, 65535], "by our names vnlesse it be by": [0, 65535], "our names vnlesse it be by inspiration": [0, 65535], "names vnlesse it be by inspiration adri": [0, 65535], "vnlesse it be by inspiration adri how": [0, 65535], "it be by inspiration adri how ill": [0, 65535], "be by inspiration adri how ill agrees": [0, 65535], "by inspiration adri how ill agrees it": [0, 65535], "inspiration adri how ill agrees it with": [0, 65535], "adri how ill agrees it with your": [0, 65535], "how ill agrees it with your grauitie": [0, 65535], "ill agrees it with your grauitie to": [0, 65535], "agrees it with your grauitie to counterfeit": [0, 65535], "it with your grauitie to counterfeit thus": [0, 65535], "with your grauitie to counterfeit thus grosely": [0, 65535], "your grauitie to counterfeit thus grosely with": [0, 65535], "grauitie to counterfeit thus grosely with your": [0, 65535], "to counterfeit thus grosely with your slaue": [0, 65535], "counterfeit thus grosely with your slaue abetting": [0, 65535], "thus grosely with your slaue abetting him": [0, 65535], "grosely with your slaue abetting him to": [0, 65535], "with your slaue abetting him to thwart": [0, 65535], "your slaue abetting him to thwart me": [0, 65535], "slaue abetting him to thwart me in": [0, 65535], "abetting him to thwart me in my": [0, 65535], "him to thwart me in my moode": [0, 65535], "to thwart me in my moode be": [0, 65535], "thwart me in my moode be it": [0, 65535], "me in my moode be it my": [0, 65535], "in my moode be it my wrong": [0, 65535], "my moode be it my wrong you": [0, 65535], "moode be it my wrong you are": [0, 65535], "be it my wrong you are from": [0, 65535], "it my wrong you are from me": [0, 65535], "my wrong you are from me exempt": [0, 65535], "wrong you are from me exempt but": [0, 65535], "you are from me exempt but wrong": [0, 65535], "are from me exempt but wrong not": [0, 65535], "from me exempt but wrong not that": [0, 65535], "me exempt but wrong not that wrong": [0, 65535], "exempt but wrong not that wrong with": [0, 65535], "but wrong not that wrong with a": [0, 65535], "wrong not that wrong with a more": [0, 65535], "not that wrong with a more contempt": [0, 65535], "that wrong with a more contempt come": [0, 65535], "wrong with a more contempt come i": [0, 65535], "with a more contempt come i will": [0, 65535], "a more contempt come i will fasten": [0, 65535], "more contempt come i will fasten on": [0, 65535], "contempt come i will fasten on this": [0, 65535], "come i will fasten on this sleeue": [0, 65535], "i will fasten on this sleeue of": [0, 65535], "will fasten on this sleeue of thine": [0, 65535], "fasten on this sleeue of thine thou": [0, 65535], "on this sleeue of thine thou art": [0, 65535], "this sleeue of thine thou art an": [0, 65535], "sleeue of thine thou art an elme": [0, 65535], "of thine thou art an elme my": [0, 65535], "thine thou art an elme my husband": [0, 65535], "thou art an elme my husband i": [0, 65535], "art an elme my husband i a": [0, 65535], "an elme my husband i a vine": [0, 65535], "elme my husband i a vine whose": [0, 65535], "my husband i a vine whose weaknesse": [0, 65535], "husband i a vine whose weaknesse married": [0, 65535], "i a vine whose weaknesse married to": [0, 65535], "a vine whose weaknesse married to thy": [0, 65535], "vine whose weaknesse married to thy stranger": [0, 65535], "whose weaknesse married to thy stranger state": [0, 65535], "weaknesse married to thy stranger state makes": [0, 65535], "married to thy stranger state makes me": [0, 65535], "to thy stranger state makes me with": [0, 65535], "thy stranger state makes me with thy": [0, 65535], "stranger state makes me with thy strength": [0, 65535], "state makes me with thy strength to": [0, 65535], "makes me with thy strength to communicate": [0, 65535], "me with thy strength to communicate if": [0, 65535], "with thy strength to communicate if ought": [0, 65535], "thy strength to communicate if ought possesse": [0, 65535], "strength to communicate if ought possesse thee": [0, 65535], "to communicate if ought possesse thee from": [0, 65535], "communicate if ought possesse thee from me": [0, 65535], "if ought possesse thee from me it": [0, 65535], "ought possesse thee from me it is": [0, 65535], "possesse thee from me it is drosse": [0, 65535], "thee from me it is drosse vsurping": [0, 65535], "from me it is drosse vsurping iuie": [0, 65535], "me it is drosse vsurping iuie brier": [0, 65535], "it is drosse vsurping iuie brier or": [0, 65535], "is drosse vsurping iuie brier or idle": [0, 65535], "drosse vsurping iuie brier or idle mosse": [0, 65535], "vsurping iuie brier or idle mosse who": [0, 65535], "iuie brier or idle mosse who all": [0, 65535], "brier or idle mosse who all for": [0, 65535], "or idle mosse who all for want": [0, 65535], "idle mosse who all for want of": [0, 65535], "mosse who all for want of pruning": [0, 65535], "who all for want of pruning with": [0, 65535], "all for want of pruning with intrusion": [0, 65535], "for want of pruning with intrusion infect": [0, 65535], "want of pruning with intrusion infect thy": [0, 65535], "of pruning with intrusion infect thy sap": [0, 65535], "pruning with intrusion infect thy sap and": [0, 65535], "with intrusion infect thy sap and liue": [0, 65535], "intrusion infect thy sap and liue on": [0, 65535], "infect thy sap and liue on thy": [0, 65535], "thy sap and liue on thy confusion": [0, 65535], "sap and liue on thy confusion ant": [0, 65535], "and liue on thy confusion ant to": [0, 65535], "liue on thy confusion ant to mee": [0, 65535], "on thy confusion ant to mee shee": [0, 65535], "thy confusion ant to mee shee speakes": [0, 65535], "confusion ant to mee shee speakes shee": [0, 65535], "ant to mee shee speakes shee moues": [0, 65535], "to mee shee speakes shee moues mee": [0, 65535], "mee shee speakes shee moues mee for": [0, 65535], "shee speakes shee moues mee for her": [0, 65535], "speakes shee moues mee for her theame": [0, 65535], "shee moues mee for her theame what": [0, 65535], "moues mee for her theame what was": [0, 65535], "mee for her theame what was i": [0, 65535], "for her theame what was i married": [0, 65535], "her theame what was i married to": [0, 65535], "theame what was i married to her": [0, 65535], "what was i married to her in": [0, 65535], "was i married to her in my": [0, 65535], "i married to her in my dreame": [0, 65535], "married to her in my dreame or": [0, 65535], "to her in my dreame or sleepe": [0, 65535], "her in my dreame or sleepe i": [0, 65535], "in my dreame or sleepe i now": [0, 65535], "my dreame or sleepe i now and": [0, 65535], "dreame or sleepe i now and thinke": [0, 65535], "or sleepe i now and thinke i": [0, 65535], "sleepe i now and thinke i heare": [0, 65535], "i now and thinke i heare all": [0, 65535], "now and thinke i heare all this": [0, 65535], "and thinke i heare all this what": [0, 65535], "thinke i heare all this what error": [0, 65535], "i heare all this what error driues": [0, 65535], "heare all this what error driues our": [0, 65535], "all this what error driues our eies": [0, 65535], "this what error driues our eies and": [0, 65535], "what error driues our eies and eares": [0, 65535], "error driues our eies and eares amisse": [0, 65535], "driues our eies and eares amisse vntill": [0, 65535], "our eies and eares amisse vntill i": [0, 65535], "eies and eares amisse vntill i know": [0, 65535], "and eares amisse vntill i know this": [0, 65535], "eares amisse vntill i know this sure": [0, 65535], "amisse vntill i know this sure vncertaintie": [0, 65535], "vntill i know this sure vncertaintie ile": [0, 65535], "i know this sure vncertaintie ile entertaine": [0, 65535], "know this sure vncertaintie ile entertaine the": [0, 65535], "this sure vncertaintie ile entertaine the free'd": [0, 65535], "sure vncertaintie ile entertaine the free'd fallacie": [0, 65535], "vncertaintie ile entertaine the free'd fallacie luc": [0, 65535], "ile entertaine the free'd fallacie luc dromio": [0, 65535], "entertaine the free'd fallacie luc dromio goe": [0, 65535], "the free'd fallacie luc dromio goe bid": [0, 65535], "free'd fallacie luc dromio goe bid the": [0, 65535], "fallacie luc dromio goe bid the seruants": [0, 65535], "luc dromio goe bid the seruants spred": [0, 65535], "dromio goe bid the seruants spred for": [0, 65535], "goe bid the seruants spred for dinner": [0, 65535], "bid the seruants spred for dinner s": [0, 65535], "the seruants spred for dinner s dro": [0, 65535], "seruants spred for dinner s dro oh": [0, 65535], "spred for dinner s dro oh for": [0, 65535], "for dinner s dro oh for my": [0, 65535], "dinner s dro oh for my beads": [0, 65535], "s dro oh for my beads i": [0, 65535], "dro oh for my beads i crosse": [0, 65535], "oh for my beads i crosse me": [0, 65535], "for my beads i crosse me for": [0, 65535], "my beads i crosse me for a": [0, 65535], "beads i crosse me for a sinner": [0, 65535], "i crosse me for a sinner this": [0, 65535], "crosse me for a sinner this is": [0, 65535], "me for a sinner this is the": [0, 65535], "for a sinner this is the fairie": [0, 65535], "a sinner this is the fairie land": [0, 65535], "sinner this is the fairie land oh": [0, 65535], "this is the fairie land oh spight": [0, 65535], "is the fairie land oh spight of": [0, 65535], "the fairie land oh spight of spights": [0, 65535], "fairie land oh spight of spights we": [0, 65535], "land oh spight of spights we talke": [0, 65535], "oh spight of spights we talke with": [0, 65535], "spight of spights we talke with goblins": [0, 65535], "of spights we talke with goblins owles": [0, 65535], "spights we talke with goblins owles and": [0, 65535], "we talke with goblins owles and sprights": [0, 65535], "talke with goblins owles and sprights if": [0, 65535], "with goblins owles and sprights if we": [0, 65535], "goblins owles and sprights if we obay": [0, 65535], "owles and sprights if we obay them": [0, 65535], "and sprights if we obay them not": [0, 65535], "sprights if we obay them not this": [0, 65535], "if we obay them not this will": [0, 65535], "we obay them not this will insue": [0, 65535], "obay them not this will insue they'll": [0, 65535], "them not this will insue they'll sucke": [0, 65535], "not this will insue they'll sucke our": [0, 65535], "this will insue they'll sucke our breath": [0, 65535], "will insue they'll sucke our breath or": [0, 65535], "insue they'll sucke our breath or pinch": [0, 65535], "they'll sucke our breath or pinch vs": [0, 65535], "sucke our breath or pinch vs blacke": [0, 65535], "our breath or pinch vs blacke and": [0, 65535], "breath or pinch vs blacke and blew": [0, 65535], "or pinch vs blacke and blew luc": [0, 65535], "pinch vs blacke and blew luc why": [0, 65535], "vs blacke and blew luc why prat'st": [0, 65535], "blacke and blew luc why prat'st thou": [0, 65535], "and blew luc why prat'st thou to": [0, 65535], "blew luc why prat'st thou to thy": [0, 65535], "luc why prat'st thou to thy selfe": [0, 65535], "why prat'st thou to thy selfe and": [0, 65535], "prat'st thou to thy selfe and answer'st": [0, 65535], "thou to thy selfe and answer'st not": [0, 65535], "to thy selfe and answer'st not dromio": [0, 65535], "thy selfe and answer'st not dromio thou": [0, 65535], "selfe and answer'st not dromio thou dromio": [0, 65535], "and answer'st not dromio thou dromio thou": [0, 65535], "answer'st not dromio thou dromio thou snaile": [0, 65535], "not dromio thou dromio thou snaile thou": [0, 65535], "dromio thou dromio thou snaile thou slug": [0, 65535], "thou dromio thou snaile thou slug thou": [0, 65535], "dromio thou snaile thou slug thou sot": [0, 65535], "thou snaile thou slug thou sot s": [0, 65535], "snaile thou slug thou sot s dro": [0, 65535], "thou slug thou sot s dro i": [0, 65535], "slug thou sot s dro i am": [0, 65535], "thou sot s dro i am transformed": [0, 65535], "sot s dro i am transformed master": [0, 65535], "s dro i am transformed master am": [0, 65535], "dro i am transformed master am i": [0, 65535], "i am transformed master am i not": [0, 65535], "am transformed master am i not ant": [0, 65535], "transformed master am i not ant i": [0, 65535], "master am i not ant i thinke": [0, 65535], "am i not ant i thinke thou": [0, 65535], "i not ant i thinke thou art": [0, 65535], "not ant i thinke thou art in": [0, 65535], "ant i thinke thou art in minde": [0, 65535], "i thinke thou art in minde and": [0, 65535], "thinke thou art in minde and so": [0, 65535], "thou art in minde and so am": [0, 65535], "art in minde and so am i": [0, 65535], "in minde and so am i s": [0, 65535], "minde and so am i s dro": [0, 65535], "and so am i s dro nay": [0, 65535], "so am i s dro nay master": [0, 65535], "am i s dro nay master both": [0, 65535], "i s dro nay master both in": [0, 65535], "s dro nay master both in minde": [0, 65535], "dro nay master both in minde and": [0, 65535], "nay master both in minde and in": [0, 65535], "master both in minde and in my": [0, 65535], "both in minde and in my shape": [0, 65535], "in minde and in my shape ant": [0, 65535], "minde and in my shape ant thou": [0, 65535], "and in my shape ant thou hast": [0, 65535], "in my shape ant thou hast thine": [0, 65535], "my shape ant thou hast thine owne": [0, 65535], "shape ant thou hast thine owne forme": [0, 65535], "ant thou hast thine owne forme s": [0, 65535], "thou hast thine owne forme s dro": [0, 65535], "hast thine owne forme s dro no": [0, 65535], "thine owne forme s dro no i": [0, 65535], "owne forme s dro no i am": [0, 65535], "forme s dro no i am an": [0, 65535], "s dro no i am an ape": [0, 65535], "dro no i am an ape luc": [0, 65535], "no i am an ape luc if": [0, 65535], "i am an ape luc if thou": [0, 65535], "am an ape luc if thou art": [0, 65535], "an ape luc if thou art chang'd": [0, 65535], "ape luc if thou art chang'd to": [0, 65535], "luc if thou art chang'd to ought": [0, 65535], "if thou art chang'd to ought 'tis": [0, 65535], "thou art chang'd to ought 'tis to": [0, 65535], "art chang'd to ought 'tis to an": [0, 65535], "chang'd to ought 'tis to an asse": [0, 65535], "to ought 'tis to an asse s": [0, 65535], "ought 'tis to an asse s dro": [0, 65535], "'tis to an asse s dro 'tis": [0, 65535], "to an asse s dro 'tis true": [0, 65535], "an asse s dro 'tis true she": [0, 65535], "asse s dro 'tis true she rides": [0, 65535], "s dro 'tis true she rides me": [0, 65535], "dro 'tis true she rides me and": [0, 65535], "'tis true she rides me and i": [0, 65535], "true she rides me and i long": [0, 65535], "she rides me and i long for": [0, 65535], "rides me and i long for grasse": [0, 65535], "me and i long for grasse 'tis": [0, 65535], "and i long for grasse 'tis so": [0, 65535], "i long for grasse 'tis so i": [0, 65535], "long for grasse 'tis so i am": [0, 65535], "for grasse 'tis so i am an": [0, 65535], "grasse 'tis so i am an asse": [0, 65535], "'tis so i am an asse else": [0, 65535], "so i am an asse else it": [0, 65535], "i am an asse else it could": [0, 65535], "am an asse else it could neuer": [0, 65535], "an asse else it could neuer be": [0, 65535], "asse else it could neuer be but": [0, 65535], "else it could neuer be but i": [0, 65535], "it could neuer be but i should": [0, 65535], "could neuer be but i should know": [0, 65535], "neuer be but i should know her": [0, 65535], "be but i should know her as": [0, 65535], "but i should know her as well": [0, 65535], "i should know her as well as": [0, 65535], "should know her as well as she": [0, 65535], "know her as well as she knowes": [0, 65535], "her as well as she knowes me": [0, 65535], "as well as she knowes me adr": [0, 65535], "well as she knowes me adr come": [0, 65535], "as she knowes me adr come come": [0, 65535], "she knowes me adr come come no": [0, 65535], "knowes me adr come come no longer": [0, 65535], "me adr come come no longer will": [0, 65535], "adr come come no longer will i": [0, 65535], "come come no longer will i be": [0, 65535], "come no longer will i be a": [0, 65535], "no longer will i be a foole": [0, 65535], "longer will i be a foole to": [0, 65535], "will i be a foole to put": [0, 65535], "i be a foole to put the": [0, 65535], "be a foole to put the finger": [0, 65535], "a foole to put the finger in": [0, 65535], "foole to put the finger in the": [0, 65535], "to put the finger in the eie": [0, 65535], "put the finger in the eie and": [0, 65535], "the finger in the eie and weepe": [0, 65535], "finger in the eie and weepe whil'st": [0, 65535], "in the eie and weepe whil'st man": [0, 65535], "the eie and weepe whil'st man and": [0, 65535], "eie and weepe whil'st man and master": [0, 65535], "and weepe whil'st man and master laughes": [0, 65535], "weepe whil'st man and master laughes my": [0, 65535], "whil'st man and master laughes my woes": [0, 65535], "man and master laughes my woes to": [0, 65535], "and master laughes my woes to scorne": [0, 65535], "master laughes my woes to scorne come": [0, 65535], "laughes my woes to scorne come sir": [0, 65535], "my woes to scorne come sir to": [0, 65535], "woes to scorne come sir to dinner": [0, 65535], "to scorne come sir to dinner dromio": [0, 65535], "scorne come sir to dinner dromio keepe": [0, 65535], "come sir to dinner dromio keepe the": [0, 65535], "sir to dinner dromio keepe the gate": [0, 65535], "to dinner dromio keepe the gate husband": [0, 65535], "dinner dromio keepe the gate husband ile": [0, 65535], "dromio keepe the gate husband ile dine": [0, 65535], "keepe the gate husband ile dine aboue": [0, 65535], "the gate husband ile dine aboue with": [0, 65535], "gate husband ile dine aboue with you": [0, 65535], "husband ile dine aboue with you to": [0, 65535], "ile dine aboue with you to day": [0, 65535], "dine aboue with you to day and": [0, 65535], "aboue with you to day and shriue": [0, 65535], "with you to day and shriue you": [0, 65535], "you to day and shriue you of": [0, 65535], "to day and shriue you of a": [0, 65535], "day and shriue you of a thousand": [0, 65535], "and shriue you of a thousand idle": [0, 65535], "shriue you of a thousand idle prankes": [0, 65535], "you of a thousand idle prankes sirra": [0, 65535], "of a thousand idle prankes sirra if": [0, 65535], "a thousand idle prankes sirra if any": [0, 65535], "thousand idle prankes sirra if any aske": [0, 65535], "idle prankes sirra if any aske you": [0, 65535], "prankes sirra if any aske you for": [0, 65535], "sirra if any aske you for your": [0, 65535], "if any aske you for your master": [0, 65535], "any aske you for your master say": [0, 65535], "aske you for your master say he": [0, 65535], "you for your master say he dines": [0, 65535], "for your master say he dines forth": [0, 65535], "your master say he dines forth and": [0, 65535], "master say he dines forth and let": [0, 65535], "say he dines forth and let no": [0, 65535], "he dines forth and let no creature": [0, 65535], "dines forth and let no creature enter": [0, 65535], "forth and let no creature enter come": [0, 65535], "and let no creature enter come sister": [0, 65535], "let no creature enter come sister dromio": [0, 65535], "no creature enter come sister dromio play": [0, 65535], "creature enter come sister dromio play the": [0, 65535], "enter come sister dromio play the porter": [0, 65535], "come sister dromio play the porter well": [0, 65535], "sister dromio play the porter well ant": [0, 65535], "dromio play the porter well ant am": [0, 65535], "play the porter well ant am i": [0, 65535], "the porter well ant am i in": [0, 65535], "porter well ant am i in earth": [0, 65535], "well ant am i in earth in": [0, 65535], "ant am i in earth in heauen": [0, 65535], "am i in earth in heauen or": [0, 65535], "i in earth in heauen or in": [0, 65535], "in earth in heauen or in hell": [0, 65535], "earth in heauen or in hell sleeping": [0, 65535], "in heauen or in hell sleeping or": [0, 65535], "heauen or in hell sleeping or waking": [0, 65535], "or in hell sleeping or waking mad": [0, 65535], "in hell sleeping or waking mad or": [0, 65535], "hell sleeping or waking mad or well": [0, 65535], "sleeping or waking mad or well aduisde": [0, 65535], "or waking mad or well aduisde knowne": [0, 65535], "waking mad or well aduisde knowne vnto": [0, 65535], "mad or well aduisde knowne vnto these": [0, 65535], "or well aduisde knowne vnto these and": [0, 65535], "well aduisde knowne vnto these and to": [0, 65535], "aduisde knowne vnto these and to my": [0, 65535], "knowne vnto these and to my selfe": [0, 65535], "vnto these and to my selfe disguisde": [0, 65535], "these and to my selfe disguisde ile": [0, 65535], "and to my selfe disguisde ile say": [0, 65535], "to my selfe disguisde ile say as": [0, 65535], "my selfe disguisde ile say as they": [0, 65535], "selfe disguisde ile say as they say": [0, 65535], "disguisde ile say as they say and": [0, 65535], "ile say as they say and perseuer": [0, 65535], "say as they say and perseuer so": [0, 65535], "as they say and perseuer so and": [0, 65535], "they say and perseuer so and in": [0, 65535], "say and perseuer so and in this": [0, 65535], "and perseuer so and in this mist": [0, 65535], "perseuer so and in this mist at": [0, 65535], "so and in this mist at all": [0, 65535], "and in this mist at all aduentures": [0, 65535], "in this mist at all aduentures go": [0, 65535], "this mist at all aduentures go s": [0, 65535], "mist at all aduentures go s dro": [0, 65535], "at all aduentures go s dro master": [0, 65535], "all aduentures go s dro master shall": [0, 65535], "aduentures go s dro master shall i": [0, 65535], "go s dro master shall i be": [0, 65535], "s dro master shall i be porter": [0, 65535], "dro master shall i be porter at": [0, 65535], "master shall i be porter at the": [0, 65535], "shall i be porter at the gate": [0, 65535], "i be porter at the gate adr": [0, 65535], "be porter at the gate adr i": [0, 65535], "porter at the gate adr i and": [0, 65535], "at the gate adr i and let": [0, 65535], "the gate adr i and let none": [0, 65535], "gate adr i and let none enter": [0, 65535], "adr i and let none enter least": [0, 65535], "i and let none enter least i": [0, 65535], "and let none enter least i breake": [0, 65535], "let none enter least i breake your": [0, 65535], "none enter least i breake your pate": [0, 65535], "enter least i breake your pate luc": [0, 65535], "least i breake your pate luc come": [0, 65535], "i breake your pate luc come come": [0, 65535], "breake your pate luc come come antipholus": [0, 65535], "your pate luc come come antipholus we": [0, 65535], "pate luc come come antipholus we dine": [0, 65535], "luc come come antipholus we dine to": [0, 65535], "come come antipholus we dine to late": [0, 65535], "actus secundus enter adriana wife to antipholis sereptus": [0, 65535], "secundus enter adriana wife to antipholis sereptus with": [0, 65535], "enter adriana wife to antipholis sereptus with luciana": [0, 65535], "adriana wife to antipholis sereptus with luciana her": [0, 65535], "wife to antipholis sereptus with luciana her sister": [0, 65535], "to antipholis sereptus with luciana her sister adr": [0, 65535], "antipholis sereptus with luciana her sister adr neither": [0, 65535], "sereptus with luciana her sister adr neither my": [0, 65535], "with luciana her sister adr neither my husband": [0, 65535], "luciana her sister adr neither my husband nor": [0, 65535], "her sister adr neither my husband nor the": [0, 65535], "sister adr neither my husband nor the slaue": [0, 65535], "adr neither my husband nor the slaue return'd": [0, 65535], "neither my husband nor the slaue return'd that": [0, 65535], "my husband nor the slaue return'd that in": [0, 65535], "husband nor the slaue return'd that in such": [0, 65535], "nor the slaue return'd that in such haste": [0, 65535], "the slaue return'd that in such haste i": [0, 65535], "slaue return'd that in such haste i sent": [0, 65535], "return'd that in such haste i sent to": [0, 65535], "that in such haste i sent to seeke": [0, 65535], "in such haste i sent to seeke his": [0, 65535], "such haste i sent to seeke his master": [0, 65535], "haste i sent to seeke his master sure": [0, 65535], "i sent to seeke his master sure luciana": [0, 65535], "sent to seeke his master sure luciana it": [0, 65535], "to seeke his master sure luciana it is": [0, 65535], "seeke his master sure luciana it is two": [0, 65535], "his master sure luciana it is two a": [0, 65535], "master sure luciana it is two a clocke": [0, 65535], "sure luciana it is two a clocke luc": [0, 65535], "luciana it is two a clocke luc perhaps": [0, 65535], "it is two a clocke luc perhaps some": [0, 65535], "is two a clocke luc perhaps some merchant": [0, 65535], "two a clocke luc perhaps some merchant hath": [0, 65535], "a clocke luc perhaps some merchant hath inuited": [0, 65535], "clocke luc perhaps some merchant hath inuited him": [0, 65535], "luc perhaps some merchant hath inuited him and": [0, 65535], "perhaps some merchant hath inuited him and from": [0, 65535], "some merchant hath inuited him and from the": [0, 65535], "merchant hath inuited him and from the mart": [0, 65535], "hath inuited him and from the mart he's": [0, 65535], "inuited him and from the mart he's somewhere": [0, 65535], "him and from the mart he's somewhere gone": [0, 65535], "and from the mart he's somewhere gone to": [0, 65535], "from the mart he's somewhere gone to dinner": [0, 65535], "the mart he's somewhere gone to dinner good": [0, 65535], "mart he's somewhere gone to dinner good sister": [0, 65535], "he's somewhere gone to dinner good sister let": [0, 65535], "somewhere gone to dinner good sister let vs": [0, 65535], "gone to dinner good sister let vs dine": [0, 65535], "to dinner good sister let vs dine and": [0, 65535], "dinner good sister let vs dine and neuer": [0, 65535], "good sister let vs dine and neuer fret": [0, 65535], "sister let vs dine and neuer fret a": [0, 65535], "let vs dine and neuer fret a man": [0, 65535], "vs dine and neuer fret a man is": [0, 65535], "dine and neuer fret a man is master": [0, 65535], "and neuer fret a man is master of": [0, 65535], "neuer fret a man is master of his": [0, 65535], "fret a man is master of his libertie": [0, 65535], "a man is master of his libertie time": [0, 65535], "man is master of his libertie time is": [0, 65535], "is master of his libertie time is their": [0, 65535], "master of his libertie time is their master": [0, 65535], "of his libertie time is their master and": [0, 65535], "his libertie time is their master and when": [0, 65535], "libertie time is their master and when they": [0, 65535], "time is their master and when they see": [0, 65535], "is their master and when they see time": [0, 65535], "their master and when they see time they'll": [0, 65535], "master and when they see time they'll goe": [0, 65535], "and when they see time they'll goe or": [0, 65535], "when they see time they'll goe or come": [0, 65535], "they see time they'll goe or come if": [0, 65535], "see time they'll goe or come if so": [0, 65535], "time they'll goe or come if so be": [0, 65535], "they'll goe or come if so be patient": [0, 65535], "goe or come if so be patient sister": [0, 65535], "or come if so be patient sister adr": [0, 65535], "come if so be patient sister adr why": [0, 65535], "if so be patient sister adr why should": [0, 65535], "so be patient sister adr why should their": [0, 65535], "be patient sister adr why should their libertie": [0, 65535], "patient sister adr why should their libertie then": [0, 65535], "sister adr why should their libertie then ours": [0, 65535], "adr why should their libertie then ours be": [0, 65535], "why should their libertie then ours be more": [0, 65535], "should their libertie then ours be more luc": [0, 65535], "their libertie then ours be more luc because": [0, 65535], "libertie then ours be more luc because their": [0, 65535], "then ours be more luc because their businesse": [0, 65535], "ours be more luc because their businesse still": [0, 65535], "be more luc because their businesse still lies": [0, 65535], "more luc because their businesse still lies out": [0, 65535], "luc because their businesse still lies out a": [0, 65535], "because their businesse still lies out a dore": [0, 65535], "their businesse still lies out a dore adr": [0, 65535], "businesse still lies out a dore adr looke": [0, 65535], "still lies out a dore adr looke when": [0, 65535], "lies out a dore adr looke when i": [0, 65535], "out a dore adr looke when i serue": [0, 65535], "a dore adr looke when i serue him": [0, 65535], "dore adr looke when i serue him so": [0, 65535], "adr looke when i serue him so he": [0, 65535], "looke when i serue him so he takes": [0, 65535], "when i serue him so he takes it": [0, 65535], "i serue him so he takes it thus": [0, 65535], "serue him so he takes it thus luc": [0, 65535], "him so he takes it thus luc oh": [0, 65535], "so he takes it thus luc oh know": [0, 65535], "he takes it thus luc oh know he": [0, 65535], "takes it thus luc oh know he is": [0, 65535], "it thus luc oh know he is the": [0, 65535], "thus luc oh know he is the bridle": [0, 65535], "luc oh know he is the bridle of": [0, 65535], "oh know he is the bridle of your": [0, 65535], "know he is the bridle of your will": [0, 65535], "he is the bridle of your will adr": [0, 65535], "is the bridle of your will adr there's": [0, 65535], "the bridle of your will adr there's none": [0, 65535], "bridle of your will adr there's none but": [0, 65535], "of your will adr there's none but asses": [0, 65535], "your will adr there's none but asses will": [0, 65535], "will adr there's none but asses will be": [0, 65535], "adr there's none but asses will be bridled": [0, 65535], "there's none but asses will be bridled so": [0, 65535], "none but asses will be bridled so luc": [0, 65535], "but asses will be bridled so luc why": [0, 65535], "asses will be bridled so luc why headstrong": [0, 65535], "will be bridled so luc why headstrong liberty": [0, 65535], "be bridled so luc why headstrong liberty is": [0, 65535], "bridled so luc why headstrong liberty is lasht": [0, 65535], "so luc why headstrong liberty is lasht with": [0, 65535], "luc why headstrong liberty is lasht with woe": [0, 65535], "why headstrong liberty is lasht with woe there's": [0, 65535], "headstrong liberty is lasht with woe there's nothing": [0, 65535], "liberty is lasht with woe there's nothing situate": [0, 65535], "is lasht with woe there's nothing situate vnder": [0, 65535], "lasht with woe there's nothing situate vnder heauens": [0, 65535], "with woe there's nothing situate vnder heauens eye": [0, 65535], "woe there's nothing situate vnder heauens eye but": [0, 65535], "there's nothing situate vnder heauens eye but hath": [0, 65535], "nothing situate vnder heauens eye but hath his": [0, 65535], "situate vnder heauens eye but hath his bound": [0, 65535], "vnder heauens eye but hath his bound in": [0, 65535], "heauens eye but hath his bound in earth": [0, 65535], "eye but hath his bound in earth in": [0, 65535], "but hath his bound in earth in sea": [0, 65535], "hath his bound in earth in sea in": [0, 65535], "his bound in earth in sea in skie": [0, 65535], "bound in earth in sea in skie the": [0, 65535], "in earth in sea in skie the beasts": [0, 65535], "earth in sea in skie the beasts the": [0, 65535], "in sea in skie the beasts the fishes": [0, 65535], "sea in skie the beasts the fishes and": [0, 65535], "in skie the beasts the fishes and the": [0, 65535], "skie the beasts the fishes and the winged": [0, 65535], "the beasts the fishes and the winged fowles": [0, 65535], "beasts the fishes and the winged fowles are": [0, 65535], "the fishes and the winged fowles are their": [0, 65535], "fishes and the winged fowles are their males": [0, 65535], "and the winged fowles are their males subiects": [0, 65535], "the winged fowles are their males subiects and": [0, 65535], "winged fowles are their males subiects and at": [0, 65535], "fowles are their males subiects and at their": [0, 65535], "are their males subiects and at their controules": [0, 65535], "their males subiects and at their controules man": [0, 65535], "males subiects and at their controules man more": [0, 65535], "subiects and at their controules man more diuine": [0, 65535], "and at their controules man more diuine the": [0, 65535], "at their controules man more diuine the master": [0, 65535], "their controules man more diuine the master of": [0, 65535], "controules man more diuine the master of all": [0, 65535], "man more diuine the master of all these": [0, 65535], "more diuine the master of all these lord": [0, 65535], "diuine the master of all these lord of": [0, 65535], "the master of all these lord of the": [0, 65535], "master of all these lord of the wide": [0, 65535], "of all these lord of the wide world": [0, 65535], "all these lord of the wide world and": [0, 65535], "these lord of the wide world and wilde": [0, 65535], "lord of the wide world and wilde watry": [0, 65535], "of the wide world and wilde watry seas": [0, 65535], "the wide world and wilde watry seas indued": [0, 65535], "wide world and wilde watry seas indued with": [0, 65535], "world and wilde watry seas indued with intellectuall": [0, 65535], "and wilde watry seas indued with intellectuall sence": [0, 65535], "wilde watry seas indued with intellectuall sence and": [0, 65535], "watry seas indued with intellectuall sence and soules": [0, 65535], "seas indued with intellectuall sence and soules of": [0, 65535], "indued with intellectuall sence and soules of more": [0, 65535], "with intellectuall sence and soules of more preheminence": [0, 65535], "intellectuall sence and soules of more preheminence then": [0, 65535], "sence and soules of more preheminence then fish": [0, 65535], "and soules of more preheminence then fish and": [0, 65535], "soules of more preheminence then fish and fowles": [0, 65535], "of more preheminence then fish and fowles are": [0, 65535], "more preheminence then fish and fowles are masters": [0, 65535], "preheminence then fish and fowles are masters to": [0, 65535], "then fish and fowles are masters to their": [0, 65535], "fish and fowles are masters to their females": [0, 65535], "and fowles are masters to their females and": [0, 65535], "fowles are masters to their females and their": [0, 65535], "are masters to their females and their lords": [0, 65535], "masters to their females and their lords then": [0, 65535], "to their females and their lords then let": [0, 65535], "their females and their lords then let your": [0, 65535], "females and their lords then let your will": [0, 65535], "and their lords then let your will attend": [0, 65535], "their lords then let your will attend on": [0, 65535], "lords then let your will attend on their": [0, 65535], "then let your will attend on their accords": [0, 65535], "let your will attend on their accords adri": [0, 65535], "your will attend on their accords adri this": [0, 65535], "will attend on their accords adri this seruitude": [0, 65535], "attend on their accords adri this seruitude makes": [0, 65535], "on their accords adri this seruitude makes you": [0, 65535], "their accords adri this seruitude makes you to": [0, 65535], "accords adri this seruitude makes you to keepe": [0, 65535], "adri this seruitude makes you to keepe vnwed": [0, 65535], "this seruitude makes you to keepe vnwed luci": [0, 65535], "seruitude makes you to keepe vnwed luci not": [0, 65535], "makes you to keepe vnwed luci not this": [0, 65535], "you to keepe vnwed luci not this but": [0, 65535], "to keepe vnwed luci not this but troubles": [0, 65535], "keepe vnwed luci not this but troubles of": [0, 65535], "vnwed luci not this but troubles of the": [0, 65535], "luci not this but troubles of the marriage": [0, 65535], "not this but troubles of the marriage bed": [0, 65535], "this but troubles of the marriage bed adr": [0, 65535], "but troubles of the marriage bed adr but": [0, 65535], "troubles of the marriage bed adr but were": [0, 65535], "of the marriage bed adr but were you": [0, 65535], "the marriage bed adr but were you wedded": [0, 65535], "marriage bed adr but were you wedded you": [0, 65535], "bed adr but were you wedded you wold": [0, 65535], "adr but were you wedded you wold bear": [0, 65535], "but were you wedded you wold bear some": [0, 65535], "were you wedded you wold bear some sway": [0, 65535], "you wedded you wold bear some sway luc": [0, 65535], "wedded you wold bear some sway luc ere": [0, 65535], "you wold bear some sway luc ere i": [0, 65535], "wold bear some sway luc ere i learne": [0, 65535], "bear some sway luc ere i learne loue": [0, 65535], "some sway luc ere i learne loue ile": [0, 65535], "sway luc ere i learne loue ile practise": [0, 65535], "luc ere i learne loue ile practise to": [0, 65535], "ere i learne loue ile practise to obey": [0, 65535], "i learne loue ile practise to obey adr": [0, 65535], "learne loue ile practise to obey adr how": [0, 65535], "loue ile practise to obey adr how if": [0, 65535], "ile practise to obey adr how if your": [0, 65535], "practise to obey adr how if your husband": [0, 65535], "to obey adr how if your husband start": [0, 65535], "obey adr how if your husband start some": [0, 65535], "adr how if your husband start some other": [0, 65535], "how if your husband start some other where": [0, 65535], "if your husband start some other where luc": [0, 65535], "your husband start some other where luc till": [0, 65535], "husband start some other where luc till he": [0, 65535], "start some other where luc till he come": [0, 65535], "some other where luc till he come home": [0, 65535], "other where luc till he come home againe": [0, 65535], "where luc till he come home againe i": [0, 65535], "luc till he come home againe i would": [0, 65535], "till he come home againe i would forbeare": [0, 65535], "he come home againe i would forbeare adr": [0, 65535], "come home againe i would forbeare adr patience": [0, 65535], "home againe i would forbeare adr patience vnmou'd": [0, 65535], "againe i would forbeare adr patience vnmou'd no": [0, 65535], "i would forbeare adr patience vnmou'd no maruel": [0, 65535], "would forbeare adr patience vnmou'd no maruel though": [0, 65535], "forbeare adr patience vnmou'd no maruel though she": [0, 65535], "adr patience vnmou'd no maruel though she pause": [0, 65535], "patience vnmou'd no maruel though she pause they": [0, 65535], "vnmou'd no maruel though she pause they can": [0, 65535], "no maruel though she pause they can be": [0, 65535], "maruel though she pause they can be meeke": [0, 65535], "though she pause they can be meeke that": [0, 65535], "she pause they can be meeke that haue": [0, 65535], "pause they can be meeke that haue no": [0, 65535], "they can be meeke that haue no other": [0, 65535], "can be meeke that haue no other cause": [0, 65535], "be meeke that haue no other cause a": [0, 65535], "meeke that haue no other cause a wretched": [0, 65535], "that haue no other cause a wretched soule": [0, 65535], "haue no other cause a wretched soule bruis'd": [0, 65535], "no other cause a wretched soule bruis'd with": [0, 65535], "other cause a wretched soule bruis'd with aduersitie": [0, 65535], "cause a wretched soule bruis'd with aduersitie we": [0, 65535], "a wretched soule bruis'd with aduersitie we bid": [0, 65535], "wretched soule bruis'd with aduersitie we bid be": [0, 65535], "soule bruis'd with aduersitie we bid be quiet": [0, 65535], "bruis'd with aduersitie we bid be quiet when": [0, 65535], "with aduersitie we bid be quiet when we": [0, 65535], "aduersitie we bid be quiet when we heare": [0, 65535], "we bid be quiet when we heare it": [0, 65535], "bid be quiet when we heare it crie": [0, 65535], "be quiet when we heare it crie but": [0, 65535], "quiet when we heare it crie but were": [0, 65535], "when we heare it crie but were we": [0, 65535], "we heare it crie but were we burdned": [0, 65535], "heare it crie but were we burdned with": [0, 65535], "it crie but were we burdned with like": [0, 65535], "crie but were we burdned with like waight": [0, 65535], "but were we burdned with like waight of": [0, 65535], "were we burdned with like waight of paine": [0, 65535], "we burdned with like waight of paine as": [0, 65535], "burdned with like waight of paine as much": [0, 65535], "with like waight of paine as much or": [0, 65535], "like waight of paine as much or more": [0, 65535], "waight of paine as much or more we": [0, 65535], "of paine as much or more we should": [0, 65535], "paine as much or more we should our": [0, 65535], "as much or more we should our selues": [0, 65535], "much or more we should our selues complaine": [0, 65535], "or more we should our selues complaine so": [0, 65535], "more we should our selues complaine so thou": [0, 65535], "we should our selues complaine so thou that": [0, 65535], "should our selues complaine so thou that hast": [0, 65535], "our selues complaine so thou that hast no": [0, 65535], "selues complaine so thou that hast no vnkinde": [0, 65535], "complaine so thou that hast no vnkinde mate": [0, 65535], "so thou that hast no vnkinde mate to": [0, 65535], "thou that hast no vnkinde mate to greeue": [0, 65535], "that hast no vnkinde mate to greeue thee": [0, 65535], "hast no vnkinde mate to greeue thee with": [0, 65535], "no vnkinde mate to greeue thee with vrging": [0, 65535], "vnkinde mate to greeue thee with vrging helpelesse": [0, 65535], "mate to greeue thee with vrging helpelesse patience": [0, 65535], "to greeue thee with vrging helpelesse patience would": [0, 65535], "greeue thee with vrging helpelesse patience would releeue": [0, 65535], "thee with vrging helpelesse patience would releeue me": [0, 65535], "with vrging helpelesse patience would releeue me but": [0, 65535], "vrging helpelesse patience would releeue me but if": [0, 65535], "helpelesse patience would releeue me but if thou": [0, 65535], "patience would releeue me but if thou liue": [0, 65535], "would releeue me but if thou liue to": [0, 65535], "releeue me but if thou liue to see": [0, 65535], "me but if thou liue to see like": [0, 65535], "but if thou liue to see like right": [0, 65535], "if thou liue to see like right bereft": [0, 65535], "thou liue to see like right bereft this": [0, 65535], "liue to see like right bereft this foole": [0, 65535], "to see like right bereft this foole beg'd": [0, 65535], "see like right bereft this foole beg'd patience": [0, 65535], "like right bereft this foole beg'd patience in": [0, 65535], "right bereft this foole beg'd patience in thee": [0, 65535], "bereft this foole beg'd patience in thee will": [0, 65535], "this foole beg'd patience in thee will be": [0, 65535], "foole beg'd patience in thee will be left": [0, 65535], "beg'd patience in thee will be left luci": [0, 65535], "patience in thee will be left luci well": [0, 65535], "in thee will be left luci well i": [0, 65535], "thee will be left luci well i will": [0, 65535], "will be left luci well i will marry": [0, 65535], "be left luci well i will marry one": [0, 65535], "left luci well i will marry one day": [0, 65535], "luci well i will marry one day but": [0, 65535], "well i will marry one day but to": [0, 65535], "i will marry one day but to trie": [0, 65535], "will marry one day but to trie heere": [0, 65535], "marry one day but to trie heere comes": [0, 65535], "one day but to trie heere comes your": [0, 65535], "day but to trie heere comes your man": [0, 65535], "but to trie heere comes your man now": [0, 65535], "to trie heere comes your man now is": [0, 65535], "trie heere comes your man now is your": [0, 65535], "heere comes your man now is your husband": [0, 65535], "comes your man now is your husband nie": [0, 65535], "your man now is your husband nie enter": [0, 65535], "man now is your husband nie enter dromio": [0, 65535], "now is your husband nie enter dromio eph": [0, 65535], "is your husband nie enter dromio eph adr": [0, 65535], "your husband nie enter dromio eph adr say": [0, 65535], "husband nie enter dromio eph adr say is": [0, 65535], "nie enter dromio eph adr say is your": [0, 65535], "enter dromio eph adr say is your tardie": [0, 65535], "dromio eph adr say is your tardie master": [0, 65535], "eph adr say is your tardie master now": [0, 65535], "adr say is your tardie master now at": [0, 65535], "say is your tardie master now at hand": [0, 65535], "is your tardie master now at hand e": [0, 65535], "your tardie master now at hand e dro": [0, 65535], "tardie master now at hand e dro nay": [0, 65535], "master now at hand e dro nay hee's": [0, 65535], "now at hand e dro nay hee's at": [0, 65535], "at hand e dro nay hee's at too": [0, 65535], "hand e dro nay hee's at too hands": [0, 65535], "e dro nay hee's at too hands with": [0, 65535], "dro nay hee's at too hands with mee": [0, 65535], "nay hee's at too hands with mee and": [0, 65535], "hee's at too hands with mee and that": [0, 65535], "at too hands with mee and that my": [0, 65535], "too hands with mee and that my two": [0, 65535], "hands with mee and that my two eares": [0, 65535], "with mee and that my two eares can": [0, 65535], "mee and that my two eares can witnesse": [0, 65535], "and that my two eares can witnesse adr": [0, 65535], "that my two eares can witnesse adr say": [0, 65535], "my two eares can witnesse adr say didst": [0, 65535], "two eares can witnesse adr say didst thou": [0, 65535], "eares can witnesse adr say didst thou speake": [0, 65535], "can witnesse adr say didst thou speake with": [0, 65535], "witnesse adr say didst thou speake with him": [0, 65535], "adr say didst thou speake with him knowst": [0, 65535], "say didst thou speake with him knowst thou": [0, 65535], "didst thou speake with him knowst thou his": [0, 65535], "thou speake with him knowst thou his minde": [0, 65535], "speake with him knowst thou his minde e": [0, 65535], "with him knowst thou his minde e dro": [0, 65535], "him knowst thou his minde e dro i": [0, 65535], "knowst thou his minde e dro i i": [0, 65535], "thou his minde e dro i i he": [0, 65535], "his minde e dro i i he told": [0, 65535], "minde e dro i i he told his": [0, 65535], "e dro i i he told his minde": [0, 65535], "dro i i he told his minde vpon": [0, 65535], "i i he told his minde vpon mine": [0, 65535], "i he told his minde vpon mine eare": [0, 65535], "he told his minde vpon mine eare beshrew": [0, 65535], "told his minde vpon mine eare beshrew his": [0, 65535], "his minde vpon mine eare beshrew his hand": [0, 65535], "minde vpon mine eare beshrew his hand i": [0, 65535], "vpon mine eare beshrew his hand i scarce": [0, 65535], "mine eare beshrew his hand i scarce could": [0, 65535], "eare beshrew his hand i scarce could vnderstand": [0, 65535], "beshrew his hand i scarce could vnderstand it": [0, 65535], "his hand i scarce could vnderstand it luc": [0, 65535], "hand i scarce could vnderstand it luc spake": [0, 65535], "i scarce could vnderstand it luc spake hee": [0, 65535], "scarce could vnderstand it luc spake hee so": [0, 65535], "could vnderstand it luc spake hee so doubtfully": [0, 65535], "vnderstand it luc spake hee so doubtfully thou": [0, 65535], "it luc spake hee so doubtfully thou couldst": [0, 65535], "luc spake hee so doubtfully thou couldst not": [0, 65535], "spake hee so doubtfully thou couldst not feele": [0, 65535], "hee so doubtfully thou couldst not feele his": [0, 65535], "so doubtfully thou couldst not feele his meaning": [0, 65535], "doubtfully thou couldst not feele his meaning e": [0, 65535], "thou couldst not feele his meaning e dro": [0, 65535], "couldst not feele his meaning e dro nay": [0, 65535], "not feele his meaning e dro nay hee": [0, 65535], "feele his meaning e dro nay hee strooke": [0, 65535], "his meaning e dro nay hee strooke so": [0, 65535], "meaning e dro nay hee strooke so plainly": [0, 65535], "e dro nay hee strooke so plainly i": [0, 65535], "dro nay hee strooke so plainly i could": [0, 65535], "nay hee strooke so plainly i could too": [0, 65535], "hee strooke so plainly i could too well": [0, 65535], "strooke so plainly i could too well feele": [0, 65535], "so plainly i could too well feele his": [0, 65535], "plainly i could too well feele his blowes": [0, 65535], "i could too well feele his blowes and": [0, 65535], "could too well feele his blowes and withall": [0, 65535], "too well feele his blowes and withall so": [0, 65535], "well feele his blowes and withall so doubtfully": [0, 65535], "feele his blowes and withall so doubtfully that": [0, 65535], "his blowes and withall so doubtfully that i": [0, 65535], "blowes and withall so doubtfully that i could": [0, 65535], "and withall so doubtfully that i could scarce": [0, 65535], "withall so doubtfully that i could scarce vnderstand": [0, 65535], "so doubtfully that i could scarce vnderstand them": [0, 65535], "doubtfully that i could scarce vnderstand them adri": [0, 65535], "that i could scarce vnderstand them adri but": [0, 65535], "i could scarce vnderstand them adri but say": [0, 65535], "could scarce vnderstand them adri but say i": [0, 65535], "scarce vnderstand them adri but say i prethee": [0, 65535], "vnderstand them adri but say i prethee is": [0, 65535], "them adri but say i prethee is he": [0, 65535], "adri but say i prethee is he comming": [0, 65535], "but say i prethee is he comming home": [0, 65535], "say i prethee is he comming home it": [0, 65535], "i prethee is he comming home it seemes": [0, 65535], "prethee is he comming home it seemes he": [0, 65535], "is he comming home it seemes he hath": [0, 65535], "he comming home it seemes he hath great": [0, 65535], "comming home it seemes he hath great care": [0, 65535], "home it seemes he hath great care to": [0, 65535], "it seemes he hath great care to please": [0, 65535], "seemes he hath great care to please his": [0, 65535], "he hath great care to please his wife": [0, 65535], "hath great care to please his wife e": [0, 65535], "great care to please his wife e dro": [0, 65535], "care to please his wife e dro why": [0, 65535], "to please his wife e dro why mistresse": [0, 65535], "please his wife e dro why mistresse sure": [0, 65535], "his wife e dro why mistresse sure my": [0, 65535], "wife e dro why mistresse sure my master": [0, 65535], "e dro why mistresse sure my master is": [0, 65535], "dro why mistresse sure my master is horne": [0, 65535], "why mistresse sure my master is horne mad": [0, 65535], "mistresse sure my master is horne mad adri": [0, 65535], "sure my master is horne mad adri horne": [0, 65535], "my master is horne mad adri horne mad": [0, 65535], "master is horne mad adri horne mad thou": [0, 65535], "is horne mad adri horne mad thou villaine": [0, 65535], "horne mad adri horne mad thou villaine e": [0, 65535], "mad adri horne mad thou villaine e dro": [0, 65535], "adri horne mad thou villaine e dro i": [0, 65535], "horne mad thou villaine e dro i meane": [0, 65535], "mad thou villaine e dro i meane not": [0, 65535], "thou villaine e dro i meane not cuckold": [0, 65535], "villaine e dro i meane not cuckold mad": [0, 65535], "e dro i meane not cuckold mad but": [0, 65535], "dro i meane not cuckold mad but sure": [0, 65535], "i meane not cuckold mad but sure he": [0, 65535], "meane not cuckold mad but sure he is": [0, 65535], "not cuckold mad but sure he is starke": [0, 65535], "cuckold mad but sure he is starke mad": [0, 65535], "mad but sure he is starke mad when": [0, 65535], "but sure he is starke mad when i": [0, 65535], "sure he is starke mad when i desir'd": [0, 65535], "he is starke mad when i desir'd him": [0, 65535], "is starke mad when i desir'd him to": [0, 65535], "starke mad when i desir'd him to come": [0, 65535], "mad when i desir'd him to come home": [0, 65535], "when i desir'd him to come home to": [0, 65535], "i desir'd him to come home to dinner": [0, 65535], "desir'd him to come home to dinner he": [0, 65535], "him to come home to dinner he ask'd": [0, 65535], "to come home to dinner he ask'd me": [0, 65535], "come home to dinner he ask'd me for": [0, 65535], "home to dinner he ask'd me for a": [0, 65535], "to dinner he ask'd me for a hundred": [0, 65535], "dinner he ask'd me for a hundred markes": [0, 65535], "he ask'd me for a hundred markes in": [0, 65535], "ask'd me for a hundred markes in gold": [0, 65535], "me for a hundred markes in gold 'tis": [0, 65535], "for a hundred markes in gold 'tis dinner": [0, 65535], "a hundred markes in gold 'tis dinner time": [0, 65535], "hundred markes in gold 'tis dinner time quoth": [0, 65535], "markes in gold 'tis dinner time quoth i": [0, 65535], "in gold 'tis dinner time quoth i my": [0, 65535], "gold 'tis dinner time quoth i my gold": [0, 65535], "'tis dinner time quoth i my gold quoth": [0, 65535], "dinner time quoth i my gold quoth he": [0, 65535], "time quoth i my gold quoth he your": [0, 65535], "quoth i my gold quoth he your meat": [0, 65535], "i my gold quoth he your meat doth": [0, 65535], "my gold quoth he your meat doth burne": [0, 65535], "gold quoth he your meat doth burne quoth": [0, 65535], "quoth he your meat doth burne quoth i": [0, 65535], "he your meat doth burne quoth i my": [0, 65535], "your meat doth burne quoth i my gold": [0, 65535], "meat doth burne quoth i my gold quoth": [0, 65535], "doth burne quoth i my gold quoth he": [0, 65535], "burne quoth i my gold quoth he will": [0, 65535], "quoth i my gold quoth he will you": [0, 65535], "i my gold quoth he will you come": [0, 65535], "my gold quoth he will you come quoth": [0, 65535], "gold quoth he will you come quoth i": [0, 65535], "quoth he will you come quoth i my": [0, 65535], "he will you come quoth i my gold": [0, 65535], "will you come quoth i my gold quoth": [0, 65535], "you come quoth i my gold quoth he": [0, 65535], "come quoth i my gold quoth he where": [0, 65535], "quoth i my gold quoth he where is": [0, 65535], "i my gold quoth he where is the": [0, 65535], "my gold quoth he where is the thousand": [0, 65535], "gold quoth he where is the thousand markes": [0, 65535], "quoth he where is the thousand markes i": [0, 65535], "he where is the thousand markes i gaue": [0, 65535], "where is the thousand markes i gaue thee": [0, 65535], "is the thousand markes i gaue thee villaine": [0, 65535], "the thousand markes i gaue thee villaine the": [0, 65535], "thousand markes i gaue thee villaine the pigge": [0, 65535], "markes i gaue thee villaine the pigge quoth": [0, 65535], "i gaue thee villaine the pigge quoth i": [0, 65535], "gaue thee villaine the pigge quoth i is": [0, 65535], "thee villaine the pigge quoth i is burn'd": [0, 65535], "villaine the pigge quoth i is burn'd my": [0, 65535], "the pigge quoth i is burn'd my gold": [0, 65535], "pigge quoth i is burn'd my gold quoth": [0, 65535], "quoth i is burn'd my gold quoth he": [0, 65535], "i is burn'd my gold quoth he my": [0, 65535], "is burn'd my gold quoth he my mistresse": [0, 65535], "burn'd my gold quoth he my mistresse sir": [0, 65535], "my gold quoth he my mistresse sir quoth": [0, 65535], "gold quoth he my mistresse sir quoth i": [0, 65535], "quoth he my mistresse sir quoth i hang": [0, 65535], "he my mistresse sir quoth i hang vp": [0, 65535], "my mistresse sir quoth i hang vp thy": [0, 65535], "mistresse sir quoth i hang vp thy mistresse": [0, 65535], "sir quoth i hang vp thy mistresse i": [0, 65535], "quoth i hang vp thy mistresse i know": [0, 65535], "i hang vp thy mistresse i know not": [0, 65535], "hang vp thy mistresse i know not thy": [0, 65535], "vp thy mistresse i know not thy mistresse": [0, 65535], "thy mistresse i know not thy mistresse out": [0, 65535], "mistresse i know not thy mistresse out on": [0, 65535], "i know not thy mistresse out on thy": [0, 65535], "know not thy mistresse out on thy mistresse": [0, 65535], "not thy mistresse out on thy mistresse luci": [0, 65535], "thy mistresse out on thy mistresse luci quoth": [0, 65535], "mistresse out on thy mistresse luci quoth who": [0, 65535], "out on thy mistresse luci quoth who e": [0, 65535], "on thy mistresse luci quoth who e dr": [0, 65535], "thy mistresse luci quoth who e dr quoth": [0, 65535], "mistresse luci quoth who e dr quoth my": [0, 65535], "luci quoth who e dr quoth my master": [0, 65535], "quoth who e dr quoth my master i": [0, 65535], "who e dr quoth my master i know": [0, 65535], "e dr quoth my master i know quoth": [0, 65535], "dr quoth my master i know quoth he": [0, 65535], "quoth my master i know quoth he no": [0, 65535], "my master i know quoth he no house": [0, 65535], "master i know quoth he no house no": [0, 65535], "i know quoth he no house no wife": [0, 65535], "know quoth he no house no wife no": [0, 65535], "quoth he no house no wife no mistresse": [0, 65535], "he no house no wife no mistresse so": [0, 65535], "no house no wife no mistresse so that": [0, 65535], "house no wife no mistresse so that my": [0, 65535], "no wife no mistresse so that my arrant": [0, 65535], "wife no mistresse so that my arrant due": [0, 65535], "no mistresse so that my arrant due vnto": [0, 65535], "mistresse so that my arrant due vnto my": [0, 65535], "so that my arrant due vnto my tongue": [0, 65535], "that my arrant due vnto my tongue i": [0, 65535], "my arrant due vnto my tongue i thanke": [0, 65535], "arrant due vnto my tongue i thanke him": [0, 65535], "due vnto my tongue i thanke him i": [0, 65535], "vnto my tongue i thanke him i bare": [0, 65535], "my tongue i thanke him i bare home": [0, 65535], "tongue i thanke him i bare home vpon": [0, 65535], "i thanke him i bare home vpon my": [0, 65535], "thanke him i bare home vpon my shoulders": [0, 65535], "him i bare home vpon my shoulders for": [0, 65535], "i bare home vpon my shoulders for in": [0, 65535], "bare home vpon my shoulders for in conclusion": [0, 65535], "home vpon my shoulders for in conclusion he": [0, 65535], "vpon my shoulders for in conclusion he did": [0, 65535], "my shoulders for in conclusion he did beat": [0, 65535], "shoulders for in conclusion he did beat me": [0, 65535], "for in conclusion he did beat me there": [0, 65535], "in conclusion he did beat me there adri": [0, 65535], "conclusion he did beat me there adri go": [0, 65535], "he did beat me there adri go back": [0, 65535], "did beat me there adri go back againe": [0, 65535], "beat me there adri go back againe thou": [0, 65535], "me there adri go back againe thou slaue": [0, 65535], "there adri go back againe thou slaue fetch": [0, 65535], "adri go back againe thou slaue fetch him": [0, 65535], "go back againe thou slaue fetch him home": [0, 65535], "back againe thou slaue fetch him home dro": [0, 65535], "againe thou slaue fetch him home dro goe": [0, 65535], "thou slaue fetch him home dro goe backe": [0, 65535], "slaue fetch him home dro goe backe againe": [0, 65535], "fetch him home dro goe backe againe and": [0, 65535], "him home dro goe backe againe and be": [0, 65535], "home dro goe backe againe and be new": [0, 65535], "dro goe backe againe and be new beaten": [0, 65535], "goe backe againe and be new beaten home": [0, 65535], "backe againe and be new beaten home for": [0, 65535], "againe and be new beaten home for gods": [0, 65535], "and be new beaten home for gods sake": [0, 65535], "be new beaten home for gods sake send": [0, 65535], "new beaten home for gods sake send some": [0, 65535], "beaten home for gods sake send some other": [0, 65535], "home for gods sake send some other messenger": [0, 65535], "for gods sake send some other messenger adri": [0, 65535], "gods sake send some other messenger adri backe": [0, 65535], "sake send some other messenger adri backe slaue": [0, 65535], "send some other messenger adri backe slaue or": [0, 65535], "some other messenger adri backe slaue or i": [0, 65535], "other messenger adri backe slaue or i will": [0, 65535], "messenger adri backe slaue or i will breake": [0, 65535], "adri backe slaue or i will breake thy": [0, 65535], "backe slaue or i will breake thy pate": [0, 65535], "slaue or i will breake thy pate a": [0, 65535], "or i will breake thy pate a crosse": [0, 65535], "i will breake thy pate a crosse dro": [0, 65535], "will breake thy pate a crosse dro and": [0, 65535], "breake thy pate a crosse dro and he": [0, 65535], "thy pate a crosse dro and he will": [0, 65535], "pate a crosse dro and he will blesse": [0, 65535], "a crosse dro and he will blesse the": [0, 65535], "crosse dro and he will blesse the crosse": [0, 65535], "dro and he will blesse the crosse with": [0, 65535], "and he will blesse the crosse with other": [0, 65535], "he will blesse the crosse with other beating": [0, 65535], "will blesse the crosse with other beating betweene": [0, 65535], "blesse the crosse with other beating betweene you": [0, 65535], "the crosse with other beating betweene you i": [0, 65535], "crosse with other beating betweene you i shall": [0, 65535], "with other beating betweene you i shall haue": [0, 65535], "other beating betweene you i shall haue a": [0, 65535], "beating betweene you i shall haue a holy": [0, 65535], "betweene you i shall haue a holy head": [0, 65535], "you i shall haue a holy head adri": [0, 65535], "i shall haue a holy head adri hence": [0, 65535], "shall haue a holy head adri hence prating": [0, 65535], "haue a holy head adri hence prating pesant": [0, 65535], "a holy head adri hence prating pesant fetch": [0, 65535], "holy head adri hence prating pesant fetch thy": [0, 65535], "head adri hence prating pesant fetch thy master": [0, 65535], "adri hence prating pesant fetch thy master home": [0, 65535], "hence prating pesant fetch thy master home dro": [0, 65535], "prating pesant fetch thy master home dro am": [0, 65535], "pesant fetch thy master home dro am i": [0, 65535], "fetch thy master home dro am i so": [0, 65535], "thy master home dro am i so round": [0, 65535], "master home dro am i so round with": [0, 65535], "home dro am i so round with you": [0, 65535], "dro am i so round with you as": [0, 65535], "am i so round with you as you": [0, 65535], "i so round with you as you with": [0, 65535], "so round with you as you with me": [0, 65535], "round with you as you with me that": [0, 65535], "with you as you with me that like": [0, 65535], "you as you with me that like a": [0, 65535], "as you with me that like a foot": [0, 65535], "you with me that like a foot ball": [0, 65535], "with me that like a foot ball you": [0, 65535], "me that like a foot ball you doe": [0, 65535], "that like a foot ball you doe spurne": [0, 65535], "like a foot ball you doe spurne me": [0, 65535], "a foot ball you doe spurne me thus": [0, 65535], "foot ball you doe spurne me thus you": [0, 65535], "ball you doe spurne me thus you spurne": [0, 65535], "you doe spurne me thus you spurne me": [0, 65535], "doe spurne me thus you spurne me hence": [0, 65535], "spurne me thus you spurne me hence and": [0, 65535], "me thus you spurne me hence and he": [0, 65535], "thus you spurne me hence and he will": [0, 65535], "you spurne me hence and he will spurne": [0, 65535], "spurne me hence and he will spurne me": [0, 65535], "me hence and he will spurne me hither": [0, 65535], "hence and he will spurne me hither if": [0, 65535], "and he will spurne me hither if i": [0, 65535], "he will spurne me hither if i last": [0, 65535], "will spurne me hither if i last in": [0, 65535], "spurne me hither if i last in this": [0, 65535], "me hither if i last in this seruice": [0, 65535], "hither if i last in this seruice you": [0, 65535], "if i last in this seruice you must": [0, 65535], "i last in this seruice you must case": [0, 65535], "last in this seruice you must case me": [0, 65535], "in this seruice you must case me in": [0, 65535], "this seruice you must case me in leather": [0, 65535], "seruice you must case me in leather luci": [0, 65535], "you must case me in leather luci fie": [0, 65535], "must case me in leather luci fie how": [0, 65535], "case me in leather luci fie how impatience": [0, 65535], "me in leather luci fie how impatience lowreth": [0, 65535], "in leather luci fie how impatience lowreth in": [0, 65535], "leather luci fie how impatience lowreth in your": [0, 65535], "luci fie how impatience lowreth in your face": [0, 65535], "fie how impatience lowreth in your face adri": [0, 65535], "how impatience lowreth in your face adri his": [0, 65535], "impatience lowreth in your face adri his company": [0, 65535], "lowreth in your face adri his company must": [0, 65535], "in your face adri his company must do": [0, 65535], "your face adri his company must do his": [0, 65535], "face adri his company must do his minions": [0, 65535], "adri his company must do his minions grace": [0, 65535], "his company must do his minions grace whil'st": [0, 65535], "company must do his minions grace whil'st i": [0, 65535], "must do his minions grace whil'st i at": [0, 65535], "do his minions grace whil'st i at home": [0, 65535], "his minions grace whil'st i at home starue": [0, 65535], "minions grace whil'st i at home starue for": [0, 65535], "grace whil'st i at home starue for a": [0, 65535], "whil'st i at home starue for a merrie": [0, 65535], "i at home starue for a merrie looke": [0, 65535], "at home starue for a merrie looke hath": [0, 65535], "home starue for a merrie looke hath homelie": [0, 65535], "starue for a merrie looke hath homelie age": [0, 65535], "for a merrie looke hath homelie age th'": [0, 65535], "a merrie looke hath homelie age th' alluring": [0, 65535], "merrie looke hath homelie age th' alluring beauty": [0, 65535], "looke hath homelie age th' alluring beauty tooke": [0, 65535], "hath homelie age th' alluring beauty tooke from": [0, 65535], "homelie age th' alluring beauty tooke from my": [0, 65535], "age th' alluring beauty tooke from my poore": [0, 65535], "th' alluring beauty tooke from my poore cheeke": [0, 65535], "alluring beauty tooke from my poore cheeke then": [0, 65535], "beauty tooke from my poore cheeke then he": [0, 65535], "tooke from my poore cheeke then he hath": [0, 65535], "from my poore cheeke then he hath wasted": [0, 65535], "my poore cheeke then he hath wasted it": [0, 65535], "poore cheeke then he hath wasted it are": [0, 65535], "cheeke then he hath wasted it are my": [0, 65535], "then he hath wasted it are my discourses": [0, 65535], "he hath wasted it are my discourses dull": [0, 65535], "hath wasted it are my discourses dull barren": [0, 65535], "wasted it are my discourses dull barren my": [0, 65535], "it are my discourses dull barren my wit": [0, 65535], "are my discourses dull barren my wit if": [0, 65535], "my discourses dull barren my wit if voluble": [0, 65535], "discourses dull barren my wit if voluble and": [0, 65535], "dull barren my wit if voluble and sharpe": [0, 65535], "barren my wit if voluble and sharpe discourse": [0, 65535], "my wit if voluble and sharpe discourse be": [0, 65535], "wit if voluble and sharpe discourse be mar'd": [0, 65535], "if voluble and sharpe discourse be mar'd vnkindnesse": [0, 65535], "voluble and sharpe discourse be mar'd vnkindnesse blunts": [0, 65535], "and sharpe discourse be mar'd vnkindnesse blunts it": [0, 65535], "sharpe discourse be mar'd vnkindnesse blunts it more": [0, 65535], "discourse be mar'd vnkindnesse blunts it more then": [0, 65535], "be mar'd vnkindnesse blunts it more then marble": [0, 65535], "mar'd vnkindnesse blunts it more then marble hard": [0, 65535], "vnkindnesse blunts it more then marble hard doe": [0, 65535], "blunts it more then marble hard doe their": [0, 65535], "it more then marble hard doe their gay": [0, 65535], "more then marble hard doe their gay vestments": [0, 65535], "then marble hard doe their gay vestments his": [0, 65535], "marble hard doe their gay vestments his affections": [0, 65535], "hard doe their gay vestments his affections baite": [0, 65535], "doe their gay vestments his affections baite that's": [0, 65535], "their gay vestments his affections baite that's not": [0, 65535], "gay vestments his affections baite that's not my": [0, 65535], "vestments his affections baite that's not my fault": [0, 65535], "his affections baite that's not my fault hee's": [0, 65535], "affections baite that's not my fault hee's master": [0, 65535], "baite that's not my fault hee's master of": [0, 65535], "that's not my fault hee's master of my": [0, 65535], "not my fault hee's master of my state": [0, 65535], "my fault hee's master of my state what": [0, 65535], "fault hee's master of my state what ruines": [0, 65535], "hee's master of my state what ruines are": [0, 65535], "master of my state what ruines are in": [0, 65535], "of my state what ruines are in me": [0, 65535], "my state what ruines are in me that": [0, 65535], "state what ruines are in me that can": [0, 65535], "what ruines are in me that can be": [0, 65535], "ruines are in me that can be found": [0, 65535], "are in me that can be found by": [0, 65535], "in me that can be found by him": [0, 65535], "me that can be found by him not": [0, 65535], "that can be found by him not ruin'd": [0, 65535], "can be found by him not ruin'd then": [0, 65535], "be found by him not ruin'd then is": [0, 65535], "found by him not ruin'd then is he": [0, 65535], "by him not ruin'd then is he the": [0, 65535], "him not ruin'd then is he the ground": [0, 65535], "not ruin'd then is he the ground of": [0, 65535], "ruin'd then is he the ground of my": [0, 65535], "then is he the ground of my defeatures": [0, 65535], "is he the ground of my defeatures my": [0, 65535], "he the ground of my defeatures my decayed": [0, 65535], "the ground of my defeatures my decayed faire": [0, 65535], "ground of my defeatures my decayed faire a": [0, 65535], "of my defeatures my decayed faire a sunnie": [0, 65535], "my defeatures my decayed faire a sunnie looke": [0, 65535], "defeatures my decayed faire a sunnie looke of": [0, 65535], "my decayed faire a sunnie looke of his": [0, 65535], "decayed faire a sunnie looke of his would": [0, 65535], "faire a sunnie looke of his would soone": [0, 65535], "a sunnie looke of his would soone repaire": [0, 65535], "sunnie looke of his would soone repaire but": [0, 65535], "looke of his would soone repaire but too": [0, 65535], "of his would soone repaire but too vnruly": [0, 65535], "his would soone repaire but too vnruly deere": [0, 65535], "would soone repaire but too vnruly deere he": [0, 65535], "soone repaire but too vnruly deere he breakes": [0, 65535], "repaire but too vnruly deere he breakes the": [0, 65535], "but too vnruly deere he breakes the pale": [0, 65535], "too vnruly deere he breakes the pale and": [0, 65535], "vnruly deere he breakes the pale and feedes": [0, 65535], "deere he breakes the pale and feedes from": [0, 65535], "he breakes the pale and feedes from home": [0, 65535], "breakes the pale and feedes from home poore": [0, 65535], "the pale and feedes from home poore i": [0, 65535], "pale and feedes from home poore i am": [0, 65535], "and feedes from home poore i am but": [0, 65535], "feedes from home poore i am but his": [0, 65535], "from home poore i am but his stale": [0, 65535], "home poore i am but his stale luci": [0, 65535], "poore i am but his stale luci selfe": [0, 65535], "i am but his stale luci selfe harming": [0, 65535], "am but his stale luci selfe harming iealousie": [0, 65535], "but his stale luci selfe harming iealousie fie": [0, 65535], "his stale luci selfe harming iealousie fie beat": [0, 65535], "stale luci selfe harming iealousie fie beat it": [0, 65535], "luci selfe harming iealousie fie beat it hence": [0, 65535], "selfe harming iealousie fie beat it hence ad": [0, 65535], "harming iealousie fie beat it hence ad vnfeeling": [0, 65535], "iealousie fie beat it hence ad vnfeeling fools": [0, 65535], "fie beat it hence ad vnfeeling fools can": [0, 65535], "beat it hence ad vnfeeling fools can with": [0, 65535], "it hence ad vnfeeling fools can with such": [0, 65535], "hence ad vnfeeling fools can with such wrongs": [0, 65535], "ad vnfeeling fools can with such wrongs dispence": [0, 65535], "vnfeeling fools can with such wrongs dispence i": [0, 65535], "fools can with such wrongs dispence i know": [0, 65535], "can with such wrongs dispence i know his": [0, 65535], "with such wrongs dispence i know his eye": [0, 65535], "such wrongs dispence i know his eye doth": [0, 65535], "wrongs dispence i know his eye doth homage": [0, 65535], "dispence i know his eye doth homage other": [0, 65535], "i know his eye doth homage other where": [0, 65535], "know his eye doth homage other where or": [0, 65535], "his eye doth homage other where or else": [0, 65535], "eye doth homage other where or else what": [0, 65535], "doth homage other where or else what lets": [0, 65535], "homage other where or else what lets it": [0, 65535], "other where or else what lets it but": [0, 65535], "where or else what lets it but he": [0, 65535], "or else what lets it but he would": [0, 65535], "else what lets it but he would be": [0, 65535], "what lets it but he would be here": [0, 65535], "lets it but he would be here sister": [0, 65535], "it but he would be here sister you": [0, 65535], "but he would be here sister you know": [0, 65535], "he would be here sister you know he": [0, 65535], "would be here sister you know he promis'd": [0, 65535], "be here sister you know he promis'd me": [0, 65535], "here sister you know he promis'd me a": [0, 65535], "sister you know he promis'd me a chaine": [0, 65535], "you know he promis'd me a chaine would": [0, 65535], "know he promis'd me a chaine would that": [0, 65535], "he promis'd me a chaine would that alone": [0, 65535], "promis'd me a chaine would that alone a": [0, 65535], "me a chaine would that alone a loue": [0, 65535], "a chaine would that alone a loue he": [0, 65535], "chaine would that alone a loue he would": [0, 65535], "would that alone a loue he would detaine": [0, 65535], "that alone a loue he would detaine so": [0, 65535], "alone a loue he would detaine so he": [0, 65535], "a loue he would detaine so he would": [0, 65535], "loue he would detaine so he would keepe": [0, 65535], "he would detaine so he would keepe faire": [0, 65535], "would detaine so he would keepe faire quarter": [0, 65535], "detaine so he would keepe faire quarter with": [0, 65535], "so he would keepe faire quarter with his": [0, 65535], "he would keepe faire quarter with his bed": [0, 65535], "would keepe faire quarter with his bed i": [0, 65535], "keepe faire quarter with his bed i see": [0, 65535], "faire quarter with his bed i see the": [0, 65535], "quarter with his bed i see the iewell": [0, 65535], "with his bed i see the iewell best": [0, 65535], "his bed i see the iewell best enamaled": [0, 65535], "bed i see the iewell best enamaled will": [0, 65535], "i see the iewell best enamaled will loose": [0, 65535], "see the iewell best enamaled will loose his": [0, 65535], "the iewell best enamaled will loose his beautie": [0, 65535], "iewell best enamaled will loose his beautie yet": [0, 65535], "best enamaled will loose his beautie yet the": [0, 65535], "enamaled will loose his beautie yet the gold": [0, 65535], "will loose his beautie yet the gold bides": [0, 65535], "loose his beautie yet the gold bides still": [0, 65535], "his beautie yet the gold bides still that": [0, 65535], "beautie yet the gold bides still that others": [0, 65535], "yet the gold bides still that others touch": [0, 65535], "the gold bides still that others touch and": [0, 65535], "gold bides still that others touch and often": [0, 65535], "bides still that others touch and often touching": [0, 65535], "still that others touch and often touching will": [0, 65535], "that others touch and often touching will where": [0, 65535], "others touch and often touching will where gold": [0, 65535], "touch and often touching will where gold and": [0, 65535], "and often touching will where gold and no": [0, 65535], "often touching will where gold and no man": [0, 65535], "touching will where gold and no man that": [0, 65535], "will where gold and no man that hath": [0, 65535], "where gold and no man that hath a": [0, 65535], "gold and no man that hath a name": [0, 65535], "and no man that hath a name by": [0, 65535], "no man that hath a name by falshood": [0, 65535], "man that hath a name by falshood and": [0, 65535], "that hath a name by falshood and corruption": [0, 65535], "hath a name by falshood and corruption doth": [0, 65535], "a name by falshood and corruption doth it": [0, 65535], "name by falshood and corruption doth it shame": [0, 65535], "by falshood and corruption doth it shame since": [0, 65535], "falshood and corruption doth it shame since that": [0, 65535], "and corruption doth it shame since that my": [0, 65535], "corruption doth it shame since that my beautie": [0, 65535], "doth it shame since that my beautie cannot": [0, 65535], "it shame since that my beautie cannot please": [0, 65535], "shame since that my beautie cannot please his": [0, 65535], "since that my beautie cannot please his eie": [0, 65535], "that my beautie cannot please his eie ile": [0, 65535], "my beautie cannot please his eie ile weepe": [0, 65535], "beautie cannot please his eie ile weepe what's": [0, 65535], "cannot please his eie ile weepe what's left": [0, 65535], "please his eie ile weepe what's left away": [0, 65535], "his eie ile weepe what's left away and": [0, 65535], "eie ile weepe what's left away and weeping": [0, 65535], "ile weepe what's left away and weeping die": [0, 65535], "weepe what's left away and weeping die luci": [0, 65535], "what's left away and weeping die luci how": [0, 65535], "left away and weeping die luci how manie": [0, 65535], "away and weeping die luci how manie fond": [0, 65535], "and weeping die luci how manie fond fooles": [0, 65535], "weeping die luci how manie fond fooles serue": [0, 65535], "die luci how manie fond fooles serue mad": [0, 65535], "luci how manie fond fooles serue mad ielousie": [0, 65535], "how manie fond fooles serue mad ielousie exit": [0, 65535], "manie fond fooles serue mad ielousie exit enter": [0, 65535], "fond fooles serue mad ielousie exit enter antipholis": [0, 65535], "fooles serue mad ielousie exit enter antipholis errotis": [0, 65535], "serue mad ielousie exit enter antipholis errotis ant": [0, 65535], "mad ielousie exit enter antipholis errotis ant the": [0, 65535], "ielousie exit enter antipholis errotis ant the gold": [0, 65535], "exit enter antipholis errotis ant the gold i": [0, 65535], "enter antipholis errotis ant the gold i gaue": [0, 65535], "antipholis errotis ant the gold i gaue to": [0, 65535], "errotis ant the gold i gaue to dromio": [0, 65535], "ant the gold i gaue to dromio is": [0, 65535], "the gold i gaue to dromio is laid": [0, 65535], "gold i gaue to dromio is laid vp": [0, 65535], "i gaue to dromio is laid vp safe": [0, 65535], "gaue to dromio is laid vp safe at": [0, 65535], "to dromio is laid vp safe at the": [0, 65535], "dromio is laid vp safe at the centaur": [0, 65535], "is laid vp safe at the centaur and": [0, 65535], "laid vp safe at the centaur and the": [0, 65535], "vp safe at the centaur and the heedfull": [0, 65535], "safe at the centaur and the heedfull slaue": [0, 65535], "at the centaur and the heedfull slaue is": [0, 65535], "the centaur and the heedfull slaue is wandred": [0, 65535], "centaur and the heedfull slaue is wandred forth": [0, 65535], "and the heedfull slaue is wandred forth in": [0, 65535], "the heedfull slaue is wandred forth in care": [0, 65535], "heedfull slaue is wandred forth in care to": [0, 65535], "slaue is wandred forth in care to seeke": [0, 65535], "is wandred forth in care to seeke me": [0, 65535], "wandred forth in care to seeke me out": [0, 65535], "forth in care to seeke me out by": [0, 65535], "in care to seeke me out by computation": [0, 65535], "care to seeke me out by computation and": [0, 65535], "to seeke me out by computation and mine": [0, 65535], "seeke me out by computation and mine hosts": [0, 65535], "me out by computation and mine hosts report": [0, 65535], "out by computation and mine hosts report i": [0, 65535], "by computation and mine hosts report i could": [0, 65535], "computation and mine hosts report i could not": [0, 65535], "and mine hosts report i could not speake": [0, 65535], "mine hosts report i could not speake with": [0, 65535], "hosts report i could not speake with dromio": [0, 65535], "report i could not speake with dromio since": [0, 65535], "i could not speake with dromio since at": [0, 65535], "could not speake with dromio since at first": [0, 65535], "not speake with dromio since at first i": [0, 65535], "speake with dromio since at first i sent": [0, 65535], "with dromio since at first i sent him": [0, 65535], "dromio since at first i sent him from": [0, 65535], "since at first i sent him from the": [0, 65535], "at first i sent him from the mart": [0, 65535], "first i sent him from the mart see": [0, 65535], "i sent him from the mart see here": [0, 65535], "sent him from the mart see here he": [0, 65535], "him from the mart see here he comes": [0, 65535], "from the mart see here he comes enter": [0, 65535], "the mart see here he comes enter dromio": [0, 65535], "mart see here he comes enter dromio siracusia": [0, 65535], "see here he comes enter dromio siracusia how": [0, 65535], "here he comes enter dromio siracusia how now": [0, 65535], "he comes enter dromio siracusia how now sir": [0, 65535], "comes enter dromio siracusia how now sir is": [0, 65535], "enter dromio siracusia how now sir is your": [0, 65535], "dromio siracusia how now sir is your merrie": [0, 65535], "siracusia how now sir is your merrie humor": [0, 65535], "how now sir is your merrie humor alter'd": [0, 65535], "now sir is your merrie humor alter'd as": [0, 65535], "sir is your merrie humor alter'd as you": [0, 65535], "is your merrie humor alter'd as you loue": [0, 65535], "your merrie humor alter'd as you loue stroakes": [0, 65535], "merrie humor alter'd as you loue stroakes so": [0, 65535], "humor alter'd as you loue stroakes so iest": [0, 65535], "alter'd as you loue stroakes so iest with": [0, 65535], "as you loue stroakes so iest with me": [0, 65535], "you loue stroakes so iest with me againe": [0, 65535], "loue stroakes so iest with me againe you": [0, 65535], "stroakes so iest with me againe you know": [0, 65535], "so iest with me againe you know no": [0, 65535], "iest with me againe you know no centaur": [0, 65535], "with me againe you know no centaur you": [0, 65535], "me againe you know no centaur you receiu'd": [0, 65535], "againe you know no centaur you receiu'd no": [0, 65535], "you know no centaur you receiu'd no gold": [0, 65535], "know no centaur you receiu'd no gold your": [0, 65535], "no centaur you receiu'd no gold your mistresse": [0, 65535], "centaur you receiu'd no gold your mistresse sent": [0, 65535], "you receiu'd no gold your mistresse sent to": [0, 65535], "receiu'd no gold your mistresse sent to haue": [0, 65535], "no gold your mistresse sent to haue me": [0, 65535], "gold your mistresse sent to haue me home": [0, 65535], "your mistresse sent to haue me home to": [0, 65535], "mistresse sent to haue me home to dinner": [0, 65535], "sent to haue me home to dinner my": [0, 65535], "to haue me home to dinner my house": [0, 65535], "haue me home to dinner my house was": [0, 65535], "me home to dinner my house was at": [0, 65535], "home to dinner my house was at the": [0, 65535], "to dinner my house was at the ph\u0153nix": [0, 65535], "dinner my house was at the ph\u0153nix wast": [0, 65535], "my house was at the ph\u0153nix wast thou": [0, 65535], "house was at the ph\u0153nix wast thou mad": [0, 65535], "was at the ph\u0153nix wast thou mad that": [0, 65535], "at the ph\u0153nix wast thou mad that thus": [0, 65535], "the ph\u0153nix wast thou mad that thus so": [0, 65535], "ph\u0153nix wast thou mad that thus so madlie": [0, 65535], "wast thou mad that thus so madlie thou": [0, 65535], "thou mad that thus so madlie thou did": [0, 65535], "mad that thus so madlie thou did didst": [0, 65535], "that thus so madlie thou did didst answere": [0, 65535], "thus so madlie thou did didst answere me": [0, 65535], "so madlie thou did didst answere me s": [0, 65535], "madlie thou did didst answere me s dro": [0, 65535], "thou did didst answere me s dro what": [0, 65535], "did didst answere me s dro what answer": [0, 65535], "didst answere me s dro what answer sir": [0, 65535], "answere me s dro what answer sir when": [0, 65535], "me s dro what answer sir when spake": [0, 65535], "s dro what answer sir when spake i": [0, 65535], "dro what answer sir when spake i such": [0, 65535], "what answer sir when spake i such a": [0, 65535], "answer sir when spake i such a word": [0, 65535], "sir when spake i such a word e": [0, 65535], "when spake i such a word e ant": [0, 65535], "spake i such a word e ant euen": [0, 65535], "i such a word e ant euen now": [0, 65535], "such a word e ant euen now euen": [0, 65535], "a word e ant euen now euen here": [0, 65535], "word e ant euen now euen here not": [0, 65535], "e ant euen now euen here not halfe": [0, 65535], "ant euen now euen here not halfe an": [0, 65535], "euen now euen here not halfe an howre": [0, 65535], "now euen here not halfe an howre since": [0, 65535], "euen here not halfe an howre since s": [0, 65535], "here not halfe an howre since s dro": [0, 65535], "not halfe an howre since s dro i": [0, 65535], "halfe an howre since s dro i did": [0, 65535], "an howre since s dro i did not": [0, 65535], "howre since s dro i did not see": [0, 65535], "since s dro i did not see you": [0, 65535], "s dro i did not see you since": [0, 65535], "dro i did not see you since you": [0, 65535], "i did not see you since you sent": [0, 65535], "did not see you since you sent me": [0, 65535], "not see you since you sent me hence": [0, 65535], "see you since you sent me hence home": [0, 65535], "you since you sent me hence home to": [0, 65535], "since you sent me hence home to the": [0, 65535], "you sent me hence home to the centaur": [0, 65535], "sent me hence home to the centaur with": [0, 65535], "me hence home to the centaur with the": [0, 65535], "hence home to the centaur with the gold": [0, 65535], "home to the centaur with the gold you": [0, 65535], "to the centaur with the gold you gaue": [0, 65535], "the centaur with the gold you gaue me": [0, 65535], "centaur with the gold you gaue me ant": [0, 65535], "with the gold you gaue me ant villaine": [0, 65535], "the gold you gaue me ant villaine thou": [0, 65535], "gold you gaue me ant villaine thou didst": [0, 65535], "you gaue me ant villaine thou didst denie": [0, 65535], "gaue me ant villaine thou didst denie the": [0, 65535], "me ant villaine thou didst denie the golds": [0, 65535], "ant villaine thou didst denie the golds receit": [0, 65535], "villaine thou didst denie the golds receit and": [0, 65535], "thou didst denie the golds receit and toldst": [0, 65535], "didst denie the golds receit and toldst me": [0, 65535], "denie the golds receit and toldst me of": [0, 65535], "the golds receit and toldst me of a": [0, 65535], "golds receit and toldst me of a mistresse": [0, 65535], "receit and toldst me of a mistresse and": [0, 65535], "and toldst me of a mistresse and a": [0, 65535], "toldst me of a mistresse and a dinner": [0, 65535], "me of a mistresse and a dinner for": [0, 65535], "of a mistresse and a dinner for which": [0, 65535], "a mistresse and a dinner for which i": [0, 65535], "mistresse and a dinner for which i hope": [0, 65535], "and a dinner for which i hope thou": [0, 65535], "a dinner for which i hope thou feltst": [0, 65535], "dinner for which i hope thou feltst i": [0, 65535], "for which i hope thou feltst i was": [0, 65535], "which i hope thou feltst i was displeas'd": [0, 65535], "i hope thou feltst i was displeas'd s": [0, 65535], "hope thou feltst i was displeas'd s dro": [0, 65535], "thou feltst i was displeas'd s dro i": [0, 65535], "feltst i was displeas'd s dro i am": [0, 65535], "i was displeas'd s dro i am glad": [0, 65535], "was displeas'd s dro i am glad to": [0, 65535], "displeas'd s dro i am glad to see": [0, 65535], "s dro i am glad to see you": [0, 65535], "dro i am glad to see you in": [0, 65535], "i am glad to see you in this": [0, 65535], "am glad to see you in this merrie": [0, 65535], "glad to see you in this merrie vaine": [0, 65535], "to see you in this merrie vaine what": [0, 65535], "see you in this merrie vaine what meanes": [0, 65535], "you in this merrie vaine what meanes this": [0, 65535], "in this merrie vaine what meanes this iest": [0, 65535], "this merrie vaine what meanes this iest i": [0, 65535], "merrie vaine what meanes this iest i pray": [0, 65535], "vaine what meanes this iest i pray you": [0, 65535], "what meanes this iest i pray you master": [0, 65535], "meanes this iest i pray you master tell": [0, 65535], "this iest i pray you master tell me": [0, 65535], "iest i pray you master tell me ant": [0, 65535], "i pray you master tell me ant yea": [0, 65535], "pray you master tell me ant yea dost": [0, 65535], "you master tell me ant yea dost thou": [0, 65535], "master tell me ant yea dost thou ieere": [0, 65535], "tell me ant yea dost thou ieere flowt": [0, 65535], "me ant yea dost thou ieere flowt me": [0, 65535], "ant yea dost thou ieere flowt me in": [0, 65535], "yea dost thou ieere flowt me in the": [0, 65535], "dost thou ieere flowt me in the teeth": [0, 65535], "thou ieere flowt me in the teeth thinkst": [0, 65535], "ieere flowt me in the teeth thinkst thou": [0, 65535], "flowt me in the teeth thinkst thou i": [0, 65535], "me in the teeth thinkst thou i iest": [0, 65535], "in the teeth thinkst thou i iest hold": [0, 65535], "the teeth thinkst thou i iest hold take": [0, 65535], "teeth thinkst thou i iest hold take thou": [0, 65535], "thinkst thou i iest hold take thou that": [0, 65535], "thou i iest hold take thou that that": [0, 65535], "i iest hold take thou that that beats": [0, 65535], "iest hold take thou that that beats dro": [0, 65535], "hold take thou that that beats dro s": [0, 65535], "take thou that that beats dro s dr": [0, 65535], "thou that that beats dro s dr hold": [0, 65535], "that that beats dro s dr hold sir": [0, 65535], "that beats dro s dr hold sir for": [0, 65535], "beats dro s dr hold sir for gods": [0, 65535], "dro s dr hold sir for gods sake": [0, 65535], "s dr hold sir for gods sake now": [0, 65535], "dr hold sir for gods sake now your": [0, 65535], "hold sir for gods sake now your iest": [0, 65535], "sir for gods sake now your iest is": [0, 65535], "for gods sake now your iest is earnest": [0, 65535], "gods sake now your iest is earnest vpon": [0, 65535], "sake now your iest is earnest vpon what": [0, 65535], "now your iest is earnest vpon what bargaine": [0, 65535], "your iest is earnest vpon what bargaine do": [0, 65535], "iest is earnest vpon what bargaine do you": [0, 65535], "is earnest vpon what bargaine do you giue": [0, 65535], "earnest vpon what bargaine do you giue it": [0, 65535], "vpon what bargaine do you giue it me": [0, 65535], "what bargaine do you giue it me antiph": [0, 65535], "bargaine do you giue it me antiph because": [0, 65535], "do you giue it me antiph because that": [0, 65535], "you giue it me antiph because that i": [0, 65535], "giue it me antiph because that i familiarlie": [0, 65535], "it me antiph because that i familiarlie sometimes": [0, 65535], "me antiph because that i familiarlie sometimes doe": [0, 65535], "antiph because that i familiarlie sometimes doe vse": [0, 65535], "because that i familiarlie sometimes doe vse you": [0, 65535], "that i familiarlie sometimes doe vse you for": [0, 65535], "i familiarlie sometimes doe vse you for my": [0, 65535], "familiarlie sometimes doe vse you for my foole": [0, 65535], "sometimes doe vse you for my foole and": [0, 65535], "doe vse you for my foole and chat": [0, 65535], "vse you for my foole and chat with": [0, 65535], "you for my foole and chat with you": [0, 65535], "for my foole and chat with you your": [0, 65535], "my foole and chat with you your sawcinesse": [0, 65535], "foole and chat with you your sawcinesse will": [0, 65535], "and chat with you your sawcinesse will iest": [0, 65535], "chat with you your sawcinesse will iest vpon": [0, 65535], "with you your sawcinesse will iest vpon my": [0, 65535], "you your sawcinesse will iest vpon my loue": [0, 65535], "your sawcinesse will iest vpon my loue and": [0, 65535], "sawcinesse will iest vpon my loue and make": [0, 65535], "will iest vpon my loue and make a": [0, 65535], "iest vpon my loue and make a common": [0, 65535], "vpon my loue and make a common of": [0, 65535], "my loue and make a common of my": [0, 65535], "loue and make a common of my serious": [0, 65535], "and make a common of my serious howres": [0, 65535], "make a common of my serious howres when": [0, 65535], "a common of my serious howres when the": [0, 65535], "common of my serious howres when the sunne": [0, 65535], "of my serious howres when the sunne shines": [0, 65535], "my serious howres when the sunne shines let": [0, 65535], "serious howres when the sunne shines let foolish": [0, 65535], "howres when the sunne shines let foolish gnats": [0, 65535], "when the sunne shines let foolish gnats make": [0, 65535], "the sunne shines let foolish gnats make sport": [0, 65535], "sunne shines let foolish gnats make sport but": [0, 65535], "shines let foolish gnats make sport but creepe": [0, 65535], "let foolish gnats make sport but creepe in": [0, 65535], "foolish gnats make sport but creepe in crannies": [0, 65535], "gnats make sport but creepe in crannies when": [0, 65535], "make sport but creepe in crannies when he": [0, 65535], "sport but creepe in crannies when he hides": [0, 65535], "but creepe in crannies when he hides his": [0, 65535], "creepe in crannies when he hides his beames": [0, 65535], "in crannies when he hides his beames if": [0, 65535], "crannies when he hides his beames if you": [0, 65535], "when he hides his beames if you will": [0, 65535], "he hides his beames if you will iest": [0, 65535], "hides his beames if you will iest with": [0, 65535], "his beames if you will iest with me": [0, 65535], "beames if you will iest with me know": [0, 65535], "if you will iest with me know my": [0, 65535], "you will iest with me know my aspect": [0, 65535], "will iest with me know my aspect and": [0, 65535], "iest with me know my aspect and fashion": [0, 65535], "with me know my aspect and fashion your": [0, 65535], "me know my aspect and fashion your demeanor": [0, 65535], "know my aspect and fashion your demeanor to": [0, 65535], "my aspect and fashion your demeanor to my": [0, 65535], "aspect and fashion your demeanor to my lookes": [0, 65535], "and fashion your demeanor to my lookes or": [0, 65535], "fashion your demeanor to my lookes or i": [0, 65535], "your demeanor to my lookes or i will": [0, 65535], "demeanor to my lookes or i will beat": [0, 65535], "to my lookes or i will beat this": [0, 65535], "my lookes or i will beat this method": [0, 65535], "lookes or i will beat this method in": [0, 65535], "or i will beat this method in your": [0, 65535], "i will beat this method in your sconce": [0, 65535], "will beat this method in your sconce s": [0, 65535], "beat this method in your sconce s dro": [0, 65535], "this method in your sconce s dro sconce": [0, 65535], "method in your sconce s dro sconce call": [0, 65535], "in your sconce s dro sconce call you": [0, 65535], "your sconce s dro sconce call you it": [0, 65535], "sconce s dro sconce call you it so": [0, 65535], "s dro sconce call you it so you": [0, 65535], "dro sconce call you it so you would": [0, 65535], "sconce call you it so you would leaue": [0, 65535], "call you it so you would leaue battering": [0, 65535], "you it so you would leaue battering i": [0, 65535], "it so you would leaue battering i had": [0, 65535], "so you would leaue battering i had rather": [0, 65535], "you would leaue battering i had rather haue": [0, 65535], "would leaue battering i had rather haue it": [0, 65535], "leaue battering i had rather haue it a": [0, 65535], "battering i had rather haue it a head": [0, 65535], "i had rather haue it a head and": [0, 65535], "had rather haue it a head and you": [0, 65535], "rather haue it a head and you vse": [0, 65535], "haue it a head and you vse these": [0, 65535], "it a head and you vse these blows": [0, 65535], "a head and you vse these blows long": [0, 65535], "head and you vse these blows long i": [0, 65535], "and you vse these blows long i must": [0, 65535], "you vse these blows long i must get": [0, 65535], "vse these blows long i must get a": [0, 65535], "these blows long i must get a sconce": [0, 65535], "blows long i must get a sconce for": [0, 65535], "long i must get a sconce for my": [0, 65535], "i must get a sconce for my head": [0, 65535], "must get a sconce for my head and": [0, 65535], "get a sconce for my head and insconce": [0, 65535], "a sconce for my head and insconce it": [0, 65535], "sconce for my head and insconce it to": [0, 65535], "for my head and insconce it to or": [0, 65535], "my head and insconce it to or else": [0, 65535], "head and insconce it to or else i": [0, 65535], "and insconce it to or else i shall": [0, 65535], "insconce it to or else i shall seek": [0, 65535], "it to or else i shall seek my": [0, 65535], "to or else i shall seek my wit": [0, 65535], "or else i shall seek my wit in": [0, 65535], "else i shall seek my wit in my": [0, 65535], "i shall seek my wit in my shoulders": [0, 65535], "shall seek my wit in my shoulders but": [0, 65535], "seek my wit in my shoulders but i": [0, 65535], "my wit in my shoulders but i pray": [0, 65535], "wit in my shoulders but i pray sir": [0, 65535], "in my shoulders but i pray sir why": [0, 65535], "my shoulders but i pray sir why am": [0, 65535], "shoulders but i pray sir why am i": [0, 65535], "but i pray sir why am i beaten": [0, 65535], "i pray sir why am i beaten ant": [0, 65535], "pray sir why am i beaten ant dost": [0, 65535], "sir why am i beaten ant dost thou": [0, 65535], "why am i beaten ant dost thou not": [0, 65535], "am i beaten ant dost thou not know": [0, 65535], "i beaten ant dost thou not know s": [0, 65535], "beaten ant dost thou not know s dro": [0, 65535], "ant dost thou not know s dro nothing": [0, 65535], "dost thou not know s dro nothing sir": [0, 65535], "thou not know s dro nothing sir but": [0, 65535], "not know s dro nothing sir but that": [0, 65535], "know s dro nothing sir but that i": [0, 65535], "s dro nothing sir but that i am": [0, 65535], "dro nothing sir but that i am beaten": [0, 65535], "nothing sir but that i am beaten ant": [0, 65535], "sir but that i am beaten ant shall": [0, 65535], "but that i am beaten ant shall i": [0, 65535], "that i am beaten ant shall i tell": [0, 65535], "i am beaten ant shall i tell you": [0, 65535], "am beaten ant shall i tell you why": [0, 65535], "beaten ant shall i tell you why s": [0, 65535], "ant shall i tell you why s dro": [0, 65535], "shall i tell you why s dro i": [0, 65535], "i tell you why s dro i sir": [0, 65535], "tell you why s dro i sir and": [0, 65535], "you why s dro i sir and wherefore": [0, 65535], "why s dro i sir and wherefore for": [0, 65535], "s dro i sir and wherefore for they": [0, 65535], "dro i sir and wherefore for they say": [0, 65535], "i sir and wherefore for they say euery": [0, 65535], "sir and wherefore for they say euery why": [0, 65535], "and wherefore for they say euery why hath": [0, 65535], "wherefore for they say euery why hath a": [0, 65535], "for they say euery why hath a wherefore": [0, 65535], "they say euery why hath a wherefore ant": [0, 65535], "say euery why hath a wherefore ant why": [0, 65535], "euery why hath a wherefore ant why first": [0, 65535], "why hath a wherefore ant why first for": [0, 65535], "hath a wherefore ant why first for flowting": [0, 65535], "a wherefore ant why first for flowting me": [0, 65535], "wherefore ant why first for flowting me and": [0, 65535], "ant why first for flowting me and then": [0, 65535], "why first for flowting me and then wherefore": [0, 65535], "first for flowting me and then wherefore for": [0, 65535], "for flowting me and then wherefore for vrging": [0, 65535], "flowting me and then wherefore for vrging it": [0, 65535], "me and then wherefore for vrging it the": [0, 65535], "and then wherefore for vrging it the second": [0, 65535], "then wherefore for vrging it the second time": [0, 65535], "wherefore for vrging it the second time to": [0, 65535], "for vrging it the second time to me": [0, 65535], "vrging it the second time to me s": [0, 65535], "it the second time to me s dro": [0, 65535], "the second time to me s dro was": [0, 65535], "second time to me s dro was there": [0, 65535], "time to me s dro was there euer": [0, 65535], "to me s dro was there euer anie": [0, 65535], "me s dro was there euer anie man": [0, 65535], "s dro was there euer anie man thus": [0, 65535], "dro was there euer anie man thus beaten": [0, 65535], "was there euer anie man thus beaten out": [0, 65535], "there euer anie man thus beaten out of": [0, 65535], "euer anie man thus beaten out of season": [0, 65535], "anie man thus beaten out of season when": [0, 65535], "man thus beaten out of season when in": [0, 65535], "thus beaten out of season when in the": [0, 65535], "beaten out of season when in the why": [0, 65535], "out of season when in the why and": [0, 65535], "of season when in the why and the": [0, 65535], "season when in the why and the wherefore": [0, 65535], "when in the why and the wherefore is": [0, 65535], "in the why and the wherefore is neither": [0, 65535], "the why and the wherefore is neither rime": [0, 65535], "why and the wherefore is neither rime nor": [0, 65535], "and the wherefore is neither rime nor reason": [0, 65535], "the wherefore is neither rime nor reason well": [0, 65535], "wherefore is neither rime nor reason well sir": [0, 65535], "is neither rime nor reason well sir i": [0, 65535], "neither rime nor reason well sir i thanke": [0, 65535], "rime nor reason well sir i thanke you": [0, 65535], "nor reason well sir i thanke you ant": [0, 65535], "reason well sir i thanke you ant thanke": [0, 65535], "well sir i thanke you ant thanke me": [0, 65535], "sir i thanke you ant thanke me sir": [0, 65535], "i thanke you ant thanke me sir for": [0, 65535], "thanke you ant thanke me sir for what": [0, 65535], "you ant thanke me sir for what s": [0, 65535], "ant thanke me sir for what s dro": [0, 65535], "thanke me sir for what s dro marry": [0, 65535], "me sir for what s dro marry sir": [0, 65535], "sir for what s dro marry sir for": [0, 65535], "for what s dro marry sir for this": [0, 65535], "what s dro marry sir for this something": [0, 65535], "s dro marry sir for this something that": [0, 65535], "dro marry sir for this something that you": [0, 65535], "marry sir for this something that you gaue": [0, 65535], "sir for this something that you gaue me": [0, 65535], "for this something that you gaue me for": [0, 65535], "this something that you gaue me for nothing": [0, 65535], "something that you gaue me for nothing ant": [0, 65535], "that you gaue me for nothing ant ile": [0, 65535], "you gaue me for nothing ant ile make": [0, 65535], "gaue me for nothing ant ile make you": [0, 65535], "me for nothing ant ile make you amends": [0, 65535], "for nothing ant ile make you amends next": [0, 65535], "nothing ant ile make you amends next to": [0, 65535], "ant ile make you amends next to giue": [0, 65535], "ile make you amends next to giue you": [0, 65535], "make you amends next to giue you nothing": [0, 65535], "you amends next to giue you nothing for": [0, 65535], "amends next to giue you nothing for something": [0, 65535], "next to giue you nothing for something but": [0, 65535], "to giue you nothing for something but say": [0, 65535], "giue you nothing for something but say sir": [0, 65535], "you nothing for something but say sir is": [0, 65535], "nothing for something but say sir is it": [0, 65535], "for something but say sir is it dinner": [0, 65535], "something but say sir is it dinner time": [0, 65535], "but say sir is it dinner time s": [0, 65535], "say sir is it dinner time s dro": [0, 65535], "sir is it dinner time s dro no": [0, 65535], "is it dinner time s dro no sir": [0, 65535], "it dinner time s dro no sir i": [0, 65535], "dinner time s dro no sir i thinke": [0, 65535], "time s dro no sir i thinke the": [0, 65535], "s dro no sir i thinke the meat": [0, 65535], "dro no sir i thinke the meat wants": [0, 65535], "no sir i thinke the meat wants that": [0, 65535], "sir i thinke the meat wants that i": [0, 65535], "i thinke the meat wants that i haue": [0, 65535], "thinke the meat wants that i haue ant": [0, 65535], "the meat wants that i haue ant in": [0, 65535], "meat wants that i haue ant in good": [0, 65535], "wants that i haue ant in good time": [0, 65535], "that i haue ant in good time sir": [0, 65535], "i haue ant in good time sir what's": [0, 65535], "haue ant in good time sir what's that": [0, 65535], "ant in good time sir what's that s": [0, 65535], "in good time sir what's that s dro": [0, 65535], "good time sir what's that s dro basting": [0, 65535], "time sir what's that s dro basting ant": [0, 65535], "sir what's that s dro basting ant well": [0, 65535], "what's that s dro basting ant well sir": [0, 65535], "that s dro basting ant well sir then": [0, 65535], "s dro basting ant well sir then 'twill": [0, 65535], "dro basting ant well sir then 'twill be": [0, 65535], "basting ant well sir then 'twill be drie": [0, 65535], "ant well sir then 'twill be drie s": [0, 65535], "well sir then 'twill be drie s dro": [0, 65535], "sir then 'twill be drie s dro if": [0, 65535], "then 'twill be drie s dro if it": [0, 65535], "'twill be drie s dro if it be": [0, 65535], "be drie s dro if it be sir": [0, 65535], "drie s dro if it be sir i": [0, 65535], "s dro if it be sir i pray": [0, 65535], "dro if it be sir i pray you": [0, 65535], "if it be sir i pray you eat": [0, 65535], "it be sir i pray you eat none": [0, 65535], "be sir i pray you eat none of": [0, 65535], "sir i pray you eat none of it": [0, 65535], "i pray you eat none of it ant": [0, 65535], "pray you eat none of it ant your": [0, 65535], "you eat none of it ant your reason": [0, 65535], "eat none of it ant your reason s": [0, 65535], "none of it ant your reason s dro": [0, 65535], "of it ant your reason s dro lest": [0, 65535], "it ant your reason s dro lest it": [0, 65535], "ant your reason s dro lest it make": [0, 65535], "your reason s dro lest it make you": [0, 65535], "reason s dro lest it make you chollericke": [0, 65535], "s dro lest it make you chollericke and": [0, 65535], "dro lest it make you chollericke and purchase": [0, 65535], "lest it make you chollericke and purchase me": [0, 65535], "it make you chollericke and purchase me another": [0, 65535], "make you chollericke and purchase me another drie": [0, 65535], "you chollericke and purchase me another drie basting": [0, 65535], "chollericke and purchase me another drie basting ant": [0, 65535], "and purchase me another drie basting ant well": [0, 65535], "purchase me another drie basting ant well sir": [0, 65535], "me another drie basting ant well sir learne": [0, 65535], "another drie basting ant well sir learne to": [0, 65535], "drie basting ant well sir learne to iest": [0, 65535], "basting ant well sir learne to iest in": [0, 65535], "ant well sir learne to iest in good": [0, 65535], "well sir learne to iest in good time": [0, 65535], "sir learne to iest in good time there's": [0, 65535], "learne to iest in good time there's a": [0, 65535], "to iest in good time there's a time": [0, 65535], "iest in good time there's a time for": [0, 65535], "in good time there's a time for all": [0, 65535], "good time there's a time for all things": [0, 65535], "time there's a time for all things s": [0, 65535], "there's a time for all things s dro": [0, 65535], "a time for all things s dro i": [0, 65535], "time for all things s dro i durst": [0, 65535], "for all things s dro i durst haue": [0, 65535], "all things s dro i durst haue denied": [0, 65535], "things s dro i durst haue denied that": [0, 65535], "s dro i durst haue denied that before": [0, 65535], "dro i durst haue denied that before you": [0, 65535], "i durst haue denied that before you were": [0, 65535], "durst haue denied that before you were so": [0, 65535], "haue denied that before you were so chollericke": [0, 65535], "denied that before you were so chollericke anti": [0, 65535], "that before you were so chollericke anti by": [0, 65535], "before you were so chollericke anti by what": [0, 65535], "you were so chollericke anti by what rule": [0, 65535], "were so chollericke anti by what rule sir": [0, 65535], "so chollericke anti by what rule sir s": [0, 65535], "chollericke anti by what rule sir s dro": [0, 65535], "anti by what rule sir s dro marry": [0, 65535], "by what rule sir s dro marry sir": [0, 65535], "what rule sir s dro marry sir by": [0, 65535], "rule sir s dro marry sir by a": [0, 65535], "sir s dro marry sir by a rule": [0, 65535], "s dro marry sir by a rule as": [0, 65535], "dro marry sir by a rule as plaine": [0, 65535], "marry sir by a rule as plaine as": [0, 65535], "sir by a rule as plaine as the": [0, 65535], "by a rule as plaine as the plaine": [0, 65535], "a rule as plaine as the plaine bald": [0, 65535], "rule as plaine as the plaine bald pate": [0, 65535], "as plaine as the plaine bald pate of": [0, 65535], "plaine as the plaine bald pate of father": [0, 65535], "as the plaine bald pate of father time": [0, 65535], "the plaine bald pate of father time himselfe": [0, 65535], "plaine bald pate of father time himselfe ant": [0, 65535], "bald pate of father time himselfe ant let's": [0, 65535], "pate of father time himselfe ant let's heare": [0, 65535], "of father time himselfe ant let's heare it": [0, 65535], "father time himselfe ant let's heare it s": [0, 65535], "time himselfe ant let's heare it s dro": [0, 65535], "himselfe ant let's heare it s dro there's": [0, 65535], "ant let's heare it s dro there's no": [0, 65535], "let's heare it s dro there's no time": [0, 65535], "heare it s dro there's no time for": [0, 65535], "it s dro there's no time for a": [0, 65535], "s dro there's no time for a man": [0, 65535], "dro there's no time for a man to": [0, 65535], "there's no time for a man to recouer": [0, 65535], "no time for a man to recouer his": [0, 65535], "time for a man to recouer his haire": [0, 65535], "for a man to recouer his haire that": [0, 65535], "a man to recouer his haire that growes": [0, 65535], "man to recouer his haire that growes bald": [0, 65535], "to recouer his haire that growes bald by": [0, 65535], "recouer his haire that growes bald by nature": [0, 65535], "his haire that growes bald by nature ant": [0, 65535], "haire that growes bald by nature ant may": [0, 65535], "that growes bald by nature ant may he": [0, 65535], "growes bald by nature ant may he not": [0, 65535], "bald by nature ant may he not doe": [0, 65535], "by nature ant may he not doe it": [0, 65535], "nature ant may he not doe it by": [0, 65535], "ant may he not doe it by fine": [0, 65535], "may he not doe it by fine and": [0, 65535], "he not doe it by fine and recouerie": [0, 65535], "not doe it by fine and recouerie s": [0, 65535], "doe it by fine and recouerie s dro": [0, 65535], "it by fine and recouerie s dro yes": [0, 65535], "by fine and recouerie s dro yes to": [0, 65535], "fine and recouerie s dro yes to pay": [0, 65535], "and recouerie s dro yes to pay a": [0, 65535], "recouerie s dro yes to pay a fine": [0, 65535], "s dro yes to pay a fine for": [0, 65535], "dro yes to pay a fine for a": [0, 65535], "yes to pay a fine for a perewig": [0, 65535], "to pay a fine for a perewig and": [0, 65535], "pay a fine for a perewig and recouer": [0, 65535], "a fine for a perewig and recouer the": [0, 65535], "fine for a perewig and recouer the lost": [0, 65535], "for a perewig and recouer the lost haire": [0, 65535], "a perewig and recouer the lost haire of": [0, 65535], "perewig and recouer the lost haire of another": [0, 65535], "and recouer the lost haire of another man": [0, 65535], "recouer the lost haire of another man ant": [0, 65535], "the lost haire of another man ant why": [0, 65535], "lost haire of another man ant why is": [0, 65535], "haire of another man ant why is time": [0, 65535], "of another man ant why is time such": [0, 65535], "another man ant why is time such a": [0, 65535], "man ant why is time such a niggard": [0, 65535], "ant why is time such a niggard of": [0, 65535], "why is time such a niggard of haire": [0, 65535], "is time such a niggard of haire being": [0, 65535], "time such a niggard of haire being as": [0, 65535], "such a niggard of haire being as it": [0, 65535], "a niggard of haire being as it is": [0, 65535], "niggard of haire being as it is so": [0, 65535], "of haire being as it is so plentifull": [0, 65535], "haire being as it is so plentifull an": [0, 65535], "being as it is so plentifull an excrement": [0, 65535], "as it is so plentifull an excrement s": [0, 65535], "it is so plentifull an excrement s dro": [0, 65535], "is so plentifull an excrement s dro because": [0, 65535], "so plentifull an excrement s dro because it": [0, 65535], "plentifull an excrement s dro because it is": [0, 65535], "an excrement s dro because it is a": [0, 65535], "excrement s dro because it is a blessing": [0, 65535], "s dro because it is a blessing that": [0, 65535], "dro because it is a blessing that hee": [0, 65535], "because it is a blessing that hee bestowes": [0, 65535], "it is a blessing that hee bestowes on": [0, 65535], "is a blessing that hee bestowes on beasts": [0, 65535], "a blessing that hee bestowes on beasts and": [0, 65535], "blessing that hee bestowes on beasts and what": [0, 65535], "that hee bestowes on beasts and what he": [0, 65535], "hee bestowes on beasts and what he hath": [0, 65535], "bestowes on beasts and what he hath scanted": [0, 65535], "on beasts and what he hath scanted them": [0, 65535], "beasts and what he hath scanted them in": [0, 65535], "and what he hath scanted them in haire": [0, 65535], "what he hath scanted them in haire hee": [0, 65535], "he hath scanted them in haire hee hath": [0, 65535], "hath scanted them in haire hee hath giuen": [0, 65535], "scanted them in haire hee hath giuen them": [0, 65535], "them in haire hee hath giuen them in": [0, 65535], "in haire hee hath giuen them in wit": [0, 65535], "haire hee hath giuen them in wit ant": [0, 65535], "hee hath giuen them in wit ant why": [0, 65535], "hath giuen them in wit ant why but": [0, 65535], "giuen them in wit ant why but theres": [0, 65535], "them in wit ant why but theres manie": [0, 65535], "in wit ant why but theres manie a": [0, 65535], "wit ant why but theres manie a man": [0, 65535], "ant why but theres manie a man hath": [0, 65535], "why but theres manie a man hath more": [0, 65535], "but theres manie a man hath more haire": [0, 65535], "theres manie a man hath more haire then": [0, 65535], "manie a man hath more haire then wit": [0, 65535], "a man hath more haire then wit s": [0, 65535], "man hath more haire then wit s dro": [0, 65535], "hath more haire then wit s dro not": [0, 65535], "more haire then wit s dro not a": [0, 65535], "haire then wit s dro not a man": [0, 65535], "then wit s dro not a man of": [0, 65535], "wit s dro not a man of those": [0, 65535], "s dro not a man of those but": [0, 65535], "dro not a man of those but he": [0, 65535], "not a man of those but he hath": [0, 65535], "a man of those but he hath the": [0, 65535], "man of those but he hath the wit": [0, 65535], "of those but he hath the wit to": [0, 65535], "those but he hath the wit to lose": [0, 65535], "but he hath the wit to lose his": [0, 65535], "he hath the wit to lose his haire": [0, 65535], "hath the wit to lose his haire ant": [0, 65535], "the wit to lose his haire ant why": [0, 65535], "wit to lose his haire ant why thou": [0, 65535], "to lose his haire ant why thou didst": [0, 65535], "lose his haire ant why thou didst conclude": [0, 65535], "his haire ant why thou didst conclude hairy": [0, 65535], "haire ant why thou didst conclude hairy men": [0, 65535], "ant why thou didst conclude hairy men plain": [0, 65535], "why thou didst conclude hairy men plain dealers": [0, 65535], "thou didst conclude hairy men plain dealers without": [0, 65535], "didst conclude hairy men plain dealers without wit": [0, 65535], "conclude hairy men plain dealers without wit s": [0, 65535], "hairy men plain dealers without wit s dro": [0, 65535], "men plain dealers without wit s dro the": [0, 65535], "plain dealers without wit s dro the plainer": [0, 65535], "dealers without wit s dro the plainer dealer": [0, 65535], "without wit s dro the plainer dealer the": [0, 65535], "wit s dro the plainer dealer the sooner": [0, 65535], "s dro the plainer dealer the sooner lost": [0, 65535], "dro the plainer dealer the sooner lost yet": [0, 65535], "the plainer dealer the sooner lost yet he": [0, 65535], "plainer dealer the sooner lost yet he looseth": [0, 65535], "dealer the sooner lost yet he looseth it": [0, 65535], "the sooner lost yet he looseth it in": [0, 65535], "sooner lost yet he looseth it in a": [0, 65535], "lost yet he looseth it in a kinde": [0, 65535], "yet he looseth it in a kinde of": [0, 65535], "he looseth it in a kinde of iollitie": [0, 65535], "looseth it in a kinde of iollitie an": [0, 65535], "it in a kinde of iollitie an for": [0, 65535], "in a kinde of iollitie an for what": [0, 65535], "a kinde of iollitie an for what reason": [0, 65535], "kinde of iollitie an for what reason s": [0, 65535], "of iollitie an for what reason s dro": [0, 65535], "iollitie an for what reason s dro for": [0, 65535], "an for what reason s dro for two": [0, 65535], "for what reason s dro for two and": [0, 65535], "what reason s dro for two and sound": [0, 65535], "reason s dro for two and sound ones": [0, 65535], "s dro for two and sound ones to": [0, 65535], "dro for two and sound ones to an": [0, 65535], "for two and sound ones to an nay": [0, 65535], "two and sound ones to an nay not": [0, 65535], "and sound ones to an nay not sound": [0, 65535], "sound ones to an nay not sound i": [0, 65535], "ones to an nay not sound i pray": [0, 65535], "to an nay not sound i pray you": [0, 65535], "an nay not sound i pray you s": [0, 65535], "nay not sound i pray you s dro": [0, 65535], "not sound i pray you s dro sure": [0, 65535], "sound i pray you s dro sure ones": [0, 65535], "i pray you s dro sure ones then": [0, 65535], "pray you s dro sure ones then an": [0, 65535], "you s dro sure ones then an nay": [0, 65535], "s dro sure ones then an nay not": [0, 65535], "dro sure ones then an nay not sure": [0, 65535], "sure ones then an nay not sure in": [0, 65535], "ones then an nay not sure in a": [0, 65535], "then an nay not sure in a thing": [0, 65535], "an nay not sure in a thing falsing": [0, 65535], "nay not sure in a thing falsing s": [0, 65535], "not sure in a thing falsing s dro": [0, 65535], "sure in a thing falsing s dro certaine": [0, 65535], "in a thing falsing s dro certaine ones": [0, 65535], "a thing falsing s dro certaine ones then": [0, 65535], "thing falsing s dro certaine ones then an": [0, 65535], "falsing s dro certaine ones then an name": [0, 65535], "s dro certaine ones then an name them": [0, 65535], "dro certaine ones then an name them s": [0, 65535], "certaine ones then an name them s dro": [0, 65535], "ones then an name them s dro the": [0, 65535], "then an name them s dro the one": [0, 65535], "an name them s dro the one to": [0, 65535], "name them s dro the one to saue": [0, 65535], "them s dro the one to saue the": [0, 65535], "s dro the one to saue the money": [0, 65535], "dro the one to saue the money that": [0, 65535], "the one to saue the money that he": [0, 65535], "one to saue the money that he spends": [0, 65535], "to saue the money that he spends in": [0, 65535], "saue the money that he spends in trying": [0, 65535], "the money that he spends in trying the": [0, 65535], "money that he spends in trying the other": [0, 65535], "that he spends in trying the other that": [0, 65535], "he spends in trying the other that at": [0, 65535], "spends in trying the other that at dinner": [0, 65535], "in trying the other that at dinner they": [0, 65535], "trying the other that at dinner they should": [0, 65535], "the other that at dinner they should not": [0, 65535], "other that at dinner they should not drop": [0, 65535], "that at dinner they should not drop in": [0, 65535], "at dinner they should not drop in his": [0, 65535], "dinner they should not drop in his porrage": [0, 65535], "they should not drop in his porrage an": [0, 65535], "should not drop in his porrage an you": [0, 65535], "not drop in his porrage an you would": [0, 65535], "drop in his porrage an you would all": [0, 65535], "in his porrage an you would all this": [0, 65535], "his porrage an you would all this time": [0, 65535], "porrage an you would all this time haue": [0, 65535], "an you would all this time haue prou'd": [0, 65535], "you would all this time haue prou'd there": [0, 65535], "would all this time haue prou'd there is": [0, 65535], "all this time haue prou'd there is no": [0, 65535], "this time haue prou'd there is no time": [0, 65535], "time haue prou'd there is no time for": [0, 65535], "haue prou'd there is no time for all": [0, 65535], "prou'd there is no time for all things": [0, 65535], "there is no time for all things s": [0, 65535], "is no time for all things s dro": [0, 65535], "no time for all things s dro marry": [0, 65535], "time for all things s dro marry and": [0, 65535], "for all things s dro marry and did": [0, 65535], "all things s dro marry and did sir": [0, 65535], "things s dro marry and did sir namely": [0, 65535], "s dro marry and did sir namely in": [0, 65535], "dro marry and did sir namely in no": [0, 65535], "marry and did sir namely in no time": [0, 65535], "and did sir namely in no time to": [0, 65535], "did sir namely in no time to recouer": [0, 65535], "sir namely in no time to recouer haire": [0, 65535], "namely in no time to recouer haire lost": [0, 65535], "in no time to recouer haire lost by": [0, 65535], "no time to recouer haire lost by nature": [0, 65535], "time to recouer haire lost by nature an": [0, 65535], "to recouer haire lost by nature an but": [0, 65535], "recouer haire lost by nature an but your": [0, 65535], "haire lost by nature an but your reason": [0, 65535], "lost by nature an but your reason was": [0, 65535], "by nature an but your reason was not": [0, 65535], "nature an but your reason was not substantiall": [0, 65535], "an but your reason was not substantiall why": [0, 65535], "but your reason was not substantiall why there": [0, 65535], "your reason was not substantiall why there is": [0, 65535], "reason was not substantiall why there is no": [0, 65535], "was not substantiall why there is no time": [0, 65535], "not substantiall why there is no time to": [0, 65535], "substantiall why there is no time to recouer": [0, 65535], "why there is no time to recouer s": [0, 65535], "there is no time to recouer s dro": [0, 65535], "is no time to recouer s dro thus": [0, 65535], "no time to recouer s dro thus i": [0, 65535], "time to recouer s dro thus i mend": [0, 65535], "to recouer s dro thus i mend it": [0, 65535], "recouer s dro thus i mend it time": [0, 65535], "s dro thus i mend it time himselfe": [0, 65535], "dro thus i mend it time himselfe is": [0, 65535], "thus i mend it time himselfe is bald": [0, 65535], "i mend it time himselfe is bald and": [0, 65535], "mend it time himselfe is bald and therefore": [0, 65535], "it time himselfe is bald and therefore to": [0, 65535], "time himselfe is bald and therefore to the": [0, 65535], "himselfe is bald and therefore to the worlds": [0, 65535], "is bald and therefore to the worlds end": [0, 65535], "bald and therefore to the worlds end will": [0, 65535], "and therefore to the worlds end will haue": [0, 65535], "therefore to the worlds end will haue bald": [0, 65535], "to the worlds end will haue bald followers": [0, 65535], "the worlds end will haue bald followers an": [0, 65535], "worlds end will haue bald followers an i": [0, 65535], "end will haue bald followers an i knew": [0, 65535], "will haue bald followers an i knew 'twould": [0, 65535], "haue bald followers an i knew 'twould be": [0, 65535], "bald followers an i knew 'twould be a": [0, 65535], "followers an i knew 'twould be a bald": [0, 65535], "an i knew 'twould be a bald conclusion": [0, 65535], "i knew 'twould be a bald conclusion but": [0, 65535], "knew 'twould be a bald conclusion but soft": [0, 65535], "'twould be a bald conclusion but soft who": [0, 65535], "be a bald conclusion but soft who wafts": [0, 65535], "a bald conclusion but soft who wafts vs": [0, 65535], "bald conclusion but soft who wafts vs yonder": [0, 65535], "conclusion but soft who wafts vs yonder enter": [0, 65535], "but soft who wafts vs yonder enter adriana": [0, 65535], "soft who wafts vs yonder enter adriana and": [0, 65535], "who wafts vs yonder enter adriana and luciana": [0, 65535], "wafts vs yonder enter adriana and luciana adri": [0, 65535], "vs yonder enter adriana and luciana adri i": [0, 65535], "yonder enter adriana and luciana adri i i": [0, 65535], "enter adriana and luciana adri i i antipholus": [0, 65535], "adriana and luciana adri i i antipholus looke": [0, 65535], "and luciana adri i i antipholus looke strange": [0, 65535], "luciana adri i i antipholus looke strange and": [0, 65535], "adri i i antipholus looke strange and frowne": [0, 65535], "i i antipholus looke strange and frowne some": [0, 65535], "i antipholus looke strange and frowne some other": [0, 65535], "antipholus looke strange and frowne some other mistresse": [0, 65535], "looke strange and frowne some other mistresse hath": [0, 65535], "strange and frowne some other mistresse hath thy": [0, 65535], "and frowne some other mistresse hath thy sweet": [0, 65535], "frowne some other mistresse hath thy sweet aspects": [0, 65535], "some other mistresse hath thy sweet aspects i": [0, 65535], "other mistresse hath thy sweet aspects i am": [0, 65535], "mistresse hath thy sweet aspects i am not": [0, 65535], "hath thy sweet aspects i am not adriana": [0, 65535], "thy sweet aspects i am not adriana nor": [0, 65535], "sweet aspects i am not adriana nor thy": [0, 65535], "aspects i am not adriana nor thy wife": [0, 65535], "i am not adriana nor thy wife the": [0, 65535], "am not adriana nor thy wife the time": [0, 65535], "not adriana nor thy wife the time was": [0, 65535], "adriana nor thy wife the time was once": [0, 65535], "nor thy wife the time was once when": [0, 65535], "thy wife the time was once when thou": [0, 65535], "wife the time was once when thou vn": [0, 65535], "the time was once when thou vn vrg'd": [0, 65535], "time was once when thou vn vrg'd wouldst": [0, 65535], "was once when thou vn vrg'd wouldst vow": [0, 65535], "once when thou vn vrg'd wouldst vow that": [0, 65535], "when thou vn vrg'd wouldst vow that neuer": [0, 65535], "thou vn vrg'd wouldst vow that neuer words": [0, 65535], "vn vrg'd wouldst vow that neuer words were": [0, 65535], "vrg'd wouldst vow that neuer words were musicke": [0, 65535], "wouldst vow that neuer words were musicke to": [0, 65535], "vow that neuer words were musicke to thine": [0, 65535], "that neuer words were musicke to thine eare": [0, 65535], "neuer words were musicke to thine eare that": [0, 65535], "words were musicke to thine eare that neuer": [0, 65535], "were musicke to thine eare that neuer obiect": [0, 65535], "musicke to thine eare that neuer obiect pleasing": [0, 65535], "to thine eare that neuer obiect pleasing in": [0, 65535], "thine eare that neuer obiect pleasing in thine": [0, 65535], "eare that neuer obiect pleasing in thine eye": [0, 65535], "that neuer obiect pleasing in thine eye that": [0, 65535], "neuer obiect pleasing in thine eye that neuer": [0, 65535], "obiect pleasing in thine eye that neuer touch": [0, 65535], "pleasing in thine eye that neuer touch well": [0, 65535], "in thine eye that neuer touch well welcome": [0, 65535], "thine eye that neuer touch well welcome to": [0, 65535], "eye that neuer touch well welcome to thy": [0, 65535], "that neuer touch well welcome to thy hand": [0, 65535], "neuer touch well welcome to thy hand that": [0, 65535], "touch well welcome to thy hand that neuer": [0, 65535], "well welcome to thy hand that neuer meat": [0, 65535], "welcome to thy hand that neuer meat sweet": [0, 65535], "to thy hand that neuer meat sweet sauour'd": [0, 65535], "thy hand that neuer meat sweet sauour'd in": [0, 65535], "hand that neuer meat sweet sauour'd in thy": [0, 65535], "that neuer meat sweet sauour'd in thy taste": [0, 65535], "neuer meat sweet sauour'd in thy taste vnlesse": [0, 65535], "meat sweet sauour'd in thy taste vnlesse i": [0, 65535], "sweet sauour'd in thy taste vnlesse i spake": [0, 65535], "sauour'd in thy taste vnlesse i spake or": [0, 65535], "in thy taste vnlesse i spake or look'd": [0, 65535], "thy taste vnlesse i spake or look'd or": [0, 65535], "taste vnlesse i spake or look'd or touch'd": [0, 65535], "vnlesse i spake or look'd or touch'd or": [0, 65535], "i spake or look'd or touch'd or caru'd": [0, 65535], "spake or look'd or touch'd or caru'd to": [0, 65535], "or look'd or touch'd or caru'd to thee": [0, 65535], "look'd or touch'd or caru'd to thee how": [0, 65535], "or touch'd or caru'd to thee how comes": [0, 65535], "touch'd or caru'd to thee how comes it": [0, 65535], "or caru'd to thee how comes it now": [0, 65535], "caru'd to thee how comes it now my": [0, 65535], "to thee how comes it now my husband": [0, 65535], "thee how comes it now my husband oh": [0, 65535], "how comes it now my husband oh how": [0, 65535], "comes it now my husband oh how comes": [0, 65535], "it now my husband oh how comes it": [0, 65535], "now my husband oh how comes it that": [0, 65535], "my husband oh how comes it that thou": [0, 65535], "husband oh how comes it that thou art": [0, 65535], "oh how comes it that thou art then": [0, 65535], "how comes it that thou art then estranged": [0, 65535], "comes it that thou art then estranged from": [0, 65535], "it that thou art then estranged from thy": [0, 65535], "that thou art then estranged from thy selfe": [0, 65535], "thou art then estranged from thy selfe thy": [0, 65535], "art then estranged from thy selfe thy selfe": [0, 65535], "then estranged from thy selfe thy selfe i": [0, 65535], "estranged from thy selfe thy selfe i call": [0, 65535], "from thy selfe thy selfe i call it": [0, 65535], "thy selfe thy selfe i call it being": [0, 65535], "selfe thy selfe i call it being strange": [0, 65535], "thy selfe i call it being strange to": [0, 65535], "selfe i call it being strange to me": [0, 65535], "i call it being strange to me that": [0, 65535], "call it being strange to me that vndiuidable": [0, 65535], "it being strange to me that vndiuidable incorporate": [0, 65535], "being strange to me that vndiuidable incorporate am": [0, 65535], "strange to me that vndiuidable incorporate am better": [0, 65535], "to me that vndiuidable incorporate am better then": [0, 65535], "me that vndiuidable incorporate am better then thy": [0, 65535], "that vndiuidable incorporate am better then thy deere": [0, 65535], "vndiuidable incorporate am better then thy deere selfes": [0, 65535], "incorporate am better then thy deere selfes better": [0, 65535], "am better then thy deere selfes better part": [0, 65535], "better then thy deere selfes better part ah": [0, 65535], "then thy deere selfes better part ah doe": [0, 65535], "thy deere selfes better part ah doe not": [0, 65535], "deere selfes better part ah doe not teare": [0, 65535], "selfes better part ah doe not teare away": [0, 65535], "better part ah doe not teare away thy": [0, 65535], "part ah doe not teare away thy selfe": [0, 65535], "ah doe not teare away thy selfe from": [0, 65535], "doe not teare away thy selfe from me": [0, 65535], "not teare away thy selfe from me for": [0, 65535], "teare away thy selfe from me for know": [0, 65535], "away thy selfe from me for know my": [0, 65535], "thy selfe from me for know my loue": [0, 65535], "selfe from me for know my loue as": [0, 65535], "from me for know my loue as easie": [0, 65535], "me for know my loue as easie maist": [0, 65535], "for know my loue as easie maist thou": [0, 65535], "know my loue as easie maist thou fall": [0, 65535], "my loue as easie maist thou fall a": [0, 65535], "loue as easie maist thou fall a drop": [0, 65535], "as easie maist thou fall a drop of": [0, 65535], "easie maist thou fall a drop of water": [0, 65535], "maist thou fall a drop of water in": [0, 65535], "thou fall a drop of water in the": [0, 65535], "fall a drop of water in the breaking": [0, 65535], "a drop of water in the breaking gulfe": [0, 65535], "drop of water in the breaking gulfe and": [0, 65535], "of water in the breaking gulfe and take": [0, 65535], "water in the breaking gulfe and take vnmingled": [0, 65535], "in the breaking gulfe and take vnmingled thence": [0, 65535], "the breaking gulfe and take vnmingled thence that": [0, 65535], "breaking gulfe and take vnmingled thence that drop": [0, 65535], "gulfe and take vnmingled thence that drop againe": [0, 65535], "and take vnmingled thence that drop againe without": [0, 65535], "take vnmingled thence that drop againe without addition": [0, 65535], "vnmingled thence that drop againe without addition or": [0, 65535], "thence that drop againe without addition or diminishing": [0, 65535], "that drop againe without addition or diminishing as": [0, 65535], "drop againe without addition or diminishing as take": [0, 65535], "againe without addition or diminishing as take from": [0, 65535], "without addition or diminishing as take from me": [0, 65535], "addition or diminishing as take from me thy": [0, 65535], "or diminishing as take from me thy selfe": [0, 65535], "diminishing as take from me thy selfe and": [0, 65535], "as take from me thy selfe and not": [0, 65535], "take from me thy selfe and not me": [0, 65535], "from me thy selfe and not me too": [0, 65535], "me thy selfe and not me too how": [0, 65535], "thy selfe and not me too how deerely": [0, 65535], "selfe and not me too how deerely would": [0, 65535], "and not me too how deerely would it": [0, 65535], "not me too how deerely would it touch": [0, 65535], "me too how deerely would it touch thee": [0, 65535], "too how deerely would it touch thee to": [0, 65535], "how deerely would it touch thee to the": [0, 65535], "deerely would it touch thee to the quicke": [0, 65535], "would it touch thee to the quicke shouldst": [0, 65535], "it touch thee to the quicke shouldst thou": [0, 65535], "touch thee to the quicke shouldst thou but": [0, 65535], "thee to the quicke shouldst thou but heare": [0, 65535], "to the quicke shouldst thou but heare i": [0, 65535], "the quicke shouldst thou but heare i were": [0, 65535], "quicke shouldst thou but heare i were licencious": [0, 65535], "shouldst thou but heare i were licencious and": [0, 65535], "thou but heare i were licencious and that": [0, 65535], "but heare i were licencious and that this": [0, 65535], "heare i were licencious and that this body": [0, 65535], "i were licencious and that this body consecrate": [0, 65535], "were licencious and that this body consecrate to": [0, 65535], "licencious and that this body consecrate to thee": [0, 65535], "and that this body consecrate to thee by": [0, 65535], "that this body consecrate to thee by ruffian": [0, 65535], "this body consecrate to thee by ruffian lust": [0, 65535], "body consecrate to thee by ruffian lust should": [0, 65535], "consecrate to thee by ruffian lust should be": [0, 65535], "to thee by ruffian lust should be contaminate": [0, 65535], "thee by ruffian lust should be contaminate wouldst": [0, 65535], "by ruffian lust should be contaminate wouldst thou": [0, 65535], "ruffian lust should be contaminate wouldst thou not": [0, 65535], "lust should be contaminate wouldst thou not spit": [0, 65535], "should be contaminate wouldst thou not spit at": [0, 65535], "be contaminate wouldst thou not spit at me": [0, 65535], "contaminate wouldst thou not spit at me and": [0, 65535], "wouldst thou not spit at me and spurne": [0, 65535], "thou not spit at me and spurne at": [0, 65535], "not spit at me and spurne at me": [0, 65535], "spit at me and spurne at me and": [0, 65535], "at me and spurne at me and hurle": [0, 65535], "me and spurne at me and hurle the": [0, 65535], "and spurne at me and hurle the name": [0, 65535], "spurne at me and hurle the name of": [0, 65535], "at me and hurle the name of husband": [0, 65535], "me and hurle the name of husband in": [0, 65535], "and hurle the name of husband in my": [0, 65535], "hurle the name of husband in my face": [0, 65535], "the name of husband in my face and": [0, 65535], "name of husband in my face and teare": [0, 65535], "of husband in my face and teare the": [0, 65535], "husband in my face and teare the stain'd": [0, 65535], "in my face and teare the stain'd skin": [0, 65535], "my face and teare the stain'd skin of": [0, 65535], "face and teare the stain'd skin of my": [0, 65535], "and teare the stain'd skin of my harlot": [0, 65535], "teare the stain'd skin of my harlot brow": [0, 65535], "the stain'd skin of my harlot brow and": [0, 65535], "stain'd skin of my harlot brow and from": [0, 65535], "skin of my harlot brow and from my": [0, 65535], "of my harlot brow and from my false": [0, 65535], "my harlot brow and from my false hand": [0, 65535], "harlot brow and from my false hand cut": [0, 65535], "brow and from my false hand cut the": [0, 65535], "and from my false hand cut the wedding": [0, 65535], "from my false hand cut the wedding ring": [0, 65535], "my false hand cut the wedding ring and": [0, 65535], "false hand cut the wedding ring and breake": [0, 65535], "hand cut the wedding ring and breake it": [0, 65535], "cut the wedding ring and breake it with": [0, 65535], "the wedding ring and breake it with a": [0, 65535], "wedding ring and breake it with a deepe": [0, 65535], "ring and breake it with a deepe diuorcing": [0, 65535], "and breake it with a deepe diuorcing vow": [0, 65535], "breake it with a deepe diuorcing vow i": [0, 65535], "it with a deepe diuorcing vow i know": [0, 65535], "with a deepe diuorcing vow i know thou": [0, 65535], "a deepe diuorcing vow i know thou canst": [0, 65535], "deepe diuorcing vow i know thou canst and": [0, 65535], "diuorcing vow i know thou canst and therefore": [0, 65535], "vow i know thou canst and therefore see": [0, 65535], "i know thou canst and therefore see thou": [0, 65535], "know thou canst and therefore see thou doe": [0, 65535], "thou canst and therefore see thou doe it": [0, 65535], "canst and therefore see thou doe it i": [0, 65535], "and therefore see thou doe it i am": [0, 65535], "therefore see thou doe it i am possest": [0, 65535], "see thou doe it i am possest with": [0, 65535], "thou doe it i am possest with an": [0, 65535], "doe it i am possest with an adulterate": [0, 65535], "it i am possest with an adulterate blot": [0, 65535], "i am possest with an adulterate blot my": [0, 65535], "am possest with an adulterate blot my bloud": [0, 65535], "possest with an adulterate blot my bloud is": [0, 65535], "with an adulterate blot my bloud is mingled": [0, 65535], "an adulterate blot my bloud is mingled with": [0, 65535], "adulterate blot my bloud is mingled with the": [0, 65535], "blot my bloud is mingled with the crime": [0, 65535], "my bloud is mingled with the crime of": [0, 65535], "bloud is mingled with the crime of lust": [0, 65535], "is mingled with the crime of lust for": [0, 65535], "mingled with the crime of lust for if": [0, 65535], "with the crime of lust for if we": [0, 65535], "the crime of lust for if we two": [0, 65535], "crime of lust for if we two be": [0, 65535], "of lust for if we two be one": [0, 65535], "lust for if we two be one and": [0, 65535], "for if we two be one and thou": [0, 65535], "if we two be one and thou play": [0, 65535], "we two be one and thou play false": [0, 65535], "two be one and thou play false i": [0, 65535], "be one and thou play false i doe": [0, 65535], "one and thou play false i doe digest": [0, 65535], "and thou play false i doe digest the": [0, 65535], "thou play false i doe digest the poison": [0, 65535], "play false i doe digest the poison of": [0, 65535], "false i doe digest the poison of thy": [0, 65535], "i doe digest the poison of thy flesh": [0, 65535], "doe digest the poison of thy flesh being": [0, 65535], "digest the poison of thy flesh being strumpeted": [0, 65535], "the poison of thy flesh being strumpeted by": [0, 65535], "poison of thy flesh being strumpeted by thy": [0, 65535], "of thy flesh being strumpeted by thy contagion": [0, 65535], "thy flesh being strumpeted by thy contagion keepe": [0, 65535], "flesh being strumpeted by thy contagion keepe then": [0, 65535], "being strumpeted by thy contagion keepe then faire": [0, 65535], "strumpeted by thy contagion keepe then faire league": [0, 65535], "by thy contagion keepe then faire league and": [0, 65535], "thy contagion keepe then faire league and truce": [0, 65535], "contagion keepe then faire league and truce with": [0, 65535], "keepe then faire league and truce with thy": [0, 65535], "then faire league and truce with thy true": [0, 65535], "faire league and truce with thy true bed": [0, 65535], "league and truce with thy true bed i": [0, 65535], "and truce with thy true bed i liue": [0, 65535], "truce with thy true bed i liue distain'd": [0, 65535], "with thy true bed i liue distain'd thou": [0, 65535], "thy true bed i liue distain'd thou vndishonoured": [0, 65535], "true bed i liue distain'd thou vndishonoured antip": [0, 65535], "bed i liue distain'd thou vndishonoured antip plead": [0, 65535], "i liue distain'd thou vndishonoured antip plead you": [0, 65535], "liue distain'd thou vndishonoured antip plead you to": [0, 65535], "distain'd thou vndishonoured antip plead you to me": [0, 65535], "thou vndishonoured antip plead you to me faire": [0, 65535], "vndishonoured antip plead you to me faire dame": [0, 65535], "antip plead you to me faire dame i": [0, 65535], "plead you to me faire dame i know": [0, 65535], "you to me faire dame i know you": [0, 65535], "to me faire dame i know you not": [0, 65535], "me faire dame i know you not in": [0, 65535], "faire dame i know you not in ephesus": [0, 65535], "dame i know you not in ephesus i": [0, 65535], "i know you not in ephesus i am": [0, 65535], "know you not in ephesus i am but": [0, 65535], "you not in ephesus i am but two": [0, 65535], "not in ephesus i am but two houres": [0, 65535], "in ephesus i am but two houres old": [0, 65535], "ephesus i am but two houres old as": [0, 65535], "i am but two houres old as strange": [0, 65535], "am but two houres old as strange vnto": [0, 65535], "but two houres old as strange vnto your": [0, 65535], "two houres old as strange vnto your towne": [0, 65535], "houres old as strange vnto your towne as": [0, 65535], "old as strange vnto your towne as to": [0, 65535], "as strange vnto your towne as to your": [0, 65535], "strange vnto your towne as to your talke": [0, 65535], "vnto your towne as to your talke who": [0, 65535], "your towne as to your talke who euery": [0, 65535], "towne as to your talke who euery word": [0, 65535], "as to your talke who euery word by": [0, 65535], "to your talke who euery word by all": [0, 65535], "your talke who euery word by all my": [0, 65535], "talke who euery word by all my wit": [0, 65535], "who euery word by all my wit being": [0, 65535], "euery word by all my wit being scan'd": [0, 65535], "word by all my wit being scan'd wants": [0, 65535], "by all my wit being scan'd wants wit": [0, 65535], "all my wit being scan'd wants wit in": [0, 65535], "my wit being scan'd wants wit in all": [0, 65535], "wit being scan'd wants wit in all one": [0, 65535], "being scan'd wants wit in all one word": [0, 65535], "scan'd wants wit in all one word to": [0, 65535], "wants wit in all one word to vnderstand": [0, 65535], "wit in all one word to vnderstand luci": [0, 65535], "in all one word to vnderstand luci fie": [0, 65535], "all one word to vnderstand luci fie brother": [0, 65535], "one word to vnderstand luci fie brother how": [0, 65535], "word to vnderstand luci fie brother how the": [0, 65535], "to vnderstand luci fie brother how the world": [0, 65535], "vnderstand luci fie brother how the world is": [0, 65535], "luci fie brother how the world is chang'd": [0, 65535], "fie brother how the world is chang'd with": [0, 65535], "brother how the world is chang'd with you": [0, 65535], "how the world is chang'd with you when": [0, 65535], "the world is chang'd with you when were": [0, 65535], "world is chang'd with you when were you": [0, 65535], "is chang'd with you when were you wont": [0, 65535], "chang'd with you when were you wont to": [0, 65535], "with you when were you wont to vse": [0, 65535], "you when were you wont to vse my": [0, 65535], "when were you wont to vse my sister": [0, 65535], "were you wont to vse my sister thus": [0, 65535], "you wont to vse my sister thus she": [0, 65535], "wont to vse my sister thus she sent": [0, 65535], "to vse my sister thus she sent for": [0, 65535], "vse my sister thus she sent for you": [0, 65535], "my sister thus she sent for you by": [0, 65535], "sister thus she sent for you by dromio": [0, 65535], "thus she sent for you by dromio home": [0, 65535], "she sent for you by dromio home to": [0, 65535], "sent for you by dromio home to dinner": [0, 65535], "for you by dromio home to dinner ant": [0, 65535], "you by dromio home to dinner ant by": [0, 65535], "by dromio home to dinner ant by dromio": [0, 65535], "dromio home to dinner ant by dromio drom": [0, 65535], "home to dinner ant by dromio drom by": [0, 65535], "to dinner ant by dromio drom by me": [0, 65535], "dinner ant by dromio drom by me adr": [0, 65535], "ant by dromio drom by me adr by": [0, 65535], "by dromio drom by me adr by thee": [0, 65535], "dromio drom by me adr by thee and": [0, 65535], "drom by me adr by thee and this": [0, 65535], "by me adr by thee and this thou": [0, 65535], "me adr by thee and this thou didst": [0, 65535], "adr by thee and this thou didst returne": [0, 65535], "by thee and this thou didst returne from": [0, 65535], "thee and this thou didst returne from him": [0, 65535], "and this thou didst returne from him that": [0, 65535], "this thou didst returne from him that he": [0, 65535], "thou didst returne from him that he did": [0, 65535], "didst returne from him that he did buffet": [0, 65535], "returne from him that he did buffet thee": [0, 65535], "from him that he did buffet thee and": [0, 65535], "him that he did buffet thee and in": [0, 65535], "that he did buffet thee and in his": [0, 65535], "he did buffet thee and in his blowes": [0, 65535], "did buffet thee and in his blowes denied": [0, 65535], "buffet thee and in his blowes denied my": [0, 65535], "thee and in his blowes denied my house": [0, 65535], "and in his blowes denied my house for": [0, 65535], "in his blowes denied my house for his": [0, 65535], "his blowes denied my house for his me": [0, 65535], "blowes denied my house for his me for": [0, 65535], "denied my house for his me for his": [0, 65535], "my house for his me for his wife": [0, 65535], "house for his me for his wife ant": [0, 65535], "for his me for his wife ant did": [0, 65535], "his me for his wife ant did you": [0, 65535], "me for his wife ant did you conuerse": [0, 65535], "for his wife ant did you conuerse sir": [0, 65535], "his wife ant did you conuerse sir with": [0, 65535], "wife ant did you conuerse sir with this": [0, 65535], "ant did you conuerse sir with this gentlewoman": [0, 65535], "did you conuerse sir with this gentlewoman what": [0, 65535], "you conuerse sir with this gentlewoman what is": [0, 65535], "conuerse sir with this gentlewoman what is the": [0, 65535], "sir with this gentlewoman what is the course": [0, 65535], "with this gentlewoman what is the course and": [0, 65535], "this gentlewoman what is the course and drift": [0, 65535], "gentlewoman what is the course and drift of": [0, 65535], "what is the course and drift of your": [0, 65535], "is the course and drift of your compact": [0, 65535], "the course and drift of your compact s": [0, 65535], "course and drift of your compact s dro": [0, 65535], "and drift of your compact s dro i": [0, 65535], "drift of your compact s dro i sir": [0, 65535], "of your compact s dro i sir i": [0, 65535], "your compact s dro i sir i neuer": [0, 65535], "compact s dro i sir i neuer saw": [0, 65535], "s dro i sir i neuer saw her": [0, 65535], "dro i sir i neuer saw her till": [0, 65535], "i sir i neuer saw her till this": [0, 65535], "sir i neuer saw her till this time": [0, 65535], "i neuer saw her till this time ant": [0, 65535], "neuer saw her till this time ant villaine": [0, 65535], "saw her till this time ant villaine thou": [0, 65535], "her till this time ant villaine thou liest": [0, 65535], "till this time ant villaine thou liest for": [0, 65535], "this time ant villaine thou liest for euen": [0, 65535], "time ant villaine thou liest for euen her": [0, 65535], "ant villaine thou liest for euen her verie": [0, 65535], "villaine thou liest for euen her verie words": [0, 65535], "thou liest for euen her verie words didst": [0, 65535], "liest for euen her verie words didst thou": [0, 65535], "for euen her verie words didst thou deliuer": [0, 65535], "euen her verie words didst thou deliuer to": [0, 65535], "her verie words didst thou deliuer to me": [0, 65535], "verie words didst thou deliuer to me on": [0, 65535], "words didst thou deliuer to me on the": [0, 65535], "didst thou deliuer to me on the mart": [0, 65535], "thou deliuer to me on the mart s": [0, 65535], "deliuer to me on the mart s dro": [0, 65535], "to me on the mart s dro i": [0, 65535], "me on the mart s dro i neuer": [0, 65535], "on the mart s dro i neuer spake": [0, 65535], "the mart s dro i neuer spake with": [0, 65535], "mart s dro i neuer spake with her": [0, 65535], "s dro i neuer spake with her in": [0, 65535], "dro i neuer spake with her in all": [0, 65535], "i neuer spake with her in all my": [0, 65535], "neuer spake with her in all my life": [0, 65535], "spake with her in all my life ant": [0, 65535], "with her in all my life ant how": [0, 65535], "her in all my life ant how can": [0, 65535], "in all my life ant how can she": [0, 65535], "all my life ant how can she thus": [0, 65535], "my life ant how can she thus then": [0, 65535], "life ant how can she thus then call": [0, 65535], "ant how can she thus then call vs": [0, 65535], "how can she thus then call vs by": [0, 65535], "can she thus then call vs by our": [0, 65535], "she thus then call vs by our names": [0, 65535], "thus then call vs by our names vnlesse": [0, 65535], "then call vs by our names vnlesse it": [0, 65535], "call vs by our names vnlesse it be": [0, 65535], "vs by our names vnlesse it be by": [0, 65535], "by our names vnlesse it be by inspiration": [0, 65535], "our names vnlesse it be by inspiration adri": [0, 65535], "names vnlesse it be by inspiration adri how": [0, 65535], "vnlesse it be by inspiration adri how ill": [0, 65535], "it be by inspiration adri how ill agrees": [0, 65535], "be by inspiration adri how ill agrees it": [0, 65535], "by inspiration adri how ill agrees it with": [0, 65535], "inspiration adri how ill agrees it with your": [0, 65535], "adri how ill agrees it with your grauitie": [0, 65535], "how ill agrees it with your grauitie to": [0, 65535], "ill agrees it with your grauitie to counterfeit": [0, 65535], "agrees it with your grauitie to counterfeit thus": [0, 65535], "it with your grauitie to counterfeit thus grosely": [0, 65535], "with your grauitie to counterfeit thus grosely with": [0, 65535], "your grauitie to counterfeit thus grosely with your": [0, 65535], "grauitie to counterfeit thus grosely with your slaue": [0, 65535], "to counterfeit thus grosely with your slaue abetting": [0, 65535], "counterfeit thus grosely with your slaue abetting him": [0, 65535], "thus grosely with your slaue abetting him to": [0, 65535], "grosely with your slaue abetting him to thwart": [0, 65535], "with your slaue abetting him to thwart me": [0, 65535], "your slaue abetting him to thwart me in": [0, 65535], "slaue abetting him to thwart me in my": [0, 65535], "abetting him to thwart me in my moode": [0, 65535], "him to thwart me in my moode be": [0, 65535], "to thwart me in my moode be it": [0, 65535], "thwart me in my moode be it my": [0, 65535], "me in my moode be it my wrong": [0, 65535], "in my moode be it my wrong you": [0, 65535], "my moode be it my wrong you are": [0, 65535], "moode be it my wrong you are from": [0, 65535], "be it my wrong you are from me": [0, 65535], "it my wrong you are from me exempt": [0, 65535], "my wrong you are from me exempt but": [0, 65535], "wrong you are from me exempt but wrong": [0, 65535], "you are from me exempt but wrong not": [0, 65535], "are from me exempt but wrong not that": [0, 65535], "from me exempt but wrong not that wrong": [0, 65535], "me exempt but wrong not that wrong with": [0, 65535], "exempt but wrong not that wrong with a": [0, 65535], "but wrong not that wrong with a more": [0, 65535], "wrong not that wrong with a more contempt": [0, 65535], "not that wrong with a more contempt come": [0, 65535], "that wrong with a more contempt come i": [0, 65535], "wrong with a more contempt come i will": [0, 65535], "with a more contempt come i will fasten": [0, 65535], "a more contempt come i will fasten on": [0, 65535], "more contempt come i will fasten on this": [0, 65535], "contempt come i will fasten on this sleeue": [0, 65535], "come i will fasten on this sleeue of": [0, 65535], "i will fasten on this sleeue of thine": [0, 65535], "will fasten on this sleeue of thine thou": [0, 65535], "fasten on this sleeue of thine thou art": [0, 65535], "on this sleeue of thine thou art an": [0, 65535], "this sleeue of thine thou art an elme": [0, 65535], "sleeue of thine thou art an elme my": [0, 65535], "of thine thou art an elme my husband": [0, 65535], "thine thou art an elme my husband i": [0, 65535], "thou art an elme my husband i a": [0, 65535], "art an elme my husband i a vine": [0, 65535], "an elme my husband i a vine whose": [0, 65535], "elme my husband i a vine whose weaknesse": [0, 65535], "my husband i a vine whose weaknesse married": [0, 65535], "husband i a vine whose weaknesse married to": [0, 65535], "i a vine whose weaknesse married to thy": [0, 65535], "a vine whose weaknesse married to thy stranger": [0, 65535], "vine whose weaknesse married to thy stranger state": [0, 65535], "whose weaknesse married to thy stranger state makes": [0, 65535], "weaknesse married to thy stranger state makes me": [0, 65535], "married to thy stranger state makes me with": [0, 65535], "to thy stranger state makes me with thy": [0, 65535], "thy stranger state makes me with thy strength": [0, 65535], "stranger state makes me with thy strength to": [0, 65535], "state makes me with thy strength to communicate": [0, 65535], "makes me with thy strength to communicate if": [0, 65535], "me with thy strength to communicate if ought": [0, 65535], "with thy strength to communicate if ought possesse": [0, 65535], "thy strength to communicate if ought possesse thee": [0, 65535], "strength to communicate if ought possesse thee from": [0, 65535], "to communicate if ought possesse thee from me": [0, 65535], "communicate if ought possesse thee from me it": [0, 65535], "if ought possesse thee from me it is": [0, 65535], "ought possesse thee from me it is drosse": [0, 65535], "possesse thee from me it is drosse vsurping": [0, 65535], "thee from me it is drosse vsurping iuie": [0, 65535], "from me it is drosse vsurping iuie brier": [0, 65535], "me it is drosse vsurping iuie brier or": [0, 65535], "it is drosse vsurping iuie brier or idle": [0, 65535], "is drosse vsurping iuie brier or idle mosse": [0, 65535], "drosse vsurping iuie brier or idle mosse who": [0, 65535], "vsurping iuie brier or idle mosse who all": [0, 65535], "iuie brier or idle mosse who all for": [0, 65535], "brier or idle mosse who all for want": [0, 65535], "or idle mosse who all for want of": [0, 65535], "idle mosse who all for want of pruning": [0, 65535], "mosse who all for want of pruning with": [0, 65535], "who all for want of pruning with intrusion": [0, 65535], "all for want of pruning with intrusion infect": [0, 65535], "for want of pruning with intrusion infect thy": [0, 65535], "want of pruning with intrusion infect thy sap": [0, 65535], "of pruning with intrusion infect thy sap and": [0, 65535], "pruning with intrusion infect thy sap and liue": [0, 65535], "with intrusion infect thy sap and liue on": [0, 65535], "intrusion infect thy sap and liue on thy": [0, 65535], "infect thy sap and liue on thy confusion": [0, 65535], "thy sap and liue on thy confusion ant": [0, 65535], "sap and liue on thy confusion ant to": [0, 65535], "and liue on thy confusion ant to mee": [0, 65535], "liue on thy confusion ant to mee shee": [0, 65535], "on thy confusion ant to mee shee speakes": [0, 65535], "thy confusion ant to mee shee speakes shee": [0, 65535], "confusion ant to mee shee speakes shee moues": [0, 65535], "ant to mee shee speakes shee moues mee": [0, 65535], "to mee shee speakes shee moues mee for": [0, 65535], "mee shee speakes shee moues mee for her": [0, 65535], "shee speakes shee moues mee for her theame": [0, 65535], "speakes shee moues mee for her theame what": [0, 65535], "shee moues mee for her theame what was": [0, 65535], "moues mee for her theame what was i": [0, 65535], "mee for her theame what was i married": [0, 65535], "for her theame what was i married to": [0, 65535], "her theame what was i married to her": [0, 65535], "theame what was i married to her in": [0, 65535], "what was i married to her in my": [0, 65535], "was i married to her in my dreame": [0, 65535], "i married to her in my dreame or": [0, 65535], "married to her in my dreame or sleepe": [0, 65535], "to her in my dreame or sleepe i": [0, 65535], "her in my dreame or sleepe i now": [0, 65535], "in my dreame or sleepe i now and": [0, 65535], "my dreame or sleepe i now and thinke": [0, 65535], "dreame or sleepe i now and thinke i": [0, 65535], "or sleepe i now and thinke i heare": [0, 65535], "sleepe i now and thinke i heare all": [0, 65535], "i now and thinke i heare all this": [0, 65535], "now and thinke i heare all this what": [0, 65535], "and thinke i heare all this what error": [0, 65535], "thinke i heare all this what error driues": [0, 65535], "i heare all this what error driues our": [0, 65535], "heare all this what error driues our eies": [0, 65535], "all this what error driues our eies and": [0, 65535], "this what error driues our eies and eares": [0, 65535], "what error driues our eies and eares amisse": [0, 65535], "error driues our eies and eares amisse vntill": [0, 65535], "driues our eies and eares amisse vntill i": [0, 65535], "our eies and eares amisse vntill i know": [0, 65535], "eies and eares amisse vntill i know this": [0, 65535], "and eares amisse vntill i know this sure": [0, 65535], "eares amisse vntill i know this sure vncertaintie": [0, 65535], "amisse vntill i know this sure vncertaintie ile": [0, 65535], "vntill i know this sure vncertaintie ile entertaine": [0, 65535], "i know this sure vncertaintie ile entertaine the": [0, 65535], "know this sure vncertaintie ile entertaine the free'd": [0, 65535], "this sure vncertaintie ile entertaine the free'd fallacie": [0, 65535], "sure vncertaintie ile entertaine the free'd fallacie luc": [0, 65535], "vncertaintie ile entertaine the free'd fallacie luc dromio": [0, 65535], "ile entertaine the free'd fallacie luc dromio goe": [0, 65535], "entertaine the free'd fallacie luc dromio goe bid": [0, 65535], "the free'd fallacie luc dromio goe bid the": [0, 65535], "free'd fallacie luc dromio goe bid the seruants": [0, 65535], "fallacie luc dromio goe bid the seruants spred": [0, 65535], "luc dromio goe bid the seruants spred for": [0, 65535], "dromio goe bid the seruants spred for dinner": [0, 65535], "goe bid the seruants spred for dinner s": [0, 65535], "bid the seruants spred for dinner s dro": [0, 65535], "the seruants spred for dinner s dro oh": [0, 65535], "seruants spred for dinner s dro oh for": [0, 65535], "spred for dinner s dro oh for my": [0, 65535], "for dinner s dro oh for my beads": [0, 65535], "dinner s dro oh for my beads i": [0, 65535], "s dro oh for my beads i crosse": [0, 65535], "dro oh for my beads i crosse me": [0, 65535], "oh for my beads i crosse me for": [0, 65535], "for my beads i crosse me for a": [0, 65535], "my beads i crosse me for a sinner": [0, 65535], "beads i crosse me for a sinner this": [0, 65535], "i crosse me for a sinner this is": [0, 65535], "crosse me for a sinner this is the": [0, 65535], "me for a sinner this is the fairie": [0, 65535], "for a sinner this is the fairie land": [0, 65535], "a sinner this is the fairie land oh": [0, 65535], "sinner this is the fairie land oh spight": [0, 65535], "this is the fairie land oh spight of": [0, 65535], "is the fairie land oh spight of spights": [0, 65535], "the fairie land oh spight of spights we": [0, 65535], "fairie land oh spight of spights we talke": [0, 65535], "land oh spight of spights we talke with": [0, 65535], "oh spight of spights we talke with goblins": [0, 65535], "spight of spights we talke with goblins owles": [0, 65535], "of spights we talke with goblins owles and": [0, 65535], "spights we talke with goblins owles and sprights": [0, 65535], "we talke with goblins owles and sprights if": [0, 65535], "talke with goblins owles and sprights if we": [0, 65535], "with goblins owles and sprights if we obay": [0, 65535], "goblins owles and sprights if we obay them": [0, 65535], "owles and sprights if we obay them not": [0, 65535], "and sprights if we obay them not this": [0, 65535], "sprights if we obay them not this will": [0, 65535], "if we obay them not this will insue": [0, 65535], "we obay them not this will insue they'll": [0, 65535], "obay them not this will insue they'll sucke": [0, 65535], "them not this will insue they'll sucke our": [0, 65535], "not this will insue they'll sucke our breath": [0, 65535], "this will insue they'll sucke our breath or": [0, 65535], "will insue they'll sucke our breath or pinch": [0, 65535], "insue they'll sucke our breath or pinch vs": [0, 65535], "they'll sucke our breath or pinch vs blacke": [0, 65535], "sucke our breath or pinch vs blacke and": [0, 65535], "our breath or pinch vs blacke and blew": [0, 65535], "breath or pinch vs blacke and blew luc": [0, 65535], "or pinch vs blacke and blew luc why": [0, 65535], "pinch vs blacke and blew luc why prat'st": [0, 65535], "vs blacke and blew luc why prat'st thou": [0, 65535], "blacke and blew luc why prat'st thou to": [0, 65535], "and blew luc why prat'st thou to thy": [0, 65535], "blew luc why prat'st thou to thy selfe": [0, 65535], "luc why prat'st thou to thy selfe and": [0, 65535], "why prat'st thou to thy selfe and answer'st": [0, 65535], "prat'st thou to thy selfe and answer'st not": [0, 65535], "thou to thy selfe and answer'st not dromio": [0, 65535], "to thy selfe and answer'st not dromio thou": [0, 65535], "thy selfe and answer'st not dromio thou dromio": [0, 65535], "selfe and answer'st not dromio thou dromio thou": [0, 65535], "and answer'st not dromio thou dromio thou snaile": [0, 65535], "answer'st not dromio thou dromio thou snaile thou": [0, 65535], "not dromio thou dromio thou snaile thou slug": [0, 65535], "dromio thou dromio thou snaile thou slug thou": [0, 65535], "thou dromio thou snaile thou slug thou sot": [0, 65535], "dromio thou snaile thou slug thou sot s": [0, 65535], "thou snaile thou slug thou sot s dro": [0, 65535], "snaile thou slug thou sot s dro i": [0, 65535], "thou slug thou sot s dro i am": [0, 65535], "slug thou sot s dro i am transformed": [0, 65535], "thou sot s dro i am transformed master": [0, 65535], "sot s dro i am transformed master am": [0, 65535], "s dro i am transformed master am i": [0, 65535], "dro i am transformed master am i not": [0, 65535], "i am transformed master am i not ant": [0, 65535], "am transformed master am i not ant i": [0, 65535], "transformed master am i not ant i thinke": [0, 65535], "master am i not ant i thinke thou": [0, 65535], "am i not ant i thinke thou art": [0, 65535], "i not ant i thinke thou art in": [0, 65535], "not ant i thinke thou art in minde": [0, 65535], "ant i thinke thou art in minde and": [0, 65535], "i thinke thou art in minde and so": [0, 65535], "thinke thou art in minde and so am": [0, 65535], "thou art in minde and so am i": [0, 65535], "art in minde and so am i s": [0, 65535], "in minde and so am i s dro": [0, 65535], "minde and so am i s dro nay": [0, 65535], "and so am i s dro nay master": [0, 65535], "so am i s dro nay master both": [0, 65535], "am i s dro nay master both in": [0, 65535], "i s dro nay master both in minde": [0, 65535], "s dro nay master both in minde and": [0, 65535], "dro nay master both in minde and in": [0, 65535], "nay master both in minde and in my": [0, 65535], "master both in minde and in my shape": [0, 65535], "both in minde and in my shape ant": [0, 65535], "in minde and in my shape ant thou": [0, 65535], "minde and in my shape ant thou hast": [0, 65535], "and in my shape ant thou hast thine": [0, 65535], "in my shape ant thou hast thine owne": [0, 65535], "my shape ant thou hast thine owne forme": [0, 65535], "shape ant thou hast thine owne forme s": [0, 65535], "ant thou hast thine owne forme s dro": [0, 65535], "thou hast thine owne forme s dro no": [0, 65535], "hast thine owne forme s dro no i": [0, 65535], "thine owne forme s dro no i am": [0, 65535], "owne forme s dro no i am an": [0, 65535], "forme s dro no i am an ape": [0, 65535], "s dro no i am an ape luc": [0, 65535], "dro no i am an ape luc if": [0, 65535], "no i am an ape luc if thou": [0, 65535], "i am an ape luc if thou art": [0, 65535], "am an ape luc if thou art chang'd": [0, 65535], "an ape luc if thou art chang'd to": [0, 65535], "ape luc if thou art chang'd to ought": [0, 65535], "luc if thou art chang'd to ought 'tis": [0, 65535], "if thou art chang'd to ought 'tis to": [0, 65535], "thou art chang'd to ought 'tis to an": [0, 65535], "art chang'd to ought 'tis to an asse": [0, 65535], "chang'd to ought 'tis to an asse s": [0, 65535], "to ought 'tis to an asse s dro": [0, 65535], "ought 'tis to an asse s dro 'tis": [0, 65535], "'tis to an asse s dro 'tis true": [0, 65535], "to an asse s dro 'tis true she": [0, 65535], "an asse s dro 'tis true she rides": [0, 65535], "asse s dro 'tis true she rides me": [0, 65535], "s dro 'tis true she rides me and": [0, 65535], "dro 'tis true she rides me and i": [0, 65535], "'tis true she rides me and i long": [0, 65535], "true she rides me and i long for": [0, 65535], "she rides me and i long for grasse": [0, 65535], "rides me and i long for grasse 'tis": [0, 65535], "me and i long for grasse 'tis so": [0, 65535], "and i long for grasse 'tis so i": [0, 65535], "i long for grasse 'tis so i am": [0, 65535], "long for grasse 'tis so i am an": [0, 65535], "for grasse 'tis so i am an asse": [0, 65535], "grasse 'tis so i am an asse else": [0, 65535], "'tis so i am an asse else it": [0, 65535], "so i am an asse else it could": [0, 65535], "i am an asse else it could neuer": [0, 65535], "am an asse else it could neuer be": [0, 65535], "an asse else it could neuer be but": [0, 65535], "asse else it could neuer be but i": [0, 65535], "else it could neuer be but i should": [0, 65535], "it could neuer be but i should know": [0, 65535], "could neuer be but i should know her": [0, 65535], "neuer be but i should know her as": [0, 65535], "be but i should know her as well": [0, 65535], "but i should know her as well as": [0, 65535], "i should know her as well as she": [0, 65535], "should know her as well as she knowes": [0, 65535], "know her as well as she knowes me": [0, 65535], "her as well as she knowes me adr": [0, 65535], "as well as she knowes me adr come": [0, 65535], "well as she knowes me adr come come": [0, 65535], "as she knowes me adr come come no": [0, 65535], "she knowes me adr come come no longer": [0, 65535], "knowes me adr come come no longer will": [0, 65535], "me adr come come no longer will i": [0, 65535], "adr come come no longer will i be": [0, 65535], "come come no longer will i be a": [0, 65535], "come no longer will i be a foole": [0, 65535], "no longer will i be a foole to": [0, 65535], "longer will i be a foole to put": [0, 65535], "will i be a foole to put the": [0, 65535], "i be a foole to put the finger": [0, 65535], "be a foole to put the finger in": [0, 65535], "a foole to put the finger in the": [0, 65535], "foole to put the finger in the eie": [0, 65535], "to put the finger in the eie and": [0, 65535], "put the finger in the eie and weepe": [0, 65535], "the finger in the eie and weepe whil'st": [0, 65535], "finger in the eie and weepe whil'st man": [0, 65535], "in the eie and weepe whil'st man and": [0, 65535], "the eie and weepe whil'st man and master": [0, 65535], "eie and weepe whil'st man and master laughes": [0, 65535], "and weepe whil'st man and master laughes my": [0, 65535], "weepe whil'st man and master laughes my woes": [0, 65535], "whil'st man and master laughes my woes to": [0, 65535], "man and master laughes my woes to scorne": [0, 65535], "and master laughes my woes to scorne come": [0, 65535], "master laughes my woes to scorne come sir": [0, 65535], "laughes my woes to scorne come sir to": [0, 65535], "my woes to scorne come sir to dinner": [0, 65535], "woes to scorne come sir to dinner dromio": [0, 65535], "to scorne come sir to dinner dromio keepe": [0, 65535], "scorne come sir to dinner dromio keepe the": [0, 65535], "come sir to dinner dromio keepe the gate": [0, 65535], "sir to dinner dromio keepe the gate husband": [0, 65535], "to dinner dromio keepe the gate husband ile": [0, 65535], "dinner dromio keepe the gate husband ile dine": [0, 65535], "dromio keepe the gate husband ile dine aboue": [0, 65535], "keepe the gate husband ile dine aboue with": [0, 65535], "the gate husband ile dine aboue with you": [0, 65535], "gate husband ile dine aboue with you to": [0, 65535], "husband ile dine aboue with you to day": [0, 65535], "ile dine aboue with you to day and": [0, 65535], "dine aboue with you to day and shriue": [0, 65535], "aboue with you to day and shriue you": [0, 65535], "with you to day and shriue you of": [0, 65535], "you to day and shriue you of a": [0, 65535], "to day and shriue you of a thousand": [0, 65535], "day and shriue you of a thousand idle": [0, 65535], "and shriue you of a thousand idle prankes": [0, 65535], "shriue you of a thousand idle prankes sirra": [0, 65535], "you of a thousand idle prankes sirra if": [0, 65535], "of a thousand idle prankes sirra if any": [0, 65535], "a thousand idle prankes sirra if any aske": [0, 65535], "thousand idle prankes sirra if any aske you": [0, 65535], "idle prankes sirra if any aske you for": [0, 65535], "prankes sirra if any aske you for your": [0, 65535], "sirra if any aske you for your master": [0, 65535], "if any aske you for your master say": [0, 65535], "any aske you for your master say he": [0, 65535], "aske you for your master say he dines": [0, 65535], "you for your master say he dines forth": [0, 65535], "for your master say he dines forth and": [0, 65535], "your master say he dines forth and let": [0, 65535], "master say he dines forth and let no": [0, 65535], "say he dines forth and let no creature": [0, 65535], "he dines forth and let no creature enter": [0, 65535], "dines forth and let no creature enter come": [0, 65535], "forth and let no creature enter come sister": [0, 65535], "and let no creature enter come sister dromio": [0, 65535], "let no creature enter come sister dromio play": [0, 65535], "no creature enter come sister dromio play the": [0, 65535], "creature enter come sister dromio play the porter": [0, 65535], "enter come sister dromio play the porter well": [0, 65535], "come sister dromio play the porter well ant": [0, 65535], "sister dromio play the porter well ant am": [0, 65535], "dromio play the porter well ant am i": [0, 65535], "play the porter well ant am i in": [0, 65535], "the porter well ant am i in earth": [0, 65535], "porter well ant am i in earth in": [0, 65535], "well ant am i in earth in heauen": [0, 65535], "ant am i in earth in heauen or": [0, 65535], "am i in earth in heauen or in": [0, 65535], "i in earth in heauen or in hell": [0, 65535], "in earth in heauen or in hell sleeping": [0, 65535], "earth in heauen or in hell sleeping or": [0, 65535], "in heauen or in hell sleeping or waking": [0, 65535], "heauen or in hell sleeping or waking mad": [0, 65535], "or in hell sleeping or waking mad or": [0, 65535], "in hell sleeping or waking mad or well": [0, 65535], "hell sleeping or waking mad or well aduisde": [0, 65535], "sleeping or waking mad or well aduisde knowne": [0, 65535], "or waking mad or well aduisde knowne vnto": [0, 65535], "waking mad or well aduisde knowne vnto these": [0, 65535], "mad or well aduisde knowne vnto these and": [0, 65535], "or well aduisde knowne vnto these and to": [0, 65535], "well aduisde knowne vnto these and to my": [0, 65535], "aduisde knowne vnto these and to my selfe": [0, 65535], "knowne vnto these and to my selfe disguisde": [0, 65535], "vnto these and to my selfe disguisde ile": [0, 65535], "these and to my selfe disguisde ile say": [0, 65535], "and to my selfe disguisde ile say as": [0, 65535], "to my selfe disguisde ile say as they": [0, 65535], "my selfe disguisde ile say as they say": [0, 65535], "selfe disguisde ile say as they say and": [0, 65535], "disguisde ile say as they say and perseuer": [0, 65535], "ile say as they say and perseuer so": [0, 65535], "say as they say and perseuer so and": [0, 65535], "as they say and perseuer so and in": [0, 65535], "they say and perseuer so and in this": [0, 65535], "say and perseuer so and in this mist": [0, 65535], "and perseuer so and in this mist at": [0, 65535], "perseuer so and in this mist at all": [0, 65535], "so and in this mist at all aduentures": [0, 65535], "and in this mist at all aduentures go": [0, 65535], "in this mist at all aduentures go s": [0, 65535], "this mist at all aduentures go s dro": [0, 65535], "mist at all aduentures go s dro master": [0, 65535], "at all aduentures go s dro master shall": [0, 65535], "all aduentures go s dro master shall i": [0, 65535], "aduentures go s dro master shall i be": [0, 65535], "go s dro master shall i be porter": [0, 65535], "s dro master shall i be porter at": [0, 65535], "dro master shall i be porter at the": [0, 65535], "master shall i be porter at the gate": [0, 65535], "shall i be porter at the gate adr": [0, 65535], "i be porter at the gate adr i": [0, 65535], "be porter at the gate adr i and": [0, 65535], "porter at the gate adr i and let": [0, 65535], "at the gate adr i and let none": [0, 65535], "the gate adr i and let none enter": [0, 65535], "gate adr i and let none enter least": [0, 65535], "adr i and let none enter least i": [0, 65535], "i and let none enter least i breake": [0, 65535], "and let none enter least i breake your": [0, 65535], "let none enter least i breake your pate": [0, 65535], "none enter least i breake your pate luc": [0, 65535], "enter least i breake your pate luc come": [0, 65535], "least i breake your pate luc come come": [0, 65535], "i breake your pate luc come come antipholus": [0, 65535], "breake your pate luc come come antipholus we": [0, 65535], "your pate luc come come antipholus we dine": [0, 65535], "pate luc come come antipholus we dine to": [0, 65535], "luc come come antipholus we dine to late": [0, 65535], "actus secundus enter adriana wife to antipholis sereptus with": [0, 65535], "secundus enter adriana wife to antipholis sereptus with luciana": [0, 65535], "enter adriana wife to antipholis sereptus with luciana her": [0, 65535], "adriana wife to antipholis sereptus with luciana her sister": [0, 65535], "wife to antipholis sereptus with luciana her sister adr": [0, 65535], "to antipholis sereptus with luciana her sister adr neither": [0, 65535], "antipholis sereptus with luciana her sister adr neither my": [0, 65535], "sereptus with luciana her sister adr neither my husband": [0, 65535], "with luciana her sister adr neither my husband nor": [0, 65535], "luciana her sister adr neither my husband nor the": [0, 65535], "her sister adr neither my husband nor the slaue": [0, 65535], "sister adr neither my husband nor the slaue return'd": [0, 65535], "adr neither my husband nor the slaue return'd that": [0, 65535], "neither my husband nor the slaue return'd that in": [0, 65535], "my husband nor the slaue return'd that in such": [0, 65535], "husband nor the slaue return'd that in such haste": [0, 65535], "nor the slaue return'd that in such haste i": [0, 65535], "the slaue return'd that in such haste i sent": [0, 65535], "slaue return'd that in such haste i sent to": [0, 65535], "return'd that in such haste i sent to seeke": [0, 65535], "that in such haste i sent to seeke his": [0, 65535], "in such haste i sent to seeke his master": [0, 65535], "such haste i sent to seeke his master sure": [0, 65535], "haste i sent to seeke his master sure luciana": [0, 65535], "i sent to seeke his master sure luciana it": [0, 65535], "sent to seeke his master sure luciana it is": [0, 65535], "to seeke his master sure luciana it is two": [0, 65535], "seeke his master sure luciana it is two a": [0, 65535], "his master sure luciana it is two a clocke": [0, 65535], "master sure luciana it is two a clocke luc": [0, 65535], "sure luciana it is two a clocke luc perhaps": [0, 65535], "luciana it is two a clocke luc perhaps some": [0, 65535], "it is two a clocke luc perhaps some merchant": [0, 65535], "is two a clocke luc perhaps some merchant hath": [0, 65535], "two a clocke luc perhaps some merchant hath inuited": [0, 65535], "a clocke luc perhaps some merchant hath inuited him": [0, 65535], "clocke luc perhaps some merchant hath inuited him and": [0, 65535], "luc perhaps some merchant hath inuited him and from": [0, 65535], "perhaps some merchant hath inuited him and from the": [0, 65535], "some merchant hath inuited him and from the mart": [0, 65535], "merchant hath inuited him and from the mart he's": [0, 65535], "hath inuited him and from the mart he's somewhere": [0, 65535], "inuited him and from the mart he's somewhere gone": [0, 65535], "him and from the mart he's somewhere gone to": [0, 65535], "and from the mart he's somewhere gone to dinner": [0, 65535], "from the mart he's somewhere gone to dinner good": [0, 65535], "the mart he's somewhere gone to dinner good sister": [0, 65535], "mart he's somewhere gone to dinner good sister let": [0, 65535], "he's somewhere gone to dinner good sister let vs": [0, 65535], "somewhere gone to dinner good sister let vs dine": [0, 65535], "gone to dinner good sister let vs dine and": [0, 65535], "to dinner good sister let vs dine and neuer": [0, 65535], "dinner good sister let vs dine and neuer fret": [0, 65535], "good sister let vs dine and neuer fret a": [0, 65535], "sister let vs dine and neuer fret a man": [0, 65535], "let vs dine and neuer fret a man is": [0, 65535], "vs dine and neuer fret a man is master": [0, 65535], "dine and neuer fret a man is master of": [0, 65535], "and neuer fret a man is master of his": [0, 65535], "neuer fret a man is master of his libertie": [0, 65535], "fret a man is master of his libertie time": [0, 65535], "a man is master of his libertie time is": [0, 65535], "man is master of his libertie time is their": [0, 65535], "is master of his libertie time is their master": [0, 65535], "master of his libertie time is their master and": [0, 65535], "of his libertie time is their master and when": [0, 65535], "his libertie time is their master and when they": [0, 65535], "libertie time is their master and when they see": [0, 65535], "time is their master and when they see time": [0, 65535], "is their master and when they see time they'll": [0, 65535], "their master and when they see time they'll goe": [0, 65535], "master and when they see time they'll goe or": [0, 65535], "and when they see time they'll goe or come": [0, 65535], "when they see time they'll goe or come if": [0, 65535], "they see time they'll goe or come if so": [0, 65535], "see time they'll goe or come if so be": [0, 65535], "time they'll goe or come if so be patient": [0, 65535], "they'll goe or come if so be patient sister": [0, 65535], "goe or come if so be patient sister adr": [0, 65535], "or come if so be patient sister adr why": [0, 65535], "come if so be patient sister adr why should": [0, 65535], "if so be patient sister adr why should their": [0, 65535], "so be patient sister adr why should their libertie": [0, 65535], "be patient sister adr why should their libertie then": [0, 65535], "patient sister adr why should their libertie then ours": [0, 65535], "sister adr why should their libertie then ours be": [0, 65535], "adr why should their libertie then ours be more": [0, 65535], "why should their libertie then ours be more luc": [0, 65535], "should their libertie then ours be more luc because": [0, 65535], "their libertie then ours be more luc because their": [0, 65535], "libertie then ours be more luc because their businesse": [0, 65535], "then ours be more luc because their businesse still": [0, 65535], "ours be more luc because their businesse still lies": [0, 65535], "be more luc because their businesse still lies out": [0, 65535], "more luc because their businesse still lies out a": [0, 65535], "luc because their businesse still lies out a dore": [0, 65535], "because their businesse still lies out a dore adr": [0, 65535], "their businesse still lies out a dore adr looke": [0, 65535], "businesse still lies out a dore adr looke when": [0, 65535], "still lies out a dore adr looke when i": [0, 65535], "lies out a dore adr looke when i serue": [0, 65535], "out a dore adr looke when i serue him": [0, 65535], "a dore adr looke when i serue him so": [0, 65535], "dore adr looke when i serue him so he": [0, 65535], "adr looke when i serue him so he takes": [0, 65535], "looke when i serue him so he takes it": [0, 65535], "when i serue him so he takes it thus": [0, 65535], "i serue him so he takes it thus luc": [0, 65535], "serue him so he takes it thus luc oh": [0, 65535], "him so he takes it thus luc oh know": [0, 65535], "so he takes it thus luc oh know he": [0, 65535], "he takes it thus luc oh know he is": [0, 65535], "takes it thus luc oh know he is the": [0, 65535], "it thus luc oh know he is the bridle": [0, 65535], "thus luc oh know he is the bridle of": [0, 65535], "luc oh know he is the bridle of your": [0, 65535], "oh know he is the bridle of your will": [0, 65535], "know he is the bridle of your will adr": [0, 65535], "he is the bridle of your will adr there's": [0, 65535], "is the bridle of your will adr there's none": [0, 65535], "the bridle of your will adr there's none but": [0, 65535], "bridle of your will adr there's none but asses": [0, 65535], "of your will adr there's none but asses will": [0, 65535], "your will adr there's none but asses will be": [0, 65535], "will adr there's none but asses will be bridled": [0, 65535], "adr there's none but asses will be bridled so": [0, 65535], "there's none but asses will be bridled so luc": [0, 65535], "none but asses will be bridled so luc why": [0, 65535], "but asses will be bridled so luc why headstrong": [0, 65535], "asses will be bridled so luc why headstrong liberty": [0, 65535], "will be bridled so luc why headstrong liberty is": [0, 65535], "be bridled so luc why headstrong liberty is lasht": [0, 65535], "bridled so luc why headstrong liberty is lasht with": [0, 65535], "so luc why headstrong liberty is lasht with woe": [0, 65535], "luc why headstrong liberty is lasht with woe there's": [0, 65535], "why headstrong liberty is lasht with woe there's nothing": [0, 65535], "headstrong liberty is lasht with woe there's nothing situate": [0, 65535], "liberty is lasht with woe there's nothing situate vnder": [0, 65535], "is lasht with woe there's nothing situate vnder heauens": [0, 65535], "lasht with woe there's nothing situate vnder heauens eye": [0, 65535], "with woe there's nothing situate vnder heauens eye but": [0, 65535], "woe there's nothing situate vnder heauens eye but hath": [0, 65535], "there's nothing situate vnder heauens eye but hath his": [0, 65535], "nothing situate vnder heauens eye but hath his bound": [0, 65535], "situate vnder heauens eye but hath his bound in": [0, 65535], "vnder heauens eye but hath his bound in earth": [0, 65535], "heauens eye but hath his bound in earth in": [0, 65535], "eye but hath his bound in earth in sea": [0, 65535], "but hath his bound in earth in sea in": [0, 65535], "hath his bound in earth in sea in skie": [0, 65535], "his bound in earth in sea in skie the": [0, 65535], "bound in earth in sea in skie the beasts": [0, 65535], "in earth in sea in skie the beasts the": [0, 65535], "earth in sea in skie the beasts the fishes": [0, 65535], "in sea in skie the beasts the fishes and": [0, 65535], "sea in skie the beasts the fishes and the": [0, 65535], "in skie the beasts the fishes and the winged": [0, 65535], "skie the beasts the fishes and the winged fowles": [0, 65535], "the beasts the fishes and the winged fowles are": [0, 65535], "beasts the fishes and the winged fowles are their": [0, 65535], "the fishes and the winged fowles are their males": [0, 65535], "fishes and the winged fowles are their males subiects": [0, 65535], "and the winged fowles are their males subiects and": [0, 65535], "the winged fowles are their males subiects and at": [0, 65535], "winged fowles are their males subiects and at their": [0, 65535], "fowles are their males subiects and at their controules": [0, 65535], "are their males subiects and at their controules man": [0, 65535], "their males subiects and at their controules man more": [0, 65535], "males subiects and at their controules man more diuine": [0, 65535], "subiects and at their controules man more diuine the": [0, 65535], "and at their controules man more diuine the master": [0, 65535], "at their controules man more diuine the master of": [0, 65535], "their controules man more diuine the master of all": [0, 65535], "controules man more diuine the master of all these": [0, 65535], "man more diuine the master of all these lord": [0, 65535], "more diuine the master of all these lord of": [0, 65535], "diuine the master of all these lord of the": [0, 65535], "the master of all these lord of the wide": [0, 65535], "master of all these lord of the wide world": [0, 65535], "of all these lord of the wide world and": [0, 65535], "all these lord of the wide world and wilde": [0, 65535], "these lord of the wide world and wilde watry": [0, 65535], "lord of the wide world and wilde watry seas": [0, 65535], "of the wide world and wilde watry seas indued": [0, 65535], "the wide world and wilde watry seas indued with": [0, 65535], "wide world and wilde watry seas indued with intellectuall": [0, 65535], "world and wilde watry seas indued with intellectuall sence": [0, 65535], "and wilde watry seas indued with intellectuall sence and": [0, 65535], "wilde watry seas indued with intellectuall sence and soules": [0, 65535], "watry seas indued with intellectuall sence and soules of": [0, 65535], "seas indued with intellectuall sence and soules of more": [0, 65535], "indued with intellectuall sence and soules of more preheminence": [0, 65535], "with intellectuall sence and soules of more preheminence then": [0, 65535], "intellectuall sence and soules of more preheminence then fish": [0, 65535], "sence and soules of more preheminence then fish and": [0, 65535], "and soules of more preheminence then fish and fowles": [0, 65535], "soules of more preheminence then fish and fowles are": [0, 65535], "of more preheminence then fish and fowles are masters": [0, 65535], "more preheminence then fish and fowles are masters to": [0, 65535], "preheminence then fish and fowles are masters to their": [0, 65535], "then fish and fowles are masters to their females": [0, 65535], "fish and fowles are masters to their females and": [0, 65535], "and fowles are masters to their females and their": [0, 65535], "fowles are masters to their females and their lords": [0, 65535], "are masters to their females and their lords then": [0, 65535], "masters to their females and their lords then let": [0, 65535], "to their females and their lords then let your": [0, 65535], "their females and their lords then let your will": [0, 65535], "females and their lords then let your will attend": [0, 65535], "and their lords then let your will attend on": [0, 65535], "their lords then let your will attend on their": [0, 65535], "lords then let your will attend on their accords": [0, 65535], "then let your will attend on their accords adri": [0, 65535], "let your will attend on their accords adri this": [0, 65535], "your will attend on their accords adri this seruitude": [0, 65535], "will attend on their accords adri this seruitude makes": [0, 65535], "attend on their accords adri this seruitude makes you": [0, 65535], "on their accords adri this seruitude makes you to": [0, 65535], "their accords adri this seruitude makes you to keepe": [0, 65535], "accords adri this seruitude makes you to keepe vnwed": [0, 65535], "adri this seruitude makes you to keepe vnwed luci": [0, 65535], "this seruitude makes you to keepe vnwed luci not": [0, 65535], "seruitude makes you to keepe vnwed luci not this": [0, 65535], "makes you to keepe vnwed luci not this but": [0, 65535], "you to keepe vnwed luci not this but troubles": [0, 65535], "to keepe vnwed luci not this but troubles of": [0, 65535], "keepe vnwed luci not this but troubles of the": [0, 65535], "vnwed luci not this but troubles of the marriage": [0, 65535], "luci not this but troubles of the marriage bed": [0, 65535], "not this but troubles of the marriage bed adr": [0, 65535], "this but troubles of the marriage bed adr but": [0, 65535], "but troubles of the marriage bed adr but were": [0, 65535], "troubles of the marriage bed adr but were you": [0, 65535], "of the marriage bed adr but were you wedded": [0, 65535], "the marriage bed adr but were you wedded you": [0, 65535], "marriage bed adr but were you wedded you wold": [0, 65535], "bed adr but were you wedded you wold bear": [0, 65535], "adr but were you wedded you wold bear some": [0, 65535], "but were you wedded you wold bear some sway": [0, 65535], "were you wedded you wold bear some sway luc": [0, 65535], "you wedded you wold bear some sway luc ere": [0, 65535], "wedded you wold bear some sway luc ere i": [0, 65535], "you wold bear some sway luc ere i learne": [0, 65535], "wold bear some sway luc ere i learne loue": [0, 65535], "bear some sway luc ere i learne loue ile": [0, 65535], "some sway luc ere i learne loue ile practise": [0, 65535], "sway luc ere i learne loue ile practise to": [0, 65535], "luc ere i learne loue ile practise to obey": [0, 65535], "ere i learne loue ile practise to obey adr": [0, 65535], "i learne loue ile practise to obey adr how": [0, 65535], "learne loue ile practise to obey adr how if": [0, 65535], "loue ile practise to obey adr how if your": [0, 65535], "ile practise to obey adr how if your husband": [0, 65535], "practise to obey adr how if your husband start": [0, 65535], "to obey adr how if your husband start some": [0, 65535], "obey adr how if your husband start some other": [0, 65535], "adr how if your husband start some other where": [0, 65535], "how if your husband start some other where luc": [0, 65535], "if your husband start some other where luc till": [0, 65535], "your husband start some other where luc till he": [0, 65535], "husband start some other where luc till he come": [0, 65535], "start some other where luc till he come home": [0, 65535], "some other where luc till he come home againe": [0, 65535], "other where luc till he come home againe i": [0, 65535], "where luc till he come home againe i would": [0, 65535], "luc till he come home againe i would forbeare": [0, 65535], "till he come home againe i would forbeare adr": [0, 65535], "he come home againe i would forbeare adr patience": [0, 65535], "come home againe i would forbeare adr patience vnmou'd": [0, 65535], "home againe i would forbeare adr patience vnmou'd no": [0, 65535], "againe i would forbeare adr patience vnmou'd no maruel": [0, 65535], "i would forbeare adr patience vnmou'd no maruel though": [0, 65535], "would forbeare adr patience vnmou'd no maruel though she": [0, 65535], "forbeare adr patience vnmou'd no maruel though she pause": [0, 65535], "adr patience vnmou'd no maruel though she pause they": [0, 65535], "patience vnmou'd no maruel though she pause they can": [0, 65535], "vnmou'd no maruel though she pause they can be": [0, 65535], "no maruel though she pause they can be meeke": [0, 65535], "maruel though she pause they can be meeke that": [0, 65535], "though she pause they can be meeke that haue": [0, 65535], "she pause they can be meeke that haue no": [0, 65535], "pause they can be meeke that haue no other": [0, 65535], "they can be meeke that haue no other cause": [0, 65535], "can be meeke that haue no other cause a": [0, 65535], "be meeke that haue no other cause a wretched": [0, 65535], "meeke that haue no other cause a wretched soule": [0, 65535], "that haue no other cause a wretched soule bruis'd": [0, 65535], "haue no other cause a wretched soule bruis'd with": [0, 65535], "no other cause a wretched soule bruis'd with aduersitie": [0, 65535], "other cause a wretched soule bruis'd with aduersitie we": [0, 65535], "cause a wretched soule bruis'd with aduersitie we bid": [0, 65535], "a wretched soule bruis'd with aduersitie we bid be": [0, 65535], "wretched soule bruis'd with aduersitie we bid be quiet": [0, 65535], "soule bruis'd with aduersitie we bid be quiet when": [0, 65535], "bruis'd with aduersitie we bid be quiet when we": [0, 65535], "with aduersitie we bid be quiet when we heare": [0, 65535], "aduersitie we bid be quiet when we heare it": [0, 65535], "we bid be quiet when we heare it crie": [0, 65535], "bid be quiet when we heare it crie but": [0, 65535], "be quiet when we heare it crie but were": [0, 65535], "quiet when we heare it crie but were we": [0, 65535], "when we heare it crie but were we burdned": [0, 65535], "we heare it crie but were we burdned with": [0, 65535], "heare it crie but were we burdned with like": [0, 65535], "it crie but were we burdned with like waight": [0, 65535], "crie but were we burdned with like waight of": [0, 65535], "but were we burdned with like waight of paine": [0, 65535], "were we burdned with like waight of paine as": [0, 65535], "we burdned with like waight of paine as much": [0, 65535], "burdned with like waight of paine as much or": [0, 65535], "with like waight of paine as much or more": [0, 65535], "like waight of paine as much or more we": [0, 65535], "waight of paine as much or more we should": [0, 65535], "of paine as much or more we should our": [0, 65535], "paine as much or more we should our selues": [0, 65535], "as much or more we should our selues complaine": [0, 65535], "much or more we should our selues complaine so": [0, 65535], "or more we should our selues complaine so thou": [0, 65535], "more we should our selues complaine so thou that": [0, 65535], "we should our selues complaine so thou that hast": [0, 65535], "should our selues complaine so thou that hast no": [0, 65535], "our selues complaine so thou that hast no vnkinde": [0, 65535], "selues complaine so thou that hast no vnkinde mate": [0, 65535], "complaine so thou that hast no vnkinde mate to": [0, 65535], "so thou that hast no vnkinde mate to greeue": [0, 65535], "thou that hast no vnkinde mate to greeue thee": [0, 65535], "that hast no vnkinde mate to greeue thee with": [0, 65535], "hast no vnkinde mate to greeue thee with vrging": [0, 65535], "no vnkinde mate to greeue thee with vrging helpelesse": [0, 65535], "vnkinde mate to greeue thee with vrging helpelesse patience": [0, 65535], "mate to greeue thee with vrging helpelesse patience would": [0, 65535], "to greeue thee with vrging helpelesse patience would releeue": [0, 65535], "greeue thee with vrging helpelesse patience would releeue me": [0, 65535], "thee with vrging helpelesse patience would releeue me but": [0, 65535], "with vrging helpelesse patience would releeue me but if": [0, 65535], "vrging helpelesse patience would releeue me but if thou": [0, 65535], "helpelesse patience would releeue me but if thou liue": [0, 65535], "patience would releeue me but if thou liue to": [0, 65535], "would releeue me but if thou liue to see": [0, 65535], "releeue me but if thou liue to see like": [0, 65535], "me but if thou liue to see like right": [0, 65535], "but if thou liue to see like right bereft": [0, 65535], "if thou liue to see like right bereft this": [0, 65535], "thou liue to see like right bereft this foole": [0, 65535], "liue to see like right bereft this foole beg'd": [0, 65535], "to see like right bereft this foole beg'd patience": [0, 65535], "see like right bereft this foole beg'd patience in": [0, 65535], "like right bereft this foole beg'd patience in thee": [0, 65535], "right bereft this foole beg'd patience in thee will": [0, 65535], "bereft this foole beg'd patience in thee will be": [0, 65535], "this foole beg'd patience in thee will be left": [0, 65535], "foole beg'd patience in thee will be left luci": [0, 65535], "beg'd patience in thee will be left luci well": [0, 65535], "patience in thee will be left luci well i": [0, 65535], "in thee will be left luci well i will": [0, 65535], "thee will be left luci well i will marry": [0, 65535], "will be left luci well i will marry one": [0, 65535], "be left luci well i will marry one day": [0, 65535], "left luci well i will marry one day but": [0, 65535], "luci well i will marry one day but to": [0, 65535], "well i will marry one day but to trie": [0, 65535], "i will marry one day but to trie heere": [0, 65535], "will marry one day but to trie heere comes": [0, 65535], "marry one day but to trie heere comes your": [0, 65535], "one day but to trie heere comes your man": [0, 65535], "day but to trie heere comes your man now": [0, 65535], "but to trie heere comes your man now is": [0, 65535], "to trie heere comes your man now is your": [0, 65535], "trie heere comes your man now is your husband": [0, 65535], "heere comes your man now is your husband nie": [0, 65535], "comes your man now is your husband nie enter": [0, 65535], "your man now is your husband nie enter dromio": [0, 65535], "man now is your husband nie enter dromio eph": [0, 65535], "now is your husband nie enter dromio eph adr": [0, 65535], "is your husband nie enter dromio eph adr say": [0, 65535], "your husband nie enter dromio eph adr say is": [0, 65535], "husband nie enter dromio eph adr say is your": [0, 65535], "nie enter dromio eph adr say is your tardie": [0, 65535], "enter dromio eph adr say is your tardie master": [0, 65535], "dromio eph adr say is your tardie master now": [0, 65535], "eph adr say is your tardie master now at": [0, 65535], "adr say is your tardie master now at hand": [0, 65535], "say is your tardie master now at hand e": [0, 65535], "is your tardie master now at hand e dro": [0, 65535], "your tardie master now at hand e dro nay": [0, 65535], "tardie master now at hand e dro nay hee's": [0, 65535], "master now at hand e dro nay hee's at": [0, 65535], "now at hand e dro nay hee's at too": [0, 65535], "at hand e dro nay hee's at too hands": [0, 65535], "hand e dro nay hee's at too hands with": [0, 65535], "e dro nay hee's at too hands with mee": [0, 65535], "dro nay hee's at too hands with mee and": [0, 65535], "nay hee's at too hands with mee and that": [0, 65535], "hee's at too hands with mee and that my": [0, 65535], "at too hands with mee and that my two": [0, 65535], "too hands with mee and that my two eares": [0, 65535], "hands with mee and that my two eares can": [0, 65535], "with mee and that my two eares can witnesse": [0, 65535], "mee and that my two eares can witnesse adr": [0, 65535], "and that my two eares can witnesse adr say": [0, 65535], "that my two eares can witnesse adr say didst": [0, 65535], "my two eares can witnesse adr say didst thou": [0, 65535], "two eares can witnesse adr say didst thou speake": [0, 65535], "eares can witnesse adr say didst thou speake with": [0, 65535], "can witnesse adr say didst thou speake with him": [0, 65535], "witnesse adr say didst thou speake with him knowst": [0, 65535], "adr say didst thou speake with him knowst thou": [0, 65535], "say didst thou speake with him knowst thou his": [0, 65535], "didst thou speake with him knowst thou his minde": [0, 65535], "thou speake with him knowst thou his minde e": [0, 65535], "speake with him knowst thou his minde e dro": [0, 65535], "with him knowst thou his minde e dro i": [0, 65535], "him knowst thou his minde e dro i i": [0, 65535], "knowst thou his minde e dro i i he": [0, 65535], "thou his minde e dro i i he told": [0, 65535], "his minde e dro i i he told his": [0, 65535], "minde e dro i i he told his minde": [0, 65535], "e dro i i he told his minde vpon": [0, 65535], "dro i i he told his minde vpon mine": [0, 65535], "i i he told his minde vpon mine eare": [0, 65535], "i he told his minde vpon mine eare beshrew": [0, 65535], "he told his minde vpon mine eare beshrew his": [0, 65535], "told his minde vpon mine eare beshrew his hand": [0, 65535], "his minde vpon mine eare beshrew his hand i": [0, 65535], "minde vpon mine eare beshrew his hand i scarce": [0, 65535], "vpon mine eare beshrew his hand i scarce could": [0, 65535], "mine eare beshrew his hand i scarce could vnderstand": [0, 65535], "eare beshrew his hand i scarce could vnderstand it": [0, 65535], "beshrew his hand i scarce could vnderstand it luc": [0, 65535], "his hand i scarce could vnderstand it luc spake": [0, 65535], "hand i scarce could vnderstand it luc spake hee": [0, 65535], "i scarce could vnderstand it luc spake hee so": [0, 65535], "scarce could vnderstand it luc spake hee so doubtfully": [0, 65535], "could vnderstand it luc spake hee so doubtfully thou": [0, 65535], "vnderstand it luc spake hee so doubtfully thou couldst": [0, 65535], "it luc spake hee so doubtfully thou couldst not": [0, 65535], "luc spake hee so doubtfully thou couldst not feele": [0, 65535], "spake hee so doubtfully thou couldst not feele his": [0, 65535], "hee so doubtfully thou couldst not feele his meaning": [0, 65535], "so doubtfully thou couldst not feele his meaning e": [0, 65535], "doubtfully thou couldst not feele his meaning e dro": [0, 65535], "thou couldst not feele his meaning e dro nay": [0, 65535], "couldst not feele his meaning e dro nay hee": [0, 65535], "not feele his meaning e dro nay hee strooke": [0, 65535], "feele his meaning e dro nay hee strooke so": [0, 65535], "his meaning e dro nay hee strooke so plainly": [0, 65535], "meaning e dro nay hee strooke so plainly i": [0, 65535], "e dro nay hee strooke so plainly i could": [0, 65535], "dro nay hee strooke so plainly i could too": [0, 65535], "nay hee strooke so plainly i could too well": [0, 65535], "hee strooke so plainly i could too well feele": [0, 65535], "strooke so plainly i could too well feele his": [0, 65535], "so plainly i could too well feele his blowes": [0, 65535], "plainly i could too well feele his blowes and": [0, 65535], "i could too well feele his blowes and withall": [0, 65535], "could too well feele his blowes and withall so": [0, 65535], "too well feele his blowes and withall so doubtfully": [0, 65535], "well feele his blowes and withall so doubtfully that": [0, 65535], "feele his blowes and withall so doubtfully that i": [0, 65535], "his blowes and withall so doubtfully that i could": [0, 65535], "blowes and withall so doubtfully that i could scarce": [0, 65535], "and withall so doubtfully that i could scarce vnderstand": [0, 65535], "withall so doubtfully that i could scarce vnderstand them": [0, 65535], "so doubtfully that i could scarce vnderstand them adri": [0, 65535], "doubtfully that i could scarce vnderstand them adri but": [0, 65535], "that i could scarce vnderstand them adri but say": [0, 65535], "i could scarce vnderstand them adri but say i": [0, 65535], "could scarce vnderstand them adri but say i prethee": [0, 65535], "scarce vnderstand them adri but say i prethee is": [0, 65535], "vnderstand them adri but say i prethee is he": [0, 65535], "them adri but say i prethee is he comming": [0, 65535], "adri but say i prethee is he comming home": [0, 65535], "but say i prethee is he comming home it": [0, 65535], "say i prethee is he comming home it seemes": [0, 65535], "i prethee is he comming home it seemes he": [0, 65535], "prethee is he comming home it seemes he hath": [0, 65535], "is he comming home it seemes he hath great": [0, 65535], "he comming home it seemes he hath great care": [0, 65535], "comming home it seemes he hath great care to": [0, 65535], "home it seemes he hath great care to please": [0, 65535], "it seemes he hath great care to please his": [0, 65535], "seemes he hath great care to please his wife": [0, 65535], "he hath great care to please his wife e": [0, 65535], "hath great care to please his wife e dro": [0, 65535], "great care to please his wife e dro why": [0, 65535], "care to please his wife e dro why mistresse": [0, 65535], "to please his wife e dro why mistresse sure": [0, 65535], "please his wife e dro why mistresse sure my": [0, 65535], "his wife e dro why mistresse sure my master": [0, 65535], "wife e dro why mistresse sure my master is": [0, 65535], "e dro why mistresse sure my master is horne": [0, 65535], "dro why mistresse sure my master is horne mad": [0, 65535], "why mistresse sure my master is horne mad adri": [0, 65535], "mistresse sure my master is horne mad adri horne": [0, 65535], "sure my master is horne mad adri horne mad": [0, 65535], "my master is horne mad adri horne mad thou": [0, 65535], "master is horne mad adri horne mad thou villaine": [0, 65535], "is horne mad adri horne mad thou villaine e": [0, 65535], "horne mad adri horne mad thou villaine e dro": [0, 65535], "mad adri horne mad thou villaine e dro i": [0, 65535], "adri horne mad thou villaine e dro i meane": [0, 65535], "horne mad thou villaine e dro i meane not": [0, 65535], "mad thou villaine e dro i meane not cuckold": [0, 65535], "thou villaine e dro i meane not cuckold mad": [0, 65535], "villaine e dro i meane not cuckold mad but": [0, 65535], "e dro i meane not cuckold mad but sure": [0, 65535], "dro i meane not cuckold mad but sure he": [0, 65535], "i meane not cuckold mad but sure he is": [0, 65535], "meane not cuckold mad but sure he is starke": [0, 65535], "not cuckold mad but sure he is starke mad": [0, 65535], "cuckold mad but sure he is starke mad when": [0, 65535], "mad but sure he is starke mad when i": [0, 65535], "but sure he is starke mad when i desir'd": [0, 65535], "sure he is starke mad when i desir'd him": [0, 65535], "he is starke mad when i desir'd him to": [0, 65535], "is starke mad when i desir'd him to come": [0, 65535], "starke mad when i desir'd him to come home": [0, 65535], "mad when i desir'd him to come home to": [0, 65535], "when i desir'd him to come home to dinner": [0, 65535], "i desir'd him to come home to dinner he": [0, 65535], "desir'd him to come home to dinner he ask'd": [0, 65535], "him to come home to dinner he ask'd me": [0, 65535], "to come home to dinner he ask'd me for": [0, 65535], "come home to dinner he ask'd me for a": [0, 65535], "home to dinner he ask'd me for a hundred": [0, 65535], "to dinner he ask'd me for a hundred markes": [0, 65535], "dinner he ask'd me for a hundred markes in": [0, 65535], "he ask'd me for a hundred markes in gold": [0, 65535], "ask'd me for a hundred markes in gold 'tis": [0, 65535], "me for a hundred markes in gold 'tis dinner": [0, 65535], "for a hundred markes in gold 'tis dinner time": [0, 65535], "a hundred markes in gold 'tis dinner time quoth": [0, 65535], "hundred markes in gold 'tis dinner time quoth i": [0, 65535], "markes in gold 'tis dinner time quoth i my": [0, 65535], "in gold 'tis dinner time quoth i my gold": [0, 65535], "gold 'tis dinner time quoth i my gold quoth": [0, 65535], "'tis dinner time quoth i my gold quoth he": [0, 65535], "dinner time quoth i my gold quoth he your": [0, 65535], "time quoth i my gold quoth he your meat": [0, 65535], "quoth i my gold quoth he your meat doth": [0, 65535], "i my gold quoth he your meat doth burne": [0, 65535], "my gold quoth he your meat doth burne quoth": [0, 65535], "gold quoth he your meat doth burne quoth i": [0, 65535], "quoth he your meat doth burne quoth i my": [0, 65535], "he your meat doth burne quoth i my gold": [0, 65535], "your meat doth burne quoth i my gold quoth": [0, 65535], "meat doth burne quoth i my gold quoth he": [0, 65535], "doth burne quoth i my gold quoth he will": [0, 65535], "burne quoth i my gold quoth he will you": [0, 65535], "quoth i my gold quoth he will you come": [0, 65535], "i my gold quoth he will you come quoth": [0, 65535], "my gold quoth he will you come quoth i": [0, 65535], "gold quoth he will you come quoth i my": [0, 65535], "quoth he will you come quoth i my gold": [0, 65535], "he will you come quoth i my gold quoth": [0, 65535], "will you come quoth i my gold quoth he": [0, 65535], "you come quoth i my gold quoth he where": [0, 65535], "come quoth i my gold quoth he where is": [0, 65535], "quoth i my gold quoth he where is the": [0, 65535], "i my gold quoth he where is the thousand": [0, 65535], "my gold quoth he where is the thousand markes": [0, 65535], "gold quoth he where is the thousand markes i": [0, 65535], "quoth he where is the thousand markes i gaue": [0, 65535], "he where is the thousand markes i gaue thee": [0, 65535], "where is the thousand markes i gaue thee villaine": [0, 65535], "is the thousand markes i gaue thee villaine the": [0, 65535], "the thousand markes i gaue thee villaine the pigge": [0, 65535], "thousand markes i gaue thee villaine the pigge quoth": [0, 65535], "markes i gaue thee villaine the pigge quoth i": [0, 65535], "i gaue thee villaine the pigge quoth i is": [0, 65535], "gaue thee villaine the pigge quoth i is burn'd": [0, 65535], "thee villaine the pigge quoth i is burn'd my": [0, 65535], "villaine the pigge quoth i is burn'd my gold": [0, 65535], "the pigge quoth i is burn'd my gold quoth": [0, 65535], "pigge quoth i is burn'd my gold quoth he": [0, 65535], "quoth i is burn'd my gold quoth he my": [0, 65535], "i is burn'd my gold quoth he my mistresse": [0, 65535], "is burn'd my gold quoth he my mistresse sir": [0, 65535], "burn'd my gold quoth he my mistresse sir quoth": [0, 65535], "my gold quoth he my mistresse sir quoth i": [0, 65535], "gold quoth he my mistresse sir quoth i hang": [0, 65535], "quoth he my mistresse sir quoth i hang vp": [0, 65535], "he my mistresse sir quoth i hang vp thy": [0, 65535], "my mistresse sir quoth i hang vp thy mistresse": [0, 65535], "mistresse sir quoth i hang vp thy mistresse i": [0, 65535], "sir quoth i hang vp thy mistresse i know": [0, 65535], "quoth i hang vp thy mistresse i know not": [0, 65535], "i hang vp thy mistresse i know not thy": [0, 65535], "hang vp thy mistresse i know not thy mistresse": [0, 65535], "vp thy mistresse i know not thy mistresse out": [0, 65535], "thy mistresse i know not thy mistresse out on": [0, 65535], "mistresse i know not thy mistresse out on thy": [0, 65535], "i know not thy mistresse out on thy mistresse": [0, 65535], "know not thy mistresse out on thy mistresse luci": [0, 65535], "not thy mistresse out on thy mistresse luci quoth": [0, 65535], "thy mistresse out on thy mistresse luci quoth who": [0, 65535], "mistresse out on thy mistresse luci quoth who e": [0, 65535], "out on thy mistresse luci quoth who e dr": [0, 65535], "on thy mistresse luci quoth who e dr quoth": [0, 65535], "thy mistresse luci quoth who e dr quoth my": [0, 65535], "mistresse luci quoth who e dr quoth my master": [0, 65535], "luci quoth who e dr quoth my master i": [0, 65535], "quoth who e dr quoth my master i know": [0, 65535], "who e dr quoth my master i know quoth": [0, 65535], "e dr quoth my master i know quoth he": [0, 65535], "dr quoth my master i know quoth he no": [0, 65535], "quoth my master i know quoth he no house": [0, 65535], "my master i know quoth he no house no": [0, 65535], "master i know quoth he no house no wife": [0, 65535], "i know quoth he no house no wife no": [0, 65535], "know quoth he no house no wife no mistresse": [0, 65535], "quoth he no house no wife no mistresse so": [0, 65535], "he no house no wife no mistresse so that": [0, 65535], "no house no wife no mistresse so that my": [0, 65535], "house no wife no mistresse so that my arrant": [0, 65535], "no wife no mistresse so that my arrant due": [0, 65535], "wife no mistresse so that my arrant due vnto": [0, 65535], "no mistresse so that my arrant due vnto my": [0, 65535], "mistresse so that my arrant due vnto my tongue": [0, 65535], "so that my arrant due vnto my tongue i": [0, 65535], "that my arrant due vnto my tongue i thanke": [0, 65535], "my arrant due vnto my tongue i thanke him": [0, 65535], "arrant due vnto my tongue i thanke him i": [0, 65535], "due vnto my tongue i thanke him i bare": [0, 65535], "vnto my tongue i thanke him i bare home": [0, 65535], "my tongue i thanke him i bare home vpon": [0, 65535], "tongue i thanke him i bare home vpon my": [0, 65535], "i thanke him i bare home vpon my shoulders": [0, 65535], "thanke him i bare home vpon my shoulders for": [0, 65535], "him i bare home vpon my shoulders for in": [0, 65535], "i bare home vpon my shoulders for in conclusion": [0, 65535], "bare home vpon my shoulders for in conclusion he": [0, 65535], "home vpon my shoulders for in conclusion he did": [0, 65535], "vpon my shoulders for in conclusion he did beat": [0, 65535], "my shoulders for in conclusion he did beat me": [0, 65535], "shoulders for in conclusion he did beat me there": [0, 65535], "for in conclusion he did beat me there adri": [0, 65535], "in conclusion he did beat me there adri go": [0, 65535], "conclusion he did beat me there adri go back": [0, 65535], "he did beat me there adri go back againe": [0, 65535], "did beat me there adri go back againe thou": [0, 65535], "beat me there adri go back againe thou slaue": [0, 65535], "me there adri go back againe thou slaue fetch": [0, 65535], "there adri go back againe thou slaue fetch him": [0, 65535], "adri go back againe thou slaue fetch him home": [0, 65535], "go back againe thou slaue fetch him home dro": [0, 65535], "back againe thou slaue fetch him home dro goe": [0, 65535], "againe thou slaue fetch him home dro goe backe": [0, 65535], "thou slaue fetch him home dro goe backe againe": [0, 65535], "slaue fetch him home dro goe backe againe and": [0, 65535], "fetch him home dro goe backe againe and be": [0, 65535], "him home dro goe backe againe and be new": [0, 65535], "home dro goe backe againe and be new beaten": [0, 65535], "dro goe backe againe and be new beaten home": [0, 65535], "goe backe againe and be new beaten home for": [0, 65535], "backe againe and be new beaten home for gods": [0, 65535], "againe and be new beaten home for gods sake": [0, 65535], "and be new beaten home for gods sake send": [0, 65535], "be new beaten home for gods sake send some": [0, 65535], "new beaten home for gods sake send some other": [0, 65535], "beaten home for gods sake send some other messenger": [0, 65535], "home for gods sake send some other messenger adri": [0, 65535], "for gods sake send some other messenger adri backe": [0, 65535], "gods sake send some other messenger adri backe slaue": [0, 65535], "sake send some other messenger adri backe slaue or": [0, 65535], "send some other messenger adri backe slaue or i": [0, 65535], "some other messenger adri backe slaue or i will": [0, 65535], "other messenger adri backe slaue or i will breake": [0, 65535], "messenger adri backe slaue or i will breake thy": [0, 65535], "adri backe slaue or i will breake thy pate": [0, 65535], "backe slaue or i will breake thy pate a": [0, 65535], "slaue or i will breake thy pate a crosse": [0, 65535], "or i will breake thy pate a crosse dro": [0, 65535], "i will breake thy pate a crosse dro and": [0, 65535], "will breake thy pate a crosse dro and he": [0, 65535], "breake thy pate a crosse dro and he will": [0, 65535], "thy pate a crosse dro and he will blesse": [0, 65535], "pate a crosse dro and he will blesse the": [0, 65535], "a crosse dro and he will blesse the crosse": [0, 65535], "crosse dro and he will blesse the crosse with": [0, 65535], "dro and he will blesse the crosse with other": [0, 65535], "and he will blesse the crosse with other beating": [0, 65535], "he will blesse the crosse with other beating betweene": [0, 65535], "will blesse the crosse with other beating betweene you": [0, 65535], "blesse the crosse with other beating betweene you i": [0, 65535], "the crosse with other beating betweene you i shall": [0, 65535], "crosse with other beating betweene you i shall haue": [0, 65535], "with other beating betweene you i shall haue a": [0, 65535], "other beating betweene you i shall haue a holy": [0, 65535], "beating betweene you i shall haue a holy head": [0, 65535], "betweene you i shall haue a holy head adri": [0, 65535], "you i shall haue a holy head adri hence": [0, 65535], "i shall haue a holy head adri hence prating": [0, 65535], "shall haue a holy head adri hence prating pesant": [0, 65535], "haue a holy head adri hence prating pesant fetch": [0, 65535], "a holy head adri hence prating pesant fetch thy": [0, 65535], "holy head adri hence prating pesant fetch thy master": [0, 65535], "head adri hence prating pesant fetch thy master home": [0, 65535], "adri hence prating pesant fetch thy master home dro": [0, 65535], "hence prating pesant fetch thy master home dro am": [0, 65535], "prating pesant fetch thy master home dro am i": [0, 65535], "pesant fetch thy master home dro am i so": [0, 65535], "fetch thy master home dro am i so round": [0, 65535], "thy master home dro am i so round with": [0, 65535], "master home dro am i so round with you": [0, 65535], "home dro am i so round with you as": [0, 65535], "dro am i so round with you as you": [0, 65535], "am i so round with you as you with": [0, 65535], "i so round with you as you with me": [0, 65535], "so round with you as you with me that": [0, 65535], "round with you as you with me that like": [0, 65535], "with you as you with me that like a": [0, 65535], "you as you with me that like a foot": [0, 65535], "as you with me that like a foot ball": [0, 65535], "you with me that like a foot ball you": [0, 65535], "with me that like a foot ball you doe": [0, 65535], "me that like a foot ball you doe spurne": [0, 65535], "that like a foot ball you doe spurne me": [0, 65535], "like a foot ball you doe spurne me thus": [0, 65535], "a foot ball you doe spurne me thus you": [0, 65535], "foot ball you doe spurne me thus you spurne": [0, 65535], "ball you doe spurne me thus you spurne me": [0, 65535], "you doe spurne me thus you spurne me hence": [0, 65535], "doe spurne me thus you spurne me hence and": [0, 65535], "spurne me thus you spurne me hence and he": [0, 65535], "me thus you spurne me hence and he will": [0, 65535], "thus you spurne me hence and he will spurne": [0, 65535], "you spurne me hence and he will spurne me": [0, 65535], "spurne me hence and he will spurne me hither": [0, 65535], "me hence and he will spurne me hither if": [0, 65535], "hence and he will spurne me hither if i": [0, 65535], "and he will spurne me hither if i last": [0, 65535], "he will spurne me hither if i last in": [0, 65535], "will spurne me hither if i last in this": [0, 65535], "spurne me hither if i last in this seruice": [0, 65535], "me hither if i last in this seruice you": [0, 65535], "hither if i last in this seruice you must": [0, 65535], "if i last in this seruice you must case": [0, 65535], "i last in this seruice you must case me": [0, 65535], "last in this seruice you must case me in": [0, 65535], "in this seruice you must case me in leather": [0, 65535], "this seruice you must case me in leather luci": [0, 65535], "seruice you must case me in leather luci fie": [0, 65535], "you must case me in leather luci fie how": [0, 65535], "must case me in leather luci fie how impatience": [0, 65535], "case me in leather luci fie how impatience lowreth": [0, 65535], "me in leather luci fie how impatience lowreth in": [0, 65535], "in leather luci fie how impatience lowreth in your": [0, 65535], "leather luci fie how impatience lowreth in your face": [0, 65535], "luci fie how impatience lowreth in your face adri": [0, 65535], "fie how impatience lowreth in your face adri his": [0, 65535], "how impatience lowreth in your face adri his company": [0, 65535], "impatience lowreth in your face adri his company must": [0, 65535], "lowreth in your face adri his company must do": [0, 65535], "in your face adri his company must do his": [0, 65535], "your face adri his company must do his minions": [0, 65535], "face adri his company must do his minions grace": [0, 65535], "adri his company must do his minions grace whil'st": [0, 65535], "his company must do his minions grace whil'st i": [0, 65535], "company must do his minions grace whil'st i at": [0, 65535], "must do his minions grace whil'st i at home": [0, 65535], "do his minions grace whil'st i at home starue": [0, 65535], "his minions grace whil'st i at home starue for": [0, 65535], "minions grace whil'st i at home starue for a": [0, 65535], "grace whil'st i at home starue for a merrie": [0, 65535], "whil'st i at home starue for a merrie looke": [0, 65535], "i at home starue for a merrie looke hath": [0, 65535], "at home starue for a merrie looke hath homelie": [0, 65535], "home starue for a merrie looke hath homelie age": [0, 65535], "starue for a merrie looke hath homelie age th'": [0, 65535], "for a merrie looke hath homelie age th' alluring": [0, 65535], "a merrie looke hath homelie age th' alluring beauty": [0, 65535], "merrie looke hath homelie age th' alluring beauty tooke": [0, 65535], "looke hath homelie age th' alluring beauty tooke from": [0, 65535], "hath homelie age th' alluring beauty tooke from my": [0, 65535], "homelie age th' alluring beauty tooke from my poore": [0, 65535], "age th' alluring beauty tooke from my poore cheeke": [0, 65535], "th' alluring beauty tooke from my poore cheeke then": [0, 65535], "alluring beauty tooke from my poore cheeke then he": [0, 65535], "beauty tooke from my poore cheeke then he hath": [0, 65535], "tooke from my poore cheeke then he hath wasted": [0, 65535], "from my poore cheeke then he hath wasted it": [0, 65535], "my poore cheeke then he hath wasted it are": [0, 65535], "poore cheeke then he hath wasted it are my": [0, 65535], "cheeke then he hath wasted it are my discourses": [0, 65535], "then he hath wasted it are my discourses dull": [0, 65535], "he hath wasted it are my discourses dull barren": [0, 65535], "hath wasted it are my discourses dull barren my": [0, 65535], "wasted it are my discourses dull barren my wit": [0, 65535], "it are my discourses dull barren my wit if": [0, 65535], "are my discourses dull barren my wit if voluble": [0, 65535], "my discourses dull barren my wit if voluble and": [0, 65535], "discourses dull barren my wit if voluble and sharpe": [0, 65535], "dull barren my wit if voluble and sharpe discourse": [0, 65535], "barren my wit if voluble and sharpe discourse be": [0, 65535], "my wit if voluble and sharpe discourse be mar'd": [0, 65535], "wit if voluble and sharpe discourse be mar'd vnkindnesse": [0, 65535], "if voluble and sharpe discourse be mar'd vnkindnesse blunts": [0, 65535], "voluble and sharpe discourse be mar'd vnkindnesse blunts it": [0, 65535], "and sharpe discourse be mar'd vnkindnesse blunts it more": [0, 65535], "sharpe discourse be mar'd vnkindnesse blunts it more then": [0, 65535], "discourse be mar'd vnkindnesse blunts it more then marble": [0, 65535], "be mar'd vnkindnesse blunts it more then marble hard": [0, 65535], "mar'd vnkindnesse blunts it more then marble hard doe": [0, 65535], "vnkindnesse blunts it more then marble hard doe their": [0, 65535], "blunts it more then marble hard doe their gay": [0, 65535], "it more then marble hard doe their gay vestments": [0, 65535], "more then marble hard doe their gay vestments his": [0, 65535], "then marble hard doe their gay vestments his affections": [0, 65535], "marble hard doe their gay vestments his affections baite": [0, 65535], "hard doe their gay vestments his affections baite that's": [0, 65535], "doe their gay vestments his affections baite that's not": [0, 65535], "their gay vestments his affections baite that's not my": [0, 65535], "gay vestments his affections baite that's not my fault": [0, 65535], "vestments his affections baite that's not my fault hee's": [0, 65535], "his affections baite that's not my fault hee's master": [0, 65535], "affections baite that's not my fault hee's master of": [0, 65535], "baite that's not my fault hee's master of my": [0, 65535], "that's not my fault hee's master of my state": [0, 65535], "not my fault hee's master of my state what": [0, 65535], "my fault hee's master of my state what ruines": [0, 65535], "fault hee's master of my state what ruines are": [0, 65535], "hee's master of my state what ruines are in": [0, 65535], "master of my state what ruines are in me": [0, 65535], "of my state what ruines are in me that": [0, 65535], "my state what ruines are in me that can": [0, 65535], "state what ruines are in me that can be": [0, 65535], "what ruines are in me that can be found": [0, 65535], "ruines are in me that can be found by": [0, 65535], "are in me that can be found by him": [0, 65535], "in me that can be found by him not": [0, 65535], "me that can be found by him not ruin'd": [0, 65535], "that can be found by him not ruin'd then": [0, 65535], "can be found by him not ruin'd then is": [0, 65535], "be found by him not ruin'd then is he": [0, 65535], "found by him not ruin'd then is he the": [0, 65535], "by him not ruin'd then is he the ground": [0, 65535], "him not ruin'd then is he the ground of": [0, 65535], "not ruin'd then is he the ground of my": [0, 65535], "ruin'd then is he the ground of my defeatures": [0, 65535], "then is he the ground of my defeatures my": [0, 65535], "is he the ground of my defeatures my decayed": [0, 65535], "he the ground of my defeatures my decayed faire": [0, 65535], "the ground of my defeatures my decayed faire a": [0, 65535], "ground of my defeatures my decayed faire a sunnie": [0, 65535], "of my defeatures my decayed faire a sunnie looke": [0, 65535], "my defeatures my decayed faire a sunnie looke of": [0, 65535], "defeatures my decayed faire a sunnie looke of his": [0, 65535], "my decayed faire a sunnie looke of his would": [0, 65535], "decayed faire a sunnie looke of his would soone": [0, 65535], "faire a sunnie looke of his would soone repaire": [0, 65535], "a sunnie looke of his would soone repaire but": [0, 65535], "sunnie looke of his would soone repaire but too": [0, 65535], "looke of his would soone repaire but too vnruly": [0, 65535], "of his would soone repaire but too vnruly deere": [0, 65535], "his would soone repaire but too vnruly deere he": [0, 65535], "would soone repaire but too vnruly deere he breakes": [0, 65535], "soone repaire but too vnruly deere he breakes the": [0, 65535], "repaire but too vnruly deere he breakes the pale": [0, 65535], "but too vnruly deere he breakes the pale and": [0, 65535], "too vnruly deere he breakes the pale and feedes": [0, 65535], "vnruly deere he breakes the pale and feedes from": [0, 65535], "deere he breakes the pale and feedes from home": [0, 65535], "he breakes the pale and feedes from home poore": [0, 65535], "breakes the pale and feedes from home poore i": [0, 65535], "the pale and feedes from home poore i am": [0, 65535], "pale and feedes from home poore i am but": [0, 65535], "and feedes from home poore i am but his": [0, 65535], "feedes from home poore i am but his stale": [0, 65535], "from home poore i am but his stale luci": [0, 65535], "home poore i am but his stale luci selfe": [0, 65535], "poore i am but his stale luci selfe harming": [0, 65535], "i am but his stale luci selfe harming iealousie": [0, 65535], "am but his stale luci selfe harming iealousie fie": [0, 65535], "but his stale luci selfe harming iealousie fie beat": [0, 65535], "his stale luci selfe harming iealousie fie beat it": [0, 65535], "stale luci selfe harming iealousie fie beat it hence": [0, 65535], "luci selfe harming iealousie fie beat it hence ad": [0, 65535], "selfe harming iealousie fie beat it hence ad vnfeeling": [0, 65535], "harming iealousie fie beat it hence ad vnfeeling fools": [0, 65535], "iealousie fie beat it hence ad vnfeeling fools can": [0, 65535], "fie beat it hence ad vnfeeling fools can with": [0, 65535], "beat it hence ad vnfeeling fools can with such": [0, 65535], "it hence ad vnfeeling fools can with such wrongs": [0, 65535], "hence ad vnfeeling fools can with such wrongs dispence": [0, 65535], "ad vnfeeling fools can with such wrongs dispence i": [0, 65535], "vnfeeling fools can with such wrongs dispence i know": [0, 65535], "fools can with such wrongs dispence i know his": [0, 65535], "can with such wrongs dispence i know his eye": [0, 65535], "with such wrongs dispence i know his eye doth": [0, 65535], "such wrongs dispence i know his eye doth homage": [0, 65535], "wrongs dispence i know his eye doth homage other": [0, 65535], "dispence i know his eye doth homage other where": [0, 65535], "i know his eye doth homage other where or": [0, 65535], "know his eye doth homage other where or else": [0, 65535], "his eye doth homage other where or else what": [0, 65535], "eye doth homage other where or else what lets": [0, 65535], "doth homage other where or else what lets it": [0, 65535], "homage other where or else what lets it but": [0, 65535], "other where or else what lets it but he": [0, 65535], "where or else what lets it but he would": [0, 65535], "or else what lets it but he would be": [0, 65535], "else what lets it but he would be here": [0, 65535], "what lets it but he would be here sister": [0, 65535], "lets it but he would be here sister you": [0, 65535], "it but he would be here sister you know": [0, 65535], "but he would be here sister you know he": [0, 65535], "he would be here sister you know he promis'd": [0, 65535], "would be here sister you know he promis'd me": [0, 65535], "be here sister you know he promis'd me a": [0, 65535], "here sister you know he promis'd me a chaine": [0, 65535], "sister you know he promis'd me a chaine would": [0, 65535], "you know he promis'd me a chaine would that": [0, 65535], "know he promis'd me a chaine would that alone": [0, 65535], "he promis'd me a chaine would that alone a": [0, 65535], "promis'd me a chaine would that alone a loue": [0, 65535], "me a chaine would that alone a loue he": [0, 65535], "a chaine would that alone a loue he would": [0, 65535], "chaine would that alone a loue he would detaine": [0, 65535], "would that alone a loue he would detaine so": [0, 65535], "that alone a loue he would detaine so he": [0, 65535], "alone a loue he would detaine so he would": [0, 65535], "a loue he would detaine so he would keepe": [0, 65535], "loue he would detaine so he would keepe faire": [0, 65535], "he would detaine so he would keepe faire quarter": [0, 65535], "would detaine so he would keepe faire quarter with": [0, 65535], "detaine so he would keepe faire quarter with his": [0, 65535], "so he would keepe faire quarter with his bed": [0, 65535], "he would keepe faire quarter with his bed i": [0, 65535], "would keepe faire quarter with his bed i see": [0, 65535], "keepe faire quarter with his bed i see the": [0, 65535], "faire quarter with his bed i see the iewell": [0, 65535], "quarter with his bed i see the iewell best": [0, 65535], "with his bed i see the iewell best enamaled": [0, 65535], "his bed i see the iewell best enamaled will": [0, 65535], "bed i see the iewell best enamaled will loose": [0, 65535], "i see the iewell best enamaled will loose his": [0, 65535], "see the iewell best enamaled will loose his beautie": [0, 65535], "the iewell best enamaled will loose his beautie yet": [0, 65535], "iewell best enamaled will loose his beautie yet the": [0, 65535], "best enamaled will loose his beautie yet the gold": [0, 65535], "enamaled will loose his beautie yet the gold bides": [0, 65535], "will loose his beautie yet the gold bides still": [0, 65535], "loose his beautie yet the gold bides still that": [0, 65535], "his beautie yet the gold bides still that others": [0, 65535], "beautie yet the gold bides still that others touch": [0, 65535], "yet the gold bides still that others touch and": [0, 65535], "the gold bides still that others touch and often": [0, 65535], "gold bides still that others touch and often touching": [0, 65535], "bides still that others touch and often touching will": [0, 65535], "still that others touch and often touching will where": [0, 65535], "that others touch and often touching will where gold": [0, 65535], "others touch and often touching will where gold and": [0, 65535], "touch and often touching will where gold and no": [0, 65535], "and often touching will where gold and no man": [0, 65535], "often touching will where gold and no man that": [0, 65535], "touching will where gold and no man that hath": [0, 65535], "will where gold and no man that hath a": [0, 65535], "where gold and no man that hath a name": [0, 65535], "gold and no man that hath a name by": [0, 65535], "and no man that hath a name by falshood": [0, 65535], "no man that hath a name by falshood and": [0, 65535], "man that hath a name by falshood and corruption": [0, 65535], "that hath a name by falshood and corruption doth": [0, 65535], "hath a name by falshood and corruption doth it": [0, 65535], "a name by falshood and corruption doth it shame": [0, 65535], "name by falshood and corruption doth it shame since": [0, 65535], "by falshood and corruption doth it shame since that": [0, 65535], "falshood and corruption doth it shame since that my": [0, 65535], "and corruption doth it shame since that my beautie": [0, 65535], "corruption doth it shame since that my beautie cannot": [0, 65535], "doth it shame since that my beautie cannot please": [0, 65535], "it shame since that my beautie cannot please his": [0, 65535], "shame since that my beautie cannot please his eie": [0, 65535], "since that my beautie cannot please his eie ile": [0, 65535], "that my beautie cannot please his eie ile weepe": [0, 65535], "my beautie cannot please his eie ile weepe what's": [0, 65535], "beautie cannot please his eie ile weepe what's left": [0, 65535], "cannot please his eie ile weepe what's left away": [0, 65535], "please his eie ile weepe what's left away and": [0, 65535], "his eie ile weepe what's left away and weeping": [0, 65535], "eie ile weepe what's left away and weeping die": [0, 65535], "ile weepe what's left away and weeping die luci": [0, 65535], "weepe what's left away and weeping die luci how": [0, 65535], "what's left away and weeping die luci how manie": [0, 65535], "left away and weeping die luci how manie fond": [0, 65535], "away and weeping die luci how manie fond fooles": [0, 65535], "and weeping die luci how manie fond fooles serue": [0, 65535], "weeping die luci how manie fond fooles serue mad": [0, 65535], "die luci how manie fond fooles serue mad ielousie": [0, 65535], "luci how manie fond fooles serue mad ielousie exit": [0, 65535], "how manie fond fooles serue mad ielousie exit enter": [0, 65535], "manie fond fooles serue mad ielousie exit enter antipholis": [0, 65535], "fond fooles serue mad ielousie exit enter antipholis errotis": [0, 65535], "fooles serue mad ielousie exit enter antipholis errotis ant": [0, 65535], "serue mad ielousie exit enter antipholis errotis ant the": [0, 65535], "mad ielousie exit enter antipholis errotis ant the gold": [0, 65535], "ielousie exit enter antipholis errotis ant the gold i": [0, 65535], "exit enter antipholis errotis ant the gold i gaue": [0, 65535], "enter antipholis errotis ant the gold i gaue to": [0, 65535], "antipholis errotis ant the gold i gaue to dromio": [0, 65535], "errotis ant the gold i gaue to dromio is": [0, 65535], "ant the gold i gaue to dromio is laid": [0, 65535], "the gold i gaue to dromio is laid vp": [0, 65535], "gold i gaue to dromio is laid vp safe": [0, 65535], "i gaue to dromio is laid vp safe at": [0, 65535], "gaue to dromio is laid vp safe at the": [0, 65535], "to dromio is laid vp safe at the centaur": [0, 65535], "dromio is laid vp safe at the centaur and": [0, 65535], "is laid vp safe at the centaur and the": [0, 65535], "laid vp safe at the centaur and the heedfull": [0, 65535], "vp safe at the centaur and the heedfull slaue": [0, 65535], "safe at the centaur and the heedfull slaue is": [0, 65535], "at the centaur and the heedfull slaue is wandred": [0, 65535], "the centaur and the heedfull slaue is wandred forth": [0, 65535], "centaur and the heedfull slaue is wandred forth in": [0, 65535], "and the heedfull slaue is wandred forth in care": [0, 65535], "the heedfull slaue is wandred forth in care to": [0, 65535], "heedfull slaue is wandred forth in care to seeke": [0, 65535], "slaue is wandred forth in care to seeke me": [0, 65535], "is wandred forth in care to seeke me out": [0, 65535], "wandred forth in care to seeke me out by": [0, 65535], "forth in care to seeke me out by computation": [0, 65535], "in care to seeke me out by computation and": [0, 65535], "care to seeke me out by computation and mine": [0, 65535], "to seeke me out by computation and mine hosts": [0, 65535], "seeke me out by computation and mine hosts report": [0, 65535], "me out by computation and mine hosts report i": [0, 65535], "out by computation and mine hosts report i could": [0, 65535], "by computation and mine hosts report i could not": [0, 65535], "computation and mine hosts report i could not speake": [0, 65535], "and mine hosts report i could not speake with": [0, 65535], "mine hosts report i could not speake with dromio": [0, 65535], "hosts report i could not speake with dromio since": [0, 65535], "report i could not speake with dromio since at": [0, 65535], "i could not speake with dromio since at first": [0, 65535], "could not speake with dromio since at first i": [0, 65535], "not speake with dromio since at first i sent": [0, 65535], "speake with dromio since at first i sent him": [0, 65535], "with dromio since at first i sent him from": [0, 65535], "dromio since at first i sent him from the": [0, 65535], "since at first i sent him from the mart": [0, 65535], "at first i sent him from the mart see": [0, 65535], "first i sent him from the mart see here": [0, 65535], "i sent him from the mart see here he": [0, 65535], "sent him from the mart see here he comes": [0, 65535], "him from the mart see here he comes enter": [0, 65535], "from the mart see here he comes enter dromio": [0, 65535], "the mart see here he comes enter dromio siracusia": [0, 65535], "mart see here he comes enter dromio siracusia how": [0, 65535], "see here he comes enter dromio siracusia how now": [0, 65535], "here he comes enter dromio siracusia how now sir": [0, 65535], "he comes enter dromio siracusia how now sir is": [0, 65535], "comes enter dromio siracusia how now sir is your": [0, 65535], "enter dromio siracusia how now sir is your merrie": [0, 65535], "dromio siracusia how now sir is your merrie humor": [0, 65535], "siracusia how now sir is your merrie humor alter'd": [0, 65535], "how now sir is your merrie humor alter'd as": [0, 65535], "now sir is your merrie humor alter'd as you": [0, 65535], "sir is your merrie humor alter'd as you loue": [0, 65535], "is your merrie humor alter'd as you loue stroakes": [0, 65535], "your merrie humor alter'd as you loue stroakes so": [0, 65535], "merrie humor alter'd as you loue stroakes so iest": [0, 65535], "humor alter'd as you loue stroakes so iest with": [0, 65535], "alter'd as you loue stroakes so iest with me": [0, 65535], "as you loue stroakes so iest with me againe": [0, 65535], "you loue stroakes so iest with me againe you": [0, 65535], "loue stroakes so iest with me againe you know": [0, 65535], "stroakes so iest with me againe you know no": [0, 65535], "so iest with me againe you know no centaur": [0, 65535], "iest with me againe you know no centaur you": [0, 65535], "with me againe you know no centaur you receiu'd": [0, 65535], "me againe you know no centaur you receiu'd no": [0, 65535], "againe you know no centaur you receiu'd no gold": [0, 65535], "you know no centaur you receiu'd no gold your": [0, 65535], "know no centaur you receiu'd no gold your mistresse": [0, 65535], "no centaur you receiu'd no gold your mistresse sent": [0, 65535], "centaur you receiu'd no gold your mistresse sent to": [0, 65535], "you receiu'd no gold your mistresse sent to haue": [0, 65535], "receiu'd no gold your mistresse sent to haue me": [0, 65535], "no gold your mistresse sent to haue me home": [0, 65535], "gold your mistresse sent to haue me home to": [0, 65535], "your mistresse sent to haue me home to dinner": [0, 65535], "mistresse sent to haue me home to dinner my": [0, 65535], "sent to haue me home to dinner my house": [0, 65535], "to haue me home to dinner my house was": [0, 65535], "haue me home to dinner my house was at": [0, 65535], "me home to dinner my house was at the": [0, 65535], "home to dinner my house was at the ph\u0153nix": [0, 65535], "to dinner my house was at the ph\u0153nix wast": [0, 65535], "dinner my house was at the ph\u0153nix wast thou": [0, 65535], "my house was at the ph\u0153nix wast thou mad": [0, 65535], "house was at the ph\u0153nix wast thou mad that": [0, 65535], "was at the ph\u0153nix wast thou mad that thus": [0, 65535], "at the ph\u0153nix wast thou mad that thus so": [0, 65535], "the ph\u0153nix wast thou mad that thus so madlie": [0, 65535], "ph\u0153nix wast thou mad that thus so madlie thou": [0, 65535], "wast thou mad that thus so madlie thou did": [0, 65535], "thou mad that thus so madlie thou did didst": [0, 65535], "mad that thus so madlie thou did didst answere": [0, 65535], "that thus so madlie thou did didst answere me": [0, 65535], "thus so madlie thou did didst answere me s": [0, 65535], "so madlie thou did didst answere me s dro": [0, 65535], "madlie thou did didst answere me s dro what": [0, 65535], "thou did didst answere me s dro what answer": [0, 65535], "did didst answere me s dro what answer sir": [0, 65535], "didst answere me s dro what answer sir when": [0, 65535], "answere me s dro what answer sir when spake": [0, 65535], "me s dro what answer sir when spake i": [0, 65535], "s dro what answer sir when spake i such": [0, 65535], "dro what answer sir when spake i such a": [0, 65535], "what answer sir when spake i such a word": [0, 65535], "answer sir when spake i such a word e": [0, 65535], "sir when spake i such a word e ant": [0, 65535], "when spake i such a word e ant euen": [0, 65535], "spake i such a word e ant euen now": [0, 65535], "i such a word e ant euen now euen": [0, 65535], "such a word e ant euen now euen here": [0, 65535], "a word e ant euen now euen here not": [0, 65535], "word e ant euen now euen here not halfe": [0, 65535], "e ant euen now euen here not halfe an": [0, 65535], "ant euen now euen here not halfe an howre": [0, 65535], "euen now euen here not halfe an howre since": [0, 65535], "now euen here not halfe an howre since s": [0, 65535], "euen here not halfe an howre since s dro": [0, 65535], "here not halfe an howre since s dro i": [0, 65535], "not halfe an howre since s dro i did": [0, 65535], "halfe an howre since s dro i did not": [0, 65535], "an howre since s dro i did not see": [0, 65535], "howre since s dro i did not see you": [0, 65535], "since s dro i did not see you since": [0, 65535], "s dro i did not see you since you": [0, 65535], "dro i did not see you since you sent": [0, 65535], "i did not see you since you sent me": [0, 65535], "did not see you since you sent me hence": [0, 65535], "not see you since you sent me hence home": [0, 65535], "see you since you sent me hence home to": [0, 65535], "you since you sent me hence home to the": [0, 65535], "since you sent me hence home to the centaur": [0, 65535], "you sent me hence home to the centaur with": [0, 65535], "sent me hence home to the centaur with the": [0, 65535], "me hence home to the centaur with the gold": [0, 65535], "hence home to the centaur with the gold you": [0, 65535], "home to the centaur with the gold you gaue": [0, 65535], "to the centaur with the gold you gaue me": [0, 65535], "the centaur with the gold you gaue me ant": [0, 65535], "centaur with the gold you gaue me ant villaine": [0, 65535], "with the gold you gaue me ant villaine thou": [0, 65535], "the gold you gaue me ant villaine thou didst": [0, 65535], "gold you gaue me ant villaine thou didst denie": [0, 65535], "you gaue me ant villaine thou didst denie the": [0, 65535], "gaue me ant villaine thou didst denie the golds": [0, 65535], "me ant villaine thou didst denie the golds receit": [0, 65535], "ant villaine thou didst denie the golds receit and": [0, 65535], "villaine thou didst denie the golds receit and toldst": [0, 65535], "thou didst denie the golds receit and toldst me": [0, 65535], "didst denie the golds receit and toldst me of": [0, 65535], "denie the golds receit and toldst me of a": [0, 65535], "the golds receit and toldst me of a mistresse": [0, 65535], "golds receit and toldst me of a mistresse and": [0, 65535], "receit and toldst me of a mistresse and a": [0, 65535], "and toldst me of a mistresse and a dinner": [0, 65535], "toldst me of a mistresse and a dinner for": [0, 65535], "me of a mistresse and a dinner for which": [0, 65535], "of a mistresse and a dinner for which i": [0, 65535], "a mistresse and a dinner for which i hope": [0, 65535], "mistresse and a dinner for which i hope thou": [0, 65535], "and a dinner for which i hope thou feltst": [0, 65535], "a dinner for which i hope thou feltst i": [0, 65535], "dinner for which i hope thou feltst i was": [0, 65535], "for which i hope thou feltst i was displeas'd": [0, 65535], "which i hope thou feltst i was displeas'd s": [0, 65535], "i hope thou feltst i was displeas'd s dro": [0, 65535], "hope thou feltst i was displeas'd s dro i": [0, 65535], "thou feltst i was displeas'd s dro i am": [0, 65535], "feltst i was displeas'd s dro i am glad": [0, 65535], "i was displeas'd s dro i am glad to": [0, 65535], "was displeas'd s dro i am glad to see": [0, 65535], "displeas'd s dro i am glad to see you": [0, 65535], "s dro i am glad to see you in": [0, 65535], "dro i am glad to see you in this": [0, 65535], "i am glad to see you in this merrie": [0, 65535], "am glad to see you in this merrie vaine": [0, 65535], "glad to see you in this merrie vaine what": [0, 65535], "to see you in this merrie vaine what meanes": [0, 65535], "see you in this merrie vaine what meanes this": [0, 65535], "you in this merrie vaine what meanes this iest": [0, 65535], "in this merrie vaine what meanes this iest i": [0, 65535], "this merrie vaine what meanes this iest i pray": [0, 65535], "merrie vaine what meanes this iest i pray you": [0, 65535], "vaine what meanes this iest i pray you master": [0, 65535], "what meanes this iest i pray you master tell": [0, 65535], "meanes this iest i pray you master tell me": [0, 65535], "this iest i pray you master tell me ant": [0, 65535], "iest i pray you master tell me ant yea": [0, 65535], "i pray you master tell me ant yea dost": [0, 65535], "pray you master tell me ant yea dost thou": [0, 65535], "you master tell me ant yea dost thou ieere": [0, 65535], "master tell me ant yea dost thou ieere flowt": [0, 65535], "tell me ant yea dost thou ieere flowt me": [0, 65535], "me ant yea dost thou ieere flowt me in": [0, 65535], "ant yea dost thou ieere flowt me in the": [0, 65535], "yea dost thou ieere flowt me in the teeth": [0, 65535], "dost thou ieere flowt me in the teeth thinkst": [0, 65535], "thou ieere flowt me in the teeth thinkst thou": [0, 65535], "ieere flowt me in the teeth thinkst thou i": [0, 65535], "flowt me in the teeth thinkst thou i iest": [0, 65535], "me in the teeth thinkst thou i iest hold": [0, 65535], "in the teeth thinkst thou i iest hold take": [0, 65535], "the teeth thinkst thou i iest hold take thou": [0, 65535], "teeth thinkst thou i iest hold take thou that": [0, 65535], "thinkst thou i iest hold take thou that that": [0, 65535], "thou i iest hold take thou that that beats": [0, 65535], "i iest hold take thou that that beats dro": [0, 65535], "iest hold take thou that that beats dro s": [0, 65535], "hold take thou that that beats dro s dr": [0, 65535], "take thou that that beats dro s dr hold": [0, 65535], "thou that that beats dro s dr hold sir": [0, 65535], "that that beats dro s dr hold sir for": [0, 65535], "that beats dro s dr hold sir for gods": [0, 65535], "beats dro s dr hold sir for gods sake": [0, 65535], "dro s dr hold sir for gods sake now": [0, 65535], "s dr hold sir for gods sake now your": [0, 65535], "dr hold sir for gods sake now your iest": [0, 65535], "hold sir for gods sake now your iest is": [0, 65535], "sir for gods sake now your iest is earnest": [0, 65535], "for gods sake now your iest is earnest vpon": [0, 65535], "gods sake now your iest is earnest vpon what": [0, 65535], "sake now your iest is earnest vpon what bargaine": [0, 65535], "now your iest is earnest vpon what bargaine do": [0, 65535], "your iest is earnest vpon what bargaine do you": [0, 65535], "iest is earnest vpon what bargaine do you giue": [0, 65535], "is earnest vpon what bargaine do you giue it": [0, 65535], "earnest vpon what bargaine do you giue it me": [0, 65535], "vpon what bargaine do you giue it me antiph": [0, 65535], "what bargaine do you giue it me antiph because": [0, 65535], "bargaine do you giue it me antiph because that": [0, 65535], "do you giue it me antiph because that i": [0, 65535], "you giue it me antiph because that i familiarlie": [0, 65535], "giue it me antiph because that i familiarlie sometimes": [0, 65535], "it me antiph because that i familiarlie sometimes doe": [0, 65535], "me antiph because that i familiarlie sometimes doe vse": [0, 65535], "antiph because that i familiarlie sometimes doe vse you": [0, 65535], "because that i familiarlie sometimes doe vse you for": [0, 65535], "that i familiarlie sometimes doe vse you for my": [0, 65535], "i familiarlie sometimes doe vse you for my foole": [0, 65535], "familiarlie sometimes doe vse you for my foole and": [0, 65535], "sometimes doe vse you for my foole and chat": [0, 65535], "doe vse you for my foole and chat with": [0, 65535], "vse you for my foole and chat with you": [0, 65535], "you for my foole and chat with you your": [0, 65535], "for my foole and chat with you your sawcinesse": [0, 65535], "my foole and chat with you your sawcinesse will": [0, 65535], "foole and chat with you your sawcinesse will iest": [0, 65535], "and chat with you your sawcinesse will iest vpon": [0, 65535], "chat with you your sawcinesse will iest vpon my": [0, 65535], "with you your sawcinesse will iest vpon my loue": [0, 65535], "you your sawcinesse will iest vpon my loue and": [0, 65535], "your sawcinesse will iest vpon my loue and make": [0, 65535], "sawcinesse will iest vpon my loue and make a": [0, 65535], "will iest vpon my loue and make a common": [0, 65535], "iest vpon my loue and make a common of": [0, 65535], "vpon my loue and make a common of my": [0, 65535], "my loue and make a common of my serious": [0, 65535], "loue and make a common of my serious howres": [0, 65535], "and make a common of my serious howres when": [0, 65535], "make a common of my serious howres when the": [0, 65535], "a common of my serious howres when the sunne": [0, 65535], "common of my serious howres when the sunne shines": [0, 65535], "of my serious howres when the sunne shines let": [0, 65535], "my serious howres when the sunne shines let foolish": [0, 65535], "serious howres when the sunne shines let foolish gnats": [0, 65535], "howres when the sunne shines let foolish gnats make": [0, 65535], "when the sunne shines let foolish gnats make sport": [0, 65535], "the sunne shines let foolish gnats make sport but": [0, 65535], "sunne shines let foolish gnats make sport but creepe": [0, 65535], "shines let foolish gnats make sport but creepe in": [0, 65535], "let foolish gnats make sport but creepe in crannies": [0, 65535], "foolish gnats make sport but creepe in crannies when": [0, 65535], "gnats make sport but creepe in crannies when he": [0, 65535], "make sport but creepe in crannies when he hides": [0, 65535], "sport but creepe in crannies when he hides his": [0, 65535], "but creepe in crannies when he hides his beames": [0, 65535], "creepe in crannies when he hides his beames if": [0, 65535], "in crannies when he hides his beames if you": [0, 65535], "crannies when he hides his beames if you will": [0, 65535], "when he hides his beames if you will iest": [0, 65535], "he hides his beames if you will iest with": [0, 65535], "hides his beames if you will iest with me": [0, 65535], "his beames if you will iest with me know": [0, 65535], "beames if you will iest with me know my": [0, 65535], "if you will iest with me know my aspect": [0, 65535], "you will iest with me know my aspect and": [0, 65535], "will iest with me know my aspect and fashion": [0, 65535], "iest with me know my aspect and fashion your": [0, 65535], "with me know my aspect and fashion your demeanor": [0, 65535], "me know my aspect and fashion your demeanor to": [0, 65535], "know my aspect and fashion your demeanor to my": [0, 65535], "my aspect and fashion your demeanor to my lookes": [0, 65535], "aspect and fashion your demeanor to my lookes or": [0, 65535], "and fashion your demeanor to my lookes or i": [0, 65535], "fashion your demeanor to my lookes or i will": [0, 65535], "your demeanor to my lookes or i will beat": [0, 65535], "demeanor to my lookes or i will beat this": [0, 65535], "to my lookes or i will beat this method": [0, 65535], "my lookes or i will beat this method in": [0, 65535], "lookes or i will beat this method in your": [0, 65535], "or i will beat this method in your sconce": [0, 65535], "i will beat this method in your sconce s": [0, 65535], "will beat this method in your sconce s dro": [0, 65535], "beat this method in your sconce s dro sconce": [0, 65535], "this method in your sconce s dro sconce call": [0, 65535], "method in your sconce s dro sconce call you": [0, 65535], "in your sconce s dro sconce call you it": [0, 65535], "your sconce s dro sconce call you it so": [0, 65535], "sconce s dro sconce call you it so you": [0, 65535], "s dro sconce call you it so you would": [0, 65535], "dro sconce call you it so you would leaue": [0, 65535], "sconce call you it so you would leaue battering": [0, 65535], "call you it so you would leaue battering i": [0, 65535], "you it so you would leaue battering i had": [0, 65535], "it so you would leaue battering i had rather": [0, 65535], "so you would leaue battering i had rather haue": [0, 65535], "you would leaue battering i had rather haue it": [0, 65535], "would leaue battering i had rather haue it a": [0, 65535], "leaue battering i had rather haue it a head": [0, 65535], "battering i had rather haue it a head and": [0, 65535], "i had rather haue it a head and you": [0, 65535], "had rather haue it a head and you vse": [0, 65535], "rather haue it a head and you vse these": [0, 65535], "haue it a head and you vse these blows": [0, 65535], "it a head and you vse these blows long": [0, 65535], "a head and you vse these blows long i": [0, 65535], "head and you vse these blows long i must": [0, 65535], "and you vse these blows long i must get": [0, 65535], "you vse these blows long i must get a": [0, 65535], "vse these blows long i must get a sconce": [0, 65535], "these blows long i must get a sconce for": [0, 65535], "blows long i must get a sconce for my": [0, 65535], "long i must get a sconce for my head": [0, 65535], "i must get a sconce for my head and": [0, 65535], "must get a sconce for my head and insconce": [0, 65535], "get a sconce for my head and insconce it": [0, 65535], "a sconce for my head and insconce it to": [0, 65535], "sconce for my head and insconce it to or": [0, 65535], "for my head and insconce it to or else": [0, 65535], "my head and insconce it to or else i": [0, 65535], "head and insconce it to or else i shall": [0, 65535], "and insconce it to or else i shall seek": [0, 65535], "insconce it to or else i shall seek my": [0, 65535], "it to or else i shall seek my wit": [0, 65535], "to or else i shall seek my wit in": [0, 65535], "or else i shall seek my wit in my": [0, 65535], "else i shall seek my wit in my shoulders": [0, 65535], "i shall seek my wit in my shoulders but": [0, 65535], "shall seek my wit in my shoulders but i": [0, 65535], "seek my wit in my shoulders but i pray": [0, 65535], "my wit in my shoulders but i pray sir": [0, 65535], "wit in my shoulders but i pray sir why": [0, 65535], "in my shoulders but i pray sir why am": [0, 65535], "my shoulders but i pray sir why am i": [0, 65535], "shoulders but i pray sir why am i beaten": [0, 65535], "but i pray sir why am i beaten ant": [0, 65535], "i pray sir why am i beaten ant dost": [0, 65535], "pray sir why am i beaten ant dost thou": [0, 65535], "sir why am i beaten ant dost thou not": [0, 65535], "why am i beaten ant dost thou not know": [0, 65535], "am i beaten ant dost thou not know s": [0, 65535], "i beaten ant dost thou not know s dro": [0, 65535], "beaten ant dost thou not know s dro nothing": [0, 65535], "ant dost thou not know s dro nothing sir": [0, 65535], "dost thou not know s dro nothing sir but": [0, 65535], "thou not know s dro nothing sir but that": [0, 65535], "not know s dro nothing sir but that i": [0, 65535], "know s dro nothing sir but that i am": [0, 65535], "s dro nothing sir but that i am beaten": [0, 65535], "dro nothing sir but that i am beaten ant": [0, 65535], "nothing sir but that i am beaten ant shall": [0, 65535], "sir but that i am beaten ant shall i": [0, 65535], "but that i am beaten ant shall i tell": [0, 65535], "that i am beaten ant shall i tell you": [0, 65535], "i am beaten ant shall i tell you why": [0, 65535], "am beaten ant shall i tell you why s": [0, 65535], "beaten ant shall i tell you why s dro": [0, 65535], "ant shall i tell you why s dro i": [0, 65535], "shall i tell you why s dro i sir": [0, 65535], "i tell you why s dro i sir and": [0, 65535], "tell you why s dro i sir and wherefore": [0, 65535], "you why s dro i sir and wherefore for": [0, 65535], "why s dro i sir and wherefore for they": [0, 65535], "s dro i sir and wherefore for they say": [0, 65535], "dro i sir and wherefore for they say euery": [0, 65535], "i sir and wherefore for they say euery why": [0, 65535], "sir and wherefore for they say euery why hath": [0, 65535], "and wherefore for they say euery why hath a": [0, 65535], "wherefore for they say euery why hath a wherefore": [0, 65535], "for they say euery why hath a wherefore ant": [0, 65535], "they say euery why hath a wherefore ant why": [0, 65535], "say euery why hath a wherefore ant why first": [0, 65535], "euery why hath a wherefore ant why first for": [0, 65535], "why hath a wherefore ant why first for flowting": [0, 65535], "hath a wherefore ant why first for flowting me": [0, 65535], "a wherefore ant why first for flowting me and": [0, 65535], "wherefore ant why first for flowting me and then": [0, 65535], "ant why first for flowting me and then wherefore": [0, 65535], "why first for flowting me and then wherefore for": [0, 65535], "first for flowting me and then wherefore for vrging": [0, 65535], "for flowting me and then wherefore for vrging it": [0, 65535], "flowting me and then wherefore for vrging it the": [0, 65535], "me and then wherefore for vrging it the second": [0, 65535], "and then wherefore for vrging it the second time": [0, 65535], "then wherefore for vrging it the second time to": [0, 65535], "wherefore for vrging it the second time to me": [0, 65535], "for vrging it the second time to me s": [0, 65535], "vrging it the second time to me s dro": [0, 65535], "it the second time to me s dro was": [0, 65535], "the second time to me s dro was there": [0, 65535], "second time to me s dro was there euer": [0, 65535], "time to me s dro was there euer anie": [0, 65535], "to me s dro was there euer anie man": [0, 65535], "me s dro was there euer anie man thus": [0, 65535], "s dro was there euer anie man thus beaten": [0, 65535], "dro was there euer anie man thus beaten out": [0, 65535], "was there euer anie man thus beaten out of": [0, 65535], "there euer anie man thus beaten out of season": [0, 65535], "euer anie man thus beaten out of season when": [0, 65535], "anie man thus beaten out of season when in": [0, 65535], "man thus beaten out of season when in the": [0, 65535], "thus beaten out of season when in the why": [0, 65535], "beaten out of season when in the why and": [0, 65535], "out of season when in the why and the": [0, 65535], "of season when in the why and the wherefore": [0, 65535], "season when in the why and the wherefore is": [0, 65535], "when in the why and the wherefore is neither": [0, 65535], "in the why and the wherefore is neither rime": [0, 65535], "the why and the wherefore is neither rime nor": [0, 65535], "why and the wherefore is neither rime nor reason": [0, 65535], "and the wherefore is neither rime nor reason well": [0, 65535], "the wherefore is neither rime nor reason well sir": [0, 65535], "wherefore is neither rime nor reason well sir i": [0, 65535], "is neither rime nor reason well sir i thanke": [0, 65535], "neither rime nor reason well sir i thanke you": [0, 65535], "rime nor reason well sir i thanke you ant": [0, 65535], "nor reason well sir i thanke you ant thanke": [0, 65535], "reason well sir i thanke you ant thanke me": [0, 65535], "well sir i thanke you ant thanke me sir": [0, 65535], "sir i thanke you ant thanke me sir for": [0, 65535], "i thanke you ant thanke me sir for what": [0, 65535], "thanke you ant thanke me sir for what s": [0, 65535], "you ant thanke me sir for what s dro": [0, 65535], "ant thanke me sir for what s dro marry": [0, 65535], "thanke me sir for what s dro marry sir": [0, 65535], "me sir for what s dro marry sir for": [0, 65535], "sir for what s dro marry sir for this": [0, 65535], "for what s dro marry sir for this something": [0, 65535], "what s dro marry sir for this something that": [0, 65535], "s dro marry sir for this something that you": [0, 65535], "dro marry sir for this something that you gaue": [0, 65535], "marry sir for this something that you gaue me": [0, 65535], "sir for this something that you gaue me for": [0, 65535], "for this something that you gaue me for nothing": [0, 65535], "this something that you gaue me for nothing ant": [0, 65535], "something that you gaue me for nothing ant ile": [0, 65535], "that you gaue me for nothing ant ile make": [0, 65535], "you gaue me for nothing ant ile make you": [0, 65535], "gaue me for nothing ant ile make you amends": [0, 65535], "me for nothing ant ile make you amends next": [0, 65535], "for nothing ant ile make you amends next to": [0, 65535], "nothing ant ile make you amends next to giue": [0, 65535], "ant ile make you amends next to giue you": [0, 65535], "ile make you amends next to giue you nothing": [0, 65535], "make you amends next to giue you nothing for": [0, 65535], "you amends next to giue you nothing for something": [0, 65535], "amends next to giue you nothing for something but": [0, 65535], "next to giue you nothing for something but say": [0, 65535], "to giue you nothing for something but say sir": [0, 65535], "giue you nothing for something but say sir is": [0, 65535], "you nothing for something but say sir is it": [0, 65535], "nothing for something but say sir is it dinner": [0, 65535], "for something but say sir is it dinner time": [0, 65535], "something but say sir is it dinner time s": [0, 65535], "but say sir is it dinner time s dro": [0, 65535], "say sir is it dinner time s dro no": [0, 65535], "sir is it dinner time s dro no sir": [0, 65535], "is it dinner time s dro no sir i": [0, 65535], "it dinner time s dro no sir i thinke": [0, 65535], "dinner time s dro no sir i thinke the": [0, 65535], "time s dro no sir i thinke the meat": [0, 65535], "s dro no sir i thinke the meat wants": [0, 65535], "dro no sir i thinke the meat wants that": [0, 65535], "no sir i thinke the meat wants that i": [0, 65535], "sir i thinke the meat wants that i haue": [0, 65535], "i thinke the meat wants that i haue ant": [0, 65535], "thinke the meat wants that i haue ant in": [0, 65535], "the meat wants that i haue ant in good": [0, 65535], "meat wants that i haue ant in good time": [0, 65535], "wants that i haue ant in good time sir": [0, 65535], "that i haue ant in good time sir what's": [0, 65535], "i haue ant in good time sir what's that": [0, 65535], "haue ant in good time sir what's that s": [0, 65535], "ant in good time sir what's that s dro": [0, 65535], "in good time sir what's that s dro basting": [0, 65535], "good time sir what's that s dro basting ant": [0, 65535], "time sir what's that s dro basting ant well": [0, 65535], "sir what's that s dro basting ant well sir": [0, 65535], "what's that s dro basting ant well sir then": [0, 65535], "that s dro basting ant well sir then 'twill": [0, 65535], "s dro basting ant well sir then 'twill be": [0, 65535], "dro basting ant well sir then 'twill be drie": [0, 65535], "basting ant well sir then 'twill be drie s": [0, 65535], "ant well sir then 'twill be drie s dro": [0, 65535], "well sir then 'twill be drie s dro if": [0, 65535], "sir then 'twill be drie s dro if it": [0, 65535], "then 'twill be drie s dro if it be": [0, 65535], "'twill be drie s dro if it be sir": [0, 65535], "be drie s dro if it be sir i": [0, 65535], "drie s dro if it be sir i pray": [0, 65535], "s dro if it be sir i pray you": [0, 65535], "dro if it be sir i pray you eat": [0, 65535], "if it be sir i pray you eat none": [0, 65535], "it be sir i pray you eat none of": [0, 65535], "be sir i pray you eat none of it": [0, 65535], "sir i pray you eat none of it ant": [0, 65535], "i pray you eat none of it ant your": [0, 65535], "pray you eat none of it ant your reason": [0, 65535], "you eat none of it ant your reason s": [0, 65535], "eat none of it ant your reason s dro": [0, 65535], "none of it ant your reason s dro lest": [0, 65535], "of it ant your reason s dro lest it": [0, 65535], "it ant your reason s dro lest it make": [0, 65535], "ant your reason s dro lest it make you": [0, 65535], "your reason s dro lest it make you chollericke": [0, 65535], "reason s dro lest it make you chollericke and": [0, 65535], "s dro lest it make you chollericke and purchase": [0, 65535], "dro lest it make you chollericke and purchase me": [0, 65535], "lest it make you chollericke and purchase me another": [0, 65535], "it make you chollericke and purchase me another drie": [0, 65535], "make you chollericke and purchase me another drie basting": [0, 65535], "you chollericke and purchase me another drie basting ant": [0, 65535], "chollericke and purchase me another drie basting ant well": [0, 65535], "and purchase me another drie basting ant well sir": [0, 65535], "purchase me another drie basting ant well sir learne": [0, 65535], "me another drie basting ant well sir learne to": [0, 65535], "another drie basting ant well sir learne to iest": [0, 65535], "drie basting ant well sir learne to iest in": [0, 65535], "basting ant well sir learne to iest in good": [0, 65535], "ant well sir learne to iest in good time": [0, 65535], "well sir learne to iest in good time there's": [0, 65535], "sir learne to iest in good time there's a": [0, 65535], "learne to iest in good time there's a time": [0, 65535], "to iest in good time there's a time for": [0, 65535], "iest in good time there's a time for all": [0, 65535], "in good time there's a time for all things": [0, 65535], "good time there's a time for all things s": [0, 65535], "time there's a time for all things s dro": [0, 65535], "there's a time for all things s dro i": [0, 65535], "a time for all things s dro i durst": [0, 65535], "time for all things s dro i durst haue": [0, 65535], "for all things s dro i durst haue denied": [0, 65535], "all things s dro i durst haue denied that": [0, 65535], "things s dro i durst haue denied that before": [0, 65535], "s dro i durst haue denied that before you": [0, 65535], "dro i durst haue denied that before you were": [0, 65535], "i durst haue denied that before you were so": [0, 65535], "durst haue denied that before you were so chollericke": [0, 65535], "haue denied that before you were so chollericke anti": [0, 65535], "denied that before you were so chollericke anti by": [0, 65535], "that before you were so chollericke anti by what": [0, 65535], "before you were so chollericke anti by what rule": [0, 65535], "you were so chollericke anti by what rule sir": [0, 65535], "were so chollericke anti by what rule sir s": [0, 65535], "so chollericke anti by what rule sir s dro": [0, 65535], "chollericke anti by what rule sir s dro marry": [0, 65535], "anti by what rule sir s dro marry sir": [0, 65535], "by what rule sir s dro marry sir by": [0, 65535], "what rule sir s dro marry sir by a": [0, 65535], "rule sir s dro marry sir by a rule": [0, 65535], "sir s dro marry sir by a rule as": [0, 65535], "s dro marry sir by a rule as plaine": [0, 65535], "dro marry sir by a rule as plaine as": [0, 65535], "marry sir by a rule as plaine as the": [0, 65535], "sir by a rule as plaine as the plaine": [0, 65535], "by a rule as plaine as the plaine bald": [0, 65535], "a rule as plaine as the plaine bald pate": [0, 65535], "rule as plaine as the plaine bald pate of": [0, 65535], "as plaine as the plaine bald pate of father": [0, 65535], "plaine as the plaine bald pate of father time": [0, 65535], "as the plaine bald pate of father time himselfe": [0, 65535], "the plaine bald pate of father time himselfe ant": [0, 65535], "plaine bald pate of father time himselfe ant let's": [0, 65535], "bald pate of father time himselfe ant let's heare": [0, 65535], "pate of father time himselfe ant let's heare it": [0, 65535], "of father time himselfe ant let's heare it s": [0, 65535], "father time himselfe ant let's heare it s dro": [0, 65535], "time himselfe ant let's heare it s dro there's": [0, 65535], "himselfe ant let's heare it s dro there's no": [0, 65535], "ant let's heare it s dro there's no time": [0, 65535], "let's heare it s dro there's no time for": [0, 65535], "heare it s dro there's no time for a": [0, 65535], "it s dro there's no time for a man": [0, 65535], "s dro there's no time for a man to": [0, 65535], "dro there's no time for a man to recouer": [0, 65535], "there's no time for a man to recouer his": [0, 65535], "no time for a man to recouer his haire": [0, 65535], "time for a man to recouer his haire that": [0, 65535], "for a man to recouer his haire that growes": [0, 65535], "a man to recouer his haire that growes bald": [0, 65535], "man to recouer his haire that growes bald by": [0, 65535], "to recouer his haire that growes bald by nature": [0, 65535], "recouer his haire that growes bald by nature ant": [0, 65535], "his haire that growes bald by nature ant may": [0, 65535], "haire that growes bald by nature ant may he": [0, 65535], "that growes bald by nature ant may he not": [0, 65535], "growes bald by nature ant may he not doe": [0, 65535], "bald by nature ant may he not doe it": [0, 65535], "by nature ant may he not doe it by": [0, 65535], "nature ant may he not doe it by fine": [0, 65535], "ant may he not doe it by fine and": [0, 65535], "may he not doe it by fine and recouerie": [0, 65535], "he not doe it by fine and recouerie s": [0, 65535], "not doe it by fine and recouerie s dro": [0, 65535], "doe it by fine and recouerie s dro yes": [0, 65535], "it by fine and recouerie s dro yes to": [0, 65535], "by fine and recouerie s dro yes to pay": [0, 65535], "fine and recouerie s dro yes to pay a": [0, 65535], "and recouerie s dro yes to pay a fine": [0, 65535], "recouerie s dro yes to pay a fine for": [0, 65535], "s dro yes to pay a fine for a": [0, 65535], "dro yes to pay a fine for a perewig": [0, 65535], "yes to pay a fine for a perewig and": [0, 65535], "to pay a fine for a perewig and recouer": [0, 65535], "pay a fine for a perewig and recouer the": [0, 65535], "a fine for a perewig and recouer the lost": [0, 65535], "fine for a perewig and recouer the lost haire": [0, 65535], "for a perewig and recouer the lost haire of": [0, 65535], "a perewig and recouer the lost haire of another": [0, 65535], "perewig and recouer the lost haire of another man": [0, 65535], "and recouer the lost haire of another man ant": [0, 65535], "recouer the lost haire of another man ant why": [0, 65535], "the lost haire of another man ant why is": [0, 65535], "lost haire of another man ant why is time": [0, 65535], "haire of another man ant why is time such": [0, 65535], "of another man ant why is time such a": [0, 65535], "another man ant why is time such a niggard": [0, 65535], "man ant why is time such a niggard of": [0, 65535], "ant why is time such a niggard of haire": [0, 65535], "why is time such a niggard of haire being": [0, 65535], "is time such a niggard of haire being as": [0, 65535], "time such a niggard of haire being as it": [0, 65535], "such a niggard of haire being as it is": [0, 65535], "a niggard of haire being as it is so": [0, 65535], "niggard of haire being as it is so plentifull": [0, 65535], "of haire being as it is so plentifull an": [0, 65535], "haire being as it is so plentifull an excrement": [0, 65535], "being as it is so plentifull an excrement s": [0, 65535], "as it is so plentifull an excrement s dro": [0, 65535], "it is so plentifull an excrement s dro because": [0, 65535], "is so plentifull an excrement s dro because it": [0, 65535], "so plentifull an excrement s dro because it is": [0, 65535], "plentifull an excrement s dro because it is a": [0, 65535], "an excrement s dro because it is a blessing": [0, 65535], "excrement s dro because it is a blessing that": [0, 65535], "s dro because it is a blessing that hee": [0, 65535], "dro because it is a blessing that hee bestowes": [0, 65535], "because it is a blessing that hee bestowes on": [0, 65535], "it is a blessing that hee bestowes on beasts": [0, 65535], "is a blessing that hee bestowes on beasts and": [0, 65535], "a blessing that hee bestowes on beasts and what": [0, 65535], "blessing that hee bestowes on beasts and what he": [0, 65535], "that hee bestowes on beasts and what he hath": [0, 65535], "hee bestowes on beasts and what he hath scanted": [0, 65535], "bestowes on beasts and what he hath scanted them": [0, 65535], "on beasts and what he hath scanted them in": [0, 65535], "beasts and what he hath scanted them in haire": [0, 65535], "and what he hath scanted them in haire hee": [0, 65535], "what he hath scanted them in haire hee hath": [0, 65535], "he hath scanted them in haire hee hath giuen": [0, 65535], "hath scanted them in haire hee hath giuen them": [0, 65535], "scanted them in haire hee hath giuen them in": [0, 65535], "them in haire hee hath giuen them in wit": [0, 65535], "in haire hee hath giuen them in wit ant": [0, 65535], "haire hee hath giuen them in wit ant why": [0, 65535], "hee hath giuen them in wit ant why but": [0, 65535], "hath giuen them in wit ant why but theres": [0, 65535], "giuen them in wit ant why but theres manie": [0, 65535], "them in wit ant why but theres manie a": [0, 65535], "in wit ant why but theres manie a man": [0, 65535], "wit ant why but theres manie a man hath": [0, 65535], "ant why but theres manie a man hath more": [0, 65535], "why but theres manie a man hath more haire": [0, 65535], "but theres manie a man hath more haire then": [0, 65535], "theres manie a man hath more haire then wit": [0, 65535], "manie a man hath more haire then wit s": [0, 65535], "a man hath more haire then wit s dro": [0, 65535], "man hath more haire then wit s dro not": [0, 65535], "hath more haire then wit s dro not a": [0, 65535], "more haire then wit s dro not a man": [0, 65535], "haire then wit s dro not a man of": [0, 65535], "then wit s dro not a man of those": [0, 65535], "wit s dro not a man of those but": [0, 65535], "s dro not a man of those but he": [0, 65535], "dro not a man of those but he hath": [0, 65535], "not a man of those but he hath the": [0, 65535], "a man of those but he hath the wit": [0, 65535], "man of those but he hath the wit to": [0, 65535], "of those but he hath the wit to lose": [0, 65535], "those but he hath the wit to lose his": [0, 65535], "but he hath the wit to lose his haire": [0, 65535], "he hath the wit to lose his haire ant": [0, 65535], "hath the wit to lose his haire ant why": [0, 65535], "the wit to lose his haire ant why thou": [0, 65535], "wit to lose his haire ant why thou didst": [0, 65535], "to lose his haire ant why thou didst conclude": [0, 65535], "lose his haire ant why thou didst conclude hairy": [0, 65535], "his haire ant why thou didst conclude hairy men": [0, 65535], "haire ant why thou didst conclude hairy men plain": [0, 65535], "ant why thou didst conclude hairy men plain dealers": [0, 65535], "why thou didst conclude hairy men plain dealers without": [0, 65535], "thou didst conclude hairy men plain dealers without wit": [0, 65535], "didst conclude hairy men plain dealers without wit s": [0, 65535], "conclude hairy men plain dealers without wit s dro": [0, 65535], "hairy men plain dealers without wit s dro the": [0, 65535], "men plain dealers without wit s dro the plainer": [0, 65535], "plain dealers without wit s dro the plainer dealer": [0, 65535], "dealers without wit s dro the plainer dealer the": [0, 65535], "without wit s dro the plainer dealer the sooner": [0, 65535], "wit s dro the plainer dealer the sooner lost": [0, 65535], "s dro the plainer dealer the sooner lost yet": [0, 65535], "dro the plainer dealer the sooner lost yet he": [0, 65535], "the plainer dealer the sooner lost yet he looseth": [0, 65535], "plainer dealer the sooner lost yet he looseth it": [0, 65535], "dealer the sooner lost yet he looseth it in": [0, 65535], "the sooner lost yet he looseth it in a": [0, 65535], "sooner lost yet he looseth it in a kinde": [0, 65535], "lost yet he looseth it in a kinde of": [0, 65535], "yet he looseth it in a kinde of iollitie": [0, 65535], "he looseth it in a kinde of iollitie an": [0, 65535], "looseth it in a kinde of iollitie an for": [0, 65535], "it in a kinde of iollitie an for what": [0, 65535], "in a kinde of iollitie an for what reason": [0, 65535], "a kinde of iollitie an for what reason s": [0, 65535], "kinde of iollitie an for what reason s dro": [0, 65535], "of iollitie an for what reason s dro for": [0, 65535], "iollitie an for what reason s dro for two": [0, 65535], "an for what reason s dro for two and": [0, 65535], "for what reason s dro for two and sound": [0, 65535], "what reason s dro for two and sound ones": [0, 65535], "reason s dro for two and sound ones to": [0, 65535], "s dro for two and sound ones to an": [0, 65535], "dro for two and sound ones to an nay": [0, 65535], "for two and sound ones to an nay not": [0, 65535], "two and sound ones to an nay not sound": [0, 65535], "and sound ones to an nay not sound i": [0, 65535], "sound ones to an nay not sound i pray": [0, 65535], "ones to an nay not sound i pray you": [0, 65535], "to an nay not sound i pray you s": [0, 65535], "an nay not sound i pray you s dro": [0, 65535], "nay not sound i pray you s dro sure": [0, 65535], "not sound i pray you s dro sure ones": [0, 65535], "sound i pray you s dro sure ones then": [0, 65535], "i pray you s dro sure ones then an": [0, 65535], "pray you s dro sure ones then an nay": [0, 65535], "you s dro sure ones then an nay not": [0, 65535], "s dro sure ones then an nay not sure": [0, 65535], "dro sure ones then an nay not sure in": [0, 65535], "sure ones then an nay not sure in a": [0, 65535], "ones then an nay not sure in a thing": [0, 65535], "then an nay not sure in a thing falsing": [0, 65535], "an nay not sure in a thing falsing s": [0, 65535], "nay not sure in a thing falsing s dro": [0, 65535], "not sure in a thing falsing s dro certaine": [0, 65535], "sure in a thing falsing s dro certaine ones": [0, 65535], "in a thing falsing s dro certaine ones then": [0, 65535], "a thing falsing s dro certaine ones then an": [0, 65535], "thing falsing s dro certaine ones then an name": [0, 65535], "falsing s dro certaine ones then an name them": [0, 65535], "s dro certaine ones then an name them s": [0, 65535], "dro certaine ones then an name them s dro": [0, 65535], "certaine ones then an name them s dro the": [0, 65535], "ones then an name them s dro the one": [0, 65535], "then an name them s dro the one to": [0, 65535], "an name them s dro the one to saue": [0, 65535], "name them s dro the one to saue the": [0, 65535], "them s dro the one to saue the money": [0, 65535], "s dro the one to saue the money that": [0, 65535], "dro the one to saue the money that he": [0, 65535], "the one to saue the money that he spends": [0, 65535], "one to saue the money that he spends in": [0, 65535], "to saue the money that he spends in trying": [0, 65535], "saue the money that he spends in trying the": [0, 65535], "the money that he spends in trying the other": [0, 65535], "money that he spends in trying the other that": [0, 65535], "that he spends in trying the other that at": [0, 65535], "he spends in trying the other that at dinner": [0, 65535], "spends in trying the other that at dinner they": [0, 65535], "in trying the other that at dinner they should": [0, 65535], "trying the other that at dinner they should not": [0, 65535], "the other that at dinner they should not drop": [0, 65535], "other that at dinner they should not drop in": [0, 65535], "that at dinner they should not drop in his": [0, 65535], "at dinner they should not drop in his porrage": [0, 65535], "dinner they should not drop in his porrage an": [0, 65535], "they should not drop in his porrage an you": [0, 65535], "should not drop in his porrage an you would": [0, 65535], "not drop in his porrage an you would all": [0, 65535], "drop in his porrage an you would all this": [0, 65535], "in his porrage an you would all this time": [0, 65535], "his porrage an you would all this time haue": [0, 65535], "porrage an you would all this time haue prou'd": [0, 65535], "an you would all this time haue prou'd there": [0, 65535], "you would all this time haue prou'd there is": [0, 65535], "would all this time haue prou'd there is no": [0, 65535], "all this time haue prou'd there is no time": [0, 65535], "this time haue prou'd there is no time for": [0, 65535], "time haue prou'd there is no time for all": [0, 65535], "haue prou'd there is no time for all things": [0, 65535], "prou'd there is no time for all things s": [0, 65535], "there is no time for all things s dro": [0, 65535], "is no time for all things s dro marry": [0, 65535], "no time for all things s dro marry and": [0, 65535], "time for all things s dro marry and did": [0, 65535], "for all things s dro marry and did sir": [0, 65535], "all things s dro marry and did sir namely": [0, 65535], "things s dro marry and did sir namely in": [0, 65535], "s dro marry and did sir namely in no": [0, 65535], "dro marry and did sir namely in no time": [0, 65535], "marry and did sir namely in no time to": [0, 65535], "and did sir namely in no time to recouer": [0, 65535], "did sir namely in no time to recouer haire": [0, 65535], "sir namely in no time to recouer haire lost": [0, 65535], "namely in no time to recouer haire lost by": [0, 65535], "in no time to recouer haire lost by nature": [0, 65535], "no time to recouer haire lost by nature an": [0, 65535], "time to recouer haire lost by nature an but": [0, 65535], "to recouer haire lost by nature an but your": [0, 65535], "recouer haire lost by nature an but your reason": [0, 65535], "haire lost by nature an but your reason was": [0, 65535], "lost by nature an but your reason was not": [0, 65535], "by nature an but your reason was not substantiall": [0, 65535], "nature an but your reason was not substantiall why": [0, 65535], "an but your reason was not substantiall why there": [0, 65535], "but your reason was not substantiall why there is": [0, 65535], "your reason was not substantiall why there is no": [0, 65535], "reason was not substantiall why there is no time": [0, 65535], "was not substantiall why there is no time to": [0, 65535], "not substantiall why there is no time to recouer": [0, 65535], "substantiall why there is no time to recouer s": [0, 65535], "why there is no time to recouer s dro": [0, 65535], "there is no time to recouer s dro thus": [0, 65535], "is no time to recouer s dro thus i": [0, 65535], "no time to recouer s dro thus i mend": [0, 65535], "time to recouer s dro thus i mend it": [0, 65535], "to recouer s dro thus i mend it time": [0, 65535], "recouer s dro thus i mend it time himselfe": [0, 65535], "s dro thus i mend it time himselfe is": [0, 65535], "dro thus i mend it time himselfe is bald": [0, 65535], "thus i mend it time himselfe is bald and": [0, 65535], "i mend it time himselfe is bald and therefore": [0, 65535], "mend it time himselfe is bald and therefore to": [0, 65535], "it time himselfe is bald and therefore to the": [0, 65535], "time himselfe is bald and therefore to the worlds": [0, 65535], "himselfe is bald and therefore to the worlds end": [0, 65535], "is bald and therefore to the worlds end will": [0, 65535], "bald and therefore to the worlds end will haue": [0, 65535], "and therefore to the worlds end will haue bald": [0, 65535], "therefore to the worlds end will haue bald followers": [0, 65535], "to the worlds end will haue bald followers an": [0, 65535], "the worlds end will haue bald followers an i": [0, 65535], "worlds end will haue bald followers an i knew": [0, 65535], "end will haue bald followers an i knew 'twould": [0, 65535], "will haue bald followers an i knew 'twould be": [0, 65535], "haue bald followers an i knew 'twould be a": [0, 65535], "bald followers an i knew 'twould be a bald": [0, 65535], "followers an i knew 'twould be a bald conclusion": [0, 65535], "an i knew 'twould be a bald conclusion but": [0, 65535], "i knew 'twould be a bald conclusion but soft": [0, 65535], "knew 'twould be a bald conclusion but soft who": [0, 65535], "'twould be a bald conclusion but soft who wafts": [0, 65535], "be a bald conclusion but soft who wafts vs": [0, 65535], "a bald conclusion but soft who wafts vs yonder": [0, 65535], "bald conclusion but soft who wafts vs yonder enter": [0, 65535], "conclusion but soft who wafts vs yonder enter adriana": [0, 65535], "but soft who wafts vs yonder enter adriana and": [0, 65535], "soft who wafts vs yonder enter adriana and luciana": [0, 65535], "who wafts vs yonder enter adriana and luciana adri": [0, 65535], "wafts vs yonder enter adriana and luciana adri i": [0, 65535], "vs yonder enter adriana and luciana adri i i": [0, 65535], "yonder enter adriana and luciana adri i i antipholus": [0, 65535], "enter adriana and luciana adri i i antipholus looke": [0, 65535], "adriana and luciana adri i i antipholus looke strange": [0, 65535], "and luciana adri i i antipholus looke strange and": [0, 65535], "luciana adri i i antipholus looke strange and frowne": [0, 65535], "adri i i antipholus looke strange and frowne some": [0, 65535], "i i antipholus looke strange and frowne some other": [0, 65535], "i antipholus looke strange and frowne some other mistresse": [0, 65535], "antipholus looke strange and frowne some other mistresse hath": [0, 65535], "looke strange and frowne some other mistresse hath thy": [0, 65535], "strange and frowne some other mistresse hath thy sweet": [0, 65535], "and frowne some other mistresse hath thy sweet aspects": [0, 65535], "frowne some other mistresse hath thy sweet aspects i": [0, 65535], "some other mistresse hath thy sweet aspects i am": [0, 65535], "other mistresse hath thy sweet aspects i am not": [0, 65535], "mistresse hath thy sweet aspects i am not adriana": [0, 65535], "hath thy sweet aspects i am not adriana nor": [0, 65535], "thy sweet aspects i am not adriana nor thy": [0, 65535], "sweet aspects i am not adriana nor thy wife": [0, 65535], "aspects i am not adriana nor thy wife the": [0, 65535], "i am not adriana nor thy wife the time": [0, 65535], "am not adriana nor thy wife the time was": [0, 65535], "not adriana nor thy wife the time was once": [0, 65535], "adriana nor thy wife the time was once when": [0, 65535], "nor thy wife the time was once when thou": [0, 65535], "thy wife the time was once when thou vn": [0, 65535], "wife the time was once when thou vn vrg'd": [0, 65535], "the time was once when thou vn vrg'd wouldst": [0, 65535], "time was once when thou vn vrg'd wouldst vow": [0, 65535], "was once when thou vn vrg'd wouldst vow that": [0, 65535], "once when thou vn vrg'd wouldst vow that neuer": [0, 65535], "when thou vn vrg'd wouldst vow that neuer words": [0, 65535], "thou vn vrg'd wouldst vow that neuer words were": [0, 65535], "vn vrg'd wouldst vow that neuer words were musicke": [0, 65535], "vrg'd wouldst vow that neuer words were musicke to": [0, 65535], "wouldst vow that neuer words were musicke to thine": [0, 65535], "vow that neuer words were musicke to thine eare": [0, 65535], "that neuer words were musicke to thine eare that": [0, 65535], "neuer words were musicke to thine eare that neuer": [0, 65535], "words were musicke to thine eare that neuer obiect": [0, 65535], "were musicke to thine eare that neuer obiect pleasing": [0, 65535], "musicke to thine eare that neuer obiect pleasing in": [0, 65535], "to thine eare that neuer obiect pleasing in thine": [0, 65535], "thine eare that neuer obiect pleasing in thine eye": [0, 65535], "eare that neuer obiect pleasing in thine eye that": [0, 65535], "that neuer obiect pleasing in thine eye that neuer": [0, 65535], "neuer obiect pleasing in thine eye that neuer touch": [0, 65535], "obiect pleasing in thine eye that neuer touch well": [0, 65535], "pleasing in thine eye that neuer touch well welcome": [0, 65535], "in thine eye that neuer touch well welcome to": [0, 65535], "thine eye that neuer touch well welcome to thy": [0, 65535], "eye that neuer touch well welcome to thy hand": [0, 65535], "that neuer touch well welcome to thy hand that": [0, 65535], "neuer touch well welcome to thy hand that neuer": [0, 65535], "touch well welcome to thy hand that neuer meat": [0, 65535], "well welcome to thy hand that neuer meat sweet": [0, 65535], "welcome to thy hand that neuer meat sweet sauour'd": [0, 65535], "to thy hand that neuer meat sweet sauour'd in": [0, 65535], "thy hand that neuer meat sweet sauour'd in thy": [0, 65535], "hand that neuer meat sweet sauour'd in thy taste": [0, 65535], "that neuer meat sweet sauour'd in thy taste vnlesse": [0, 65535], "neuer meat sweet sauour'd in thy taste vnlesse i": [0, 65535], "meat sweet sauour'd in thy taste vnlesse i spake": [0, 65535], "sweet sauour'd in thy taste vnlesse i spake or": [0, 65535], "sauour'd in thy taste vnlesse i spake or look'd": [0, 65535], "in thy taste vnlesse i spake or look'd or": [0, 65535], "thy taste vnlesse i spake or look'd or touch'd": [0, 65535], "taste vnlesse i spake or look'd or touch'd or": [0, 65535], "vnlesse i spake or look'd or touch'd or caru'd": [0, 65535], "i spake or look'd or touch'd or caru'd to": [0, 65535], "spake or look'd or touch'd or caru'd to thee": [0, 65535], "or look'd or touch'd or caru'd to thee how": [0, 65535], "look'd or touch'd or caru'd to thee how comes": [0, 65535], "or touch'd or caru'd to thee how comes it": [0, 65535], "touch'd or caru'd to thee how comes it now": [0, 65535], "or caru'd to thee how comes it now my": [0, 65535], "caru'd to thee how comes it now my husband": [0, 65535], "to thee how comes it now my husband oh": [0, 65535], "thee how comes it now my husband oh how": [0, 65535], "how comes it now my husband oh how comes": [0, 65535], "comes it now my husband oh how comes it": [0, 65535], "it now my husband oh how comes it that": [0, 65535], "now my husband oh how comes it that thou": [0, 65535], "my husband oh how comes it that thou art": [0, 65535], "husband oh how comes it that thou art then": [0, 65535], "oh how comes it that thou art then estranged": [0, 65535], "how comes it that thou art then estranged from": [0, 65535], "comes it that thou art then estranged from thy": [0, 65535], "it that thou art then estranged from thy selfe": [0, 65535], "that thou art then estranged from thy selfe thy": [0, 65535], "thou art then estranged from thy selfe thy selfe": [0, 65535], "art then estranged from thy selfe thy selfe i": [0, 65535], "then estranged from thy selfe thy selfe i call": [0, 65535], "estranged from thy selfe thy selfe i call it": [0, 65535], "from thy selfe thy selfe i call it being": [0, 65535], "thy selfe thy selfe i call it being strange": [0, 65535], "selfe thy selfe i call it being strange to": [0, 65535], "thy selfe i call it being strange to me": [0, 65535], "selfe i call it being strange to me that": [0, 65535], "i call it being strange to me that vndiuidable": [0, 65535], "call it being strange to me that vndiuidable incorporate": [0, 65535], "it being strange to me that vndiuidable incorporate am": [0, 65535], "being strange to me that vndiuidable incorporate am better": [0, 65535], "strange to me that vndiuidable incorporate am better then": [0, 65535], "to me that vndiuidable incorporate am better then thy": [0, 65535], "me that vndiuidable incorporate am better then thy deere": [0, 65535], "that vndiuidable incorporate am better then thy deere selfes": [0, 65535], "vndiuidable incorporate am better then thy deere selfes better": [0, 65535], "incorporate am better then thy deere selfes better part": [0, 65535], "am better then thy deere selfes better part ah": [0, 65535], "better then thy deere selfes better part ah doe": [0, 65535], "then thy deere selfes better part ah doe not": [0, 65535], "thy deere selfes better part ah doe not teare": [0, 65535], "deere selfes better part ah doe not teare away": [0, 65535], "selfes better part ah doe not teare away thy": [0, 65535], "better part ah doe not teare away thy selfe": [0, 65535], "part ah doe not teare away thy selfe from": [0, 65535], "ah doe not teare away thy selfe from me": [0, 65535], "doe not teare away thy selfe from me for": [0, 65535], "not teare away thy selfe from me for know": [0, 65535], "teare away thy selfe from me for know my": [0, 65535], "away thy selfe from me for know my loue": [0, 65535], "thy selfe from me for know my loue as": [0, 65535], "selfe from me for know my loue as easie": [0, 65535], "from me for know my loue as easie maist": [0, 65535], "me for know my loue as easie maist thou": [0, 65535], "for know my loue as easie maist thou fall": [0, 65535], "know my loue as easie maist thou fall a": [0, 65535], "my loue as easie maist thou fall a drop": [0, 65535], "loue as easie maist thou fall a drop of": [0, 65535], "as easie maist thou fall a drop of water": [0, 65535], "easie maist thou fall a drop of water in": [0, 65535], "maist thou fall a drop of water in the": [0, 65535], "thou fall a drop of water in the breaking": [0, 65535], "fall a drop of water in the breaking gulfe": [0, 65535], "a drop of water in the breaking gulfe and": [0, 65535], "drop of water in the breaking gulfe and take": [0, 65535], "of water in the breaking gulfe and take vnmingled": [0, 65535], "water in the breaking gulfe and take vnmingled thence": [0, 65535], "in the breaking gulfe and take vnmingled thence that": [0, 65535], "the breaking gulfe and take vnmingled thence that drop": [0, 65535], "breaking gulfe and take vnmingled thence that drop againe": [0, 65535], "gulfe and take vnmingled thence that drop againe without": [0, 65535], "and take vnmingled thence that drop againe without addition": [0, 65535], "take vnmingled thence that drop againe without addition or": [0, 65535], "vnmingled thence that drop againe without addition or diminishing": [0, 65535], "thence that drop againe without addition or diminishing as": [0, 65535], "that drop againe without addition or diminishing as take": [0, 65535], "drop againe without addition or diminishing as take from": [0, 65535], "againe without addition or diminishing as take from me": [0, 65535], "without addition or diminishing as take from me thy": [0, 65535], "addition or diminishing as take from me thy selfe": [0, 65535], "or diminishing as take from me thy selfe and": [0, 65535], "diminishing as take from me thy selfe and not": [0, 65535], "as take from me thy selfe and not me": [0, 65535], "take from me thy selfe and not me too": [0, 65535], "from me thy selfe and not me too how": [0, 65535], "me thy selfe and not me too how deerely": [0, 65535], "thy selfe and not me too how deerely would": [0, 65535], "selfe and not me too how deerely would it": [0, 65535], "and not me too how deerely would it touch": [0, 65535], "not me too how deerely would it touch thee": [0, 65535], "me too how deerely would it touch thee to": [0, 65535], "too how deerely would it touch thee to the": [0, 65535], "how deerely would it touch thee to the quicke": [0, 65535], "deerely would it touch thee to the quicke shouldst": [0, 65535], "would it touch thee to the quicke shouldst thou": [0, 65535], "it touch thee to the quicke shouldst thou but": [0, 65535], "touch thee to the quicke shouldst thou but heare": [0, 65535], "thee to the quicke shouldst thou but heare i": [0, 65535], "to the quicke shouldst thou but heare i were": [0, 65535], "the quicke shouldst thou but heare i were licencious": [0, 65535], "quicke shouldst thou but heare i were licencious and": [0, 65535], "shouldst thou but heare i were licencious and that": [0, 65535], "thou but heare i were licencious and that this": [0, 65535], "but heare i were licencious and that this body": [0, 65535], "heare i were licencious and that this body consecrate": [0, 65535], "i were licencious and that this body consecrate to": [0, 65535], "were licencious and that this body consecrate to thee": [0, 65535], "licencious and that this body consecrate to thee by": [0, 65535], "and that this body consecrate to thee by ruffian": [0, 65535], "that this body consecrate to thee by ruffian lust": [0, 65535], "this body consecrate to thee by ruffian lust should": [0, 65535], "body consecrate to thee by ruffian lust should be": [0, 65535], "consecrate to thee by ruffian lust should be contaminate": [0, 65535], "to thee by ruffian lust should be contaminate wouldst": [0, 65535], "thee by ruffian lust should be contaminate wouldst thou": [0, 65535], "by ruffian lust should be contaminate wouldst thou not": [0, 65535], "ruffian lust should be contaminate wouldst thou not spit": [0, 65535], "lust should be contaminate wouldst thou not spit at": [0, 65535], "should be contaminate wouldst thou not spit at me": [0, 65535], "be contaminate wouldst thou not spit at me and": [0, 65535], "contaminate wouldst thou not spit at me and spurne": [0, 65535], "wouldst thou not spit at me and spurne at": [0, 65535], "thou not spit at me and spurne at me": [0, 65535], "not spit at me and spurne at me and": [0, 65535], "spit at me and spurne at me and hurle": [0, 65535], "at me and spurne at me and hurle the": [0, 65535], "me and spurne at me and hurle the name": [0, 65535], "and spurne at me and hurle the name of": [0, 65535], "spurne at me and hurle the name of husband": [0, 65535], "at me and hurle the name of husband in": [0, 65535], "me and hurle the name of husband in my": [0, 65535], "and hurle the name of husband in my face": [0, 65535], "hurle the name of husband in my face and": [0, 65535], "the name of husband in my face and teare": [0, 65535], "name of husband in my face and teare the": [0, 65535], "of husband in my face and teare the stain'd": [0, 65535], "husband in my face and teare the stain'd skin": [0, 65535], "in my face and teare the stain'd skin of": [0, 65535], "my face and teare the stain'd skin of my": [0, 65535], "face and teare the stain'd skin of my harlot": [0, 65535], "and teare the stain'd skin of my harlot brow": [0, 65535], "teare the stain'd skin of my harlot brow and": [0, 65535], "the stain'd skin of my harlot brow and from": [0, 65535], "stain'd skin of my harlot brow and from my": [0, 65535], "skin of my harlot brow and from my false": [0, 65535], "of my harlot brow and from my false hand": [0, 65535], "my harlot brow and from my false hand cut": [0, 65535], "harlot brow and from my false hand cut the": [0, 65535], "brow and from my false hand cut the wedding": [0, 65535], "and from my false hand cut the wedding ring": [0, 65535], "from my false hand cut the wedding ring and": [0, 65535], "my false hand cut the wedding ring and breake": [0, 65535], "false hand cut the wedding ring and breake it": [0, 65535], "hand cut the wedding ring and breake it with": [0, 65535], "cut the wedding ring and breake it with a": [0, 65535], "the wedding ring and breake it with a deepe": [0, 65535], "wedding ring and breake it with a deepe diuorcing": [0, 65535], "ring and breake it with a deepe diuorcing vow": [0, 65535], "and breake it with a deepe diuorcing vow i": [0, 65535], "breake it with a deepe diuorcing vow i know": [0, 65535], "it with a deepe diuorcing vow i know thou": [0, 65535], "with a deepe diuorcing vow i know thou canst": [0, 65535], "a deepe diuorcing vow i know thou canst and": [0, 65535], "deepe diuorcing vow i know thou canst and therefore": [0, 65535], "diuorcing vow i know thou canst and therefore see": [0, 65535], "vow i know thou canst and therefore see thou": [0, 65535], "i know thou canst and therefore see thou doe": [0, 65535], "know thou canst and therefore see thou doe it": [0, 65535], "thou canst and therefore see thou doe it i": [0, 65535], "canst and therefore see thou doe it i am": [0, 65535], "and therefore see thou doe it i am possest": [0, 65535], "therefore see thou doe it i am possest with": [0, 65535], "see thou doe it i am possest with an": [0, 65535], "thou doe it i am possest with an adulterate": [0, 65535], "doe it i am possest with an adulterate blot": [0, 65535], "it i am possest with an adulterate blot my": [0, 65535], "i am possest with an adulterate blot my bloud": [0, 65535], "am possest with an adulterate blot my bloud is": [0, 65535], "possest with an adulterate blot my bloud is mingled": [0, 65535], "with an adulterate blot my bloud is mingled with": [0, 65535], "an adulterate blot my bloud is mingled with the": [0, 65535], "adulterate blot my bloud is mingled with the crime": [0, 65535], "blot my bloud is mingled with the crime of": [0, 65535], "my bloud is mingled with the crime of lust": [0, 65535], "bloud is mingled with the crime of lust for": [0, 65535], "is mingled with the crime of lust for if": [0, 65535], "mingled with the crime of lust for if we": [0, 65535], "with the crime of lust for if we two": [0, 65535], "the crime of lust for if we two be": [0, 65535], "crime of lust for if we two be one": [0, 65535], "of lust for if we two be one and": [0, 65535], "lust for if we two be one and thou": [0, 65535], "for if we two be one and thou play": [0, 65535], "if we two be one and thou play false": [0, 65535], "we two be one and thou play false i": [0, 65535], "two be one and thou play false i doe": [0, 65535], "be one and thou play false i doe digest": [0, 65535], "one and thou play false i doe digest the": [0, 65535], "and thou play false i doe digest the poison": [0, 65535], "thou play false i doe digest the poison of": [0, 65535], "play false i doe digest the poison of thy": [0, 65535], "false i doe digest the poison of thy flesh": [0, 65535], "i doe digest the poison of thy flesh being": [0, 65535], "doe digest the poison of thy flesh being strumpeted": [0, 65535], "digest the poison of thy flesh being strumpeted by": [0, 65535], "the poison of thy flesh being strumpeted by thy": [0, 65535], "poison of thy flesh being strumpeted by thy contagion": [0, 65535], "of thy flesh being strumpeted by thy contagion keepe": [0, 65535], "thy flesh being strumpeted by thy contagion keepe then": [0, 65535], "flesh being strumpeted by thy contagion keepe then faire": [0, 65535], "being strumpeted by thy contagion keepe then faire league": [0, 65535], "strumpeted by thy contagion keepe then faire league and": [0, 65535], "by thy contagion keepe then faire league and truce": [0, 65535], "thy contagion keepe then faire league and truce with": [0, 65535], "contagion keepe then faire league and truce with thy": [0, 65535], "keepe then faire league and truce with thy true": [0, 65535], "then faire league and truce with thy true bed": [0, 65535], "faire league and truce with thy true bed i": [0, 65535], "league and truce with thy true bed i liue": [0, 65535], "and truce with thy true bed i liue distain'd": [0, 65535], "truce with thy true bed i liue distain'd thou": [0, 65535], "with thy true bed i liue distain'd thou vndishonoured": [0, 65535], "thy true bed i liue distain'd thou vndishonoured antip": [0, 65535], "true bed i liue distain'd thou vndishonoured antip plead": [0, 65535], "bed i liue distain'd thou vndishonoured antip plead you": [0, 65535], "i liue distain'd thou vndishonoured antip plead you to": [0, 65535], "liue distain'd thou vndishonoured antip plead you to me": [0, 65535], "distain'd thou vndishonoured antip plead you to me faire": [0, 65535], "thou vndishonoured antip plead you to me faire dame": [0, 65535], "vndishonoured antip plead you to me faire dame i": [0, 65535], "antip plead you to me faire dame i know": [0, 65535], "plead you to me faire dame i know you": [0, 65535], "you to me faire dame i know you not": [0, 65535], "to me faire dame i know you not in": [0, 65535], "me faire dame i know you not in ephesus": [0, 65535], "faire dame i know you not in ephesus i": [0, 65535], "dame i know you not in ephesus i am": [0, 65535], "i know you not in ephesus i am but": [0, 65535], "know you not in ephesus i am but two": [0, 65535], "you not in ephesus i am but two houres": [0, 65535], "not in ephesus i am but two houres old": [0, 65535], "in ephesus i am but two houres old as": [0, 65535], "ephesus i am but two houres old as strange": [0, 65535], "i am but two houres old as strange vnto": [0, 65535], "am but two houres old as strange vnto your": [0, 65535], "but two houres old as strange vnto your towne": [0, 65535], "two houres old as strange vnto your towne as": [0, 65535], "houres old as strange vnto your towne as to": [0, 65535], "old as strange vnto your towne as to your": [0, 65535], "as strange vnto your towne as to your talke": [0, 65535], "strange vnto your towne as to your talke who": [0, 65535], "vnto your towne as to your talke who euery": [0, 65535], "your towne as to your talke who euery word": [0, 65535], "towne as to your talke who euery word by": [0, 65535], "as to your talke who euery word by all": [0, 65535], "to your talke who euery word by all my": [0, 65535], "your talke who euery word by all my wit": [0, 65535], "talke who euery word by all my wit being": [0, 65535], "who euery word by all my wit being scan'd": [0, 65535], "euery word by all my wit being scan'd wants": [0, 65535], "word by all my wit being scan'd wants wit": [0, 65535], "by all my wit being scan'd wants wit in": [0, 65535], "all my wit being scan'd wants wit in all": [0, 65535], "my wit being scan'd wants wit in all one": [0, 65535], "wit being scan'd wants wit in all one word": [0, 65535], "being scan'd wants wit in all one word to": [0, 65535], "scan'd wants wit in all one word to vnderstand": [0, 65535], "wants wit in all one word to vnderstand luci": [0, 65535], "wit in all one word to vnderstand luci fie": [0, 65535], "in all one word to vnderstand luci fie brother": [0, 65535], "all one word to vnderstand luci fie brother how": [0, 65535], "one word to vnderstand luci fie brother how the": [0, 65535], "word to vnderstand luci fie brother how the world": [0, 65535], "to vnderstand luci fie brother how the world is": [0, 65535], "vnderstand luci fie brother how the world is chang'd": [0, 65535], "luci fie brother how the world is chang'd with": [0, 65535], "fie brother how the world is chang'd with you": [0, 65535], "brother how the world is chang'd with you when": [0, 65535], "how the world is chang'd with you when were": [0, 65535], "the world is chang'd with you when were you": [0, 65535], "world is chang'd with you when were you wont": [0, 65535], "is chang'd with you when were you wont to": [0, 65535], "chang'd with you when were you wont to vse": [0, 65535], "with you when were you wont to vse my": [0, 65535], "you when were you wont to vse my sister": [0, 65535], "when were you wont to vse my sister thus": [0, 65535], "were you wont to vse my sister thus she": [0, 65535], "you wont to vse my sister thus she sent": [0, 65535], "wont to vse my sister thus she sent for": [0, 65535], "to vse my sister thus she sent for you": [0, 65535], "vse my sister thus she sent for you by": [0, 65535], "my sister thus she sent for you by dromio": [0, 65535], "sister thus she sent for you by dromio home": [0, 65535], "thus she sent for you by dromio home to": [0, 65535], "she sent for you by dromio home to dinner": [0, 65535], "sent for you by dromio home to dinner ant": [0, 65535], "for you by dromio home to dinner ant by": [0, 65535], "you by dromio home to dinner ant by dromio": [0, 65535], "by dromio home to dinner ant by dromio drom": [0, 65535], "dromio home to dinner ant by dromio drom by": [0, 65535], "home to dinner ant by dromio drom by me": [0, 65535], "to dinner ant by dromio drom by me adr": [0, 65535], "dinner ant by dromio drom by me adr by": [0, 65535], "ant by dromio drom by me adr by thee": [0, 65535], "by dromio drom by me adr by thee and": [0, 65535], "dromio drom by me adr by thee and this": [0, 65535], "drom by me adr by thee and this thou": [0, 65535], "by me adr by thee and this thou didst": [0, 65535], "me adr by thee and this thou didst returne": [0, 65535], "adr by thee and this thou didst returne from": [0, 65535], "by thee and this thou didst returne from him": [0, 65535], "thee and this thou didst returne from him that": [0, 65535], "and this thou didst returne from him that he": [0, 65535], "this thou didst returne from him that he did": [0, 65535], "thou didst returne from him that he did buffet": [0, 65535], "didst returne from him that he did buffet thee": [0, 65535], "returne from him that he did buffet thee and": [0, 65535], "from him that he did buffet thee and in": [0, 65535], "him that he did buffet thee and in his": [0, 65535], "that he did buffet thee and in his blowes": [0, 65535], "he did buffet thee and in his blowes denied": [0, 65535], "did buffet thee and in his blowes denied my": [0, 65535], "buffet thee and in his blowes denied my house": [0, 65535], "thee and in his blowes denied my house for": [0, 65535], "and in his blowes denied my house for his": [0, 65535], "in his blowes denied my house for his me": [0, 65535], "his blowes denied my house for his me for": [0, 65535], "blowes denied my house for his me for his": [0, 65535], "denied my house for his me for his wife": [0, 65535], "my house for his me for his wife ant": [0, 65535], "house for his me for his wife ant did": [0, 65535], "for his me for his wife ant did you": [0, 65535], "his me for his wife ant did you conuerse": [0, 65535], "me for his wife ant did you conuerse sir": [0, 65535], "for his wife ant did you conuerse sir with": [0, 65535], "his wife ant did you conuerse sir with this": [0, 65535], "wife ant did you conuerse sir with this gentlewoman": [0, 65535], "ant did you conuerse sir with this gentlewoman what": [0, 65535], "did you conuerse sir with this gentlewoman what is": [0, 65535], "you conuerse sir with this gentlewoman what is the": [0, 65535], "conuerse sir with this gentlewoman what is the course": [0, 65535], "sir with this gentlewoman what is the course and": [0, 65535], "with this gentlewoman what is the course and drift": [0, 65535], "this gentlewoman what is the course and drift of": [0, 65535], "gentlewoman what is the course and drift of your": [0, 65535], "what is the course and drift of your compact": [0, 65535], "is the course and drift of your compact s": [0, 65535], "the course and drift of your compact s dro": [0, 65535], "course and drift of your compact s dro i": [0, 65535], "and drift of your compact s dro i sir": [0, 65535], "drift of your compact s dro i sir i": [0, 65535], "of your compact s dro i sir i neuer": [0, 65535], "your compact s dro i sir i neuer saw": [0, 65535], "compact s dro i sir i neuer saw her": [0, 65535], "s dro i sir i neuer saw her till": [0, 65535], "dro i sir i neuer saw her till this": [0, 65535], "i sir i neuer saw her till this time": [0, 65535], "sir i neuer saw her till this time ant": [0, 65535], "i neuer saw her till this time ant villaine": [0, 65535], "neuer saw her till this time ant villaine thou": [0, 65535], "saw her till this time ant villaine thou liest": [0, 65535], "her till this time ant villaine thou liest for": [0, 65535], "till this time ant villaine thou liest for euen": [0, 65535], "this time ant villaine thou liest for euen her": [0, 65535], "time ant villaine thou liest for euen her verie": [0, 65535], "ant villaine thou liest for euen her verie words": [0, 65535], "villaine thou liest for euen her verie words didst": [0, 65535], "thou liest for euen her verie words didst thou": [0, 65535], "liest for euen her verie words didst thou deliuer": [0, 65535], "for euen her verie words didst thou deliuer to": [0, 65535], "euen her verie words didst thou deliuer to me": [0, 65535], "her verie words didst thou deliuer to me on": [0, 65535], "verie words didst thou deliuer to me on the": [0, 65535], "words didst thou deliuer to me on the mart": [0, 65535], "didst thou deliuer to me on the mart s": [0, 65535], "thou deliuer to me on the mart s dro": [0, 65535], "deliuer to me on the mart s dro i": [0, 65535], "to me on the mart s dro i neuer": [0, 65535], "me on the mart s dro i neuer spake": [0, 65535], "on the mart s dro i neuer spake with": [0, 65535], "the mart s dro i neuer spake with her": [0, 65535], "mart s dro i neuer spake with her in": [0, 65535], "s dro i neuer spake with her in all": [0, 65535], "dro i neuer spake with her in all my": [0, 65535], "i neuer spake with her in all my life": [0, 65535], "neuer spake with her in all my life ant": [0, 65535], "spake with her in all my life ant how": [0, 65535], "with her in all my life ant how can": [0, 65535], "her in all my life ant how can she": [0, 65535], "in all my life ant how can she thus": [0, 65535], "all my life ant how can she thus then": [0, 65535], "my life ant how can she thus then call": [0, 65535], "life ant how can she thus then call vs": [0, 65535], "ant how can she thus then call vs by": [0, 65535], "how can she thus then call vs by our": [0, 65535], "can she thus then call vs by our names": [0, 65535], "she thus then call vs by our names vnlesse": [0, 65535], "thus then call vs by our names vnlesse it": [0, 65535], "then call vs by our names vnlesse it be": [0, 65535], "call vs by our names vnlesse it be by": [0, 65535], "vs by our names vnlesse it be by inspiration": [0, 65535], "by our names vnlesse it be by inspiration adri": [0, 65535], "our names vnlesse it be by inspiration adri how": [0, 65535], "names vnlesse it be by inspiration adri how ill": [0, 65535], "vnlesse it be by inspiration adri how ill agrees": [0, 65535], "it be by inspiration adri how ill agrees it": [0, 65535], "be by inspiration adri how ill agrees it with": [0, 65535], "by inspiration adri how ill agrees it with your": [0, 65535], "inspiration adri how ill agrees it with your grauitie": [0, 65535], "adri how ill agrees it with your grauitie to": [0, 65535], "how ill agrees it with your grauitie to counterfeit": [0, 65535], "ill agrees it with your grauitie to counterfeit thus": [0, 65535], "agrees it with your grauitie to counterfeit thus grosely": [0, 65535], "it with your grauitie to counterfeit thus grosely with": [0, 65535], "with your grauitie to counterfeit thus grosely with your": [0, 65535], "your grauitie to counterfeit thus grosely with your slaue": [0, 65535], "grauitie to counterfeit thus grosely with your slaue abetting": [0, 65535], "to counterfeit thus grosely with your slaue abetting him": [0, 65535], "counterfeit thus grosely with your slaue abetting him to": [0, 65535], "thus grosely with your slaue abetting him to thwart": [0, 65535], "grosely with your slaue abetting him to thwart me": [0, 65535], "with your slaue abetting him to thwart me in": [0, 65535], "your slaue abetting him to thwart me in my": [0, 65535], "slaue abetting him to thwart me in my moode": [0, 65535], "abetting him to thwart me in my moode be": [0, 65535], "him to thwart me in my moode be it": [0, 65535], "to thwart me in my moode be it my": [0, 65535], "thwart me in my moode be it my wrong": [0, 65535], "me in my moode be it my wrong you": [0, 65535], "in my moode be it my wrong you are": [0, 65535], "my moode be it my wrong you are from": [0, 65535], "moode be it my wrong you are from me": [0, 65535], "be it my wrong you are from me exempt": [0, 65535], "it my wrong you are from me exempt but": [0, 65535], "my wrong you are from me exempt but wrong": [0, 65535], "wrong you are from me exempt but wrong not": [0, 65535], "you are from me exempt but wrong not that": [0, 65535], "are from me exempt but wrong not that wrong": [0, 65535], "from me exempt but wrong not that wrong with": [0, 65535], "me exempt but wrong not that wrong with a": [0, 65535], "exempt but wrong not that wrong with a more": [0, 65535], "but wrong not that wrong with a more contempt": [0, 65535], "wrong not that wrong with a more contempt come": [0, 65535], "not that wrong with a more contempt come i": [0, 65535], "that wrong with a more contempt come i will": [0, 65535], "wrong with a more contempt come i will fasten": [0, 65535], "with a more contempt come i will fasten on": [0, 65535], "a more contempt come i will fasten on this": [0, 65535], "more contempt come i will fasten on this sleeue": [0, 65535], "contempt come i will fasten on this sleeue of": [0, 65535], "come i will fasten on this sleeue of thine": [0, 65535], "i will fasten on this sleeue of thine thou": [0, 65535], "will fasten on this sleeue of thine thou art": [0, 65535], "fasten on this sleeue of thine thou art an": [0, 65535], "on this sleeue of thine thou art an elme": [0, 65535], "this sleeue of thine thou art an elme my": [0, 65535], "sleeue of thine thou art an elme my husband": [0, 65535], "of thine thou art an elme my husband i": [0, 65535], "thine thou art an elme my husband i a": [0, 65535], "thou art an elme my husband i a vine": [0, 65535], "art an elme my husband i a vine whose": [0, 65535], "an elme my husband i a vine whose weaknesse": [0, 65535], "elme my husband i a vine whose weaknesse married": [0, 65535], "my husband i a vine whose weaknesse married to": [0, 65535], "husband i a vine whose weaknesse married to thy": [0, 65535], "i a vine whose weaknesse married to thy stranger": [0, 65535], "a vine whose weaknesse married to thy stranger state": [0, 65535], "vine whose weaknesse married to thy stranger state makes": [0, 65535], "whose weaknesse married to thy stranger state makes me": [0, 65535], "weaknesse married to thy stranger state makes me with": [0, 65535], "married to thy stranger state makes me with thy": [0, 65535], "to thy stranger state makes me with thy strength": [0, 65535], "thy stranger state makes me with thy strength to": [0, 65535], "stranger state makes me with thy strength to communicate": [0, 65535], "state makes me with thy strength to communicate if": [0, 65535], "makes me with thy strength to communicate if ought": [0, 65535], "me with thy strength to communicate if ought possesse": [0, 65535], "with thy strength to communicate if ought possesse thee": [0, 65535], "thy strength to communicate if ought possesse thee from": [0, 65535], "strength to communicate if ought possesse thee from me": [0, 65535], "to communicate if ought possesse thee from me it": [0, 65535], "communicate if ought possesse thee from me it is": [0, 65535], "if ought possesse thee from me it is drosse": [0, 65535], "ought possesse thee from me it is drosse vsurping": [0, 65535], "possesse thee from me it is drosse vsurping iuie": [0, 65535], "thee from me it is drosse vsurping iuie brier": [0, 65535], "from me it is drosse vsurping iuie brier or": [0, 65535], "me it is drosse vsurping iuie brier or idle": [0, 65535], "it is drosse vsurping iuie brier or idle mosse": [0, 65535], "is drosse vsurping iuie brier or idle mosse who": [0, 65535], "drosse vsurping iuie brier or idle mosse who all": [0, 65535], "vsurping iuie brier or idle mosse who all for": [0, 65535], "iuie brier or idle mosse who all for want": [0, 65535], "brier or idle mosse who all for want of": [0, 65535], "or idle mosse who all for want of pruning": [0, 65535], "idle mosse who all for want of pruning with": [0, 65535], "mosse who all for want of pruning with intrusion": [0, 65535], "who all for want of pruning with intrusion infect": [0, 65535], "all for want of pruning with intrusion infect thy": [0, 65535], "for want of pruning with intrusion infect thy sap": [0, 65535], "want of pruning with intrusion infect thy sap and": [0, 65535], "of pruning with intrusion infect thy sap and liue": [0, 65535], "pruning with intrusion infect thy sap and liue on": [0, 65535], "with intrusion infect thy sap and liue on thy": [0, 65535], "intrusion infect thy sap and liue on thy confusion": [0, 65535], "infect thy sap and liue on thy confusion ant": [0, 65535], "thy sap and liue on thy confusion ant to": [0, 65535], "sap and liue on thy confusion ant to mee": [0, 65535], "and liue on thy confusion ant to mee shee": [0, 65535], "liue on thy confusion ant to mee shee speakes": [0, 65535], "on thy confusion ant to mee shee speakes shee": [0, 65535], "thy confusion ant to mee shee speakes shee moues": [0, 65535], "confusion ant to mee shee speakes shee moues mee": [0, 65535], "ant to mee shee speakes shee moues mee for": [0, 65535], "to mee shee speakes shee moues mee for her": [0, 65535], "mee shee speakes shee moues mee for her theame": [0, 65535], "shee speakes shee moues mee for her theame what": [0, 65535], "speakes shee moues mee for her theame what was": [0, 65535], "shee moues mee for her theame what was i": [0, 65535], "moues mee for her theame what was i married": [0, 65535], "mee for her theame what was i married to": [0, 65535], "for her theame what was i married to her": [0, 65535], "her theame what was i married to her in": [0, 65535], "theame what was i married to her in my": [0, 65535], "what was i married to her in my dreame": [0, 65535], "was i married to her in my dreame or": [0, 65535], "i married to her in my dreame or sleepe": [0, 65535], "married to her in my dreame or sleepe i": [0, 65535], "to her in my dreame or sleepe i now": [0, 65535], "her in my dreame or sleepe i now and": [0, 65535], "in my dreame or sleepe i now and thinke": [0, 65535], "my dreame or sleepe i now and thinke i": [0, 65535], "dreame or sleepe i now and thinke i heare": [0, 65535], "or sleepe i now and thinke i heare all": [0, 65535], "sleepe i now and thinke i heare all this": [0, 65535], "i now and thinke i heare all this what": [0, 65535], "now and thinke i heare all this what error": [0, 65535], "and thinke i heare all this what error driues": [0, 65535], "thinke i heare all this what error driues our": [0, 65535], "i heare all this what error driues our eies": [0, 65535], "heare all this what error driues our eies and": [0, 65535], "all this what error driues our eies and eares": [0, 65535], "this what error driues our eies and eares amisse": [0, 65535], "what error driues our eies and eares amisse vntill": [0, 65535], "error driues our eies and eares amisse vntill i": [0, 65535], "driues our eies and eares amisse vntill i know": [0, 65535], "our eies and eares amisse vntill i know this": [0, 65535], "eies and eares amisse vntill i know this sure": [0, 65535], "and eares amisse vntill i know this sure vncertaintie": [0, 65535], "eares amisse vntill i know this sure vncertaintie ile": [0, 65535], "amisse vntill i know this sure vncertaintie ile entertaine": [0, 65535], "vntill i know this sure vncertaintie ile entertaine the": [0, 65535], "i know this sure vncertaintie ile entertaine the free'd": [0, 65535], "know this sure vncertaintie ile entertaine the free'd fallacie": [0, 65535], "this sure vncertaintie ile entertaine the free'd fallacie luc": [0, 65535], "sure vncertaintie ile entertaine the free'd fallacie luc dromio": [0, 65535], "vncertaintie ile entertaine the free'd fallacie luc dromio goe": [0, 65535], "ile entertaine the free'd fallacie luc dromio goe bid": [0, 65535], "entertaine the free'd fallacie luc dromio goe bid the": [0, 65535], "the free'd fallacie luc dromio goe bid the seruants": [0, 65535], "free'd fallacie luc dromio goe bid the seruants spred": [0, 65535], "fallacie luc dromio goe bid the seruants spred for": [0, 65535], "luc dromio goe bid the seruants spred for dinner": [0, 65535], "dromio goe bid the seruants spred for dinner s": [0, 65535], "goe bid the seruants spred for dinner s dro": [0, 65535], "bid the seruants spred for dinner s dro oh": [0, 65535], "the seruants spred for dinner s dro oh for": [0, 65535], "seruants spred for dinner s dro oh for my": [0, 65535], "spred for dinner s dro oh for my beads": [0, 65535], "for dinner s dro oh for my beads i": [0, 65535], "dinner s dro oh for my beads i crosse": [0, 65535], "s dro oh for my beads i crosse me": [0, 65535], "dro oh for my beads i crosse me for": [0, 65535], "oh for my beads i crosse me for a": [0, 65535], "for my beads i crosse me for a sinner": [0, 65535], "my beads i crosse me for a sinner this": [0, 65535], "beads i crosse me for a sinner this is": [0, 65535], "i crosse me for a sinner this is the": [0, 65535], "crosse me for a sinner this is the fairie": [0, 65535], "me for a sinner this is the fairie land": [0, 65535], "for a sinner this is the fairie land oh": [0, 65535], "a sinner this is the fairie land oh spight": [0, 65535], "sinner this is the fairie land oh spight of": [0, 65535], "this is the fairie land oh spight of spights": [0, 65535], "is the fairie land oh spight of spights we": [0, 65535], "the fairie land oh spight of spights we talke": [0, 65535], "fairie land oh spight of spights we talke with": [0, 65535], "land oh spight of spights we talke with goblins": [0, 65535], "oh spight of spights we talke with goblins owles": [0, 65535], "spight of spights we talke with goblins owles and": [0, 65535], "of spights we talke with goblins owles and sprights": [0, 65535], "spights we talke with goblins owles and sprights if": [0, 65535], "we talke with goblins owles and sprights if we": [0, 65535], "talke with goblins owles and sprights if we obay": [0, 65535], "with goblins owles and sprights if we obay them": [0, 65535], "goblins owles and sprights if we obay them not": [0, 65535], "owles and sprights if we obay them not this": [0, 65535], "and sprights if we obay them not this will": [0, 65535], "sprights if we obay them not this will insue": [0, 65535], "if we obay them not this will insue they'll": [0, 65535], "we obay them not this will insue they'll sucke": [0, 65535], "obay them not this will insue they'll sucke our": [0, 65535], "them not this will insue they'll sucke our breath": [0, 65535], "not this will insue they'll sucke our breath or": [0, 65535], "this will insue they'll sucke our breath or pinch": [0, 65535], "will insue they'll sucke our breath or pinch vs": [0, 65535], "insue they'll sucke our breath or pinch vs blacke": [0, 65535], "they'll sucke our breath or pinch vs blacke and": [0, 65535], "sucke our breath or pinch vs blacke and blew": [0, 65535], "our breath or pinch vs blacke and blew luc": [0, 65535], "breath or pinch vs blacke and blew luc why": [0, 65535], "or pinch vs blacke and blew luc why prat'st": [0, 65535], "pinch vs blacke and blew luc why prat'st thou": [0, 65535], "vs blacke and blew luc why prat'st thou to": [0, 65535], "blacke and blew luc why prat'st thou to thy": [0, 65535], "and blew luc why prat'st thou to thy selfe": [0, 65535], "blew luc why prat'st thou to thy selfe and": [0, 65535], "luc why prat'st thou to thy selfe and answer'st": [0, 65535], "why prat'st thou to thy selfe and answer'st not": [0, 65535], "prat'st thou to thy selfe and answer'st not dromio": [0, 65535], "thou to thy selfe and answer'st not dromio thou": [0, 65535], "to thy selfe and answer'st not dromio thou dromio": [0, 65535], "thy selfe and answer'st not dromio thou dromio thou": [0, 65535], "selfe and answer'st not dromio thou dromio thou snaile": [0, 65535], "and answer'st not dromio thou dromio thou snaile thou": [0, 65535], "answer'st not dromio thou dromio thou snaile thou slug": [0, 65535], "not dromio thou dromio thou snaile thou slug thou": [0, 65535], "dromio thou dromio thou snaile thou slug thou sot": [0, 65535], "thou dromio thou snaile thou slug thou sot s": [0, 65535], "dromio thou snaile thou slug thou sot s dro": [0, 65535], "thou snaile thou slug thou sot s dro i": [0, 65535], "snaile thou slug thou sot s dro i am": [0, 65535], "thou slug thou sot s dro i am transformed": [0, 65535], "slug thou sot s dro i am transformed master": [0, 65535], "thou sot s dro i am transformed master am": [0, 65535], "sot s dro i am transformed master am i": [0, 65535], "s dro i am transformed master am i not": [0, 65535], "dro i am transformed master am i not ant": [0, 65535], "i am transformed master am i not ant i": [0, 65535], "am transformed master am i not ant i thinke": [0, 65535], "transformed master am i not ant i thinke thou": [0, 65535], "master am i not ant i thinke thou art": [0, 65535], "am i not ant i thinke thou art in": [0, 65535], "i not ant i thinke thou art in minde": [0, 65535], "not ant i thinke thou art in minde and": [0, 65535], "ant i thinke thou art in minde and so": [0, 65535], "i thinke thou art in minde and so am": [0, 65535], "thinke thou art in minde and so am i": [0, 65535], "thou art in minde and so am i s": [0, 65535], "art in minde and so am i s dro": [0, 65535], "in minde and so am i s dro nay": [0, 65535], "minde and so am i s dro nay master": [0, 65535], "and so am i s dro nay master both": [0, 65535], "so am i s dro nay master both in": [0, 65535], "am i s dro nay master both in minde": [0, 65535], "i s dro nay master both in minde and": [0, 65535], "s dro nay master both in minde and in": [0, 65535], "dro nay master both in minde and in my": [0, 65535], "nay master both in minde and in my shape": [0, 65535], "master both in minde and in my shape ant": [0, 65535], "both in minde and in my shape ant thou": [0, 65535], "in minde and in my shape ant thou hast": [0, 65535], "minde and in my shape ant thou hast thine": [0, 65535], "and in my shape ant thou hast thine owne": [0, 65535], "in my shape ant thou hast thine owne forme": [0, 65535], "my shape ant thou hast thine owne forme s": [0, 65535], "shape ant thou hast thine owne forme s dro": [0, 65535], "ant thou hast thine owne forme s dro no": [0, 65535], "thou hast thine owne forme s dro no i": [0, 65535], "hast thine owne forme s dro no i am": [0, 65535], "thine owne forme s dro no i am an": [0, 65535], "owne forme s dro no i am an ape": [0, 65535], "forme s dro no i am an ape luc": [0, 65535], "s dro no i am an ape luc if": [0, 65535], "dro no i am an ape luc if thou": [0, 65535], "no i am an ape luc if thou art": [0, 65535], "i am an ape luc if thou art chang'd": [0, 65535], "am an ape luc if thou art chang'd to": [0, 65535], "an ape luc if thou art chang'd to ought": [0, 65535], "ape luc if thou art chang'd to ought 'tis": [0, 65535], "luc if thou art chang'd to ought 'tis to": [0, 65535], "if thou art chang'd to ought 'tis to an": [0, 65535], "thou art chang'd to ought 'tis to an asse": [0, 65535], "art chang'd to ought 'tis to an asse s": [0, 65535], "chang'd to ought 'tis to an asse s dro": [0, 65535], "to ought 'tis to an asse s dro 'tis": [0, 65535], "ought 'tis to an asse s dro 'tis true": [0, 65535], "'tis to an asse s dro 'tis true she": [0, 65535], "to an asse s dro 'tis true she rides": [0, 65535], "an asse s dro 'tis true she rides me": [0, 65535], "asse s dro 'tis true she rides me and": [0, 65535], "s dro 'tis true she rides me and i": [0, 65535], "dro 'tis true she rides me and i long": [0, 65535], "'tis true she rides me and i long for": [0, 65535], "true she rides me and i long for grasse": [0, 65535], "she rides me and i long for grasse 'tis": [0, 65535], "rides me and i long for grasse 'tis so": [0, 65535], "me and i long for grasse 'tis so i": [0, 65535], "and i long for grasse 'tis so i am": [0, 65535], "i long for grasse 'tis so i am an": [0, 65535], "long for grasse 'tis so i am an asse": [0, 65535], "for grasse 'tis so i am an asse else": [0, 65535], "grasse 'tis so i am an asse else it": [0, 65535], "'tis so i am an asse else it could": [0, 65535], "so i am an asse else it could neuer": [0, 65535], "i am an asse else it could neuer be": [0, 65535], "am an asse else it could neuer be but": [0, 65535], "an asse else it could neuer be but i": [0, 65535], "asse else it could neuer be but i should": [0, 65535], "else it could neuer be but i should know": [0, 65535], "it could neuer be but i should know her": [0, 65535], "could neuer be but i should know her as": [0, 65535], "neuer be but i should know her as well": [0, 65535], "be but i should know her as well as": [0, 65535], "but i should know her as well as she": [0, 65535], "i should know her as well as she knowes": [0, 65535], "should know her as well as she knowes me": [0, 65535], "know her as well as she knowes me adr": [0, 65535], "her as well as she knowes me adr come": [0, 65535], "as well as she knowes me adr come come": [0, 65535], "well as she knowes me adr come come no": [0, 65535], "as she knowes me adr come come no longer": [0, 65535], "she knowes me adr come come no longer will": [0, 65535], "knowes me adr come come no longer will i": [0, 65535], "me adr come come no longer will i be": [0, 65535], "adr come come no longer will i be a": [0, 65535], "come come no longer will i be a foole": [0, 65535], "come no longer will i be a foole to": [0, 65535], "no longer will i be a foole to put": [0, 65535], "longer will i be a foole to put the": [0, 65535], "will i be a foole to put the finger": [0, 65535], "i be a foole to put the finger in": [0, 65535], "be a foole to put the finger in the": [0, 65535], "a foole to put the finger in the eie": [0, 65535], "foole to put the finger in the eie and": [0, 65535], "to put the finger in the eie and weepe": [0, 65535], "put the finger in the eie and weepe whil'st": [0, 65535], "the finger in the eie and weepe whil'st man": [0, 65535], "finger in the eie and weepe whil'st man and": [0, 65535], "in the eie and weepe whil'st man and master": [0, 65535], "the eie and weepe whil'st man and master laughes": [0, 65535], "eie and weepe whil'st man and master laughes my": [0, 65535], "and weepe whil'st man and master laughes my woes": [0, 65535], "weepe whil'st man and master laughes my woes to": [0, 65535], "whil'st man and master laughes my woes to scorne": [0, 65535], "man and master laughes my woes to scorne come": [0, 65535], "and master laughes my woes to scorne come sir": [0, 65535], "master laughes my woes to scorne come sir to": [0, 65535], "laughes my woes to scorne come sir to dinner": [0, 65535], "my woes to scorne come sir to dinner dromio": [0, 65535], "woes to scorne come sir to dinner dromio keepe": [0, 65535], "to scorne come sir to dinner dromio keepe the": [0, 65535], "scorne come sir to dinner dromio keepe the gate": [0, 65535], "come sir to dinner dromio keepe the gate husband": [0, 65535], "sir to dinner dromio keepe the gate husband ile": [0, 65535], "to dinner dromio keepe the gate husband ile dine": [0, 65535], "dinner dromio keepe the gate husband ile dine aboue": [0, 65535], "dromio keepe the gate husband ile dine aboue with": [0, 65535], "keepe the gate husband ile dine aboue with you": [0, 65535], "the gate husband ile dine aboue with you to": [0, 65535], "gate husband ile dine aboue with you to day": [0, 65535], "husband ile dine aboue with you to day and": [0, 65535], "ile dine aboue with you to day and shriue": [0, 65535], "dine aboue with you to day and shriue you": [0, 65535], "aboue with you to day and shriue you of": [0, 65535], "with you to day and shriue you of a": [0, 65535], "you to day and shriue you of a thousand": [0, 65535], "to day and shriue you of a thousand idle": [0, 65535], "day and shriue you of a thousand idle prankes": [0, 65535], "and shriue you of a thousand idle prankes sirra": [0, 65535], "shriue you of a thousand idle prankes sirra if": [0, 65535], "you of a thousand idle prankes sirra if any": [0, 65535], "of a thousand idle prankes sirra if any aske": [0, 65535], "a thousand idle prankes sirra if any aske you": [0, 65535], "thousand idle prankes sirra if any aske you for": [0, 65535], "idle prankes sirra if any aske you for your": [0, 65535], "prankes sirra if any aske you for your master": [0, 65535], "sirra if any aske you for your master say": [0, 65535], "if any aske you for your master say he": [0, 65535], "any aske you for your master say he dines": [0, 65535], "aske you for your master say he dines forth": [0, 65535], "you for your master say he dines forth and": [0, 65535], "for your master say he dines forth and let": [0, 65535], "your master say he dines forth and let no": [0, 65535], "master say he dines forth and let no creature": [0, 65535], "say he dines forth and let no creature enter": [0, 65535], "he dines forth and let no creature enter come": [0, 65535], "dines forth and let no creature enter come sister": [0, 65535], "forth and let no creature enter come sister dromio": [0, 65535], "and let no creature enter come sister dromio play": [0, 65535], "let no creature enter come sister dromio play the": [0, 65535], "no creature enter come sister dromio play the porter": [0, 65535], "creature enter come sister dromio play the porter well": [0, 65535], "enter come sister dromio play the porter well ant": [0, 65535], "come sister dromio play the porter well ant am": [0, 65535], "sister dromio play the porter well ant am i": [0, 65535], "dromio play the porter well ant am i in": [0, 65535], "play the porter well ant am i in earth": [0, 65535], "the porter well ant am i in earth in": [0, 65535], "porter well ant am i in earth in heauen": [0, 65535], "well ant am i in earth in heauen or": [0, 65535], "ant am i in earth in heauen or in": [0, 65535], "am i in earth in heauen or in hell": [0, 65535], "i in earth in heauen or in hell sleeping": [0, 65535], "in earth in heauen or in hell sleeping or": [0, 65535], "earth in heauen or in hell sleeping or waking": [0, 65535], "in heauen or in hell sleeping or waking mad": [0, 65535], "heauen or in hell sleeping or waking mad or": [0, 65535], "or in hell sleeping or waking mad or well": [0, 65535], "in hell sleeping or waking mad or well aduisde": [0, 65535], "hell sleeping or waking mad or well aduisde knowne": [0, 65535], "sleeping or waking mad or well aduisde knowne vnto": [0, 65535], "or waking mad or well aduisde knowne vnto these": [0, 65535], "waking mad or well aduisde knowne vnto these and": [0, 65535], "mad or well aduisde knowne vnto these and to": [0, 65535], "or well aduisde knowne vnto these and to my": [0, 65535], "well aduisde knowne vnto these and to my selfe": [0, 65535], "aduisde knowne vnto these and to my selfe disguisde": [0, 65535], "knowne vnto these and to my selfe disguisde ile": [0, 65535], "vnto these and to my selfe disguisde ile say": [0, 65535], "these and to my selfe disguisde ile say as": [0, 65535], "and to my selfe disguisde ile say as they": [0, 65535], "to my selfe disguisde ile say as they say": [0, 65535], "my selfe disguisde ile say as they say and": [0, 65535], "selfe disguisde ile say as they say and perseuer": [0, 65535], "disguisde ile say as they say and perseuer so": [0, 65535], "ile say as they say and perseuer so and": [0, 65535], "say as they say and perseuer so and in": [0, 65535], "as they say and perseuer so and in this": [0, 65535], "they say and perseuer so and in this mist": [0, 65535], "say and perseuer so and in this mist at": [0, 65535], "and perseuer so and in this mist at all": [0, 65535], "perseuer so and in this mist at all aduentures": [0, 65535], "so and in this mist at all aduentures go": [0, 65535], "and in this mist at all aduentures go s": [0, 65535], "in this mist at all aduentures go s dro": [0, 65535], "this mist at all aduentures go s dro master": [0, 65535], "mist at all aduentures go s dro master shall": [0, 65535], "at all aduentures go s dro master shall i": [0, 65535], "all aduentures go s dro master shall i be": [0, 65535], "aduentures go s dro master shall i be porter": [0, 65535], "go s dro master shall i be porter at": [0, 65535], "s dro master shall i be porter at the": [0, 65535], "dro master shall i be porter at the gate": [0, 65535], "master shall i be porter at the gate adr": [0, 65535], "shall i be porter at the gate adr i": [0, 65535], "i be porter at the gate adr i and": [0, 65535], "be porter at the gate adr i and let": [0, 65535], "porter at the gate adr i and let none": [0, 65535], "at the gate adr i and let none enter": [0, 65535], "the gate adr i and let none enter least": [0, 65535], "gate adr i and let none enter least i": [0, 65535], "adr i and let none enter least i breake": [0, 65535], "i and let none enter least i breake your": [0, 65535], "and let none enter least i breake your pate": [0, 65535], "let none enter least i breake your pate luc": [0, 65535], "none enter least i breake your pate luc come": [0, 65535], "enter least i breake your pate luc come come": [0, 65535], "least i breake your pate luc come come antipholus": [0, 65535], "i breake your pate luc come come antipholus we": [0, 65535], "breake your pate luc come come antipholus we dine": [0, 65535], "your pate luc come come antipholus we dine to": [0, 65535], "pate luc come come antipholus we dine to late": [0, 65535], "actus secundus enter adriana wife to antipholis sereptus with luciana": [0, 65535], "secundus enter adriana wife to antipholis sereptus with luciana her": [0, 65535], "enter adriana wife to antipholis sereptus with luciana her sister": [0, 65535], "adriana wife to antipholis sereptus with luciana her sister adr": [0, 65535], "wife to antipholis sereptus with luciana her sister adr neither": [0, 65535], "to antipholis sereptus with luciana her sister adr neither my": [0, 65535], "antipholis sereptus with luciana her sister adr neither my husband": [0, 65535], "sereptus with luciana her sister adr neither my husband nor": [0, 65535], "with luciana her sister adr neither my husband nor the": [0, 65535], "luciana her sister adr neither my husband nor the slaue": [0, 65535], "her sister adr neither my husband nor the slaue return'd": [0, 65535], "sister adr neither my husband nor the slaue return'd that": [0, 65535], "adr neither my husband nor the slaue return'd that in": [0, 65535], "neither my husband nor the slaue return'd that in such": [0, 65535], "my husband nor the slaue return'd that in such haste": [0, 65535], "husband nor the slaue return'd that in such haste i": [0, 65535], "nor the slaue return'd that in such haste i sent": [0, 65535], "the slaue return'd that in such haste i sent to": [0, 65535], "slaue return'd that in such haste i sent to seeke": [0, 65535], "return'd that in such haste i sent to seeke his": [0, 65535], "that in such haste i sent to seeke his master": [0, 65535], "in such haste i sent to seeke his master sure": [0, 65535], "such haste i sent to seeke his master sure luciana": [0, 65535], "haste i sent to seeke his master sure luciana it": [0, 65535], "i sent to seeke his master sure luciana it is": [0, 65535], "sent to seeke his master sure luciana it is two": [0, 65535], "to seeke his master sure luciana it is two a": [0, 65535], "seeke his master sure luciana it is two a clocke": [0, 65535], "his master sure luciana it is two a clocke luc": [0, 65535], "master sure luciana it is two a clocke luc perhaps": [0, 65535], "sure luciana it is two a clocke luc perhaps some": [0, 65535], "luciana it is two a clocke luc perhaps some merchant": [0, 65535], "it is two a clocke luc perhaps some merchant hath": [0, 65535], "is two a clocke luc perhaps some merchant hath inuited": [0, 65535], "two a clocke luc perhaps some merchant hath inuited him": [0, 65535], "a clocke luc perhaps some merchant hath inuited him and": [0, 65535], "clocke luc perhaps some merchant hath inuited him and from": [0, 65535], "luc perhaps some merchant hath inuited him and from the": [0, 65535], "perhaps some merchant hath inuited him and from the mart": [0, 65535], "some merchant hath inuited him and from the mart he's": [0, 65535], "merchant hath inuited him and from the mart he's somewhere": [0, 65535], "hath inuited him and from the mart he's somewhere gone": [0, 65535], "inuited him and from the mart he's somewhere gone to": [0, 65535], "him and from the mart he's somewhere gone to dinner": [0, 65535], "and from the mart he's somewhere gone to dinner good": [0, 65535], "from the mart he's somewhere gone to dinner good sister": [0, 65535], "the mart he's somewhere gone to dinner good sister let": [0, 65535], "mart he's somewhere gone to dinner good sister let vs": [0, 65535], "he's somewhere gone to dinner good sister let vs dine": [0, 65535], "somewhere gone to dinner good sister let vs dine and": [0, 65535], "gone to dinner good sister let vs dine and neuer": [0, 65535], "to dinner good sister let vs dine and neuer fret": [0, 65535], "dinner good sister let vs dine and neuer fret a": [0, 65535], "good sister let vs dine and neuer fret a man": [0, 65535], "sister let vs dine and neuer fret a man is": [0, 65535], "let vs dine and neuer fret a man is master": [0, 65535], "vs dine and neuer fret a man is master of": [0, 65535], "dine and neuer fret a man is master of his": [0, 65535], "and neuer fret a man is master of his libertie": [0, 65535], "neuer fret a man is master of his libertie time": [0, 65535], "fret a man is master of his libertie time is": [0, 65535], "a man is master of his libertie time is their": [0, 65535], "man is master of his libertie time is their master": [0, 65535], "is master of his libertie time is their master and": [0, 65535], "master of his libertie time is their master and when": [0, 65535], "of his libertie time is their master and when they": [0, 65535], "his libertie time is their master and when they see": [0, 65535], "libertie time is their master and when they see time": [0, 65535], "time is their master and when they see time they'll": [0, 65535], "is their master and when they see time they'll goe": [0, 65535], "their master and when they see time they'll goe or": [0, 65535], "master and when they see time they'll goe or come": [0, 65535], "and when they see time they'll goe or come if": [0, 65535], "when they see time they'll goe or come if so": [0, 65535], "they see time they'll goe or come if so be": [0, 65535], "see time they'll goe or come if so be patient": [0, 65535], "time they'll goe or come if so be patient sister": [0, 65535], "they'll goe or come if so be patient sister adr": [0, 65535], "goe or come if so be patient sister adr why": [0, 65535], "or come if so be patient sister adr why should": [0, 65535], "come if so be patient sister adr why should their": [0, 65535], "if so be patient sister adr why should their libertie": [0, 65535], "so be patient sister adr why should their libertie then": [0, 65535], "be patient sister adr why should their libertie then ours": [0, 65535], "patient sister adr why should their libertie then ours be": [0, 65535], "sister adr why should their libertie then ours be more": [0, 65535], "adr why should their libertie then ours be more luc": [0, 65535], "why should their libertie then ours be more luc because": [0, 65535], "should their libertie then ours be more luc because their": [0, 65535], "their libertie then ours be more luc because their businesse": [0, 65535], "libertie then ours be more luc because their businesse still": [0, 65535], "then ours be more luc because their businesse still lies": [0, 65535], "ours be more luc because their businesse still lies out": [0, 65535], "be more luc because their businesse still lies out a": [0, 65535], "more luc because their businesse still lies out a dore": [0, 65535], "luc because their businesse still lies out a dore adr": [0, 65535], "because their businesse still lies out a dore adr looke": [0, 65535], "their businesse still lies out a dore adr looke when": [0, 65535], "businesse still lies out a dore adr looke when i": [0, 65535], "still lies out a dore adr looke when i serue": [0, 65535], "lies out a dore adr looke when i serue him": [0, 65535], "out a dore adr looke when i serue him so": [0, 65535], "a dore adr looke when i serue him so he": [0, 65535], "dore adr looke when i serue him so he takes": [0, 65535], "adr looke when i serue him so he takes it": [0, 65535], "looke when i serue him so he takes it thus": [0, 65535], "when i serue him so he takes it thus luc": [0, 65535], "i serue him so he takes it thus luc oh": [0, 65535], "serue him so he takes it thus luc oh know": [0, 65535], "him so he takes it thus luc oh know he": [0, 65535], "so he takes it thus luc oh know he is": [0, 65535], "he takes it thus luc oh know he is the": [0, 65535], "takes it thus luc oh know he is the bridle": [0, 65535], "it thus luc oh know he is the bridle of": [0, 65535], "thus luc oh know he is the bridle of your": [0, 65535], "luc oh know he is the bridle of your will": [0, 65535], "oh know he is the bridle of your will adr": [0, 65535], "know he is the bridle of your will adr there's": [0, 65535], "he is the bridle of your will adr there's none": [0, 65535], "is the bridle of your will adr there's none but": [0, 65535], "the bridle of your will adr there's none but asses": [0, 65535], "bridle of your will adr there's none but asses will": [0, 65535], "of your will adr there's none but asses will be": [0, 65535], "your will adr there's none but asses will be bridled": [0, 65535], "will adr there's none but asses will be bridled so": [0, 65535], "adr there's none but asses will be bridled so luc": [0, 65535], "there's none but asses will be bridled so luc why": [0, 65535], "none but asses will be bridled so luc why headstrong": [0, 65535], "but asses will be bridled so luc why headstrong liberty": [0, 65535], "asses will be bridled so luc why headstrong liberty is": [0, 65535], "will be bridled so luc why headstrong liberty is lasht": [0, 65535], "be bridled so luc why headstrong liberty is lasht with": [0, 65535], "bridled so luc why headstrong liberty is lasht with woe": [0, 65535], "so luc why headstrong liberty is lasht with woe there's": [0, 65535], "luc why headstrong liberty is lasht with woe there's nothing": [0, 65535], "why headstrong liberty is lasht with woe there's nothing situate": [0, 65535], "headstrong liberty is lasht with woe there's nothing situate vnder": [0, 65535], "liberty is lasht with woe there's nothing situate vnder heauens": [0, 65535], "is lasht with woe there's nothing situate vnder heauens eye": [0, 65535], "lasht with woe there's nothing situate vnder heauens eye but": [0, 65535], "with woe there's nothing situate vnder heauens eye but hath": [0, 65535], "woe there's nothing situate vnder heauens eye but hath his": [0, 65535], "there's nothing situate vnder heauens eye but hath his bound": [0, 65535], "nothing situate vnder heauens eye but hath his bound in": [0, 65535], "situate vnder heauens eye but hath his bound in earth": [0, 65535], "vnder heauens eye but hath his bound in earth in": [0, 65535], "heauens eye but hath his bound in earth in sea": [0, 65535], "eye but hath his bound in earth in sea in": [0, 65535], "but hath his bound in earth in sea in skie": [0, 65535], "hath his bound in earth in sea in skie the": [0, 65535], "his bound in earth in sea in skie the beasts": [0, 65535], "bound in earth in sea in skie the beasts the": [0, 65535], "in earth in sea in skie the beasts the fishes": [0, 65535], "earth in sea in skie the beasts the fishes and": [0, 65535], "in sea in skie the beasts the fishes and the": [0, 65535], "sea in skie the beasts the fishes and the winged": [0, 65535], "in skie the beasts the fishes and the winged fowles": [0, 65535], "skie the beasts the fishes and the winged fowles are": [0, 65535], "the beasts the fishes and the winged fowles are their": [0, 65535], "beasts the fishes and the winged fowles are their males": [0, 65535], "the fishes and the winged fowles are their males subiects": [0, 65535], "fishes and the winged fowles are their males subiects and": [0, 65535], "and the winged fowles are their males subiects and at": [0, 65535], "the winged fowles are their males subiects and at their": [0, 65535], "winged fowles are their males subiects and at their controules": [0, 65535], "fowles are their males subiects and at their controules man": [0, 65535], "are their males subiects and at their controules man more": [0, 65535], "their males subiects and at their controules man more diuine": [0, 65535], "males subiects and at their controules man more diuine the": [0, 65535], "subiects and at their controules man more diuine the master": [0, 65535], "and at their controules man more diuine the master of": [0, 65535], "at their controules man more diuine the master of all": [0, 65535], "their controules man more diuine the master of all these": [0, 65535], "controules man more diuine the master of all these lord": [0, 65535], "man more diuine the master of all these lord of": [0, 65535], "more diuine the master of all these lord of the": [0, 65535], "diuine the master of all these lord of the wide": [0, 65535], "the master of all these lord of the wide world": [0, 65535], "master of all these lord of the wide world and": [0, 65535], "of all these lord of the wide world and wilde": [0, 65535], "all these lord of the wide world and wilde watry": [0, 65535], "these lord of the wide world and wilde watry seas": [0, 65535], "lord of the wide world and wilde watry seas indued": [0, 65535], "of the wide world and wilde watry seas indued with": [0, 65535], "the wide world and wilde watry seas indued with intellectuall": [0, 65535], "wide world and wilde watry seas indued with intellectuall sence": [0, 65535], "world and wilde watry seas indued with intellectuall sence and": [0, 65535], "and wilde watry seas indued with intellectuall sence and soules": [0, 65535], "wilde watry seas indued with intellectuall sence and soules of": [0, 65535], "watry seas indued with intellectuall sence and soules of more": [0, 65535], "seas indued with intellectuall sence and soules of more preheminence": [0, 65535], "indued with intellectuall sence and soules of more preheminence then": [0, 65535], "with intellectuall sence and soules of more preheminence then fish": [0, 65535], "intellectuall sence and soules of more preheminence then fish and": [0, 65535], "sence and soules of more preheminence then fish and fowles": [0, 65535], "and soules of more preheminence then fish and fowles are": [0, 65535], "soules of more preheminence then fish and fowles are masters": [0, 65535], "of more preheminence then fish and fowles are masters to": [0, 65535], "more preheminence then fish and fowles are masters to their": [0, 65535], "preheminence then fish and fowles are masters to their females": [0, 65535], "then fish and fowles are masters to their females and": [0, 65535], "fish and fowles are masters to their females and their": [0, 65535], "and fowles are masters to their females and their lords": [0, 65535], "fowles are masters to their females and their lords then": [0, 65535], "are masters to their females and their lords then let": [0, 65535], "masters to their females and their lords then let your": [0, 65535], "to their females and their lords then let your will": [0, 65535], "their females and their lords then let your will attend": [0, 65535], "females and their lords then let your will attend on": [0, 65535], "and their lords then let your will attend on their": [0, 65535], "their lords then let your will attend on their accords": [0, 65535], "lords then let your will attend on their accords adri": [0, 65535], "then let your will attend on their accords adri this": [0, 65535], "let your will attend on their accords adri this seruitude": [0, 65535], "your will attend on their accords adri this seruitude makes": [0, 65535], "will attend on their accords adri this seruitude makes you": [0, 65535], "attend on their accords adri this seruitude makes you to": [0, 65535], "on their accords adri this seruitude makes you to keepe": [0, 65535], "their accords adri this seruitude makes you to keepe vnwed": [0, 65535], "accords adri this seruitude makes you to keepe vnwed luci": [0, 65535], "adri this seruitude makes you to keepe vnwed luci not": [0, 65535], "this seruitude makes you to keepe vnwed luci not this": [0, 65535], "seruitude makes you to keepe vnwed luci not this but": [0, 65535], "makes you to keepe vnwed luci not this but troubles": [0, 65535], "you to keepe vnwed luci not this but troubles of": [0, 65535], "to keepe vnwed luci not this but troubles of the": [0, 65535], "keepe vnwed luci not this but troubles of the marriage": [0, 65535], "vnwed luci not this but troubles of the marriage bed": [0, 65535], "luci not this but troubles of the marriage bed adr": [0, 65535], "not this but troubles of the marriage bed adr but": [0, 65535], "this but troubles of the marriage bed adr but were": [0, 65535], "but troubles of the marriage bed adr but were you": [0, 65535], "troubles of the marriage bed adr but were you wedded": [0, 65535], "of the marriage bed adr but were you wedded you": [0, 65535], "the marriage bed adr but were you wedded you wold": [0, 65535], "marriage bed adr but were you wedded you wold bear": [0, 65535], "bed adr but were you wedded you wold bear some": [0, 65535], "adr but were you wedded you wold bear some sway": [0, 65535], "but were you wedded you wold bear some sway luc": [0, 65535], "were you wedded you wold bear some sway luc ere": [0, 65535], "you wedded you wold bear some sway luc ere i": [0, 65535], "wedded you wold bear some sway luc ere i learne": [0, 65535], "you wold bear some sway luc ere i learne loue": [0, 65535], "wold bear some sway luc ere i learne loue ile": [0, 65535], "bear some sway luc ere i learne loue ile practise": [0, 65535], "some sway luc ere i learne loue ile practise to": [0, 65535], "sway luc ere i learne loue ile practise to obey": [0, 65535], "luc ere i learne loue ile practise to obey adr": [0, 65535], "ere i learne loue ile practise to obey adr how": [0, 65535], "i learne loue ile practise to obey adr how if": [0, 65535], "learne loue ile practise to obey adr how if your": [0, 65535], "loue ile practise to obey adr how if your husband": [0, 65535], "ile practise to obey adr how if your husband start": [0, 65535], "practise to obey adr how if your husband start some": [0, 65535], "to obey adr how if your husband start some other": [0, 65535], "obey adr how if your husband start some other where": [0, 65535], "adr how if your husband start some other where luc": [0, 65535], "how if your husband start some other where luc till": [0, 65535], "if your husband start some other where luc till he": [0, 65535], "your husband start some other where luc till he come": [0, 65535], "husband start some other where luc till he come home": [0, 65535], "start some other where luc till he come home againe": [0, 65535], "some other where luc till he come home againe i": [0, 65535], "other where luc till he come home againe i would": [0, 65535], "where luc till he come home againe i would forbeare": [0, 65535], "luc till he come home againe i would forbeare adr": [0, 65535], "till he come home againe i would forbeare adr patience": [0, 65535], "he come home againe i would forbeare adr patience vnmou'd": [0, 65535], "come home againe i would forbeare adr patience vnmou'd no": [0, 65535], "home againe i would forbeare adr patience vnmou'd no maruel": [0, 65535], "againe i would forbeare adr patience vnmou'd no maruel though": [0, 65535], "i would forbeare adr patience vnmou'd no maruel though she": [0, 65535], "would forbeare adr patience vnmou'd no maruel though she pause": [0, 65535], "forbeare adr patience vnmou'd no maruel though she pause they": [0, 65535], "adr patience vnmou'd no maruel though she pause they can": [0, 65535], "patience vnmou'd no maruel though she pause they can be": [0, 65535], "vnmou'd no maruel though she pause they can be meeke": [0, 65535], "no maruel though she pause they can be meeke that": [0, 65535], "maruel though she pause they can be meeke that haue": [0, 65535], "though she pause they can be meeke that haue no": [0, 65535], "she pause they can be meeke that haue no other": [0, 65535], "pause they can be meeke that haue no other cause": [0, 65535], "they can be meeke that haue no other cause a": [0, 65535], "can be meeke that haue no other cause a wretched": [0, 65535], "be meeke that haue no other cause a wretched soule": [0, 65535], "meeke that haue no other cause a wretched soule bruis'd": [0, 65535], "that haue no other cause a wretched soule bruis'd with": [0, 65535], "haue no other cause a wretched soule bruis'd with aduersitie": [0, 65535], "no other cause a wretched soule bruis'd with aduersitie we": [0, 65535], "other cause a wretched soule bruis'd with aduersitie we bid": [0, 65535], "cause a wretched soule bruis'd with aduersitie we bid be": [0, 65535], "a wretched soule bruis'd with aduersitie we bid be quiet": [0, 65535], "wretched soule bruis'd with aduersitie we bid be quiet when": [0, 65535], "soule bruis'd with aduersitie we bid be quiet when we": [0, 65535], "bruis'd with aduersitie we bid be quiet when we heare": [0, 65535], "with aduersitie we bid be quiet when we heare it": [0, 65535], "aduersitie we bid be quiet when we heare it crie": [0, 65535], "we bid be quiet when we heare it crie but": [0, 65535], "bid be quiet when we heare it crie but were": [0, 65535], "be quiet when we heare it crie but were we": [0, 65535], "quiet when we heare it crie but were we burdned": [0, 65535], "when we heare it crie but were we burdned with": [0, 65535], "we heare it crie but were we burdned with like": [0, 65535], "heare it crie but were we burdned with like waight": [0, 65535], "it crie but were we burdned with like waight of": [0, 65535], "crie but were we burdned with like waight of paine": [0, 65535], "but were we burdned with like waight of paine as": [0, 65535], "were we burdned with like waight of paine as much": [0, 65535], "we burdned with like waight of paine as much or": [0, 65535], "burdned with like waight of paine as much or more": [0, 65535], "with like waight of paine as much or more we": [0, 65535], "like waight of paine as much or more we should": [0, 65535], "waight of paine as much or more we should our": [0, 65535], "of paine as much or more we should our selues": [0, 65535], "paine as much or more we should our selues complaine": [0, 65535], "as much or more we should our selues complaine so": [0, 65535], "much or more we should our selues complaine so thou": [0, 65535], "or more we should our selues complaine so thou that": [0, 65535], "more we should our selues complaine so thou that hast": [0, 65535], "we should our selues complaine so thou that hast no": [0, 65535], "should our selues complaine so thou that hast no vnkinde": [0, 65535], "our selues complaine so thou that hast no vnkinde mate": [0, 65535], "selues complaine so thou that hast no vnkinde mate to": [0, 65535], "complaine so thou that hast no vnkinde mate to greeue": [0, 65535], "so thou that hast no vnkinde mate to greeue thee": [0, 65535], "thou that hast no vnkinde mate to greeue thee with": [0, 65535], "that hast no vnkinde mate to greeue thee with vrging": [0, 65535], "hast no vnkinde mate to greeue thee with vrging helpelesse": [0, 65535], "no vnkinde mate to greeue thee with vrging helpelesse patience": [0, 65535], "vnkinde mate to greeue thee with vrging helpelesse patience would": [0, 65535], "mate to greeue thee with vrging helpelesse patience would releeue": [0, 65535], "to greeue thee with vrging helpelesse patience would releeue me": [0, 65535], "greeue thee with vrging helpelesse patience would releeue me but": [0, 65535], "thee with vrging helpelesse patience would releeue me but if": [0, 65535], "with vrging helpelesse patience would releeue me but if thou": [0, 65535], "vrging helpelesse patience would releeue me but if thou liue": [0, 65535], "helpelesse patience would releeue me but if thou liue to": [0, 65535], "patience would releeue me but if thou liue to see": [0, 65535], "would releeue me but if thou liue to see like": [0, 65535], "releeue me but if thou liue to see like right": [0, 65535], "me but if thou liue to see like right bereft": [0, 65535], "but if thou liue to see like right bereft this": [0, 65535], "if thou liue to see like right bereft this foole": [0, 65535], "thou liue to see like right bereft this foole beg'd": [0, 65535], "liue to see like right bereft this foole beg'd patience": [0, 65535], "to see like right bereft this foole beg'd patience in": [0, 65535], "see like right bereft this foole beg'd patience in thee": [0, 65535], "like right bereft this foole beg'd patience in thee will": [0, 65535], "right bereft this foole beg'd patience in thee will be": [0, 65535], "bereft this foole beg'd patience in thee will be left": [0, 65535], "this foole beg'd patience in thee will be left luci": [0, 65535], "foole beg'd patience in thee will be left luci well": [0, 65535], "beg'd patience in thee will be left luci well i": [0, 65535], "patience in thee will be left luci well i will": [0, 65535], "in thee will be left luci well i will marry": [0, 65535], "thee will be left luci well i will marry one": [0, 65535], "will be left luci well i will marry one day": [0, 65535], "be left luci well i will marry one day but": [0, 65535], "left luci well i will marry one day but to": [0, 65535], "luci well i will marry one day but to trie": [0, 65535], "well i will marry one day but to trie heere": [0, 65535], "i will marry one day but to trie heere comes": [0, 65535], "will marry one day but to trie heere comes your": [0, 65535], "marry one day but to trie heere comes your man": [0, 65535], "one day but to trie heere comes your man now": [0, 65535], "day but to trie heere comes your man now is": [0, 65535], "but to trie heere comes your man now is your": [0, 65535], "to trie heere comes your man now is your husband": [0, 65535], "trie heere comes your man now is your husband nie": [0, 65535], "heere comes your man now is your husband nie enter": [0, 65535], "comes your man now is your husband nie enter dromio": [0, 65535], "your man now is your husband nie enter dromio eph": [0, 65535], "man now is your husband nie enter dromio eph adr": [0, 65535], "now is your husband nie enter dromio eph adr say": [0, 65535], "is your husband nie enter dromio eph adr say is": [0, 65535], "your husband nie enter dromio eph adr say is your": [0, 65535], "husband nie enter dromio eph adr say is your tardie": [0, 65535], "nie enter dromio eph adr say is your tardie master": [0, 65535], "enter dromio eph adr say is your tardie master now": [0, 65535], "dromio eph adr say is your tardie master now at": [0, 65535], "eph adr say is your tardie master now at hand": [0, 65535], "adr say is your tardie master now at hand e": [0, 65535], "say is your tardie master now at hand e dro": [0, 65535], "is your tardie master now at hand e dro nay": [0, 65535], "your tardie master now at hand e dro nay hee's": [0, 65535], "tardie master now at hand e dro nay hee's at": [0, 65535], "master now at hand e dro nay hee's at too": [0, 65535], "now at hand e dro nay hee's at too hands": [0, 65535], "at hand e dro nay hee's at too hands with": [0, 65535], "hand e dro nay hee's at too hands with mee": [0, 65535], "e dro nay hee's at too hands with mee and": [0, 65535], "dro nay hee's at too hands with mee and that": [0, 65535], "nay hee's at too hands with mee and that my": [0, 65535], "hee's at too hands with mee and that my two": [0, 65535], "at too hands with mee and that my two eares": [0, 65535], "too hands with mee and that my two eares can": [0, 65535], "hands with mee and that my two eares can witnesse": [0, 65535], "with mee and that my two eares can witnesse adr": [0, 65535], "mee and that my two eares can witnesse adr say": [0, 65535], "and that my two eares can witnesse adr say didst": [0, 65535], "that my two eares can witnesse adr say didst thou": [0, 65535], "my two eares can witnesse adr say didst thou speake": [0, 65535], "two eares can witnesse adr say didst thou speake with": [0, 65535], "eares can witnesse adr say didst thou speake with him": [0, 65535], "can witnesse adr say didst thou speake with him knowst": [0, 65535], "witnesse adr say didst thou speake with him knowst thou": [0, 65535], "adr say didst thou speake with him knowst thou his": [0, 65535], "say didst thou speake with him knowst thou his minde": [0, 65535], "didst thou speake with him knowst thou his minde e": [0, 65535], "thou speake with him knowst thou his minde e dro": [0, 65535], "speake with him knowst thou his minde e dro i": [0, 65535], "with him knowst thou his minde e dro i i": [0, 65535], "him knowst thou his minde e dro i i he": [0, 65535], "knowst thou his minde e dro i i he told": [0, 65535], "thou his minde e dro i i he told his": [0, 65535], "his minde e dro i i he told his minde": [0, 65535], "minde e dro i i he told his minde vpon": [0, 65535], "e dro i i he told his minde vpon mine": [0, 65535], "dro i i he told his minde vpon mine eare": [0, 65535], "i i he told his minde vpon mine eare beshrew": [0, 65535], "i he told his minde vpon mine eare beshrew his": [0, 65535], "he told his minde vpon mine eare beshrew his hand": [0, 65535], "told his minde vpon mine eare beshrew his hand i": [0, 65535], "his minde vpon mine eare beshrew his hand i scarce": [0, 65535], "minde vpon mine eare beshrew his hand i scarce could": [0, 65535], "vpon mine eare beshrew his hand i scarce could vnderstand": [0, 65535], "mine eare beshrew his hand i scarce could vnderstand it": [0, 65535], "eare beshrew his hand i scarce could vnderstand it luc": [0, 65535], "beshrew his hand i scarce could vnderstand it luc spake": [0, 65535], "his hand i scarce could vnderstand it luc spake hee": [0, 65535], "hand i scarce could vnderstand it luc spake hee so": [0, 65535], "i scarce could vnderstand it luc spake hee so doubtfully": [0, 65535], "scarce could vnderstand it luc spake hee so doubtfully thou": [0, 65535], "could vnderstand it luc spake hee so doubtfully thou couldst": [0, 65535], "vnderstand it luc spake hee so doubtfully thou couldst not": [0, 65535], "it luc spake hee so doubtfully thou couldst not feele": [0, 65535], "luc spake hee so doubtfully thou couldst not feele his": [0, 65535], "spake hee so doubtfully thou couldst not feele his meaning": [0, 65535], "hee so doubtfully thou couldst not feele his meaning e": [0, 65535], "so doubtfully thou couldst not feele his meaning e dro": [0, 65535], "doubtfully thou couldst not feele his meaning e dro nay": [0, 65535], "thou couldst not feele his meaning e dro nay hee": [0, 65535], "couldst not feele his meaning e dro nay hee strooke": [0, 65535], "not feele his meaning e dro nay hee strooke so": [0, 65535], "feele his meaning e dro nay hee strooke so plainly": [0, 65535], "his meaning e dro nay hee strooke so plainly i": [0, 65535], "meaning e dro nay hee strooke so plainly i could": [0, 65535], "e dro nay hee strooke so plainly i could too": [0, 65535], "dro nay hee strooke so plainly i could too well": [0, 65535], "nay hee strooke so plainly i could too well feele": [0, 65535], "hee strooke so plainly i could too well feele his": [0, 65535], "strooke so plainly i could too well feele his blowes": [0, 65535], "so plainly i could too well feele his blowes and": [0, 65535], "plainly i could too well feele his blowes and withall": [0, 65535], "i could too well feele his blowes and withall so": [0, 65535], "could too well feele his blowes and withall so doubtfully": [0, 65535], "too well feele his blowes and withall so doubtfully that": [0, 65535], "well feele his blowes and withall so doubtfully that i": [0, 65535], "feele his blowes and withall so doubtfully that i could": [0, 65535], "his blowes and withall so doubtfully that i could scarce": [0, 65535], "blowes and withall so doubtfully that i could scarce vnderstand": [0, 65535], "and withall so doubtfully that i could scarce vnderstand them": [0, 65535], "withall so doubtfully that i could scarce vnderstand them adri": [0, 65535], "so doubtfully that i could scarce vnderstand them adri but": [0, 65535], "doubtfully that i could scarce vnderstand them adri but say": [0, 65535], "that i could scarce vnderstand them adri but say i": [0, 65535], "i could scarce vnderstand them adri but say i prethee": [0, 65535], "could scarce vnderstand them adri but say i prethee is": [0, 65535], "scarce vnderstand them adri but say i prethee is he": [0, 65535], "vnderstand them adri but say i prethee is he comming": [0, 65535], "them adri but say i prethee is he comming home": [0, 65535], "adri but say i prethee is he comming home it": [0, 65535], "but say i prethee is he comming home it seemes": [0, 65535], "say i prethee is he comming home it seemes he": [0, 65535], "i prethee is he comming home it seemes he hath": [0, 65535], "prethee is he comming home it seemes he hath great": [0, 65535], "is he comming home it seemes he hath great care": [0, 65535], "he comming home it seemes he hath great care to": [0, 65535], "comming home it seemes he hath great care to please": [0, 65535], "home it seemes he hath great care to please his": [0, 65535], "it seemes he hath great care to please his wife": [0, 65535], "seemes he hath great care to please his wife e": [0, 65535], "he hath great care to please his wife e dro": [0, 65535], "hath great care to please his wife e dro why": [0, 65535], "great care to please his wife e dro why mistresse": [0, 65535], "care to please his wife e dro why mistresse sure": [0, 65535], "to please his wife e dro why mistresse sure my": [0, 65535], "please his wife e dro why mistresse sure my master": [0, 65535], "his wife e dro why mistresse sure my master is": [0, 65535], "wife e dro why mistresse sure my master is horne": [0, 65535], "e dro why mistresse sure my master is horne mad": [0, 65535], "dro why mistresse sure my master is horne mad adri": [0, 65535], "why mistresse sure my master is horne mad adri horne": [0, 65535], "mistresse sure my master is horne mad adri horne mad": [0, 65535], "sure my master is horne mad adri horne mad thou": [0, 65535], "my master is horne mad adri horne mad thou villaine": [0, 65535], "master is horne mad adri horne mad thou villaine e": [0, 65535], "is horne mad adri horne mad thou villaine e dro": [0, 65535], "horne mad adri horne mad thou villaine e dro i": [0, 65535], "mad adri horne mad thou villaine e dro i meane": [0, 65535], "adri horne mad thou villaine e dro i meane not": [0, 65535], "horne mad thou villaine e dro i meane not cuckold": [0, 65535], "mad thou villaine e dro i meane not cuckold mad": [0, 65535], "thou villaine e dro i meane not cuckold mad but": [0, 65535], "villaine e dro i meane not cuckold mad but sure": [0, 65535], "e dro i meane not cuckold mad but sure he": [0, 65535], "dro i meane not cuckold mad but sure he is": [0, 65535], "i meane not cuckold mad but sure he is starke": [0, 65535], "meane not cuckold mad but sure he is starke mad": [0, 65535], "not cuckold mad but sure he is starke mad when": [0, 65535], "cuckold mad but sure he is starke mad when i": [0, 65535], "mad but sure he is starke mad when i desir'd": [0, 65535], "but sure he is starke mad when i desir'd him": [0, 65535], "sure he is starke mad when i desir'd him to": [0, 65535], "he is starke mad when i desir'd him to come": [0, 65535], "is starke mad when i desir'd him to come home": [0, 65535], "starke mad when i desir'd him to come home to": [0, 65535], "mad when i desir'd him to come home to dinner": [0, 65535], "when i desir'd him to come home to dinner he": [0, 65535], "i desir'd him to come home to dinner he ask'd": [0, 65535], "desir'd him to come home to dinner he ask'd me": [0, 65535], "him to come home to dinner he ask'd me for": [0, 65535], "to come home to dinner he ask'd me for a": [0, 65535], "come home to dinner he ask'd me for a hundred": [0, 65535], "home to dinner he ask'd me for a hundred markes": [0, 65535], "to dinner he ask'd me for a hundred markes in": [0, 65535], "dinner he ask'd me for a hundred markes in gold": [0, 65535], "he ask'd me for a hundred markes in gold 'tis": [0, 65535], "ask'd me for a hundred markes in gold 'tis dinner": [0, 65535], "me for a hundred markes in gold 'tis dinner time": [0, 65535], "for a hundred markes in gold 'tis dinner time quoth": [0, 65535], "a hundred markes in gold 'tis dinner time quoth i": [0, 65535], "hundred markes in gold 'tis dinner time quoth i my": [0, 65535], "markes in gold 'tis dinner time quoth i my gold": [0, 65535], "in gold 'tis dinner time quoth i my gold quoth": [0, 65535], "gold 'tis dinner time quoth i my gold quoth he": [0, 65535], "'tis dinner time quoth i my gold quoth he your": [0, 65535], "dinner time quoth i my gold quoth he your meat": [0, 65535], "time quoth i my gold quoth he your meat doth": [0, 65535], "quoth i my gold quoth he your meat doth burne": [0, 65535], "i my gold quoth he your meat doth burne quoth": [0, 65535], "my gold quoth he your meat doth burne quoth i": [0, 65535], "gold quoth he your meat doth burne quoth i my": [0, 65535], "quoth he your meat doth burne quoth i my gold": [0, 65535], "he your meat doth burne quoth i my gold quoth": [0, 65535], "your meat doth burne quoth i my gold quoth he": [0, 65535], "meat doth burne quoth i my gold quoth he will": [0, 65535], "doth burne quoth i my gold quoth he will you": [0, 65535], "burne quoth i my gold quoth he will you come": [0, 65535], "quoth i my gold quoth he will you come quoth": [0, 65535], "i my gold quoth he will you come quoth i": [0, 65535], "my gold quoth he will you come quoth i my": [0, 65535], "gold quoth he will you come quoth i my gold": [0, 65535], "quoth he will you come quoth i my gold quoth": [0, 65535], "he will you come quoth i my gold quoth he": [0, 65535], "will you come quoth i my gold quoth he where": [0, 65535], "you come quoth i my gold quoth he where is": [0, 65535], "come quoth i my gold quoth he where is the": [0, 65535], "quoth i my gold quoth he where is the thousand": [0, 65535], "i my gold quoth he where is the thousand markes": [0, 65535], "my gold quoth he where is the thousand markes i": [0, 65535], "gold quoth he where is the thousand markes i gaue": [0, 65535], "quoth he where is the thousand markes i gaue thee": [0, 65535], "he where is the thousand markes i gaue thee villaine": [0, 65535], "where is the thousand markes i gaue thee villaine the": [0, 65535], "is the thousand markes i gaue thee villaine the pigge": [0, 65535], "the thousand markes i gaue thee villaine the pigge quoth": [0, 65535], "thousand markes i gaue thee villaine the pigge quoth i": [0, 65535], "markes i gaue thee villaine the pigge quoth i is": [0, 65535], "i gaue thee villaine the pigge quoth i is burn'd": [0, 65535], "gaue thee villaine the pigge quoth i is burn'd my": [0, 65535], "thee villaine the pigge quoth i is burn'd my gold": [0, 65535], "villaine the pigge quoth i is burn'd my gold quoth": [0, 65535], "the pigge quoth i is burn'd my gold quoth he": [0, 65535], "pigge quoth i is burn'd my gold quoth he my": [0, 65535], "quoth i is burn'd my gold quoth he my mistresse": [0, 65535], "i is burn'd my gold quoth he my mistresse sir": [0, 65535], "is burn'd my gold quoth he my mistresse sir quoth": [0, 65535], "burn'd my gold quoth he my mistresse sir quoth i": [0, 65535], "my gold quoth he my mistresse sir quoth i hang": [0, 65535], "gold quoth he my mistresse sir quoth i hang vp": [0, 65535], "quoth he my mistresse sir quoth i hang vp thy": [0, 65535], "he my mistresse sir quoth i hang vp thy mistresse": [0, 65535], "my mistresse sir quoth i hang vp thy mistresse i": [0, 65535], "mistresse sir quoth i hang vp thy mistresse i know": [0, 65535], "sir quoth i hang vp thy mistresse i know not": [0, 65535], "quoth i hang vp thy mistresse i know not thy": [0, 65535], "i hang vp thy mistresse i know not thy mistresse": [0, 65535], "hang vp thy mistresse i know not thy mistresse out": [0, 65535], "vp thy mistresse i know not thy mistresse out on": [0, 65535], "thy mistresse i know not thy mistresse out on thy": [0, 65535], "mistresse i know not thy mistresse out on thy mistresse": [0, 65535], "i know not thy mistresse out on thy mistresse luci": [0, 65535], "know not thy mistresse out on thy mistresse luci quoth": [0, 65535], "not thy mistresse out on thy mistresse luci quoth who": [0, 65535], "thy mistresse out on thy mistresse luci quoth who e": [0, 65535], "mistresse out on thy mistresse luci quoth who e dr": [0, 65535], "out on thy mistresse luci quoth who e dr quoth": [0, 65535], "on thy mistresse luci quoth who e dr quoth my": [0, 65535], "thy mistresse luci quoth who e dr quoth my master": [0, 65535], "mistresse luci quoth who e dr quoth my master i": [0, 65535], "luci quoth who e dr quoth my master i know": [0, 65535], "quoth who e dr quoth my master i know quoth": [0, 65535], "who e dr quoth my master i know quoth he": [0, 65535], "e dr quoth my master i know quoth he no": [0, 65535], "dr quoth my master i know quoth he no house": [0, 65535], "quoth my master i know quoth he no house no": [0, 65535], "my master i know quoth he no house no wife": [0, 65535], "master i know quoth he no house no wife no": [0, 65535], "i know quoth he no house no wife no mistresse": [0, 65535], "know quoth he no house no wife no mistresse so": [0, 65535], "quoth he no house no wife no mistresse so that": [0, 65535], "he no house no wife no mistresse so that my": [0, 65535], "no house no wife no mistresse so that my arrant": [0, 65535], "house no wife no mistresse so that my arrant due": [0, 65535], "no wife no mistresse so that my arrant due vnto": [0, 65535], "wife no mistresse so that my arrant due vnto my": [0, 65535], "no mistresse so that my arrant due vnto my tongue": [0, 65535], "mistresse so that my arrant due vnto my tongue i": [0, 65535], "so that my arrant due vnto my tongue i thanke": [0, 65535], "that my arrant due vnto my tongue i thanke him": [0, 65535], "my arrant due vnto my tongue i thanke him i": [0, 65535], "arrant due vnto my tongue i thanke him i bare": [0, 65535], "due vnto my tongue i thanke him i bare home": [0, 65535], "vnto my tongue i thanke him i bare home vpon": [0, 65535], "my tongue i thanke him i bare home vpon my": [0, 65535], "tongue i thanke him i bare home vpon my shoulders": [0, 65535], "i thanke him i bare home vpon my shoulders for": [0, 65535], "thanke him i bare home vpon my shoulders for in": [0, 65535], "him i bare home vpon my shoulders for in conclusion": [0, 65535], "i bare home vpon my shoulders for in conclusion he": [0, 65535], "bare home vpon my shoulders for in conclusion he did": [0, 65535], "home vpon my shoulders for in conclusion he did beat": [0, 65535], "vpon my shoulders for in conclusion he did beat me": [0, 65535], "my shoulders for in conclusion he did beat me there": [0, 65535], "shoulders for in conclusion he did beat me there adri": [0, 65535], "for in conclusion he did beat me there adri go": [0, 65535], "in conclusion he did beat me there adri go back": [0, 65535], "conclusion he did beat me there adri go back againe": [0, 65535], "he did beat me there adri go back againe thou": [0, 65535], "did beat me there adri go back againe thou slaue": [0, 65535], "beat me there adri go back againe thou slaue fetch": [0, 65535], "me there adri go back againe thou slaue fetch him": [0, 65535], "there adri go back againe thou slaue fetch him home": [0, 65535], "adri go back againe thou slaue fetch him home dro": [0, 65535], "go back againe thou slaue fetch him home dro goe": [0, 65535], "back againe thou slaue fetch him home dro goe backe": [0, 65535], "againe thou slaue fetch him home dro goe backe againe": [0, 65535], "thou slaue fetch him home dro goe backe againe and": [0, 65535], "slaue fetch him home dro goe backe againe and be": [0, 65535], "fetch him home dro goe backe againe and be new": [0, 65535], "him home dro goe backe againe and be new beaten": [0, 65535], "home dro goe backe againe and be new beaten home": [0, 65535], "dro goe backe againe and be new beaten home for": [0, 65535], "goe backe againe and be new beaten home for gods": [0, 65535], "backe againe and be new beaten home for gods sake": [0, 65535], "againe and be new beaten home for gods sake send": [0, 65535], "and be new beaten home for gods sake send some": [0, 65535], "be new beaten home for gods sake send some other": [0, 65535], "new beaten home for gods sake send some other messenger": [0, 65535], "beaten home for gods sake send some other messenger adri": [0, 65535], "home for gods sake send some other messenger adri backe": [0, 65535], "for gods sake send some other messenger adri backe slaue": [0, 65535], "gods sake send some other messenger adri backe slaue or": [0, 65535], "sake send some other messenger adri backe slaue or i": [0, 65535], "send some other messenger adri backe slaue or i will": [0, 65535], "some other messenger adri backe slaue or i will breake": [0, 65535], "other messenger adri backe slaue or i will breake thy": [0, 65535], "messenger adri backe slaue or i will breake thy pate": [0, 65535], "adri backe slaue or i will breake thy pate a": [0, 65535], "backe slaue or i will breake thy pate a crosse": [0, 65535], "slaue or i will breake thy pate a crosse dro": [0, 65535], "or i will breake thy pate a crosse dro and": [0, 65535], "i will breake thy pate a crosse dro and he": [0, 65535], "will breake thy pate a crosse dro and he will": [0, 65535], "breake thy pate a crosse dro and he will blesse": [0, 65535], "thy pate a crosse dro and he will blesse the": [0, 65535], "pate a crosse dro and he will blesse the crosse": [0, 65535], "a crosse dro and he will blesse the crosse with": [0, 65535], "crosse dro and he will blesse the crosse with other": [0, 65535], "dro and he will blesse the crosse with other beating": [0, 65535], "and he will blesse the crosse with other beating betweene": [0, 65535], "he will blesse the crosse with other beating betweene you": [0, 65535], "will blesse the crosse with other beating betweene you i": [0, 65535], "blesse the crosse with other beating betweene you i shall": [0, 65535], "the crosse with other beating betweene you i shall haue": [0, 65535], "crosse with other beating betweene you i shall haue a": [0, 65535], "with other beating betweene you i shall haue a holy": [0, 65535], "other beating betweene you i shall haue a holy head": [0, 65535], "beating betweene you i shall haue a holy head adri": [0, 65535], "betweene you i shall haue a holy head adri hence": [0, 65535], "you i shall haue a holy head adri hence prating": [0, 65535], "i shall haue a holy head adri hence prating pesant": [0, 65535], "shall haue a holy head adri hence prating pesant fetch": [0, 65535], "haue a holy head adri hence prating pesant fetch thy": [0, 65535], "a holy head adri hence prating pesant fetch thy master": [0, 65535], "holy head adri hence prating pesant fetch thy master home": [0, 65535], "head adri hence prating pesant fetch thy master home dro": [0, 65535], "adri hence prating pesant fetch thy master home dro am": [0, 65535], "hence prating pesant fetch thy master home dro am i": [0, 65535], "prating pesant fetch thy master home dro am i so": [0, 65535], "pesant fetch thy master home dro am i so round": [0, 65535], "fetch thy master home dro am i so round with": [0, 65535], "thy master home dro am i so round with you": [0, 65535], "master home dro am i so round with you as": [0, 65535], "home dro am i so round with you as you": [0, 65535], "dro am i so round with you as you with": [0, 65535], "am i so round with you as you with me": [0, 65535], "i so round with you as you with me that": [0, 65535], "so round with you as you with me that like": [0, 65535], "round with you as you with me that like a": [0, 65535], "with you as you with me that like a foot": [0, 65535], "you as you with me that like a foot ball": [0, 65535], "as you with me that like a foot ball you": [0, 65535], "you with me that like a foot ball you doe": [0, 65535], "with me that like a foot ball you doe spurne": [0, 65535], "me that like a foot ball you doe spurne me": [0, 65535], "that like a foot ball you doe spurne me thus": [0, 65535], "like a foot ball you doe spurne me thus you": [0, 65535], "a foot ball you doe spurne me thus you spurne": [0, 65535], "foot ball you doe spurne me thus you spurne me": [0, 65535], "ball you doe spurne me thus you spurne me hence": [0, 65535], "you doe spurne me thus you spurne me hence and": [0, 65535], "doe spurne me thus you spurne me hence and he": [0, 65535], "spurne me thus you spurne me hence and he will": [0, 65535], "me thus you spurne me hence and he will spurne": [0, 65535], "thus you spurne me hence and he will spurne me": [0, 65535], "you spurne me hence and he will spurne me hither": [0, 65535], "spurne me hence and he will spurne me hither if": [0, 65535], "me hence and he will spurne me hither if i": [0, 65535], "hence and he will spurne me hither if i last": [0, 65535], "and he will spurne me hither if i last in": [0, 65535], "he will spurne me hither if i last in this": [0, 65535], "will spurne me hither if i last in this seruice": [0, 65535], "spurne me hither if i last in this seruice you": [0, 65535], "me hither if i last in this seruice you must": [0, 65535], "hither if i last in this seruice you must case": [0, 65535], "if i last in this seruice you must case me": [0, 65535], "i last in this seruice you must case me in": [0, 65535], "last in this seruice you must case me in leather": [0, 65535], "in this seruice you must case me in leather luci": [0, 65535], "this seruice you must case me in leather luci fie": [0, 65535], "seruice you must case me in leather luci fie how": [0, 65535], "you must case me in leather luci fie how impatience": [0, 65535], "must case me in leather luci fie how impatience lowreth": [0, 65535], "case me in leather luci fie how impatience lowreth in": [0, 65535], "me in leather luci fie how impatience lowreth in your": [0, 65535], "in leather luci fie how impatience lowreth in your face": [0, 65535], "leather luci fie how impatience lowreth in your face adri": [0, 65535], "luci fie how impatience lowreth in your face adri his": [0, 65535], "fie how impatience lowreth in your face adri his company": [0, 65535], "how impatience lowreth in your face adri his company must": [0, 65535], "impatience lowreth in your face adri his company must do": [0, 65535], "lowreth in your face adri his company must do his": [0, 65535], "in your face adri his company must do his minions": [0, 65535], "your face adri his company must do his minions grace": [0, 65535], "face adri his company must do his minions grace whil'st": [0, 65535], "adri his company must do his minions grace whil'st i": [0, 65535], "his company must do his minions grace whil'st i at": [0, 65535], "company must do his minions grace whil'st i at home": [0, 65535], "must do his minions grace whil'st i at home starue": [0, 65535], "do his minions grace whil'st i at home starue for": [0, 65535], "his minions grace whil'st i at home starue for a": [0, 65535], "minions grace whil'st i at home starue for a merrie": [0, 65535], "grace whil'st i at home starue for a merrie looke": [0, 65535], "whil'st i at home starue for a merrie looke hath": [0, 65535], "i at home starue for a merrie looke hath homelie": [0, 65535], "at home starue for a merrie looke hath homelie age": [0, 65535], "home starue for a merrie looke hath homelie age th'": [0, 65535], "starue for a merrie looke hath homelie age th' alluring": [0, 65535], "for a merrie looke hath homelie age th' alluring beauty": [0, 65535], "a merrie looke hath homelie age th' alluring beauty tooke": [0, 65535], "merrie looke hath homelie age th' alluring beauty tooke from": [0, 65535], "looke hath homelie age th' alluring beauty tooke from my": [0, 65535], "hath homelie age th' alluring beauty tooke from my poore": [0, 65535], "homelie age th' alluring beauty tooke from my poore cheeke": [0, 65535], "age th' alluring beauty tooke from my poore cheeke then": [0, 65535], "th' alluring beauty tooke from my poore cheeke then he": [0, 65535], "alluring beauty tooke from my poore cheeke then he hath": [0, 65535], "beauty tooke from my poore cheeke then he hath wasted": [0, 65535], "tooke from my poore cheeke then he hath wasted it": [0, 65535], "from my poore cheeke then he hath wasted it are": [0, 65535], "my poore cheeke then he hath wasted it are my": [0, 65535], "poore cheeke then he hath wasted it are my discourses": [0, 65535], "cheeke then he hath wasted it are my discourses dull": [0, 65535], "then he hath wasted it are my discourses dull barren": [0, 65535], "he hath wasted it are my discourses dull barren my": [0, 65535], "hath wasted it are my discourses dull barren my wit": [0, 65535], "wasted it are my discourses dull barren my wit if": [0, 65535], "it are my discourses dull barren my wit if voluble": [0, 65535], "are my discourses dull barren my wit if voluble and": [0, 65535], "my discourses dull barren my wit if voluble and sharpe": [0, 65535], "discourses dull barren my wit if voluble and sharpe discourse": [0, 65535], "dull barren my wit if voluble and sharpe discourse be": [0, 65535], "barren my wit if voluble and sharpe discourse be mar'd": [0, 65535], "my wit if voluble and sharpe discourse be mar'd vnkindnesse": [0, 65535], "wit if voluble and sharpe discourse be mar'd vnkindnesse blunts": [0, 65535], "if voluble and sharpe discourse be mar'd vnkindnesse blunts it": [0, 65535], "voluble and sharpe discourse be mar'd vnkindnesse blunts it more": [0, 65535], "and sharpe discourse be mar'd vnkindnesse blunts it more then": [0, 65535], "sharpe discourse be mar'd vnkindnesse blunts it more then marble": [0, 65535], "discourse be mar'd vnkindnesse blunts it more then marble hard": [0, 65535], "be mar'd vnkindnesse blunts it more then marble hard doe": [0, 65535], "mar'd vnkindnesse blunts it more then marble hard doe their": [0, 65535], "vnkindnesse blunts it more then marble hard doe their gay": [0, 65535], "blunts it more then marble hard doe their gay vestments": [0, 65535], "it more then marble hard doe their gay vestments his": [0, 65535], "more then marble hard doe their gay vestments his affections": [0, 65535], "then marble hard doe their gay vestments his affections baite": [0, 65535], "marble hard doe their gay vestments his affections baite that's": [0, 65535], "hard doe their gay vestments his affections baite that's not": [0, 65535], "doe their gay vestments his affections baite that's not my": [0, 65535], "their gay vestments his affections baite that's not my fault": [0, 65535], "gay vestments his affections baite that's not my fault hee's": [0, 65535], "vestments his affections baite that's not my fault hee's master": [0, 65535], "his affections baite that's not my fault hee's master of": [0, 65535], "affections baite that's not my fault hee's master of my": [0, 65535], "baite that's not my fault hee's master of my state": [0, 65535], "that's not my fault hee's master of my state what": [0, 65535], "not my fault hee's master of my state what ruines": [0, 65535], "my fault hee's master of my state what ruines are": [0, 65535], "fault hee's master of my state what ruines are in": [0, 65535], "hee's master of my state what ruines are in me": [0, 65535], "master of my state what ruines are in me that": [0, 65535], "of my state what ruines are in me that can": [0, 65535], "my state what ruines are in me that can be": [0, 65535], "state what ruines are in me that can be found": [0, 65535], "what ruines are in me that can be found by": [0, 65535], "ruines are in me that can be found by him": [0, 65535], "are in me that can be found by him not": [0, 65535], "in me that can be found by him not ruin'd": [0, 65535], "me that can be found by him not ruin'd then": [0, 65535], "that can be found by him not ruin'd then is": [0, 65535], "can be found by him not ruin'd then is he": [0, 65535], "be found by him not ruin'd then is he the": [0, 65535], "found by him not ruin'd then is he the ground": [0, 65535], "by him not ruin'd then is he the ground of": [0, 65535], "him not ruin'd then is he the ground of my": [0, 65535], "not ruin'd then is he the ground of my defeatures": [0, 65535], "ruin'd then is he the ground of my defeatures my": [0, 65535], "then is he the ground of my defeatures my decayed": [0, 65535], "is he the ground of my defeatures my decayed faire": [0, 65535], "he the ground of my defeatures my decayed faire a": [0, 65535], "the ground of my defeatures my decayed faire a sunnie": [0, 65535], "ground of my defeatures my decayed faire a sunnie looke": [0, 65535], "of my defeatures my decayed faire a sunnie looke of": [0, 65535], "my defeatures my decayed faire a sunnie looke of his": [0, 65535], "defeatures my decayed faire a sunnie looke of his would": [0, 65535], "my decayed faire a sunnie looke of his would soone": [0, 65535], "decayed faire a sunnie looke of his would soone repaire": [0, 65535], "faire a sunnie looke of his would soone repaire but": [0, 65535], "a sunnie looke of his would soone repaire but too": [0, 65535], "sunnie looke of his would soone repaire but too vnruly": [0, 65535], "looke of his would soone repaire but too vnruly deere": [0, 65535], "of his would soone repaire but too vnruly deere he": [0, 65535], "his would soone repaire but too vnruly deere he breakes": [0, 65535], "would soone repaire but too vnruly deere he breakes the": [0, 65535], "soone repaire but too vnruly deere he breakes the pale": [0, 65535], "repaire but too vnruly deere he breakes the pale and": [0, 65535], "but too vnruly deere he breakes the pale and feedes": [0, 65535], "too vnruly deere he breakes the pale and feedes from": [0, 65535], "vnruly deere he breakes the pale and feedes from home": [0, 65535], "deere he breakes the pale and feedes from home poore": [0, 65535], "he breakes the pale and feedes from home poore i": [0, 65535], "breakes the pale and feedes from home poore i am": [0, 65535], "the pale and feedes from home poore i am but": [0, 65535], "pale and feedes from home poore i am but his": [0, 65535], "and feedes from home poore i am but his stale": [0, 65535], "feedes from home poore i am but his stale luci": [0, 65535], "from home poore i am but his stale luci selfe": [0, 65535], "home poore i am but his stale luci selfe harming": [0, 65535], "poore i am but his stale luci selfe harming iealousie": [0, 65535], "i am but his stale luci selfe harming iealousie fie": [0, 65535], "am but his stale luci selfe harming iealousie fie beat": [0, 65535], "but his stale luci selfe harming iealousie fie beat it": [0, 65535], "his stale luci selfe harming iealousie fie beat it hence": [0, 65535], "stale luci selfe harming iealousie fie beat it hence ad": [0, 65535], "luci selfe harming iealousie fie beat it hence ad vnfeeling": [0, 65535], "selfe harming iealousie fie beat it hence ad vnfeeling fools": [0, 65535], "harming iealousie fie beat it hence ad vnfeeling fools can": [0, 65535], "iealousie fie beat it hence ad vnfeeling fools can with": [0, 65535], "fie beat it hence ad vnfeeling fools can with such": [0, 65535], "beat it hence ad vnfeeling fools can with such wrongs": [0, 65535], "it hence ad vnfeeling fools can with such wrongs dispence": [0, 65535], "hence ad vnfeeling fools can with such wrongs dispence i": [0, 65535], "ad vnfeeling fools can with such wrongs dispence i know": [0, 65535], "vnfeeling fools can with such wrongs dispence i know his": [0, 65535], "fools can with such wrongs dispence i know his eye": [0, 65535], "can with such wrongs dispence i know his eye doth": [0, 65535], "with such wrongs dispence i know his eye doth homage": [0, 65535], "such wrongs dispence i know his eye doth homage other": [0, 65535], "wrongs dispence i know his eye doth homage other where": [0, 65535], "dispence i know his eye doth homage other where or": [0, 65535], "i know his eye doth homage other where or else": [0, 65535], "know his eye doth homage other where or else what": [0, 65535], "his eye doth homage other where or else what lets": [0, 65535], "eye doth homage other where or else what lets it": [0, 65535], "doth homage other where or else what lets it but": [0, 65535], "homage other where or else what lets it but he": [0, 65535], "other where or else what lets it but he would": [0, 65535], "where or else what lets it but he would be": [0, 65535], "or else what lets it but he would be here": [0, 65535], "else what lets it but he would be here sister": [0, 65535], "what lets it but he would be here sister you": [0, 65535], "lets it but he would be here sister you know": [0, 65535], "it but he would be here sister you know he": [0, 65535], "but he would be here sister you know he promis'd": [0, 65535], "he would be here sister you know he promis'd me": [0, 65535], "would be here sister you know he promis'd me a": [0, 65535], "be here sister you know he promis'd me a chaine": [0, 65535], "here sister you know he promis'd me a chaine would": [0, 65535], "sister you know he promis'd me a chaine would that": [0, 65535], "you know he promis'd me a chaine would that alone": [0, 65535], "know he promis'd me a chaine would that alone a": [0, 65535], "he promis'd me a chaine would that alone a loue": [0, 65535], "promis'd me a chaine would that alone a loue he": [0, 65535], "me a chaine would that alone a loue he would": [0, 65535], "a chaine would that alone a loue he would detaine": [0, 65535], "chaine would that alone a loue he would detaine so": [0, 65535], "would that alone a loue he would detaine so he": [0, 65535], "that alone a loue he would detaine so he would": [0, 65535], "alone a loue he would detaine so he would keepe": [0, 65535], "a loue he would detaine so he would keepe faire": [0, 65535], "loue he would detaine so he would keepe faire quarter": [0, 65535], "he would detaine so he would keepe faire quarter with": [0, 65535], "would detaine so he would keepe faire quarter with his": [0, 65535], "detaine so he would keepe faire quarter with his bed": [0, 65535], "so he would keepe faire quarter with his bed i": [0, 65535], "he would keepe faire quarter with his bed i see": [0, 65535], "would keepe faire quarter with his bed i see the": [0, 65535], "keepe faire quarter with his bed i see the iewell": [0, 65535], "faire quarter with his bed i see the iewell best": [0, 65535], "quarter with his bed i see the iewell best enamaled": [0, 65535], "with his bed i see the iewell best enamaled will": [0, 65535], "his bed i see the iewell best enamaled will loose": [0, 65535], "bed i see the iewell best enamaled will loose his": [0, 65535], "i see the iewell best enamaled will loose his beautie": [0, 65535], "see the iewell best enamaled will loose his beautie yet": [0, 65535], "the iewell best enamaled will loose his beautie yet the": [0, 65535], "iewell best enamaled will loose his beautie yet the gold": [0, 65535], "best enamaled will loose his beautie yet the gold bides": [0, 65535], "enamaled will loose his beautie yet the gold bides still": [0, 65535], "will loose his beautie yet the gold bides still that": [0, 65535], "loose his beautie yet the gold bides still that others": [0, 65535], "his beautie yet the gold bides still that others touch": [0, 65535], "beautie yet the gold bides still that others touch and": [0, 65535], "yet the gold bides still that others touch and often": [0, 65535], "the gold bides still that others touch and often touching": [0, 65535], "gold bides still that others touch and often touching will": [0, 65535], "bides still that others touch and often touching will where": [0, 65535], "still that others touch and often touching will where gold": [0, 65535], "that others touch and often touching will where gold and": [0, 65535], "others touch and often touching will where gold and no": [0, 65535], "touch and often touching will where gold and no man": [0, 65535], "and often touching will where gold and no man that": [0, 65535], "often touching will where gold and no man that hath": [0, 65535], "touching will where gold and no man that hath a": [0, 65535], "will where gold and no man that hath a name": [0, 65535], "where gold and no man that hath a name by": [0, 65535], "gold and no man that hath a name by falshood": [0, 65535], "and no man that hath a name by falshood and": [0, 65535], "no man that hath a name by falshood and corruption": [0, 65535], "man that hath a name by falshood and corruption doth": [0, 65535], "that hath a name by falshood and corruption doth it": [0, 65535], "hath a name by falshood and corruption doth it shame": [0, 65535], "a name by falshood and corruption doth it shame since": [0, 65535], "name by falshood and corruption doth it shame since that": [0, 65535], "by falshood and corruption doth it shame since that my": [0, 65535], "falshood and corruption doth it shame since that my beautie": [0, 65535], "and corruption doth it shame since that my beautie cannot": [0, 65535], "corruption doth it shame since that my beautie cannot please": [0, 65535], "doth it shame since that my beautie cannot please his": [0, 65535], "it shame since that my beautie cannot please his eie": [0, 65535], "shame since that my beautie cannot please his eie ile": [0, 65535], "since that my beautie cannot please his eie ile weepe": [0, 65535], "that my beautie cannot please his eie ile weepe what's": [0, 65535], "my beautie cannot please his eie ile weepe what's left": [0, 65535], "beautie cannot please his eie ile weepe what's left away": [0, 65535], "cannot please his eie ile weepe what's left away and": [0, 65535], "please his eie ile weepe what's left away and weeping": [0, 65535], "his eie ile weepe what's left away and weeping die": [0, 65535], "eie ile weepe what's left away and weeping die luci": [0, 65535], "ile weepe what's left away and weeping die luci how": [0, 65535], "weepe what's left away and weeping die luci how manie": [0, 65535], "what's left away and weeping die luci how manie fond": [0, 65535], "left away and weeping die luci how manie fond fooles": [0, 65535], "away and weeping die luci how manie fond fooles serue": [0, 65535], "and weeping die luci how manie fond fooles serue mad": [0, 65535], "weeping die luci how manie fond fooles serue mad ielousie": [0, 65535], "die luci how manie fond fooles serue mad ielousie exit": [0, 65535], "luci how manie fond fooles serue mad ielousie exit enter": [0, 65535], "how manie fond fooles serue mad ielousie exit enter antipholis": [0, 65535], "manie fond fooles serue mad ielousie exit enter antipholis errotis": [0, 65535], "fond fooles serue mad ielousie exit enter antipholis errotis ant": [0, 65535], "fooles serue mad ielousie exit enter antipholis errotis ant the": [0, 65535], "serue mad ielousie exit enter antipholis errotis ant the gold": [0, 65535], "mad ielousie exit enter antipholis errotis ant the gold i": [0, 65535], "ielousie exit enter antipholis errotis ant the gold i gaue": [0, 65535], "exit enter antipholis errotis ant the gold i gaue to": [0, 65535], "enter antipholis errotis ant the gold i gaue to dromio": [0, 65535], "antipholis errotis ant the gold i gaue to dromio is": [0, 65535], "errotis ant the gold i gaue to dromio is laid": [0, 65535], "ant the gold i gaue to dromio is laid vp": [0, 65535], "the gold i gaue to dromio is laid vp safe": [0, 65535], "gold i gaue to dromio is laid vp safe at": [0, 65535], "i gaue to dromio is laid vp safe at the": [0, 65535], "gaue to dromio is laid vp safe at the centaur": [0, 65535], "to dromio is laid vp safe at the centaur and": [0, 65535], "dromio is laid vp safe at the centaur and the": [0, 65535], "is laid vp safe at the centaur and the heedfull": [0, 65535], "laid vp safe at the centaur and the heedfull slaue": [0, 65535], "vp safe at the centaur and the heedfull slaue is": [0, 65535], "safe at the centaur and the heedfull slaue is wandred": [0, 65535], "at the centaur and the heedfull slaue is wandred forth": [0, 65535], "the centaur and the heedfull slaue is wandred forth in": [0, 65535], "centaur and the heedfull slaue is wandred forth in care": [0, 65535], "and the heedfull slaue is wandred forth in care to": [0, 65535], "the heedfull slaue is wandred forth in care to seeke": [0, 65535], "heedfull slaue is wandred forth in care to seeke me": [0, 65535], "slaue is wandred forth in care to seeke me out": [0, 65535], "is wandred forth in care to seeke me out by": [0, 65535], "wandred forth in care to seeke me out by computation": [0, 65535], "forth in care to seeke me out by computation and": [0, 65535], "in care to seeke me out by computation and mine": [0, 65535], "care to seeke me out by computation and mine hosts": [0, 65535], "to seeke me out by computation and mine hosts report": [0, 65535], "seeke me out by computation and mine hosts report i": [0, 65535], "me out by computation and mine hosts report i could": [0, 65535], "out by computation and mine hosts report i could not": [0, 65535], "by computation and mine hosts report i could not speake": [0, 65535], "computation and mine hosts report i could not speake with": [0, 65535], "and mine hosts report i could not speake with dromio": [0, 65535], "mine hosts report i could not speake with dromio since": [0, 65535], "hosts report i could not speake with dromio since at": [0, 65535], "report i could not speake with dromio since at first": [0, 65535], "i could not speake with dromio since at first i": [0, 65535], "could not speake with dromio since at first i sent": [0, 65535], "not speake with dromio since at first i sent him": [0, 65535], "speake with dromio since at first i sent him from": [0, 65535], "with dromio since at first i sent him from the": [0, 65535], "dromio since at first i sent him from the mart": [0, 65535], "since at first i sent him from the mart see": [0, 65535], "at first i sent him from the mart see here": [0, 65535], "first i sent him from the mart see here he": [0, 65535], "i sent him from the mart see here he comes": [0, 65535], "sent him from the mart see here he comes enter": [0, 65535], "him from the mart see here he comes enter dromio": [0, 65535], "from the mart see here he comes enter dromio siracusia": [0, 65535], "the mart see here he comes enter dromio siracusia how": [0, 65535], "mart see here he comes enter dromio siracusia how now": [0, 65535], "see here he comes enter dromio siracusia how now sir": [0, 65535], "here he comes enter dromio siracusia how now sir is": [0, 65535], "he comes enter dromio siracusia how now sir is your": [0, 65535], "comes enter dromio siracusia how now sir is your merrie": [0, 65535], "enter dromio siracusia how now sir is your merrie humor": [0, 65535], "dromio siracusia how now sir is your merrie humor alter'd": [0, 65535], "siracusia how now sir is your merrie humor alter'd as": [0, 65535], "how now sir is your merrie humor alter'd as you": [0, 65535], "now sir is your merrie humor alter'd as you loue": [0, 65535], "sir is your merrie humor alter'd as you loue stroakes": [0, 65535], "is your merrie humor alter'd as you loue stroakes so": [0, 65535], "your merrie humor alter'd as you loue stroakes so iest": [0, 65535], "merrie humor alter'd as you loue stroakes so iest with": [0, 65535], "humor alter'd as you loue stroakes so iest with me": [0, 65535], "alter'd as you loue stroakes so iest with me againe": [0, 65535], "as you loue stroakes so iest with me againe you": [0, 65535], "you loue stroakes so iest with me againe you know": [0, 65535], "loue stroakes so iest with me againe you know no": [0, 65535], "stroakes so iest with me againe you know no centaur": [0, 65535], "so iest with me againe you know no centaur you": [0, 65535], "iest with me againe you know no centaur you receiu'd": [0, 65535], "with me againe you know no centaur you receiu'd no": [0, 65535], "me againe you know no centaur you receiu'd no gold": [0, 65535], "againe you know no centaur you receiu'd no gold your": [0, 65535], "you know no centaur you receiu'd no gold your mistresse": [0, 65535], "know no centaur you receiu'd no gold your mistresse sent": [0, 65535], "no centaur you receiu'd no gold your mistresse sent to": [0, 65535], "centaur you receiu'd no gold your mistresse sent to haue": [0, 65535], "you receiu'd no gold your mistresse sent to haue me": [0, 65535], "receiu'd no gold your mistresse sent to haue me home": [0, 65535], "no gold your mistresse sent to haue me home to": [0, 65535], "gold your mistresse sent to haue me home to dinner": [0, 65535], "your mistresse sent to haue me home to dinner my": [0, 65535], "mistresse sent to haue me home to dinner my house": [0, 65535], "sent to haue me home to dinner my house was": [0, 65535], "to haue me home to dinner my house was at": [0, 65535], "haue me home to dinner my house was at the": [0, 65535], "me home to dinner my house was at the ph\u0153nix": [0, 65535], "home to dinner my house was at the ph\u0153nix wast": [0, 65535], "to dinner my house was at the ph\u0153nix wast thou": [0, 65535], "dinner my house was at the ph\u0153nix wast thou mad": [0, 65535], "my house was at the ph\u0153nix wast thou mad that": [0, 65535], "house was at the ph\u0153nix wast thou mad that thus": [0, 65535], "was at the ph\u0153nix wast thou mad that thus so": [0, 65535], "at the ph\u0153nix wast thou mad that thus so madlie": [0, 65535], "the ph\u0153nix wast thou mad that thus so madlie thou": [0, 65535], "ph\u0153nix wast thou mad that thus so madlie thou did": [0, 65535], "wast thou mad that thus so madlie thou did didst": [0, 65535], "thou mad that thus so madlie thou did didst answere": [0, 65535], "mad that thus so madlie thou did didst answere me": [0, 65535], "that thus so madlie thou did didst answere me s": [0, 65535], "thus so madlie thou did didst answere me s dro": [0, 65535], "so madlie thou did didst answere me s dro what": [0, 65535], "madlie thou did didst answere me s dro what answer": [0, 65535], "thou did didst answere me s dro what answer sir": [0, 65535], "did didst answere me s dro what answer sir when": [0, 65535], "didst answere me s dro what answer sir when spake": [0, 65535], "answere me s dro what answer sir when spake i": [0, 65535], "me s dro what answer sir when spake i such": [0, 65535], "s dro what answer sir when spake i such a": [0, 65535], "dro what answer sir when spake i such a word": [0, 65535], "what answer sir when spake i such a word e": [0, 65535], "answer sir when spake i such a word e ant": [0, 65535], "sir when spake i such a word e ant euen": [0, 65535], "when spake i such a word e ant euen now": [0, 65535], "spake i such a word e ant euen now euen": [0, 65535], "i such a word e ant euen now euen here": [0, 65535], "such a word e ant euen now euen here not": [0, 65535], "a word e ant euen now euen here not halfe": [0, 65535], "word e ant euen now euen here not halfe an": [0, 65535], "e ant euen now euen here not halfe an howre": [0, 65535], "ant euen now euen here not halfe an howre since": [0, 65535], "euen now euen here not halfe an howre since s": [0, 65535], "now euen here not halfe an howre since s dro": [0, 65535], "euen here not halfe an howre since s dro i": [0, 65535], "here not halfe an howre since s dro i did": [0, 65535], "not halfe an howre since s dro i did not": [0, 65535], "halfe an howre since s dro i did not see": [0, 65535], "an howre since s dro i did not see you": [0, 65535], "howre since s dro i did not see you since": [0, 65535], "since s dro i did not see you since you": [0, 65535], "s dro i did not see you since you sent": [0, 65535], "dro i did not see you since you sent me": [0, 65535], "i did not see you since you sent me hence": [0, 65535], "did not see you since you sent me hence home": [0, 65535], "not see you since you sent me hence home to": [0, 65535], "see you since you sent me hence home to the": [0, 65535], "you since you sent me hence home to the centaur": [0, 65535], "since you sent me hence home to the centaur with": [0, 65535], "you sent me hence home to the centaur with the": [0, 65535], "sent me hence home to the centaur with the gold": [0, 65535], "me hence home to the centaur with the gold you": [0, 65535], "hence home to the centaur with the gold you gaue": [0, 65535], "home to the centaur with the gold you gaue me": [0, 65535], "to the centaur with the gold you gaue me ant": [0, 65535], "the centaur with the gold you gaue me ant villaine": [0, 65535], "centaur with the gold you gaue me ant villaine thou": [0, 65535], "with the gold you gaue me ant villaine thou didst": [0, 65535], "the gold you gaue me ant villaine thou didst denie": [0, 65535], "gold you gaue me ant villaine thou didst denie the": [0, 65535], "you gaue me ant villaine thou didst denie the golds": [0, 65535], "gaue me ant villaine thou didst denie the golds receit": [0, 65535], "me ant villaine thou didst denie the golds receit and": [0, 65535], "ant villaine thou didst denie the golds receit and toldst": [0, 65535], "villaine thou didst denie the golds receit and toldst me": [0, 65535], "thou didst denie the golds receit and toldst me of": [0, 65535], "didst denie the golds receit and toldst me of a": [0, 65535], "denie the golds receit and toldst me of a mistresse": [0, 65535], "the golds receit and toldst me of a mistresse and": [0, 65535], "golds receit and toldst me of a mistresse and a": [0, 65535], "receit and toldst me of a mistresse and a dinner": [0, 65535], "and toldst me of a mistresse and a dinner for": [0, 65535], "toldst me of a mistresse and a dinner for which": [0, 65535], "me of a mistresse and a dinner for which i": [0, 65535], "of a mistresse and a dinner for which i hope": [0, 65535], "a mistresse and a dinner for which i hope thou": [0, 65535], "mistresse and a dinner for which i hope thou feltst": [0, 65535], "and a dinner for which i hope thou feltst i": [0, 65535], "a dinner for which i hope thou feltst i was": [0, 65535], "dinner for which i hope thou feltst i was displeas'd": [0, 65535], "for which i hope thou feltst i was displeas'd s": [0, 65535], "which i hope thou feltst i was displeas'd s dro": [0, 65535], "i hope thou feltst i was displeas'd s dro i": [0, 65535], "hope thou feltst i was displeas'd s dro i am": [0, 65535], "thou feltst i was displeas'd s dro i am glad": [0, 65535], "feltst i was displeas'd s dro i am glad to": [0, 65535], "i was displeas'd s dro i am glad to see": [0, 65535], "was displeas'd s dro i am glad to see you": [0, 65535], "displeas'd s dro i am glad to see you in": [0, 65535], "s dro i am glad to see you in this": [0, 65535], "dro i am glad to see you in this merrie": [0, 65535], "i am glad to see you in this merrie vaine": [0, 65535], "am glad to see you in this merrie vaine what": [0, 65535], "glad to see you in this merrie vaine what meanes": [0, 65535], "to see you in this merrie vaine what meanes this": [0, 65535], "see you in this merrie vaine what meanes this iest": [0, 65535], "you in this merrie vaine what meanes this iest i": [0, 65535], "in this merrie vaine what meanes this iest i pray": [0, 65535], "this merrie vaine what meanes this iest i pray you": [0, 65535], "merrie vaine what meanes this iest i pray you master": [0, 65535], "vaine what meanes this iest i pray you master tell": [0, 65535], "what meanes this iest i pray you master tell me": [0, 65535], "meanes this iest i pray you master tell me ant": [0, 65535], "this iest i pray you master tell me ant yea": [0, 65535], "iest i pray you master tell me ant yea dost": [0, 65535], "i pray you master tell me ant yea dost thou": [0, 65535], "pray you master tell me ant yea dost thou ieere": [0, 65535], "you master tell me ant yea dost thou ieere flowt": [0, 65535], "master tell me ant yea dost thou ieere flowt me": [0, 65535], "tell me ant yea dost thou ieere flowt me in": [0, 65535], "me ant yea dost thou ieere flowt me in the": [0, 65535], "ant yea dost thou ieere flowt me in the teeth": [0, 65535], "yea dost thou ieere flowt me in the teeth thinkst": [0, 65535], "dost thou ieere flowt me in the teeth thinkst thou": [0, 65535], "thou ieere flowt me in the teeth thinkst thou i": [0, 65535], "ieere flowt me in the teeth thinkst thou i iest": [0, 65535], "flowt me in the teeth thinkst thou i iest hold": [0, 65535], "me in the teeth thinkst thou i iest hold take": [0, 65535], "in the teeth thinkst thou i iest hold take thou": [0, 65535], "the teeth thinkst thou i iest hold take thou that": [0, 65535], "teeth thinkst thou i iest hold take thou that that": [0, 65535], "thinkst thou i iest hold take thou that that beats": [0, 65535], "thou i iest hold take thou that that beats dro": [0, 65535], "i iest hold take thou that that beats dro s": [0, 65535], "iest hold take thou that that beats dro s dr": [0, 65535], "hold take thou that that beats dro s dr hold": [0, 65535], "take thou that that beats dro s dr hold sir": [0, 65535], "thou that that beats dro s dr hold sir for": [0, 65535], "that that beats dro s dr hold sir for gods": [0, 65535], "that beats dro s dr hold sir for gods sake": [0, 65535], "beats dro s dr hold sir for gods sake now": [0, 65535], "dro s dr hold sir for gods sake now your": [0, 65535], "s dr hold sir for gods sake now your iest": [0, 65535], "dr hold sir for gods sake now your iest is": [0, 65535], "hold sir for gods sake now your iest is earnest": [0, 65535], "sir for gods sake now your iest is earnest vpon": [0, 65535], "for gods sake now your iest is earnest vpon what": [0, 65535], "gods sake now your iest is earnest vpon what bargaine": [0, 65535], "sake now your iest is earnest vpon what bargaine do": [0, 65535], "now your iest is earnest vpon what bargaine do you": [0, 65535], "your iest is earnest vpon what bargaine do you giue": [0, 65535], "iest is earnest vpon what bargaine do you giue it": [0, 65535], "is earnest vpon what bargaine do you giue it me": [0, 65535], "earnest vpon what bargaine do you giue it me antiph": [0, 65535], "vpon what bargaine do you giue it me antiph because": [0, 65535], "what bargaine do you giue it me antiph because that": [0, 65535], "bargaine do you giue it me antiph because that i": [0, 65535], "do you giue it me antiph because that i familiarlie": [0, 65535], "you giue it me antiph because that i familiarlie sometimes": [0, 65535], "giue it me antiph because that i familiarlie sometimes doe": [0, 65535], "it me antiph because that i familiarlie sometimes doe vse": [0, 65535], "me antiph because that i familiarlie sometimes doe vse you": [0, 65535], "antiph because that i familiarlie sometimes doe vse you for": [0, 65535], "because that i familiarlie sometimes doe vse you for my": [0, 65535], "that i familiarlie sometimes doe vse you for my foole": [0, 65535], "i familiarlie sometimes doe vse you for my foole and": [0, 65535], "familiarlie sometimes doe vse you for my foole and chat": [0, 65535], "sometimes doe vse you for my foole and chat with": [0, 65535], "doe vse you for my foole and chat with you": [0, 65535], "vse you for my foole and chat with you your": [0, 65535], "you for my foole and chat with you your sawcinesse": [0, 65535], "for my foole and chat with you your sawcinesse will": [0, 65535], "my foole and chat with you your sawcinesse will iest": [0, 65535], "foole and chat with you your sawcinesse will iest vpon": [0, 65535], "and chat with you your sawcinesse will iest vpon my": [0, 65535], "chat with you your sawcinesse will iest vpon my loue": [0, 65535], "with you your sawcinesse will iest vpon my loue and": [0, 65535], "you your sawcinesse will iest vpon my loue and make": [0, 65535], "your sawcinesse will iest vpon my loue and make a": [0, 65535], "sawcinesse will iest vpon my loue and make a common": [0, 65535], "will iest vpon my loue and make a common of": [0, 65535], "iest vpon my loue and make a common of my": [0, 65535], "vpon my loue and make a common of my serious": [0, 65535], "my loue and make a common of my serious howres": [0, 65535], "loue and make a common of my serious howres when": [0, 65535], "and make a common of my serious howres when the": [0, 65535], "make a common of my serious howres when the sunne": [0, 65535], "a common of my serious howres when the sunne shines": [0, 65535], "common of my serious howres when the sunne shines let": [0, 65535], "of my serious howres when the sunne shines let foolish": [0, 65535], "my serious howres when the sunne shines let foolish gnats": [0, 65535], "serious howres when the sunne shines let foolish gnats make": [0, 65535], "howres when the sunne shines let foolish gnats make sport": [0, 65535], "when the sunne shines let foolish gnats make sport but": [0, 65535], "the sunne shines let foolish gnats make sport but creepe": [0, 65535], "sunne shines let foolish gnats make sport but creepe in": [0, 65535], "shines let foolish gnats make sport but creepe in crannies": [0, 65535], "let foolish gnats make sport but creepe in crannies when": [0, 65535], "foolish gnats make sport but creepe in crannies when he": [0, 65535], "gnats make sport but creepe in crannies when he hides": [0, 65535], "make sport but creepe in crannies when he hides his": [0, 65535], "sport but creepe in crannies when he hides his beames": [0, 65535], "but creepe in crannies when he hides his beames if": [0, 65535], "creepe in crannies when he hides his beames if you": [0, 65535], "in crannies when he hides his beames if you will": [0, 65535], "crannies when he hides his beames if you will iest": [0, 65535], "when he hides his beames if you will iest with": [0, 65535], "he hides his beames if you will iest with me": [0, 65535], "hides his beames if you will iest with me know": [0, 65535], "his beames if you will iest with me know my": [0, 65535], "beames if you will iest with me know my aspect": [0, 65535], "if you will iest with me know my aspect and": [0, 65535], "you will iest with me know my aspect and fashion": [0, 65535], "will iest with me know my aspect and fashion your": [0, 65535], "iest with me know my aspect and fashion your demeanor": [0, 65535], "with me know my aspect and fashion your demeanor to": [0, 65535], "me know my aspect and fashion your demeanor to my": [0, 65535], "know my aspect and fashion your demeanor to my lookes": [0, 65535], "my aspect and fashion your demeanor to my lookes or": [0, 65535], "aspect and fashion your demeanor to my lookes or i": [0, 65535], "and fashion your demeanor to my lookes or i will": [0, 65535], "fashion your demeanor to my lookes or i will beat": [0, 65535], "your demeanor to my lookes or i will beat this": [0, 65535], "demeanor to my lookes or i will beat this method": [0, 65535], "to my lookes or i will beat this method in": [0, 65535], "my lookes or i will beat this method in your": [0, 65535], "lookes or i will beat this method in your sconce": [0, 65535], "or i will beat this method in your sconce s": [0, 65535], "i will beat this method in your sconce s dro": [0, 65535], "will beat this method in your sconce s dro sconce": [0, 65535], "beat this method in your sconce s dro sconce call": [0, 65535], "this method in your sconce s dro sconce call you": [0, 65535], "method in your sconce s dro sconce call you it": [0, 65535], "in your sconce s dro sconce call you it so": [0, 65535], "your sconce s dro sconce call you it so you": [0, 65535], "sconce s dro sconce call you it so you would": [0, 65535], "s dro sconce call you it so you would leaue": [0, 65535], "dro sconce call you it so you would leaue battering": [0, 65535], "sconce call you it so you would leaue battering i": [0, 65535], "call you it so you would leaue battering i had": [0, 65535], "you it so you would leaue battering i had rather": [0, 65535], "it so you would leaue battering i had rather haue": [0, 65535], "so you would leaue battering i had rather haue it": [0, 65535], "you would leaue battering i had rather haue it a": [0, 65535], "would leaue battering i had rather haue it a head": [0, 65535], "leaue battering i had rather haue it a head and": [0, 65535], "battering i had rather haue it a head and you": [0, 65535], "i had rather haue it a head and you vse": [0, 65535], "had rather haue it a head and you vse these": [0, 65535], "rather haue it a head and you vse these blows": [0, 65535], "haue it a head and you vse these blows long": [0, 65535], "it a head and you vse these blows long i": [0, 65535], "a head and you vse these blows long i must": [0, 65535], "head and you vse these blows long i must get": [0, 65535], "and you vse these blows long i must get a": [0, 65535], "you vse these blows long i must get a sconce": [0, 65535], "vse these blows long i must get a sconce for": [0, 65535], "these blows long i must get a sconce for my": [0, 65535], "blows long i must get a sconce for my head": [0, 65535], "long i must get a sconce for my head and": [0, 65535], "i must get a sconce for my head and insconce": [0, 65535], "must get a sconce for my head and insconce it": [0, 65535], "get a sconce for my head and insconce it to": [0, 65535], "a sconce for my head and insconce it to or": [0, 65535], "sconce for my head and insconce it to or else": [0, 65535], "for my head and insconce it to or else i": [0, 65535], "my head and insconce it to or else i shall": [0, 65535], "head and insconce it to or else i shall seek": [0, 65535], "and insconce it to or else i shall seek my": [0, 65535], "insconce it to or else i shall seek my wit": [0, 65535], "it to or else i shall seek my wit in": [0, 65535], "to or else i shall seek my wit in my": [0, 65535], "or else i shall seek my wit in my shoulders": [0, 65535], "else i shall seek my wit in my shoulders but": [0, 65535], "i shall seek my wit in my shoulders but i": [0, 65535], "shall seek my wit in my shoulders but i pray": [0, 65535], "seek my wit in my shoulders but i pray sir": [0, 65535], "my wit in my shoulders but i pray sir why": [0, 65535], "wit in my shoulders but i pray sir why am": [0, 65535], "in my shoulders but i pray sir why am i": [0, 65535], "my shoulders but i pray sir why am i beaten": [0, 65535], "shoulders but i pray sir why am i beaten ant": [0, 65535], "but i pray sir why am i beaten ant dost": [0, 65535], "i pray sir why am i beaten ant dost thou": [0, 65535], "pray sir why am i beaten ant dost thou not": [0, 65535], "sir why am i beaten ant dost thou not know": [0, 65535], "why am i beaten ant dost thou not know s": [0, 65535], "am i beaten ant dost thou not know s dro": [0, 65535], "i beaten ant dost thou not know s dro nothing": [0, 65535], "beaten ant dost thou not know s dro nothing sir": [0, 65535], "ant dost thou not know s dro nothing sir but": [0, 65535], "dost thou not know s dro nothing sir but that": [0, 65535], "thou not know s dro nothing sir but that i": [0, 65535], "not know s dro nothing sir but that i am": [0, 65535], "know s dro nothing sir but that i am beaten": [0, 65535], "s dro nothing sir but that i am beaten ant": [0, 65535], "dro nothing sir but that i am beaten ant shall": [0, 65535], "nothing sir but that i am beaten ant shall i": [0, 65535], "sir but that i am beaten ant shall i tell": [0, 65535], "but that i am beaten ant shall i tell you": [0, 65535], "that i am beaten ant shall i tell you why": [0, 65535], "i am beaten ant shall i tell you why s": [0, 65535], "am beaten ant shall i tell you why s dro": [0, 65535], "beaten ant shall i tell you why s dro i": [0, 65535], "ant shall i tell you why s dro i sir": [0, 65535], "shall i tell you why s dro i sir and": [0, 65535], "i tell you why s dro i sir and wherefore": [0, 65535], "tell you why s dro i sir and wherefore for": [0, 65535], "you why s dro i sir and wherefore for they": [0, 65535], "why s dro i sir and wherefore for they say": [0, 65535], "s dro i sir and wherefore for they say euery": [0, 65535], "dro i sir and wherefore for they say euery why": [0, 65535], "i sir and wherefore for they say euery why hath": [0, 65535], "sir and wherefore for they say euery why hath a": [0, 65535], "and wherefore for they say euery why hath a wherefore": [0, 65535], "wherefore for they say euery why hath a wherefore ant": [0, 65535], "for they say euery why hath a wherefore ant why": [0, 65535], "they say euery why hath a wherefore ant why first": [0, 65535], "say euery why hath a wherefore ant why first for": [0, 65535], "euery why hath a wherefore ant why first for flowting": [0, 65535], "why hath a wherefore ant why first for flowting me": [0, 65535], "hath a wherefore ant why first for flowting me and": [0, 65535], "a wherefore ant why first for flowting me and then": [0, 65535], "wherefore ant why first for flowting me and then wherefore": [0, 65535], "ant why first for flowting me and then wherefore for": [0, 65535], "why first for flowting me and then wherefore for vrging": [0, 65535], "first for flowting me and then wherefore for vrging it": [0, 65535], "for flowting me and then wherefore for vrging it the": [0, 65535], "flowting me and then wherefore for vrging it the second": [0, 65535], "me and then wherefore for vrging it the second time": [0, 65535], "and then wherefore for vrging it the second time to": [0, 65535], "then wherefore for vrging it the second time to me": [0, 65535], "wherefore for vrging it the second time to me s": [0, 65535], "for vrging it the second time to me s dro": [0, 65535], "vrging it the second time to me s dro was": [0, 65535], "it the second time to me s dro was there": [0, 65535], "the second time to me s dro was there euer": [0, 65535], "second time to me s dro was there euer anie": [0, 65535], "time to me s dro was there euer anie man": [0, 65535], "to me s dro was there euer anie man thus": [0, 65535], "me s dro was there euer anie man thus beaten": [0, 65535], "s dro was there euer anie man thus beaten out": [0, 65535], "dro was there euer anie man thus beaten out of": [0, 65535], "was there euer anie man thus beaten out of season": [0, 65535], "there euer anie man thus beaten out of season when": [0, 65535], "euer anie man thus beaten out of season when in": [0, 65535], "anie man thus beaten out of season when in the": [0, 65535], "man thus beaten out of season when in the why": [0, 65535], "thus beaten out of season when in the why and": [0, 65535], "beaten out of season when in the why and the": [0, 65535], "out of season when in the why and the wherefore": [0, 65535], "of season when in the why and the wherefore is": [0, 65535], "season when in the why and the wherefore is neither": [0, 65535], "when in the why and the wherefore is neither rime": [0, 65535], "in the why and the wherefore is neither rime nor": [0, 65535], "the why and the wherefore is neither rime nor reason": [0, 65535], "why and the wherefore is neither rime nor reason well": [0, 65535], "and the wherefore is neither rime nor reason well sir": [0, 65535], "the wherefore is neither rime nor reason well sir i": [0, 65535], "wherefore is neither rime nor reason well sir i thanke": [0, 65535], "is neither rime nor reason well sir i thanke you": [0, 65535], "neither rime nor reason well sir i thanke you ant": [0, 65535], "rime nor reason well sir i thanke you ant thanke": [0, 65535], "nor reason well sir i thanke you ant thanke me": [0, 65535], "reason well sir i thanke you ant thanke me sir": [0, 65535], "well sir i thanke you ant thanke me sir for": [0, 65535], "sir i thanke you ant thanke me sir for what": [0, 65535], "i thanke you ant thanke me sir for what s": [0, 65535], "thanke you ant thanke me sir for what s dro": [0, 65535], "you ant thanke me sir for what s dro marry": [0, 65535], "ant thanke me sir for what s dro marry sir": [0, 65535], "thanke me sir for what s dro marry sir for": [0, 65535], "me sir for what s dro marry sir for this": [0, 65535], "sir for what s dro marry sir for this something": [0, 65535], "for what s dro marry sir for this something that": [0, 65535], "what s dro marry sir for this something that you": [0, 65535], "s dro marry sir for this something that you gaue": [0, 65535], "dro marry sir for this something that you gaue me": [0, 65535], "marry sir for this something that you gaue me for": [0, 65535], "sir for this something that you gaue me for nothing": [0, 65535], "for this something that you gaue me for nothing ant": [0, 65535], "this something that you gaue me for nothing ant ile": [0, 65535], "something that you gaue me for nothing ant ile make": [0, 65535], "that you gaue me for nothing ant ile make you": [0, 65535], "you gaue me for nothing ant ile make you amends": [0, 65535], "gaue me for nothing ant ile make you amends next": [0, 65535], "me for nothing ant ile make you amends next to": [0, 65535], "for nothing ant ile make you amends next to giue": [0, 65535], "nothing ant ile make you amends next to giue you": [0, 65535], "ant ile make you amends next to giue you nothing": [0, 65535], "ile make you amends next to giue you nothing for": [0, 65535], "make you amends next to giue you nothing for something": [0, 65535], "you amends next to giue you nothing for something but": [0, 65535], "amends next to giue you nothing for something but say": [0, 65535], "next to giue you nothing for something but say sir": [0, 65535], "to giue you nothing for something but say sir is": [0, 65535], "giue you nothing for something but say sir is it": [0, 65535], "you nothing for something but say sir is it dinner": [0, 65535], "nothing for something but say sir is it dinner time": [0, 65535], "for something but say sir is it dinner time s": [0, 65535], "something but say sir is it dinner time s dro": [0, 65535], "but say sir is it dinner time s dro no": [0, 65535], "say sir is it dinner time s dro no sir": [0, 65535], "sir is it dinner time s dro no sir i": [0, 65535], "is it dinner time s dro no sir i thinke": [0, 65535], "it dinner time s dro no sir i thinke the": [0, 65535], "dinner time s dro no sir i thinke the meat": [0, 65535], "time s dro no sir i thinke the meat wants": [0, 65535], "s dro no sir i thinke the meat wants that": [0, 65535], "dro no sir i thinke the meat wants that i": [0, 65535], "no sir i thinke the meat wants that i haue": [0, 65535], "sir i thinke the meat wants that i haue ant": [0, 65535], "i thinke the meat wants that i haue ant in": [0, 65535], "thinke the meat wants that i haue ant in good": [0, 65535], "the meat wants that i haue ant in good time": [0, 65535], "meat wants that i haue ant in good time sir": [0, 65535], "wants that i haue ant in good time sir what's": [0, 65535], "that i haue ant in good time sir what's that": [0, 65535], "i haue ant in good time sir what's that s": [0, 65535], "haue ant in good time sir what's that s dro": [0, 65535], "ant in good time sir what's that s dro basting": [0, 65535], "in good time sir what's that s dro basting ant": [0, 65535], "good time sir what's that s dro basting ant well": [0, 65535], "time sir what's that s dro basting ant well sir": [0, 65535], "sir what's that s dro basting ant well sir then": [0, 65535], "what's that s dro basting ant well sir then 'twill": [0, 65535], "that s dro basting ant well sir then 'twill be": [0, 65535], "s dro basting ant well sir then 'twill be drie": [0, 65535], "dro basting ant well sir then 'twill be drie s": [0, 65535], "basting ant well sir then 'twill be drie s dro": [0, 65535], "ant well sir then 'twill be drie s dro if": [0, 65535], "well sir then 'twill be drie s dro if it": [0, 65535], "sir then 'twill be drie s dro if it be": [0, 65535], "then 'twill be drie s dro if it be sir": [0, 65535], "'twill be drie s dro if it be sir i": [0, 65535], "be drie s dro if it be sir i pray": [0, 65535], "drie s dro if it be sir i pray you": [0, 65535], "s dro if it be sir i pray you eat": [0, 65535], "dro if it be sir i pray you eat none": [0, 65535], "if it be sir i pray you eat none of": [0, 65535], "it be sir i pray you eat none of it": [0, 65535], "be sir i pray you eat none of it ant": [0, 65535], "sir i pray you eat none of it ant your": [0, 65535], "i pray you eat none of it ant your reason": [0, 65535], "pray you eat none of it ant your reason s": [0, 65535], "you eat none of it ant your reason s dro": [0, 65535], "eat none of it ant your reason s dro lest": [0, 65535], "none of it ant your reason s dro lest it": [0, 65535], "of it ant your reason s dro lest it make": [0, 65535], "it ant your reason s dro lest it make you": [0, 65535], "ant your reason s dro lest it make you chollericke": [0, 65535], "your reason s dro lest it make you chollericke and": [0, 65535], "reason s dro lest it make you chollericke and purchase": [0, 65535], "s dro lest it make you chollericke and purchase me": [0, 65535], "dro lest it make you chollericke and purchase me another": [0, 65535], "lest it make you chollericke and purchase me another drie": [0, 65535], "it make you chollericke and purchase me another drie basting": [0, 65535], "make you chollericke and purchase me another drie basting ant": [0, 65535], "you chollericke and purchase me another drie basting ant well": [0, 65535], "chollericke and purchase me another drie basting ant well sir": [0, 65535], "and purchase me another drie basting ant well sir learne": [0, 65535], "purchase me another drie basting ant well sir learne to": [0, 65535], "me another drie basting ant well sir learne to iest": [0, 65535], "another drie basting ant well sir learne to iest in": [0, 65535], "drie basting ant well sir learne to iest in good": [0, 65535], "basting ant well sir learne to iest in good time": [0, 65535], "ant well sir learne to iest in good time there's": [0, 65535], "well sir learne to iest in good time there's a": [0, 65535], "sir learne to iest in good time there's a time": [0, 65535], "learne to iest in good time there's a time for": [0, 65535], "to iest in good time there's a time for all": [0, 65535], "iest in good time there's a time for all things": [0, 65535], "in good time there's a time for all things s": [0, 65535], "good time there's a time for all things s dro": [0, 65535], "time there's a time for all things s dro i": [0, 65535], "there's a time for all things s dro i durst": [0, 65535], "a time for all things s dro i durst haue": [0, 65535], "time for all things s dro i durst haue denied": [0, 65535], "for all things s dro i durst haue denied that": [0, 65535], "all things s dro i durst haue denied that before": [0, 65535], "things s dro i durst haue denied that before you": [0, 65535], "s dro i durst haue denied that before you were": [0, 65535], "dro i durst haue denied that before you were so": [0, 65535], "i durst haue denied that before you were so chollericke": [0, 65535], "durst haue denied that before you were so chollericke anti": [0, 65535], "haue denied that before you were so chollericke anti by": [0, 65535], "denied that before you were so chollericke anti by what": [0, 65535], "that before you were so chollericke anti by what rule": [0, 65535], "before you were so chollericke anti by what rule sir": [0, 65535], "you were so chollericke anti by what rule sir s": [0, 65535], "were so chollericke anti by what rule sir s dro": [0, 65535], "so chollericke anti by what rule sir s dro marry": [0, 65535], "chollericke anti by what rule sir s dro marry sir": [0, 65535], "anti by what rule sir s dro marry sir by": [0, 65535], "by what rule sir s dro marry sir by a": [0, 65535], "what rule sir s dro marry sir by a rule": [0, 65535], "rule sir s dro marry sir by a rule as": [0, 65535], "sir s dro marry sir by a rule as plaine": [0, 65535], "s dro marry sir by a rule as plaine as": [0, 65535], "dro marry sir by a rule as plaine as the": [0, 65535], "marry sir by a rule as plaine as the plaine": [0, 65535], "sir by a rule as plaine as the plaine bald": [0, 65535], "by a rule as plaine as the plaine bald pate": [0, 65535], "a rule as plaine as the plaine bald pate of": [0, 65535], "rule as plaine as the plaine bald pate of father": [0, 65535], "as plaine as the plaine bald pate of father time": [0, 65535], "plaine as the plaine bald pate of father time himselfe": [0, 65535], "as the plaine bald pate of father time himselfe ant": [0, 65535], "the plaine bald pate of father time himselfe ant let's": [0, 65535], "plaine bald pate of father time himselfe ant let's heare": [0, 65535], "bald pate of father time himselfe ant let's heare it": [0, 65535], "pate of father time himselfe ant let's heare it s": [0, 65535], "of father time himselfe ant let's heare it s dro": [0, 65535], "father time himselfe ant let's heare it s dro there's": [0, 65535], "time himselfe ant let's heare it s dro there's no": [0, 65535], "himselfe ant let's heare it s dro there's no time": [0, 65535], "ant let's heare it s dro there's no time for": [0, 65535], "let's heare it s dro there's no time for a": [0, 65535], "heare it s dro there's no time for a man": [0, 65535], "it s dro there's no time for a man to": [0, 65535], "s dro there's no time for a man to recouer": [0, 65535], "dro there's no time for a man to recouer his": [0, 65535], "there's no time for a man to recouer his haire": [0, 65535], "no time for a man to recouer his haire that": [0, 65535], "time for a man to recouer his haire that growes": [0, 65535], "for a man to recouer his haire that growes bald": [0, 65535], "a man to recouer his haire that growes bald by": [0, 65535], "man to recouer his haire that growes bald by nature": [0, 65535], "to recouer his haire that growes bald by nature ant": [0, 65535], "recouer his haire that growes bald by nature ant may": [0, 65535], "his haire that growes bald by nature ant may he": [0, 65535], "haire that growes bald by nature ant may he not": [0, 65535], "that growes bald by nature ant may he not doe": [0, 65535], "growes bald by nature ant may he not doe it": [0, 65535], "bald by nature ant may he not doe it by": [0, 65535], "by nature ant may he not doe it by fine": [0, 65535], "nature ant may he not doe it by fine and": [0, 65535], "ant may he not doe it by fine and recouerie": [0, 65535], "may he not doe it by fine and recouerie s": [0, 65535], "he not doe it by fine and recouerie s dro": [0, 65535], "not doe it by fine and recouerie s dro yes": [0, 65535], "doe it by fine and recouerie s dro yes to": [0, 65535], "it by fine and recouerie s dro yes to pay": [0, 65535], "by fine and recouerie s dro yes to pay a": [0, 65535], "fine and recouerie s dro yes to pay a fine": [0, 65535], "and recouerie s dro yes to pay a fine for": [0, 65535], "recouerie s dro yes to pay a fine for a": [0, 65535], "s dro yes to pay a fine for a perewig": [0, 65535], "dro yes to pay a fine for a perewig and": [0, 65535], "yes to pay a fine for a perewig and recouer": [0, 65535], "to pay a fine for a perewig and recouer the": [0, 65535], "pay a fine for a perewig and recouer the lost": [0, 65535], "a fine for a perewig and recouer the lost haire": [0, 65535], "fine for a perewig and recouer the lost haire of": [0, 65535], "for a perewig and recouer the lost haire of another": [0, 65535], "a perewig and recouer the lost haire of another man": [0, 65535], "perewig and recouer the lost haire of another man ant": [0, 65535], "and recouer the lost haire of another man ant why": [0, 65535], "recouer the lost haire of another man ant why is": [0, 65535], "the lost haire of another man ant why is time": [0, 65535], "lost haire of another man ant why is time such": [0, 65535], "haire of another man ant why is time such a": [0, 65535], "of another man ant why is time such a niggard": [0, 65535], "another man ant why is time such a niggard of": [0, 65535], "man ant why is time such a niggard of haire": [0, 65535], "ant why is time such a niggard of haire being": [0, 65535], "why is time such a niggard of haire being as": [0, 65535], "is time such a niggard of haire being as it": [0, 65535], "time such a niggard of haire being as it is": [0, 65535], "such a niggard of haire being as it is so": [0, 65535], "a niggard of haire being as it is so plentifull": [0, 65535], "niggard of haire being as it is so plentifull an": [0, 65535], "of haire being as it is so plentifull an excrement": [0, 65535], "haire being as it is so plentifull an excrement s": [0, 65535], "being as it is so plentifull an excrement s dro": [0, 65535], "as it is so plentifull an excrement s dro because": [0, 65535], "it is so plentifull an excrement s dro because it": [0, 65535], "is so plentifull an excrement s dro because it is": [0, 65535], "so plentifull an excrement s dro because it is a": [0, 65535], "plentifull an excrement s dro because it is a blessing": [0, 65535], "an excrement s dro because it is a blessing that": [0, 65535], "excrement s dro because it is a blessing that hee": [0, 65535], "s dro because it is a blessing that hee bestowes": [0, 65535], "dro because it is a blessing that hee bestowes on": [0, 65535], "because it is a blessing that hee bestowes on beasts": [0, 65535], "it is a blessing that hee bestowes on beasts and": [0, 65535], "is a blessing that hee bestowes on beasts and what": [0, 65535], "a blessing that hee bestowes on beasts and what he": [0, 65535], "blessing that hee bestowes on beasts and what he hath": [0, 65535], "that hee bestowes on beasts and what he hath scanted": [0, 65535], "hee bestowes on beasts and what he hath scanted them": [0, 65535], "bestowes on beasts and what he hath scanted them in": [0, 65535], "on beasts and what he hath scanted them in haire": [0, 65535], "beasts and what he hath scanted them in haire hee": [0, 65535], "and what he hath scanted them in haire hee hath": [0, 65535], "what he hath scanted them in haire hee hath giuen": [0, 65535], "he hath scanted them in haire hee hath giuen them": [0, 65535], "hath scanted them in haire hee hath giuen them in": [0, 65535], "scanted them in haire hee hath giuen them in wit": [0, 65535], "them in haire hee hath giuen them in wit ant": [0, 65535], "in haire hee hath giuen them in wit ant why": [0, 65535], "haire hee hath giuen them in wit ant why but": [0, 65535], "hee hath giuen them in wit ant why but theres": [0, 65535], "hath giuen them in wit ant why but theres manie": [0, 65535], "giuen them in wit ant why but theres manie a": [0, 65535], "them in wit ant why but theres manie a man": [0, 65535], "in wit ant why but theres manie a man hath": [0, 65535], "wit ant why but theres manie a man hath more": [0, 65535], "ant why but theres manie a man hath more haire": [0, 65535], "why but theres manie a man hath more haire then": [0, 65535], "but theres manie a man hath more haire then wit": [0, 65535], "theres manie a man hath more haire then wit s": [0, 65535], "manie a man hath more haire then wit s dro": [0, 65535], "a man hath more haire then wit s dro not": [0, 65535], "man hath more haire then wit s dro not a": [0, 65535], "hath more haire then wit s dro not a man": [0, 65535], "more haire then wit s dro not a man of": [0, 65535], "haire then wit s dro not a man of those": [0, 65535], "then wit s dro not a man of those but": [0, 65535], "wit s dro not a man of those but he": [0, 65535], "s dro not a man of those but he hath": [0, 65535], "dro not a man of those but he hath the": [0, 65535], "not a man of those but he hath the wit": [0, 65535], "a man of those but he hath the wit to": [0, 65535], "man of those but he hath the wit to lose": [0, 65535], "of those but he hath the wit to lose his": [0, 65535], "those but he hath the wit to lose his haire": [0, 65535], "but he hath the wit to lose his haire ant": [0, 65535], "he hath the wit to lose his haire ant why": [0, 65535], "hath the wit to lose his haire ant why thou": [0, 65535], "the wit to lose his haire ant why thou didst": [0, 65535], "wit to lose his haire ant why thou didst conclude": [0, 65535], "to lose his haire ant why thou didst conclude hairy": [0, 65535], "lose his haire ant why thou didst conclude hairy men": [0, 65535], "his haire ant why thou didst conclude hairy men plain": [0, 65535], "haire ant why thou didst conclude hairy men plain dealers": [0, 65535], "ant why thou didst conclude hairy men plain dealers without": [0, 65535], "why thou didst conclude hairy men plain dealers without wit": [0, 65535], "thou didst conclude hairy men plain dealers without wit s": [0, 65535], "didst conclude hairy men plain dealers without wit s dro": [0, 65535], "conclude hairy men plain dealers without wit s dro the": [0, 65535], "hairy men plain dealers without wit s dro the plainer": [0, 65535], "men plain dealers without wit s dro the plainer dealer": [0, 65535], "plain dealers without wit s dro the plainer dealer the": [0, 65535], "dealers without wit s dro the plainer dealer the sooner": [0, 65535], "without wit s dro the plainer dealer the sooner lost": [0, 65535], "wit s dro the plainer dealer the sooner lost yet": [0, 65535], "s dro the plainer dealer the sooner lost yet he": [0, 65535], "dro the plainer dealer the sooner lost yet he looseth": [0, 65535], "the plainer dealer the sooner lost yet he looseth it": [0, 65535], "plainer dealer the sooner lost yet he looseth it in": [0, 65535], "dealer the sooner lost yet he looseth it in a": [0, 65535], "the sooner lost yet he looseth it in a kinde": [0, 65535], "sooner lost yet he looseth it in a kinde of": [0, 65535], "lost yet he looseth it in a kinde of iollitie": [0, 65535], "yet he looseth it in a kinde of iollitie an": [0, 65535], "he looseth it in a kinde of iollitie an for": [0, 65535], "looseth it in a kinde of iollitie an for what": [0, 65535], "it in a kinde of iollitie an for what reason": [0, 65535], "in a kinde of iollitie an for what reason s": [0, 65535], "a kinde of iollitie an for what reason s dro": [0, 65535], "kinde of iollitie an for what reason s dro for": [0, 65535], "of iollitie an for what reason s dro for two": [0, 65535], "iollitie an for what reason s dro for two and": [0, 65535], "an for what reason s dro for two and sound": [0, 65535], "for what reason s dro for two and sound ones": [0, 65535], "what reason s dro for two and sound ones to": [0, 65535], "reason s dro for two and sound ones to an": [0, 65535], "s dro for two and sound ones to an nay": [0, 65535], "dro for two and sound ones to an nay not": [0, 65535], "for two and sound ones to an nay not sound": [0, 65535], "two and sound ones to an nay not sound i": [0, 65535], "and sound ones to an nay not sound i pray": [0, 65535], "sound ones to an nay not sound i pray you": [0, 65535], "ones to an nay not sound i pray you s": [0, 65535], "to an nay not sound i pray you s dro": [0, 65535], "an nay not sound i pray you s dro sure": [0, 65535], "nay not sound i pray you s dro sure ones": [0, 65535], "not sound i pray you s dro sure ones then": [0, 65535], "sound i pray you s dro sure ones then an": [0, 65535], "i pray you s dro sure ones then an nay": [0, 65535], "pray you s dro sure ones then an nay not": [0, 65535], "you s dro sure ones then an nay not sure": [0, 65535], "s dro sure ones then an nay not sure in": [0, 65535], "dro sure ones then an nay not sure in a": [0, 65535], "sure ones then an nay not sure in a thing": [0, 65535], "ones then an nay not sure in a thing falsing": [0, 65535], "then an nay not sure in a thing falsing s": [0, 65535], "an nay not sure in a thing falsing s dro": [0, 65535], "nay not sure in a thing falsing s dro certaine": [0, 65535], "not sure in a thing falsing s dro certaine ones": [0, 65535], "sure in a thing falsing s dro certaine ones then": [0, 65535], "in a thing falsing s dro certaine ones then an": [0, 65535], "a thing falsing s dro certaine ones then an name": [0, 65535], "thing falsing s dro certaine ones then an name them": [0, 65535], "falsing s dro certaine ones then an name them s": [0, 65535], "s dro certaine ones then an name them s dro": [0, 65535], "dro certaine ones then an name them s dro the": [0, 65535], "certaine ones then an name them s dro the one": [0, 65535], "ones then an name them s dro the one to": [0, 65535], "then an name them s dro the one to saue": [0, 65535], "an name them s dro the one to saue the": [0, 65535], "name them s dro the one to saue the money": [0, 65535], "them s dro the one to saue the money that": [0, 65535], "s dro the one to saue the money that he": [0, 65535], "dro the one to saue the money that he spends": [0, 65535], "the one to saue the money that he spends in": [0, 65535], "one to saue the money that he spends in trying": [0, 65535], "to saue the money that he spends in trying the": [0, 65535], "saue the money that he spends in trying the other": [0, 65535], "the money that he spends in trying the other that": [0, 65535], "money that he spends in trying the other that at": [0, 65535], "that he spends in trying the other that at dinner": [0, 65535], "he spends in trying the other that at dinner they": [0, 65535], "spends in trying the other that at dinner they should": [0, 65535], "in trying the other that at dinner they should not": [0, 65535], "trying the other that at dinner they should not drop": [0, 65535], "the other that at dinner they should not drop in": [0, 65535], "other that at dinner they should not drop in his": [0, 65535], "that at dinner they should not drop in his porrage": [0, 65535], "at dinner they should not drop in his porrage an": [0, 65535], "dinner they should not drop in his porrage an you": [0, 65535], "they should not drop in his porrage an you would": [0, 65535], "should not drop in his porrage an you would all": [0, 65535], "not drop in his porrage an you would all this": [0, 65535], "drop in his porrage an you would all this time": [0, 65535], "in his porrage an you would all this time haue": [0, 65535], "his porrage an you would all this time haue prou'd": [0, 65535], "porrage an you would all this time haue prou'd there": [0, 65535], "an you would all this time haue prou'd there is": [0, 65535], "you would all this time haue prou'd there is no": [0, 65535], "would all this time haue prou'd there is no time": [0, 65535], "all this time haue prou'd there is no time for": [0, 65535], "this time haue prou'd there is no time for all": [0, 65535], "time haue prou'd there is no time for all things": [0, 65535], "haue prou'd there is no time for all things s": [0, 65535], "prou'd there is no time for all things s dro": [0, 65535], "there is no time for all things s dro marry": [0, 65535], "is no time for all things s dro marry and": [0, 65535], "no time for all things s dro marry and did": [0, 65535], "time for all things s dro marry and did sir": [0, 65535], "for all things s dro marry and did sir namely": [0, 65535], "all things s dro marry and did sir namely in": [0, 65535], "things s dro marry and did sir namely in no": [0, 65535], "s dro marry and did sir namely in no time": [0, 65535], "dro marry and did sir namely in no time to": [0, 65535], "marry and did sir namely in no time to recouer": [0, 65535], "and did sir namely in no time to recouer haire": [0, 65535], "did sir namely in no time to recouer haire lost": [0, 65535], "sir namely in no time to recouer haire lost by": [0, 65535], "namely in no time to recouer haire lost by nature": [0, 65535], "in no time to recouer haire lost by nature an": [0, 65535], "no time to recouer haire lost by nature an but": [0, 65535], "time to recouer haire lost by nature an but your": [0, 65535], "to recouer haire lost by nature an but your reason": [0, 65535], "recouer haire lost by nature an but your reason was": [0, 65535], "haire lost by nature an but your reason was not": [0, 65535], "lost by nature an but your reason was not substantiall": [0, 65535], "by nature an but your reason was not substantiall why": [0, 65535], "nature an but your reason was not substantiall why there": [0, 65535], "an but your reason was not substantiall why there is": [0, 65535], "but your reason was not substantiall why there is no": [0, 65535], "your reason was not substantiall why there is no time": [0, 65535], "reason was not substantiall why there is no time to": [0, 65535], "was not substantiall why there is no time to recouer": [0, 65535], "not substantiall why there is no time to recouer s": [0, 65535], "substantiall why there is no time to recouer s dro": [0, 65535], "why there is no time to recouer s dro thus": [0, 65535], "there is no time to recouer s dro thus i": [0, 65535], "is no time to recouer s dro thus i mend": [0, 65535], "no time to recouer s dro thus i mend it": [0, 65535], "time to recouer s dro thus i mend it time": [0, 65535], "to recouer s dro thus i mend it time himselfe": [0, 65535], "recouer s dro thus i mend it time himselfe is": [0, 65535], "s dro thus i mend it time himselfe is bald": [0, 65535], "dro thus i mend it time himselfe is bald and": [0, 65535], "thus i mend it time himselfe is bald and therefore": [0, 65535], "i mend it time himselfe is bald and therefore to": [0, 65535], "mend it time himselfe is bald and therefore to the": [0, 65535], "it time himselfe is bald and therefore to the worlds": [0, 65535], "time himselfe is bald and therefore to the worlds end": [0, 65535], "himselfe is bald and therefore to the worlds end will": [0, 65535], "is bald and therefore to the worlds end will haue": [0, 65535], "bald and therefore to the worlds end will haue bald": [0, 65535], "and therefore to the worlds end will haue bald followers": [0, 65535], "therefore to the worlds end will haue bald followers an": [0, 65535], "to the worlds end will haue bald followers an i": [0, 65535], "the worlds end will haue bald followers an i knew": [0, 65535], "worlds end will haue bald followers an i knew 'twould": [0, 65535], "end will haue bald followers an i knew 'twould be": [0, 65535], "will haue bald followers an i knew 'twould be a": [0, 65535], "haue bald followers an i knew 'twould be a bald": [0, 65535], "bald followers an i knew 'twould be a bald conclusion": [0, 65535], "followers an i knew 'twould be a bald conclusion but": [0, 65535], "an i knew 'twould be a bald conclusion but soft": [0, 65535], "i knew 'twould be a bald conclusion but soft who": [0, 65535], "knew 'twould be a bald conclusion but soft who wafts": [0, 65535], "'twould be a bald conclusion but soft who wafts vs": [0, 65535], "be a bald conclusion but soft who wafts vs yonder": [0, 65535], "a bald conclusion but soft who wafts vs yonder enter": [0, 65535], "bald conclusion but soft who wafts vs yonder enter adriana": [0, 65535], "conclusion but soft who wafts vs yonder enter adriana and": [0, 65535], "but soft who wafts vs yonder enter adriana and luciana": [0, 65535], "soft who wafts vs yonder enter adriana and luciana adri": [0, 65535], "who wafts vs yonder enter adriana and luciana adri i": [0, 65535], "wafts vs yonder enter adriana and luciana adri i i": [0, 65535], "vs yonder enter adriana and luciana adri i i antipholus": [0, 65535], "yonder enter adriana and luciana adri i i antipholus looke": [0, 65535], "enter adriana and luciana adri i i antipholus looke strange": [0, 65535], "adriana and luciana adri i i antipholus looke strange and": [0, 65535], "and luciana adri i i antipholus looke strange and frowne": [0, 65535], "luciana adri i i antipholus looke strange and frowne some": [0, 65535], "adri i i antipholus looke strange and frowne some other": [0, 65535], "i i antipholus looke strange and frowne some other mistresse": [0, 65535], "i antipholus looke strange and frowne some other mistresse hath": [0, 65535], "antipholus looke strange and frowne some other mistresse hath thy": [0, 65535], "looke strange and frowne some other mistresse hath thy sweet": [0, 65535], "strange and frowne some other mistresse hath thy sweet aspects": [0, 65535], "and frowne some other mistresse hath thy sweet aspects i": [0, 65535], "frowne some other mistresse hath thy sweet aspects i am": [0, 65535], "some other mistresse hath thy sweet aspects i am not": [0, 65535], "other mistresse hath thy sweet aspects i am not adriana": [0, 65535], "mistresse hath thy sweet aspects i am not adriana nor": [0, 65535], "hath thy sweet aspects i am not adriana nor thy": [0, 65535], "thy sweet aspects i am not adriana nor thy wife": [0, 65535], "sweet aspects i am not adriana nor thy wife the": [0, 65535], "aspects i am not adriana nor thy wife the time": [0, 65535], "i am not adriana nor thy wife the time was": [0, 65535], "am not adriana nor thy wife the time was once": [0, 65535], "not adriana nor thy wife the time was once when": [0, 65535], "adriana nor thy wife the time was once when thou": [0, 65535], "nor thy wife the time was once when thou vn": [0, 65535], "thy wife the time was once when thou vn vrg'd": [0, 65535], "wife the time was once when thou vn vrg'd wouldst": [0, 65535], "the time was once when thou vn vrg'd wouldst vow": [0, 65535], "time was once when thou vn vrg'd wouldst vow that": [0, 65535], "was once when thou vn vrg'd wouldst vow that neuer": [0, 65535], "once when thou vn vrg'd wouldst vow that neuer words": [0, 65535], "when thou vn vrg'd wouldst vow that neuer words were": [0, 65535], "thou vn vrg'd wouldst vow that neuer words were musicke": [0, 65535], "vn vrg'd wouldst vow that neuer words were musicke to": [0, 65535], "vrg'd wouldst vow that neuer words were musicke to thine": [0, 65535], "wouldst vow that neuer words were musicke to thine eare": [0, 65535], "vow that neuer words were musicke to thine eare that": [0, 65535], "that neuer words were musicke to thine eare that neuer": [0, 65535], "neuer words were musicke to thine eare that neuer obiect": [0, 65535], "words were musicke to thine eare that neuer obiect pleasing": [0, 65535], "were musicke to thine eare that neuer obiect pleasing in": [0, 65535], "musicke to thine eare that neuer obiect pleasing in thine": [0, 65535], "to thine eare that neuer obiect pleasing in thine eye": [0, 65535], "thine eare that neuer obiect pleasing in thine eye that": [0, 65535], "eare that neuer obiect pleasing in thine eye that neuer": [0, 65535], "that neuer obiect pleasing in thine eye that neuer touch": [0, 65535], "neuer obiect pleasing in thine eye that neuer touch well": [0, 65535], "obiect pleasing in thine eye that neuer touch well welcome": [0, 65535], "pleasing in thine eye that neuer touch well welcome to": [0, 65535], "in thine eye that neuer touch well welcome to thy": [0, 65535], "thine eye that neuer touch well welcome to thy hand": [0, 65535], "eye that neuer touch well welcome to thy hand that": [0, 65535], "that neuer touch well welcome to thy hand that neuer": [0, 65535], "neuer touch well welcome to thy hand that neuer meat": [0, 65535], "touch well welcome to thy hand that neuer meat sweet": [0, 65535], "well welcome to thy hand that neuer meat sweet sauour'd": [0, 65535], "welcome to thy hand that neuer meat sweet sauour'd in": [0, 65535], "to thy hand that neuer meat sweet sauour'd in thy": [0, 65535], "thy hand that neuer meat sweet sauour'd in thy taste": [0, 65535], "hand that neuer meat sweet sauour'd in thy taste vnlesse": [0, 65535], "that neuer meat sweet sauour'd in thy taste vnlesse i": [0, 65535], "neuer meat sweet sauour'd in thy taste vnlesse i spake": [0, 65535], "meat sweet sauour'd in thy taste vnlesse i spake or": [0, 65535], "sweet sauour'd in thy taste vnlesse i spake or look'd": [0, 65535], "sauour'd in thy taste vnlesse i spake or look'd or": [0, 65535], "in thy taste vnlesse i spake or look'd or touch'd": [0, 65535], "thy taste vnlesse i spake or look'd or touch'd or": [0, 65535], "taste vnlesse i spake or look'd or touch'd or caru'd": [0, 65535], "vnlesse i spake or look'd or touch'd or caru'd to": [0, 65535], "i spake or look'd or touch'd or caru'd to thee": [0, 65535], "spake or look'd or touch'd or caru'd to thee how": [0, 65535], "or look'd or touch'd or caru'd to thee how comes": [0, 65535], "look'd or touch'd or caru'd to thee how comes it": [0, 65535], "or touch'd or caru'd to thee how comes it now": [0, 65535], "touch'd or caru'd to thee how comes it now my": [0, 65535], "or caru'd to thee how comes it now my husband": [0, 65535], "caru'd to thee how comes it now my husband oh": [0, 65535], "to thee how comes it now my husband oh how": [0, 65535], "thee how comes it now my husband oh how comes": [0, 65535], "how comes it now my husband oh how comes it": [0, 65535], "comes it now my husband oh how comes it that": [0, 65535], "it now my husband oh how comes it that thou": [0, 65535], "now my husband oh how comes it that thou art": [0, 65535], "my husband oh how comes it that thou art then": [0, 65535], "husband oh how comes it that thou art then estranged": [0, 65535], "oh how comes it that thou art then estranged from": [0, 65535], "how comes it that thou art then estranged from thy": [0, 65535], "comes it that thou art then estranged from thy selfe": [0, 65535], "it that thou art then estranged from thy selfe thy": [0, 65535], "that thou art then estranged from thy selfe thy selfe": [0, 65535], "thou art then estranged from thy selfe thy selfe i": [0, 65535], "art then estranged from thy selfe thy selfe i call": [0, 65535], "then estranged from thy selfe thy selfe i call it": [0, 65535], "estranged from thy selfe thy selfe i call it being": [0, 65535], "from thy selfe thy selfe i call it being strange": [0, 65535], "thy selfe thy selfe i call it being strange to": [0, 65535], "selfe thy selfe i call it being strange to me": [0, 65535], "thy selfe i call it being strange to me that": [0, 65535], "selfe i call it being strange to me that vndiuidable": [0, 65535], "i call it being strange to me that vndiuidable incorporate": [0, 65535], "call it being strange to me that vndiuidable incorporate am": [0, 65535], "it being strange to me that vndiuidable incorporate am better": [0, 65535], "being strange to me that vndiuidable incorporate am better then": [0, 65535], "strange to me that vndiuidable incorporate am better then thy": [0, 65535], "to me that vndiuidable incorporate am better then thy deere": [0, 65535], "me that vndiuidable incorporate am better then thy deere selfes": [0, 65535], "that vndiuidable incorporate am better then thy deere selfes better": [0, 65535], "vndiuidable incorporate am better then thy deere selfes better part": [0, 65535], "incorporate am better then thy deere selfes better part ah": [0, 65535], "am better then thy deere selfes better part ah doe": [0, 65535], "better then thy deere selfes better part ah doe not": [0, 65535], "then thy deere selfes better part ah doe not teare": [0, 65535], "thy deere selfes better part ah doe not teare away": [0, 65535], "deere selfes better part ah doe not teare away thy": [0, 65535], "selfes better part ah doe not teare away thy selfe": [0, 65535], "better part ah doe not teare away thy selfe from": [0, 65535], "part ah doe not teare away thy selfe from me": [0, 65535], "ah doe not teare away thy selfe from me for": [0, 65535], "doe not teare away thy selfe from me for know": [0, 65535], "not teare away thy selfe from me for know my": [0, 65535], "teare away thy selfe from me for know my loue": [0, 65535], "away thy selfe from me for know my loue as": [0, 65535], "thy selfe from me for know my loue as easie": [0, 65535], "selfe from me for know my loue as easie maist": [0, 65535], "from me for know my loue as easie maist thou": [0, 65535], "me for know my loue as easie maist thou fall": [0, 65535], "for know my loue as easie maist thou fall a": [0, 65535], "know my loue as easie maist thou fall a drop": [0, 65535], "my loue as easie maist thou fall a drop of": [0, 65535], "loue as easie maist thou fall a drop of water": [0, 65535], "as easie maist thou fall a drop of water in": [0, 65535], "easie maist thou fall a drop of water in the": [0, 65535], "maist thou fall a drop of water in the breaking": [0, 65535], "thou fall a drop of water in the breaking gulfe": [0, 65535], "fall a drop of water in the breaking gulfe and": [0, 65535], "a drop of water in the breaking gulfe and take": [0, 65535], "drop of water in the breaking gulfe and take vnmingled": [0, 65535], "of water in the breaking gulfe and take vnmingled thence": [0, 65535], "water in the breaking gulfe and take vnmingled thence that": [0, 65535], "in the breaking gulfe and take vnmingled thence that drop": [0, 65535], "the breaking gulfe and take vnmingled thence that drop againe": [0, 65535], "breaking gulfe and take vnmingled thence that drop againe without": [0, 65535], "gulfe and take vnmingled thence that drop againe without addition": [0, 65535], "and take vnmingled thence that drop againe without addition or": [0, 65535], "take vnmingled thence that drop againe without addition or diminishing": [0, 65535], "vnmingled thence that drop againe without addition or diminishing as": [0, 65535], "thence that drop againe without addition or diminishing as take": [0, 65535], "that drop againe without addition or diminishing as take from": [0, 65535], "drop againe without addition or diminishing as take from me": [0, 65535], "againe without addition or diminishing as take from me thy": [0, 65535], "without addition or diminishing as take from me thy selfe": [0, 65535], "addition or diminishing as take from me thy selfe and": [0, 65535], "or diminishing as take from me thy selfe and not": [0, 65535], "diminishing as take from me thy selfe and not me": [0, 65535], "as take from me thy selfe and not me too": [0, 65535], "take from me thy selfe and not me too how": [0, 65535], "from me thy selfe and not me too how deerely": [0, 65535], "me thy selfe and not me too how deerely would": [0, 65535], "thy selfe and not me too how deerely would it": [0, 65535], "selfe and not me too how deerely would it touch": [0, 65535], "and not me too how deerely would it touch thee": [0, 65535], "not me too how deerely would it touch thee to": [0, 65535], "me too how deerely would it touch thee to the": [0, 65535], "too how deerely would it touch thee to the quicke": [0, 65535], "how deerely would it touch thee to the quicke shouldst": [0, 65535], "deerely would it touch thee to the quicke shouldst thou": [0, 65535], "would it touch thee to the quicke shouldst thou but": [0, 65535], "it touch thee to the quicke shouldst thou but heare": [0, 65535], "touch thee to the quicke shouldst thou but heare i": [0, 65535], "thee to the quicke shouldst thou but heare i were": [0, 65535], "to the quicke shouldst thou but heare i were licencious": [0, 65535], "the quicke shouldst thou but heare i were licencious and": [0, 65535], "quicke shouldst thou but heare i were licencious and that": [0, 65535], "shouldst thou but heare i were licencious and that this": [0, 65535], "thou but heare i were licencious and that this body": [0, 65535], "but heare i were licencious and that this body consecrate": [0, 65535], "heare i were licencious and that this body consecrate to": [0, 65535], "i were licencious and that this body consecrate to thee": [0, 65535], "were licencious and that this body consecrate to thee by": [0, 65535], "licencious and that this body consecrate to thee by ruffian": [0, 65535], "and that this body consecrate to thee by ruffian lust": [0, 65535], "that this body consecrate to thee by ruffian lust should": [0, 65535], "this body consecrate to thee by ruffian lust should be": [0, 65535], "body consecrate to thee by ruffian lust should be contaminate": [0, 65535], "consecrate to thee by ruffian lust should be contaminate wouldst": [0, 65535], "to thee by ruffian lust should be contaminate wouldst thou": [0, 65535], "thee by ruffian lust should be contaminate wouldst thou not": [0, 65535], "by ruffian lust should be contaminate wouldst thou not spit": [0, 65535], "ruffian lust should be contaminate wouldst thou not spit at": [0, 65535], "lust should be contaminate wouldst thou not spit at me": [0, 65535], "should be contaminate wouldst thou not spit at me and": [0, 65535], "be contaminate wouldst thou not spit at me and spurne": [0, 65535], "contaminate wouldst thou not spit at me and spurne at": [0, 65535], "wouldst thou not spit at me and spurne at me": [0, 65535], "thou not spit at me and spurne at me and": [0, 65535], "not spit at me and spurne at me and hurle": [0, 65535], "spit at me and spurne at me and hurle the": [0, 65535], "at me and spurne at me and hurle the name": [0, 65535], "me and spurne at me and hurle the name of": [0, 65535], "and spurne at me and hurle the name of husband": [0, 65535], "spurne at me and hurle the name of husband in": [0, 65535], "at me and hurle the name of husband in my": [0, 65535], "me and hurle the name of husband in my face": [0, 65535], "and hurle the name of husband in my face and": [0, 65535], "hurle the name of husband in my face and teare": [0, 65535], "the name of husband in my face and teare the": [0, 65535], "name of husband in my face and teare the stain'd": [0, 65535], "of husband in my face and teare the stain'd skin": [0, 65535], "husband in my face and teare the stain'd skin of": [0, 65535], "in my face and teare the stain'd skin of my": [0, 65535], "my face and teare the stain'd skin of my harlot": [0, 65535], "face and teare the stain'd skin of my harlot brow": [0, 65535], "and teare the stain'd skin of my harlot brow and": [0, 65535], "teare the stain'd skin of my harlot brow and from": [0, 65535], "the stain'd skin of my harlot brow and from my": [0, 65535], "stain'd skin of my harlot brow and from my false": [0, 65535], "skin of my harlot brow and from my false hand": [0, 65535], "of my harlot brow and from my false hand cut": [0, 65535], "my harlot brow and from my false hand cut the": [0, 65535], "harlot brow and from my false hand cut the wedding": [0, 65535], "brow and from my false hand cut the wedding ring": [0, 65535], "and from my false hand cut the wedding ring and": [0, 65535], "from my false hand cut the wedding ring and breake": [0, 65535], "my false hand cut the wedding ring and breake it": [0, 65535], "false hand cut the wedding ring and breake it with": [0, 65535], "hand cut the wedding ring and breake it with a": [0, 65535], "cut the wedding ring and breake it with a deepe": [0, 65535], "the wedding ring and breake it with a deepe diuorcing": [0, 65535], "wedding ring and breake it with a deepe diuorcing vow": [0, 65535], "ring and breake it with a deepe diuorcing vow i": [0, 65535], "and breake it with a deepe diuorcing vow i know": [0, 65535], "breake it with a deepe diuorcing vow i know thou": [0, 65535], "it with a deepe diuorcing vow i know thou canst": [0, 65535], "with a deepe diuorcing vow i know thou canst and": [0, 65535], "a deepe diuorcing vow i know thou canst and therefore": [0, 65535], "deepe diuorcing vow i know thou canst and therefore see": [0, 65535], "diuorcing vow i know thou canst and therefore see thou": [0, 65535], "vow i know thou canst and therefore see thou doe": [0, 65535], "i know thou canst and therefore see thou doe it": [0, 65535], "know thou canst and therefore see thou doe it i": [0, 65535], "thou canst and therefore see thou doe it i am": [0, 65535], "canst and therefore see thou doe it i am possest": [0, 65535], "and therefore see thou doe it i am possest with": [0, 65535], "therefore see thou doe it i am possest with an": [0, 65535], "see thou doe it i am possest with an adulterate": [0, 65535], "thou doe it i am possest with an adulterate blot": [0, 65535], "doe it i am possest with an adulterate blot my": [0, 65535], "it i am possest with an adulterate blot my bloud": [0, 65535], "i am possest with an adulterate blot my bloud is": [0, 65535], "am possest with an adulterate blot my bloud is mingled": [0, 65535], "possest with an adulterate blot my bloud is mingled with": [0, 65535], "with an adulterate blot my bloud is mingled with the": [0, 65535], "an adulterate blot my bloud is mingled with the crime": [0, 65535], "adulterate blot my bloud is mingled with the crime of": [0, 65535], "blot my bloud is mingled with the crime of lust": [0, 65535], "my bloud is mingled with the crime of lust for": [0, 65535], "bloud is mingled with the crime of lust for if": [0, 65535], "is mingled with the crime of lust for if we": [0, 65535], "mingled with the crime of lust for if we two": [0, 65535], "with the crime of lust for if we two be": [0, 65535], "the crime of lust for if we two be one": [0, 65535], "crime of lust for if we two be one and": [0, 65535], "of lust for if we two be one and thou": [0, 65535], "lust for if we two be one and thou play": [0, 65535], "for if we two be one and thou play false": [0, 65535], "if we two be one and thou play false i": [0, 65535], "we two be one and thou play false i doe": [0, 65535], "two be one and thou play false i doe digest": [0, 65535], "be one and thou play false i doe digest the": [0, 65535], "one and thou play false i doe digest the poison": [0, 65535], "and thou play false i doe digest the poison of": [0, 65535], "thou play false i doe digest the poison of thy": [0, 65535], "play false i doe digest the poison of thy flesh": [0, 65535], "false i doe digest the poison of thy flesh being": [0, 65535], "i doe digest the poison of thy flesh being strumpeted": [0, 65535], "doe digest the poison of thy flesh being strumpeted by": [0, 65535], "digest the poison of thy flesh being strumpeted by thy": [0, 65535], "the poison of thy flesh being strumpeted by thy contagion": [0, 65535], "poison of thy flesh being strumpeted by thy contagion keepe": [0, 65535], "of thy flesh being strumpeted by thy contagion keepe then": [0, 65535], "thy flesh being strumpeted by thy contagion keepe then faire": [0, 65535], "flesh being strumpeted by thy contagion keepe then faire league": [0, 65535], "being strumpeted by thy contagion keepe then faire league and": [0, 65535], "strumpeted by thy contagion keepe then faire league and truce": [0, 65535], "by thy contagion keepe then faire league and truce with": [0, 65535], "thy contagion keepe then faire league and truce with thy": [0, 65535], "contagion keepe then faire league and truce with thy true": [0, 65535], "keepe then faire league and truce with thy true bed": [0, 65535], "then faire league and truce with thy true bed i": [0, 65535], "faire league and truce with thy true bed i liue": [0, 65535], "league and truce with thy true bed i liue distain'd": [0, 65535], "and truce with thy true bed i liue distain'd thou": [0, 65535], "truce with thy true bed i liue distain'd thou vndishonoured": [0, 65535], "with thy true bed i liue distain'd thou vndishonoured antip": [0, 65535], "thy true bed i liue distain'd thou vndishonoured antip plead": [0, 65535], "true bed i liue distain'd thou vndishonoured antip plead you": [0, 65535], "bed i liue distain'd thou vndishonoured antip plead you to": [0, 65535], "i liue distain'd thou vndishonoured antip plead you to me": [0, 65535], "liue distain'd thou vndishonoured antip plead you to me faire": [0, 65535], "distain'd thou vndishonoured antip plead you to me faire dame": [0, 65535], "thou vndishonoured antip plead you to me faire dame i": [0, 65535], "vndishonoured antip plead you to me faire dame i know": [0, 65535], "antip plead you to me faire dame i know you": [0, 65535], "plead you to me faire dame i know you not": [0, 65535], "you to me faire dame i know you not in": [0, 65535], "to me faire dame i know you not in ephesus": [0, 65535], "me faire dame i know you not in ephesus i": [0, 65535], "faire dame i know you not in ephesus i am": [0, 65535], "dame i know you not in ephesus i am but": [0, 65535], "i know you not in ephesus i am but two": [0, 65535], "know you not in ephesus i am but two houres": [0, 65535], "you not in ephesus i am but two houres old": [0, 65535], "not in ephesus i am but two houres old as": [0, 65535], "in ephesus i am but two houres old as strange": [0, 65535], "ephesus i am but two houres old as strange vnto": [0, 65535], "i am but two houres old as strange vnto your": [0, 65535], "am but two houres old as strange vnto your towne": [0, 65535], "but two houres old as strange vnto your towne as": [0, 65535], "two houres old as strange vnto your towne as to": [0, 65535], "houres old as strange vnto your towne as to your": [0, 65535], "old as strange vnto your towne as to your talke": [0, 65535], "as strange vnto your towne as to your talke who": [0, 65535], "strange vnto your towne as to your talke who euery": [0, 65535], "vnto your towne as to your talke who euery word": [0, 65535], "your towne as to your talke who euery word by": [0, 65535], "towne as to your talke who euery word by all": [0, 65535], "as to your talke who euery word by all my": [0, 65535], "to your talke who euery word by all my wit": [0, 65535], "your talke who euery word by all my wit being": [0, 65535], "talke who euery word by all my wit being scan'd": [0, 65535], "who euery word by all my wit being scan'd wants": [0, 65535], "euery word by all my wit being scan'd wants wit": [0, 65535], "word by all my wit being scan'd wants wit in": [0, 65535], "by all my wit being scan'd wants wit in all": [0, 65535], "all my wit being scan'd wants wit in all one": [0, 65535], "my wit being scan'd wants wit in all one word": [0, 65535], "wit being scan'd wants wit in all one word to": [0, 65535], "being scan'd wants wit in all one word to vnderstand": [0, 65535], "scan'd wants wit in all one word to vnderstand luci": [0, 65535], "wants wit in all one word to vnderstand luci fie": [0, 65535], "wit in all one word to vnderstand luci fie brother": [0, 65535], "in all one word to vnderstand luci fie brother how": [0, 65535], "all one word to vnderstand luci fie brother how the": [0, 65535], "one word to vnderstand luci fie brother how the world": [0, 65535], "word to vnderstand luci fie brother how the world is": [0, 65535], "to vnderstand luci fie brother how the world is chang'd": [0, 65535], "vnderstand luci fie brother how the world is chang'd with": [0, 65535], "luci fie brother how the world is chang'd with you": [0, 65535], "fie brother how the world is chang'd with you when": [0, 65535], "brother how the world is chang'd with you when were": [0, 65535], "how the world is chang'd with you when were you": [0, 65535], "the world is chang'd with you when were you wont": [0, 65535], "world is chang'd with you when were you wont to": [0, 65535], "is chang'd with you when were you wont to vse": [0, 65535], "chang'd with you when were you wont to vse my": [0, 65535], "with you when were you wont to vse my sister": [0, 65535], "you when were you wont to vse my sister thus": [0, 65535], "when were you wont to vse my sister thus she": [0, 65535], "were you wont to vse my sister thus she sent": [0, 65535], "you wont to vse my sister thus she sent for": [0, 65535], "wont to vse my sister thus she sent for you": [0, 65535], "to vse my sister thus she sent for you by": [0, 65535], "vse my sister thus she sent for you by dromio": [0, 65535], "my sister thus she sent for you by dromio home": [0, 65535], "sister thus she sent for you by dromio home to": [0, 65535], "thus she sent for you by dromio home to dinner": [0, 65535], "she sent for you by dromio home to dinner ant": [0, 65535], "sent for you by dromio home to dinner ant by": [0, 65535], "for you by dromio home to dinner ant by dromio": [0, 65535], "you by dromio home to dinner ant by dromio drom": [0, 65535], "by dromio home to dinner ant by dromio drom by": [0, 65535], "dromio home to dinner ant by dromio drom by me": [0, 65535], "home to dinner ant by dromio drom by me adr": [0, 65535], "to dinner ant by dromio drom by me adr by": [0, 65535], "dinner ant by dromio drom by me adr by thee": [0, 65535], "ant by dromio drom by me adr by thee and": [0, 65535], "by dromio drom by me adr by thee and this": [0, 65535], "dromio drom by me adr by thee and this thou": [0, 65535], "drom by me adr by thee and this thou didst": [0, 65535], "by me adr by thee and this thou didst returne": [0, 65535], "me adr by thee and this thou didst returne from": [0, 65535], "adr by thee and this thou didst returne from him": [0, 65535], "by thee and this thou didst returne from him that": [0, 65535], "thee and this thou didst returne from him that he": [0, 65535], "and this thou didst returne from him that he did": [0, 65535], "this thou didst returne from him that he did buffet": [0, 65535], "thou didst returne from him that he did buffet thee": [0, 65535], "didst returne from him that he did buffet thee and": [0, 65535], "returne from him that he did buffet thee and in": [0, 65535], "from him that he did buffet thee and in his": [0, 65535], "him that he did buffet thee and in his blowes": [0, 65535], "that he did buffet thee and in his blowes denied": [0, 65535], "he did buffet thee and in his blowes denied my": [0, 65535], "did buffet thee and in his blowes denied my house": [0, 65535], "buffet thee and in his blowes denied my house for": [0, 65535], "thee and in his blowes denied my house for his": [0, 65535], "and in his blowes denied my house for his me": [0, 65535], "in his blowes denied my house for his me for": [0, 65535], "his blowes denied my house for his me for his": [0, 65535], "blowes denied my house for his me for his wife": [0, 65535], "denied my house for his me for his wife ant": [0, 65535], "my house for his me for his wife ant did": [0, 65535], "house for his me for his wife ant did you": [0, 65535], "for his me for his wife ant did you conuerse": [0, 65535], "his me for his wife ant did you conuerse sir": [0, 65535], "me for his wife ant did you conuerse sir with": [0, 65535], "for his wife ant did you conuerse sir with this": [0, 65535], "his wife ant did you conuerse sir with this gentlewoman": [0, 65535], "wife ant did you conuerse sir with this gentlewoman what": [0, 65535], "ant did you conuerse sir with this gentlewoman what is": [0, 65535], "did you conuerse sir with this gentlewoman what is the": [0, 65535], "you conuerse sir with this gentlewoman what is the course": [0, 65535], "conuerse sir with this gentlewoman what is the course and": [0, 65535], "sir with this gentlewoman what is the course and drift": [0, 65535], "with this gentlewoman what is the course and drift of": [0, 65535], "this gentlewoman what is the course and drift of your": [0, 65535], "gentlewoman what is the course and drift of your compact": [0, 65535], "what is the course and drift of your compact s": [0, 65535], "is the course and drift of your compact s dro": [0, 65535], "the course and drift of your compact s dro i": [0, 65535], "course and drift of your compact s dro i sir": [0, 65535], "and drift of your compact s dro i sir i": [0, 65535], "drift of your compact s dro i sir i neuer": [0, 65535], "of your compact s dro i sir i neuer saw": [0, 65535], "your compact s dro i sir i neuer saw her": [0, 65535], "compact s dro i sir i neuer saw her till": [0, 65535], "s dro i sir i neuer saw her till this": [0, 65535], "dro i sir i neuer saw her till this time": [0, 65535], "i sir i neuer saw her till this time ant": [0, 65535], "sir i neuer saw her till this time ant villaine": [0, 65535], "i neuer saw her till this time ant villaine thou": [0, 65535], "neuer saw her till this time ant villaine thou liest": [0, 65535], "saw her till this time ant villaine thou liest for": [0, 65535], "her till this time ant villaine thou liest for euen": [0, 65535], "till this time ant villaine thou liest for euen her": [0, 65535], "this time ant villaine thou liest for euen her verie": [0, 65535], "time ant villaine thou liest for euen her verie words": [0, 65535], "ant villaine thou liest for euen her verie words didst": [0, 65535], "villaine thou liest for euen her verie words didst thou": [0, 65535], "thou liest for euen her verie words didst thou deliuer": [0, 65535], "liest for euen her verie words didst thou deliuer to": [0, 65535], "for euen her verie words didst thou deliuer to me": [0, 65535], "euen her verie words didst thou deliuer to me on": [0, 65535], "her verie words didst thou deliuer to me on the": [0, 65535], "verie words didst thou deliuer to me on the mart": [0, 65535], "words didst thou deliuer to me on the mart s": [0, 65535], "didst thou deliuer to me on the mart s dro": [0, 65535], "thou deliuer to me on the mart s dro i": [0, 65535], "deliuer to me on the mart s dro i neuer": [0, 65535], "to me on the mart s dro i neuer spake": [0, 65535], "me on the mart s dro i neuer spake with": [0, 65535], "on the mart s dro i neuer spake with her": [0, 65535], "the mart s dro i neuer spake with her in": [0, 65535], "mart s dro i neuer spake with her in all": [0, 65535], "s dro i neuer spake with her in all my": [0, 65535], "dro i neuer spake with her in all my life": [0, 65535], "i neuer spake with her in all my life ant": [0, 65535], "neuer spake with her in all my life ant how": [0, 65535], "spake with her in all my life ant how can": [0, 65535], "with her in all my life ant how can she": [0, 65535], "her in all my life ant how can she thus": [0, 65535], "in all my life ant how can she thus then": [0, 65535], "all my life ant how can she thus then call": [0, 65535], "my life ant how can she thus then call vs": [0, 65535], "life ant how can she thus then call vs by": [0, 65535], "ant how can she thus then call vs by our": [0, 65535], "how can she thus then call vs by our names": [0, 65535], "can she thus then call vs by our names vnlesse": [0, 65535], "she thus then call vs by our names vnlesse it": [0, 65535], "thus then call vs by our names vnlesse it be": [0, 65535], "then call vs by our names vnlesse it be by": [0, 65535], "call vs by our names vnlesse it be by inspiration": [0, 65535], "vs by our names vnlesse it be by inspiration adri": [0, 65535], "by our names vnlesse it be by inspiration adri how": [0, 65535], "our names vnlesse it be by inspiration adri how ill": [0, 65535], "names vnlesse it be by inspiration adri how ill agrees": [0, 65535], "vnlesse it be by inspiration adri how ill agrees it": [0, 65535], "it be by inspiration adri how ill agrees it with": [0, 65535], "be by inspiration adri how ill agrees it with your": [0, 65535], "by inspiration adri how ill agrees it with your grauitie": [0, 65535], "inspiration adri how ill agrees it with your grauitie to": [0, 65535], "adri how ill agrees it with your grauitie to counterfeit": [0, 65535], "how ill agrees it with your grauitie to counterfeit thus": [0, 65535], "ill agrees it with your grauitie to counterfeit thus grosely": [0, 65535], "agrees it with your grauitie to counterfeit thus grosely with": [0, 65535], "it with your grauitie to counterfeit thus grosely with your": [0, 65535], "with your grauitie to counterfeit thus grosely with your slaue": [0, 65535], "your grauitie to counterfeit thus grosely with your slaue abetting": [0, 65535], "grauitie to counterfeit thus grosely with your slaue abetting him": [0, 65535], "to counterfeit thus grosely with your slaue abetting him to": [0, 65535], "counterfeit thus grosely with your slaue abetting him to thwart": [0, 65535], "thus grosely with your slaue abetting him to thwart me": [0, 65535], "grosely with your slaue abetting him to thwart me in": [0, 65535], "with your slaue abetting him to thwart me in my": [0, 65535], "your slaue abetting him to thwart me in my moode": [0, 65535], "slaue abetting him to thwart me in my moode be": [0, 65535], "abetting him to thwart me in my moode be it": [0, 65535], "him to thwart me in my moode be it my": [0, 65535], "to thwart me in my moode be it my wrong": [0, 65535], "thwart me in my moode be it my wrong you": [0, 65535], "me in my moode be it my wrong you are": [0, 65535], "in my moode be it my wrong you are from": [0, 65535], "my moode be it my wrong you are from me": [0, 65535], "moode be it my wrong you are from me exempt": [0, 65535], "be it my wrong you are from me exempt but": [0, 65535], "it my wrong you are from me exempt but wrong": [0, 65535], "my wrong you are from me exempt but wrong not": [0, 65535], "wrong you are from me exempt but wrong not that": [0, 65535], "you are from me exempt but wrong not that wrong": [0, 65535], "are from me exempt but wrong not that wrong with": [0, 65535], "from me exempt but wrong not that wrong with a": [0, 65535], "me exempt but wrong not that wrong with a more": [0, 65535], "exempt but wrong not that wrong with a more contempt": [0, 65535], "but wrong not that wrong with a more contempt come": [0, 65535], "wrong not that wrong with a more contempt come i": [0, 65535], "not that wrong with a more contempt come i will": [0, 65535], "that wrong with a more contempt come i will fasten": [0, 65535], "wrong with a more contempt come i will fasten on": [0, 65535], "with a more contempt come i will fasten on this": [0, 65535], "a more contempt come i will fasten on this sleeue": [0, 65535], "more contempt come i will fasten on this sleeue of": [0, 65535], "contempt come i will fasten on this sleeue of thine": [0, 65535], "come i will fasten on this sleeue of thine thou": [0, 65535], "i will fasten on this sleeue of thine thou art": [0, 65535], "will fasten on this sleeue of thine thou art an": [0, 65535], "fasten on this sleeue of thine thou art an elme": [0, 65535], "on this sleeue of thine thou art an elme my": [0, 65535], "this sleeue of thine thou art an elme my husband": [0, 65535], "sleeue of thine thou art an elme my husband i": [0, 65535], "of thine thou art an elme my husband i a": [0, 65535], "thine thou art an elme my husband i a vine": [0, 65535], "thou art an elme my husband i a vine whose": [0, 65535], "art an elme my husband i a vine whose weaknesse": [0, 65535], "an elme my husband i a vine whose weaknesse married": [0, 65535], "elme my husband i a vine whose weaknesse married to": [0, 65535], "my husband i a vine whose weaknesse married to thy": [0, 65535], "husband i a vine whose weaknesse married to thy stranger": [0, 65535], "i a vine whose weaknesse married to thy stranger state": [0, 65535], "a vine whose weaknesse married to thy stranger state makes": [0, 65535], "vine whose weaknesse married to thy stranger state makes me": [0, 65535], "whose weaknesse married to thy stranger state makes me with": [0, 65535], "weaknesse married to thy stranger state makes me with thy": [0, 65535], "married to thy stranger state makes me with thy strength": [0, 65535], "to thy stranger state makes me with thy strength to": [0, 65535], "thy stranger state makes me with thy strength to communicate": [0, 65535], "stranger state makes me with thy strength to communicate if": [0, 65535], "state makes me with thy strength to communicate if ought": [0, 65535], "makes me with thy strength to communicate if ought possesse": [0, 65535], "me with thy strength to communicate if ought possesse thee": [0, 65535], "with thy strength to communicate if ought possesse thee from": [0, 65535], "thy strength to communicate if ought possesse thee from me": [0, 65535], "strength to communicate if ought possesse thee from me it": [0, 65535], "to communicate if ought possesse thee from me it is": [0, 65535], "communicate if ought possesse thee from me it is drosse": [0, 65535], "if ought possesse thee from me it is drosse vsurping": [0, 65535], "ought possesse thee from me it is drosse vsurping iuie": [0, 65535], "possesse thee from me it is drosse vsurping iuie brier": [0, 65535], "thee from me it is drosse vsurping iuie brier or": [0, 65535], "from me it is drosse vsurping iuie brier or idle": [0, 65535], "me it is drosse vsurping iuie brier or idle mosse": [0, 65535], "it is drosse vsurping iuie brier or idle mosse who": [0, 65535], "is drosse vsurping iuie brier or idle mosse who all": [0, 65535], "drosse vsurping iuie brier or idle mosse who all for": [0, 65535], "vsurping iuie brier or idle mosse who all for want": [0, 65535], "iuie brier or idle mosse who all for want of": [0, 65535], "brier or idle mosse who all for want of pruning": [0, 65535], "or idle mosse who all for want of pruning with": [0, 65535], "idle mosse who all for want of pruning with intrusion": [0, 65535], "mosse who all for want of pruning with intrusion infect": [0, 65535], "who all for want of pruning with intrusion infect thy": [0, 65535], "all for want of pruning with intrusion infect thy sap": [0, 65535], "for want of pruning with intrusion infect thy sap and": [0, 65535], "want of pruning with intrusion infect thy sap and liue": [0, 65535], "of pruning with intrusion infect thy sap and liue on": [0, 65535], "pruning with intrusion infect thy sap and liue on thy": [0, 65535], "with intrusion infect thy sap and liue on thy confusion": [0, 65535], "intrusion infect thy sap and liue on thy confusion ant": [0, 65535], "infect thy sap and liue on thy confusion ant to": [0, 65535], "thy sap and liue on thy confusion ant to mee": [0, 65535], "sap and liue on thy confusion ant to mee shee": [0, 65535], "and liue on thy confusion ant to mee shee speakes": [0, 65535], "liue on thy confusion ant to mee shee speakes shee": [0, 65535], "on thy confusion ant to mee shee speakes shee moues": [0, 65535], "thy confusion ant to mee shee speakes shee moues mee": [0, 65535], "confusion ant to mee shee speakes shee moues mee for": [0, 65535], "ant to mee shee speakes shee moues mee for her": [0, 65535], "to mee shee speakes shee moues mee for her theame": [0, 65535], "mee shee speakes shee moues mee for her theame what": [0, 65535], "shee speakes shee moues mee for her theame what was": [0, 65535], "speakes shee moues mee for her theame what was i": [0, 65535], "shee moues mee for her theame what was i married": [0, 65535], "moues mee for her theame what was i married to": [0, 65535], "mee for her theame what was i married to her": [0, 65535], "for her theame what was i married to her in": [0, 65535], "her theame what was i married to her in my": [0, 65535], "theame what was i married to her in my dreame": [0, 65535], "what was i married to her in my dreame or": [0, 65535], "was i married to her in my dreame or sleepe": [0, 65535], "i married to her in my dreame or sleepe i": [0, 65535], "married to her in my dreame or sleepe i now": [0, 65535], "to her in my dreame or sleepe i now and": [0, 65535], "her in my dreame or sleepe i now and thinke": [0, 65535], "in my dreame or sleepe i now and thinke i": [0, 65535], "my dreame or sleepe i now and thinke i heare": [0, 65535], "dreame or sleepe i now and thinke i heare all": [0, 65535], "or sleepe i now and thinke i heare all this": [0, 65535], "sleepe i now and thinke i heare all this what": [0, 65535], "i now and thinke i heare all this what error": [0, 65535], "now and thinke i heare all this what error driues": [0, 65535], "and thinke i heare all this what error driues our": [0, 65535], "thinke i heare all this what error driues our eies": [0, 65535], "i heare all this what error driues our eies and": [0, 65535], "heare all this what error driues our eies and eares": [0, 65535], "all this what error driues our eies and eares amisse": [0, 65535], "this what error driues our eies and eares amisse vntill": [0, 65535], "what error driues our eies and eares amisse vntill i": [0, 65535], "error driues our eies and eares amisse vntill i know": [0, 65535], "driues our eies and eares amisse vntill i know this": [0, 65535], "our eies and eares amisse vntill i know this sure": [0, 65535], "eies and eares amisse vntill i know this sure vncertaintie": [0, 65535], "and eares amisse vntill i know this sure vncertaintie ile": [0, 65535], "eares amisse vntill i know this sure vncertaintie ile entertaine": [0, 65535], "amisse vntill i know this sure vncertaintie ile entertaine the": [0, 65535], "vntill i know this sure vncertaintie ile entertaine the free'd": [0, 65535], "i know this sure vncertaintie ile entertaine the free'd fallacie": [0, 65535], "know this sure vncertaintie ile entertaine the free'd fallacie luc": [0, 65535], "this sure vncertaintie ile entertaine the free'd fallacie luc dromio": [0, 65535], "sure vncertaintie ile entertaine the free'd fallacie luc dromio goe": [0, 65535], "vncertaintie ile entertaine the free'd fallacie luc dromio goe bid": [0, 65535], "ile entertaine the free'd fallacie luc dromio goe bid the": [0, 65535], "entertaine the free'd fallacie luc dromio goe bid the seruants": [0, 65535], "the free'd fallacie luc dromio goe bid the seruants spred": [0, 65535], "free'd fallacie luc dromio goe bid the seruants spred for": [0, 65535], "fallacie luc dromio goe bid the seruants spred for dinner": [0, 65535], "luc dromio goe bid the seruants spred for dinner s": [0, 65535], "dromio goe bid the seruants spred for dinner s dro": [0, 65535], "goe bid the seruants spred for dinner s dro oh": [0, 65535], "bid the seruants spred for dinner s dro oh for": [0, 65535], "the seruants spred for dinner s dro oh for my": [0, 65535], "seruants spred for dinner s dro oh for my beads": [0, 65535], "spred for dinner s dro oh for my beads i": [0, 65535], "for dinner s dro oh for my beads i crosse": [0, 65535], "dinner s dro oh for my beads i crosse me": [0, 65535], "s dro oh for my beads i crosse me for": [0, 65535], "dro oh for my beads i crosse me for a": [0, 65535], "oh for my beads i crosse me for a sinner": [0, 65535], "for my beads i crosse me for a sinner this": [0, 65535], "my beads i crosse me for a sinner this is": [0, 65535], "beads i crosse me for a sinner this is the": [0, 65535], "i crosse me for a sinner this is the fairie": [0, 65535], "crosse me for a sinner this is the fairie land": [0, 65535], "me for a sinner this is the fairie land oh": [0, 65535], "for a sinner this is the fairie land oh spight": [0, 65535], "a sinner this is the fairie land oh spight of": [0, 65535], "sinner this is the fairie land oh spight of spights": [0, 65535], "this is the fairie land oh spight of spights we": [0, 65535], "is the fairie land oh spight of spights we talke": [0, 65535], "the fairie land oh spight of spights we talke with": [0, 65535], "fairie land oh spight of spights we talke with goblins": [0, 65535], "land oh spight of spights we talke with goblins owles": [0, 65535], "oh spight of spights we talke with goblins owles and": [0, 65535], "spight of spights we talke with goblins owles and sprights": [0, 65535], "of spights we talke with goblins owles and sprights if": [0, 65535], "spights we talke with goblins owles and sprights if we": [0, 65535], "we talke with goblins owles and sprights if we obay": [0, 65535], "talke with goblins owles and sprights if we obay them": [0, 65535], "with goblins owles and sprights if we obay them not": [0, 65535], "goblins owles and sprights if we obay them not this": [0, 65535], "owles and sprights if we obay them not this will": [0, 65535], "and sprights if we obay them not this will insue": [0, 65535], "sprights if we obay them not this will insue they'll": [0, 65535], "if we obay them not this will insue they'll sucke": [0, 65535], "we obay them not this will insue they'll sucke our": [0, 65535], "obay them not this will insue they'll sucke our breath": [0, 65535], "them not this will insue they'll sucke our breath or": [0, 65535], "not this will insue they'll sucke our breath or pinch": [0, 65535], "this will insue they'll sucke our breath or pinch vs": [0, 65535], "will insue they'll sucke our breath or pinch vs blacke": [0, 65535], "insue they'll sucke our breath or pinch vs blacke and": [0, 65535], "they'll sucke our breath or pinch vs blacke and blew": [0, 65535], "sucke our breath or pinch vs blacke and blew luc": [0, 65535], "our breath or pinch vs blacke and blew luc why": [0, 65535], "breath or pinch vs blacke and blew luc why prat'st": [0, 65535], "or pinch vs blacke and blew luc why prat'st thou": [0, 65535], "pinch vs blacke and blew luc why prat'st thou to": [0, 65535], "vs blacke and blew luc why prat'st thou to thy": [0, 65535], "blacke and blew luc why prat'st thou to thy selfe": [0, 65535], "and blew luc why prat'st thou to thy selfe and": [0, 65535], "blew luc why prat'st thou to thy selfe and answer'st": [0, 65535], "luc why prat'st thou to thy selfe and answer'st not": [0, 65535], "why prat'st thou to thy selfe and answer'st not dromio": [0, 65535], "prat'st thou to thy selfe and answer'st not dromio thou": [0, 65535], "thou to thy selfe and answer'st not dromio thou dromio": [0, 65535], "to thy selfe and answer'st not dromio thou dromio thou": [0, 65535], "thy selfe and answer'st not dromio thou dromio thou snaile": [0, 65535], "selfe and answer'st not dromio thou dromio thou snaile thou": [0, 65535], "and answer'st not dromio thou dromio thou snaile thou slug": [0, 65535], "answer'st not dromio thou dromio thou snaile thou slug thou": [0, 65535], "not dromio thou dromio thou snaile thou slug thou sot": [0, 65535], "dromio thou dromio thou snaile thou slug thou sot s": [0, 65535], "thou dromio thou snaile thou slug thou sot s dro": [0, 65535], "dromio thou snaile thou slug thou sot s dro i": [0, 65535], "thou snaile thou slug thou sot s dro i am": [0, 65535], "snaile thou slug thou sot s dro i am transformed": [0, 65535], "thou slug thou sot s dro i am transformed master": [0, 65535], "slug thou sot s dro i am transformed master am": [0, 65535], "thou sot s dro i am transformed master am i": [0, 65535], "sot s dro i am transformed master am i not": [0, 65535], "s dro i am transformed master am i not ant": [0, 65535], "dro i am transformed master am i not ant i": [0, 65535], "i am transformed master am i not ant i thinke": [0, 65535], "am transformed master am i not ant i thinke thou": [0, 65535], "transformed master am i not ant i thinke thou art": [0, 65535], "master am i not ant i thinke thou art in": [0, 65535], "am i not ant i thinke thou art in minde": [0, 65535], "i not ant i thinke thou art in minde and": [0, 65535], "not ant i thinke thou art in minde and so": [0, 65535], "ant i thinke thou art in minde and so am": [0, 65535], "i thinke thou art in minde and so am i": [0, 65535], "thinke thou art in minde and so am i s": [0, 65535], "thou art in minde and so am i s dro": [0, 65535], "art in minde and so am i s dro nay": [0, 65535], "in minde and so am i s dro nay master": [0, 65535], "minde and so am i s dro nay master both": [0, 65535], "and so am i s dro nay master both in": [0, 65535], "so am i s dro nay master both in minde": [0, 65535], "am i s dro nay master both in minde and": [0, 65535], "i s dro nay master both in minde and in": [0, 65535], "s dro nay master both in minde and in my": [0, 65535], "dro nay master both in minde and in my shape": [0, 65535], "nay master both in minde and in my shape ant": [0, 65535], "master both in minde and in my shape ant thou": [0, 65535], "both in minde and in my shape ant thou hast": [0, 65535], "in minde and in my shape ant thou hast thine": [0, 65535], "minde and in my shape ant thou hast thine owne": [0, 65535], "and in my shape ant thou hast thine owne forme": [0, 65535], "in my shape ant thou hast thine owne forme s": [0, 65535], "my shape ant thou hast thine owne forme s dro": [0, 65535], "shape ant thou hast thine owne forme s dro no": [0, 65535], "ant thou hast thine owne forme s dro no i": [0, 65535], "thou hast thine owne forme s dro no i am": [0, 65535], "hast thine owne forme s dro no i am an": [0, 65535], "thine owne forme s dro no i am an ape": [0, 65535], "owne forme s dro no i am an ape luc": [0, 65535], "forme s dro no i am an ape luc if": [0, 65535], "s dro no i am an ape luc if thou": [0, 65535], "dro no i am an ape luc if thou art": [0, 65535], "no i am an ape luc if thou art chang'd": [0, 65535], "i am an ape luc if thou art chang'd to": [0, 65535], "am an ape luc if thou art chang'd to ought": [0, 65535], "an ape luc if thou art chang'd to ought 'tis": [0, 65535], "ape luc if thou art chang'd to ought 'tis to": [0, 65535], "luc if thou art chang'd to ought 'tis to an": [0, 65535], "if thou art chang'd to ought 'tis to an asse": [0, 65535], "thou art chang'd to ought 'tis to an asse s": [0, 65535], "art chang'd to ought 'tis to an asse s dro": [0, 65535], "chang'd to ought 'tis to an asse s dro 'tis": [0, 65535], "to ought 'tis to an asse s dro 'tis true": [0, 65535], "ought 'tis to an asse s dro 'tis true she": [0, 65535], "'tis to an asse s dro 'tis true she rides": [0, 65535], "to an asse s dro 'tis true she rides me": [0, 65535], "an asse s dro 'tis true she rides me and": [0, 65535], "asse s dro 'tis true she rides me and i": [0, 65535], "s dro 'tis true she rides me and i long": [0, 65535], "dro 'tis true she rides me and i long for": [0, 65535], "'tis true she rides me and i long for grasse": [0, 65535], "true she rides me and i long for grasse 'tis": [0, 65535], "she rides me and i long for grasse 'tis so": [0, 65535], "rides me and i long for grasse 'tis so i": [0, 65535], "me and i long for grasse 'tis so i am": [0, 65535], "and i long for grasse 'tis so i am an": [0, 65535], "i long for grasse 'tis so i am an asse": [0, 65535], "long for grasse 'tis so i am an asse else": [0, 65535], "for grasse 'tis so i am an asse else it": [0, 65535], "grasse 'tis so i am an asse else it could": [0, 65535], "'tis so i am an asse else it could neuer": [0, 65535], "so i am an asse else it could neuer be": [0, 65535], "i am an asse else it could neuer be but": [0, 65535], "am an asse else it could neuer be but i": [0, 65535], "an asse else it could neuer be but i should": [0, 65535], "asse else it could neuer be but i should know": [0, 65535], "else it could neuer be but i should know her": [0, 65535], "it could neuer be but i should know her as": [0, 65535], "could neuer be but i should know her as well": [0, 65535], "neuer be but i should know her as well as": [0, 65535], "be but i should know her as well as she": [0, 65535], "but i should know her as well as she knowes": [0, 65535], "i should know her as well as she knowes me": [0, 65535], "should know her as well as she knowes me adr": [0, 65535], "know her as well as she knowes me adr come": [0, 65535], "her as well as she knowes me adr come come": [0, 65535], "as well as she knowes me adr come come no": [0, 65535], "well as she knowes me adr come come no longer": [0, 65535], "as she knowes me adr come come no longer will": [0, 65535], "she knowes me adr come come no longer will i": [0, 65535], "knowes me adr come come no longer will i be": [0, 65535], "me adr come come no longer will i be a": [0, 65535], "adr come come no longer will i be a foole": [0, 65535], "come come no longer will i be a foole to": [0, 65535], "come no longer will i be a foole to put": [0, 65535], "no longer will i be a foole to put the": [0, 65535], "longer will i be a foole to put the finger": [0, 65535], "will i be a foole to put the finger in": [0, 65535], "i be a foole to put the finger in the": [0, 65535], "be a foole to put the finger in the eie": [0, 65535], "a foole to put the finger in the eie and": [0, 65535], "foole to put the finger in the eie and weepe": [0, 65535], "to put the finger in the eie and weepe whil'st": [0, 65535], "put the finger in the eie and weepe whil'st man": [0, 65535], "the finger in the eie and weepe whil'st man and": [0, 65535], "finger in the eie and weepe whil'st man and master": [0, 65535], "in the eie and weepe whil'st man and master laughes": [0, 65535], "the eie and weepe whil'st man and master laughes my": [0, 65535], "eie and weepe whil'st man and master laughes my woes": [0, 65535], "and weepe whil'st man and master laughes my woes to": [0, 65535], "weepe whil'st man and master laughes my woes to scorne": [0, 65535], "whil'st man and master laughes my woes to scorne come": [0, 65535], "man and master laughes my woes to scorne come sir": [0, 65535], "and master laughes my woes to scorne come sir to": [0, 65535], "master laughes my woes to scorne come sir to dinner": [0, 65535], "laughes my woes to scorne come sir to dinner dromio": [0, 65535], "my woes to scorne come sir to dinner dromio keepe": [0, 65535], "woes to scorne come sir to dinner dromio keepe the": [0, 65535], "to scorne come sir to dinner dromio keepe the gate": [0, 65535], "scorne come sir to dinner dromio keepe the gate husband": [0, 65535], "come sir to dinner dromio keepe the gate husband ile": [0, 65535], "sir to dinner dromio keepe the gate husband ile dine": [0, 65535], "to dinner dromio keepe the gate husband ile dine aboue": [0, 65535], "dinner dromio keepe the gate husband ile dine aboue with": [0, 65535], "dromio keepe the gate husband ile dine aboue with you": [0, 65535], "keepe the gate husband ile dine aboue with you to": [0, 65535], "the gate husband ile dine aboue with you to day": [0, 65535], "gate husband ile dine aboue with you to day and": [0, 65535], "husband ile dine aboue with you to day and shriue": [0, 65535], "ile dine aboue with you to day and shriue you": [0, 65535], "dine aboue with you to day and shriue you of": [0, 65535], "aboue with you to day and shriue you of a": [0, 65535], "with you to day and shriue you of a thousand": [0, 65535], "you to day and shriue you of a thousand idle": [0, 65535], "to day and shriue you of a thousand idle prankes": [0, 65535], "day and shriue you of a thousand idle prankes sirra": [0, 65535], "and shriue you of a thousand idle prankes sirra if": [0, 65535], "shriue you of a thousand idle prankes sirra if any": [0, 65535], "you of a thousand idle prankes sirra if any aske": [0, 65535], "of a thousand idle prankes sirra if any aske you": [0, 65535], "a thousand idle prankes sirra if any aske you for": [0, 65535], "thousand idle prankes sirra if any aske you for your": [0, 65535], "idle prankes sirra if any aske you for your master": [0, 65535], "prankes sirra if any aske you for your master say": [0, 65535], "sirra if any aske you for your master say he": [0, 65535], "if any aske you for your master say he dines": [0, 65535], "any aske you for your master say he dines forth": [0, 65535], "aske you for your master say he dines forth and": [0, 65535], "you for your master say he dines forth and let": [0, 65535], "for your master say he dines forth and let no": [0, 65535], "your master say he dines forth and let no creature": [0, 65535], "master say he dines forth and let no creature enter": [0, 65535], "say he dines forth and let no creature enter come": [0, 65535], "he dines forth and let no creature enter come sister": [0, 65535], "dines forth and let no creature enter come sister dromio": [0, 65535], "forth and let no creature enter come sister dromio play": [0, 65535], "and let no creature enter come sister dromio play the": [0, 65535], "let no creature enter come sister dromio play the porter": [0, 65535], "no creature enter come sister dromio play the porter well": [0, 65535], "creature enter come sister dromio play the porter well ant": [0, 65535], "enter come sister dromio play the porter well ant am": [0, 65535], "come sister dromio play the porter well ant am i": [0, 65535], "sister dromio play the porter well ant am i in": [0, 65535], "dromio play the porter well ant am i in earth": [0, 65535], "play the porter well ant am i in earth in": [0, 65535], "the porter well ant am i in earth in heauen": [0, 65535], "porter well ant am i in earth in heauen or": [0, 65535], "well ant am i in earth in heauen or in": [0, 65535], "ant am i in earth in heauen or in hell": [0, 65535], "am i in earth in heauen or in hell sleeping": [0, 65535], "i in earth in heauen or in hell sleeping or": [0, 65535], "in earth in heauen or in hell sleeping or waking": [0, 65535], "earth in heauen or in hell sleeping or waking mad": [0, 65535], "in heauen or in hell sleeping or waking mad or": [0, 65535], "heauen or in hell sleeping or waking mad or well": [0, 65535], "or in hell sleeping or waking mad or well aduisde": [0, 65535], "in hell sleeping or waking mad or well aduisde knowne": [0, 65535], "hell sleeping or waking mad or well aduisde knowne vnto": [0, 65535], "sleeping or waking mad or well aduisde knowne vnto these": [0, 65535], "or waking mad or well aduisde knowne vnto these and": [0, 65535], "waking mad or well aduisde knowne vnto these and to": [0, 65535], "mad or well aduisde knowne vnto these and to my": [0, 65535], "or well aduisde knowne vnto these and to my selfe": [0, 65535], "well aduisde knowne vnto these and to my selfe disguisde": [0, 65535], "aduisde knowne vnto these and to my selfe disguisde ile": [0, 65535], "knowne vnto these and to my selfe disguisde ile say": [0, 65535], "vnto these and to my selfe disguisde ile say as": [0, 65535], "these and to my selfe disguisde ile say as they": [0, 65535], "and to my selfe disguisde ile say as they say": [0, 65535], "to my selfe disguisde ile say as they say and": [0, 65535], "my selfe disguisde ile say as they say and perseuer": [0, 65535], "selfe disguisde ile say as they say and perseuer so": [0, 65535], "disguisde ile say as they say and perseuer so and": [0, 65535], "ile say as they say and perseuer so and in": [0, 65535], "say as they say and perseuer so and in this": [0, 65535], "as they say and perseuer so and in this mist": [0, 65535], "they say and perseuer so and in this mist at": [0, 65535], "say and perseuer so and in this mist at all": [0, 65535], "and perseuer so and in this mist at all aduentures": [0, 65535], "perseuer so and in this mist at all aduentures go": [0, 65535], "so and in this mist at all aduentures go s": [0, 65535], "and in this mist at all aduentures go s dro": [0, 65535], "in this mist at all aduentures go s dro master": [0, 65535], "this mist at all aduentures go s dro master shall": [0, 65535], "mist at all aduentures go s dro master shall i": [0, 65535], "at all aduentures go s dro master shall i be": [0, 65535], "all aduentures go s dro master shall i be porter": [0, 65535], "aduentures go s dro master shall i be porter at": [0, 65535], "go s dro master shall i be porter at the": [0, 65535], "s dro master shall i be porter at the gate": [0, 65535], "dro master shall i be porter at the gate adr": [0, 65535], "master shall i be porter at the gate adr i": [0, 65535], "shall i be porter at the gate adr i and": [0, 65535], "i be porter at the gate adr i and let": [0, 65535], "be porter at the gate adr i and let none": [0, 65535], "porter at the gate adr i and let none enter": [0, 65535], "at the gate adr i and let none enter least": [0, 65535], "the gate adr i and let none enter least i": [0, 65535], "gate adr i and let none enter least i breake": [0, 65535], "adr i and let none enter least i breake your": [0, 65535], "i and let none enter least i breake your pate": [0, 65535], "and let none enter least i breake your pate luc": [0, 65535], "let none enter least i breake your pate luc come": [0, 65535], "none enter least i breake your pate luc come come": [0, 65535], "enter least i breake your pate luc come come antipholus": [0, 65535], "least i breake your pate luc come come antipholus we": [0, 65535], "i breake your pate luc come come antipholus we dine": [0, 65535], "breake your pate luc come come antipholus we dine to": [0, 65535], "your pate luc come come antipholus we dine to late": [0, 65535], "quintus": [0, 65535], "sc\u0153na": [0, 65535], "hindred": [0, 65535], "dishonestly": [0, 65535], "mar": [0, 65535], "esteem'd": [0, 65535], "citie": [0, 65535], "infinite": [0, 65535], "highly": [0, 65535], "belou'd": [0, 65535], "softly": [0, 65535], "walkes": [0, 65535], "forswore": [0, 65535], "monstrously": [0, 65535], "neere": [0, 65535], "scandall": [0, 65535], "oaths": [0, 65535], "weare": [0, 65535], "openly": [0, 65535], "beside": [0, 65535], "charge": [0, 65535], "imprisonment": [0, 65535], "staying": [0, 65535], "controuersie": [0, 65535], "hoisted": [0, 65535], "saile": [0, 65535], "deny": [0, 65535], "heard": [0, 65535], "forsweare": [0, 65535], "wretch": [0, 65535], "pitty": [0, 65535], "liu'st": [0, 65535], "resort": [0, 65535], "impeach": [0, 65535], "proue": [0, 65535], "honestie": [0, 65535], "dar'st": [0, 65535], "defie": [0, 65535], "courtezan": [0, 65535], "sword": [0, 65535], "binde": [0, 65535], "runne": [0, 65535], "priorie": [0, 65535], "spoyl'd": [0, 65535], "ladie": [0, 65535], "abbesse": [0, 65535], "ab": [0, 65535], "throng": [0, 65535], "distracted": [0, 65535], "perfect": [0, 65535], "wits": [0, 65535], "heauie": [0, 65535], "sower": [0, 65535], "different": [0, 65535], "afternoone": [0, 65535], "brake": [0, 65535], "extremity": [0, 65535], "wrack": [0, 65535], "stray'd": [0, 65535], "affection": [0, 65535], "vnlawfull": [0, 65535], "preuailing": [0, 65535], "youthfull": [0, 65535], "sorrowes": [0, 65535], "subiect": [0, 65535], "except": [0, 65535], "oft": [0, 65535], "reprehended": [0, 65535], "rough": [0, 65535], "roughly": [0, 65535], "haply": [0, 65535], "priuate": [0, 65535], "assemblies": [0, 65535], "copie": [0, 65535], "conference": [0, 65535], "fed": [0, 65535], "vilde": [0, 65535], "thereof": [0, 65535], "venome": [0, 65535], "clamors": [0, 65535], "iealous": [0, 65535], "poisons": [0, 65535], "deadly": [0, 65535], "dogges": [0, 65535], "sleepes": [0, 65535], "railing": [0, 65535], "saist": [0, 65535], "meate": [0, 65535], "sawc'd": [0, 65535], "vpbraidings": [0, 65535], "vnquiet": [0, 65535], "meales": [0, 65535], "digestions": [0, 65535], "raging": [0, 65535], "feauer": [0, 65535], "fit": [0, 65535], "madnesse": [0, 65535], "sayest": [0, 65535], "sports": [0, 65535], "bralles": [0, 65535], "recreation": [0, 65535], "barr'd": [0, 65535], "ensue": [0, 65535], "moodie": [0, 65535], "melancholly": [0, 65535], "kinsman": [0, 65535], "comfortlesse": [0, 65535], "dispaire": [0, 65535], "huge": [0, 65535], "infectious": [0, 65535], "troope": [0, 65535], "distemperatures": [0, 65535], "foes": [0, 65535], "food": [0, 65535], "preseruing": [0, 65535], "disturb'd": [0, 65535], "consequence": [0, 65535], "fits": [0, 65535], "scar'd": [0, 65535], "mildely": [0, 65535], "demean'd": [0, 65535], "rude": [0, 65535], "wildly": [0, 65535], "rebukes": [0, 65535], "reproofe": [0, 65535], "enters": [0, 65535], "sanctuary": [0, 65535], "priuiledge": [0, 65535], "assaying": [0, 65535], "nurse": [0, 65535], "diet": [0, 65535], "sicknesse": [0, 65535], "atturney": [0, 65535], "stirre": [0, 65535], "vs'd": [0, 65535], "approoued": [0, 65535], "wholsome": [0, 65535], "sirrups": [0, 65535], "drugges": [0, 65535], "formall": [0, 65535], "branch": [0, 65535], "parcell": [0, 65535], "oath": [0, 65535], "charitable": [0, 65535], "dutie": [0, 65535], "beseeme": [0, 65535], "holinesse": [0, 65535], "separate": [0, 65535], "shalt": [0, 65535], "duke": [0, 65535], "indignity": [0, 65535], "prostrate": [0, 65535], "feete": [0, 65535], "rise": [0, 65535], "perforce": [0, 65535], "diall": [0, 65535], "fiue": [0, 65535], "anon": [0, 65535], "i'me": [0, 65535], "vale": [0, 65535], "depth": [0, 65535], "sorrie": [0, 65535], "execution": [0, 65535], "ditches": [0, 65535], "abbey": [0, 65535], "siracusian": [0, 65535], "vnluckily": [0, 65535], "bay": [0, 65535], "lawes": [0, 65535], "statutes": [0, 65535], "beheaded": [0, 65535], "publikely": [0, 65535], "kneele": [0, 65535], "siracuse": [0, 65535], "headsman": [0, 65535], "proclaime": [0, 65535], "summe": [0, 65535], "tender": [0, 65535], "iustice": [0, 65535], "vertuous": [0, 65535], "reuerend": [0, 65535], "husba": [0, 65535], "n": [0, 65535], "d": [0, 65535], "important": [0, 65535], "letters": [0, 65535], "outragious": [0, 65535], "desp'rately": [0, 65535], "hurried": [0, 65535], "streete": [0, 65535], "bondman": [0, 65535], "displeasure": [0, 65535], "citizens": [0, 65535], "rushing": [0, 65535], "houses": [0, 65535], "bearing": [0, 65535], "rings": [0, 65535], "iewels": [0, 65535], "furie": [0, 65535], "committed": [0, 65535], "wot": [0, 65535], "escape": [0, 65535], "guard": [0, 65535], "attendant": [0, 65535], "irefull": [0, 65535], "drawne": [0, 65535], "swords": [0, 65535], "madly": [0, 65535], "chac'd": [0, 65535], "raising": [0, 65535], "aide": [0, 65535], "whether": [0, 65535], "pursu'd": [0, 65535], "shuts": [0, 65535], "gates": [0, 65535], "gracious": [0, 65535], "command": [0, 65535], "seru'd": [0, 65535], "wars": [0, 65535], "ingag'd": [0, 65535], "princes": [0, 65535], "determine": [0, 65535], "shift": [0, 65535], "maids": [0, 65535], "beard": [0, 65535], "sindg'd": [0, 65535], "brands": [0, 65535], "blaz'd": [0, 65535], "pailes": [0, 65535], "puddled": [0, 65535], "myre": [0, 65535], "quench": [0, 65535], "preaches": [0, 65535], "cizers": [0, 65535], "nickes": [0, 65535], "coniurer": [0, 65535], "mess": [0, 65535], "tel": [0, 65535], "breath'd": [0, 65535], "cries": [0, 65535], "vowes": [0, 65535], "scorch": [0, 65535], "disfigure": [0, 65535], "harke": [0, 65535], "halberds": [0, 65535], "ay": [0, 65535], "inuisible": [0, 65535], "hous'd": [0, 65535], "humane": [0, 65535], "grant": [0, 65535], "bestrid": [0, 65535], "warres": [0, 65535], "scarres": [0, 65535], "sonne": [0, 65535], "prince": [0, 65535], "whom": [0, 65535], "gau'st": [0, 65535], "abused": [0, 65535], "dishonored": [0, 65535], "height": [0, 65535], "iniurie": [0, 65535], "shamelesse": [0, 65535], "throwne": [0, 65535], "discouer": [0, 65535], "finde": [0, 65535], "iust": [0, 65535], "harlots": [0, 65535], "feasted": [0, 65535], "greeuous": [0, 65535], "befall": [0, 65535], "burthens": [0, 65535], "tels": [0, 65535], "highnesse": [0, 65535], "periur'd": [0, 65535], "forsworne": [0, 65535], "madman": [0, 65535], "iustly": [0, 65535], "chargeth": [0, 65535], "liege": [0, 65535], "aduised": [0, 65535], "disturbed": [0, 65535], "wine": [0, 65535], "headie": [0, 65535], "rash": [0, 65535], "prouoak'd": [0, 65535], "ire": [0, 65535], "albeit": [0, 65535], "wiser": [0, 65535], "lock'd": [0, 65535], "pack'd": [0, 65535], "parted": [0, 65535], "promising": [0, 65535], "balthasar": [0, 65535], "companie": [0, 65535], "sweare": [0, 65535], "officer": [0, 65535], "duckets": [0, 65535], "fairely": [0, 65535], "by'th'": [0, 65535], "rabble": [0, 65535], "confederates": [0, 65535], "hungry": [0, 65535], "fac'd": [0, 65535], "meere": [0, 65535], "anatomie": [0, 65535], "mountebanke": [0, 65535], "thred": [0, 65535], "iugler": [0, 65535], "teller": [0, 65535], "ey'd": [0, 65535], "liuing": [0, 65535], "pernicious": [0, 65535], "forsooth": [0, 65535], "'twere": [0, 65535], "facing": [0, 65535], "darke": [0, 65535], "dankish": [0, 65535], "vault": [0, 65535], "gnawing": [0, 65535], "bonds": [0, 65535], "sunder": [0, 65535], "gain'd": [0, 65535], "freedome": [0, 65535], "hether": [0, 65535], "beseech": [0, 65535], "ample": [0, 65535], "indignities": [0, 65535], "witnes": [0, 65535], "sworne": [0, 65535], "confesse": [0, 65535], "thereupon": [0, 65535], "miracle": [0, 65535], "wals": [0, 65535], "burthen": [0, 65535], "intricate": [0, 65535], "drunke": [0, 65535], "circes": [0, 65535], "cup": [0, 65535], "bin": [0, 65535], "pleade": [0, 65535], "denies": [0, 65535], "din'de": [0, 65535], "cur": [0, 65535], "snacht": [0, 65535], "tis": [0, 65535], "saw'st": [0, 65535], "curt": [0, 65535], "straunge": [0, 65535], "fa": [0, 65535], "vouchsafe": [0, 65535], "sum": [0, 65535], "freely": [0, 65535], "wilt": [0, 65535], "fath": [0, 65535], "gnaw'd": [0, 65535], "cords": [0, 65535], "vnbound": [0, 65535], "pinches": [0, 65535], "griefe": [0, 65535], "carefull": [0, 65535], "deformed": [0, 65535], "written": [0, 65535], "whatsoeuer": [0, 65535], "crack'd": [0, 65535], "splitted": [0, 65535], "seuen": [0, 65535], "onely": [0, 65535], "vntun'd": [0, 65535], "grained": [0, 65535], "hid": [0, 65535], "consuming": [0, 65535], "winters": [0, 65535], "drizled": [0, 65535], "snow": [0, 65535], "conduits": [0, 65535], "froze": [0, 65535], "memorie": [0, 65535], "wasting": [0, 65535], "lampes": [0, 65535], "fading": [0, 65535], "glimmer": [0, 65535], "deafe": [0, 65535], "witnesses": [0, 65535], "erre": [0, 65535], "siracusa": [0, 65535], "know'st": [0, 65535], "sham'st": [0, 65535], "acknowledge": [0, 65535], "miserie": [0, 65535], "city": [0, 65535], "patron": [0, 65535], "dangers": [0, 65535], "mightie": [0, 65535], "wrong'd": [0, 65535], "deceiue": [0, 65535], "genius": [0, 65535], "naturall": [0, 65535], "deciphers": [0, 65535], "egeon": [0, 65535], "ghost": [0, 65535], "olde": [0, 65535], "abb": [0, 65535], "gaine": [0, 65535], "bee'st": [0, 65535], "\u00e6milia": [0, 65535], "sonnes": [0, 65535], "begins": [0, 65535], "storie": [0, 65535], "twoantipholus": [0, 65535], "dromio's": [0, 65535], "semblance": [0, 65535], "wracke": [0, 65535], "floated": [0, 65535], "fatall": [0, 65535], "rafte": [0, 65535], "epidamium": [0, 65535], "twin": [0, 65535], "fishermen": [0, 65535], "corinth": [0, 65535], "force": [0, 65535], "cam'st": [0, 65535], "apart": [0, 65535], "famous": [0, 65535], "warriour": [0, 65535], "menaphon": [0, 65535], "renowned": [0, 65535], "vnckle": [0, 65535], "leisure": [0, 65535], "arrested": [0, 65535], "monie": [0, 65535], "baile": [0, 65535], "purse": [0, 65535], "meete": [0, 65535], "arose": [0, 65535], "pawne": [0, 65535], "neede": [0, 65535], "diamond": [0, 65535], "thanks": [0, 65535], "paines": [0, 65535], "discoursed": [0, 65535], "fortunes": [0, 65535], "simpathized": [0, 65535], "daies": [0, 65535], "suffer'd": [0, 65535], "thirtie": [0, 65535], "trauaile": [0, 65535], "deliuered": [0, 65535], "kalenders": [0, 65535], "natiuity": [0, 65535], "gossips": [0, 65535], "greefe": [0, 65535], "natiuitie": [0, 65535], "gossip": [0, 65535], "omnes": [0, 65535], "manet": [0, 65535], "mast": [0, 65535], "stuffe": [0, 65535], "shipbord": [0, 65535], "imbarkt": [0, 65535], "goods": [0, 65535], "wee'l": [0, 65535], "embrace": [0, 65535], "reioyce": [0, 65535], "kitchin'd": [0, 65535], "glasse": [0, 65535], "youth": [0, 65535], "gossipping": [0, 65535], "elder": [0, 65535], "cuts": [0, 65535], "finis": [0, 65535], "actus quintus": [0, 65535], "quintus sc\u0153na": [0, 65535], "sc\u0153na prima": [0, 65535], "enter the": [0, 65535], "merchant and": [0, 65535], "goldsmith gold": [0, 65535], "am sorry": [0, 65535], "sorry sir": [0, 65535], "sir that": [0, 65535], "haue hindred": [0, 65535], "hindred you": [0, 65535], "protest he": [0, 65535], "chaine of": [0, 65535], "of me": [0, 65535], "me though": [0, 65535], "though most": [0, 65535], "most dishonestly": [0, 65535], "dishonestly he": [0, 65535], "he doth": [0, 65535], "doth denie": [0, 65535], "denie it": [0, 65535], "it mar": [0, 65535], "mar how": [0, 65535], "man esteem'd": [0, 65535], "esteem'd heere": [0, 65535], "heere in": [0, 65535], "the citie": [0, 65535], "citie gold": [0, 65535], "gold of": [0, 65535], "of very": [0, 65535], "reuerent reputation": [0, 65535], "reputation sir": [0, 65535], "sir of": [0, 65535], "credit infinite": [0, 65535], "infinite highly": [0, 65535], "highly belou'd": [0, 65535], "belou'd second": [0, 65535], "second to": [0, 65535], "to none": [0, 65535], "none that": [0, 65535], "that liues": [0, 65535], "liues heere": [0, 65535], "citie his": [0, 65535], "his word": [0, 65535], "word might": [0, 65535], "might beare": [0, 65535], "beare my": [0, 65535], "my wealth": [0, 65535], "wealth at": [0, 65535], "at any": [0, 65535], "any time": [0, 65535], "time mar": [0, 65535], "mar speake": [0, 65535], "speake softly": [0, 65535], "softly yonder": [0, 65535], "yonder as": [0, 65535], "as i": [0, 65535], "he walkes": [0, 65535], "walkes enter": [0, 65535], "antipholus and": [0, 65535], "and dromio": [0, 65535], "dromio againe": [0, 65535], "againe gold": [0, 65535], "that selfe": [0, 65535], "selfe chaine": [0, 65535], "chaine about": [0, 65535], "about his": [0, 65535], "his necke": [0, 65535], "necke which": [0, 65535], "he forswore": [0, 65535], "forswore most": [0, 65535], "most monstrously": [0, 65535], "monstrously to": [0, 65535], "haue good": [0, 65535], "sir draw": [0, 65535], "draw neere": [0, 65535], "neere to": [0, 65535], "ile speake": [0, 65535], "speake to": [0, 65535], "him signior": [0, 65535], "signior antipholus": [0, 65535], "antipholus i": [0, 65535], "wonder much": [0, 65535], "would put": [0, 65535], "this shame": [0, 65535], "shame and": [0, 65535], "and trouble": [0, 65535], "trouble and": [0, 65535], "not without": [0, 65535], "without some": [0, 65535], "some scandall": [0, 65535], "scandall to": [0, 65535], "selfe with": [0, 65535], "with circumstance": [0, 65535], "circumstance and": [0, 65535], "and oaths": [0, 65535], "oaths so": [0, 65535], "to denie": [0, 65535], "denie this": [0, 65535], "this chaine": [0, 65535], "chaine which": [0, 65535], "which now": [0, 65535], "you weare": [0, 65535], "weare so": [0, 65535], "so openly": [0, 65535], "openly beside": [0, 65535], "beside the": [0, 65535], "the charge": [0, 65535], "charge the": [0, 65535], "the shame": [0, 65535], "shame imprisonment": [0, 65535], "imprisonment you": [0, 65535], "haue done": [0, 65535], "done wrong": [0, 65535], "my honest": [0, 65535], "honest friend": [0, 65535], "friend who": [0, 65535], "who but": [0, 65535], "but for": [0, 65535], "for staying": [0, 65535], "staying on": [0, 65535], "our controuersie": [0, 65535], "controuersie had": [0, 65535], "had hoisted": [0, 65535], "hoisted saile": [0, 65535], "saile and": [0, 65535], "and put": [0, 65535], "put to": [0, 65535], "to sea": [0, 65535], "sea to": [0, 65535], "chaine you": [0, 65535], "you had": [0, 65535], "had of": [0, 65535], "me can": [0, 65535], "you deny": [0, 65535], "deny it": [0, 65535], "had i": [0, 65535], "neuer did": [0, 65535], "did deny": [0, 65535], "mar yes": [0, 65535], "yes that": [0, 65535], "and forswore": [0, 65535], "forswore it": [0, 65535], "too ant": [0, 65535], "who heard": [0, 65535], "heard me": [0, 65535], "it or": [0, 65535], "or forsweare": [0, 65535], "forsweare it": [0, 65535], "mar these": [0, 65535], "these eares": [0, 65535], "eares of": [0, 65535], "mine thou": [0, 65535], "thou knowst": [0, 65535], "knowst did": [0, 65535], "did hear": [0, 65535], "hear thee": [0, 65535], "thee fie": [0, 65535], "fie on": [0, 65535], "on thee": [0, 65535], "thee wretch": [0, 65535], "wretch 'tis": [0, 65535], "'tis pitty": [0, 65535], "pitty that": [0, 65535], "thou liu'st": [0, 65535], "liu'st to": [0, 65535], "to walke": [0, 65535], "walke where": [0, 65535], "where any": [0, 65535], "any honest": [0, 65535], "honest men": [0, 65535], "men resort": [0, 65535], "resort ant": [0, 65535], "art a": [0, 65535], "villaine to": [0, 65535], "to impeach": [0, 65535], "impeach me": [0, 65535], "thus ile": [0, 65535], "ile proue": [0, 65535], "proue mine": [0, 65535], "mine honor": [0, 65535], "mine honestie": [0, 65535], "honestie against": [0, 65535], "against thee": [0, 65535], "presently if": [0, 65535], "thou dar'st": [0, 65535], "dar'st stand": [0, 65535], "stand mar": [0, 65535], "mar i": [0, 65535], "dare and": [0, 65535], "and do": [0, 65535], "do defie": [0, 65535], "defie thee": [0, 65535], "thee for": [0, 65535], "villaine they": [0, 65535], "they draw": [0, 65535], "draw enter": [0, 65535], "adriana luciana": [0, 65535], "luciana courtezan": [0, 65535], "courtezan others": [0, 65535], "others adr": [0, 65535], "adr hold": [0, 65535], "hold hurt": [0, 65535], "hurt him": [0, 65535], "not for": [0, 65535], "for god": [0, 65535], "god sake": [0, 65535], "sake he": [0, 65535], "is mad": [0, 65535], "mad some": [0, 65535], "some get": [0, 65535], "get within": [0, 65535], "him take": [0, 65535], "take his": [0, 65535], "his sword": [0, 65535], "sword away": [0, 65535], "away binde": [0, 65535], "binde dromio": [0, 65535], "dromio too": [0, 65535], "and beare": [0, 65535], "beare them": [0, 65535], "house s": [0, 65535], "dro runne": [0, 65535], "runne master": [0, 65535], "master run": [0, 65535], "sake take": [0, 65535], "house this": [0, 65535], "is some": [0, 65535], "some priorie": [0, 65535], "priorie in": [0, 65535], "in or": [0, 65535], "or we": [0, 65535], "are spoyl'd": [0, 65535], "spoyl'd exeunt": [0, 65535], "exeunt to": [0, 65535], "the priorie": [0, 65535], "priorie enter": [0, 65535], "enter ladie": [0, 65535], "ladie abbesse": [0, 65535], "abbesse ab": [0, 65535], "ab be": [0, 65535], "quiet people": [0, 65535], "people wherefore": [0, 65535], "wherefore throng": [0, 65535], "throng you": [0, 65535], "you hither": [0, 65535], "hither adr": [0, 65535], "adr to": [0, 65535], "poore distracted": [0, 65535], "distracted husband": [0, 65535], "husband hence": [0, 65535], "hence let": [0, 65535], "vs come": [0, 65535], "come in": [0, 65535], "we may": [0, 65535], "may binde": [0, 65535], "binde him": [0, 65535], "him fast": [0, 65535], "fast and": [0, 65535], "beare him": [0, 65535], "his recouerie": [0, 65535], "recouerie gold": [0, 65535], "knew he": [0, 65535], "his perfect": [0, 65535], "perfect wits": [0, 65535], "wits mar": [0, 65535], "sorry now": [0, 65535], "did draw": [0, 65535], "draw on": [0, 65535], "him ab": [0, 65535], "ab how": [0, 65535], "long hath": [0, 65535], "hath this": [0, 65535], "this possession": [0, 65535], "possession held": [0, 65535], "held the": [0, 65535], "man adr": [0, 65535], "adr this": [0, 65535], "this weeke": [0, 65535], "weeke he": [0, 65535], "hath beene": [0, 65535], "beene heauie": [0, 65535], "heauie sower": [0, 65535], "sower sad": [0, 65535], "sad and": [0, 65535], "much different": [0, 65535], "different from": [0, 65535], "man he": [0, 65535], "but till": [0, 65535], "this afternoone": [0, 65535], "afternoone his": [0, 65535], "passion ne're": [0, 65535], "ne're brake": [0, 65535], "brake into": [0, 65535], "into extremity": [0, 65535], "extremity of": [0, 65535], "of rage": [0, 65535], "rage ab": [0, 65535], "ab hath": [0, 65535], "hath he": [0, 65535], "not lost": [0, 65535], "lost much": [0, 65535], "much wealth": [0, 65535], "wealth by": [0, 65535], "by wrack": [0, 65535], "wrack of": [0, 65535], "of sea": [0, 65535], "sea buried": [0, 65535], "buried some": [0, 65535], "some deere": [0, 65535], "deere friend": [0, 65535], "friend hath": [0, 65535], "hath not": [0, 65535], "not else": [0, 65535], "else his": [0, 65535], "eye stray'd": [0, 65535], "stray'd his": [0, 65535], "his affection": [0, 65535], "affection in": [0, 65535], "in vnlawfull": [0, 65535], "vnlawfull loue": [0, 65535], "loue a": [0, 65535], "a sinne": [0, 65535], "sinne preuailing": [0, 65535], "preuailing much": [0, 65535], "much in": [0, 65535], "in youthfull": [0, 65535], "youthfull men": [0, 65535], "men who": [0, 65535], "who giue": [0, 65535], "giue their": [0, 65535], "their eies": [0, 65535], "eies the": [0, 65535], "the liberty": [0, 65535], "liberty of": [0, 65535], "of gazing": [0, 65535], "gazing which": [0, 65535], "which of": [0, 65535], "these sorrowes": [0, 65535], "sorrowes is": [0, 65535], "he subiect": [0, 65535], "subiect too": [0, 65535], "too adr": [0, 65535], "these except": [0, 65535], "except it": [0, 65535], "last namely": [0, 65535], "namely some": [0, 65535], "some loue": [0, 65535], "loue that": [0, 65535], "that drew": [0, 65535], "drew him": [0, 65535], "him oft": [0, 65535], "oft from": [0, 65535], "home ab": [0, 65535], "ab you": [0, 65535], "should for": [0, 65535], "haue reprehended": [0, 65535], "reprehended him": [0, 65535], "him adr": [0, 65535], "why so": [0, 65535], "did ab": [0, 65535], "ab i": [0, 65535], "i but": [0, 65535], "not rough": [0, 65535], "rough enough": [0, 65535], "enough adr": [0, 65535], "adr as": [0, 65535], "as roughly": [0, 65535], "roughly as": [0, 65535], "as my": [0, 65535], "my modestie": [0, 65535], "modestie would": [0, 65535], "would let": [0, 65535], "me ab": [0, 65535], "ab haply": [0, 65535], "haply in": [0, 65535], "in priuate": [0, 65535], "priuate adr": [0, 65535], "adr and": [0, 65535], "in assemblies": [0, 65535], "assemblies too": [0, 65535], "too ab": [0, 65535], "not enough": [0, 65535], "adr it": [0, 65535], "the copie": [0, 65535], "copie of": [0, 65535], "of our": [0, 65535], "our conference": [0, 65535], "conference in": [0, 65535], "in bed": [0, 65535], "bed he": [0, 65535], "slept not": [0, 65535], "my vrging": [0, 65535], "boord he": [0, 65535], "he fed": [0, 65535], "fed not": [0, 65535], "it alone": [0, 65535], "alone it": [0, 65535], "the subiect": [0, 65535], "subiect of": [0, 65535], "my theame": [0, 65535], "theame in": [0, 65535], "in company": [0, 65535], "company i": [0, 65535], "i often": [0, 65535], "often glanced": [0, 65535], "glanced it": [0, 65535], "it still": [0, 65535], "still did": [0, 65535], "tell him": [0, 65535], "him it": [0, 65535], "was vilde": [0, 65535], "vilde and": [0, 65535], "bad ab": [0, 65535], "ab and": [0, 65535], "and thereof": [0, 65535], "thereof came": [0, 65535], "came it": [0, 65535], "man was": [0, 65535], "was mad": [0, 65535], "mad the": [0, 65535], "the venome": [0, 65535], "venome clamors": [0, 65535], "clamors of": [0, 65535], "a iealous": [0, 65535], "iealous woman": [0, 65535], "woman poisons": [0, 65535], "poisons more": [0, 65535], "more deadly": [0, 65535], "deadly then": [0, 65535], "a mad": [0, 65535], "mad dogges": [0, 65535], "dogges tooth": [0, 65535], "tooth it": [0, 65535], "seemes his": [0, 65535], "his sleepes": [0, 65535], "sleepes were": [0, 65535], "were hindred": [0, 65535], "hindred by": [0, 65535], "thy railing": [0, 65535], "railing and": [0, 65535], "thereof comes": [0, 65535], "head is": [0, 65535], "is light": [0, 65535], "light thou": [0, 65535], "thou saist": [0, 65535], "saist his": [0, 65535], "his meate": [0, 65535], "meate was": [0, 65535], "was sawc'd": [0, 65535], "sawc'd with": [0, 65535], "thy vpbraidings": [0, 65535], "vpbraidings vnquiet": [0, 65535], "vnquiet meales": [0, 65535], "meales make": [0, 65535], "make ill": [0, 65535], "ill digestions": [0, 65535], "digestions thereof": [0, 65535], "thereof the": [0, 65535], "the raging": [0, 65535], "raging fire": [0, 65535], "of feauer": [0, 65535], "feauer bred": [0, 65535], "bred and": [0, 65535], "what's a": [0, 65535], "a feauer": [0, 65535], "feauer but": [0, 65535], "a fit": [0, 65535], "fit of": [0, 65535], "of madnesse": [0, 65535], "madnesse thou": [0, 65535], "thou sayest": [0, 65535], "sayest his": [0, 65535], "his sports": [0, 65535], "sports were": [0, 65535], "thy bralles": [0, 65535], "bralles sweet": [0, 65535], "sweet recreation": [0, 65535], "recreation barr'd": [0, 65535], "barr'd what": [0, 65535], "what doth": [0, 65535], "doth ensue": [0, 65535], "ensue but": [0, 65535], "but moodie": [0, 65535], "moodie and": [0, 65535], "and dull": [0, 65535], "dull melancholly": [0, 65535], "melancholly kinsman": [0, 65535], "kinsman to": [0, 65535], "to grim": [0, 65535], "grim and": [0, 65535], "and comfortlesse": [0, 65535], "comfortlesse dispaire": [0, 65535], "dispaire and": [0, 65535], "her heeles": [0, 65535], "heeles a": [0, 65535], "a huge": [0, 65535], "huge infectious": [0, 65535], "infectious troope": [0, 65535], "troope of": [0, 65535], "of pale": [0, 65535], "pale distemperatures": [0, 65535], "distemperatures and": [0, 65535], "and foes": [0, 65535], "foes to": [0, 65535], "to life": [0, 65535], "life in": [0, 65535], "in food": [0, 65535], "food in": [0, 65535], "in sport": [0, 65535], "sport and": [0, 65535], "and life": [0, 65535], "life preseruing": [0, 65535], "preseruing rest": [0, 65535], "rest to": [0, 65535], "be disturb'd": [0, 65535], "disturb'd would": [0, 65535], "would mad": [0, 65535], "or man": [0, 65535], "or beast": [0, 65535], "beast the": [0, 65535], "the consequence": [0, 65535], "consequence is": [0, 65535], "is then": [0, 65535], "thy iealous": [0, 65535], "iealous fits": [0, 65535], "fits hath": [0, 65535], "hath scar'd": [0, 65535], "scar'd thy": [0, 65535], "thy husband": [0, 65535], "husband from": [0, 65535], "the vse": [0, 65535], "vse of": [0, 65535], "of wits": [0, 65535], "wits luc": [0, 65535], "luc she": [0, 65535], "she neuer": [0, 65535], "neuer reprehended": [0, 65535], "but mildely": [0, 65535], "mildely when": [0, 65535], "he demean'd": [0, 65535], "demean'd himselfe": [0, 65535], "himselfe rough": [0, 65535], "rough rude": [0, 65535], "rude and": [0, 65535], "and wildly": [0, 65535], "wildly why": [0, 65535], "why beare": [0, 65535], "beare you": [0, 65535], "you these": [0, 65535], "these rebukes": [0, 65535], "rebukes and": [0, 65535], "and answer": [0, 65535], "answer not": [0, 65535], "not adri": [0, 65535], "adri she": [0, 65535], "did betray": [0, 65535], "betray me": [0, 65535], "my owne": [0, 65535], "owne reproofe": [0, 65535], "reproofe good": [0, 65535], "good people": [0, 65535], "people enter": [0, 65535], "enter and": [0, 65535], "and lay": [0, 65535], "lay hold": [0, 65535], "ab no": [0, 65535], "a creature": [0, 65535], "creature enters": [0, 65535], "enters in": [0, 65535], "house ad": [0, 65535], "ad then": [0, 65535], "your seruants": [0, 65535], "seruants bring": [0, 65535], "bring my": [0, 65535], "husband forth": [0, 65535], "forth ab": [0, 65535], "ab neither": [0, 65535], "neither he": [0, 65535], "he tooke": [0, 65535], "tooke this": [0, 65535], "this place": [0, 65535], "place for": [0, 65535], "for sanctuary": [0, 65535], "sanctuary and": [0, 65535], "it shall": [0, 65535], "shall priuiledge": [0, 65535], "priuiledge him": [0, 65535], "hands till": [0, 65535], "till i": [0, 65535], "haue brought": [0, 65535], "brought him": [0, 65535], "his wits": [0, 65535], "wits againe": [0, 65535], "againe or": [0, 65535], "or loose": [0, 65535], "loose my": [0, 65535], "my labour": [0, 65535], "labour in": [0, 65535], "in assaying": [0, 65535], "assaying it": [0, 65535], "it adr": [0, 65535], "attend my": [0, 65535], "husband be": [0, 65535], "be his": [0, 65535], "his nurse": [0, 65535], "nurse diet": [0, 65535], "diet his": [0, 65535], "his sicknesse": [0, 65535], "sicknesse for": [0, 65535], "is my": [0, 65535], "my office": [0, 65535], "no atturney": [0, 65535], "atturney but": [0, 65535], "therefore let": [0, 65535], "me haue": [0, 65535], "haue him": [0, 65535], "not let": [0, 65535], "him stirre": [0, 65535], "stirre till": [0, 65535], "haue vs'd": [0, 65535], "vs'd the": [0, 65535], "the approoued": [0, 65535], "approoued meanes": [0, 65535], "meanes i": [0, 65535], "haue with": [0, 65535], "with wholsome": [0, 65535], "wholsome sirrups": [0, 65535], "sirrups drugges": [0, 65535], "drugges and": [0, 65535], "and holy": [0, 65535], "holy prayers": [0, 65535], "prayers to": [0, 65535], "make of": [0, 65535], "a formall": [0, 65535], "formall man": [0, 65535], "man againe": [0, 65535], "againe it": [0, 65535], "a branch": [0, 65535], "branch and": [0, 65535], "and parcell": [0, 65535], "parcell of": [0, 65535], "mine oath": [0, 65535], "oath a": [0, 65535], "a charitable": [0, 65535], "charitable dutie": [0, 65535], "dutie of": [0, 65535], "my order": [0, 65535], "order therefore": [0, 65535], "therefore depart": [0, 65535], "depart and": [0, 65535], "and leaue": [0, 65535], "leaue him": [0, 65535], "him heere": [0, 65535], "heere with": [0, 65535], "not hence": [0, 65535], "leaue my": [0, 65535], "husband heere": [0, 65535], "and ill": [0, 65535], "ill it": [0, 65535], "doth beseeme": [0, 65535], "beseeme your": [0, 65535], "your holinesse": [0, 65535], "holinesse to": [0, 65535], "to separate": [0, 65535], "separate the": [0, 65535], "the husband": [0, 65535], "husband and": [0, 65535], "the wife": [0, 65535], "wife ab": [0, 65535], "and depart": [0, 65535], "depart thou": [0, 65535], "thou shalt": [0, 65535], "shalt not": [0, 65535], "not haue": [0, 65535], "him luc": [0, 65535], "luc complaine": [0, 65535], "complaine vnto": [0, 65535], "vnto the": [0, 65535], "the duke": [0, 65535], "duke of": [0, 65535], "this indignity": [0, 65535], "indignity adr": [0, 65535], "come go": [0, 65535], "go i": [0, 65535], "will fall": [0, 65535], "fall prostrate": [0, 65535], "prostrate at": [0, 65535], "his feete": [0, 65535], "feete and": [0, 65535], "neuer rise": [0, 65535], "rise vntill": [0, 65535], "vntill my": [0, 65535], "my teares": [0, 65535], "teares and": [0, 65535], "and prayers": [0, 65535], "prayers haue": [0, 65535], "haue won": [0, 65535], "won his": [0, 65535], "his grace": [0, 65535], "grace to": [0, 65535], "person hither": [0, 65535], "take perforce": [0, 65535], "perforce my": [0, 65535], "the abbesse": [0, 65535], "abbesse mar": [0, 65535], "mar by": [0, 65535], "the diall": [0, 65535], "diall points": [0, 65535], "points at": [0, 65535], "at fiue": [0, 65535], "fiue anon": [0, 65535], "anon i'me": [0, 65535], "i'me sure": [0, 65535], "sure the": [0, 65535], "duke himselfe": [0, 65535], "himselfe in": [0, 65535], "person comes": [0, 65535], "comes this": [0, 65535], "way to": [0, 65535], "the melancholly": [0, 65535], "melancholly vale": [0, 65535], "vale the": [0, 65535], "the place": [0, 65535], "of depth": [0, 65535], "depth and": [0, 65535], "and sorrie": [0, 65535], "sorrie execution": [0, 65535], "execution behinde": [0, 65535], "behinde the": [0, 65535], "the ditches": [0, 65535], "ditches of": [0, 65535], "the abbey": [0, 65535], "abbey heere": [0, 65535], "heere gold": [0, 65535], "gold vpon": [0, 65535], "what cause": [0, 65535], "cause mar": [0, 65535], "mar to": [0, 65535], "a reuerent": [0, 65535], "reuerent siracusian": [0, 65535], "siracusian merchant": [0, 65535], "merchant who": [0, 65535], "who put": [0, 65535], "put vnluckily": [0, 65535], "vnluckily into": [0, 65535], "into this": [0, 65535], "this bay": [0, 65535], "bay against": [0, 65535], "the lawes": [0, 65535], "lawes and": [0, 65535], "and statutes": [0, 65535], "statutes of": [0, 65535], "towne beheaded": [0, 65535], "beheaded publikely": [0, 65535], "publikely for": [0, 65535], "his offence": [0, 65535], "offence gold": [0, 65535], "gold see": [0, 65535], "see where": [0, 65535], "where they": [0, 65535], "they come": [0, 65535], "come we": [0, 65535], "we wil": [0, 65535], "wil behold": [0, 65535], "behold his": [0, 65535], "his death": [0, 65535], "death luc": [0, 65535], "luc kneele": [0, 65535], "kneele to": [0, 65535], "duke before": [0, 65535], "before he": [0, 65535], "he passe": [0, 65535], "passe the": [0, 65535], "abbey enter": [0, 65535], "ephesus and": [0, 65535], "merchant of": [0, 65535], "of siracuse": [0, 65535], "siracuse bare": [0, 65535], "bare head": [0, 65535], "the headsman": [0, 65535], "headsman other": [0, 65535], "other officers": [0, 65535], "officers duke": [0, 65535], "duke yet": [0, 65535], "yet once": [0, 65535], "once againe": [0, 65535], "againe proclaime": [0, 65535], "proclaime it": [0, 65535], "it publikely": [0, 65535], "publikely if": [0, 65535], "any friend": [0, 65535], "friend will": [0, 65535], "will pay": [0, 65535], "pay the": [0, 65535], "the summe": [0, 65535], "summe for": [0, 65535], "he shall": [0, 65535], "shall not": [0, 65535], "not die": [0, 65535], "die so": [0, 65535], "much we": [0, 65535], "we tender": [0, 65535], "tender him": [0, 65535], "adr iustice": [0, 65535], "iustice most": [0, 65535], "most sacred": [0, 65535], "sacred duke": [0, 65535], "duke against": [0, 65535], "abbesse duke": [0, 65535], "duke she": [0, 65535], "a vertuous": [0, 65535], "vertuous and": [0, 65535], "a reuerend": [0, 65535], "reuerend lady": [0, 65535], "lady it": [0, 65535], "it cannot": [0, 65535], "cannot be": [0, 65535], "she hath": [0, 65535], "hath done": [0, 65535], "done thee": [0, 65535], "thee wrong": [0, 65535], "wrong adr": [0, 65535], "adr may": [0, 65535], "it please": [0, 65535], "grace antipholus": [0, 65535], "antipholus my": [0, 65535], "my husba": [0, 65535], "husba n": [0, 65535], "n d": [0, 65535], "d who": [0, 65535], "who i": [0, 65535], "i made": [0, 65535], "made lord": [0, 65535], "had at": [0, 65535], "your important": [0, 65535], "important letters": [0, 65535], "letters this": [0, 65535], "this ill": [0, 65535], "ill day": [0, 65535], "a most": [0, 65535], "most outragious": [0, 65535], "outragious fit": [0, 65535], "madnesse tooke": [0, 65535], "tooke him": [0, 65535], "that desp'rately": [0, 65535], "desp'rately he": [0, 65535], "he hurried": [0, 65535], "hurried through": [0, 65535], "the streete": [0, 65535], "streete with": [0, 65535], "him his": [0, 65535], "his bondman": [0, 65535], "bondman all": [0, 65535], "all as": [0, 65535], "as mad": [0, 65535], "he doing": [0, 65535], "doing displeasure": [0, 65535], "displeasure to": [0, 65535], "the citizens": [0, 65535], "citizens by": [0, 65535], "by rushing": [0, 65535], "rushing in": [0, 65535], "their houses": [0, 65535], "houses bearing": [0, 65535], "bearing thence": [0, 65535], "thence rings": [0, 65535], "rings iewels": [0, 65535], "iewels any": [0, 65535], "any thing": [0, 65535], "his rage": [0, 65535], "rage did": [0, 65535], "did like": [0, 65535], "like once": [0, 65535], "once did": [0, 65535], "him bound": [0, 65535], "bound and": [0, 65535], "and sent": [0, 65535], "home whil'st": [0, 65535], "whil'st to": [0, 65535], "take order": [0, 65535], "order for": [0, 65535], "i went": [0, 65535], "went that": [0, 65535], "that heere": [0, 65535], "there his": [0, 65535], "his furie": [0, 65535], "furie had": [0, 65535], "had committed": [0, 65535], "committed anon": [0, 65535], "anon i": [0, 65535], "i wot": [0, 65535], "wot not": [0, 65535], "not by": [0, 65535], "what strong": [0, 65535], "strong escape": [0, 65535], "escape he": [0, 65535], "he broke": [0, 65535], "broke from": [0, 65535], "from those": [0, 65535], "the guard": [0, 65535], "guard of": [0, 65535], "his mad": [0, 65535], "mad attendant": [0, 65535], "attendant and": [0, 65535], "and himselfe": [0, 65535], "himselfe each": [0, 65535], "each one": [0, 65535], "one with": [0, 65535], "with irefull": [0, 65535], "irefull passion": [0, 65535], "passion with": [0, 65535], "with drawne": [0, 65535], "drawne swords": [0, 65535], "swords met": [0, 65535], "met vs": [0, 65535], "vs againe": [0, 65535], "and madly": [0, 65535], "madly bent": [0, 65535], "bent on": [0, 65535], "on vs": [0, 65535], "vs chac'd": [0, 65535], "chac'd vs": [0, 65535], "vs away": [0, 65535], "away till": [0, 65535], "till raising": [0, 65535], "raising of": [0, 65535], "more aide": [0, 65535], "aide we": [0, 65535], "we came": [0, 65535], "came againe": [0, 65535], "againe to": [0, 65535], "to binde": [0, 65535], "binde them": [0, 65535], "them then": [0, 65535], "they fled": [0, 65535], "fled into": [0, 65535], "this abbey": [0, 65535], "abbey whether": [0, 65535], "whether we": [0, 65535], "we pursu'd": [0, 65535], "pursu'd them": [0, 65535], "them and": [0, 65535], "and heere": [0, 65535], "heere the": [0, 65535], "abbesse shuts": [0, 65535], "shuts the": [0, 65535], "the gates": [0, 65535], "gates on": [0, 65535], "not suffer": [0, 65535], "suffer vs": [0, 65535], "out nor": [0, 65535], "nor send": [0, 65535], "send him": [0, 65535], "him forth": [0, 65535], "forth that": [0, 65535], "may beare": [0, 65535], "him hence": [0, 65535], "hence therefore": [0, 65535], "therefore most": [0, 65535], "most gracious": [0, 65535], "gracious duke": [0, 65535], "duke with": [0, 65535], "thy command": [0, 65535], "command let": [0, 65535], "him be": [0, 65535], "be brought": [0, 65535], "brought forth": [0, 65535], "and borne": [0, 65535], "borne hence": [0, 65535], "hence for": [0, 65535], "for helpe": [0, 65535], "helpe duke": [0, 65535], "duke long": [0, 65535], "long since": [0, 65535], "since thy": [0, 65535], "husband seru'd": [0, 65535], "seru'd me": [0, 65535], "my wars": [0, 65535], "wars and": [0, 65535], "thee ingag'd": [0, 65535], "ingag'd a": [0, 65535], "a princes": [0, 65535], "princes word": [0, 65535], "word when": [0, 65535], "didst make": [0, 65535], "him master": [0, 65535], "thy bed": [0, 65535], "bed to": [0, 65535], "do him": [0, 65535], "the grace": [0, 65535], "good i": [0, 65535], "go some": [0, 65535], "you knocke": [0, 65535], "knocke at": [0, 65535], "abbey gate": [0, 65535], "gate and": [0, 65535], "and bid": [0, 65535], "lady abbesse": [0, 65535], "abbesse come": [0, 65535], "will determine": [0, 65535], "determine this": [0, 65535], "this before": [0, 65535], "i stirre": [0, 65535], "stirre enter": [0, 65535], "enter a": [0, 65535], "a messenger": [0, 65535], "messenger oh": [0, 65535], "oh mistris": [0, 65535], "mistris mistris": [0, 65535], "mistris shift": [0, 65535], "shift and": [0, 65535], "and saue": [0, 65535], "saue your": [0, 65535], "selfe my": [0, 65535], "man are": [0, 65535], "are both": [0, 65535], "both broke": [0, 65535], "broke loose": [0, 65535], "loose beaten": [0, 65535], "beaten the": [0, 65535], "the maids": [0, 65535], "maids a": [0, 65535], "a row": [0, 65535], "row and": [0, 65535], "and bound": [0, 65535], "bound the": [0, 65535], "doctor whose": [0, 65535], "whose beard": [0, 65535], "beard they": [0, 65535], "they haue": [0, 65535], "haue sindg'd": [0, 65535], "sindg'd off": [0, 65535], "with brands": [0, 65535], "brands of": [0, 65535], "and euer": [0, 65535], "euer as": [0, 65535], "it blaz'd": [0, 65535], "blaz'd they": [0, 65535], "they threw": [0, 65535], "threw on": [0, 65535], "him great": [0, 65535], "great pailes": [0, 65535], "pailes of": [0, 65535], "of puddled": [0, 65535], "puddled myre": [0, 65535], "myre to": [0, 65535], "to quench": [0, 65535], "quench the": [0, 65535], "the haire": [0, 65535], "haire my": [0, 65535], "my mr": [0, 65535], "mr preaches": [0, 65535], "preaches patience": [0, 65535], "patience to": [0, 65535], "while his": [0, 65535], "man with": [0, 65535], "with cizers": [0, 65535], "cizers nickes": [0, 65535], "nickes him": [0, 65535], "and sure": [0, 65535], "sure vnlesse": [0, 65535], "vnlesse you": [0, 65535], "you send": [0, 65535], "some present": [0, 65535], "present helpe": [0, 65535], "helpe betweene": [0, 65535], "betweene them": [0, 65535], "them they": [0, 65535], "they will": [0, 65535], "will kill": [0, 65535], "kill the": [0, 65535], "the coniurer": [0, 65535], "coniurer adr": [0, 65535], "adr peace": [0, 65535], "peace foole": [0, 65535], "foole thy": [0, 65535], "are here": [0, 65535], "is false": [0, 65535], "false thou": [0, 65535], "thou dost": [0, 65535], "dost report": [0, 65535], "report to": [0, 65535], "to vs": [0, 65535], "vs mess": [0, 65535], "mess mistris": [0, 65535], "mistris vpon": [0, 65535], "life i": [0, 65535], "i tel": [0, 65535], "tel you": [0, 65535], "you true": [0, 65535], "true i": [0, 65535], "not breath'd": [0, 65535], "breath'd almost": [0, 65535], "almost since": [0, 65535], "since i": [0, 65535], "he cries": [0, 65535], "cries for": [0, 65535], "and vowes": [0, 65535], "vowes if": [0, 65535], "can take": [0, 65535], "take you": [0, 65535], "to scorch": [0, 65535], "scorch your": [0, 65535], "to disfigure": [0, 65535], "disfigure you": [0, 65535], "you cry": [0, 65535], "cry within": [0, 65535], "within harke": [0, 65535], "harke harke": [0, 65535], "harke i": [0, 65535], "heare him": [0, 65535], "him mistris": [0, 65535], "mistris flie": [0, 65535], "flie be": [0, 65535], "gone duke": [0, 65535], "duke come": [0, 65535], "come stand": [0, 65535], "me feare": [0, 65535], "feare nothing": [0, 65535], "nothing guard": [0, 65535], "guard with": [0, 65535], "with halberds": [0, 65535], "halberds adr": [0, 65535], "adr ay": [0, 65535], "ay me": [0, 65535], "husband witnesse": [0, 65535], "witnesse you": [0, 65535], "you that": [0, 65535], "is borne": [0, 65535], "borne about": [0, 65535], "about inuisible": [0, 65535], "inuisible euen": [0, 65535], "now we": [0, 65535], "we hous'd": [0, 65535], "hous'd him": [0, 65535], "now he's": [0, 65535], "he's there": [0, 65535], "there past": [0, 65535], "past thought": [0, 65535], "of humane": [0, 65535], "humane reason": [0, 65535], "reason enter": [0, 65535], "and e": [0, 65535], "e dromio": [0, 65535], "dromio of": [0, 65535], "ephesus e": [0, 65535], "ant iustice": [0, 65535], "duke oh": [0, 65535], "oh grant": [0, 65535], "grant me": [0, 65535], "me iustice": [0, 65535], "iustice euen": [0, 65535], "euen for": [0, 65535], "the seruice": [0, 65535], "seruice that": [0, 65535], "that long": [0, 65535], "did thee": [0, 65535], "thee when": [0, 65535], "i bestrid": [0, 65535], "bestrid thee": [0, 65535], "thee in": [0, 65535], "the warres": [0, 65535], "warres and": [0, 65535], "and tooke": [0, 65535], "tooke deepe": [0, 65535], "deepe scarres": [0, 65535], "scarres to": [0, 65535], "saue thy": [0, 65535], "thy life": [0, 65535], "life euen": [0, 65535], "blood that": [0, 65535], "that then": [0, 65535], "then i": [0, 65535], "i lost": [0, 65535], "lost for": [0, 65535], "for thee": [0, 65535], "thee now": [0, 65535], "now grant": [0, 65535], "iustice mar": [0, 65535], "mar fat": [0, 65535], "fat vnlesse": [0, 65535], "vnlesse the": [0, 65535], "the feare": [0, 65535], "feare of": [0, 65535], "of death": [0, 65535], "death doth": [0, 65535], "doth make": [0, 65535], "me dote": [0, 65535], "dote i": [0, 65535], "see my": [0, 65535], "my sonne": [0, 65535], "sonne antipholus": [0, 65535], "iustice sweet": [0, 65535], "sweet prince": [0, 65535], "prince against": [0, 65535], "against that": [0, 65535], "that woman": [0, 65535], "woman there": [0, 65535], "there she": [0, 65535], "she whom": [0, 65535], "whom thou": [0, 65535], "thou gau'st": [0, 65535], "gau'st to": [0, 65535], "wife that": [0, 65535], "hath abused": [0, 65535], "abused and": [0, 65535], "and dishonored": [0, 65535], "dishonored me": [0, 65535], "me euen": [0, 65535], "the strength": [0, 65535], "strength and": [0, 65535], "and height": [0, 65535], "height of": [0, 65535], "of iniurie": [0, 65535], "iniurie beyond": [0, 65535], "beyond imagination": [0, 65535], "imagination is": [0, 65535], "wrong that": [0, 65535], "she this": [0, 65535], "day hath": [0, 65535], "hath shamelesse": [0, 65535], "shamelesse throwne": [0, 65535], "throwne on": [0, 65535], "on me": [0, 65535], "me duke": [0, 65535], "duke discouer": [0, 65535], "discouer how": [0, 65535], "how and": [0, 65535], "shalt finde": [0, 65535], "finde me": [0, 65535], "me iust": [0, 65535], "iust e": [0, 65535], "ant this": [0, 65535], "day great": [0, 65535], "great duke": [0, 65535], "she shut": [0, 65535], "shut the": [0, 65535], "the doores": [0, 65535], "doores vpon": [0, 65535], "vpon me": [0, 65535], "me while": [0, 65535], "she with": [0, 65535], "with harlots": [0, 65535], "harlots feasted": [0, 65535], "feasted in": [0, 65535], "house duke": [0, 65535], "duke a": [0, 65535], "a greeuous": [0, 65535], "greeuous fault": [0, 65535], "fault say": [0, 65535], "say woman": [0, 65535], "woman didst": [0, 65535], "so adr": [0, 65535], "adr no": [0, 65535], "no my": [0, 65535], "good lord": [0, 65535], "lord my": [0, 65535], "selfe he": [0, 65535], "he and": [0, 65535], "day did": [0, 65535], "did dine": [0, 65535], "dine together": [0, 65535], "together so": [0, 65535], "so befall": [0, 65535], "befall my": [0, 65535], "soule as": [0, 65535], "as this": [0, 65535], "false he": [0, 65535], "he burthens": [0, 65535], "burthens me": [0, 65535], "withall luc": [0, 65535], "luc nere": [0, 65535], "nere may": [0, 65535], "may i": [0, 65535], "i looke": [0, 65535], "on day": [0, 65535], "day nor": [0, 65535], "nor sleepe": [0, 65535], "sleepe on": [0, 65535], "she tels": [0, 65535], "tels to": [0, 65535], "your highnesse": [0, 65535], "highnesse simple": [0, 65535], "simple truth": [0, 65535], "truth gold": [0, 65535], "gold o": [0, 65535], "o periur'd": [0, 65535], "periur'd woman": [0, 65535], "woman they": [0, 65535], "they are": [0, 65535], "both forsworne": [0, 65535], "forsworne in": [0, 65535], "the madman": [0, 65535], "madman iustly": [0, 65535], "iustly chargeth": [0, 65535], "chargeth them": [0, 65535], "them e": [0, 65535], "ant my": [0, 65535], "my liege": [0, 65535], "liege i": [0, 65535], "am aduised": [0, 65535], "aduised what": [0, 65535], "say neither": [0, 65535], "neither disturbed": [0, 65535], "disturbed with": [0, 65535], "effect of": [0, 65535], "of wine": [0, 65535], "wine nor": [0, 65535], "nor headie": [0, 65535], "headie rash": [0, 65535], "rash prouoak'd": [0, 65535], "prouoak'd with": [0, 65535], "with raging": [0, 65535], "raging ire": [0, 65535], "ire albeit": [0, 65535], "albeit my": [0, 65535], "my wrongs": [0, 65535], "wrongs might": [0, 65535], "might make": [0, 65535], "make one": [0, 65535], "one wiser": [0, 65535], "wiser mad": [0, 65535], "mad this": [0, 65535], "woman lock'd": [0, 65535], "lock'd me": [0, 65535], "out this": [0, 65535], "day from": [0, 65535], "from dinner": [0, 65535], "dinner that": [0, 65535], "that goldsmith": [0, 65535], "goldsmith there": [0, 65535], "there were": [0, 65535], "were he": [0, 65535], "not pack'd": [0, 65535], "pack'd with": [0, 65535], "her could": [0, 65535], "could witnesse": [0, 65535], "witnesse it": [0, 65535], "then who": [0, 65535], "who parted": [0, 65535], "parted with": [0, 65535], "fetch a": [0, 65535], "chaine promising": [0, 65535], "promising to": [0, 65535], "to bring": [0, 65535], "porpentine where": [0, 65535], "where balthasar": [0, 65535], "balthasar and": [0, 65535], "together our": [0, 65535], "our dinner": [0, 65535], "dinner done": [0, 65535], "done and": [0, 65535], "not comming": [0, 65535], "comming thither": [0, 65535], "thither i": [0, 65535], "seeke him": [0, 65535], "street i": [0, 65535], "i met": [0, 65535], "met him": [0, 65535], "his companie": [0, 65535], "companie that": [0, 65535], "that gentleman": [0, 65535], "gentleman there": [0, 65535], "there did": [0, 65535], "did this": [0, 65535], "this periur'd": [0, 65535], "periur'd goldsmith": [0, 65535], "goldsmith sweare": [0, 65535], "sweare me": [0, 65535], "downe that": [0, 65535], "i this": [0, 65535], "day of": [0, 65535], "him receiu'd": [0, 65535], "receiu'd the": [0, 65535], "which god": [0, 65535], "god he": [0, 65535], "he knowes": [0, 65535], "knowes i": [0, 65535], "saw not": [0, 65535], "the which": [0, 65535], "did arrest": [0, 65535], "arrest me": [0, 65535], "an officer": [0, 65535], "officer i": [0, 65535], "did obey": [0, 65535], "obey and": [0, 65535], "sent my": [0, 65535], "my pesant": [0, 65535], "pesant home": [0, 65535], "for certaine": [0, 65535], "certaine duckets": [0, 65535], "duckets he": [0, 65535], "he with": [0, 65535], "with none": [0, 65535], "none return'd": [0, 65535], "return'd then": [0, 65535], "then fairely": [0, 65535], "fairely i": [0, 65535], "bespoke the": [0, 65535], "the officer": [0, 65535], "officer to": [0, 65535], "person with": [0, 65535], "house by'th'": [0, 65535], "by'th' way": [0, 65535], "way we": [0, 65535], "we met": [0, 65535], "met my": [0, 65535], "wife her": [0, 65535], "sister and": [0, 65535], "a rabble": [0, 65535], "rabble more": [0, 65535], "of vilde": [0, 65535], "vilde confederates": [0, 65535], "confederates along": [0, 65535], "with them": [0, 65535], "they brought": [0, 65535], "brought one": [0, 65535], "one pinch": [0, 65535], "pinch a": [0, 65535], "a hungry": [0, 65535], "hungry leane": [0, 65535], "leane fac'd": [0, 65535], "fac'd villaine": [0, 65535], "villaine a": [0, 65535], "a meere": [0, 65535], "meere anatomie": [0, 65535], "anatomie a": [0, 65535], "a mountebanke": [0, 65535], "mountebanke a": [0, 65535], "a thred": [0, 65535], "thred bare": [0, 65535], "bare iugler": [0, 65535], "iugler and": [0, 65535], "a fortune": [0, 65535], "fortune teller": [0, 65535], "teller a": [0, 65535], "a needy": [0, 65535], "needy hollow": [0, 65535], "hollow ey'd": [0, 65535], "ey'd sharpe": [0, 65535], "sharpe looking": [0, 65535], "looking wretch": [0, 65535], "wretch a": [0, 65535], "a liuing": [0, 65535], "liuing dead": [0, 65535], "dead man": [0, 65535], "man this": [0, 65535], "this pernicious": [0, 65535], "pernicious slaue": [0, 65535], "slaue forsooth": [0, 65535], "forsooth tooke": [0, 65535], "tooke on": [0, 65535], "him as": [0, 65535], "a coniurer": [0, 65535], "coniurer and": [0, 65535], "and gazing": [0, 65535], "gazing in": [0, 65535], "in mine": [0, 65535], "mine eyes": [0, 65535], "eyes feeling": [0, 65535], "feeling my": [0, 65535], "my pulse": [0, 65535], "pulse and": [0, 65535], "no face": [0, 65535], "face as": [0, 65535], "as 'twere": [0, 65535], "'twere out": [0, 65535], "out facing": [0, 65535], "facing me": [0, 65535], "me cries": [0, 65535], "cries out": [0, 65535], "out i": [0, 65535], "was possest": [0, 65535], "possest then": [0, 65535], "then altogether": [0, 65535], "altogether they": [0, 65535], "they fell": [0, 65535], "fell vpon": [0, 65535], "me bound": [0, 65535], "bound me": [0, 65535], "me bore": [0, 65535], "bore me": [0, 65535], "me thence": [0, 65535], "thence and": [0, 65535], "a darke": [0, 65535], "darke and": [0, 65535], "and dankish": [0, 65535], "dankish vault": [0, 65535], "vault at": [0, 65535], "home there": [0, 65535], "there left": [0, 65535], "left me": [0, 65535], "man both": [0, 65535], "both bound": [0, 65535], "bound together": [0, 65535], "together till": [0, 65535], "till gnawing": [0, 65535], "gnawing with": [0, 65535], "with my": [0, 65535], "my teeth": [0, 65535], "teeth my": [0, 65535], "my bonds": [0, 65535], "bonds in": [0, 65535], "in sunder": [0, 65535], "sunder i": [0, 65535], "i gain'd": [0, 65535], "gain'd my": [0, 65535], "my freedome": [0, 65535], "freedome and": [0, 65535], "and immediately": [0, 65535], "immediately ran": [0, 65535], "ran hether": [0, 65535], "hether to": [0, 65535], "grace whom": [0, 65535], "whom i": [0, 65535], "i beseech": [0, 65535], "beseech to": [0, 65535], "me ample": [0, 65535], "ample satisfaction": [0, 65535], "satisfaction for": [0, 65535], "for these": [0, 65535], "these deepe": [0, 65535], "deepe shames": [0, 65535], "shames and": [0, 65535], "great indignities": [0, 65535], "indignities gold": [0, 65535], "gold my": [0, 65535], "my lord": [0, 65535], "lord in": [0, 65535], "in truth": [0, 65535], "truth thus": [0, 65535], "thus far": [0, 65535], "far i": [0, 65535], "i witnes": [0, 65535], "witnes with": [0, 65535], "he din'd": [0, 65535], "din'd not": [0, 65535], "not at": [0, 65535], "but was": [0, 65535], "was lock'd": [0, 65535], "lock'd out": [0, 65535], "out duke": [0, 65535], "duke but": [0, 65535], "had he": [0, 65535], "he such": [0, 65535], "of thee": [0, 65535], "thee or": [0, 65535], "or no": [0, 65535], "gold he": [0, 65535], "had my": [0, 65535], "lord and": [0, 65535], "he ran": [0, 65535], "ran in": [0, 65535], "in heere": [0, 65535], "heere these": [0, 65535], "these people": [0, 65535], "people saw": [0, 65535], "necke mar": [0, 65535], "mar besides": [0, 65535], "besides i": [0, 65535], "be sworne": [0, 65535], "sworne these": [0, 65535], "mine heard": [0, 65535], "heard you": [0, 65535], "you confesse": [0, 65535], "confesse you": [0, 65535], "him after": [0, 65535], "after you": [0, 65535], "you first": [0, 65535], "first forswore": [0, 65535], "and thereupon": [0, 65535], "thereupon i": [0, 65535], "i drew": [0, 65535], "drew my": [0, 65535], "my sword": [0, 65535], "sword on": [0, 65535], "you fled": [0, 65535], "heere from": [0, 65535], "whence i": [0, 65535], "thinke you": [0, 65535], "are come": [0, 65535], "come by": [0, 65535], "by miracle": [0, 65535], "miracle e": [0, 65535], "neuer came": [0, 65535], "came within": [0, 65535], "within these": [0, 65535], "these abbey": [0, 65535], "abbey wals": [0, 65535], "wals nor": [0, 65535], "nor euer": [0, 65535], "euer didst": [0, 65535], "thou draw": [0, 65535], "draw thy": [0, 65535], "thy sword": [0, 65535], "chaine so": [0, 65535], "so helpe": [0, 65535], "helpe me": [0, 65535], "me heauen": [0, 65535], "false you": [0, 65535], "you burthen": [0, 65535], "burthen me": [0, 65535], "withall duke": [0, 65535], "duke why": [0, 65535], "why what": [0, 65535], "what an": [0, 65535], "an intricate": [0, 65535], "intricate impeach": [0, 65535], "impeach is": [0, 65535], "is this": [0, 65535], "all haue": [0, 65535], "haue drunke": [0, 65535], "drunke of": [0, 65535], "of circes": [0, 65535], "circes cup": [0, 65535], "cup if": [0, 65535], "if heere": [0, 65535], "heere you": [0, 65535], "you hous'd": [0, 65535], "heere he": [0, 65535], "haue bin": [0, 65535], "bin if": [0, 65535], "he were": [0, 65535], "were mad": [0, 65535], "mad he": [0, 65535], "not pleade": [0, 65535], "pleade so": [0, 65535], "so coldly": [0, 65535], "coldly you": [0, 65535], "din'd at": [0, 65535], "home the": [0, 65535], "goldsmith heere": [0, 65535], "heere denies": [0, 65535], "denies that": [0, 65535], "that saying": [0, 65535], "saying sirra": [0, 65535], "sirra what": [0, 65535], "what say": [0, 65535], "you e": [0, 65535], "dro sir": [0, 65535], "sir he": [0, 65535], "he din'de": [0, 65535], "din'de with": [0, 65535], "her there": [0, 65535], "there at": [0, 65535], "porpentine cur": [0, 65535], "cur he": [0, 65535], "did and": [0, 65535], "my finger": [0, 65535], "finger snacht": [0, 65535], "snacht that": [0, 65535], "that ring": [0, 65535], "ring e": [0, 65535], "anti tis": [0, 65535], "tis true": [0, 65535], "true my": [0, 65535], "liege this": [0, 65535], "this ring": [0, 65535], "ring i": [0, 65535], "her duke": [0, 65535], "duke saw'st": [0, 65535], "saw'st thou": [0, 65535], "thou him": [0, 65535], "him enter": [0, 65535], "enter at": [0, 65535], "heere curt": [0, 65535], "curt as": [0, 65535], "as sure": [0, 65535], "liege as": [0, 65535], "do see": [0, 65535], "see your": [0, 65535], "grace duke": [0, 65535], "why this": [0, 65535], "is straunge": [0, 65535], "straunge go": [0, 65535], "go call": [0, 65535], "call the": [0, 65535], "abbesse hither": [0, 65535], "hither i": [0, 65535], "are all": [0, 65535], "all mated": [0, 65535], "mated or": [0, 65535], "or starke": [0, 65535], "mad exit": [0, 65535], "exit one": [0, 65535], "abbesse fa": [0, 65535], "fa most": [0, 65535], "most mighty": [0, 65535], "mighty duke": [0, 65535], "duke vouchsafe": [0, 65535], "vouchsafe me": [0, 65535], "me speak": [0, 65535], "word haply": [0, 65535], "haply i": [0, 65535], "a friend": [0, 65535], "will saue": [0, 65535], "saue my": [0, 65535], "life and": [0, 65535], "and pay": [0, 65535], "the sum": [0, 65535], "sum that": [0, 65535], "may deliuer": [0, 65535], "deliuer me": [0, 65535], "duke speake": [0, 65535], "speake freely": [0, 65535], "freely siracusian": [0, 65535], "siracusian what": [0, 65535], "what thou": [0, 65535], "thou wilt": [0, 65535], "wilt fath": [0, 65535], "fath is": [0, 65535], "not your": [0, 65535], "name sir": [0, 65535], "sir call'd": [0, 65535], "call'd antipholus": [0, 65535], "and is": [0, 65535], "that your": [0, 65535], "your bondman": [0, 65535], "bondman dromio": [0, 65535], "dro within": [0, 65535], "within this": [0, 65535], "this houre": [0, 65535], "houre i": [0, 65535], "bondman sir": [0, 65535], "he i": [0, 65535], "him gnaw'd": [0, 65535], "gnaw'd in": [0, 65535], "in two": [0, 65535], "two my": [0, 65535], "my cords": [0, 65535], "cords now": [0, 65535], "now am": [0, 65535], "dromio and": [0, 65535], "man vnbound": [0, 65535], "vnbound fath": [0, 65535], "fath i": [0, 65535], "am sure": [0, 65535], "sure you": [0, 65535], "you both": [0, 65535], "both of": [0, 65535], "you remember": [0, 65535], "remember me": [0, 65535], "me dro": [0, 65535], "dro our": [0, 65535], "selues we": [0, 65535], "we do": [0, 65535], "do remember": [0, 65535], "remember sir": [0, 65535], "by you": [0, 65535], "for lately": [0, 65535], "lately we": [0, 65535], "we were": [0, 65535], "were bound": [0, 65535], "bound as": [0, 65535], "are now": [0, 65535], "are not": [0, 65535], "not pinches": [0, 65535], "pinches patient": [0, 65535], "patient are": [0, 65535], "sir father": [0, 65535], "father why": [0, 65535], "why looke": [0, 65535], "looke you": [0, 65535], "you strange": [0, 65535], "strange on": [0, 65535], "me you": [0, 65535], "well e": [0, 65535], "saw you": [0, 65535], "life till": [0, 65535], "till now": [0, 65535], "now fa": [0, 65535], "fa oh": [0, 65535], "oh griefe": [0, 65535], "griefe hath": [0, 65535], "hath chang'd": [0, 65535], "chang'd me": [0, 65535], "me since": [0, 65535], "you saw": [0, 65535], "saw me": [0, 65535], "me last": [0, 65535], "and carefull": [0, 65535], "carefull houres": [0, 65535], "houres with": [0, 65535], "with times": [0, 65535], "times deformed": [0, 65535], "deformed hand": [0, 65535], "hand haue": [0, 65535], "haue written": [0, 65535], "written strange": [0, 65535], "strange defeatures": [0, 65535], "defeatures in": [0, 65535], "but tell": [0, 65535], "me yet": [0, 65535], "yet dost": [0, 65535], "my voice": [0, 65535], "voice ant": [0, 65535], "ant neither": [0, 65535], "neither fat": [0, 65535], "fat dromio": [0, 65535], "dromio nor": [0, 65535], "nor thou": [0, 65535], "thou dro": [0, 65535], "no trust": [0, 65535], "trust me": [0, 65535], "i fa": [0, 65535], "fa i": [0, 65535], "sure thou": [0, 65535], "dost e": [0, 65535], "dromio i": [0, 65535], "sure i": [0, 65535], "do not": [0, 65535], "not and": [0, 65535], "and whatsoeuer": [0, 65535], "whatsoeuer a": [0, 65535], "man denies": [0, 65535], "denies you": [0, 65535], "now bound": [0, 65535], "to beleeue": [0, 65535], "beleeue him": [0, 65535], "him fath": [0, 65535], "fath not": [0, 65535], "voice oh": [0, 65535], "oh times": [0, 65535], "times extremity": [0, 65535], "extremity hast": [0, 65535], "hast thou": [0, 65535], "so crack'd": [0, 65535], "crack'd and": [0, 65535], "and splitted": [0, 65535], "splitted my": [0, 65535], "poore tongue": [0, 65535], "tongue in": [0, 65535], "in seuen": [0, 65535], "seuen short": [0, 65535], "short yeares": [0, 65535], "yeares that": [0, 65535], "heere my": [0, 65535], "my onely": [0, 65535], "onely sonne": [0, 65535], "sonne knowes": [0, 65535], "knowes not": [0, 65535], "my feeble": [0, 65535], "feeble key": [0, 65535], "key of": [0, 65535], "of vntun'd": [0, 65535], "vntun'd cares": [0, 65535], "cares though": [0, 65535], "though now": [0, 65535], "now this": [0, 65535], "this grained": [0, 65535], "grained face": [0, 65535], "face of": [0, 65535], "mine be": [0, 65535], "be hid": [0, 65535], "hid in": [0, 65535], "in sap": [0, 65535], "sap consuming": [0, 65535], "consuming winters": [0, 65535], "winters drizled": [0, 65535], "drizled snow": [0, 65535], "snow and": [0, 65535], "the conduits": [0, 65535], "conduits of": [0, 65535], "my blood": [0, 65535], "blood froze": [0, 65535], "froze vp": [0, 65535], "vp yet": [0, 65535], "yet hath": [0, 65535], "hath my": [0, 65535], "my night": [0, 65535], "night of": [0, 65535], "of life": [0, 65535], "life some": [0, 65535], "some memorie": [0, 65535], "memorie my": [0, 65535], "my wasting": [0, 65535], "wasting lampes": [0, 65535], "lampes some": [0, 65535], "some fading": [0, 65535], "fading glimmer": [0, 65535], "glimmer left": [0, 65535], "left my": [0, 65535], "my dull": [0, 65535], "dull deafe": [0, 65535], "deafe eares": [0, 65535], "eares a": [0, 65535], "little vse": [0, 65535], "to heare": [0, 65535], "these old": [0, 65535], "old witnesses": [0, 65535], "witnesses i": [0, 65535], "cannot erre": [0, 65535], "erre tell": [0, 65535], "me thou": [0, 65535], "antipholus ant": [0, 65535], "saw my": [0, 65535], "my father": [0, 65535], "father in": [0, 65535], "life fa": [0, 65535], "fa but": [0, 65535], "but seuen": [0, 65535], "seuen yeares": [0, 65535], "yeares since": [0, 65535], "since in": [0, 65535], "in siracusa": [0, 65535], "siracusa boy": [0, 65535], "boy thou": [0, 65535], "thou know'st": [0, 65535], "know'st we": [0, 65535], "we parted": [0, 65535], "parted but": [0, 65535], "but perhaps": [0, 65535], "perhaps my": [0, 65535], "sonne thou": [0, 65535], "thou sham'st": [0, 65535], "sham'st to": [0, 65535], "to acknowledge": [0, 65535], "acknowledge me": [0, 65535], "in miserie": [0, 65535], "miserie ant": [0, 65535], "duke and": [0, 65535], "that know": [0, 65535], "the city": [0, 65535], "city can": [0, 65535], "witnesse with": [0, 65535], "not so": [0, 65535], "i ne're": [0, 65535], "ne're saw": [0, 65535], "saw siracusa": [0, 65535], "siracusa in": [0, 65535], "life duke": [0, 65535], "duke i": [0, 65535], "tell thee": [0, 65535], "thee siracusian": [0, 65535], "siracusian twentie": [0, 65535], "twentie yeares": [0, 65535], "yeares haue": [0, 65535], "haue i": [0, 65535], "i bin": [0, 65535], "bin patron": [0, 65535], "patron to": [0, 65535], "to antipholus": [0, 65535], "antipholus during": [0, 65535], "during which": [0, 65535], "which time": [0, 65535], "he ne're": [0, 65535], "siracusa i": [0, 65535], "see thy": [0, 65535], "thy age": [0, 65535], "age and": [0, 65535], "and dangers": [0, 65535], "dangers make": [0, 65535], "make thee": [0, 65535], "thee dote": [0, 65535], "dote enter": [0, 65535], "abbesse with": [0, 65535], "antipholus siracusa": [0, 65535], "siracusa and": [0, 65535], "dromio sir": [0, 65535], "sir abbesse": [0, 65535], "abbesse most": [0, 65535], "most mightie": [0, 65535], "mightie duke": [0, 65535], "duke behold": [0, 65535], "behold a": [0, 65535], "man much": [0, 65535], "much wrong'd": [0, 65535], "wrong'd all": [0, 65535], "all gather": [0, 65535], "gather to": [0, 65535], "see them": [0, 65535], "them adr": [0, 65535], "see two": [0, 65535], "two husbands": [0, 65535], "husbands or": [0, 65535], "or mine": [0, 65535], "eyes deceiue": [0, 65535], "deceiue me": [0, 65535], "duke one": [0, 65535], "these men": [0, 65535], "men is": [0, 65535], "is genius": [0, 65535], "genius to": [0, 65535], "other and": [0, 65535], "so of": [0, 65535], "these which": [0, 65535], "the naturall": [0, 65535], "naturall man": [0, 65535], "and which": [0, 65535], "the spirit": [0, 65535], "spirit who": [0, 65535], "who deciphers": [0, 65535], "deciphers them": [0, 65535], "s dromio": [0, 65535], "am dromio": [0, 65535], "dromio command": [0, 65535], "command him": [0, 65535], "away e": [0, 65535], "dromio pray": [0, 65535], "pray let": [0, 65535], "stay s": [0, 65535], "s ant": [0, 65535], "ant egeon": [0, 65535], "egeon art": [0, 65535], "not or": [0, 65535], "his ghost": [0, 65535], "ghost s": [0, 65535], "s drom": [0, 65535], "drom oh": [0, 65535], "oh my": [0, 65535], "my olde": [0, 65535], "olde master": [0, 65535], "master who": [0, 65535], "who hath": [0, 65535], "hath bound": [0, 65535], "bound him": [0, 65535], "heere abb": [0, 65535], "abb who": [0, 65535], "who euer": [0, 65535], "euer bound": [0, 65535], "will lose": [0, 65535], "his bonds": [0, 65535], "bonds and": [0, 65535], "and gaine": [0, 65535], "gaine a": [0, 65535], "a husband": [0, 65535], "husband by": [0, 65535], "libertie speake": [0, 65535], "speake olde": [0, 65535], "olde egeon": [0, 65535], "egeon if": [0, 65535], "thou bee'st": [0, 65535], "bee'st the": [0, 65535], "that hadst": [0, 65535], "hadst a": [0, 65535], "once call'd": [0, 65535], "call'd \u00e6milia": [0, 65535], "\u00e6milia that": [0, 65535], "that bore": [0, 65535], "bore thee": [0, 65535], "thee at": [0, 65535], "a burthen": [0, 65535], "burthen two": [0, 65535], "two faire": [0, 65535], "faire sonnes": [0, 65535], "sonnes oh": [0, 65535], "oh if": [0, 65535], "same egeon": [0, 65535], "egeon speake": [0, 65535], "speake and": [0, 65535], "speake vnto": [0, 65535], "same \u00e6milia": [0, 65535], "\u00e6milia duke": [0, 65535], "why heere": [0, 65535], "heere begins": [0, 65535], "begins his": [0, 65535], "his morning": [0, 65535], "morning storie": [0, 65535], "storie right": [0, 65535], "right these": [0, 65535], "these twoantipholus": [0, 65535], "twoantipholus these": [0, 65535], "two so": [0, 65535], "like and": [0, 65535], "and these": [0, 65535], "two dromio's": [0, 65535], "dromio's one": [0, 65535], "one in": [0, 65535], "in semblance": [0, 65535], "semblance besides": [0, 65535], "besides her": [0, 65535], "her vrging": [0, 65535], "vrging of": [0, 65535], "her wracke": [0, 65535], "wracke at": [0, 65535], "at sea": [0, 65535], "sea these": [0, 65535], "these are": [0, 65535], "the parents": [0, 65535], "parents to": [0, 65535], "to these": [0, 65535], "children which": [0, 65535], "which accidentally": [0, 65535], "accidentally are": [0, 65535], "are met": [0, 65535], "met together": [0, 65535], "together fa": [0, 65535], "fa if": [0, 65535], "i dreame": [0, 65535], "dreame not": [0, 65535], "not thou": [0, 65535], "art \u00e6milia": [0, 65535], "\u00e6milia if": [0, 65535], "art she": [0, 65535], "she tell": [0, 65535], "me where": [0, 65535], "that sonne": [0, 65535], "sonne that": [0, 65535], "that floated": [0, 65535], "floated with": [0, 65535], "thee on": [0, 65535], "the fatall": [0, 65535], "fatall rafte": [0, 65535], "rafte abb": [0, 65535], "abb by": [0, 65535], "by men": [0, 65535], "men of": [0, 65535], "of epidamium": [0, 65535], "epidamium he": [0, 65535], "the twin": [0, 65535], "twin dromio": [0, 65535], "dromio all": [0, 65535], "all were": [0, 65535], "were taken": [0, 65535], "taken vp": [0, 65535], "vp but": [0, 65535], "by rude": [0, 65535], "rude fishermen": [0, 65535], "fishermen of": [0, 65535], "of corinth": [0, 65535], "corinth by": [0, 65535], "by force": [0, 65535], "force tooke": [0, 65535], "tooke dromio": [0, 65535], "sonne from": [0, 65535], "from them": [0, 65535], "and me": [0, 65535], "me they": [0, 65535], "they left": [0, 65535], "left with": [0, 65535], "with those": [0, 65535], "those of": [0, 65535], "epidamium what": [0, 65535], "what then": [0, 65535], "then became": [0, 65535], "became of": [0, 65535], "them i": [0, 65535], "this fortune": [0, 65535], "fortune that": [0, 65535], "see mee": [0, 65535], "mee in": [0, 65535], "in duke": [0, 65535], "duke antipholus": [0, 65535], "antipholus thou": [0, 65535], "thou cam'st": [0, 65535], "cam'st from": [0, 65535], "from corinth": [0, 65535], "corinth first": [0, 65535], "first s": [0, 65535], "sir not": [0, 65535], "not i": [0, 65535], "i came": [0, 65535], "from siracuse": [0, 65535], "siracuse duke": [0, 65535], "duke stay": [0, 65535], "stay stand": [0, 65535], "stand apart": [0, 65535], "apart i": [0, 65535], "not which": [0, 65535], "is which": [0, 65535], "which e": [0, 65535], "corinth my": [0, 65535], "my most": [0, 65535], "gracious lord": [0, 65535], "lord e": [0, 65535], "i with": [0, 65535], "him e": [0, 65535], "ant brought": [0, 65535], "brought to": [0, 65535], "town by": [0, 65535], "that most": [0, 65535], "most famous": [0, 65535], "famous warriour": [0, 65535], "warriour duke": [0, 65535], "duke menaphon": [0, 65535], "menaphon your": [0, 65535], "your most": [0, 65535], "most renowned": [0, 65535], "renowned vnckle": [0, 65535], "vnckle adr": [0, 65535], "adr which": [0, 65535], "you two": [0, 65535], "two did": [0, 65535], "dine with": [0, 65535], "i gentle": [0, 65535], "gentle mistris": [0, 65535], "mistris adr": [0, 65535], "and are": [0, 65535], "not you": [0, 65535], "husband e": [0, 65535], "say nay": [0, 65535], "nay to": [0, 65535], "ant and": [0, 65535], "so do": [0, 65535], "i yet": [0, 65535], "yet did": [0, 65535], "did she": [0, 65535], "she call": [0, 65535], "this faire": [0, 65535], "faire gentlewoman": [0, 65535], "gentlewoman her": [0, 65535], "sister heere": [0, 65535], "heere did": [0, 65535], "did call": [0, 65535], "me brother": [0, 65535], "brother what": [0, 65535], "i told": [0, 65535], "you then": [0, 65535], "hope i": [0, 65535], "haue leisure": [0, 65535], "leisure to": [0, 65535], "make good": [0, 65535], "good if": [0, 65535], "a dreame": [0, 65535], "dreame i": [0, 65535], "and heare": [0, 65535], "heare goldsmith": [0, 65535], "goldsmith that": [0, 65535], "chaine sir": [0, 65535], "sir which": [0, 65535], "which you": [0, 65535], "of mee": [0, 65535], "mee s": [0, 65535], "thinke it": [0, 65535], "i denie": [0, 65535], "not e": [0, 65535], "chaine arrested": [0, 65535], "arrested me": [0, 65535], "me gold": [0, 65535], "i deny": [0, 65535], "not adr": [0, 65535], "sent you": [0, 65535], "you monie": [0, 65535], "monie sir": [0, 65535], "be your": [0, 65535], "your baile": [0, 65535], "baile by": [0, 65535], "dromio but": [0, 65535], "brought it": [0, 65535], "no none": [0, 65535], "none by": [0, 65535], "this purse": [0, 65535], "purse of": [0, 65535], "of duckets": [0, 65535], "duckets i": [0, 65535], "i receiu'd": [0, 65535], "receiu'd from": [0, 65535], "from you": [0, 65535], "dromio my": [0, 65535], "man did": [0, 65535], "did bring": [0, 65535], "bring them": [0, 65535], "them me": [0, 65535], "see we": [0, 65535], "we still": [0, 65535], "did meete": [0, 65535], "meete each": [0, 65535], "each others": [0, 65535], "others man": [0, 65535], "was tane": [0, 65535], "tane for": [0, 65535], "he for": [0, 65535], "thereupon these": [0, 65535], "these errors": [0, 65535], "errors are": [0, 65535], "are arose": [0, 65535], "arose e": [0, 65535], "ant these": [0, 65535], "these duckets": [0, 65535], "duckets pawne": [0, 65535], "pawne i": [0, 65535], "i for": [0, 65535], "father heere": [0, 65535], "heere duke": [0, 65535], "duke it": [0, 65535], "not neede": [0, 65535], "neede thy": [0, 65535], "thy father": [0, 65535], "father hath": [0, 65535], "life cur": [0, 65535], "cur sir": [0, 65535], "must haue": [0, 65535], "haue that": [0, 65535], "that diamond": [0, 65535], "diamond from": [0, 65535], "ant there": [0, 65535], "much thanks": [0, 65535], "thanks for": [0, 65535], "good cheere": [0, 65535], "cheere abb": [0, 65535], "abb renowned": [0, 65535], "renowned duke": [0, 65535], "vouchsafe to": [0, 65535], "take the": [0, 65535], "the paines": [0, 65535], "paines to": [0, 65535], "with vs": [0, 65535], "vs into": [0, 65535], "heare at": [0, 65535], "at large": [0, 65535], "large discoursed": [0, 65535], "discoursed all": [0, 65535], "all our": [0, 65535], "our fortunes": [0, 65535], "fortunes and": [0, 65535], "that are": [0, 65535], "are assembled": [0, 65535], "that by": [0, 65535], "this simpathized": [0, 65535], "simpathized one": [0, 65535], "one daies": [0, 65535], "daies error": [0, 65535], "error haue": [0, 65535], "haue suffer'd": [0, 65535], "suffer'd wrong": [0, 65535], "wrong goe": [0, 65535], "goe keepe": [0, 65535], "keepe vs": [0, 65535], "vs companie": [0, 65535], "companie and": [0, 65535], "we shall": [0, 65535], "shall make": [0, 65535], "make full": [0, 65535], "full satisfaction": [0, 65535], "satisfaction thirtie": [0, 65535], "thirtie three": [0, 65535], "three yeares": [0, 65535], "but gone": [0, 65535], "gone in": [0, 65535], "in trauaile": [0, 65535], "trauaile of": [0, 65535], "my sonnes": [0, 65535], "sonnes and": [0, 65535], "and till": [0, 65535], "this present": [0, 65535], "present houre": [0, 65535], "houre my": [0, 65535], "my heauie": [0, 65535], "heauie burthen": [0, 65535], "burthen are": [0, 65535], "are deliuered": [0, 65535], "deliuered the": [0, 65535], "duke my": [0, 65535], "my children": [0, 65535], "children both": [0, 65535], "both and": [0, 65535], "the kalenders": [0, 65535], "kalenders of": [0, 65535], "their natiuity": [0, 65535], "natiuity go": [0, 65535], "a gossips": [0, 65535], "gossips feast": [0, 65535], "feast and": [0, 65535], "mee after": [0, 65535], "after so": [0, 65535], "so long": [0, 65535], "long greefe": [0, 65535], "greefe such": [0, 65535], "such natiuitie": [0, 65535], "natiuitie duke": [0, 65535], "heart ile": [0, 65535], "ile gossip": [0, 65535], "gossip at": [0, 65535], "this feast": [0, 65535], "feast exeunt": [0, 65535], "exeunt omnes": [0, 65535], "omnes manet": [0, 65535], "manet the": [0, 65535], "the two": [0, 65535], "dromio's and": [0, 65535], "and two": [0, 65535], "two brothers": [0, 65535], "brothers s": [0, 65535], "dro mast": [0, 65535], "mast shall": [0, 65535], "i fetch": [0, 65535], "fetch your": [0, 65535], "your stuffe": [0, 65535], "stuffe from": [0, 65535], "from shipbord": [0, 65535], "shipbord e": [0, 65535], "an dromio": [0, 65535], "dromio what": [0, 65535], "what stuffe": [0, 65535], "stuffe of": [0, 65535], "mine hast": [0, 65535], "thou imbarkt": [0, 65535], "imbarkt s": [0, 65535], "dro your": [0, 65535], "your goods": [0, 65535], "goods that": [0, 65535], "lay at": [0, 65535], "at host": [0, 65535], "host sir": [0, 65535], "centaur s": [0, 65535], "ant he": [0, 65535], "he speakes": [0, 65535], "speakes to": [0, 65535], "am your": [0, 65535], "master dromio": [0, 65535], "dromio come": [0, 65535], "vs wee'l": [0, 65535], "wee'l looke": [0, 65535], "looke to": [0, 65535], "that anon": [0, 65535], "anon embrace": [0, 65535], "embrace thy": [0, 65535], "thy brother": [0, 65535], "brother there": [0, 65535], "there reioyce": [0, 65535], "reioyce with": [0, 65535], "him exit": [0, 65535], "exit s": [0, 65535], "dro there": [0, 65535], "fat friend": [0, 65535], "friend at": [0, 65535], "your masters": [0, 65535], "masters house": [0, 65535], "that kitchin'd": [0, 65535], "kitchin'd me": [0, 65535], "day at": [0, 65535], "dinner she": [0, 65535], "she now": [0, 65535], "now shall": [0, 65535], "shall be": [0, 65535], "sister not": [0, 65535], "e d": [0, 65535], "d me": [0, 65535], "me thinks": [0, 65535], "thinks you": [0, 65535], "my glasse": [0, 65535], "glasse not": [0, 65535], "my brother": [0, 65535], "brother i": [0, 65535], "see by": [0, 65535], "a sweet": [0, 65535], "sweet fac'd": [0, 65535], "fac'd youth": [0, 65535], "youth will": [0, 65535], "you walke": [0, 65535], "walke in": [0, 65535], "in to": [0, 65535], "see their": [0, 65535], "their gossipping": [0, 65535], "gossipping s": [0, 65535], "my elder": [0, 65535], "elder e": [0, 65535], "dro that's": [0, 65535], "a question": [0, 65535], "question how": [0, 65535], "how shall": [0, 65535], "shall we": [0, 65535], "we trie": [0, 65535], "trie it": [0, 65535], "dro wee'l": [0, 65535], "wee'l draw": [0, 65535], "draw cuts": [0, 65535], "cuts for": [0, 65535], "the signior": [0, 65535], "signior till": [0, 65535], "till then": [0, 65535], "then lead": [0, 65535], "lead thou": [0, 65535], "thou first": [0, 65535], "first e": [0, 65535], "nay then": [0, 65535], "then thus": [0, 65535], "thus we": [0, 65535], "world like": [0, 65535], "like brother": [0, 65535], "brother and": [0, 65535], "and brother": [0, 65535], "let's go": [0, 65535], "go hand": [0, 65535], "hand not": [0, 65535], "one before": [0, 65535], "before another": [0, 65535], "another exeunt": [0, 65535], "exeunt finis": [0, 65535], "actus quintus sc\u0153na": [0, 65535], "quintus sc\u0153na prima": [0, 65535], "sc\u0153na prima enter": [0, 65535], "prima enter the": [0, 65535], "enter the merchant": [0, 65535], "the merchant and": [0, 65535], "merchant and the": [0, 65535], "and the goldsmith": [0, 65535], "the goldsmith gold": [0, 65535], "goldsmith gold i": [0, 65535], "gold i am": [0, 65535], "i am sorry": [0, 65535], "am sorry sir": [0, 65535], "sorry sir that": [0, 65535], "sir that i": [0, 65535], "i haue hindred": [0, 65535], "haue hindred you": [0, 65535], "hindred you but": [0, 65535], "you but i": [0, 65535], "i protest he": [0, 65535], "protest he had": [0, 65535], "he had the": [0, 65535], "had the chaine": [0, 65535], "the chaine of": [0, 65535], "chaine of me": [0, 65535], "of me though": [0, 65535], "me though most": [0, 65535], "though most dishonestly": [0, 65535], "most dishonestly he": [0, 65535], "dishonestly he doth": [0, 65535], "he doth denie": [0, 65535], "doth denie it": [0, 65535], "denie it mar": [0, 65535], "it mar how": [0, 65535], "mar how is": [0, 65535], "how is the": [0, 65535], "is the man": [0, 65535], "the man esteem'd": [0, 65535], "man esteem'd heere": [0, 65535], "esteem'd heere in": [0, 65535], "heere in the": [0, 65535], "in the citie": [0, 65535], "the citie gold": [0, 65535], "citie gold of": [0, 65535], "gold of very": [0, 65535], "of very reuerent": [0, 65535], "very reuerent reputation": [0, 65535], "reuerent reputation sir": [0, 65535], "reputation sir of": [0, 65535], "sir of credit": [0, 65535], "of credit infinite": [0, 65535], "credit infinite highly": [0, 65535], "infinite highly belou'd": [0, 65535], "highly belou'd second": [0, 65535], "belou'd second to": [0, 65535], "second to none": [0, 65535], "to none that": [0, 65535], "none that liues": [0, 65535], "that liues heere": [0, 65535], "liues heere in": [0, 65535], "the citie his": [0, 65535], "citie his word": [0, 65535], "his word might": [0, 65535], "word might beare": [0, 65535], "might beare my": [0, 65535], "beare my wealth": [0, 65535], "my wealth at": [0, 65535], "wealth at any": [0, 65535], "at any time": [0, 65535], "any time mar": [0, 65535], "time mar speake": [0, 65535], "mar speake softly": [0, 65535], "speake softly yonder": [0, 65535], "softly yonder as": [0, 65535], "yonder as i": [0, 65535], "as i thinke": [0, 65535], "i thinke he": [0, 65535], "thinke he walkes": [0, 65535], "he walkes enter": [0, 65535], "walkes enter antipholus": [0, 65535], "enter antipholus and": [0, 65535], "antipholus and dromio": [0, 65535], "and dromio againe": [0, 65535], "dromio againe gold": [0, 65535], "againe gold 'tis": [0, 65535], "gold 'tis so": [0, 65535], "'tis so and": [0, 65535], "so and that": [0, 65535], "and that selfe": [0, 65535], "that selfe chaine": [0, 65535], "selfe chaine about": [0, 65535], "chaine about his": [0, 65535], "about his necke": [0, 65535], "his necke which": [0, 65535], "necke which he": [0, 65535], "which he forswore": [0, 65535], "he forswore most": [0, 65535], "forswore most monstrously": [0, 65535], "most monstrously to": [0, 65535], "monstrously to haue": [0, 65535], "to haue good": [0, 65535], "haue good sir": [0, 65535], "good sir draw": [0, 65535], "sir draw neere": [0, 65535], "draw neere to": [0, 65535], "neere to me": [0, 65535], "to me ile": [0, 65535], "me ile speake": [0, 65535], "ile speake to": [0, 65535], "speake to him": [0, 65535], "to him signior": [0, 65535], "him signior antipholus": [0, 65535], "signior antipholus i": [0, 65535], "antipholus i wonder": [0, 65535], "i wonder much": [0, 65535], "wonder much that": [0, 65535], "much that you": [0, 65535], "that you would": [0, 65535], "you would put": [0, 65535], "would put me": [0, 65535], "put me to": [0, 65535], "me to this": [0, 65535], "to this shame": [0, 65535], "this shame and": [0, 65535], "shame and trouble": [0, 65535], "and trouble and": [0, 65535], "trouble and not": [0, 65535], "and not without": [0, 65535], "not without some": [0, 65535], "without some scandall": [0, 65535], "some scandall to": [0, 65535], "scandall to your": [0, 65535], "to your selfe": [0, 65535], "your selfe with": [0, 65535], "selfe with circumstance": [0, 65535], "with circumstance and": [0, 65535], "circumstance and oaths": [0, 65535], "and oaths so": [0, 65535], "oaths so to": [0, 65535], "so to denie": [0, 65535], "to denie this": [0, 65535], "denie this chaine": [0, 65535], "this chaine which": [0, 65535], "chaine which now": [0, 65535], "which now you": [0, 65535], "now you weare": [0, 65535], "you weare so": [0, 65535], "weare so openly": [0, 65535], "so openly beside": [0, 65535], "openly beside the": [0, 65535], "beside the charge": [0, 65535], "the charge the": [0, 65535], "charge the shame": [0, 65535], "the shame imprisonment": [0, 65535], "shame imprisonment you": [0, 65535], "imprisonment you haue": [0, 65535], "you haue done": [0, 65535], "haue done wrong": [0, 65535], "done wrong to": [0, 65535], "wrong to this": [0, 65535], "to this my": [0, 65535], "this my honest": [0, 65535], "my honest friend": [0, 65535], "honest friend who": [0, 65535], "friend who but": [0, 65535], "who but for": [0, 65535], "but for staying": [0, 65535], "for staying on": [0, 65535], "staying on our": [0, 65535], "on our controuersie": [0, 65535], "our controuersie had": [0, 65535], "controuersie had hoisted": [0, 65535], "had hoisted saile": [0, 65535], "hoisted saile and": [0, 65535], "saile and put": [0, 65535], "and put to": [0, 65535], "put to sea": [0, 65535], "to sea to": [0, 65535], "sea to day": [0, 65535], "to day this": [0, 65535], "day this chaine": [0, 65535], "this chaine you": [0, 65535], "chaine you had": [0, 65535], "you had of": [0, 65535], "had of me": [0, 65535], "of me can": [0, 65535], "me can you": [0, 65535], "can you deny": [0, 65535], "you deny it": [0, 65535], "deny it ant": [0, 65535], "it ant i": [0, 65535], "i thinke i": [0, 65535], "thinke i had": [0, 65535], "i had i": [0, 65535], "had i neuer": [0, 65535], "i neuer did": [0, 65535], "neuer did deny": [0, 65535], "did deny it": [0, 65535], "deny it mar": [0, 65535], "it mar yes": [0, 65535], "mar yes that": [0, 65535], "yes that you": [0, 65535], "that you did": [0, 65535], "you did sir": [0, 65535], "did sir and": [0, 65535], "sir and forswore": [0, 65535], "and forswore it": [0, 65535], "forswore it too": [0, 65535], "it too ant": [0, 65535], "too ant who": [0, 65535], "ant who heard": [0, 65535], "who heard me": [0, 65535], "heard me to": [0, 65535], "me to denie": [0, 65535], "to denie it": [0, 65535], "denie it or": [0, 65535], "it or forsweare": [0, 65535], "or forsweare it": [0, 65535], "forsweare it mar": [0, 65535], "it mar these": [0, 65535], "mar these eares": [0, 65535], "these eares of": [0, 65535], "eares of mine": [0, 65535], "of mine thou": [0, 65535], "mine thou knowst": [0, 65535], "thou knowst did": [0, 65535], "knowst did hear": [0, 65535], "did hear thee": [0, 65535], "hear thee fie": [0, 65535], "thee fie on": [0, 65535], "fie on thee": [0, 65535], "on thee wretch": [0, 65535], "thee wretch 'tis": [0, 65535], "wretch 'tis pitty": [0, 65535], "'tis pitty that": [0, 65535], "pitty that thou": [0, 65535], "that thou liu'st": [0, 65535], "thou liu'st to": [0, 65535], "liu'st to walke": [0, 65535], "to walke where": [0, 65535], "walke where any": [0, 65535], "where any honest": [0, 65535], "any honest men": [0, 65535], "honest men resort": [0, 65535], "men resort ant": [0, 65535], "resort ant thou": [0, 65535], "thou art a": [0, 65535], "art a villaine": [0, 65535], "a villaine to": [0, 65535], "villaine to impeach": [0, 65535], "to impeach me": [0, 65535], "impeach me thus": [0, 65535], "me thus ile": [0, 65535], "thus ile proue": [0, 65535], "ile proue mine": [0, 65535], "proue mine honor": [0, 65535], "mine honor and": [0, 65535], "honor and mine": [0, 65535], "and mine honestie": [0, 65535], "mine honestie against": [0, 65535], "honestie against thee": [0, 65535], "against thee presently": [0, 65535], "thee presently if": [0, 65535], "presently if thou": [0, 65535], "if thou dar'st": [0, 65535], "thou dar'st stand": [0, 65535], "dar'st stand mar": [0, 65535], "stand mar i": [0, 65535], "mar i dare": [0, 65535], "i dare and": [0, 65535], "dare and do": [0, 65535], "and do defie": [0, 65535], "do defie thee": [0, 65535], "defie thee for": [0, 65535], "thee for a": [0, 65535], "for a villaine": [0, 65535], "a villaine they": [0, 65535], "villaine they draw": [0, 65535], "they draw enter": [0, 65535], "draw enter adriana": [0, 65535], "enter adriana luciana": [0, 65535], "adriana luciana courtezan": [0, 65535], "luciana courtezan others": [0, 65535], "courtezan others adr": [0, 65535], "others adr hold": [0, 65535], "adr hold hurt": [0, 65535], "hold hurt him": [0, 65535], "hurt him not": [0, 65535], "him not for": [0, 65535], "not for god": [0, 65535], "for god sake": [0, 65535], "god sake he": [0, 65535], "sake he is": [0, 65535], "he is mad": [0, 65535], "is mad some": [0, 65535], "mad some get": [0, 65535], "some get within": [0, 65535], "get within him": [0, 65535], "within him take": [0, 65535], "him take his": [0, 65535], "take his sword": [0, 65535], "his sword away": [0, 65535], "sword away binde": [0, 65535], "away binde dromio": [0, 65535], "binde dromio too": [0, 65535], "dromio too and": [0, 65535], "too and beare": [0, 65535], "and beare them": [0, 65535], "beare them to": [0, 65535], "them to my": [0, 65535], "to my house": [0, 65535], "my house s": [0, 65535], "house s dro": [0, 65535], "s dro runne": [0, 65535], "dro runne master": [0, 65535], "runne master run": [0, 65535], "master run for": [0, 65535], "run for gods": [0, 65535], "gods sake take": [0, 65535], "sake take a": [0, 65535], "take a house": [0, 65535], "a house this": [0, 65535], "house this is": [0, 65535], "this is some": [0, 65535], "is some priorie": [0, 65535], "some priorie in": [0, 65535], "priorie in or": [0, 65535], "in or we": [0, 65535], "or we are": [0, 65535], "we are spoyl'd": [0, 65535], "are spoyl'd exeunt": [0, 65535], "spoyl'd exeunt to": [0, 65535], "exeunt to the": [0, 65535], "to the priorie": [0, 65535], "the priorie enter": [0, 65535], "priorie enter ladie": [0, 65535], "enter ladie abbesse": [0, 65535], "ladie abbesse ab": [0, 65535], "abbesse ab be": [0, 65535], "ab be quiet": [0, 65535], "be quiet people": [0, 65535], "quiet people wherefore": [0, 65535], "people wherefore throng": [0, 65535], "wherefore throng you": [0, 65535], "throng you hither": [0, 65535], "you hither adr": [0, 65535], "hither adr to": [0, 65535], "adr to fetch": [0, 65535], "to fetch my": [0, 65535], "fetch my poore": [0, 65535], "my poore distracted": [0, 65535], "poore distracted husband": [0, 65535], "distracted husband hence": [0, 65535], "husband hence let": [0, 65535], "hence let vs": [0, 65535], "let vs come": [0, 65535], "vs come in": [0, 65535], "come in that": [0, 65535], "in that we": [0, 65535], "that we may": [0, 65535], "we may binde": [0, 65535], "may binde him": [0, 65535], "binde him fast": [0, 65535], "him fast and": [0, 65535], "fast and beare": [0, 65535], "and beare him": [0, 65535], "beare him home": [0, 65535], "him home for": [0, 65535], "home for his": [0, 65535], "for his recouerie": [0, 65535], "his recouerie gold": [0, 65535], "recouerie gold i": [0, 65535], "gold i knew": [0, 65535], "i knew he": [0, 65535], "knew he was": [0, 65535], "was not in": [0, 65535], "not in his": [0, 65535], "in his perfect": [0, 65535], "his perfect wits": [0, 65535], "perfect wits mar": [0, 65535], "wits mar i": [0, 65535], "mar i am": [0, 65535], "am sorry now": [0, 65535], "sorry now that": [0, 65535], "now that i": [0, 65535], "i did draw": [0, 65535], "did draw on": [0, 65535], "draw on him": [0, 65535], "on him ab": [0, 65535], "him ab how": [0, 65535], "ab how long": [0, 65535], "how long hath": [0, 65535], "long hath this": [0, 65535], "hath this possession": [0, 65535], "this possession held": [0, 65535], "possession held the": [0, 65535], "held the man": [0, 65535], "the man adr": [0, 65535], "man adr this": [0, 65535], "adr this weeke": [0, 65535], "this weeke he": [0, 65535], "weeke he hath": [0, 65535], "he hath beene": [0, 65535], "hath beene heauie": [0, 65535], "beene heauie sower": [0, 65535], "heauie sower sad": [0, 65535], "sower sad and": [0, 65535], "sad and much": [0, 65535], "and much different": [0, 65535], "much different from": [0, 65535], "different from the": [0, 65535], "from the man": [0, 65535], "the man he": [0, 65535], "man he was": [0, 65535], "was but till": [0, 65535], "but till this": [0, 65535], "till this afternoone": [0, 65535], "this afternoone his": [0, 65535], "afternoone his passion": [0, 65535], "his passion ne're": [0, 65535], "passion ne're brake": [0, 65535], "ne're brake into": [0, 65535], "brake into extremity": [0, 65535], "into extremity of": [0, 65535], "extremity of rage": [0, 65535], "of rage ab": [0, 65535], "rage ab hath": [0, 65535], "ab hath he": [0, 65535], "hath he not": [0, 65535], "he not lost": [0, 65535], "not lost much": [0, 65535], "lost much wealth": [0, 65535], "much wealth by": [0, 65535], "wealth by wrack": [0, 65535], "by wrack of": [0, 65535], "wrack of sea": [0, 65535], "of sea buried": [0, 65535], "sea buried some": [0, 65535], "buried some deere": [0, 65535], "some deere friend": [0, 65535], "deere friend hath": [0, 65535], "friend hath not": [0, 65535], "hath not else": [0, 65535], "not else his": [0, 65535], "else his eye": [0, 65535], "his eye stray'd": [0, 65535], "eye stray'd his": [0, 65535], "stray'd his affection": [0, 65535], "his affection in": [0, 65535], "affection in vnlawfull": [0, 65535], "in vnlawfull loue": [0, 65535], "vnlawfull loue a": [0, 65535], "loue a sinne": [0, 65535], "a sinne preuailing": [0, 65535], "sinne preuailing much": [0, 65535], "preuailing much in": [0, 65535], "much in youthfull": [0, 65535], "in youthfull men": [0, 65535], "youthfull men who": [0, 65535], "men who giue": [0, 65535], "who giue their": [0, 65535], "giue their eies": [0, 65535], "their eies the": [0, 65535], "eies the liberty": [0, 65535], "the liberty of": [0, 65535], "liberty of gazing": [0, 65535], "of gazing which": [0, 65535], "gazing which of": [0, 65535], "which of these": [0, 65535], "of these sorrowes": [0, 65535], "these sorrowes is": [0, 65535], "sorrowes is he": [0, 65535], "is he subiect": [0, 65535], "he subiect too": [0, 65535], "subiect too adr": [0, 65535], "too adr to": [0, 65535], "adr to none": [0, 65535], "to none of": [0, 65535], "none of these": [0, 65535], "of these except": [0, 65535], "these except it": [0, 65535], "except it be": [0, 65535], "it be the": [0, 65535], "be the last": [0, 65535], "the last namely": [0, 65535], "last namely some": [0, 65535], "namely some loue": [0, 65535], "some loue that": [0, 65535], "loue that drew": [0, 65535], "that drew him": [0, 65535], "drew him oft": [0, 65535], "him oft from": [0, 65535], "oft from home": [0, 65535], "from home ab": [0, 65535], "home ab you": [0, 65535], "ab you should": [0, 65535], "you should for": [0, 65535], "should for that": [0, 65535], "for that haue": [0, 65535], "that haue reprehended": [0, 65535], "haue reprehended him": [0, 65535], "reprehended him adr": [0, 65535], "him adr why": [0, 65535], "adr why so": [0, 65535], "why so i": [0, 65535], "so i did": [0, 65535], "i did ab": [0, 65535], "did ab i": [0, 65535], "ab i but": [0, 65535], "i but not": [0, 65535], "but not rough": [0, 65535], "not rough enough": [0, 65535], "rough enough adr": [0, 65535], "enough adr as": [0, 65535], "adr as roughly": [0, 65535], "as roughly as": [0, 65535], "roughly as my": [0, 65535], "as my modestie": [0, 65535], "my modestie would": [0, 65535], "modestie would let": [0, 65535], "would let me": [0, 65535], "let me ab": [0, 65535], "me ab haply": [0, 65535], "ab haply in": [0, 65535], "haply in priuate": [0, 65535], "in priuate adr": [0, 65535], "priuate adr and": [0, 65535], "adr and in": [0, 65535], "and in assemblies": [0, 65535], "in assemblies too": [0, 65535], "assemblies too ab": [0, 65535], "too ab i": [0, 65535], "but not enough": [0, 65535], "not enough adr": [0, 65535], "enough adr it": [0, 65535], "adr it was": [0, 65535], "was the copie": [0, 65535], "the copie of": [0, 65535], "copie of our": [0, 65535], "of our conference": [0, 65535], "our conference in": [0, 65535], "conference in bed": [0, 65535], "in bed he": [0, 65535], "bed he slept": [0, 65535], "he slept not": [0, 65535], "slept not for": [0, 65535], "not for my": [0, 65535], "for my vrging": [0, 65535], "my vrging it": [0, 65535], "vrging it at": [0, 65535], "it at boord": [0, 65535], "at boord he": [0, 65535], "boord he fed": [0, 65535], "he fed not": [0, 65535], "fed not for": [0, 65535], "vrging it alone": [0, 65535], "it alone it": [0, 65535], "alone it was": [0, 65535], "was the subiect": [0, 65535], "the subiect of": [0, 65535], "subiect of my": [0, 65535], "of my theame": [0, 65535], "my theame in": [0, 65535], "theame in company": [0, 65535], "in company i": [0, 65535], "company i often": [0, 65535], "i often glanced": [0, 65535], "often glanced it": [0, 65535], "glanced it still": [0, 65535], "it still did": [0, 65535], "still did i": [0, 65535], "did i tell": [0, 65535], "i tell him": [0, 65535], "tell him it": [0, 65535], "him it was": [0, 65535], "it was vilde": [0, 65535], "was vilde and": [0, 65535], "vilde and bad": [0, 65535], "and bad ab": [0, 65535], "bad ab and": [0, 65535], "ab and thereof": [0, 65535], "and thereof came": [0, 65535], "thereof came it": [0, 65535], "came it that": [0, 65535], "it that the": [0, 65535], "that the man": [0, 65535], "the man was": [0, 65535], "man was mad": [0, 65535], "was mad the": [0, 65535], "mad the venome": [0, 65535], "the venome clamors": [0, 65535], "venome clamors of": [0, 65535], "clamors of a": [0, 65535], "of a iealous": [0, 65535], "a iealous woman": [0, 65535], "iealous woman poisons": [0, 65535], "woman poisons more": [0, 65535], "poisons more deadly": [0, 65535], "more deadly then": [0, 65535], "deadly then a": [0, 65535], "then a mad": [0, 65535], "a mad dogges": [0, 65535], "mad dogges tooth": [0, 65535], "dogges tooth it": [0, 65535], "tooth it seemes": [0, 65535], "it seemes his": [0, 65535], "seemes his sleepes": [0, 65535], "his sleepes were": [0, 65535], "sleepes were hindred": [0, 65535], "were hindred by": [0, 65535], "hindred by thy": [0, 65535], "by thy railing": [0, 65535], "thy railing and": [0, 65535], "railing and thereof": [0, 65535], "and thereof comes": [0, 65535], "thereof comes it": [0, 65535], "it that his": [0, 65535], "that his head": [0, 65535], "his head is": [0, 65535], "head is light": [0, 65535], "is light thou": [0, 65535], "light thou saist": [0, 65535], "thou saist his": [0, 65535], "saist his meate": [0, 65535], "his meate was": [0, 65535], "meate was sawc'd": [0, 65535], "was sawc'd with": [0, 65535], "sawc'd with thy": [0, 65535], "with thy vpbraidings": [0, 65535], "thy vpbraidings vnquiet": [0, 65535], "vpbraidings vnquiet meales": [0, 65535], "vnquiet meales make": [0, 65535], "meales make ill": [0, 65535], "make ill digestions": [0, 65535], "ill digestions thereof": [0, 65535], "digestions thereof the": [0, 65535], "thereof the raging": [0, 65535], "the raging fire": [0, 65535], "raging fire of": [0, 65535], "fire of feauer": [0, 65535], "of feauer bred": [0, 65535], "feauer bred and": [0, 65535], "bred and what's": [0, 65535], "and what's a": [0, 65535], "what's a feauer": [0, 65535], "a feauer but": [0, 65535], "feauer but a": [0, 65535], "but a fit": [0, 65535], "a fit of": [0, 65535], "fit of madnesse": [0, 65535], "of madnesse thou": [0, 65535], "madnesse thou sayest": [0, 65535], "thou sayest his": [0, 65535], "sayest his sports": [0, 65535], "his sports were": [0, 65535], "sports were hindred": [0, 65535], "by thy bralles": [0, 65535], "thy bralles sweet": [0, 65535], "bralles sweet recreation": [0, 65535], "sweet recreation barr'd": [0, 65535], "recreation barr'd what": [0, 65535], "barr'd what doth": [0, 65535], "what doth ensue": [0, 65535], "doth ensue but": [0, 65535], "ensue but moodie": [0, 65535], "but moodie and": [0, 65535], "moodie and dull": [0, 65535], "and dull melancholly": [0, 65535], "dull melancholly kinsman": [0, 65535], "melancholly kinsman to": [0, 65535], "kinsman to grim": [0, 65535], "to grim and": [0, 65535], "grim and comfortlesse": [0, 65535], "and comfortlesse dispaire": [0, 65535], "comfortlesse dispaire and": [0, 65535], "dispaire and at": [0, 65535], "and at her": [0, 65535], "at her heeles": [0, 65535], "her heeles a": [0, 65535], "heeles a huge": [0, 65535], "a huge infectious": [0, 65535], "huge infectious troope": [0, 65535], "infectious troope of": [0, 65535], "troope of pale": [0, 65535], "of pale distemperatures": [0, 65535], "pale distemperatures and": [0, 65535], "distemperatures and foes": [0, 65535], "and foes to": [0, 65535], "foes to life": [0, 65535], "to life in": [0, 65535], "life in food": [0, 65535], "in food in": [0, 65535], "food in sport": [0, 65535], "in sport and": [0, 65535], "sport and life": [0, 65535], "and life preseruing": [0, 65535], "life preseruing rest": [0, 65535], "preseruing rest to": [0, 65535], "rest to be": [0, 65535], "to be disturb'd": [0, 65535], "be disturb'd would": [0, 65535], "disturb'd would mad": [0, 65535], "would mad or": [0, 65535], "mad or man": [0, 65535], "or man or": [0, 65535], "man or beast": [0, 65535], "or beast the": [0, 65535], "beast the consequence": [0, 65535], "the consequence is": [0, 65535], "consequence is then": [0, 65535], "is then thy": [0, 65535], "then thy iealous": [0, 65535], "thy iealous fits": [0, 65535], "iealous fits hath": [0, 65535], "fits hath scar'd": [0, 65535], "hath scar'd thy": [0, 65535], "scar'd thy husband": [0, 65535], "thy husband from": [0, 65535], "husband from the": [0, 65535], "from the vse": [0, 65535], "the vse of": [0, 65535], "vse of wits": [0, 65535], "of wits luc": [0, 65535], "wits luc she": [0, 65535], "luc she neuer": [0, 65535], "she neuer reprehended": [0, 65535], "neuer reprehended him": [0, 65535], "reprehended him but": [0, 65535], "him but mildely": [0, 65535], "but mildely when": [0, 65535], "mildely when he": [0, 65535], "when he demean'd": [0, 65535], "he demean'd himselfe": [0, 65535], "demean'd himselfe rough": [0, 65535], "himselfe rough rude": [0, 65535], "rough rude and": [0, 65535], "rude and wildly": [0, 65535], "and wildly why": [0, 65535], "wildly why beare": [0, 65535], "why beare you": [0, 65535], "beare you these": [0, 65535], "you these rebukes": [0, 65535], "these rebukes and": [0, 65535], "rebukes and answer": [0, 65535], "and answer not": [0, 65535], "answer not adri": [0, 65535], "not adri she": [0, 65535], "adri she did": [0, 65535], "she did betray": [0, 65535], "did betray me": [0, 65535], "betray me to": [0, 65535], "me to my": [0, 65535], "to my owne": [0, 65535], "my owne reproofe": [0, 65535], "owne reproofe good": [0, 65535], "reproofe good people": [0, 65535], "good people enter": [0, 65535], "people enter and": [0, 65535], "enter and lay": [0, 65535], "and lay hold": [0, 65535], "lay hold on": [0, 65535], "hold on him": [0, 65535], "him ab no": [0, 65535], "ab no not": [0, 65535], "no not a": [0, 65535], "not a creature": [0, 65535], "a creature enters": [0, 65535], "creature enters in": [0, 65535], "enters in my": [0, 65535], "in my house": [0, 65535], "my house ad": [0, 65535], "house ad then": [0, 65535], "ad then let": [0, 65535], "let your seruants": [0, 65535], "your seruants bring": [0, 65535], "seruants bring my": [0, 65535], "bring my husband": [0, 65535], "my husband forth": [0, 65535], "husband forth ab": [0, 65535], "forth ab neither": [0, 65535], "ab neither he": [0, 65535], "neither he tooke": [0, 65535], "he tooke this": [0, 65535], "tooke this place": [0, 65535], "this place for": [0, 65535], "place for sanctuary": [0, 65535], "for sanctuary and": [0, 65535], "sanctuary and it": [0, 65535], "and it shall": [0, 65535], "it shall priuiledge": [0, 65535], "shall priuiledge him": [0, 65535], "priuiledge him from": [0, 65535], "him from your": [0, 65535], "from your hands": [0, 65535], "your hands till": [0, 65535], "hands till i": [0, 65535], "till i haue": [0, 65535], "i haue brought": [0, 65535], "haue brought him": [0, 65535], "brought him to": [0, 65535], "to his wits": [0, 65535], "his wits againe": [0, 65535], "wits againe or": [0, 65535], "againe or loose": [0, 65535], "or loose my": [0, 65535], "loose my labour": [0, 65535], "my labour in": [0, 65535], "labour in assaying": [0, 65535], "in assaying it": [0, 65535], "assaying it adr": [0, 65535], "it adr i": [0, 65535], "adr i will": [0, 65535], "i will attend": [0, 65535], "will attend my": [0, 65535], "attend my husband": [0, 65535], "my husband be": [0, 65535], "husband be his": [0, 65535], "be his nurse": [0, 65535], "his nurse diet": [0, 65535], "nurse diet his": [0, 65535], "diet his sicknesse": [0, 65535], "his sicknesse for": [0, 65535], "sicknesse for it": [0, 65535], "for it is": [0, 65535], "it is my": [0, 65535], "is my office": [0, 65535], "my office and": [0, 65535], "office and will": [0, 65535], "and will haue": [0, 65535], "will haue no": [0, 65535], "haue no atturney": [0, 65535], "no atturney but": [0, 65535], "atturney but my": [0, 65535], "but my selfe": [0, 65535], "my selfe and": [0, 65535], "selfe and therefore": [0, 65535], "and therefore let": [0, 65535], "therefore let me": [0, 65535], "let me haue": [0, 65535], "me haue him": [0, 65535], "haue him home": [0, 65535], "him home with": [0, 65535], "home with me": [0, 65535], "with me ab": [0, 65535], "me ab be": [0, 65535], "ab be patient": [0, 65535], "be patient for": [0, 65535], "patient for i": [0, 65535], "for i will": [0, 65535], "will not let": [0, 65535], "not let him": [0, 65535], "let him stirre": [0, 65535], "him stirre till": [0, 65535], "stirre till i": [0, 65535], "i haue vs'd": [0, 65535], "haue vs'd the": [0, 65535], "vs'd the approoued": [0, 65535], "the approoued meanes": [0, 65535], "approoued meanes i": [0, 65535], "meanes i haue": [0, 65535], "i haue with": [0, 65535], "haue with wholsome": [0, 65535], "with wholsome sirrups": [0, 65535], "wholsome sirrups drugges": [0, 65535], "sirrups drugges and": [0, 65535], "drugges and holy": [0, 65535], "and holy prayers": [0, 65535], "holy prayers to": [0, 65535], "prayers to make": [0, 65535], "to make of": [0, 65535], "make of him": [0, 65535], "of him a": [0, 65535], "him a formall": [0, 65535], "a formall man": [0, 65535], "formall man againe": [0, 65535], "man againe it": [0, 65535], "againe it is": [0, 65535], "is a branch": [0, 65535], "a branch and": [0, 65535], "branch and parcell": [0, 65535], "and parcell of": [0, 65535], "parcell of mine": [0, 65535], "of mine oath": [0, 65535], "mine oath a": [0, 65535], "oath a charitable": [0, 65535], "a charitable dutie": [0, 65535], "charitable dutie of": [0, 65535], "dutie of my": [0, 65535], "of my order": [0, 65535], "my order therefore": [0, 65535], "order therefore depart": [0, 65535], "therefore depart and": [0, 65535], "depart and leaue": [0, 65535], "and leaue him": [0, 65535], "leaue him heere": [0, 65535], "him heere with": [0, 65535], "heere with me": [0, 65535], "with me adr": [0, 65535], "me adr i": [0, 65535], "will not hence": [0, 65535], "not hence and": [0, 65535], "hence and leaue": [0, 65535], "and leaue my": [0, 65535], "leaue my husband": [0, 65535], "my husband heere": [0, 65535], "husband heere and": [0, 65535], "heere and ill": [0, 65535], "and ill it": [0, 65535], "ill it doth": [0, 65535], "it doth beseeme": [0, 65535], "doth beseeme your": [0, 65535], "beseeme your holinesse": [0, 65535], "your holinesse to": [0, 65535], "holinesse to separate": [0, 65535], "to separate the": [0, 65535], "separate the husband": [0, 65535], "the husband and": [0, 65535], "husband and the": [0, 65535], "and the wife": [0, 65535], "the wife ab": [0, 65535], "wife ab be": [0, 65535], "be quiet and": [0, 65535], "quiet and depart": [0, 65535], "and depart thou": [0, 65535], "depart thou shalt": [0, 65535], "thou shalt not": [0, 65535], "shalt not haue": [0, 65535], "not haue him": [0, 65535], "haue him luc": [0, 65535], "him luc complaine": [0, 65535], "luc complaine vnto": [0, 65535], "complaine vnto the": [0, 65535], "vnto the duke": [0, 65535], "the duke of": [0, 65535], "duke of this": [0, 65535], "of this indignity": [0, 65535], "this indignity adr": [0, 65535], "indignity adr come": [0, 65535], "adr come go": [0, 65535], "come go i": [0, 65535], "go i will": [0, 65535], "i will fall": [0, 65535], "will fall prostrate": [0, 65535], "fall prostrate at": [0, 65535], "prostrate at his": [0, 65535], "at his feete": [0, 65535], "his feete and": [0, 65535], "feete and neuer": [0, 65535], "and neuer rise": [0, 65535], "neuer rise vntill": [0, 65535], "rise vntill my": [0, 65535], "vntill my teares": [0, 65535], "my teares and": [0, 65535], "teares and prayers": [0, 65535], "and prayers haue": [0, 65535], "prayers haue won": [0, 65535], "haue won his": [0, 65535], "won his grace": [0, 65535], "his grace to": [0, 65535], "grace to come": [0, 65535], "to come in": [0, 65535], "come in person": [0, 65535], "in person hither": [0, 65535], "person hither and": [0, 65535], "hither and take": [0, 65535], "and take perforce": [0, 65535], "take perforce my": [0, 65535], "perforce my husband": [0, 65535], "my husband from": [0, 65535], "from the abbesse": [0, 65535], "the abbesse mar": [0, 65535], "abbesse mar by": [0, 65535], "mar by this": [0, 65535], "thinke the diall": [0, 65535], "the diall points": [0, 65535], "diall points at": [0, 65535], "points at fiue": [0, 65535], "at fiue anon": [0, 65535], "fiue anon i'me": [0, 65535], "anon i'me sure": [0, 65535], "i'me sure the": [0, 65535], "sure the duke": [0, 65535], "the duke himselfe": [0, 65535], "duke himselfe in": [0, 65535], "himselfe in person": [0, 65535], "in person comes": [0, 65535], "person comes this": [0, 65535], "comes this way": [0, 65535], "this way to": [0, 65535], "way to the": [0, 65535], "to the melancholly": [0, 65535], "the melancholly vale": [0, 65535], "melancholly vale the": [0, 65535], "vale the place": [0, 65535], "the place of": [0, 65535], "place of depth": [0, 65535], "of depth and": [0, 65535], "depth and sorrie": [0, 65535], "and sorrie execution": [0, 65535], "sorrie execution behinde": [0, 65535], "execution behinde the": [0, 65535], "behinde the ditches": [0, 65535], "the ditches of": [0, 65535], "ditches of the": [0, 65535], "of the abbey": [0, 65535], "the abbey heere": [0, 65535], "abbey heere gold": [0, 65535], "heere gold vpon": [0, 65535], "gold vpon what": [0, 65535], "vpon what cause": [0, 65535], "what cause mar": [0, 65535], "cause mar to": [0, 65535], "mar to see": [0, 65535], "see a reuerent": [0, 65535], "a reuerent siracusian": [0, 65535], "reuerent siracusian merchant": [0, 65535], "siracusian merchant who": [0, 65535], "merchant who put": [0, 65535], "who put vnluckily": [0, 65535], "put vnluckily into": [0, 65535], "vnluckily into this": [0, 65535], "into this bay": [0, 65535], "this bay against": [0, 65535], "bay against the": [0, 65535], "against the lawes": [0, 65535], "the lawes and": [0, 65535], "lawes and statutes": [0, 65535], "and statutes of": [0, 65535], "statutes of this": [0, 65535], "of this towne": [0, 65535], "this towne beheaded": [0, 65535], "towne beheaded publikely": [0, 65535], "beheaded publikely for": [0, 65535], "publikely for his": [0, 65535], "for his offence": [0, 65535], "his offence gold": [0, 65535], "offence gold see": [0, 65535], "gold see where": [0, 65535], "see where they": [0, 65535], "where they come": [0, 65535], "they come we": [0, 65535], "come we wil": [0, 65535], "we wil behold": [0, 65535], "wil behold his": [0, 65535], "behold his death": [0, 65535], "his death luc": [0, 65535], "death luc kneele": [0, 65535], "luc kneele to": [0, 65535], "kneele to the": [0, 65535], "to the duke": [0, 65535], "the duke before": [0, 65535], "duke before he": [0, 65535], "before he passe": [0, 65535], "he passe the": [0, 65535], "passe the abbey": [0, 65535], "the abbey enter": [0, 65535], "abbey enter the": [0, 65535], "enter the duke": [0, 65535], "duke of ephesus": [0, 65535], "of ephesus and": [0, 65535], "ephesus and the": [0, 65535], "and the merchant": [0, 65535], "the merchant of": [0, 65535], "merchant of siracuse": [0, 65535], "of siracuse bare": [0, 65535], "siracuse bare head": [0, 65535], "bare head with": [0, 65535], "head with the": [0, 65535], "with the headsman": [0, 65535], "the headsman other": [0, 65535], "headsman other officers": [0, 65535], "other officers duke": [0, 65535], "officers duke yet": [0, 65535], "duke yet once": [0, 65535], "yet once againe": [0, 65535], "once againe proclaime": [0, 65535], "againe proclaime it": [0, 65535], "proclaime it publikely": [0, 65535], "it publikely if": [0, 65535], "publikely if any": [0, 65535], "if any friend": [0, 65535], "any friend will": [0, 65535], "friend will pay": [0, 65535], "will pay the": [0, 65535], "pay the summe": [0, 65535], "the summe for": [0, 65535], "summe for him": [0, 65535], "him he shall": [0, 65535], "he shall not": [0, 65535], "shall not die": [0, 65535], "not die so": [0, 65535], "die so much": [0, 65535], "so much we": [0, 65535], "much we tender": [0, 65535], "we tender him": [0, 65535], "tender him adr": [0, 65535], "him adr iustice": [0, 65535], "adr iustice most": [0, 65535], "iustice most sacred": [0, 65535], "most sacred duke": [0, 65535], "sacred duke against": [0, 65535], "duke against the": [0, 65535], "against the abbesse": [0, 65535], "the abbesse duke": [0, 65535], "abbesse duke she": [0, 65535], "duke she is": [0, 65535], "she is a": [0, 65535], "is a vertuous": [0, 65535], "a vertuous and": [0, 65535], "vertuous and a": [0, 65535], "and a reuerend": [0, 65535], "a reuerend lady": [0, 65535], "reuerend lady it": [0, 65535], "lady it cannot": [0, 65535], "it cannot be": [0, 65535], "cannot be that": [0, 65535], "be that she": [0, 65535], "that she hath": [0, 65535], "she hath done": [0, 65535], "hath done thee": [0, 65535], "done thee wrong": [0, 65535], "thee wrong adr": [0, 65535], "wrong adr may": [0, 65535], "adr may it": [0, 65535], "may it please": [0, 65535], "it please your": [0, 65535], "please your grace": [0, 65535], "your grace antipholus": [0, 65535], "grace antipholus my": [0, 65535], "antipholus my husba": [0, 65535], "my husba n": [0, 65535], "husba n d": [0, 65535], "n d who": [0, 65535], "d who i": [0, 65535], "who i made": [0, 65535], "i made lord": [0, 65535], "made lord of": [0, 65535], "lord of me": [0, 65535], "of me and": [0, 65535], "me and all": [0, 65535], "and all i": [0, 65535], "all i had": [0, 65535], "i had at": [0, 65535], "had at your": [0, 65535], "at your important": [0, 65535], "your important letters": [0, 65535], "important letters this": [0, 65535], "letters this ill": [0, 65535], "this ill day": [0, 65535], "ill day a": [0, 65535], "day a most": [0, 65535], "a most outragious": [0, 65535], "most outragious fit": [0, 65535], "outragious fit of": [0, 65535], "of madnesse tooke": [0, 65535], "madnesse tooke him": [0, 65535], "tooke him that": [0, 65535], "him that desp'rately": [0, 65535], "that desp'rately he": [0, 65535], "desp'rately he hurried": [0, 65535], "he hurried through": [0, 65535], "hurried through the": [0, 65535], "through the streete": [0, 65535], "the streete with": [0, 65535], "streete with him": [0, 65535], "with him his": [0, 65535], "him his bondman": [0, 65535], "his bondman all": [0, 65535], "bondman all as": [0, 65535], "all as mad": [0, 65535], "as mad as": [0, 65535], "mad as he": [0, 65535], "as he doing": [0, 65535], "he doing displeasure": [0, 65535], "doing displeasure to": [0, 65535], "displeasure to the": [0, 65535], "to the citizens": [0, 65535], "the citizens by": [0, 65535], "citizens by rushing": [0, 65535], "by rushing in": [0, 65535], "rushing in their": [0, 65535], "in their houses": [0, 65535], "their houses bearing": [0, 65535], "houses bearing thence": [0, 65535], "bearing thence rings": [0, 65535], "thence rings iewels": [0, 65535], "rings iewels any": [0, 65535], "iewels any thing": [0, 65535], "any thing his": [0, 65535], "thing his rage": [0, 65535], "his rage did": [0, 65535], "rage did like": [0, 65535], "did like once": [0, 65535], "like once did": [0, 65535], "once did i": [0, 65535], "did i get": [0, 65535], "i get him": [0, 65535], "get him bound": [0, 65535], "him bound and": [0, 65535], "bound and sent": [0, 65535], "and sent him": [0, 65535], "sent him home": [0, 65535], "him home whil'st": [0, 65535], "home whil'st to": [0, 65535], "whil'st to take": [0, 65535], "to take order": [0, 65535], "take order for": [0, 65535], "order for the": [0, 65535], "for the wrongs": [0, 65535], "wrongs i went": [0, 65535], "i went that": [0, 65535], "went that heere": [0, 65535], "that heere and": [0, 65535], "heere and there": [0, 65535], "and there his": [0, 65535], "there his furie": [0, 65535], "his furie had": [0, 65535], "furie had committed": [0, 65535], "had committed anon": [0, 65535], "committed anon i": [0, 65535], "anon i wot": [0, 65535], "i wot not": [0, 65535], "wot not by": [0, 65535], "not by what": [0, 65535], "by what strong": [0, 65535], "what strong escape": [0, 65535], "strong escape he": [0, 65535], "escape he broke": [0, 65535], "he broke from": [0, 65535], "broke from those": [0, 65535], "from those that": [0, 65535], "those that had": [0, 65535], "that had the": [0, 65535], "had the guard": [0, 65535], "the guard of": [0, 65535], "guard of him": [0, 65535], "him and with": [0, 65535], "and with his": [0, 65535], "with his mad": [0, 65535], "his mad attendant": [0, 65535], "mad attendant and": [0, 65535], "attendant and himselfe": [0, 65535], "and himselfe each": [0, 65535], "himselfe each one": [0, 65535], "each one with": [0, 65535], "one with irefull": [0, 65535], "with irefull passion": [0, 65535], "irefull passion with": [0, 65535], "passion with drawne": [0, 65535], "with drawne swords": [0, 65535], "drawne swords met": [0, 65535], "swords met vs": [0, 65535], "met vs againe": [0, 65535], "vs againe and": [0, 65535], "againe and madly": [0, 65535], "and madly bent": [0, 65535], "madly bent on": [0, 65535], "bent on vs": [0, 65535], "on vs chac'd": [0, 65535], "vs chac'd vs": [0, 65535], "chac'd vs away": [0, 65535], "vs away till": [0, 65535], "away till raising": [0, 65535], "till raising of": [0, 65535], "raising of more": [0, 65535], "of more aide": [0, 65535], "more aide we": [0, 65535], "aide we came": [0, 65535], "we came againe": [0, 65535], "came againe to": [0, 65535], "againe to binde": [0, 65535], "to binde them": [0, 65535], "binde them then": [0, 65535], "them then they": [0, 65535], "then they fled": [0, 65535], "they fled into": [0, 65535], "fled into this": [0, 65535], "into this abbey": [0, 65535], "this abbey whether": [0, 65535], "abbey whether we": [0, 65535], "whether we pursu'd": [0, 65535], "we pursu'd them": [0, 65535], "pursu'd them and": [0, 65535], "them and heere": [0, 65535], "and heere the": [0, 65535], "heere the abbesse": [0, 65535], "the abbesse shuts": [0, 65535], "abbesse shuts the": [0, 65535], "shuts the gates": [0, 65535], "the gates on": [0, 65535], "gates on vs": [0, 65535], "on vs and": [0, 65535], "vs and will": [0, 65535], "and will not": [0, 65535], "will not suffer": [0, 65535], "not suffer vs": [0, 65535], "suffer vs to": [0, 65535], "vs to fetch": [0, 65535], "to fetch him": [0, 65535], "fetch him out": [0, 65535], "him out nor": [0, 65535], "out nor send": [0, 65535], "nor send him": [0, 65535], "send him forth": [0, 65535], "him forth that": [0, 65535], "forth that we": [0, 65535], "we may beare": [0, 65535], "may beare him": [0, 65535], "beare him hence": [0, 65535], "him hence therefore": [0, 65535], "hence therefore most": [0, 65535], "therefore most gracious": [0, 65535], "most gracious duke": [0, 65535], "gracious duke with": [0, 65535], "duke with thy": [0, 65535], "with thy command": [0, 65535], "thy command let": [0, 65535], "command let him": [0, 65535], "let him be": [0, 65535], "him be brought": [0, 65535], "be brought forth": [0, 65535], "brought forth and": [0, 65535], "forth and borne": [0, 65535], "and borne hence": [0, 65535], "borne hence for": [0, 65535], "hence for helpe": [0, 65535], "for helpe duke": [0, 65535], "helpe duke long": [0, 65535], "duke long since": [0, 65535], "long since thy": [0, 65535], "since thy husband": [0, 65535], "thy husband seru'd": [0, 65535], "husband seru'd me": [0, 65535], "seru'd me in": [0, 65535], "in my wars": [0, 65535], "my wars and": [0, 65535], "wars and i": [0, 65535], "and i to": [0, 65535], "i to thee": [0, 65535], "to thee ingag'd": [0, 65535], "thee ingag'd a": [0, 65535], "ingag'd a princes": [0, 65535], "a princes word": [0, 65535], "princes word when": [0, 65535], "word when thou": [0, 65535], "when thou didst": [0, 65535], "thou didst make": [0, 65535], "didst make him": [0, 65535], "make him master": [0, 65535], "him master of": [0, 65535], "master of thy": [0, 65535], "of thy bed": [0, 65535], "thy bed to": [0, 65535], "bed to do": [0, 65535], "to do him": [0, 65535], "do him all": [0, 65535], "him all the": [0, 65535], "all the grace": [0, 65535], "the grace and": [0, 65535], "grace and good": [0, 65535], "and good i": [0, 65535], "good i could": [0, 65535], "i could go": [0, 65535], "could go some": [0, 65535], "go some of": [0, 65535], "some of you": [0, 65535], "of you knocke": [0, 65535], "you knocke at": [0, 65535], "knocke at the": [0, 65535], "at the abbey": [0, 65535], "the abbey gate": [0, 65535], "abbey gate and": [0, 65535], "gate and bid": [0, 65535], "and bid the": [0, 65535], "bid the lady": [0, 65535], "the lady abbesse": [0, 65535], "lady abbesse come": [0, 65535], "abbesse come to": [0, 65535], "come to me": [0, 65535], "me i will": [0, 65535], "i will determine": [0, 65535], "will determine this": [0, 65535], "determine this before": [0, 65535], "this before i": [0, 65535], "before i stirre": [0, 65535], "i stirre enter": [0, 65535], "stirre enter a": [0, 65535], "enter a messenger": [0, 65535], "a messenger oh": [0, 65535], "messenger oh mistris": [0, 65535], "oh mistris mistris": [0, 65535], "mistris mistris shift": [0, 65535], "mistris shift and": [0, 65535], "shift and saue": [0, 65535], "and saue your": [0, 65535], "saue your selfe": [0, 65535], "your selfe my": [0, 65535], "selfe my master": [0, 65535], "my master and": [0, 65535], "master and his": [0, 65535], "and his man": [0, 65535], "his man are": [0, 65535], "man are both": [0, 65535], "are both broke": [0, 65535], "both broke loose": [0, 65535], "broke loose beaten": [0, 65535], "loose beaten the": [0, 65535], "beaten the maids": [0, 65535], "the maids a": [0, 65535], "maids a row": [0, 65535], "a row and": [0, 65535], "row and bound": [0, 65535], "and bound the": [0, 65535], "bound the doctor": [0, 65535], "the doctor whose": [0, 65535], "doctor whose beard": [0, 65535], "whose beard they": [0, 65535], "beard they haue": [0, 65535], "they haue sindg'd": [0, 65535], "haue sindg'd off": [0, 65535], "sindg'd off with": [0, 65535], "off with brands": [0, 65535], "with brands of": [0, 65535], "brands of fire": [0, 65535], "fire and euer": [0, 65535], "and euer as": [0, 65535], "euer as it": [0, 65535], "as it blaz'd": [0, 65535], "it blaz'd they": [0, 65535], "blaz'd they threw": [0, 65535], "they threw on": [0, 65535], "threw on him": [0, 65535], "on him great": [0, 65535], "him great pailes": [0, 65535], "great pailes of": [0, 65535], "pailes of puddled": [0, 65535], "of puddled myre": [0, 65535], "puddled myre to": [0, 65535], "myre to quench": [0, 65535], "to quench the": [0, 65535], "quench the haire": [0, 65535], "the haire my": [0, 65535], "haire my mr": [0, 65535], "my mr preaches": [0, 65535], "mr preaches patience": [0, 65535], "preaches patience to": [0, 65535], "patience to him": [0, 65535], "and the while": [0, 65535], "the while his": [0, 65535], "while his man": [0, 65535], "his man with": [0, 65535], "man with cizers": [0, 65535], "with cizers nickes": [0, 65535], "cizers nickes him": [0, 65535], "nickes him like": [0, 65535], "him like a": [0, 65535], "like a foole": [0, 65535], "a foole and": [0, 65535], "foole and sure": [0, 65535], "and sure vnlesse": [0, 65535], "sure vnlesse you": [0, 65535], "vnlesse you send": [0, 65535], "you send some": [0, 65535], "send some present": [0, 65535], "some present helpe": [0, 65535], "present helpe betweene": [0, 65535], "helpe betweene them": [0, 65535], "betweene them they": [0, 65535], "them they will": [0, 65535], "they will kill": [0, 65535], "will kill the": [0, 65535], "kill the coniurer": [0, 65535], "the coniurer adr": [0, 65535], "coniurer adr peace": [0, 65535], "adr peace foole": [0, 65535], "peace foole thy": [0, 65535], "foole thy master": [0, 65535], "thy master and": [0, 65535], "man are here": [0, 65535], "are here and": [0, 65535], "here and that": [0, 65535], "and that is": [0, 65535], "that is false": [0, 65535], "is false thou": [0, 65535], "false thou dost": [0, 65535], "thou dost report": [0, 65535], "dost report to": [0, 65535], "report to vs": [0, 65535], "to vs mess": [0, 65535], "vs mess mistris": [0, 65535], "mess mistris vpon": [0, 65535], "mistris vpon my": [0, 65535], "vpon my life": [0, 65535], "my life i": [0, 65535], "life i tel": [0, 65535], "i tel you": [0, 65535], "tel you true": [0, 65535], "you true i": [0, 65535], "true i haue": [0, 65535], "haue not breath'd": [0, 65535], "not breath'd almost": [0, 65535], "breath'd almost since": [0, 65535], "almost since i": [0, 65535], "since i did": [0, 65535], "i did see": [0, 65535], "did see it": [0, 65535], "see it he": [0, 65535], "it he cries": [0, 65535], "he cries for": [0, 65535], "cries for you": [0, 65535], "for you and": [0, 65535], "you and vowes": [0, 65535], "and vowes if": [0, 65535], "vowes if he": [0, 65535], "he can take": [0, 65535], "can take you": [0, 65535], "take you to": [0, 65535], "you to scorch": [0, 65535], "to scorch your": [0, 65535], "scorch your face": [0, 65535], "your face and": [0, 65535], "face and to": [0, 65535], "and to disfigure": [0, 65535], "to disfigure you": [0, 65535], "disfigure you cry": [0, 65535], "you cry within": [0, 65535], "cry within harke": [0, 65535], "within harke harke": [0, 65535], "harke harke i": [0, 65535], "harke i heare": [0, 65535], "i heare him": [0, 65535], "heare him mistris": [0, 65535], "him mistris flie": [0, 65535], "mistris flie be": [0, 65535], "flie be gone": [0, 65535], "be gone duke": [0, 65535], "gone duke come": [0, 65535], "duke come stand": [0, 65535], "come stand by": [0, 65535], "stand by me": [0, 65535], "by me feare": [0, 65535], "me feare nothing": [0, 65535], "feare nothing guard": [0, 65535], "nothing guard with": [0, 65535], "guard with halberds": [0, 65535], "with halberds adr": [0, 65535], "halberds adr ay": [0, 65535], "adr ay me": [0, 65535], "ay me it": [0, 65535], "is my husband": [0, 65535], "my husband witnesse": [0, 65535], "husband witnesse you": [0, 65535], "witnesse you that": [0, 65535], "you that he": [0, 65535], "that he is": [0, 65535], "he is borne": [0, 65535], "is borne about": [0, 65535], "borne about inuisible": [0, 65535], "about inuisible euen": [0, 65535], "inuisible euen now": [0, 65535], "euen now we": [0, 65535], "now we hous'd": [0, 65535], "we hous'd him": [0, 65535], "hous'd him in": [0, 65535], "him in the": [0, 65535], "in the abbey": [0, 65535], "abbey heere and": [0, 65535], "heere and now": [0, 65535], "and now he's": [0, 65535], "now he's there": [0, 65535], "he's there past": [0, 65535], "there past thought": [0, 65535], "past thought of": [0, 65535], "thought of humane": [0, 65535], "of humane reason": [0, 65535], "humane reason enter": [0, 65535], "reason enter antipholus": [0, 65535], "antipholus and e": [0, 65535], "and e dromio": [0, 65535], "e dromio of": [0, 65535], "dromio of ephesus": [0, 65535], "of ephesus e": [0, 65535], "ephesus e ant": [0, 65535], "e ant iustice": [0, 65535], "ant iustice most": [0, 65535], "iustice most gracious": [0, 65535], "gracious duke oh": [0, 65535], "duke oh grant": [0, 65535], "oh grant me": [0, 65535], "grant me iustice": [0, 65535], "me iustice euen": [0, 65535], "iustice euen for": [0, 65535], "euen for the": [0, 65535], "for the seruice": [0, 65535], "the seruice that": [0, 65535], "seruice that long": [0, 65535], "that long since": [0, 65535], "long since i": [0, 65535], "i did thee": [0, 65535], "did thee when": [0, 65535], "thee when i": [0, 65535], "when i bestrid": [0, 65535], "i bestrid thee": [0, 65535], "bestrid thee in": [0, 65535], "thee in the": [0, 65535], "in the warres": [0, 65535], "the warres and": [0, 65535], "warres and tooke": [0, 65535], "and tooke deepe": [0, 65535], "tooke deepe scarres": [0, 65535], "deepe scarres to": [0, 65535], "scarres to saue": [0, 65535], "to saue thy": [0, 65535], "saue thy life": [0, 65535], "thy life euen": [0, 65535], "life euen for": [0, 65535], "for the blood": [0, 65535], "the blood that": [0, 65535], "blood that then": [0, 65535], "that then i": [0, 65535], "then i lost": [0, 65535], "i lost for": [0, 65535], "lost for thee": [0, 65535], "for thee now": [0, 65535], "thee now grant": [0, 65535], "now grant me": [0, 65535], "me iustice mar": [0, 65535], "iustice mar fat": [0, 65535], "mar fat vnlesse": [0, 65535], "fat vnlesse the": [0, 65535], "vnlesse the feare": [0, 65535], "the feare of": [0, 65535], "feare of death": [0, 65535], "of death doth": [0, 65535], "death doth make": [0, 65535], "doth make me": [0, 65535], "make me dote": [0, 65535], "me dote i": [0, 65535], "dote i see": [0, 65535], "i see my": [0, 65535], "see my sonne": [0, 65535], "my sonne antipholus": [0, 65535], "sonne antipholus and": [0, 65535], "and dromio e": [0, 65535], "dromio e ant": [0, 65535], "ant iustice sweet": [0, 65535], "iustice sweet prince": [0, 65535], "sweet prince against": [0, 65535], "prince against that": [0, 65535], "against that woman": [0, 65535], "that woman there": [0, 65535], "woman there she": [0, 65535], "there she whom": [0, 65535], "she whom thou": [0, 65535], "whom thou gau'st": [0, 65535], "thou gau'st to": [0, 65535], "gau'st to me": [0, 65535], "to me to": [0, 65535], "to be my": [0, 65535], "my wife that": [0, 65535], "wife that hath": [0, 65535], "that hath abused": [0, 65535], "hath abused and": [0, 65535], "abused and dishonored": [0, 65535], "and dishonored me": [0, 65535], "dishonored me euen": [0, 65535], "me euen in": [0, 65535], "in the strength": [0, 65535], "the strength and": [0, 65535], "strength and height": [0, 65535], "and height of": [0, 65535], "height of iniurie": [0, 65535], "of iniurie beyond": [0, 65535], "iniurie beyond imagination": [0, 65535], "beyond imagination is": [0, 65535], "imagination is the": [0, 65535], "is the wrong": [0, 65535], "the wrong that": [0, 65535], "wrong that she": [0, 65535], "that she this": [0, 65535], "she this day": [0, 65535], "this day hath": [0, 65535], "day hath shamelesse": [0, 65535], "hath shamelesse throwne": [0, 65535], "shamelesse throwne on": [0, 65535], "throwne on me": [0, 65535], "on me duke": [0, 65535], "me duke discouer": [0, 65535], "duke discouer how": [0, 65535], "discouer how and": [0, 65535], "how and thou": [0, 65535], "and thou shalt": [0, 65535], "thou shalt finde": [0, 65535], "shalt finde me": [0, 65535], "finde me iust": [0, 65535], "me iust e": [0, 65535], "iust e ant": [0, 65535], "e ant this": [0, 65535], "ant this day": [0, 65535], "this day great": [0, 65535], "day great duke": [0, 65535], "great duke she": [0, 65535], "duke she shut": [0, 65535], "she shut the": [0, 65535], "shut the doores": [0, 65535], "the doores vpon": [0, 65535], "doores vpon me": [0, 65535], "vpon me while": [0, 65535], "me while she": [0, 65535], "while she with": [0, 65535], "she with harlots": [0, 65535], "with harlots feasted": [0, 65535], "harlots feasted in": [0, 65535], "feasted in my": [0, 65535], "my house duke": [0, 65535], "house duke a": [0, 65535], "duke a greeuous": [0, 65535], "a greeuous fault": [0, 65535], "greeuous fault say": [0, 65535], "fault say woman": [0, 65535], "say woman didst": [0, 65535], "woman didst thou": [0, 65535], "didst thou so": [0, 65535], "thou so adr": [0, 65535], "so adr no": [0, 65535], "adr no my": [0, 65535], "no my good": [0, 65535], "my good lord": [0, 65535], "good lord my": [0, 65535], "lord my selfe": [0, 65535], "my selfe he": [0, 65535], "selfe he and": [0, 65535], "he and my": [0, 65535], "and my sister": [0, 65535], "sister to day": [0, 65535], "to day did": [0, 65535], "day did dine": [0, 65535], "did dine together": [0, 65535], "dine together so": [0, 65535], "together so befall": [0, 65535], "so befall my": [0, 65535], "befall my soule": [0, 65535], "my soule as": [0, 65535], "soule as this": [0, 65535], "as this is": [0, 65535], "this is false": [0, 65535], "is false he": [0, 65535], "false he burthens": [0, 65535], "he burthens me": [0, 65535], "burthens me withall": [0, 65535], "me withall luc": [0, 65535], "withall luc nere": [0, 65535], "luc nere may": [0, 65535], "nere may i": [0, 65535], "may i looke": [0, 65535], "i looke on": [0, 65535], "looke on day": [0, 65535], "on day nor": [0, 65535], "day nor sleepe": [0, 65535], "nor sleepe on": [0, 65535], "sleepe on night": [0, 65535], "on night but": [0, 65535], "night but she": [0, 65535], "but she tels": [0, 65535], "she tels to": [0, 65535], "tels to your": [0, 65535], "to your highnesse": [0, 65535], "your highnesse simple": [0, 65535], "highnesse simple truth": [0, 65535], "simple truth gold": [0, 65535], "truth gold o": [0, 65535], "gold o periur'd": [0, 65535], "o periur'd woman": [0, 65535], "periur'd woman they": [0, 65535], "woman they are": [0, 65535], "they are both": [0, 65535], "are both forsworne": [0, 65535], "both forsworne in": [0, 65535], "forsworne in this": [0, 65535], "in this the": [0, 65535], "this the madman": [0, 65535], "the madman iustly": [0, 65535], "madman iustly chargeth": [0, 65535], "iustly chargeth them": [0, 65535], "chargeth them e": [0, 65535], "them e ant": [0, 65535], "e ant my": [0, 65535], "ant my liege": [0, 65535], "my liege i": [0, 65535], "liege i am": [0, 65535], "i am aduised": [0, 65535], "am aduised what": [0, 65535], "aduised what i": [0, 65535], "what i say": [0, 65535], "i say neither": [0, 65535], "say neither disturbed": [0, 65535], "neither disturbed with": [0, 65535], "disturbed with the": [0, 65535], "with the effect": [0, 65535], "the effect of": [0, 65535], "effect of wine": [0, 65535], "of wine nor": [0, 65535], "wine nor headie": [0, 65535], "nor headie rash": [0, 65535], "headie rash prouoak'd": [0, 65535], "rash prouoak'd with": [0, 65535], "prouoak'd with raging": [0, 65535], "with raging ire": [0, 65535], "raging ire albeit": [0, 65535], "ire albeit my": [0, 65535], "albeit my wrongs": [0, 65535], "my wrongs might": [0, 65535], "wrongs might make": [0, 65535], "might make one": [0, 65535], "make one wiser": [0, 65535], "one wiser mad": [0, 65535], "wiser mad this": [0, 65535], "mad this woman": [0, 65535], "this woman lock'd": [0, 65535], "woman lock'd me": [0, 65535], "lock'd me out": [0, 65535], "me out this": [0, 65535], "out this day": [0, 65535], "this day from": [0, 65535], "day from dinner": [0, 65535], "from dinner that": [0, 65535], "dinner that goldsmith": [0, 65535], "that goldsmith there": [0, 65535], "goldsmith there were": [0, 65535], "there were he": [0, 65535], "were he not": [0, 65535], "he not pack'd": [0, 65535], "not pack'd with": [0, 65535], "pack'd with her": [0, 65535], "with her could": [0, 65535], "her could witnesse": [0, 65535], "could witnesse it": [0, 65535], "witnesse it for": [0, 65535], "it for he": [0, 65535], "he was with": [0, 65535], "was with me": [0, 65535], "with me then": [0, 65535], "me then who": [0, 65535], "then who parted": [0, 65535], "who parted with": [0, 65535], "parted with me": [0, 65535], "with me to": [0, 65535], "me to go": [0, 65535], "to go fetch": [0, 65535], "go fetch a": [0, 65535], "fetch a chaine": [0, 65535], "a chaine promising": [0, 65535], "chaine promising to": [0, 65535], "promising to bring": [0, 65535], "to bring it": [0, 65535], "bring it to": [0, 65535], "it to the": [0, 65535], "the porpentine where": [0, 65535], "porpentine where balthasar": [0, 65535], "where balthasar and": [0, 65535], "balthasar and i": [0, 65535], "and i did": [0, 65535], "i did dine": [0, 65535], "dine together our": [0, 65535], "together our dinner": [0, 65535], "our dinner done": [0, 65535], "dinner done and": [0, 65535], "done and he": [0, 65535], "and he not": [0, 65535], "he not comming": [0, 65535], "not comming thither": [0, 65535], "comming thither i": [0, 65535], "thither i went": [0, 65535], "i went to": [0, 65535], "went to seeke": [0, 65535], "to seeke him": [0, 65535], "seeke him in": [0, 65535], "the street i": [0, 65535], "street i met": [0, 65535], "i met him": [0, 65535], "met him and": [0, 65535], "him and in": [0, 65535], "in his companie": [0, 65535], "his companie that": [0, 65535], "companie that gentleman": [0, 65535], "that gentleman there": [0, 65535], "gentleman there did": [0, 65535], "there did this": [0, 65535], "did this periur'd": [0, 65535], "this periur'd goldsmith": [0, 65535], "periur'd goldsmith sweare": [0, 65535], "goldsmith sweare me": [0, 65535], "sweare me downe": [0, 65535], "me downe that": [0, 65535], "downe that i": [0, 65535], "that i this": [0, 65535], "i this day": [0, 65535], "this day of": [0, 65535], "day of him": [0, 65535], "of him receiu'd": [0, 65535], "him receiu'd the": [0, 65535], "receiu'd the chaine": [0, 65535], "the chaine which": [0, 65535], "chaine which god": [0, 65535], "which god he": [0, 65535], "god he knowes": [0, 65535], "he knowes i": [0, 65535], "knowes i saw": [0, 65535], "i saw not": [0, 65535], "saw not for": [0, 65535], "not for the": [0, 65535], "for the which": [0, 65535], "the which he": [0, 65535], "he did arrest": [0, 65535], "did arrest me": [0, 65535], "arrest me with": [0, 65535], "me with an": [0, 65535], "with an officer": [0, 65535], "an officer i": [0, 65535], "officer i did": [0, 65535], "i did obey": [0, 65535], "did obey and": [0, 65535], "obey and sent": [0, 65535], "and sent my": [0, 65535], "sent my pesant": [0, 65535], "my pesant home": [0, 65535], "pesant home for": [0, 65535], "home for certaine": [0, 65535], "for certaine duckets": [0, 65535], "certaine duckets he": [0, 65535], "duckets he with": [0, 65535], "he with none": [0, 65535], "with none return'd": [0, 65535], "none return'd then": [0, 65535], "return'd then fairely": [0, 65535], "then fairely i": [0, 65535], "fairely i bespoke": [0, 65535], "i bespoke the": [0, 65535], "bespoke the officer": [0, 65535], "the officer to": [0, 65535], "officer to go": [0, 65535], "go in person": [0, 65535], "in person with": [0, 65535], "person with me": [0, 65535], "my house by'th'": [0, 65535], "house by'th' way": [0, 65535], "by'th' way we": [0, 65535], "way we met": [0, 65535], "we met my": [0, 65535], "met my wife": [0, 65535], "my wife her": [0, 65535], "wife her sister": [0, 65535], "her sister and": [0, 65535], "sister and a": [0, 65535], "and a rabble": [0, 65535], "a rabble more": [0, 65535], "rabble more of": [0, 65535], "more of vilde": [0, 65535], "of vilde confederates": [0, 65535], "vilde confederates along": [0, 65535], "confederates along with": [0, 65535], "along with them": [0, 65535], "with them they": [0, 65535], "them they brought": [0, 65535], "they brought one": [0, 65535], "brought one pinch": [0, 65535], "one pinch a": [0, 65535], "pinch a hungry": [0, 65535], "a hungry leane": [0, 65535], "hungry leane fac'd": [0, 65535], "leane fac'd villaine": [0, 65535], "fac'd villaine a": [0, 65535], "villaine a meere": [0, 65535], "a meere anatomie": [0, 65535], "meere anatomie a": [0, 65535], "anatomie a mountebanke": [0, 65535], "a mountebanke a": [0, 65535], "mountebanke a thred": [0, 65535], "a thred bare": [0, 65535], "thred bare iugler": [0, 65535], "bare iugler and": [0, 65535], "iugler and a": [0, 65535], "and a fortune": [0, 65535], "a fortune teller": [0, 65535], "fortune teller a": [0, 65535], "teller a needy": [0, 65535], "a needy hollow": [0, 65535], "needy hollow ey'd": [0, 65535], "hollow ey'd sharpe": [0, 65535], "ey'd sharpe looking": [0, 65535], "sharpe looking wretch": [0, 65535], "looking wretch a": [0, 65535], "wretch a liuing": [0, 65535], "a liuing dead": [0, 65535], "liuing dead man": [0, 65535], "dead man this": [0, 65535], "man this pernicious": [0, 65535], "this pernicious slaue": [0, 65535], "pernicious slaue forsooth": [0, 65535], "slaue forsooth tooke": [0, 65535], "forsooth tooke on": [0, 65535], "tooke on him": [0, 65535], "on him as": [0, 65535], "him as a": [0, 65535], "as a coniurer": [0, 65535], "a coniurer and": [0, 65535], "coniurer and gazing": [0, 65535], "and gazing in": [0, 65535], "gazing in mine": [0, 65535], "in mine eyes": [0, 65535], "mine eyes feeling": [0, 65535], "eyes feeling my": [0, 65535], "feeling my pulse": [0, 65535], "my pulse and": [0, 65535], "pulse and with": [0, 65535], "and with no": [0, 65535], "with no face": [0, 65535], "no face as": [0, 65535], "face as 'twere": [0, 65535], "as 'twere out": [0, 65535], "'twere out facing": [0, 65535], "out facing me": [0, 65535], "facing me cries": [0, 65535], "me cries out": [0, 65535], "cries out i": [0, 65535], "out i was": [0, 65535], "i was possest": [0, 65535], "was possest then": [0, 65535], "possest then altogether": [0, 65535], "then altogether they": [0, 65535], "altogether they fell": [0, 65535], "they fell vpon": [0, 65535], "fell vpon me": [0, 65535], "vpon me bound": [0, 65535], "me bound me": [0, 65535], "bound me bore": [0, 65535], "me bore me": [0, 65535], "bore me thence": [0, 65535], "me thence and": [0, 65535], "thence and in": [0, 65535], "and in a": [0, 65535], "in a darke": [0, 65535], "a darke and": [0, 65535], "darke and dankish": [0, 65535], "and dankish vault": [0, 65535], "dankish vault at": [0, 65535], "vault at home": [0, 65535], "at home there": [0, 65535], "home there left": [0, 65535], "there left me": [0, 65535], "left me and": [0, 65535], "me and my": [0, 65535], "and my man": [0, 65535], "my man both": [0, 65535], "man both bound": [0, 65535], "both bound together": [0, 65535], "bound together till": [0, 65535], "together till gnawing": [0, 65535], "till gnawing with": [0, 65535], "gnawing with my": [0, 65535], "with my teeth": [0, 65535], "my teeth my": [0, 65535], "teeth my bonds": [0, 65535], "my bonds in": [0, 65535], "bonds in sunder": [0, 65535], "in sunder i": [0, 65535], "sunder i gain'd": [0, 65535], "i gain'd my": [0, 65535], "gain'd my freedome": [0, 65535], "my freedome and": [0, 65535], "freedome and immediately": [0, 65535], "and immediately ran": [0, 65535], "immediately ran hether": [0, 65535], "ran hether to": [0, 65535], "hether to your": [0, 65535], "to your grace": [0, 65535], "your grace whom": [0, 65535], "grace whom i": [0, 65535], "whom i beseech": [0, 65535], "i beseech to": [0, 65535], "beseech to giue": [0, 65535], "to giue me": [0, 65535], "giue me ample": [0, 65535], "me ample satisfaction": [0, 65535], "ample satisfaction for": [0, 65535], "satisfaction for these": [0, 65535], "for these deepe": [0, 65535], "these deepe shames": [0, 65535], "deepe shames and": [0, 65535], "shames and great": [0, 65535], "and great indignities": [0, 65535], "great indignities gold": [0, 65535], "indignities gold my": [0, 65535], "gold my lord": [0, 65535], "my lord in": [0, 65535], "lord in truth": [0, 65535], "in truth thus": [0, 65535], "truth thus far": [0, 65535], "thus far i": [0, 65535], "far i witnes": [0, 65535], "i witnes with": [0, 65535], "witnes with him": [0, 65535], "with him that": [0, 65535], "that he din'd": [0, 65535], "he din'd not": [0, 65535], "din'd not at": [0, 65535], "not at home": [0, 65535], "at home but": [0, 65535], "home but was": [0, 65535], "but was lock'd": [0, 65535], "was lock'd out": [0, 65535], "lock'd out duke": [0, 65535], "out duke but": [0, 65535], "duke but had": [0, 65535], "but had he": [0, 65535], "had he such": [0, 65535], "he such a": [0, 65535], "such a chaine": [0, 65535], "a chaine of": [0, 65535], "chaine of thee": [0, 65535], "of thee or": [0, 65535], "thee or no": [0, 65535], "or no gold": [0, 65535], "no gold he": [0, 65535], "gold he had": [0, 65535], "he had my": [0, 65535], "had my lord": [0, 65535], "my lord and": [0, 65535], "lord and when": [0, 65535], "when he ran": [0, 65535], "he ran in": [0, 65535], "ran in heere": [0, 65535], "in heere these": [0, 65535], "heere these people": [0, 65535], "these people saw": [0, 65535], "people saw the": [0, 65535], "saw the chaine": [0, 65535], "the chaine about": [0, 65535], "his necke mar": [0, 65535], "necke mar besides": [0, 65535], "mar besides i": [0, 65535], "besides i will": [0, 65535], "i will be": [0, 65535], "will be sworne": [0, 65535], "be sworne these": [0, 65535], "sworne these eares": [0, 65535], "of mine heard": [0, 65535], "mine heard you": [0, 65535], "heard you confesse": [0, 65535], "you confesse you": [0, 65535], "confesse you had": [0, 65535], "you had the": [0, 65535], "chaine of him": [0, 65535], "of him after": [0, 65535], "him after you": [0, 65535], "after you first": [0, 65535], "you first forswore": [0, 65535], "first forswore it": [0, 65535], "forswore it on": [0, 65535], "it on the": [0, 65535], "mart and thereupon": [0, 65535], "and thereupon i": [0, 65535], "thereupon i drew": [0, 65535], "i drew my": [0, 65535], "drew my sword": [0, 65535], "my sword on": [0, 65535], "sword on you": [0, 65535], "then you fled": [0, 65535], "you fled into": [0, 65535], "this abbey heere": [0, 65535], "abbey heere from": [0, 65535], "heere from whence": [0, 65535], "from whence i": [0, 65535], "whence i thinke": [0, 65535], "i thinke you": [0, 65535], "thinke you are": [0, 65535], "you are come": [0, 65535], "are come by": [0, 65535], "come by miracle": [0, 65535], "by miracle e": [0, 65535], "miracle e ant": [0, 65535], "ant i neuer": [0, 65535], "i neuer came": [0, 65535], "neuer came within": [0, 65535], "came within these": [0, 65535], "within these abbey": [0, 65535], "these abbey wals": [0, 65535], "abbey wals nor": [0, 65535], "wals nor euer": [0, 65535], "nor euer didst": [0, 65535], "euer didst thou": [0, 65535], "didst thou draw": [0, 65535], "thou draw thy": [0, 65535], "draw thy sword": [0, 65535], "thy sword on": [0, 65535], "sword on me": [0, 65535], "on me i": [0, 65535], "me i neuer": [0, 65535], "neuer saw the": [0, 65535], "the chaine so": [0, 65535], "chaine so helpe": [0, 65535], "so helpe me": [0, 65535], "helpe me heauen": [0, 65535], "me heauen and": [0, 65535], "heauen and this": [0, 65535], "and this is": [0, 65535], "is false you": [0, 65535], "false you burthen": [0, 65535], "you burthen me": [0, 65535], "burthen me withall": [0, 65535], "me withall duke": [0, 65535], "withall duke why": [0, 65535], "duke why what": [0, 65535], "why what an": [0, 65535], "what an intricate": [0, 65535], "an intricate impeach": [0, 65535], "intricate impeach is": [0, 65535], "impeach is this": [0, 65535], "is this i": [0, 65535], "thinke you all": [0, 65535], "you all haue": [0, 65535], "all haue drunke": [0, 65535], "haue drunke of": [0, 65535], "drunke of circes": [0, 65535], "of circes cup": [0, 65535], "circes cup if": [0, 65535], "cup if heere": [0, 65535], "if heere you": [0, 65535], "heere you hous'd": [0, 65535], "you hous'd him": [0, 65535], "hous'd him heere": [0, 65535], "him heere he": [0, 65535], "heere he would": [0, 65535], "he would haue": [0, 65535], "would haue bin": [0, 65535], "haue bin if": [0, 65535], "bin if he": [0, 65535], "if he were": [0, 65535], "he were mad": [0, 65535], "were mad he": [0, 65535], "mad he would": [0, 65535], "would not pleade": [0, 65535], "not pleade so": [0, 65535], "pleade so coldly": [0, 65535], "so coldly you": [0, 65535], "coldly you say": [0, 65535], "you say he": [0, 65535], "say he din'd": [0, 65535], "he din'd at": [0, 65535], "din'd at home": [0, 65535], "at home the": [0, 65535], "home the goldsmith": [0, 65535], "the goldsmith heere": [0, 65535], "goldsmith heere denies": [0, 65535], "heere denies that": [0, 65535], "denies that saying": [0, 65535], "that saying sirra": [0, 65535], "saying sirra what": [0, 65535], "sirra what say": [0, 65535], "what say you": [0, 65535], "say you e": [0, 65535], "you e dro": [0, 65535], "e dro sir": [0, 65535], "dro sir he": [0, 65535], "sir he din'de": [0, 65535], "he din'de with": [0, 65535], "din'de with her": [0, 65535], "with her there": [0, 65535], "her there at": [0, 65535], "there at the": [0, 65535], "the porpentine cur": [0, 65535], "porpentine cur he": [0, 65535], "cur he did": [0, 65535], "he did and": [0, 65535], "did and from": [0, 65535], "from my finger": [0, 65535], "my finger snacht": [0, 65535], "finger snacht that": [0, 65535], "snacht that ring": [0, 65535], "that ring e": [0, 65535], "ring e anti": [0, 65535], "e anti tis": [0, 65535], "anti tis true": [0, 65535], "tis true my": [0, 65535], "true my liege": [0, 65535], "my liege this": [0, 65535], "liege this ring": [0, 65535], "this ring i": [0, 65535], "ring i had": [0, 65535], "i had of": [0, 65535], "had of her": [0, 65535], "of her duke": [0, 65535], "her duke saw'st": [0, 65535], "duke saw'st thou": [0, 65535], "saw'st thou him": [0, 65535], "thou him enter": [0, 65535], "him enter at": [0, 65535], "enter at the": [0, 65535], "abbey heere curt": [0, 65535], "heere curt as": [0, 65535], "curt as sure": [0, 65535], "as sure my": [0, 65535], "sure my liege": [0, 65535], "my liege as": [0, 65535], "liege as i": [0, 65535], "as i do": [0, 65535], "i do see": [0, 65535], "do see your": [0, 65535], "see your grace": [0, 65535], "your grace duke": [0, 65535], "grace duke why": [0, 65535], "duke why this": [0, 65535], "why this is": [0, 65535], "this is straunge": [0, 65535], "is straunge go": [0, 65535], "straunge go call": [0, 65535], "go call the": [0, 65535], "call the abbesse": [0, 65535], "the abbesse hither": [0, 65535], "abbesse hither i": [0, 65535], "hither i thinke": [0, 65535], "you are all": [0, 65535], "are all mated": [0, 65535], "all mated or": [0, 65535], "mated or starke": [0, 65535], "or starke mad": [0, 65535], "starke mad exit": [0, 65535], "mad exit one": [0, 65535], "exit one to": [0, 65535], "one to the": [0, 65535], "to the abbesse": [0, 65535], "the abbesse fa": [0, 65535], "abbesse fa most": [0, 65535], "fa most mighty": [0, 65535], "most mighty duke": [0, 65535], "mighty duke vouchsafe": [0, 65535], "duke vouchsafe me": [0, 65535], "vouchsafe me speak": [0, 65535], "me speak a": [0, 65535], "a word haply": [0, 65535], "word haply i": [0, 65535], "haply i see": [0, 65535], "see a friend": [0, 65535], "a friend will": [0, 65535], "friend will saue": [0, 65535], "will saue my": [0, 65535], "saue my life": [0, 65535], "my life and": [0, 65535], "life and pay": [0, 65535], "and pay the": [0, 65535], "pay the sum": [0, 65535], "the sum that": [0, 65535], "sum that may": [0, 65535], "that may deliuer": [0, 65535], "may deliuer me": [0, 65535], "deliuer me duke": [0, 65535], "me duke speake": [0, 65535], "duke speake freely": [0, 65535], "speake freely siracusian": [0, 65535], "freely siracusian what": [0, 65535], "siracusian what thou": [0, 65535], "what thou wilt": [0, 65535], "thou wilt fath": [0, 65535], "wilt fath is": [0, 65535], "fath is not": [0, 65535], "is not your": [0, 65535], "not your name": [0, 65535], "your name sir": [0, 65535], "name sir call'd": [0, 65535], "sir call'd antipholus": [0, 65535], "call'd antipholus and": [0, 65535], "antipholus and is": [0, 65535], "and is not": [0, 65535], "is not that": [0, 65535], "not that your": [0, 65535], "that your bondman": [0, 65535], "your bondman dromio": [0, 65535], "bondman dromio e": [0, 65535], "e dro within": [0, 65535], "dro within this": [0, 65535], "within this houre": [0, 65535], "this houre i": [0, 65535], "houre i was": [0, 65535], "i was his": [0, 65535], "was his bondman": [0, 65535], "his bondman sir": [0, 65535], "bondman sir but": [0, 65535], "sir but he": [0, 65535], "but he i": [0, 65535], "he i thanke": [0, 65535], "thanke him gnaw'd": [0, 65535], "him gnaw'd in": [0, 65535], "gnaw'd in two": [0, 65535], "in two my": [0, 65535], "two my cords": [0, 65535], "my cords now": [0, 65535], "cords now am": [0, 65535], "now am i": [0, 65535], "i dromio and": [0, 65535], "dromio and his": [0, 65535], "his man vnbound": [0, 65535], "man vnbound fath": [0, 65535], "vnbound fath i": [0, 65535], "fath i am": [0, 65535], "i am sure": [0, 65535], "am sure you": [0, 65535], "sure you both": [0, 65535], "you both of": [0, 65535], "both of you": [0, 65535], "of you remember": [0, 65535], "you remember me": [0, 65535], "remember me dro": [0, 65535], "me dro our": [0, 65535], "dro our selues": [0, 65535], "our selues we": [0, 65535], "selues we do": [0, 65535], "we do remember": [0, 65535], "do remember sir": [0, 65535], "remember sir by": [0, 65535], "sir by you": [0, 65535], "by you for": [0, 65535], "you for lately": [0, 65535], "for lately we": [0, 65535], "lately we were": [0, 65535], "we were bound": [0, 65535], "were bound as": [0, 65535], "bound as you": [0, 65535], "as you are": [0, 65535], "you are now": [0, 65535], "are now you": [0, 65535], "now you are": [0, 65535], "you are not": [0, 65535], "are not pinches": [0, 65535], "not pinches patient": [0, 65535], "pinches patient are": [0, 65535], "patient are you": [0, 65535], "are you sir": [0, 65535], "you sir father": [0, 65535], "sir father why": [0, 65535], "father why looke": [0, 65535], "why looke you": [0, 65535], "looke you strange": [0, 65535], "you strange on": [0, 65535], "strange on me": [0, 65535], "on me you": [0, 65535], "me you know": [0, 65535], "know me well": [0, 65535], "me well e": [0, 65535], "well e ant": [0, 65535], "neuer saw you": [0, 65535], "saw you in": [0, 65535], "you in my": [0, 65535], "in my life": [0, 65535], "my life till": [0, 65535], "life till now": [0, 65535], "till now fa": [0, 65535], "now fa oh": [0, 65535], "fa oh griefe": [0, 65535], "oh griefe hath": [0, 65535], "griefe hath chang'd": [0, 65535], "hath chang'd me": [0, 65535], "chang'd me since": [0, 65535], "me since you": [0, 65535], "since you saw": [0, 65535], "you saw me": [0, 65535], "saw me last": [0, 65535], "me last and": [0, 65535], "last and carefull": [0, 65535], "and carefull houres": [0, 65535], "carefull houres with": [0, 65535], "houres with times": [0, 65535], "with times deformed": [0, 65535], "times deformed hand": [0, 65535], "deformed hand haue": [0, 65535], "hand haue written": [0, 65535], "haue written strange": [0, 65535], "written strange defeatures": [0, 65535], "strange defeatures in": [0, 65535], "defeatures in my": [0, 65535], "my face but": [0, 65535], "face but tell": [0, 65535], "but tell me": [0, 65535], "tell me yet": [0, 65535], "me yet dost": [0, 65535], "yet dost thou": [0, 65535], "not know my": [0, 65535], "know my voice": [0, 65535], "my voice ant": [0, 65535], "voice ant neither": [0, 65535], "ant neither fat": [0, 65535], "neither fat dromio": [0, 65535], "fat dromio nor": [0, 65535], "dromio nor thou": [0, 65535], "nor thou dro": [0, 65535], "thou dro no": [0, 65535], "dro no trust": [0, 65535], "no trust me": [0, 65535], "trust me sir": [0, 65535], "me sir nor": [0, 65535], "sir nor i": [0, 65535], "nor i fa": [0, 65535], "i fa i": [0, 65535], "fa i am": [0, 65535], "am sure thou": [0, 65535], "sure thou dost": [0, 65535], "thou dost e": [0, 65535], "dost e dromio": [0, 65535], "e dromio i": [0, 65535], "dromio i sir": [0, 65535], "i sir but": [0, 65535], "but i am": [0, 65535], "am sure i": [0, 65535], "sure i do": [0, 65535], "i do not": [0, 65535], "do not and": [0, 65535], "not and whatsoeuer": [0, 65535], "and whatsoeuer a": [0, 65535], "whatsoeuer a man": [0, 65535], "a man denies": [0, 65535], "man denies you": [0, 65535], "denies you are": [0, 65535], "are now bound": [0, 65535], "now bound to": [0, 65535], "bound to beleeue": [0, 65535], "to beleeue him": [0, 65535], "beleeue him fath": [0, 65535], "him fath not": [0, 65535], "fath not know": [0, 65535], "my voice oh": [0, 65535], "voice oh times": [0, 65535], "oh times extremity": [0, 65535], "times extremity hast": [0, 65535], "extremity hast thou": [0, 65535], "hast thou so": [0, 65535], "thou so crack'd": [0, 65535], "so crack'd and": [0, 65535], "crack'd and splitted": [0, 65535], "and splitted my": [0, 65535], "splitted my poore": [0, 65535], "my poore tongue": [0, 65535], "poore tongue in": [0, 65535], "tongue in seuen": [0, 65535], "in seuen short": [0, 65535], "seuen short yeares": [0, 65535], "short yeares that": [0, 65535], "yeares that heere": [0, 65535], "that heere my": [0, 65535], "heere my onely": [0, 65535], "my onely sonne": [0, 65535], "onely sonne knowes": [0, 65535], "sonne knowes not": [0, 65535], "knowes not my": [0, 65535], "not my feeble": [0, 65535], "my feeble key": [0, 65535], "feeble key of": [0, 65535], "key of vntun'd": [0, 65535], "of vntun'd cares": [0, 65535], "vntun'd cares though": [0, 65535], "cares though now": [0, 65535], "though now this": [0, 65535], "now this grained": [0, 65535], "this grained face": [0, 65535], "grained face of": [0, 65535], "face of mine": [0, 65535], "of mine be": [0, 65535], "mine be hid": [0, 65535], "be hid in": [0, 65535], "hid in sap": [0, 65535], "in sap consuming": [0, 65535], "sap consuming winters": [0, 65535], "consuming winters drizled": [0, 65535], "winters drizled snow": [0, 65535], "drizled snow and": [0, 65535], "snow and all": [0, 65535], "all the conduits": [0, 65535], "the conduits of": [0, 65535], "conduits of my": [0, 65535], "of my blood": [0, 65535], "my blood froze": [0, 65535], "blood froze vp": [0, 65535], "froze vp yet": [0, 65535], "vp yet hath": [0, 65535], "yet hath my": [0, 65535], "hath my night": [0, 65535], "my night of": [0, 65535], "night of life": [0, 65535], "of life some": [0, 65535], "life some memorie": [0, 65535], "some memorie my": [0, 65535], "memorie my wasting": [0, 65535], "my wasting lampes": [0, 65535], "wasting lampes some": [0, 65535], "lampes some fading": [0, 65535], "some fading glimmer": [0, 65535], "fading glimmer left": [0, 65535], "glimmer left my": [0, 65535], "left my dull": [0, 65535], "my dull deafe": [0, 65535], "dull deafe eares": [0, 65535], "deafe eares a": [0, 65535], "eares a little": [0, 65535], "a little vse": [0, 65535], "little vse to": [0, 65535], "vse to heare": [0, 65535], "to heare all": [0, 65535], "heare all these": [0, 65535], "all these old": [0, 65535], "these old witnesses": [0, 65535], "old witnesses i": [0, 65535], "witnesses i cannot": [0, 65535], "i cannot erre": [0, 65535], "cannot erre tell": [0, 65535], "erre tell me": [0, 65535], "tell me thou": [0, 65535], "me thou art": [0, 65535], "art my sonne": [0, 65535], "sonne antipholus ant": [0, 65535], "antipholus ant i": [0, 65535], "neuer saw my": [0, 65535], "saw my father": [0, 65535], "my father in": [0, 65535], "father in my": [0, 65535], "my life fa": [0, 65535], "life fa but": [0, 65535], "fa but seuen": [0, 65535], "but seuen yeares": [0, 65535], "seuen yeares since": [0, 65535], "yeares since in": [0, 65535], "since in siracusa": [0, 65535], "in siracusa boy": [0, 65535], "siracusa boy thou": [0, 65535], "boy thou know'st": [0, 65535], "thou know'st we": [0, 65535], "know'st we parted": [0, 65535], "we parted but": [0, 65535], "parted but perhaps": [0, 65535], "but perhaps my": [0, 65535], "perhaps my sonne": [0, 65535], "my sonne thou": [0, 65535], "sonne thou sham'st": [0, 65535], "thou sham'st to": [0, 65535], "sham'st to acknowledge": [0, 65535], "to acknowledge me": [0, 65535], "acknowledge me in": [0, 65535], "me in miserie": [0, 65535], "in miserie ant": [0, 65535], "miserie ant the": [0, 65535], "ant the duke": [0, 65535], "the duke and": [0, 65535], "duke and all": [0, 65535], "and all that": [0, 65535], "all that know": [0, 65535], "that know me": [0, 65535], "know me in": [0, 65535], "in the city": [0, 65535], "the city can": [0, 65535], "city can witnesse": [0, 65535], "can witnesse with": [0, 65535], "witnesse with me": [0, 65535], "me that it": [0, 65535], "that it is": [0, 65535], "is not so": [0, 65535], "not so i": [0, 65535], "so i ne're": [0, 65535], "i ne're saw": [0, 65535], "ne're saw siracusa": [0, 65535], "saw siracusa in": [0, 65535], "siracusa in my": [0, 65535], "my life duke": [0, 65535], "life duke i": [0, 65535], "duke i tell": [0, 65535], "i tell thee": [0, 65535], "tell thee siracusian": [0, 65535], "thee siracusian twentie": [0, 65535], "siracusian twentie yeares": [0, 65535], "twentie yeares haue": [0, 65535], "yeares haue i": [0, 65535], "haue i bin": [0, 65535], "i bin patron": [0, 65535], "bin patron to": [0, 65535], "patron to antipholus": [0, 65535], "to antipholus during": [0, 65535], "antipholus during which": [0, 65535], "during which time": [0, 65535], "which time he": [0, 65535], "time he ne're": [0, 65535], "he ne're saw": [0, 65535], "saw siracusa i": [0, 65535], "siracusa i see": [0, 65535], "i see thy": [0, 65535], "see thy age": [0, 65535], "thy age and": [0, 65535], "age and dangers": [0, 65535], "and dangers make": [0, 65535], "dangers make thee": [0, 65535], "make thee dote": [0, 65535], "thee dote enter": [0, 65535], "dote enter the": [0, 65535], "enter the abbesse": [0, 65535], "the abbesse with": [0, 65535], "abbesse with antipholus": [0, 65535], "with antipholus siracusa": [0, 65535], "antipholus siracusa and": [0, 65535], "siracusa and dromio": [0, 65535], "and dromio sir": [0, 65535], "dromio sir abbesse": [0, 65535], "sir abbesse most": [0, 65535], "abbesse most mightie": [0, 65535], "most mightie duke": [0, 65535], "mightie duke behold": [0, 65535], "duke behold a": [0, 65535], "behold a man": [0, 65535], "a man much": [0, 65535], "man much wrong'd": [0, 65535], "much wrong'd all": [0, 65535], "wrong'd all gather": [0, 65535], "all gather to": [0, 65535], "gather to see": [0, 65535], "to see them": [0, 65535], "see them adr": [0, 65535], "them adr i": [0, 65535], "adr i see": [0, 65535], "i see two": [0, 65535], "see two husbands": [0, 65535], "two husbands or": [0, 65535], "husbands or mine": [0, 65535], "or mine eyes": [0, 65535], "mine eyes deceiue": [0, 65535], "eyes deceiue me": [0, 65535], "deceiue me duke": [0, 65535], "me duke one": [0, 65535], "duke one of": [0, 65535], "of these men": [0, 65535], "these men is": [0, 65535], "men is genius": [0, 65535], "is genius to": [0, 65535], "genius to the": [0, 65535], "to the other": [0, 65535], "the other and": [0, 65535], "other and so": [0, 65535], "and so of": [0, 65535], "so of these": [0, 65535], "of these which": [0, 65535], "these which is": [0, 65535], "which is the": [0, 65535], "is the naturall": [0, 65535], "the naturall man": [0, 65535], "naturall man and": [0, 65535], "man and which": [0, 65535], "and which the": [0, 65535], "which the spirit": [0, 65535], "the spirit who": [0, 65535], "spirit who deciphers": [0, 65535], "who deciphers them": [0, 65535], "deciphers them s": [0, 65535], "them s dromio": [0, 65535], "s dromio i": [0, 65535], "i sir am": [0, 65535], "sir am dromio": [0, 65535], "am dromio command": [0, 65535], "dromio command him": [0, 65535], "command him away": [0, 65535], "him away e": [0, 65535], "away e dro": [0, 65535], "am dromio pray": [0, 65535], "dromio pray let": [0, 65535], "pray let me": [0, 65535], "let me stay": [0, 65535], "me stay s": [0, 65535], "stay s ant": [0, 65535], "s ant egeon": [0, 65535], "ant egeon art": [0, 65535], "egeon art thou": [0, 65535], "art thou not": [0, 65535], "thou not or": [0, 65535], "not or else": [0, 65535], "or else his": [0, 65535], "else his ghost": [0, 65535], "his ghost s": [0, 65535], "ghost s drom": [0, 65535], "s drom oh": [0, 65535], "drom oh my": [0, 65535], "oh my olde": [0, 65535], "my olde master": [0, 65535], "olde master who": [0, 65535], "master who hath": [0, 65535], "who hath bound": [0, 65535], "hath bound him": [0, 65535], "bound him heere": [0, 65535], "him heere abb": [0, 65535], "heere abb who": [0, 65535], "abb who euer": [0, 65535], "who euer bound": [0, 65535], "euer bound him": [0, 65535], "bound him i": [0, 65535], "him i will": [0, 65535], "i will lose": [0, 65535], "will lose his": [0, 65535], "lose his bonds": [0, 65535], "his bonds and": [0, 65535], "bonds and gaine": [0, 65535], "and gaine a": [0, 65535], "gaine a husband": [0, 65535], "a husband by": [0, 65535], "husband by his": [0, 65535], "by his libertie": [0, 65535], "his libertie speake": [0, 65535], "libertie speake olde": [0, 65535], "speake olde egeon": [0, 65535], "olde egeon if": [0, 65535], "egeon if thou": [0, 65535], "if thou bee'st": [0, 65535], "thou bee'st the": [0, 65535], "bee'st the man": [0, 65535], "the man that": [0, 65535], "man that hadst": [0, 65535], "that hadst a": [0, 65535], "hadst a wife": [0, 65535], "a wife once": [0, 65535], "wife once call'd": [0, 65535], "once call'd \u00e6milia": [0, 65535], "call'd \u00e6milia that": [0, 65535], "\u00e6milia that bore": [0, 65535], "that bore thee": [0, 65535], "bore thee at": [0, 65535], "thee at a": [0, 65535], "at a burthen": [0, 65535], "a burthen two": [0, 65535], "burthen two faire": [0, 65535], "two faire sonnes": [0, 65535], "faire sonnes oh": [0, 65535], "sonnes oh if": [0, 65535], "oh if thou": [0, 65535], "bee'st the same": [0, 65535], "the same egeon": [0, 65535], "same egeon speake": [0, 65535], "egeon speake and": [0, 65535], "speake and speake": [0, 65535], "and speake vnto": [0, 65535], "speake vnto the": [0, 65535], "vnto the same": [0, 65535], "the same \u00e6milia": [0, 65535], "same \u00e6milia duke": [0, 65535], "\u00e6milia duke why": [0, 65535], "duke why heere": [0, 65535], "why heere begins": [0, 65535], "heere begins his": [0, 65535], "begins his morning": [0, 65535], "his morning storie": [0, 65535], "morning storie right": [0, 65535], "storie right these": [0, 65535], "right these twoantipholus": [0, 65535], "these twoantipholus these": [0, 65535], "twoantipholus these two": [0, 65535], "these two so": [0, 65535], "two so like": [0, 65535], "so like and": [0, 65535], "like and these": [0, 65535], "and these two": [0, 65535], "these two dromio's": [0, 65535], "two dromio's one": [0, 65535], "dromio's one in": [0, 65535], "one in semblance": [0, 65535], "in semblance besides": [0, 65535], "semblance besides her": [0, 65535], "besides her vrging": [0, 65535], "her vrging of": [0, 65535], "vrging of her": [0, 65535], "of her wracke": [0, 65535], "her wracke at": [0, 65535], "wracke at sea": [0, 65535], "at sea these": [0, 65535], "sea these are": [0, 65535], "these are the": [0, 65535], "are the parents": [0, 65535], "the parents to": [0, 65535], "parents to these": [0, 65535], "to these children": [0, 65535], "these children which": [0, 65535], "children which accidentally": [0, 65535], "which accidentally are": [0, 65535], "accidentally are met": [0, 65535], "are met together": [0, 65535], "met together fa": [0, 65535], "together fa if": [0, 65535], "fa if i": [0, 65535], "if i dreame": [0, 65535], "i dreame not": [0, 65535], "dreame not thou": [0, 65535], "not thou art": [0, 65535], "thou art \u00e6milia": [0, 65535], "art \u00e6milia if": [0, 65535], "\u00e6milia if thou": [0, 65535], "thou art she": [0, 65535], "art she tell": [0, 65535], "she tell me": [0, 65535], "tell me where": [0, 65535], "me where is": [0, 65535], "where is that": [0, 65535], "is that sonne": [0, 65535], "that sonne that": [0, 65535], "sonne that floated": [0, 65535], "that floated with": [0, 65535], "floated with thee": [0, 65535], "with thee on": [0, 65535], "thee on the": [0, 65535], "on the fatall": [0, 65535], "the fatall rafte": [0, 65535], "fatall rafte abb": [0, 65535], "rafte abb by": [0, 65535], "abb by men": [0, 65535], "by men of": [0, 65535], "men of epidamium": [0, 65535], "of epidamium he": [0, 65535], "epidamium he and": [0, 65535], "he and i": [0, 65535], "and i and": [0, 65535], "i and the": [0, 65535], "and the twin": [0, 65535], "the twin dromio": [0, 65535], "twin dromio all": [0, 65535], "dromio all were": [0, 65535], "all were taken": [0, 65535], "were taken vp": [0, 65535], "taken vp but": [0, 65535], "vp but by": [0, 65535], "and by rude": [0, 65535], "by rude fishermen": [0, 65535], "rude fishermen of": [0, 65535], "fishermen of corinth": [0, 65535], "of corinth by": [0, 65535], "corinth by force": [0, 65535], "by force tooke": [0, 65535], "force tooke dromio": [0, 65535], "tooke dromio and": [0, 65535], "dromio and my": [0, 65535], "and my sonne": [0, 65535], "my sonne from": [0, 65535], "sonne from them": [0, 65535], "from them and": [0, 65535], "them and me": [0, 65535], "and me they": [0, 65535], "me they left": [0, 65535], "they left with": [0, 65535], "left with those": [0, 65535], "with those of": [0, 65535], "those of epidamium": [0, 65535], "of epidamium what": [0, 65535], "epidamium what then": [0, 65535], "what then became": [0, 65535], "then became of": [0, 65535], "became of them": [0, 65535], "of them i": [0, 65535], "them i cannot": [0, 65535], "cannot tell i": [0, 65535], "tell i to": [0, 65535], "i to this": [0, 65535], "to this fortune": [0, 65535], "this fortune that": [0, 65535], "fortune that you": [0, 65535], "that you see": [0, 65535], "you see mee": [0, 65535], "see mee in": [0, 65535], "mee in duke": [0, 65535], "in duke antipholus": [0, 65535], "duke antipholus thou": [0, 65535], "antipholus thou cam'st": [0, 65535], "thou cam'st from": [0, 65535], "cam'st from corinth": [0, 65535], "from corinth first": [0, 65535], "corinth first s": [0, 65535], "first s ant": [0, 65535], "s ant no": [0, 65535], "ant no sir": [0, 65535], "no sir not": [0, 65535], "sir not i": [0, 65535], "not i i": [0, 65535], "i i came": [0, 65535], "i came from": [0, 65535], "came from siracuse": [0, 65535], "from siracuse duke": [0, 65535], "siracuse duke stay": [0, 65535], "duke stay stand": [0, 65535], "stay stand apart": [0, 65535], "stand apart i": [0, 65535], "apart i know": [0, 65535], "know not which": [0, 65535], "not which is": [0, 65535], "which is which": [0, 65535], "is which e": [0, 65535], "which e ant": [0, 65535], "ant i came": [0, 65535], "came from corinth": [0, 65535], "from corinth my": [0, 65535], "corinth my most": [0, 65535], "my most gracious": [0, 65535], "most gracious lord": [0, 65535], "gracious lord e": [0, 65535], "lord e dro": [0, 65535], "e dro and": [0, 65535], "dro and i": [0, 65535], "and i with": [0, 65535], "i with him": [0, 65535], "with him e": [0, 65535], "him e ant": [0, 65535], "e ant brought": [0, 65535], "ant brought to": [0, 65535], "brought to this": [0, 65535], "to this town": [0, 65535], "this town by": [0, 65535], "town by that": [0, 65535], "by that most": [0, 65535], "that most famous": [0, 65535], "most famous warriour": [0, 65535], "famous warriour duke": [0, 65535], "warriour duke menaphon": [0, 65535], "duke menaphon your": [0, 65535], "menaphon your most": [0, 65535], "your most renowned": [0, 65535], "most renowned vnckle": [0, 65535], "renowned vnckle adr": [0, 65535], "vnckle adr which": [0, 65535], "adr which of": [0, 65535], "which of you": [0, 65535], "of you two": [0, 65535], "you two did": [0, 65535], "two did dine": [0, 65535], "did dine with": [0, 65535], "dine with me": [0, 65535], "me to day": [0, 65535], "day s ant": [0, 65535], "s ant i": [0, 65535], "ant i gentle": [0, 65535], "i gentle mistris": [0, 65535], "gentle mistris adr": [0, 65535], "mistris adr and": [0, 65535], "adr and are": [0, 65535], "and are not": [0, 65535], "are not you": [0, 65535], "not you my": [0, 65535], "you my husband": [0, 65535], "my husband e": [0, 65535], "husband e ant": [0, 65535], "e ant no": [0, 65535], "ant no i": [0, 65535], "no i say": [0, 65535], "i say nay": [0, 65535], "say nay to": [0, 65535], "nay to that": [0, 65535], "to that s": [0, 65535], "that s ant": [0, 65535], "s ant and": [0, 65535], "ant and so": [0, 65535], "and so do": [0, 65535], "so do i": [0, 65535], "do i yet": [0, 65535], "i yet did": [0, 65535], "yet did she": [0, 65535], "did she call": [0, 65535], "she call me": [0, 65535], "call me so": [0, 65535], "so and this": [0, 65535], "and this faire": [0, 65535], "this faire gentlewoman": [0, 65535], "faire gentlewoman her": [0, 65535], "gentlewoman her sister": [0, 65535], "her sister heere": [0, 65535], "sister heere did": [0, 65535], "heere did call": [0, 65535], "did call me": [0, 65535], "call me brother": [0, 65535], "me brother what": [0, 65535], "brother what i": [0, 65535], "what i told": [0, 65535], "i told you": [0, 65535], "told you then": [0, 65535], "you then i": [0, 65535], "then i hope": [0, 65535], "i hope i": [0, 65535], "hope i shall": [0, 65535], "shall haue leisure": [0, 65535], "haue leisure to": [0, 65535], "leisure to make": [0, 65535], "to make good": [0, 65535], "make good if": [0, 65535], "good if this": [0, 65535], "if this be": [0, 65535], "this be not": [0, 65535], "be not a": [0, 65535], "not a dreame": [0, 65535], "a dreame i": [0, 65535], "dreame i see": [0, 65535], "i see and": [0, 65535], "see and heare": [0, 65535], "and heare goldsmith": [0, 65535], "heare goldsmith that": [0, 65535], "goldsmith that is": [0, 65535], "is the chaine": [0, 65535], "the chaine sir": [0, 65535], "chaine sir which": [0, 65535], "sir which you": [0, 65535], "which you had": [0, 65535], "had of mee": [0, 65535], "of mee s": [0, 65535], "mee s ant": [0, 65535], "i thinke it": [0, 65535], "thinke it be": [0, 65535], "sir i denie": [0, 65535], "i denie it": [0, 65535], "denie it not": [0, 65535], "it not e": [0, 65535], "not e ant": [0, 65535], "e ant and": [0, 65535], "ant and you": [0, 65535], "and you sir": [0, 65535], "you sir for": [0, 65535], "for this chaine": [0, 65535], "this chaine arrested": [0, 65535], "chaine arrested me": [0, 65535], "arrested me gold": [0, 65535], "me gold i": [0, 65535], "gold i thinke": [0, 65535], "thinke i did": [0, 65535], "i did sir": [0, 65535], "did sir i": [0, 65535], "sir i deny": [0, 65535], "i deny it": [0, 65535], "deny it not": [0, 65535], "it not adr": [0, 65535], "not adr i": [0, 65535], "adr i sent": [0, 65535], "i sent you": [0, 65535], "sent you monie": [0, 65535], "you monie sir": [0, 65535], "monie sir to": [0, 65535], "sir to be": [0, 65535], "to be your": [0, 65535], "be your baile": [0, 65535], "your baile by": [0, 65535], "baile by dromio": [0, 65535], "by dromio but": [0, 65535], "dromio but i": [0, 65535], "but i thinke": [0, 65535], "thinke he brought": [0, 65535], "he brought it": [0, 65535], "brought it not": [0, 65535], "not e dro": [0, 65535], "e dro no": [0, 65535], "dro no none": [0, 65535], "no none by": [0, 65535], "none by me": [0, 65535], "by me s": [0, 65535], "me s ant": [0, 65535], "s ant this": [0, 65535], "ant this purse": [0, 65535], "this purse of": [0, 65535], "purse of duckets": [0, 65535], "of duckets i": [0, 65535], "duckets i receiu'd": [0, 65535], "i receiu'd from": [0, 65535], "receiu'd from you": [0, 65535], "from you and": [0, 65535], "you and dromio": [0, 65535], "and dromio my": [0, 65535], "dromio my man": [0, 65535], "my man did": [0, 65535], "man did bring": [0, 65535], "did bring them": [0, 65535], "bring them me": [0, 65535], "them me i": [0, 65535], "me i see": [0, 65535], "i see we": [0, 65535], "see we still": [0, 65535], "we still did": [0, 65535], "still did meete": [0, 65535], "did meete each": [0, 65535], "meete each others": [0, 65535], "each others man": [0, 65535], "others man and": [0, 65535], "man and i": [0, 65535], "and i was": [0, 65535], "i was tane": [0, 65535], "was tane for": [0, 65535], "tane for him": [0, 65535], "for him and": [0, 65535], "and he for": [0, 65535], "he for me": [0, 65535], "for me and": [0, 65535], "me and thereupon": [0, 65535], "and thereupon these": [0, 65535], "thereupon these errors": [0, 65535], "these errors are": [0, 65535], "errors are arose": [0, 65535], "are arose e": [0, 65535], "arose e ant": [0, 65535], "e ant these": [0, 65535], "ant these duckets": [0, 65535], "these duckets pawne": [0, 65535], "duckets pawne i": [0, 65535], "pawne i for": [0, 65535], "i for my": [0, 65535], "for my father": [0, 65535], "my father heere": [0, 65535], "father heere duke": [0, 65535], "heere duke it": [0, 65535], "duke it shall": [0, 65535], "it shall not": [0, 65535], "shall not neede": [0, 65535], "not neede thy": [0, 65535], "neede thy father": [0, 65535], "thy father hath": [0, 65535], "father hath his": [0, 65535], "hath his life": [0, 65535], "his life cur": [0, 65535], "life cur sir": [0, 65535], "cur sir i": [0, 65535], "sir i must": [0, 65535], "i must haue": [0, 65535], "must haue that": [0, 65535], "haue that diamond": [0, 65535], "that diamond from": [0, 65535], "diamond from you": [0, 65535], "from you e": [0, 65535], "you e ant": [0, 65535], "e ant there": [0, 65535], "ant there take": [0, 65535], "there take it": [0, 65535], "take it and": [0, 65535], "it and much": [0, 65535], "and much thanks": [0, 65535], "much thanks for": [0, 65535], "thanks for my": [0, 65535], "for my good": [0, 65535], "my good cheere": [0, 65535], "good cheere abb": [0, 65535], "cheere abb renowned": [0, 65535], "abb renowned duke": [0, 65535], "renowned duke vouchsafe": [0, 65535], "duke vouchsafe to": [0, 65535], "vouchsafe to take": [0, 65535], "to take the": [0, 65535], "take the paines": [0, 65535], "the paines to": [0, 65535], "paines to go": [0, 65535], "to go with": [0, 65535], "go with vs": [0, 65535], "with vs into": [0, 65535], "vs into the": [0, 65535], "into the abbey": [0, 65535], "heere and heare": [0, 65535], "and heare at": [0, 65535], "heare at large": [0, 65535], "at large discoursed": [0, 65535], "large discoursed all": [0, 65535], "discoursed all our": [0, 65535], "all our fortunes": [0, 65535], "our fortunes and": [0, 65535], "fortunes and all": [0, 65535], "all that are": [0, 65535], "that are assembled": [0, 65535], "are assembled in": [0, 65535], "assembled in this": [0, 65535], "in this place": [0, 65535], "this place that": [0, 65535], "place that by": [0, 65535], "that by this": [0, 65535], "by this simpathized": [0, 65535], "this simpathized one": [0, 65535], "simpathized one daies": [0, 65535], "one daies error": [0, 65535], "daies error haue": [0, 65535], "error haue suffer'd": [0, 65535], "haue suffer'd wrong": [0, 65535], "suffer'd wrong goe": [0, 65535], "wrong goe keepe": [0, 65535], "goe keepe vs": [0, 65535], "keepe vs companie": [0, 65535], "vs companie and": [0, 65535], "companie and we": [0, 65535], "and we shall": [0, 65535], "we shall make": [0, 65535], "shall make full": [0, 65535], "make full satisfaction": [0, 65535], "full satisfaction thirtie": [0, 65535], "satisfaction thirtie three": [0, 65535], "thirtie three yeares": [0, 65535], "three yeares haue": [0, 65535], "haue i but": [0, 65535], "i but gone": [0, 65535], "but gone in": [0, 65535], "gone in trauaile": [0, 65535], "in trauaile of": [0, 65535], "trauaile of you": [0, 65535], "of you my": [0, 65535], "you my sonnes": [0, 65535], "my sonnes and": [0, 65535], "sonnes and till": [0, 65535], "and till this": [0, 65535], "till this present": [0, 65535], "this present houre": [0, 65535], "present houre my": [0, 65535], "houre my heauie": [0, 65535], "my heauie burthen": [0, 65535], "heauie burthen are": [0, 65535], "burthen are deliuered": [0, 65535], "are deliuered the": [0, 65535], "deliuered the duke": [0, 65535], "the duke my": [0, 65535], "duke my husband": [0, 65535], "my husband and": [0, 65535], "husband and my": [0, 65535], "and my children": [0, 65535], "my children both": [0, 65535], "children both and": [0, 65535], "both and you": [0, 65535], "and you the": [0, 65535], "you the kalenders": [0, 65535], "the kalenders of": [0, 65535], "kalenders of their": [0, 65535], "of their natiuity": [0, 65535], "their natiuity go": [0, 65535], "natiuity go to": [0, 65535], "go to a": [0, 65535], "to a gossips": [0, 65535], "a gossips feast": [0, 65535], "gossips feast and": [0, 65535], "feast and go": [0, 65535], "and go with": [0, 65535], "go with mee": [0, 65535], "with mee after": [0, 65535], "mee after so": [0, 65535], "after so long": [0, 65535], "so long greefe": [0, 65535], "long greefe such": [0, 65535], "greefe such natiuitie": [0, 65535], "such natiuitie duke": [0, 65535], "natiuitie duke with": [0, 65535], "duke with all": [0, 65535], "with all my": [0, 65535], "all my heart": [0, 65535], "my heart ile": [0, 65535], "heart ile gossip": [0, 65535], "ile gossip at": [0, 65535], "gossip at this": [0, 65535], "at this feast": [0, 65535], "this feast exeunt": [0, 65535], "feast exeunt omnes": [0, 65535], "exeunt omnes manet": [0, 65535], "omnes manet the": [0, 65535], "manet the two": [0, 65535], "the two dromio's": [0, 65535], "two dromio's and": [0, 65535], "dromio's and two": [0, 65535], "and two brothers": [0, 65535], "two brothers s": [0, 65535], "brothers s dro": [0, 65535], "s dro mast": [0, 65535], "dro mast shall": [0, 65535], "mast shall i": [0, 65535], "shall i fetch": [0, 65535], "i fetch your": [0, 65535], "fetch your stuffe": [0, 65535], "your stuffe from": [0, 65535], "stuffe from shipbord": [0, 65535], "from shipbord e": [0, 65535], "shipbord e an": [0, 65535], "e an dromio": [0, 65535], "an dromio what": [0, 65535], "dromio what stuffe": [0, 65535], "what stuffe of": [0, 65535], "stuffe of mine": [0, 65535], "of mine hast": [0, 65535], "mine hast thou": [0, 65535], "hast thou imbarkt": [0, 65535], "thou imbarkt s": [0, 65535], "imbarkt s dro": [0, 65535], "s dro your": [0, 65535], "dro your goods": [0, 65535], "your goods that": [0, 65535], "goods that lay": [0, 65535], "that lay at": [0, 65535], "lay at host": [0, 65535], "at host sir": [0, 65535], "host sir in": [0, 65535], "sir in the": [0, 65535], "in the centaur": [0, 65535], "the centaur s": [0, 65535], "centaur s ant": [0, 65535], "s ant he": [0, 65535], "ant he speakes": [0, 65535], "he speakes to": [0, 65535], "speakes to me": [0, 65535], "me i am": [0, 65535], "i am your": [0, 65535], "am your master": [0, 65535], "your master dromio": [0, 65535], "master dromio come": [0, 65535], "dromio come go": [0, 65535], "come go with": [0, 65535], "with vs wee'l": [0, 65535], "vs wee'l looke": [0, 65535], "wee'l looke to": [0, 65535], "looke to that": [0, 65535], "to that anon": [0, 65535], "that anon embrace": [0, 65535], "anon embrace thy": [0, 65535], "embrace thy brother": [0, 65535], "thy brother there": [0, 65535], "brother there reioyce": [0, 65535], "there reioyce with": [0, 65535], "reioyce with him": [0, 65535], "with him exit": [0, 65535], "him exit s": [0, 65535], "exit s dro": [0, 65535], "s dro there": [0, 65535], "dro there is": [0, 65535], "there is a": [0, 65535], "is a fat": [0, 65535], "a fat friend": [0, 65535], "fat friend at": [0, 65535], "friend at your": [0, 65535], "at your masters": [0, 65535], "your masters house": [0, 65535], "masters house that": [0, 65535], "house that kitchin'd": [0, 65535], "that kitchin'd me": [0, 65535], "kitchin'd me for": [0, 65535], "me for you": [0, 65535], "for you to": [0, 65535], "to day at": [0, 65535], "day at dinner": [0, 65535], "at dinner she": [0, 65535], "dinner she now": [0, 65535], "she now shall": [0, 65535], "now shall be": [0, 65535], "shall be my": [0, 65535], "be my sister": [0, 65535], "my sister not": [0, 65535], "sister not my": [0, 65535], "not my wife": [0, 65535], "my wife e": [0, 65535], "wife e d": [0, 65535], "e d me": [0, 65535], "d me thinks": [0, 65535], "me thinks you": [0, 65535], "thinks you are": [0, 65535], "you are my": [0, 65535], "are my glasse": [0, 65535], "my glasse not": [0, 65535], "glasse not my": [0, 65535], "not my brother": [0, 65535], "my brother i": [0, 65535], "brother i see": [0, 65535], "i see by": [0, 65535], "see by you": [0, 65535], "by you i": [0, 65535], "you i am": [0, 65535], "am a sweet": [0, 65535], "a sweet fac'd": [0, 65535], "sweet fac'd youth": [0, 65535], "fac'd youth will": [0, 65535], "youth will you": [0, 65535], "will you walke": [0, 65535], "you walke in": [0, 65535], "walke in to": [0, 65535], "in to see": [0, 65535], "to see their": [0, 65535], "see their gossipping": [0, 65535], "their gossipping s": [0, 65535], "gossipping s dro": [0, 65535], "dro not i": [0, 65535], "not i sir": [0, 65535], "i sir you": [0, 65535], "sir you are": [0, 65535], "are my elder": [0, 65535], "my elder e": [0, 65535], "elder e dro": [0, 65535], "e dro that's": [0, 65535], "dro that's a": [0, 65535], "that's a question": [0, 65535], "a question how": [0, 65535], "question how shall": [0, 65535], "how shall we": [0, 65535], "shall we trie": [0, 65535], "we trie it": [0, 65535], "trie it s": [0, 65535], "s dro wee'l": [0, 65535], "dro wee'l draw": [0, 65535], "wee'l draw cuts": [0, 65535], "draw cuts for": [0, 65535], "cuts for the": [0, 65535], "for the signior": [0, 65535], "the signior till": [0, 65535], "signior till then": [0, 65535], "till then lead": [0, 65535], "then lead thou": [0, 65535], "lead thou first": [0, 65535], "thou first e": [0, 65535], "first e dro": [0, 65535], "dro nay then": [0, 65535], "nay then thus": [0, 65535], "then thus we": [0, 65535], "thus we came": [0, 65535], "we came into": [0, 65535], "came into the": [0, 65535], "into the world": [0, 65535], "the world like": [0, 65535], "world like brother": [0, 65535], "like brother and": [0, 65535], "brother and brother": [0, 65535], "and brother and": [0, 65535], "brother and now": [0, 65535], "and now let's": [0, 65535], "now let's go": [0, 65535], "let's go hand": [0, 65535], "go hand in": [0, 65535], "hand in hand": [0, 65535], "in hand not": [0, 65535], "hand not one": [0, 65535], "not one before": [0, 65535], "one before another": [0, 65535], "before another exeunt": [0, 65535], "another exeunt finis": [0, 65535], "actus quintus sc\u0153na prima": [0, 65535], "quintus sc\u0153na prima enter": [0, 65535], "sc\u0153na prima enter the": [0, 65535], "prima enter the merchant": [0, 65535], "enter the merchant and": [0, 65535], "the merchant and the": [0, 65535], "merchant and the goldsmith": [0, 65535], "and the goldsmith gold": [0, 65535], "the goldsmith gold i": [0, 65535], "goldsmith gold i am": [0, 65535], "gold i am sorry": [0, 65535], "i am sorry sir": [0, 65535], "am sorry sir that": [0, 65535], "sorry sir that i": [0, 65535], "sir that i haue": [0, 65535], "that i haue hindred": [0, 65535], "i haue hindred you": [0, 65535], "haue hindred you but": [0, 65535], "hindred you but i": [0, 65535], "you but i protest": [0, 65535], "but i protest he": [0, 65535], "i protest he had": [0, 65535], "protest he had the": [0, 65535], "he had the chaine": [0, 65535], "had the chaine of": [0, 65535], "the chaine of me": [0, 65535], "chaine of me though": [0, 65535], "of me though most": [0, 65535], "me though most dishonestly": [0, 65535], "though most dishonestly he": [0, 65535], "most dishonestly he doth": [0, 65535], "dishonestly he doth denie": [0, 65535], "he doth denie it": [0, 65535], "doth denie it mar": [0, 65535], "denie it mar how": [0, 65535], "it mar how is": [0, 65535], "mar how is the": [0, 65535], "how is the man": [0, 65535], "is the man esteem'd": [0, 65535], "the man esteem'd heere": [0, 65535], "man esteem'd heere in": [0, 65535], "esteem'd heere in the": [0, 65535], "heere in the citie": [0, 65535], "in the citie gold": [0, 65535], "the citie gold of": [0, 65535], "citie gold of very": [0, 65535], "gold of very reuerent": [0, 65535], "of very reuerent reputation": [0, 65535], "very reuerent reputation sir": [0, 65535], "reuerent reputation sir of": [0, 65535], "reputation sir of credit": [0, 65535], "sir of credit infinite": [0, 65535], "of credit infinite highly": [0, 65535], "credit infinite highly belou'd": [0, 65535], "infinite highly belou'd second": [0, 65535], "highly belou'd second to": [0, 65535], "belou'd second to none": [0, 65535], "second to none that": [0, 65535], "to none that liues": [0, 65535], "none that liues heere": [0, 65535], "that liues heere in": [0, 65535], "liues heere in the": [0, 65535], "in the citie his": [0, 65535], "the citie his word": [0, 65535], "citie his word might": [0, 65535], "his word might beare": [0, 65535], "word might beare my": [0, 65535], "might beare my wealth": [0, 65535], "beare my wealth at": [0, 65535], "my wealth at any": [0, 65535], "wealth at any time": [0, 65535], "at any time mar": [0, 65535], "any time mar speake": [0, 65535], "time mar speake softly": [0, 65535], "mar speake softly yonder": [0, 65535], "speake softly yonder as": [0, 65535], "softly yonder as i": [0, 65535], "yonder as i thinke": [0, 65535], "as i thinke he": [0, 65535], "i thinke he walkes": [0, 65535], "thinke he walkes enter": [0, 65535], "he walkes enter antipholus": [0, 65535], "walkes enter antipholus and": [0, 65535], "enter antipholus and dromio": [0, 65535], "antipholus and dromio againe": [0, 65535], "and dromio againe gold": [0, 65535], "dromio againe gold 'tis": [0, 65535], "againe gold 'tis so": [0, 65535], "gold 'tis so and": [0, 65535], "'tis so and that": [0, 65535], "so and that selfe": [0, 65535], "and that selfe chaine": [0, 65535], "that selfe chaine about": [0, 65535], "selfe chaine about his": [0, 65535], "chaine about his necke": [0, 65535], "about his necke which": [0, 65535], "his necke which he": [0, 65535], "necke which he forswore": [0, 65535], "which he forswore most": [0, 65535], "he forswore most monstrously": [0, 65535], "forswore most monstrously to": [0, 65535], "most monstrously to haue": [0, 65535], "monstrously to haue good": [0, 65535], "to haue good sir": [0, 65535], "haue good sir draw": [0, 65535], "good sir draw neere": [0, 65535], "sir draw neere to": [0, 65535], "draw neere to me": [0, 65535], "neere to me ile": [0, 65535], "to me ile speake": [0, 65535], "me ile speake to": [0, 65535], "ile speake to him": [0, 65535], "speake to him signior": [0, 65535], "to him signior antipholus": [0, 65535], "him signior antipholus i": [0, 65535], "signior antipholus i wonder": [0, 65535], "antipholus i wonder much": [0, 65535], "i wonder much that": [0, 65535], "wonder much that you": [0, 65535], "much that you would": [0, 65535], "that you would put": [0, 65535], "you would put me": [0, 65535], "would put me to": [0, 65535], "put me to this": [0, 65535], "me to this shame": [0, 65535], "to this shame and": [0, 65535], "this shame and trouble": [0, 65535], "shame and trouble and": [0, 65535], "and trouble and not": [0, 65535], "trouble and not without": [0, 65535], "and not without some": [0, 65535], "not without some scandall": [0, 65535], "without some scandall to": [0, 65535], "some scandall to your": [0, 65535], "scandall to your selfe": [0, 65535], "to your selfe with": [0, 65535], "your selfe with circumstance": [0, 65535], "selfe with circumstance and": [0, 65535], "with circumstance and oaths": [0, 65535], "circumstance and oaths so": [0, 65535], "and oaths so to": [0, 65535], "oaths so to denie": [0, 65535], "so to denie this": [0, 65535], "to denie this chaine": [0, 65535], "denie this chaine which": [0, 65535], "this chaine which now": [0, 65535], "chaine which now you": [0, 65535], "which now you weare": [0, 65535], "now you weare so": [0, 65535], "you weare so openly": [0, 65535], "weare so openly beside": [0, 65535], "so openly beside the": [0, 65535], "openly beside the charge": [0, 65535], "beside the charge the": [0, 65535], "the charge the shame": [0, 65535], "charge the shame imprisonment": [0, 65535], "the shame imprisonment you": [0, 65535], "shame imprisonment you haue": [0, 65535], "imprisonment you haue done": [0, 65535], "you haue done wrong": [0, 65535], "haue done wrong to": [0, 65535], "done wrong to this": [0, 65535], "wrong to this my": [0, 65535], "to this my honest": [0, 65535], "this my honest friend": [0, 65535], "my honest friend who": [0, 65535], "honest friend who but": [0, 65535], "friend who but for": [0, 65535], "who but for staying": [0, 65535], "but for staying on": [0, 65535], "for staying on our": [0, 65535], "staying on our controuersie": [0, 65535], "on our controuersie had": [0, 65535], "our controuersie had hoisted": [0, 65535], "controuersie had hoisted saile": [0, 65535], "had hoisted saile and": [0, 65535], "hoisted saile and put": [0, 65535], "saile and put to": [0, 65535], "and put to sea": [0, 65535], "put to sea to": [0, 65535], "to sea to day": [0, 65535], "sea to day this": [0, 65535], "to day this chaine": [0, 65535], "day this chaine you": [0, 65535], "this chaine you had": [0, 65535], "chaine you had of": [0, 65535], "you had of me": [0, 65535], "had of me can": [0, 65535], "of me can you": [0, 65535], "me can you deny": [0, 65535], "can you deny it": [0, 65535], "you deny it ant": [0, 65535], "deny it ant i": [0, 65535], "it ant i thinke": [0, 65535], "ant i thinke i": [0, 65535], "i thinke i had": [0, 65535], "thinke i had i": [0, 65535], "i had i neuer": [0, 65535], "had i neuer did": [0, 65535], "i neuer did deny": [0, 65535], "neuer did deny it": [0, 65535], "did deny it mar": [0, 65535], "deny it mar yes": [0, 65535], "it mar yes that": [0, 65535], "mar yes that you": [0, 65535], "yes that you did": [0, 65535], "that you did sir": [0, 65535], "you did sir and": [0, 65535], "did sir and forswore": [0, 65535], "sir and forswore it": [0, 65535], "and forswore it too": [0, 65535], "forswore it too ant": [0, 65535], "it too ant who": [0, 65535], "too ant who heard": [0, 65535], "ant who heard me": [0, 65535], "who heard me to": [0, 65535], "heard me to denie": [0, 65535], "me to denie it": [0, 65535], "to denie it or": [0, 65535], "denie it or forsweare": [0, 65535], "it or forsweare it": [0, 65535], "or forsweare it mar": [0, 65535], "forsweare it mar these": [0, 65535], "it mar these eares": [0, 65535], "mar these eares of": [0, 65535], "these eares of mine": [0, 65535], "eares of mine thou": [0, 65535], "of mine thou knowst": [0, 65535], "mine thou knowst did": [0, 65535], "thou knowst did hear": [0, 65535], "knowst did hear thee": [0, 65535], "did hear thee fie": [0, 65535], "hear thee fie on": [0, 65535], "thee fie on thee": [0, 65535], "fie on thee wretch": [0, 65535], "on thee wretch 'tis": [0, 65535], "thee wretch 'tis pitty": [0, 65535], "wretch 'tis pitty that": [0, 65535], "'tis pitty that thou": [0, 65535], "pitty that thou liu'st": [0, 65535], "that thou liu'st to": [0, 65535], "thou liu'st to walke": [0, 65535], "liu'st to walke where": [0, 65535], "to walke where any": [0, 65535], "walke where any honest": [0, 65535], "where any honest men": [0, 65535], "any honest men resort": [0, 65535], "honest men resort ant": [0, 65535], "men resort ant thou": [0, 65535], "resort ant thou art": [0, 65535], "ant thou art a": [0, 65535], "thou art a villaine": [0, 65535], "art a villaine to": [0, 65535], "a villaine to impeach": [0, 65535], "villaine to impeach me": [0, 65535], "to impeach me thus": [0, 65535], "impeach me thus ile": [0, 65535], "me thus ile proue": [0, 65535], "thus ile proue mine": [0, 65535], "ile proue mine honor": [0, 65535], "proue mine honor and": [0, 65535], "mine honor and mine": [0, 65535], "honor and mine honestie": [0, 65535], "and mine honestie against": [0, 65535], "mine honestie against thee": [0, 65535], "honestie against thee presently": [0, 65535], "against thee presently if": [0, 65535], "thee presently if thou": [0, 65535], "presently if thou dar'st": [0, 65535], "if thou dar'st stand": [0, 65535], "thou dar'st stand mar": [0, 65535], "dar'st stand mar i": [0, 65535], "stand mar i dare": [0, 65535], "mar i dare and": [0, 65535], "i dare and do": [0, 65535], "dare and do defie": [0, 65535], "and do defie thee": [0, 65535], "do defie thee for": [0, 65535], "defie thee for a": [0, 65535], "thee for a villaine": [0, 65535], "for a villaine they": [0, 65535], "a villaine they draw": [0, 65535], "villaine they draw enter": [0, 65535], "they draw enter adriana": [0, 65535], "draw enter adriana luciana": [0, 65535], "enter adriana luciana courtezan": [0, 65535], "adriana luciana courtezan others": [0, 65535], "luciana courtezan others adr": [0, 65535], "courtezan others adr hold": [0, 65535], "others adr hold hurt": [0, 65535], "adr hold hurt him": [0, 65535], "hold hurt him not": [0, 65535], "hurt him not for": [0, 65535], "him not for god": [0, 65535], "not for god sake": [0, 65535], "for god sake he": [0, 65535], "god sake he is": [0, 65535], "sake he is mad": [0, 65535], "he is mad some": [0, 65535], "is mad some get": [0, 65535], "mad some get within": [0, 65535], "some get within him": [0, 65535], "get within him take": [0, 65535], "within him take his": [0, 65535], "him take his sword": [0, 65535], "take his sword away": [0, 65535], "his sword away binde": [0, 65535], "sword away binde dromio": [0, 65535], "away binde dromio too": [0, 65535], "binde dromio too and": [0, 65535], "dromio too and beare": [0, 65535], "too and beare them": [0, 65535], "and beare them to": [0, 65535], "beare them to my": [0, 65535], "them to my house": [0, 65535], "to my house s": [0, 65535], "my house s dro": [0, 65535], "house s dro runne": [0, 65535], "s dro runne master": [0, 65535], "dro runne master run": [0, 65535], "runne master run for": [0, 65535], "master run for gods": [0, 65535], "run for gods sake": [0, 65535], "for gods sake take": [0, 65535], "gods sake take a": [0, 65535], "sake take a house": [0, 65535], "take a house this": [0, 65535], "a house this is": [0, 65535], "house this is some": [0, 65535], "this is some priorie": [0, 65535], "is some priorie in": [0, 65535], "some priorie in or": [0, 65535], "priorie in or we": [0, 65535], "in or we are": [0, 65535], "or we are spoyl'd": [0, 65535], "we are spoyl'd exeunt": [0, 65535], "are spoyl'd exeunt to": [0, 65535], "spoyl'd exeunt to the": [0, 65535], "exeunt to the priorie": [0, 65535], "to the priorie enter": [0, 65535], "the priorie enter ladie": [0, 65535], "priorie enter ladie abbesse": [0, 65535], "enter ladie abbesse ab": [0, 65535], "ladie abbesse ab be": [0, 65535], "abbesse ab be quiet": [0, 65535], "ab be quiet people": [0, 65535], "be quiet people wherefore": [0, 65535], "quiet people wherefore throng": [0, 65535], "people wherefore throng you": [0, 65535], "wherefore throng you hither": [0, 65535], "throng you hither adr": [0, 65535], "you hither adr to": [0, 65535], "hither adr to fetch": [0, 65535], "adr to fetch my": [0, 65535], "to fetch my poore": [0, 65535], "fetch my poore distracted": [0, 65535], "my poore distracted husband": [0, 65535], "poore distracted husband hence": [0, 65535], "distracted husband hence let": [0, 65535], "husband hence let vs": [0, 65535], "hence let vs come": [0, 65535], "let vs come in": [0, 65535], "vs come in that": [0, 65535], "come in that we": [0, 65535], "in that we may": [0, 65535], "that we may binde": [0, 65535], "we may binde him": [0, 65535], "may binde him fast": [0, 65535], "binde him fast and": [0, 65535], "him fast and beare": [0, 65535], "fast and beare him": [0, 65535], "and beare him home": [0, 65535], "beare him home for": [0, 65535], "him home for his": [0, 65535], "home for his recouerie": [0, 65535], "for his recouerie gold": [0, 65535], "his recouerie gold i": [0, 65535], "recouerie gold i knew": [0, 65535], "gold i knew he": [0, 65535], "i knew he was": [0, 65535], "knew he was not": [0, 65535], "he was not in": [0, 65535], "was not in his": [0, 65535], "not in his perfect": [0, 65535], "in his perfect wits": [0, 65535], "his perfect wits mar": [0, 65535], "perfect wits mar i": [0, 65535], "wits mar i am": [0, 65535], "mar i am sorry": [0, 65535], "i am sorry now": [0, 65535], "am sorry now that": [0, 65535], "sorry now that i": [0, 65535], "now that i did": [0, 65535], "that i did draw": [0, 65535], "i did draw on": [0, 65535], "did draw on him": [0, 65535], "draw on him ab": [0, 65535], "on him ab how": [0, 65535], "him ab how long": [0, 65535], "ab how long hath": [0, 65535], "how long hath this": [0, 65535], "long hath this possession": [0, 65535], "hath this possession held": [0, 65535], "this possession held the": [0, 65535], "possession held the man": [0, 65535], "held the man adr": [0, 65535], "the man adr this": [0, 65535], "man adr this weeke": [0, 65535], "adr this weeke he": [0, 65535], "this weeke he hath": [0, 65535], "weeke he hath beene": [0, 65535], "he hath beene heauie": [0, 65535], "hath beene heauie sower": [0, 65535], "beene heauie sower sad": [0, 65535], "heauie sower sad and": [0, 65535], "sower sad and much": [0, 65535], "sad and much different": [0, 65535], "and much different from": [0, 65535], "much different from the": [0, 65535], "different from the man": [0, 65535], "from the man he": [0, 65535], "the man he was": [0, 65535], "man he was but": [0, 65535], "he was but till": [0, 65535], "was but till this": [0, 65535], "but till this afternoone": [0, 65535], "till this afternoone his": [0, 65535], "this afternoone his passion": [0, 65535], "afternoone his passion ne're": [0, 65535], "his passion ne're brake": [0, 65535], "passion ne're brake into": [0, 65535], "ne're brake into extremity": [0, 65535], "brake into extremity of": [0, 65535], "into extremity of rage": [0, 65535], "extremity of rage ab": [0, 65535], "of rage ab hath": [0, 65535], "rage ab hath he": [0, 65535], "ab hath he not": [0, 65535], "hath he not lost": [0, 65535], "he not lost much": [0, 65535], "not lost much wealth": [0, 65535], "lost much wealth by": [0, 65535], "much wealth by wrack": [0, 65535], "wealth by wrack of": [0, 65535], "by wrack of sea": [0, 65535], "wrack of sea buried": [0, 65535], "of sea buried some": [0, 65535], "sea buried some deere": [0, 65535], "buried some deere friend": [0, 65535], "some deere friend hath": [0, 65535], "deere friend hath not": [0, 65535], "friend hath not else": [0, 65535], "hath not else his": [0, 65535], "not else his eye": [0, 65535], "else his eye stray'd": [0, 65535], "his eye stray'd his": [0, 65535], "eye stray'd his affection": [0, 65535], "stray'd his affection in": [0, 65535], "his affection in vnlawfull": [0, 65535], "affection in vnlawfull loue": [0, 65535], "in vnlawfull loue a": [0, 65535], "vnlawfull loue a sinne": [0, 65535], "loue a sinne preuailing": [0, 65535], "a sinne preuailing much": [0, 65535], "sinne preuailing much in": [0, 65535], "preuailing much in youthfull": [0, 65535], "much in youthfull men": [0, 65535], "in youthfull men who": [0, 65535], "youthfull men who giue": [0, 65535], "men who giue their": [0, 65535], "who giue their eies": [0, 65535], "giue their eies the": [0, 65535], "their eies the liberty": [0, 65535], "eies the liberty of": [0, 65535], "the liberty of gazing": [0, 65535], "liberty of gazing which": [0, 65535], "of gazing which of": [0, 65535], "gazing which of these": [0, 65535], "which of these sorrowes": [0, 65535], "of these sorrowes is": [0, 65535], "these sorrowes is he": [0, 65535], "sorrowes is he subiect": [0, 65535], "is he subiect too": [0, 65535], "he subiect too adr": [0, 65535], "subiect too adr to": [0, 65535], "too adr to none": [0, 65535], "adr to none of": [0, 65535], "to none of these": [0, 65535], "none of these except": [0, 65535], "of these except it": [0, 65535], "these except it be": [0, 65535], "except it be the": [0, 65535], "it be the last": [0, 65535], "be the last namely": [0, 65535], "the last namely some": [0, 65535], "last namely some loue": [0, 65535], "namely some loue that": [0, 65535], "some loue that drew": [0, 65535], "loue that drew him": [0, 65535], "that drew him oft": [0, 65535], "drew him oft from": [0, 65535], "him oft from home": [0, 65535], "oft from home ab": [0, 65535], "from home ab you": [0, 65535], "home ab you should": [0, 65535], "ab you should for": [0, 65535], "you should for that": [0, 65535], "should for that haue": [0, 65535], "for that haue reprehended": [0, 65535], "that haue reprehended him": [0, 65535], "haue reprehended him adr": [0, 65535], "reprehended him adr why": [0, 65535], "him adr why so": [0, 65535], "adr why so i": [0, 65535], "why so i did": [0, 65535], "so i did ab": [0, 65535], "i did ab i": [0, 65535], "did ab i but": [0, 65535], "ab i but not": [0, 65535], "i but not rough": [0, 65535], "but not rough enough": [0, 65535], "not rough enough adr": [0, 65535], "rough enough adr as": [0, 65535], "enough adr as roughly": [0, 65535], "adr as roughly as": [0, 65535], "as roughly as my": [0, 65535], "roughly as my modestie": [0, 65535], "as my modestie would": [0, 65535], "my modestie would let": [0, 65535], "modestie would let me": [0, 65535], "would let me ab": [0, 65535], "let me ab haply": [0, 65535], "me ab haply in": [0, 65535], "ab haply in priuate": [0, 65535], "haply in priuate adr": [0, 65535], "in priuate adr and": [0, 65535], "priuate adr and in": [0, 65535], "adr and in assemblies": [0, 65535], "and in assemblies too": [0, 65535], "in assemblies too ab": [0, 65535], "assemblies too ab i": [0, 65535], "too ab i but": [0, 65535], "i but not enough": [0, 65535], "but not enough adr": [0, 65535], "not enough adr it": [0, 65535], "enough adr it was": [0, 65535], "adr it was the": [0, 65535], "it was the copie": [0, 65535], "was the copie of": [0, 65535], "the copie of our": [0, 65535], "copie of our conference": [0, 65535], "of our conference in": [0, 65535], "our conference in bed": [0, 65535], "conference in bed he": [0, 65535], "in bed he slept": [0, 65535], "bed he slept not": [0, 65535], "he slept not for": [0, 65535], "slept not for my": [0, 65535], "not for my vrging": [0, 65535], "for my vrging it": [0, 65535], "my vrging it at": [0, 65535], "vrging it at boord": [0, 65535], "it at boord he": [0, 65535], "at boord he fed": [0, 65535], "boord he fed not": [0, 65535], "he fed not for": [0, 65535], "fed not for my": [0, 65535], "my vrging it alone": [0, 65535], "vrging it alone it": [0, 65535], "it alone it was": [0, 65535], "alone it was the": [0, 65535], "it was the subiect": [0, 65535], "was the subiect of": [0, 65535], "the subiect of my": [0, 65535], "subiect of my theame": [0, 65535], "of my theame in": [0, 65535], "my theame in company": [0, 65535], "theame in company i": [0, 65535], "in company i often": [0, 65535], "company i often glanced": [0, 65535], "i often glanced it": [0, 65535], "often glanced it still": [0, 65535], "glanced it still did": [0, 65535], "it still did i": [0, 65535], "still did i tell": [0, 65535], "did i tell him": [0, 65535], "i tell him it": [0, 65535], "tell him it was": [0, 65535], "him it was vilde": [0, 65535], "it was vilde and": [0, 65535], "was vilde and bad": [0, 65535], "vilde and bad ab": [0, 65535], "and bad ab and": [0, 65535], "bad ab and thereof": [0, 65535], "ab and thereof came": [0, 65535], "and thereof came it": [0, 65535], "thereof came it that": [0, 65535], "came it that the": [0, 65535], "it that the man": [0, 65535], "that the man was": [0, 65535], "the man was mad": [0, 65535], "man was mad the": [0, 65535], "was mad the venome": [0, 65535], "mad the venome clamors": [0, 65535], "the venome clamors of": [0, 65535], "venome clamors of a": [0, 65535], "clamors of a iealous": [0, 65535], "of a iealous woman": [0, 65535], "a iealous woman poisons": [0, 65535], "iealous woman poisons more": [0, 65535], "woman poisons more deadly": [0, 65535], "poisons more deadly then": [0, 65535], "more deadly then a": [0, 65535], "deadly then a mad": [0, 65535], "then a mad dogges": [0, 65535], "a mad dogges tooth": [0, 65535], "mad dogges tooth it": [0, 65535], "dogges tooth it seemes": [0, 65535], "tooth it seemes his": [0, 65535], "it seemes his sleepes": [0, 65535], "seemes his sleepes were": [0, 65535], "his sleepes were hindred": [0, 65535], "sleepes were hindred by": [0, 65535], "were hindred by thy": [0, 65535], "hindred by thy railing": [0, 65535], "by thy railing and": [0, 65535], "thy railing and thereof": [0, 65535], "railing and thereof comes": [0, 65535], "and thereof comes it": [0, 65535], "thereof comes it that": [0, 65535], "comes it that his": [0, 65535], "it that his head": [0, 65535], "that his head is": [0, 65535], "his head is light": [0, 65535], "head is light thou": [0, 65535], "is light thou saist": [0, 65535], "light thou saist his": [0, 65535], "thou saist his meate": [0, 65535], "saist his meate was": [0, 65535], "his meate was sawc'd": [0, 65535], "meate was sawc'd with": [0, 65535], "was sawc'd with thy": [0, 65535], "sawc'd with thy vpbraidings": [0, 65535], "with thy vpbraidings vnquiet": [0, 65535], "thy vpbraidings vnquiet meales": [0, 65535], "vpbraidings vnquiet meales make": [0, 65535], "vnquiet meales make ill": [0, 65535], "meales make ill digestions": [0, 65535], "make ill digestions thereof": [0, 65535], "ill digestions thereof the": [0, 65535], "digestions thereof the raging": [0, 65535], "thereof the raging fire": [0, 65535], "the raging fire of": [0, 65535], "raging fire of feauer": [0, 65535], "fire of feauer bred": [0, 65535], "of feauer bred and": [0, 65535], "feauer bred and what's": [0, 65535], "bred and what's a": [0, 65535], "and what's a feauer": [0, 65535], "what's a feauer but": [0, 65535], "a feauer but a": [0, 65535], "feauer but a fit": [0, 65535], "but a fit of": [0, 65535], "a fit of madnesse": [0, 65535], "fit of madnesse thou": [0, 65535], "of madnesse thou sayest": [0, 65535], "madnesse thou sayest his": [0, 65535], "thou sayest his sports": [0, 65535], "sayest his sports were": [0, 65535], "his sports were hindred": [0, 65535], "sports were hindred by": [0, 65535], "hindred by thy bralles": [0, 65535], "by thy bralles sweet": [0, 65535], "thy bralles sweet recreation": [0, 65535], "bralles sweet recreation barr'd": [0, 65535], "sweet recreation barr'd what": [0, 65535], "recreation barr'd what doth": [0, 65535], "barr'd what doth ensue": [0, 65535], "what doth ensue but": [0, 65535], "doth ensue but moodie": [0, 65535], "ensue but moodie and": [0, 65535], "but moodie and dull": [0, 65535], "moodie and dull melancholly": [0, 65535], "and dull melancholly kinsman": [0, 65535], "dull melancholly kinsman to": [0, 65535], "melancholly kinsman to grim": [0, 65535], "kinsman to grim and": [0, 65535], "to grim and comfortlesse": [0, 65535], "grim and comfortlesse dispaire": [0, 65535], "and comfortlesse dispaire and": [0, 65535], "comfortlesse dispaire and at": [0, 65535], "dispaire and at her": [0, 65535], "and at her heeles": [0, 65535], "at her heeles a": [0, 65535], "her heeles a huge": [0, 65535], "heeles a huge infectious": [0, 65535], "a huge infectious troope": [0, 65535], "huge infectious troope of": [0, 65535], "infectious troope of pale": [0, 65535], "troope of pale distemperatures": [0, 65535], "of pale distemperatures and": [0, 65535], "pale distemperatures and foes": [0, 65535], "distemperatures and foes to": [0, 65535], "and foes to life": [0, 65535], "foes to life in": [0, 65535], "to life in food": [0, 65535], "life in food in": [0, 65535], "in food in sport": [0, 65535], "food in sport and": [0, 65535], "in sport and life": [0, 65535], "sport and life preseruing": [0, 65535], "and life preseruing rest": [0, 65535], "life preseruing rest to": [0, 65535], "preseruing rest to be": [0, 65535], "rest to be disturb'd": [0, 65535], "to be disturb'd would": [0, 65535], "be disturb'd would mad": [0, 65535], "disturb'd would mad or": [0, 65535], "would mad or man": [0, 65535], "mad or man or": [0, 65535], "or man or beast": [0, 65535], "man or beast the": [0, 65535], "or beast the consequence": [0, 65535], "beast the consequence is": [0, 65535], "the consequence is then": [0, 65535], "consequence is then thy": [0, 65535], "is then thy iealous": [0, 65535], "then thy iealous fits": [0, 65535], "thy iealous fits hath": [0, 65535], "iealous fits hath scar'd": [0, 65535], "fits hath scar'd thy": [0, 65535], "hath scar'd thy husband": [0, 65535], "scar'd thy husband from": [0, 65535], "thy husband from the": [0, 65535], "husband from the vse": [0, 65535], "from the vse of": [0, 65535], "the vse of wits": [0, 65535], "vse of wits luc": [0, 65535], "of wits luc she": [0, 65535], "wits luc she neuer": [0, 65535], "luc she neuer reprehended": [0, 65535], "she neuer reprehended him": [0, 65535], "neuer reprehended him but": [0, 65535], "reprehended him but mildely": [0, 65535], "him but mildely when": [0, 65535], "but mildely when he": [0, 65535], "mildely when he demean'd": [0, 65535], "when he demean'd himselfe": [0, 65535], "he demean'd himselfe rough": [0, 65535], "demean'd himselfe rough rude": [0, 65535], "himselfe rough rude and": [0, 65535], "rough rude and wildly": [0, 65535], "rude and wildly why": [0, 65535], "and wildly why beare": [0, 65535], "wildly why beare you": [0, 65535], "why beare you these": [0, 65535], "beare you these rebukes": [0, 65535], "you these rebukes and": [0, 65535], "these rebukes and answer": [0, 65535], "rebukes and answer not": [0, 65535], "and answer not adri": [0, 65535], "answer not adri she": [0, 65535], "not adri she did": [0, 65535], "adri she did betray": [0, 65535], "she did betray me": [0, 65535], "did betray me to": [0, 65535], "betray me to my": [0, 65535], "me to my owne": [0, 65535], "to my owne reproofe": [0, 65535], "my owne reproofe good": [0, 65535], "owne reproofe good people": [0, 65535], "reproofe good people enter": [0, 65535], "good people enter and": [0, 65535], "people enter and lay": [0, 65535], "enter and lay hold": [0, 65535], "and lay hold on": [0, 65535], "lay hold on him": [0, 65535], "hold on him ab": [0, 65535], "on him ab no": [0, 65535], "him ab no not": [0, 65535], "ab no not a": [0, 65535], "no not a creature": [0, 65535], "not a creature enters": [0, 65535], "a creature enters in": [0, 65535], "creature enters in my": [0, 65535], "enters in my house": [0, 65535], "in my house ad": [0, 65535], "my house ad then": [0, 65535], "house ad then let": [0, 65535], "ad then let your": [0, 65535], "then let your seruants": [0, 65535], "let your seruants bring": [0, 65535], "your seruants bring my": [0, 65535], "seruants bring my husband": [0, 65535], "bring my husband forth": [0, 65535], "my husband forth ab": [0, 65535], "husband forth ab neither": [0, 65535], "forth ab neither he": [0, 65535], "ab neither he tooke": [0, 65535], "neither he tooke this": [0, 65535], "he tooke this place": [0, 65535], "tooke this place for": [0, 65535], "this place for sanctuary": [0, 65535], "place for sanctuary and": [0, 65535], "for sanctuary and it": [0, 65535], "sanctuary and it shall": [0, 65535], "and it shall priuiledge": [0, 65535], "it shall priuiledge him": [0, 65535], "shall priuiledge him from": [0, 65535], "priuiledge him from your": [0, 65535], "him from your hands": [0, 65535], "from your hands till": [0, 65535], "your hands till i": [0, 65535], "hands till i haue": [0, 65535], "till i haue brought": [0, 65535], "i haue brought him": [0, 65535], "haue brought him to": [0, 65535], "brought him to his": [0, 65535], "him to his wits": [0, 65535], "to his wits againe": [0, 65535], "his wits againe or": [0, 65535], "wits againe or loose": [0, 65535], "againe or loose my": [0, 65535], "or loose my labour": [0, 65535], "loose my labour in": [0, 65535], "my labour in assaying": [0, 65535], "labour in assaying it": [0, 65535], "in assaying it adr": [0, 65535], "assaying it adr i": [0, 65535], "it adr i will": [0, 65535], "adr i will attend": [0, 65535], "i will attend my": [0, 65535], "will attend my husband": [0, 65535], "attend my husband be": [0, 65535], "my husband be his": [0, 65535], "husband be his nurse": [0, 65535], "be his nurse diet": [0, 65535], "his nurse diet his": [0, 65535], "nurse diet his sicknesse": [0, 65535], "diet his sicknesse for": [0, 65535], "his sicknesse for it": [0, 65535], "sicknesse for it is": [0, 65535], "for it is my": [0, 65535], "it is my office": [0, 65535], "is my office and": [0, 65535], "my office and will": [0, 65535], "office and will haue": [0, 65535], "and will haue no": [0, 65535], "will haue no atturney": [0, 65535], "haue no atturney but": [0, 65535], "no atturney but my": [0, 65535], "atturney but my selfe": [0, 65535], "but my selfe and": [0, 65535], "my selfe and therefore": [0, 65535], "selfe and therefore let": [0, 65535], "and therefore let me": [0, 65535], "therefore let me haue": [0, 65535], "let me haue him": [0, 65535], "me haue him home": [0, 65535], "haue him home with": [0, 65535], "him home with me": [0, 65535], "home with me ab": [0, 65535], "with me ab be": [0, 65535], "me ab be patient": [0, 65535], "ab be patient for": [0, 65535], "be patient for i": [0, 65535], "patient for i will": [0, 65535], "for i will not": [0, 65535], "i will not let": [0, 65535], "will not let him": [0, 65535], "not let him stirre": [0, 65535], "let him stirre till": [0, 65535], "him stirre till i": [0, 65535], "stirre till i haue": [0, 65535], "till i haue vs'd": [0, 65535], "i haue vs'd the": [0, 65535], "haue vs'd the approoued": [0, 65535], "vs'd the approoued meanes": [0, 65535], "the approoued meanes i": [0, 65535], "approoued meanes i haue": [0, 65535], "meanes i haue with": [0, 65535], "i haue with wholsome": [0, 65535], "haue with wholsome sirrups": [0, 65535], "with wholsome sirrups drugges": [0, 65535], "wholsome sirrups drugges and": [0, 65535], "sirrups drugges and holy": [0, 65535], "drugges and holy prayers": [0, 65535], "and holy prayers to": [0, 65535], "holy prayers to make": [0, 65535], "prayers to make of": [0, 65535], "to make of him": [0, 65535], "make of him a": [0, 65535], "of him a formall": [0, 65535], "him a formall man": [0, 65535], "a formall man againe": [0, 65535], "formall man againe it": [0, 65535], "man againe it is": [0, 65535], "againe it is a": [0, 65535], "it is a branch": [0, 65535], "is a branch and": [0, 65535], "a branch and parcell": [0, 65535], "branch and parcell of": [0, 65535], "and parcell of mine": [0, 65535], "parcell of mine oath": [0, 65535], "of mine oath a": [0, 65535], "mine oath a charitable": [0, 65535], "oath a charitable dutie": [0, 65535], "a charitable dutie of": [0, 65535], "charitable dutie of my": [0, 65535], "dutie of my order": [0, 65535], "of my order therefore": [0, 65535], "my order therefore depart": [0, 65535], "order therefore depart and": [0, 65535], "therefore depart and leaue": [0, 65535], "depart and leaue him": [0, 65535], "and leaue him heere": [0, 65535], "leaue him heere with": [0, 65535], "him heere with me": [0, 65535], "heere with me adr": [0, 65535], "with me adr i": [0, 65535], "me adr i will": [0, 65535], "adr i will not": [0, 65535], "i will not hence": [0, 65535], "will not hence and": [0, 65535], "not hence and leaue": [0, 65535], "hence and leaue my": [0, 65535], "and leaue my husband": [0, 65535], "leaue my husband heere": [0, 65535], "my husband heere and": [0, 65535], "husband heere and ill": [0, 65535], "heere and ill it": [0, 65535], "and ill it doth": [0, 65535], "ill it doth beseeme": [0, 65535], "it doth beseeme your": [0, 65535], "doth beseeme your holinesse": [0, 65535], "beseeme your holinesse to": [0, 65535], "your holinesse to separate": [0, 65535], "holinesse to separate the": [0, 65535], "to separate the husband": [0, 65535], "separate the husband and": [0, 65535], "the husband and the": [0, 65535], "husband and the wife": [0, 65535], "and the wife ab": [0, 65535], "the wife ab be": [0, 65535], "wife ab be quiet": [0, 65535], "ab be quiet and": [0, 65535], "be quiet and depart": [0, 65535], "quiet and depart thou": [0, 65535], "and depart thou shalt": [0, 65535], "depart thou shalt not": [0, 65535], "thou shalt not haue": [0, 65535], "shalt not haue him": [0, 65535], "not haue him luc": [0, 65535], "haue him luc complaine": [0, 65535], "him luc complaine vnto": [0, 65535], "luc complaine vnto the": [0, 65535], "complaine vnto the duke": [0, 65535], "vnto the duke of": [0, 65535], "the duke of this": [0, 65535], "duke of this indignity": [0, 65535], "of this indignity adr": [0, 65535], "this indignity adr come": [0, 65535], "indignity adr come go": [0, 65535], "adr come go i": [0, 65535], "come go i will": [0, 65535], "go i will fall": [0, 65535], "i will fall prostrate": [0, 65535], "will fall prostrate at": [0, 65535], "fall prostrate at his": [0, 65535], "prostrate at his feete": [0, 65535], "at his feete and": [0, 65535], "his feete and neuer": [0, 65535], "feete and neuer rise": [0, 65535], "and neuer rise vntill": [0, 65535], "neuer rise vntill my": [0, 65535], "rise vntill my teares": [0, 65535], "vntill my teares and": [0, 65535], "my teares and prayers": [0, 65535], "teares and prayers haue": [0, 65535], "and prayers haue won": [0, 65535], "prayers haue won his": [0, 65535], "haue won his grace": [0, 65535], "won his grace to": [0, 65535], "his grace to come": [0, 65535], "grace to come in": [0, 65535], "to come in person": [0, 65535], "come in person hither": [0, 65535], "in person hither and": [0, 65535], "person hither and take": [0, 65535], "hither and take perforce": [0, 65535], "and take perforce my": [0, 65535], "take perforce my husband": [0, 65535], "perforce my husband from": [0, 65535], "my husband from the": [0, 65535], "husband from the abbesse": [0, 65535], "from the abbesse mar": [0, 65535], "the abbesse mar by": [0, 65535], "abbesse mar by this": [0, 65535], "mar by this i": [0, 65535], "by this i thinke": [0, 65535], "this i thinke the": [0, 65535], "i thinke the diall": [0, 65535], "thinke the diall points": [0, 65535], "the diall points at": [0, 65535], "diall points at fiue": [0, 65535], "points at fiue anon": [0, 65535], "at fiue anon i'me": [0, 65535], "fiue anon i'me sure": [0, 65535], "anon i'me sure the": [0, 65535], "i'me sure the duke": [0, 65535], "sure the duke himselfe": [0, 65535], "the duke himselfe in": [0, 65535], "duke himselfe in person": [0, 65535], "himselfe in person comes": [0, 65535], "in person comes this": [0, 65535], "person comes this way": [0, 65535], "comes this way to": [0, 65535], "this way to the": [0, 65535], "way to the melancholly": [0, 65535], "to the melancholly vale": [0, 65535], "the melancholly vale the": [0, 65535], "melancholly vale the place": [0, 65535], "vale the place of": [0, 65535], "the place of depth": [0, 65535], "place of depth and": [0, 65535], "of depth and sorrie": [0, 65535], "depth and sorrie execution": [0, 65535], "and sorrie execution behinde": [0, 65535], "sorrie execution behinde the": [0, 65535], "execution behinde the ditches": [0, 65535], "behinde the ditches of": [0, 65535], "the ditches of the": [0, 65535], "ditches of the abbey": [0, 65535], "of the abbey heere": [0, 65535], "the abbey heere gold": [0, 65535], "abbey heere gold vpon": [0, 65535], "heere gold vpon what": [0, 65535], "gold vpon what cause": [0, 65535], "vpon what cause mar": [0, 65535], "what cause mar to": [0, 65535], "cause mar to see": [0, 65535], "mar to see a": [0, 65535], "to see a reuerent": [0, 65535], "see a reuerent siracusian": [0, 65535], "a reuerent siracusian merchant": [0, 65535], "reuerent siracusian merchant who": [0, 65535], "siracusian merchant who put": [0, 65535], "merchant who put vnluckily": [0, 65535], "who put vnluckily into": [0, 65535], "put vnluckily into this": [0, 65535], "vnluckily into this bay": [0, 65535], "into this bay against": [0, 65535], "this bay against the": [0, 65535], "bay against the lawes": [0, 65535], "against the lawes and": [0, 65535], "the lawes and statutes": [0, 65535], "lawes and statutes of": [0, 65535], "and statutes of this": [0, 65535], "statutes of this towne": [0, 65535], "of this towne beheaded": [0, 65535], "this towne beheaded publikely": [0, 65535], "towne beheaded publikely for": [0, 65535], "beheaded publikely for his": [0, 65535], "publikely for his offence": [0, 65535], "for his offence gold": [0, 65535], "his offence gold see": [0, 65535], "offence gold see where": [0, 65535], "gold see where they": [0, 65535], "see where they come": [0, 65535], "where they come we": [0, 65535], "they come we wil": [0, 65535], "come we wil behold": [0, 65535], "we wil behold his": [0, 65535], "wil behold his death": [0, 65535], "behold his death luc": [0, 65535], "his death luc kneele": [0, 65535], "death luc kneele to": [0, 65535], "luc kneele to the": [0, 65535], "kneele to the duke": [0, 65535], "to the duke before": [0, 65535], "the duke before he": [0, 65535], "duke before he passe": [0, 65535], "before he passe the": [0, 65535], "he passe the abbey": [0, 65535], "passe the abbey enter": [0, 65535], "the abbey enter the": [0, 65535], "abbey enter the duke": [0, 65535], "enter the duke of": [0, 65535], "the duke of ephesus": [0, 65535], "duke of ephesus and": [0, 65535], "of ephesus and the": [0, 65535], "ephesus and the merchant": [0, 65535], "and the merchant of": [0, 65535], "the merchant of siracuse": [0, 65535], "merchant of siracuse bare": [0, 65535], "of siracuse bare head": [0, 65535], "siracuse bare head with": [0, 65535], "bare head with the": [0, 65535], "head with the headsman": [0, 65535], "with the headsman other": [0, 65535], "the headsman other officers": [0, 65535], "headsman other officers duke": [0, 65535], "other officers duke yet": [0, 65535], "officers duke yet once": [0, 65535], "duke yet once againe": [0, 65535], "yet once againe proclaime": [0, 65535], "once againe proclaime it": [0, 65535], "againe proclaime it publikely": [0, 65535], "proclaime it publikely if": [0, 65535], "it publikely if any": [0, 65535], "publikely if any friend": [0, 65535], "if any friend will": [0, 65535], "any friend will pay": [0, 65535], "friend will pay the": [0, 65535], "will pay the summe": [0, 65535], "pay the summe for": [0, 65535], "the summe for him": [0, 65535], "summe for him he": [0, 65535], "for him he shall": [0, 65535], "him he shall not": [0, 65535], "he shall not die": [0, 65535], "shall not die so": [0, 65535], "not die so much": [0, 65535], "die so much we": [0, 65535], "so much we tender": [0, 65535], "much we tender him": [0, 65535], "we tender him adr": [0, 65535], "tender him adr iustice": [0, 65535], "him adr iustice most": [0, 65535], "adr iustice most sacred": [0, 65535], "iustice most sacred duke": [0, 65535], "most sacred duke against": [0, 65535], "sacred duke against the": [0, 65535], "duke against the abbesse": [0, 65535], "against the abbesse duke": [0, 65535], "the abbesse duke she": [0, 65535], "abbesse duke she is": [0, 65535], "duke she is a": [0, 65535], "she is a vertuous": [0, 65535], "is a vertuous and": [0, 65535], "a vertuous and a": [0, 65535], "vertuous and a reuerend": [0, 65535], "and a reuerend lady": [0, 65535], "a reuerend lady it": [0, 65535], "reuerend lady it cannot": [0, 65535], "lady it cannot be": [0, 65535], "it cannot be that": [0, 65535], "cannot be that she": [0, 65535], "be that she hath": [0, 65535], "that she hath done": [0, 65535], "she hath done thee": [0, 65535], "hath done thee wrong": [0, 65535], "done thee wrong adr": [0, 65535], "thee wrong adr may": [0, 65535], "wrong adr may it": [0, 65535], "adr may it please": [0, 65535], "may it please your": [0, 65535], "it please your grace": [0, 65535], "please your grace antipholus": [0, 65535], "your grace antipholus my": [0, 65535], "grace antipholus my husba": [0, 65535], "antipholus my husba n": [0, 65535], "my husba n d": [0, 65535], "husba n d who": [0, 65535], "n d who i": [0, 65535], "d who i made": [0, 65535], "who i made lord": [0, 65535], "i made lord of": [0, 65535], "made lord of me": [0, 65535], "lord of me and": [0, 65535], "of me and all": [0, 65535], "me and all i": [0, 65535], "and all i had": [0, 65535], "all i had at": [0, 65535], "i had at your": [0, 65535], "had at your important": [0, 65535], "at your important letters": [0, 65535], "your important letters this": [0, 65535], "important letters this ill": [0, 65535], "letters this ill day": [0, 65535], "this ill day a": [0, 65535], "ill day a most": [0, 65535], "day a most outragious": [0, 65535], "a most outragious fit": [0, 65535], "most outragious fit of": [0, 65535], "outragious fit of madnesse": [0, 65535], "fit of madnesse tooke": [0, 65535], "of madnesse tooke him": [0, 65535], "madnesse tooke him that": [0, 65535], "tooke him that desp'rately": [0, 65535], "him that desp'rately he": [0, 65535], "that desp'rately he hurried": [0, 65535], "desp'rately he hurried through": [0, 65535], "he hurried through the": [0, 65535], "hurried through the streete": [0, 65535], "through the streete with": [0, 65535], "the streete with him": [0, 65535], "streete with him his": [0, 65535], "with him his bondman": [0, 65535], "him his bondman all": [0, 65535], "his bondman all as": [0, 65535], "bondman all as mad": [0, 65535], "all as mad as": [0, 65535], "as mad as he": [0, 65535], "mad as he doing": [0, 65535], "as he doing displeasure": [0, 65535], "he doing displeasure to": [0, 65535], "doing displeasure to the": [0, 65535], "displeasure to the citizens": [0, 65535], "to the citizens by": [0, 65535], "the citizens by rushing": [0, 65535], "citizens by rushing in": [0, 65535], "by rushing in their": [0, 65535], "rushing in their houses": [0, 65535], "in their houses bearing": [0, 65535], "their houses bearing thence": [0, 65535], "houses bearing thence rings": [0, 65535], "bearing thence rings iewels": [0, 65535], "thence rings iewels any": [0, 65535], "rings iewels any thing": [0, 65535], "iewels any thing his": [0, 65535], "any thing his rage": [0, 65535], "thing his rage did": [0, 65535], "his rage did like": [0, 65535], "rage did like once": [0, 65535], "did like once did": [0, 65535], "like once did i": [0, 65535], "once did i get": [0, 65535], "did i get him": [0, 65535], "i get him bound": [0, 65535], "get him bound and": [0, 65535], "him bound and sent": [0, 65535], "bound and sent him": [0, 65535], "and sent him home": [0, 65535], "sent him home whil'st": [0, 65535], "him home whil'st to": [0, 65535], "home whil'st to take": [0, 65535], "whil'st to take order": [0, 65535], "to take order for": [0, 65535], "take order for the": [0, 65535], "order for the wrongs": [0, 65535], "for the wrongs i": [0, 65535], "the wrongs i went": [0, 65535], "wrongs i went that": [0, 65535], "i went that heere": [0, 65535], "went that heere and": [0, 65535], "that heere and there": [0, 65535], "heere and there his": [0, 65535], "and there his furie": [0, 65535], "there his furie had": [0, 65535], "his furie had committed": [0, 65535], "furie had committed anon": [0, 65535], "had committed anon i": [0, 65535], "committed anon i wot": [0, 65535], "anon i wot not": [0, 65535], "i wot not by": [0, 65535], "wot not by what": [0, 65535], "not by what strong": [0, 65535], "by what strong escape": [0, 65535], "what strong escape he": [0, 65535], "strong escape he broke": [0, 65535], "escape he broke from": [0, 65535], "he broke from those": [0, 65535], "broke from those that": [0, 65535], "from those that had": [0, 65535], "those that had the": [0, 65535], "that had the guard": [0, 65535], "had the guard of": [0, 65535], "the guard of him": [0, 65535], "guard of him and": [0, 65535], "of him and with": [0, 65535], "him and with his": [0, 65535], "and with his mad": [0, 65535], "with his mad attendant": [0, 65535], "his mad attendant and": [0, 65535], "mad attendant and himselfe": [0, 65535], "attendant and himselfe each": [0, 65535], "and himselfe each one": [0, 65535], "himselfe each one with": [0, 65535], "each one with irefull": [0, 65535], "one with irefull passion": [0, 65535], "with irefull passion with": [0, 65535], "irefull passion with drawne": [0, 65535], "passion with drawne swords": [0, 65535], "with drawne swords met": [0, 65535], "drawne swords met vs": [0, 65535], "swords met vs againe": [0, 65535], "met vs againe and": [0, 65535], "vs againe and madly": [0, 65535], "againe and madly bent": [0, 65535], "and madly bent on": [0, 65535], "madly bent on vs": [0, 65535], "bent on vs chac'd": [0, 65535], "on vs chac'd vs": [0, 65535], "vs chac'd vs away": [0, 65535], "chac'd vs away till": [0, 65535], "vs away till raising": [0, 65535], "away till raising of": [0, 65535], "till raising of more": [0, 65535], "raising of more aide": [0, 65535], "of more aide we": [0, 65535], "more aide we came": [0, 65535], "aide we came againe": [0, 65535], "we came againe to": [0, 65535], "came againe to binde": [0, 65535], "againe to binde them": [0, 65535], "to binde them then": [0, 65535], "binde them then they": [0, 65535], "them then they fled": [0, 65535], "then they fled into": [0, 65535], "they fled into this": [0, 65535], "fled into this abbey": [0, 65535], "into this abbey whether": [0, 65535], "this abbey whether we": [0, 65535], "abbey whether we pursu'd": [0, 65535], "whether we pursu'd them": [0, 65535], "we pursu'd them and": [0, 65535], "pursu'd them and heere": [0, 65535], "them and heere the": [0, 65535], "and heere the abbesse": [0, 65535], "heere the abbesse shuts": [0, 65535], "the abbesse shuts the": [0, 65535], "abbesse shuts the gates": [0, 65535], "shuts the gates on": [0, 65535], "the gates on vs": [0, 65535], "gates on vs and": [0, 65535], "on vs and will": [0, 65535], "vs and will not": [0, 65535], "and will not suffer": [0, 65535], "will not suffer vs": [0, 65535], "not suffer vs to": [0, 65535], "suffer vs to fetch": [0, 65535], "vs to fetch him": [0, 65535], "to fetch him out": [0, 65535], "fetch him out nor": [0, 65535], "him out nor send": [0, 65535], "out nor send him": [0, 65535], "nor send him forth": [0, 65535], "send him forth that": [0, 65535], "him forth that we": [0, 65535], "forth that we may": [0, 65535], "that we may beare": [0, 65535], "we may beare him": [0, 65535], "may beare him hence": [0, 65535], "beare him hence therefore": [0, 65535], "him hence therefore most": [0, 65535], "hence therefore most gracious": [0, 65535], "therefore most gracious duke": [0, 65535], "most gracious duke with": [0, 65535], "gracious duke with thy": [0, 65535], "duke with thy command": [0, 65535], "with thy command let": [0, 65535], "thy command let him": [0, 65535], "command let him be": [0, 65535], "let him be brought": [0, 65535], "him be brought forth": [0, 65535], "be brought forth and": [0, 65535], "brought forth and borne": [0, 65535], "forth and borne hence": [0, 65535], "and borne hence for": [0, 65535], "borne hence for helpe": [0, 65535], "hence for helpe duke": [0, 65535], "for helpe duke long": [0, 65535], "helpe duke long since": [0, 65535], "duke long since thy": [0, 65535], "long since thy husband": [0, 65535], "since thy husband seru'd": [0, 65535], "thy husband seru'd me": [0, 65535], "husband seru'd me in": [0, 65535], "seru'd me in my": [0, 65535], "me in my wars": [0, 65535], "in my wars and": [0, 65535], "my wars and i": [0, 65535], "wars and i to": [0, 65535], "and i to thee": [0, 65535], "i to thee ingag'd": [0, 65535], "to thee ingag'd a": [0, 65535], "thee ingag'd a princes": [0, 65535], "ingag'd a princes word": [0, 65535], "a princes word when": [0, 65535], "princes word when thou": [0, 65535], "word when thou didst": [0, 65535], "when thou didst make": [0, 65535], "thou didst make him": [0, 65535], "didst make him master": [0, 65535], "make him master of": [0, 65535], "him master of thy": [0, 65535], "master of thy bed": [0, 65535], "of thy bed to": [0, 65535], "thy bed to do": [0, 65535], "bed to do him": [0, 65535], "to do him all": [0, 65535], "do him all the": [0, 65535], "him all the grace": [0, 65535], "all the grace and": [0, 65535], "the grace and good": [0, 65535], "grace and good i": [0, 65535], "and good i could": [0, 65535], "good i could go": [0, 65535], "i could go some": [0, 65535], "could go some of": [0, 65535], "go some of you": [0, 65535], "some of you knocke": [0, 65535], "of you knocke at": [0, 65535], "you knocke at the": [0, 65535], "knocke at the abbey": [0, 65535], "at the abbey gate": [0, 65535], "the abbey gate and": [0, 65535], "abbey gate and bid": [0, 65535], "gate and bid the": [0, 65535], "and bid the lady": [0, 65535], "bid the lady abbesse": [0, 65535], "the lady abbesse come": [0, 65535], "lady abbesse come to": [0, 65535], "abbesse come to me": [0, 65535], "come to me i": [0, 65535], "to me i will": [0, 65535], "me i will determine": [0, 65535], "i will determine this": [0, 65535], "will determine this before": [0, 65535], "determine this before i": [0, 65535], "this before i stirre": [0, 65535], "before i stirre enter": [0, 65535], "i stirre enter a": [0, 65535], "stirre enter a messenger": [0, 65535], "enter a messenger oh": [0, 65535], "a messenger oh mistris": [0, 65535], "messenger oh mistris mistris": [0, 65535], "oh mistris mistris shift": [0, 65535], "mistris mistris shift and": [0, 65535], "mistris shift and saue": [0, 65535], "shift and saue your": [0, 65535], "and saue your selfe": [0, 65535], "saue your selfe my": [0, 65535], "your selfe my master": [0, 65535], "selfe my master and": [0, 65535], "my master and his": [0, 65535], "master and his man": [0, 65535], "and his man are": [0, 65535], "his man are both": [0, 65535], "man are both broke": [0, 65535], "are both broke loose": [0, 65535], "both broke loose beaten": [0, 65535], "broke loose beaten the": [0, 65535], "loose beaten the maids": [0, 65535], "beaten the maids a": [0, 65535], "the maids a row": [0, 65535], "maids a row and": [0, 65535], "a row and bound": [0, 65535], "row and bound the": [0, 65535], "and bound the doctor": [0, 65535], "bound the doctor whose": [0, 65535], "the doctor whose beard": [0, 65535], "doctor whose beard they": [0, 65535], "whose beard they haue": [0, 65535], "beard they haue sindg'd": [0, 65535], "they haue sindg'd off": [0, 65535], "haue sindg'd off with": [0, 65535], "sindg'd off with brands": [0, 65535], "off with brands of": [0, 65535], "with brands of fire": [0, 65535], "brands of fire and": [0, 65535], "of fire and euer": [0, 65535], "fire and euer as": [0, 65535], "and euer as it": [0, 65535], "euer as it blaz'd": [0, 65535], "as it blaz'd they": [0, 65535], "it blaz'd they threw": [0, 65535], "blaz'd they threw on": [0, 65535], "they threw on him": [0, 65535], "threw on him great": [0, 65535], "on him great pailes": [0, 65535], "him great pailes of": [0, 65535], "great pailes of puddled": [0, 65535], "pailes of puddled myre": [0, 65535], "of puddled myre to": [0, 65535], "puddled myre to quench": [0, 65535], "myre to quench the": [0, 65535], "to quench the haire": [0, 65535], "quench the haire my": [0, 65535], "the haire my mr": [0, 65535], "haire my mr preaches": [0, 65535], "my mr preaches patience": [0, 65535], "mr preaches patience to": [0, 65535], "preaches patience to him": [0, 65535], "patience to him and": [0, 65535], "to him and the": [0, 65535], "him and the while": [0, 65535], "and the while his": [0, 65535], "the while his man": [0, 65535], "while his man with": [0, 65535], "his man with cizers": [0, 65535], "man with cizers nickes": [0, 65535], "with cizers nickes him": [0, 65535], "cizers nickes him like": [0, 65535], "nickes him like a": [0, 65535], "him like a foole": [0, 65535], "like a foole and": [0, 65535], "a foole and sure": [0, 65535], "foole and sure vnlesse": [0, 65535], "and sure vnlesse you": [0, 65535], "sure vnlesse you send": [0, 65535], "vnlesse you send some": [0, 65535], "you send some present": [0, 65535], "send some present helpe": [0, 65535], "some present helpe betweene": [0, 65535], "present helpe betweene them": [0, 65535], "helpe betweene them they": [0, 65535], "betweene them they will": [0, 65535], "them they will kill": [0, 65535], "they will kill the": [0, 65535], "will kill the coniurer": [0, 65535], "kill the coniurer adr": [0, 65535], "the coniurer adr peace": [0, 65535], "coniurer adr peace foole": [0, 65535], "adr peace foole thy": [0, 65535], "peace foole thy master": [0, 65535], "foole thy master and": [0, 65535], "thy master and his": [0, 65535], "his man are here": [0, 65535], "man are here and": [0, 65535], "are here and that": [0, 65535], "here and that is": [0, 65535], "and that is false": [0, 65535], "that is false thou": [0, 65535], "is false thou dost": [0, 65535], "false thou dost report": [0, 65535], "thou dost report to": [0, 65535], "dost report to vs": [0, 65535], "report to vs mess": [0, 65535], "to vs mess mistris": [0, 65535], "vs mess mistris vpon": [0, 65535], "mess mistris vpon my": [0, 65535], "mistris vpon my life": [0, 65535], "vpon my life i": [0, 65535], "my life i tel": [0, 65535], "life i tel you": [0, 65535], "i tel you true": [0, 65535], "tel you true i": [0, 65535], "you true i haue": [0, 65535], "true i haue not": [0, 65535], "i haue not breath'd": [0, 65535], "haue not breath'd almost": [0, 65535], "not breath'd almost since": [0, 65535], "breath'd almost since i": [0, 65535], "almost since i did": [0, 65535], "since i did see": [0, 65535], "i did see it": [0, 65535], "did see it he": [0, 65535], "see it he cries": [0, 65535], "it he cries for": [0, 65535], "he cries for you": [0, 65535], "cries for you and": [0, 65535], "for you and vowes": [0, 65535], "you and vowes if": [0, 65535], "and vowes if he": [0, 65535], "vowes if he can": [0, 65535], "if he can take": [0, 65535], "he can take you": [0, 65535], "can take you to": [0, 65535], "take you to scorch": [0, 65535], "you to scorch your": [0, 65535], "to scorch your face": [0, 65535], "scorch your face and": [0, 65535], "your face and to": [0, 65535], "face and to disfigure": [0, 65535], "and to disfigure you": [0, 65535], "to disfigure you cry": [0, 65535], "disfigure you cry within": [0, 65535], "you cry within harke": [0, 65535], "cry within harke harke": [0, 65535], "within harke harke i": [0, 65535], "harke harke i heare": [0, 65535], "harke i heare him": [0, 65535], "i heare him mistris": [0, 65535], "heare him mistris flie": [0, 65535], "him mistris flie be": [0, 65535], "mistris flie be gone": [0, 65535], "flie be gone duke": [0, 65535], "be gone duke come": [0, 65535], "gone duke come stand": [0, 65535], "duke come stand by": [0, 65535], "come stand by me": [0, 65535], "stand by me feare": [0, 65535], "by me feare nothing": [0, 65535], "me feare nothing guard": [0, 65535], "feare nothing guard with": [0, 65535], "nothing guard with halberds": [0, 65535], "guard with halberds adr": [0, 65535], "with halberds adr ay": [0, 65535], "halberds adr ay me": [0, 65535], "adr ay me it": [0, 65535], "ay me it is": [0, 65535], "me it is my": [0, 65535], "it is my husband": [0, 65535], "is my husband witnesse": [0, 65535], "my husband witnesse you": [0, 65535], "husband witnesse you that": [0, 65535], "witnesse you that he": [0, 65535], "you that he is": [0, 65535], "that he is borne": [0, 65535], "he is borne about": [0, 65535], "is borne about inuisible": [0, 65535], "borne about inuisible euen": [0, 65535], "about inuisible euen now": [0, 65535], "inuisible euen now we": [0, 65535], "euen now we hous'd": [0, 65535], "now we hous'd him": [0, 65535], "we hous'd him in": [0, 65535], "hous'd him in the": [0, 65535], "him in the abbey": [0, 65535], "in the abbey heere": [0, 65535], "the abbey heere and": [0, 65535], "abbey heere and now": [0, 65535], "heere and now he's": [0, 65535], "and now he's there": [0, 65535], "now he's there past": [0, 65535], "he's there past thought": [0, 65535], "there past thought of": [0, 65535], "past thought of humane": [0, 65535], "thought of humane reason": [0, 65535], "of humane reason enter": [0, 65535], "humane reason enter antipholus": [0, 65535], "reason enter antipholus and": [0, 65535], "enter antipholus and e": [0, 65535], "antipholus and e dromio": [0, 65535], "and e dromio of": [0, 65535], "e dromio of ephesus": [0, 65535], "dromio of ephesus e": [0, 65535], "of ephesus e ant": [0, 65535], "ephesus e ant iustice": [0, 65535], "e ant iustice most": [0, 65535], "ant iustice most gracious": [0, 65535], "iustice most gracious duke": [0, 65535], "most gracious duke oh": [0, 65535], "gracious duke oh grant": [0, 65535], "duke oh grant me": [0, 65535], "oh grant me iustice": [0, 65535], "grant me iustice euen": [0, 65535], "me iustice euen for": [0, 65535], "iustice euen for the": [0, 65535], "euen for the seruice": [0, 65535], "for the seruice that": [0, 65535], "the seruice that long": [0, 65535], "seruice that long since": [0, 65535], "that long since i": [0, 65535], "long since i did": [0, 65535], "since i did thee": [0, 65535], "i did thee when": [0, 65535], "did thee when i": [0, 65535], "thee when i bestrid": [0, 65535], "when i bestrid thee": [0, 65535], "i bestrid thee in": [0, 65535], "bestrid thee in the": [0, 65535], "thee in the warres": [0, 65535], "in the warres and": [0, 65535], "the warres and tooke": [0, 65535], "warres and tooke deepe": [0, 65535], "and tooke deepe scarres": [0, 65535], "tooke deepe scarres to": [0, 65535], "deepe scarres to saue": [0, 65535], "scarres to saue thy": [0, 65535], "to saue thy life": [0, 65535], "saue thy life euen": [0, 65535], "thy life euen for": [0, 65535], "life euen for the": [0, 65535], "euen for the blood": [0, 65535], "for the blood that": [0, 65535], "the blood that then": [0, 65535], "blood that then i": [0, 65535], "that then i lost": [0, 65535], "then i lost for": [0, 65535], "i lost for thee": [0, 65535], "lost for thee now": [0, 65535], "for thee now grant": [0, 65535], "thee now grant me": [0, 65535], "now grant me iustice": [0, 65535], "grant me iustice mar": [0, 65535], "me iustice mar fat": [0, 65535], "iustice mar fat vnlesse": [0, 65535], "mar fat vnlesse the": [0, 65535], "fat vnlesse the feare": [0, 65535], "vnlesse the feare of": [0, 65535], "the feare of death": [0, 65535], "feare of death doth": [0, 65535], "of death doth make": [0, 65535], "death doth make me": [0, 65535], "doth make me dote": [0, 65535], "make me dote i": [0, 65535], "me dote i see": [0, 65535], "dote i see my": [0, 65535], "i see my sonne": [0, 65535], "see my sonne antipholus": [0, 65535], "my sonne antipholus and": [0, 65535], "sonne antipholus and dromio": [0, 65535], "antipholus and dromio e": [0, 65535], "and dromio e ant": [0, 65535], "dromio e ant iustice": [0, 65535], "e ant iustice sweet": [0, 65535], "ant iustice sweet prince": [0, 65535], "iustice sweet prince against": [0, 65535], "sweet prince against that": [0, 65535], "prince against that woman": [0, 65535], "against that woman there": [0, 65535], "that woman there she": [0, 65535], "woman there she whom": [0, 65535], "there she whom thou": [0, 65535], "she whom thou gau'st": [0, 65535], "whom thou gau'st to": [0, 65535], "thou gau'st to me": [0, 65535], "gau'st to me to": [0, 65535], "to me to be": [0, 65535], "me to be my": [0, 65535], "to be my wife": [0, 65535], "be my wife that": [0, 65535], "my wife that hath": [0, 65535], "wife that hath abused": [0, 65535], "that hath abused and": [0, 65535], "hath abused and dishonored": [0, 65535], "abused and dishonored me": [0, 65535], "and dishonored me euen": [0, 65535], "dishonored me euen in": [0, 65535], "me euen in the": [0, 65535], "euen in the strength": [0, 65535], "in the strength and": [0, 65535], "the strength and height": [0, 65535], "strength and height of": [0, 65535], "and height of iniurie": [0, 65535], "height of iniurie beyond": [0, 65535], "of iniurie beyond imagination": [0, 65535], "iniurie beyond imagination is": [0, 65535], "beyond imagination is the": [0, 65535], "imagination is the wrong": [0, 65535], "is the wrong that": [0, 65535], "the wrong that she": [0, 65535], "wrong that she this": [0, 65535], "that she this day": [0, 65535], "she this day hath": [0, 65535], "this day hath shamelesse": [0, 65535], "day hath shamelesse throwne": [0, 65535], "hath shamelesse throwne on": [0, 65535], "shamelesse throwne on me": [0, 65535], "throwne on me duke": [0, 65535], "on me duke discouer": [0, 65535], "me duke discouer how": [0, 65535], "duke discouer how and": [0, 65535], "discouer how and thou": [0, 65535], "how and thou shalt": [0, 65535], "and thou shalt finde": [0, 65535], "thou shalt finde me": [0, 65535], "shalt finde me iust": [0, 65535], "finde me iust e": [0, 65535], "me iust e ant": [0, 65535], "iust e ant this": [0, 65535], "e ant this day": [0, 65535], "ant this day great": [0, 65535], "this day great duke": [0, 65535], "day great duke she": [0, 65535], "great duke she shut": [0, 65535], "duke she shut the": [0, 65535], "she shut the doores": [0, 65535], "shut the doores vpon": [0, 65535], "the doores vpon me": [0, 65535], "doores vpon me while": [0, 65535], "vpon me while she": [0, 65535], "me while she with": [0, 65535], "while she with harlots": [0, 65535], "she with harlots feasted": [0, 65535], "with harlots feasted in": [0, 65535], "harlots feasted in my": [0, 65535], "feasted in my house": [0, 65535], "in my house duke": [0, 65535], "my house duke a": [0, 65535], "house duke a greeuous": [0, 65535], "duke a greeuous fault": [0, 65535], "a greeuous fault say": [0, 65535], "greeuous fault say woman": [0, 65535], "fault say woman didst": [0, 65535], "say woman didst thou": [0, 65535], "woman didst thou so": [0, 65535], "didst thou so adr": [0, 65535], "thou so adr no": [0, 65535], "so adr no my": [0, 65535], "adr no my good": [0, 65535], "no my good lord": [0, 65535], "my good lord my": [0, 65535], "good lord my selfe": [0, 65535], "lord my selfe he": [0, 65535], "my selfe he and": [0, 65535], "selfe he and my": [0, 65535], "he and my sister": [0, 65535], "and my sister to": [0, 65535], "my sister to day": [0, 65535], "sister to day did": [0, 65535], "to day did dine": [0, 65535], "day did dine together": [0, 65535], "did dine together so": [0, 65535], "dine together so befall": [0, 65535], "together so befall my": [0, 65535], "so befall my soule": [0, 65535], "befall my soule as": [0, 65535], "my soule as this": [0, 65535], "soule as this is": [0, 65535], "as this is false": [0, 65535], "this is false he": [0, 65535], "is false he burthens": [0, 65535], "false he burthens me": [0, 65535], "he burthens me withall": [0, 65535], "burthens me withall luc": [0, 65535], "me withall luc nere": [0, 65535], "withall luc nere may": [0, 65535], "luc nere may i": [0, 65535], "nere may i looke": [0, 65535], "may i looke on": [0, 65535], "i looke on day": [0, 65535], "looke on day nor": [0, 65535], "on day nor sleepe": [0, 65535], "day nor sleepe on": [0, 65535], "nor sleepe on night": [0, 65535], "sleepe on night but": [0, 65535], "on night but she": [0, 65535], "night but she tels": [0, 65535], "but she tels to": [0, 65535], "she tels to your": [0, 65535], "tels to your highnesse": [0, 65535], "to your highnesse simple": [0, 65535], "your highnesse simple truth": [0, 65535], "highnesse simple truth gold": [0, 65535], "simple truth gold o": [0, 65535], "truth gold o periur'd": [0, 65535], "gold o periur'd woman": [0, 65535], "o periur'd woman they": [0, 65535], "periur'd woman they are": [0, 65535], "woman they are both": [0, 65535], "they are both forsworne": [0, 65535], "are both forsworne in": [0, 65535], "both forsworne in this": [0, 65535], "forsworne in this the": [0, 65535], "in this the madman": [0, 65535], "this the madman iustly": [0, 65535], "the madman iustly chargeth": [0, 65535], "madman iustly chargeth them": [0, 65535], "iustly chargeth them e": [0, 65535], "chargeth them e ant": [0, 65535], "them e ant my": [0, 65535], "e ant my liege": [0, 65535], "ant my liege i": [0, 65535], "my liege i am": [0, 65535], "liege i am aduised": [0, 65535], "i am aduised what": [0, 65535], "am aduised what i": [0, 65535], "aduised what i say": [0, 65535], "what i say neither": [0, 65535], "i say neither disturbed": [0, 65535], "say neither disturbed with": [0, 65535], "neither disturbed with the": [0, 65535], "disturbed with the effect": [0, 65535], "with the effect of": [0, 65535], "the effect of wine": [0, 65535], "effect of wine nor": [0, 65535], "of wine nor headie": [0, 65535], "wine nor headie rash": [0, 65535], "nor headie rash prouoak'd": [0, 65535], "headie rash prouoak'd with": [0, 65535], "rash prouoak'd with raging": [0, 65535], "prouoak'd with raging ire": [0, 65535], "with raging ire albeit": [0, 65535], "raging ire albeit my": [0, 65535], "ire albeit my wrongs": [0, 65535], "albeit my wrongs might": [0, 65535], "my wrongs might make": [0, 65535], "wrongs might make one": [0, 65535], "might make one wiser": [0, 65535], "make one wiser mad": [0, 65535], "one wiser mad this": [0, 65535], "wiser mad this woman": [0, 65535], "mad this woman lock'd": [0, 65535], "this woman lock'd me": [0, 65535], "woman lock'd me out": [0, 65535], "lock'd me out this": [0, 65535], "me out this day": [0, 65535], "out this day from": [0, 65535], "this day from dinner": [0, 65535], "day from dinner that": [0, 65535], "from dinner that goldsmith": [0, 65535], "dinner that goldsmith there": [0, 65535], "that goldsmith there were": [0, 65535], "goldsmith there were he": [0, 65535], "there were he not": [0, 65535], "were he not pack'd": [0, 65535], "he not pack'd with": [0, 65535], "not pack'd with her": [0, 65535], "pack'd with her could": [0, 65535], "with her could witnesse": [0, 65535], "her could witnesse it": [0, 65535], "could witnesse it for": [0, 65535], "witnesse it for he": [0, 65535], "it for he was": [0, 65535], "for he was with": [0, 65535], "he was with me": [0, 65535], "was with me then": [0, 65535], "with me then who": [0, 65535], "me then who parted": [0, 65535], "then who parted with": [0, 65535], "who parted with me": [0, 65535], "parted with me to": [0, 65535], "with me to go": [0, 65535], "me to go fetch": [0, 65535], "to go fetch a": [0, 65535], "go fetch a chaine": [0, 65535], "fetch a chaine promising": [0, 65535], "a chaine promising to": [0, 65535], "chaine promising to bring": [0, 65535], "promising to bring it": [0, 65535], "to bring it to": [0, 65535], "bring it to the": [0, 65535], "it to the porpentine": [0, 65535], "to the porpentine where": [0, 65535], "the porpentine where balthasar": [0, 65535], "porpentine where balthasar and": [0, 65535], "where balthasar and i": [0, 65535], "balthasar and i did": [0, 65535], "and i did dine": [0, 65535], "i did dine together": [0, 65535], "did dine together our": [0, 65535], "dine together our dinner": [0, 65535], "together our dinner done": [0, 65535], "our dinner done and": [0, 65535], "dinner done and he": [0, 65535], "done and he not": [0, 65535], "and he not comming": [0, 65535], "he not comming thither": [0, 65535], "not comming thither i": [0, 65535], "comming thither i went": [0, 65535], "thither i went to": [0, 65535], "i went to seeke": [0, 65535], "went to seeke him": [0, 65535], "to seeke him in": [0, 65535], "seeke him in the": [0, 65535], "him in the street": [0, 65535], "in the street i": [0, 65535], "the street i met": [0, 65535], "street i met him": [0, 65535], "i met him and": [0, 65535], "met him and in": [0, 65535], "him and in his": [0, 65535], "and in his companie": [0, 65535], "in his companie that": [0, 65535], "his companie that gentleman": [0, 65535], "companie that gentleman there": [0, 65535], "that gentleman there did": [0, 65535], "gentleman there did this": [0, 65535], "there did this periur'd": [0, 65535], "did this periur'd goldsmith": [0, 65535], "this periur'd goldsmith sweare": [0, 65535], "periur'd goldsmith sweare me": [0, 65535], "goldsmith sweare me downe": [0, 65535], "sweare me downe that": [0, 65535], "me downe that i": [0, 65535], "downe that i this": [0, 65535], "that i this day": [0, 65535], "i this day of": [0, 65535], "this day of him": [0, 65535], "day of him receiu'd": [0, 65535], "of him receiu'd the": [0, 65535], "him receiu'd the chaine": [0, 65535], "receiu'd the chaine which": [0, 65535], "the chaine which god": [0, 65535], "chaine which god he": [0, 65535], "which god he knowes": [0, 65535], "god he knowes i": [0, 65535], "he knowes i saw": [0, 65535], "knowes i saw not": [0, 65535], "i saw not for": [0, 65535], "saw not for the": [0, 65535], "not for the which": [0, 65535], "for the which he": [0, 65535], "the which he did": [0, 65535], "which he did arrest": [0, 65535], "he did arrest me": [0, 65535], "did arrest me with": [0, 65535], "arrest me with an": [0, 65535], "me with an officer": [0, 65535], "with an officer i": [0, 65535], "an officer i did": [0, 65535], "officer i did obey": [0, 65535], "i did obey and": [0, 65535], "did obey and sent": [0, 65535], "obey and sent my": [0, 65535], "and sent my pesant": [0, 65535], "sent my pesant home": [0, 65535], "my pesant home for": [0, 65535], "pesant home for certaine": [0, 65535], "home for certaine duckets": [0, 65535], "for certaine duckets he": [0, 65535], "certaine duckets he with": [0, 65535], "duckets he with none": [0, 65535], "he with none return'd": [0, 65535], "with none return'd then": [0, 65535], "none return'd then fairely": [0, 65535], "return'd then fairely i": [0, 65535], "then fairely i bespoke": [0, 65535], "fairely i bespoke the": [0, 65535], "i bespoke the officer": [0, 65535], "bespoke the officer to": [0, 65535], "the officer to go": [0, 65535], "officer to go in": [0, 65535], "to go in person": [0, 65535], "go in person with": [0, 65535], "in person with me": [0, 65535], "person with me to": [0, 65535], "with me to my": [0, 65535], "me to my house": [0, 65535], "to my house by'th'": [0, 65535], "my house by'th' way": [0, 65535], "house by'th' way we": [0, 65535], "by'th' way we met": [0, 65535], "way we met my": [0, 65535], "we met my wife": [0, 65535], "met my wife her": [0, 65535], "my wife her sister": [0, 65535], "wife her sister and": [0, 65535], "her sister and a": [0, 65535], "sister and a rabble": [0, 65535], "and a rabble more": [0, 65535], "a rabble more of": [0, 65535], "rabble more of vilde": [0, 65535], "more of vilde confederates": [0, 65535], "of vilde confederates along": [0, 65535], "vilde confederates along with": [0, 65535], "confederates along with them": [0, 65535], "along with them they": [0, 65535], "with them they brought": [0, 65535], "them they brought one": [0, 65535], "they brought one pinch": [0, 65535], "brought one pinch a": [0, 65535], "one pinch a hungry": [0, 65535], "pinch a hungry leane": [0, 65535], "a hungry leane fac'd": [0, 65535], "hungry leane fac'd villaine": [0, 65535], "leane fac'd villaine a": [0, 65535], "fac'd villaine a meere": [0, 65535], "villaine a meere anatomie": [0, 65535], "a meere anatomie a": [0, 65535], "meere anatomie a mountebanke": [0, 65535], "anatomie a mountebanke a": [0, 65535], "a mountebanke a thred": [0, 65535], "mountebanke a thred bare": [0, 65535], "a thred bare iugler": [0, 65535], "thred bare iugler and": [0, 65535], "bare iugler and a": [0, 65535], "iugler and a fortune": [0, 65535], "and a fortune teller": [0, 65535], "a fortune teller a": [0, 65535], "fortune teller a needy": [0, 65535], "teller a needy hollow": [0, 65535], "a needy hollow ey'd": [0, 65535], "needy hollow ey'd sharpe": [0, 65535], "hollow ey'd sharpe looking": [0, 65535], "ey'd sharpe looking wretch": [0, 65535], "sharpe looking wretch a": [0, 65535], "looking wretch a liuing": [0, 65535], "wretch a liuing dead": [0, 65535], "a liuing dead man": [0, 65535], "liuing dead man this": [0, 65535], "dead man this pernicious": [0, 65535], "man this pernicious slaue": [0, 65535], "this pernicious slaue forsooth": [0, 65535], "pernicious slaue forsooth tooke": [0, 65535], "slaue forsooth tooke on": [0, 65535], "forsooth tooke on him": [0, 65535], "tooke on him as": [0, 65535], "on him as a": [0, 65535], "him as a coniurer": [0, 65535], "as a coniurer and": [0, 65535], "a coniurer and gazing": [0, 65535], "coniurer and gazing in": [0, 65535], "and gazing in mine": [0, 65535], "gazing in mine eyes": [0, 65535], "in mine eyes feeling": [0, 65535], "mine eyes feeling my": [0, 65535], "eyes feeling my pulse": [0, 65535], "feeling my pulse and": [0, 65535], "my pulse and with": [0, 65535], "pulse and with no": [0, 65535], "and with no face": [0, 65535], "with no face as": [0, 65535], "no face as 'twere": [0, 65535], "face as 'twere out": [0, 65535], "as 'twere out facing": [0, 65535], "'twere out facing me": [0, 65535], "out facing me cries": [0, 65535], "facing me cries out": [0, 65535], "me cries out i": [0, 65535], "cries out i was": [0, 65535], "out i was possest": [0, 65535], "i was possest then": [0, 65535], "was possest then altogether": [0, 65535], "possest then altogether they": [0, 65535], "then altogether they fell": [0, 65535], "altogether they fell vpon": [0, 65535], "they fell vpon me": [0, 65535], "fell vpon me bound": [0, 65535], "vpon me bound me": [0, 65535], "me bound me bore": [0, 65535], "bound me bore me": [0, 65535], "me bore me thence": [0, 65535], "bore me thence and": [0, 65535], "me thence and in": [0, 65535], "thence and in a": [0, 65535], "and in a darke": [0, 65535], "in a darke and": [0, 65535], "a darke and dankish": [0, 65535], "darke and dankish vault": [0, 65535], "and dankish vault at": [0, 65535], "dankish vault at home": [0, 65535], "vault at home there": [0, 65535], "at home there left": [0, 65535], "home there left me": [0, 65535], "there left me and": [0, 65535], "left me and my": [0, 65535], "me and my man": [0, 65535], "and my man both": [0, 65535], "my man both bound": [0, 65535], "man both bound together": [0, 65535], "both bound together till": [0, 65535], "bound together till gnawing": [0, 65535], "together till gnawing with": [0, 65535], "till gnawing with my": [0, 65535], "gnawing with my teeth": [0, 65535], "with my teeth my": [0, 65535], "my teeth my bonds": [0, 65535], "teeth my bonds in": [0, 65535], "my bonds in sunder": [0, 65535], "bonds in sunder i": [0, 65535], "in sunder i gain'd": [0, 65535], "sunder i gain'd my": [0, 65535], "i gain'd my freedome": [0, 65535], "gain'd my freedome and": [0, 65535], "my freedome and immediately": [0, 65535], "freedome and immediately ran": [0, 65535], "and immediately ran hether": [0, 65535], "immediately ran hether to": [0, 65535], "ran hether to your": [0, 65535], "hether to your grace": [0, 65535], "to your grace whom": [0, 65535], "your grace whom i": [0, 65535], "grace whom i beseech": [0, 65535], "whom i beseech to": [0, 65535], "i beseech to giue": [0, 65535], "beseech to giue me": [0, 65535], "to giue me ample": [0, 65535], "giue me ample satisfaction": [0, 65535], "me ample satisfaction for": [0, 65535], "ample satisfaction for these": [0, 65535], "satisfaction for these deepe": [0, 65535], "for these deepe shames": [0, 65535], "these deepe shames and": [0, 65535], "deepe shames and great": [0, 65535], "shames and great indignities": [0, 65535], "and great indignities gold": [0, 65535], "great indignities gold my": [0, 65535], "indignities gold my lord": [0, 65535], "gold my lord in": [0, 65535], "my lord in truth": [0, 65535], "lord in truth thus": [0, 65535], "in truth thus far": [0, 65535], "truth thus far i": [0, 65535], "thus far i witnes": [0, 65535], "far i witnes with": [0, 65535], "i witnes with him": [0, 65535], "witnes with him that": [0, 65535], "with him that he": [0, 65535], "him that he din'd": [0, 65535], "that he din'd not": [0, 65535], "he din'd not at": [0, 65535], "din'd not at home": [0, 65535], "not at home but": [0, 65535], "at home but was": [0, 65535], "home but was lock'd": [0, 65535], "but was lock'd out": [0, 65535], "was lock'd out duke": [0, 65535], "lock'd out duke but": [0, 65535], "out duke but had": [0, 65535], "duke but had he": [0, 65535], "but had he such": [0, 65535], "had he such a": [0, 65535], "he such a chaine": [0, 65535], "such a chaine of": [0, 65535], "a chaine of thee": [0, 65535], "chaine of thee or": [0, 65535], "of thee or no": [0, 65535], "thee or no gold": [0, 65535], "or no gold he": [0, 65535], "no gold he had": [0, 65535], "gold he had my": [0, 65535], "he had my lord": [0, 65535], "had my lord and": [0, 65535], "my lord and when": [0, 65535], "lord and when he": [0, 65535], "and when he ran": [0, 65535], "when he ran in": [0, 65535], "he ran in heere": [0, 65535], "ran in heere these": [0, 65535], "in heere these people": [0, 65535], "heere these people saw": [0, 65535], "these people saw the": [0, 65535], "people saw the chaine": [0, 65535], "saw the chaine about": [0, 65535], "the chaine about his": [0, 65535], "about his necke mar": [0, 65535], "his necke mar besides": [0, 65535], "necke mar besides i": [0, 65535], "mar besides i will": [0, 65535], "besides i will be": [0, 65535], "i will be sworne": [0, 65535], "will be sworne these": [0, 65535], "be sworne these eares": [0, 65535], "sworne these eares of": [0, 65535], "eares of mine heard": [0, 65535], "of mine heard you": [0, 65535], "mine heard you confesse": [0, 65535], "heard you confesse you": [0, 65535], "you confesse you had": [0, 65535], "confesse you had the": [0, 65535], "you had the chaine": [0, 65535], "the chaine of him": [0, 65535], "chaine of him after": [0, 65535], "of him after you": [0, 65535], "him after you first": [0, 65535], "after you first forswore": [0, 65535], "you first forswore it": [0, 65535], "first forswore it on": [0, 65535], "forswore it on the": [0, 65535], "it on the mart": [0, 65535], "the mart and thereupon": [0, 65535], "mart and thereupon i": [0, 65535], "and thereupon i drew": [0, 65535], "thereupon i drew my": [0, 65535], "i drew my sword": [0, 65535], "drew my sword on": [0, 65535], "my sword on you": [0, 65535], "sword on you and": [0, 65535], "on you and then": [0, 65535], "you and then you": [0, 65535], "and then you fled": [0, 65535], "then you fled into": [0, 65535], "you fled into this": [0, 65535], "into this abbey heere": [0, 65535], "this abbey heere from": [0, 65535], "abbey heere from whence": [0, 65535], "heere from whence i": [0, 65535], "from whence i thinke": [0, 65535], "whence i thinke you": [0, 65535], "i thinke you are": [0, 65535], "thinke you are come": [0, 65535], "you are come by": [0, 65535], "are come by miracle": [0, 65535], "come by miracle e": [0, 65535], "by miracle e ant": [0, 65535], "miracle e ant i": [0, 65535], "e ant i neuer": [0, 65535], "ant i neuer came": [0, 65535], "i neuer came within": [0, 65535], "neuer came within these": [0, 65535], "came within these abbey": [0, 65535], "within these abbey wals": [0, 65535], "these abbey wals nor": [0, 65535], "abbey wals nor euer": [0, 65535], "wals nor euer didst": [0, 65535], "nor euer didst thou": [0, 65535], "euer didst thou draw": [0, 65535], "didst thou draw thy": [0, 65535], "thou draw thy sword": [0, 65535], "draw thy sword on": [0, 65535], "thy sword on me": [0, 65535], "sword on me i": [0, 65535], "on me i neuer": [0, 65535], "me i neuer saw": [0, 65535], "i neuer saw the": [0, 65535], "neuer saw the chaine": [0, 65535], "saw the chaine so": [0, 65535], "the chaine so helpe": [0, 65535], "chaine so helpe me": [0, 65535], "so helpe me heauen": [0, 65535], "helpe me heauen and": [0, 65535], "me heauen and this": [0, 65535], "heauen and this is": [0, 65535], "and this is false": [0, 65535], "this is false you": [0, 65535], "is false you burthen": [0, 65535], "false you burthen me": [0, 65535], "you burthen me withall": [0, 65535], "burthen me withall duke": [0, 65535], "me withall duke why": [0, 65535], "withall duke why what": [0, 65535], "duke why what an": [0, 65535], "why what an intricate": [0, 65535], "what an intricate impeach": [0, 65535], "an intricate impeach is": [0, 65535], "intricate impeach is this": [0, 65535], "impeach is this i": [0, 65535], "is this i thinke": [0, 65535], "this i thinke you": [0, 65535], "i thinke you all": [0, 65535], "thinke you all haue": [0, 65535], "you all haue drunke": [0, 65535], "all haue drunke of": [0, 65535], "haue drunke of circes": [0, 65535], "drunke of circes cup": [0, 65535], "of circes cup if": [0, 65535], "circes cup if heere": [0, 65535], "cup if heere you": [0, 65535], "if heere you hous'd": [0, 65535], "heere you hous'd him": [0, 65535], "you hous'd him heere": [0, 65535], "hous'd him heere he": [0, 65535], "him heere he would": [0, 65535], "heere he would haue": [0, 65535], "he would haue bin": [0, 65535], "would haue bin if": [0, 65535], "haue bin if he": [0, 65535], "bin if he were": [0, 65535], "if he were mad": [0, 65535], "he were mad he": [0, 65535], "were mad he would": [0, 65535], "mad he would not": [0, 65535], "he would not pleade": [0, 65535], "would not pleade so": [0, 65535], "not pleade so coldly": [0, 65535], "pleade so coldly you": [0, 65535], "so coldly you say": [0, 65535], "coldly you say he": [0, 65535], "you say he din'd": [0, 65535], "say he din'd at": [0, 65535], "he din'd at home": [0, 65535], "din'd at home the": [0, 65535], "at home the goldsmith": [0, 65535], "home the goldsmith heere": [0, 65535], "the goldsmith heere denies": [0, 65535], "goldsmith heere denies that": [0, 65535], "heere denies that saying": [0, 65535], "denies that saying sirra": [0, 65535], "that saying sirra what": [0, 65535], "saying sirra what say": [0, 65535], "sirra what say you": [0, 65535], "what say you e": [0, 65535], "say you e dro": [0, 65535], "you e dro sir": [0, 65535], "e dro sir he": [0, 65535], "dro sir he din'de": [0, 65535], "sir he din'de with": [0, 65535], "he din'de with her": [0, 65535], "din'de with her there": [0, 65535], "with her there at": [0, 65535], "her there at the": [0, 65535], "there at the porpentine": [0, 65535], "at the porpentine cur": [0, 65535], "the porpentine cur he": [0, 65535], "porpentine cur he did": [0, 65535], "cur he did and": [0, 65535], "he did and from": [0, 65535], "did and from my": [0, 65535], "and from my finger": [0, 65535], "from my finger snacht": [0, 65535], "my finger snacht that": [0, 65535], "finger snacht that ring": [0, 65535], "snacht that ring e": [0, 65535], "that ring e anti": [0, 65535], "ring e anti tis": [0, 65535], "e anti tis true": [0, 65535], "anti tis true my": [0, 65535], "tis true my liege": [0, 65535], "true my liege this": [0, 65535], "my liege this ring": [0, 65535], "liege this ring i": [0, 65535], "this ring i had": [0, 65535], "ring i had of": [0, 65535], "i had of her": [0, 65535], "had of her duke": [0, 65535], "of her duke saw'st": [0, 65535], "her duke saw'st thou": [0, 65535], "duke saw'st thou him": [0, 65535], "saw'st thou him enter": [0, 65535], "thou him enter at": [0, 65535], "him enter at the": [0, 65535], "enter at the abbey": [0, 65535], "at the abbey heere": [0, 65535], "the abbey heere curt": [0, 65535], "abbey heere curt as": [0, 65535], "heere curt as sure": [0, 65535], "curt as sure my": [0, 65535], "as sure my liege": [0, 65535], "sure my liege as": [0, 65535], "my liege as i": [0, 65535], "liege as i do": [0, 65535], "as i do see": [0, 65535], "i do see your": [0, 65535], "do see your grace": [0, 65535], "see your grace duke": [0, 65535], "your grace duke why": [0, 65535], "grace duke why this": [0, 65535], "duke why this is": [0, 65535], "why this is straunge": [0, 65535], "this is straunge go": [0, 65535], "is straunge go call": [0, 65535], "straunge go call the": [0, 65535], "go call the abbesse": [0, 65535], "call the abbesse hither": [0, 65535], "the abbesse hither i": [0, 65535], "abbesse hither i thinke": [0, 65535], "hither i thinke you": [0, 65535], "thinke you are all": [0, 65535], "you are all mated": [0, 65535], "are all mated or": [0, 65535], "all mated or starke": [0, 65535], "mated or starke mad": [0, 65535], "or starke mad exit": [0, 65535], "starke mad exit one": [0, 65535], "mad exit one to": [0, 65535], "exit one to the": [0, 65535], "one to the abbesse": [0, 65535], "to the abbesse fa": [0, 65535], "the abbesse fa most": [0, 65535], "abbesse fa most mighty": [0, 65535], "fa most mighty duke": [0, 65535], "most mighty duke vouchsafe": [0, 65535], "mighty duke vouchsafe me": [0, 65535], "duke vouchsafe me speak": [0, 65535], "vouchsafe me speak a": [0, 65535], "me speak a word": [0, 65535], "speak a word haply": [0, 65535], "a word haply i": [0, 65535], "word haply i see": [0, 65535], "haply i see a": [0, 65535], "i see a friend": [0, 65535], "see a friend will": [0, 65535], "a friend will saue": [0, 65535], "friend will saue my": [0, 65535], "will saue my life": [0, 65535], "saue my life and": [0, 65535], "my life and pay": [0, 65535], "life and pay the": [0, 65535], "and pay the sum": [0, 65535], "pay the sum that": [0, 65535], "the sum that may": [0, 65535], "sum that may deliuer": [0, 65535], "that may deliuer me": [0, 65535], "may deliuer me duke": [0, 65535], "deliuer me duke speake": [0, 65535], "me duke speake freely": [0, 65535], "duke speake freely siracusian": [0, 65535], "speake freely siracusian what": [0, 65535], "freely siracusian what thou": [0, 65535], "siracusian what thou wilt": [0, 65535], "what thou wilt fath": [0, 65535], "thou wilt fath is": [0, 65535], "wilt fath is not": [0, 65535], "fath is not your": [0, 65535], "is not your name": [0, 65535], "not your name sir": [0, 65535], "your name sir call'd": [0, 65535], "name sir call'd antipholus": [0, 65535], "sir call'd antipholus and": [0, 65535], "call'd antipholus and is": [0, 65535], "antipholus and is not": [0, 65535], "and is not that": [0, 65535], "is not that your": [0, 65535], "not that your bondman": [0, 65535], "that your bondman dromio": [0, 65535], "your bondman dromio e": [0, 65535], "bondman dromio e dro": [0, 65535], "dromio e dro within": [0, 65535], "e dro within this": [0, 65535], "dro within this houre": [0, 65535], "within this houre i": [0, 65535], "this houre i was": [0, 65535], "houre i was his": [0, 65535], "i was his bondman": [0, 65535], "was his bondman sir": [0, 65535], "his bondman sir but": [0, 65535], "bondman sir but he": [0, 65535], "sir but he i": [0, 65535], "but he i thanke": [0, 65535], "he i thanke him": [0, 65535], "i thanke him gnaw'd": [0, 65535], "thanke him gnaw'd in": [0, 65535], "him gnaw'd in two": [0, 65535], "gnaw'd in two my": [0, 65535], "in two my cords": [0, 65535], "two my cords now": [0, 65535], "my cords now am": [0, 65535], "cords now am i": [0, 65535], "now am i dromio": [0, 65535], "am i dromio and": [0, 65535], "i dromio and his": [0, 65535], "dromio and his man": [0, 65535], "and his man vnbound": [0, 65535], "his man vnbound fath": [0, 65535], "man vnbound fath i": [0, 65535], "vnbound fath i am": [0, 65535], "fath i am sure": [0, 65535], "i am sure you": [0, 65535], "am sure you both": [0, 65535], "sure you both of": [0, 65535], "you both of you": [0, 65535], "both of you remember": [0, 65535], "of you remember me": [0, 65535], "you remember me dro": [0, 65535], "remember me dro our": [0, 65535], "me dro our selues": [0, 65535], "dro our selues we": [0, 65535], "our selues we do": [0, 65535], "selues we do remember": [0, 65535], "we do remember sir": [0, 65535], "do remember sir by": [0, 65535], "remember sir by you": [0, 65535], "sir by you for": [0, 65535], "by you for lately": [0, 65535], "you for lately we": [0, 65535], "for lately we were": [0, 65535], "lately we were bound": [0, 65535], "we were bound as": [0, 65535], "were bound as you": [0, 65535], "bound as you are": [0, 65535], "as you are now": [0, 65535], "you are now you": [0, 65535], "are now you are": [0, 65535], "now you are not": [0, 65535], "you are not pinches": [0, 65535], "are not pinches patient": [0, 65535], "not pinches patient are": [0, 65535], "pinches patient are you": [0, 65535], "patient are you sir": [0, 65535], "are you sir father": [0, 65535], "you sir father why": [0, 65535], "sir father why looke": [0, 65535], "father why looke you": [0, 65535], "why looke you strange": [0, 65535], "looke you strange on": [0, 65535], "you strange on me": [0, 65535], "strange on me you": [0, 65535], "on me you know": [0, 65535], "me you know me": [0, 65535], "you know me well": [0, 65535], "know me well e": [0, 65535], "me well e ant": [0, 65535], "well e ant i": [0, 65535], "ant i neuer saw": [0, 65535], "i neuer saw you": [0, 65535], "neuer saw you in": [0, 65535], "saw you in my": [0, 65535], "you in my life": [0, 65535], "in my life till": [0, 65535], "my life till now": [0, 65535], "life till now fa": [0, 65535], "till now fa oh": [0, 65535], "now fa oh griefe": [0, 65535], "fa oh griefe hath": [0, 65535], "oh griefe hath chang'd": [0, 65535], "griefe hath chang'd me": [0, 65535], "hath chang'd me since": [0, 65535], "chang'd me since you": [0, 65535], "me since you saw": [0, 65535], "since you saw me": [0, 65535], "you saw me last": [0, 65535], "saw me last and": [0, 65535], "me last and carefull": [0, 65535], "last and carefull houres": [0, 65535], "and carefull houres with": [0, 65535], "carefull houres with times": [0, 65535], "houres with times deformed": [0, 65535], "with times deformed hand": [0, 65535], "times deformed hand haue": [0, 65535], "deformed hand haue written": [0, 65535], "hand haue written strange": [0, 65535], "haue written strange defeatures": [0, 65535], "written strange defeatures in": [0, 65535], "strange defeatures in my": [0, 65535], "defeatures in my face": [0, 65535], "in my face but": [0, 65535], "my face but tell": [0, 65535], "face but tell me": [0, 65535], "but tell me yet": [0, 65535], "tell me yet dost": [0, 65535], "me yet dost thou": [0, 65535], "yet dost thou not": [0, 65535], "thou not know my": [0, 65535], "not know my voice": [0, 65535], "know my voice ant": [0, 65535], "my voice ant neither": [0, 65535], "voice ant neither fat": [0, 65535], "ant neither fat dromio": [0, 65535], "neither fat dromio nor": [0, 65535], "fat dromio nor thou": [0, 65535], "dromio nor thou dro": [0, 65535], "nor thou dro no": [0, 65535], "thou dro no trust": [0, 65535], "dro no trust me": [0, 65535], "no trust me sir": [0, 65535], "trust me sir nor": [0, 65535], "me sir nor i": [0, 65535], "sir nor i fa": [0, 65535], "nor i fa i": [0, 65535], "i fa i am": [0, 65535], "fa i am sure": [0, 65535], "i am sure thou": [0, 65535], "am sure thou dost": [0, 65535], "sure thou dost e": [0, 65535], "thou dost e dromio": [0, 65535], "dost e dromio i": [0, 65535], "e dromio i sir": [0, 65535], "dromio i sir but": [0, 65535], "i sir but i": [0, 65535], "sir but i am": [0, 65535], "but i am sure": [0, 65535], "i am sure i": [0, 65535], "am sure i do": [0, 65535], "sure i do not": [0, 65535], "i do not and": [0, 65535], "do not and whatsoeuer": [0, 65535], "not and whatsoeuer a": [0, 65535], "and whatsoeuer a man": [0, 65535], "whatsoeuer a man denies": [0, 65535], "a man denies you": [0, 65535], "man denies you are": [0, 65535], "denies you are now": [0, 65535], "you are now bound": [0, 65535], "are now bound to": [0, 65535], "now bound to beleeue": [0, 65535], "bound to beleeue him": [0, 65535], "to beleeue him fath": [0, 65535], "beleeue him fath not": [0, 65535], "him fath not know": [0, 65535], "fath not know my": [0, 65535], "know my voice oh": [0, 65535], "my voice oh times": [0, 65535], "voice oh times extremity": [0, 65535], "oh times extremity hast": [0, 65535], "times extremity hast thou": [0, 65535], "extremity hast thou so": [0, 65535], "hast thou so crack'd": [0, 65535], "thou so crack'd and": [0, 65535], "so crack'd and splitted": [0, 65535], "crack'd and splitted my": [0, 65535], "and splitted my poore": [0, 65535], "splitted my poore tongue": [0, 65535], "my poore tongue in": [0, 65535], "poore tongue in seuen": [0, 65535], "tongue in seuen short": [0, 65535], "in seuen short yeares": [0, 65535], "seuen short yeares that": [0, 65535], "short yeares that heere": [0, 65535], "yeares that heere my": [0, 65535], "that heere my onely": [0, 65535], "heere my onely sonne": [0, 65535], "my onely sonne knowes": [0, 65535], "onely sonne knowes not": [0, 65535], "sonne knowes not my": [0, 65535], "knowes not my feeble": [0, 65535], "not my feeble key": [0, 65535], "my feeble key of": [0, 65535], "feeble key of vntun'd": [0, 65535], "key of vntun'd cares": [0, 65535], "of vntun'd cares though": [0, 65535], "vntun'd cares though now": [0, 65535], "cares though now this": [0, 65535], "though now this grained": [0, 65535], "now this grained face": [0, 65535], "this grained face of": [0, 65535], "grained face of mine": [0, 65535], "face of mine be": [0, 65535], "of mine be hid": [0, 65535], "mine be hid in": [0, 65535], "be hid in sap": [0, 65535], "hid in sap consuming": [0, 65535], "in sap consuming winters": [0, 65535], "sap consuming winters drizled": [0, 65535], "consuming winters drizled snow": [0, 65535], "winters drizled snow and": [0, 65535], "drizled snow and all": [0, 65535], "snow and all the": [0, 65535], "and all the conduits": [0, 65535], "all the conduits of": [0, 65535], "the conduits of my": [0, 65535], "conduits of my blood": [0, 65535], "of my blood froze": [0, 65535], "my blood froze vp": [0, 65535], "blood froze vp yet": [0, 65535], "froze vp yet hath": [0, 65535], "vp yet hath my": [0, 65535], "yet hath my night": [0, 65535], "hath my night of": [0, 65535], "my night of life": [0, 65535], "night of life some": [0, 65535], "of life some memorie": [0, 65535], "life some memorie my": [0, 65535], "some memorie my wasting": [0, 65535], "memorie my wasting lampes": [0, 65535], "my wasting lampes some": [0, 65535], "wasting lampes some fading": [0, 65535], "lampes some fading glimmer": [0, 65535], "some fading glimmer left": [0, 65535], "fading glimmer left my": [0, 65535], "glimmer left my dull": [0, 65535], "left my dull deafe": [0, 65535], "my dull deafe eares": [0, 65535], "dull deafe eares a": [0, 65535], "deafe eares a little": [0, 65535], "eares a little vse": [0, 65535], "a little vse to": [0, 65535], "little vse to heare": [0, 65535], "vse to heare all": [0, 65535], "to heare all these": [0, 65535], "heare all these old": [0, 65535], "all these old witnesses": [0, 65535], "these old witnesses i": [0, 65535], "old witnesses i cannot": [0, 65535], "witnesses i cannot erre": [0, 65535], "i cannot erre tell": [0, 65535], "cannot erre tell me": [0, 65535], "erre tell me thou": [0, 65535], "tell me thou art": [0, 65535], "me thou art my": [0, 65535], "thou art my sonne": [0, 65535], "art my sonne antipholus": [0, 65535], "my sonne antipholus ant": [0, 65535], "sonne antipholus ant i": [0, 65535], "antipholus ant i neuer": [0, 65535], "i neuer saw my": [0, 65535], "neuer saw my father": [0, 65535], "saw my father in": [0, 65535], "my father in my": [0, 65535], "father in my life": [0, 65535], "in my life fa": [0, 65535], "my life fa but": [0, 65535], "life fa but seuen": [0, 65535], "fa but seuen yeares": [0, 65535], "but seuen yeares since": [0, 65535], "seuen yeares since in": [0, 65535], "yeares since in siracusa": [0, 65535], "since in siracusa boy": [0, 65535], "in siracusa boy thou": [0, 65535], "siracusa boy thou know'st": [0, 65535], "boy thou know'st we": [0, 65535], "thou know'st we parted": [0, 65535], "know'st we parted but": [0, 65535], "we parted but perhaps": [0, 65535], "parted but perhaps my": [0, 65535], "but perhaps my sonne": [0, 65535], "perhaps my sonne thou": [0, 65535], "my sonne thou sham'st": [0, 65535], "sonne thou sham'st to": [0, 65535], "thou sham'st to acknowledge": [0, 65535], "sham'st to acknowledge me": [0, 65535], "to acknowledge me in": [0, 65535], "acknowledge me in miserie": [0, 65535], "me in miserie ant": [0, 65535], "in miserie ant the": [0, 65535], "miserie ant the duke": [0, 65535], "ant the duke and": [0, 65535], "the duke and all": [0, 65535], "duke and all that": [0, 65535], "and all that know": [0, 65535], "all that know me": [0, 65535], "that know me in": [0, 65535], "know me in the": [0, 65535], "me in the city": [0, 65535], "in the city can": [0, 65535], "the city can witnesse": [0, 65535], "city can witnesse with": [0, 65535], "can witnesse with me": [0, 65535], "witnesse with me that": [0, 65535], "with me that it": [0, 65535], "me that it is": [0, 65535], "that it is not": [0, 65535], "it is not so": [0, 65535], "is not so i": [0, 65535], "not so i ne're": [0, 65535], "so i ne're saw": [0, 65535], "i ne're saw siracusa": [0, 65535], "ne're saw siracusa in": [0, 65535], "saw siracusa in my": [0, 65535], "siracusa in my life": [0, 65535], "in my life duke": [0, 65535], "my life duke i": [0, 65535], "life duke i tell": [0, 65535], "duke i tell thee": [0, 65535], "i tell thee siracusian": [0, 65535], "tell thee siracusian twentie": [0, 65535], "thee siracusian twentie yeares": [0, 65535], "siracusian twentie yeares haue": [0, 65535], "twentie yeares haue i": [0, 65535], "yeares haue i bin": [0, 65535], "haue i bin patron": [0, 65535], "i bin patron to": [0, 65535], "bin patron to antipholus": [0, 65535], "patron to antipholus during": [0, 65535], "to antipholus during which": [0, 65535], "antipholus during which time": [0, 65535], "during which time he": [0, 65535], "which time he ne're": [0, 65535], "time he ne're saw": [0, 65535], "he ne're saw siracusa": [0, 65535], "ne're saw siracusa i": [0, 65535], "saw siracusa i see": [0, 65535], "siracusa i see thy": [0, 65535], "i see thy age": [0, 65535], "see thy age and": [0, 65535], "thy age and dangers": [0, 65535], "age and dangers make": [0, 65535], "and dangers make thee": [0, 65535], "dangers make thee dote": [0, 65535], "make thee dote enter": [0, 65535], "thee dote enter the": [0, 65535], "dote enter the abbesse": [0, 65535], "enter the abbesse with": [0, 65535], "the abbesse with antipholus": [0, 65535], "abbesse with antipholus siracusa": [0, 65535], "with antipholus siracusa and": [0, 65535], "antipholus siracusa and dromio": [0, 65535], "siracusa and dromio sir": [0, 65535], "and dromio sir abbesse": [0, 65535], "dromio sir abbesse most": [0, 65535], "sir abbesse most mightie": [0, 65535], "abbesse most mightie duke": [0, 65535], "most mightie duke behold": [0, 65535], "mightie duke behold a": [0, 65535], "duke behold a man": [0, 65535], "behold a man much": [0, 65535], "a man much wrong'd": [0, 65535], "man much wrong'd all": [0, 65535], "much wrong'd all gather": [0, 65535], "wrong'd all gather to": [0, 65535], "all gather to see": [0, 65535], "gather to see them": [0, 65535], "to see them adr": [0, 65535], "see them adr i": [0, 65535], "them adr i see": [0, 65535], "adr i see two": [0, 65535], "i see two husbands": [0, 65535], "see two husbands or": [0, 65535], "two husbands or mine": [0, 65535], "husbands or mine eyes": [0, 65535], "or mine eyes deceiue": [0, 65535], "mine eyes deceiue me": [0, 65535], "eyes deceiue me duke": [0, 65535], "deceiue me duke one": [0, 65535], "me duke one of": [0, 65535], "duke one of these": [0, 65535], "one of these men": [0, 65535], "of these men is": [0, 65535], "these men is genius": [0, 65535], "men is genius to": [0, 65535], "is genius to the": [0, 65535], "genius to the other": [0, 65535], "to the other and": [0, 65535], "the other and so": [0, 65535], "other and so of": [0, 65535], "and so of these": [0, 65535], "so of these which": [0, 65535], "of these which is": [0, 65535], "these which is the": [0, 65535], "which is the naturall": [0, 65535], "is the naturall man": [0, 65535], "the naturall man and": [0, 65535], "naturall man and which": [0, 65535], "man and which the": [0, 65535], "and which the spirit": [0, 65535], "which the spirit who": [0, 65535], "the spirit who deciphers": [0, 65535], "spirit who deciphers them": [0, 65535], "who deciphers them s": [0, 65535], "deciphers them s dromio": [0, 65535], "them s dromio i": [0, 65535], "s dromio i sir": [0, 65535], "dromio i sir am": [0, 65535], "i sir am dromio": [0, 65535], "sir am dromio command": [0, 65535], "am dromio command him": [0, 65535], "dromio command him away": [0, 65535], "command him away e": [0, 65535], "him away e dro": [0, 65535], "away e dro i": [0, 65535], "e dro i sir": [0, 65535], "dro i sir am": [0, 65535], "sir am dromio pray": [0, 65535], "am dromio pray let": [0, 65535], "dromio pray let me": [0, 65535], "pray let me stay": [0, 65535], "let me stay s": [0, 65535], "me stay s ant": [0, 65535], "stay s ant egeon": [0, 65535], "s ant egeon art": [0, 65535], "ant egeon art thou": [0, 65535], "egeon art thou not": [0, 65535], "art thou not or": [0, 65535], "thou not or else": [0, 65535], "not or else his": [0, 65535], "or else his ghost": [0, 65535], "else his ghost s": [0, 65535], "his ghost s drom": [0, 65535], "ghost s drom oh": [0, 65535], "s drom oh my": [0, 65535], "drom oh my olde": [0, 65535], "oh my olde master": [0, 65535], "my olde master who": [0, 65535], "olde master who hath": [0, 65535], "master who hath bound": [0, 65535], "who hath bound him": [0, 65535], "hath bound him heere": [0, 65535], "bound him heere abb": [0, 65535], "him heere abb who": [0, 65535], "heere abb who euer": [0, 65535], "abb who euer bound": [0, 65535], "who euer bound him": [0, 65535], "euer bound him i": [0, 65535], "bound him i will": [0, 65535], "him i will lose": [0, 65535], "i will lose his": [0, 65535], "will lose his bonds": [0, 65535], "lose his bonds and": [0, 65535], "his bonds and gaine": [0, 65535], "bonds and gaine a": [0, 65535], "and gaine a husband": [0, 65535], "gaine a husband by": [0, 65535], "a husband by his": [0, 65535], "husband by his libertie": [0, 65535], "by his libertie speake": [0, 65535], "his libertie speake olde": [0, 65535], "libertie speake olde egeon": [0, 65535], "speake olde egeon if": [0, 65535], "olde egeon if thou": [0, 65535], "egeon if thou bee'st": [0, 65535], "if thou bee'st the": [0, 65535], "thou bee'st the man": [0, 65535], "bee'st the man that": [0, 65535], "the man that hadst": [0, 65535], "man that hadst a": [0, 65535], "that hadst a wife": [0, 65535], "hadst a wife once": [0, 65535], "a wife once call'd": [0, 65535], "wife once call'd \u00e6milia": [0, 65535], "once call'd \u00e6milia that": [0, 65535], "call'd \u00e6milia that bore": [0, 65535], "\u00e6milia that bore thee": [0, 65535], "that bore thee at": [0, 65535], "bore thee at a": [0, 65535], "thee at a burthen": [0, 65535], "at a burthen two": [0, 65535], "a burthen two faire": [0, 65535], "burthen two faire sonnes": [0, 65535], "two faire sonnes oh": [0, 65535], "faire sonnes oh if": [0, 65535], "sonnes oh if thou": [0, 65535], "oh if thou bee'st": [0, 65535], "thou bee'st the same": [0, 65535], "bee'st the same egeon": [0, 65535], "the same egeon speake": [0, 65535], "same egeon speake and": [0, 65535], "egeon speake and speake": [0, 65535], "speake and speake vnto": [0, 65535], "and speake vnto the": [0, 65535], "speake vnto the same": [0, 65535], "vnto the same \u00e6milia": [0, 65535], "the same \u00e6milia duke": [0, 65535], "same \u00e6milia duke why": [0, 65535], "\u00e6milia duke why heere": [0, 65535], "duke why heere begins": [0, 65535], "why heere begins his": [0, 65535], "heere begins his morning": [0, 65535], "begins his morning storie": [0, 65535], "his morning storie right": [0, 65535], "morning storie right these": [0, 65535], "storie right these twoantipholus": [0, 65535], "right these twoantipholus these": [0, 65535], "these twoantipholus these two": [0, 65535], "twoantipholus these two so": [0, 65535], "these two so like": [0, 65535], "two so like and": [0, 65535], "so like and these": [0, 65535], "like and these two": [0, 65535], "and these two dromio's": [0, 65535], "these two dromio's one": [0, 65535], "two dromio's one in": [0, 65535], "dromio's one in semblance": [0, 65535], "one in semblance besides": [0, 65535], "in semblance besides her": [0, 65535], "semblance besides her vrging": [0, 65535], "besides her vrging of": [0, 65535], "her vrging of her": [0, 65535], "vrging of her wracke": [0, 65535], "of her wracke at": [0, 65535], "her wracke at sea": [0, 65535], "wracke at sea these": [0, 65535], "at sea these are": [0, 65535], "sea these are the": [0, 65535], "these are the parents": [0, 65535], "are the parents to": [0, 65535], "the parents to these": [0, 65535], "parents to these children": [0, 65535], "to these children which": [0, 65535], "these children which accidentally": [0, 65535], "children which accidentally are": [0, 65535], "which accidentally are met": [0, 65535], "accidentally are met together": [0, 65535], "are met together fa": [0, 65535], "met together fa if": [0, 65535], "together fa if i": [0, 65535], "fa if i dreame": [0, 65535], "if i dreame not": [0, 65535], "i dreame not thou": [0, 65535], "dreame not thou art": [0, 65535], "not thou art \u00e6milia": [0, 65535], "thou art \u00e6milia if": [0, 65535], "art \u00e6milia if thou": [0, 65535], "\u00e6milia if thou art": [0, 65535], "if thou art she": [0, 65535], "thou art she tell": [0, 65535], "art she tell me": [0, 65535], "she tell me where": [0, 65535], "tell me where is": [0, 65535], "me where is that": [0, 65535], "where is that sonne": [0, 65535], "is that sonne that": [0, 65535], "that sonne that floated": [0, 65535], "sonne that floated with": [0, 65535], "that floated with thee": [0, 65535], "floated with thee on": [0, 65535], "with thee on the": [0, 65535], "thee on the fatall": [0, 65535], "on the fatall rafte": [0, 65535], "the fatall rafte abb": [0, 65535], "fatall rafte abb by": [0, 65535], "rafte abb by men": [0, 65535], "abb by men of": [0, 65535], "by men of epidamium": [0, 65535], "men of epidamium he": [0, 65535], "of epidamium he and": [0, 65535], "epidamium he and i": [0, 65535], "he and i and": [0, 65535], "and i and the": [0, 65535], "i and the twin": [0, 65535], "and the twin dromio": [0, 65535], "the twin dromio all": [0, 65535], "twin dromio all were": [0, 65535], "dromio all were taken": [0, 65535], "all were taken vp": [0, 65535], "were taken vp but": [0, 65535], "taken vp but by": [0, 65535], "vp but by and": [0, 65535], "by and by rude": [0, 65535], "and by rude fishermen": [0, 65535], "by rude fishermen of": [0, 65535], "rude fishermen of corinth": [0, 65535], "fishermen of corinth by": [0, 65535], "of corinth by force": [0, 65535], "corinth by force tooke": [0, 65535], "by force tooke dromio": [0, 65535], "force tooke dromio and": [0, 65535], "tooke dromio and my": [0, 65535], "dromio and my sonne": [0, 65535], "and my sonne from": [0, 65535], "my sonne from them": [0, 65535], "sonne from them and": [0, 65535], "from them and me": [0, 65535], "them and me they": [0, 65535], "and me they left": [0, 65535], "me they left with": [0, 65535], "they left with those": [0, 65535], "left with those of": [0, 65535], "with those of epidamium": [0, 65535], "those of epidamium what": [0, 65535], "of epidamium what then": [0, 65535], "epidamium what then became": [0, 65535], "what then became of": [0, 65535], "then became of them": [0, 65535], "became of them i": [0, 65535], "of them i cannot": [0, 65535], "them i cannot tell": [0, 65535], "i cannot tell i": [0, 65535], "cannot tell i to": [0, 65535], "tell i to this": [0, 65535], "i to this fortune": [0, 65535], "to this fortune that": [0, 65535], "this fortune that you": [0, 65535], "fortune that you see": [0, 65535], "that you see mee": [0, 65535], "you see mee in": [0, 65535], "see mee in duke": [0, 65535], "mee in duke antipholus": [0, 65535], "in duke antipholus thou": [0, 65535], "duke antipholus thou cam'st": [0, 65535], "antipholus thou cam'st from": [0, 65535], "thou cam'st from corinth": [0, 65535], "cam'st from corinth first": [0, 65535], "from corinth first s": [0, 65535], "corinth first s ant": [0, 65535], "first s ant no": [0, 65535], "s ant no sir": [0, 65535], "ant no sir not": [0, 65535], "no sir not i": [0, 65535], "sir not i i": [0, 65535], "not i i came": [0, 65535], "i i came from": [0, 65535], "i came from siracuse": [0, 65535], "came from siracuse duke": [0, 65535], "from siracuse duke stay": [0, 65535], "siracuse duke stay stand": [0, 65535], "duke stay stand apart": [0, 65535], "stay stand apart i": [0, 65535], "stand apart i know": [0, 65535], "apart i know not": [0, 65535], "i know not which": [0, 65535], "know not which is": [0, 65535], "not which is which": [0, 65535], "which is which e": [0, 65535], "is which e ant": [0, 65535], "which e ant i": [0, 65535], "e ant i came": [0, 65535], "ant i came from": [0, 65535], "i came from corinth": [0, 65535], "came from corinth my": [0, 65535], "from corinth my most": [0, 65535], "corinth my most gracious": [0, 65535], "my most gracious lord": [0, 65535], "most gracious lord e": [0, 65535], "gracious lord e dro": [0, 65535], "lord e dro and": [0, 65535], "e dro and i": [0, 65535], "dro and i with": [0, 65535], "and i with him": [0, 65535], "i with him e": [0, 65535], "with him e ant": [0, 65535], "him e ant brought": [0, 65535], "e ant brought to": [0, 65535], "ant brought to this": [0, 65535], "brought to this town": [0, 65535], "to this town by": [0, 65535], "this town by that": [0, 65535], "town by that most": [0, 65535], "by that most famous": [0, 65535], "that most famous warriour": [0, 65535], "most famous warriour duke": [0, 65535], "famous warriour duke menaphon": [0, 65535], "warriour duke menaphon your": [0, 65535], "duke menaphon your most": [0, 65535], "menaphon your most renowned": [0, 65535], "your most renowned vnckle": [0, 65535], "most renowned vnckle adr": [0, 65535], "renowned vnckle adr which": [0, 65535], "vnckle adr which of": [0, 65535], "adr which of you": [0, 65535], "which of you two": [0, 65535], "of you two did": [0, 65535], "you two did dine": [0, 65535], "two did dine with": [0, 65535], "did dine with me": [0, 65535], "dine with me to": [0, 65535], "with me to day": [0, 65535], "me to day s": [0, 65535], "to day s ant": [0, 65535], "day s ant i": [0, 65535], "s ant i gentle": [0, 65535], "ant i gentle mistris": [0, 65535], "i gentle mistris adr": [0, 65535], "gentle mistris adr and": [0, 65535], "mistris adr and are": [0, 65535], "adr and are not": [0, 65535], "and are not you": [0, 65535], "are not you my": [0, 65535], "not you my husband": [0, 65535], "you my husband e": [0, 65535], "my husband e ant": [0, 65535], "husband e ant no": [0, 65535], "e ant no i": [0, 65535], "ant no i say": [0, 65535], "no i say nay": [0, 65535], "i say nay to": [0, 65535], "say nay to that": [0, 65535], "nay to that s": [0, 65535], "to that s ant": [0, 65535], "that s ant and": [0, 65535], "s ant and so": [0, 65535], "ant and so do": [0, 65535], "and so do i": [0, 65535], "so do i yet": [0, 65535], "do i yet did": [0, 65535], "i yet did she": [0, 65535], "yet did she call": [0, 65535], "did she call me": [0, 65535], "she call me so": [0, 65535], "call me so and": [0, 65535], "me so and this": [0, 65535], "so and this faire": [0, 65535], "and this faire gentlewoman": [0, 65535], "this faire gentlewoman her": [0, 65535], "faire gentlewoman her sister": [0, 65535], "gentlewoman her sister heere": [0, 65535], "her sister heere did": [0, 65535], "sister heere did call": [0, 65535], "heere did call me": [0, 65535], "did call me brother": [0, 65535], "call me brother what": [0, 65535], "me brother what i": [0, 65535], "brother what i told": [0, 65535], "what i told you": [0, 65535], "i told you then": [0, 65535], "told you then i": [0, 65535], "you then i hope": [0, 65535], "then i hope i": [0, 65535], "i hope i shall": [0, 65535], "hope i shall haue": [0, 65535], "i shall haue leisure": [0, 65535], "shall haue leisure to": [0, 65535], "haue leisure to make": [0, 65535], "leisure to make good": [0, 65535], "to make good if": [0, 65535], "make good if this": [0, 65535], "good if this be": [0, 65535], "if this be not": [0, 65535], "this be not a": [0, 65535], "be not a dreame": [0, 65535], "not a dreame i": [0, 65535], "a dreame i see": [0, 65535], "dreame i see and": [0, 65535], "i see and heare": [0, 65535], "see and heare goldsmith": [0, 65535], "and heare goldsmith that": [0, 65535], "heare goldsmith that is": [0, 65535], "goldsmith that is the": [0, 65535], "that is the chaine": [0, 65535], "is the chaine sir": [0, 65535], "the chaine sir which": [0, 65535], "chaine sir which you": [0, 65535], "sir which you had": [0, 65535], "which you had of": [0, 65535], "you had of mee": [0, 65535], "had of mee s": [0, 65535], "of mee s ant": [0, 65535], "mee s ant i": [0, 65535], "s ant i thinke": [0, 65535], "ant i thinke it": [0, 65535], "i thinke it be": [0, 65535], "thinke it be sir": [0, 65535], "be sir i denie": [0, 65535], "sir i denie it": [0, 65535], "i denie it not": [0, 65535], "denie it not e": [0, 65535], "it not e ant": [0, 65535], "not e ant and": [0, 65535], "e ant and you": [0, 65535], "ant and you sir": [0, 65535], "and you sir for": [0, 65535], "you sir for this": [0, 65535], "sir for this chaine": [0, 65535], "for this chaine arrested": [0, 65535], "this chaine arrested me": [0, 65535], "chaine arrested me gold": [0, 65535], "arrested me gold i": [0, 65535], "me gold i thinke": [0, 65535], "gold i thinke i": [0, 65535], "i thinke i did": [0, 65535], "thinke i did sir": [0, 65535], "i did sir i": [0, 65535], "did sir i deny": [0, 65535], "sir i deny it": [0, 65535], "i deny it not": [0, 65535], "deny it not adr": [0, 65535], "it not adr i": [0, 65535], "not adr i sent": [0, 65535], "adr i sent you": [0, 65535], "i sent you monie": [0, 65535], "sent you monie sir": [0, 65535], "you monie sir to": [0, 65535], "monie sir to be": [0, 65535], "sir to be your": [0, 65535], "to be your baile": [0, 65535], "be your baile by": [0, 65535], "your baile by dromio": [0, 65535], "baile by dromio but": [0, 65535], "by dromio but i": [0, 65535], "dromio but i thinke": [0, 65535], "but i thinke he": [0, 65535], "i thinke he brought": [0, 65535], "thinke he brought it": [0, 65535], "he brought it not": [0, 65535], "brought it not e": [0, 65535], "it not e dro": [0, 65535], "not e dro no": [0, 65535], "e dro no none": [0, 65535], "dro no none by": [0, 65535], "no none by me": [0, 65535], "none by me s": [0, 65535], "by me s ant": [0, 65535], "me s ant this": [0, 65535], "s ant this purse": [0, 65535], "ant this purse of": [0, 65535], "this purse of duckets": [0, 65535], "purse of duckets i": [0, 65535], "of duckets i receiu'd": [0, 65535], "duckets i receiu'd from": [0, 65535], "i receiu'd from you": [0, 65535], "receiu'd from you and": [0, 65535], "from you and dromio": [0, 65535], "you and dromio my": [0, 65535], "and dromio my man": [0, 65535], "dromio my man did": [0, 65535], "my man did bring": [0, 65535], "man did bring them": [0, 65535], "did bring them me": [0, 65535], "bring them me i": [0, 65535], "them me i see": [0, 65535], "me i see we": [0, 65535], "i see we still": [0, 65535], "see we still did": [0, 65535], "we still did meete": [0, 65535], "still did meete each": [0, 65535], "did meete each others": [0, 65535], "meete each others man": [0, 65535], "each others man and": [0, 65535], "others man and i": [0, 65535], "man and i was": [0, 65535], "and i was tane": [0, 65535], "i was tane for": [0, 65535], "was tane for him": [0, 65535], "tane for him and": [0, 65535], "for him and he": [0, 65535], "him and he for": [0, 65535], "and he for me": [0, 65535], "he for me and": [0, 65535], "for me and thereupon": [0, 65535], "me and thereupon these": [0, 65535], "and thereupon these errors": [0, 65535], "thereupon these errors are": [0, 65535], "these errors are arose": [0, 65535], "errors are arose e": [0, 65535], "are arose e ant": [0, 65535], "arose e ant these": [0, 65535], "e ant these duckets": [0, 65535], "ant these duckets pawne": [0, 65535], "these duckets pawne i": [0, 65535], "duckets pawne i for": [0, 65535], "pawne i for my": [0, 65535], "i for my father": [0, 65535], "for my father heere": [0, 65535], "my father heere duke": [0, 65535], "father heere duke it": [0, 65535], "heere duke it shall": [0, 65535], "duke it shall not": [0, 65535], "it shall not neede": [0, 65535], "shall not neede thy": [0, 65535], "not neede thy father": [0, 65535], "neede thy father hath": [0, 65535], "thy father hath his": [0, 65535], "father hath his life": [0, 65535], "hath his life cur": [0, 65535], "his life cur sir": [0, 65535], "life cur sir i": [0, 65535], "cur sir i must": [0, 65535], "sir i must haue": [0, 65535], "i must haue that": [0, 65535], "must haue that diamond": [0, 65535], "haue that diamond from": [0, 65535], "that diamond from you": [0, 65535], "diamond from you e": [0, 65535], "from you e ant": [0, 65535], "you e ant there": [0, 65535], "e ant there take": [0, 65535], "ant there take it": [0, 65535], "there take it and": [0, 65535], "take it and much": [0, 65535], "it and much thanks": [0, 65535], "and much thanks for": [0, 65535], "much thanks for my": [0, 65535], "thanks for my good": [0, 65535], "for my good cheere": [0, 65535], "my good cheere abb": [0, 65535], "good cheere abb renowned": [0, 65535], "cheere abb renowned duke": [0, 65535], "abb renowned duke vouchsafe": [0, 65535], "renowned duke vouchsafe to": [0, 65535], "duke vouchsafe to take": [0, 65535], "vouchsafe to take the": [0, 65535], "to take the paines": [0, 65535], "take the paines to": [0, 65535], "the paines to go": [0, 65535], "paines to go with": [0, 65535], "to go with vs": [0, 65535], "go with vs into": [0, 65535], "with vs into the": [0, 65535], "vs into the abbey": [0, 65535], "into the abbey heere": [0, 65535], "abbey heere and heare": [0, 65535], "heere and heare at": [0, 65535], "and heare at large": [0, 65535], "heare at large discoursed": [0, 65535], "at large discoursed all": [0, 65535], "large discoursed all our": [0, 65535], "discoursed all our fortunes": [0, 65535], "all our fortunes and": [0, 65535], "our fortunes and all": [0, 65535], "fortunes and all that": [0, 65535], "and all that are": [0, 65535], "all that are assembled": [0, 65535], "that are assembled in": [0, 65535], "are assembled in this": [0, 65535], "assembled in this place": [0, 65535], "in this place that": [0, 65535], "this place that by": [0, 65535], "place that by this": [0, 65535], "that by this simpathized": [0, 65535], "by this simpathized one": [0, 65535], "this simpathized one daies": [0, 65535], "simpathized one daies error": [0, 65535], "one daies error haue": [0, 65535], "daies error haue suffer'd": [0, 65535], "error haue suffer'd wrong": [0, 65535], "haue suffer'd wrong goe": [0, 65535], "suffer'd wrong goe keepe": [0, 65535], "wrong goe keepe vs": [0, 65535], "goe keepe vs companie": [0, 65535], "keepe vs companie and": [0, 65535], "vs companie and we": [0, 65535], "companie and we shall": [0, 65535], "and we shall make": [0, 65535], "we shall make full": [0, 65535], "shall make full satisfaction": [0, 65535], "make full satisfaction thirtie": [0, 65535], "full satisfaction thirtie three": [0, 65535], "satisfaction thirtie three yeares": [0, 65535], "thirtie three yeares haue": [0, 65535], "three yeares haue i": [0, 65535], "yeares haue i but": [0, 65535], "haue i but gone": [0, 65535], "i but gone in": [0, 65535], "but gone in trauaile": [0, 65535], "gone in trauaile of": [0, 65535], "in trauaile of you": [0, 65535], "trauaile of you my": [0, 65535], "of you my sonnes": [0, 65535], "you my sonnes and": [0, 65535], "my sonnes and till": [0, 65535], "sonnes and till this": [0, 65535], "and till this present": [0, 65535], "till this present houre": [0, 65535], "this present houre my": [0, 65535], "present houre my heauie": [0, 65535], "houre my heauie burthen": [0, 65535], "my heauie burthen are": [0, 65535], "heauie burthen are deliuered": [0, 65535], "burthen are deliuered the": [0, 65535], "are deliuered the duke": [0, 65535], "deliuered the duke my": [0, 65535], "the duke my husband": [0, 65535], "duke my husband and": [0, 65535], "my husband and my": [0, 65535], "husband and my children": [0, 65535], "and my children both": [0, 65535], "my children both and": [0, 65535], "children both and you": [0, 65535], "both and you the": [0, 65535], "and you the kalenders": [0, 65535], "you the kalenders of": [0, 65535], "the kalenders of their": [0, 65535], "kalenders of their natiuity": [0, 65535], "of their natiuity go": [0, 65535], "their natiuity go to": [0, 65535], "natiuity go to a": [0, 65535], "go to a gossips": [0, 65535], "to a gossips feast": [0, 65535], "a gossips feast and": [0, 65535], "gossips feast and go": [0, 65535], "feast and go with": [0, 65535], "and go with mee": [0, 65535], "go with mee after": [0, 65535], "with mee after so": [0, 65535], "mee after so long": [0, 65535], "after so long greefe": [0, 65535], "so long greefe such": [0, 65535], "long greefe such natiuitie": [0, 65535], "greefe such natiuitie duke": [0, 65535], "such natiuitie duke with": [0, 65535], "natiuitie duke with all": [0, 65535], "duke with all my": [0, 65535], "with all my heart": [0, 65535], "all my heart ile": [0, 65535], "my heart ile gossip": [0, 65535], "heart ile gossip at": [0, 65535], "ile gossip at this": [0, 65535], "gossip at this feast": [0, 65535], "at this feast exeunt": [0, 65535], "this feast exeunt omnes": [0, 65535], "feast exeunt omnes manet": [0, 65535], "exeunt omnes manet the": [0, 65535], "omnes manet the two": [0, 65535], "manet the two dromio's": [0, 65535], "the two dromio's and": [0, 65535], "two dromio's and two": [0, 65535], "dromio's and two brothers": [0, 65535], "and two brothers s": [0, 65535], "two brothers s dro": [0, 65535], "brothers s dro mast": [0, 65535], "s dro mast shall": [0, 65535], "dro mast shall i": [0, 65535], "mast shall i fetch": [0, 65535], "shall i fetch your": [0, 65535], "i fetch your stuffe": [0, 65535], "fetch your stuffe from": [0, 65535], "your stuffe from shipbord": [0, 65535], "stuffe from shipbord e": [0, 65535], "from shipbord e an": [0, 65535], "shipbord e an dromio": [0, 65535], "e an dromio what": [0, 65535], "an dromio what stuffe": [0, 65535], "dromio what stuffe of": [0, 65535], "what stuffe of mine": [0, 65535], "stuffe of mine hast": [0, 65535], "of mine hast thou": [0, 65535], "mine hast thou imbarkt": [0, 65535], "hast thou imbarkt s": [0, 65535], "thou imbarkt s dro": [0, 65535], "imbarkt s dro your": [0, 65535], "s dro your goods": [0, 65535], "dro your goods that": [0, 65535], "your goods that lay": [0, 65535], "goods that lay at": [0, 65535], "that lay at host": [0, 65535], "lay at host sir": [0, 65535], "at host sir in": [0, 65535], "host sir in the": [0, 65535], "sir in the centaur": [0, 65535], "in the centaur s": [0, 65535], "the centaur s ant": [0, 65535], "centaur s ant he": [0, 65535], "s ant he speakes": [0, 65535], "ant he speakes to": [0, 65535], "he speakes to me": [0, 65535], "speakes to me i": [0, 65535], "to me i am": [0, 65535], "me i am your": [0, 65535], "i am your master": [0, 65535], "am your master dromio": [0, 65535], "your master dromio come": [0, 65535], "master dromio come go": [0, 65535], "dromio come go with": [0, 65535], "come go with vs": [0, 65535], "go with vs wee'l": [0, 65535], "with vs wee'l looke": [0, 65535], "vs wee'l looke to": [0, 65535], "wee'l looke to that": [0, 65535], "looke to that anon": [0, 65535], "to that anon embrace": [0, 65535], "that anon embrace thy": [0, 65535], "anon embrace thy brother": [0, 65535], "embrace thy brother there": [0, 65535], "thy brother there reioyce": [0, 65535], "brother there reioyce with": [0, 65535], "there reioyce with him": [0, 65535], "reioyce with him exit": [0, 65535], "with him exit s": [0, 65535], "him exit s dro": [0, 65535], "exit s dro there": [0, 65535], "s dro there is": [0, 65535], "dro there is a": [0, 65535], "there is a fat": [0, 65535], "is a fat friend": [0, 65535], "a fat friend at": [0, 65535], "fat friend at your": [0, 65535], "friend at your masters": [0, 65535], "at your masters house": [0, 65535], "your masters house that": [0, 65535], "masters house that kitchin'd": [0, 65535], "house that kitchin'd me": [0, 65535], "that kitchin'd me for": [0, 65535], "kitchin'd me for you": [0, 65535], "me for you to": [0, 65535], "for you to day": [0, 65535], "you to day at": [0, 65535], "to day at dinner": [0, 65535], "day at dinner she": [0, 65535], "at dinner she now": [0, 65535], "dinner she now shall": [0, 65535], "she now shall be": [0, 65535], "now shall be my": [0, 65535], "shall be my sister": [0, 65535], "be my sister not": [0, 65535], "my sister not my": [0, 65535], "sister not my wife": [0, 65535], "not my wife e": [0, 65535], "my wife e d": [0, 65535], "wife e d me": [0, 65535], "e d me thinks": [0, 65535], "d me thinks you": [0, 65535], "me thinks you are": [0, 65535], "thinks you are my": [0, 65535], "you are my glasse": [0, 65535], "are my glasse not": [0, 65535], "my glasse not my": [0, 65535], "glasse not my brother": [0, 65535], "not my brother i": [0, 65535], "my brother i see": [0, 65535], "brother i see by": [0, 65535], "i see by you": [0, 65535], "see by you i": [0, 65535], "by you i am": [0, 65535], "you i am a": [0, 65535], "i am a sweet": [0, 65535], "am a sweet fac'd": [0, 65535], "a sweet fac'd youth": [0, 65535], "sweet fac'd youth will": [0, 65535], "fac'd youth will you": [0, 65535], "youth will you walke": [0, 65535], "will you walke in": [0, 65535], "you walke in to": [0, 65535], "walke in to see": [0, 65535], "in to see their": [0, 65535], "to see their gossipping": [0, 65535], "see their gossipping s": [0, 65535], "their gossipping s dro": [0, 65535], "gossipping s dro not": [0, 65535], "s dro not i": [0, 65535], "dro not i sir": [0, 65535], "not i sir you": [0, 65535], "i sir you are": [0, 65535], "sir you are my": [0, 65535], "you are my elder": [0, 65535], "are my elder e": [0, 65535], "my elder e dro": [0, 65535], "elder e dro that's": [0, 65535], "e dro that's a": [0, 65535], "dro that's a question": [0, 65535], "that's a question how": [0, 65535], "a question how shall": [0, 65535], "question how shall we": [0, 65535], "how shall we trie": [0, 65535], "shall we trie it": [0, 65535], "we trie it s": [0, 65535], "trie it s dro": [0, 65535], "it s dro wee'l": [0, 65535], "s dro wee'l draw": [0, 65535], "dro wee'l draw cuts": [0, 65535], "wee'l draw cuts for": [0, 65535], "draw cuts for the": [0, 65535], "cuts for the signior": [0, 65535], "for the signior till": [0, 65535], "the signior till then": [0, 65535], "signior till then lead": [0, 65535], "till then lead thou": [0, 65535], "then lead thou first": [0, 65535], "lead thou first e": [0, 65535], "thou first e dro": [0, 65535], "first e dro nay": [0, 65535], "e dro nay then": [0, 65535], "dro nay then thus": [0, 65535], "nay then thus we": [0, 65535], "then thus we came": [0, 65535], "thus we came into": [0, 65535], "we came into the": [0, 65535], "came into the world": [0, 65535], "into the world like": [0, 65535], "the world like brother": [0, 65535], "world like brother and": [0, 65535], "like brother and brother": [0, 65535], "brother and brother and": [0, 65535], "and brother and now": [0, 65535], "brother and now let's": [0, 65535], "and now let's go": [0, 65535], "now let's go hand": [0, 65535], "let's go hand in": [0, 65535], "go hand in hand": [0, 65535], "hand in hand not": [0, 65535], "in hand not one": [0, 65535], "hand not one before": [0, 65535], "not one before another": [0, 65535], "one before another exeunt": [0, 65535], "before another exeunt finis": [0, 65535], "actus quintus sc\u0153na prima enter": [0, 65535], "quintus sc\u0153na prima enter the": [0, 65535], "sc\u0153na prima enter the merchant": [0, 65535], "prima enter the merchant and": [0, 65535], "enter the merchant and the": [0, 65535], "the merchant and the goldsmith": [0, 65535], "merchant and the goldsmith gold": [0, 65535], "and the goldsmith gold i": [0, 65535], "the goldsmith gold i am": [0, 65535], "goldsmith gold i am sorry": [0, 65535], "gold i am sorry sir": [0, 65535], "i am sorry sir that": [0, 65535], "am sorry sir that i": [0, 65535], "sorry sir that i haue": [0, 65535], "sir that i haue hindred": [0, 65535], "that i haue hindred you": [0, 65535], "i haue hindred you but": [0, 65535], "haue hindred you but i": [0, 65535], "hindred you but i protest": [0, 65535], "you but i protest he": [0, 65535], "but i protest he had": [0, 65535], "i protest he had the": [0, 65535], "protest he had the chaine": [0, 65535], "he had the chaine of": [0, 65535], "had the chaine of me": [0, 65535], "the chaine of me though": [0, 65535], "chaine of me though most": [0, 65535], "of me though most dishonestly": [0, 65535], "me though most dishonestly he": [0, 65535], "though most dishonestly he doth": [0, 65535], "most dishonestly he doth denie": [0, 65535], "dishonestly he doth denie it": [0, 65535], "he doth denie it mar": [0, 65535], "doth denie it mar how": [0, 65535], "denie it mar how is": [0, 65535], "it mar how is the": [0, 65535], "mar how is the man": [0, 65535], "how is the man esteem'd": [0, 65535], "is the man esteem'd heere": [0, 65535], "the man esteem'd heere in": [0, 65535], "man esteem'd heere in the": [0, 65535], "esteem'd heere in the citie": [0, 65535], "heere in the citie gold": [0, 65535], "in the citie gold of": [0, 65535], "the citie gold of very": [0, 65535], "citie gold of very reuerent": [0, 65535], "gold of very reuerent reputation": [0, 65535], "of very reuerent reputation sir": [0, 65535], "very reuerent reputation sir of": [0, 65535], "reuerent reputation sir of credit": [0, 65535], "reputation sir of credit infinite": [0, 65535], "sir of credit infinite highly": [0, 65535], "of credit infinite highly belou'd": [0, 65535], "credit infinite highly belou'd second": [0, 65535], "infinite highly belou'd second to": [0, 65535], "highly belou'd second to none": [0, 65535], "belou'd second to none that": [0, 65535], "second to none that liues": [0, 65535], "to none that liues heere": [0, 65535], "none that liues heere in": [0, 65535], "that liues heere in the": [0, 65535], "liues heere in the citie": [0, 65535], "heere in the citie his": [0, 65535], "in the citie his word": [0, 65535], "the citie his word might": [0, 65535], "citie his word might beare": [0, 65535], "his word might beare my": [0, 65535], "word might beare my wealth": [0, 65535], "might beare my wealth at": [0, 65535], "beare my wealth at any": [0, 65535], "my wealth at any time": [0, 65535], "wealth at any time mar": [0, 65535], "at any time mar speake": [0, 65535], "any time mar speake softly": [0, 65535], "time mar speake softly yonder": [0, 65535], "mar speake softly yonder as": [0, 65535], "speake softly yonder as i": [0, 65535], "softly yonder as i thinke": [0, 65535], "yonder as i thinke he": [0, 65535], "as i thinke he walkes": [0, 65535], "i thinke he walkes enter": [0, 65535], "thinke he walkes enter antipholus": [0, 65535], "he walkes enter antipholus and": [0, 65535], "walkes enter antipholus and dromio": [0, 65535], "enter antipholus and dromio againe": [0, 65535], "antipholus and dromio againe gold": [0, 65535], "and dromio againe gold 'tis": [0, 65535], "dromio againe gold 'tis so": [0, 65535], "againe gold 'tis so and": [0, 65535], "gold 'tis so and that": [0, 65535], "'tis so and that selfe": [0, 65535], "so and that selfe chaine": [0, 65535], "and that selfe chaine about": [0, 65535], "that selfe chaine about his": [0, 65535], "selfe chaine about his necke": [0, 65535], "chaine about his necke which": [0, 65535], "about his necke which he": [0, 65535], "his necke which he forswore": [0, 65535], "necke which he forswore most": [0, 65535], "which he forswore most monstrously": [0, 65535], "he forswore most monstrously to": [0, 65535], "forswore most monstrously to haue": [0, 65535], "most monstrously to haue good": [0, 65535], "monstrously to haue good sir": [0, 65535], "to haue good sir draw": [0, 65535], "haue good sir draw neere": [0, 65535], "good sir draw neere to": [0, 65535], "sir draw neere to me": [0, 65535], "draw neere to me ile": [0, 65535], "neere to me ile speake": [0, 65535], "to me ile speake to": [0, 65535], "me ile speake to him": [0, 65535], "ile speake to him signior": [0, 65535], "speake to him signior antipholus": [0, 65535], "to him signior antipholus i": [0, 65535], "him signior antipholus i wonder": [0, 65535], "signior antipholus i wonder much": [0, 65535], "antipholus i wonder much that": [0, 65535], "i wonder much that you": [0, 65535], "wonder much that you would": [0, 65535], "much that you would put": [0, 65535], "that you would put me": [0, 65535], "you would put me to": [0, 65535], "would put me to this": [0, 65535], "put me to this shame": [0, 65535], "me to this shame and": [0, 65535], "to this shame and trouble": [0, 65535], "this shame and trouble and": [0, 65535], "shame and trouble and not": [0, 65535], "and trouble and not without": [0, 65535], "trouble and not without some": [0, 65535], "and not without some scandall": [0, 65535], "not without some scandall to": [0, 65535], "without some scandall to your": [0, 65535], "some scandall to your selfe": [0, 65535], "scandall to your selfe with": [0, 65535], "to your selfe with circumstance": [0, 65535], "your selfe with circumstance and": [0, 65535], "selfe with circumstance and oaths": [0, 65535], "with circumstance and oaths so": [0, 65535], "circumstance and oaths so to": [0, 65535], "and oaths so to denie": [0, 65535], "oaths so to denie this": [0, 65535], "so to denie this chaine": [0, 65535], "to denie this chaine which": [0, 65535], "denie this chaine which now": [0, 65535], "this chaine which now you": [0, 65535], "chaine which now you weare": [0, 65535], "which now you weare so": [0, 65535], "now you weare so openly": [0, 65535], "you weare so openly beside": [0, 65535], "weare so openly beside the": [0, 65535], "so openly beside the charge": [0, 65535], "openly beside the charge the": [0, 65535], "beside the charge the shame": [0, 65535], "the charge the shame imprisonment": [0, 65535], "charge the shame imprisonment you": [0, 65535], "the shame imprisonment you haue": [0, 65535], "shame imprisonment you haue done": [0, 65535], "imprisonment you haue done wrong": [0, 65535], "you haue done wrong to": [0, 65535], "haue done wrong to this": [0, 65535], "done wrong to this my": [0, 65535], "wrong to this my honest": [0, 65535], "to this my honest friend": [0, 65535], "this my honest friend who": [0, 65535], "my honest friend who but": [0, 65535], "honest friend who but for": [0, 65535], "friend who but for staying": [0, 65535], "who but for staying on": [0, 65535], "but for staying on our": [0, 65535], "for staying on our controuersie": [0, 65535], "staying on our controuersie had": [0, 65535], "on our controuersie had hoisted": [0, 65535], "our controuersie had hoisted saile": [0, 65535], "controuersie had hoisted saile and": [0, 65535], "had hoisted saile and put": [0, 65535], "hoisted saile and put to": [0, 65535], "saile and put to sea": [0, 65535], "and put to sea to": [0, 65535], "put to sea to day": [0, 65535], "to sea to day this": [0, 65535], "sea to day this chaine": [0, 65535], "to day this chaine you": [0, 65535], "day this chaine you had": [0, 65535], "this chaine you had of": [0, 65535], "chaine you had of me": [0, 65535], "you had of me can": [0, 65535], "had of me can you": [0, 65535], "of me can you deny": [0, 65535], "me can you deny it": [0, 65535], "can you deny it ant": [0, 65535], "you deny it ant i": [0, 65535], "deny it ant i thinke": [0, 65535], "it ant i thinke i": [0, 65535], "ant i thinke i had": [0, 65535], "i thinke i had i": [0, 65535], "thinke i had i neuer": [0, 65535], "i had i neuer did": [0, 65535], "had i neuer did deny": [0, 65535], "i neuer did deny it": [0, 65535], "neuer did deny it mar": [0, 65535], "did deny it mar yes": [0, 65535], "deny it mar yes that": [0, 65535], "it mar yes that you": [0, 65535], "mar yes that you did": [0, 65535], "yes that you did sir": [0, 65535], "that you did sir and": [0, 65535], "you did sir and forswore": [0, 65535], "did sir and forswore it": [0, 65535], "sir and forswore it too": [0, 65535], "and forswore it too ant": [0, 65535], "forswore it too ant who": [0, 65535], "it too ant who heard": [0, 65535], "too ant who heard me": [0, 65535], "ant who heard me to": [0, 65535], "who heard me to denie": [0, 65535], "heard me to denie it": [0, 65535], "me to denie it or": [0, 65535], "to denie it or forsweare": [0, 65535], "denie it or forsweare it": [0, 65535], "it or forsweare it mar": [0, 65535], "or forsweare it mar these": [0, 65535], "forsweare it mar these eares": [0, 65535], "it mar these eares of": [0, 65535], "mar these eares of mine": [0, 65535], "these eares of mine thou": [0, 65535], "eares of mine thou knowst": [0, 65535], "of mine thou knowst did": [0, 65535], "mine thou knowst did hear": [0, 65535], "thou knowst did hear thee": [0, 65535], "knowst did hear thee fie": [0, 65535], "did hear thee fie on": [0, 65535], "hear thee fie on thee": [0, 65535], "thee fie on thee wretch": [0, 65535], "fie on thee wretch 'tis": [0, 65535], "on thee wretch 'tis pitty": [0, 65535], "thee wretch 'tis pitty that": [0, 65535], "wretch 'tis pitty that thou": [0, 65535], "'tis pitty that thou liu'st": [0, 65535], "pitty that thou liu'st to": [0, 65535], "that thou liu'st to walke": [0, 65535], "thou liu'st to walke where": [0, 65535], "liu'st to walke where any": [0, 65535], "to walke where any honest": [0, 65535], "walke where any honest men": [0, 65535], "where any honest men resort": [0, 65535], "any honest men resort ant": [0, 65535], "honest men resort ant thou": [0, 65535], "men resort ant thou art": [0, 65535], "resort ant thou art a": [0, 65535], "ant thou art a villaine": [0, 65535], "thou art a villaine to": [0, 65535], "art a villaine to impeach": [0, 65535], "a villaine to impeach me": [0, 65535], "villaine to impeach me thus": [0, 65535], "to impeach me thus ile": [0, 65535], "impeach me thus ile proue": [0, 65535], "me thus ile proue mine": [0, 65535], "thus ile proue mine honor": [0, 65535], "ile proue mine honor and": [0, 65535], "proue mine honor and mine": [0, 65535], "mine honor and mine honestie": [0, 65535], "honor and mine honestie against": [0, 65535], "and mine honestie against thee": [0, 65535], "mine honestie against thee presently": [0, 65535], "honestie against thee presently if": [0, 65535], "against thee presently if thou": [0, 65535], "thee presently if thou dar'st": [0, 65535], "presently if thou dar'st stand": [0, 65535], "if thou dar'st stand mar": [0, 65535], "thou dar'st stand mar i": [0, 65535], "dar'st stand mar i dare": [0, 65535], "stand mar i dare and": [0, 65535], "mar i dare and do": [0, 65535], "i dare and do defie": [0, 65535], "dare and do defie thee": [0, 65535], "and do defie thee for": [0, 65535], "do defie thee for a": [0, 65535], "defie thee for a villaine": [0, 65535], "thee for a villaine they": [0, 65535], "for a villaine they draw": [0, 65535], "a villaine they draw enter": [0, 65535], "villaine they draw enter adriana": [0, 65535], "they draw enter adriana luciana": [0, 65535], "draw enter adriana luciana courtezan": [0, 65535], "enter adriana luciana courtezan others": [0, 65535], "adriana luciana courtezan others adr": [0, 65535], "luciana courtezan others adr hold": [0, 65535], "courtezan others adr hold hurt": [0, 65535], "others adr hold hurt him": [0, 65535], "adr hold hurt him not": [0, 65535], "hold hurt him not for": [0, 65535], "hurt him not for god": [0, 65535], "him not for god sake": [0, 65535], "not for god sake he": [0, 65535], "for god sake he is": [0, 65535], "god sake he is mad": [0, 65535], "sake he is mad some": [0, 65535], "he is mad some get": [0, 65535], "is mad some get within": [0, 65535], "mad some get within him": [0, 65535], "some get within him take": [0, 65535], "get within him take his": [0, 65535], "within him take his sword": [0, 65535], "him take his sword away": [0, 65535], "take his sword away binde": [0, 65535], "his sword away binde dromio": [0, 65535], "sword away binde dromio too": [0, 65535], "away binde dromio too and": [0, 65535], "binde dromio too and beare": [0, 65535], "dromio too and beare them": [0, 65535], "too and beare them to": [0, 65535], "and beare them to my": [0, 65535], "beare them to my house": [0, 65535], "them to my house s": [0, 65535], "to my house s dro": [0, 65535], "my house s dro runne": [0, 65535], "house s dro runne master": [0, 65535], "s dro runne master run": [0, 65535], "dro runne master run for": [0, 65535], "runne master run for gods": [0, 65535], "master run for gods sake": [0, 65535], "run for gods sake take": [0, 65535], "for gods sake take a": [0, 65535], "gods sake take a house": [0, 65535], "sake take a house this": [0, 65535], "take a house this is": [0, 65535], "a house this is some": [0, 65535], "house this is some priorie": [0, 65535], "this is some priorie in": [0, 65535], "is some priorie in or": [0, 65535], "some priorie in or we": [0, 65535], "priorie in or we are": [0, 65535], "in or we are spoyl'd": [0, 65535], "or we are spoyl'd exeunt": [0, 65535], "we are spoyl'd exeunt to": [0, 65535], "are spoyl'd exeunt to the": [0, 65535], "spoyl'd exeunt to the priorie": [0, 65535], "exeunt to the priorie enter": [0, 65535], "to the priorie enter ladie": [0, 65535], "the priorie enter ladie abbesse": [0, 65535], "priorie enter ladie abbesse ab": [0, 65535], "enter ladie abbesse ab be": [0, 65535], "ladie abbesse ab be quiet": [0, 65535], "abbesse ab be quiet people": [0, 65535], "ab be quiet people wherefore": [0, 65535], "be quiet people wherefore throng": [0, 65535], "quiet people wherefore throng you": [0, 65535], "people wherefore throng you hither": [0, 65535], "wherefore throng you hither adr": [0, 65535], "throng you hither adr to": [0, 65535], "you hither adr to fetch": [0, 65535], "hither adr to fetch my": [0, 65535], "adr to fetch my poore": [0, 65535], "to fetch my poore distracted": [0, 65535], "fetch my poore distracted husband": [0, 65535], "my poore distracted husband hence": [0, 65535], "poore distracted husband hence let": [0, 65535], "distracted husband hence let vs": [0, 65535], "husband hence let vs come": [0, 65535], "hence let vs come in": [0, 65535], "let vs come in that": [0, 65535], "vs come in that we": [0, 65535], "come in that we may": [0, 65535], "in that we may binde": [0, 65535], "that we may binde him": [0, 65535], "we may binde him fast": [0, 65535], "may binde him fast and": [0, 65535], "binde him fast and beare": [0, 65535], "him fast and beare him": [0, 65535], "fast and beare him home": [0, 65535], "and beare him home for": [0, 65535], "beare him home for his": [0, 65535], "him home for his recouerie": [0, 65535], "home for his recouerie gold": [0, 65535], "for his recouerie gold i": [0, 65535], "his recouerie gold i knew": [0, 65535], "recouerie gold i knew he": [0, 65535], "gold i knew he was": [0, 65535], "i knew he was not": [0, 65535], "knew he was not in": [0, 65535], "he was not in his": [0, 65535], "was not in his perfect": [0, 65535], "not in his perfect wits": [0, 65535], "in his perfect wits mar": [0, 65535], "his perfect wits mar i": [0, 65535], "perfect wits mar i am": [0, 65535], "wits mar i am sorry": [0, 65535], "mar i am sorry now": [0, 65535], "i am sorry now that": [0, 65535], "am sorry now that i": [0, 65535], "sorry now that i did": [0, 65535], "now that i did draw": [0, 65535], "that i did draw on": [0, 65535], "i did draw on him": [0, 65535], "did draw on him ab": [0, 65535], "draw on him ab how": [0, 65535], "on him ab how long": [0, 65535], "him ab how long hath": [0, 65535], "ab how long hath this": [0, 65535], "how long hath this possession": [0, 65535], "long hath this possession held": [0, 65535], "hath this possession held the": [0, 65535], "this possession held the man": [0, 65535], "possession held the man adr": [0, 65535], "held the man adr this": [0, 65535], "the man adr this weeke": [0, 65535], "man adr this weeke he": [0, 65535], "adr this weeke he hath": [0, 65535], "this weeke he hath beene": [0, 65535], "weeke he hath beene heauie": [0, 65535], "he hath beene heauie sower": [0, 65535], "hath beene heauie sower sad": [0, 65535], "beene heauie sower sad and": [0, 65535], "heauie sower sad and much": [0, 65535], "sower sad and much different": [0, 65535], "sad and much different from": [0, 65535], "and much different from the": [0, 65535], "much different from the man": [0, 65535], "different from the man he": [0, 65535], "from the man he was": [0, 65535], "the man he was but": [0, 65535], "man he was but till": [0, 65535], "he was but till this": [0, 65535], "was but till this afternoone": [0, 65535], "but till this afternoone his": [0, 65535], "till this afternoone his passion": [0, 65535], "this afternoone his passion ne're": [0, 65535], "afternoone his passion ne're brake": [0, 65535], "his passion ne're brake into": [0, 65535], "passion ne're brake into extremity": [0, 65535], "ne're brake into extremity of": [0, 65535], "brake into extremity of rage": [0, 65535], "into extremity of rage ab": [0, 65535], "extremity of rage ab hath": [0, 65535], "of rage ab hath he": [0, 65535], "rage ab hath he not": [0, 65535], "ab hath he not lost": [0, 65535], "hath he not lost much": [0, 65535], "he not lost much wealth": [0, 65535], "not lost much wealth by": [0, 65535], "lost much wealth by wrack": [0, 65535], "much wealth by wrack of": [0, 65535], "wealth by wrack of sea": [0, 65535], "by wrack of sea buried": [0, 65535], "wrack of sea buried some": [0, 65535], "of sea buried some deere": [0, 65535], "sea buried some deere friend": [0, 65535], "buried some deere friend hath": [0, 65535], "some deere friend hath not": [0, 65535], "deere friend hath not else": [0, 65535], "friend hath not else his": [0, 65535], "hath not else his eye": [0, 65535], "not else his eye stray'd": [0, 65535], "else his eye stray'd his": [0, 65535], "his eye stray'd his affection": [0, 65535], "eye stray'd his affection in": [0, 65535], "stray'd his affection in vnlawfull": [0, 65535], "his affection in vnlawfull loue": [0, 65535], "affection in vnlawfull loue a": [0, 65535], "in vnlawfull loue a sinne": [0, 65535], "vnlawfull loue a sinne preuailing": [0, 65535], "loue a sinne preuailing much": [0, 65535], "a sinne preuailing much in": [0, 65535], "sinne preuailing much in youthfull": [0, 65535], "preuailing much in youthfull men": [0, 65535], "much in youthfull men who": [0, 65535], "in youthfull men who giue": [0, 65535], "youthfull men who giue their": [0, 65535], "men who giue their eies": [0, 65535], "who giue their eies the": [0, 65535], "giue their eies the liberty": [0, 65535], "their eies the liberty of": [0, 65535], "eies the liberty of gazing": [0, 65535], "the liberty of gazing which": [0, 65535], "liberty of gazing which of": [0, 65535], "of gazing which of these": [0, 65535], "gazing which of these sorrowes": [0, 65535], "which of these sorrowes is": [0, 65535], "of these sorrowes is he": [0, 65535], "these sorrowes is he subiect": [0, 65535], "sorrowes is he subiect too": [0, 65535], "is he subiect too adr": [0, 65535], "he subiect too adr to": [0, 65535], "subiect too adr to none": [0, 65535], "too adr to none of": [0, 65535], "adr to none of these": [0, 65535], "to none of these except": [0, 65535], "none of these except it": [0, 65535], "of these except it be": [0, 65535], "these except it be the": [0, 65535], "except it be the last": [0, 65535], "it be the last namely": [0, 65535], "be the last namely some": [0, 65535], "the last namely some loue": [0, 65535], "last namely some loue that": [0, 65535], "namely some loue that drew": [0, 65535], "some loue that drew him": [0, 65535], "loue that drew him oft": [0, 65535], "that drew him oft from": [0, 65535], "drew him oft from home": [0, 65535], "him oft from home ab": [0, 65535], "oft from home ab you": [0, 65535], "from home ab you should": [0, 65535], "home ab you should for": [0, 65535], "ab you should for that": [0, 65535], "you should for that haue": [0, 65535], "should for that haue reprehended": [0, 65535], "for that haue reprehended him": [0, 65535], "that haue reprehended him adr": [0, 65535], "haue reprehended him adr why": [0, 65535], "reprehended him adr why so": [0, 65535], "him adr why so i": [0, 65535], "adr why so i did": [0, 65535], "why so i did ab": [0, 65535], "so i did ab i": [0, 65535], "i did ab i but": [0, 65535], "did ab i but not": [0, 65535], "ab i but not rough": [0, 65535], "i but not rough enough": [0, 65535], "but not rough enough adr": [0, 65535], "not rough enough adr as": [0, 65535], "rough enough adr as roughly": [0, 65535], "enough adr as roughly as": [0, 65535], "adr as roughly as my": [0, 65535], "as roughly as my modestie": [0, 65535], "roughly as my modestie would": [0, 65535], "as my modestie would let": [0, 65535], "my modestie would let me": [0, 65535], "modestie would let me ab": [0, 65535], "would let me ab haply": [0, 65535], "let me ab haply in": [0, 65535], "me ab haply in priuate": [0, 65535], "ab haply in priuate adr": [0, 65535], "haply in priuate adr and": [0, 65535], "in priuate adr and in": [0, 65535], "priuate adr and in assemblies": [0, 65535], "adr and in assemblies too": [0, 65535], "and in assemblies too ab": [0, 65535], "in assemblies too ab i": [0, 65535], "assemblies too ab i but": [0, 65535], "too ab i but not": [0, 65535], "ab i but not enough": [0, 65535], "i but not enough adr": [0, 65535], "but not enough adr it": [0, 65535], "not enough adr it was": [0, 65535], "enough adr it was the": [0, 65535], "adr it was the copie": [0, 65535], "it was the copie of": [0, 65535], "was the copie of our": [0, 65535], "the copie of our conference": [0, 65535], "copie of our conference in": [0, 65535], "of our conference in bed": [0, 65535], "our conference in bed he": [0, 65535], "conference in bed he slept": [0, 65535], "in bed he slept not": [0, 65535], "bed he slept not for": [0, 65535], "he slept not for my": [0, 65535], "slept not for my vrging": [0, 65535], "not for my vrging it": [0, 65535], "for my vrging it at": [0, 65535], "my vrging it at boord": [0, 65535], "vrging it at boord he": [0, 65535], "it at boord he fed": [0, 65535], "at boord he fed not": [0, 65535], "boord he fed not for": [0, 65535], "he fed not for my": [0, 65535], "fed not for my vrging": [0, 65535], "for my vrging it alone": [0, 65535], "my vrging it alone it": [0, 65535], "vrging it alone it was": [0, 65535], "it alone it was the": [0, 65535], "alone it was the subiect": [0, 65535], "it was the subiect of": [0, 65535], "was the subiect of my": [0, 65535], "the subiect of my theame": [0, 65535], "subiect of my theame in": [0, 65535], "of my theame in company": [0, 65535], "my theame in company i": [0, 65535], "theame in company i often": [0, 65535], "in company i often glanced": [0, 65535], "company i often glanced it": [0, 65535], "i often glanced it still": [0, 65535], "often glanced it still did": [0, 65535], "glanced it still did i": [0, 65535], "it still did i tell": [0, 65535], "still did i tell him": [0, 65535], "did i tell him it": [0, 65535], "i tell him it was": [0, 65535], "tell him it was vilde": [0, 65535], "him it was vilde and": [0, 65535], "it was vilde and bad": [0, 65535], "was vilde and bad ab": [0, 65535], "vilde and bad ab and": [0, 65535], "and bad ab and thereof": [0, 65535], "bad ab and thereof came": [0, 65535], "ab and thereof came it": [0, 65535], "and thereof came it that": [0, 65535], "thereof came it that the": [0, 65535], "came it that the man": [0, 65535], "it that the man was": [0, 65535], "that the man was mad": [0, 65535], "the man was mad the": [0, 65535], "man was mad the venome": [0, 65535], "was mad the venome clamors": [0, 65535], "mad the venome clamors of": [0, 65535], "the venome clamors of a": [0, 65535], "venome clamors of a iealous": [0, 65535], "clamors of a iealous woman": [0, 65535], "of a iealous woman poisons": [0, 65535], "a iealous woman poisons more": [0, 65535], "iealous woman poisons more deadly": [0, 65535], "woman poisons more deadly then": [0, 65535], "poisons more deadly then a": [0, 65535], "more deadly then a mad": [0, 65535], "deadly then a mad dogges": [0, 65535], "then a mad dogges tooth": [0, 65535], "a mad dogges tooth it": [0, 65535], "mad dogges tooth it seemes": [0, 65535], "dogges tooth it seemes his": [0, 65535], "tooth it seemes his sleepes": [0, 65535], "it seemes his sleepes were": [0, 65535], "seemes his sleepes were hindred": [0, 65535], "his sleepes were hindred by": [0, 65535], "sleepes were hindred by thy": [0, 65535], "were hindred by thy railing": [0, 65535], "hindred by thy railing and": [0, 65535], "by thy railing and thereof": [0, 65535], "thy railing and thereof comes": [0, 65535], "railing and thereof comes it": [0, 65535], "and thereof comes it that": [0, 65535], "thereof comes it that his": [0, 65535], "comes it that his head": [0, 65535], "it that his head is": [0, 65535], "that his head is light": [0, 65535], "his head is light thou": [0, 65535], "head is light thou saist": [0, 65535], "is light thou saist his": [0, 65535], "light thou saist his meate": [0, 65535], "thou saist his meate was": [0, 65535], "saist his meate was sawc'd": [0, 65535], "his meate was sawc'd with": [0, 65535], "meate was sawc'd with thy": [0, 65535], "was sawc'd with thy vpbraidings": [0, 65535], "sawc'd with thy vpbraidings vnquiet": [0, 65535], "with thy vpbraidings vnquiet meales": [0, 65535], "thy vpbraidings vnquiet meales make": [0, 65535], "vpbraidings vnquiet meales make ill": [0, 65535], "vnquiet meales make ill digestions": [0, 65535], "meales make ill digestions thereof": [0, 65535], "make ill digestions thereof the": [0, 65535], "ill digestions thereof the raging": [0, 65535], "digestions thereof the raging fire": [0, 65535], "thereof the raging fire of": [0, 65535], "the raging fire of feauer": [0, 65535], "raging fire of feauer bred": [0, 65535], "fire of feauer bred and": [0, 65535], "of feauer bred and what's": [0, 65535], "feauer bred and what's a": [0, 65535], "bred and what's a feauer": [0, 65535], "and what's a feauer but": [0, 65535], "what's a feauer but a": [0, 65535], "a feauer but a fit": [0, 65535], "feauer but a fit of": [0, 65535], "but a fit of madnesse": [0, 65535], "a fit of madnesse thou": [0, 65535], "fit of madnesse thou sayest": [0, 65535], "of madnesse thou sayest his": [0, 65535], "madnesse thou sayest his sports": [0, 65535], "thou sayest his sports were": [0, 65535], "sayest his sports were hindred": [0, 65535], "his sports were hindred by": [0, 65535], "sports were hindred by thy": [0, 65535], "were hindred by thy bralles": [0, 65535], "hindred by thy bralles sweet": [0, 65535], "by thy bralles sweet recreation": [0, 65535], "thy bralles sweet recreation barr'd": [0, 65535], "bralles sweet recreation barr'd what": [0, 65535], "sweet recreation barr'd what doth": [0, 65535], "recreation barr'd what doth ensue": [0, 65535], "barr'd what doth ensue but": [0, 65535], "what doth ensue but moodie": [0, 65535], "doth ensue but moodie and": [0, 65535], "ensue but moodie and dull": [0, 65535], "but moodie and dull melancholly": [0, 65535], "moodie and dull melancholly kinsman": [0, 65535], "and dull melancholly kinsman to": [0, 65535], "dull melancholly kinsman to grim": [0, 65535], "melancholly kinsman to grim and": [0, 65535], "kinsman to grim and comfortlesse": [0, 65535], "to grim and comfortlesse dispaire": [0, 65535], "grim and comfortlesse dispaire and": [0, 65535], "and comfortlesse dispaire and at": [0, 65535], "comfortlesse dispaire and at her": [0, 65535], "dispaire and at her heeles": [0, 65535], "and at her heeles a": [0, 65535], "at her heeles a huge": [0, 65535], "her heeles a huge infectious": [0, 65535], "heeles a huge infectious troope": [0, 65535], "a huge infectious troope of": [0, 65535], "huge infectious troope of pale": [0, 65535], "infectious troope of pale distemperatures": [0, 65535], "troope of pale distemperatures and": [0, 65535], "of pale distemperatures and foes": [0, 65535], "pale distemperatures and foes to": [0, 65535], "distemperatures and foes to life": [0, 65535], "and foes to life in": [0, 65535], "foes to life in food": [0, 65535], "to life in food in": [0, 65535], "life in food in sport": [0, 65535], "in food in sport and": [0, 65535], "food in sport and life": [0, 65535], "in sport and life preseruing": [0, 65535], "sport and life preseruing rest": [0, 65535], "and life preseruing rest to": [0, 65535], "life preseruing rest to be": [0, 65535], "preseruing rest to be disturb'd": [0, 65535], "rest to be disturb'd would": [0, 65535], "to be disturb'd would mad": [0, 65535], "be disturb'd would mad or": [0, 65535], "disturb'd would mad or man": [0, 65535], "would mad or man or": [0, 65535], "mad or man or beast": [0, 65535], "or man or beast the": [0, 65535], "man or beast the consequence": [0, 65535], "or beast the consequence is": [0, 65535], "beast the consequence is then": [0, 65535], "the consequence is then thy": [0, 65535], "consequence is then thy iealous": [0, 65535], "is then thy iealous fits": [0, 65535], "then thy iealous fits hath": [0, 65535], "thy iealous fits hath scar'd": [0, 65535], "iealous fits hath scar'd thy": [0, 65535], "fits hath scar'd thy husband": [0, 65535], "hath scar'd thy husband from": [0, 65535], "scar'd thy husband from the": [0, 65535], "thy husband from the vse": [0, 65535], "husband from the vse of": [0, 65535], "from the vse of wits": [0, 65535], "the vse of wits luc": [0, 65535], "vse of wits luc she": [0, 65535], "of wits luc she neuer": [0, 65535], "wits luc she neuer reprehended": [0, 65535], "luc she neuer reprehended him": [0, 65535], "she neuer reprehended him but": [0, 65535], "neuer reprehended him but mildely": [0, 65535], "reprehended him but mildely when": [0, 65535], "him but mildely when he": [0, 65535], "but mildely when he demean'd": [0, 65535], "mildely when he demean'd himselfe": [0, 65535], "when he demean'd himselfe rough": [0, 65535], "he demean'd himselfe rough rude": [0, 65535], "demean'd himselfe rough rude and": [0, 65535], "himselfe rough rude and wildly": [0, 65535], "rough rude and wildly why": [0, 65535], "rude and wildly why beare": [0, 65535], "and wildly why beare you": [0, 65535], "wildly why beare you these": [0, 65535], "why beare you these rebukes": [0, 65535], "beare you these rebukes and": [0, 65535], "you these rebukes and answer": [0, 65535], "these rebukes and answer not": [0, 65535], "rebukes and answer not adri": [0, 65535], "and answer not adri she": [0, 65535], "answer not adri she did": [0, 65535], "not adri she did betray": [0, 65535], "adri she did betray me": [0, 65535], "she did betray me to": [0, 65535], "did betray me to my": [0, 65535], "betray me to my owne": [0, 65535], "me to my owne reproofe": [0, 65535], "to my owne reproofe good": [0, 65535], "my owne reproofe good people": [0, 65535], "owne reproofe good people enter": [0, 65535], "reproofe good people enter and": [0, 65535], "good people enter and lay": [0, 65535], "people enter and lay hold": [0, 65535], "enter and lay hold on": [0, 65535], "and lay hold on him": [0, 65535], "lay hold on him ab": [0, 65535], "hold on him ab no": [0, 65535], "on him ab no not": [0, 65535], "him ab no not a": [0, 65535], "ab no not a creature": [0, 65535], "no not a creature enters": [0, 65535], "not a creature enters in": [0, 65535], "a creature enters in my": [0, 65535], "creature enters in my house": [0, 65535], "enters in my house ad": [0, 65535], "in my house ad then": [0, 65535], "my house ad then let": [0, 65535], "house ad then let your": [0, 65535], "ad then let your seruants": [0, 65535], "then let your seruants bring": [0, 65535], "let your seruants bring my": [0, 65535], "your seruants bring my husband": [0, 65535], "seruants bring my husband forth": [0, 65535], "bring my husband forth ab": [0, 65535], "my husband forth ab neither": [0, 65535], "husband forth ab neither he": [0, 65535], "forth ab neither he tooke": [0, 65535], "ab neither he tooke this": [0, 65535], "neither he tooke this place": [0, 65535], "he tooke this place for": [0, 65535], "tooke this place for sanctuary": [0, 65535], "this place for sanctuary and": [0, 65535], "place for sanctuary and it": [0, 65535], "for sanctuary and it shall": [0, 65535], "sanctuary and it shall priuiledge": [0, 65535], "and it shall priuiledge him": [0, 65535], "it shall priuiledge him from": [0, 65535], "shall priuiledge him from your": [0, 65535], "priuiledge him from your hands": [0, 65535], "him from your hands till": [0, 65535], "from your hands till i": [0, 65535], "your hands till i haue": [0, 65535], "hands till i haue brought": [0, 65535], "till i haue brought him": [0, 65535], "i haue brought him to": [0, 65535], "haue brought him to his": [0, 65535], "brought him to his wits": [0, 65535], "him to his wits againe": [0, 65535], "to his wits againe or": [0, 65535], "his wits againe or loose": [0, 65535], "wits againe or loose my": [0, 65535], "againe or loose my labour": [0, 65535], "or loose my labour in": [0, 65535], "loose my labour in assaying": [0, 65535], "my labour in assaying it": [0, 65535], "labour in assaying it adr": [0, 65535], "in assaying it adr i": [0, 65535], "assaying it adr i will": [0, 65535], "it adr i will attend": [0, 65535], "adr i will attend my": [0, 65535], "i will attend my husband": [0, 65535], "will attend my husband be": [0, 65535], "attend my husband be his": [0, 65535], "my husband be his nurse": [0, 65535], "husband be his nurse diet": [0, 65535], "be his nurse diet his": [0, 65535], "his nurse diet his sicknesse": [0, 65535], "nurse diet his sicknesse for": [0, 65535], "diet his sicknesse for it": [0, 65535], "his sicknesse for it is": [0, 65535], "sicknesse for it is my": [0, 65535], "for it is my office": [0, 65535], "it is my office and": [0, 65535], "is my office and will": [0, 65535], "my office and will haue": [0, 65535], "office and will haue no": [0, 65535], "and will haue no atturney": [0, 65535], "will haue no atturney but": [0, 65535], "haue no atturney but my": [0, 65535], "no atturney but my selfe": [0, 65535], "atturney but my selfe and": [0, 65535], "but my selfe and therefore": [0, 65535], "my selfe and therefore let": [0, 65535], "selfe and therefore let me": [0, 65535], "and therefore let me haue": [0, 65535], "therefore let me haue him": [0, 65535], "let me haue him home": [0, 65535], "me haue him home with": [0, 65535], "haue him home with me": [0, 65535], "him home with me ab": [0, 65535], "home with me ab be": [0, 65535], "with me ab be patient": [0, 65535], "me ab be patient for": [0, 65535], "ab be patient for i": [0, 65535], "be patient for i will": [0, 65535], "patient for i will not": [0, 65535], "for i will not let": [0, 65535], "i will not let him": [0, 65535], "will not let him stirre": [0, 65535], "not let him stirre till": [0, 65535], "let him stirre till i": [0, 65535], "him stirre till i haue": [0, 65535], "stirre till i haue vs'd": [0, 65535], "till i haue vs'd the": [0, 65535], "i haue vs'd the approoued": [0, 65535], "haue vs'd the approoued meanes": [0, 65535], "vs'd the approoued meanes i": [0, 65535], "the approoued meanes i haue": [0, 65535], "approoued meanes i haue with": [0, 65535], "meanes i haue with wholsome": [0, 65535], "i haue with wholsome sirrups": [0, 65535], "haue with wholsome sirrups drugges": [0, 65535], "with wholsome sirrups drugges and": [0, 65535], "wholsome sirrups drugges and holy": [0, 65535], "sirrups drugges and holy prayers": [0, 65535], "drugges and holy prayers to": [0, 65535], "and holy prayers to make": [0, 65535], "holy prayers to make of": [0, 65535], "prayers to make of him": [0, 65535], "to make of him a": [0, 65535], "make of him a formall": [0, 65535], "of him a formall man": [0, 65535], "him a formall man againe": [0, 65535], "a formall man againe it": [0, 65535], "formall man againe it is": [0, 65535], "man againe it is a": [0, 65535], "againe it is a branch": [0, 65535], "it is a branch and": [0, 65535], "is a branch and parcell": [0, 65535], "a branch and parcell of": [0, 65535], "branch and parcell of mine": [0, 65535], "and parcell of mine oath": [0, 65535], "parcell of mine oath a": [0, 65535], "of mine oath a charitable": [0, 65535], "mine oath a charitable dutie": [0, 65535], "oath a charitable dutie of": [0, 65535], "a charitable dutie of my": [0, 65535], "charitable dutie of my order": [0, 65535], "dutie of my order therefore": [0, 65535], "of my order therefore depart": [0, 65535], "my order therefore depart and": [0, 65535], "order therefore depart and leaue": [0, 65535], "therefore depart and leaue him": [0, 65535], "depart and leaue him heere": [0, 65535], "and leaue him heere with": [0, 65535], "leaue him heere with me": [0, 65535], "him heere with me adr": [0, 65535], "heere with me adr i": [0, 65535], "with me adr i will": [0, 65535], "me adr i will not": [0, 65535], "adr i will not hence": [0, 65535], "i will not hence and": [0, 65535], "will not hence and leaue": [0, 65535], "not hence and leaue my": [0, 65535], "hence and leaue my husband": [0, 65535], "and leaue my husband heere": [0, 65535], "leaue my husband heere and": [0, 65535], "my husband heere and ill": [0, 65535], "husband heere and ill it": [0, 65535], "heere and ill it doth": [0, 65535], "and ill it doth beseeme": [0, 65535], "ill it doth beseeme your": [0, 65535], "it doth beseeme your holinesse": [0, 65535], "doth beseeme your holinesse to": [0, 65535], "beseeme your holinesse to separate": [0, 65535], "your holinesse to separate the": [0, 65535], "holinesse to separate the husband": [0, 65535], "to separate the husband and": [0, 65535], "separate the husband and the": [0, 65535], "the husband and the wife": [0, 65535], "husband and the wife ab": [0, 65535], "and the wife ab be": [0, 65535], "the wife ab be quiet": [0, 65535], "wife ab be quiet and": [0, 65535], "ab be quiet and depart": [0, 65535], "be quiet and depart thou": [0, 65535], "quiet and depart thou shalt": [0, 65535], "and depart thou shalt not": [0, 65535], "depart thou shalt not haue": [0, 65535], "thou shalt not haue him": [0, 65535], "shalt not haue him luc": [0, 65535], "not haue him luc complaine": [0, 65535], "haue him luc complaine vnto": [0, 65535], "him luc complaine vnto the": [0, 65535], "luc complaine vnto the duke": [0, 65535], "complaine vnto the duke of": [0, 65535], "vnto the duke of this": [0, 65535], "the duke of this indignity": [0, 65535], "duke of this indignity adr": [0, 65535], "of this indignity adr come": [0, 65535], "this indignity adr come go": [0, 65535], "indignity adr come go i": [0, 65535], "adr come go i will": [0, 65535], "come go i will fall": [0, 65535], "go i will fall prostrate": [0, 65535], "i will fall prostrate at": [0, 65535], "will fall prostrate at his": [0, 65535], "fall prostrate at his feete": [0, 65535], "prostrate at his feete and": [0, 65535], "at his feete and neuer": [0, 65535], "his feete and neuer rise": [0, 65535], "feete and neuer rise vntill": [0, 65535], "and neuer rise vntill my": [0, 65535], "neuer rise vntill my teares": [0, 65535], "rise vntill my teares and": [0, 65535], "vntill my teares and prayers": [0, 65535], "my teares and prayers haue": [0, 65535], "teares and prayers haue won": [0, 65535], "and prayers haue won his": [0, 65535], "prayers haue won his grace": [0, 65535], "haue won his grace to": [0, 65535], "won his grace to come": [0, 65535], "his grace to come in": [0, 65535], "grace to come in person": [0, 65535], "to come in person hither": [0, 65535], "come in person hither and": [0, 65535], "in person hither and take": [0, 65535], "person hither and take perforce": [0, 65535], "hither and take perforce my": [0, 65535], "and take perforce my husband": [0, 65535], "take perforce my husband from": [0, 65535], "perforce my husband from the": [0, 65535], "my husband from the abbesse": [0, 65535], "husband from the abbesse mar": [0, 65535], "from the abbesse mar by": [0, 65535], "the abbesse mar by this": [0, 65535], "abbesse mar by this i": [0, 65535], "mar by this i thinke": [0, 65535], "by this i thinke the": [0, 65535], "this i thinke the diall": [0, 65535], "i thinke the diall points": [0, 65535], "thinke the diall points at": [0, 65535], "the diall points at fiue": [0, 65535], "diall points at fiue anon": [0, 65535], "points at fiue anon i'me": [0, 65535], "at fiue anon i'me sure": [0, 65535], "fiue anon i'me sure the": [0, 65535], "anon i'me sure the duke": [0, 65535], "i'me sure the duke himselfe": [0, 65535], "sure the duke himselfe in": [0, 65535], "the duke himselfe in person": [0, 65535], "duke himselfe in person comes": [0, 65535], "himselfe in person comes this": [0, 65535], "in person comes this way": [0, 65535], "person comes this way to": [0, 65535], "comes this way to the": [0, 65535], "this way to the melancholly": [0, 65535], "way to the melancholly vale": [0, 65535], "to the melancholly vale the": [0, 65535], "the melancholly vale the place": [0, 65535], "melancholly vale the place of": [0, 65535], "vale the place of depth": [0, 65535], "the place of depth and": [0, 65535], "place of depth and sorrie": [0, 65535], "of depth and sorrie execution": [0, 65535], "depth and sorrie execution behinde": [0, 65535], "and sorrie execution behinde the": [0, 65535], "sorrie execution behinde the ditches": [0, 65535], "execution behinde the ditches of": [0, 65535], "behinde the ditches of the": [0, 65535], "the ditches of the abbey": [0, 65535], "ditches of the abbey heere": [0, 65535], "of the abbey heere gold": [0, 65535], "the abbey heere gold vpon": [0, 65535], "abbey heere gold vpon what": [0, 65535], "heere gold vpon what cause": [0, 65535], "gold vpon what cause mar": [0, 65535], "vpon what cause mar to": [0, 65535], "what cause mar to see": [0, 65535], "cause mar to see a": [0, 65535], "mar to see a reuerent": [0, 65535], "to see a reuerent siracusian": [0, 65535], "see a reuerent siracusian merchant": [0, 65535], "a reuerent siracusian merchant who": [0, 65535], "reuerent siracusian merchant who put": [0, 65535], "siracusian merchant who put vnluckily": [0, 65535], "merchant who put vnluckily into": [0, 65535], "who put vnluckily into this": [0, 65535], "put vnluckily into this bay": [0, 65535], "vnluckily into this bay against": [0, 65535], "into this bay against the": [0, 65535], "this bay against the lawes": [0, 65535], "bay against the lawes and": [0, 65535], "against the lawes and statutes": [0, 65535], "the lawes and statutes of": [0, 65535], "lawes and statutes of this": [0, 65535], "and statutes of this towne": [0, 65535], "statutes of this towne beheaded": [0, 65535], "of this towne beheaded publikely": [0, 65535], "this towne beheaded publikely for": [0, 65535], "towne beheaded publikely for his": [0, 65535], "beheaded publikely for his offence": [0, 65535], "publikely for his offence gold": [0, 65535], "for his offence gold see": [0, 65535], "his offence gold see where": [0, 65535], "offence gold see where they": [0, 65535], "gold see where they come": [0, 65535], "see where they come we": [0, 65535], "where they come we wil": [0, 65535], "they come we wil behold": [0, 65535], "come we wil behold his": [0, 65535], "we wil behold his death": [0, 65535], "wil behold his death luc": [0, 65535], "behold his death luc kneele": [0, 65535], "his death luc kneele to": [0, 65535], "death luc kneele to the": [0, 65535], "luc kneele to the duke": [0, 65535], "kneele to the duke before": [0, 65535], "to the duke before he": [0, 65535], "the duke before he passe": [0, 65535], "duke before he passe the": [0, 65535], "before he passe the abbey": [0, 65535], "he passe the abbey enter": [0, 65535], "passe the abbey enter the": [0, 65535], "the abbey enter the duke": [0, 65535], "abbey enter the duke of": [0, 65535], "enter the duke of ephesus": [0, 65535], "the duke of ephesus and": [0, 65535], "duke of ephesus and the": [0, 65535], "of ephesus and the merchant": [0, 65535], "ephesus and the merchant of": [0, 65535], "and the merchant of siracuse": [0, 65535], "the merchant of siracuse bare": [0, 65535], "merchant of siracuse bare head": [0, 65535], "of siracuse bare head with": [0, 65535], "siracuse bare head with the": [0, 65535], "bare head with the headsman": [0, 65535], "head with the headsman other": [0, 65535], "with the headsman other officers": [0, 65535], "the headsman other officers duke": [0, 65535], "headsman other officers duke yet": [0, 65535], "other officers duke yet once": [0, 65535], "officers duke yet once againe": [0, 65535], "duke yet once againe proclaime": [0, 65535], "yet once againe proclaime it": [0, 65535], "once againe proclaime it publikely": [0, 65535], "againe proclaime it publikely if": [0, 65535], "proclaime it publikely if any": [0, 65535], "it publikely if any friend": [0, 65535], "publikely if any friend will": [0, 65535], "if any friend will pay": [0, 65535], "any friend will pay the": [0, 65535], "friend will pay the summe": [0, 65535], "will pay the summe for": [0, 65535], "pay the summe for him": [0, 65535], "the summe for him he": [0, 65535], "summe for him he shall": [0, 65535], "for him he shall not": [0, 65535], "him he shall not die": [0, 65535], "he shall not die so": [0, 65535], "shall not die so much": [0, 65535], "not die so much we": [0, 65535], "die so much we tender": [0, 65535], "so much we tender him": [0, 65535], "much we tender him adr": [0, 65535], "we tender him adr iustice": [0, 65535], "tender him adr iustice most": [0, 65535], "him adr iustice most sacred": [0, 65535], "adr iustice most sacred duke": [0, 65535], "iustice most sacred duke against": [0, 65535], "most sacred duke against the": [0, 65535], "sacred duke against the abbesse": [0, 65535], "duke against the abbesse duke": [0, 65535], "against the abbesse duke she": [0, 65535], "the abbesse duke she is": [0, 65535], "abbesse duke she is a": [0, 65535], "duke she is a vertuous": [0, 65535], "she is a vertuous and": [0, 65535], "is a vertuous and a": [0, 65535], "a vertuous and a reuerend": [0, 65535], "vertuous and a reuerend lady": [0, 65535], "and a reuerend lady it": [0, 65535], "a reuerend lady it cannot": [0, 65535], "reuerend lady it cannot be": [0, 65535], "lady it cannot be that": [0, 65535], "it cannot be that she": [0, 65535], "cannot be that she hath": [0, 65535], "be that she hath done": [0, 65535], "that she hath done thee": [0, 65535], "she hath done thee wrong": [0, 65535], "hath done thee wrong adr": [0, 65535], "done thee wrong adr may": [0, 65535], "thee wrong adr may it": [0, 65535], "wrong adr may it please": [0, 65535], "adr may it please your": [0, 65535], "may it please your grace": [0, 65535], "it please your grace antipholus": [0, 65535], "please your grace antipholus my": [0, 65535], "your grace antipholus my husba": [0, 65535], "grace antipholus my husba n": [0, 65535], "antipholus my husba n d": [0, 65535], "my husba n d who": [0, 65535], "husba n d who i": [0, 65535], "n d who i made": [0, 65535], "d who i made lord": [0, 65535], "who i made lord of": [0, 65535], "i made lord of me": [0, 65535], "made lord of me and": [0, 65535], "lord of me and all": [0, 65535], "of me and all i": [0, 65535], "me and all i had": [0, 65535], "and all i had at": [0, 65535], "all i had at your": [0, 65535], "i had at your important": [0, 65535], "had at your important letters": [0, 65535], "at your important letters this": [0, 65535], "your important letters this ill": [0, 65535], "important letters this ill day": [0, 65535], "letters this ill day a": [0, 65535], "this ill day a most": [0, 65535], "ill day a most outragious": [0, 65535], "day a most outragious fit": [0, 65535], "a most outragious fit of": [0, 65535], "most outragious fit of madnesse": [0, 65535], "outragious fit of madnesse tooke": [0, 65535], "fit of madnesse tooke him": [0, 65535], "of madnesse tooke him that": [0, 65535], "madnesse tooke him that desp'rately": [0, 65535], "tooke him that desp'rately he": [0, 65535], "him that desp'rately he hurried": [0, 65535], "that desp'rately he hurried through": [0, 65535], "desp'rately he hurried through the": [0, 65535], "he hurried through the streete": [0, 65535], "hurried through the streete with": [0, 65535], "through the streete with him": [0, 65535], "the streete with him his": [0, 65535], "streete with him his bondman": [0, 65535], "with him his bondman all": [0, 65535], "him his bondman all as": [0, 65535], "his bondman all as mad": [0, 65535], "bondman all as mad as": [0, 65535], "all as mad as he": [0, 65535], "as mad as he doing": [0, 65535], "mad as he doing displeasure": [0, 65535], "as he doing displeasure to": [0, 65535], "he doing displeasure to the": [0, 65535], "doing displeasure to the citizens": [0, 65535], "displeasure to the citizens by": [0, 65535], "to the citizens by rushing": [0, 65535], "the citizens by rushing in": [0, 65535], "citizens by rushing in their": [0, 65535], "by rushing in their houses": [0, 65535], "rushing in their houses bearing": [0, 65535], "in their houses bearing thence": [0, 65535], "their houses bearing thence rings": [0, 65535], "houses bearing thence rings iewels": [0, 65535], "bearing thence rings iewels any": [0, 65535], "thence rings iewels any thing": [0, 65535], "rings iewels any thing his": [0, 65535], "iewels any thing his rage": [0, 65535], "any thing his rage did": [0, 65535], "thing his rage did like": [0, 65535], "his rage did like once": [0, 65535], "rage did like once did": [0, 65535], "did like once did i": [0, 65535], "like once did i get": [0, 65535], "once did i get him": [0, 65535], "did i get him bound": [0, 65535], "i get him bound and": [0, 65535], "get him bound and sent": [0, 65535], "him bound and sent him": [0, 65535], "bound and sent him home": [0, 65535], "and sent him home whil'st": [0, 65535], "sent him home whil'st to": [0, 65535], "him home whil'st to take": [0, 65535], "home whil'st to take order": [0, 65535], "whil'st to take order for": [0, 65535], "to take order for the": [0, 65535], "take order for the wrongs": [0, 65535], "order for the wrongs i": [0, 65535], "for the wrongs i went": [0, 65535], "the wrongs i went that": [0, 65535], "wrongs i went that heere": [0, 65535], "i went that heere and": [0, 65535], "went that heere and there": [0, 65535], "that heere and there his": [0, 65535], "heere and there his furie": [0, 65535], "and there his furie had": [0, 65535], "there his furie had committed": [0, 65535], "his furie had committed anon": [0, 65535], "furie had committed anon i": [0, 65535], "had committed anon i wot": [0, 65535], "committed anon i wot not": [0, 65535], "anon i wot not by": [0, 65535], "i wot not by what": [0, 65535], "wot not by what strong": [0, 65535], "not by what strong escape": [0, 65535], "by what strong escape he": [0, 65535], "what strong escape he broke": [0, 65535], "strong escape he broke from": [0, 65535], "escape he broke from those": [0, 65535], "he broke from those that": [0, 65535], "broke from those that had": [0, 65535], "from those that had the": [0, 65535], "those that had the guard": [0, 65535], "that had the guard of": [0, 65535], "had the guard of him": [0, 65535], "the guard of him and": [0, 65535], "guard of him and with": [0, 65535], "of him and with his": [0, 65535], "him and with his mad": [0, 65535], "and with his mad attendant": [0, 65535], "with his mad attendant and": [0, 65535], "his mad attendant and himselfe": [0, 65535], "mad attendant and himselfe each": [0, 65535], "attendant and himselfe each one": [0, 65535], "and himselfe each one with": [0, 65535], "himselfe each one with irefull": [0, 65535], "each one with irefull passion": [0, 65535], "one with irefull passion with": [0, 65535], "with irefull passion with drawne": [0, 65535], "irefull passion with drawne swords": [0, 65535], "passion with drawne swords met": [0, 65535], "with drawne swords met vs": [0, 65535], "drawne swords met vs againe": [0, 65535], "swords met vs againe and": [0, 65535], "met vs againe and madly": [0, 65535], "vs againe and madly bent": [0, 65535], "againe and madly bent on": [0, 65535], "and madly bent on vs": [0, 65535], "madly bent on vs chac'd": [0, 65535], "bent on vs chac'd vs": [0, 65535], "on vs chac'd vs away": [0, 65535], "vs chac'd vs away till": [0, 65535], "chac'd vs away till raising": [0, 65535], "vs away till raising of": [0, 65535], "away till raising of more": [0, 65535], "till raising of more aide": [0, 65535], "raising of more aide we": [0, 65535], "of more aide we came": [0, 65535], "more aide we came againe": [0, 65535], "aide we came againe to": [0, 65535], "we came againe to binde": [0, 65535], "came againe to binde them": [0, 65535], "againe to binde them then": [0, 65535], "to binde them then they": [0, 65535], "binde them then they fled": [0, 65535], "them then they fled into": [0, 65535], "then they fled into this": [0, 65535], "they fled into this abbey": [0, 65535], "fled into this abbey whether": [0, 65535], "into this abbey whether we": [0, 65535], "this abbey whether we pursu'd": [0, 65535], "abbey whether we pursu'd them": [0, 65535], "whether we pursu'd them and": [0, 65535], "we pursu'd them and heere": [0, 65535], "pursu'd them and heere the": [0, 65535], "them and heere the abbesse": [0, 65535], "and heere the abbesse shuts": [0, 65535], "heere the abbesse shuts the": [0, 65535], "the abbesse shuts the gates": [0, 65535], "abbesse shuts the gates on": [0, 65535], "shuts the gates on vs": [0, 65535], "the gates on vs and": [0, 65535], "gates on vs and will": [0, 65535], "on vs and will not": [0, 65535], "vs and will not suffer": [0, 65535], "and will not suffer vs": [0, 65535], "will not suffer vs to": [0, 65535], "not suffer vs to fetch": [0, 65535], "suffer vs to fetch him": [0, 65535], "vs to fetch him out": [0, 65535], "to fetch him out nor": [0, 65535], "fetch him out nor send": [0, 65535], "him out nor send him": [0, 65535], "out nor send him forth": [0, 65535], "nor send him forth that": [0, 65535], "send him forth that we": [0, 65535], "him forth that we may": [0, 65535], "forth that we may beare": [0, 65535], "that we may beare him": [0, 65535], "we may beare him hence": [0, 65535], "may beare him hence therefore": [0, 65535], "beare him hence therefore most": [0, 65535], "him hence therefore most gracious": [0, 65535], "hence therefore most gracious duke": [0, 65535], "therefore most gracious duke with": [0, 65535], "most gracious duke with thy": [0, 65535], "gracious duke with thy command": [0, 65535], "duke with thy command let": [0, 65535], "with thy command let him": [0, 65535], "thy command let him be": [0, 65535], "command let him be brought": [0, 65535], "let him be brought forth": [0, 65535], "him be brought forth and": [0, 65535], "be brought forth and borne": [0, 65535], "brought forth and borne hence": [0, 65535], "forth and borne hence for": [0, 65535], "and borne hence for helpe": [0, 65535], "borne hence for helpe duke": [0, 65535], "hence for helpe duke long": [0, 65535], "for helpe duke long since": [0, 65535], "helpe duke long since thy": [0, 65535], "duke long since thy husband": [0, 65535], "long since thy husband seru'd": [0, 65535], "since thy husband seru'd me": [0, 65535], "thy husband seru'd me in": [0, 65535], "husband seru'd me in my": [0, 65535], "seru'd me in my wars": [0, 65535], "me in my wars and": [0, 65535], "in my wars and i": [0, 65535], "my wars and i to": [0, 65535], "wars and i to thee": [0, 65535], "and i to thee ingag'd": [0, 65535], "i to thee ingag'd a": [0, 65535], "to thee ingag'd a princes": [0, 65535], "thee ingag'd a princes word": [0, 65535], "ingag'd a princes word when": [0, 65535], "a princes word when thou": [0, 65535], "princes word when thou didst": [0, 65535], "word when thou didst make": [0, 65535], "when thou didst make him": [0, 65535], "thou didst make him master": [0, 65535], "didst make him master of": [0, 65535], "make him master of thy": [0, 65535], "him master of thy bed": [0, 65535], "master of thy bed to": [0, 65535], "of thy bed to do": [0, 65535], "thy bed to do him": [0, 65535], "bed to do him all": [0, 65535], "to do him all the": [0, 65535], "do him all the grace": [0, 65535], "him all the grace and": [0, 65535], "all the grace and good": [0, 65535], "the grace and good i": [0, 65535], "grace and good i could": [0, 65535], "and good i could go": [0, 65535], "good i could go some": [0, 65535], "i could go some of": [0, 65535], "could go some of you": [0, 65535], "go some of you knocke": [0, 65535], "some of you knocke at": [0, 65535], "of you knocke at the": [0, 65535], "you knocke at the abbey": [0, 65535], "knocke at the abbey gate": [0, 65535], "at the abbey gate and": [0, 65535], "the abbey gate and bid": [0, 65535], "abbey gate and bid the": [0, 65535], "gate and bid the lady": [0, 65535], "and bid the lady abbesse": [0, 65535], "bid the lady abbesse come": [0, 65535], "the lady abbesse come to": [0, 65535], "lady abbesse come to me": [0, 65535], "abbesse come to me i": [0, 65535], "come to me i will": [0, 65535], "to me i will determine": [0, 65535], "me i will determine this": [0, 65535], "i will determine this before": [0, 65535], "will determine this before i": [0, 65535], "determine this before i stirre": [0, 65535], "this before i stirre enter": [0, 65535], "before i stirre enter a": [0, 65535], "i stirre enter a messenger": [0, 65535], "stirre enter a messenger oh": [0, 65535], "enter a messenger oh mistris": [0, 65535], "a messenger oh mistris mistris": [0, 65535], "messenger oh mistris mistris shift": [0, 65535], "oh mistris mistris shift and": [0, 65535], "mistris mistris shift and saue": [0, 65535], "mistris shift and saue your": [0, 65535], "shift and saue your selfe": [0, 65535], "and saue your selfe my": [0, 65535], "saue your selfe my master": [0, 65535], "your selfe my master and": [0, 65535], "selfe my master and his": [0, 65535], "my master and his man": [0, 65535], "master and his man are": [0, 65535], "and his man are both": [0, 65535], "his man are both broke": [0, 65535], "man are both broke loose": [0, 65535], "are both broke loose beaten": [0, 65535], "both broke loose beaten the": [0, 65535], "broke loose beaten the maids": [0, 65535], "loose beaten the maids a": [0, 65535], "beaten the maids a row": [0, 65535], "the maids a row and": [0, 65535], "maids a row and bound": [0, 65535], "a row and bound the": [0, 65535], "row and bound the doctor": [0, 65535], "and bound the doctor whose": [0, 65535], "bound the doctor whose beard": [0, 65535], "the doctor whose beard they": [0, 65535], "doctor whose beard they haue": [0, 65535], "whose beard they haue sindg'd": [0, 65535], "beard they haue sindg'd off": [0, 65535], "they haue sindg'd off with": [0, 65535], "haue sindg'd off with brands": [0, 65535], "sindg'd off with brands of": [0, 65535], "off with brands of fire": [0, 65535], "with brands of fire and": [0, 65535], "brands of fire and euer": [0, 65535], "of fire and euer as": [0, 65535], "fire and euer as it": [0, 65535], "and euer as it blaz'd": [0, 65535], "euer as it blaz'd they": [0, 65535], "as it blaz'd they threw": [0, 65535], "it blaz'd they threw on": [0, 65535], "blaz'd they threw on him": [0, 65535], "they threw on him great": [0, 65535], "threw on him great pailes": [0, 65535], "on him great pailes of": [0, 65535], "him great pailes of puddled": [0, 65535], "great pailes of puddled myre": [0, 65535], "pailes of puddled myre to": [0, 65535], "of puddled myre to quench": [0, 65535], "puddled myre to quench the": [0, 65535], "myre to quench the haire": [0, 65535], "to quench the haire my": [0, 65535], "quench the haire my mr": [0, 65535], "the haire my mr preaches": [0, 65535], "haire my mr preaches patience": [0, 65535], "my mr preaches patience to": [0, 65535], "mr preaches patience to him": [0, 65535], "preaches patience to him and": [0, 65535], "patience to him and the": [0, 65535], "to him and the while": [0, 65535], "him and the while his": [0, 65535], "and the while his man": [0, 65535], "the while his man with": [0, 65535], "while his man with cizers": [0, 65535], "his man with cizers nickes": [0, 65535], "man with cizers nickes him": [0, 65535], "with cizers nickes him like": [0, 65535], "cizers nickes him like a": [0, 65535], "nickes him like a foole": [0, 65535], "him like a foole and": [0, 65535], "like a foole and sure": [0, 65535], "a foole and sure vnlesse": [0, 65535], "foole and sure vnlesse you": [0, 65535], "and sure vnlesse you send": [0, 65535], "sure vnlesse you send some": [0, 65535], "vnlesse you send some present": [0, 65535], "you send some present helpe": [0, 65535], "send some present helpe betweene": [0, 65535], "some present helpe betweene them": [0, 65535], "present helpe betweene them they": [0, 65535], "helpe betweene them they will": [0, 65535], "betweene them they will kill": [0, 65535], "them they will kill the": [0, 65535], "they will kill the coniurer": [0, 65535], "will kill the coniurer adr": [0, 65535], "kill the coniurer adr peace": [0, 65535], "the coniurer adr peace foole": [0, 65535], "coniurer adr peace foole thy": [0, 65535], "adr peace foole thy master": [0, 65535], "peace foole thy master and": [0, 65535], "foole thy master and his": [0, 65535], "thy master and his man": [0, 65535], "and his man are here": [0, 65535], "his man are here and": [0, 65535], "man are here and that": [0, 65535], "are here and that is": [0, 65535], "here and that is false": [0, 65535], "and that is false thou": [0, 65535], "that is false thou dost": [0, 65535], "is false thou dost report": [0, 65535], "false thou dost report to": [0, 65535], "thou dost report to vs": [0, 65535], "dost report to vs mess": [0, 65535], "report to vs mess mistris": [0, 65535], "to vs mess mistris vpon": [0, 65535], "vs mess mistris vpon my": [0, 65535], "mess mistris vpon my life": [0, 65535], "mistris vpon my life i": [0, 65535], "vpon my life i tel": [0, 65535], "my life i tel you": [0, 65535], "life i tel you true": [0, 65535], "i tel you true i": [0, 65535], "tel you true i haue": [0, 65535], "you true i haue not": [0, 65535], "true i haue not breath'd": [0, 65535], "i haue not breath'd almost": [0, 65535], "haue not breath'd almost since": [0, 65535], "not breath'd almost since i": [0, 65535], "breath'd almost since i did": [0, 65535], "almost since i did see": [0, 65535], "since i did see it": [0, 65535], "i did see it he": [0, 65535], "did see it he cries": [0, 65535], "see it he cries for": [0, 65535], "it he cries for you": [0, 65535], "he cries for you and": [0, 65535], "cries for you and vowes": [0, 65535], "for you and vowes if": [0, 65535], "you and vowes if he": [0, 65535], "and vowes if he can": [0, 65535], "vowes if he can take": [0, 65535], "if he can take you": [0, 65535], "he can take you to": [0, 65535], "can take you to scorch": [0, 65535], "take you to scorch your": [0, 65535], "you to scorch your face": [0, 65535], "to scorch your face and": [0, 65535], "scorch your face and to": [0, 65535], "your face and to disfigure": [0, 65535], "face and to disfigure you": [0, 65535], "and to disfigure you cry": [0, 65535], "to disfigure you cry within": [0, 65535], "disfigure you cry within harke": [0, 65535], "you cry within harke harke": [0, 65535], "cry within harke harke i": [0, 65535], "within harke harke i heare": [0, 65535], "harke harke i heare him": [0, 65535], "harke i heare him mistris": [0, 65535], "i heare him mistris flie": [0, 65535], "heare him mistris flie be": [0, 65535], "him mistris flie be gone": [0, 65535], "mistris flie be gone duke": [0, 65535], "flie be gone duke come": [0, 65535], "be gone duke come stand": [0, 65535], "gone duke come stand by": [0, 65535], "duke come stand by me": [0, 65535], "come stand by me feare": [0, 65535], "stand by me feare nothing": [0, 65535], "by me feare nothing guard": [0, 65535], "me feare nothing guard with": [0, 65535], "feare nothing guard with halberds": [0, 65535], "nothing guard with halberds adr": [0, 65535], "guard with halberds adr ay": [0, 65535], "with halberds adr ay me": [0, 65535], "halberds adr ay me it": [0, 65535], "adr ay me it is": [0, 65535], "ay me it is my": [0, 65535], "me it is my husband": [0, 65535], "it is my husband witnesse": [0, 65535], "is my husband witnesse you": [0, 65535], "my husband witnesse you that": [0, 65535], "husband witnesse you that he": [0, 65535], "witnesse you that he is": [0, 65535], "you that he is borne": [0, 65535], "that he is borne about": [0, 65535], "he is borne about inuisible": [0, 65535], "is borne about inuisible euen": [0, 65535], "borne about inuisible euen now": [0, 65535], "about inuisible euen now we": [0, 65535], "inuisible euen now we hous'd": [0, 65535], "euen now we hous'd him": [0, 65535], "now we hous'd him in": [0, 65535], "we hous'd him in the": [0, 65535], "hous'd him in the abbey": [0, 65535], "him in the abbey heere": [0, 65535], "in the abbey heere and": [0, 65535], "the abbey heere and now": [0, 65535], "abbey heere and now he's": [0, 65535], "heere and now he's there": [0, 65535], "and now he's there past": [0, 65535], "now he's there past thought": [0, 65535], "he's there past thought of": [0, 65535], "there past thought of humane": [0, 65535], "past thought of humane reason": [0, 65535], "thought of humane reason enter": [0, 65535], "of humane reason enter antipholus": [0, 65535], "humane reason enter antipholus and": [0, 65535], "reason enter antipholus and e": [0, 65535], "enter antipholus and e dromio": [0, 65535], "antipholus and e dromio of": [0, 65535], "and e dromio of ephesus": [0, 65535], "e dromio of ephesus e": [0, 65535], "dromio of ephesus e ant": [0, 65535], "of ephesus e ant iustice": [0, 65535], "ephesus e ant iustice most": [0, 65535], "e ant iustice most gracious": [0, 65535], "ant iustice most gracious duke": [0, 65535], "iustice most gracious duke oh": [0, 65535], "most gracious duke oh grant": [0, 65535], "gracious duke oh grant me": [0, 65535], "duke oh grant me iustice": [0, 65535], "oh grant me iustice euen": [0, 65535], "grant me iustice euen for": [0, 65535], "me iustice euen for the": [0, 65535], "iustice euen for the seruice": [0, 65535], "euen for the seruice that": [0, 65535], "for the seruice that long": [0, 65535], "the seruice that long since": [0, 65535], "seruice that long since i": [0, 65535], "that long since i did": [0, 65535], "long since i did thee": [0, 65535], "since i did thee when": [0, 65535], "i did thee when i": [0, 65535], "did thee when i bestrid": [0, 65535], "thee when i bestrid thee": [0, 65535], "when i bestrid thee in": [0, 65535], "i bestrid thee in the": [0, 65535], "bestrid thee in the warres": [0, 65535], "thee in the warres and": [0, 65535], "in the warres and tooke": [0, 65535], "the warres and tooke deepe": [0, 65535], "warres and tooke deepe scarres": [0, 65535], "and tooke deepe scarres to": [0, 65535], "tooke deepe scarres to saue": [0, 65535], "deepe scarres to saue thy": [0, 65535], "scarres to saue thy life": [0, 65535], "to saue thy life euen": [0, 65535], "saue thy life euen for": [0, 65535], "thy life euen for the": [0, 65535], "life euen for the blood": [0, 65535], "euen for the blood that": [0, 65535], "for the blood that then": [0, 65535], "the blood that then i": [0, 65535], "blood that then i lost": [0, 65535], "that then i lost for": [0, 65535], "then i lost for thee": [0, 65535], "i lost for thee now": [0, 65535], "lost for thee now grant": [0, 65535], "for thee now grant me": [0, 65535], "thee now grant me iustice": [0, 65535], "now grant me iustice mar": [0, 65535], "grant me iustice mar fat": [0, 65535], "me iustice mar fat vnlesse": [0, 65535], "iustice mar fat vnlesse the": [0, 65535], "mar fat vnlesse the feare": [0, 65535], "fat vnlesse the feare of": [0, 65535], "vnlesse the feare of death": [0, 65535], "the feare of death doth": [0, 65535], "feare of death doth make": [0, 65535], "of death doth make me": [0, 65535], "death doth make me dote": [0, 65535], "doth make me dote i": [0, 65535], "make me dote i see": [0, 65535], "me dote i see my": [0, 65535], "dote i see my sonne": [0, 65535], "i see my sonne antipholus": [0, 65535], "see my sonne antipholus and": [0, 65535], "my sonne antipholus and dromio": [0, 65535], "sonne antipholus and dromio e": [0, 65535], "antipholus and dromio e ant": [0, 65535], "and dromio e ant iustice": [0, 65535], "dromio e ant iustice sweet": [0, 65535], "e ant iustice sweet prince": [0, 65535], "ant iustice sweet prince against": [0, 65535], "iustice sweet prince against that": [0, 65535], "sweet prince against that woman": [0, 65535], "prince against that woman there": [0, 65535], "against that woman there she": [0, 65535], "that woman there she whom": [0, 65535], "woman there she whom thou": [0, 65535], "there she whom thou gau'st": [0, 65535], "she whom thou gau'st to": [0, 65535], "whom thou gau'st to me": [0, 65535], "thou gau'st to me to": [0, 65535], "gau'st to me to be": [0, 65535], "to me to be my": [0, 65535], "me to be my wife": [0, 65535], "to be my wife that": [0, 65535], "be my wife that hath": [0, 65535], "my wife that hath abused": [0, 65535], "wife that hath abused and": [0, 65535], "that hath abused and dishonored": [0, 65535], "hath abused and dishonored me": [0, 65535], "abused and dishonored me euen": [0, 65535], "and dishonored me euen in": [0, 65535], "dishonored me euen in the": [0, 65535], "me euen in the strength": [0, 65535], "euen in the strength and": [0, 65535], "in the strength and height": [0, 65535], "the strength and height of": [0, 65535], "strength and height of iniurie": [0, 65535], "and height of iniurie beyond": [0, 65535], "height of iniurie beyond imagination": [0, 65535], "of iniurie beyond imagination is": [0, 65535], "iniurie beyond imagination is the": [0, 65535], "beyond imagination is the wrong": [0, 65535], "imagination is the wrong that": [0, 65535], "is the wrong that she": [0, 65535], "the wrong that she this": [0, 65535], "wrong that she this day": [0, 65535], "that she this day hath": [0, 65535], "she this day hath shamelesse": [0, 65535], "this day hath shamelesse throwne": [0, 65535], "day hath shamelesse throwne on": [0, 65535], "hath shamelesse throwne on me": [0, 65535], "shamelesse throwne on me duke": [0, 65535], "throwne on me duke discouer": [0, 65535], "on me duke discouer how": [0, 65535], "me duke discouer how and": [0, 65535], "duke discouer how and thou": [0, 65535], "discouer how and thou shalt": [0, 65535], "how and thou shalt finde": [0, 65535], "and thou shalt finde me": [0, 65535], "thou shalt finde me iust": [0, 65535], "shalt finde me iust e": [0, 65535], "finde me iust e ant": [0, 65535], "me iust e ant this": [0, 65535], "iust e ant this day": [0, 65535], "e ant this day great": [0, 65535], "ant this day great duke": [0, 65535], "this day great duke she": [0, 65535], "day great duke she shut": [0, 65535], "great duke she shut the": [0, 65535], "duke she shut the doores": [0, 65535], "she shut the doores vpon": [0, 65535], "shut the doores vpon me": [0, 65535], "the doores vpon me while": [0, 65535], "doores vpon me while she": [0, 65535], "vpon me while she with": [0, 65535], "me while she with harlots": [0, 65535], "while she with harlots feasted": [0, 65535], "she with harlots feasted in": [0, 65535], "with harlots feasted in my": [0, 65535], "harlots feasted in my house": [0, 65535], "feasted in my house duke": [0, 65535], "in my house duke a": [0, 65535], "my house duke a greeuous": [0, 65535], "house duke a greeuous fault": [0, 65535], "duke a greeuous fault say": [0, 65535], "a greeuous fault say woman": [0, 65535], "greeuous fault say woman didst": [0, 65535], "fault say woman didst thou": [0, 65535], "say woman didst thou so": [0, 65535], "woman didst thou so adr": [0, 65535], "didst thou so adr no": [0, 65535], "thou so adr no my": [0, 65535], "so adr no my good": [0, 65535], "adr no my good lord": [0, 65535], "no my good lord my": [0, 65535], "my good lord my selfe": [0, 65535], "good lord my selfe he": [0, 65535], "lord my selfe he and": [0, 65535], "my selfe he and my": [0, 65535], "selfe he and my sister": [0, 65535], "he and my sister to": [0, 65535], "and my sister to day": [0, 65535], "my sister to day did": [0, 65535], "sister to day did dine": [0, 65535], "to day did dine together": [0, 65535], "day did dine together so": [0, 65535], "did dine together so befall": [0, 65535], "dine together so befall my": [0, 65535], "together so befall my soule": [0, 65535], "so befall my soule as": [0, 65535], "befall my soule as this": [0, 65535], "my soule as this is": [0, 65535], "soule as this is false": [0, 65535], "as this is false he": [0, 65535], "this is false he burthens": [0, 65535], "is false he burthens me": [0, 65535], "false he burthens me withall": [0, 65535], "he burthens me withall luc": [0, 65535], "burthens me withall luc nere": [0, 65535], "me withall luc nere may": [0, 65535], "withall luc nere may i": [0, 65535], "luc nere may i looke": [0, 65535], "nere may i looke on": [0, 65535], "may i looke on day": [0, 65535], "i looke on day nor": [0, 65535], "looke on day nor sleepe": [0, 65535], "on day nor sleepe on": [0, 65535], "day nor sleepe on night": [0, 65535], "nor sleepe on night but": [0, 65535], "sleepe on night but she": [0, 65535], "on night but she tels": [0, 65535], "night but she tels to": [0, 65535], "but she tels to your": [0, 65535], "she tels to your highnesse": [0, 65535], "tels to your highnesse simple": [0, 65535], "to your highnesse simple truth": [0, 65535], "your highnesse simple truth gold": [0, 65535], "highnesse simple truth gold o": [0, 65535], "simple truth gold o periur'd": [0, 65535], "truth gold o periur'd woman": [0, 65535], "gold o periur'd woman they": [0, 65535], "o periur'd woman they are": [0, 65535], "periur'd woman they are both": [0, 65535], "woman they are both forsworne": [0, 65535], "they are both forsworne in": [0, 65535], "are both forsworne in this": [0, 65535], "both forsworne in this the": [0, 65535], "forsworne in this the madman": [0, 65535], "in this the madman iustly": [0, 65535], "this the madman iustly chargeth": [0, 65535], "the madman iustly chargeth them": [0, 65535], "madman iustly chargeth them e": [0, 65535], "iustly chargeth them e ant": [0, 65535], "chargeth them e ant my": [0, 65535], "them e ant my liege": [0, 65535], "e ant my liege i": [0, 65535], "ant my liege i am": [0, 65535], "my liege i am aduised": [0, 65535], "liege i am aduised what": [0, 65535], "i am aduised what i": [0, 65535], "am aduised what i say": [0, 65535], "aduised what i say neither": [0, 65535], "what i say neither disturbed": [0, 65535], "i say neither disturbed with": [0, 65535], "say neither disturbed with the": [0, 65535], "neither disturbed with the effect": [0, 65535], "disturbed with the effect of": [0, 65535], "with the effect of wine": [0, 65535], "the effect of wine nor": [0, 65535], "effect of wine nor headie": [0, 65535], "of wine nor headie rash": [0, 65535], "wine nor headie rash prouoak'd": [0, 65535], "nor headie rash prouoak'd with": [0, 65535], "headie rash prouoak'd with raging": [0, 65535], "rash prouoak'd with raging ire": [0, 65535], "prouoak'd with raging ire albeit": [0, 65535], "with raging ire albeit my": [0, 65535], "raging ire albeit my wrongs": [0, 65535], "ire albeit my wrongs might": [0, 65535], "albeit my wrongs might make": [0, 65535], "my wrongs might make one": [0, 65535], "wrongs might make one wiser": [0, 65535], "might make one wiser mad": [0, 65535], "make one wiser mad this": [0, 65535], "one wiser mad this woman": [0, 65535], "wiser mad this woman lock'd": [0, 65535], "mad this woman lock'd me": [0, 65535], "this woman lock'd me out": [0, 65535], "woman lock'd me out this": [0, 65535], "lock'd me out this day": [0, 65535], "me out this day from": [0, 65535], "out this day from dinner": [0, 65535], "this day from dinner that": [0, 65535], "day from dinner that goldsmith": [0, 65535], "from dinner that goldsmith there": [0, 65535], "dinner that goldsmith there were": [0, 65535], "that goldsmith there were he": [0, 65535], "goldsmith there were he not": [0, 65535], "there were he not pack'd": [0, 65535], "were he not pack'd with": [0, 65535], "he not pack'd with her": [0, 65535], "not pack'd with her could": [0, 65535], "pack'd with her could witnesse": [0, 65535], "with her could witnesse it": [0, 65535], "her could witnesse it for": [0, 65535], "could witnesse it for he": [0, 65535], "witnesse it for he was": [0, 65535], "it for he was with": [0, 65535], "for he was with me": [0, 65535], "he was with me then": [0, 65535], "was with me then who": [0, 65535], "with me then who parted": [0, 65535], "me then who parted with": [0, 65535], "then who parted with me": [0, 65535], "who parted with me to": [0, 65535], "parted with me to go": [0, 65535], "with me to go fetch": [0, 65535], "me to go fetch a": [0, 65535], "to go fetch a chaine": [0, 65535], "go fetch a chaine promising": [0, 65535], "fetch a chaine promising to": [0, 65535], "a chaine promising to bring": [0, 65535], "chaine promising to bring it": [0, 65535], "promising to bring it to": [0, 65535], "to bring it to the": [0, 65535], "bring it to the porpentine": [0, 65535], "it to the porpentine where": [0, 65535], "to the porpentine where balthasar": [0, 65535], "the porpentine where balthasar and": [0, 65535], "porpentine where balthasar and i": [0, 65535], "where balthasar and i did": [0, 65535], "balthasar and i did dine": [0, 65535], "and i did dine together": [0, 65535], "i did dine together our": [0, 65535], "did dine together our dinner": [0, 65535], "dine together our dinner done": [0, 65535], "together our dinner done and": [0, 65535], "our dinner done and he": [0, 65535], "dinner done and he not": [0, 65535], "done and he not comming": [0, 65535], "and he not comming thither": [0, 65535], "he not comming thither i": [0, 65535], "not comming thither i went": [0, 65535], "comming thither i went to": [0, 65535], "thither i went to seeke": [0, 65535], "i went to seeke him": [0, 65535], "went to seeke him in": [0, 65535], "to seeke him in the": [0, 65535], "seeke him in the street": [0, 65535], "him in the street i": [0, 65535], "in the street i met": [0, 65535], "the street i met him": [0, 65535], "street i met him and": [0, 65535], "i met him and in": [0, 65535], "met him and in his": [0, 65535], "him and in his companie": [0, 65535], "and in his companie that": [0, 65535], "in his companie that gentleman": [0, 65535], "his companie that gentleman there": [0, 65535], "companie that gentleman there did": [0, 65535], "that gentleman there did this": [0, 65535], "gentleman there did this periur'd": [0, 65535], "there did this periur'd goldsmith": [0, 65535], "did this periur'd goldsmith sweare": [0, 65535], "this periur'd goldsmith sweare me": [0, 65535], "periur'd goldsmith sweare me downe": [0, 65535], "goldsmith sweare me downe that": [0, 65535], "sweare me downe that i": [0, 65535], "me downe that i this": [0, 65535], "downe that i this day": [0, 65535], "that i this day of": [0, 65535], "i this day of him": [0, 65535], "this day of him receiu'd": [0, 65535], "day of him receiu'd the": [0, 65535], "of him receiu'd the chaine": [0, 65535], "him receiu'd the chaine which": [0, 65535], "receiu'd the chaine which god": [0, 65535], "the chaine which god he": [0, 65535], "chaine which god he knowes": [0, 65535], "which god he knowes i": [0, 65535], "god he knowes i saw": [0, 65535], "he knowes i saw not": [0, 65535], "knowes i saw not for": [0, 65535], "i saw not for the": [0, 65535], "saw not for the which": [0, 65535], "not for the which he": [0, 65535], "for the which he did": [0, 65535], "the which he did arrest": [0, 65535], "which he did arrest me": [0, 65535], "he did arrest me with": [0, 65535], "did arrest me with an": [0, 65535], "arrest me with an officer": [0, 65535], "me with an officer i": [0, 65535], "with an officer i did": [0, 65535], "an officer i did obey": [0, 65535], "officer i did obey and": [0, 65535], "i did obey and sent": [0, 65535], "did obey and sent my": [0, 65535], "obey and sent my pesant": [0, 65535], "and sent my pesant home": [0, 65535], "sent my pesant home for": [0, 65535], "my pesant home for certaine": [0, 65535], "pesant home for certaine duckets": [0, 65535], "home for certaine duckets he": [0, 65535], "for certaine duckets he with": [0, 65535], "certaine duckets he with none": [0, 65535], "duckets he with none return'd": [0, 65535], "he with none return'd then": [0, 65535], "with none return'd then fairely": [0, 65535], "none return'd then fairely i": [0, 65535], "return'd then fairely i bespoke": [0, 65535], "then fairely i bespoke the": [0, 65535], "fairely i bespoke the officer": [0, 65535], "i bespoke the officer to": [0, 65535], "bespoke the officer to go": [0, 65535], "the officer to go in": [0, 65535], "officer to go in person": [0, 65535], "to go in person with": [0, 65535], "go in person with me": [0, 65535], "in person with me to": [0, 65535], "person with me to my": [0, 65535], "with me to my house": [0, 65535], "me to my house by'th'": [0, 65535], "to my house by'th' way": [0, 65535], "my house by'th' way we": [0, 65535], "house by'th' way we met": [0, 65535], "by'th' way we met my": [0, 65535], "way we met my wife": [0, 65535], "we met my wife her": [0, 65535], "met my wife her sister": [0, 65535], "my wife her sister and": [0, 65535], "wife her sister and a": [0, 65535], "her sister and a rabble": [0, 65535], "sister and a rabble more": [0, 65535], "and a rabble more of": [0, 65535], "a rabble more of vilde": [0, 65535], "rabble more of vilde confederates": [0, 65535], "more of vilde confederates along": [0, 65535], "of vilde confederates along with": [0, 65535], "vilde confederates along with them": [0, 65535], "confederates along with them they": [0, 65535], "along with them they brought": [0, 65535], "with them they brought one": [0, 65535], "them they brought one pinch": [0, 65535], "they brought one pinch a": [0, 65535], "brought one pinch a hungry": [0, 65535], "one pinch a hungry leane": [0, 65535], "pinch a hungry leane fac'd": [0, 65535], "a hungry leane fac'd villaine": [0, 65535], "hungry leane fac'd villaine a": [0, 65535], "leane fac'd villaine a meere": [0, 65535], "fac'd villaine a meere anatomie": [0, 65535], "villaine a meere anatomie a": [0, 65535], "a meere anatomie a mountebanke": [0, 65535], "meere anatomie a mountebanke a": [0, 65535], "anatomie a mountebanke a thred": [0, 65535], "a mountebanke a thred bare": [0, 65535], "mountebanke a thred bare iugler": [0, 65535], "a thred bare iugler and": [0, 65535], "thred bare iugler and a": [0, 65535], "bare iugler and a fortune": [0, 65535], "iugler and a fortune teller": [0, 65535], "and a fortune teller a": [0, 65535], "a fortune teller a needy": [0, 65535], "fortune teller a needy hollow": [0, 65535], "teller a needy hollow ey'd": [0, 65535], "a needy hollow ey'd sharpe": [0, 65535], "needy hollow ey'd sharpe looking": [0, 65535], "hollow ey'd sharpe looking wretch": [0, 65535], "ey'd sharpe looking wretch a": [0, 65535], "sharpe looking wretch a liuing": [0, 65535], "looking wretch a liuing dead": [0, 65535], "wretch a liuing dead man": [0, 65535], "a liuing dead man this": [0, 65535], "liuing dead man this pernicious": [0, 65535], "dead man this pernicious slaue": [0, 65535], "man this pernicious slaue forsooth": [0, 65535], "this pernicious slaue forsooth tooke": [0, 65535], "pernicious slaue forsooth tooke on": [0, 65535], "slaue forsooth tooke on him": [0, 65535], "forsooth tooke on him as": [0, 65535], "tooke on him as a": [0, 65535], "on him as a coniurer": [0, 65535], "him as a coniurer and": [0, 65535], "as a coniurer and gazing": [0, 65535], "a coniurer and gazing in": [0, 65535], "coniurer and gazing in mine": [0, 65535], "and gazing in mine eyes": [0, 65535], "gazing in mine eyes feeling": [0, 65535], "in mine eyes feeling my": [0, 65535], "mine eyes feeling my pulse": [0, 65535], "eyes feeling my pulse and": [0, 65535], "feeling my pulse and with": [0, 65535], "my pulse and with no": [0, 65535], "pulse and with no face": [0, 65535], "and with no face as": [0, 65535], "with no face as 'twere": [0, 65535], "no face as 'twere out": [0, 65535], "face as 'twere out facing": [0, 65535], "as 'twere out facing me": [0, 65535], "'twere out facing me cries": [0, 65535], "out facing me cries out": [0, 65535], "facing me cries out i": [0, 65535], "me cries out i was": [0, 65535], "cries out i was possest": [0, 65535], "out i was possest then": [0, 65535], "i was possest then altogether": [0, 65535], "was possest then altogether they": [0, 65535], "possest then altogether they fell": [0, 65535], "then altogether they fell vpon": [0, 65535], "altogether they fell vpon me": [0, 65535], "they fell vpon me bound": [0, 65535], "fell vpon me bound me": [0, 65535], "vpon me bound me bore": [0, 65535], "me bound me bore me": [0, 65535], "bound me bore me thence": [0, 65535], "me bore me thence and": [0, 65535], "bore me thence and in": [0, 65535], "me thence and in a": [0, 65535], "thence and in a darke": [0, 65535], "and in a darke and": [0, 65535], "in a darke and dankish": [0, 65535], "a darke and dankish vault": [0, 65535], "darke and dankish vault at": [0, 65535], "and dankish vault at home": [0, 65535], "dankish vault at home there": [0, 65535], "vault at home there left": [0, 65535], "at home there left me": [0, 65535], "home there left me and": [0, 65535], "there left me and my": [0, 65535], "left me and my man": [0, 65535], "me and my man both": [0, 65535], "and my man both bound": [0, 65535], "my man both bound together": [0, 65535], "man both bound together till": [0, 65535], "both bound together till gnawing": [0, 65535], "bound together till gnawing with": [0, 65535], "together till gnawing with my": [0, 65535], "till gnawing with my teeth": [0, 65535], "gnawing with my teeth my": [0, 65535], "with my teeth my bonds": [0, 65535], "my teeth my bonds in": [0, 65535], "teeth my bonds in sunder": [0, 65535], "my bonds in sunder i": [0, 65535], "bonds in sunder i gain'd": [0, 65535], "in sunder i gain'd my": [0, 65535], "sunder i gain'd my freedome": [0, 65535], "i gain'd my freedome and": [0, 65535], "gain'd my freedome and immediately": [0, 65535], "my freedome and immediately ran": [0, 65535], "freedome and immediately ran hether": [0, 65535], "and immediately ran hether to": [0, 65535], "immediately ran hether to your": [0, 65535], "ran hether to your grace": [0, 65535], "hether to your grace whom": [0, 65535], "to your grace whom i": [0, 65535], "your grace whom i beseech": [0, 65535], "grace whom i beseech to": [0, 65535], "whom i beseech to giue": [0, 65535], "i beseech to giue me": [0, 65535], "beseech to giue me ample": [0, 65535], "to giue me ample satisfaction": [0, 65535], "giue me ample satisfaction for": [0, 65535], "me ample satisfaction for these": [0, 65535], "ample satisfaction for these deepe": [0, 65535], "satisfaction for these deepe shames": [0, 65535], "for these deepe shames and": [0, 65535], "these deepe shames and great": [0, 65535], "deepe shames and great indignities": [0, 65535], "shames and great indignities gold": [0, 65535], "and great indignities gold my": [0, 65535], "great indignities gold my lord": [0, 65535], "indignities gold my lord in": [0, 65535], "gold my lord in truth": [0, 65535], "my lord in truth thus": [0, 65535], "lord in truth thus far": [0, 65535], "in truth thus far i": [0, 65535], "truth thus far i witnes": [0, 65535], "thus far i witnes with": [0, 65535], "far i witnes with him": [0, 65535], "i witnes with him that": [0, 65535], "witnes with him that he": [0, 65535], "with him that he din'd": [0, 65535], "him that he din'd not": [0, 65535], "that he din'd not at": [0, 65535], "he din'd not at home": [0, 65535], "din'd not at home but": [0, 65535], "not at home but was": [0, 65535], "at home but was lock'd": [0, 65535], "home but was lock'd out": [0, 65535], "but was lock'd out duke": [0, 65535], "was lock'd out duke but": [0, 65535], "lock'd out duke but had": [0, 65535], "out duke but had he": [0, 65535], "duke but had he such": [0, 65535], "but had he such a": [0, 65535], "had he such a chaine": [0, 65535], "he such a chaine of": [0, 65535], "such a chaine of thee": [0, 65535], "a chaine of thee or": [0, 65535], "chaine of thee or no": [0, 65535], "of thee or no gold": [0, 65535], "thee or no gold he": [0, 65535], "or no gold he had": [0, 65535], "no gold he had my": [0, 65535], "gold he had my lord": [0, 65535], "he had my lord and": [0, 65535], "had my lord and when": [0, 65535], "my lord and when he": [0, 65535], "lord and when he ran": [0, 65535], "and when he ran in": [0, 65535], "when he ran in heere": [0, 65535], "he ran in heere these": [0, 65535], "ran in heere these people": [0, 65535], "in heere these people saw": [0, 65535], "heere these people saw the": [0, 65535], "these people saw the chaine": [0, 65535], "people saw the chaine about": [0, 65535], "saw the chaine about his": [0, 65535], "the chaine about his necke": [0, 65535], "chaine about his necke mar": [0, 65535], "about his necke mar besides": [0, 65535], "his necke mar besides i": [0, 65535], "necke mar besides i will": [0, 65535], "mar besides i will be": [0, 65535], "besides i will be sworne": [0, 65535], "i will be sworne these": [0, 65535], "will be sworne these eares": [0, 65535], "be sworne these eares of": [0, 65535], "sworne these eares of mine": [0, 65535], "these eares of mine heard": [0, 65535], "eares of mine heard you": [0, 65535], "of mine heard you confesse": [0, 65535], "mine heard you confesse you": [0, 65535], "heard you confesse you had": [0, 65535], "you confesse you had the": [0, 65535], "confesse you had the chaine": [0, 65535], "you had the chaine of": [0, 65535], "had the chaine of him": [0, 65535], "the chaine of him after": [0, 65535], "chaine of him after you": [0, 65535], "of him after you first": [0, 65535], "him after you first forswore": [0, 65535], "after you first forswore it": [0, 65535], "you first forswore it on": [0, 65535], "first forswore it on the": [0, 65535], "forswore it on the mart": [0, 65535], "it on the mart and": [0, 65535], "on the mart and thereupon": [0, 65535], "the mart and thereupon i": [0, 65535], "mart and thereupon i drew": [0, 65535], "and thereupon i drew my": [0, 65535], "thereupon i drew my sword": [0, 65535], "i drew my sword on": [0, 65535], "drew my sword on you": [0, 65535], "my sword on you and": [0, 65535], "sword on you and then": [0, 65535], "on you and then you": [0, 65535], "you and then you fled": [0, 65535], "and then you fled into": [0, 65535], "then you fled into this": [0, 65535], "you fled into this abbey": [0, 65535], "fled into this abbey heere": [0, 65535], "into this abbey heere from": [0, 65535], "this abbey heere from whence": [0, 65535], "abbey heere from whence i": [0, 65535], "heere from whence i thinke": [0, 65535], "from whence i thinke you": [0, 65535], "whence i thinke you are": [0, 65535], "i thinke you are come": [0, 65535], "thinke you are come by": [0, 65535], "you are come by miracle": [0, 65535], "are come by miracle e": [0, 65535], "come by miracle e ant": [0, 65535], "by miracle e ant i": [0, 65535], "miracle e ant i neuer": [0, 65535], "e ant i neuer came": [0, 65535], "ant i neuer came within": [0, 65535], "i neuer came within these": [0, 65535], "neuer came within these abbey": [0, 65535], "came within these abbey wals": [0, 65535], "within these abbey wals nor": [0, 65535], "these abbey wals nor euer": [0, 65535], "abbey wals nor euer didst": [0, 65535], "wals nor euer didst thou": [0, 65535], "nor euer didst thou draw": [0, 65535], "euer didst thou draw thy": [0, 65535], "didst thou draw thy sword": [0, 65535], "thou draw thy sword on": [0, 65535], "draw thy sword on me": [0, 65535], "thy sword on me i": [0, 65535], "sword on me i neuer": [0, 65535], "on me i neuer saw": [0, 65535], "me i neuer saw the": [0, 65535], "i neuer saw the chaine": [0, 65535], "neuer saw the chaine so": [0, 65535], "saw the chaine so helpe": [0, 65535], "the chaine so helpe me": [0, 65535], "chaine so helpe me heauen": [0, 65535], "so helpe me heauen and": [0, 65535], "helpe me heauen and this": [0, 65535], "me heauen and this is": [0, 65535], "heauen and this is false": [0, 65535], "and this is false you": [0, 65535], "this is false you burthen": [0, 65535], "is false you burthen me": [0, 65535], "false you burthen me withall": [0, 65535], "you burthen me withall duke": [0, 65535], "burthen me withall duke why": [0, 65535], "me withall duke why what": [0, 65535], "withall duke why what an": [0, 65535], "duke why what an intricate": [0, 65535], "why what an intricate impeach": [0, 65535], "what an intricate impeach is": [0, 65535], "an intricate impeach is this": [0, 65535], "intricate impeach is this i": [0, 65535], "impeach is this i thinke": [0, 65535], "is this i thinke you": [0, 65535], "this i thinke you all": [0, 65535], "i thinke you all haue": [0, 65535], "thinke you all haue drunke": [0, 65535], "you all haue drunke of": [0, 65535], "all haue drunke of circes": [0, 65535], "haue drunke of circes cup": [0, 65535], "drunke of circes cup if": [0, 65535], "of circes cup if heere": [0, 65535], "circes cup if heere you": [0, 65535], "cup if heere you hous'd": [0, 65535], "if heere you hous'd him": [0, 65535], "heere you hous'd him heere": [0, 65535], "you hous'd him heere he": [0, 65535], "hous'd him heere he would": [0, 65535], "him heere he would haue": [0, 65535], "heere he would haue bin": [0, 65535], "he would haue bin if": [0, 65535], "would haue bin if he": [0, 65535], "haue bin if he were": [0, 65535], "bin if he were mad": [0, 65535], "if he were mad he": [0, 65535], "he were mad he would": [0, 65535], "were mad he would not": [0, 65535], "mad he would not pleade": [0, 65535], "he would not pleade so": [0, 65535], "would not pleade so coldly": [0, 65535], "not pleade so coldly you": [0, 65535], "pleade so coldly you say": [0, 65535], "so coldly you say he": [0, 65535], "coldly you say he din'd": [0, 65535], "you say he din'd at": [0, 65535], "say he din'd at home": [0, 65535], "he din'd at home the": [0, 65535], "din'd at home the goldsmith": [0, 65535], "at home the goldsmith heere": [0, 65535], "home the goldsmith heere denies": [0, 65535], "the goldsmith heere denies that": [0, 65535], "goldsmith heere denies that saying": [0, 65535], "heere denies that saying sirra": [0, 65535], "denies that saying sirra what": [0, 65535], "that saying sirra what say": [0, 65535], "saying sirra what say you": [0, 65535], "sirra what say you e": [0, 65535], "what say you e dro": [0, 65535], "say you e dro sir": [0, 65535], "you e dro sir he": [0, 65535], "e dro sir he din'de": [0, 65535], "dro sir he din'de with": [0, 65535], "sir he din'de with her": [0, 65535], "he din'de with her there": [0, 65535], "din'de with her there at": [0, 65535], "with her there at the": [0, 65535], "her there at the porpentine": [0, 65535], "there at the porpentine cur": [0, 65535], "at the porpentine cur he": [0, 65535], "the porpentine cur he did": [0, 65535], "porpentine cur he did and": [0, 65535], "cur he did and from": [0, 65535], "he did and from my": [0, 65535], "did and from my finger": [0, 65535], "and from my finger snacht": [0, 65535], "from my finger snacht that": [0, 65535], "my finger snacht that ring": [0, 65535], "finger snacht that ring e": [0, 65535], "snacht that ring e anti": [0, 65535], "that ring e anti tis": [0, 65535], "ring e anti tis true": [0, 65535], "e anti tis true my": [0, 65535], "anti tis true my liege": [0, 65535], "tis true my liege this": [0, 65535], "true my liege this ring": [0, 65535], "my liege this ring i": [0, 65535], "liege this ring i had": [0, 65535], "this ring i had of": [0, 65535], "ring i had of her": [0, 65535], "i had of her duke": [0, 65535], "had of her duke saw'st": [0, 65535], "of her duke saw'st thou": [0, 65535], "her duke saw'st thou him": [0, 65535], "duke saw'st thou him enter": [0, 65535], "saw'st thou him enter at": [0, 65535], "thou him enter at the": [0, 65535], "him enter at the abbey": [0, 65535], "enter at the abbey heere": [0, 65535], "at the abbey heere curt": [0, 65535], "the abbey heere curt as": [0, 65535], "abbey heere curt as sure": [0, 65535], "heere curt as sure my": [0, 65535], "curt as sure my liege": [0, 65535], "as sure my liege as": [0, 65535], "sure my liege as i": [0, 65535], "my liege as i do": [0, 65535], "liege as i do see": [0, 65535], "as i do see your": [0, 65535], "i do see your grace": [0, 65535], "do see your grace duke": [0, 65535], "see your grace duke why": [0, 65535], "your grace duke why this": [0, 65535], "grace duke why this is": [0, 65535], "duke why this is straunge": [0, 65535], "why this is straunge go": [0, 65535], "this is straunge go call": [0, 65535], "is straunge go call the": [0, 65535], "straunge go call the abbesse": [0, 65535], "go call the abbesse hither": [0, 65535], "call the abbesse hither i": [0, 65535], "the abbesse hither i thinke": [0, 65535], "abbesse hither i thinke you": [0, 65535], "hither i thinke you are": [0, 65535], "i thinke you are all": [0, 65535], "thinke you are all mated": [0, 65535], "you are all mated or": [0, 65535], "are all mated or starke": [0, 65535], "all mated or starke mad": [0, 65535], "mated or starke mad exit": [0, 65535], "or starke mad exit one": [0, 65535], "starke mad exit one to": [0, 65535], "mad exit one to the": [0, 65535], "exit one to the abbesse": [0, 65535], "one to the abbesse fa": [0, 65535], "to the abbesse fa most": [0, 65535], "the abbesse fa most mighty": [0, 65535], "abbesse fa most mighty duke": [0, 65535], "fa most mighty duke vouchsafe": [0, 65535], "most mighty duke vouchsafe me": [0, 65535], "mighty duke vouchsafe me speak": [0, 65535], "duke vouchsafe me speak a": [0, 65535], "vouchsafe me speak a word": [0, 65535], "me speak a word haply": [0, 65535], "speak a word haply i": [0, 65535], "a word haply i see": [0, 65535], "word haply i see a": [0, 65535], "haply i see a friend": [0, 65535], "i see a friend will": [0, 65535], "see a friend will saue": [0, 65535], "a friend will saue my": [0, 65535], "friend will saue my life": [0, 65535], "will saue my life and": [0, 65535], "saue my life and pay": [0, 65535], "my life and pay the": [0, 65535], "life and pay the sum": [0, 65535], "and pay the sum that": [0, 65535], "pay the sum that may": [0, 65535], "the sum that may deliuer": [0, 65535], "sum that may deliuer me": [0, 65535], "that may deliuer me duke": [0, 65535], "may deliuer me duke speake": [0, 65535], "deliuer me duke speake freely": [0, 65535], "me duke speake freely siracusian": [0, 65535], "duke speake freely siracusian what": [0, 65535], "speake freely siracusian what thou": [0, 65535], "freely siracusian what thou wilt": [0, 65535], "siracusian what thou wilt fath": [0, 65535], "what thou wilt fath is": [0, 65535], "thou wilt fath is not": [0, 65535], "wilt fath is not your": [0, 65535], "fath is not your name": [0, 65535], "is not your name sir": [0, 65535], "not your name sir call'd": [0, 65535], "your name sir call'd antipholus": [0, 65535], "name sir call'd antipholus and": [0, 65535], "sir call'd antipholus and is": [0, 65535], "call'd antipholus and is not": [0, 65535], "antipholus and is not that": [0, 65535], "and is not that your": [0, 65535], "is not that your bondman": [0, 65535], "not that your bondman dromio": [0, 65535], "that your bondman dromio e": [0, 65535], "your bondman dromio e dro": [0, 65535], "bondman dromio e dro within": [0, 65535], "dromio e dro within this": [0, 65535], "e dro within this houre": [0, 65535], "dro within this houre i": [0, 65535], "within this houre i was": [0, 65535], "this houre i was his": [0, 65535], "houre i was his bondman": [0, 65535], "i was his bondman sir": [0, 65535], "was his bondman sir but": [0, 65535], "his bondman sir but he": [0, 65535], "bondman sir but he i": [0, 65535], "sir but he i thanke": [0, 65535], "but he i thanke him": [0, 65535], "he i thanke him gnaw'd": [0, 65535], "i thanke him gnaw'd in": [0, 65535], "thanke him gnaw'd in two": [0, 65535], "him gnaw'd in two my": [0, 65535], "gnaw'd in two my cords": [0, 65535], "in two my cords now": [0, 65535], "two my cords now am": [0, 65535], "my cords now am i": [0, 65535], "cords now am i dromio": [0, 65535], "now am i dromio and": [0, 65535], "am i dromio and his": [0, 65535], "i dromio and his man": [0, 65535], "dromio and his man vnbound": [0, 65535], "and his man vnbound fath": [0, 65535], "his man vnbound fath i": [0, 65535], "man vnbound fath i am": [0, 65535], "vnbound fath i am sure": [0, 65535], "fath i am sure you": [0, 65535], "i am sure you both": [0, 65535], "am sure you both of": [0, 65535], "sure you both of you": [0, 65535], "you both of you remember": [0, 65535], "both of you remember me": [0, 65535], "of you remember me dro": [0, 65535], "you remember me dro our": [0, 65535], "remember me dro our selues": [0, 65535], "me dro our selues we": [0, 65535], "dro our selues we do": [0, 65535], "our selues we do remember": [0, 65535], "selues we do remember sir": [0, 65535], "we do remember sir by": [0, 65535], "do remember sir by you": [0, 65535], "remember sir by you for": [0, 65535], "sir by you for lately": [0, 65535], "by you for lately we": [0, 65535], "you for lately we were": [0, 65535], "for lately we were bound": [0, 65535], "lately we were bound as": [0, 65535], "we were bound as you": [0, 65535], "were bound as you are": [0, 65535], "bound as you are now": [0, 65535], "as you are now you": [0, 65535], "you are now you are": [0, 65535], "are now you are not": [0, 65535], "now you are not pinches": [0, 65535], "you are not pinches patient": [0, 65535], "are not pinches patient are": [0, 65535], "not pinches patient are you": [0, 65535], "pinches patient are you sir": [0, 65535], "patient are you sir father": [0, 65535], "are you sir father why": [0, 65535], "you sir father why looke": [0, 65535], "sir father why looke you": [0, 65535], "father why looke you strange": [0, 65535], "why looke you strange on": [0, 65535], "looke you strange on me": [0, 65535], "you strange on me you": [0, 65535], "strange on me you know": [0, 65535], "on me you know me": [0, 65535], "me you know me well": [0, 65535], "you know me well e": [0, 65535], "know me well e ant": [0, 65535], "me well e ant i": [0, 65535], "well e ant i neuer": [0, 65535], "e ant i neuer saw": [0, 65535], "ant i neuer saw you": [0, 65535], "i neuer saw you in": [0, 65535], "neuer saw you in my": [0, 65535], "saw you in my life": [0, 65535], "you in my life till": [0, 65535], "in my life till now": [0, 65535], "my life till now fa": [0, 65535], "life till now fa oh": [0, 65535], "till now fa oh griefe": [0, 65535], "now fa oh griefe hath": [0, 65535], "fa oh griefe hath chang'd": [0, 65535], "oh griefe hath chang'd me": [0, 65535], "griefe hath chang'd me since": [0, 65535], "hath chang'd me since you": [0, 65535], "chang'd me since you saw": [0, 65535], "me since you saw me": [0, 65535], "since you saw me last": [0, 65535], "you saw me last and": [0, 65535], "saw me last and carefull": [0, 65535], "me last and carefull houres": [0, 65535], "last and carefull houres with": [0, 65535], "and carefull houres with times": [0, 65535], "carefull houres with times deformed": [0, 65535], "houres with times deformed hand": [0, 65535], "with times deformed hand haue": [0, 65535], "times deformed hand haue written": [0, 65535], "deformed hand haue written strange": [0, 65535], "hand haue written strange defeatures": [0, 65535], "haue written strange defeatures in": [0, 65535], "written strange defeatures in my": [0, 65535], "strange defeatures in my face": [0, 65535], "defeatures in my face but": [0, 65535], "in my face but tell": [0, 65535], "my face but tell me": [0, 65535], "face but tell me yet": [0, 65535], "but tell me yet dost": [0, 65535], "tell me yet dost thou": [0, 65535], "me yet dost thou not": [0, 65535], "yet dost thou not know": [0, 65535], "dost thou not know my": [0, 65535], "thou not know my voice": [0, 65535], "not know my voice ant": [0, 65535], "know my voice ant neither": [0, 65535], "my voice ant neither fat": [0, 65535], "voice ant neither fat dromio": [0, 65535], "ant neither fat dromio nor": [0, 65535], "neither fat dromio nor thou": [0, 65535], "fat dromio nor thou dro": [0, 65535], "dromio nor thou dro no": [0, 65535], "nor thou dro no trust": [0, 65535], "thou dro no trust me": [0, 65535], "dro no trust me sir": [0, 65535], "no trust me sir nor": [0, 65535], "trust me sir nor i": [0, 65535], "me sir nor i fa": [0, 65535], "sir nor i fa i": [0, 65535], "nor i fa i am": [0, 65535], "i fa i am sure": [0, 65535], "fa i am sure thou": [0, 65535], "i am sure thou dost": [0, 65535], "am sure thou dost e": [0, 65535], "sure thou dost e dromio": [0, 65535], "thou dost e dromio i": [0, 65535], "dost e dromio i sir": [0, 65535], "e dromio i sir but": [0, 65535], "dromio i sir but i": [0, 65535], "i sir but i am": [0, 65535], "sir but i am sure": [0, 65535], "but i am sure i": [0, 65535], "i am sure i do": [0, 65535], "am sure i do not": [0, 65535], "sure i do not and": [0, 65535], "i do not and whatsoeuer": [0, 65535], "do not and whatsoeuer a": [0, 65535], "not and whatsoeuer a man": [0, 65535], "and whatsoeuer a man denies": [0, 65535], "whatsoeuer a man denies you": [0, 65535], "a man denies you are": [0, 65535], "man denies you are now": [0, 65535], "denies you are now bound": [0, 65535], "you are now bound to": [0, 65535], "are now bound to beleeue": [0, 65535], "now bound to beleeue him": [0, 65535], "bound to beleeue him fath": [0, 65535], "to beleeue him fath not": [0, 65535], "beleeue him fath not know": [0, 65535], "him fath not know my": [0, 65535], "fath not know my voice": [0, 65535], "not know my voice oh": [0, 65535], "know my voice oh times": [0, 65535], "my voice oh times extremity": [0, 65535], "voice oh times extremity hast": [0, 65535], "oh times extremity hast thou": [0, 65535], "times extremity hast thou so": [0, 65535], "extremity hast thou so crack'd": [0, 65535], "hast thou so crack'd and": [0, 65535], "thou so crack'd and splitted": [0, 65535], "so crack'd and splitted my": [0, 65535], "crack'd and splitted my poore": [0, 65535], "and splitted my poore tongue": [0, 65535], "splitted my poore tongue in": [0, 65535], "my poore tongue in seuen": [0, 65535], "poore tongue in seuen short": [0, 65535], "tongue in seuen short yeares": [0, 65535], "in seuen short yeares that": [0, 65535], "seuen short yeares that heere": [0, 65535], "short yeares that heere my": [0, 65535], "yeares that heere my onely": [0, 65535], "that heere my onely sonne": [0, 65535], "heere my onely sonne knowes": [0, 65535], "my onely sonne knowes not": [0, 65535], "onely sonne knowes not my": [0, 65535], "sonne knowes not my feeble": [0, 65535], "knowes not my feeble key": [0, 65535], "not my feeble key of": [0, 65535], "my feeble key of vntun'd": [0, 65535], "feeble key of vntun'd cares": [0, 65535], "key of vntun'd cares though": [0, 65535], "of vntun'd cares though now": [0, 65535], "vntun'd cares though now this": [0, 65535], "cares though now this grained": [0, 65535], "though now this grained face": [0, 65535], "now this grained face of": [0, 65535], "this grained face of mine": [0, 65535], "grained face of mine be": [0, 65535], "face of mine be hid": [0, 65535], "of mine be hid in": [0, 65535], "mine be hid in sap": [0, 65535], "be hid in sap consuming": [0, 65535], "hid in sap consuming winters": [0, 65535], "in sap consuming winters drizled": [0, 65535], "sap consuming winters drizled snow": [0, 65535], "consuming winters drizled snow and": [0, 65535], "winters drizled snow and all": [0, 65535], "drizled snow and all the": [0, 65535], "snow and all the conduits": [0, 65535], "and all the conduits of": [0, 65535], "all the conduits of my": [0, 65535], "the conduits of my blood": [0, 65535], "conduits of my blood froze": [0, 65535], "of my blood froze vp": [0, 65535], "my blood froze vp yet": [0, 65535], "blood froze vp yet hath": [0, 65535], "froze vp yet hath my": [0, 65535], "vp yet hath my night": [0, 65535], "yet hath my night of": [0, 65535], "hath my night of life": [0, 65535], "my night of life some": [0, 65535], "night of life some memorie": [0, 65535], "of life some memorie my": [0, 65535], "life some memorie my wasting": [0, 65535], "some memorie my wasting lampes": [0, 65535], "memorie my wasting lampes some": [0, 65535], "my wasting lampes some fading": [0, 65535], "wasting lampes some fading glimmer": [0, 65535], "lampes some fading glimmer left": [0, 65535], "some fading glimmer left my": [0, 65535], "fading glimmer left my dull": [0, 65535], "glimmer left my dull deafe": [0, 65535], "left my dull deafe eares": [0, 65535], "my dull deafe eares a": [0, 65535], "dull deafe eares a little": [0, 65535], "deafe eares a little vse": [0, 65535], "eares a little vse to": [0, 65535], "a little vse to heare": [0, 65535], "little vse to heare all": [0, 65535], "vse to heare all these": [0, 65535], "to heare all these old": [0, 65535], "heare all these old witnesses": [0, 65535], "all these old witnesses i": [0, 65535], "these old witnesses i cannot": [0, 65535], "old witnesses i cannot erre": [0, 65535], "witnesses i cannot erre tell": [0, 65535], "i cannot erre tell me": [0, 65535], "cannot erre tell me thou": [0, 65535], "erre tell me thou art": [0, 65535], "tell me thou art my": [0, 65535], "me thou art my sonne": [0, 65535], "thou art my sonne antipholus": [0, 65535], "art my sonne antipholus ant": [0, 65535], "my sonne antipholus ant i": [0, 65535], "sonne antipholus ant i neuer": [0, 65535], "antipholus ant i neuer saw": [0, 65535], "ant i neuer saw my": [0, 65535], "i neuer saw my father": [0, 65535], "neuer saw my father in": [0, 65535], "saw my father in my": [0, 65535], "my father in my life": [0, 65535], "father in my life fa": [0, 65535], "in my life fa but": [0, 65535], "my life fa but seuen": [0, 65535], "life fa but seuen yeares": [0, 65535], "fa but seuen yeares since": [0, 65535], "but seuen yeares since in": [0, 65535], "seuen yeares since in siracusa": [0, 65535], "yeares since in siracusa boy": [0, 65535], "since in siracusa boy thou": [0, 65535], "in siracusa boy thou know'st": [0, 65535], "siracusa boy thou know'st we": [0, 65535], "boy thou know'st we parted": [0, 65535], "thou know'st we parted but": [0, 65535], "know'st we parted but perhaps": [0, 65535], "we parted but perhaps my": [0, 65535], "parted but perhaps my sonne": [0, 65535], "but perhaps my sonne thou": [0, 65535], "perhaps my sonne thou sham'st": [0, 65535], "my sonne thou sham'st to": [0, 65535], "sonne thou sham'st to acknowledge": [0, 65535], "thou sham'st to acknowledge me": [0, 65535], "sham'st to acknowledge me in": [0, 65535], "to acknowledge me in miserie": [0, 65535], "acknowledge me in miserie ant": [0, 65535], "me in miserie ant the": [0, 65535], "in miserie ant the duke": [0, 65535], "miserie ant the duke and": [0, 65535], "ant the duke and all": [0, 65535], "the duke and all that": [0, 65535], "duke and all that know": [0, 65535], "and all that know me": [0, 65535], "all that know me in": [0, 65535], "that know me in the": [0, 65535], "know me in the city": [0, 65535], "me in the city can": [0, 65535], "in the city can witnesse": [0, 65535], "the city can witnesse with": [0, 65535], "city can witnesse with me": [0, 65535], "can witnesse with me that": [0, 65535], "witnesse with me that it": [0, 65535], "with me that it is": [0, 65535], "me that it is not": [0, 65535], "that it is not so": [0, 65535], "it is not so i": [0, 65535], "is not so i ne're": [0, 65535], "not so i ne're saw": [0, 65535], "so i ne're saw siracusa": [0, 65535], "i ne're saw siracusa in": [0, 65535], "ne're saw siracusa in my": [0, 65535], "saw siracusa in my life": [0, 65535], "siracusa in my life duke": [0, 65535], "in my life duke i": [0, 65535], "my life duke i tell": [0, 65535], "life duke i tell thee": [0, 65535], "duke i tell thee siracusian": [0, 65535], "i tell thee siracusian twentie": [0, 65535], "tell thee siracusian twentie yeares": [0, 65535], "thee siracusian twentie yeares haue": [0, 65535], "siracusian twentie yeares haue i": [0, 65535], "twentie yeares haue i bin": [0, 65535], "yeares haue i bin patron": [0, 65535], "haue i bin patron to": [0, 65535], "i bin patron to antipholus": [0, 65535], "bin patron to antipholus during": [0, 65535], "patron to antipholus during which": [0, 65535], "to antipholus during which time": [0, 65535], "antipholus during which time he": [0, 65535], "during which time he ne're": [0, 65535], "which time he ne're saw": [0, 65535], "time he ne're saw siracusa": [0, 65535], "he ne're saw siracusa i": [0, 65535], "ne're saw siracusa i see": [0, 65535], "saw siracusa i see thy": [0, 65535], "siracusa i see thy age": [0, 65535], "i see thy age and": [0, 65535], "see thy age and dangers": [0, 65535], "thy age and dangers make": [0, 65535], "age and dangers make thee": [0, 65535], "and dangers make thee dote": [0, 65535], "dangers make thee dote enter": [0, 65535], "make thee dote enter the": [0, 65535], "thee dote enter the abbesse": [0, 65535], "dote enter the abbesse with": [0, 65535], "enter the abbesse with antipholus": [0, 65535], "the abbesse with antipholus siracusa": [0, 65535], "abbesse with antipholus siracusa and": [0, 65535], "with antipholus siracusa and dromio": [0, 65535], "antipholus siracusa and dromio sir": [0, 65535], "siracusa and dromio sir abbesse": [0, 65535], "and dromio sir abbesse most": [0, 65535], "dromio sir abbesse most mightie": [0, 65535], "sir abbesse most mightie duke": [0, 65535], "abbesse most mightie duke behold": [0, 65535], "most mightie duke behold a": [0, 65535], "mightie duke behold a man": [0, 65535], "duke behold a man much": [0, 65535], "behold a man much wrong'd": [0, 65535], "a man much wrong'd all": [0, 65535], "man much wrong'd all gather": [0, 65535], "much wrong'd all gather to": [0, 65535], "wrong'd all gather to see": [0, 65535], "all gather to see them": [0, 65535], "gather to see them adr": [0, 65535], "to see them adr i": [0, 65535], "see them adr i see": [0, 65535], "them adr i see two": [0, 65535], "adr i see two husbands": [0, 65535], "i see two husbands or": [0, 65535], "see two husbands or mine": [0, 65535], "two husbands or mine eyes": [0, 65535], "husbands or mine eyes deceiue": [0, 65535], "or mine eyes deceiue me": [0, 65535], "mine eyes deceiue me duke": [0, 65535], "eyes deceiue me duke one": [0, 65535], "deceiue me duke one of": [0, 65535], "me duke one of these": [0, 65535], "duke one of these men": [0, 65535], "one of these men is": [0, 65535], "of these men is genius": [0, 65535], "these men is genius to": [0, 65535], "men is genius to the": [0, 65535], "is genius to the other": [0, 65535], "genius to the other and": [0, 65535], "to the other and so": [0, 65535], "the other and so of": [0, 65535], "other and so of these": [0, 65535], "and so of these which": [0, 65535], "so of these which is": [0, 65535], "of these which is the": [0, 65535], "these which is the naturall": [0, 65535], "which is the naturall man": [0, 65535], "is the naturall man and": [0, 65535], "the naturall man and which": [0, 65535], "naturall man and which the": [0, 65535], "man and which the spirit": [0, 65535], "and which the spirit who": [0, 65535], "which the spirit who deciphers": [0, 65535], "the spirit who deciphers them": [0, 65535], "spirit who deciphers them s": [0, 65535], "who deciphers them s dromio": [0, 65535], "deciphers them s dromio i": [0, 65535], "them s dromio i sir": [0, 65535], "s dromio i sir am": [0, 65535], "dromio i sir am dromio": [0, 65535], "i sir am dromio command": [0, 65535], "sir am dromio command him": [0, 65535], "am dromio command him away": [0, 65535], "dromio command him away e": [0, 65535], "command him away e dro": [0, 65535], "him away e dro i": [0, 65535], "away e dro i sir": [0, 65535], "e dro i sir am": [0, 65535], "dro i sir am dromio": [0, 65535], "i sir am dromio pray": [0, 65535], "sir am dromio pray let": [0, 65535], "am dromio pray let me": [0, 65535], "dromio pray let me stay": [0, 65535], "pray let me stay s": [0, 65535], "let me stay s ant": [0, 65535], "me stay s ant egeon": [0, 65535], "stay s ant egeon art": [0, 65535], "s ant egeon art thou": [0, 65535], "ant egeon art thou not": [0, 65535], "egeon art thou not or": [0, 65535], "art thou not or else": [0, 65535], "thou not or else his": [0, 65535], "not or else his ghost": [0, 65535], "or else his ghost s": [0, 65535], "else his ghost s drom": [0, 65535], "his ghost s drom oh": [0, 65535], "ghost s drom oh my": [0, 65535], "s drom oh my olde": [0, 65535], "drom oh my olde master": [0, 65535], "oh my olde master who": [0, 65535], "my olde master who hath": [0, 65535], "olde master who hath bound": [0, 65535], "master who hath bound him": [0, 65535], "who hath bound him heere": [0, 65535], "hath bound him heere abb": [0, 65535], "bound him heere abb who": [0, 65535], "him heere abb who euer": [0, 65535], "heere abb who euer bound": [0, 65535], "abb who euer bound him": [0, 65535], "who euer bound him i": [0, 65535], "euer bound him i will": [0, 65535], "bound him i will lose": [0, 65535], "him i will lose his": [0, 65535], "i will lose his bonds": [0, 65535], "will lose his bonds and": [0, 65535], "lose his bonds and gaine": [0, 65535], "his bonds and gaine a": [0, 65535], "bonds and gaine a husband": [0, 65535], "and gaine a husband by": [0, 65535], "gaine a husband by his": [0, 65535], "a husband by his libertie": [0, 65535], "husband by his libertie speake": [0, 65535], "by his libertie speake olde": [0, 65535], "his libertie speake olde egeon": [0, 65535], "libertie speake olde egeon if": [0, 65535], "speake olde egeon if thou": [0, 65535], "olde egeon if thou bee'st": [0, 65535], "egeon if thou bee'st the": [0, 65535], "if thou bee'st the man": [0, 65535], "thou bee'st the man that": [0, 65535], "bee'st the man that hadst": [0, 65535], "the man that hadst a": [0, 65535], "man that hadst a wife": [0, 65535], "that hadst a wife once": [0, 65535], "hadst a wife once call'd": [0, 65535], "a wife once call'd \u00e6milia": [0, 65535], "wife once call'd \u00e6milia that": [0, 65535], "once call'd \u00e6milia that bore": [0, 65535], "call'd \u00e6milia that bore thee": [0, 65535], "\u00e6milia that bore thee at": [0, 65535], "that bore thee at a": [0, 65535], "bore thee at a burthen": [0, 65535], "thee at a burthen two": [0, 65535], "at a burthen two faire": [0, 65535], "a burthen two faire sonnes": [0, 65535], "burthen two faire sonnes oh": [0, 65535], "two faire sonnes oh if": [0, 65535], "faire sonnes oh if thou": [0, 65535], "sonnes oh if thou bee'st": [0, 65535], "oh if thou bee'st the": [0, 65535], "if thou bee'st the same": [0, 65535], "thou bee'st the same egeon": [0, 65535], "bee'st the same egeon speake": [0, 65535], "the same egeon speake and": [0, 65535], "same egeon speake and speake": [0, 65535], "egeon speake and speake vnto": [0, 65535], "speake and speake vnto the": [0, 65535], "and speake vnto the same": [0, 65535], "speake vnto the same \u00e6milia": [0, 65535], "vnto the same \u00e6milia duke": [0, 65535], "the same \u00e6milia duke why": [0, 65535], "same \u00e6milia duke why heere": [0, 65535], "\u00e6milia duke why heere begins": [0, 65535], "duke why heere begins his": [0, 65535], "why heere begins his morning": [0, 65535], "heere begins his morning storie": [0, 65535], "begins his morning storie right": [0, 65535], "his morning storie right these": [0, 65535], "morning storie right these twoantipholus": [0, 65535], "storie right these twoantipholus these": [0, 65535], "right these twoantipholus these two": [0, 65535], "these twoantipholus these two so": [0, 65535], "twoantipholus these two so like": [0, 65535], "these two so like and": [0, 65535], "two so like and these": [0, 65535], "so like and these two": [0, 65535], "like and these two dromio's": [0, 65535], "and these two dromio's one": [0, 65535], "these two dromio's one in": [0, 65535], "two dromio's one in semblance": [0, 65535], "dromio's one in semblance besides": [0, 65535], "one in semblance besides her": [0, 65535], "in semblance besides her vrging": [0, 65535], "semblance besides her vrging of": [0, 65535], "besides her vrging of her": [0, 65535], "her vrging of her wracke": [0, 65535], "vrging of her wracke at": [0, 65535], "of her wracke at sea": [0, 65535], "her wracke at sea these": [0, 65535], "wracke at sea these are": [0, 65535], "at sea these are the": [0, 65535], "sea these are the parents": [0, 65535], "these are the parents to": [0, 65535], "are the parents to these": [0, 65535], "the parents to these children": [0, 65535], "parents to these children which": [0, 65535], "to these children which accidentally": [0, 65535], "these children which accidentally are": [0, 65535], "children which accidentally are met": [0, 65535], "which accidentally are met together": [0, 65535], "accidentally are met together fa": [0, 65535], "are met together fa if": [0, 65535], "met together fa if i": [0, 65535], "together fa if i dreame": [0, 65535], "fa if i dreame not": [0, 65535], "if i dreame not thou": [0, 65535], "i dreame not thou art": [0, 65535], "dreame not thou art \u00e6milia": [0, 65535], "not thou art \u00e6milia if": [0, 65535], "thou art \u00e6milia if thou": [0, 65535], "art \u00e6milia if thou art": [0, 65535], "\u00e6milia if thou art she": [0, 65535], "if thou art she tell": [0, 65535], "thou art she tell me": [0, 65535], "art she tell me where": [0, 65535], "she tell me where is": [0, 65535], "tell me where is that": [0, 65535], "me where is that sonne": [0, 65535], "where is that sonne that": [0, 65535], "is that sonne that floated": [0, 65535], "that sonne that floated with": [0, 65535], "sonne that floated with thee": [0, 65535], "that floated with thee on": [0, 65535], "floated with thee on the": [0, 65535], "with thee on the fatall": [0, 65535], "thee on the fatall rafte": [0, 65535], "on the fatall rafte abb": [0, 65535], "the fatall rafte abb by": [0, 65535], "fatall rafte abb by men": [0, 65535], "rafte abb by men of": [0, 65535], "abb by men of epidamium": [0, 65535], "by men of epidamium he": [0, 65535], "men of epidamium he and": [0, 65535], "of epidamium he and i": [0, 65535], "epidamium he and i and": [0, 65535], "he and i and the": [0, 65535], "and i and the twin": [0, 65535], "i and the twin dromio": [0, 65535], "and the twin dromio all": [0, 65535], "the twin dromio all were": [0, 65535], "twin dromio all were taken": [0, 65535], "dromio all were taken vp": [0, 65535], "all were taken vp but": [0, 65535], "were taken vp but by": [0, 65535], "taken vp but by and": [0, 65535], "vp but by and by": [0, 65535], "but by and by rude": [0, 65535], "by and by rude fishermen": [0, 65535], "and by rude fishermen of": [0, 65535], "by rude fishermen of corinth": [0, 65535], "rude fishermen of corinth by": [0, 65535], "fishermen of corinth by force": [0, 65535], "of corinth by force tooke": [0, 65535], "corinth by force tooke dromio": [0, 65535], "by force tooke dromio and": [0, 65535], "force tooke dromio and my": [0, 65535], "tooke dromio and my sonne": [0, 65535], "dromio and my sonne from": [0, 65535], "and my sonne from them": [0, 65535], "my sonne from them and": [0, 65535], "sonne from them and me": [0, 65535], "from them and me they": [0, 65535], "them and me they left": [0, 65535], "and me they left with": [0, 65535], "me they left with those": [0, 65535], "they left with those of": [0, 65535], "left with those of epidamium": [0, 65535], "with those of epidamium what": [0, 65535], "those of epidamium what then": [0, 65535], "of epidamium what then became": [0, 65535], "epidamium what then became of": [0, 65535], "what then became of them": [0, 65535], "then became of them i": [0, 65535], "became of them i cannot": [0, 65535], "of them i cannot tell": [0, 65535], "them i cannot tell i": [0, 65535], "i cannot tell i to": [0, 65535], "cannot tell i to this": [0, 65535], "tell i to this fortune": [0, 65535], "i to this fortune that": [0, 65535], "to this fortune that you": [0, 65535], "this fortune that you see": [0, 65535], "fortune that you see mee": [0, 65535], "that you see mee in": [0, 65535], "you see mee in duke": [0, 65535], "see mee in duke antipholus": [0, 65535], "mee in duke antipholus thou": [0, 65535], "in duke antipholus thou cam'st": [0, 65535], "duke antipholus thou cam'st from": [0, 65535], "antipholus thou cam'st from corinth": [0, 65535], "thou cam'st from corinth first": [0, 65535], "cam'st from corinth first s": [0, 65535], "from corinth first s ant": [0, 65535], "corinth first s ant no": [0, 65535], "first s ant no sir": [0, 65535], "s ant no sir not": [0, 65535], "ant no sir not i": [0, 65535], "no sir not i i": [0, 65535], "sir not i i came": [0, 65535], "not i i came from": [0, 65535], "i i came from siracuse": [0, 65535], "i came from siracuse duke": [0, 65535], "came from siracuse duke stay": [0, 65535], "from siracuse duke stay stand": [0, 65535], "siracuse duke stay stand apart": [0, 65535], "duke stay stand apart i": [0, 65535], "stay stand apart i know": [0, 65535], "stand apart i know not": [0, 65535], "apart i know not which": [0, 65535], "i know not which is": [0, 65535], "know not which is which": [0, 65535], "not which is which e": [0, 65535], "which is which e ant": [0, 65535], "is which e ant i": [0, 65535], "which e ant i came": [0, 65535], "e ant i came from": [0, 65535], "ant i came from corinth": [0, 65535], "i came from corinth my": [0, 65535], "came from corinth my most": [0, 65535], "from corinth my most gracious": [0, 65535], "corinth my most gracious lord": [0, 65535], "my most gracious lord e": [0, 65535], "most gracious lord e dro": [0, 65535], "gracious lord e dro and": [0, 65535], "lord e dro and i": [0, 65535], "e dro and i with": [0, 65535], "dro and i with him": [0, 65535], "and i with him e": [0, 65535], "i with him e ant": [0, 65535], "with him e ant brought": [0, 65535], "him e ant brought to": [0, 65535], "e ant brought to this": [0, 65535], "ant brought to this town": [0, 65535], "brought to this town by": [0, 65535], "to this town by that": [0, 65535], "this town by that most": [0, 65535], "town by that most famous": [0, 65535], "by that most famous warriour": [0, 65535], "that most famous warriour duke": [0, 65535], "most famous warriour duke menaphon": [0, 65535], "famous warriour duke menaphon your": [0, 65535], "warriour duke menaphon your most": [0, 65535], "duke menaphon your most renowned": [0, 65535], "menaphon your most renowned vnckle": [0, 65535], "your most renowned vnckle adr": [0, 65535], "most renowned vnckle adr which": [0, 65535], "renowned vnckle adr which of": [0, 65535], "vnckle adr which of you": [0, 65535], "adr which of you two": [0, 65535], "which of you two did": [0, 65535], "of you two did dine": [0, 65535], "you two did dine with": [0, 65535], "two did dine with me": [0, 65535], "did dine with me to": [0, 65535], "dine with me to day": [0, 65535], "with me to day s": [0, 65535], "me to day s ant": [0, 65535], "to day s ant i": [0, 65535], "day s ant i gentle": [0, 65535], "s ant i gentle mistris": [0, 65535], "ant i gentle mistris adr": [0, 65535], "i gentle mistris adr and": [0, 65535], "gentle mistris adr and are": [0, 65535], "mistris adr and are not": [0, 65535], "adr and are not you": [0, 65535], "and are not you my": [0, 65535], "are not you my husband": [0, 65535], "not you my husband e": [0, 65535], "you my husband e ant": [0, 65535], "my husband e ant no": [0, 65535], "husband e ant no i": [0, 65535], "e ant no i say": [0, 65535], "ant no i say nay": [0, 65535], "no i say nay to": [0, 65535], "i say nay to that": [0, 65535], "say nay to that s": [0, 65535], "nay to that s ant": [0, 65535], "to that s ant and": [0, 65535], "that s ant and so": [0, 65535], "s ant and so do": [0, 65535], "ant and so do i": [0, 65535], "and so do i yet": [0, 65535], "so do i yet did": [0, 65535], "do i yet did she": [0, 65535], "i yet did she call": [0, 65535], "yet did she call me": [0, 65535], "did she call me so": [0, 65535], "she call me so and": [0, 65535], "call me so and this": [0, 65535], "me so and this faire": [0, 65535], "so and this faire gentlewoman": [0, 65535], "and this faire gentlewoman her": [0, 65535], "this faire gentlewoman her sister": [0, 65535], "faire gentlewoman her sister heere": [0, 65535], "gentlewoman her sister heere did": [0, 65535], "her sister heere did call": [0, 65535], "sister heere did call me": [0, 65535], "heere did call me brother": [0, 65535], "did call me brother what": [0, 65535], "call me brother what i": [0, 65535], "me brother what i told": [0, 65535], "brother what i told you": [0, 65535], "what i told you then": [0, 65535], "i told you then i": [0, 65535], "told you then i hope": [0, 65535], "you then i hope i": [0, 65535], "then i hope i shall": [0, 65535], "i hope i shall haue": [0, 65535], "hope i shall haue leisure": [0, 65535], "i shall haue leisure to": [0, 65535], "shall haue leisure to make": [0, 65535], "haue leisure to make good": [0, 65535], "leisure to make good if": [0, 65535], "to make good if this": [0, 65535], "make good if this be": [0, 65535], "good if this be not": [0, 65535], "if this be not a": [0, 65535], "this be not a dreame": [0, 65535], "be not a dreame i": [0, 65535], "not a dreame i see": [0, 65535], "a dreame i see and": [0, 65535], "dreame i see and heare": [0, 65535], "i see and heare goldsmith": [0, 65535], "see and heare goldsmith that": [0, 65535], "and heare goldsmith that is": [0, 65535], "heare goldsmith that is the": [0, 65535], "goldsmith that is the chaine": [0, 65535], "that is the chaine sir": [0, 65535], "is the chaine sir which": [0, 65535], "the chaine sir which you": [0, 65535], "chaine sir which you had": [0, 65535], "sir which you had of": [0, 65535], "which you had of mee": [0, 65535], "you had of mee s": [0, 65535], "had of mee s ant": [0, 65535], "of mee s ant i": [0, 65535], "mee s ant i thinke": [0, 65535], "s ant i thinke it": [0, 65535], "ant i thinke it be": [0, 65535], "i thinke it be sir": [0, 65535], "thinke it be sir i": [0, 65535], "it be sir i denie": [0, 65535], "be sir i denie it": [0, 65535], "sir i denie it not": [0, 65535], "i denie it not e": [0, 65535], "denie it not e ant": [0, 65535], "it not e ant and": [0, 65535], "not e ant and you": [0, 65535], "e ant and you sir": [0, 65535], "ant and you sir for": [0, 65535], "and you sir for this": [0, 65535], "you sir for this chaine": [0, 65535], "sir for this chaine arrested": [0, 65535], "for this chaine arrested me": [0, 65535], "this chaine arrested me gold": [0, 65535], "chaine arrested me gold i": [0, 65535], "arrested me gold i thinke": [0, 65535], "me gold i thinke i": [0, 65535], "gold i thinke i did": [0, 65535], "i thinke i did sir": [0, 65535], "thinke i did sir i": [0, 65535], "i did sir i deny": [0, 65535], "did sir i deny it": [0, 65535], "sir i deny it not": [0, 65535], "i deny it not adr": [0, 65535], "deny it not adr i": [0, 65535], "it not adr i sent": [0, 65535], "not adr i sent you": [0, 65535], "adr i sent you monie": [0, 65535], "i sent you monie sir": [0, 65535], "sent you monie sir to": [0, 65535], "you monie sir to be": [0, 65535], "monie sir to be your": [0, 65535], "sir to be your baile": [0, 65535], "to be your baile by": [0, 65535], "be your baile by dromio": [0, 65535], "your baile by dromio but": [0, 65535], "baile by dromio but i": [0, 65535], "by dromio but i thinke": [0, 65535], "dromio but i thinke he": [0, 65535], "but i thinke he brought": [0, 65535], "i thinke he brought it": [0, 65535], "thinke he brought it not": [0, 65535], "he brought it not e": [0, 65535], "brought it not e dro": [0, 65535], "it not e dro no": [0, 65535], "not e dro no none": [0, 65535], "e dro no none by": [0, 65535], "dro no none by me": [0, 65535], "no none by me s": [0, 65535], "none by me s ant": [0, 65535], "by me s ant this": [0, 65535], "me s ant this purse": [0, 65535], "s ant this purse of": [0, 65535], "ant this purse of duckets": [0, 65535], "this purse of duckets i": [0, 65535], "purse of duckets i receiu'd": [0, 65535], "of duckets i receiu'd from": [0, 65535], "duckets i receiu'd from you": [0, 65535], "i receiu'd from you and": [0, 65535], "receiu'd from you and dromio": [0, 65535], "from you and dromio my": [0, 65535], "you and dromio my man": [0, 65535], "and dromio my man did": [0, 65535], "dromio my man did bring": [0, 65535], "my man did bring them": [0, 65535], "man did bring them me": [0, 65535], "did bring them me i": [0, 65535], "bring them me i see": [0, 65535], "them me i see we": [0, 65535], "me i see we still": [0, 65535], "i see we still did": [0, 65535], "see we still did meete": [0, 65535], "we still did meete each": [0, 65535], "still did meete each others": [0, 65535], "did meete each others man": [0, 65535], "meete each others man and": [0, 65535], "each others man and i": [0, 65535], "others man and i was": [0, 65535], "man and i was tane": [0, 65535], "and i was tane for": [0, 65535], "i was tane for him": [0, 65535], "was tane for him and": [0, 65535], "tane for him and he": [0, 65535], "for him and he for": [0, 65535], "him and he for me": [0, 65535], "and he for me and": [0, 65535], "he for me and thereupon": [0, 65535], "for me and thereupon these": [0, 65535], "me and thereupon these errors": [0, 65535], "and thereupon these errors are": [0, 65535], "thereupon these errors are arose": [0, 65535], "these errors are arose e": [0, 65535], "errors are arose e ant": [0, 65535], "are arose e ant these": [0, 65535], "arose e ant these duckets": [0, 65535], "e ant these duckets pawne": [0, 65535], "ant these duckets pawne i": [0, 65535], "these duckets pawne i for": [0, 65535], "duckets pawne i for my": [0, 65535], "pawne i for my father": [0, 65535], "i for my father heere": [0, 65535], "for my father heere duke": [0, 65535], "my father heere duke it": [0, 65535], "father heere duke it shall": [0, 65535], "heere duke it shall not": [0, 65535], "duke it shall not neede": [0, 65535], "it shall not neede thy": [0, 65535], "shall not neede thy father": [0, 65535], "not neede thy father hath": [0, 65535], "neede thy father hath his": [0, 65535], "thy father hath his life": [0, 65535], "father hath his life cur": [0, 65535], "hath his life cur sir": [0, 65535], "his life cur sir i": [0, 65535], "life cur sir i must": [0, 65535], "cur sir i must haue": [0, 65535], "sir i must haue that": [0, 65535], "i must haue that diamond": [0, 65535], "must haue that diamond from": [0, 65535], "haue that diamond from you": [0, 65535], "that diamond from you e": [0, 65535], "diamond from you e ant": [0, 65535], "from you e ant there": [0, 65535], "you e ant there take": [0, 65535], "e ant there take it": [0, 65535], "ant there take it and": [0, 65535], "there take it and much": [0, 65535], "take it and much thanks": [0, 65535], "it and much thanks for": [0, 65535], "and much thanks for my": [0, 65535], "much thanks for my good": [0, 65535], "thanks for my good cheere": [0, 65535], "for my good cheere abb": [0, 65535], "my good cheere abb renowned": [0, 65535], "good cheere abb renowned duke": [0, 65535], "cheere abb renowned duke vouchsafe": [0, 65535], "abb renowned duke vouchsafe to": [0, 65535], "renowned duke vouchsafe to take": [0, 65535], "duke vouchsafe to take the": [0, 65535], "vouchsafe to take the paines": [0, 65535], "to take the paines to": [0, 65535], "take the paines to go": [0, 65535], "the paines to go with": [0, 65535], "paines to go with vs": [0, 65535], "to go with vs into": [0, 65535], "go with vs into the": [0, 65535], "with vs into the abbey": [0, 65535], "vs into the abbey heere": [0, 65535], "into the abbey heere and": [0, 65535], "the abbey heere and heare": [0, 65535], "abbey heere and heare at": [0, 65535], "heere and heare at large": [0, 65535], "and heare at large discoursed": [0, 65535], "heare at large discoursed all": [0, 65535], "at large discoursed all our": [0, 65535], "large discoursed all our fortunes": [0, 65535], "discoursed all our fortunes and": [0, 65535], "all our fortunes and all": [0, 65535], "our fortunes and all that": [0, 65535], "fortunes and all that are": [0, 65535], "and all that are assembled": [0, 65535], "all that are assembled in": [0, 65535], "that are assembled in this": [0, 65535], "are assembled in this place": [0, 65535], "assembled in this place that": [0, 65535], "in this place that by": [0, 65535], "this place that by this": [0, 65535], "place that by this simpathized": [0, 65535], "that by this simpathized one": [0, 65535], "by this simpathized one daies": [0, 65535], "this simpathized one daies error": [0, 65535], "simpathized one daies error haue": [0, 65535], "one daies error haue suffer'd": [0, 65535], "daies error haue suffer'd wrong": [0, 65535], "error haue suffer'd wrong goe": [0, 65535], "haue suffer'd wrong goe keepe": [0, 65535], "suffer'd wrong goe keepe vs": [0, 65535], "wrong goe keepe vs companie": [0, 65535], "goe keepe vs companie and": [0, 65535], "keepe vs companie and we": [0, 65535], "vs companie and we shall": [0, 65535], "companie and we shall make": [0, 65535], "and we shall make full": [0, 65535], "we shall make full satisfaction": [0, 65535], "shall make full satisfaction thirtie": [0, 65535], "make full satisfaction thirtie three": [0, 65535], "full satisfaction thirtie three yeares": [0, 65535], "satisfaction thirtie three yeares haue": [0, 65535], "thirtie three yeares haue i": [0, 65535], "three yeares haue i but": [0, 65535], "yeares haue i but gone": [0, 65535], "haue i but gone in": [0, 65535], "i but gone in trauaile": [0, 65535], "but gone in trauaile of": [0, 65535], "gone in trauaile of you": [0, 65535], "in trauaile of you my": [0, 65535], "trauaile of you my sonnes": [0, 65535], "of you my sonnes and": [0, 65535], "you my sonnes and till": [0, 65535], "my sonnes and till this": [0, 65535], "sonnes and till this present": [0, 65535], "and till this present houre": [0, 65535], "till this present houre my": [0, 65535], "this present houre my heauie": [0, 65535], "present houre my heauie burthen": [0, 65535], "houre my heauie burthen are": [0, 65535], "my heauie burthen are deliuered": [0, 65535], "heauie burthen are deliuered the": [0, 65535], "burthen are deliuered the duke": [0, 65535], "are deliuered the duke my": [0, 65535], "deliuered the duke my husband": [0, 65535], "the duke my husband and": [0, 65535], "duke my husband and my": [0, 65535], "my husband and my children": [0, 65535], "husband and my children both": [0, 65535], "and my children both and": [0, 65535], "my children both and you": [0, 65535], "children both and you the": [0, 65535], "both and you the kalenders": [0, 65535], "and you the kalenders of": [0, 65535], "you the kalenders of their": [0, 65535], "the kalenders of their natiuity": [0, 65535], "kalenders of their natiuity go": [0, 65535], "of their natiuity go to": [0, 65535], "their natiuity go to a": [0, 65535], "natiuity go to a gossips": [0, 65535], "go to a gossips feast": [0, 65535], "to a gossips feast and": [0, 65535], "a gossips feast and go": [0, 65535], "gossips feast and go with": [0, 65535], "feast and go with mee": [0, 65535], "and go with mee after": [0, 65535], "go with mee after so": [0, 65535], "with mee after so long": [0, 65535], "mee after so long greefe": [0, 65535], "after so long greefe such": [0, 65535], "so long greefe such natiuitie": [0, 65535], "long greefe such natiuitie duke": [0, 65535], "greefe such natiuitie duke with": [0, 65535], "such natiuitie duke with all": [0, 65535], "natiuitie duke with all my": [0, 65535], "duke with all my heart": [0, 65535], "with all my heart ile": [0, 65535], "all my heart ile gossip": [0, 65535], "my heart ile gossip at": [0, 65535], "heart ile gossip at this": [0, 65535], "ile gossip at this feast": [0, 65535], "gossip at this feast exeunt": [0, 65535], "at this feast exeunt omnes": [0, 65535], "this feast exeunt omnes manet": [0, 65535], "feast exeunt omnes manet the": [0, 65535], "exeunt omnes manet the two": [0, 65535], "omnes manet the two dromio's": [0, 65535], "manet the two dromio's and": [0, 65535], "the two dromio's and two": [0, 65535], "two dromio's and two brothers": [0, 65535], "dromio's and two brothers s": [0, 65535], "and two brothers s dro": [0, 65535], "two brothers s dro mast": [0, 65535], "brothers s dro mast shall": [0, 65535], "s dro mast shall i": [0, 65535], "dro mast shall i fetch": [0, 65535], "mast shall i fetch your": [0, 65535], "shall i fetch your stuffe": [0, 65535], "i fetch your stuffe from": [0, 65535], "fetch your stuffe from shipbord": [0, 65535], "your stuffe from shipbord e": [0, 65535], "stuffe from shipbord e an": [0, 65535], "from shipbord e an dromio": [0, 65535], "shipbord e an dromio what": [0, 65535], "e an dromio what stuffe": [0, 65535], "an dromio what stuffe of": [0, 65535], "dromio what stuffe of mine": [0, 65535], "what stuffe of mine hast": [0, 65535], "stuffe of mine hast thou": [0, 65535], "of mine hast thou imbarkt": [0, 65535], "mine hast thou imbarkt s": [0, 65535], "hast thou imbarkt s dro": [0, 65535], "thou imbarkt s dro your": [0, 65535], "imbarkt s dro your goods": [0, 65535], "s dro your goods that": [0, 65535], "dro your goods that lay": [0, 65535], "your goods that lay at": [0, 65535], "goods that lay at host": [0, 65535], "that lay at host sir": [0, 65535], "lay at host sir in": [0, 65535], "at host sir in the": [0, 65535], "host sir in the centaur": [0, 65535], "sir in the centaur s": [0, 65535], "in the centaur s ant": [0, 65535], "the centaur s ant he": [0, 65535], "centaur s ant he speakes": [0, 65535], "s ant he speakes to": [0, 65535], "ant he speakes to me": [0, 65535], "he speakes to me i": [0, 65535], "speakes to me i am": [0, 65535], "to me i am your": [0, 65535], "me i am your master": [0, 65535], "i am your master dromio": [0, 65535], "am your master dromio come": [0, 65535], "your master dromio come go": [0, 65535], "master dromio come go with": [0, 65535], "dromio come go with vs": [0, 65535], "come go with vs wee'l": [0, 65535], "go with vs wee'l looke": [0, 65535], "with vs wee'l looke to": [0, 65535], "vs wee'l looke to that": [0, 65535], "wee'l looke to that anon": [0, 65535], "looke to that anon embrace": [0, 65535], "to that anon embrace thy": [0, 65535], "that anon embrace thy brother": [0, 65535], "anon embrace thy brother there": [0, 65535], "embrace thy brother there reioyce": [0, 65535], "thy brother there reioyce with": [0, 65535], "brother there reioyce with him": [0, 65535], "there reioyce with him exit": [0, 65535], "reioyce with him exit s": [0, 65535], "with him exit s dro": [0, 65535], "him exit s dro there": [0, 65535], "exit s dro there is": [0, 65535], "s dro there is a": [0, 65535], "dro there is a fat": [0, 65535], "there is a fat friend": [0, 65535], "is a fat friend at": [0, 65535], "a fat friend at your": [0, 65535], "fat friend at your masters": [0, 65535], "friend at your masters house": [0, 65535], "at your masters house that": [0, 65535], "your masters house that kitchin'd": [0, 65535], "masters house that kitchin'd me": [0, 65535], "house that kitchin'd me for": [0, 65535], "that kitchin'd me for you": [0, 65535], "kitchin'd me for you to": [0, 65535], "me for you to day": [0, 65535], "for you to day at": [0, 65535], "you to day at dinner": [0, 65535], "to day at dinner she": [0, 65535], "day at dinner she now": [0, 65535], "at dinner she now shall": [0, 65535], "dinner she now shall be": [0, 65535], "she now shall be my": [0, 65535], "now shall be my sister": [0, 65535], "shall be my sister not": [0, 65535], "be my sister not my": [0, 65535], "my sister not my wife": [0, 65535], "sister not my wife e": [0, 65535], "not my wife e d": [0, 65535], "my wife e d me": [0, 65535], "wife e d me thinks": [0, 65535], "e d me thinks you": [0, 65535], "d me thinks you are": [0, 65535], "me thinks you are my": [0, 65535], "thinks you are my glasse": [0, 65535], "you are my glasse not": [0, 65535], "are my glasse not my": [0, 65535], "my glasse not my brother": [0, 65535], "glasse not my brother i": [0, 65535], "not my brother i see": [0, 65535], "my brother i see by": [0, 65535], "brother i see by you": [0, 65535], "i see by you i": [0, 65535], "see by you i am": [0, 65535], "by you i am a": [0, 65535], "you i am a sweet": [0, 65535], "i am a sweet fac'd": [0, 65535], "am a sweet fac'd youth": [0, 65535], "a sweet fac'd youth will": [0, 65535], "sweet fac'd youth will you": [0, 65535], "fac'd youth will you walke": [0, 65535], "youth will you walke in": [0, 65535], "will you walke in to": [0, 65535], "you walke in to see": [0, 65535], "walke in to see their": [0, 65535], "in to see their gossipping": [0, 65535], "to see their gossipping s": [0, 65535], "see their gossipping s dro": [0, 65535], "their gossipping s dro not": [0, 65535], "gossipping s dro not i": [0, 65535], "s dro not i sir": [0, 65535], "dro not i sir you": [0, 65535], "not i sir you are": [0, 65535], "i sir you are my": [0, 65535], "sir you are my elder": [0, 65535], "you are my elder e": [0, 65535], "are my elder e dro": [0, 65535], "my elder e dro that's": [0, 65535], "elder e dro that's a": [0, 65535], "e dro that's a question": [0, 65535], "dro that's a question how": [0, 65535], "that's a question how shall": [0, 65535], "a question how shall we": [0, 65535], "question how shall we trie": [0, 65535], "how shall we trie it": [0, 65535], "shall we trie it s": [0, 65535], "we trie it s dro": [0, 65535], "trie it s dro wee'l": [0, 65535], "it s dro wee'l draw": [0, 65535], "s dro wee'l draw cuts": [0, 65535], "dro wee'l draw cuts for": [0, 65535], "wee'l draw cuts for the": [0, 65535], "draw cuts for the signior": [0, 65535], "cuts for the signior till": [0, 65535], "for the signior till then": [0, 65535], "the signior till then lead": [0, 65535], "signior till then lead thou": [0, 65535], "till then lead thou first": [0, 65535], "then lead thou first e": [0, 65535], "lead thou first e dro": [0, 65535], "thou first e dro nay": [0, 65535], "first e dro nay then": [0, 65535], "e dro nay then thus": [0, 65535], "dro nay then thus we": [0, 65535], "nay then thus we came": [0, 65535], "then thus we came into": [0, 65535], "thus we came into the": [0, 65535], "we came into the world": [0, 65535], "came into the world like": [0, 65535], "into the world like brother": [0, 65535], "the world like brother and": [0, 65535], "world like brother and brother": [0, 65535], "like brother and brother and": [0, 65535], "brother and brother and now": [0, 65535], "and brother and now let's": [0, 65535], "brother and now let's go": [0, 65535], "and now let's go hand": [0, 65535], "now let's go hand in": [0, 65535], "let's go hand in hand": [0, 65535], "go hand in hand not": [0, 65535], "hand in hand not one": [0, 65535], "in hand not one before": [0, 65535], "hand not one before another": [0, 65535], "not one before another exeunt": [0, 65535], "one before another exeunt finis": [0, 65535], "actus quintus sc\u0153na prima enter the": [0, 65535], "quintus sc\u0153na prima enter the merchant": [0, 65535], "sc\u0153na prima enter the merchant and": [0, 65535], "prima enter the merchant and the": [0, 65535], "enter the merchant and the goldsmith": [0, 65535], "the merchant and the goldsmith gold": [0, 65535], "merchant and the goldsmith gold i": [0, 65535], "and the goldsmith gold i am": [0, 65535], "the goldsmith gold i am sorry": [0, 65535], "goldsmith gold i am sorry sir": [0, 65535], "gold i am sorry sir that": [0, 65535], "i am sorry sir that i": [0, 65535], "am sorry sir that i haue": [0, 65535], "sorry sir that i haue hindred": [0, 65535], "sir that i haue hindred you": [0, 65535], "that i haue hindred you but": [0, 65535], "i haue hindred you but i": [0, 65535], "haue hindred you but i protest": [0, 65535], "hindred you but i protest he": [0, 65535], "you but i protest he had": [0, 65535], "but i protest he had the": [0, 65535], "i protest he had the chaine": [0, 65535], "protest he had the chaine of": [0, 65535], "he had the chaine of me": [0, 65535], "had the chaine of me though": [0, 65535], "the chaine of me though most": [0, 65535], "chaine of me though most dishonestly": [0, 65535], "of me though most dishonestly he": [0, 65535], "me though most dishonestly he doth": [0, 65535], "though most dishonestly he doth denie": [0, 65535], "most dishonestly he doth denie it": [0, 65535], "dishonestly he doth denie it mar": [0, 65535], "he doth denie it mar how": [0, 65535], "doth denie it mar how is": [0, 65535], "denie it mar how is the": [0, 65535], "it mar how is the man": [0, 65535], "mar how is the man esteem'd": [0, 65535], "how is the man esteem'd heere": [0, 65535], "is the man esteem'd heere in": [0, 65535], "the man esteem'd heere in the": [0, 65535], "man esteem'd heere in the citie": [0, 65535], "esteem'd heere in the citie gold": [0, 65535], "heere in the citie gold of": [0, 65535], "in the citie gold of very": [0, 65535], "the citie gold of very reuerent": [0, 65535], "citie gold of very reuerent reputation": [0, 65535], "gold of very reuerent reputation sir": [0, 65535], "of very reuerent reputation sir of": [0, 65535], "very reuerent reputation sir of credit": [0, 65535], "reuerent reputation sir of credit infinite": [0, 65535], "reputation sir of credit infinite highly": [0, 65535], "sir of credit infinite highly belou'd": [0, 65535], "of credit infinite highly belou'd second": [0, 65535], "credit infinite highly belou'd second to": [0, 65535], "infinite highly belou'd second to none": [0, 65535], "highly belou'd second to none that": [0, 65535], "belou'd second to none that liues": [0, 65535], "second to none that liues heere": [0, 65535], "to none that liues heere in": [0, 65535], "none that liues heere in the": [0, 65535], "that liues heere in the citie": [0, 65535], "liues heere in the citie his": [0, 65535], "heere in the citie his word": [0, 65535], "in the citie his word might": [0, 65535], "the citie his word might beare": [0, 65535], "citie his word might beare my": [0, 65535], "his word might beare my wealth": [0, 65535], "word might beare my wealth at": [0, 65535], "might beare my wealth at any": [0, 65535], "beare my wealth at any time": [0, 65535], "my wealth at any time mar": [0, 65535], "wealth at any time mar speake": [0, 65535], "at any time mar speake softly": [0, 65535], "any time mar speake softly yonder": [0, 65535], "time mar speake softly yonder as": [0, 65535], "mar speake softly yonder as i": [0, 65535], "speake softly yonder as i thinke": [0, 65535], "softly yonder as i thinke he": [0, 65535], "yonder as i thinke he walkes": [0, 65535], "as i thinke he walkes enter": [0, 65535], "i thinke he walkes enter antipholus": [0, 65535], "thinke he walkes enter antipholus and": [0, 65535], "he walkes enter antipholus and dromio": [0, 65535], "walkes enter antipholus and dromio againe": [0, 65535], "enter antipholus and dromio againe gold": [0, 65535], "antipholus and dromio againe gold 'tis": [0, 65535], "and dromio againe gold 'tis so": [0, 65535], "dromio againe gold 'tis so and": [0, 65535], "againe gold 'tis so and that": [0, 65535], "gold 'tis so and that selfe": [0, 65535], "'tis so and that selfe chaine": [0, 65535], "so and that selfe chaine about": [0, 65535], "and that selfe chaine about his": [0, 65535], "that selfe chaine about his necke": [0, 65535], "selfe chaine about his necke which": [0, 65535], "chaine about his necke which he": [0, 65535], "about his necke which he forswore": [0, 65535], "his necke which he forswore most": [0, 65535], "necke which he forswore most monstrously": [0, 65535], "which he forswore most monstrously to": [0, 65535], "he forswore most monstrously to haue": [0, 65535], "forswore most monstrously to haue good": [0, 65535], "most monstrously to haue good sir": [0, 65535], "monstrously to haue good sir draw": [0, 65535], "to haue good sir draw neere": [0, 65535], "haue good sir draw neere to": [0, 65535], "good sir draw neere to me": [0, 65535], "sir draw neere to me ile": [0, 65535], "draw neere to me ile speake": [0, 65535], "neere to me ile speake to": [0, 65535], "to me ile speake to him": [0, 65535], "me ile speake to him signior": [0, 65535], "ile speake to him signior antipholus": [0, 65535], "speake to him signior antipholus i": [0, 65535], "to him signior antipholus i wonder": [0, 65535], "him signior antipholus i wonder much": [0, 65535], "signior antipholus i wonder much that": [0, 65535], "antipholus i wonder much that you": [0, 65535], "i wonder much that you would": [0, 65535], "wonder much that you would put": [0, 65535], "much that you would put me": [0, 65535], "that you would put me to": [0, 65535], "you would put me to this": [0, 65535], "would put me to this shame": [0, 65535], "put me to this shame and": [0, 65535], "me to this shame and trouble": [0, 65535], "to this shame and trouble and": [0, 65535], "this shame and trouble and not": [0, 65535], "shame and trouble and not without": [0, 65535], "and trouble and not without some": [0, 65535], "trouble and not without some scandall": [0, 65535], "and not without some scandall to": [0, 65535], "not without some scandall to your": [0, 65535], "without some scandall to your selfe": [0, 65535], "some scandall to your selfe with": [0, 65535], "scandall to your selfe with circumstance": [0, 65535], "to your selfe with circumstance and": [0, 65535], "your selfe with circumstance and oaths": [0, 65535], "selfe with circumstance and oaths so": [0, 65535], "with circumstance and oaths so to": [0, 65535], "circumstance and oaths so to denie": [0, 65535], "and oaths so to denie this": [0, 65535], "oaths so to denie this chaine": [0, 65535], "so to denie this chaine which": [0, 65535], "to denie this chaine which now": [0, 65535], "denie this chaine which now you": [0, 65535], "this chaine which now you weare": [0, 65535], "chaine which now you weare so": [0, 65535], "which now you weare so openly": [0, 65535], "now you weare so openly beside": [0, 65535], "you weare so openly beside the": [0, 65535], "weare so openly beside the charge": [0, 65535], "so openly beside the charge the": [0, 65535], "openly beside the charge the shame": [0, 65535], "beside the charge the shame imprisonment": [0, 65535], "the charge the shame imprisonment you": [0, 65535], "charge the shame imprisonment you haue": [0, 65535], "the shame imprisonment you haue done": [0, 65535], "shame imprisonment you haue done wrong": [0, 65535], "imprisonment you haue done wrong to": [0, 65535], "you haue done wrong to this": [0, 65535], "haue done wrong to this my": [0, 65535], "done wrong to this my honest": [0, 65535], "wrong to this my honest friend": [0, 65535], "to this my honest friend who": [0, 65535], "this my honest friend who but": [0, 65535], "my honest friend who but for": [0, 65535], "honest friend who but for staying": [0, 65535], "friend who but for staying on": [0, 65535], "who but for staying on our": [0, 65535], "but for staying on our controuersie": [0, 65535], "for staying on our controuersie had": [0, 65535], "staying on our controuersie had hoisted": [0, 65535], "on our controuersie had hoisted saile": [0, 65535], "our controuersie had hoisted saile and": [0, 65535], "controuersie had hoisted saile and put": [0, 65535], "had hoisted saile and put to": [0, 65535], "hoisted saile and put to sea": [0, 65535], "saile and put to sea to": [0, 65535], "and put to sea to day": [0, 65535], "put to sea to day this": [0, 65535], "to sea to day this chaine": [0, 65535], "sea to day this chaine you": [0, 65535], "to day this chaine you had": [0, 65535], "day this chaine you had of": [0, 65535], "this chaine you had of me": [0, 65535], "chaine you had of me can": [0, 65535], "you had of me can you": [0, 65535], "had of me can you deny": [0, 65535], "of me can you deny it": [0, 65535], "me can you deny it ant": [0, 65535], "can you deny it ant i": [0, 65535], "you deny it ant i thinke": [0, 65535], "deny it ant i thinke i": [0, 65535], "it ant i thinke i had": [0, 65535], "ant i thinke i had i": [0, 65535], "i thinke i had i neuer": [0, 65535], "thinke i had i neuer did": [0, 65535], "i had i neuer did deny": [0, 65535], "had i neuer did deny it": [0, 65535], "i neuer did deny it mar": [0, 65535], "neuer did deny it mar yes": [0, 65535], "did deny it mar yes that": [0, 65535], "deny it mar yes that you": [0, 65535], "it mar yes that you did": [0, 65535], "mar yes that you did sir": [0, 65535], "yes that you did sir and": [0, 65535], "that you did sir and forswore": [0, 65535], "you did sir and forswore it": [0, 65535], "did sir and forswore it too": [0, 65535], "sir and forswore it too ant": [0, 65535], "and forswore it too ant who": [0, 65535], "forswore it too ant who heard": [0, 65535], "it too ant who heard me": [0, 65535], "too ant who heard me to": [0, 65535], "ant who heard me to denie": [0, 65535], "who heard me to denie it": [0, 65535], "heard me to denie it or": [0, 65535], "me to denie it or forsweare": [0, 65535], "to denie it or forsweare it": [0, 65535], "denie it or forsweare it mar": [0, 65535], "it or forsweare it mar these": [0, 65535], "or forsweare it mar these eares": [0, 65535], "forsweare it mar these eares of": [0, 65535], "it mar these eares of mine": [0, 65535], "mar these eares of mine thou": [0, 65535], "these eares of mine thou knowst": [0, 65535], "eares of mine thou knowst did": [0, 65535], "of mine thou knowst did hear": [0, 65535], "mine thou knowst did hear thee": [0, 65535], "thou knowst did hear thee fie": [0, 65535], "knowst did hear thee fie on": [0, 65535], "did hear thee fie on thee": [0, 65535], "hear thee fie on thee wretch": [0, 65535], "thee fie on thee wretch 'tis": [0, 65535], "fie on thee wretch 'tis pitty": [0, 65535], "on thee wretch 'tis pitty that": [0, 65535], "thee wretch 'tis pitty that thou": [0, 65535], "wretch 'tis pitty that thou liu'st": [0, 65535], "'tis pitty that thou liu'st to": [0, 65535], "pitty that thou liu'st to walke": [0, 65535], "that thou liu'st to walke where": [0, 65535], "thou liu'st to walke where any": [0, 65535], "liu'st to walke where any honest": [0, 65535], "to walke where any honest men": [0, 65535], "walke where any honest men resort": [0, 65535], "where any honest men resort ant": [0, 65535], "any honest men resort ant thou": [0, 65535], "honest men resort ant thou art": [0, 65535], "men resort ant thou art a": [0, 65535], "resort ant thou art a villaine": [0, 65535], "ant thou art a villaine to": [0, 65535], "thou art a villaine to impeach": [0, 65535], "art a villaine to impeach me": [0, 65535], "a villaine to impeach me thus": [0, 65535], "villaine to impeach me thus ile": [0, 65535], "to impeach me thus ile proue": [0, 65535], "impeach me thus ile proue mine": [0, 65535], "me thus ile proue mine honor": [0, 65535], "thus ile proue mine honor and": [0, 65535], "ile proue mine honor and mine": [0, 65535], "proue mine honor and mine honestie": [0, 65535], "mine honor and mine honestie against": [0, 65535], "honor and mine honestie against thee": [0, 65535], "and mine honestie against thee presently": [0, 65535], "mine honestie against thee presently if": [0, 65535], "honestie against thee presently if thou": [0, 65535], "against thee presently if thou dar'st": [0, 65535], "thee presently if thou dar'st stand": [0, 65535], "presently if thou dar'st stand mar": [0, 65535], "if thou dar'st stand mar i": [0, 65535], "thou dar'st stand mar i dare": [0, 65535], "dar'st stand mar i dare and": [0, 65535], "stand mar i dare and do": [0, 65535], "mar i dare and do defie": [0, 65535], "i dare and do defie thee": [0, 65535], "dare and do defie thee for": [0, 65535], "and do defie thee for a": [0, 65535], "do defie thee for a villaine": [0, 65535], "defie thee for a villaine they": [0, 65535], "thee for a villaine they draw": [0, 65535], "for a villaine they draw enter": [0, 65535], "a villaine they draw enter adriana": [0, 65535], "villaine they draw enter adriana luciana": [0, 65535], "they draw enter adriana luciana courtezan": [0, 65535], "draw enter adriana luciana courtezan others": [0, 65535], "enter adriana luciana courtezan others adr": [0, 65535], "adriana luciana courtezan others adr hold": [0, 65535], "luciana courtezan others adr hold hurt": [0, 65535], "courtezan others adr hold hurt him": [0, 65535], "others adr hold hurt him not": [0, 65535], "adr hold hurt him not for": [0, 65535], "hold hurt him not for god": [0, 65535], "hurt him not for god sake": [0, 65535], "him not for god sake he": [0, 65535], "not for god sake he is": [0, 65535], "for god sake he is mad": [0, 65535], "god sake he is mad some": [0, 65535], "sake he is mad some get": [0, 65535], "he is mad some get within": [0, 65535], "is mad some get within him": [0, 65535], "mad some get within him take": [0, 65535], "some get within him take his": [0, 65535], "get within him take his sword": [0, 65535], "within him take his sword away": [0, 65535], "him take his sword away binde": [0, 65535], "take his sword away binde dromio": [0, 65535], "his sword away binde dromio too": [0, 65535], "sword away binde dromio too and": [0, 65535], "away binde dromio too and beare": [0, 65535], "binde dromio too and beare them": [0, 65535], "dromio too and beare them to": [0, 65535], "too and beare them to my": [0, 65535], "and beare them to my house": [0, 65535], "beare them to my house s": [0, 65535], "them to my house s dro": [0, 65535], "to my house s dro runne": [0, 65535], "my house s dro runne master": [0, 65535], "house s dro runne master run": [0, 65535], "s dro runne master run for": [0, 65535], "dro runne master run for gods": [0, 65535], "runne master run for gods sake": [0, 65535], "master run for gods sake take": [0, 65535], "run for gods sake take a": [0, 65535], "for gods sake take a house": [0, 65535], "gods sake take a house this": [0, 65535], "sake take a house this is": [0, 65535], "take a house this is some": [0, 65535], "a house this is some priorie": [0, 65535], "house this is some priorie in": [0, 65535], "this is some priorie in or": [0, 65535], "is some priorie in or we": [0, 65535], "some priorie in or we are": [0, 65535], "priorie in or we are spoyl'd": [0, 65535], "in or we are spoyl'd exeunt": [0, 65535], "or we are spoyl'd exeunt to": [0, 65535], "we are spoyl'd exeunt to the": [0, 65535], "are spoyl'd exeunt to the priorie": [0, 65535], "spoyl'd exeunt to the priorie enter": [0, 65535], "exeunt to the priorie enter ladie": [0, 65535], "to the priorie enter ladie abbesse": [0, 65535], "the priorie enter ladie abbesse ab": [0, 65535], "priorie enter ladie abbesse ab be": [0, 65535], "enter ladie abbesse ab be quiet": [0, 65535], "ladie abbesse ab be quiet people": [0, 65535], "abbesse ab be quiet people wherefore": [0, 65535], "ab be quiet people wherefore throng": [0, 65535], "be quiet people wherefore throng you": [0, 65535], "quiet people wherefore throng you hither": [0, 65535], "people wherefore throng you hither adr": [0, 65535], "wherefore throng you hither adr to": [0, 65535], "throng you hither adr to fetch": [0, 65535], "you hither adr to fetch my": [0, 65535], "hither adr to fetch my poore": [0, 65535], "adr to fetch my poore distracted": [0, 65535], "to fetch my poore distracted husband": [0, 65535], "fetch my poore distracted husband hence": [0, 65535], "my poore distracted husband hence let": [0, 65535], "poore distracted husband hence let vs": [0, 65535], "distracted husband hence let vs come": [0, 65535], "husband hence let vs come in": [0, 65535], "hence let vs come in that": [0, 65535], "let vs come in that we": [0, 65535], "vs come in that we may": [0, 65535], "come in that we may binde": [0, 65535], "in that we may binde him": [0, 65535], "that we may binde him fast": [0, 65535], "we may binde him fast and": [0, 65535], "may binde him fast and beare": [0, 65535], "binde him fast and beare him": [0, 65535], "him fast and beare him home": [0, 65535], "fast and beare him home for": [0, 65535], "and beare him home for his": [0, 65535], "beare him home for his recouerie": [0, 65535], "him home for his recouerie gold": [0, 65535], "home for his recouerie gold i": [0, 65535], "for his recouerie gold i knew": [0, 65535], "his recouerie gold i knew he": [0, 65535], "recouerie gold i knew he was": [0, 65535], "gold i knew he was not": [0, 65535], "i knew he was not in": [0, 65535], "knew he was not in his": [0, 65535], "he was not in his perfect": [0, 65535], "was not in his perfect wits": [0, 65535], "not in his perfect wits mar": [0, 65535], "in his perfect wits mar i": [0, 65535], "his perfect wits mar i am": [0, 65535], "perfect wits mar i am sorry": [0, 65535], "wits mar i am sorry now": [0, 65535], "mar i am sorry now that": [0, 65535], "i am sorry now that i": [0, 65535], "am sorry now that i did": [0, 65535], "sorry now that i did draw": [0, 65535], "now that i did draw on": [0, 65535], "that i did draw on him": [0, 65535], "i did draw on him ab": [0, 65535], "did draw on him ab how": [0, 65535], "draw on him ab how long": [0, 65535], "on him ab how long hath": [0, 65535], "him ab how long hath this": [0, 65535], "ab how long hath this possession": [0, 65535], "how long hath this possession held": [0, 65535], "long hath this possession held the": [0, 65535], "hath this possession held the man": [0, 65535], "this possession held the man adr": [0, 65535], "possession held the man adr this": [0, 65535], "held the man adr this weeke": [0, 65535], "the man adr this weeke he": [0, 65535], "man adr this weeke he hath": [0, 65535], "adr this weeke he hath beene": [0, 65535], "this weeke he hath beene heauie": [0, 65535], "weeke he hath beene heauie sower": [0, 65535], "he hath beene heauie sower sad": [0, 65535], "hath beene heauie sower sad and": [0, 65535], "beene heauie sower sad and much": [0, 65535], "heauie sower sad and much different": [0, 65535], "sower sad and much different from": [0, 65535], "sad and much different from the": [0, 65535], "and much different from the man": [0, 65535], "much different from the man he": [0, 65535], "different from the man he was": [0, 65535], "from the man he was but": [0, 65535], "the man he was but till": [0, 65535], "man he was but till this": [0, 65535], "he was but till this afternoone": [0, 65535], "was but till this afternoone his": [0, 65535], "but till this afternoone his passion": [0, 65535], "till this afternoone his passion ne're": [0, 65535], "this afternoone his passion ne're brake": [0, 65535], "afternoone his passion ne're brake into": [0, 65535], "his passion ne're brake into extremity": [0, 65535], "passion ne're brake into extremity of": [0, 65535], "ne're brake into extremity of rage": [0, 65535], "brake into extremity of rage ab": [0, 65535], "into extremity of rage ab hath": [0, 65535], "extremity of rage ab hath he": [0, 65535], "of rage ab hath he not": [0, 65535], "rage ab hath he not lost": [0, 65535], "ab hath he not lost much": [0, 65535], "hath he not lost much wealth": [0, 65535], "he not lost much wealth by": [0, 65535], "not lost much wealth by wrack": [0, 65535], "lost much wealth by wrack of": [0, 65535], "much wealth by wrack of sea": [0, 65535], "wealth by wrack of sea buried": [0, 65535], "by wrack of sea buried some": [0, 65535], "wrack of sea buried some deere": [0, 65535], "of sea buried some deere friend": [0, 65535], "sea buried some deere friend hath": [0, 65535], "buried some deere friend hath not": [0, 65535], "some deere friend hath not else": [0, 65535], "deere friend hath not else his": [0, 65535], "friend hath not else his eye": [0, 65535], "hath not else his eye stray'd": [0, 65535], "not else his eye stray'd his": [0, 65535], "else his eye stray'd his affection": [0, 65535], "his eye stray'd his affection in": [0, 65535], "eye stray'd his affection in vnlawfull": [0, 65535], "stray'd his affection in vnlawfull loue": [0, 65535], "his affection in vnlawfull loue a": [0, 65535], "affection in vnlawfull loue a sinne": [0, 65535], "in vnlawfull loue a sinne preuailing": [0, 65535], "vnlawfull loue a sinne preuailing much": [0, 65535], "loue a sinne preuailing much in": [0, 65535], "a sinne preuailing much in youthfull": [0, 65535], "sinne preuailing much in youthfull men": [0, 65535], "preuailing much in youthfull men who": [0, 65535], "much in youthfull men who giue": [0, 65535], "in youthfull men who giue their": [0, 65535], "youthfull men who giue their eies": [0, 65535], "men who giue their eies the": [0, 65535], "who giue their eies the liberty": [0, 65535], "giue their eies the liberty of": [0, 65535], "their eies the liberty of gazing": [0, 65535], "eies the liberty of gazing which": [0, 65535], "the liberty of gazing which of": [0, 65535], "liberty of gazing which of these": [0, 65535], "of gazing which of these sorrowes": [0, 65535], "gazing which of these sorrowes is": [0, 65535], "which of these sorrowes is he": [0, 65535], "of these sorrowes is he subiect": [0, 65535], "these sorrowes is he subiect too": [0, 65535], "sorrowes is he subiect too adr": [0, 65535], "is he subiect too adr to": [0, 65535], "he subiect too adr to none": [0, 65535], "subiect too adr to none of": [0, 65535], "too adr to none of these": [0, 65535], "adr to none of these except": [0, 65535], "to none of these except it": [0, 65535], "none of these except it be": [0, 65535], "of these except it be the": [0, 65535], "these except it be the last": [0, 65535], "except it be the last namely": [0, 65535], "it be the last namely some": [0, 65535], "be the last namely some loue": [0, 65535], "the last namely some loue that": [0, 65535], "last namely some loue that drew": [0, 65535], "namely some loue that drew him": [0, 65535], "some loue that drew him oft": [0, 65535], "loue that drew him oft from": [0, 65535], "that drew him oft from home": [0, 65535], "drew him oft from home ab": [0, 65535], "him oft from home ab you": [0, 65535], "oft from home ab you should": [0, 65535], "from home ab you should for": [0, 65535], "home ab you should for that": [0, 65535], "ab you should for that haue": [0, 65535], "you should for that haue reprehended": [0, 65535], "should for that haue reprehended him": [0, 65535], "for that haue reprehended him adr": [0, 65535], "that haue reprehended him adr why": [0, 65535], "haue reprehended him adr why so": [0, 65535], "reprehended him adr why so i": [0, 65535], "him adr why so i did": [0, 65535], "adr why so i did ab": [0, 65535], "why so i did ab i": [0, 65535], "so i did ab i but": [0, 65535], "i did ab i but not": [0, 65535], "did ab i but not rough": [0, 65535], "ab i but not rough enough": [0, 65535], "i but not rough enough adr": [0, 65535], "but not rough enough adr as": [0, 65535], "not rough enough adr as roughly": [0, 65535], "rough enough adr as roughly as": [0, 65535], "enough adr as roughly as my": [0, 65535], "adr as roughly as my modestie": [0, 65535], "as roughly as my modestie would": [0, 65535], "roughly as my modestie would let": [0, 65535], "as my modestie would let me": [0, 65535], "my modestie would let me ab": [0, 65535], "modestie would let me ab haply": [0, 65535], "would let me ab haply in": [0, 65535], "let me ab haply in priuate": [0, 65535], "me ab haply in priuate adr": [0, 65535], "ab haply in priuate adr and": [0, 65535], "haply in priuate adr and in": [0, 65535], "in priuate adr and in assemblies": [0, 65535], "priuate adr and in assemblies too": [0, 65535], "adr and in assemblies too ab": [0, 65535], "and in assemblies too ab i": [0, 65535], "in assemblies too ab i but": [0, 65535], "assemblies too ab i but not": [0, 65535], "too ab i but not enough": [0, 65535], "ab i but not enough adr": [0, 65535], "i but not enough adr it": [0, 65535], "but not enough adr it was": [0, 65535], "not enough adr it was the": [0, 65535], "enough adr it was the copie": [0, 65535], "adr it was the copie of": [0, 65535], "it was the copie of our": [0, 65535], "was the copie of our conference": [0, 65535], "the copie of our conference in": [0, 65535], "copie of our conference in bed": [0, 65535], "of our conference in bed he": [0, 65535], "our conference in bed he slept": [0, 65535], "conference in bed he slept not": [0, 65535], "in bed he slept not for": [0, 65535], "bed he slept not for my": [0, 65535], "he slept not for my vrging": [0, 65535], "slept not for my vrging it": [0, 65535], "not for my vrging it at": [0, 65535], "for my vrging it at boord": [0, 65535], "my vrging it at boord he": [0, 65535], "vrging it at boord he fed": [0, 65535], "it at boord he fed not": [0, 65535], "at boord he fed not for": [0, 65535], "boord he fed not for my": [0, 65535], "he fed not for my vrging": [0, 65535], "fed not for my vrging it": [0, 65535], "not for my vrging it alone": [0, 65535], "for my vrging it alone it": [0, 65535], "my vrging it alone it was": [0, 65535], "vrging it alone it was the": [0, 65535], "it alone it was the subiect": [0, 65535], "alone it was the subiect of": [0, 65535], "it was the subiect of my": [0, 65535], "was the subiect of my theame": [0, 65535], "the subiect of my theame in": [0, 65535], "subiect of my theame in company": [0, 65535], "of my theame in company i": [0, 65535], "my theame in company i often": [0, 65535], "theame in company i often glanced": [0, 65535], "in company i often glanced it": [0, 65535], "company i often glanced it still": [0, 65535], "i often glanced it still did": [0, 65535], "often glanced it still did i": [0, 65535], "glanced it still did i tell": [0, 65535], "it still did i tell him": [0, 65535], "still did i tell him it": [0, 65535], "did i tell him it was": [0, 65535], "i tell him it was vilde": [0, 65535], "tell him it was vilde and": [0, 65535], "him it was vilde and bad": [0, 65535], "it was vilde and bad ab": [0, 65535], "was vilde and bad ab and": [0, 65535], "vilde and bad ab and thereof": [0, 65535], "and bad ab and thereof came": [0, 65535], "bad ab and thereof came it": [0, 65535], "ab and thereof came it that": [0, 65535], "and thereof came it that the": [0, 65535], "thereof came it that the man": [0, 65535], "came it that the man was": [0, 65535], "it that the man was mad": [0, 65535], "that the man was mad the": [0, 65535], "the man was mad the venome": [0, 65535], "man was mad the venome clamors": [0, 65535], "was mad the venome clamors of": [0, 65535], "mad the venome clamors of a": [0, 65535], "the venome clamors of a iealous": [0, 65535], "venome clamors of a iealous woman": [0, 65535], "clamors of a iealous woman poisons": [0, 65535], "of a iealous woman poisons more": [0, 65535], "a iealous woman poisons more deadly": [0, 65535], "iealous woman poisons more deadly then": [0, 65535], "woman poisons more deadly then a": [0, 65535], "poisons more deadly then a mad": [0, 65535], "more deadly then a mad dogges": [0, 65535], "deadly then a mad dogges tooth": [0, 65535], "then a mad dogges tooth it": [0, 65535], "a mad dogges tooth it seemes": [0, 65535], "mad dogges tooth it seemes his": [0, 65535], "dogges tooth it seemes his sleepes": [0, 65535], "tooth it seemes his sleepes were": [0, 65535], "it seemes his sleepes were hindred": [0, 65535], "seemes his sleepes were hindred by": [0, 65535], "his sleepes were hindred by thy": [0, 65535], "sleepes were hindred by thy railing": [0, 65535], "were hindred by thy railing and": [0, 65535], "hindred by thy railing and thereof": [0, 65535], "by thy railing and thereof comes": [0, 65535], "thy railing and thereof comes it": [0, 65535], "railing and thereof comes it that": [0, 65535], "and thereof comes it that his": [0, 65535], "thereof comes it that his head": [0, 65535], "comes it that his head is": [0, 65535], "it that his head is light": [0, 65535], "that his head is light thou": [0, 65535], "his head is light thou saist": [0, 65535], "head is light thou saist his": [0, 65535], "is light thou saist his meate": [0, 65535], "light thou saist his meate was": [0, 65535], "thou saist his meate was sawc'd": [0, 65535], "saist his meate was sawc'd with": [0, 65535], "his meate was sawc'd with thy": [0, 65535], "meate was sawc'd with thy vpbraidings": [0, 65535], "was sawc'd with thy vpbraidings vnquiet": [0, 65535], "sawc'd with thy vpbraidings vnquiet meales": [0, 65535], "with thy vpbraidings vnquiet meales make": [0, 65535], "thy vpbraidings vnquiet meales make ill": [0, 65535], "vpbraidings vnquiet meales make ill digestions": [0, 65535], "vnquiet meales make ill digestions thereof": [0, 65535], "meales make ill digestions thereof the": [0, 65535], "make ill digestions thereof the raging": [0, 65535], "ill digestions thereof the raging fire": [0, 65535], "digestions thereof the raging fire of": [0, 65535], "thereof the raging fire of feauer": [0, 65535], "the raging fire of feauer bred": [0, 65535], "raging fire of feauer bred and": [0, 65535], "fire of feauer bred and what's": [0, 65535], "of feauer bred and what's a": [0, 65535], "feauer bred and what's a feauer": [0, 65535], "bred and what's a feauer but": [0, 65535], "and what's a feauer but a": [0, 65535], "what's a feauer but a fit": [0, 65535], "a feauer but a fit of": [0, 65535], "feauer but a fit of madnesse": [0, 65535], "but a fit of madnesse thou": [0, 65535], "a fit of madnesse thou sayest": [0, 65535], "fit of madnesse thou sayest his": [0, 65535], "of madnesse thou sayest his sports": [0, 65535], "madnesse thou sayest his sports were": [0, 65535], "thou sayest his sports were hindred": [0, 65535], "sayest his sports were hindred by": [0, 65535], "his sports were hindred by thy": [0, 65535], "sports were hindred by thy bralles": [0, 65535], "were hindred by thy bralles sweet": [0, 65535], "hindred by thy bralles sweet recreation": [0, 65535], "by thy bralles sweet recreation barr'd": [0, 65535], "thy bralles sweet recreation barr'd what": [0, 65535], "bralles sweet recreation barr'd what doth": [0, 65535], "sweet recreation barr'd what doth ensue": [0, 65535], "recreation barr'd what doth ensue but": [0, 65535], "barr'd what doth ensue but moodie": [0, 65535], "what doth ensue but moodie and": [0, 65535], "doth ensue but moodie and dull": [0, 65535], "ensue but moodie and dull melancholly": [0, 65535], "but moodie and dull melancholly kinsman": [0, 65535], "moodie and dull melancholly kinsman to": [0, 65535], "and dull melancholly kinsman to grim": [0, 65535], "dull melancholly kinsman to grim and": [0, 65535], "melancholly kinsman to grim and comfortlesse": [0, 65535], "kinsman to grim and comfortlesse dispaire": [0, 65535], "to grim and comfortlesse dispaire and": [0, 65535], "grim and comfortlesse dispaire and at": [0, 65535], "and comfortlesse dispaire and at her": [0, 65535], "comfortlesse dispaire and at her heeles": [0, 65535], "dispaire and at her heeles a": [0, 65535], "and at her heeles a huge": [0, 65535], "at her heeles a huge infectious": [0, 65535], "her heeles a huge infectious troope": [0, 65535], "heeles a huge infectious troope of": [0, 65535], "a huge infectious troope of pale": [0, 65535], "huge infectious troope of pale distemperatures": [0, 65535], "infectious troope of pale distemperatures and": [0, 65535], "troope of pale distemperatures and foes": [0, 65535], "of pale distemperatures and foes to": [0, 65535], "pale distemperatures and foes to life": [0, 65535], "distemperatures and foes to life in": [0, 65535], "and foes to life in food": [0, 65535], "foes to life in food in": [0, 65535], "to life in food in sport": [0, 65535], "life in food in sport and": [0, 65535], "in food in sport and life": [0, 65535], "food in sport and life preseruing": [0, 65535], "in sport and life preseruing rest": [0, 65535], "sport and life preseruing rest to": [0, 65535], "and life preseruing rest to be": [0, 65535], "life preseruing rest to be disturb'd": [0, 65535], "preseruing rest to be disturb'd would": [0, 65535], "rest to be disturb'd would mad": [0, 65535], "to be disturb'd would mad or": [0, 65535], "be disturb'd would mad or man": [0, 65535], "disturb'd would mad or man or": [0, 65535], "would mad or man or beast": [0, 65535], "mad or man or beast the": [0, 65535], "or man or beast the consequence": [0, 65535], "man or beast the consequence is": [0, 65535], "or beast the consequence is then": [0, 65535], "beast the consequence is then thy": [0, 65535], "the consequence is then thy iealous": [0, 65535], "consequence is then thy iealous fits": [0, 65535], "is then thy iealous fits hath": [0, 65535], "then thy iealous fits hath scar'd": [0, 65535], "thy iealous fits hath scar'd thy": [0, 65535], "iealous fits hath scar'd thy husband": [0, 65535], "fits hath scar'd thy husband from": [0, 65535], "hath scar'd thy husband from the": [0, 65535], "scar'd thy husband from the vse": [0, 65535], "thy husband from the vse of": [0, 65535], "husband from the vse of wits": [0, 65535], "from the vse of wits luc": [0, 65535], "the vse of wits luc she": [0, 65535], "vse of wits luc she neuer": [0, 65535], "of wits luc she neuer reprehended": [0, 65535], "wits luc she neuer reprehended him": [0, 65535], "luc she neuer reprehended him but": [0, 65535], "she neuer reprehended him but mildely": [0, 65535], "neuer reprehended him but mildely when": [0, 65535], "reprehended him but mildely when he": [0, 65535], "him but mildely when he demean'd": [0, 65535], "but mildely when he demean'd himselfe": [0, 65535], "mildely when he demean'd himselfe rough": [0, 65535], "when he demean'd himselfe rough rude": [0, 65535], "he demean'd himselfe rough rude and": [0, 65535], "demean'd himselfe rough rude and wildly": [0, 65535], "himselfe rough rude and wildly why": [0, 65535], "rough rude and wildly why beare": [0, 65535], "rude and wildly why beare you": [0, 65535], "and wildly why beare you these": [0, 65535], "wildly why beare you these rebukes": [0, 65535], "why beare you these rebukes and": [0, 65535], "beare you these rebukes and answer": [0, 65535], "you these rebukes and answer not": [0, 65535], "these rebukes and answer not adri": [0, 65535], "rebukes and answer not adri she": [0, 65535], "and answer not adri she did": [0, 65535], "answer not adri she did betray": [0, 65535], "not adri she did betray me": [0, 65535], "adri she did betray me to": [0, 65535], "she did betray me to my": [0, 65535], "did betray me to my owne": [0, 65535], "betray me to my owne reproofe": [0, 65535], "me to my owne reproofe good": [0, 65535], "to my owne reproofe good people": [0, 65535], "my owne reproofe good people enter": [0, 65535], "owne reproofe good people enter and": [0, 65535], "reproofe good people enter and lay": [0, 65535], "good people enter and lay hold": [0, 65535], "people enter and lay hold on": [0, 65535], "enter and lay hold on him": [0, 65535], "and lay hold on him ab": [0, 65535], "lay hold on him ab no": [0, 65535], "hold on him ab no not": [0, 65535], "on him ab no not a": [0, 65535], "him ab no not a creature": [0, 65535], "ab no not a creature enters": [0, 65535], "no not a creature enters in": [0, 65535], "not a creature enters in my": [0, 65535], "a creature enters in my house": [0, 65535], "creature enters in my house ad": [0, 65535], "enters in my house ad then": [0, 65535], "in my house ad then let": [0, 65535], "my house ad then let your": [0, 65535], "house ad then let your seruants": [0, 65535], "ad then let your seruants bring": [0, 65535], "then let your seruants bring my": [0, 65535], "let your seruants bring my husband": [0, 65535], "your seruants bring my husband forth": [0, 65535], "seruants bring my husband forth ab": [0, 65535], "bring my husband forth ab neither": [0, 65535], "my husband forth ab neither he": [0, 65535], "husband forth ab neither he tooke": [0, 65535], "forth ab neither he tooke this": [0, 65535], "ab neither he tooke this place": [0, 65535], "neither he tooke this place for": [0, 65535], "he tooke this place for sanctuary": [0, 65535], "tooke this place for sanctuary and": [0, 65535], "this place for sanctuary and it": [0, 65535], "place for sanctuary and it shall": [0, 65535], "for sanctuary and it shall priuiledge": [0, 65535], "sanctuary and it shall priuiledge him": [0, 65535], "and it shall priuiledge him from": [0, 65535], "it shall priuiledge him from your": [0, 65535], "shall priuiledge him from your hands": [0, 65535], "priuiledge him from your hands till": [0, 65535], "him from your hands till i": [0, 65535], "from your hands till i haue": [0, 65535], "your hands till i haue brought": [0, 65535], "hands till i haue brought him": [0, 65535], "till i haue brought him to": [0, 65535], "i haue brought him to his": [0, 65535], "haue brought him to his wits": [0, 65535], "brought him to his wits againe": [0, 65535], "him to his wits againe or": [0, 65535], "to his wits againe or loose": [0, 65535], "his wits againe or loose my": [0, 65535], "wits againe or loose my labour": [0, 65535], "againe or loose my labour in": [0, 65535], "or loose my labour in assaying": [0, 65535], "loose my labour in assaying it": [0, 65535], "my labour in assaying it adr": [0, 65535], "labour in assaying it adr i": [0, 65535], "in assaying it adr i will": [0, 65535], "assaying it adr i will attend": [0, 65535], "it adr i will attend my": [0, 65535], "adr i will attend my husband": [0, 65535], "i will attend my husband be": [0, 65535], "will attend my husband be his": [0, 65535], "attend my husband be his nurse": [0, 65535], "my husband be his nurse diet": [0, 65535], "husband be his nurse diet his": [0, 65535], "be his nurse diet his sicknesse": [0, 65535], "his nurse diet his sicknesse for": [0, 65535], "nurse diet his sicknesse for it": [0, 65535], "diet his sicknesse for it is": [0, 65535], "his sicknesse for it is my": [0, 65535], "sicknesse for it is my office": [0, 65535], "for it is my office and": [0, 65535], "it is my office and will": [0, 65535], "is my office and will haue": [0, 65535], "my office and will haue no": [0, 65535], "office and will haue no atturney": [0, 65535], "and will haue no atturney but": [0, 65535], "will haue no atturney but my": [0, 65535], "haue no atturney but my selfe": [0, 65535], "no atturney but my selfe and": [0, 65535], "atturney but my selfe and therefore": [0, 65535], "but my selfe and therefore let": [0, 65535], "my selfe and therefore let me": [0, 65535], "selfe and therefore let me haue": [0, 65535], "and therefore let me haue him": [0, 65535], "therefore let me haue him home": [0, 65535], "let me haue him home with": [0, 65535], "me haue him home with me": [0, 65535], "haue him home with me ab": [0, 65535], "him home with me ab be": [0, 65535], "home with me ab be patient": [0, 65535], "with me ab be patient for": [0, 65535], "me ab be patient for i": [0, 65535], "ab be patient for i will": [0, 65535], "be patient for i will not": [0, 65535], "patient for i will not let": [0, 65535], "for i will not let him": [0, 65535], "i will not let him stirre": [0, 65535], "will not let him stirre till": [0, 65535], "not let him stirre till i": [0, 65535], "let him stirre till i haue": [0, 65535], "him stirre till i haue vs'd": [0, 65535], "stirre till i haue vs'd the": [0, 65535], "till i haue vs'd the approoued": [0, 65535], "i haue vs'd the approoued meanes": [0, 65535], "haue vs'd the approoued meanes i": [0, 65535], "vs'd the approoued meanes i haue": [0, 65535], "the approoued meanes i haue with": [0, 65535], "approoued meanes i haue with wholsome": [0, 65535], "meanes i haue with wholsome sirrups": [0, 65535], "i haue with wholsome sirrups drugges": [0, 65535], "haue with wholsome sirrups drugges and": [0, 65535], "with wholsome sirrups drugges and holy": [0, 65535], "wholsome sirrups drugges and holy prayers": [0, 65535], "sirrups drugges and holy prayers to": [0, 65535], "drugges and holy prayers to make": [0, 65535], "and holy prayers to make of": [0, 65535], "holy prayers to make of him": [0, 65535], "prayers to make of him a": [0, 65535], "to make of him a formall": [0, 65535], "make of him a formall man": [0, 65535], "of him a formall man againe": [0, 65535], "him a formall man againe it": [0, 65535], "a formall man againe it is": [0, 65535], "formall man againe it is a": [0, 65535], "man againe it is a branch": [0, 65535], "againe it is a branch and": [0, 65535], "it is a branch and parcell": [0, 65535], "is a branch and parcell of": [0, 65535], "a branch and parcell of mine": [0, 65535], "branch and parcell of mine oath": [0, 65535], "and parcell of mine oath a": [0, 65535], "parcell of mine oath a charitable": [0, 65535], "of mine oath a charitable dutie": [0, 65535], "mine oath a charitable dutie of": [0, 65535], "oath a charitable dutie of my": [0, 65535], "a charitable dutie of my order": [0, 65535], "charitable dutie of my order therefore": [0, 65535], "dutie of my order therefore depart": [0, 65535], "of my order therefore depart and": [0, 65535], "my order therefore depart and leaue": [0, 65535], "order therefore depart and leaue him": [0, 65535], "therefore depart and leaue him heere": [0, 65535], "depart and leaue him heere with": [0, 65535], "and leaue him heere with me": [0, 65535], "leaue him heere with me adr": [0, 65535], "him heere with me adr i": [0, 65535], "heere with me adr i will": [0, 65535], "with me adr i will not": [0, 65535], "me adr i will not hence": [0, 65535], "adr i will not hence and": [0, 65535], "i will not hence and leaue": [0, 65535], "will not hence and leaue my": [0, 65535], "not hence and leaue my husband": [0, 65535], "hence and leaue my husband heere": [0, 65535], "and leaue my husband heere and": [0, 65535], "leaue my husband heere and ill": [0, 65535], "my husband heere and ill it": [0, 65535], "husband heere and ill it doth": [0, 65535], "heere and ill it doth beseeme": [0, 65535], "and ill it doth beseeme your": [0, 65535], "ill it doth beseeme your holinesse": [0, 65535], "it doth beseeme your holinesse to": [0, 65535], "doth beseeme your holinesse to separate": [0, 65535], "beseeme your holinesse to separate the": [0, 65535], "your holinesse to separate the husband": [0, 65535], "holinesse to separate the husband and": [0, 65535], "to separate the husband and the": [0, 65535], "separate the husband and the wife": [0, 65535], "the husband and the wife ab": [0, 65535], "husband and the wife ab be": [0, 65535], "and the wife ab be quiet": [0, 65535], "the wife ab be quiet and": [0, 65535], "wife ab be quiet and depart": [0, 65535], "ab be quiet and depart thou": [0, 65535], "be quiet and depart thou shalt": [0, 65535], "quiet and depart thou shalt not": [0, 65535], "and depart thou shalt not haue": [0, 65535], "depart thou shalt not haue him": [0, 65535], "thou shalt not haue him luc": [0, 65535], "shalt not haue him luc complaine": [0, 65535], "not haue him luc complaine vnto": [0, 65535], "haue him luc complaine vnto the": [0, 65535], "him luc complaine vnto the duke": [0, 65535], "luc complaine vnto the duke of": [0, 65535], "complaine vnto the duke of this": [0, 65535], "vnto the duke of this indignity": [0, 65535], "the duke of this indignity adr": [0, 65535], "duke of this indignity adr come": [0, 65535], "of this indignity adr come go": [0, 65535], "this indignity adr come go i": [0, 65535], "indignity adr come go i will": [0, 65535], "adr come go i will fall": [0, 65535], "come go i will fall prostrate": [0, 65535], "go i will fall prostrate at": [0, 65535], "i will fall prostrate at his": [0, 65535], "will fall prostrate at his feete": [0, 65535], "fall prostrate at his feete and": [0, 65535], "prostrate at his feete and neuer": [0, 65535], "at his feete and neuer rise": [0, 65535], "his feete and neuer rise vntill": [0, 65535], "feete and neuer rise vntill my": [0, 65535], "and neuer rise vntill my teares": [0, 65535], "neuer rise vntill my teares and": [0, 65535], "rise vntill my teares and prayers": [0, 65535], "vntill my teares and prayers haue": [0, 65535], "my teares and prayers haue won": [0, 65535], "teares and prayers haue won his": [0, 65535], "and prayers haue won his grace": [0, 65535], "prayers haue won his grace to": [0, 65535], "haue won his grace to come": [0, 65535], "won his grace to come in": [0, 65535], "his grace to come in person": [0, 65535], "grace to come in person hither": [0, 65535], "to come in person hither and": [0, 65535], "come in person hither and take": [0, 65535], "in person hither and take perforce": [0, 65535], "person hither and take perforce my": [0, 65535], "hither and take perforce my husband": [0, 65535], "and take perforce my husband from": [0, 65535], "take perforce my husband from the": [0, 65535], "perforce my husband from the abbesse": [0, 65535], "my husband from the abbesse mar": [0, 65535], "husband from the abbesse mar by": [0, 65535], "from the abbesse mar by this": [0, 65535], "the abbesse mar by this i": [0, 65535], "abbesse mar by this i thinke": [0, 65535], "mar by this i thinke the": [0, 65535], "by this i thinke the diall": [0, 65535], "this i thinke the diall points": [0, 65535], "i thinke the diall points at": [0, 65535], "thinke the diall points at fiue": [0, 65535], "the diall points at fiue anon": [0, 65535], "diall points at fiue anon i'me": [0, 65535], "points at fiue anon i'me sure": [0, 65535], "at fiue anon i'me sure the": [0, 65535], "fiue anon i'me sure the duke": [0, 65535], "anon i'me sure the duke himselfe": [0, 65535], "i'me sure the duke himselfe in": [0, 65535], "sure the duke himselfe in person": [0, 65535], "the duke himselfe in person comes": [0, 65535], "duke himselfe in person comes this": [0, 65535], "himselfe in person comes this way": [0, 65535], "in person comes this way to": [0, 65535], "person comes this way to the": [0, 65535], "comes this way to the melancholly": [0, 65535], "this way to the melancholly vale": [0, 65535], "way to the melancholly vale the": [0, 65535], "to the melancholly vale the place": [0, 65535], "the melancholly vale the place of": [0, 65535], "melancholly vale the place of depth": [0, 65535], "vale the place of depth and": [0, 65535], "the place of depth and sorrie": [0, 65535], "place of depth and sorrie execution": [0, 65535], "of depth and sorrie execution behinde": [0, 65535], "depth and sorrie execution behinde the": [0, 65535], "and sorrie execution behinde the ditches": [0, 65535], "sorrie execution behinde the ditches of": [0, 65535], "execution behinde the ditches of the": [0, 65535], "behinde the ditches of the abbey": [0, 65535], "the ditches of the abbey heere": [0, 65535], "ditches of the abbey heere gold": [0, 65535], "of the abbey heere gold vpon": [0, 65535], "the abbey heere gold vpon what": [0, 65535], "abbey heere gold vpon what cause": [0, 65535], "heere gold vpon what cause mar": [0, 65535], "gold vpon what cause mar to": [0, 65535], "vpon what cause mar to see": [0, 65535], "what cause mar to see a": [0, 65535], "cause mar to see a reuerent": [0, 65535], "mar to see a reuerent siracusian": [0, 65535], "to see a reuerent siracusian merchant": [0, 65535], "see a reuerent siracusian merchant who": [0, 65535], "a reuerent siracusian merchant who put": [0, 65535], "reuerent siracusian merchant who put vnluckily": [0, 65535], "siracusian merchant who put vnluckily into": [0, 65535], "merchant who put vnluckily into this": [0, 65535], "who put vnluckily into this bay": [0, 65535], "put vnluckily into this bay against": [0, 65535], "vnluckily into this bay against the": [0, 65535], "into this bay against the lawes": [0, 65535], "this bay against the lawes and": [0, 65535], "bay against the lawes and statutes": [0, 65535], "against the lawes and statutes of": [0, 65535], "the lawes and statutes of this": [0, 65535], "lawes and statutes of this towne": [0, 65535], "and statutes of this towne beheaded": [0, 65535], "statutes of this towne beheaded publikely": [0, 65535], "of this towne beheaded publikely for": [0, 65535], "this towne beheaded publikely for his": [0, 65535], "towne beheaded publikely for his offence": [0, 65535], "beheaded publikely for his offence gold": [0, 65535], "publikely for his offence gold see": [0, 65535], "for his offence gold see where": [0, 65535], "his offence gold see where they": [0, 65535], "offence gold see where they come": [0, 65535], "gold see where they come we": [0, 65535], "see where they come we wil": [0, 65535], "where they come we wil behold": [0, 65535], "they come we wil behold his": [0, 65535], "come we wil behold his death": [0, 65535], "we wil behold his death luc": [0, 65535], "wil behold his death luc kneele": [0, 65535], "behold his death luc kneele to": [0, 65535], "his death luc kneele to the": [0, 65535], "death luc kneele to the duke": [0, 65535], "luc kneele to the duke before": [0, 65535], "kneele to the duke before he": [0, 65535], "to the duke before he passe": [0, 65535], "the duke before he passe the": [0, 65535], "duke before he passe the abbey": [0, 65535], "before he passe the abbey enter": [0, 65535], "he passe the abbey enter the": [0, 65535], "passe the abbey enter the duke": [0, 65535], "the abbey enter the duke of": [0, 65535], "abbey enter the duke of ephesus": [0, 65535], "enter the duke of ephesus and": [0, 65535], "the duke of ephesus and the": [0, 65535], "duke of ephesus and the merchant": [0, 65535], "of ephesus and the merchant of": [0, 65535], "ephesus and the merchant of siracuse": [0, 65535], "and the merchant of siracuse bare": [0, 65535], "the merchant of siracuse bare head": [0, 65535], "merchant of siracuse bare head with": [0, 65535], "of siracuse bare head with the": [0, 65535], "siracuse bare head with the headsman": [0, 65535], "bare head with the headsman other": [0, 65535], "head with the headsman other officers": [0, 65535], "with the headsman other officers duke": [0, 65535], "the headsman other officers duke yet": [0, 65535], "headsman other officers duke yet once": [0, 65535], "other officers duke yet once againe": [0, 65535], "officers duke yet once againe proclaime": [0, 65535], "duke yet once againe proclaime it": [0, 65535], "yet once againe proclaime it publikely": [0, 65535], "once againe proclaime it publikely if": [0, 65535], "againe proclaime it publikely if any": [0, 65535], "proclaime it publikely if any friend": [0, 65535], "it publikely if any friend will": [0, 65535], "publikely if any friend will pay": [0, 65535], "if any friend will pay the": [0, 65535], "any friend will pay the summe": [0, 65535], "friend will pay the summe for": [0, 65535], "will pay the summe for him": [0, 65535], "pay the summe for him he": [0, 65535], "the summe for him he shall": [0, 65535], "summe for him he shall not": [0, 65535], "for him he shall not die": [0, 65535], "him he shall not die so": [0, 65535], "he shall not die so much": [0, 65535], "shall not die so much we": [0, 65535], "not die so much we tender": [0, 65535], "die so much we tender him": [0, 65535], "so much we tender him adr": [0, 65535], "much we tender him adr iustice": [0, 65535], "we tender him adr iustice most": [0, 65535], "tender him adr iustice most sacred": [0, 65535], "him adr iustice most sacred duke": [0, 65535], "adr iustice most sacred duke against": [0, 65535], "iustice most sacred duke against the": [0, 65535], "most sacred duke against the abbesse": [0, 65535], "sacred duke against the abbesse duke": [0, 65535], "duke against the abbesse duke she": [0, 65535], "against the abbesse duke she is": [0, 65535], "the abbesse duke she is a": [0, 65535], "abbesse duke she is a vertuous": [0, 65535], "duke she is a vertuous and": [0, 65535], "she is a vertuous and a": [0, 65535], "is a vertuous and a reuerend": [0, 65535], "a vertuous and a reuerend lady": [0, 65535], "vertuous and a reuerend lady it": [0, 65535], "and a reuerend lady it cannot": [0, 65535], "a reuerend lady it cannot be": [0, 65535], "reuerend lady it cannot be that": [0, 65535], "lady it cannot be that she": [0, 65535], "it cannot be that she hath": [0, 65535], "cannot be that she hath done": [0, 65535], "be that she hath done thee": [0, 65535], "that she hath done thee wrong": [0, 65535], "she hath done thee wrong adr": [0, 65535], "hath done thee wrong adr may": [0, 65535], "done thee wrong adr may it": [0, 65535], "thee wrong adr may it please": [0, 65535], "wrong adr may it please your": [0, 65535], "adr may it please your grace": [0, 65535], "may it please your grace antipholus": [0, 65535], "it please your grace antipholus my": [0, 65535], "please your grace antipholus my husba": [0, 65535], "your grace antipholus my husba n": [0, 65535], "grace antipholus my husba n d": [0, 65535], "antipholus my husba n d who": [0, 65535], "my husba n d who i": [0, 65535], "husba n d who i made": [0, 65535], "n d who i made lord": [0, 65535], "d who i made lord of": [0, 65535], "who i made lord of me": [0, 65535], "i made lord of me and": [0, 65535], "made lord of me and all": [0, 65535], "lord of me and all i": [0, 65535], "of me and all i had": [0, 65535], "me and all i had at": [0, 65535], "and all i had at your": [0, 65535], "all i had at your important": [0, 65535], "i had at your important letters": [0, 65535], "had at your important letters this": [0, 65535], "at your important letters this ill": [0, 65535], "your important letters this ill day": [0, 65535], "important letters this ill day a": [0, 65535], "letters this ill day a most": [0, 65535], "this ill day a most outragious": [0, 65535], "ill day a most outragious fit": [0, 65535], "day a most outragious fit of": [0, 65535], "a most outragious fit of madnesse": [0, 65535], "most outragious fit of madnesse tooke": [0, 65535], "outragious fit of madnesse tooke him": [0, 65535], "fit of madnesse tooke him that": [0, 65535], "of madnesse tooke him that desp'rately": [0, 65535], "madnesse tooke him that desp'rately he": [0, 65535], "tooke him that desp'rately he hurried": [0, 65535], "him that desp'rately he hurried through": [0, 65535], "that desp'rately he hurried through the": [0, 65535], "desp'rately he hurried through the streete": [0, 65535], "he hurried through the streete with": [0, 65535], "hurried through the streete with him": [0, 65535], "through the streete with him his": [0, 65535], "the streete with him his bondman": [0, 65535], "streete with him his bondman all": [0, 65535], "with him his bondman all as": [0, 65535], "him his bondman all as mad": [0, 65535], "his bondman all as mad as": [0, 65535], "bondman all as mad as he": [0, 65535], "all as mad as he doing": [0, 65535], "as mad as he doing displeasure": [0, 65535], "mad as he doing displeasure to": [0, 65535], "as he doing displeasure to the": [0, 65535], "he doing displeasure to the citizens": [0, 65535], "doing displeasure to the citizens by": [0, 65535], "displeasure to the citizens by rushing": [0, 65535], "to the citizens by rushing in": [0, 65535], "the citizens by rushing in their": [0, 65535], "citizens by rushing in their houses": [0, 65535], "by rushing in their houses bearing": [0, 65535], "rushing in their houses bearing thence": [0, 65535], "in their houses bearing thence rings": [0, 65535], "their houses bearing thence rings iewels": [0, 65535], "houses bearing thence rings iewels any": [0, 65535], "bearing thence rings iewels any thing": [0, 65535], "thence rings iewels any thing his": [0, 65535], "rings iewels any thing his rage": [0, 65535], "iewels any thing his rage did": [0, 65535], "any thing his rage did like": [0, 65535], "thing his rage did like once": [0, 65535], "his rage did like once did": [0, 65535], "rage did like once did i": [0, 65535], "did like once did i get": [0, 65535], "like once did i get him": [0, 65535], "once did i get him bound": [0, 65535], "did i get him bound and": [0, 65535], "i get him bound and sent": [0, 65535], "get him bound and sent him": [0, 65535], "him bound and sent him home": [0, 65535], "bound and sent him home whil'st": [0, 65535], "and sent him home whil'st to": [0, 65535], "sent him home whil'st to take": [0, 65535], "him home whil'st to take order": [0, 65535], "home whil'st to take order for": [0, 65535], "whil'st to take order for the": [0, 65535], "to take order for the wrongs": [0, 65535], "take order for the wrongs i": [0, 65535], "order for the wrongs i went": [0, 65535], "for the wrongs i went that": [0, 65535], "the wrongs i went that heere": [0, 65535], "wrongs i went that heere and": [0, 65535], "i went that heere and there": [0, 65535], "went that heere and there his": [0, 65535], "that heere and there his furie": [0, 65535], "heere and there his furie had": [0, 65535], "and there his furie had committed": [0, 65535], "there his furie had committed anon": [0, 65535], "his furie had committed anon i": [0, 65535], "furie had committed anon i wot": [0, 65535], "had committed anon i wot not": [0, 65535], "committed anon i wot not by": [0, 65535], "anon i wot not by what": [0, 65535], "i wot not by what strong": [0, 65535], "wot not by what strong escape": [0, 65535], "not by what strong escape he": [0, 65535], "by what strong escape he broke": [0, 65535], "what strong escape he broke from": [0, 65535], "strong escape he broke from those": [0, 65535], "escape he broke from those that": [0, 65535], "he broke from those that had": [0, 65535], "broke from those that had the": [0, 65535], "from those that had the guard": [0, 65535], "those that had the guard of": [0, 65535], "that had the guard of him": [0, 65535], "had the guard of him and": [0, 65535], "the guard of him and with": [0, 65535], "guard of him and with his": [0, 65535], "of him and with his mad": [0, 65535], "him and with his mad attendant": [0, 65535], "and with his mad attendant and": [0, 65535], "with his mad attendant and himselfe": [0, 65535], "his mad attendant and himselfe each": [0, 65535], "mad attendant and himselfe each one": [0, 65535], "attendant and himselfe each one with": [0, 65535], "and himselfe each one with irefull": [0, 65535], "himselfe each one with irefull passion": [0, 65535], "each one with irefull passion with": [0, 65535], "one with irefull passion with drawne": [0, 65535], "with irefull passion with drawne swords": [0, 65535], "irefull passion with drawne swords met": [0, 65535], "passion with drawne swords met vs": [0, 65535], "with drawne swords met vs againe": [0, 65535], "drawne swords met vs againe and": [0, 65535], "swords met vs againe and madly": [0, 65535], "met vs againe and madly bent": [0, 65535], "vs againe and madly bent on": [0, 65535], "againe and madly bent on vs": [0, 65535], "and madly bent on vs chac'd": [0, 65535], "madly bent on vs chac'd vs": [0, 65535], "bent on vs chac'd vs away": [0, 65535], "on vs chac'd vs away till": [0, 65535], "vs chac'd vs away till raising": [0, 65535], "chac'd vs away till raising of": [0, 65535], "vs away till raising of more": [0, 65535], "away till raising of more aide": [0, 65535], "till raising of more aide we": [0, 65535], "raising of more aide we came": [0, 65535], "of more aide we came againe": [0, 65535], "more aide we came againe to": [0, 65535], "aide we came againe to binde": [0, 65535], "we came againe to binde them": [0, 65535], "came againe to binde them then": [0, 65535], "againe to binde them then they": [0, 65535], "to binde them then they fled": [0, 65535], "binde them then they fled into": [0, 65535], "them then they fled into this": [0, 65535], "then they fled into this abbey": [0, 65535], "they fled into this abbey whether": [0, 65535], "fled into this abbey whether we": [0, 65535], "into this abbey whether we pursu'd": [0, 65535], "this abbey whether we pursu'd them": [0, 65535], "abbey whether we pursu'd them and": [0, 65535], "whether we pursu'd them and heere": [0, 65535], "we pursu'd them and heere the": [0, 65535], "pursu'd them and heere the abbesse": [0, 65535], "them and heere the abbesse shuts": [0, 65535], "and heere the abbesse shuts the": [0, 65535], "heere the abbesse shuts the gates": [0, 65535], "the abbesse shuts the gates on": [0, 65535], "abbesse shuts the gates on vs": [0, 65535], "shuts the gates on vs and": [0, 65535], "the gates on vs and will": [0, 65535], "gates on vs and will not": [0, 65535], "on vs and will not suffer": [0, 65535], "vs and will not suffer vs": [0, 65535], "and will not suffer vs to": [0, 65535], "will not suffer vs to fetch": [0, 65535], "not suffer vs to fetch him": [0, 65535], "suffer vs to fetch him out": [0, 65535], "vs to fetch him out nor": [0, 65535], "to fetch him out nor send": [0, 65535], "fetch him out nor send him": [0, 65535], "him out nor send him forth": [0, 65535], "out nor send him forth that": [0, 65535], "nor send him forth that we": [0, 65535], "send him forth that we may": [0, 65535], "him forth that we may beare": [0, 65535], "forth that we may beare him": [0, 65535], "that we may beare him hence": [0, 65535], "we may beare him hence therefore": [0, 65535], "may beare him hence therefore most": [0, 65535], "beare him hence therefore most gracious": [0, 65535], "him hence therefore most gracious duke": [0, 65535], "hence therefore most gracious duke with": [0, 65535], "therefore most gracious duke with thy": [0, 65535], "most gracious duke with thy command": [0, 65535], "gracious duke with thy command let": [0, 65535], "duke with thy command let him": [0, 65535], "with thy command let him be": [0, 65535], "thy command let him be brought": [0, 65535], "command let him be brought forth": [0, 65535], "let him be brought forth and": [0, 65535], "him be brought forth and borne": [0, 65535], "be brought forth and borne hence": [0, 65535], "brought forth and borne hence for": [0, 65535], "forth and borne hence for helpe": [0, 65535], "and borne hence for helpe duke": [0, 65535], "borne hence for helpe duke long": [0, 65535], "hence for helpe duke long since": [0, 65535], "for helpe duke long since thy": [0, 65535], "helpe duke long since thy husband": [0, 65535], "duke long since thy husband seru'd": [0, 65535], "long since thy husband seru'd me": [0, 65535], "since thy husband seru'd me in": [0, 65535], "thy husband seru'd me in my": [0, 65535], "husband seru'd me in my wars": [0, 65535], "seru'd me in my wars and": [0, 65535], "me in my wars and i": [0, 65535], "in my wars and i to": [0, 65535], "my wars and i to thee": [0, 65535], "wars and i to thee ingag'd": [0, 65535], "and i to thee ingag'd a": [0, 65535], "i to thee ingag'd a princes": [0, 65535], "to thee ingag'd a princes word": [0, 65535], "thee ingag'd a princes word when": [0, 65535], "ingag'd a princes word when thou": [0, 65535], "a princes word when thou didst": [0, 65535], "princes word when thou didst make": [0, 65535], "word when thou didst make him": [0, 65535], "when thou didst make him master": [0, 65535], "thou didst make him master of": [0, 65535], "didst make him master of thy": [0, 65535], "make him master of thy bed": [0, 65535], "him master of thy bed to": [0, 65535], "master of thy bed to do": [0, 65535], "of thy bed to do him": [0, 65535], "thy bed to do him all": [0, 65535], "bed to do him all the": [0, 65535], "to do him all the grace": [0, 65535], "do him all the grace and": [0, 65535], "him all the grace and good": [0, 65535], "all the grace and good i": [0, 65535], "the grace and good i could": [0, 65535], "grace and good i could go": [0, 65535], "and good i could go some": [0, 65535], "good i could go some of": [0, 65535], "i could go some of you": [0, 65535], "could go some of you knocke": [0, 65535], "go some of you knocke at": [0, 65535], "some of you knocke at the": [0, 65535], "of you knocke at the abbey": [0, 65535], "you knocke at the abbey gate": [0, 65535], "knocke at the abbey gate and": [0, 65535], "at the abbey gate and bid": [0, 65535], "the abbey gate and bid the": [0, 65535], "abbey gate and bid the lady": [0, 65535], "gate and bid the lady abbesse": [0, 65535], "and bid the lady abbesse come": [0, 65535], "bid the lady abbesse come to": [0, 65535], "the lady abbesse come to me": [0, 65535], "lady abbesse come to me i": [0, 65535], "abbesse come to me i will": [0, 65535], "come to me i will determine": [0, 65535], "to me i will determine this": [0, 65535], "me i will determine this before": [0, 65535], "i will determine this before i": [0, 65535], "will determine this before i stirre": [0, 65535], "determine this before i stirre enter": [0, 65535], "this before i stirre enter a": [0, 65535], "before i stirre enter a messenger": [0, 65535], "i stirre enter a messenger oh": [0, 65535], "stirre enter a messenger oh mistris": [0, 65535], "enter a messenger oh mistris mistris": [0, 65535], "a messenger oh mistris mistris shift": [0, 65535], "messenger oh mistris mistris shift and": [0, 65535], "oh mistris mistris shift and saue": [0, 65535], "mistris mistris shift and saue your": [0, 65535], "mistris shift and saue your selfe": [0, 65535], "shift and saue your selfe my": [0, 65535], "and saue your selfe my master": [0, 65535], "saue your selfe my master and": [0, 65535], "your selfe my master and his": [0, 65535], "selfe my master and his man": [0, 65535], "my master and his man are": [0, 65535], "master and his man are both": [0, 65535], "and his man are both broke": [0, 65535], "his man are both broke loose": [0, 65535], "man are both broke loose beaten": [0, 65535], "are both broke loose beaten the": [0, 65535], "both broke loose beaten the maids": [0, 65535], "broke loose beaten the maids a": [0, 65535], "loose beaten the maids a row": [0, 65535], "beaten the maids a row and": [0, 65535], "the maids a row and bound": [0, 65535], "maids a row and bound the": [0, 65535], "a row and bound the doctor": [0, 65535], "row and bound the doctor whose": [0, 65535], "and bound the doctor whose beard": [0, 65535], "bound the doctor whose beard they": [0, 65535], "the doctor whose beard they haue": [0, 65535], "doctor whose beard they haue sindg'd": [0, 65535], "whose beard they haue sindg'd off": [0, 65535], "beard they haue sindg'd off with": [0, 65535], "they haue sindg'd off with brands": [0, 65535], "haue sindg'd off with brands of": [0, 65535], "sindg'd off with brands of fire": [0, 65535], "off with brands of fire and": [0, 65535], "with brands of fire and euer": [0, 65535], "brands of fire and euer as": [0, 65535], "of fire and euer as it": [0, 65535], "fire and euer as it blaz'd": [0, 65535], "and euer as it blaz'd they": [0, 65535], "euer as it blaz'd they threw": [0, 65535], "as it blaz'd they threw on": [0, 65535], "it blaz'd they threw on him": [0, 65535], "blaz'd they threw on him great": [0, 65535], "they threw on him great pailes": [0, 65535], "threw on him great pailes of": [0, 65535], "on him great pailes of puddled": [0, 65535], "him great pailes of puddled myre": [0, 65535], "great pailes of puddled myre to": [0, 65535], "pailes of puddled myre to quench": [0, 65535], "of puddled myre to quench the": [0, 65535], "puddled myre to quench the haire": [0, 65535], "myre to quench the haire my": [0, 65535], "to quench the haire my mr": [0, 65535], "quench the haire my mr preaches": [0, 65535], "the haire my mr preaches patience": [0, 65535], "haire my mr preaches patience to": [0, 65535], "my mr preaches patience to him": [0, 65535], "mr preaches patience to him and": [0, 65535], "preaches patience to him and the": [0, 65535], "patience to him and the while": [0, 65535], "to him and the while his": [0, 65535], "him and the while his man": [0, 65535], "and the while his man with": [0, 65535], "the while his man with cizers": [0, 65535], "while his man with cizers nickes": [0, 65535], "his man with cizers nickes him": [0, 65535], "man with cizers nickes him like": [0, 65535], "with cizers nickes him like a": [0, 65535], "cizers nickes him like a foole": [0, 65535], "nickes him like a foole and": [0, 65535], "him like a foole and sure": [0, 65535], "like a foole and sure vnlesse": [0, 65535], "a foole and sure vnlesse you": [0, 65535], "foole and sure vnlesse you send": [0, 65535], "and sure vnlesse you send some": [0, 65535], "sure vnlesse you send some present": [0, 65535], "vnlesse you send some present helpe": [0, 65535], "you send some present helpe betweene": [0, 65535], "send some present helpe betweene them": [0, 65535], "some present helpe betweene them they": [0, 65535], "present helpe betweene them they will": [0, 65535], "helpe betweene them they will kill": [0, 65535], "betweene them they will kill the": [0, 65535], "them they will kill the coniurer": [0, 65535], "they will kill the coniurer adr": [0, 65535], "will kill the coniurer adr peace": [0, 65535], "kill the coniurer adr peace foole": [0, 65535], "the coniurer adr peace foole thy": [0, 65535], "coniurer adr peace foole thy master": [0, 65535], "adr peace foole thy master and": [0, 65535], "peace foole thy master and his": [0, 65535], "foole thy master and his man": [0, 65535], "thy master and his man are": [0, 65535], "master and his man are here": [0, 65535], "and his man are here and": [0, 65535], "his man are here and that": [0, 65535], "man are here and that is": [0, 65535], "are here and that is false": [0, 65535], "here and that is false thou": [0, 65535], "and that is false thou dost": [0, 65535], "that is false thou dost report": [0, 65535], "is false thou dost report to": [0, 65535], "false thou dost report to vs": [0, 65535], "thou dost report to vs mess": [0, 65535], "dost report to vs mess mistris": [0, 65535], "report to vs mess mistris vpon": [0, 65535], "to vs mess mistris vpon my": [0, 65535], "vs mess mistris vpon my life": [0, 65535], "mess mistris vpon my life i": [0, 65535], "mistris vpon my life i tel": [0, 65535], "vpon my life i tel you": [0, 65535], "my life i tel you true": [0, 65535], "life i tel you true i": [0, 65535], "i tel you true i haue": [0, 65535], "tel you true i haue not": [0, 65535], "you true i haue not breath'd": [0, 65535], "true i haue not breath'd almost": [0, 65535], "i haue not breath'd almost since": [0, 65535], "haue not breath'd almost since i": [0, 65535], "not breath'd almost since i did": [0, 65535], "breath'd almost since i did see": [0, 65535], "almost since i did see it": [0, 65535], "since i did see it he": [0, 65535], "i did see it he cries": [0, 65535], "did see it he cries for": [0, 65535], "see it he cries for you": [0, 65535], "it he cries for you and": [0, 65535], "he cries for you and vowes": [0, 65535], "cries for you and vowes if": [0, 65535], "for you and vowes if he": [0, 65535], "you and vowes if he can": [0, 65535], "and vowes if he can take": [0, 65535], "vowes if he can take you": [0, 65535], "if he can take you to": [0, 65535], "he can take you to scorch": [0, 65535], "can take you to scorch your": [0, 65535], "take you to scorch your face": [0, 65535], "you to scorch your face and": [0, 65535], "to scorch your face and to": [0, 65535], "scorch your face and to disfigure": [0, 65535], "your face and to disfigure you": [0, 65535], "face and to disfigure you cry": [0, 65535], "and to disfigure you cry within": [0, 65535], "to disfigure you cry within harke": [0, 65535], "disfigure you cry within harke harke": [0, 65535], "you cry within harke harke i": [0, 65535], "cry within harke harke i heare": [0, 65535], "within harke harke i heare him": [0, 65535], "harke harke i heare him mistris": [0, 65535], "harke i heare him mistris flie": [0, 65535], "i heare him mistris flie be": [0, 65535], "heare him mistris flie be gone": [0, 65535], "him mistris flie be gone duke": [0, 65535], "mistris flie be gone duke come": [0, 65535], "flie be gone duke come stand": [0, 65535], "be gone duke come stand by": [0, 65535], "gone duke come stand by me": [0, 65535], "duke come stand by me feare": [0, 65535], "come stand by me feare nothing": [0, 65535], "stand by me feare nothing guard": [0, 65535], "by me feare nothing guard with": [0, 65535], "me feare nothing guard with halberds": [0, 65535], "feare nothing guard with halberds adr": [0, 65535], "nothing guard with halberds adr ay": [0, 65535], "guard with halberds adr ay me": [0, 65535], "with halberds adr ay me it": [0, 65535], "halberds adr ay me it is": [0, 65535], "adr ay me it is my": [0, 65535], "ay me it is my husband": [0, 65535], "me it is my husband witnesse": [0, 65535], "it is my husband witnesse you": [0, 65535], "is my husband witnesse you that": [0, 65535], "my husband witnesse you that he": [0, 65535], "husband witnesse you that he is": [0, 65535], "witnesse you that he is borne": [0, 65535], "you that he is borne about": [0, 65535], "that he is borne about inuisible": [0, 65535], "he is borne about inuisible euen": [0, 65535], "is borne about inuisible euen now": [0, 65535], "borne about inuisible euen now we": [0, 65535], "about inuisible euen now we hous'd": [0, 65535], "inuisible euen now we hous'd him": [0, 65535], "euen now we hous'd him in": [0, 65535], "now we hous'd him in the": [0, 65535], "we hous'd him in the abbey": [0, 65535], "hous'd him in the abbey heere": [0, 65535], "him in the abbey heere and": [0, 65535], "in the abbey heere and now": [0, 65535], "the abbey heere and now he's": [0, 65535], "abbey heere and now he's there": [0, 65535], "heere and now he's there past": [0, 65535], "and now he's there past thought": [0, 65535], "now he's there past thought of": [0, 65535], "he's there past thought of humane": [0, 65535], "there past thought of humane reason": [0, 65535], "past thought of humane reason enter": [0, 65535], "thought of humane reason enter antipholus": [0, 65535], "of humane reason enter antipholus and": [0, 65535], "humane reason enter antipholus and e": [0, 65535], "reason enter antipholus and e dromio": [0, 65535], "enter antipholus and e dromio of": [0, 65535], "antipholus and e dromio of ephesus": [0, 65535], "and e dromio of ephesus e": [0, 65535], "e dromio of ephesus e ant": [0, 65535], "dromio of ephesus e ant iustice": [0, 65535], "of ephesus e ant iustice most": [0, 65535], "ephesus e ant iustice most gracious": [0, 65535], "e ant iustice most gracious duke": [0, 65535], "ant iustice most gracious duke oh": [0, 65535], "iustice most gracious duke oh grant": [0, 65535], "most gracious duke oh grant me": [0, 65535], "gracious duke oh grant me iustice": [0, 65535], "duke oh grant me iustice euen": [0, 65535], "oh grant me iustice euen for": [0, 65535], "grant me iustice euen for the": [0, 65535], "me iustice euen for the seruice": [0, 65535], "iustice euen for the seruice that": [0, 65535], "euen for the seruice that long": [0, 65535], "for the seruice that long since": [0, 65535], "the seruice that long since i": [0, 65535], "seruice that long since i did": [0, 65535], "that long since i did thee": [0, 65535], "long since i did thee when": [0, 65535], "since i did thee when i": [0, 65535], "i did thee when i bestrid": [0, 65535], "did thee when i bestrid thee": [0, 65535], "thee when i bestrid thee in": [0, 65535], "when i bestrid thee in the": [0, 65535], "i bestrid thee in the warres": [0, 65535], "bestrid thee in the warres and": [0, 65535], "thee in the warres and tooke": [0, 65535], "in the warres and tooke deepe": [0, 65535], "the warres and tooke deepe scarres": [0, 65535], "warres and tooke deepe scarres to": [0, 65535], "and tooke deepe scarres to saue": [0, 65535], "tooke deepe scarres to saue thy": [0, 65535], "deepe scarres to saue thy life": [0, 65535], "scarres to saue thy life euen": [0, 65535], "to saue thy life euen for": [0, 65535], "saue thy life euen for the": [0, 65535], "thy life euen for the blood": [0, 65535], "life euen for the blood that": [0, 65535], "euen for the blood that then": [0, 65535], "for the blood that then i": [0, 65535], "the blood that then i lost": [0, 65535], "blood that then i lost for": [0, 65535], "that then i lost for thee": [0, 65535], "then i lost for thee now": [0, 65535], "i lost for thee now grant": [0, 65535], "lost for thee now grant me": [0, 65535], "for thee now grant me iustice": [0, 65535], "thee now grant me iustice mar": [0, 65535], "now grant me iustice mar fat": [0, 65535], "grant me iustice mar fat vnlesse": [0, 65535], "me iustice mar fat vnlesse the": [0, 65535], "iustice mar fat vnlesse the feare": [0, 65535], "mar fat vnlesse the feare of": [0, 65535], "fat vnlesse the feare of death": [0, 65535], "vnlesse the feare of death doth": [0, 65535], "the feare of death doth make": [0, 65535], "feare of death doth make me": [0, 65535], "of death doth make me dote": [0, 65535], "death doth make me dote i": [0, 65535], "doth make me dote i see": [0, 65535], "make me dote i see my": [0, 65535], "me dote i see my sonne": [0, 65535], "dote i see my sonne antipholus": [0, 65535], "i see my sonne antipholus and": [0, 65535], "see my sonne antipholus and dromio": [0, 65535], "my sonne antipholus and dromio e": [0, 65535], "sonne antipholus and dromio e ant": [0, 65535], "antipholus and dromio e ant iustice": [0, 65535], "and dromio e ant iustice sweet": [0, 65535], "dromio e ant iustice sweet prince": [0, 65535], "e ant iustice sweet prince against": [0, 65535], "ant iustice sweet prince against that": [0, 65535], "iustice sweet prince against that woman": [0, 65535], "sweet prince against that woman there": [0, 65535], "prince against that woman there she": [0, 65535], "against that woman there she whom": [0, 65535], "that woman there she whom thou": [0, 65535], "woman there she whom thou gau'st": [0, 65535], "there she whom thou gau'st to": [0, 65535], "she whom thou gau'st to me": [0, 65535], "whom thou gau'st to me to": [0, 65535], "thou gau'st to me to be": [0, 65535], "gau'st to me to be my": [0, 65535], "to me to be my wife": [0, 65535], "me to be my wife that": [0, 65535], "to be my wife that hath": [0, 65535], "be my wife that hath abused": [0, 65535], "my wife that hath abused and": [0, 65535], "wife that hath abused and dishonored": [0, 65535], "that hath abused and dishonored me": [0, 65535], "hath abused and dishonored me euen": [0, 65535], "abused and dishonored me euen in": [0, 65535], "and dishonored me euen in the": [0, 65535], "dishonored me euen in the strength": [0, 65535], "me euen in the strength and": [0, 65535], "euen in the strength and height": [0, 65535], "in the strength and height of": [0, 65535], "the strength and height of iniurie": [0, 65535], "strength and height of iniurie beyond": [0, 65535], "and height of iniurie beyond imagination": [0, 65535], "height of iniurie beyond imagination is": [0, 65535], "of iniurie beyond imagination is the": [0, 65535], "iniurie beyond imagination is the wrong": [0, 65535], "beyond imagination is the wrong that": [0, 65535], "imagination is the wrong that she": [0, 65535], "is the wrong that she this": [0, 65535], "the wrong that she this day": [0, 65535], "wrong that she this day hath": [0, 65535], "that she this day hath shamelesse": [0, 65535], "she this day hath shamelesse throwne": [0, 65535], "this day hath shamelesse throwne on": [0, 65535], "day hath shamelesse throwne on me": [0, 65535], "hath shamelesse throwne on me duke": [0, 65535], "shamelesse throwne on me duke discouer": [0, 65535], "throwne on me duke discouer how": [0, 65535], "on me duke discouer how and": [0, 65535], "me duke discouer how and thou": [0, 65535], "duke discouer how and thou shalt": [0, 65535], "discouer how and thou shalt finde": [0, 65535], "how and thou shalt finde me": [0, 65535], "and thou shalt finde me iust": [0, 65535], "thou shalt finde me iust e": [0, 65535], "shalt finde me iust e ant": [0, 65535], "finde me iust e ant this": [0, 65535], "me iust e ant this day": [0, 65535], "iust e ant this day great": [0, 65535], "e ant this day great duke": [0, 65535], "ant this day great duke she": [0, 65535], "this day great duke she shut": [0, 65535], "day great duke she shut the": [0, 65535], "great duke she shut the doores": [0, 65535], "duke she shut the doores vpon": [0, 65535], "she shut the doores vpon me": [0, 65535], "shut the doores vpon me while": [0, 65535], "the doores vpon me while she": [0, 65535], "doores vpon me while she with": [0, 65535], "vpon me while she with harlots": [0, 65535], "me while she with harlots feasted": [0, 65535], "while she with harlots feasted in": [0, 65535], "she with harlots feasted in my": [0, 65535], "with harlots feasted in my house": [0, 65535], "harlots feasted in my house duke": [0, 65535], "feasted in my house duke a": [0, 65535], "in my house duke a greeuous": [0, 65535], "my house duke a greeuous fault": [0, 65535], "house duke a greeuous fault say": [0, 65535], "duke a greeuous fault say woman": [0, 65535], "a greeuous fault say woman didst": [0, 65535], "greeuous fault say woman didst thou": [0, 65535], "fault say woman didst thou so": [0, 65535], "say woman didst thou so adr": [0, 65535], "woman didst thou so adr no": [0, 65535], "didst thou so adr no my": [0, 65535], "thou so adr no my good": [0, 65535], "so adr no my good lord": [0, 65535], "adr no my good lord my": [0, 65535], "no my good lord my selfe": [0, 65535], "my good lord my selfe he": [0, 65535], "good lord my selfe he and": [0, 65535], "lord my selfe he and my": [0, 65535], "my selfe he and my sister": [0, 65535], "selfe he and my sister to": [0, 65535], "he and my sister to day": [0, 65535], "and my sister to day did": [0, 65535], "my sister to day did dine": [0, 65535], "sister to day did dine together": [0, 65535], "to day did dine together so": [0, 65535], "day did dine together so befall": [0, 65535], "did dine together so befall my": [0, 65535], "dine together so befall my soule": [0, 65535], "together so befall my soule as": [0, 65535], "so befall my soule as this": [0, 65535], "befall my soule as this is": [0, 65535], "my soule as this is false": [0, 65535], "soule as this is false he": [0, 65535], "as this is false he burthens": [0, 65535], "this is false he burthens me": [0, 65535], "is false he burthens me withall": [0, 65535], "false he burthens me withall luc": [0, 65535], "he burthens me withall luc nere": [0, 65535], "burthens me withall luc nere may": [0, 65535], "me withall luc nere may i": [0, 65535], "withall luc nere may i looke": [0, 65535], "luc nere may i looke on": [0, 65535], "nere may i looke on day": [0, 65535], "may i looke on day nor": [0, 65535], "i looke on day nor sleepe": [0, 65535], "looke on day nor sleepe on": [0, 65535], "on day nor sleepe on night": [0, 65535], "day nor sleepe on night but": [0, 65535], "nor sleepe on night but she": [0, 65535], "sleepe on night but she tels": [0, 65535], "on night but she tels to": [0, 65535], "night but she tels to your": [0, 65535], "but she tels to your highnesse": [0, 65535], "she tels to your highnesse simple": [0, 65535], "tels to your highnesse simple truth": [0, 65535], "to your highnesse simple truth gold": [0, 65535], "your highnesse simple truth gold o": [0, 65535], "highnesse simple truth gold o periur'd": [0, 65535], "simple truth gold o periur'd woman": [0, 65535], "truth gold o periur'd woman they": [0, 65535], "gold o periur'd woman they are": [0, 65535], "o periur'd woman they are both": [0, 65535], "periur'd woman they are both forsworne": [0, 65535], "woman they are both forsworne in": [0, 65535], "they are both forsworne in this": [0, 65535], "are both forsworne in this the": [0, 65535], "both forsworne in this the madman": [0, 65535], "forsworne in this the madman iustly": [0, 65535], "in this the madman iustly chargeth": [0, 65535], "this the madman iustly chargeth them": [0, 65535], "the madman iustly chargeth them e": [0, 65535], "madman iustly chargeth them e ant": [0, 65535], "iustly chargeth them e ant my": [0, 65535], "chargeth them e ant my liege": [0, 65535], "them e ant my liege i": [0, 65535], "e ant my liege i am": [0, 65535], "ant my liege i am aduised": [0, 65535], "my liege i am aduised what": [0, 65535], "liege i am aduised what i": [0, 65535], "i am aduised what i say": [0, 65535], "am aduised what i say neither": [0, 65535], "aduised what i say neither disturbed": [0, 65535], "what i say neither disturbed with": [0, 65535], "i say neither disturbed with the": [0, 65535], "say neither disturbed with the effect": [0, 65535], "neither disturbed with the effect of": [0, 65535], "disturbed with the effect of wine": [0, 65535], "with the effect of wine nor": [0, 65535], "the effect of wine nor headie": [0, 65535], "effect of wine nor headie rash": [0, 65535], "of wine nor headie rash prouoak'd": [0, 65535], "wine nor headie rash prouoak'd with": [0, 65535], "nor headie rash prouoak'd with raging": [0, 65535], "headie rash prouoak'd with raging ire": [0, 65535], "rash prouoak'd with raging ire albeit": [0, 65535], "prouoak'd with raging ire albeit my": [0, 65535], "with raging ire albeit my wrongs": [0, 65535], "raging ire albeit my wrongs might": [0, 65535], "ire albeit my wrongs might make": [0, 65535], "albeit my wrongs might make one": [0, 65535], "my wrongs might make one wiser": [0, 65535], "wrongs might make one wiser mad": [0, 65535], "might make one wiser mad this": [0, 65535], "make one wiser mad this woman": [0, 65535], "one wiser mad this woman lock'd": [0, 65535], "wiser mad this woman lock'd me": [0, 65535], "mad this woman lock'd me out": [0, 65535], "this woman lock'd me out this": [0, 65535], "woman lock'd me out this day": [0, 65535], "lock'd me out this day from": [0, 65535], "me out this day from dinner": [0, 65535], "out this day from dinner that": [0, 65535], "this day from dinner that goldsmith": [0, 65535], "day from dinner that goldsmith there": [0, 65535], "from dinner that goldsmith there were": [0, 65535], "dinner that goldsmith there were he": [0, 65535], "that goldsmith there were he not": [0, 65535], "goldsmith there were he not pack'd": [0, 65535], "there were he not pack'd with": [0, 65535], "were he not pack'd with her": [0, 65535], "he not pack'd with her could": [0, 65535], "not pack'd with her could witnesse": [0, 65535], "pack'd with her could witnesse it": [0, 65535], "with her could witnesse it for": [0, 65535], "her could witnesse it for he": [0, 65535], "could witnesse it for he was": [0, 65535], "witnesse it for he was with": [0, 65535], "it for he was with me": [0, 65535], "for he was with me then": [0, 65535], "he was with me then who": [0, 65535], "was with me then who parted": [0, 65535], "with me then who parted with": [0, 65535], "me then who parted with me": [0, 65535], "then who parted with me to": [0, 65535], "who parted with me to go": [0, 65535], "parted with me to go fetch": [0, 65535], "with me to go fetch a": [0, 65535], "me to go fetch a chaine": [0, 65535], "to go fetch a chaine promising": [0, 65535], "go fetch a chaine promising to": [0, 65535], "fetch a chaine promising to bring": [0, 65535], "a chaine promising to bring it": [0, 65535], "chaine promising to bring it to": [0, 65535], "promising to bring it to the": [0, 65535], "to bring it to the porpentine": [0, 65535], "bring it to the porpentine where": [0, 65535], "it to the porpentine where balthasar": [0, 65535], "to the porpentine where balthasar and": [0, 65535], "the porpentine where balthasar and i": [0, 65535], "porpentine where balthasar and i did": [0, 65535], "where balthasar and i did dine": [0, 65535], "balthasar and i did dine together": [0, 65535], "and i did dine together our": [0, 65535], "i did dine together our dinner": [0, 65535], "did dine together our dinner done": [0, 65535], "dine together our dinner done and": [0, 65535], "together our dinner done and he": [0, 65535], "our dinner done and he not": [0, 65535], "dinner done and he not comming": [0, 65535], "done and he not comming thither": [0, 65535], "and he not comming thither i": [0, 65535], "he not comming thither i went": [0, 65535], "not comming thither i went to": [0, 65535], "comming thither i went to seeke": [0, 65535], "thither i went to seeke him": [0, 65535], "i went to seeke him in": [0, 65535], "went to seeke him in the": [0, 65535], "to seeke him in the street": [0, 65535], "seeke him in the street i": [0, 65535], "him in the street i met": [0, 65535], "in the street i met him": [0, 65535], "the street i met him and": [0, 65535], "street i met him and in": [0, 65535], "i met him and in his": [0, 65535], "met him and in his companie": [0, 65535], "him and in his companie that": [0, 65535], "and in his companie that gentleman": [0, 65535], "in his companie that gentleman there": [0, 65535], "his companie that gentleman there did": [0, 65535], "companie that gentleman there did this": [0, 65535], "that gentleman there did this periur'd": [0, 65535], "gentleman there did this periur'd goldsmith": [0, 65535], "there did this periur'd goldsmith sweare": [0, 65535], "did this periur'd goldsmith sweare me": [0, 65535], "this periur'd goldsmith sweare me downe": [0, 65535], "periur'd goldsmith sweare me downe that": [0, 65535], "goldsmith sweare me downe that i": [0, 65535], "sweare me downe that i this": [0, 65535], "me downe that i this day": [0, 65535], "downe that i this day of": [0, 65535], "that i this day of him": [0, 65535], "i this day of him receiu'd": [0, 65535], "this day of him receiu'd the": [0, 65535], "day of him receiu'd the chaine": [0, 65535], "of him receiu'd the chaine which": [0, 65535], "him receiu'd the chaine which god": [0, 65535], "receiu'd the chaine which god he": [0, 65535], "the chaine which god he knowes": [0, 65535], "chaine which god he knowes i": [0, 65535], "which god he knowes i saw": [0, 65535], "god he knowes i saw not": [0, 65535], "he knowes i saw not for": [0, 65535], "knowes i saw not for the": [0, 65535], "i saw not for the which": [0, 65535], "saw not for the which he": [0, 65535], "not for the which he did": [0, 65535], "for the which he did arrest": [0, 65535], "the which he did arrest me": [0, 65535], "which he did arrest me with": [0, 65535], "he did arrest me with an": [0, 65535], "did arrest me with an officer": [0, 65535], "arrest me with an officer i": [0, 65535], "me with an officer i did": [0, 65535], "with an officer i did obey": [0, 65535], "an officer i did obey and": [0, 65535], "officer i did obey and sent": [0, 65535], "i did obey and sent my": [0, 65535], "did obey and sent my pesant": [0, 65535], "obey and sent my pesant home": [0, 65535], "and sent my pesant home for": [0, 65535], "sent my pesant home for certaine": [0, 65535], "my pesant home for certaine duckets": [0, 65535], "pesant home for certaine duckets he": [0, 65535], "home for certaine duckets he with": [0, 65535], "for certaine duckets he with none": [0, 65535], "certaine duckets he with none return'd": [0, 65535], "duckets he with none return'd then": [0, 65535], "he with none return'd then fairely": [0, 65535], "with none return'd then fairely i": [0, 65535], "none return'd then fairely i bespoke": [0, 65535], "return'd then fairely i bespoke the": [0, 65535], "then fairely i bespoke the officer": [0, 65535], "fairely i bespoke the officer to": [0, 65535], "i bespoke the officer to go": [0, 65535], "bespoke the officer to go in": [0, 65535], "the officer to go in person": [0, 65535], "officer to go in person with": [0, 65535], "to go in person with me": [0, 65535], "go in person with me to": [0, 65535], "in person with me to my": [0, 65535], "person with me to my house": [0, 65535], "with me to my house by'th'": [0, 65535], "me to my house by'th' way": [0, 65535], "to my house by'th' way we": [0, 65535], "my house by'th' way we met": [0, 65535], "house by'th' way we met my": [0, 65535], "by'th' way we met my wife": [0, 65535], "way we met my wife her": [0, 65535], "we met my wife her sister": [0, 65535], "met my wife her sister and": [0, 65535], "my wife her sister and a": [0, 65535], "wife her sister and a rabble": [0, 65535], "her sister and a rabble more": [0, 65535], "sister and a rabble more of": [0, 65535], "and a rabble more of vilde": [0, 65535], "a rabble more of vilde confederates": [0, 65535], "rabble more of vilde confederates along": [0, 65535], "more of vilde confederates along with": [0, 65535], "of vilde confederates along with them": [0, 65535], "vilde confederates along with them they": [0, 65535], "confederates along with them they brought": [0, 65535], "along with them they brought one": [0, 65535], "with them they brought one pinch": [0, 65535], "them they brought one pinch a": [0, 65535], "they brought one pinch a hungry": [0, 65535], "brought one pinch a hungry leane": [0, 65535], "one pinch a hungry leane fac'd": [0, 65535], "pinch a hungry leane fac'd villaine": [0, 65535], "a hungry leane fac'd villaine a": [0, 65535], "hungry leane fac'd villaine a meere": [0, 65535], "leane fac'd villaine a meere anatomie": [0, 65535], "fac'd villaine a meere anatomie a": [0, 65535], "villaine a meere anatomie a mountebanke": [0, 65535], "a meere anatomie a mountebanke a": [0, 65535], "meere anatomie a mountebanke a thred": [0, 65535], "anatomie a mountebanke a thred bare": [0, 65535], "a mountebanke a thred bare iugler": [0, 65535], "mountebanke a thred bare iugler and": [0, 65535], "a thred bare iugler and a": [0, 65535], "thred bare iugler and a fortune": [0, 65535], "bare iugler and a fortune teller": [0, 65535], "iugler and a fortune teller a": [0, 65535], "and a fortune teller a needy": [0, 65535], "a fortune teller a needy hollow": [0, 65535], "fortune teller a needy hollow ey'd": [0, 65535], "teller a needy hollow ey'd sharpe": [0, 65535], "a needy hollow ey'd sharpe looking": [0, 65535], "needy hollow ey'd sharpe looking wretch": [0, 65535], "hollow ey'd sharpe looking wretch a": [0, 65535], "ey'd sharpe looking wretch a liuing": [0, 65535], "sharpe looking wretch a liuing dead": [0, 65535], "looking wretch a liuing dead man": [0, 65535], "wretch a liuing dead man this": [0, 65535], "a liuing dead man this pernicious": [0, 65535], "liuing dead man this pernicious slaue": [0, 65535], "dead man this pernicious slaue forsooth": [0, 65535], "man this pernicious slaue forsooth tooke": [0, 65535], "this pernicious slaue forsooth tooke on": [0, 65535], "pernicious slaue forsooth tooke on him": [0, 65535], "slaue forsooth tooke on him as": [0, 65535], "forsooth tooke on him as a": [0, 65535], "tooke on him as a coniurer": [0, 65535], "on him as a coniurer and": [0, 65535], "him as a coniurer and gazing": [0, 65535], "as a coniurer and gazing in": [0, 65535], "a coniurer and gazing in mine": [0, 65535], "coniurer and gazing in mine eyes": [0, 65535], "and gazing in mine eyes feeling": [0, 65535], "gazing in mine eyes feeling my": [0, 65535], "in mine eyes feeling my pulse": [0, 65535], "mine eyes feeling my pulse and": [0, 65535], "eyes feeling my pulse and with": [0, 65535], "feeling my pulse and with no": [0, 65535], "my pulse and with no face": [0, 65535], "pulse and with no face as": [0, 65535], "and with no face as 'twere": [0, 65535], "with no face as 'twere out": [0, 65535], "no face as 'twere out facing": [0, 65535], "face as 'twere out facing me": [0, 65535], "as 'twere out facing me cries": [0, 65535], "'twere out facing me cries out": [0, 65535], "out facing me cries out i": [0, 65535], "facing me cries out i was": [0, 65535], "me cries out i was possest": [0, 65535], "cries out i was possest then": [0, 65535], "out i was possest then altogether": [0, 65535], "i was possest then altogether they": [0, 65535], "was possest then altogether they fell": [0, 65535], "possest then altogether they fell vpon": [0, 65535], "then altogether they fell vpon me": [0, 65535], "altogether they fell vpon me bound": [0, 65535], "they fell vpon me bound me": [0, 65535], "fell vpon me bound me bore": [0, 65535], "vpon me bound me bore me": [0, 65535], "me bound me bore me thence": [0, 65535], "bound me bore me thence and": [0, 65535], "me bore me thence and in": [0, 65535], "bore me thence and in a": [0, 65535], "me thence and in a darke": [0, 65535], "thence and in a darke and": [0, 65535], "and in a darke and dankish": [0, 65535], "in a darke and dankish vault": [0, 65535], "a darke and dankish vault at": [0, 65535], "darke and dankish vault at home": [0, 65535], "and dankish vault at home there": [0, 65535], "dankish vault at home there left": [0, 65535], "vault at home there left me": [0, 65535], "at home there left me and": [0, 65535], "home there left me and my": [0, 65535], "there left me and my man": [0, 65535], "left me and my man both": [0, 65535], "me and my man both bound": [0, 65535], "and my man both bound together": [0, 65535], "my man both bound together till": [0, 65535], "man both bound together till gnawing": [0, 65535], "both bound together till gnawing with": [0, 65535], "bound together till gnawing with my": [0, 65535], "together till gnawing with my teeth": [0, 65535], "till gnawing with my teeth my": [0, 65535], "gnawing with my teeth my bonds": [0, 65535], "with my teeth my bonds in": [0, 65535], "my teeth my bonds in sunder": [0, 65535], "teeth my bonds in sunder i": [0, 65535], "my bonds in sunder i gain'd": [0, 65535], "bonds in sunder i gain'd my": [0, 65535], "in sunder i gain'd my freedome": [0, 65535], "sunder i gain'd my freedome and": [0, 65535], "i gain'd my freedome and immediately": [0, 65535], "gain'd my freedome and immediately ran": [0, 65535], "my freedome and immediately ran hether": [0, 65535], "freedome and immediately ran hether to": [0, 65535], "and immediately ran hether to your": [0, 65535], "immediately ran hether to your grace": [0, 65535], "ran hether to your grace whom": [0, 65535], "hether to your grace whom i": [0, 65535], "to your grace whom i beseech": [0, 65535], "your grace whom i beseech to": [0, 65535], "grace whom i beseech to giue": [0, 65535], "whom i beseech to giue me": [0, 65535], "i beseech to giue me ample": [0, 65535], "beseech to giue me ample satisfaction": [0, 65535], "to giue me ample satisfaction for": [0, 65535], "giue me ample satisfaction for these": [0, 65535], "me ample satisfaction for these deepe": [0, 65535], "ample satisfaction for these deepe shames": [0, 65535], "satisfaction for these deepe shames and": [0, 65535], "for these deepe shames and great": [0, 65535], "these deepe shames and great indignities": [0, 65535], "deepe shames and great indignities gold": [0, 65535], "shames and great indignities gold my": [0, 65535], "and great indignities gold my lord": [0, 65535], "great indignities gold my lord in": [0, 65535], "indignities gold my lord in truth": [0, 65535], "gold my lord in truth thus": [0, 65535], "my lord in truth thus far": [0, 65535], "lord in truth thus far i": [0, 65535], "in truth thus far i witnes": [0, 65535], "truth thus far i witnes with": [0, 65535], "thus far i witnes with him": [0, 65535], "far i witnes with him that": [0, 65535], "i witnes with him that he": [0, 65535], "witnes with him that he din'd": [0, 65535], "with him that he din'd not": [0, 65535], "him that he din'd not at": [0, 65535], "that he din'd not at home": [0, 65535], "he din'd not at home but": [0, 65535], "din'd not at home but was": [0, 65535], "not at home but was lock'd": [0, 65535], "at home but was lock'd out": [0, 65535], "home but was lock'd out duke": [0, 65535], "but was lock'd out duke but": [0, 65535], "was lock'd out duke but had": [0, 65535], "lock'd out duke but had he": [0, 65535], "out duke but had he such": [0, 65535], "duke but had he such a": [0, 65535], "but had he such a chaine": [0, 65535], "had he such a chaine of": [0, 65535], "he such a chaine of thee": [0, 65535], "such a chaine of thee or": [0, 65535], "a chaine of thee or no": [0, 65535], "chaine of thee or no gold": [0, 65535], "of thee or no gold he": [0, 65535], "thee or no gold he had": [0, 65535], "or no gold he had my": [0, 65535], "no gold he had my lord": [0, 65535], "gold he had my lord and": [0, 65535], "he had my lord and when": [0, 65535], "had my lord and when he": [0, 65535], "my lord and when he ran": [0, 65535], "lord and when he ran in": [0, 65535], "and when he ran in heere": [0, 65535], "when he ran in heere these": [0, 65535], "he ran in heere these people": [0, 65535], "ran in heere these people saw": [0, 65535], "in heere these people saw the": [0, 65535], "heere these people saw the chaine": [0, 65535], "these people saw the chaine about": [0, 65535], "people saw the chaine about his": [0, 65535], "saw the chaine about his necke": [0, 65535], "the chaine about his necke mar": [0, 65535], "chaine about his necke mar besides": [0, 65535], "about his necke mar besides i": [0, 65535], "his necke mar besides i will": [0, 65535], "necke mar besides i will be": [0, 65535], "mar besides i will be sworne": [0, 65535], "besides i will be sworne these": [0, 65535], "i will be sworne these eares": [0, 65535], "will be sworne these eares of": [0, 65535], "be sworne these eares of mine": [0, 65535], "sworne these eares of mine heard": [0, 65535], "these eares of mine heard you": [0, 65535], "eares of mine heard you confesse": [0, 65535], "of mine heard you confesse you": [0, 65535], "mine heard you confesse you had": [0, 65535], "heard you confesse you had the": [0, 65535], "you confesse you had the chaine": [0, 65535], "confesse you had the chaine of": [0, 65535], "you had the chaine of him": [0, 65535], "had the chaine of him after": [0, 65535], "the chaine of him after you": [0, 65535], "chaine of him after you first": [0, 65535], "of him after you first forswore": [0, 65535], "him after you first forswore it": [0, 65535], "after you first forswore it on": [0, 65535], "you first forswore it on the": [0, 65535], "first forswore it on the mart": [0, 65535], "forswore it on the mart and": [0, 65535], "it on the mart and thereupon": [0, 65535], "on the mart and thereupon i": [0, 65535], "the mart and thereupon i drew": [0, 65535], "mart and thereupon i drew my": [0, 65535], "and thereupon i drew my sword": [0, 65535], "thereupon i drew my sword on": [0, 65535], "i drew my sword on you": [0, 65535], "drew my sword on you and": [0, 65535], "my sword on you and then": [0, 65535], "sword on you and then you": [0, 65535], "on you and then you fled": [0, 65535], "you and then you fled into": [0, 65535], "and then you fled into this": [0, 65535], "then you fled into this abbey": [0, 65535], "you fled into this abbey heere": [0, 65535], "fled into this abbey heere from": [0, 65535], "into this abbey heere from whence": [0, 65535], "this abbey heere from whence i": [0, 65535], "abbey heere from whence i thinke": [0, 65535], "heere from whence i thinke you": [0, 65535], "from whence i thinke you are": [0, 65535], "whence i thinke you are come": [0, 65535], "i thinke you are come by": [0, 65535], "thinke you are come by miracle": [0, 65535], "you are come by miracle e": [0, 65535], "are come by miracle e ant": [0, 65535], "come by miracle e ant i": [0, 65535], "by miracle e ant i neuer": [0, 65535], "miracle e ant i neuer came": [0, 65535], "e ant i neuer came within": [0, 65535], "ant i neuer came within these": [0, 65535], "i neuer came within these abbey": [0, 65535], "neuer came within these abbey wals": [0, 65535], "came within these abbey wals nor": [0, 65535], "within these abbey wals nor euer": [0, 65535], "these abbey wals nor euer didst": [0, 65535], "abbey wals nor euer didst thou": [0, 65535], "wals nor euer didst thou draw": [0, 65535], "nor euer didst thou draw thy": [0, 65535], "euer didst thou draw thy sword": [0, 65535], "didst thou draw thy sword on": [0, 65535], "thou draw thy sword on me": [0, 65535], "draw thy sword on me i": [0, 65535], "thy sword on me i neuer": [0, 65535], "sword on me i neuer saw": [0, 65535], "on me i neuer saw the": [0, 65535], "me i neuer saw the chaine": [0, 65535], "i neuer saw the chaine so": [0, 65535], "neuer saw the chaine so helpe": [0, 65535], "saw the chaine so helpe me": [0, 65535], "the chaine so helpe me heauen": [0, 65535], "chaine so helpe me heauen and": [0, 65535], "so helpe me heauen and this": [0, 65535], "helpe me heauen and this is": [0, 65535], "me heauen and this is false": [0, 65535], "heauen and this is false you": [0, 65535], "and this is false you burthen": [0, 65535], "this is false you burthen me": [0, 65535], "is false you burthen me withall": [0, 65535], "false you burthen me withall duke": [0, 65535], "you burthen me withall duke why": [0, 65535], "burthen me withall duke why what": [0, 65535], "me withall duke why what an": [0, 65535], "withall duke why what an intricate": [0, 65535], "duke why what an intricate impeach": [0, 65535], "why what an intricate impeach is": [0, 65535], "what an intricate impeach is this": [0, 65535], "an intricate impeach is this i": [0, 65535], "intricate impeach is this i thinke": [0, 65535], "impeach is this i thinke you": [0, 65535], "is this i thinke you all": [0, 65535], "this i thinke you all haue": [0, 65535], "i thinke you all haue drunke": [0, 65535], "thinke you all haue drunke of": [0, 65535], "you all haue drunke of circes": [0, 65535], "all haue drunke of circes cup": [0, 65535], "haue drunke of circes cup if": [0, 65535], "drunke of circes cup if heere": [0, 65535], "of circes cup if heere you": [0, 65535], "circes cup if heere you hous'd": [0, 65535], "cup if heere you hous'd him": [0, 65535], "if heere you hous'd him heere": [0, 65535], "heere you hous'd him heere he": [0, 65535], "you hous'd him heere he would": [0, 65535], "hous'd him heere he would haue": [0, 65535], "him heere he would haue bin": [0, 65535], "heere he would haue bin if": [0, 65535], "he would haue bin if he": [0, 65535], "would haue bin if he were": [0, 65535], "haue bin if he were mad": [0, 65535], "bin if he were mad he": [0, 65535], "if he were mad he would": [0, 65535], "he were mad he would not": [0, 65535], "were mad he would not pleade": [0, 65535], "mad he would not pleade so": [0, 65535], "he would not pleade so coldly": [0, 65535], "would not pleade so coldly you": [0, 65535], "not pleade so coldly you say": [0, 65535], "pleade so coldly you say he": [0, 65535], "so coldly you say he din'd": [0, 65535], "coldly you say he din'd at": [0, 65535], "you say he din'd at home": [0, 65535], "say he din'd at home the": [0, 65535], "he din'd at home the goldsmith": [0, 65535], "din'd at home the goldsmith heere": [0, 65535], "at home the goldsmith heere denies": [0, 65535], "home the goldsmith heere denies that": [0, 65535], "the goldsmith heere denies that saying": [0, 65535], "goldsmith heere denies that saying sirra": [0, 65535], "heere denies that saying sirra what": [0, 65535], "denies that saying sirra what say": [0, 65535], "that saying sirra what say you": [0, 65535], "saying sirra what say you e": [0, 65535], "sirra what say you e dro": [0, 65535], "what say you e dro sir": [0, 65535], "say you e dro sir he": [0, 65535], "you e dro sir he din'de": [0, 65535], "e dro sir he din'de with": [0, 65535], "dro sir he din'de with her": [0, 65535], "sir he din'de with her there": [0, 65535], "he din'de with her there at": [0, 65535], "din'de with her there at the": [0, 65535], "with her there at the porpentine": [0, 65535], "her there at the porpentine cur": [0, 65535], "there at the porpentine cur he": [0, 65535], "at the porpentine cur he did": [0, 65535], "the porpentine cur he did and": [0, 65535], "porpentine cur he did and from": [0, 65535], "cur he did and from my": [0, 65535], "he did and from my finger": [0, 65535], "did and from my finger snacht": [0, 65535], "and from my finger snacht that": [0, 65535], "from my finger snacht that ring": [0, 65535], "my finger snacht that ring e": [0, 65535], "finger snacht that ring e anti": [0, 65535], "snacht that ring e anti tis": [0, 65535], "that ring e anti tis true": [0, 65535], "ring e anti tis true my": [0, 65535], "e anti tis true my liege": [0, 65535], "anti tis true my liege this": [0, 65535], "tis true my liege this ring": [0, 65535], "true my liege this ring i": [0, 65535], "my liege this ring i had": [0, 65535], "liege this ring i had of": [0, 65535], "this ring i had of her": [0, 65535], "ring i had of her duke": [0, 65535], "i had of her duke saw'st": [0, 65535], "had of her duke saw'st thou": [0, 65535], "of her duke saw'st thou him": [0, 65535], "her duke saw'st thou him enter": [0, 65535], "duke saw'st thou him enter at": [0, 65535], "saw'st thou him enter at the": [0, 65535], "thou him enter at the abbey": [0, 65535], "him enter at the abbey heere": [0, 65535], "enter at the abbey heere curt": [0, 65535], "at the abbey heere curt as": [0, 65535], "the abbey heere curt as sure": [0, 65535], "abbey heere curt as sure my": [0, 65535], "heere curt as sure my liege": [0, 65535], "curt as sure my liege as": [0, 65535], "as sure my liege as i": [0, 65535], "sure my liege as i do": [0, 65535], "my liege as i do see": [0, 65535], "liege as i do see your": [0, 65535], "as i do see your grace": [0, 65535], "i do see your grace duke": [0, 65535], "do see your grace duke why": [0, 65535], "see your grace duke why this": [0, 65535], "your grace duke why this is": [0, 65535], "grace duke why this is straunge": [0, 65535], "duke why this is straunge go": [0, 65535], "why this is straunge go call": [0, 65535], "this is straunge go call the": [0, 65535], "is straunge go call the abbesse": [0, 65535], "straunge go call the abbesse hither": [0, 65535], "go call the abbesse hither i": [0, 65535], "call the abbesse hither i thinke": [0, 65535], "the abbesse hither i thinke you": [0, 65535], "abbesse hither i thinke you are": [0, 65535], "hither i thinke you are all": [0, 65535], "i thinke you are all mated": [0, 65535], "thinke you are all mated or": [0, 65535], "you are all mated or starke": [0, 65535], "are all mated or starke mad": [0, 65535], "all mated or starke mad exit": [0, 65535], "mated or starke mad exit one": [0, 65535], "or starke mad exit one to": [0, 65535], "starke mad exit one to the": [0, 65535], "mad exit one to the abbesse": [0, 65535], "exit one to the abbesse fa": [0, 65535], "one to the abbesse fa most": [0, 65535], "to the abbesse fa most mighty": [0, 65535], "the abbesse fa most mighty duke": [0, 65535], "abbesse fa most mighty duke vouchsafe": [0, 65535], "fa most mighty duke vouchsafe me": [0, 65535], "most mighty duke vouchsafe me speak": [0, 65535], "mighty duke vouchsafe me speak a": [0, 65535], "duke vouchsafe me speak a word": [0, 65535], "vouchsafe me speak a word haply": [0, 65535], "me speak a word haply i": [0, 65535], "speak a word haply i see": [0, 65535], "a word haply i see a": [0, 65535], "word haply i see a friend": [0, 65535], "haply i see a friend will": [0, 65535], "i see a friend will saue": [0, 65535], "see a friend will saue my": [0, 65535], "a friend will saue my life": [0, 65535], "friend will saue my life and": [0, 65535], "will saue my life and pay": [0, 65535], "saue my life and pay the": [0, 65535], "my life and pay the sum": [0, 65535], "life and pay the sum that": [0, 65535], "and pay the sum that may": [0, 65535], "pay the sum that may deliuer": [0, 65535], "the sum that may deliuer me": [0, 65535], "sum that may deliuer me duke": [0, 65535], "that may deliuer me duke speake": [0, 65535], "may deliuer me duke speake freely": [0, 65535], "deliuer me duke speake freely siracusian": [0, 65535], "me duke speake freely siracusian what": [0, 65535], "duke speake freely siracusian what thou": [0, 65535], "speake freely siracusian what thou wilt": [0, 65535], "freely siracusian what thou wilt fath": [0, 65535], "siracusian what thou wilt fath is": [0, 65535], "what thou wilt fath is not": [0, 65535], "thou wilt fath is not your": [0, 65535], "wilt fath is not your name": [0, 65535], "fath is not your name sir": [0, 65535], "is not your name sir call'd": [0, 65535], "not your name sir call'd antipholus": [0, 65535], "your name sir call'd antipholus and": [0, 65535], "name sir call'd antipholus and is": [0, 65535], "sir call'd antipholus and is not": [0, 65535], "call'd antipholus and is not that": [0, 65535], "antipholus and is not that your": [0, 65535], "and is not that your bondman": [0, 65535], "is not that your bondman dromio": [0, 65535], "not that your bondman dromio e": [0, 65535], "that your bondman dromio e dro": [0, 65535], "your bondman dromio e dro within": [0, 65535], "bondman dromio e dro within this": [0, 65535], "dromio e dro within this houre": [0, 65535], "e dro within this houre i": [0, 65535], "dro within this houre i was": [0, 65535], "within this houre i was his": [0, 65535], "this houre i was his bondman": [0, 65535], "houre i was his bondman sir": [0, 65535], "i was his bondman sir but": [0, 65535], "was his bondman sir but he": [0, 65535], "his bondman sir but he i": [0, 65535], "bondman sir but he i thanke": [0, 65535], "sir but he i thanke him": [0, 65535], "but he i thanke him gnaw'd": [0, 65535], "he i thanke him gnaw'd in": [0, 65535], "i thanke him gnaw'd in two": [0, 65535], "thanke him gnaw'd in two my": [0, 65535], "him gnaw'd in two my cords": [0, 65535], "gnaw'd in two my cords now": [0, 65535], "in two my cords now am": [0, 65535], "two my cords now am i": [0, 65535], "my cords now am i dromio": [0, 65535], "cords now am i dromio and": [0, 65535], "now am i dromio and his": [0, 65535], "am i dromio and his man": [0, 65535], "i dromio and his man vnbound": [0, 65535], "dromio and his man vnbound fath": [0, 65535], "and his man vnbound fath i": [0, 65535], "his man vnbound fath i am": [0, 65535], "man vnbound fath i am sure": [0, 65535], "vnbound fath i am sure you": [0, 65535], "fath i am sure you both": [0, 65535], "i am sure you both of": [0, 65535], "am sure you both of you": [0, 65535], "sure you both of you remember": [0, 65535], "you both of you remember me": [0, 65535], "both of you remember me dro": [0, 65535], "of you remember me dro our": [0, 65535], "you remember me dro our selues": [0, 65535], "remember me dro our selues we": [0, 65535], "me dro our selues we do": [0, 65535], "dro our selues we do remember": [0, 65535], "our selues we do remember sir": [0, 65535], "selues we do remember sir by": [0, 65535], "we do remember sir by you": [0, 65535], "do remember sir by you for": [0, 65535], "remember sir by you for lately": [0, 65535], "sir by you for lately we": [0, 65535], "by you for lately we were": [0, 65535], "you for lately we were bound": [0, 65535], "for lately we were bound as": [0, 65535], "lately we were bound as you": [0, 65535], "we were bound as you are": [0, 65535], "were bound as you are now": [0, 65535], "bound as you are now you": [0, 65535], "as you are now you are": [0, 65535], "you are now you are not": [0, 65535], "are now you are not pinches": [0, 65535], "now you are not pinches patient": [0, 65535], "you are not pinches patient are": [0, 65535], "are not pinches patient are you": [0, 65535], "not pinches patient are you sir": [0, 65535], "pinches patient are you sir father": [0, 65535], "patient are you sir father why": [0, 65535], "are you sir father why looke": [0, 65535], "you sir father why looke you": [0, 65535], "sir father why looke you strange": [0, 65535], "father why looke you strange on": [0, 65535], "why looke you strange on me": [0, 65535], "looke you strange on me you": [0, 65535], "you strange on me you know": [0, 65535], "strange on me you know me": [0, 65535], "on me you know me well": [0, 65535], "me you know me well e": [0, 65535], "you know me well e ant": [0, 65535], "know me well e ant i": [0, 65535], "me well e ant i neuer": [0, 65535], "well e ant i neuer saw": [0, 65535], "e ant i neuer saw you": [0, 65535], "ant i neuer saw you in": [0, 65535], "i neuer saw you in my": [0, 65535], "neuer saw you in my life": [0, 65535], "saw you in my life till": [0, 65535], "you in my life till now": [0, 65535], "in my life till now fa": [0, 65535], "my life till now fa oh": [0, 65535], "life till now fa oh griefe": [0, 65535], "till now fa oh griefe hath": [0, 65535], "now fa oh griefe hath chang'd": [0, 65535], "fa oh griefe hath chang'd me": [0, 65535], "oh griefe hath chang'd me since": [0, 65535], "griefe hath chang'd me since you": [0, 65535], "hath chang'd me since you saw": [0, 65535], "chang'd me since you saw me": [0, 65535], "me since you saw me last": [0, 65535], "since you saw me last and": [0, 65535], "you saw me last and carefull": [0, 65535], "saw me last and carefull houres": [0, 65535], "me last and carefull houres with": [0, 65535], "last and carefull houres with times": [0, 65535], "and carefull houres with times deformed": [0, 65535], "carefull houres with times deformed hand": [0, 65535], "houres with times deformed hand haue": [0, 65535], "with times deformed hand haue written": [0, 65535], "times deformed hand haue written strange": [0, 65535], "deformed hand haue written strange defeatures": [0, 65535], "hand haue written strange defeatures in": [0, 65535], "haue written strange defeatures in my": [0, 65535], "written strange defeatures in my face": [0, 65535], "strange defeatures in my face but": [0, 65535], "defeatures in my face but tell": [0, 65535], "in my face but tell me": [0, 65535], "my face but tell me yet": [0, 65535], "face but tell me yet dost": [0, 65535], "but tell me yet dost thou": [0, 65535], "tell me yet dost thou not": [0, 65535], "me yet dost thou not know": [0, 65535], "yet dost thou not know my": [0, 65535], "dost thou not know my voice": [0, 65535], "thou not know my voice ant": [0, 65535], "not know my voice ant neither": [0, 65535], "know my voice ant neither fat": [0, 65535], "my voice ant neither fat dromio": [0, 65535], "voice ant neither fat dromio nor": [0, 65535], "ant neither fat dromio nor thou": [0, 65535], "neither fat dromio nor thou dro": [0, 65535], "fat dromio nor thou dro no": [0, 65535], "dromio nor thou dro no trust": [0, 65535], "nor thou dro no trust me": [0, 65535], "thou dro no trust me sir": [0, 65535], "dro no trust me sir nor": [0, 65535], "no trust me sir nor i": [0, 65535], "trust me sir nor i fa": [0, 65535], "me sir nor i fa i": [0, 65535], "sir nor i fa i am": [0, 65535], "nor i fa i am sure": [0, 65535], "i fa i am sure thou": [0, 65535], "fa i am sure thou dost": [0, 65535], "i am sure thou dost e": [0, 65535], "am sure thou dost e dromio": [0, 65535], "sure thou dost e dromio i": [0, 65535], "thou dost e dromio i sir": [0, 65535], "dost e dromio i sir but": [0, 65535], "e dromio i sir but i": [0, 65535], "dromio i sir but i am": [0, 65535], "i sir but i am sure": [0, 65535], "sir but i am sure i": [0, 65535], "but i am sure i do": [0, 65535], "i am sure i do not": [0, 65535], "am sure i do not and": [0, 65535], "sure i do not and whatsoeuer": [0, 65535], "i do not and whatsoeuer a": [0, 65535], "do not and whatsoeuer a man": [0, 65535], "not and whatsoeuer a man denies": [0, 65535], "and whatsoeuer a man denies you": [0, 65535], "whatsoeuer a man denies you are": [0, 65535], "a man denies you are now": [0, 65535], "man denies you are now bound": [0, 65535], "denies you are now bound to": [0, 65535], "you are now bound to beleeue": [0, 65535], "are now bound to beleeue him": [0, 65535], "now bound to beleeue him fath": [0, 65535], "bound to beleeue him fath not": [0, 65535], "to beleeue him fath not know": [0, 65535], "beleeue him fath not know my": [0, 65535], "him fath not know my voice": [0, 65535], "fath not know my voice oh": [0, 65535], "not know my voice oh times": [0, 65535], "know my voice oh times extremity": [0, 65535], "my voice oh times extremity hast": [0, 65535], "voice oh times extremity hast thou": [0, 65535], "oh times extremity hast thou so": [0, 65535], "times extremity hast thou so crack'd": [0, 65535], "extremity hast thou so crack'd and": [0, 65535], "hast thou so crack'd and splitted": [0, 65535], "thou so crack'd and splitted my": [0, 65535], "so crack'd and splitted my poore": [0, 65535], "crack'd and splitted my poore tongue": [0, 65535], "and splitted my poore tongue in": [0, 65535], "splitted my poore tongue in seuen": [0, 65535], "my poore tongue in seuen short": [0, 65535], "poore tongue in seuen short yeares": [0, 65535], "tongue in seuen short yeares that": [0, 65535], "in seuen short yeares that heere": [0, 65535], "seuen short yeares that heere my": [0, 65535], "short yeares that heere my onely": [0, 65535], "yeares that heere my onely sonne": [0, 65535], "that heere my onely sonne knowes": [0, 65535], "heere my onely sonne knowes not": [0, 65535], "my onely sonne knowes not my": [0, 65535], "onely sonne knowes not my feeble": [0, 65535], "sonne knowes not my feeble key": [0, 65535], "knowes not my feeble key of": [0, 65535], "not my feeble key of vntun'd": [0, 65535], "my feeble key of vntun'd cares": [0, 65535], "feeble key of vntun'd cares though": [0, 65535], "key of vntun'd cares though now": [0, 65535], "of vntun'd cares though now this": [0, 65535], "vntun'd cares though now this grained": [0, 65535], "cares though now this grained face": [0, 65535], "though now this grained face of": [0, 65535], "now this grained face of mine": [0, 65535], "this grained face of mine be": [0, 65535], "grained face of mine be hid": [0, 65535], "face of mine be hid in": [0, 65535], "of mine be hid in sap": [0, 65535], "mine be hid in sap consuming": [0, 65535], "be hid in sap consuming winters": [0, 65535], "hid in sap consuming winters drizled": [0, 65535], "in sap consuming winters drizled snow": [0, 65535], "sap consuming winters drizled snow and": [0, 65535], "consuming winters drizled snow and all": [0, 65535], "winters drizled snow and all the": [0, 65535], "drizled snow and all the conduits": [0, 65535], "snow and all the conduits of": [0, 65535], "and all the conduits of my": [0, 65535], "all the conduits of my blood": [0, 65535], "the conduits of my blood froze": [0, 65535], "conduits of my blood froze vp": [0, 65535], "of my blood froze vp yet": [0, 65535], "my blood froze vp yet hath": [0, 65535], "blood froze vp yet hath my": [0, 65535], "froze vp yet hath my night": [0, 65535], "vp yet hath my night of": [0, 65535], "yet hath my night of life": [0, 65535], "hath my night of life some": [0, 65535], "my night of life some memorie": [0, 65535], "night of life some memorie my": [0, 65535], "of life some memorie my wasting": [0, 65535], "life some memorie my wasting lampes": [0, 65535], "some memorie my wasting lampes some": [0, 65535], "memorie my wasting lampes some fading": [0, 65535], "my wasting lampes some fading glimmer": [0, 65535], "wasting lampes some fading glimmer left": [0, 65535], "lampes some fading glimmer left my": [0, 65535], "some fading glimmer left my dull": [0, 65535], "fading glimmer left my dull deafe": [0, 65535], "glimmer left my dull deafe eares": [0, 65535], "left my dull deafe eares a": [0, 65535], "my dull deafe eares a little": [0, 65535], "dull deafe eares a little vse": [0, 65535], "deafe eares a little vse to": [0, 65535], "eares a little vse to heare": [0, 65535], "a little vse to heare all": [0, 65535], "little vse to heare all these": [0, 65535], "vse to heare all these old": [0, 65535], "to heare all these old witnesses": [0, 65535], "heare all these old witnesses i": [0, 65535], "all these old witnesses i cannot": [0, 65535], "these old witnesses i cannot erre": [0, 65535], "old witnesses i cannot erre tell": [0, 65535], "witnesses i cannot erre tell me": [0, 65535], "i cannot erre tell me thou": [0, 65535], "cannot erre tell me thou art": [0, 65535], "erre tell me thou art my": [0, 65535], "tell me thou art my sonne": [0, 65535], "me thou art my sonne antipholus": [0, 65535], "thou art my sonne antipholus ant": [0, 65535], "art my sonne antipholus ant i": [0, 65535], "my sonne antipholus ant i neuer": [0, 65535], "sonne antipholus ant i neuer saw": [0, 65535], "antipholus ant i neuer saw my": [0, 65535], "ant i neuer saw my father": [0, 65535], "i neuer saw my father in": [0, 65535], "neuer saw my father in my": [0, 65535], "saw my father in my life": [0, 65535], "my father in my life fa": [0, 65535], "father in my life fa but": [0, 65535], "in my life fa but seuen": [0, 65535], "my life fa but seuen yeares": [0, 65535], "life fa but seuen yeares since": [0, 65535], "fa but seuen yeares since in": [0, 65535], "but seuen yeares since in siracusa": [0, 65535], "seuen yeares since in siracusa boy": [0, 65535], "yeares since in siracusa boy thou": [0, 65535], "since in siracusa boy thou know'st": [0, 65535], "in siracusa boy thou know'st we": [0, 65535], "siracusa boy thou know'st we parted": [0, 65535], "boy thou know'st we parted but": [0, 65535], "thou know'st we parted but perhaps": [0, 65535], "know'st we parted but perhaps my": [0, 65535], "we parted but perhaps my sonne": [0, 65535], "parted but perhaps my sonne thou": [0, 65535], "but perhaps my sonne thou sham'st": [0, 65535], "perhaps my sonne thou sham'st to": [0, 65535], "my sonne thou sham'st to acknowledge": [0, 65535], "sonne thou sham'st to acknowledge me": [0, 65535], "thou sham'st to acknowledge me in": [0, 65535], "sham'st to acknowledge me in miserie": [0, 65535], "to acknowledge me in miserie ant": [0, 65535], "acknowledge me in miserie ant the": [0, 65535], "me in miserie ant the duke": [0, 65535], "in miserie ant the duke and": [0, 65535], "miserie ant the duke and all": [0, 65535], "ant the duke and all that": [0, 65535], "the duke and all that know": [0, 65535], "duke and all that know me": [0, 65535], "and all that know me in": [0, 65535], "all that know me in the": [0, 65535], "that know me in the city": [0, 65535], "know me in the city can": [0, 65535], "me in the city can witnesse": [0, 65535], "in the city can witnesse with": [0, 65535], "the city can witnesse with me": [0, 65535], "city can witnesse with me that": [0, 65535], "can witnesse with me that it": [0, 65535], "witnesse with me that it is": [0, 65535], "with me that it is not": [0, 65535], "me that it is not so": [0, 65535], "that it is not so i": [0, 65535], "it is not so i ne're": [0, 65535], "is not so i ne're saw": [0, 65535], "not so i ne're saw siracusa": [0, 65535], "so i ne're saw siracusa in": [0, 65535], "i ne're saw siracusa in my": [0, 65535], "ne're saw siracusa in my life": [0, 65535], "saw siracusa in my life duke": [0, 65535], "siracusa in my life duke i": [0, 65535], "in my life duke i tell": [0, 65535], "my life duke i tell thee": [0, 65535], "life duke i tell thee siracusian": [0, 65535], "duke i tell thee siracusian twentie": [0, 65535], "i tell thee siracusian twentie yeares": [0, 65535], "tell thee siracusian twentie yeares haue": [0, 65535], "thee siracusian twentie yeares haue i": [0, 65535], "siracusian twentie yeares haue i bin": [0, 65535], "twentie yeares haue i bin patron": [0, 65535], "yeares haue i bin patron to": [0, 65535], "haue i bin patron to antipholus": [0, 65535], "i bin patron to antipholus during": [0, 65535], "bin patron to antipholus during which": [0, 65535], "patron to antipholus during which time": [0, 65535], "to antipholus during which time he": [0, 65535], "antipholus during which time he ne're": [0, 65535], "during which time he ne're saw": [0, 65535], "which time he ne're saw siracusa": [0, 65535], "time he ne're saw siracusa i": [0, 65535], "he ne're saw siracusa i see": [0, 65535], "ne're saw siracusa i see thy": [0, 65535], "saw siracusa i see thy age": [0, 65535], "siracusa i see thy age and": [0, 65535], "i see thy age and dangers": [0, 65535], "see thy age and dangers make": [0, 65535], "thy age and dangers make thee": [0, 65535], "age and dangers make thee dote": [0, 65535], "and dangers make thee dote enter": [0, 65535], "dangers make thee dote enter the": [0, 65535], "make thee dote enter the abbesse": [0, 65535], "thee dote enter the abbesse with": [0, 65535], "dote enter the abbesse with antipholus": [0, 65535], "enter the abbesse with antipholus siracusa": [0, 65535], "the abbesse with antipholus siracusa and": [0, 65535], "abbesse with antipholus siracusa and dromio": [0, 65535], "with antipholus siracusa and dromio sir": [0, 65535], "antipholus siracusa and dromio sir abbesse": [0, 65535], "siracusa and dromio sir abbesse most": [0, 65535], "and dromio sir abbesse most mightie": [0, 65535], "dromio sir abbesse most mightie duke": [0, 65535], "sir abbesse most mightie duke behold": [0, 65535], "abbesse most mightie duke behold a": [0, 65535], "most mightie duke behold a man": [0, 65535], "mightie duke behold a man much": [0, 65535], "duke behold a man much wrong'd": [0, 65535], "behold a man much wrong'd all": [0, 65535], "a man much wrong'd all gather": [0, 65535], "man much wrong'd all gather to": [0, 65535], "much wrong'd all gather to see": [0, 65535], "wrong'd all gather to see them": [0, 65535], "all gather to see them adr": [0, 65535], "gather to see them adr i": [0, 65535], "to see them adr i see": [0, 65535], "see them adr i see two": [0, 65535], "them adr i see two husbands": [0, 65535], "adr i see two husbands or": [0, 65535], "i see two husbands or mine": [0, 65535], "see two husbands or mine eyes": [0, 65535], "two husbands or mine eyes deceiue": [0, 65535], "husbands or mine eyes deceiue me": [0, 65535], "or mine eyes deceiue me duke": [0, 65535], "mine eyes deceiue me duke one": [0, 65535], "eyes deceiue me duke one of": [0, 65535], "deceiue me duke one of these": [0, 65535], "me duke one of these men": [0, 65535], "duke one of these men is": [0, 65535], "one of these men is genius": [0, 65535], "of these men is genius to": [0, 65535], "these men is genius to the": [0, 65535], "men is genius to the other": [0, 65535], "is genius to the other and": [0, 65535], "genius to the other and so": [0, 65535], "to the other and so of": [0, 65535], "the other and so of these": [0, 65535], "other and so of these which": [0, 65535], "and so of these which is": [0, 65535], "so of these which is the": [0, 65535], "of these which is the naturall": [0, 65535], "these which is the naturall man": [0, 65535], "which is the naturall man and": [0, 65535], "is the naturall man and which": [0, 65535], "the naturall man and which the": [0, 65535], "naturall man and which the spirit": [0, 65535], "man and which the spirit who": [0, 65535], "and which the spirit who deciphers": [0, 65535], "which the spirit who deciphers them": [0, 65535], "the spirit who deciphers them s": [0, 65535], "spirit who deciphers them s dromio": [0, 65535], "who deciphers them s dromio i": [0, 65535], "deciphers them s dromio i sir": [0, 65535], "them s dromio i sir am": [0, 65535], "s dromio i sir am dromio": [0, 65535], "dromio i sir am dromio command": [0, 65535], "i sir am dromio command him": [0, 65535], "sir am dromio command him away": [0, 65535], "am dromio command him away e": [0, 65535], "dromio command him away e dro": [0, 65535], "command him away e dro i": [0, 65535], "him away e dro i sir": [0, 65535], "away e dro i sir am": [0, 65535], "e dro i sir am dromio": [0, 65535], "dro i sir am dromio pray": [0, 65535], "i sir am dromio pray let": [0, 65535], "sir am dromio pray let me": [0, 65535], "am dromio pray let me stay": [0, 65535], "dromio pray let me stay s": [0, 65535], "pray let me stay s ant": [0, 65535], "let me stay s ant egeon": [0, 65535], "me stay s ant egeon art": [0, 65535], "stay s ant egeon art thou": [0, 65535], "s ant egeon art thou not": [0, 65535], "ant egeon art thou not or": [0, 65535], "egeon art thou not or else": [0, 65535], "art thou not or else his": [0, 65535], "thou not or else his ghost": [0, 65535], "not or else his ghost s": [0, 65535], "or else his ghost s drom": [0, 65535], "else his ghost s drom oh": [0, 65535], "his ghost s drom oh my": [0, 65535], "ghost s drom oh my olde": [0, 65535], "s drom oh my olde master": [0, 65535], "drom oh my olde master who": [0, 65535], "oh my olde master who hath": [0, 65535], "my olde master who hath bound": [0, 65535], "olde master who hath bound him": [0, 65535], "master who hath bound him heere": [0, 65535], "who hath bound him heere abb": [0, 65535], "hath bound him heere abb who": [0, 65535], "bound him heere abb who euer": [0, 65535], "him heere abb who euer bound": [0, 65535], "heere abb who euer bound him": [0, 65535], "abb who euer bound him i": [0, 65535], "who euer bound him i will": [0, 65535], "euer bound him i will lose": [0, 65535], "bound him i will lose his": [0, 65535], "him i will lose his bonds": [0, 65535], "i will lose his bonds and": [0, 65535], "will lose his bonds and gaine": [0, 65535], "lose his bonds and gaine a": [0, 65535], "his bonds and gaine a husband": [0, 65535], "bonds and gaine a husband by": [0, 65535], "and gaine a husband by his": [0, 65535], "gaine a husband by his libertie": [0, 65535], "a husband by his libertie speake": [0, 65535], "husband by his libertie speake olde": [0, 65535], "by his libertie speake olde egeon": [0, 65535], "his libertie speake olde egeon if": [0, 65535], "libertie speake olde egeon if thou": [0, 65535], "speake olde egeon if thou bee'st": [0, 65535], "olde egeon if thou bee'st the": [0, 65535], "egeon if thou bee'st the man": [0, 65535], "if thou bee'st the man that": [0, 65535], "thou bee'st the man that hadst": [0, 65535], "bee'st the man that hadst a": [0, 65535], "the man that hadst a wife": [0, 65535], "man that hadst a wife once": [0, 65535], "that hadst a wife once call'd": [0, 65535], "hadst a wife once call'd \u00e6milia": [0, 65535], "a wife once call'd \u00e6milia that": [0, 65535], "wife once call'd \u00e6milia that bore": [0, 65535], "once call'd \u00e6milia that bore thee": [0, 65535], "call'd \u00e6milia that bore thee at": [0, 65535], "\u00e6milia that bore thee at a": [0, 65535], "that bore thee at a burthen": [0, 65535], "bore thee at a burthen two": [0, 65535], "thee at a burthen two faire": [0, 65535], "at a burthen two faire sonnes": [0, 65535], "a burthen two faire sonnes oh": [0, 65535], "burthen two faire sonnes oh if": [0, 65535], "two faire sonnes oh if thou": [0, 65535], "faire sonnes oh if thou bee'st": [0, 65535], "sonnes oh if thou bee'st the": [0, 65535], "oh if thou bee'st the same": [0, 65535], "if thou bee'st the same egeon": [0, 65535], "thou bee'st the same egeon speake": [0, 65535], "bee'st the same egeon speake and": [0, 65535], "the same egeon speake and speake": [0, 65535], "same egeon speake and speake vnto": [0, 65535], "egeon speake and speake vnto the": [0, 65535], "speake and speake vnto the same": [0, 65535], "and speake vnto the same \u00e6milia": [0, 65535], "speake vnto the same \u00e6milia duke": [0, 65535], "vnto the same \u00e6milia duke why": [0, 65535], "the same \u00e6milia duke why heere": [0, 65535], "same \u00e6milia duke why heere begins": [0, 65535], "\u00e6milia duke why heere begins his": [0, 65535], "duke why heere begins his morning": [0, 65535], "why heere begins his morning storie": [0, 65535], "heere begins his morning storie right": [0, 65535], "begins his morning storie right these": [0, 65535], "his morning storie right these twoantipholus": [0, 65535], "morning storie right these twoantipholus these": [0, 65535], "storie right these twoantipholus these two": [0, 65535], "right these twoantipholus these two so": [0, 65535], "these twoantipholus these two so like": [0, 65535], "twoantipholus these two so like and": [0, 65535], "these two so like and these": [0, 65535], "two so like and these two": [0, 65535], "so like and these two dromio's": [0, 65535], "like and these two dromio's one": [0, 65535], "and these two dromio's one in": [0, 65535], "these two dromio's one in semblance": [0, 65535], "two dromio's one in semblance besides": [0, 65535], "dromio's one in semblance besides her": [0, 65535], "one in semblance besides her vrging": [0, 65535], "in semblance besides her vrging of": [0, 65535], "semblance besides her vrging of her": [0, 65535], "besides her vrging of her wracke": [0, 65535], "her vrging of her wracke at": [0, 65535], "vrging of her wracke at sea": [0, 65535], "of her wracke at sea these": [0, 65535], "her wracke at sea these are": [0, 65535], "wracke at sea these are the": [0, 65535], "at sea these are the parents": [0, 65535], "sea these are the parents to": [0, 65535], "these are the parents to these": [0, 65535], "are the parents to these children": [0, 65535], "the parents to these children which": [0, 65535], "parents to these children which accidentally": [0, 65535], "to these children which accidentally are": [0, 65535], "these children which accidentally are met": [0, 65535], "children which accidentally are met together": [0, 65535], "which accidentally are met together fa": [0, 65535], "accidentally are met together fa if": [0, 65535], "are met together fa if i": [0, 65535], "met together fa if i dreame": [0, 65535], "together fa if i dreame not": [0, 65535], "fa if i dreame not thou": [0, 65535], "if i dreame not thou art": [0, 65535], "i dreame not thou art \u00e6milia": [0, 65535], "dreame not thou art \u00e6milia if": [0, 65535], "not thou art \u00e6milia if thou": [0, 65535], "thou art \u00e6milia if thou art": [0, 65535], "art \u00e6milia if thou art she": [0, 65535], "\u00e6milia if thou art she tell": [0, 65535], "if thou art she tell me": [0, 65535], "thou art she tell me where": [0, 65535], "art she tell me where is": [0, 65535], "she tell me where is that": [0, 65535], "tell me where is that sonne": [0, 65535], "me where is that sonne that": [0, 65535], "where is that sonne that floated": [0, 65535], "is that sonne that floated with": [0, 65535], "that sonne that floated with thee": [0, 65535], "sonne that floated with thee on": [0, 65535], "that floated with thee on the": [0, 65535], "floated with thee on the fatall": [0, 65535], "with thee on the fatall rafte": [0, 65535], "thee on the fatall rafte abb": [0, 65535], "on the fatall rafte abb by": [0, 65535], "the fatall rafte abb by men": [0, 65535], "fatall rafte abb by men of": [0, 65535], "rafte abb by men of epidamium": [0, 65535], "abb by men of epidamium he": [0, 65535], "by men of epidamium he and": [0, 65535], "men of epidamium he and i": [0, 65535], "of epidamium he and i and": [0, 65535], "epidamium he and i and the": [0, 65535], "he and i and the twin": [0, 65535], "and i and the twin dromio": [0, 65535], "i and the twin dromio all": [0, 65535], "and the twin dromio all were": [0, 65535], "the twin dromio all were taken": [0, 65535], "twin dromio all were taken vp": [0, 65535], "dromio all were taken vp but": [0, 65535], "all were taken vp but by": [0, 65535], "were taken vp but by and": [0, 65535], "taken vp but by and by": [0, 65535], "vp but by and by rude": [0, 65535], "but by and by rude fishermen": [0, 65535], "by and by rude fishermen of": [0, 65535], "and by rude fishermen of corinth": [0, 65535], "by rude fishermen of corinth by": [0, 65535], "rude fishermen of corinth by force": [0, 65535], "fishermen of corinth by force tooke": [0, 65535], "of corinth by force tooke dromio": [0, 65535], "corinth by force tooke dromio and": [0, 65535], "by force tooke dromio and my": [0, 65535], "force tooke dromio and my sonne": [0, 65535], "tooke dromio and my sonne from": [0, 65535], "dromio and my sonne from them": [0, 65535], "and my sonne from them and": [0, 65535], "my sonne from them and me": [0, 65535], "sonne from them and me they": [0, 65535], "from them and me they left": [0, 65535], "them and me they left with": [0, 65535], "and me they left with those": [0, 65535], "me they left with those of": [0, 65535], "they left with those of epidamium": [0, 65535], "left with those of epidamium what": [0, 65535], "with those of epidamium what then": [0, 65535], "those of epidamium what then became": [0, 65535], "of epidamium what then became of": [0, 65535], "epidamium what then became of them": [0, 65535], "what then became of them i": [0, 65535], "then became of them i cannot": [0, 65535], "became of them i cannot tell": [0, 65535], "of them i cannot tell i": [0, 65535], "them i cannot tell i to": [0, 65535], "i cannot tell i to this": [0, 65535], "cannot tell i to this fortune": [0, 65535], "tell i to this fortune that": [0, 65535], "i to this fortune that you": [0, 65535], "to this fortune that you see": [0, 65535], "this fortune that you see mee": [0, 65535], "fortune that you see mee in": [0, 65535], "that you see mee in duke": [0, 65535], "you see mee in duke antipholus": [0, 65535], "see mee in duke antipholus thou": [0, 65535], "mee in duke antipholus thou cam'st": [0, 65535], "in duke antipholus thou cam'st from": [0, 65535], "duke antipholus thou cam'st from corinth": [0, 65535], "antipholus thou cam'st from corinth first": [0, 65535], "thou cam'st from corinth first s": [0, 65535], "cam'st from corinth first s ant": [0, 65535], "from corinth first s ant no": [0, 65535], "corinth first s ant no sir": [0, 65535], "first s ant no sir not": [0, 65535], "s ant no sir not i": [0, 65535], "ant no sir not i i": [0, 65535], "no sir not i i came": [0, 65535], "sir not i i came from": [0, 65535], "not i i came from siracuse": [0, 65535], "i i came from siracuse duke": [0, 65535], "i came from siracuse duke stay": [0, 65535], "came from siracuse duke stay stand": [0, 65535], "from siracuse duke stay stand apart": [0, 65535], "siracuse duke stay stand apart i": [0, 65535], "duke stay stand apart i know": [0, 65535], "stay stand apart i know not": [0, 65535], "stand apart i know not which": [0, 65535], "apart i know not which is": [0, 65535], "i know not which is which": [0, 65535], "know not which is which e": [0, 65535], "not which is which e ant": [0, 65535], "which is which e ant i": [0, 65535], "is which e ant i came": [0, 65535], "which e ant i came from": [0, 65535], "e ant i came from corinth": [0, 65535], "ant i came from corinth my": [0, 65535], "i came from corinth my most": [0, 65535], "came from corinth my most gracious": [0, 65535], "from corinth my most gracious lord": [0, 65535], "corinth my most gracious lord e": [0, 65535], "my most gracious lord e dro": [0, 65535], "most gracious lord e dro and": [0, 65535], "gracious lord e dro and i": [0, 65535], "lord e dro and i with": [0, 65535], "e dro and i with him": [0, 65535], "dro and i with him e": [0, 65535], "and i with him e ant": [0, 65535], "i with him e ant brought": [0, 65535], "with him e ant brought to": [0, 65535], "him e ant brought to this": [0, 65535], "e ant brought to this town": [0, 65535], "ant brought to this town by": [0, 65535], "brought to this town by that": [0, 65535], "to this town by that most": [0, 65535], "this town by that most famous": [0, 65535], "town by that most famous warriour": [0, 65535], "by that most famous warriour duke": [0, 65535], "that most famous warriour duke menaphon": [0, 65535], "most famous warriour duke menaphon your": [0, 65535], "famous warriour duke menaphon your most": [0, 65535], "warriour duke menaphon your most renowned": [0, 65535], "duke menaphon your most renowned vnckle": [0, 65535], "menaphon your most renowned vnckle adr": [0, 65535], "your most renowned vnckle adr which": [0, 65535], "most renowned vnckle adr which of": [0, 65535], "renowned vnckle adr which of you": [0, 65535], "vnckle adr which of you two": [0, 65535], "adr which of you two did": [0, 65535], "which of you two did dine": [0, 65535], "of you two did dine with": [0, 65535], "you two did dine with me": [0, 65535], "two did dine with me to": [0, 65535], "did dine with me to day": [0, 65535], "dine with me to day s": [0, 65535], "with me to day s ant": [0, 65535], "me to day s ant i": [0, 65535], "to day s ant i gentle": [0, 65535], "day s ant i gentle mistris": [0, 65535], "s ant i gentle mistris adr": [0, 65535], "ant i gentle mistris adr and": [0, 65535], "i gentle mistris adr and are": [0, 65535], "gentle mistris adr and are not": [0, 65535], "mistris adr and are not you": [0, 65535], "adr and are not you my": [0, 65535], "and are not you my husband": [0, 65535], "are not you my husband e": [0, 65535], "not you my husband e ant": [0, 65535], "you my husband e ant no": [0, 65535], "my husband e ant no i": [0, 65535], "husband e ant no i say": [0, 65535], "e ant no i say nay": [0, 65535], "ant no i say nay to": [0, 65535], "no i say nay to that": [0, 65535], "i say nay to that s": [0, 65535], "say nay to that s ant": [0, 65535], "nay to that s ant and": [0, 65535], "to that s ant and so": [0, 65535], "that s ant and so do": [0, 65535], "s ant and so do i": [0, 65535], "ant and so do i yet": [0, 65535], "and so do i yet did": [0, 65535], "so do i yet did she": [0, 65535], "do i yet did she call": [0, 65535], "i yet did she call me": [0, 65535], "yet did she call me so": [0, 65535], "did she call me so and": [0, 65535], "she call me so and this": [0, 65535], "call me so and this faire": [0, 65535], "me so and this faire gentlewoman": [0, 65535], "so and this faire gentlewoman her": [0, 65535], "and this faire gentlewoman her sister": [0, 65535], "this faire gentlewoman her sister heere": [0, 65535], "faire gentlewoman her sister heere did": [0, 65535], "gentlewoman her sister heere did call": [0, 65535], "her sister heere did call me": [0, 65535], "sister heere did call me brother": [0, 65535], "heere did call me brother what": [0, 65535], "did call me brother what i": [0, 65535], "call me brother what i told": [0, 65535], "me brother what i told you": [0, 65535], "brother what i told you then": [0, 65535], "what i told you then i": [0, 65535], "i told you then i hope": [0, 65535], "told you then i hope i": [0, 65535], "you then i hope i shall": [0, 65535], "then i hope i shall haue": [0, 65535], "i hope i shall haue leisure": [0, 65535], "hope i shall haue leisure to": [0, 65535], "i shall haue leisure to make": [0, 65535], "shall haue leisure to make good": [0, 65535], "haue leisure to make good if": [0, 65535], "leisure to make good if this": [0, 65535], "to make good if this be": [0, 65535], "make good if this be not": [0, 65535], "good if this be not a": [0, 65535], "if this be not a dreame": [0, 65535], "this be not a dreame i": [0, 65535], "be not a dreame i see": [0, 65535], "not a dreame i see and": [0, 65535], "a dreame i see and heare": [0, 65535], "dreame i see and heare goldsmith": [0, 65535], "i see and heare goldsmith that": [0, 65535], "see and heare goldsmith that is": [0, 65535], "and heare goldsmith that is the": [0, 65535], "heare goldsmith that is the chaine": [0, 65535], "goldsmith that is the chaine sir": [0, 65535], "that is the chaine sir which": [0, 65535], "is the chaine sir which you": [0, 65535], "the chaine sir which you had": [0, 65535], "chaine sir which you had of": [0, 65535], "sir which you had of mee": [0, 65535], "which you had of mee s": [0, 65535], "you had of mee s ant": [0, 65535], "had of mee s ant i": [0, 65535], "of mee s ant i thinke": [0, 65535], "mee s ant i thinke it": [0, 65535], "s ant i thinke it be": [0, 65535], "ant i thinke it be sir": [0, 65535], "i thinke it be sir i": [0, 65535], "thinke it be sir i denie": [0, 65535], "it be sir i denie it": [0, 65535], "be sir i denie it not": [0, 65535], "sir i denie it not e": [0, 65535], "i denie it not e ant": [0, 65535], "denie it not e ant and": [0, 65535], "it not e ant and you": [0, 65535], "not e ant and you sir": [0, 65535], "e ant and you sir for": [0, 65535], "ant and you sir for this": [0, 65535], "and you sir for this chaine": [0, 65535], "you sir for this chaine arrested": [0, 65535], "sir for this chaine arrested me": [0, 65535], "for this chaine arrested me gold": [0, 65535], "this chaine arrested me gold i": [0, 65535], "chaine arrested me gold i thinke": [0, 65535], "arrested me gold i thinke i": [0, 65535], "me gold i thinke i did": [0, 65535], "gold i thinke i did sir": [0, 65535], "i thinke i did sir i": [0, 65535], "thinke i did sir i deny": [0, 65535], "i did sir i deny it": [0, 65535], "did sir i deny it not": [0, 65535], "sir i deny it not adr": [0, 65535], "i deny it not adr i": [0, 65535], "deny it not adr i sent": [0, 65535], "it not adr i sent you": [0, 65535], "not adr i sent you monie": [0, 65535], "adr i sent you monie sir": [0, 65535], "i sent you monie sir to": [0, 65535], "sent you monie sir to be": [0, 65535], "you monie sir to be your": [0, 65535], "monie sir to be your baile": [0, 65535], "sir to be your baile by": [0, 65535], "to be your baile by dromio": [0, 65535], "be your baile by dromio but": [0, 65535], "your baile by dromio but i": [0, 65535], "baile by dromio but i thinke": [0, 65535], "by dromio but i thinke he": [0, 65535], "dromio but i thinke he brought": [0, 65535], "but i thinke he brought it": [0, 65535], "i thinke he brought it not": [0, 65535], "thinke he brought it not e": [0, 65535], "he brought it not e dro": [0, 65535], "brought it not e dro no": [0, 65535], "it not e dro no none": [0, 65535], "not e dro no none by": [0, 65535], "e dro no none by me": [0, 65535], "dro no none by me s": [0, 65535], "no none by me s ant": [0, 65535], "none by me s ant this": [0, 65535], "by me s ant this purse": [0, 65535], "me s ant this purse of": [0, 65535], "s ant this purse of duckets": [0, 65535], "ant this purse of duckets i": [0, 65535], "this purse of duckets i receiu'd": [0, 65535], "purse of duckets i receiu'd from": [0, 65535], "of duckets i receiu'd from you": [0, 65535], "duckets i receiu'd from you and": [0, 65535], "i receiu'd from you and dromio": [0, 65535], "receiu'd from you and dromio my": [0, 65535], "from you and dromio my man": [0, 65535], "you and dromio my man did": [0, 65535], "and dromio my man did bring": [0, 65535], "dromio my man did bring them": [0, 65535], "my man did bring them me": [0, 65535], "man did bring them me i": [0, 65535], "did bring them me i see": [0, 65535], "bring them me i see we": [0, 65535], "them me i see we still": [0, 65535], "me i see we still did": [0, 65535], "i see we still did meete": [0, 65535], "see we still did meete each": [0, 65535], "we still did meete each others": [0, 65535], "still did meete each others man": [0, 65535], "did meete each others man and": [0, 65535], "meete each others man and i": [0, 65535], "each others man and i was": [0, 65535], "others man and i was tane": [0, 65535], "man and i was tane for": [0, 65535], "and i was tane for him": [0, 65535], "i was tane for him and": [0, 65535], "was tane for him and he": [0, 65535], "tane for him and he for": [0, 65535], "for him and he for me": [0, 65535], "him and he for me and": [0, 65535], "and he for me and thereupon": [0, 65535], "he for me and thereupon these": [0, 65535], "for me and thereupon these errors": [0, 65535], "me and thereupon these errors are": [0, 65535], "and thereupon these errors are arose": [0, 65535], "thereupon these errors are arose e": [0, 65535], "these errors are arose e ant": [0, 65535], "errors are arose e ant these": [0, 65535], "are arose e ant these duckets": [0, 65535], "arose e ant these duckets pawne": [0, 65535], "e ant these duckets pawne i": [0, 65535], "ant these duckets pawne i for": [0, 65535], "these duckets pawne i for my": [0, 65535], "duckets pawne i for my father": [0, 65535], "pawne i for my father heere": [0, 65535], "i for my father heere duke": [0, 65535], "for my father heere duke it": [0, 65535], "my father heere duke it shall": [0, 65535], "father heere duke it shall not": [0, 65535], "heere duke it shall not neede": [0, 65535], "duke it shall not neede thy": [0, 65535], "it shall not neede thy father": [0, 65535], "shall not neede thy father hath": [0, 65535], "not neede thy father hath his": [0, 65535], "neede thy father hath his life": [0, 65535], "thy father hath his life cur": [0, 65535], "father hath his life cur sir": [0, 65535], "hath his life cur sir i": [0, 65535], "his life cur sir i must": [0, 65535], "life cur sir i must haue": [0, 65535], "cur sir i must haue that": [0, 65535], "sir i must haue that diamond": [0, 65535], "i must haue that diamond from": [0, 65535], "must haue that diamond from you": [0, 65535], "haue that diamond from you e": [0, 65535], "that diamond from you e ant": [0, 65535], "diamond from you e ant there": [0, 65535], "from you e ant there take": [0, 65535], "you e ant there take it": [0, 65535], "e ant there take it and": [0, 65535], "ant there take it and much": [0, 65535], "there take it and much thanks": [0, 65535], "take it and much thanks for": [0, 65535], "it and much thanks for my": [0, 65535], "and much thanks for my good": [0, 65535], "much thanks for my good cheere": [0, 65535], "thanks for my good cheere abb": [0, 65535], "for my good cheere abb renowned": [0, 65535], "my good cheere abb renowned duke": [0, 65535], "good cheere abb renowned duke vouchsafe": [0, 65535], "cheere abb renowned duke vouchsafe to": [0, 65535], "abb renowned duke vouchsafe to take": [0, 65535], "renowned duke vouchsafe to take the": [0, 65535], "duke vouchsafe to take the paines": [0, 65535], "vouchsafe to take the paines to": [0, 65535], "to take the paines to go": [0, 65535], "take the paines to go with": [0, 65535], "the paines to go with vs": [0, 65535], "paines to go with vs into": [0, 65535], "to go with vs into the": [0, 65535], "go with vs into the abbey": [0, 65535], "with vs into the abbey heere": [0, 65535], "vs into the abbey heere and": [0, 65535], "into the abbey heere and heare": [0, 65535], "the abbey heere and heare at": [0, 65535], "abbey heere and heare at large": [0, 65535], "heere and heare at large discoursed": [0, 65535], "and heare at large discoursed all": [0, 65535], "heare at large discoursed all our": [0, 65535], "at large discoursed all our fortunes": [0, 65535], "large discoursed all our fortunes and": [0, 65535], "discoursed all our fortunes and all": [0, 65535], "all our fortunes and all that": [0, 65535], "our fortunes and all that are": [0, 65535], "fortunes and all that are assembled": [0, 65535], "and all that are assembled in": [0, 65535], "all that are assembled in this": [0, 65535], "that are assembled in this place": [0, 65535], "are assembled in this place that": [0, 65535], "assembled in this place that by": [0, 65535], "in this place that by this": [0, 65535], "this place that by this simpathized": [0, 65535], "place that by this simpathized one": [0, 65535], "that by this simpathized one daies": [0, 65535], "by this simpathized one daies error": [0, 65535], "this simpathized one daies error haue": [0, 65535], "simpathized one daies error haue suffer'd": [0, 65535], "one daies error haue suffer'd wrong": [0, 65535], "daies error haue suffer'd wrong goe": [0, 65535], "error haue suffer'd wrong goe keepe": [0, 65535], "haue suffer'd wrong goe keepe vs": [0, 65535], "suffer'd wrong goe keepe vs companie": [0, 65535], "wrong goe keepe vs companie and": [0, 65535], "goe keepe vs companie and we": [0, 65535], "keepe vs companie and we shall": [0, 65535], "vs companie and we shall make": [0, 65535], "companie and we shall make full": [0, 65535], "and we shall make full satisfaction": [0, 65535], "we shall make full satisfaction thirtie": [0, 65535], "shall make full satisfaction thirtie three": [0, 65535], "make full satisfaction thirtie three yeares": [0, 65535], "full satisfaction thirtie three yeares haue": [0, 65535], "satisfaction thirtie three yeares haue i": [0, 65535], "thirtie three yeares haue i but": [0, 65535], "three yeares haue i but gone": [0, 65535], "yeares haue i but gone in": [0, 65535], "haue i but gone in trauaile": [0, 65535], "i but gone in trauaile of": [0, 65535], "but gone in trauaile of you": [0, 65535], "gone in trauaile of you my": [0, 65535], "in trauaile of you my sonnes": [0, 65535], "trauaile of you my sonnes and": [0, 65535], "of you my sonnes and till": [0, 65535], "you my sonnes and till this": [0, 65535], "my sonnes and till this present": [0, 65535], "sonnes and till this present houre": [0, 65535], "and till this present houre my": [0, 65535], "till this present houre my heauie": [0, 65535], "this present houre my heauie burthen": [0, 65535], "present houre my heauie burthen are": [0, 65535], "houre my heauie burthen are deliuered": [0, 65535], "my heauie burthen are deliuered the": [0, 65535], "heauie burthen are deliuered the duke": [0, 65535], "burthen are deliuered the duke my": [0, 65535], "are deliuered the duke my husband": [0, 65535], "deliuered the duke my husband and": [0, 65535], "the duke my husband and my": [0, 65535], "duke my husband and my children": [0, 65535], "my husband and my children both": [0, 65535], "husband and my children both and": [0, 65535], "and my children both and you": [0, 65535], "my children both and you the": [0, 65535], "children both and you the kalenders": [0, 65535], "both and you the kalenders of": [0, 65535], "and you the kalenders of their": [0, 65535], "you the kalenders of their natiuity": [0, 65535], "the kalenders of their natiuity go": [0, 65535], "kalenders of their natiuity go to": [0, 65535], "of their natiuity go to a": [0, 65535], "their natiuity go to a gossips": [0, 65535], "natiuity go to a gossips feast": [0, 65535], "go to a gossips feast and": [0, 65535], "to a gossips feast and go": [0, 65535], "a gossips feast and go with": [0, 65535], "gossips feast and go with mee": [0, 65535], "feast and go with mee after": [0, 65535], "and go with mee after so": [0, 65535], "go with mee after so long": [0, 65535], "with mee after so long greefe": [0, 65535], "mee after so long greefe such": [0, 65535], "after so long greefe such natiuitie": [0, 65535], "so long greefe such natiuitie duke": [0, 65535], "long greefe such natiuitie duke with": [0, 65535], "greefe such natiuitie duke with all": [0, 65535], "such natiuitie duke with all my": [0, 65535], "natiuitie duke with all my heart": [0, 65535], "duke with all my heart ile": [0, 65535], "with all my heart ile gossip": [0, 65535], "all my heart ile gossip at": [0, 65535], "my heart ile gossip at this": [0, 65535], "heart ile gossip at this feast": [0, 65535], "ile gossip at this feast exeunt": [0, 65535], "gossip at this feast exeunt omnes": [0, 65535], "at this feast exeunt omnes manet": [0, 65535], "this feast exeunt omnes manet the": [0, 65535], "feast exeunt omnes manet the two": [0, 65535], "exeunt omnes manet the two dromio's": [0, 65535], "omnes manet the two dromio's and": [0, 65535], "manet the two dromio's and two": [0, 65535], "the two dromio's and two brothers": [0, 65535], "two dromio's and two brothers s": [0, 65535], "dromio's and two brothers s dro": [0, 65535], "and two brothers s dro mast": [0, 65535], "two brothers s dro mast shall": [0, 65535], "brothers s dro mast shall i": [0, 65535], "s dro mast shall i fetch": [0, 65535], "dro mast shall i fetch your": [0, 65535], "mast shall i fetch your stuffe": [0, 65535], "shall i fetch your stuffe from": [0, 65535], "i fetch your stuffe from shipbord": [0, 65535], "fetch your stuffe from shipbord e": [0, 65535], "your stuffe from shipbord e an": [0, 65535], "stuffe from shipbord e an dromio": [0, 65535], "from shipbord e an dromio what": [0, 65535], "shipbord e an dromio what stuffe": [0, 65535], "e an dromio what stuffe of": [0, 65535], "an dromio what stuffe of mine": [0, 65535], "dromio what stuffe of mine hast": [0, 65535], "what stuffe of mine hast thou": [0, 65535], "stuffe of mine hast thou imbarkt": [0, 65535], "of mine hast thou imbarkt s": [0, 65535], "mine hast thou imbarkt s dro": [0, 65535], "hast thou imbarkt s dro your": [0, 65535], "thou imbarkt s dro your goods": [0, 65535], "imbarkt s dro your goods that": [0, 65535], "s dro your goods that lay": [0, 65535], "dro your goods that lay at": [0, 65535], "your goods that lay at host": [0, 65535], "goods that lay at host sir": [0, 65535], "that lay at host sir in": [0, 65535], "lay at host sir in the": [0, 65535], "at host sir in the centaur": [0, 65535], "host sir in the centaur s": [0, 65535], "sir in the centaur s ant": [0, 65535], "in the centaur s ant he": [0, 65535], "the centaur s ant he speakes": [0, 65535], "centaur s ant he speakes to": [0, 65535], "s ant he speakes to me": [0, 65535], "ant he speakes to me i": [0, 65535], "he speakes to me i am": [0, 65535], "speakes to me i am your": [0, 65535], "to me i am your master": [0, 65535], "me i am your master dromio": [0, 65535], "i am your master dromio come": [0, 65535], "am your master dromio come go": [0, 65535], "your master dromio come go with": [0, 65535], "master dromio come go with vs": [0, 65535], "dromio come go with vs wee'l": [0, 65535], "come go with vs wee'l looke": [0, 65535], "go with vs wee'l looke to": [0, 65535], "with vs wee'l looke to that": [0, 65535], "vs wee'l looke to that anon": [0, 65535], "wee'l looke to that anon embrace": [0, 65535], "looke to that anon embrace thy": [0, 65535], "to that anon embrace thy brother": [0, 65535], "that anon embrace thy brother there": [0, 65535], "anon embrace thy brother there reioyce": [0, 65535], "embrace thy brother there reioyce with": [0, 65535], "thy brother there reioyce with him": [0, 65535], "brother there reioyce with him exit": [0, 65535], "there reioyce with him exit s": [0, 65535], "reioyce with him exit s dro": [0, 65535], "with him exit s dro there": [0, 65535], "him exit s dro there is": [0, 65535], "exit s dro there is a": [0, 65535], "s dro there is a fat": [0, 65535], "dro there is a fat friend": [0, 65535], "there is a fat friend at": [0, 65535], "is a fat friend at your": [0, 65535], "a fat friend at your masters": [0, 65535], "fat friend at your masters house": [0, 65535], "friend at your masters house that": [0, 65535], "at your masters house that kitchin'd": [0, 65535], "your masters house that kitchin'd me": [0, 65535], "masters house that kitchin'd me for": [0, 65535], "house that kitchin'd me for you": [0, 65535], "that kitchin'd me for you to": [0, 65535], "kitchin'd me for you to day": [0, 65535], "me for you to day at": [0, 65535], "for you to day at dinner": [0, 65535], "you to day at dinner she": [0, 65535], "to day at dinner she now": [0, 65535], "day at dinner she now shall": [0, 65535], "at dinner she now shall be": [0, 65535], "dinner she now shall be my": [0, 65535], "she now shall be my sister": [0, 65535], "now shall be my sister not": [0, 65535], "shall be my sister not my": [0, 65535], "be my sister not my wife": [0, 65535], "my sister not my wife e": [0, 65535], "sister not my wife e d": [0, 65535], "not my wife e d me": [0, 65535], "my wife e d me thinks": [0, 65535], "wife e d me thinks you": [0, 65535], "e d me thinks you are": [0, 65535], "d me thinks you are my": [0, 65535], "me thinks you are my glasse": [0, 65535], "thinks you are my glasse not": [0, 65535], "you are my glasse not my": [0, 65535], "are my glasse not my brother": [0, 65535], "my glasse not my brother i": [0, 65535], "glasse not my brother i see": [0, 65535], "not my brother i see by": [0, 65535], "my brother i see by you": [0, 65535], "brother i see by you i": [0, 65535], "i see by you i am": [0, 65535], "see by you i am a": [0, 65535], "by you i am a sweet": [0, 65535], "you i am a sweet fac'd": [0, 65535], "i am a sweet fac'd youth": [0, 65535], "am a sweet fac'd youth will": [0, 65535], "a sweet fac'd youth will you": [0, 65535], "sweet fac'd youth will you walke": [0, 65535], "fac'd youth will you walke in": [0, 65535], "youth will you walke in to": [0, 65535], "will you walke in to see": [0, 65535], "you walke in to see their": [0, 65535], "walke in to see their gossipping": [0, 65535], "in to see their gossipping s": [0, 65535], "to see their gossipping s dro": [0, 65535], "see their gossipping s dro not": [0, 65535], "their gossipping s dro not i": [0, 65535], "gossipping s dro not i sir": [0, 65535], "s dro not i sir you": [0, 65535], "dro not i sir you are": [0, 65535], "not i sir you are my": [0, 65535], "i sir you are my elder": [0, 65535], "sir you are my elder e": [0, 65535], "you are my elder e dro": [0, 65535], "are my elder e dro that's": [0, 65535], "my elder e dro that's a": [0, 65535], "elder e dro that's a question": [0, 65535], "e dro that's a question how": [0, 65535], "dro that's a question how shall": [0, 65535], "that's a question how shall we": [0, 65535], "a question how shall we trie": [0, 65535], "question how shall we trie it": [0, 65535], "how shall we trie it s": [0, 65535], "shall we trie it s dro": [0, 65535], "we trie it s dro wee'l": [0, 65535], "trie it s dro wee'l draw": [0, 65535], "it s dro wee'l draw cuts": [0, 65535], "s dro wee'l draw cuts for": [0, 65535], "dro wee'l draw cuts for the": [0, 65535], "wee'l draw cuts for the signior": [0, 65535], "draw cuts for the signior till": [0, 65535], "cuts for the signior till then": [0, 65535], "for the signior till then lead": [0, 65535], "the signior till then lead thou": [0, 65535], "signior till then lead thou first": [0, 65535], "till then lead thou first e": [0, 65535], "then lead thou first e dro": [0, 65535], "lead thou first e dro nay": [0, 65535], "thou first e dro nay then": [0, 65535], "first e dro nay then thus": [0, 65535], "e dro nay then thus we": [0, 65535], "dro nay then thus we came": [0, 65535], "nay then thus we came into": [0, 65535], "then thus we came into the": [0, 65535], "thus we came into the world": [0, 65535], "we came into the world like": [0, 65535], "came into the world like brother": [0, 65535], "into the world like brother and": [0, 65535], "the world like brother and brother": [0, 65535], "world like brother and brother and": [0, 65535], "like brother and brother and now": [0, 65535], "brother and brother and now let's": [0, 65535], "and brother and now let's go": [0, 65535], "brother and now let's go hand": [0, 65535], "and now let's go hand in": [0, 65535], "now let's go hand in hand": [0, 65535], "let's go hand in hand not": [0, 65535], "go hand in hand not one": [0, 65535], "hand in hand not one before": [0, 65535], "in hand not one before another": [0, 65535], "hand not one before another exeunt": [0, 65535], "not one before another exeunt finis": [0, 65535], "actus quintus sc\u0153na prima enter the merchant": [0, 65535], "quintus sc\u0153na prima enter the merchant and": [0, 65535], "sc\u0153na prima enter the merchant and the": [0, 65535], "prima enter the merchant and the goldsmith": [0, 65535], "enter the merchant and the goldsmith gold": [0, 65535], "the merchant and the goldsmith gold i": [0, 65535], "merchant and the goldsmith gold i am": [0, 65535], "and the goldsmith gold i am sorry": [0, 65535], "the goldsmith gold i am sorry sir": [0, 65535], "goldsmith gold i am sorry sir that": [0, 65535], "gold i am sorry sir that i": [0, 65535], "i am sorry sir that i haue": [0, 65535], "am sorry sir that i haue hindred": [0, 65535], "sorry sir that i haue hindred you": [0, 65535], "sir that i haue hindred you but": [0, 65535], "that i haue hindred you but i": [0, 65535], "i haue hindred you but i protest": [0, 65535], "haue hindred you but i protest he": [0, 65535], "hindred you but i protest he had": [0, 65535], "you but i protest he had the": [0, 65535], "but i protest he had the chaine": [0, 65535], "i protest he had the chaine of": [0, 65535], "protest he had the chaine of me": [0, 65535], "he had the chaine of me though": [0, 65535], "had the chaine of me though most": [0, 65535], "the chaine of me though most dishonestly": [0, 65535], "chaine of me though most dishonestly he": [0, 65535], "of me though most dishonestly he doth": [0, 65535], "me though most dishonestly he doth denie": [0, 65535], "though most dishonestly he doth denie it": [0, 65535], "most dishonestly he doth denie it mar": [0, 65535], "dishonestly he doth denie it mar how": [0, 65535], "he doth denie it mar how is": [0, 65535], "doth denie it mar how is the": [0, 65535], "denie it mar how is the man": [0, 65535], "it mar how is the man esteem'd": [0, 65535], "mar how is the man esteem'd heere": [0, 65535], "how is the man esteem'd heere in": [0, 65535], "is the man esteem'd heere in the": [0, 65535], "the man esteem'd heere in the citie": [0, 65535], "man esteem'd heere in the citie gold": [0, 65535], "esteem'd heere in the citie gold of": [0, 65535], "heere in the citie gold of very": [0, 65535], "in the citie gold of very reuerent": [0, 65535], "the citie gold of very reuerent reputation": [0, 65535], "citie gold of very reuerent reputation sir": [0, 65535], "gold of very reuerent reputation sir of": [0, 65535], "of very reuerent reputation sir of credit": [0, 65535], "very reuerent reputation sir of credit infinite": [0, 65535], "reuerent reputation sir of credit infinite highly": [0, 65535], "reputation sir of credit infinite highly belou'd": [0, 65535], "sir of credit infinite highly belou'd second": [0, 65535], "of credit infinite highly belou'd second to": [0, 65535], "credit infinite highly belou'd second to none": [0, 65535], "infinite highly belou'd second to none that": [0, 65535], "highly belou'd second to none that liues": [0, 65535], "belou'd second to none that liues heere": [0, 65535], "second to none that liues heere in": [0, 65535], "to none that liues heere in the": [0, 65535], "none that liues heere in the citie": [0, 65535], "that liues heere in the citie his": [0, 65535], "liues heere in the citie his word": [0, 65535], "heere in the citie his word might": [0, 65535], "in the citie his word might beare": [0, 65535], "the citie his word might beare my": [0, 65535], "citie his word might beare my wealth": [0, 65535], "his word might beare my wealth at": [0, 65535], "word might beare my wealth at any": [0, 65535], "might beare my wealth at any time": [0, 65535], "beare my wealth at any time mar": [0, 65535], "my wealth at any time mar speake": [0, 65535], "wealth at any time mar speake softly": [0, 65535], "at any time mar speake softly yonder": [0, 65535], "any time mar speake softly yonder as": [0, 65535], "time mar speake softly yonder as i": [0, 65535], "mar speake softly yonder as i thinke": [0, 65535], "speake softly yonder as i thinke he": [0, 65535], "softly yonder as i thinke he walkes": [0, 65535], "yonder as i thinke he walkes enter": [0, 65535], "as i thinke he walkes enter antipholus": [0, 65535], "i thinke he walkes enter antipholus and": [0, 65535], "thinke he walkes enter antipholus and dromio": [0, 65535], "he walkes enter antipholus and dromio againe": [0, 65535], "walkes enter antipholus and dromio againe gold": [0, 65535], "enter antipholus and dromio againe gold 'tis": [0, 65535], "antipholus and dromio againe gold 'tis so": [0, 65535], "and dromio againe gold 'tis so and": [0, 65535], "dromio againe gold 'tis so and that": [0, 65535], "againe gold 'tis so and that selfe": [0, 65535], "gold 'tis so and that selfe chaine": [0, 65535], "'tis so and that selfe chaine about": [0, 65535], "so and that selfe chaine about his": [0, 65535], "and that selfe chaine about his necke": [0, 65535], "that selfe chaine about his necke which": [0, 65535], "selfe chaine about his necke which he": [0, 65535], "chaine about his necke which he forswore": [0, 65535], "about his necke which he forswore most": [0, 65535], "his necke which he forswore most monstrously": [0, 65535], "necke which he forswore most monstrously to": [0, 65535], "which he forswore most monstrously to haue": [0, 65535], "he forswore most monstrously to haue good": [0, 65535], "forswore most monstrously to haue good sir": [0, 65535], "most monstrously to haue good sir draw": [0, 65535], "monstrously to haue good sir draw neere": [0, 65535], "to haue good sir draw neere to": [0, 65535], "haue good sir draw neere to me": [0, 65535], "good sir draw neere to me ile": [0, 65535], "sir draw neere to me ile speake": [0, 65535], "draw neere to me ile speake to": [0, 65535], "neere to me ile speake to him": [0, 65535], "to me ile speake to him signior": [0, 65535], "me ile speake to him signior antipholus": [0, 65535], "ile speake to him signior antipholus i": [0, 65535], "speake to him signior antipholus i wonder": [0, 65535], "to him signior antipholus i wonder much": [0, 65535], "him signior antipholus i wonder much that": [0, 65535], "signior antipholus i wonder much that you": [0, 65535], "antipholus i wonder much that you would": [0, 65535], "i wonder much that you would put": [0, 65535], "wonder much that you would put me": [0, 65535], "much that you would put me to": [0, 65535], "that you would put me to this": [0, 65535], "you would put me to this shame": [0, 65535], "would put me to this shame and": [0, 65535], "put me to this shame and trouble": [0, 65535], "me to this shame and trouble and": [0, 65535], "to this shame and trouble and not": [0, 65535], "this shame and trouble and not without": [0, 65535], "shame and trouble and not without some": [0, 65535], "and trouble and not without some scandall": [0, 65535], "trouble and not without some scandall to": [0, 65535], "and not without some scandall to your": [0, 65535], "not without some scandall to your selfe": [0, 65535], "without some scandall to your selfe with": [0, 65535], "some scandall to your selfe with circumstance": [0, 65535], "scandall to your selfe with circumstance and": [0, 65535], "to your selfe with circumstance and oaths": [0, 65535], "your selfe with circumstance and oaths so": [0, 65535], "selfe with circumstance and oaths so to": [0, 65535], "with circumstance and oaths so to denie": [0, 65535], "circumstance and oaths so to denie this": [0, 65535], "and oaths so to denie this chaine": [0, 65535], "oaths so to denie this chaine which": [0, 65535], "so to denie this chaine which now": [0, 65535], "to denie this chaine which now you": [0, 65535], "denie this chaine which now you weare": [0, 65535], "this chaine which now you weare so": [0, 65535], "chaine which now you weare so openly": [0, 65535], "which now you weare so openly beside": [0, 65535], "now you weare so openly beside the": [0, 65535], "you weare so openly beside the charge": [0, 65535], "weare so openly beside the charge the": [0, 65535], "so openly beside the charge the shame": [0, 65535], "openly beside the charge the shame imprisonment": [0, 65535], "beside the charge the shame imprisonment you": [0, 65535], "the charge the shame imprisonment you haue": [0, 65535], "charge the shame imprisonment you haue done": [0, 65535], "the shame imprisonment you haue done wrong": [0, 65535], "shame imprisonment you haue done wrong to": [0, 65535], "imprisonment you haue done wrong to this": [0, 65535], "you haue done wrong to this my": [0, 65535], "haue done wrong to this my honest": [0, 65535], "done wrong to this my honest friend": [0, 65535], "wrong to this my honest friend who": [0, 65535], "to this my honest friend who but": [0, 65535], "this my honest friend who but for": [0, 65535], "my honest friend who but for staying": [0, 65535], "honest friend who but for staying on": [0, 65535], "friend who but for staying on our": [0, 65535], "who but for staying on our controuersie": [0, 65535], "but for staying on our controuersie had": [0, 65535], "for staying on our controuersie had hoisted": [0, 65535], "staying on our controuersie had hoisted saile": [0, 65535], "on our controuersie had hoisted saile and": [0, 65535], "our controuersie had hoisted saile and put": [0, 65535], "controuersie had hoisted saile and put to": [0, 65535], "had hoisted saile and put to sea": [0, 65535], "hoisted saile and put to sea to": [0, 65535], "saile and put to sea to day": [0, 65535], "and put to sea to day this": [0, 65535], "put to sea to day this chaine": [0, 65535], "to sea to day this chaine you": [0, 65535], "sea to day this chaine you had": [0, 65535], "to day this chaine you had of": [0, 65535], "day this chaine you had of me": [0, 65535], "this chaine you had of me can": [0, 65535], "chaine you had of me can you": [0, 65535], "you had of me can you deny": [0, 65535], "had of me can you deny it": [0, 65535], "of me can you deny it ant": [0, 65535], "me can you deny it ant i": [0, 65535], "can you deny it ant i thinke": [0, 65535], "you deny it ant i thinke i": [0, 65535], "deny it ant i thinke i had": [0, 65535], "it ant i thinke i had i": [0, 65535], "ant i thinke i had i neuer": [0, 65535], "i thinke i had i neuer did": [0, 65535], "thinke i had i neuer did deny": [0, 65535], "i had i neuer did deny it": [0, 65535], "had i neuer did deny it mar": [0, 65535], "i neuer did deny it mar yes": [0, 65535], "neuer did deny it mar yes that": [0, 65535], "did deny it mar yes that you": [0, 65535], "deny it mar yes that you did": [0, 65535], "it mar yes that you did sir": [0, 65535], "mar yes that you did sir and": [0, 65535], "yes that you did sir and forswore": [0, 65535], "that you did sir and forswore it": [0, 65535], "you did sir and forswore it too": [0, 65535], "did sir and forswore it too ant": [0, 65535], "sir and forswore it too ant who": [0, 65535], "and forswore it too ant who heard": [0, 65535], "forswore it too ant who heard me": [0, 65535], "it too ant who heard me to": [0, 65535], "too ant who heard me to denie": [0, 65535], "ant who heard me to denie it": [0, 65535], "who heard me to denie it or": [0, 65535], "heard me to denie it or forsweare": [0, 65535], "me to denie it or forsweare it": [0, 65535], "to denie it or forsweare it mar": [0, 65535], "denie it or forsweare it mar these": [0, 65535], "it or forsweare it mar these eares": [0, 65535], "or forsweare it mar these eares of": [0, 65535], "forsweare it mar these eares of mine": [0, 65535], "it mar these eares of mine thou": [0, 65535], "mar these eares of mine thou knowst": [0, 65535], "these eares of mine thou knowst did": [0, 65535], "eares of mine thou knowst did hear": [0, 65535], "of mine thou knowst did hear thee": [0, 65535], "mine thou knowst did hear thee fie": [0, 65535], "thou knowst did hear thee fie on": [0, 65535], "knowst did hear thee fie on thee": [0, 65535], "did hear thee fie on thee wretch": [0, 65535], "hear thee fie on thee wretch 'tis": [0, 65535], "thee fie on thee wretch 'tis pitty": [0, 65535], "fie on thee wretch 'tis pitty that": [0, 65535], "on thee wretch 'tis pitty that thou": [0, 65535], "thee wretch 'tis pitty that thou liu'st": [0, 65535], "wretch 'tis pitty that thou liu'st to": [0, 65535], "'tis pitty that thou liu'st to walke": [0, 65535], "pitty that thou liu'st to walke where": [0, 65535], "that thou liu'st to walke where any": [0, 65535], "thou liu'st to walke where any honest": [0, 65535], "liu'st to walke where any honest men": [0, 65535], "to walke where any honest men resort": [0, 65535], "walke where any honest men resort ant": [0, 65535], "where any honest men resort ant thou": [0, 65535], "any honest men resort ant thou art": [0, 65535], "honest men resort ant thou art a": [0, 65535], "men resort ant thou art a villaine": [0, 65535], "resort ant thou art a villaine to": [0, 65535], "ant thou art a villaine to impeach": [0, 65535], "thou art a villaine to impeach me": [0, 65535], "art a villaine to impeach me thus": [0, 65535], "a villaine to impeach me thus ile": [0, 65535], "villaine to impeach me thus ile proue": [0, 65535], "to impeach me thus ile proue mine": [0, 65535], "impeach me thus ile proue mine honor": [0, 65535], "me thus ile proue mine honor and": [0, 65535], "thus ile proue mine honor and mine": [0, 65535], "ile proue mine honor and mine honestie": [0, 65535], "proue mine honor and mine honestie against": [0, 65535], "mine honor and mine honestie against thee": [0, 65535], "honor and mine honestie against thee presently": [0, 65535], "and mine honestie against thee presently if": [0, 65535], "mine honestie against thee presently if thou": [0, 65535], "honestie against thee presently if thou dar'st": [0, 65535], "against thee presently if thou dar'st stand": [0, 65535], "thee presently if thou dar'st stand mar": [0, 65535], "presently if thou dar'st stand mar i": [0, 65535], "if thou dar'st stand mar i dare": [0, 65535], "thou dar'st stand mar i dare and": [0, 65535], "dar'st stand mar i dare and do": [0, 65535], "stand mar i dare and do defie": [0, 65535], "mar i dare and do defie thee": [0, 65535], "i dare and do defie thee for": [0, 65535], "dare and do defie thee for a": [0, 65535], "and do defie thee for a villaine": [0, 65535], "do defie thee for a villaine they": [0, 65535], "defie thee for a villaine they draw": [0, 65535], "thee for a villaine they draw enter": [0, 65535], "for a villaine they draw enter adriana": [0, 65535], "a villaine they draw enter adriana luciana": [0, 65535], "villaine they draw enter adriana luciana courtezan": [0, 65535], "they draw enter adriana luciana courtezan others": [0, 65535], "draw enter adriana luciana courtezan others adr": [0, 65535], "enter adriana luciana courtezan others adr hold": [0, 65535], "adriana luciana courtezan others adr hold hurt": [0, 65535], "luciana courtezan others adr hold hurt him": [0, 65535], "courtezan others adr hold hurt him not": [0, 65535], "others adr hold hurt him not for": [0, 65535], "adr hold hurt him not for god": [0, 65535], "hold hurt him not for god sake": [0, 65535], "hurt him not for god sake he": [0, 65535], "him not for god sake he is": [0, 65535], "not for god sake he is mad": [0, 65535], "for god sake he is mad some": [0, 65535], "god sake he is mad some get": [0, 65535], "sake he is mad some get within": [0, 65535], "he is mad some get within him": [0, 65535], "is mad some get within him take": [0, 65535], "mad some get within him take his": [0, 65535], "some get within him take his sword": [0, 65535], "get within him take his sword away": [0, 65535], "within him take his sword away binde": [0, 65535], "him take his sword away binde dromio": [0, 65535], "take his sword away binde dromio too": [0, 65535], "his sword away binde dromio too and": [0, 65535], "sword away binde dromio too and beare": [0, 65535], "away binde dromio too and beare them": [0, 65535], "binde dromio too and beare them to": [0, 65535], "dromio too and beare them to my": [0, 65535], "too and beare them to my house": [0, 65535], "and beare them to my house s": [0, 65535], "beare them to my house s dro": [0, 65535], "them to my house s dro runne": [0, 65535], "to my house s dro runne master": [0, 65535], "my house s dro runne master run": [0, 65535], "house s dro runne master run for": [0, 65535], "s dro runne master run for gods": [0, 65535], "dro runne master run for gods sake": [0, 65535], "runne master run for gods sake take": [0, 65535], "master run for gods sake take a": [0, 65535], "run for gods sake take a house": [0, 65535], "for gods sake take a house this": [0, 65535], "gods sake take a house this is": [0, 65535], "sake take a house this is some": [0, 65535], "take a house this is some priorie": [0, 65535], "a house this is some priorie in": [0, 65535], "house this is some priorie in or": [0, 65535], "this is some priorie in or we": [0, 65535], "is some priorie in or we are": [0, 65535], "some priorie in or we are spoyl'd": [0, 65535], "priorie in or we are spoyl'd exeunt": [0, 65535], "in or we are spoyl'd exeunt to": [0, 65535], "or we are spoyl'd exeunt to the": [0, 65535], "we are spoyl'd exeunt to the priorie": [0, 65535], "are spoyl'd exeunt to the priorie enter": [0, 65535], "spoyl'd exeunt to the priorie enter ladie": [0, 65535], "exeunt to the priorie enter ladie abbesse": [0, 65535], "to the priorie enter ladie abbesse ab": [0, 65535], "the priorie enter ladie abbesse ab be": [0, 65535], "priorie enter ladie abbesse ab be quiet": [0, 65535], "enter ladie abbesse ab be quiet people": [0, 65535], "ladie abbesse ab be quiet people wherefore": [0, 65535], "abbesse ab be quiet people wherefore throng": [0, 65535], "ab be quiet people wherefore throng you": [0, 65535], "be quiet people wherefore throng you hither": [0, 65535], "quiet people wherefore throng you hither adr": [0, 65535], "people wherefore throng you hither adr to": [0, 65535], "wherefore throng you hither adr to fetch": [0, 65535], "throng you hither adr to fetch my": [0, 65535], "you hither adr to fetch my poore": [0, 65535], "hither adr to fetch my poore distracted": [0, 65535], "adr to fetch my poore distracted husband": [0, 65535], "to fetch my poore distracted husband hence": [0, 65535], "fetch my poore distracted husband hence let": [0, 65535], "my poore distracted husband hence let vs": [0, 65535], "poore distracted husband hence let vs come": [0, 65535], "distracted husband hence let vs come in": [0, 65535], "husband hence let vs come in that": [0, 65535], "hence let vs come in that we": [0, 65535], "let vs come in that we may": [0, 65535], "vs come in that we may binde": [0, 65535], "come in that we may binde him": [0, 65535], "in that we may binde him fast": [0, 65535], "that we may binde him fast and": [0, 65535], "we may binde him fast and beare": [0, 65535], "may binde him fast and beare him": [0, 65535], "binde him fast and beare him home": [0, 65535], "him fast and beare him home for": [0, 65535], "fast and beare him home for his": [0, 65535], "and beare him home for his recouerie": [0, 65535], "beare him home for his recouerie gold": [0, 65535], "him home for his recouerie gold i": [0, 65535], "home for his recouerie gold i knew": [0, 65535], "for his recouerie gold i knew he": [0, 65535], "his recouerie gold i knew he was": [0, 65535], "recouerie gold i knew he was not": [0, 65535], "gold i knew he was not in": [0, 65535], "i knew he was not in his": [0, 65535], "knew he was not in his perfect": [0, 65535], "he was not in his perfect wits": [0, 65535], "was not in his perfect wits mar": [0, 65535], "not in his perfect wits mar i": [0, 65535], "in his perfect wits mar i am": [0, 65535], "his perfect wits mar i am sorry": [0, 65535], "perfect wits mar i am sorry now": [0, 65535], "wits mar i am sorry now that": [0, 65535], "mar i am sorry now that i": [0, 65535], "i am sorry now that i did": [0, 65535], "am sorry now that i did draw": [0, 65535], "sorry now that i did draw on": [0, 65535], "now that i did draw on him": [0, 65535], "that i did draw on him ab": [0, 65535], "i did draw on him ab how": [0, 65535], "did draw on him ab how long": [0, 65535], "draw on him ab how long hath": [0, 65535], "on him ab how long hath this": [0, 65535], "him ab how long hath this possession": [0, 65535], "ab how long hath this possession held": [0, 65535], "how long hath this possession held the": [0, 65535], "long hath this possession held the man": [0, 65535], "hath this possession held the man adr": [0, 65535], "this possession held the man adr this": [0, 65535], "possession held the man adr this weeke": [0, 65535], "held the man adr this weeke he": [0, 65535], "the man adr this weeke he hath": [0, 65535], "man adr this weeke he hath beene": [0, 65535], "adr this weeke he hath beene heauie": [0, 65535], "this weeke he hath beene heauie sower": [0, 65535], "weeke he hath beene heauie sower sad": [0, 65535], "he hath beene heauie sower sad and": [0, 65535], "hath beene heauie sower sad and much": [0, 65535], "beene heauie sower sad and much different": [0, 65535], "heauie sower sad and much different from": [0, 65535], "sower sad and much different from the": [0, 65535], "sad and much different from the man": [0, 65535], "and much different from the man he": [0, 65535], "much different from the man he was": [0, 65535], "different from the man he was but": [0, 65535], "from the man he was but till": [0, 65535], "the man he was but till this": [0, 65535], "man he was but till this afternoone": [0, 65535], "he was but till this afternoone his": [0, 65535], "was but till this afternoone his passion": [0, 65535], "but till this afternoone his passion ne're": [0, 65535], "till this afternoone his passion ne're brake": [0, 65535], "this afternoone his passion ne're brake into": [0, 65535], "afternoone his passion ne're brake into extremity": [0, 65535], "his passion ne're brake into extremity of": [0, 65535], "passion ne're brake into extremity of rage": [0, 65535], "ne're brake into extremity of rage ab": [0, 65535], "brake into extremity of rage ab hath": [0, 65535], "into extremity of rage ab hath he": [0, 65535], "extremity of rage ab hath he not": [0, 65535], "of rage ab hath he not lost": [0, 65535], "rage ab hath he not lost much": [0, 65535], "ab hath he not lost much wealth": [0, 65535], "hath he not lost much wealth by": [0, 65535], "he not lost much wealth by wrack": [0, 65535], "not lost much wealth by wrack of": [0, 65535], "lost much wealth by wrack of sea": [0, 65535], "much wealth by wrack of sea buried": [0, 65535], "wealth by wrack of sea buried some": [0, 65535], "by wrack of sea buried some deere": [0, 65535], "wrack of sea buried some deere friend": [0, 65535], "of sea buried some deere friend hath": [0, 65535], "sea buried some deere friend hath not": [0, 65535], "buried some deere friend hath not else": [0, 65535], "some deere friend hath not else his": [0, 65535], "deere friend hath not else his eye": [0, 65535], "friend hath not else his eye stray'd": [0, 65535], "hath not else his eye stray'd his": [0, 65535], "not else his eye stray'd his affection": [0, 65535], "else his eye stray'd his affection in": [0, 65535], "his eye stray'd his affection in vnlawfull": [0, 65535], "eye stray'd his affection in vnlawfull loue": [0, 65535], "stray'd his affection in vnlawfull loue a": [0, 65535], "his affection in vnlawfull loue a sinne": [0, 65535], "affection in vnlawfull loue a sinne preuailing": [0, 65535], "in vnlawfull loue a sinne preuailing much": [0, 65535], "vnlawfull loue a sinne preuailing much in": [0, 65535], "loue a sinne preuailing much in youthfull": [0, 65535], "a sinne preuailing much in youthfull men": [0, 65535], "sinne preuailing much in youthfull men who": [0, 65535], "preuailing much in youthfull men who giue": [0, 65535], "much in youthfull men who giue their": [0, 65535], "in youthfull men who giue their eies": [0, 65535], "youthfull men who giue their eies the": [0, 65535], "men who giue their eies the liberty": [0, 65535], "who giue their eies the liberty of": [0, 65535], "giue their eies the liberty of gazing": [0, 65535], "their eies the liberty of gazing which": [0, 65535], "eies the liberty of gazing which of": [0, 65535], "the liberty of gazing which of these": [0, 65535], "liberty of gazing which of these sorrowes": [0, 65535], "of gazing which of these sorrowes is": [0, 65535], "gazing which of these sorrowes is he": [0, 65535], "which of these sorrowes is he subiect": [0, 65535], "of these sorrowes is he subiect too": [0, 65535], "these sorrowes is he subiect too adr": [0, 65535], "sorrowes is he subiect too adr to": [0, 65535], "is he subiect too adr to none": [0, 65535], "he subiect too adr to none of": [0, 65535], "subiect too adr to none of these": [0, 65535], "too adr to none of these except": [0, 65535], "adr to none of these except it": [0, 65535], "to none of these except it be": [0, 65535], "none of these except it be the": [0, 65535], "of these except it be the last": [0, 65535], "these except it be the last namely": [0, 65535], "except it be the last namely some": [0, 65535], "it be the last namely some loue": [0, 65535], "be the last namely some loue that": [0, 65535], "the last namely some loue that drew": [0, 65535], "last namely some loue that drew him": [0, 65535], "namely some loue that drew him oft": [0, 65535], "some loue that drew him oft from": [0, 65535], "loue that drew him oft from home": [0, 65535], "that drew him oft from home ab": [0, 65535], "drew him oft from home ab you": [0, 65535], "him oft from home ab you should": [0, 65535], "oft from home ab you should for": [0, 65535], "from home ab you should for that": [0, 65535], "home ab you should for that haue": [0, 65535], "ab you should for that haue reprehended": [0, 65535], "you should for that haue reprehended him": [0, 65535], "should for that haue reprehended him adr": [0, 65535], "for that haue reprehended him adr why": [0, 65535], "that haue reprehended him adr why so": [0, 65535], "haue reprehended him adr why so i": [0, 65535], "reprehended him adr why so i did": [0, 65535], "him adr why so i did ab": [0, 65535], "adr why so i did ab i": [0, 65535], "why so i did ab i but": [0, 65535], "so i did ab i but not": [0, 65535], "i did ab i but not rough": [0, 65535], "did ab i but not rough enough": [0, 65535], "ab i but not rough enough adr": [0, 65535], "i but not rough enough adr as": [0, 65535], "but not rough enough adr as roughly": [0, 65535], "not rough enough adr as roughly as": [0, 65535], "rough enough adr as roughly as my": [0, 65535], "enough adr as roughly as my modestie": [0, 65535], "adr as roughly as my modestie would": [0, 65535], "as roughly as my modestie would let": [0, 65535], "roughly as my modestie would let me": [0, 65535], "as my modestie would let me ab": [0, 65535], "my modestie would let me ab haply": [0, 65535], "modestie would let me ab haply in": [0, 65535], "would let me ab haply in priuate": [0, 65535], "let me ab haply in priuate adr": [0, 65535], "me ab haply in priuate adr and": [0, 65535], "ab haply in priuate adr and in": [0, 65535], "haply in priuate adr and in assemblies": [0, 65535], "in priuate adr and in assemblies too": [0, 65535], "priuate adr and in assemblies too ab": [0, 65535], "adr and in assemblies too ab i": [0, 65535], "and in assemblies too ab i but": [0, 65535], "in assemblies too ab i but not": [0, 65535], "assemblies too ab i but not enough": [0, 65535], "too ab i but not enough adr": [0, 65535], "ab i but not enough adr it": [0, 65535], "i but not enough adr it was": [0, 65535], "but not enough adr it was the": [0, 65535], "not enough adr it was the copie": [0, 65535], "enough adr it was the copie of": [0, 65535], "adr it was the copie of our": [0, 65535], "it was the copie of our conference": [0, 65535], "was the copie of our conference in": [0, 65535], "the copie of our conference in bed": [0, 65535], "copie of our conference in bed he": [0, 65535], "of our conference in bed he slept": [0, 65535], "our conference in bed he slept not": [0, 65535], "conference in bed he slept not for": [0, 65535], "in bed he slept not for my": [0, 65535], "bed he slept not for my vrging": [0, 65535], "he slept not for my vrging it": [0, 65535], "slept not for my vrging it at": [0, 65535], "not for my vrging it at boord": [0, 65535], "for my vrging it at boord he": [0, 65535], "my vrging it at boord he fed": [0, 65535], "vrging it at boord he fed not": [0, 65535], "it at boord he fed not for": [0, 65535], "at boord he fed not for my": [0, 65535], "boord he fed not for my vrging": [0, 65535], "he fed not for my vrging it": [0, 65535], "fed not for my vrging it alone": [0, 65535], "not for my vrging it alone it": [0, 65535], "for my vrging it alone it was": [0, 65535], "my vrging it alone it was the": [0, 65535], "vrging it alone it was the subiect": [0, 65535], "it alone it was the subiect of": [0, 65535], "alone it was the subiect of my": [0, 65535], "it was the subiect of my theame": [0, 65535], "was the subiect of my theame in": [0, 65535], "the subiect of my theame in company": [0, 65535], "subiect of my theame in company i": [0, 65535], "of my theame in company i often": [0, 65535], "my theame in company i often glanced": [0, 65535], "theame in company i often glanced it": [0, 65535], "in company i often glanced it still": [0, 65535], "company i often glanced it still did": [0, 65535], "i often glanced it still did i": [0, 65535], "often glanced it still did i tell": [0, 65535], "glanced it still did i tell him": [0, 65535], "it still did i tell him it": [0, 65535], "still did i tell him it was": [0, 65535], "did i tell him it was vilde": [0, 65535], "i tell him it was vilde and": [0, 65535], "tell him it was vilde and bad": [0, 65535], "him it was vilde and bad ab": [0, 65535], "it was vilde and bad ab and": [0, 65535], "was vilde and bad ab and thereof": [0, 65535], "vilde and bad ab and thereof came": [0, 65535], "and bad ab and thereof came it": [0, 65535], "bad ab and thereof came it that": [0, 65535], "ab and thereof came it that the": [0, 65535], "and thereof came it that the man": [0, 65535], "thereof came it that the man was": [0, 65535], "came it that the man was mad": [0, 65535], "it that the man was mad the": [0, 65535], "that the man was mad the venome": [0, 65535], "the man was mad the venome clamors": [0, 65535], "man was mad the venome clamors of": [0, 65535], "was mad the venome clamors of a": [0, 65535], "mad the venome clamors of a iealous": [0, 65535], "the venome clamors of a iealous woman": [0, 65535], "venome clamors of a iealous woman poisons": [0, 65535], "clamors of a iealous woman poisons more": [0, 65535], "of a iealous woman poisons more deadly": [0, 65535], "a iealous woman poisons more deadly then": [0, 65535], "iealous woman poisons more deadly then a": [0, 65535], "woman poisons more deadly then a mad": [0, 65535], "poisons more deadly then a mad dogges": [0, 65535], "more deadly then a mad dogges tooth": [0, 65535], "deadly then a mad dogges tooth it": [0, 65535], "then a mad dogges tooth it seemes": [0, 65535], "a mad dogges tooth it seemes his": [0, 65535], "mad dogges tooth it seemes his sleepes": [0, 65535], "dogges tooth it seemes his sleepes were": [0, 65535], "tooth it seemes his sleepes were hindred": [0, 65535], "it seemes his sleepes were hindred by": [0, 65535], "seemes his sleepes were hindred by thy": [0, 65535], "his sleepes were hindred by thy railing": [0, 65535], "sleepes were hindred by thy railing and": [0, 65535], "were hindred by thy railing and thereof": [0, 65535], "hindred by thy railing and thereof comes": [0, 65535], "by thy railing and thereof comes it": [0, 65535], "thy railing and thereof comes it that": [0, 65535], "railing and thereof comes it that his": [0, 65535], "and thereof comes it that his head": [0, 65535], "thereof comes it that his head is": [0, 65535], "comes it that his head is light": [0, 65535], "it that his head is light thou": [0, 65535], "that his head is light thou saist": [0, 65535], "his head is light thou saist his": [0, 65535], "head is light thou saist his meate": [0, 65535], "is light thou saist his meate was": [0, 65535], "light thou saist his meate was sawc'd": [0, 65535], "thou saist his meate was sawc'd with": [0, 65535], "saist his meate was sawc'd with thy": [0, 65535], "his meate was sawc'd with thy vpbraidings": [0, 65535], "meate was sawc'd with thy vpbraidings vnquiet": [0, 65535], "was sawc'd with thy vpbraidings vnquiet meales": [0, 65535], "sawc'd with thy vpbraidings vnquiet meales make": [0, 65535], "with thy vpbraidings vnquiet meales make ill": [0, 65535], "thy vpbraidings vnquiet meales make ill digestions": [0, 65535], "vpbraidings vnquiet meales make ill digestions thereof": [0, 65535], "vnquiet meales make ill digestions thereof the": [0, 65535], "meales make ill digestions thereof the raging": [0, 65535], "make ill digestions thereof the raging fire": [0, 65535], "ill digestions thereof the raging fire of": [0, 65535], "digestions thereof the raging fire of feauer": [0, 65535], "thereof the raging fire of feauer bred": [0, 65535], "the raging fire of feauer bred and": [0, 65535], "raging fire of feauer bred and what's": [0, 65535], "fire of feauer bred and what's a": [0, 65535], "of feauer bred and what's a feauer": [0, 65535], "feauer bred and what's a feauer but": [0, 65535], "bred and what's a feauer but a": [0, 65535], "and what's a feauer but a fit": [0, 65535], "what's a feauer but a fit of": [0, 65535], "a feauer but a fit of madnesse": [0, 65535], "feauer but a fit of madnesse thou": [0, 65535], "but a fit of madnesse thou sayest": [0, 65535], "a fit of madnesse thou sayest his": [0, 65535], "fit of madnesse thou sayest his sports": [0, 65535], "of madnesse thou sayest his sports were": [0, 65535], "madnesse thou sayest his sports were hindred": [0, 65535], "thou sayest his sports were hindred by": [0, 65535], "sayest his sports were hindred by thy": [0, 65535], "his sports were hindred by thy bralles": [0, 65535], "sports were hindred by thy bralles sweet": [0, 65535], "were hindred by thy bralles sweet recreation": [0, 65535], "hindred by thy bralles sweet recreation barr'd": [0, 65535], "by thy bralles sweet recreation barr'd what": [0, 65535], "thy bralles sweet recreation barr'd what doth": [0, 65535], "bralles sweet recreation barr'd what doth ensue": [0, 65535], "sweet recreation barr'd what doth ensue but": [0, 65535], "recreation barr'd what doth ensue but moodie": [0, 65535], "barr'd what doth ensue but moodie and": [0, 65535], "what doth ensue but moodie and dull": [0, 65535], "doth ensue but moodie and dull melancholly": [0, 65535], "ensue but moodie and dull melancholly kinsman": [0, 65535], "but moodie and dull melancholly kinsman to": [0, 65535], "moodie and dull melancholly kinsman to grim": [0, 65535], "and dull melancholly kinsman to grim and": [0, 65535], "dull melancholly kinsman to grim and comfortlesse": [0, 65535], "melancholly kinsman to grim and comfortlesse dispaire": [0, 65535], "kinsman to grim and comfortlesse dispaire and": [0, 65535], "to grim and comfortlesse dispaire and at": [0, 65535], "grim and comfortlesse dispaire and at her": [0, 65535], "and comfortlesse dispaire and at her heeles": [0, 65535], "comfortlesse dispaire and at her heeles a": [0, 65535], "dispaire and at her heeles a huge": [0, 65535], "and at her heeles a huge infectious": [0, 65535], "at her heeles a huge infectious troope": [0, 65535], "her heeles a huge infectious troope of": [0, 65535], "heeles a huge infectious troope of pale": [0, 65535], "a huge infectious troope of pale distemperatures": [0, 65535], "huge infectious troope of pale distemperatures and": [0, 65535], "infectious troope of pale distemperatures and foes": [0, 65535], "troope of pale distemperatures and foes to": [0, 65535], "of pale distemperatures and foes to life": [0, 65535], "pale distemperatures and foes to life in": [0, 65535], "distemperatures and foes to life in food": [0, 65535], "and foes to life in food in": [0, 65535], "foes to life in food in sport": [0, 65535], "to life in food in sport and": [0, 65535], "life in food in sport and life": [0, 65535], "in food in sport and life preseruing": [0, 65535], "food in sport and life preseruing rest": [0, 65535], "in sport and life preseruing rest to": [0, 65535], "sport and life preseruing rest to be": [0, 65535], "and life preseruing rest to be disturb'd": [0, 65535], "life preseruing rest to be disturb'd would": [0, 65535], "preseruing rest to be disturb'd would mad": [0, 65535], "rest to be disturb'd would mad or": [0, 65535], "to be disturb'd would mad or man": [0, 65535], "be disturb'd would mad or man or": [0, 65535], "disturb'd would mad or man or beast": [0, 65535], "would mad or man or beast the": [0, 65535], "mad or man or beast the consequence": [0, 65535], "or man or beast the consequence is": [0, 65535], "man or beast the consequence is then": [0, 65535], "or beast the consequence is then thy": [0, 65535], "beast the consequence is then thy iealous": [0, 65535], "the consequence is then thy iealous fits": [0, 65535], "consequence is then thy iealous fits hath": [0, 65535], "is then thy iealous fits hath scar'd": [0, 65535], "then thy iealous fits hath scar'd thy": [0, 65535], "thy iealous fits hath scar'd thy husband": [0, 65535], "iealous fits hath scar'd thy husband from": [0, 65535], "fits hath scar'd thy husband from the": [0, 65535], "hath scar'd thy husband from the vse": [0, 65535], "scar'd thy husband from the vse of": [0, 65535], "thy husband from the vse of wits": [0, 65535], "husband from the vse of wits luc": [0, 65535], "from the vse of wits luc she": [0, 65535], "the vse of wits luc she neuer": [0, 65535], "vse of wits luc she neuer reprehended": [0, 65535], "of wits luc she neuer reprehended him": [0, 65535], "wits luc she neuer reprehended him but": [0, 65535], "luc she neuer reprehended him but mildely": [0, 65535], "she neuer reprehended him but mildely when": [0, 65535], "neuer reprehended him but mildely when he": [0, 65535], "reprehended him but mildely when he demean'd": [0, 65535], "him but mildely when he demean'd himselfe": [0, 65535], "but mildely when he demean'd himselfe rough": [0, 65535], "mildely when he demean'd himselfe rough rude": [0, 65535], "when he demean'd himselfe rough rude and": [0, 65535], "he demean'd himselfe rough rude and wildly": [0, 65535], "demean'd himselfe rough rude and wildly why": [0, 65535], "himselfe rough rude and wildly why beare": [0, 65535], "rough rude and wildly why beare you": [0, 65535], "rude and wildly why beare you these": [0, 65535], "and wildly why beare you these rebukes": [0, 65535], "wildly why beare you these rebukes and": [0, 65535], "why beare you these rebukes and answer": [0, 65535], "beare you these rebukes and answer not": [0, 65535], "you these rebukes and answer not adri": [0, 65535], "these rebukes and answer not adri she": [0, 65535], "rebukes and answer not adri she did": [0, 65535], "and answer not adri she did betray": [0, 65535], "answer not adri she did betray me": [0, 65535], "not adri she did betray me to": [0, 65535], "adri she did betray me to my": [0, 65535], "she did betray me to my owne": [0, 65535], "did betray me to my owne reproofe": [0, 65535], "betray me to my owne reproofe good": [0, 65535], "me to my owne reproofe good people": [0, 65535], "to my owne reproofe good people enter": [0, 65535], "my owne reproofe good people enter and": [0, 65535], "owne reproofe good people enter and lay": [0, 65535], "reproofe good people enter and lay hold": [0, 65535], "good people enter and lay hold on": [0, 65535], "people enter and lay hold on him": [0, 65535], "enter and lay hold on him ab": [0, 65535], "and lay hold on him ab no": [0, 65535], "lay hold on him ab no not": [0, 65535], "hold on him ab no not a": [0, 65535], "on him ab no not a creature": [0, 65535], "him ab no not a creature enters": [0, 65535], "ab no not a creature enters in": [0, 65535], "no not a creature enters in my": [0, 65535], "not a creature enters in my house": [0, 65535], "a creature enters in my house ad": [0, 65535], "creature enters in my house ad then": [0, 65535], "enters in my house ad then let": [0, 65535], "in my house ad then let your": [0, 65535], "my house ad then let your seruants": [0, 65535], "house ad then let your seruants bring": [0, 65535], "ad then let your seruants bring my": [0, 65535], "then let your seruants bring my husband": [0, 65535], "let your seruants bring my husband forth": [0, 65535], "your seruants bring my husband forth ab": [0, 65535], "seruants bring my husband forth ab neither": [0, 65535], "bring my husband forth ab neither he": [0, 65535], "my husband forth ab neither he tooke": [0, 65535], "husband forth ab neither he tooke this": [0, 65535], "forth ab neither he tooke this place": [0, 65535], "ab neither he tooke this place for": [0, 65535], "neither he tooke this place for sanctuary": [0, 65535], "he tooke this place for sanctuary and": [0, 65535], "tooke this place for sanctuary and it": [0, 65535], "this place for sanctuary and it shall": [0, 65535], "place for sanctuary and it shall priuiledge": [0, 65535], "for sanctuary and it shall priuiledge him": [0, 65535], "sanctuary and it shall priuiledge him from": [0, 65535], "and it shall priuiledge him from your": [0, 65535], "it shall priuiledge him from your hands": [0, 65535], "shall priuiledge him from your hands till": [0, 65535], "priuiledge him from your hands till i": [0, 65535], "him from your hands till i haue": [0, 65535], "from your hands till i haue brought": [0, 65535], "your hands till i haue brought him": [0, 65535], "hands till i haue brought him to": [0, 65535], "till i haue brought him to his": [0, 65535], "i haue brought him to his wits": [0, 65535], "haue brought him to his wits againe": [0, 65535], "brought him to his wits againe or": [0, 65535], "him to his wits againe or loose": [0, 65535], "to his wits againe or loose my": [0, 65535], "his wits againe or loose my labour": [0, 65535], "wits againe or loose my labour in": [0, 65535], "againe or loose my labour in assaying": [0, 65535], "or loose my labour in assaying it": [0, 65535], "loose my labour in assaying it adr": [0, 65535], "my labour in assaying it adr i": [0, 65535], "labour in assaying it adr i will": [0, 65535], "in assaying it adr i will attend": [0, 65535], "assaying it adr i will attend my": [0, 65535], "it adr i will attend my husband": [0, 65535], "adr i will attend my husband be": [0, 65535], "i will attend my husband be his": [0, 65535], "will attend my husband be his nurse": [0, 65535], "attend my husband be his nurse diet": [0, 65535], "my husband be his nurse diet his": [0, 65535], "husband be his nurse diet his sicknesse": [0, 65535], "be his nurse diet his sicknesse for": [0, 65535], "his nurse diet his sicknesse for it": [0, 65535], "nurse diet his sicknesse for it is": [0, 65535], "diet his sicknesse for it is my": [0, 65535], "his sicknesse for it is my office": [0, 65535], "sicknesse for it is my office and": [0, 65535], "for it is my office and will": [0, 65535], "it is my office and will haue": [0, 65535], "is my office and will haue no": [0, 65535], "my office and will haue no atturney": [0, 65535], "office and will haue no atturney but": [0, 65535], "and will haue no atturney but my": [0, 65535], "will haue no atturney but my selfe": [0, 65535], "haue no atturney but my selfe and": [0, 65535], "no atturney but my selfe and therefore": [0, 65535], "atturney but my selfe and therefore let": [0, 65535], "but my selfe and therefore let me": [0, 65535], "my selfe and therefore let me haue": [0, 65535], "selfe and therefore let me haue him": [0, 65535], "and therefore let me haue him home": [0, 65535], "therefore let me haue him home with": [0, 65535], "let me haue him home with me": [0, 65535], "me haue him home with me ab": [0, 65535], "haue him home with me ab be": [0, 65535], "him home with me ab be patient": [0, 65535], "home with me ab be patient for": [0, 65535], "with me ab be patient for i": [0, 65535], "me ab be patient for i will": [0, 65535], "ab be patient for i will not": [0, 65535], "be patient for i will not let": [0, 65535], "patient for i will not let him": [0, 65535], "for i will not let him stirre": [0, 65535], "i will not let him stirre till": [0, 65535], "will not let him stirre till i": [0, 65535], "not let him stirre till i haue": [0, 65535], "let him stirre till i haue vs'd": [0, 65535], "him stirre till i haue vs'd the": [0, 65535], "stirre till i haue vs'd the approoued": [0, 65535], "till i haue vs'd the approoued meanes": [0, 65535], "i haue vs'd the approoued meanes i": [0, 65535], "haue vs'd the approoued meanes i haue": [0, 65535], "vs'd the approoued meanes i haue with": [0, 65535], "the approoued meanes i haue with wholsome": [0, 65535], "approoued meanes i haue with wholsome sirrups": [0, 65535], "meanes i haue with wholsome sirrups drugges": [0, 65535], "i haue with wholsome sirrups drugges and": [0, 65535], "haue with wholsome sirrups drugges and holy": [0, 65535], "with wholsome sirrups drugges and holy prayers": [0, 65535], "wholsome sirrups drugges and holy prayers to": [0, 65535], "sirrups drugges and holy prayers to make": [0, 65535], "drugges and holy prayers to make of": [0, 65535], "and holy prayers to make of him": [0, 65535], "holy prayers to make of him a": [0, 65535], "prayers to make of him a formall": [0, 65535], "to make of him a formall man": [0, 65535], "make of him a formall man againe": [0, 65535], "of him a formall man againe it": [0, 65535], "him a formall man againe it is": [0, 65535], "a formall man againe it is a": [0, 65535], "formall man againe it is a branch": [0, 65535], "man againe it is a branch and": [0, 65535], "againe it is a branch and parcell": [0, 65535], "it is a branch and parcell of": [0, 65535], "is a branch and parcell of mine": [0, 65535], "a branch and parcell of mine oath": [0, 65535], "branch and parcell of mine oath a": [0, 65535], "and parcell of mine oath a charitable": [0, 65535], "parcell of mine oath a charitable dutie": [0, 65535], "of mine oath a charitable dutie of": [0, 65535], "mine oath a charitable dutie of my": [0, 65535], "oath a charitable dutie of my order": [0, 65535], "a charitable dutie of my order therefore": [0, 65535], "charitable dutie of my order therefore depart": [0, 65535], "dutie of my order therefore depart and": [0, 65535], "of my order therefore depart and leaue": [0, 65535], "my order therefore depart and leaue him": [0, 65535], "order therefore depart and leaue him heere": [0, 65535], "therefore depart and leaue him heere with": [0, 65535], "depart and leaue him heere with me": [0, 65535], "and leaue him heere with me adr": [0, 65535], "leaue him heere with me adr i": [0, 65535], "him heere with me adr i will": [0, 65535], "heere with me adr i will not": [0, 65535], "with me adr i will not hence": [0, 65535], "me adr i will not hence and": [0, 65535], "adr i will not hence and leaue": [0, 65535], "i will not hence and leaue my": [0, 65535], "will not hence and leaue my husband": [0, 65535], "not hence and leaue my husband heere": [0, 65535], "hence and leaue my husband heere and": [0, 65535], "and leaue my husband heere and ill": [0, 65535], "leaue my husband heere and ill it": [0, 65535], "my husband heere and ill it doth": [0, 65535], "husband heere and ill it doth beseeme": [0, 65535], "heere and ill it doth beseeme your": [0, 65535], "and ill it doth beseeme your holinesse": [0, 65535], "ill it doth beseeme your holinesse to": [0, 65535], "it doth beseeme your holinesse to separate": [0, 65535], "doth beseeme your holinesse to separate the": [0, 65535], "beseeme your holinesse to separate the husband": [0, 65535], "your holinesse to separate the husband and": [0, 65535], "holinesse to separate the husband and the": [0, 65535], "to separate the husband and the wife": [0, 65535], "separate the husband and the wife ab": [0, 65535], "the husband and the wife ab be": [0, 65535], "husband and the wife ab be quiet": [0, 65535], "and the wife ab be quiet and": [0, 65535], "the wife ab be quiet and depart": [0, 65535], "wife ab be quiet and depart thou": [0, 65535], "ab be quiet and depart thou shalt": [0, 65535], "be quiet and depart thou shalt not": [0, 65535], "quiet and depart thou shalt not haue": [0, 65535], "and depart thou shalt not haue him": [0, 65535], "depart thou shalt not haue him luc": [0, 65535], "thou shalt not haue him luc complaine": [0, 65535], "shalt not haue him luc complaine vnto": [0, 65535], "not haue him luc complaine vnto the": [0, 65535], "haue him luc complaine vnto the duke": [0, 65535], "him luc complaine vnto the duke of": [0, 65535], "luc complaine vnto the duke of this": [0, 65535], "complaine vnto the duke of this indignity": [0, 65535], "vnto the duke of this indignity adr": [0, 65535], "the duke of this indignity adr come": [0, 65535], "duke of this indignity adr come go": [0, 65535], "of this indignity adr come go i": [0, 65535], "this indignity adr come go i will": [0, 65535], "indignity adr come go i will fall": [0, 65535], "adr come go i will fall prostrate": [0, 65535], "come go i will fall prostrate at": [0, 65535], "go i will fall prostrate at his": [0, 65535], "i will fall prostrate at his feete": [0, 65535], "will fall prostrate at his feete and": [0, 65535], "fall prostrate at his feete and neuer": [0, 65535], "prostrate at his feete and neuer rise": [0, 65535], "at his feete and neuer rise vntill": [0, 65535], "his feete and neuer rise vntill my": [0, 65535], "feete and neuer rise vntill my teares": [0, 65535], "and neuer rise vntill my teares and": [0, 65535], "neuer rise vntill my teares and prayers": [0, 65535], "rise vntill my teares and prayers haue": [0, 65535], "vntill my teares and prayers haue won": [0, 65535], "my teares and prayers haue won his": [0, 65535], "teares and prayers haue won his grace": [0, 65535], "and prayers haue won his grace to": [0, 65535], "prayers haue won his grace to come": [0, 65535], "haue won his grace to come in": [0, 65535], "won his grace to come in person": [0, 65535], "his grace to come in person hither": [0, 65535], "grace to come in person hither and": [0, 65535], "to come in person hither and take": [0, 65535], "come in person hither and take perforce": [0, 65535], "in person hither and take perforce my": [0, 65535], "person hither and take perforce my husband": [0, 65535], "hither and take perforce my husband from": [0, 65535], "and take perforce my husband from the": [0, 65535], "take perforce my husband from the abbesse": [0, 65535], "perforce my husband from the abbesse mar": [0, 65535], "my husband from the abbesse mar by": [0, 65535], "husband from the abbesse mar by this": [0, 65535], "from the abbesse mar by this i": [0, 65535], "the abbesse mar by this i thinke": [0, 65535], "abbesse mar by this i thinke the": [0, 65535], "mar by this i thinke the diall": [0, 65535], "by this i thinke the diall points": [0, 65535], "this i thinke the diall points at": [0, 65535], "i thinke the diall points at fiue": [0, 65535], "thinke the diall points at fiue anon": [0, 65535], "the diall points at fiue anon i'me": [0, 65535], "diall points at fiue anon i'me sure": [0, 65535], "points at fiue anon i'me sure the": [0, 65535], "at fiue anon i'me sure the duke": [0, 65535], "fiue anon i'me sure the duke himselfe": [0, 65535], "anon i'me sure the duke himselfe in": [0, 65535], "i'me sure the duke himselfe in person": [0, 65535], "sure the duke himselfe in person comes": [0, 65535], "the duke himselfe in person comes this": [0, 65535], "duke himselfe in person comes this way": [0, 65535], "himselfe in person comes this way to": [0, 65535], "in person comes this way to the": [0, 65535], "person comes this way to the melancholly": [0, 65535], "comes this way to the melancholly vale": [0, 65535], "this way to the melancholly vale the": [0, 65535], "way to the melancholly vale the place": [0, 65535], "to the melancholly vale the place of": [0, 65535], "the melancholly vale the place of depth": [0, 65535], "melancholly vale the place of depth and": [0, 65535], "vale the place of depth and sorrie": [0, 65535], "the place of depth and sorrie execution": [0, 65535], "place of depth and sorrie execution behinde": [0, 65535], "of depth and sorrie execution behinde the": [0, 65535], "depth and sorrie execution behinde the ditches": [0, 65535], "and sorrie execution behinde the ditches of": [0, 65535], "sorrie execution behinde the ditches of the": [0, 65535], "execution behinde the ditches of the abbey": [0, 65535], "behinde the ditches of the abbey heere": [0, 65535], "the ditches of the abbey heere gold": [0, 65535], "ditches of the abbey heere gold vpon": [0, 65535], "of the abbey heere gold vpon what": [0, 65535], "the abbey heere gold vpon what cause": [0, 65535], "abbey heere gold vpon what cause mar": [0, 65535], "heere gold vpon what cause mar to": [0, 65535], "gold vpon what cause mar to see": [0, 65535], "vpon what cause mar to see a": [0, 65535], "what cause mar to see a reuerent": [0, 65535], "cause mar to see a reuerent siracusian": [0, 65535], "mar to see a reuerent siracusian merchant": [0, 65535], "to see a reuerent siracusian merchant who": [0, 65535], "see a reuerent siracusian merchant who put": [0, 65535], "a reuerent siracusian merchant who put vnluckily": [0, 65535], "reuerent siracusian merchant who put vnluckily into": [0, 65535], "siracusian merchant who put vnluckily into this": [0, 65535], "merchant who put vnluckily into this bay": [0, 65535], "who put vnluckily into this bay against": [0, 65535], "put vnluckily into this bay against the": [0, 65535], "vnluckily into this bay against the lawes": [0, 65535], "into this bay against the lawes and": [0, 65535], "this bay against the lawes and statutes": [0, 65535], "bay against the lawes and statutes of": [0, 65535], "against the lawes and statutes of this": [0, 65535], "the lawes and statutes of this towne": [0, 65535], "lawes and statutes of this towne beheaded": [0, 65535], "and statutes of this towne beheaded publikely": [0, 65535], "statutes of this towne beheaded publikely for": [0, 65535], "of this towne beheaded publikely for his": [0, 65535], "this towne beheaded publikely for his offence": [0, 65535], "towne beheaded publikely for his offence gold": [0, 65535], "beheaded publikely for his offence gold see": [0, 65535], "publikely for his offence gold see where": [0, 65535], "for his offence gold see where they": [0, 65535], "his offence gold see where they come": [0, 65535], "offence gold see where they come we": [0, 65535], "gold see where they come we wil": [0, 65535], "see where they come we wil behold": [0, 65535], "where they come we wil behold his": [0, 65535], "they come we wil behold his death": [0, 65535], "come we wil behold his death luc": [0, 65535], "we wil behold his death luc kneele": [0, 65535], "wil behold his death luc kneele to": [0, 65535], "behold his death luc kneele to the": [0, 65535], "his death luc kneele to the duke": [0, 65535], "death luc kneele to the duke before": [0, 65535], "luc kneele to the duke before he": [0, 65535], "kneele to the duke before he passe": [0, 65535], "to the duke before he passe the": [0, 65535], "the duke before he passe the abbey": [0, 65535], "duke before he passe the abbey enter": [0, 65535], "before he passe the abbey enter the": [0, 65535], "he passe the abbey enter the duke": [0, 65535], "passe the abbey enter the duke of": [0, 65535], "the abbey enter the duke of ephesus": [0, 65535], "abbey enter the duke of ephesus and": [0, 65535], "enter the duke of ephesus and the": [0, 65535], "the duke of ephesus and the merchant": [0, 65535], "duke of ephesus and the merchant of": [0, 65535], "of ephesus and the merchant of siracuse": [0, 65535], "ephesus and the merchant of siracuse bare": [0, 65535], "and the merchant of siracuse bare head": [0, 65535], "the merchant of siracuse bare head with": [0, 65535], "merchant of siracuse bare head with the": [0, 65535], "of siracuse bare head with the headsman": [0, 65535], "siracuse bare head with the headsman other": [0, 65535], "bare head with the headsman other officers": [0, 65535], "head with the headsman other officers duke": [0, 65535], "with the headsman other officers duke yet": [0, 65535], "the headsman other officers duke yet once": [0, 65535], "headsman other officers duke yet once againe": [0, 65535], "other officers duke yet once againe proclaime": [0, 65535], "officers duke yet once againe proclaime it": [0, 65535], "duke yet once againe proclaime it publikely": [0, 65535], "yet once againe proclaime it publikely if": [0, 65535], "once againe proclaime it publikely if any": [0, 65535], "againe proclaime it publikely if any friend": [0, 65535], "proclaime it publikely if any friend will": [0, 65535], "it publikely if any friend will pay": [0, 65535], "publikely if any friend will pay the": [0, 65535], "if any friend will pay the summe": [0, 65535], "any friend will pay the summe for": [0, 65535], "friend will pay the summe for him": [0, 65535], "will pay the summe for him he": [0, 65535], "pay the summe for him he shall": [0, 65535], "the summe for him he shall not": [0, 65535], "summe for him he shall not die": [0, 65535], "for him he shall not die so": [0, 65535], "him he shall not die so much": [0, 65535], "he shall not die so much we": [0, 65535], "shall not die so much we tender": [0, 65535], "not die so much we tender him": [0, 65535], "die so much we tender him adr": [0, 65535], "so much we tender him adr iustice": [0, 65535], "much we tender him adr iustice most": [0, 65535], "we tender him adr iustice most sacred": [0, 65535], "tender him adr iustice most sacred duke": [0, 65535], "him adr iustice most sacred duke against": [0, 65535], "adr iustice most sacred duke against the": [0, 65535], "iustice most sacred duke against the abbesse": [0, 65535], "most sacred duke against the abbesse duke": [0, 65535], "sacred duke against the abbesse duke she": [0, 65535], "duke against the abbesse duke she is": [0, 65535], "against the abbesse duke she is a": [0, 65535], "the abbesse duke she is a vertuous": [0, 65535], "abbesse duke she is a vertuous and": [0, 65535], "duke she is a vertuous and a": [0, 65535], "she is a vertuous and a reuerend": [0, 65535], "is a vertuous and a reuerend lady": [0, 65535], "a vertuous and a reuerend lady it": [0, 65535], "vertuous and a reuerend lady it cannot": [0, 65535], "and a reuerend lady it cannot be": [0, 65535], "a reuerend lady it cannot be that": [0, 65535], "reuerend lady it cannot be that she": [0, 65535], "lady it cannot be that she hath": [0, 65535], "it cannot be that she hath done": [0, 65535], "cannot be that she hath done thee": [0, 65535], "be that she hath done thee wrong": [0, 65535], "that she hath done thee wrong adr": [0, 65535], "she hath done thee wrong adr may": [0, 65535], "hath done thee wrong adr may it": [0, 65535], "done thee wrong adr may it please": [0, 65535], "thee wrong adr may it please your": [0, 65535], "wrong adr may it please your grace": [0, 65535], "adr may it please your grace antipholus": [0, 65535], "may it please your grace antipholus my": [0, 65535], "it please your grace antipholus my husba": [0, 65535], "please your grace antipholus my husba n": [0, 65535], "your grace antipholus my husba n d": [0, 65535], "grace antipholus my husba n d who": [0, 65535], "antipholus my husba n d who i": [0, 65535], "my husba n d who i made": [0, 65535], "husba n d who i made lord": [0, 65535], "n d who i made lord of": [0, 65535], "d who i made lord of me": [0, 65535], "who i made lord of me and": [0, 65535], "i made lord of me and all": [0, 65535], "made lord of me and all i": [0, 65535], "lord of me and all i had": [0, 65535], "of me and all i had at": [0, 65535], "me and all i had at your": [0, 65535], "and all i had at your important": [0, 65535], "all i had at your important letters": [0, 65535], "i had at your important letters this": [0, 65535], "had at your important letters this ill": [0, 65535], "at your important letters this ill day": [0, 65535], "your important letters this ill day a": [0, 65535], "important letters this ill day a most": [0, 65535], "letters this ill day a most outragious": [0, 65535], "this ill day a most outragious fit": [0, 65535], "ill day a most outragious fit of": [0, 65535], "day a most outragious fit of madnesse": [0, 65535], "a most outragious fit of madnesse tooke": [0, 65535], "most outragious fit of madnesse tooke him": [0, 65535], "outragious fit of madnesse tooke him that": [0, 65535], "fit of madnesse tooke him that desp'rately": [0, 65535], "of madnesse tooke him that desp'rately he": [0, 65535], "madnesse tooke him that desp'rately he hurried": [0, 65535], "tooke him that desp'rately he hurried through": [0, 65535], "him that desp'rately he hurried through the": [0, 65535], "that desp'rately he hurried through the streete": [0, 65535], "desp'rately he hurried through the streete with": [0, 65535], "he hurried through the streete with him": [0, 65535], "hurried through the streete with him his": [0, 65535], "through the streete with him his bondman": [0, 65535], "the streete with him his bondman all": [0, 65535], "streete with him his bondman all as": [0, 65535], "with him his bondman all as mad": [0, 65535], "him his bondman all as mad as": [0, 65535], "his bondman all as mad as he": [0, 65535], "bondman all as mad as he doing": [0, 65535], "all as mad as he doing displeasure": [0, 65535], "as mad as he doing displeasure to": [0, 65535], "mad as he doing displeasure to the": [0, 65535], "as he doing displeasure to the citizens": [0, 65535], "he doing displeasure to the citizens by": [0, 65535], "doing displeasure to the citizens by rushing": [0, 65535], "displeasure to the citizens by rushing in": [0, 65535], "to the citizens by rushing in their": [0, 65535], "the citizens by rushing in their houses": [0, 65535], "citizens by rushing in their houses bearing": [0, 65535], "by rushing in their houses bearing thence": [0, 65535], "rushing in their houses bearing thence rings": [0, 65535], "in their houses bearing thence rings iewels": [0, 65535], "their houses bearing thence rings iewels any": [0, 65535], "houses bearing thence rings iewels any thing": [0, 65535], "bearing thence rings iewels any thing his": [0, 65535], "thence rings iewels any thing his rage": [0, 65535], "rings iewels any thing his rage did": [0, 65535], "iewels any thing his rage did like": [0, 65535], "any thing his rage did like once": [0, 65535], "thing his rage did like once did": [0, 65535], "his rage did like once did i": [0, 65535], "rage did like once did i get": [0, 65535], "did like once did i get him": [0, 65535], "like once did i get him bound": [0, 65535], "once did i get him bound and": [0, 65535], "did i get him bound and sent": [0, 65535], "i get him bound and sent him": [0, 65535], "get him bound and sent him home": [0, 65535], "him bound and sent him home whil'st": [0, 65535], "bound and sent him home whil'st to": [0, 65535], "and sent him home whil'st to take": [0, 65535], "sent him home whil'st to take order": [0, 65535], "him home whil'st to take order for": [0, 65535], "home whil'st to take order for the": [0, 65535], "whil'st to take order for the wrongs": [0, 65535], "to take order for the wrongs i": [0, 65535], "take order for the wrongs i went": [0, 65535], "order for the wrongs i went that": [0, 65535], "for the wrongs i went that heere": [0, 65535], "the wrongs i went that heere and": [0, 65535], "wrongs i went that heere and there": [0, 65535], "i went that heere and there his": [0, 65535], "went that heere and there his furie": [0, 65535], "that heere and there his furie had": [0, 65535], "heere and there his furie had committed": [0, 65535], "and there his furie had committed anon": [0, 65535], "there his furie had committed anon i": [0, 65535], "his furie had committed anon i wot": [0, 65535], "furie had committed anon i wot not": [0, 65535], "had committed anon i wot not by": [0, 65535], "committed anon i wot not by what": [0, 65535], "anon i wot not by what strong": [0, 65535], "i wot not by what strong escape": [0, 65535], "wot not by what strong escape he": [0, 65535], "not by what strong escape he broke": [0, 65535], "by what strong escape he broke from": [0, 65535], "what strong escape he broke from those": [0, 65535], "strong escape he broke from those that": [0, 65535], "escape he broke from those that had": [0, 65535], "he broke from those that had the": [0, 65535], "broke from those that had the guard": [0, 65535], "from those that had the guard of": [0, 65535], "those that had the guard of him": [0, 65535], "that had the guard of him and": [0, 65535], "had the guard of him and with": [0, 65535], "the guard of him and with his": [0, 65535], "guard of him and with his mad": [0, 65535], "of him and with his mad attendant": [0, 65535], "him and with his mad attendant and": [0, 65535], "and with his mad attendant and himselfe": [0, 65535], "with his mad attendant and himselfe each": [0, 65535], "his mad attendant and himselfe each one": [0, 65535], "mad attendant and himselfe each one with": [0, 65535], "attendant and himselfe each one with irefull": [0, 65535], "and himselfe each one with irefull passion": [0, 65535], "himselfe each one with irefull passion with": [0, 65535], "each one with irefull passion with drawne": [0, 65535], "one with irefull passion with drawne swords": [0, 65535], "with irefull passion with drawne swords met": [0, 65535], "irefull passion with drawne swords met vs": [0, 65535], "passion with drawne swords met vs againe": [0, 65535], "with drawne swords met vs againe and": [0, 65535], "drawne swords met vs againe and madly": [0, 65535], "swords met vs againe and madly bent": [0, 65535], "met vs againe and madly bent on": [0, 65535], "vs againe and madly bent on vs": [0, 65535], "againe and madly bent on vs chac'd": [0, 65535], "and madly bent on vs chac'd vs": [0, 65535], "madly bent on vs chac'd vs away": [0, 65535], "bent on vs chac'd vs away till": [0, 65535], "on vs chac'd vs away till raising": [0, 65535], "vs chac'd vs away till raising of": [0, 65535], "chac'd vs away till raising of more": [0, 65535], "vs away till raising of more aide": [0, 65535], "away till raising of more aide we": [0, 65535], "till raising of more aide we came": [0, 65535], "raising of more aide we came againe": [0, 65535], "of more aide we came againe to": [0, 65535], "more aide we came againe to binde": [0, 65535], "aide we came againe to binde them": [0, 65535], "we came againe to binde them then": [0, 65535], "came againe to binde them then they": [0, 65535], "againe to binde them then they fled": [0, 65535], "to binde them then they fled into": [0, 65535], "binde them then they fled into this": [0, 65535], "them then they fled into this abbey": [0, 65535], "then they fled into this abbey whether": [0, 65535], "they fled into this abbey whether we": [0, 65535], "fled into this abbey whether we pursu'd": [0, 65535], "into this abbey whether we pursu'd them": [0, 65535], "this abbey whether we pursu'd them and": [0, 65535], "abbey whether we pursu'd them and heere": [0, 65535], "whether we pursu'd them and heere the": [0, 65535], "we pursu'd them and heere the abbesse": [0, 65535], "pursu'd them and heere the abbesse shuts": [0, 65535], "them and heere the abbesse shuts the": [0, 65535], "and heere the abbesse shuts the gates": [0, 65535], "heere the abbesse shuts the gates on": [0, 65535], "the abbesse shuts the gates on vs": [0, 65535], "abbesse shuts the gates on vs and": [0, 65535], "shuts the gates on vs and will": [0, 65535], "the gates on vs and will not": [0, 65535], "gates on vs and will not suffer": [0, 65535], "on vs and will not suffer vs": [0, 65535], "vs and will not suffer vs to": [0, 65535], "and will not suffer vs to fetch": [0, 65535], "will not suffer vs to fetch him": [0, 65535], "not suffer vs to fetch him out": [0, 65535], "suffer vs to fetch him out nor": [0, 65535], "vs to fetch him out nor send": [0, 65535], "to fetch him out nor send him": [0, 65535], "fetch him out nor send him forth": [0, 65535], "him out nor send him forth that": [0, 65535], "out nor send him forth that we": [0, 65535], "nor send him forth that we may": [0, 65535], "send him forth that we may beare": [0, 65535], "him forth that we may beare him": [0, 65535], "forth that we may beare him hence": [0, 65535], "that we may beare him hence therefore": [0, 65535], "we may beare him hence therefore most": [0, 65535], "may beare him hence therefore most gracious": [0, 65535], "beare him hence therefore most gracious duke": [0, 65535], "him hence therefore most gracious duke with": [0, 65535], "hence therefore most gracious duke with thy": [0, 65535], "therefore most gracious duke with thy command": [0, 65535], "most gracious duke with thy command let": [0, 65535], "gracious duke with thy command let him": [0, 65535], "duke with thy command let him be": [0, 65535], "with thy command let him be brought": [0, 65535], "thy command let him be brought forth": [0, 65535], "command let him be brought forth and": [0, 65535], "let him be brought forth and borne": [0, 65535], "him be brought forth and borne hence": [0, 65535], "be brought forth and borne hence for": [0, 65535], "brought forth and borne hence for helpe": [0, 65535], "forth and borne hence for helpe duke": [0, 65535], "and borne hence for helpe duke long": [0, 65535], "borne hence for helpe duke long since": [0, 65535], "hence for helpe duke long since thy": [0, 65535], "for helpe duke long since thy husband": [0, 65535], "helpe duke long since thy husband seru'd": [0, 65535], "duke long since thy husband seru'd me": [0, 65535], "long since thy husband seru'd me in": [0, 65535], "since thy husband seru'd me in my": [0, 65535], "thy husband seru'd me in my wars": [0, 65535], "husband seru'd me in my wars and": [0, 65535], "seru'd me in my wars and i": [0, 65535], "me in my wars and i to": [0, 65535], "in my wars and i to thee": [0, 65535], "my wars and i to thee ingag'd": [0, 65535], "wars and i to thee ingag'd a": [0, 65535], "and i to thee ingag'd a princes": [0, 65535], "i to thee ingag'd a princes word": [0, 65535], "to thee ingag'd a princes word when": [0, 65535], "thee ingag'd a princes word when thou": [0, 65535], "ingag'd a princes word when thou didst": [0, 65535], "a princes word when thou didst make": [0, 65535], "princes word when thou didst make him": [0, 65535], "word when thou didst make him master": [0, 65535], "when thou didst make him master of": [0, 65535], "thou didst make him master of thy": [0, 65535], "didst make him master of thy bed": [0, 65535], "make him master of thy bed to": [0, 65535], "him master of thy bed to do": [0, 65535], "master of thy bed to do him": [0, 65535], "of thy bed to do him all": [0, 65535], "thy bed to do him all the": [0, 65535], "bed to do him all the grace": [0, 65535], "to do him all the grace and": [0, 65535], "do him all the grace and good": [0, 65535], "him all the grace and good i": [0, 65535], "all the grace and good i could": [0, 65535], "the grace and good i could go": [0, 65535], "grace and good i could go some": [0, 65535], "and good i could go some of": [0, 65535], "good i could go some of you": [0, 65535], "i could go some of you knocke": [0, 65535], "could go some of you knocke at": [0, 65535], "go some of you knocke at the": [0, 65535], "some of you knocke at the abbey": [0, 65535], "of you knocke at the abbey gate": [0, 65535], "you knocke at the abbey gate and": [0, 65535], "knocke at the abbey gate and bid": [0, 65535], "at the abbey gate and bid the": [0, 65535], "the abbey gate and bid the lady": [0, 65535], "abbey gate and bid the lady abbesse": [0, 65535], "gate and bid the lady abbesse come": [0, 65535], "and bid the lady abbesse come to": [0, 65535], "bid the lady abbesse come to me": [0, 65535], "the lady abbesse come to me i": [0, 65535], "lady abbesse come to me i will": [0, 65535], "abbesse come to me i will determine": [0, 65535], "come to me i will determine this": [0, 65535], "to me i will determine this before": [0, 65535], "me i will determine this before i": [0, 65535], "i will determine this before i stirre": [0, 65535], "will determine this before i stirre enter": [0, 65535], "determine this before i stirre enter a": [0, 65535], "this before i stirre enter a messenger": [0, 65535], "before i stirre enter a messenger oh": [0, 65535], "i stirre enter a messenger oh mistris": [0, 65535], "stirre enter a messenger oh mistris mistris": [0, 65535], "enter a messenger oh mistris mistris shift": [0, 65535], "a messenger oh mistris mistris shift and": [0, 65535], "messenger oh mistris mistris shift and saue": [0, 65535], "oh mistris mistris shift and saue your": [0, 65535], "mistris mistris shift and saue your selfe": [0, 65535], "mistris shift and saue your selfe my": [0, 65535], "shift and saue your selfe my master": [0, 65535], "and saue your selfe my master and": [0, 65535], "saue your selfe my master and his": [0, 65535], "your selfe my master and his man": [0, 65535], "selfe my master and his man are": [0, 65535], "my master and his man are both": [0, 65535], "master and his man are both broke": [0, 65535], "and his man are both broke loose": [0, 65535], "his man are both broke loose beaten": [0, 65535], "man are both broke loose beaten the": [0, 65535], "are both broke loose beaten the maids": [0, 65535], "both broke loose beaten the maids a": [0, 65535], "broke loose beaten the maids a row": [0, 65535], "loose beaten the maids a row and": [0, 65535], "beaten the maids a row and bound": [0, 65535], "the maids a row and bound the": [0, 65535], "maids a row and bound the doctor": [0, 65535], "a row and bound the doctor whose": [0, 65535], "row and bound the doctor whose beard": [0, 65535], "and bound the doctor whose beard they": [0, 65535], "bound the doctor whose beard they haue": [0, 65535], "the doctor whose beard they haue sindg'd": [0, 65535], "doctor whose beard they haue sindg'd off": [0, 65535], "whose beard they haue sindg'd off with": [0, 65535], "beard they haue sindg'd off with brands": [0, 65535], "they haue sindg'd off with brands of": [0, 65535], "haue sindg'd off with brands of fire": [0, 65535], "sindg'd off with brands of fire and": [0, 65535], "off with brands of fire and euer": [0, 65535], "with brands of fire and euer as": [0, 65535], "brands of fire and euer as it": [0, 65535], "of fire and euer as it blaz'd": [0, 65535], "fire and euer as it blaz'd they": [0, 65535], "and euer as it blaz'd they threw": [0, 65535], "euer as it blaz'd they threw on": [0, 65535], "as it blaz'd they threw on him": [0, 65535], "it blaz'd they threw on him great": [0, 65535], "blaz'd they threw on him great pailes": [0, 65535], "they threw on him great pailes of": [0, 65535], "threw on him great pailes of puddled": [0, 65535], "on him great pailes of puddled myre": [0, 65535], "him great pailes of puddled myre to": [0, 65535], "great pailes of puddled myre to quench": [0, 65535], "pailes of puddled myre to quench the": [0, 65535], "of puddled myre to quench the haire": [0, 65535], "puddled myre to quench the haire my": [0, 65535], "myre to quench the haire my mr": [0, 65535], "to quench the haire my mr preaches": [0, 65535], "quench the haire my mr preaches patience": [0, 65535], "the haire my mr preaches patience to": [0, 65535], "haire my mr preaches patience to him": [0, 65535], "my mr preaches patience to him and": [0, 65535], "mr preaches patience to him and the": [0, 65535], "preaches patience to him and the while": [0, 65535], "patience to him and the while his": [0, 65535], "to him and the while his man": [0, 65535], "him and the while his man with": [0, 65535], "and the while his man with cizers": [0, 65535], "the while his man with cizers nickes": [0, 65535], "while his man with cizers nickes him": [0, 65535], "his man with cizers nickes him like": [0, 65535], "man with cizers nickes him like a": [0, 65535], "with cizers nickes him like a foole": [0, 65535], "cizers nickes him like a foole and": [0, 65535], "nickes him like a foole and sure": [0, 65535], "him like a foole and sure vnlesse": [0, 65535], "like a foole and sure vnlesse you": [0, 65535], "a foole and sure vnlesse you send": [0, 65535], "foole and sure vnlesse you send some": [0, 65535], "and sure vnlesse you send some present": [0, 65535], "sure vnlesse you send some present helpe": [0, 65535], "vnlesse you send some present helpe betweene": [0, 65535], "you send some present helpe betweene them": [0, 65535], "send some present helpe betweene them they": [0, 65535], "some present helpe betweene them they will": [0, 65535], "present helpe betweene them they will kill": [0, 65535], "helpe betweene them they will kill the": [0, 65535], "betweene them they will kill the coniurer": [0, 65535], "them they will kill the coniurer adr": [0, 65535], "they will kill the coniurer adr peace": [0, 65535], "will kill the coniurer adr peace foole": [0, 65535], "kill the coniurer adr peace foole thy": [0, 65535], "the coniurer adr peace foole thy master": [0, 65535], "coniurer adr peace foole thy master and": [0, 65535], "adr peace foole thy master and his": [0, 65535], "peace foole thy master and his man": [0, 65535], "foole thy master and his man are": [0, 65535], "thy master and his man are here": [0, 65535], "master and his man are here and": [0, 65535], "and his man are here and that": [0, 65535], "his man are here and that is": [0, 65535], "man are here and that is false": [0, 65535], "are here and that is false thou": [0, 65535], "here and that is false thou dost": [0, 65535], "and that is false thou dost report": [0, 65535], "that is false thou dost report to": [0, 65535], "is false thou dost report to vs": [0, 65535], "false thou dost report to vs mess": [0, 65535], "thou dost report to vs mess mistris": [0, 65535], "dost report to vs mess mistris vpon": [0, 65535], "report to vs mess mistris vpon my": [0, 65535], "to vs mess mistris vpon my life": [0, 65535], "vs mess mistris vpon my life i": [0, 65535], "mess mistris vpon my life i tel": [0, 65535], "mistris vpon my life i tel you": [0, 65535], "vpon my life i tel you true": [0, 65535], "my life i tel you true i": [0, 65535], "life i tel you true i haue": [0, 65535], "i tel you true i haue not": [0, 65535], "tel you true i haue not breath'd": [0, 65535], "you true i haue not breath'd almost": [0, 65535], "true i haue not breath'd almost since": [0, 65535], "i haue not breath'd almost since i": [0, 65535], "haue not breath'd almost since i did": [0, 65535], "not breath'd almost since i did see": [0, 65535], "breath'd almost since i did see it": [0, 65535], "almost since i did see it he": [0, 65535], "since i did see it he cries": [0, 65535], "i did see it he cries for": [0, 65535], "did see it he cries for you": [0, 65535], "see it he cries for you and": [0, 65535], "it he cries for you and vowes": [0, 65535], "he cries for you and vowes if": [0, 65535], "cries for you and vowes if he": [0, 65535], "for you and vowes if he can": [0, 65535], "you and vowes if he can take": [0, 65535], "and vowes if he can take you": [0, 65535], "vowes if he can take you to": [0, 65535], "if he can take you to scorch": [0, 65535], "he can take you to scorch your": [0, 65535], "can take you to scorch your face": [0, 65535], "take you to scorch your face and": [0, 65535], "you to scorch your face and to": [0, 65535], "to scorch your face and to disfigure": [0, 65535], "scorch your face and to disfigure you": [0, 65535], "your face and to disfigure you cry": [0, 65535], "face and to disfigure you cry within": [0, 65535], "and to disfigure you cry within harke": [0, 65535], "to disfigure you cry within harke harke": [0, 65535], "disfigure you cry within harke harke i": [0, 65535], "you cry within harke harke i heare": [0, 65535], "cry within harke harke i heare him": [0, 65535], "within harke harke i heare him mistris": [0, 65535], "harke harke i heare him mistris flie": [0, 65535], "harke i heare him mistris flie be": [0, 65535], "i heare him mistris flie be gone": [0, 65535], "heare him mistris flie be gone duke": [0, 65535], "him mistris flie be gone duke come": [0, 65535], "mistris flie be gone duke come stand": [0, 65535], "flie be gone duke come stand by": [0, 65535], "be gone duke come stand by me": [0, 65535], "gone duke come stand by me feare": [0, 65535], "duke come stand by me feare nothing": [0, 65535], "come stand by me feare nothing guard": [0, 65535], "stand by me feare nothing guard with": [0, 65535], "by me feare nothing guard with halberds": [0, 65535], "me feare nothing guard with halberds adr": [0, 65535], "feare nothing guard with halberds adr ay": [0, 65535], "nothing guard with halberds adr ay me": [0, 65535], "guard with halberds adr ay me it": [0, 65535], "with halberds adr ay me it is": [0, 65535], "halberds adr ay me it is my": [0, 65535], "adr ay me it is my husband": [0, 65535], "ay me it is my husband witnesse": [0, 65535], "me it is my husband witnesse you": [0, 65535], "it is my husband witnesse you that": [0, 65535], "is my husband witnesse you that he": [0, 65535], "my husband witnesse you that he is": [0, 65535], "husband witnesse you that he is borne": [0, 65535], "witnesse you that he is borne about": [0, 65535], "you that he is borne about inuisible": [0, 65535], "that he is borne about inuisible euen": [0, 65535], "he is borne about inuisible euen now": [0, 65535], "is borne about inuisible euen now we": [0, 65535], "borne about inuisible euen now we hous'd": [0, 65535], "about inuisible euen now we hous'd him": [0, 65535], "inuisible euen now we hous'd him in": [0, 65535], "euen now we hous'd him in the": [0, 65535], "now we hous'd him in the abbey": [0, 65535], "we hous'd him in the abbey heere": [0, 65535], "hous'd him in the abbey heere and": [0, 65535], "him in the abbey heere and now": [0, 65535], "in the abbey heere and now he's": [0, 65535], "the abbey heere and now he's there": [0, 65535], "abbey heere and now he's there past": [0, 65535], "heere and now he's there past thought": [0, 65535], "and now he's there past thought of": [0, 65535], "now he's there past thought of humane": [0, 65535], "he's there past thought of humane reason": [0, 65535], "there past thought of humane reason enter": [0, 65535], "past thought of humane reason enter antipholus": [0, 65535], "thought of humane reason enter antipholus and": [0, 65535], "of humane reason enter antipholus and e": [0, 65535], "humane reason enter antipholus and e dromio": [0, 65535], "reason enter antipholus and e dromio of": [0, 65535], "enter antipholus and e dromio of ephesus": [0, 65535], "antipholus and e dromio of ephesus e": [0, 65535], "and e dromio of ephesus e ant": [0, 65535], "e dromio of ephesus e ant iustice": [0, 65535], "dromio of ephesus e ant iustice most": [0, 65535], "of ephesus e ant iustice most gracious": [0, 65535], "ephesus e ant iustice most gracious duke": [0, 65535], "e ant iustice most gracious duke oh": [0, 65535], "ant iustice most gracious duke oh grant": [0, 65535], "iustice most gracious duke oh grant me": [0, 65535], "most gracious duke oh grant me iustice": [0, 65535], "gracious duke oh grant me iustice euen": [0, 65535], "duke oh grant me iustice euen for": [0, 65535], "oh grant me iustice euen for the": [0, 65535], "grant me iustice euen for the seruice": [0, 65535], "me iustice euen for the seruice that": [0, 65535], "iustice euen for the seruice that long": [0, 65535], "euen for the seruice that long since": [0, 65535], "for the seruice that long since i": [0, 65535], "the seruice that long since i did": [0, 65535], "seruice that long since i did thee": [0, 65535], "that long since i did thee when": [0, 65535], "long since i did thee when i": [0, 65535], "since i did thee when i bestrid": [0, 65535], "i did thee when i bestrid thee": [0, 65535], "did thee when i bestrid thee in": [0, 65535], "thee when i bestrid thee in the": [0, 65535], "when i bestrid thee in the warres": [0, 65535], "i bestrid thee in the warres and": [0, 65535], "bestrid thee in the warres and tooke": [0, 65535], "thee in the warres and tooke deepe": [0, 65535], "in the warres and tooke deepe scarres": [0, 65535], "the warres and tooke deepe scarres to": [0, 65535], "warres and tooke deepe scarres to saue": [0, 65535], "and tooke deepe scarres to saue thy": [0, 65535], "tooke deepe scarres to saue thy life": [0, 65535], "deepe scarres to saue thy life euen": [0, 65535], "scarres to saue thy life euen for": [0, 65535], "to saue thy life euen for the": [0, 65535], "saue thy life euen for the blood": [0, 65535], "thy life euen for the blood that": [0, 65535], "life euen for the blood that then": [0, 65535], "euen for the blood that then i": [0, 65535], "for the blood that then i lost": [0, 65535], "the blood that then i lost for": [0, 65535], "blood that then i lost for thee": [0, 65535], "that then i lost for thee now": [0, 65535], "then i lost for thee now grant": [0, 65535], "i lost for thee now grant me": [0, 65535], "lost for thee now grant me iustice": [0, 65535], "for thee now grant me iustice mar": [0, 65535], "thee now grant me iustice mar fat": [0, 65535], "now grant me iustice mar fat vnlesse": [0, 65535], "grant me iustice mar fat vnlesse the": [0, 65535], "me iustice mar fat vnlesse the feare": [0, 65535], "iustice mar fat vnlesse the feare of": [0, 65535], "mar fat vnlesse the feare of death": [0, 65535], "fat vnlesse the feare of death doth": [0, 65535], "vnlesse the feare of death doth make": [0, 65535], "the feare of death doth make me": [0, 65535], "feare of death doth make me dote": [0, 65535], "of death doth make me dote i": [0, 65535], "death doth make me dote i see": [0, 65535], "doth make me dote i see my": [0, 65535], "make me dote i see my sonne": [0, 65535], "me dote i see my sonne antipholus": [0, 65535], "dote i see my sonne antipholus and": [0, 65535], "i see my sonne antipholus and dromio": [0, 65535], "see my sonne antipholus and dromio e": [0, 65535], "my sonne antipholus and dromio e ant": [0, 65535], "sonne antipholus and dromio e ant iustice": [0, 65535], "antipholus and dromio e ant iustice sweet": [0, 65535], "and dromio e ant iustice sweet prince": [0, 65535], "dromio e ant iustice sweet prince against": [0, 65535], "e ant iustice sweet prince against that": [0, 65535], "ant iustice sweet prince against that woman": [0, 65535], "iustice sweet prince against that woman there": [0, 65535], "sweet prince against that woman there she": [0, 65535], "prince against that woman there she whom": [0, 65535], "against that woman there she whom thou": [0, 65535], "that woman there she whom thou gau'st": [0, 65535], "woman there she whom thou gau'st to": [0, 65535], "there she whom thou gau'st to me": [0, 65535], "she whom thou gau'st to me to": [0, 65535], "whom thou gau'st to me to be": [0, 65535], "thou gau'st to me to be my": [0, 65535], "gau'st to me to be my wife": [0, 65535], "to me to be my wife that": [0, 65535], "me to be my wife that hath": [0, 65535], "to be my wife that hath abused": [0, 65535], "be my wife that hath abused and": [0, 65535], "my wife that hath abused and dishonored": [0, 65535], "wife that hath abused and dishonored me": [0, 65535], "that hath abused and dishonored me euen": [0, 65535], "hath abused and dishonored me euen in": [0, 65535], "abused and dishonored me euen in the": [0, 65535], "and dishonored me euen in the strength": [0, 65535], "dishonored me euen in the strength and": [0, 65535], "me euen in the strength and height": [0, 65535], "euen in the strength and height of": [0, 65535], "in the strength and height of iniurie": [0, 65535], "the strength and height of iniurie beyond": [0, 65535], "strength and height of iniurie beyond imagination": [0, 65535], "and height of iniurie beyond imagination is": [0, 65535], "height of iniurie beyond imagination is the": [0, 65535], "of iniurie beyond imagination is the wrong": [0, 65535], "iniurie beyond imagination is the wrong that": [0, 65535], "beyond imagination is the wrong that she": [0, 65535], "imagination is the wrong that she this": [0, 65535], "is the wrong that she this day": [0, 65535], "the wrong that she this day hath": [0, 65535], "wrong that she this day hath shamelesse": [0, 65535], "that she this day hath shamelesse throwne": [0, 65535], "she this day hath shamelesse throwne on": [0, 65535], "this day hath shamelesse throwne on me": [0, 65535], "day hath shamelesse throwne on me duke": [0, 65535], "hath shamelesse throwne on me duke discouer": [0, 65535], "shamelesse throwne on me duke discouer how": [0, 65535], "throwne on me duke discouer how and": [0, 65535], "on me duke discouer how and thou": [0, 65535], "me duke discouer how and thou shalt": [0, 65535], "duke discouer how and thou shalt finde": [0, 65535], "discouer how and thou shalt finde me": [0, 65535], "how and thou shalt finde me iust": [0, 65535], "and thou shalt finde me iust e": [0, 65535], "thou shalt finde me iust e ant": [0, 65535], "shalt finde me iust e ant this": [0, 65535], "finde me iust e ant this day": [0, 65535], "me iust e ant this day great": [0, 65535], "iust e ant this day great duke": [0, 65535], "e ant this day great duke she": [0, 65535], "ant this day great duke she shut": [0, 65535], "this day great duke she shut the": [0, 65535], "day great duke she shut the doores": [0, 65535], "great duke she shut the doores vpon": [0, 65535], "duke she shut the doores vpon me": [0, 65535], "she shut the doores vpon me while": [0, 65535], "shut the doores vpon me while she": [0, 65535], "the doores vpon me while she with": [0, 65535], "doores vpon me while she with harlots": [0, 65535], "vpon me while she with harlots feasted": [0, 65535], "me while she with harlots feasted in": [0, 65535], "while she with harlots feasted in my": [0, 65535], "she with harlots feasted in my house": [0, 65535], "with harlots feasted in my house duke": [0, 65535], "harlots feasted in my house duke a": [0, 65535], "feasted in my house duke a greeuous": [0, 65535], "in my house duke a greeuous fault": [0, 65535], "my house duke a greeuous fault say": [0, 65535], "house duke a greeuous fault say woman": [0, 65535], "duke a greeuous fault say woman didst": [0, 65535], "a greeuous fault say woman didst thou": [0, 65535], "greeuous fault say woman didst thou so": [0, 65535], "fault say woman didst thou so adr": [0, 65535], "say woman didst thou so adr no": [0, 65535], "woman didst thou so adr no my": [0, 65535], "didst thou so adr no my good": [0, 65535], "thou so adr no my good lord": [0, 65535], "so adr no my good lord my": [0, 65535], "adr no my good lord my selfe": [0, 65535], "no my good lord my selfe he": [0, 65535], "my good lord my selfe he and": [0, 65535], "good lord my selfe he and my": [0, 65535], "lord my selfe he and my sister": [0, 65535], "my selfe he and my sister to": [0, 65535], "selfe he and my sister to day": [0, 65535], "he and my sister to day did": [0, 65535], "and my sister to day did dine": [0, 65535], "my sister to day did dine together": [0, 65535], "sister to day did dine together so": [0, 65535], "to day did dine together so befall": [0, 65535], "day did dine together so befall my": [0, 65535], "did dine together so befall my soule": [0, 65535], "dine together so befall my soule as": [0, 65535], "together so befall my soule as this": [0, 65535], "so befall my soule as this is": [0, 65535], "befall my soule as this is false": [0, 65535], "my soule as this is false he": [0, 65535], "soule as this is false he burthens": [0, 65535], "as this is false he burthens me": [0, 65535], "this is false he burthens me withall": [0, 65535], "is false he burthens me withall luc": [0, 65535], "false he burthens me withall luc nere": [0, 65535], "he burthens me withall luc nere may": [0, 65535], "burthens me withall luc nere may i": [0, 65535], "me withall luc nere may i looke": [0, 65535], "withall luc nere may i looke on": [0, 65535], "luc nere may i looke on day": [0, 65535], "nere may i looke on day nor": [0, 65535], "may i looke on day nor sleepe": [0, 65535], "i looke on day nor sleepe on": [0, 65535], "looke on day nor sleepe on night": [0, 65535], "on day nor sleepe on night but": [0, 65535], "day nor sleepe on night but she": [0, 65535], "nor sleepe on night but she tels": [0, 65535], "sleepe on night but she tels to": [0, 65535], "on night but she tels to your": [0, 65535], "night but she tels to your highnesse": [0, 65535], "but she tels to your highnesse simple": [0, 65535], "she tels to your highnesse simple truth": [0, 65535], "tels to your highnesse simple truth gold": [0, 65535], "to your highnesse simple truth gold o": [0, 65535], "your highnesse simple truth gold o periur'd": [0, 65535], "highnesse simple truth gold o periur'd woman": [0, 65535], "simple truth gold o periur'd woman they": [0, 65535], "truth gold o periur'd woman they are": [0, 65535], "gold o periur'd woman they are both": [0, 65535], "o periur'd woman they are both forsworne": [0, 65535], "periur'd woman they are both forsworne in": [0, 65535], "woman they are both forsworne in this": [0, 65535], "they are both forsworne in this the": [0, 65535], "are both forsworne in this the madman": [0, 65535], "both forsworne in this the madman iustly": [0, 65535], "forsworne in this the madman iustly chargeth": [0, 65535], "in this the madman iustly chargeth them": [0, 65535], "this the madman iustly chargeth them e": [0, 65535], "the madman iustly chargeth them e ant": [0, 65535], "madman iustly chargeth them e ant my": [0, 65535], "iustly chargeth them e ant my liege": [0, 65535], "chargeth them e ant my liege i": [0, 65535], "them e ant my liege i am": [0, 65535], "e ant my liege i am aduised": [0, 65535], "ant my liege i am aduised what": [0, 65535], "my liege i am aduised what i": [0, 65535], "liege i am aduised what i say": [0, 65535], "i am aduised what i say neither": [0, 65535], "am aduised what i say neither disturbed": [0, 65535], "aduised what i say neither disturbed with": [0, 65535], "what i say neither disturbed with the": [0, 65535], "i say neither disturbed with the effect": [0, 65535], "say neither disturbed with the effect of": [0, 65535], "neither disturbed with the effect of wine": [0, 65535], "disturbed with the effect of wine nor": [0, 65535], "with the effect of wine nor headie": [0, 65535], "the effect of wine nor headie rash": [0, 65535], "effect of wine nor headie rash prouoak'd": [0, 65535], "of wine nor headie rash prouoak'd with": [0, 65535], "wine nor headie rash prouoak'd with raging": [0, 65535], "nor headie rash prouoak'd with raging ire": [0, 65535], "headie rash prouoak'd with raging ire albeit": [0, 65535], "rash prouoak'd with raging ire albeit my": [0, 65535], "prouoak'd with raging ire albeit my wrongs": [0, 65535], "with raging ire albeit my wrongs might": [0, 65535], "raging ire albeit my wrongs might make": [0, 65535], "ire albeit my wrongs might make one": [0, 65535], "albeit my wrongs might make one wiser": [0, 65535], "my wrongs might make one wiser mad": [0, 65535], "wrongs might make one wiser mad this": [0, 65535], "might make one wiser mad this woman": [0, 65535], "make one wiser mad this woman lock'd": [0, 65535], "one wiser mad this woman lock'd me": [0, 65535], "wiser mad this woman lock'd me out": [0, 65535], "mad this woman lock'd me out this": [0, 65535], "this woman lock'd me out this day": [0, 65535], "woman lock'd me out this day from": [0, 65535], "lock'd me out this day from dinner": [0, 65535], "me out this day from dinner that": [0, 65535], "out this day from dinner that goldsmith": [0, 65535], "this day from dinner that goldsmith there": [0, 65535], "day from dinner that goldsmith there were": [0, 65535], "from dinner that goldsmith there were he": [0, 65535], "dinner that goldsmith there were he not": [0, 65535], "that goldsmith there were he not pack'd": [0, 65535], "goldsmith there were he not pack'd with": [0, 65535], "there were he not pack'd with her": [0, 65535], "were he not pack'd with her could": [0, 65535], "he not pack'd with her could witnesse": [0, 65535], "not pack'd with her could witnesse it": [0, 65535], "pack'd with her could witnesse it for": [0, 65535], "with her could witnesse it for he": [0, 65535], "her could witnesse it for he was": [0, 65535], "could witnesse it for he was with": [0, 65535], "witnesse it for he was with me": [0, 65535], "it for he was with me then": [0, 65535], "for he was with me then who": [0, 65535], "he was with me then who parted": [0, 65535], "was with me then who parted with": [0, 65535], "with me then who parted with me": [0, 65535], "me then who parted with me to": [0, 65535], "then who parted with me to go": [0, 65535], "who parted with me to go fetch": [0, 65535], "parted with me to go fetch a": [0, 65535], "with me to go fetch a chaine": [0, 65535], "me to go fetch a chaine promising": [0, 65535], "to go fetch a chaine promising to": [0, 65535], "go fetch a chaine promising to bring": [0, 65535], "fetch a chaine promising to bring it": [0, 65535], "a chaine promising to bring it to": [0, 65535], "chaine promising to bring it to the": [0, 65535], "promising to bring it to the porpentine": [0, 65535], "to bring it to the porpentine where": [0, 65535], "bring it to the porpentine where balthasar": [0, 65535], "it to the porpentine where balthasar and": [0, 65535], "to the porpentine where balthasar and i": [0, 65535], "the porpentine where balthasar and i did": [0, 65535], "porpentine where balthasar and i did dine": [0, 65535], "where balthasar and i did dine together": [0, 65535], "balthasar and i did dine together our": [0, 65535], "and i did dine together our dinner": [0, 65535], "i did dine together our dinner done": [0, 65535], "did dine together our dinner done and": [0, 65535], "dine together our dinner done and he": [0, 65535], "together our dinner done and he not": [0, 65535], "our dinner done and he not comming": [0, 65535], "dinner done and he not comming thither": [0, 65535], "done and he not comming thither i": [0, 65535], "and he not comming thither i went": [0, 65535], "he not comming thither i went to": [0, 65535], "not comming thither i went to seeke": [0, 65535], "comming thither i went to seeke him": [0, 65535], "thither i went to seeke him in": [0, 65535], "i went to seeke him in the": [0, 65535], "went to seeke him in the street": [0, 65535], "to seeke him in the street i": [0, 65535], "seeke him in the street i met": [0, 65535], "him in the street i met him": [0, 65535], "in the street i met him and": [0, 65535], "the street i met him and in": [0, 65535], "street i met him and in his": [0, 65535], "i met him and in his companie": [0, 65535], "met him and in his companie that": [0, 65535], "him and in his companie that gentleman": [0, 65535], "and in his companie that gentleman there": [0, 65535], "in his companie that gentleman there did": [0, 65535], "his companie that gentleman there did this": [0, 65535], "companie that gentleman there did this periur'd": [0, 65535], "that gentleman there did this periur'd goldsmith": [0, 65535], "gentleman there did this periur'd goldsmith sweare": [0, 65535], "there did this periur'd goldsmith sweare me": [0, 65535], "did this periur'd goldsmith sweare me downe": [0, 65535], "this periur'd goldsmith sweare me downe that": [0, 65535], "periur'd goldsmith sweare me downe that i": [0, 65535], "goldsmith sweare me downe that i this": [0, 65535], "sweare me downe that i this day": [0, 65535], "me downe that i this day of": [0, 65535], "downe that i this day of him": [0, 65535], "that i this day of him receiu'd": [0, 65535], "i this day of him receiu'd the": [0, 65535], "this day of him receiu'd the chaine": [0, 65535], "day of him receiu'd the chaine which": [0, 65535], "of him receiu'd the chaine which god": [0, 65535], "him receiu'd the chaine which god he": [0, 65535], "receiu'd the chaine which god he knowes": [0, 65535], "the chaine which god he knowes i": [0, 65535], "chaine which god he knowes i saw": [0, 65535], "which god he knowes i saw not": [0, 65535], "god he knowes i saw not for": [0, 65535], "he knowes i saw not for the": [0, 65535], "knowes i saw not for the which": [0, 65535], "i saw not for the which he": [0, 65535], "saw not for the which he did": [0, 65535], "not for the which he did arrest": [0, 65535], "for the which he did arrest me": [0, 65535], "the which he did arrest me with": [0, 65535], "which he did arrest me with an": [0, 65535], "he did arrest me with an officer": [0, 65535], "did arrest me with an officer i": [0, 65535], "arrest me with an officer i did": [0, 65535], "me with an officer i did obey": [0, 65535], "with an officer i did obey and": [0, 65535], "an officer i did obey and sent": [0, 65535], "officer i did obey and sent my": [0, 65535], "i did obey and sent my pesant": [0, 65535], "did obey and sent my pesant home": [0, 65535], "obey and sent my pesant home for": [0, 65535], "and sent my pesant home for certaine": [0, 65535], "sent my pesant home for certaine duckets": [0, 65535], "my pesant home for certaine duckets he": [0, 65535], "pesant home for certaine duckets he with": [0, 65535], "home for certaine duckets he with none": [0, 65535], "for certaine duckets he with none return'd": [0, 65535], "certaine duckets he with none return'd then": [0, 65535], "duckets he with none return'd then fairely": [0, 65535], "he with none return'd then fairely i": [0, 65535], "with none return'd then fairely i bespoke": [0, 65535], "none return'd then fairely i bespoke the": [0, 65535], "return'd then fairely i bespoke the officer": [0, 65535], "then fairely i bespoke the officer to": [0, 65535], "fairely i bespoke the officer to go": [0, 65535], "i bespoke the officer to go in": [0, 65535], "bespoke the officer to go in person": [0, 65535], "the officer to go in person with": [0, 65535], "officer to go in person with me": [0, 65535], "to go in person with me to": [0, 65535], "go in person with me to my": [0, 65535], "in person with me to my house": [0, 65535], "person with me to my house by'th'": [0, 65535], "with me to my house by'th' way": [0, 65535], "me to my house by'th' way we": [0, 65535], "to my house by'th' way we met": [0, 65535], "my house by'th' way we met my": [0, 65535], "house by'th' way we met my wife": [0, 65535], "by'th' way we met my wife her": [0, 65535], "way we met my wife her sister": [0, 65535], "we met my wife her sister and": [0, 65535], "met my wife her sister and a": [0, 65535], "my wife her sister and a rabble": [0, 65535], "wife her sister and a rabble more": [0, 65535], "her sister and a rabble more of": [0, 65535], "sister and a rabble more of vilde": [0, 65535], "and a rabble more of vilde confederates": [0, 65535], "a rabble more of vilde confederates along": [0, 65535], "rabble more of vilde confederates along with": [0, 65535], "more of vilde confederates along with them": [0, 65535], "of vilde confederates along with them they": [0, 65535], "vilde confederates along with them they brought": [0, 65535], "confederates along with them they brought one": [0, 65535], "along with them they brought one pinch": [0, 65535], "with them they brought one pinch a": [0, 65535], "them they brought one pinch a hungry": [0, 65535], "they brought one pinch a hungry leane": [0, 65535], "brought one pinch a hungry leane fac'd": [0, 65535], "one pinch a hungry leane fac'd villaine": [0, 65535], "pinch a hungry leane fac'd villaine a": [0, 65535], "a hungry leane fac'd villaine a meere": [0, 65535], "hungry leane fac'd villaine a meere anatomie": [0, 65535], "leane fac'd villaine a meere anatomie a": [0, 65535], "fac'd villaine a meere anatomie a mountebanke": [0, 65535], "villaine a meere anatomie a mountebanke a": [0, 65535], "a meere anatomie a mountebanke a thred": [0, 65535], "meere anatomie a mountebanke a thred bare": [0, 65535], "anatomie a mountebanke a thred bare iugler": [0, 65535], "a mountebanke a thred bare iugler and": [0, 65535], "mountebanke a thred bare iugler and a": [0, 65535], "a thred bare iugler and a fortune": [0, 65535], "thred bare iugler and a fortune teller": [0, 65535], "bare iugler and a fortune teller a": [0, 65535], "iugler and a fortune teller a needy": [0, 65535], "and a fortune teller a needy hollow": [0, 65535], "a fortune teller a needy hollow ey'd": [0, 65535], "fortune teller a needy hollow ey'd sharpe": [0, 65535], "teller a needy hollow ey'd sharpe looking": [0, 65535], "a needy hollow ey'd sharpe looking wretch": [0, 65535], "needy hollow ey'd sharpe looking wretch a": [0, 65535], "hollow ey'd sharpe looking wretch a liuing": [0, 65535], "ey'd sharpe looking wretch a liuing dead": [0, 65535], "sharpe looking wretch a liuing dead man": [0, 65535], "looking wretch a liuing dead man this": [0, 65535], "wretch a liuing dead man this pernicious": [0, 65535], "a liuing dead man this pernicious slaue": [0, 65535], "liuing dead man this pernicious slaue forsooth": [0, 65535], "dead man this pernicious slaue forsooth tooke": [0, 65535], "man this pernicious slaue forsooth tooke on": [0, 65535], "this pernicious slaue forsooth tooke on him": [0, 65535], "pernicious slaue forsooth tooke on him as": [0, 65535], "slaue forsooth tooke on him as a": [0, 65535], "forsooth tooke on him as a coniurer": [0, 65535], "tooke on him as a coniurer and": [0, 65535], "on him as a coniurer and gazing": [0, 65535], "him as a coniurer and gazing in": [0, 65535], "as a coniurer and gazing in mine": [0, 65535], "a coniurer and gazing in mine eyes": [0, 65535], "coniurer and gazing in mine eyes feeling": [0, 65535], "and gazing in mine eyes feeling my": [0, 65535], "gazing in mine eyes feeling my pulse": [0, 65535], "in mine eyes feeling my pulse and": [0, 65535], "mine eyes feeling my pulse and with": [0, 65535], "eyes feeling my pulse and with no": [0, 65535], "feeling my pulse and with no face": [0, 65535], "my pulse and with no face as": [0, 65535], "pulse and with no face as 'twere": [0, 65535], "and with no face as 'twere out": [0, 65535], "with no face as 'twere out facing": [0, 65535], "no face as 'twere out facing me": [0, 65535], "face as 'twere out facing me cries": [0, 65535], "as 'twere out facing me cries out": [0, 65535], "'twere out facing me cries out i": [0, 65535], "out facing me cries out i was": [0, 65535], "facing me cries out i was possest": [0, 65535], "me cries out i was possest then": [0, 65535], "cries out i was possest then altogether": [0, 65535], "out i was possest then altogether they": [0, 65535], "i was possest then altogether they fell": [0, 65535], "was possest then altogether they fell vpon": [0, 65535], "possest then altogether they fell vpon me": [0, 65535], "then altogether they fell vpon me bound": [0, 65535], "altogether they fell vpon me bound me": [0, 65535], "they fell vpon me bound me bore": [0, 65535], "fell vpon me bound me bore me": [0, 65535], "vpon me bound me bore me thence": [0, 65535], "me bound me bore me thence and": [0, 65535], "bound me bore me thence and in": [0, 65535], "me bore me thence and in a": [0, 65535], "bore me thence and in a darke": [0, 65535], "me thence and in a darke and": [0, 65535], "thence and in a darke and dankish": [0, 65535], "and in a darke and dankish vault": [0, 65535], "in a darke and dankish vault at": [0, 65535], "a darke and dankish vault at home": [0, 65535], "darke and dankish vault at home there": [0, 65535], "and dankish vault at home there left": [0, 65535], "dankish vault at home there left me": [0, 65535], "vault at home there left me and": [0, 65535], "at home there left me and my": [0, 65535], "home there left me and my man": [0, 65535], "there left me and my man both": [0, 65535], "left me and my man both bound": [0, 65535], "me and my man both bound together": [0, 65535], "and my man both bound together till": [0, 65535], "my man both bound together till gnawing": [0, 65535], "man both bound together till gnawing with": [0, 65535], "both bound together till gnawing with my": [0, 65535], "bound together till gnawing with my teeth": [0, 65535], "together till gnawing with my teeth my": [0, 65535], "till gnawing with my teeth my bonds": [0, 65535], "gnawing with my teeth my bonds in": [0, 65535], "with my teeth my bonds in sunder": [0, 65535], "my teeth my bonds in sunder i": [0, 65535], "teeth my bonds in sunder i gain'd": [0, 65535], "my bonds in sunder i gain'd my": [0, 65535], "bonds in sunder i gain'd my freedome": [0, 65535], "in sunder i gain'd my freedome and": [0, 65535], "sunder i gain'd my freedome and immediately": [0, 65535], "i gain'd my freedome and immediately ran": [0, 65535], "gain'd my freedome and immediately ran hether": [0, 65535], "my freedome and immediately ran hether to": [0, 65535], "freedome and immediately ran hether to your": [0, 65535], "and immediately ran hether to your grace": [0, 65535], "immediately ran hether to your grace whom": [0, 65535], "ran hether to your grace whom i": [0, 65535], "hether to your grace whom i beseech": [0, 65535], "to your grace whom i beseech to": [0, 65535], "your grace whom i beseech to giue": [0, 65535], "grace whom i beseech to giue me": [0, 65535], "whom i beseech to giue me ample": [0, 65535], "i beseech to giue me ample satisfaction": [0, 65535], "beseech to giue me ample satisfaction for": [0, 65535], "to giue me ample satisfaction for these": [0, 65535], "giue me ample satisfaction for these deepe": [0, 65535], "me ample satisfaction for these deepe shames": [0, 65535], "ample satisfaction for these deepe shames and": [0, 65535], "satisfaction for these deepe shames and great": [0, 65535], "for these deepe shames and great indignities": [0, 65535], "these deepe shames and great indignities gold": [0, 65535], "deepe shames and great indignities gold my": [0, 65535], "shames and great indignities gold my lord": [0, 65535], "and great indignities gold my lord in": [0, 65535], "great indignities gold my lord in truth": [0, 65535], "indignities gold my lord in truth thus": [0, 65535], "gold my lord in truth thus far": [0, 65535], "my lord in truth thus far i": [0, 65535], "lord in truth thus far i witnes": [0, 65535], "in truth thus far i witnes with": [0, 65535], "truth thus far i witnes with him": [0, 65535], "thus far i witnes with him that": [0, 65535], "far i witnes with him that he": [0, 65535], "i witnes with him that he din'd": [0, 65535], "witnes with him that he din'd not": [0, 65535], "with him that he din'd not at": [0, 65535], "him that he din'd not at home": [0, 65535], "that he din'd not at home but": [0, 65535], "he din'd not at home but was": [0, 65535], "din'd not at home but was lock'd": [0, 65535], "not at home but was lock'd out": [0, 65535], "at home but was lock'd out duke": [0, 65535], "home but was lock'd out duke but": [0, 65535], "but was lock'd out duke but had": [0, 65535], "was lock'd out duke but had he": [0, 65535], "lock'd out duke but had he such": [0, 65535], "out duke but had he such a": [0, 65535], "duke but had he such a chaine": [0, 65535], "but had he such a chaine of": [0, 65535], "had he such a chaine of thee": [0, 65535], "he such a chaine of thee or": [0, 65535], "such a chaine of thee or no": [0, 65535], "a chaine of thee or no gold": [0, 65535], "chaine of thee or no gold he": [0, 65535], "of thee or no gold he had": [0, 65535], "thee or no gold he had my": [0, 65535], "or no gold he had my lord": [0, 65535], "no gold he had my lord and": [0, 65535], "gold he had my lord and when": [0, 65535], "he had my lord and when he": [0, 65535], "had my lord and when he ran": [0, 65535], "my lord and when he ran in": [0, 65535], "lord and when he ran in heere": [0, 65535], "and when he ran in heere these": [0, 65535], "when he ran in heere these people": [0, 65535], "he ran in heere these people saw": [0, 65535], "ran in heere these people saw the": [0, 65535], "in heere these people saw the chaine": [0, 65535], "heere these people saw the chaine about": [0, 65535], "these people saw the chaine about his": [0, 65535], "people saw the chaine about his necke": [0, 65535], "saw the chaine about his necke mar": [0, 65535], "the chaine about his necke mar besides": [0, 65535], "chaine about his necke mar besides i": [0, 65535], "about his necke mar besides i will": [0, 65535], "his necke mar besides i will be": [0, 65535], "necke mar besides i will be sworne": [0, 65535], "mar besides i will be sworne these": [0, 65535], "besides i will be sworne these eares": [0, 65535], "i will be sworne these eares of": [0, 65535], "will be sworne these eares of mine": [0, 65535], "be sworne these eares of mine heard": [0, 65535], "sworne these eares of mine heard you": [0, 65535], "these eares of mine heard you confesse": [0, 65535], "eares of mine heard you confesse you": [0, 65535], "of mine heard you confesse you had": [0, 65535], "mine heard you confesse you had the": [0, 65535], "heard you confesse you had the chaine": [0, 65535], "you confesse you had the chaine of": [0, 65535], "confesse you had the chaine of him": [0, 65535], "you had the chaine of him after": [0, 65535], "had the chaine of him after you": [0, 65535], "the chaine of him after you first": [0, 65535], "chaine of him after you first forswore": [0, 65535], "of him after you first forswore it": [0, 65535], "him after you first forswore it on": [0, 65535], "after you first forswore it on the": [0, 65535], "you first forswore it on the mart": [0, 65535], "first forswore it on the mart and": [0, 65535], "forswore it on the mart and thereupon": [0, 65535], "it on the mart and thereupon i": [0, 65535], "on the mart and thereupon i drew": [0, 65535], "the mart and thereupon i drew my": [0, 65535], "mart and thereupon i drew my sword": [0, 65535], "and thereupon i drew my sword on": [0, 65535], "thereupon i drew my sword on you": [0, 65535], "i drew my sword on you and": [0, 65535], "drew my sword on you and then": [0, 65535], "my sword on you and then you": [0, 65535], "sword on you and then you fled": [0, 65535], "on you and then you fled into": [0, 65535], "you and then you fled into this": [0, 65535], "and then you fled into this abbey": [0, 65535], "then you fled into this abbey heere": [0, 65535], "you fled into this abbey heere from": [0, 65535], "fled into this abbey heere from whence": [0, 65535], "into this abbey heere from whence i": [0, 65535], "this abbey heere from whence i thinke": [0, 65535], "abbey heere from whence i thinke you": [0, 65535], "heere from whence i thinke you are": [0, 65535], "from whence i thinke you are come": [0, 65535], "whence i thinke you are come by": [0, 65535], "i thinke you are come by miracle": [0, 65535], "thinke you are come by miracle e": [0, 65535], "you are come by miracle e ant": [0, 65535], "are come by miracle e ant i": [0, 65535], "come by miracle e ant i neuer": [0, 65535], "by miracle e ant i neuer came": [0, 65535], "miracle e ant i neuer came within": [0, 65535], "e ant i neuer came within these": [0, 65535], "ant i neuer came within these abbey": [0, 65535], "i neuer came within these abbey wals": [0, 65535], "neuer came within these abbey wals nor": [0, 65535], "came within these abbey wals nor euer": [0, 65535], "within these abbey wals nor euer didst": [0, 65535], "these abbey wals nor euer didst thou": [0, 65535], "abbey wals nor euer didst thou draw": [0, 65535], "wals nor euer didst thou draw thy": [0, 65535], "nor euer didst thou draw thy sword": [0, 65535], "euer didst thou draw thy sword on": [0, 65535], "didst thou draw thy sword on me": [0, 65535], "thou draw thy sword on me i": [0, 65535], "draw thy sword on me i neuer": [0, 65535], "thy sword on me i neuer saw": [0, 65535], "sword on me i neuer saw the": [0, 65535], "on me i neuer saw the chaine": [0, 65535], "me i neuer saw the chaine so": [0, 65535], "i neuer saw the chaine so helpe": [0, 65535], "neuer saw the chaine so helpe me": [0, 65535], "saw the chaine so helpe me heauen": [0, 65535], "the chaine so helpe me heauen and": [0, 65535], "chaine so helpe me heauen and this": [0, 65535], "so helpe me heauen and this is": [0, 65535], "helpe me heauen and this is false": [0, 65535], "me heauen and this is false you": [0, 65535], "heauen and this is false you burthen": [0, 65535], "and this is false you burthen me": [0, 65535], "this is false you burthen me withall": [0, 65535], "is false you burthen me withall duke": [0, 65535], "false you burthen me withall duke why": [0, 65535], "you burthen me withall duke why what": [0, 65535], "burthen me withall duke why what an": [0, 65535], "me withall duke why what an intricate": [0, 65535], "withall duke why what an intricate impeach": [0, 65535], "duke why what an intricate impeach is": [0, 65535], "why what an intricate impeach is this": [0, 65535], "what an intricate impeach is this i": [0, 65535], "an intricate impeach is this i thinke": [0, 65535], "intricate impeach is this i thinke you": [0, 65535], "impeach is this i thinke you all": [0, 65535], "is this i thinke you all haue": [0, 65535], "this i thinke you all haue drunke": [0, 65535], "i thinke you all haue drunke of": [0, 65535], "thinke you all haue drunke of circes": [0, 65535], "you all haue drunke of circes cup": [0, 65535], "all haue drunke of circes cup if": [0, 65535], "haue drunke of circes cup if heere": [0, 65535], "drunke of circes cup if heere you": [0, 65535], "of circes cup if heere you hous'd": [0, 65535], "circes cup if heere you hous'd him": [0, 65535], "cup if heere you hous'd him heere": [0, 65535], "if heere you hous'd him heere he": [0, 65535], "heere you hous'd him heere he would": [0, 65535], "you hous'd him heere he would haue": [0, 65535], "hous'd him heere he would haue bin": [0, 65535], "him heere he would haue bin if": [0, 65535], "heere he would haue bin if he": [0, 65535], "he would haue bin if he were": [0, 65535], "would haue bin if he were mad": [0, 65535], "haue bin if he were mad he": [0, 65535], "bin if he were mad he would": [0, 65535], "if he were mad he would not": [0, 65535], "he were mad he would not pleade": [0, 65535], "were mad he would not pleade so": [0, 65535], "mad he would not pleade so coldly": [0, 65535], "he would not pleade so coldly you": [0, 65535], "would not pleade so coldly you say": [0, 65535], "not pleade so coldly you say he": [0, 65535], "pleade so coldly you say he din'd": [0, 65535], "so coldly you say he din'd at": [0, 65535], "coldly you say he din'd at home": [0, 65535], "you say he din'd at home the": [0, 65535], "say he din'd at home the goldsmith": [0, 65535], "he din'd at home the goldsmith heere": [0, 65535], "din'd at home the goldsmith heere denies": [0, 65535], "at home the goldsmith heere denies that": [0, 65535], "home the goldsmith heere denies that saying": [0, 65535], "the goldsmith heere denies that saying sirra": [0, 65535], "goldsmith heere denies that saying sirra what": [0, 65535], "heere denies that saying sirra what say": [0, 65535], "denies that saying sirra what say you": [0, 65535], "that saying sirra what say you e": [0, 65535], "saying sirra what say you e dro": [0, 65535], "sirra what say you e dro sir": [0, 65535], "what say you e dro sir he": [0, 65535], "say you e dro sir he din'de": [0, 65535], "you e dro sir he din'de with": [0, 65535], "e dro sir he din'de with her": [0, 65535], "dro sir he din'de with her there": [0, 65535], "sir he din'de with her there at": [0, 65535], "he din'de with her there at the": [0, 65535], "din'de with her there at the porpentine": [0, 65535], "with her there at the porpentine cur": [0, 65535], "her there at the porpentine cur he": [0, 65535], "there at the porpentine cur he did": [0, 65535], "at the porpentine cur he did and": [0, 65535], "the porpentine cur he did and from": [0, 65535], "porpentine cur he did and from my": [0, 65535], "cur he did and from my finger": [0, 65535], "he did and from my finger snacht": [0, 65535], "did and from my finger snacht that": [0, 65535], "and from my finger snacht that ring": [0, 65535], "from my finger snacht that ring e": [0, 65535], "my finger snacht that ring e anti": [0, 65535], "finger snacht that ring e anti tis": [0, 65535], "snacht that ring e anti tis true": [0, 65535], "that ring e anti tis true my": [0, 65535], "ring e anti tis true my liege": [0, 65535], "e anti tis true my liege this": [0, 65535], "anti tis true my liege this ring": [0, 65535], "tis true my liege this ring i": [0, 65535], "true my liege this ring i had": [0, 65535], "my liege this ring i had of": [0, 65535], "liege this ring i had of her": [0, 65535], "this ring i had of her duke": [0, 65535], "ring i had of her duke saw'st": [0, 65535], "i had of her duke saw'st thou": [0, 65535], "had of her duke saw'st thou him": [0, 65535], "of her duke saw'st thou him enter": [0, 65535], "her duke saw'st thou him enter at": [0, 65535], "duke saw'st thou him enter at the": [0, 65535], "saw'st thou him enter at the abbey": [0, 65535], "thou him enter at the abbey heere": [0, 65535], "him enter at the abbey heere curt": [0, 65535], "enter at the abbey heere curt as": [0, 65535], "at the abbey heere curt as sure": [0, 65535], "the abbey heere curt as sure my": [0, 65535], "abbey heere curt as sure my liege": [0, 65535], "heere curt as sure my liege as": [0, 65535], "curt as sure my liege as i": [0, 65535], "as sure my liege as i do": [0, 65535], "sure my liege as i do see": [0, 65535], "my liege as i do see your": [0, 65535], "liege as i do see your grace": [0, 65535], "as i do see your grace duke": [0, 65535], "i do see your grace duke why": [0, 65535], "do see your grace duke why this": [0, 65535], "see your grace duke why this is": [0, 65535], "your grace duke why this is straunge": [0, 65535], "grace duke why this is straunge go": [0, 65535], "duke why this is straunge go call": [0, 65535], "why this is straunge go call the": [0, 65535], "this is straunge go call the abbesse": [0, 65535], "is straunge go call the abbesse hither": [0, 65535], "straunge go call the abbesse hither i": [0, 65535], "go call the abbesse hither i thinke": [0, 65535], "call the abbesse hither i thinke you": [0, 65535], "the abbesse hither i thinke you are": [0, 65535], "abbesse hither i thinke you are all": [0, 65535], "hither i thinke you are all mated": [0, 65535], "i thinke you are all mated or": [0, 65535], "thinke you are all mated or starke": [0, 65535], "you are all mated or starke mad": [0, 65535], "are all mated or starke mad exit": [0, 65535], "all mated or starke mad exit one": [0, 65535], "mated or starke mad exit one to": [0, 65535], "or starke mad exit one to the": [0, 65535], "starke mad exit one to the abbesse": [0, 65535], "mad exit one to the abbesse fa": [0, 65535], "exit one to the abbesse fa most": [0, 65535], "one to the abbesse fa most mighty": [0, 65535], "to the abbesse fa most mighty duke": [0, 65535], "the abbesse fa most mighty duke vouchsafe": [0, 65535], "abbesse fa most mighty duke vouchsafe me": [0, 65535], "fa most mighty duke vouchsafe me speak": [0, 65535], "most mighty duke vouchsafe me speak a": [0, 65535], "mighty duke vouchsafe me speak a word": [0, 65535], "duke vouchsafe me speak a word haply": [0, 65535], "vouchsafe me speak a word haply i": [0, 65535], "me speak a word haply i see": [0, 65535], "speak a word haply i see a": [0, 65535], "a word haply i see a friend": [0, 65535], "word haply i see a friend will": [0, 65535], "haply i see a friend will saue": [0, 65535], "i see a friend will saue my": [0, 65535], "see a friend will saue my life": [0, 65535], "a friend will saue my life and": [0, 65535], "friend will saue my life and pay": [0, 65535], "will saue my life and pay the": [0, 65535], "saue my life and pay the sum": [0, 65535], "my life and pay the sum that": [0, 65535], "life and pay the sum that may": [0, 65535], "and pay the sum that may deliuer": [0, 65535], "pay the sum that may deliuer me": [0, 65535], "the sum that may deliuer me duke": [0, 65535], "sum that may deliuer me duke speake": [0, 65535], "that may deliuer me duke speake freely": [0, 65535], "may deliuer me duke speake freely siracusian": [0, 65535], "deliuer me duke speake freely siracusian what": [0, 65535], "me duke speake freely siracusian what thou": [0, 65535], "duke speake freely siracusian what thou wilt": [0, 65535], "speake freely siracusian what thou wilt fath": [0, 65535], "freely siracusian what thou wilt fath is": [0, 65535], "siracusian what thou wilt fath is not": [0, 65535], "what thou wilt fath is not your": [0, 65535], "thou wilt fath is not your name": [0, 65535], "wilt fath is not your name sir": [0, 65535], "fath is not your name sir call'd": [0, 65535], "is not your name sir call'd antipholus": [0, 65535], "not your name sir call'd antipholus and": [0, 65535], "your name sir call'd antipholus and is": [0, 65535], "name sir call'd antipholus and is not": [0, 65535], "sir call'd antipholus and is not that": [0, 65535], "call'd antipholus and is not that your": [0, 65535], "antipholus and is not that your bondman": [0, 65535], "and is not that your bondman dromio": [0, 65535], "is not that your bondman dromio e": [0, 65535], "not that your bondman dromio e dro": [0, 65535], "that your bondman dromio e dro within": [0, 65535], "your bondman dromio e dro within this": [0, 65535], "bondman dromio e dro within this houre": [0, 65535], "dromio e dro within this houre i": [0, 65535], "e dro within this houre i was": [0, 65535], "dro within this houre i was his": [0, 65535], "within this houre i was his bondman": [0, 65535], "this houre i was his bondman sir": [0, 65535], "houre i was his bondman sir but": [0, 65535], "i was his bondman sir but he": [0, 65535], "was his bondman sir but he i": [0, 65535], "his bondman sir but he i thanke": [0, 65535], "bondman sir but he i thanke him": [0, 65535], "sir but he i thanke him gnaw'd": [0, 65535], "but he i thanke him gnaw'd in": [0, 65535], "he i thanke him gnaw'd in two": [0, 65535], "i thanke him gnaw'd in two my": [0, 65535], "thanke him gnaw'd in two my cords": [0, 65535], "him gnaw'd in two my cords now": [0, 65535], "gnaw'd in two my cords now am": [0, 65535], "in two my cords now am i": [0, 65535], "two my cords now am i dromio": [0, 65535], "my cords now am i dromio and": [0, 65535], "cords now am i dromio and his": [0, 65535], "now am i dromio and his man": [0, 65535], "am i dromio and his man vnbound": [0, 65535], "i dromio and his man vnbound fath": [0, 65535], "dromio and his man vnbound fath i": [0, 65535], "and his man vnbound fath i am": [0, 65535], "his man vnbound fath i am sure": [0, 65535], "man vnbound fath i am sure you": [0, 65535], "vnbound fath i am sure you both": [0, 65535], "fath i am sure you both of": [0, 65535], "i am sure you both of you": [0, 65535], "am sure you both of you remember": [0, 65535], "sure you both of you remember me": [0, 65535], "you both of you remember me dro": [0, 65535], "both of you remember me dro our": [0, 65535], "of you remember me dro our selues": [0, 65535], "you remember me dro our selues we": [0, 65535], "remember me dro our selues we do": [0, 65535], "me dro our selues we do remember": [0, 65535], "dro our selues we do remember sir": [0, 65535], "our selues we do remember sir by": [0, 65535], "selues we do remember sir by you": [0, 65535], "we do remember sir by you for": [0, 65535], "do remember sir by you for lately": [0, 65535], "remember sir by you for lately we": [0, 65535], "sir by you for lately we were": [0, 65535], "by you for lately we were bound": [0, 65535], "you for lately we were bound as": [0, 65535], "for lately we were bound as you": [0, 65535], "lately we were bound as you are": [0, 65535], "we were bound as you are now": [0, 65535], "were bound as you are now you": [0, 65535], "bound as you are now you are": [0, 65535], "as you are now you are not": [0, 65535], "you are now you are not pinches": [0, 65535], "are now you are not pinches patient": [0, 65535], "now you are not pinches patient are": [0, 65535], "you are not pinches patient are you": [0, 65535], "are not pinches patient are you sir": [0, 65535], "not pinches patient are you sir father": [0, 65535], "pinches patient are you sir father why": [0, 65535], "patient are you sir father why looke": [0, 65535], "are you sir father why looke you": [0, 65535], "you sir father why looke you strange": [0, 65535], "sir father why looke you strange on": [0, 65535], "father why looke you strange on me": [0, 65535], "why looke you strange on me you": [0, 65535], "looke you strange on me you know": [0, 65535], "you strange on me you know me": [0, 65535], "strange on me you know me well": [0, 65535], "on me you know me well e": [0, 65535], "me you know me well e ant": [0, 65535], "you know me well e ant i": [0, 65535], "know me well e ant i neuer": [0, 65535], "me well e ant i neuer saw": [0, 65535], "well e ant i neuer saw you": [0, 65535], "e ant i neuer saw you in": [0, 65535], "ant i neuer saw you in my": [0, 65535], "i neuer saw you in my life": [0, 65535], "neuer saw you in my life till": [0, 65535], "saw you in my life till now": [0, 65535], "you in my life till now fa": [0, 65535], "in my life till now fa oh": [0, 65535], "my life till now fa oh griefe": [0, 65535], "life till now fa oh griefe hath": [0, 65535], "till now fa oh griefe hath chang'd": [0, 65535], "now fa oh griefe hath chang'd me": [0, 65535], "fa oh griefe hath chang'd me since": [0, 65535], "oh griefe hath chang'd me since you": [0, 65535], "griefe hath chang'd me since you saw": [0, 65535], "hath chang'd me since you saw me": [0, 65535], "chang'd me since you saw me last": [0, 65535], "me since you saw me last and": [0, 65535], "since you saw me last and carefull": [0, 65535], "you saw me last and carefull houres": [0, 65535], "saw me last and carefull houres with": [0, 65535], "me last and carefull houres with times": [0, 65535], "last and carefull houres with times deformed": [0, 65535], "and carefull houres with times deformed hand": [0, 65535], "carefull houres with times deformed hand haue": [0, 65535], "houres with times deformed hand haue written": [0, 65535], "with times deformed hand haue written strange": [0, 65535], "times deformed hand haue written strange defeatures": [0, 65535], "deformed hand haue written strange defeatures in": [0, 65535], "hand haue written strange defeatures in my": [0, 65535], "haue written strange defeatures in my face": [0, 65535], "written strange defeatures in my face but": [0, 65535], "strange defeatures in my face but tell": [0, 65535], "defeatures in my face but tell me": [0, 65535], "in my face but tell me yet": [0, 65535], "my face but tell me yet dost": [0, 65535], "face but tell me yet dost thou": [0, 65535], "but tell me yet dost thou not": [0, 65535], "tell me yet dost thou not know": [0, 65535], "me yet dost thou not know my": [0, 65535], "yet dost thou not know my voice": [0, 65535], "dost thou not know my voice ant": [0, 65535], "thou not know my voice ant neither": [0, 65535], "not know my voice ant neither fat": [0, 65535], "know my voice ant neither fat dromio": [0, 65535], "my voice ant neither fat dromio nor": [0, 65535], "voice ant neither fat dromio nor thou": [0, 65535], "ant neither fat dromio nor thou dro": [0, 65535], "neither fat dromio nor thou dro no": [0, 65535], "fat dromio nor thou dro no trust": [0, 65535], "dromio nor thou dro no trust me": [0, 65535], "nor thou dro no trust me sir": [0, 65535], "thou dro no trust me sir nor": [0, 65535], "dro no trust me sir nor i": [0, 65535], "no trust me sir nor i fa": [0, 65535], "trust me sir nor i fa i": [0, 65535], "me sir nor i fa i am": [0, 65535], "sir nor i fa i am sure": [0, 65535], "nor i fa i am sure thou": [0, 65535], "i fa i am sure thou dost": [0, 65535], "fa i am sure thou dost e": [0, 65535], "i am sure thou dost e dromio": [0, 65535], "am sure thou dost e dromio i": [0, 65535], "sure thou dost e dromio i sir": [0, 65535], "thou dost e dromio i sir but": [0, 65535], "dost e dromio i sir but i": [0, 65535], "e dromio i sir but i am": [0, 65535], "dromio i sir but i am sure": [0, 65535], "i sir but i am sure i": [0, 65535], "sir but i am sure i do": [0, 65535], "but i am sure i do not": [0, 65535], "i am sure i do not and": [0, 65535], "am sure i do not and whatsoeuer": [0, 65535], "sure i do not and whatsoeuer a": [0, 65535], "i do not and whatsoeuer a man": [0, 65535], "do not and whatsoeuer a man denies": [0, 65535], "not and whatsoeuer a man denies you": [0, 65535], "and whatsoeuer a man denies you are": [0, 65535], "whatsoeuer a man denies you are now": [0, 65535], "a man denies you are now bound": [0, 65535], "man denies you are now bound to": [0, 65535], "denies you are now bound to beleeue": [0, 65535], "you are now bound to beleeue him": [0, 65535], "are now bound to beleeue him fath": [0, 65535], "now bound to beleeue him fath not": [0, 65535], "bound to beleeue him fath not know": [0, 65535], "to beleeue him fath not know my": [0, 65535], "beleeue him fath not know my voice": [0, 65535], "him fath not know my voice oh": [0, 65535], "fath not know my voice oh times": [0, 65535], "not know my voice oh times extremity": [0, 65535], "know my voice oh times extremity hast": [0, 65535], "my voice oh times extremity hast thou": [0, 65535], "voice oh times extremity hast thou so": [0, 65535], "oh times extremity hast thou so crack'd": [0, 65535], "times extremity hast thou so crack'd and": [0, 65535], "extremity hast thou so crack'd and splitted": [0, 65535], "hast thou so crack'd and splitted my": [0, 65535], "thou so crack'd and splitted my poore": [0, 65535], "so crack'd and splitted my poore tongue": [0, 65535], "crack'd and splitted my poore tongue in": [0, 65535], "and splitted my poore tongue in seuen": [0, 65535], "splitted my poore tongue in seuen short": [0, 65535], "my poore tongue in seuen short yeares": [0, 65535], "poore tongue in seuen short yeares that": [0, 65535], "tongue in seuen short yeares that heere": [0, 65535], "in seuen short yeares that heere my": [0, 65535], "seuen short yeares that heere my onely": [0, 65535], "short yeares that heere my onely sonne": [0, 65535], "yeares that heere my onely sonne knowes": [0, 65535], "that heere my onely sonne knowes not": [0, 65535], "heere my onely sonne knowes not my": [0, 65535], "my onely sonne knowes not my feeble": [0, 65535], "onely sonne knowes not my feeble key": [0, 65535], "sonne knowes not my feeble key of": [0, 65535], "knowes not my feeble key of vntun'd": [0, 65535], "not my feeble key of vntun'd cares": [0, 65535], "my feeble key of vntun'd cares though": [0, 65535], "feeble key of vntun'd cares though now": [0, 65535], "key of vntun'd cares though now this": [0, 65535], "of vntun'd cares though now this grained": [0, 65535], "vntun'd cares though now this grained face": [0, 65535], "cares though now this grained face of": [0, 65535], "though now this grained face of mine": [0, 65535], "now this grained face of mine be": [0, 65535], "this grained face of mine be hid": [0, 65535], "grained face of mine be hid in": [0, 65535], "face of mine be hid in sap": [0, 65535], "of mine be hid in sap consuming": [0, 65535], "mine be hid in sap consuming winters": [0, 65535], "be hid in sap consuming winters drizled": [0, 65535], "hid in sap consuming winters drizled snow": [0, 65535], "in sap consuming winters drizled snow and": [0, 65535], "sap consuming winters drizled snow and all": [0, 65535], "consuming winters drizled snow and all the": [0, 65535], "winters drizled snow and all the conduits": [0, 65535], "drizled snow and all the conduits of": [0, 65535], "snow and all the conduits of my": [0, 65535], "and all the conduits of my blood": [0, 65535], "all the conduits of my blood froze": [0, 65535], "the conduits of my blood froze vp": [0, 65535], "conduits of my blood froze vp yet": [0, 65535], "of my blood froze vp yet hath": [0, 65535], "my blood froze vp yet hath my": [0, 65535], "blood froze vp yet hath my night": [0, 65535], "froze vp yet hath my night of": [0, 65535], "vp yet hath my night of life": [0, 65535], "yet hath my night of life some": [0, 65535], "hath my night of life some memorie": [0, 65535], "my night of life some memorie my": [0, 65535], "night of life some memorie my wasting": [0, 65535], "of life some memorie my wasting lampes": [0, 65535], "life some memorie my wasting lampes some": [0, 65535], "some memorie my wasting lampes some fading": [0, 65535], "memorie my wasting lampes some fading glimmer": [0, 65535], "my wasting lampes some fading glimmer left": [0, 65535], "wasting lampes some fading glimmer left my": [0, 65535], "lampes some fading glimmer left my dull": [0, 65535], "some fading glimmer left my dull deafe": [0, 65535], "fading glimmer left my dull deafe eares": [0, 65535], "glimmer left my dull deafe eares a": [0, 65535], "left my dull deafe eares a little": [0, 65535], "my dull deafe eares a little vse": [0, 65535], "dull deafe eares a little vse to": [0, 65535], "deafe eares a little vse to heare": [0, 65535], "eares a little vse to heare all": [0, 65535], "a little vse to heare all these": [0, 65535], "little vse to heare all these old": [0, 65535], "vse to heare all these old witnesses": [0, 65535], "to heare all these old witnesses i": [0, 65535], "heare all these old witnesses i cannot": [0, 65535], "all these old witnesses i cannot erre": [0, 65535], "these old witnesses i cannot erre tell": [0, 65535], "old witnesses i cannot erre tell me": [0, 65535], "witnesses i cannot erre tell me thou": [0, 65535], "i cannot erre tell me thou art": [0, 65535], "cannot erre tell me thou art my": [0, 65535], "erre tell me thou art my sonne": [0, 65535], "tell me thou art my sonne antipholus": [0, 65535], "me thou art my sonne antipholus ant": [0, 65535], "thou art my sonne antipholus ant i": [0, 65535], "art my sonne antipholus ant i neuer": [0, 65535], "my sonne antipholus ant i neuer saw": [0, 65535], "sonne antipholus ant i neuer saw my": [0, 65535], "antipholus ant i neuer saw my father": [0, 65535], "ant i neuer saw my father in": [0, 65535], "i neuer saw my father in my": [0, 65535], "neuer saw my father in my life": [0, 65535], "saw my father in my life fa": [0, 65535], "my father in my life fa but": [0, 65535], "father in my life fa but seuen": [0, 65535], "in my life fa but seuen yeares": [0, 65535], "my life fa but seuen yeares since": [0, 65535], "life fa but seuen yeares since in": [0, 65535], "fa but seuen yeares since in siracusa": [0, 65535], "but seuen yeares since in siracusa boy": [0, 65535], "seuen yeares since in siracusa boy thou": [0, 65535], "yeares since in siracusa boy thou know'st": [0, 65535], "since in siracusa boy thou know'st we": [0, 65535], "in siracusa boy thou know'st we parted": [0, 65535], "siracusa boy thou know'st we parted but": [0, 65535], "boy thou know'st we parted but perhaps": [0, 65535], "thou know'st we parted but perhaps my": [0, 65535], "know'st we parted but perhaps my sonne": [0, 65535], "we parted but perhaps my sonne thou": [0, 65535], "parted but perhaps my sonne thou sham'st": [0, 65535], "but perhaps my sonne thou sham'st to": [0, 65535], "perhaps my sonne thou sham'st to acknowledge": [0, 65535], "my sonne thou sham'st to acknowledge me": [0, 65535], "sonne thou sham'st to acknowledge me in": [0, 65535], "thou sham'st to acknowledge me in miserie": [0, 65535], "sham'st to acknowledge me in miserie ant": [0, 65535], "to acknowledge me in miserie ant the": [0, 65535], "acknowledge me in miserie ant the duke": [0, 65535], "me in miserie ant the duke and": [0, 65535], "in miserie ant the duke and all": [0, 65535], "miserie ant the duke and all that": [0, 65535], "ant the duke and all that know": [0, 65535], "the duke and all that know me": [0, 65535], "duke and all that know me in": [0, 65535], "and all that know me in the": [0, 65535], "all that know me in the city": [0, 65535], "that know me in the city can": [0, 65535], "know me in the city can witnesse": [0, 65535], "me in the city can witnesse with": [0, 65535], "in the city can witnesse with me": [0, 65535], "the city can witnesse with me that": [0, 65535], "city can witnesse with me that it": [0, 65535], "can witnesse with me that it is": [0, 65535], "witnesse with me that it is not": [0, 65535], "with me that it is not so": [0, 65535], "me that it is not so i": [0, 65535], "that it is not so i ne're": [0, 65535], "it is not so i ne're saw": [0, 65535], "is not so i ne're saw siracusa": [0, 65535], "not so i ne're saw siracusa in": [0, 65535], "so i ne're saw siracusa in my": [0, 65535], "i ne're saw siracusa in my life": [0, 65535], "ne're saw siracusa in my life duke": [0, 65535], "saw siracusa in my life duke i": [0, 65535], "siracusa in my life duke i tell": [0, 65535], "in my life duke i tell thee": [0, 65535], "my life duke i tell thee siracusian": [0, 65535], "life duke i tell thee siracusian twentie": [0, 65535], "duke i tell thee siracusian twentie yeares": [0, 65535], "i tell thee siracusian twentie yeares haue": [0, 65535], "tell thee siracusian twentie yeares haue i": [0, 65535], "thee siracusian twentie yeares haue i bin": [0, 65535], "siracusian twentie yeares haue i bin patron": [0, 65535], "twentie yeares haue i bin patron to": [0, 65535], "yeares haue i bin patron to antipholus": [0, 65535], "haue i bin patron to antipholus during": [0, 65535], "i bin patron to antipholus during which": [0, 65535], "bin patron to antipholus during which time": [0, 65535], "patron to antipholus during which time he": [0, 65535], "to antipholus during which time he ne're": [0, 65535], "antipholus during which time he ne're saw": [0, 65535], "during which time he ne're saw siracusa": [0, 65535], "which time he ne're saw siracusa i": [0, 65535], "time he ne're saw siracusa i see": [0, 65535], "he ne're saw siracusa i see thy": [0, 65535], "ne're saw siracusa i see thy age": [0, 65535], "saw siracusa i see thy age and": [0, 65535], "siracusa i see thy age and dangers": [0, 65535], "i see thy age and dangers make": [0, 65535], "see thy age and dangers make thee": [0, 65535], "thy age and dangers make thee dote": [0, 65535], "age and dangers make thee dote enter": [0, 65535], "and dangers make thee dote enter the": [0, 65535], "dangers make thee dote enter the abbesse": [0, 65535], "make thee dote enter the abbesse with": [0, 65535], "thee dote enter the abbesse with antipholus": [0, 65535], "dote enter the abbesse with antipholus siracusa": [0, 65535], "enter the abbesse with antipholus siracusa and": [0, 65535], "the abbesse with antipholus siracusa and dromio": [0, 65535], "abbesse with antipholus siracusa and dromio sir": [0, 65535], "with antipholus siracusa and dromio sir abbesse": [0, 65535], "antipholus siracusa and dromio sir abbesse most": [0, 65535], "siracusa and dromio sir abbesse most mightie": [0, 65535], "and dromio sir abbesse most mightie duke": [0, 65535], "dromio sir abbesse most mightie duke behold": [0, 65535], "sir abbesse most mightie duke behold a": [0, 65535], "abbesse most mightie duke behold a man": [0, 65535], "most mightie duke behold a man much": [0, 65535], "mightie duke behold a man much wrong'd": [0, 65535], "duke behold a man much wrong'd all": [0, 65535], "behold a man much wrong'd all gather": [0, 65535], "a man much wrong'd all gather to": [0, 65535], "man much wrong'd all gather to see": [0, 65535], "much wrong'd all gather to see them": [0, 65535], "wrong'd all gather to see them adr": [0, 65535], "all gather to see them adr i": [0, 65535], "gather to see them adr i see": [0, 65535], "to see them adr i see two": [0, 65535], "see them adr i see two husbands": [0, 65535], "them adr i see two husbands or": [0, 65535], "adr i see two husbands or mine": [0, 65535], "i see two husbands or mine eyes": [0, 65535], "see two husbands or mine eyes deceiue": [0, 65535], "two husbands or mine eyes deceiue me": [0, 65535], "husbands or mine eyes deceiue me duke": [0, 65535], "or mine eyes deceiue me duke one": [0, 65535], "mine eyes deceiue me duke one of": [0, 65535], "eyes deceiue me duke one of these": [0, 65535], "deceiue me duke one of these men": [0, 65535], "me duke one of these men is": [0, 65535], "duke one of these men is genius": [0, 65535], "one of these men is genius to": [0, 65535], "of these men is genius to the": [0, 65535], "these men is genius to the other": [0, 65535], "men is genius to the other and": [0, 65535], "is genius to the other and so": [0, 65535], "genius to the other and so of": [0, 65535], "to the other and so of these": [0, 65535], "the other and so of these which": [0, 65535], "other and so of these which is": [0, 65535], "and so of these which is the": [0, 65535], "so of these which is the naturall": [0, 65535], "of these which is the naturall man": [0, 65535], "these which is the naturall man and": [0, 65535], "which is the naturall man and which": [0, 65535], "is the naturall man and which the": [0, 65535], "the naturall man and which the spirit": [0, 65535], "naturall man and which the spirit who": [0, 65535], "man and which the spirit who deciphers": [0, 65535], "and which the spirit who deciphers them": [0, 65535], "which the spirit who deciphers them s": [0, 65535], "the spirit who deciphers them s dromio": [0, 65535], "spirit who deciphers them s dromio i": [0, 65535], "who deciphers them s dromio i sir": [0, 65535], "deciphers them s dromio i sir am": [0, 65535], "them s dromio i sir am dromio": [0, 65535], "s dromio i sir am dromio command": [0, 65535], "dromio i sir am dromio command him": [0, 65535], "i sir am dromio command him away": [0, 65535], "sir am dromio command him away e": [0, 65535], "am dromio command him away e dro": [0, 65535], "dromio command him away e dro i": [0, 65535], "command him away e dro i sir": [0, 65535], "him away e dro i sir am": [0, 65535], "away e dro i sir am dromio": [0, 65535], "e dro i sir am dromio pray": [0, 65535], "dro i sir am dromio pray let": [0, 65535], "i sir am dromio pray let me": [0, 65535], "sir am dromio pray let me stay": [0, 65535], "am dromio pray let me stay s": [0, 65535], "dromio pray let me stay s ant": [0, 65535], "pray let me stay s ant egeon": [0, 65535], "let me stay s ant egeon art": [0, 65535], "me stay s ant egeon art thou": [0, 65535], "stay s ant egeon art thou not": [0, 65535], "s ant egeon art thou not or": [0, 65535], "ant egeon art thou not or else": [0, 65535], "egeon art thou not or else his": [0, 65535], "art thou not or else his ghost": [0, 65535], "thou not or else his ghost s": [0, 65535], "not or else his ghost s drom": [0, 65535], "or else his ghost s drom oh": [0, 65535], "else his ghost s drom oh my": [0, 65535], "his ghost s drom oh my olde": [0, 65535], "ghost s drom oh my olde master": [0, 65535], "s drom oh my olde master who": [0, 65535], "drom oh my olde master who hath": [0, 65535], "oh my olde master who hath bound": [0, 65535], "my olde master who hath bound him": [0, 65535], "olde master who hath bound him heere": [0, 65535], "master who hath bound him heere abb": [0, 65535], "who hath bound him heere abb who": [0, 65535], "hath bound him heere abb who euer": [0, 65535], "bound him heere abb who euer bound": [0, 65535], "him heere abb who euer bound him": [0, 65535], "heere abb who euer bound him i": [0, 65535], "abb who euer bound him i will": [0, 65535], "who euer bound him i will lose": [0, 65535], "euer bound him i will lose his": [0, 65535], "bound him i will lose his bonds": [0, 65535], "him i will lose his bonds and": [0, 65535], "i will lose his bonds and gaine": [0, 65535], "will lose his bonds and gaine a": [0, 65535], "lose his bonds and gaine a husband": [0, 65535], "his bonds and gaine a husband by": [0, 65535], "bonds and gaine a husband by his": [0, 65535], "and gaine a husband by his libertie": [0, 65535], "gaine a husband by his libertie speake": [0, 65535], "a husband by his libertie speake olde": [0, 65535], "husband by his libertie speake olde egeon": [0, 65535], "by his libertie speake olde egeon if": [0, 65535], "his libertie speake olde egeon if thou": [0, 65535], "libertie speake olde egeon if thou bee'st": [0, 65535], "speake olde egeon if thou bee'st the": [0, 65535], "olde egeon if thou bee'st the man": [0, 65535], "egeon if thou bee'st the man that": [0, 65535], "if thou bee'st the man that hadst": [0, 65535], "thou bee'st the man that hadst a": [0, 65535], "bee'st the man that hadst a wife": [0, 65535], "the man that hadst a wife once": [0, 65535], "man that hadst a wife once call'd": [0, 65535], "that hadst a wife once call'd \u00e6milia": [0, 65535], "hadst a wife once call'd \u00e6milia that": [0, 65535], "a wife once call'd \u00e6milia that bore": [0, 65535], "wife once call'd \u00e6milia that bore thee": [0, 65535], "once call'd \u00e6milia that bore thee at": [0, 65535], "call'd \u00e6milia that bore thee at a": [0, 65535], "\u00e6milia that bore thee at a burthen": [0, 65535], "that bore thee at a burthen two": [0, 65535], "bore thee at a burthen two faire": [0, 65535], "thee at a burthen two faire sonnes": [0, 65535], "at a burthen two faire sonnes oh": [0, 65535], "a burthen two faire sonnes oh if": [0, 65535], "burthen two faire sonnes oh if thou": [0, 65535], "two faire sonnes oh if thou bee'st": [0, 65535], "faire sonnes oh if thou bee'st the": [0, 65535], "sonnes oh if thou bee'st the same": [0, 65535], "oh if thou bee'st the same egeon": [0, 65535], "if thou bee'st the same egeon speake": [0, 65535], "thou bee'st the same egeon speake and": [0, 65535], "bee'st the same egeon speake and speake": [0, 65535], "the same egeon speake and speake vnto": [0, 65535], "same egeon speake and speake vnto the": [0, 65535], "egeon speake and speake vnto the same": [0, 65535], "speake and speake vnto the same \u00e6milia": [0, 65535], "and speake vnto the same \u00e6milia duke": [0, 65535], "speake vnto the same \u00e6milia duke why": [0, 65535], "vnto the same \u00e6milia duke why heere": [0, 65535], "the same \u00e6milia duke why heere begins": [0, 65535], "same \u00e6milia duke why heere begins his": [0, 65535], "\u00e6milia duke why heere begins his morning": [0, 65535], "duke why heere begins his morning storie": [0, 65535], "why heere begins his morning storie right": [0, 65535], "heere begins his morning storie right these": [0, 65535], "begins his morning storie right these twoantipholus": [0, 65535], "his morning storie right these twoantipholus these": [0, 65535], "morning storie right these twoantipholus these two": [0, 65535], "storie right these twoantipholus these two so": [0, 65535], "right these twoantipholus these two so like": [0, 65535], "these twoantipholus these two so like and": [0, 65535], "twoantipholus these two so like and these": [0, 65535], "these two so like and these two": [0, 65535], "two so like and these two dromio's": [0, 65535], "so like and these two dromio's one": [0, 65535], "like and these two dromio's one in": [0, 65535], "and these two dromio's one in semblance": [0, 65535], "these two dromio's one in semblance besides": [0, 65535], "two dromio's one in semblance besides her": [0, 65535], "dromio's one in semblance besides her vrging": [0, 65535], "one in semblance besides her vrging of": [0, 65535], "in semblance besides her vrging of her": [0, 65535], "semblance besides her vrging of her wracke": [0, 65535], "besides her vrging of her wracke at": [0, 65535], "her vrging of her wracke at sea": [0, 65535], "vrging of her wracke at sea these": [0, 65535], "of her wracke at sea these are": [0, 65535], "her wracke at sea these are the": [0, 65535], "wracke at sea these are the parents": [0, 65535], "at sea these are the parents to": [0, 65535], "sea these are the parents to these": [0, 65535], "these are the parents to these children": [0, 65535], "are the parents to these children which": [0, 65535], "the parents to these children which accidentally": [0, 65535], "parents to these children which accidentally are": [0, 65535], "to these children which accidentally are met": [0, 65535], "these children which accidentally are met together": [0, 65535], "children which accidentally are met together fa": [0, 65535], "which accidentally are met together fa if": [0, 65535], "accidentally are met together fa if i": [0, 65535], "are met together fa if i dreame": [0, 65535], "met together fa if i dreame not": [0, 65535], "together fa if i dreame not thou": [0, 65535], "fa if i dreame not thou art": [0, 65535], "if i dreame not thou art \u00e6milia": [0, 65535], "i dreame not thou art \u00e6milia if": [0, 65535], "dreame not thou art \u00e6milia if thou": [0, 65535], "not thou art \u00e6milia if thou art": [0, 65535], "thou art \u00e6milia if thou art she": [0, 65535], "art \u00e6milia if thou art she tell": [0, 65535], "\u00e6milia if thou art she tell me": [0, 65535], "if thou art she tell me where": [0, 65535], "thou art she tell me where is": [0, 65535], "art she tell me where is that": [0, 65535], "she tell me where is that sonne": [0, 65535], "tell me where is that sonne that": [0, 65535], "me where is that sonne that floated": [0, 65535], "where is that sonne that floated with": [0, 65535], "is that sonne that floated with thee": [0, 65535], "that sonne that floated with thee on": [0, 65535], "sonne that floated with thee on the": [0, 65535], "that floated with thee on the fatall": [0, 65535], "floated with thee on the fatall rafte": [0, 65535], "with thee on the fatall rafte abb": [0, 65535], "thee on the fatall rafte abb by": [0, 65535], "on the fatall rafte abb by men": [0, 65535], "the fatall rafte abb by men of": [0, 65535], "fatall rafte abb by men of epidamium": [0, 65535], "rafte abb by men of epidamium he": [0, 65535], "abb by men of epidamium he and": [0, 65535], "by men of epidamium he and i": [0, 65535], "men of epidamium he and i and": [0, 65535], "of epidamium he and i and the": [0, 65535], "epidamium he and i and the twin": [0, 65535], "he and i and the twin dromio": [0, 65535], "and i and the twin dromio all": [0, 65535], "i and the twin dromio all were": [0, 65535], "and the twin dromio all were taken": [0, 65535], "the twin dromio all were taken vp": [0, 65535], "twin dromio all were taken vp but": [0, 65535], "dromio all were taken vp but by": [0, 65535], "all were taken vp but by and": [0, 65535], "were taken vp but by and by": [0, 65535], "taken vp but by and by rude": [0, 65535], "vp but by and by rude fishermen": [0, 65535], "but by and by rude fishermen of": [0, 65535], "by and by rude fishermen of corinth": [0, 65535], "and by rude fishermen of corinth by": [0, 65535], "by rude fishermen of corinth by force": [0, 65535], "rude fishermen of corinth by force tooke": [0, 65535], "fishermen of corinth by force tooke dromio": [0, 65535], "of corinth by force tooke dromio and": [0, 65535], "corinth by force tooke dromio and my": [0, 65535], "by force tooke dromio and my sonne": [0, 65535], "force tooke dromio and my sonne from": [0, 65535], "tooke dromio and my sonne from them": [0, 65535], "dromio and my sonne from them and": [0, 65535], "and my sonne from them and me": [0, 65535], "my sonne from them and me they": [0, 65535], "sonne from them and me they left": [0, 65535], "from them and me they left with": [0, 65535], "them and me they left with those": [0, 65535], "and me they left with those of": [0, 65535], "me they left with those of epidamium": [0, 65535], "they left with those of epidamium what": [0, 65535], "left with those of epidamium what then": [0, 65535], "with those of epidamium what then became": [0, 65535], "those of epidamium what then became of": [0, 65535], "of epidamium what then became of them": [0, 65535], "epidamium what then became of them i": [0, 65535], "what then became of them i cannot": [0, 65535], "then became of them i cannot tell": [0, 65535], "became of them i cannot tell i": [0, 65535], "of them i cannot tell i to": [0, 65535], "them i cannot tell i to this": [0, 65535], "i cannot tell i to this fortune": [0, 65535], "cannot tell i to this fortune that": [0, 65535], "tell i to this fortune that you": [0, 65535], "i to this fortune that you see": [0, 65535], "to this fortune that you see mee": [0, 65535], "this fortune that you see mee in": [0, 65535], "fortune that you see mee in duke": [0, 65535], "that you see mee in duke antipholus": [0, 65535], "you see mee in duke antipholus thou": [0, 65535], "see mee in duke antipholus thou cam'st": [0, 65535], "mee in duke antipholus thou cam'st from": [0, 65535], "in duke antipholus thou cam'st from corinth": [0, 65535], "duke antipholus thou cam'st from corinth first": [0, 65535], "antipholus thou cam'st from corinth first s": [0, 65535], "thou cam'st from corinth first s ant": [0, 65535], "cam'st from corinth first s ant no": [0, 65535], "from corinth first s ant no sir": [0, 65535], "corinth first s ant no sir not": [0, 65535], "first s ant no sir not i": [0, 65535], "s ant no sir not i i": [0, 65535], "ant no sir not i i came": [0, 65535], "no sir not i i came from": [0, 65535], "sir not i i came from siracuse": [0, 65535], "not i i came from siracuse duke": [0, 65535], "i i came from siracuse duke stay": [0, 65535], "i came from siracuse duke stay stand": [0, 65535], "came from siracuse duke stay stand apart": [0, 65535], "from siracuse duke stay stand apart i": [0, 65535], "siracuse duke stay stand apart i know": [0, 65535], "duke stay stand apart i know not": [0, 65535], "stay stand apart i know not which": [0, 65535], "stand apart i know not which is": [0, 65535], "apart i know not which is which": [0, 65535], "i know not which is which e": [0, 65535], "know not which is which e ant": [0, 65535], "not which is which e ant i": [0, 65535], "which is which e ant i came": [0, 65535], "is which e ant i came from": [0, 65535], "which e ant i came from corinth": [0, 65535], "e ant i came from corinth my": [0, 65535], "ant i came from corinth my most": [0, 65535], "i came from corinth my most gracious": [0, 65535], "came from corinth my most gracious lord": [0, 65535], "from corinth my most gracious lord e": [0, 65535], "corinth my most gracious lord e dro": [0, 65535], "my most gracious lord e dro and": [0, 65535], "most gracious lord e dro and i": [0, 65535], "gracious lord e dro and i with": [0, 65535], "lord e dro and i with him": [0, 65535], "e dro and i with him e": [0, 65535], "dro and i with him e ant": [0, 65535], "and i with him e ant brought": [0, 65535], "i with him e ant brought to": [0, 65535], "with him e ant brought to this": [0, 65535], "him e ant brought to this town": [0, 65535], "e ant brought to this town by": [0, 65535], "ant brought to this town by that": [0, 65535], "brought to this town by that most": [0, 65535], "to this town by that most famous": [0, 65535], "this town by that most famous warriour": [0, 65535], "town by that most famous warriour duke": [0, 65535], "by that most famous warriour duke menaphon": [0, 65535], "that most famous warriour duke menaphon your": [0, 65535], "most famous warriour duke menaphon your most": [0, 65535], "famous warriour duke menaphon your most renowned": [0, 65535], "warriour duke menaphon your most renowned vnckle": [0, 65535], "duke menaphon your most renowned vnckle adr": [0, 65535], "menaphon your most renowned vnckle adr which": [0, 65535], "your most renowned vnckle adr which of": [0, 65535], "most renowned vnckle adr which of you": [0, 65535], "renowned vnckle adr which of you two": [0, 65535], "vnckle adr which of you two did": [0, 65535], "adr which of you two did dine": [0, 65535], "which of you two did dine with": [0, 65535], "of you two did dine with me": [0, 65535], "you two did dine with me to": [0, 65535], "two did dine with me to day": [0, 65535], "did dine with me to day s": [0, 65535], "dine with me to day s ant": [0, 65535], "with me to day s ant i": [0, 65535], "me to day s ant i gentle": [0, 65535], "to day s ant i gentle mistris": [0, 65535], "day s ant i gentle mistris adr": [0, 65535], "s ant i gentle mistris adr and": [0, 65535], "ant i gentle mistris adr and are": [0, 65535], "i gentle mistris adr and are not": [0, 65535], "gentle mistris adr and are not you": [0, 65535], "mistris adr and are not you my": [0, 65535], "adr and are not you my husband": [0, 65535], "and are not you my husband e": [0, 65535], "are not you my husband e ant": [0, 65535], "not you my husband e ant no": [0, 65535], "you my husband e ant no i": [0, 65535], "my husband e ant no i say": [0, 65535], "husband e ant no i say nay": [0, 65535], "e ant no i say nay to": [0, 65535], "ant no i say nay to that": [0, 65535], "no i say nay to that s": [0, 65535], "i say nay to that s ant": [0, 65535], "say nay to that s ant and": [0, 65535], "nay to that s ant and so": [0, 65535], "to that s ant and so do": [0, 65535], "that s ant and so do i": [0, 65535], "s ant and so do i yet": [0, 65535], "ant and so do i yet did": [0, 65535], "and so do i yet did she": [0, 65535], "so do i yet did she call": [0, 65535], "do i yet did she call me": [0, 65535], "i yet did she call me so": [0, 65535], "yet did she call me so and": [0, 65535], "did she call me so and this": [0, 65535], "she call me so and this faire": [0, 65535], "call me so and this faire gentlewoman": [0, 65535], "me so and this faire gentlewoman her": [0, 65535], "so and this faire gentlewoman her sister": [0, 65535], "and this faire gentlewoman her sister heere": [0, 65535], "this faire gentlewoman her sister heere did": [0, 65535], "faire gentlewoman her sister heere did call": [0, 65535], "gentlewoman her sister heere did call me": [0, 65535], "her sister heere did call me brother": [0, 65535], "sister heere did call me brother what": [0, 65535], "heere did call me brother what i": [0, 65535], "did call me brother what i told": [0, 65535], "call me brother what i told you": [0, 65535], "me brother what i told you then": [0, 65535], "brother what i told you then i": [0, 65535], "what i told you then i hope": [0, 65535], "i told you then i hope i": [0, 65535], "told you then i hope i shall": [0, 65535], "you then i hope i shall haue": [0, 65535], "then i hope i shall haue leisure": [0, 65535], "i hope i shall haue leisure to": [0, 65535], "hope i shall haue leisure to make": [0, 65535], "i shall haue leisure to make good": [0, 65535], "shall haue leisure to make good if": [0, 65535], "haue leisure to make good if this": [0, 65535], "leisure to make good if this be": [0, 65535], "to make good if this be not": [0, 65535], "make good if this be not a": [0, 65535], "good if this be not a dreame": [0, 65535], "if this be not a dreame i": [0, 65535], "this be not a dreame i see": [0, 65535], "be not a dreame i see and": [0, 65535], "not a dreame i see and heare": [0, 65535], "a dreame i see and heare goldsmith": [0, 65535], "dreame i see and heare goldsmith that": [0, 65535], "i see and heare goldsmith that is": [0, 65535], "see and heare goldsmith that is the": [0, 65535], "and heare goldsmith that is the chaine": [0, 65535], "heare goldsmith that is the chaine sir": [0, 65535], "goldsmith that is the chaine sir which": [0, 65535], "that is the chaine sir which you": [0, 65535], "is the chaine sir which you had": [0, 65535], "the chaine sir which you had of": [0, 65535], "chaine sir which you had of mee": [0, 65535], "sir which you had of mee s": [0, 65535], "which you had of mee s ant": [0, 65535], "you had of mee s ant i": [0, 65535], "had of mee s ant i thinke": [0, 65535], "of mee s ant i thinke it": [0, 65535], "mee s ant i thinke it be": [0, 65535], "s ant i thinke it be sir": [0, 65535], "ant i thinke it be sir i": [0, 65535], "i thinke it be sir i denie": [0, 65535], "thinke it be sir i denie it": [0, 65535], "it be sir i denie it not": [0, 65535], "be sir i denie it not e": [0, 65535], "sir i denie it not e ant": [0, 65535], "i denie it not e ant and": [0, 65535], "denie it not e ant and you": [0, 65535], "it not e ant and you sir": [0, 65535], "not e ant and you sir for": [0, 65535], "e ant and you sir for this": [0, 65535], "ant and you sir for this chaine": [0, 65535], "and you sir for this chaine arrested": [0, 65535], "you sir for this chaine arrested me": [0, 65535], "sir for this chaine arrested me gold": [0, 65535], "for this chaine arrested me gold i": [0, 65535], "this chaine arrested me gold i thinke": [0, 65535], "chaine arrested me gold i thinke i": [0, 65535], "arrested me gold i thinke i did": [0, 65535], "me gold i thinke i did sir": [0, 65535], "gold i thinke i did sir i": [0, 65535], "i thinke i did sir i deny": [0, 65535], "thinke i did sir i deny it": [0, 65535], "i did sir i deny it not": [0, 65535], "did sir i deny it not adr": [0, 65535], "sir i deny it not adr i": [0, 65535], "i deny it not adr i sent": [0, 65535], "deny it not adr i sent you": [0, 65535], "it not adr i sent you monie": [0, 65535], "not adr i sent you monie sir": [0, 65535], "adr i sent you monie sir to": [0, 65535], "i sent you monie sir to be": [0, 65535], "sent you monie sir to be your": [0, 65535], "you monie sir to be your baile": [0, 65535], "monie sir to be your baile by": [0, 65535], "sir to be your baile by dromio": [0, 65535], "to be your baile by dromio but": [0, 65535], "be your baile by dromio but i": [0, 65535], "your baile by dromio but i thinke": [0, 65535], "baile by dromio but i thinke he": [0, 65535], "by dromio but i thinke he brought": [0, 65535], "dromio but i thinke he brought it": [0, 65535], "but i thinke he brought it not": [0, 65535], "i thinke he brought it not e": [0, 65535], "thinke he brought it not e dro": [0, 65535], "he brought it not e dro no": [0, 65535], "brought it not e dro no none": [0, 65535], "it not e dro no none by": [0, 65535], "not e dro no none by me": [0, 65535], "e dro no none by me s": [0, 65535], "dro no none by me s ant": [0, 65535], "no none by me s ant this": [0, 65535], "none by me s ant this purse": [0, 65535], "by me s ant this purse of": [0, 65535], "me s ant this purse of duckets": [0, 65535], "s ant this purse of duckets i": [0, 65535], "ant this purse of duckets i receiu'd": [0, 65535], "this purse of duckets i receiu'd from": [0, 65535], "purse of duckets i receiu'd from you": [0, 65535], "of duckets i receiu'd from you and": [0, 65535], "duckets i receiu'd from you and dromio": [0, 65535], "i receiu'd from you and dromio my": [0, 65535], "receiu'd from you and dromio my man": [0, 65535], "from you and dromio my man did": [0, 65535], "you and dromio my man did bring": [0, 65535], "and dromio my man did bring them": [0, 65535], "dromio my man did bring them me": [0, 65535], "my man did bring them me i": [0, 65535], "man did bring them me i see": [0, 65535], "did bring them me i see we": [0, 65535], "bring them me i see we still": [0, 65535], "them me i see we still did": [0, 65535], "me i see we still did meete": [0, 65535], "i see we still did meete each": [0, 65535], "see we still did meete each others": [0, 65535], "we still did meete each others man": [0, 65535], "still did meete each others man and": [0, 65535], "did meete each others man and i": [0, 65535], "meete each others man and i was": [0, 65535], "each others man and i was tane": [0, 65535], "others man and i was tane for": [0, 65535], "man and i was tane for him": [0, 65535], "and i was tane for him and": [0, 65535], "i was tane for him and he": [0, 65535], "was tane for him and he for": [0, 65535], "tane for him and he for me": [0, 65535], "for him and he for me and": [0, 65535], "him and he for me and thereupon": [0, 65535], "and he for me and thereupon these": [0, 65535], "he for me and thereupon these errors": [0, 65535], "for me and thereupon these errors are": [0, 65535], "me and thereupon these errors are arose": [0, 65535], "and thereupon these errors are arose e": [0, 65535], "thereupon these errors are arose e ant": [0, 65535], "these errors are arose e ant these": [0, 65535], "errors are arose e ant these duckets": [0, 65535], "are arose e ant these duckets pawne": [0, 65535], "arose e ant these duckets pawne i": [0, 65535], "e ant these duckets pawne i for": [0, 65535], "ant these duckets pawne i for my": [0, 65535], "these duckets pawne i for my father": [0, 65535], "duckets pawne i for my father heere": [0, 65535], "pawne i for my father heere duke": [0, 65535], "i for my father heere duke it": [0, 65535], "for my father heere duke it shall": [0, 65535], "my father heere duke it shall not": [0, 65535], "father heere duke it shall not neede": [0, 65535], "heere duke it shall not neede thy": [0, 65535], "duke it shall not neede thy father": [0, 65535], "it shall not neede thy father hath": [0, 65535], "shall not neede thy father hath his": [0, 65535], "not neede thy father hath his life": [0, 65535], "neede thy father hath his life cur": [0, 65535], "thy father hath his life cur sir": [0, 65535], "father hath his life cur sir i": [0, 65535], "hath his life cur sir i must": [0, 65535], "his life cur sir i must haue": [0, 65535], "life cur sir i must haue that": [0, 65535], "cur sir i must haue that diamond": [0, 65535], "sir i must haue that diamond from": [0, 65535], "i must haue that diamond from you": [0, 65535], "must haue that diamond from you e": [0, 65535], "haue that diamond from you e ant": [0, 65535], "that diamond from you e ant there": [0, 65535], "diamond from you e ant there take": [0, 65535], "from you e ant there take it": [0, 65535], "you e ant there take it and": [0, 65535], "e ant there take it and much": [0, 65535], "ant there take it and much thanks": [0, 65535], "there take it and much thanks for": [0, 65535], "take it and much thanks for my": [0, 65535], "it and much thanks for my good": [0, 65535], "and much thanks for my good cheere": [0, 65535], "much thanks for my good cheere abb": [0, 65535], "thanks for my good cheere abb renowned": [0, 65535], "for my good cheere abb renowned duke": [0, 65535], "my good cheere abb renowned duke vouchsafe": [0, 65535], "good cheere abb renowned duke vouchsafe to": [0, 65535], "cheere abb renowned duke vouchsafe to take": [0, 65535], "abb renowned duke vouchsafe to take the": [0, 65535], "renowned duke vouchsafe to take the paines": [0, 65535], "duke vouchsafe to take the paines to": [0, 65535], "vouchsafe to take the paines to go": [0, 65535], "to take the paines to go with": [0, 65535], "take the paines to go with vs": [0, 65535], "the paines to go with vs into": [0, 65535], "paines to go with vs into the": [0, 65535], "to go with vs into the abbey": [0, 65535], "go with vs into the abbey heere": [0, 65535], "with vs into the abbey heere and": [0, 65535], "vs into the abbey heere and heare": [0, 65535], "into the abbey heere and heare at": [0, 65535], "the abbey heere and heare at large": [0, 65535], "abbey heere and heare at large discoursed": [0, 65535], "heere and heare at large discoursed all": [0, 65535], "and heare at large discoursed all our": [0, 65535], "heare at large discoursed all our fortunes": [0, 65535], "at large discoursed all our fortunes and": [0, 65535], "large discoursed all our fortunes and all": [0, 65535], "discoursed all our fortunes and all that": [0, 65535], "all our fortunes and all that are": [0, 65535], "our fortunes and all that are assembled": [0, 65535], "fortunes and all that are assembled in": [0, 65535], "and all that are assembled in this": [0, 65535], "all that are assembled in this place": [0, 65535], "that are assembled in this place that": [0, 65535], "are assembled in this place that by": [0, 65535], "assembled in this place that by this": [0, 65535], "in this place that by this simpathized": [0, 65535], "this place that by this simpathized one": [0, 65535], "place that by this simpathized one daies": [0, 65535], "that by this simpathized one daies error": [0, 65535], "by this simpathized one daies error haue": [0, 65535], "this simpathized one daies error haue suffer'd": [0, 65535], "simpathized one daies error haue suffer'd wrong": [0, 65535], "one daies error haue suffer'd wrong goe": [0, 65535], "daies error haue suffer'd wrong goe keepe": [0, 65535], "error haue suffer'd wrong goe keepe vs": [0, 65535], "haue suffer'd wrong goe keepe vs companie": [0, 65535], "suffer'd wrong goe keepe vs companie and": [0, 65535], "wrong goe keepe vs companie and we": [0, 65535], "goe keepe vs companie and we shall": [0, 65535], "keepe vs companie and we shall make": [0, 65535], "vs companie and we shall make full": [0, 65535], "companie and we shall make full satisfaction": [0, 65535], "and we shall make full satisfaction thirtie": [0, 65535], "we shall make full satisfaction thirtie three": [0, 65535], "shall make full satisfaction thirtie three yeares": [0, 65535], "make full satisfaction thirtie three yeares haue": [0, 65535], "full satisfaction thirtie three yeares haue i": [0, 65535], "satisfaction thirtie three yeares haue i but": [0, 65535], "thirtie three yeares haue i but gone": [0, 65535], "three yeares haue i but gone in": [0, 65535], "yeares haue i but gone in trauaile": [0, 65535], "haue i but gone in trauaile of": [0, 65535], "i but gone in trauaile of you": [0, 65535], "but gone in trauaile of you my": [0, 65535], "gone in trauaile of you my sonnes": [0, 65535], "in trauaile of you my sonnes and": [0, 65535], "trauaile of you my sonnes and till": [0, 65535], "of you my sonnes and till this": [0, 65535], "you my sonnes and till this present": [0, 65535], "my sonnes and till this present houre": [0, 65535], "sonnes and till this present houre my": [0, 65535], "and till this present houre my heauie": [0, 65535], "till this present houre my heauie burthen": [0, 65535], "this present houre my heauie burthen are": [0, 65535], "present houre my heauie burthen are deliuered": [0, 65535], "houre my heauie burthen are deliuered the": [0, 65535], "my heauie burthen are deliuered the duke": [0, 65535], "heauie burthen are deliuered the duke my": [0, 65535], "burthen are deliuered the duke my husband": [0, 65535], "are deliuered the duke my husband and": [0, 65535], "deliuered the duke my husband and my": [0, 65535], "the duke my husband and my children": [0, 65535], "duke my husband and my children both": [0, 65535], "my husband and my children both and": [0, 65535], "husband and my children both and you": [0, 65535], "and my children both and you the": [0, 65535], "my children both and you the kalenders": [0, 65535], "children both and you the kalenders of": [0, 65535], "both and you the kalenders of their": [0, 65535], "and you the kalenders of their natiuity": [0, 65535], "you the kalenders of their natiuity go": [0, 65535], "the kalenders of their natiuity go to": [0, 65535], "kalenders of their natiuity go to a": [0, 65535], "of their natiuity go to a gossips": [0, 65535], "their natiuity go to a gossips feast": [0, 65535], "natiuity go to a gossips feast and": [0, 65535], "go to a gossips feast and go": [0, 65535], "to a gossips feast and go with": [0, 65535], "a gossips feast and go with mee": [0, 65535], "gossips feast and go with mee after": [0, 65535], "feast and go with mee after so": [0, 65535], "and go with mee after so long": [0, 65535], "go with mee after so long greefe": [0, 65535], "with mee after so long greefe such": [0, 65535], "mee after so long greefe such natiuitie": [0, 65535], "after so long greefe such natiuitie duke": [0, 65535], "so long greefe such natiuitie duke with": [0, 65535], "long greefe such natiuitie duke with all": [0, 65535], "greefe such natiuitie duke with all my": [0, 65535], "such natiuitie duke with all my heart": [0, 65535], "natiuitie duke with all my heart ile": [0, 65535], "duke with all my heart ile gossip": [0, 65535], "with all my heart ile gossip at": [0, 65535], "all my heart ile gossip at this": [0, 65535], "my heart ile gossip at this feast": [0, 65535], "heart ile gossip at this feast exeunt": [0, 65535], "ile gossip at this feast exeunt omnes": [0, 65535], "gossip at this feast exeunt omnes manet": [0, 65535], "at this feast exeunt omnes manet the": [0, 65535], "this feast exeunt omnes manet the two": [0, 65535], "feast exeunt omnes manet the two dromio's": [0, 65535], "exeunt omnes manet the two dromio's and": [0, 65535], "omnes manet the two dromio's and two": [0, 65535], "manet the two dromio's and two brothers": [0, 65535], "the two dromio's and two brothers s": [0, 65535], "two dromio's and two brothers s dro": [0, 65535], "dromio's and two brothers s dro mast": [0, 65535], "and two brothers s dro mast shall": [0, 65535], "two brothers s dro mast shall i": [0, 65535], "brothers s dro mast shall i fetch": [0, 65535], "s dro mast shall i fetch your": [0, 65535], "dro mast shall i fetch your stuffe": [0, 65535], "mast shall i fetch your stuffe from": [0, 65535], "shall i fetch your stuffe from shipbord": [0, 65535], "i fetch your stuffe from shipbord e": [0, 65535], "fetch your stuffe from shipbord e an": [0, 65535], "your stuffe from shipbord e an dromio": [0, 65535], "stuffe from shipbord e an dromio what": [0, 65535], "from shipbord e an dromio what stuffe": [0, 65535], "shipbord e an dromio what stuffe of": [0, 65535], "e an dromio what stuffe of mine": [0, 65535], "an dromio what stuffe of mine hast": [0, 65535], "dromio what stuffe of mine hast thou": [0, 65535], "what stuffe of mine hast thou imbarkt": [0, 65535], "stuffe of mine hast thou imbarkt s": [0, 65535], "of mine hast thou imbarkt s dro": [0, 65535], "mine hast thou imbarkt s dro your": [0, 65535], "hast thou imbarkt s dro your goods": [0, 65535], "thou imbarkt s dro your goods that": [0, 65535], "imbarkt s dro your goods that lay": [0, 65535], "s dro your goods that lay at": [0, 65535], "dro your goods that lay at host": [0, 65535], "your goods that lay at host sir": [0, 65535], "goods that lay at host sir in": [0, 65535], "that lay at host sir in the": [0, 65535], "lay at host sir in the centaur": [0, 65535], "at host sir in the centaur s": [0, 65535], "host sir in the centaur s ant": [0, 65535], "sir in the centaur s ant he": [0, 65535], "in the centaur s ant he speakes": [0, 65535], "the centaur s ant he speakes to": [0, 65535], "centaur s ant he speakes to me": [0, 65535], "s ant he speakes to me i": [0, 65535], "ant he speakes to me i am": [0, 65535], "he speakes to me i am your": [0, 65535], "speakes to me i am your master": [0, 65535], "to me i am your master dromio": [0, 65535], "me i am your master dromio come": [0, 65535], "i am your master dromio come go": [0, 65535], "am your master dromio come go with": [0, 65535], "your master dromio come go with vs": [0, 65535], "master dromio come go with vs wee'l": [0, 65535], "dromio come go with vs wee'l looke": [0, 65535], "come go with vs wee'l looke to": [0, 65535], "go with vs wee'l looke to that": [0, 65535], "with vs wee'l looke to that anon": [0, 65535], "vs wee'l looke to that anon embrace": [0, 65535], "wee'l looke to that anon embrace thy": [0, 65535], "looke to that anon embrace thy brother": [0, 65535], "to that anon embrace thy brother there": [0, 65535], "that anon embrace thy brother there reioyce": [0, 65535], "anon embrace thy brother there reioyce with": [0, 65535], "embrace thy brother there reioyce with him": [0, 65535], "thy brother there reioyce with him exit": [0, 65535], "brother there reioyce with him exit s": [0, 65535], "there reioyce with him exit s dro": [0, 65535], "reioyce with him exit s dro there": [0, 65535], "with him exit s dro there is": [0, 65535], "him exit s dro there is a": [0, 65535], "exit s dro there is a fat": [0, 65535], "s dro there is a fat friend": [0, 65535], "dro there is a fat friend at": [0, 65535], "there is a fat friend at your": [0, 65535], "is a fat friend at your masters": [0, 65535], "a fat friend at your masters house": [0, 65535], "fat friend at your masters house that": [0, 65535], "friend at your masters house that kitchin'd": [0, 65535], "at your masters house that kitchin'd me": [0, 65535], "your masters house that kitchin'd me for": [0, 65535], "masters house that kitchin'd me for you": [0, 65535], "house that kitchin'd me for you to": [0, 65535], "that kitchin'd me for you to day": [0, 65535], "kitchin'd me for you to day at": [0, 65535], "me for you to day at dinner": [0, 65535], "for you to day at dinner she": [0, 65535], "you to day at dinner she now": [0, 65535], "to day at dinner she now shall": [0, 65535], "day at dinner she now shall be": [0, 65535], "at dinner she now shall be my": [0, 65535], "dinner she now shall be my sister": [0, 65535], "she now shall be my sister not": [0, 65535], "now shall be my sister not my": [0, 65535], "shall be my sister not my wife": [0, 65535], "be my sister not my wife e": [0, 65535], "my sister not my wife e d": [0, 65535], "sister not my wife e d me": [0, 65535], "not my wife e d me thinks": [0, 65535], "my wife e d me thinks you": [0, 65535], "wife e d me thinks you are": [0, 65535], "e d me thinks you are my": [0, 65535], "d me thinks you are my glasse": [0, 65535], "me thinks you are my glasse not": [0, 65535], "thinks you are my glasse not my": [0, 65535], "you are my glasse not my brother": [0, 65535], "are my glasse not my brother i": [0, 65535], "my glasse not my brother i see": [0, 65535], "glasse not my brother i see by": [0, 65535], "not my brother i see by you": [0, 65535], "my brother i see by you i": [0, 65535], "brother i see by you i am": [0, 65535], "i see by you i am a": [0, 65535], "see by you i am a sweet": [0, 65535], "by you i am a sweet fac'd": [0, 65535], "you i am a sweet fac'd youth": [0, 65535], "i am a sweet fac'd youth will": [0, 65535], "am a sweet fac'd youth will you": [0, 65535], "a sweet fac'd youth will you walke": [0, 65535], "sweet fac'd youth will you walke in": [0, 65535], "fac'd youth will you walke in to": [0, 65535], "youth will you walke in to see": [0, 65535], "will you walke in to see their": [0, 65535], "you walke in to see their gossipping": [0, 65535], "walke in to see their gossipping s": [0, 65535], "in to see their gossipping s dro": [0, 65535], "to see their gossipping s dro not": [0, 65535], "see their gossipping s dro not i": [0, 65535], "their gossipping s dro not i sir": [0, 65535], "gossipping s dro not i sir you": [0, 65535], "s dro not i sir you are": [0, 65535], "dro not i sir you are my": [0, 65535], "not i sir you are my elder": [0, 65535], "i sir you are my elder e": [0, 65535], "sir you are my elder e dro": [0, 65535], "you are my elder e dro that's": [0, 65535], "are my elder e dro that's a": [0, 65535], "my elder e dro that's a question": [0, 65535], "elder e dro that's a question how": [0, 65535], "e dro that's a question how shall": [0, 65535], "dro that's a question how shall we": [0, 65535], "that's a question how shall we trie": [0, 65535], "a question how shall we trie it": [0, 65535], "question how shall we trie it s": [0, 65535], "how shall we trie it s dro": [0, 65535], "shall we trie it s dro wee'l": [0, 65535], "we trie it s dro wee'l draw": [0, 65535], "trie it s dro wee'l draw cuts": [0, 65535], "it s dro wee'l draw cuts for": [0, 65535], "s dro wee'l draw cuts for the": [0, 65535], "dro wee'l draw cuts for the signior": [0, 65535], "wee'l draw cuts for the signior till": [0, 65535], "draw cuts for the signior till then": [0, 65535], "cuts for the signior till then lead": [0, 65535], "for the signior till then lead thou": [0, 65535], "the signior till then lead thou first": [0, 65535], "signior till then lead thou first e": [0, 65535], "till then lead thou first e dro": [0, 65535], "then lead thou first e dro nay": [0, 65535], "lead thou first e dro nay then": [0, 65535], "thou first e dro nay then thus": [0, 65535], "first e dro nay then thus we": [0, 65535], "e dro nay then thus we came": [0, 65535], "dro nay then thus we came into": [0, 65535], "nay then thus we came into the": [0, 65535], "then thus we came into the world": [0, 65535], "thus we came into the world like": [0, 65535], "we came into the world like brother": [0, 65535], "came into the world like brother and": [0, 65535], "into the world like brother and brother": [0, 65535], "the world like brother and brother and": [0, 65535], "world like brother and brother and now": [0, 65535], "like brother and brother and now let's": [0, 65535], "brother and brother and now let's go": [0, 65535], "and brother and now let's go hand": [0, 65535], "brother and now let's go hand in": [0, 65535], "and now let's go hand in hand": [0, 65535], "now let's go hand in hand not": [0, 65535], "let's go hand in hand not one": [0, 65535], "go hand in hand not one before": [0, 65535], "hand in hand not one before another": [0, 65535], "in hand not one before another exeunt": [0, 65535], "hand not one before another exeunt finis": [0, 65535], "actus quintus sc\u0153na prima enter the merchant and": [0, 65535], "quintus sc\u0153na prima enter the merchant and the": [0, 65535], "sc\u0153na prima enter the merchant and the goldsmith": [0, 65535], "prima enter the merchant and the goldsmith gold": [0, 65535], "enter the merchant and the goldsmith gold i": [0, 65535], "the merchant and the goldsmith gold i am": [0, 65535], "merchant and the goldsmith gold i am sorry": [0, 65535], "and the goldsmith gold i am sorry sir": [0, 65535], "the goldsmith gold i am sorry sir that": [0, 65535], "goldsmith gold i am sorry sir that i": [0, 65535], "gold i am sorry sir that i haue": [0, 65535], "i am sorry sir that i haue hindred": [0, 65535], "am sorry sir that i haue hindred you": [0, 65535], "sorry sir that i haue hindred you but": [0, 65535], "sir that i haue hindred you but i": [0, 65535], "that i haue hindred you but i protest": [0, 65535], "i haue hindred you but i protest he": [0, 65535], "haue hindred you but i protest he had": [0, 65535], "hindred you but i protest he had the": [0, 65535], "you but i protest he had the chaine": [0, 65535], "but i protest he had the chaine of": [0, 65535], "i protest he had the chaine of me": [0, 65535], "protest he had the chaine of me though": [0, 65535], "he had the chaine of me though most": [0, 65535], "had the chaine of me though most dishonestly": [0, 65535], "the chaine of me though most dishonestly he": [0, 65535], "chaine of me though most dishonestly he doth": [0, 65535], "of me though most dishonestly he doth denie": [0, 65535], "me though most dishonestly he doth denie it": [0, 65535], "though most dishonestly he doth denie it mar": [0, 65535], "most dishonestly he doth denie it mar how": [0, 65535], "dishonestly he doth denie it mar how is": [0, 65535], "he doth denie it mar how is the": [0, 65535], "doth denie it mar how is the man": [0, 65535], "denie it mar how is the man esteem'd": [0, 65535], "it mar how is the man esteem'd heere": [0, 65535], "mar how is the man esteem'd heere in": [0, 65535], "how is the man esteem'd heere in the": [0, 65535], "is the man esteem'd heere in the citie": [0, 65535], "the man esteem'd heere in the citie gold": [0, 65535], "man esteem'd heere in the citie gold of": [0, 65535], "esteem'd heere in the citie gold of very": [0, 65535], "heere in the citie gold of very reuerent": [0, 65535], "in the citie gold of very reuerent reputation": [0, 65535], "the citie gold of very reuerent reputation sir": [0, 65535], "citie gold of very reuerent reputation sir of": [0, 65535], "gold of very reuerent reputation sir of credit": [0, 65535], "of very reuerent reputation sir of credit infinite": [0, 65535], "very reuerent reputation sir of credit infinite highly": [0, 65535], "reuerent reputation sir of credit infinite highly belou'd": [0, 65535], "reputation sir of credit infinite highly belou'd second": [0, 65535], "sir of credit infinite highly belou'd second to": [0, 65535], "of credit infinite highly belou'd second to none": [0, 65535], "credit infinite highly belou'd second to none that": [0, 65535], "infinite highly belou'd second to none that liues": [0, 65535], "highly belou'd second to none that liues heere": [0, 65535], "belou'd second to none that liues heere in": [0, 65535], "second to none that liues heere in the": [0, 65535], "to none that liues heere in the citie": [0, 65535], "none that liues heere in the citie his": [0, 65535], "that liues heere in the citie his word": [0, 65535], "liues heere in the citie his word might": [0, 65535], "heere in the citie his word might beare": [0, 65535], "in the citie his word might beare my": [0, 65535], "the citie his word might beare my wealth": [0, 65535], "citie his word might beare my wealth at": [0, 65535], "his word might beare my wealth at any": [0, 65535], "word might beare my wealth at any time": [0, 65535], "might beare my wealth at any time mar": [0, 65535], "beare my wealth at any time mar speake": [0, 65535], "my wealth at any time mar speake softly": [0, 65535], "wealth at any time mar speake softly yonder": [0, 65535], "at any time mar speake softly yonder as": [0, 65535], "any time mar speake softly yonder as i": [0, 65535], "time mar speake softly yonder as i thinke": [0, 65535], "mar speake softly yonder as i thinke he": [0, 65535], "speake softly yonder as i thinke he walkes": [0, 65535], "softly yonder as i thinke he walkes enter": [0, 65535], "yonder as i thinke he walkes enter antipholus": [0, 65535], "as i thinke he walkes enter antipholus and": [0, 65535], "i thinke he walkes enter antipholus and dromio": [0, 65535], "thinke he walkes enter antipholus and dromio againe": [0, 65535], "he walkes enter antipholus and dromio againe gold": [0, 65535], "walkes enter antipholus and dromio againe gold 'tis": [0, 65535], "enter antipholus and dromio againe gold 'tis so": [0, 65535], "antipholus and dromio againe gold 'tis so and": [0, 65535], "and dromio againe gold 'tis so and that": [0, 65535], "dromio againe gold 'tis so and that selfe": [0, 65535], "againe gold 'tis so and that selfe chaine": [0, 65535], "gold 'tis so and that selfe chaine about": [0, 65535], "'tis so and that selfe chaine about his": [0, 65535], "so and that selfe chaine about his necke": [0, 65535], "and that selfe chaine about his necke which": [0, 65535], "that selfe chaine about his necke which he": [0, 65535], "selfe chaine about his necke which he forswore": [0, 65535], "chaine about his necke which he forswore most": [0, 65535], "about his necke which he forswore most monstrously": [0, 65535], "his necke which he forswore most monstrously to": [0, 65535], "necke which he forswore most monstrously to haue": [0, 65535], "which he forswore most monstrously to haue good": [0, 65535], "he forswore most monstrously to haue good sir": [0, 65535], "forswore most monstrously to haue good sir draw": [0, 65535], "most monstrously to haue good sir draw neere": [0, 65535], "monstrously to haue good sir draw neere to": [0, 65535], "to haue good sir draw neere to me": [0, 65535], "haue good sir draw neere to me ile": [0, 65535], "good sir draw neere to me ile speake": [0, 65535], "sir draw neere to me ile speake to": [0, 65535], "draw neere to me ile speake to him": [0, 65535], "neere to me ile speake to him signior": [0, 65535], "to me ile speake to him signior antipholus": [0, 65535], "me ile speake to him signior antipholus i": [0, 65535], "ile speake to him signior antipholus i wonder": [0, 65535], "speake to him signior antipholus i wonder much": [0, 65535], "to him signior antipholus i wonder much that": [0, 65535], "him signior antipholus i wonder much that you": [0, 65535], "signior antipholus i wonder much that you would": [0, 65535], "antipholus i wonder much that you would put": [0, 65535], "i wonder much that you would put me": [0, 65535], "wonder much that you would put me to": [0, 65535], "much that you would put me to this": [0, 65535], "that you would put me to this shame": [0, 65535], "you would put me to this shame and": [0, 65535], "would put me to this shame and trouble": [0, 65535], "put me to this shame and trouble and": [0, 65535], "me to this shame and trouble and not": [0, 65535], "to this shame and trouble and not without": [0, 65535], "this shame and trouble and not without some": [0, 65535], "shame and trouble and not without some scandall": [0, 65535], "and trouble and not without some scandall to": [0, 65535], "trouble and not without some scandall to your": [0, 65535], "and not without some scandall to your selfe": [0, 65535], "not without some scandall to your selfe with": [0, 65535], "without some scandall to your selfe with circumstance": [0, 65535], "some scandall to your selfe with circumstance and": [0, 65535], "scandall to your selfe with circumstance and oaths": [0, 65535], "to your selfe with circumstance and oaths so": [0, 65535], "your selfe with circumstance and oaths so to": [0, 65535], "selfe with circumstance and oaths so to denie": [0, 65535], "with circumstance and oaths so to denie this": [0, 65535], "circumstance and oaths so to denie this chaine": [0, 65535], "and oaths so to denie this chaine which": [0, 65535], "oaths so to denie this chaine which now": [0, 65535], "so to denie this chaine which now you": [0, 65535], "to denie this chaine which now you weare": [0, 65535], "denie this chaine which now you weare so": [0, 65535], "this chaine which now you weare so openly": [0, 65535], "chaine which now you weare so openly beside": [0, 65535], "which now you weare so openly beside the": [0, 65535], "now you weare so openly beside the charge": [0, 65535], "you weare so openly beside the charge the": [0, 65535], "weare so openly beside the charge the shame": [0, 65535], "so openly beside the charge the shame imprisonment": [0, 65535], "openly beside the charge the shame imprisonment you": [0, 65535], "beside the charge the shame imprisonment you haue": [0, 65535], "the charge the shame imprisonment you haue done": [0, 65535], "charge the shame imprisonment you haue done wrong": [0, 65535], "the shame imprisonment you haue done wrong to": [0, 65535], "shame imprisonment you haue done wrong to this": [0, 65535], "imprisonment you haue done wrong to this my": [0, 65535], "you haue done wrong to this my honest": [0, 65535], "haue done wrong to this my honest friend": [0, 65535], "done wrong to this my honest friend who": [0, 65535], "wrong to this my honest friend who but": [0, 65535], "to this my honest friend who but for": [0, 65535], "this my honest friend who but for staying": [0, 65535], "my honest friend who but for staying on": [0, 65535], "honest friend who but for staying on our": [0, 65535], "friend who but for staying on our controuersie": [0, 65535], "who but for staying on our controuersie had": [0, 65535], "but for staying on our controuersie had hoisted": [0, 65535], "for staying on our controuersie had hoisted saile": [0, 65535], "staying on our controuersie had hoisted saile and": [0, 65535], "on our controuersie had hoisted saile and put": [0, 65535], "our controuersie had hoisted saile and put to": [0, 65535], "controuersie had hoisted saile and put to sea": [0, 65535], "had hoisted saile and put to sea to": [0, 65535], "hoisted saile and put to sea to day": [0, 65535], "saile and put to sea to day this": [0, 65535], "and put to sea to day this chaine": [0, 65535], "put to sea to day this chaine you": [0, 65535], "to sea to day this chaine you had": [0, 65535], "sea to day this chaine you had of": [0, 65535], "to day this chaine you had of me": [0, 65535], "day this chaine you had of me can": [0, 65535], "this chaine you had of me can you": [0, 65535], "chaine you had of me can you deny": [0, 65535], "you had of me can you deny it": [0, 65535], "had of me can you deny it ant": [0, 65535], "of me can you deny it ant i": [0, 65535], "me can you deny it ant i thinke": [0, 65535], "can you deny it ant i thinke i": [0, 65535], "you deny it ant i thinke i had": [0, 65535], "deny it ant i thinke i had i": [0, 65535], "it ant i thinke i had i neuer": [0, 65535], "ant i thinke i had i neuer did": [0, 65535], "i thinke i had i neuer did deny": [0, 65535], "thinke i had i neuer did deny it": [0, 65535], "i had i neuer did deny it mar": [0, 65535], "had i neuer did deny it mar yes": [0, 65535], "i neuer did deny it mar yes that": [0, 65535], "neuer did deny it mar yes that you": [0, 65535], "did deny it mar yes that you did": [0, 65535], "deny it mar yes that you did sir": [0, 65535], "it mar yes that you did sir and": [0, 65535], "mar yes that you did sir and forswore": [0, 65535], "yes that you did sir and forswore it": [0, 65535], "that you did sir and forswore it too": [0, 65535], "you did sir and forswore it too ant": [0, 65535], "did sir and forswore it too ant who": [0, 65535], "sir and forswore it too ant who heard": [0, 65535], "and forswore it too ant who heard me": [0, 65535], "forswore it too ant who heard me to": [0, 65535], "it too ant who heard me to denie": [0, 65535], "too ant who heard me to denie it": [0, 65535], "ant who heard me to denie it or": [0, 65535], "who heard me to denie it or forsweare": [0, 65535], "heard me to denie it or forsweare it": [0, 65535], "me to denie it or forsweare it mar": [0, 65535], "to denie it or forsweare it mar these": [0, 65535], "denie it or forsweare it mar these eares": [0, 65535], "it or forsweare it mar these eares of": [0, 65535], "or forsweare it mar these eares of mine": [0, 65535], "forsweare it mar these eares of mine thou": [0, 65535], "it mar these eares of mine thou knowst": [0, 65535], "mar these eares of mine thou knowst did": [0, 65535], "these eares of mine thou knowst did hear": [0, 65535], "eares of mine thou knowst did hear thee": [0, 65535], "of mine thou knowst did hear thee fie": [0, 65535], "mine thou knowst did hear thee fie on": [0, 65535], "thou knowst did hear thee fie on thee": [0, 65535], "knowst did hear thee fie on thee wretch": [0, 65535], "did hear thee fie on thee wretch 'tis": [0, 65535], "hear thee fie on thee wretch 'tis pitty": [0, 65535], "thee fie on thee wretch 'tis pitty that": [0, 65535], "fie on thee wretch 'tis pitty that thou": [0, 65535], "on thee wretch 'tis pitty that thou liu'st": [0, 65535], "thee wretch 'tis pitty that thou liu'st to": [0, 65535], "wretch 'tis pitty that thou liu'st to walke": [0, 65535], "'tis pitty that thou liu'st to walke where": [0, 65535], "pitty that thou liu'st to walke where any": [0, 65535], "that thou liu'st to walke where any honest": [0, 65535], "thou liu'st to walke where any honest men": [0, 65535], "liu'st to walke where any honest men resort": [0, 65535], "to walke where any honest men resort ant": [0, 65535], "walke where any honest men resort ant thou": [0, 65535], "where any honest men resort ant thou art": [0, 65535], "any honest men resort ant thou art a": [0, 65535], "honest men resort ant thou art a villaine": [0, 65535], "men resort ant thou art a villaine to": [0, 65535], "resort ant thou art a villaine to impeach": [0, 65535], "ant thou art a villaine to impeach me": [0, 65535], "thou art a villaine to impeach me thus": [0, 65535], "art a villaine to impeach me thus ile": [0, 65535], "a villaine to impeach me thus ile proue": [0, 65535], "villaine to impeach me thus ile proue mine": [0, 65535], "to impeach me thus ile proue mine honor": [0, 65535], "impeach me thus ile proue mine honor and": [0, 65535], "me thus ile proue mine honor and mine": [0, 65535], "thus ile proue mine honor and mine honestie": [0, 65535], "ile proue mine honor and mine honestie against": [0, 65535], "proue mine honor and mine honestie against thee": [0, 65535], "mine honor and mine honestie against thee presently": [0, 65535], "honor and mine honestie against thee presently if": [0, 65535], "and mine honestie against thee presently if thou": [0, 65535], "mine honestie against thee presently if thou dar'st": [0, 65535], "honestie against thee presently if thou dar'st stand": [0, 65535], "against thee presently if thou dar'st stand mar": [0, 65535], "thee presently if thou dar'st stand mar i": [0, 65535], "presently if thou dar'st stand mar i dare": [0, 65535], "if thou dar'st stand mar i dare and": [0, 65535], "thou dar'st stand mar i dare and do": [0, 65535], "dar'st stand mar i dare and do defie": [0, 65535], "stand mar i dare and do defie thee": [0, 65535], "mar i dare and do defie thee for": [0, 65535], "i dare and do defie thee for a": [0, 65535], "dare and do defie thee for a villaine": [0, 65535], "and do defie thee for a villaine they": [0, 65535], "do defie thee for a villaine they draw": [0, 65535], "defie thee for a villaine they draw enter": [0, 65535], "thee for a villaine they draw enter adriana": [0, 65535], "for a villaine they draw enter adriana luciana": [0, 65535], "a villaine they draw enter adriana luciana courtezan": [0, 65535], "villaine they draw enter adriana luciana courtezan others": [0, 65535], "they draw enter adriana luciana courtezan others adr": [0, 65535], "draw enter adriana luciana courtezan others adr hold": [0, 65535], "enter adriana luciana courtezan others adr hold hurt": [0, 65535], "adriana luciana courtezan others adr hold hurt him": [0, 65535], "luciana courtezan others adr hold hurt him not": [0, 65535], "courtezan others adr hold hurt him not for": [0, 65535], "others adr hold hurt him not for god": [0, 65535], "adr hold hurt him not for god sake": [0, 65535], "hold hurt him not for god sake he": [0, 65535], "hurt him not for god sake he is": [0, 65535], "him not for god sake he is mad": [0, 65535], "not for god sake he is mad some": [0, 65535], "for god sake he is mad some get": [0, 65535], "god sake he is mad some get within": [0, 65535], "sake he is mad some get within him": [0, 65535], "he is mad some get within him take": [0, 65535], "is mad some get within him take his": [0, 65535], "mad some get within him take his sword": [0, 65535], "some get within him take his sword away": [0, 65535], "get within him take his sword away binde": [0, 65535], "within him take his sword away binde dromio": [0, 65535], "him take his sword away binde dromio too": [0, 65535], "take his sword away binde dromio too and": [0, 65535], "his sword away binde dromio too and beare": [0, 65535], "sword away binde dromio too and beare them": [0, 65535], "away binde dromio too and beare them to": [0, 65535], "binde dromio too and beare them to my": [0, 65535], "dromio too and beare them to my house": [0, 65535], "too and beare them to my house s": [0, 65535], "and beare them to my house s dro": [0, 65535], "beare them to my house s dro runne": [0, 65535], "them to my house s dro runne master": [0, 65535], "to my house s dro runne master run": [0, 65535], "my house s dro runne master run for": [0, 65535], "house s dro runne master run for gods": [0, 65535], "s dro runne master run for gods sake": [0, 65535], "dro runne master run for gods sake take": [0, 65535], "runne master run for gods sake take a": [0, 65535], "master run for gods sake take a house": [0, 65535], "run for gods sake take a house this": [0, 65535], "for gods sake take a house this is": [0, 65535], "gods sake take a house this is some": [0, 65535], "sake take a house this is some priorie": [0, 65535], "take a house this is some priorie in": [0, 65535], "a house this is some priorie in or": [0, 65535], "house this is some priorie in or we": [0, 65535], "this is some priorie in or we are": [0, 65535], "is some priorie in or we are spoyl'd": [0, 65535], "some priorie in or we are spoyl'd exeunt": [0, 65535], "priorie in or we are spoyl'd exeunt to": [0, 65535], "in or we are spoyl'd exeunt to the": [0, 65535], "or we are spoyl'd exeunt to the priorie": [0, 65535], "we are spoyl'd exeunt to the priorie enter": [0, 65535], "are spoyl'd exeunt to the priorie enter ladie": [0, 65535], "spoyl'd exeunt to the priorie enter ladie abbesse": [0, 65535], "exeunt to the priorie enter ladie abbesse ab": [0, 65535], "to the priorie enter ladie abbesse ab be": [0, 65535], "the priorie enter ladie abbesse ab be quiet": [0, 65535], "priorie enter ladie abbesse ab be quiet people": [0, 65535], "enter ladie abbesse ab be quiet people wherefore": [0, 65535], "ladie abbesse ab be quiet people wherefore throng": [0, 65535], "abbesse ab be quiet people wherefore throng you": [0, 65535], "ab be quiet people wherefore throng you hither": [0, 65535], "be quiet people wherefore throng you hither adr": [0, 65535], "quiet people wherefore throng you hither adr to": [0, 65535], "people wherefore throng you hither adr to fetch": [0, 65535], "wherefore throng you hither adr to fetch my": [0, 65535], "throng you hither adr to fetch my poore": [0, 65535], "you hither adr to fetch my poore distracted": [0, 65535], "hither adr to fetch my poore distracted husband": [0, 65535], "adr to fetch my poore distracted husband hence": [0, 65535], "to fetch my poore distracted husband hence let": [0, 65535], "fetch my poore distracted husband hence let vs": [0, 65535], "my poore distracted husband hence let vs come": [0, 65535], "poore distracted husband hence let vs come in": [0, 65535], "distracted husband hence let vs come in that": [0, 65535], "husband hence let vs come in that we": [0, 65535], "hence let vs come in that we may": [0, 65535], "let vs come in that we may binde": [0, 65535], "vs come in that we may binde him": [0, 65535], "come in that we may binde him fast": [0, 65535], "in that we may binde him fast and": [0, 65535], "that we may binde him fast and beare": [0, 65535], "we may binde him fast and beare him": [0, 65535], "may binde him fast and beare him home": [0, 65535], "binde him fast and beare him home for": [0, 65535], "him fast and beare him home for his": [0, 65535], "fast and beare him home for his recouerie": [0, 65535], "and beare him home for his recouerie gold": [0, 65535], "beare him home for his recouerie gold i": [0, 65535], "him home for his recouerie gold i knew": [0, 65535], "home for his recouerie gold i knew he": [0, 65535], "for his recouerie gold i knew he was": [0, 65535], "his recouerie gold i knew he was not": [0, 65535], "recouerie gold i knew he was not in": [0, 65535], "gold i knew he was not in his": [0, 65535], "i knew he was not in his perfect": [0, 65535], "knew he was not in his perfect wits": [0, 65535], "he was not in his perfect wits mar": [0, 65535], "was not in his perfect wits mar i": [0, 65535], "not in his perfect wits mar i am": [0, 65535], "in his perfect wits mar i am sorry": [0, 65535], "his perfect wits mar i am sorry now": [0, 65535], "perfect wits mar i am sorry now that": [0, 65535], "wits mar i am sorry now that i": [0, 65535], "mar i am sorry now that i did": [0, 65535], "i am sorry now that i did draw": [0, 65535], "am sorry now that i did draw on": [0, 65535], "sorry now that i did draw on him": [0, 65535], "now that i did draw on him ab": [0, 65535], "that i did draw on him ab how": [0, 65535], "i did draw on him ab how long": [0, 65535], "did draw on him ab how long hath": [0, 65535], "draw on him ab how long hath this": [0, 65535], "on him ab how long hath this possession": [0, 65535], "him ab how long hath this possession held": [0, 65535], "ab how long hath this possession held the": [0, 65535], "how long hath this possession held the man": [0, 65535], "long hath this possession held the man adr": [0, 65535], "hath this possession held the man adr this": [0, 65535], "this possession held the man adr this weeke": [0, 65535], "possession held the man adr this weeke he": [0, 65535], "held the man adr this weeke he hath": [0, 65535], "the man adr this weeke he hath beene": [0, 65535], "man adr this weeke he hath beene heauie": [0, 65535], "adr this weeke he hath beene heauie sower": [0, 65535], "this weeke he hath beene heauie sower sad": [0, 65535], "weeke he hath beene heauie sower sad and": [0, 65535], "he hath beene heauie sower sad and much": [0, 65535], "hath beene heauie sower sad and much different": [0, 65535], "beene heauie sower sad and much different from": [0, 65535], "heauie sower sad and much different from the": [0, 65535], "sower sad and much different from the man": [0, 65535], "sad and much different from the man he": [0, 65535], "and much different from the man he was": [0, 65535], "much different from the man he was but": [0, 65535], "different from the man he was but till": [0, 65535], "from the man he was but till this": [0, 65535], "the man he was but till this afternoone": [0, 65535], "man he was but till this afternoone his": [0, 65535], "he was but till this afternoone his passion": [0, 65535], "was but till this afternoone his passion ne're": [0, 65535], "but till this afternoone his passion ne're brake": [0, 65535], "till this afternoone his passion ne're brake into": [0, 65535], "this afternoone his passion ne're brake into extremity": [0, 65535], "afternoone his passion ne're brake into extremity of": [0, 65535], "his passion ne're brake into extremity of rage": [0, 65535], "passion ne're brake into extremity of rage ab": [0, 65535], "ne're brake into extremity of rage ab hath": [0, 65535], "brake into extremity of rage ab hath he": [0, 65535], "into extremity of rage ab hath he not": [0, 65535], "extremity of rage ab hath he not lost": [0, 65535], "of rage ab hath he not lost much": [0, 65535], "rage ab hath he not lost much wealth": [0, 65535], "ab hath he not lost much wealth by": [0, 65535], "hath he not lost much wealth by wrack": [0, 65535], "he not lost much wealth by wrack of": [0, 65535], "not lost much wealth by wrack of sea": [0, 65535], "lost much wealth by wrack of sea buried": [0, 65535], "much wealth by wrack of sea buried some": [0, 65535], "wealth by wrack of sea buried some deere": [0, 65535], "by wrack of sea buried some deere friend": [0, 65535], "wrack of sea buried some deere friend hath": [0, 65535], "of sea buried some deere friend hath not": [0, 65535], "sea buried some deere friend hath not else": [0, 65535], "buried some deere friend hath not else his": [0, 65535], "some deere friend hath not else his eye": [0, 65535], "deere friend hath not else his eye stray'd": [0, 65535], "friend hath not else his eye stray'd his": [0, 65535], "hath not else his eye stray'd his affection": [0, 65535], "not else his eye stray'd his affection in": [0, 65535], "else his eye stray'd his affection in vnlawfull": [0, 65535], "his eye stray'd his affection in vnlawfull loue": [0, 65535], "eye stray'd his affection in vnlawfull loue a": [0, 65535], "stray'd his affection in vnlawfull loue a sinne": [0, 65535], "his affection in vnlawfull loue a sinne preuailing": [0, 65535], "affection in vnlawfull loue a sinne preuailing much": [0, 65535], "in vnlawfull loue a sinne preuailing much in": [0, 65535], "vnlawfull loue a sinne preuailing much in youthfull": [0, 65535], "loue a sinne preuailing much in youthfull men": [0, 65535], "a sinne preuailing much in youthfull men who": [0, 65535], "sinne preuailing much in youthfull men who giue": [0, 65535], "preuailing much in youthfull men who giue their": [0, 65535], "much in youthfull men who giue their eies": [0, 65535], "in youthfull men who giue their eies the": [0, 65535], "youthfull men who giue their eies the liberty": [0, 65535], "men who giue their eies the liberty of": [0, 65535], "who giue their eies the liberty of gazing": [0, 65535], "giue their eies the liberty of gazing which": [0, 65535], "their eies the liberty of gazing which of": [0, 65535], "eies the liberty of gazing which of these": [0, 65535], "the liberty of gazing which of these sorrowes": [0, 65535], "liberty of gazing which of these sorrowes is": [0, 65535], "of gazing which of these sorrowes is he": [0, 65535], "gazing which of these sorrowes is he subiect": [0, 65535], "which of these sorrowes is he subiect too": [0, 65535], "of these sorrowes is he subiect too adr": [0, 65535], "these sorrowes is he subiect too adr to": [0, 65535], "sorrowes is he subiect too adr to none": [0, 65535], "is he subiect too adr to none of": [0, 65535], "he subiect too adr to none of these": [0, 65535], "subiect too adr to none of these except": [0, 65535], "too adr to none of these except it": [0, 65535], "adr to none of these except it be": [0, 65535], "to none of these except it be the": [0, 65535], "none of these except it be the last": [0, 65535], "of these except it be the last namely": [0, 65535], "these except it be the last namely some": [0, 65535], "except it be the last namely some loue": [0, 65535], "it be the last namely some loue that": [0, 65535], "be the last namely some loue that drew": [0, 65535], "the last namely some loue that drew him": [0, 65535], "last namely some loue that drew him oft": [0, 65535], "namely some loue that drew him oft from": [0, 65535], "some loue that drew him oft from home": [0, 65535], "loue that drew him oft from home ab": [0, 65535], "that drew him oft from home ab you": [0, 65535], "drew him oft from home ab you should": [0, 65535], "him oft from home ab you should for": [0, 65535], "oft from home ab you should for that": [0, 65535], "from home ab you should for that haue": [0, 65535], "home ab you should for that haue reprehended": [0, 65535], "ab you should for that haue reprehended him": [0, 65535], "you should for that haue reprehended him adr": [0, 65535], "should for that haue reprehended him adr why": [0, 65535], "for that haue reprehended him adr why so": [0, 65535], "that haue reprehended him adr why so i": [0, 65535], "haue reprehended him adr why so i did": [0, 65535], "reprehended him adr why so i did ab": [0, 65535], "him adr why so i did ab i": [0, 65535], "adr why so i did ab i but": [0, 65535], "why so i did ab i but not": [0, 65535], "so i did ab i but not rough": [0, 65535], "i did ab i but not rough enough": [0, 65535], "did ab i but not rough enough adr": [0, 65535], "ab i but not rough enough adr as": [0, 65535], "i but not rough enough adr as roughly": [0, 65535], "but not rough enough adr as roughly as": [0, 65535], "not rough enough adr as roughly as my": [0, 65535], "rough enough adr as roughly as my modestie": [0, 65535], "enough adr as roughly as my modestie would": [0, 65535], "adr as roughly as my modestie would let": [0, 65535], "as roughly as my modestie would let me": [0, 65535], "roughly as my modestie would let me ab": [0, 65535], "as my modestie would let me ab haply": [0, 65535], "my modestie would let me ab haply in": [0, 65535], "modestie would let me ab haply in priuate": [0, 65535], "would let me ab haply in priuate adr": [0, 65535], "let me ab haply in priuate adr and": [0, 65535], "me ab haply in priuate adr and in": [0, 65535], "ab haply in priuate adr and in assemblies": [0, 65535], "haply in priuate adr and in assemblies too": [0, 65535], "in priuate adr and in assemblies too ab": [0, 65535], "priuate adr and in assemblies too ab i": [0, 65535], "adr and in assemblies too ab i but": [0, 65535], "and in assemblies too ab i but not": [0, 65535], "in assemblies too ab i but not enough": [0, 65535], "assemblies too ab i but not enough adr": [0, 65535], "too ab i but not enough adr it": [0, 65535], "ab i but not enough adr it was": [0, 65535], "i but not enough adr it was the": [0, 65535], "but not enough adr it was the copie": [0, 65535], "not enough adr it was the copie of": [0, 65535], "enough adr it was the copie of our": [0, 65535], "adr it was the copie of our conference": [0, 65535], "it was the copie of our conference in": [0, 65535], "was the copie of our conference in bed": [0, 65535], "the copie of our conference in bed he": [0, 65535], "copie of our conference in bed he slept": [0, 65535], "of our conference in bed he slept not": [0, 65535], "our conference in bed he slept not for": [0, 65535], "conference in bed he slept not for my": [0, 65535], "in bed he slept not for my vrging": [0, 65535], "bed he slept not for my vrging it": [0, 65535], "he slept not for my vrging it at": [0, 65535], "slept not for my vrging it at boord": [0, 65535], "not for my vrging it at boord he": [0, 65535], "for my vrging it at boord he fed": [0, 65535], "my vrging it at boord he fed not": [0, 65535], "vrging it at boord he fed not for": [0, 65535], "it at boord he fed not for my": [0, 65535], "at boord he fed not for my vrging": [0, 65535], "boord he fed not for my vrging it": [0, 65535], "he fed not for my vrging it alone": [0, 65535], "fed not for my vrging it alone it": [0, 65535], "not for my vrging it alone it was": [0, 65535], "for my vrging it alone it was the": [0, 65535], "my vrging it alone it was the subiect": [0, 65535], "vrging it alone it was the subiect of": [0, 65535], "it alone it was the subiect of my": [0, 65535], "alone it was the subiect of my theame": [0, 65535], "it was the subiect of my theame in": [0, 65535], "was the subiect of my theame in company": [0, 65535], "the subiect of my theame in company i": [0, 65535], "subiect of my theame in company i often": [0, 65535], "of my theame in company i often glanced": [0, 65535], "my theame in company i often glanced it": [0, 65535], "theame in company i often glanced it still": [0, 65535], "in company i often glanced it still did": [0, 65535], "company i often glanced it still did i": [0, 65535], "i often glanced it still did i tell": [0, 65535], "often glanced it still did i tell him": [0, 65535], "glanced it still did i tell him it": [0, 65535], "it still did i tell him it was": [0, 65535], "still did i tell him it was vilde": [0, 65535], "did i tell him it was vilde and": [0, 65535], "i tell him it was vilde and bad": [0, 65535], "tell him it was vilde and bad ab": [0, 65535], "him it was vilde and bad ab and": [0, 65535], "it was vilde and bad ab and thereof": [0, 65535], "was vilde and bad ab and thereof came": [0, 65535], "vilde and bad ab and thereof came it": [0, 65535], "and bad ab and thereof came it that": [0, 65535], "bad ab and thereof came it that the": [0, 65535], "ab and thereof came it that the man": [0, 65535], "and thereof came it that the man was": [0, 65535], "thereof came it that the man was mad": [0, 65535], "came it that the man was mad the": [0, 65535], "it that the man was mad the venome": [0, 65535], "that the man was mad the venome clamors": [0, 65535], "the man was mad the venome clamors of": [0, 65535], "man was mad the venome clamors of a": [0, 65535], "was mad the venome clamors of a iealous": [0, 65535], "mad the venome clamors of a iealous woman": [0, 65535], "the venome clamors of a iealous woman poisons": [0, 65535], "venome clamors of a iealous woman poisons more": [0, 65535], "clamors of a iealous woman poisons more deadly": [0, 65535], "of a iealous woman poisons more deadly then": [0, 65535], "a iealous woman poisons more deadly then a": [0, 65535], "iealous woman poisons more deadly then a mad": [0, 65535], "woman poisons more deadly then a mad dogges": [0, 65535], "poisons more deadly then a mad dogges tooth": [0, 65535], "more deadly then a mad dogges tooth it": [0, 65535], "deadly then a mad dogges tooth it seemes": [0, 65535], "then a mad dogges tooth it seemes his": [0, 65535], "a mad dogges tooth it seemes his sleepes": [0, 65535], "mad dogges tooth it seemes his sleepes were": [0, 65535], "dogges tooth it seemes his sleepes were hindred": [0, 65535], "tooth it seemes his sleepes were hindred by": [0, 65535], "it seemes his sleepes were hindred by thy": [0, 65535], "seemes his sleepes were hindred by thy railing": [0, 65535], "his sleepes were hindred by thy railing and": [0, 65535], "sleepes were hindred by thy railing and thereof": [0, 65535], "were hindred by thy railing and thereof comes": [0, 65535], "hindred by thy railing and thereof comes it": [0, 65535], "by thy railing and thereof comes it that": [0, 65535], "thy railing and thereof comes it that his": [0, 65535], "railing and thereof comes it that his head": [0, 65535], "and thereof comes it that his head is": [0, 65535], "thereof comes it that his head is light": [0, 65535], "comes it that his head is light thou": [0, 65535], "it that his head is light thou saist": [0, 65535], "that his head is light thou saist his": [0, 65535], "his head is light thou saist his meate": [0, 65535], "head is light thou saist his meate was": [0, 65535], "is light thou saist his meate was sawc'd": [0, 65535], "light thou saist his meate was sawc'd with": [0, 65535], "thou saist his meate was sawc'd with thy": [0, 65535], "saist his meate was sawc'd with thy vpbraidings": [0, 65535], "his meate was sawc'd with thy vpbraidings vnquiet": [0, 65535], "meate was sawc'd with thy vpbraidings vnquiet meales": [0, 65535], "was sawc'd with thy vpbraidings vnquiet meales make": [0, 65535], "sawc'd with thy vpbraidings vnquiet meales make ill": [0, 65535], "with thy vpbraidings vnquiet meales make ill digestions": [0, 65535], "thy vpbraidings vnquiet meales make ill digestions thereof": [0, 65535], "vpbraidings vnquiet meales make ill digestions thereof the": [0, 65535], "vnquiet meales make ill digestions thereof the raging": [0, 65535], "meales make ill digestions thereof the raging fire": [0, 65535], "make ill digestions thereof the raging fire of": [0, 65535], "ill digestions thereof the raging fire of feauer": [0, 65535], "digestions thereof the raging fire of feauer bred": [0, 65535], "thereof the raging fire of feauer bred and": [0, 65535], "the raging fire of feauer bred and what's": [0, 65535], "raging fire of feauer bred and what's a": [0, 65535], "fire of feauer bred and what's a feauer": [0, 65535], "of feauer bred and what's a feauer but": [0, 65535], "feauer bred and what's a feauer but a": [0, 65535], "bred and what's a feauer but a fit": [0, 65535], "and what's a feauer but a fit of": [0, 65535], "what's a feauer but a fit of madnesse": [0, 65535], "a feauer but a fit of madnesse thou": [0, 65535], "feauer but a fit of madnesse thou sayest": [0, 65535], "but a fit of madnesse thou sayest his": [0, 65535], "a fit of madnesse thou sayest his sports": [0, 65535], "fit of madnesse thou sayest his sports were": [0, 65535], "of madnesse thou sayest his sports were hindred": [0, 65535], "madnesse thou sayest his sports were hindred by": [0, 65535], "thou sayest his sports were hindred by thy": [0, 65535], "sayest his sports were hindred by thy bralles": [0, 65535], "his sports were hindred by thy bralles sweet": [0, 65535], "sports were hindred by thy bralles sweet recreation": [0, 65535], "were hindred by thy bralles sweet recreation barr'd": [0, 65535], "hindred by thy bralles sweet recreation barr'd what": [0, 65535], "by thy bralles sweet recreation barr'd what doth": [0, 65535], "thy bralles sweet recreation barr'd what doth ensue": [0, 65535], "bralles sweet recreation barr'd what doth ensue but": [0, 65535], "sweet recreation barr'd what doth ensue but moodie": [0, 65535], "recreation barr'd what doth ensue but moodie and": [0, 65535], "barr'd what doth ensue but moodie and dull": [0, 65535], "what doth ensue but moodie and dull melancholly": [0, 65535], "doth ensue but moodie and dull melancholly kinsman": [0, 65535], "ensue but moodie and dull melancholly kinsman to": [0, 65535], "but moodie and dull melancholly kinsman to grim": [0, 65535], "moodie and dull melancholly kinsman to grim and": [0, 65535], "and dull melancholly kinsman to grim and comfortlesse": [0, 65535], "dull melancholly kinsman to grim and comfortlesse dispaire": [0, 65535], "melancholly kinsman to grim and comfortlesse dispaire and": [0, 65535], "kinsman to grim and comfortlesse dispaire and at": [0, 65535], "to grim and comfortlesse dispaire and at her": [0, 65535], "grim and comfortlesse dispaire and at her heeles": [0, 65535], "and comfortlesse dispaire and at her heeles a": [0, 65535], "comfortlesse dispaire and at her heeles a huge": [0, 65535], "dispaire and at her heeles a huge infectious": [0, 65535], "and at her heeles a huge infectious troope": [0, 65535], "at her heeles a huge infectious troope of": [0, 65535], "her heeles a huge infectious troope of pale": [0, 65535], "heeles a huge infectious troope of pale distemperatures": [0, 65535], "a huge infectious troope of pale distemperatures and": [0, 65535], "huge infectious troope of pale distemperatures and foes": [0, 65535], "infectious troope of pale distemperatures and foes to": [0, 65535], "troope of pale distemperatures and foes to life": [0, 65535], "of pale distemperatures and foes to life in": [0, 65535], "pale distemperatures and foes to life in food": [0, 65535], "distemperatures and foes to life in food in": [0, 65535], "and foes to life in food in sport": [0, 65535], "foes to life in food in sport and": [0, 65535], "to life in food in sport and life": [0, 65535], "life in food in sport and life preseruing": [0, 65535], "in food in sport and life preseruing rest": [0, 65535], "food in sport and life preseruing rest to": [0, 65535], "in sport and life preseruing rest to be": [0, 65535], "sport and life preseruing rest to be disturb'd": [0, 65535], "and life preseruing rest to be disturb'd would": [0, 65535], "life preseruing rest to be disturb'd would mad": [0, 65535], "preseruing rest to be disturb'd would mad or": [0, 65535], "rest to be disturb'd would mad or man": [0, 65535], "to be disturb'd would mad or man or": [0, 65535], "be disturb'd would mad or man or beast": [0, 65535], "disturb'd would mad or man or beast the": [0, 65535], "would mad or man or beast the consequence": [0, 65535], "mad or man or beast the consequence is": [0, 65535], "or man or beast the consequence is then": [0, 65535], "man or beast the consequence is then thy": [0, 65535], "or beast the consequence is then thy iealous": [0, 65535], "beast the consequence is then thy iealous fits": [0, 65535], "the consequence is then thy iealous fits hath": [0, 65535], "consequence is then thy iealous fits hath scar'd": [0, 65535], "is then thy iealous fits hath scar'd thy": [0, 65535], "then thy iealous fits hath scar'd thy husband": [0, 65535], "thy iealous fits hath scar'd thy husband from": [0, 65535], "iealous fits hath scar'd thy husband from the": [0, 65535], "fits hath scar'd thy husband from the vse": [0, 65535], "hath scar'd thy husband from the vse of": [0, 65535], "scar'd thy husband from the vse of wits": [0, 65535], "thy husband from the vse of wits luc": [0, 65535], "husband from the vse of wits luc she": [0, 65535], "from the vse of wits luc she neuer": [0, 65535], "the vse of wits luc she neuer reprehended": [0, 65535], "vse of wits luc she neuer reprehended him": [0, 65535], "of wits luc she neuer reprehended him but": [0, 65535], "wits luc she neuer reprehended him but mildely": [0, 65535], "luc she neuer reprehended him but mildely when": [0, 65535], "she neuer reprehended him but mildely when he": [0, 65535], "neuer reprehended him but mildely when he demean'd": [0, 65535], "reprehended him but mildely when he demean'd himselfe": [0, 65535], "him but mildely when he demean'd himselfe rough": [0, 65535], "but mildely when he demean'd himselfe rough rude": [0, 65535], "mildely when he demean'd himselfe rough rude and": [0, 65535], "when he demean'd himselfe rough rude and wildly": [0, 65535], "he demean'd himselfe rough rude and wildly why": [0, 65535], "demean'd himselfe rough rude and wildly why beare": [0, 65535], "himselfe rough rude and wildly why beare you": [0, 65535], "rough rude and wildly why beare you these": [0, 65535], "rude and wildly why beare you these rebukes": [0, 65535], "and wildly why beare you these rebukes and": [0, 65535], "wildly why beare you these rebukes and answer": [0, 65535], "why beare you these rebukes and answer not": [0, 65535], "beare you these rebukes and answer not adri": [0, 65535], "you these rebukes and answer not adri she": [0, 65535], "these rebukes and answer not adri she did": [0, 65535], "rebukes and answer not adri she did betray": [0, 65535], "and answer not adri she did betray me": [0, 65535], "answer not adri she did betray me to": [0, 65535], "not adri she did betray me to my": [0, 65535], "adri she did betray me to my owne": [0, 65535], "she did betray me to my owne reproofe": [0, 65535], "did betray me to my owne reproofe good": [0, 65535], "betray me to my owne reproofe good people": [0, 65535], "me to my owne reproofe good people enter": [0, 65535], "to my owne reproofe good people enter and": [0, 65535], "my owne reproofe good people enter and lay": [0, 65535], "owne reproofe good people enter and lay hold": [0, 65535], "reproofe good people enter and lay hold on": [0, 65535], "good people enter and lay hold on him": [0, 65535], "people enter and lay hold on him ab": [0, 65535], "enter and lay hold on him ab no": [0, 65535], "and lay hold on him ab no not": [0, 65535], "lay hold on him ab no not a": [0, 65535], "hold on him ab no not a creature": [0, 65535], "on him ab no not a creature enters": [0, 65535], "him ab no not a creature enters in": [0, 65535], "ab no not a creature enters in my": [0, 65535], "no not a creature enters in my house": [0, 65535], "not a creature enters in my house ad": [0, 65535], "a creature enters in my house ad then": [0, 65535], "creature enters in my house ad then let": [0, 65535], "enters in my house ad then let your": [0, 65535], "in my house ad then let your seruants": [0, 65535], "my house ad then let your seruants bring": [0, 65535], "house ad then let your seruants bring my": [0, 65535], "ad then let your seruants bring my husband": [0, 65535], "then let your seruants bring my husband forth": [0, 65535], "let your seruants bring my husband forth ab": [0, 65535], "your seruants bring my husband forth ab neither": [0, 65535], "seruants bring my husband forth ab neither he": [0, 65535], "bring my husband forth ab neither he tooke": [0, 65535], "my husband forth ab neither he tooke this": [0, 65535], "husband forth ab neither he tooke this place": [0, 65535], "forth ab neither he tooke this place for": [0, 65535], "ab neither he tooke this place for sanctuary": [0, 65535], "neither he tooke this place for sanctuary and": [0, 65535], "he tooke this place for sanctuary and it": [0, 65535], "tooke this place for sanctuary and it shall": [0, 65535], "this place for sanctuary and it shall priuiledge": [0, 65535], "place for sanctuary and it shall priuiledge him": [0, 65535], "for sanctuary and it shall priuiledge him from": [0, 65535], "sanctuary and it shall priuiledge him from your": [0, 65535], "and it shall priuiledge him from your hands": [0, 65535], "it shall priuiledge him from your hands till": [0, 65535], "shall priuiledge him from your hands till i": [0, 65535], "priuiledge him from your hands till i haue": [0, 65535], "him from your hands till i haue brought": [0, 65535], "from your hands till i haue brought him": [0, 65535], "your hands till i haue brought him to": [0, 65535], "hands till i haue brought him to his": [0, 65535], "till i haue brought him to his wits": [0, 65535], "i haue brought him to his wits againe": [0, 65535], "haue brought him to his wits againe or": [0, 65535], "brought him to his wits againe or loose": [0, 65535], "him to his wits againe or loose my": [0, 65535], "to his wits againe or loose my labour": [0, 65535], "his wits againe or loose my labour in": [0, 65535], "wits againe or loose my labour in assaying": [0, 65535], "againe or loose my labour in assaying it": [0, 65535], "or loose my labour in assaying it adr": [0, 65535], "loose my labour in assaying it adr i": [0, 65535], "my labour in assaying it adr i will": [0, 65535], "labour in assaying it adr i will attend": [0, 65535], "in assaying it adr i will attend my": [0, 65535], "assaying it adr i will attend my husband": [0, 65535], "it adr i will attend my husband be": [0, 65535], "adr i will attend my husband be his": [0, 65535], "i will attend my husband be his nurse": [0, 65535], "will attend my husband be his nurse diet": [0, 65535], "attend my husband be his nurse diet his": [0, 65535], "my husband be his nurse diet his sicknesse": [0, 65535], "husband be his nurse diet his sicknesse for": [0, 65535], "be his nurse diet his sicknesse for it": [0, 65535], "his nurse diet his sicknesse for it is": [0, 65535], "nurse diet his sicknesse for it is my": [0, 65535], "diet his sicknesse for it is my office": [0, 65535], "his sicknesse for it is my office and": [0, 65535], "sicknesse for it is my office and will": [0, 65535], "for it is my office and will haue": [0, 65535], "it is my office and will haue no": [0, 65535], "is my office and will haue no atturney": [0, 65535], "my office and will haue no atturney but": [0, 65535], "office and will haue no atturney but my": [0, 65535], "and will haue no atturney but my selfe": [0, 65535], "will haue no atturney but my selfe and": [0, 65535], "haue no atturney but my selfe and therefore": [0, 65535], "no atturney but my selfe and therefore let": [0, 65535], "atturney but my selfe and therefore let me": [0, 65535], "but my selfe and therefore let me haue": [0, 65535], "my selfe and therefore let me haue him": [0, 65535], "selfe and therefore let me haue him home": [0, 65535], "and therefore let me haue him home with": [0, 65535], "therefore let me haue him home with me": [0, 65535], "let me haue him home with me ab": [0, 65535], "me haue him home with me ab be": [0, 65535], "haue him home with me ab be patient": [0, 65535], "him home with me ab be patient for": [0, 65535], "home with me ab be patient for i": [0, 65535], "with me ab be patient for i will": [0, 65535], "me ab be patient for i will not": [0, 65535], "ab be patient for i will not let": [0, 65535], "be patient for i will not let him": [0, 65535], "patient for i will not let him stirre": [0, 65535], "for i will not let him stirre till": [0, 65535], "i will not let him stirre till i": [0, 65535], "will not let him stirre till i haue": [0, 65535], "not let him stirre till i haue vs'd": [0, 65535], "let him stirre till i haue vs'd the": [0, 65535], "him stirre till i haue vs'd the approoued": [0, 65535], "stirre till i haue vs'd the approoued meanes": [0, 65535], "till i haue vs'd the approoued meanes i": [0, 65535], "i haue vs'd the approoued meanes i haue": [0, 65535], "haue vs'd the approoued meanes i haue with": [0, 65535], "vs'd the approoued meanes i haue with wholsome": [0, 65535], "the approoued meanes i haue with wholsome sirrups": [0, 65535], "approoued meanes i haue with wholsome sirrups drugges": [0, 65535], "meanes i haue with wholsome sirrups drugges and": [0, 65535], "i haue with wholsome sirrups drugges and holy": [0, 65535], "haue with wholsome sirrups drugges and holy prayers": [0, 65535], "with wholsome sirrups drugges and holy prayers to": [0, 65535], "wholsome sirrups drugges and holy prayers to make": [0, 65535], "sirrups drugges and holy prayers to make of": [0, 65535], "drugges and holy prayers to make of him": [0, 65535], "and holy prayers to make of him a": [0, 65535], "holy prayers to make of him a formall": [0, 65535], "prayers to make of him a formall man": [0, 65535], "to make of him a formall man againe": [0, 65535], "make of him a formall man againe it": [0, 65535], "of him a formall man againe it is": [0, 65535], "him a formall man againe it is a": [0, 65535], "a formall man againe it is a branch": [0, 65535], "formall man againe it is a branch and": [0, 65535], "man againe it is a branch and parcell": [0, 65535], "againe it is a branch and parcell of": [0, 65535], "it is a branch and parcell of mine": [0, 65535], "is a branch and parcell of mine oath": [0, 65535], "a branch and parcell of mine oath a": [0, 65535], "branch and parcell of mine oath a charitable": [0, 65535], "and parcell of mine oath a charitable dutie": [0, 65535], "parcell of mine oath a charitable dutie of": [0, 65535], "of mine oath a charitable dutie of my": [0, 65535], "mine oath a charitable dutie of my order": [0, 65535], "oath a charitable dutie of my order therefore": [0, 65535], "a charitable dutie of my order therefore depart": [0, 65535], "charitable dutie of my order therefore depart and": [0, 65535], "dutie of my order therefore depart and leaue": [0, 65535], "of my order therefore depart and leaue him": [0, 65535], "my order therefore depart and leaue him heere": [0, 65535], "order therefore depart and leaue him heere with": [0, 65535], "therefore depart and leaue him heere with me": [0, 65535], "depart and leaue him heere with me adr": [0, 65535], "and leaue him heere with me adr i": [0, 65535], "leaue him heere with me adr i will": [0, 65535], "him heere with me adr i will not": [0, 65535], "heere with me adr i will not hence": [0, 65535], "with me adr i will not hence and": [0, 65535], "me adr i will not hence and leaue": [0, 65535], "adr i will not hence and leaue my": [0, 65535], "i will not hence and leaue my husband": [0, 65535], "will not hence and leaue my husband heere": [0, 65535], "not hence and leaue my husband heere and": [0, 65535], "hence and leaue my husband heere and ill": [0, 65535], "and leaue my husband heere and ill it": [0, 65535], "leaue my husband heere and ill it doth": [0, 65535], "my husband heere and ill it doth beseeme": [0, 65535], "husband heere and ill it doth beseeme your": [0, 65535], "heere and ill it doth beseeme your holinesse": [0, 65535], "and ill it doth beseeme your holinesse to": [0, 65535], "ill it doth beseeme your holinesse to separate": [0, 65535], "it doth beseeme your holinesse to separate the": [0, 65535], "doth beseeme your holinesse to separate the husband": [0, 65535], "beseeme your holinesse to separate the husband and": [0, 65535], "your holinesse to separate the husband and the": [0, 65535], "holinesse to separate the husband and the wife": [0, 65535], "to separate the husband and the wife ab": [0, 65535], "separate the husband and the wife ab be": [0, 65535], "the husband and the wife ab be quiet": [0, 65535], "husband and the wife ab be quiet and": [0, 65535], "and the wife ab be quiet and depart": [0, 65535], "the wife ab be quiet and depart thou": [0, 65535], "wife ab be quiet and depart thou shalt": [0, 65535], "ab be quiet and depart thou shalt not": [0, 65535], "be quiet and depart thou shalt not haue": [0, 65535], "quiet and depart thou shalt not haue him": [0, 65535], "and depart thou shalt not haue him luc": [0, 65535], "depart thou shalt not haue him luc complaine": [0, 65535], "thou shalt not haue him luc complaine vnto": [0, 65535], "shalt not haue him luc complaine vnto the": [0, 65535], "not haue him luc complaine vnto the duke": [0, 65535], "haue him luc complaine vnto the duke of": [0, 65535], "him luc complaine vnto the duke of this": [0, 65535], "luc complaine vnto the duke of this indignity": [0, 65535], "complaine vnto the duke of this indignity adr": [0, 65535], "vnto the duke of this indignity adr come": [0, 65535], "the duke of this indignity adr come go": [0, 65535], "duke of this indignity adr come go i": [0, 65535], "of this indignity adr come go i will": [0, 65535], "this indignity adr come go i will fall": [0, 65535], "indignity adr come go i will fall prostrate": [0, 65535], "adr come go i will fall prostrate at": [0, 65535], "come go i will fall prostrate at his": [0, 65535], "go i will fall prostrate at his feete": [0, 65535], "i will fall prostrate at his feete and": [0, 65535], "will fall prostrate at his feete and neuer": [0, 65535], "fall prostrate at his feete and neuer rise": [0, 65535], "prostrate at his feete and neuer rise vntill": [0, 65535], "at his feete and neuer rise vntill my": [0, 65535], "his feete and neuer rise vntill my teares": [0, 65535], "feete and neuer rise vntill my teares and": [0, 65535], "and neuer rise vntill my teares and prayers": [0, 65535], "neuer rise vntill my teares and prayers haue": [0, 65535], "rise vntill my teares and prayers haue won": [0, 65535], "vntill my teares and prayers haue won his": [0, 65535], "my teares and prayers haue won his grace": [0, 65535], "teares and prayers haue won his grace to": [0, 65535], "and prayers haue won his grace to come": [0, 65535], "prayers haue won his grace to come in": [0, 65535], "haue won his grace to come in person": [0, 65535], "won his grace to come in person hither": [0, 65535], "his grace to come in person hither and": [0, 65535], "grace to come in person hither and take": [0, 65535], "to come in person hither and take perforce": [0, 65535], "come in person hither and take perforce my": [0, 65535], "in person hither and take perforce my husband": [0, 65535], "person hither and take perforce my husband from": [0, 65535], "hither and take perforce my husband from the": [0, 65535], "and take perforce my husband from the abbesse": [0, 65535], "take perforce my husband from the abbesse mar": [0, 65535], "perforce my husband from the abbesse mar by": [0, 65535], "my husband from the abbesse mar by this": [0, 65535], "husband from the abbesse mar by this i": [0, 65535], "from the abbesse mar by this i thinke": [0, 65535], "the abbesse mar by this i thinke the": [0, 65535], "abbesse mar by this i thinke the diall": [0, 65535], "mar by this i thinke the diall points": [0, 65535], "by this i thinke the diall points at": [0, 65535], "this i thinke the diall points at fiue": [0, 65535], "i thinke the diall points at fiue anon": [0, 65535], "thinke the diall points at fiue anon i'me": [0, 65535], "the diall points at fiue anon i'me sure": [0, 65535], "diall points at fiue anon i'me sure the": [0, 65535], "points at fiue anon i'me sure the duke": [0, 65535], "at fiue anon i'me sure the duke himselfe": [0, 65535], "fiue anon i'me sure the duke himselfe in": [0, 65535], "anon i'me sure the duke himselfe in person": [0, 65535], "i'me sure the duke himselfe in person comes": [0, 65535], "sure the duke himselfe in person comes this": [0, 65535], "the duke himselfe in person comes this way": [0, 65535], "duke himselfe in person comes this way to": [0, 65535], "himselfe in person comes this way to the": [0, 65535], "in person comes this way to the melancholly": [0, 65535], "person comes this way to the melancholly vale": [0, 65535], "comes this way to the melancholly vale the": [0, 65535], "this way to the melancholly vale the place": [0, 65535], "way to the melancholly vale the place of": [0, 65535], "to the melancholly vale the place of depth": [0, 65535], "the melancholly vale the place of depth and": [0, 65535], "melancholly vale the place of depth and sorrie": [0, 65535], "vale the place of depth and sorrie execution": [0, 65535], "the place of depth and sorrie execution behinde": [0, 65535], "place of depth and sorrie execution behinde the": [0, 65535], "of depth and sorrie execution behinde the ditches": [0, 65535], "depth and sorrie execution behinde the ditches of": [0, 65535], "and sorrie execution behinde the ditches of the": [0, 65535], "sorrie execution behinde the ditches of the abbey": [0, 65535], "execution behinde the ditches of the abbey heere": [0, 65535], "behinde the ditches of the abbey heere gold": [0, 65535], "the ditches of the abbey heere gold vpon": [0, 65535], "ditches of the abbey heere gold vpon what": [0, 65535], "of the abbey heere gold vpon what cause": [0, 65535], "the abbey heere gold vpon what cause mar": [0, 65535], "abbey heere gold vpon what cause mar to": [0, 65535], "heere gold vpon what cause mar to see": [0, 65535], "gold vpon what cause mar to see a": [0, 65535], "vpon what cause mar to see a reuerent": [0, 65535], "what cause mar to see a reuerent siracusian": [0, 65535], "cause mar to see a reuerent siracusian merchant": [0, 65535], "mar to see a reuerent siracusian merchant who": [0, 65535], "to see a reuerent siracusian merchant who put": [0, 65535], "see a reuerent siracusian merchant who put vnluckily": [0, 65535], "a reuerent siracusian merchant who put vnluckily into": [0, 65535], "reuerent siracusian merchant who put vnluckily into this": [0, 65535], "siracusian merchant who put vnluckily into this bay": [0, 65535], "merchant who put vnluckily into this bay against": [0, 65535], "who put vnluckily into this bay against the": [0, 65535], "put vnluckily into this bay against the lawes": [0, 65535], "vnluckily into this bay against the lawes and": [0, 65535], "into this bay against the lawes and statutes": [0, 65535], "this bay against the lawes and statutes of": [0, 65535], "bay against the lawes and statutes of this": [0, 65535], "against the lawes and statutes of this towne": [0, 65535], "the lawes and statutes of this towne beheaded": [0, 65535], "lawes and statutes of this towne beheaded publikely": [0, 65535], "and statutes of this towne beheaded publikely for": [0, 65535], "statutes of this towne beheaded publikely for his": [0, 65535], "of this towne beheaded publikely for his offence": [0, 65535], "this towne beheaded publikely for his offence gold": [0, 65535], "towne beheaded publikely for his offence gold see": [0, 65535], "beheaded publikely for his offence gold see where": [0, 65535], "publikely for his offence gold see where they": [0, 65535], "for his offence gold see where they come": [0, 65535], "his offence gold see where they come we": [0, 65535], "offence gold see where they come we wil": [0, 65535], "gold see where they come we wil behold": [0, 65535], "see where they come we wil behold his": [0, 65535], "where they come we wil behold his death": [0, 65535], "they come we wil behold his death luc": [0, 65535], "come we wil behold his death luc kneele": [0, 65535], "we wil behold his death luc kneele to": [0, 65535], "wil behold his death luc kneele to the": [0, 65535], "behold his death luc kneele to the duke": [0, 65535], "his death luc kneele to the duke before": [0, 65535], "death luc kneele to the duke before he": [0, 65535], "luc kneele to the duke before he passe": [0, 65535], "kneele to the duke before he passe the": [0, 65535], "to the duke before he passe the abbey": [0, 65535], "the duke before he passe the abbey enter": [0, 65535], "duke before he passe the abbey enter the": [0, 65535], "before he passe the abbey enter the duke": [0, 65535], "he passe the abbey enter the duke of": [0, 65535], "passe the abbey enter the duke of ephesus": [0, 65535], "the abbey enter the duke of ephesus and": [0, 65535], "abbey enter the duke of ephesus and the": [0, 65535], "enter the duke of ephesus and the merchant": [0, 65535], "the duke of ephesus and the merchant of": [0, 65535], "duke of ephesus and the merchant of siracuse": [0, 65535], "of ephesus and the merchant of siracuse bare": [0, 65535], "ephesus and the merchant of siracuse bare head": [0, 65535], "and the merchant of siracuse bare head with": [0, 65535], "the merchant of siracuse bare head with the": [0, 65535], "merchant of siracuse bare head with the headsman": [0, 65535], "of siracuse bare head with the headsman other": [0, 65535], "siracuse bare head with the headsman other officers": [0, 65535], "bare head with the headsman other officers duke": [0, 65535], "head with the headsman other officers duke yet": [0, 65535], "with the headsman other officers duke yet once": [0, 65535], "the headsman other officers duke yet once againe": [0, 65535], "headsman other officers duke yet once againe proclaime": [0, 65535], "other officers duke yet once againe proclaime it": [0, 65535], "officers duke yet once againe proclaime it publikely": [0, 65535], "duke yet once againe proclaime it publikely if": [0, 65535], "yet once againe proclaime it publikely if any": [0, 65535], "once againe proclaime it publikely if any friend": [0, 65535], "againe proclaime it publikely if any friend will": [0, 65535], "proclaime it publikely if any friend will pay": [0, 65535], "it publikely if any friend will pay the": [0, 65535], "publikely if any friend will pay the summe": [0, 65535], "if any friend will pay the summe for": [0, 65535], "any friend will pay the summe for him": [0, 65535], "friend will pay the summe for him he": [0, 65535], "will pay the summe for him he shall": [0, 65535], "pay the summe for him he shall not": [0, 65535], "the summe for him he shall not die": [0, 65535], "summe for him he shall not die so": [0, 65535], "for him he shall not die so much": [0, 65535], "him he shall not die so much we": [0, 65535], "he shall not die so much we tender": [0, 65535], "shall not die so much we tender him": [0, 65535], "not die so much we tender him adr": [0, 65535], "die so much we tender him adr iustice": [0, 65535], "so much we tender him adr iustice most": [0, 65535], "much we tender him adr iustice most sacred": [0, 65535], "we tender him adr iustice most sacred duke": [0, 65535], "tender him adr iustice most sacred duke against": [0, 65535], "him adr iustice most sacred duke against the": [0, 65535], "adr iustice most sacred duke against the abbesse": [0, 65535], "iustice most sacred duke against the abbesse duke": [0, 65535], "most sacred duke against the abbesse duke she": [0, 65535], "sacred duke against the abbesse duke she is": [0, 65535], "duke against the abbesse duke she is a": [0, 65535], "against the abbesse duke she is a vertuous": [0, 65535], "the abbesse duke she is a vertuous and": [0, 65535], "abbesse duke she is a vertuous and a": [0, 65535], "duke she is a vertuous and a reuerend": [0, 65535], "she is a vertuous and a reuerend lady": [0, 65535], "is a vertuous and a reuerend lady it": [0, 65535], "a vertuous and a reuerend lady it cannot": [0, 65535], "vertuous and a reuerend lady it cannot be": [0, 65535], "and a reuerend lady it cannot be that": [0, 65535], "a reuerend lady it cannot be that she": [0, 65535], "reuerend lady it cannot be that she hath": [0, 65535], "lady it cannot be that she hath done": [0, 65535], "it cannot be that she hath done thee": [0, 65535], "cannot be that she hath done thee wrong": [0, 65535], "be that she hath done thee wrong adr": [0, 65535], "that she hath done thee wrong adr may": [0, 65535], "she hath done thee wrong adr may it": [0, 65535], "hath done thee wrong adr may it please": [0, 65535], "done thee wrong adr may it please your": [0, 65535], "thee wrong adr may it please your grace": [0, 65535], "wrong adr may it please your grace antipholus": [0, 65535], "adr may it please your grace antipholus my": [0, 65535], "may it please your grace antipholus my husba": [0, 65535], "it please your grace antipholus my husba n": [0, 65535], "please your grace antipholus my husba n d": [0, 65535], "your grace antipholus my husba n d who": [0, 65535], "grace antipholus my husba n d who i": [0, 65535], "antipholus my husba n d who i made": [0, 65535], "my husba n d who i made lord": [0, 65535], "husba n d who i made lord of": [0, 65535], "n d who i made lord of me": [0, 65535], "d who i made lord of me and": [0, 65535], "who i made lord of me and all": [0, 65535], "i made lord of me and all i": [0, 65535], "made lord of me and all i had": [0, 65535], "lord of me and all i had at": [0, 65535], "of me and all i had at your": [0, 65535], "me and all i had at your important": [0, 65535], "and all i had at your important letters": [0, 65535], "all i had at your important letters this": [0, 65535], "i had at your important letters this ill": [0, 65535], "had at your important letters this ill day": [0, 65535], "at your important letters this ill day a": [0, 65535], "your important letters this ill day a most": [0, 65535], "important letters this ill day a most outragious": [0, 65535], "letters this ill day a most outragious fit": [0, 65535], "this ill day a most outragious fit of": [0, 65535], "ill day a most outragious fit of madnesse": [0, 65535], "day a most outragious fit of madnesse tooke": [0, 65535], "a most outragious fit of madnesse tooke him": [0, 65535], "most outragious fit of madnesse tooke him that": [0, 65535], "outragious fit of madnesse tooke him that desp'rately": [0, 65535], "fit of madnesse tooke him that desp'rately he": [0, 65535], "of madnesse tooke him that desp'rately he hurried": [0, 65535], "madnesse tooke him that desp'rately he hurried through": [0, 65535], "tooke him that desp'rately he hurried through the": [0, 65535], "him that desp'rately he hurried through the streete": [0, 65535], "that desp'rately he hurried through the streete with": [0, 65535], "desp'rately he hurried through the streete with him": [0, 65535], "he hurried through the streete with him his": [0, 65535], "hurried through the streete with him his bondman": [0, 65535], "through the streete with him his bondman all": [0, 65535], "the streete with him his bondman all as": [0, 65535], "streete with him his bondman all as mad": [0, 65535], "with him his bondman all as mad as": [0, 65535], "him his bondman all as mad as he": [0, 65535], "his bondman all as mad as he doing": [0, 65535], "bondman all as mad as he doing displeasure": [0, 65535], "all as mad as he doing displeasure to": [0, 65535], "as mad as he doing displeasure to the": [0, 65535], "mad as he doing displeasure to the citizens": [0, 65535], "as he doing displeasure to the citizens by": [0, 65535], "he doing displeasure to the citizens by rushing": [0, 65535], "doing displeasure to the citizens by rushing in": [0, 65535], "displeasure to the citizens by rushing in their": [0, 65535], "to the citizens by rushing in their houses": [0, 65535], "the citizens by rushing in their houses bearing": [0, 65535], "citizens by rushing in their houses bearing thence": [0, 65535], "by rushing in their houses bearing thence rings": [0, 65535], "rushing in their houses bearing thence rings iewels": [0, 65535], "in their houses bearing thence rings iewels any": [0, 65535], "their houses bearing thence rings iewels any thing": [0, 65535], "houses bearing thence rings iewels any thing his": [0, 65535], "bearing thence rings iewels any thing his rage": [0, 65535], "thence rings iewels any thing his rage did": [0, 65535], "rings iewels any thing his rage did like": [0, 65535], "iewels any thing his rage did like once": [0, 65535], "any thing his rage did like once did": [0, 65535], "thing his rage did like once did i": [0, 65535], "his rage did like once did i get": [0, 65535], "rage did like once did i get him": [0, 65535], "did like once did i get him bound": [0, 65535], "like once did i get him bound and": [0, 65535], "once did i get him bound and sent": [0, 65535], "did i get him bound and sent him": [0, 65535], "i get him bound and sent him home": [0, 65535], "get him bound and sent him home whil'st": [0, 65535], "him bound and sent him home whil'st to": [0, 65535], "bound and sent him home whil'st to take": [0, 65535], "and sent him home whil'st to take order": [0, 65535], "sent him home whil'st to take order for": [0, 65535], "him home whil'st to take order for the": [0, 65535], "home whil'st to take order for the wrongs": [0, 65535], "whil'st to take order for the wrongs i": [0, 65535], "to take order for the wrongs i went": [0, 65535], "take order for the wrongs i went that": [0, 65535], "order for the wrongs i went that heere": [0, 65535], "for the wrongs i went that heere and": [0, 65535], "the wrongs i went that heere and there": [0, 65535], "wrongs i went that heere and there his": [0, 65535], "i went that heere and there his furie": [0, 65535], "went that heere and there his furie had": [0, 65535], "that heere and there his furie had committed": [0, 65535], "heere and there his furie had committed anon": [0, 65535], "and there his furie had committed anon i": [0, 65535], "there his furie had committed anon i wot": [0, 65535], "his furie had committed anon i wot not": [0, 65535], "furie had committed anon i wot not by": [0, 65535], "had committed anon i wot not by what": [0, 65535], "committed anon i wot not by what strong": [0, 65535], "anon i wot not by what strong escape": [0, 65535], "i wot not by what strong escape he": [0, 65535], "wot not by what strong escape he broke": [0, 65535], "not by what strong escape he broke from": [0, 65535], "by what strong escape he broke from those": [0, 65535], "what strong escape he broke from those that": [0, 65535], "strong escape he broke from those that had": [0, 65535], "escape he broke from those that had the": [0, 65535], "he broke from those that had the guard": [0, 65535], "broke from those that had the guard of": [0, 65535], "from those that had the guard of him": [0, 65535], "those that had the guard of him and": [0, 65535], "that had the guard of him and with": [0, 65535], "had the guard of him and with his": [0, 65535], "the guard of him and with his mad": [0, 65535], "guard of him and with his mad attendant": [0, 65535], "of him and with his mad attendant and": [0, 65535], "him and with his mad attendant and himselfe": [0, 65535], "and with his mad attendant and himselfe each": [0, 65535], "with his mad attendant and himselfe each one": [0, 65535], "his mad attendant and himselfe each one with": [0, 65535], "mad attendant and himselfe each one with irefull": [0, 65535], "attendant and himselfe each one with irefull passion": [0, 65535], "and himselfe each one with irefull passion with": [0, 65535], "himselfe each one with irefull passion with drawne": [0, 65535], "each one with irefull passion with drawne swords": [0, 65535], "one with irefull passion with drawne swords met": [0, 65535], "with irefull passion with drawne swords met vs": [0, 65535], "irefull passion with drawne swords met vs againe": [0, 65535], "passion with drawne swords met vs againe and": [0, 65535], "with drawne swords met vs againe and madly": [0, 65535], "drawne swords met vs againe and madly bent": [0, 65535], "swords met vs againe and madly bent on": [0, 65535], "met vs againe and madly bent on vs": [0, 65535], "vs againe and madly bent on vs chac'd": [0, 65535], "againe and madly bent on vs chac'd vs": [0, 65535], "and madly bent on vs chac'd vs away": [0, 65535], "madly bent on vs chac'd vs away till": [0, 65535], "bent on vs chac'd vs away till raising": [0, 65535], "on vs chac'd vs away till raising of": [0, 65535], "vs chac'd vs away till raising of more": [0, 65535], "chac'd vs away till raising of more aide": [0, 65535], "vs away till raising of more aide we": [0, 65535], "away till raising of more aide we came": [0, 65535], "till raising of more aide we came againe": [0, 65535], "raising of more aide we came againe to": [0, 65535], "of more aide we came againe to binde": [0, 65535], "more aide we came againe to binde them": [0, 65535], "aide we came againe to binde them then": [0, 65535], "we came againe to binde them then they": [0, 65535], "came againe to binde them then they fled": [0, 65535], "againe to binde them then they fled into": [0, 65535], "to binde them then they fled into this": [0, 65535], "binde them then they fled into this abbey": [0, 65535], "them then they fled into this abbey whether": [0, 65535], "then they fled into this abbey whether we": [0, 65535], "they fled into this abbey whether we pursu'd": [0, 65535], "fled into this abbey whether we pursu'd them": [0, 65535], "into this abbey whether we pursu'd them and": [0, 65535], "this abbey whether we pursu'd them and heere": [0, 65535], "abbey whether we pursu'd them and heere the": [0, 65535], "whether we pursu'd them and heere the abbesse": [0, 65535], "we pursu'd them and heere the abbesse shuts": [0, 65535], "pursu'd them and heere the abbesse shuts the": [0, 65535], "them and heere the abbesse shuts the gates": [0, 65535], "and heere the abbesse shuts the gates on": [0, 65535], "heere the abbesse shuts the gates on vs": [0, 65535], "the abbesse shuts the gates on vs and": [0, 65535], "abbesse shuts the gates on vs and will": [0, 65535], "shuts the gates on vs and will not": [0, 65535], "the gates on vs and will not suffer": [0, 65535], "gates on vs and will not suffer vs": [0, 65535], "on vs and will not suffer vs to": [0, 65535], "vs and will not suffer vs to fetch": [0, 65535], "and will not suffer vs to fetch him": [0, 65535], "will not suffer vs to fetch him out": [0, 65535], "not suffer vs to fetch him out nor": [0, 65535], "suffer vs to fetch him out nor send": [0, 65535], "vs to fetch him out nor send him": [0, 65535], "to fetch him out nor send him forth": [0, 65535], "fetch him out nor send him forth that": [0, 65535], "him out nor send him forth that we": [0, 65535], "out nor send him forth that we may": [0, 65535], "nor send him forth that we may beare": [0, 65535], "send him forth that we may beare him": [0, 65535], "him forth that we may beare him hence": [0, 65535], "forth that we may beare him hence therefore": [0, 65535], "that we may beare him hence therefore most": [0, 65535], "we may beare him hence therefore most gracious": [0, 65535], "may beare him hence therefore most gracious duke": [0, 65535], "beare him hence therefore most gracious duke with": [0, 65535], "him hence therefore most gracious duke with thy": [0, 65535], "hence therefore most gracious duke with thy command": [0, 65535], "therefore most gracious duke with thy command let": [0, 65535], "most gracious duke with thy command let him": [0, 65535], "gracious duke with thy command let him be": [0, 65535], "duke with thy command let him be brought": [0, 65535], "with thy command let him be brought forth": [0, 65535], "thy command let him be brought forth and": [0, 65535], "command let him be brought forth and borne": [0, 65535], "let him be brought forth and borne hence": [0, 65535], "him be brought forth and borne hence for": [0, 65535], "be brought forth and borne hence for helpe": [0, 65535], "brought forth and borne hence for helpe duke": [0, 65535], "forth and borne hence for helpe duke long": [0, 65535], "and borne hence for helpe duke long since": [0, 65535], "borne hence for helpe duke long since thy": [0, 65535], "hence for helpe duke long since thy husband": [0, 65535], "for helpe duke long since thy husband seru'd": [0, 65535], "helpe duke long since thy husband seru'd me": [0, 65535], "duke long since thy husband seru'd me in": [0, 65535], "long since thy husband seru'd me in my": [0, 65535], "since thy husband seru'd me in my wars": [0, 65535], "thy husband seru'd me in my wars and": [0, 65535], "husband seru'd me in my wars and i": [0, 65535], "seru'd me in my wars and i to": [0, 65535], "me in my wars and i to thee": [0, 65535], "in my wars and i to thee ingag'd": [0, 65535], "my wars and i to thee ingag'd a": [0, 65535], "wars and i to thee ingag'd a princes": [0, 65535], "and i to thee ingag'd a princes word": [0, 65535], "i to thee ingag'd a princes word when": [0, 65535], "to thee ingag'd a princes word when thou": [0, 65535], "thee ingag'd a princes word when thou didst": [0, 65535], "ingag'd a princes word when thou didst make": [0, 65535], "a princes word when thou didst make him": [0, 65535], "princes word when thou didst make him master": [0, 65535], "word when thou didst make him master of": [0, 65535], "when thou didst make him master of thy": [0, 65535], "thou didst make him master of thy bed": [0, 65535], "didst make him master of thy bed to": [0, 65535], "make him master of thy bed to do": [0, 65535], "him master of thy bed to do him": [0, 65535], "master of thy bed to do him all": [0, 65535], "of thy bed to do him all the": [0, 65535], "thy bed to do him all the grace": [0, 65535], "bed to do him all the grace and": [0, 65535], "to do him all the grace and good": [0, 65535], "do him all the grace and good i": [0, 65535], "him all the grace and good i could": [0, 65535], "all the grace and good i could go": [0, 65535], "the grace and good i could go some": [0, 65535], "grace and good i could go some of": [0, 65535], "and good i could go some of you": [0, 65535], "good i could go some of you knocke": [0, 65535], "i could go some of you knocke at": [0, 65535], "could go some of you knocke at the": [0, 65535], "go some of you knocke at the abbey": [0, 65535], "some of you knocke at the abbey gate": [0, 65535], "of you knocke at the abbey gate and": [0, 65535], "you knocke at the abbey gate and bid": [0, 65535], "knocke at the abbey gate and bid the": [0, 65535], "at the abbey gate and bid the lady": [0, 65535], "the abbey gate and bid the lady abbesse": [0, 65535], "abbey gate and bid the lady abbesse come": [0, 65535], "gate and bid the lady abbesse come to": [0, 65535], "and bid the lady abbesse come to me": [0, 65535], "bid the lady abbesse come to me i": [0, 65535], "the lady abbesse come to me i will": [0, 65535], "lady abbesse come to me i will determine": [0, 65535], "abbesse come to me i will determine this": [0, 65535], "come to me i will determine this before": [0, 65535], "to me i will determine this before i": [0, 65535], "me i will determine this before i stirre": [0, 65535], "i will determine this before i stirre enter": [0, 65535], "will determine this before i stirre enter a": [0, 65535], "determine this before i stirre enter a messenger": [0, 65535], "this before i stirre enter a messenger oh": [0, 65535], "before i stirre enter a messenger oh mistris": [0, 65535], "i stirre enter a messenger oh mistris mistris": [0, 65535], "stirre enter a messenger oh mistris mistris shift": [0, 65535], "enter a messenger oh mistris mistris shift and": [0, 65535], "a messenger oh mistris mistris shift and saue": [0, 65535], "messenger oh mistris mistris shift and saue your": [0, 65535], "oh mistris mistris shift and saue your selfe": [0, 65535], "mistris mistris shift and saue your selfe my": [0, 65535], "mistris shift and saue your selfe my master": [0, 65535], "shift and saue your selfe my master and": [0, 65535], "and saue your selfe my master and his": [0, 65535], "saue your selfe my master and his man": [0, 65535], "your selfe my master and his man are": [0, 65535], "selfe my master and his man are both": [0, 65535], "my master and his man are both broke": [0, 65535], "master and his man are both broke loose": [0, 65535], "and his man are both broke loose beaten": [0, 65535], "his man are both broke loose beaten the": [0, 65535], "man are both broke loose beaten the maids": [0, 65535], "are both broke loose beaten the maids a": [0, 65535], "both broke loose beaten the maids a row": [0, 65535], "broke loose beaten the maids a row and": [0, 65535], "loose beaten the maids a row and bound": [0, 65535], "beaten the maids a row and bound the": [0, 65535], "the maids a row and bound the doctor": [0, 65535], "maids a row and bound the doctor whose": [0, 65535], "a row and bound the doctor whose beard": [0, 65535], "row and bound the doctor whose beard they": [0, 65535], "and bound the doctor whose beard they haue": [0, 65535], "bound the doctor whose beard they haue sindg'd": [0, 65535], "the doctor whose beard they haue sindg'd off": [0, 65535], "doctor whose beard they haue sindg'd off with": [0, 65535], "whose beard they haue sindg'd off with brands": [0, 65535], "beard they haue sindg'd off with brands of": [0, 65535], "they haue sindg'd off with brands of fire": [0, 65535], "haue sindg'd off with brands of fire and": [0, 65535], "sindg'd off with brands of fire and euer": [0, 65535], "off with brands of fire and euer as": [0, 65535], "with brands of fire and euer as it": [0, 65535], "brands of fire and euer as it blaz'd": [0, 65535], "of fire and euer as it blaz'd they": [0, 65535], "fire and euer as it blaz'd they threw": [0, 65535], "and euer as it blaz'd they threw on": [0, 65535], "euer as it blaz'd they threw on him": [0, 65535], "as it blaz'd they threw on him great": [0, 65535], "it blaz'd they threw on him great pailes": [0, 65535], "blaz'd they threw on him great pailes of": [0, 65535], "they threw on him great pailes of puddled": [0, 65535], "threw on him great pailes of puddled myre": [0, 65535], "on him great pailes of puddled myre to": [0, 65535], "him great pailes of puddled myre to quench": [0, 65535], "great pailes of puddled myre to quench the": [0, 65535], "pailes of puddled myre to quench the haire": [0, 65535], "of puddled myre to quench the haire my": [0, 65535], "puddled myre to quench the haire my mr": [0, 65535], "myre to quench the haire my mr preaches": [0, 65535], "to quench the haire my mr preaches patience": [0, 65535], "quench the haire my mr preaches patience to": [0, 65535], "the haire my mr preaches patience to him": [0, 65535], "haire my mr preaches patience to him and": [0, 65535], "my mr preaches patience to him and the": [0, 65535], "mr preaches patience to him and the while": [0, 65535], "preaches patience to him and the while his": [0, 65535], "patience to him and the while his man": [0, 65535], "to him and the while his man with": [0, 65535], "him and the while his man with cizers": [0, 65535], "and the while his man with cizers nickes": [0, 65535], "the while his man with cizers nickes him": [0, 65535], "while his man with cizers nickes him like": [0, 65535], "his man with cizers nickes him like a": [0, 65535], "man with cizers nickes him like a foole": [0, 65535], "with cizers nickes him like a foole and": [0, 65535], "cizers nickes him like a foole and sure": [0, 65535], "nickes him like a foole and sure vnlesse": [0, 65535], "him like a foole and sure vnlesse you": [0, 65535], "like a foole and sure vnlesse you send": [0, 65535], "a foole and sure vnlesse you send some": [0, 65535], "foole and sure vnlesse you send some present": [0, 65535], "and sure vnlesse you send some present helpe": [0, 65535], "sure vnlesse you send some present helpe betweene": [0, 65535], "vnlesse you send some present helpe betweene them": [0, 65535], "you send some present helpe betweene them they": [0, 65535], "send some present helpe betweene them they will": [0, 65535], "some present helpe betweene them they will kill": [0, 65535], "present helpe betweene them they will kill the": [0, 65535], "helpe betweene them they will kill the coniurer": [0, 65535], "betweene them they will kill the coniurer adr": [0, 65535], "them they will kill the coniurer adr peace": [0, 65535], "they will kill the coniurer adr peace foole": [0, 65535], "will kill the coniurer adr peace foole thy": [0, 65535], "kill the coniurer adr peace foole thy master": [0, 65535], "the coniurer adr peace foole thy master and": [0, 65535], "coniurer adr peace foole thy master and his": [0, 65535], "adr peace foole thy master and his man": [0, 65535], "peace foole thy master and his man are": [0, 65535], "foole thy master and his man are here": [0, 65535], "thy master and his man are here and": [0, 65535], "master and his man are here and that": [0, 65535], "and his man are here and that is": [0, 65535], "his man are here and that is false": [0, 65535], "man are here and that is false thou": [0, 65535], "are here and that is false thou dost": [0, 65535], "here and that is false thou dost report": [0, 65535], "and that is false thou dost report to": [0, 65535], "that is false thou dost report to vs": [0, 65535], "is false thou dost report to vs mess": [0, 65535], "false thou dost report to vs mess mistris": [0, 65535], "thou dost report to vs mess mistris vpon": [0, 65535], "dost report to vs mess mistris vpon my": [0, 65535], "report to vs mess mistris vpon my life": [0, 65535], "to vs mess mistris vpon my life i": [0, 65535], "vs mess mistris vpon my life i tel": [0, 65535], "mess mistris vpon my life i tel you": [0, 65535], "mistris vpon my life i tel you true": [0, 65535], "vpon my life i tel you true i": [0, 65535], "my life i tel you true i haue": [0, 65535], "life i tel you true i haue not": [0, 65535], "i tel you true i haue not breath'd": [0, 65535], "tel you true i haue not breath'd almost": [0, 65535], "you true i haue not breath'd almost since": [0, 65535], "true i haue not breath'd almost since i": [0, 65535], "i haue not breath'd almost since i did": [0, 65535], "haue not breath'd almost since i did see": [0, 65535], "not breath'd almost since i did see it": [0, 65535], "breath'd almost since i did see it he": [0, 65535], "almost since i did see it he cries": [0, 65535], "since i did see it he cries for": [0, 65535], "i did see it he cries for you": [0, 65535], "did see it he cries for you and": [0, 65535], "see it he cries for you and vowes": [0, 65535], "it he cries for you and vowes if": [0, 65535], "he cries for you and vowes if he": [0, 65535], "cries for you and vowes if he can": [0, 65535], "for you and vowes if he can take": [0, 65535], "you and vowes if he can take you": [0, 65535], "and vowes if he can take you to": [0, 65535], "vowes if he can take you to scorch": [0, 65535], "if he can take you to scorch your": [0, 65535], "he can take you to scorch your face": [0, 65535], "can take you to scorch your face and": [0, 65535], "take you to scorch your face and to": [0, 65535], "you to scorch your face and to disfigure": [0, 65535], "to scorch your face and to disfigure you": [0, 65535], "scorch your face and to disfigure you cry": [0, 65535], "your face and to disfigure you cry within": [0, 65535], "face and to disfigure you cry within harke": [0, 65535], "and to disfigure you cry within harke harke": [0, 65535], "to disfigure you cry within harke harke i": [0, 65535], "disfigure you cry within harke harke i heare": [0, 65535], "you cry within harke harke i heare him": [0, 65535], "cry within harke harke i heare him mistris": [0, 65535], "within harke harke i heare him mistris flie": [0, 65535], "harke harke i heare him mistris flie be": [0, 65535], "harke i heare him mistris flie be gone": [0, 65535], "i heare him mistris flie be gone duke": [0, 65535], "heare him mistris flie be gone duke come": [0, 65535], "him mistris flie be gone duke come stand": [0, 65535], "mistris flie be gone duke come stand by": [0, 65535], "flie be gone duke come stand by me": [0, 65535], "be gone duke come stand by me feare": [0, 65535], "gone duke come stand by me feare nothing": [0, 65535], "duke come stand by me feare nothing guard": [0, 65535], "come stand by me feare nothing guard with": [0, 65535], "stand by me feare nothing guard with halberds": [0, 65535], "by me feare nothing guard with halberds adr": [0, 65535], "me feare nothing guard with halberds adr ay": [0, 65535], "feare nothing guard with halberds adr ay me": [0, 65535], "nothing guard with halberds adr ay me it": [0, 65535], "guard with halberds adr ay me it is": [0, 65535], "with halberds adr ay me it is my": [0, 65535], "halberds adr ay me it is my husband": [0, 65535], "adr ay me it is my husband witnesse": [0, 65535], "ay me it is my husband witnesse you": [0, 65535], "me it is my husband witnesse you that": [0, 65535], "it is my husband witnesse you that he": [0, 65535], "is my husband witnesse you that he is": [0, 65535], "my husband witnesse you that he is borne": [0, 65535], "husband witnesse you that he is borne about": [0, 65535], "witnesse you that he is borne about inuisible": [0, 65535], "you that he is borne about inuisible euen": [0, 65535], "that he is borne about inuisible euen now": [0, 65535], "he is borne about inuisible euen now we": [0, 65535], "is borne about inuisible euen now we hous'd": [0, 65535], "borne about inuisible euen now we hous'd him": [0, 65535], "about inuisible euen now we hous'd him in": [0, 65535], "inuisible euen now we hous'd him in the": [0, 65535], "euen now we hous'd him in the abbey": [0, 65535], "now we hous'd him in the abbey heere": [0, 65535], "we hous'd him in the abbey heere and": [0, 65535], "hous'd him in the abbey heere and now": [0, 65535], "him in the abbey heere and now he's": [0, 65535], "in the abbey heere and now he's there": [0, 65535], "the abbey heere and now he's there past": [0, 65535], "abbey heere and now he's there past thought": [0, 65535], "heere and now he's there past thought of": [0, 65535], "and now he's there past thought of humane": [0, 65535], "now he's there past thought of humane reason": [0, 65535], "he's there past thought of humane reason enter": [0, 65535], "there past thought of humane reason enter antipholus": [0, 65535], "past thought of humane reason enter antipholus and": [0, 65535], "thought of humane reason enter antipholus and e": [0, 65535], "of humane reason enter antipholus and e dromio": [0, 65535], "humane reason enter antipholus and e dromio of": [0, 65535], "reason enter antipholus and e dromio of ephesus": [0, 65535], "enter antipholus and e dromio of ephesus e": [0, 65535], "antipholus and e dromio of ephesus e ant": [0, 65535], "and e dromio of ephesus e ant iustice": [0, 65535], "e dromio of ephesus e ant iustice most": [0, 65535], "dromio of ephesus e ant iustice most gracious": [0, 65535], "of ephesus e ant iustice most gracious duke": [0, 65535], "ephesus e ant iustice most gracious duke oh": [0, 65535], "e ant iustice most gracious duke oh grant": [0, 65535], "ant iustice most gracious duke oh grant me": [0, 65535], "iustice most gracious duke oh grant me iustice": [0, 65535], "most gracious duke oh grant me iustice euen": [0, 65535], "gracious duke oh grant me iustice euen for": [0, 65535], "duke oh grant me iustice euen for the": [0, 65535], "oh grant me iustice euen for the seruice": [0, 65535], "grant me iustice euen for the seruice that": [0, 65535], "me iustice euen for the seruice that long": [0, 65535], "iustice euen for the seruice that long since": [0, 65535], "euen for the seruice that long since i": [0, 65535], "for the seruice that long since i did": [0, 65535], "the seruice that long since i did thee": [0, 65535], "seruice that long since i did thee when": [0, 65535], "that long since i did thee when i": [0, 65535], "long since i did thee when i bestrid": [0, 65535], "since i did thee when i bestrid thee": [0, 65535], "i did thee when i bestrid thee in": [0, 65535], "did thee when i bestrid thee in the": [0, 65535], "thee when i bestrid thee in the warres": [0, 65535], "when i bestrid thee in the warres and": [0, 65535], "i bestrid thee in the warres and tooke": [0, 65535], "bestrid thee in the warres and tooke deepe": [0, 65535], "thee in the warres and tooke deepe scarres": [0, 65535], "in the warres and tooke deepe scarres to": [0, 65535], "the warres and tooke deepe scarres to saue": [0, 65535], "warres and tooke deepe scarres to saue thy": [0, 65535], "and tooke deepe scarres to saue thy life": [0, 65535], "tooke deepe scarres to saue thy life euen": [0, 65535], "deepe scarres to saue thy life euen for": [0, 65535], "scarres to saue thy life euen for the": [0, 65535], "to saue thy life euen for the blood": [0, 65535], "saue thy life euen for the blood that": [0, 65535], "thy life euen for the blood that then": [0, 65535], "life euen for the blood that then i": [0, 65535], "euen for the blood that then i lost": [0, 65535], "for the blood that then i lost for": [0, 65535], "the blood that then i lost for thee": [0, 65535], "blood that then i lost for thee now": [0, 65535], "that then i lost for thee now grant": [0, 65535], "then i lost for thee now grant me": [0, 65535], "i lost for thee now grant me iustice": [0, 65535], "lost for thee now grant me iustice mar": [0, 65535], "for thee now grant me iustice mar fat": [0, 65535], "thee now grant me iustice mar fat vnlesse": [0, 65535], "now grant me iustice mar fat vnlesse the": [0, 65535], "grant me iustice mar fat vnlesse the feare": [0, 65535], "me iustice mar fat vnlesse the feare of": [0, 65535], "iustice mar fat vnlesse the feare of death": [0, 65535], "mar fat vnlesse the feare of death doth": [0, 65535], "fat vnlesse the feare of death doth make": [0, 65535], "vnlesse the feare of death doth make me": [0, 65535], "the feare of death doth make me dote": [0, 65535], "feare of death doth make me dote i": [0, 65535], "of death doth make me dote i see": [0, 65535], "death doth make me dote i see my": [0, 65535], "doth make me dote i see my sonne": [0, 65535], "make me dote i see my sonne antipholus": [0, 65535], "me dote i see my sonne antipholus and": [0, 65535], "dote i see my sonne antipholus and dromio": [0, 65535], "i see my sonne antipholus and dromio e": [0, 65535], "see my sonne antipholus and dromio e ant": [0, 65535], "my sonne antipholus and dromio e ant iustice": [0, 65535], "sonne antipholus and dromio e ant iustice sweet": [0, 65535], "antipholus and dromio e ant iustice sweet prince": [0, 65535], "and dromio e ant iustice sweet prince against": [0, 65535], "dromio e ant iustice sweet prince against that": [0, 65535], "e ant iustice sweet prince against that woman": [0, 65535], "ant iustice sweet prince against that woman there": [0, 65535], "iustice sweet prince against that woman there she": [0, 65535], "sweet prince against that woman there she whom": [0, 65535], "prince against that woman there she whom thou": [0, 65535], "against that woman there she whom thou gau'st": [0, 65535], "that woman there she whom thou gau'st to": [0, 65535], "woman there she whom thou gau'st to me": [0, 65535], "there she whom thou gau'st to me to": [0, 65535], "she whom thou gau'st to me to be": [0, 65535], "whom thou gau'st to me to be my": [0, 65535], "thou gau'st to me to be my wife": [0, 65535], "gau'st to me to be my wife that": [0, 65535], "to me to be my wife that hath": [0, 65535], "me to be my wife that hath abused": [0, 65535], "to be my wife that hath abused and": [0, 65535], "be my wife that hath abused and dishonored": [0, 65535], "my wife that hath abused and dishonored me": [0, 65535], "wife that hath abused and dishonored me euen": [0, 65535], "that hath abused and dishonored me euen in": [0, 65535], "hath abused and dishonored me euen in the": [0, 65535], "abused and dishonored me euen in the strength": [0, 65535], "and dishonored me euen in the strength and": [0, 65535], "dishonored me euen in the strength and height": [0, 65535], "me euen in the strength and height of": [0, 65535], "euen in the strength and height of iniurie": [0, 65535], "in the strength and height of iniurie beyond": [0, 65535], "the strength and height of iniurie beyond imagination": [0, 65535], "strength and height of iniurie beyond imagination is": [0, 65535], "and height of iniurie beyond imagination is the": [0, 65535], "height of iniurie beyond imagination is the wrong": [0, 65535], "of iniurie beyond imagination is the wrong that": [0, 65535], "iniurie beyond imagination is the wrong that she": [0, 65535], "beyond imagination is the wrong that she this": [0, 65535], "imagination is the wrong that she this day": [0, 65535], "is the wrong that she this day hath": [0, 65535], "the wrong that she this day hath shamelesse": [0, 65535], "wrong that she this day hath shamelesse throwne": [0, 65535], "that she this day hath shamelesse throwne on": [0, 65535], "she this day hath shamelesse throwne on me": [0, 65535], "this day hath shamelesse throwne on me duke": [0, 65535], "day hath shamelesse throwne on me duke discouer": [0, 65535], "hath shamelesse throwne on me duke discouer how": [0, 65535], "shamelesse throwne on me duke discouer how and": [0, 65535], "throwne on me duke discouer how and thou": [0, 65535], "on me duke discouer how and thou shalt": [0, 65535], "me duke discouer how and thou shalt finde": [0, 65535], "duke discouer how and thou shalt finde me": [0, 65535], "discouer how and thou shalt finde me iust": [0, 65535], "how and thou shalt finde me iust e": [0, 65535], "and thou shalt finde me iust e ant": [0, 65535], "thou shalt finde me iust e ant this": [0, 65535], "shalt finde me iust e ant this day": [0, 65535], "finde me iust e ant this day great": [0, 65535], "me iust e ant this day great duke": [0, 65535], "iust e ant this day great duke she": [0, 65535], "e ant this day great duke she shut": [0, 65535], "ant this day great duke she shut the": [0, 65535], "this day great duke she shut the doores": [0, 65535], "day great duke she shut the doores vpon": [0, 65535], "great duke she shut the doores vpon me": [0, 65535], "duke she shut the doores vpon me while": [0, 65535], "she shut the doores vpon me while she": [0, 65535], "shut the doores vpon me while she with": [0, 65535], "the doores vpon me while she with harlots": [0, 65535], "doores vpon me while she with harlots feasted": [0, 65535], "vpon me while she with harlots feasted in": [0, 65535], "me while she with harlots feasted in my": [0, 65535], "while she with harlots feasted in my house": [0, 65535], "she with harlots feasted in my house duke": [0, 65535], "with harlots feasted in my house duke a": [0, 65535], "harlots feasted in my house duke a greeuous": [0, 65535], "feasted in my house duke a greeuous fault": [0, 65535], "in my house duke a greeuous fault say": [0, 65535], "my house duke a greeuous fault say woman": [0, 65535], "house duke a greeuous fault say woman didst": [0, 65535], "duke a greeuous fault say woman didst thou": [0, 65535], "a greeuous fault say woman didst thou so": [0, 65535], "greeuous fault say woman didst thou so adr": [0, 65535], "fault say woman didst thou so adr no": [0, 65535], "say woman didst thou so adr no my": [0, 65535], "woman didst thou so adr no my good": [0, 65535], "didst thou so adr no my good lord": [0, 65535], "thou so adr no my good lord my": [0, 65535], "so adr no my good lord my selfe": [0, 65535], "adr no my good lord my selfe he": [0, 65535], "no my good lord my selfe he and": [0, 65535], "my good lord my selfe he and my": [0, 65535], "good lord my selfe he and my sister": [0, 65535], "lord my selfe he and my sister to": [0, 65535], "my selfe he and my sister to day": [0, 65535], "selfe he and my sister to day did": [0, 65535], "he and my sister to day did dine": [0, 65535], "and my sister to day did dine together": [0, 65535], "my sister to day did dine together so": [0, 65535], "sister to day did dine together so befall": [0, 65535], "to day did dine together so befall my": [0, 65535], "day did dine together so befall my soule": [0, 65535], "did dine together so befall my soule as": [0, 65535], "dine together so befall my soule as this": [0, 65535], "together so befall my soule as this is": [0, 65535], "so befall my soule as this is false": [0, 65535], "befall my soule as this is false he": [0, 65535], "my soule as this is false he burthens": [0, 65535], "soule as this is false he burthens me": [0, 65535], "as this is false he burthens me withall": [0, 65535], "this is false he burthens me withall luc": [0, 65535], "is false he burthens me withall luc nere": [0, 65535], "false he burthens me withall luc nere may": [0, 65535], "he burthens me withall luc nere may i": [0, 65535], "burthens me withall luc nere may i looke": [0, 65535], "me withall luc nere may i looke on": [0, 65535], "withall luc nere may i looke on day": [0, 65535], "luc nere may i looke on day nor": [0, 65535], "nere may i looke on day nor sleepe": [0, 65535], "may i looke on day nor sleepe on": [0, 65535], "i looke on day nor sleepe on night": [0, 65535], "looke on day nor sleepe on night but": [0, 65535], "on day nor sleepe on night but she": [0, 65535], "day nor sleepe on night but she tels": [0, 65535], "nor sleepe on night but she tels to": [0, 65535], "sleepe on night but she tels to your": [0, 65535], "on night but she tels to your highnesse": [0, 65535], "night but she tels to your highnesse simple": [0, 65535], "but she tels to your highnesse simple truth": [0, 65535], "she tels to your highnesse simple truth gold": [0, 65535], "tels to your highnesse simple truth gold o": [0, 65535], "to your highnesse simple truth gold o periur'd": [0, 65535], "your highnesse simple truth gold o periur'd woman": [0, 65535], "highnesse simple truth gold o periur'd woman they": [0, 65535], "simple truth gold o periur'd woman they are": [0, 65535], "truth gold o periur'd woman they are both": [0, 65535], "gold o periur'd woman they are both forsworne": [0, 65535], "o periur'd woman they are both forsworne in": [0, 65535], "periur'd woman they are both forsworne in this": [0, 65535], "woman they are both forsworne in this the": [0, 65535], "they are both forsworne in this the madman": [0, 65535], "are both forsworne in this the madman iustly": [0, 65535], "both forsworne in this the madman iustly chargeth": [0, 65535], "forsworne in this the madman iustly chargeth them": [0, 65535], "in this the madman iustly chargeth them e": [0, 65535], "this the madman iustly chargeth them e ant": [0, 65535], "the madman iustly chargeth them e ant my": [0, 65535], "madman iustly chargeth them e ant my liege": [0, 65535], "iustly chargeth them e ant my liege i": [0, 65535], "chargeth them e ant my liege i am": [0, 65535], "them e ant my liege i am aduised": [0, 65535], "e ant my liege i am aduised what": [0, 65535], "ant my liege i am aduised what i": [0, 65535], "my liege i am aduised what i say": [0, 65535], "liege i am aduised what i say neither": [0, 65535], "i am aduised what i say neither disturbed": [0, 65535], "am aduised what i say neither disturbed with": [0, 65535], "aduised what i say neither disturbed with the": [0, 65535], "what i say neither disturbed with the effect": [0, 65535], "i say neither disturbed with the effect of": [0, 65535], "say neither disturbed with the effect of wine": [0, 65535], "neither disturbed with the effect of wine nor": [0, 65535], "disturbed with the effect of wine nor headie": [0, 65535], "with the effect of wine nor headie rash": [0, 65535], "the effect of wine nor headie rash prouoak'd": [0, 65535], "effect of wine nor headie rash prouoak'd with": [0, 65535], "of wine nor headie rash prouoak'd with raging": [0, 65535], "wine nor headie rash prouoak'd with raging ire": [0, 65535], "nor headie rash prouoak'd with raging ire albeit": [0, 65535], "headie rash prouoak'd with raging ire albeit my": [0, 65535], "rash prouoak'd with raging ire albeit my wrongs": [0, 65535], "prouoak'd with raging ire albeit my wrongs might": [0, 65535], "with raging ire albeit my wrongs might make": [0, 65535], "raging ire albeit my wrongs might make one": [0, 65535], "ire albeit my wrongs might make one wiser": [0, 65535], "albeit my wrongs might make one wiser mad": [0, 65535], "my wrongs might make one wiser mad this": [0, 65535], "wrongs might make one wiser mad this woman": [0, 65535], "might make one wiser mad this woman lock'd": [0, 65535], "make one wiser mad this woman lock'd me": [0, 65535], "one wiser mad this woman lock'd me out": [0, 65535], "wiser mad this woman lock'd me out this": [0, 65535], "mad this woman lock'd me out this day": [0, 65535], "this woman lock'd me out this day from": [0, 65535], "woman lock'd me out this day from dinner": [0, 65535], "lock'd me out this day from dinner that": [0, 65535], "me out this day from dinner that goldsmith": [0, 65535], "out this day from dinner that goldsmith there": [0, 65535], "this day from dinner that goldsmith there were": [0, 65535], "day from dinner that goldsmith there were he": [0, 65535], "from dinner that goldsmith there were he not": [0, 65535], "dinner that goldsmith there were he not pack'd": [0, 65535], "that goldsmith there were he not pack'd with": [0, 65535], "goldsmith there were he not pack'd with her": [0, 65535], "there were he not pack'd with her could": [0, 65535], "were he not pack'd with her could witnesse": [0, 65535], "he not pack'd with her could witnesse it": [0, 65535], "not pack'd with her could witnesse it for": [0, 65535], "pack'd with her could witnesse it for he": [0, 65535], "with her could witnesse it for he was": [0, 65535], "her could witnesse it for he was with": [0, 65535], "could witnesse it for he was with me": [0, 65535], "witnesse it for he was with me then": [0, 65535], "it for he was with me then who": [0, 65535], "for he was with me then who parted": [0, 65535], "he was with me then who parted with": [0, 65535], "was with me then who parted with me": [0, 65535], "with me then who parted with me to": [0, 65535], "me then who parted with me to go": [0, 65535], "then who parted with me to go fetch": [0, 65535], "who parted with me to go fetch a": [0, 65535], "parted with me to go fetch a chaine": [0, 65535], "with me to go fetch a chaine promising": [0, 65535], "me to go fetch a chaine promising to": [0, 65535], "to go fetch a chaine promising to bring": [0, 65535], "go fetch a chaine promising to bring it": [0, 65535], "fetch a chaine promising to bring it to": [0, 65535], "a chaine promising to bring it to the": [0, 65535], "chaine promising to bring it to the porpentine": [0, 65535], "promising to bring it to the porpentine where": [0, 65535], "to bring it to the porpentine where balthasar": [0, 65535], "bring it to the porpentine where balthasar and": [0, 65535], "it to the porpentine where balthasar and i": [0, 65535], "to the porpentine where balthasar and i did": [0, 65535], "the porpentine where balthasar and i did dine": [0, 65535], "porpentine where balthasar and i did dine together": [0, 65535], "where balthasar and i did dine together our": [0, 65535], "balthasar and i did dine together our dinner": [0, 65535], "and i did dine together our dinner done": [0, 65535], "i did dine together our dinner done and": [0, 65535], "did dine together our dinner done and he": [0, 65535], "dine together our dinner done and he not": [0, 65535], "together our dinner done and he not comming": [0, 65535], "our dinner done and he not comming thither": [0, 65535], "dinner done and he not comming thither i": [0, 65535], "done and he not comming thither i went": [0, 65535], "and he not comming thither i went to": [0, 65535], "he not comming thither i went to seeke": [0, 65535], "not comming thither i went to seeke him": [0, 65535], "comming thither i went to seeke him in": [0, 65535], "thither i went to seeke him in the": [0, 65535], "i went to seeke him in the street": [0, 65535], "went to seeke him in the street i": [0, 65535], "to seeke him in the street i met": [0, 65535], "seeke him in the street i met him": [0, 65535], "him in the street i met him and": [0, 65535], "in the street i met him and in": [0, 65535], "the street i met him and in his": [0, 65535], "street i met him and in his companie": [0, 65535], "i met him and in his companie that": [0, 65535], "met him and in his companie that gentleman": [0, 65535], "him and in his companie that gentleman there": [0, 65535], "and in his companie that gentleman there did": [0, 65535], "in his companie that gentleman there did this": [0, 65535], "his companie that gentleman there did this periur'd": [0, 65535], "companie that gentleman there did this periur'd goldsmith": [0, 65535], "that gentleman there did this periur'd goldsmith sweare": [0, 65535], "gentleman there did this periur'd goldsmith sweare me": [0, 65535], "there did this periur'd goldsmith sweare me downe": [0, 65535], "did this periur'd goldsmith sweare me downe that": [0, 65535], "this periur'd goldsmith sweare me downe that i": [0, 65535], "periur'd goldsmith sweare me downe that i this": [0, 65535], "goldsmith sweare me downe that i this day": [0, 65535], "sweare me downe that i this day of": [0, 65535], "me downe that i this day of him": [0, 65535], "downe that i this day of him receiu'd": [0, 65535], "that i this day of him receiu'd the": [0, 65535], "i this day of him receiu'd the chaine": [0, 65535], "this day of him receiu'd the chaine which": [0, 65535], "day of him receiu'd the chaine which god": [0, 65535], "of him receiu'd the chaine which god he": [0, 65535], "him receiu'd the chaine which god he knowes": [0, 65535], "receiu'd the chaine which god he knowes i": [0, 65535], "the chaine which god he knowes i saw": [0, 65535], "chaine which god he knowes i saw not": [0, 65535], "which god he knowes i saw not for": [0, 65535], "god he knowes i saw not for the": [0, 65535], "he knowes i saw not for the which": [0, 65535], "knowes i saw not for the which he": [0, 65535], "i saw not for the which he did": [0, 65535], "saw not for the which he did arrest": [0, 65535], "not for the which he did arrest me": [0, 65535], "for the which he did arrest me with": [0, 65535], "the which he did arrest me with an": [0, 65535], "which he did arrest me with an officer": [0, 65535], "he did arrest me with an officer i": [0, 65535], "did arrest me with an officer i did": [0, 65535], "arrest me with an officer i did obey": [0, 65535], "me with an officer i did obey and": [0, 65535], "with an officer i did obey and sent": [0, 65535], "an officer i did obey and sent my": [0, 65535], "officer i did obey and sent my pesant": [0, 65535], "i did obey and sent my pesant home": [0, 65535], "did obey and sent my pesant home for": [0, 65535], "obey and sent my pesant home for certaine": [0, 65535], "and sent my pesant home for certaine duckets": [0, 65535], "sent my pesant home for certaine duckets he": [0, 65535], "my pesant home for certaine duckets he with": [0, 65535], "pesant home for certaine duckets he with none": [0, 65535], "home for certaine duckets he with none return'd": [0, 65535], "for certaine duckets he with none return'd then": [0, 65535], "certaine duckets he with none return'd then fairely": [0, 65535], "duckets he with none return'd then fairely i": [0, 65535], "he with none return'd then fairely i bespoke": [0, 65535], "with none return'd then fairely i bespoke the": [0, 65535], "none return'd then fairely i bespoke the officer": [0, 65535], "return'd then fairely i bespoke the officer to": [0, 65535], "then fairely i bespoke the officer to go": [0, 65535], "fairely i bespoke the officer to go in": [0, 65535], "i bespoke the officer to go in person": [0, 65535], "bespoke the officer to go in person with": [0, 65535], "the officer to go in person with me": [0, 65535], "officer to go in person with me to": [0, 65535], "to go in person with me to my": [0, 65535], "go in person with me to my house": [0, 65535], "in person with me to my house by'th'": [0, 65535], "person with me to my house by'th' way": [0, 65535], "with me to my house by'th' way we": [0, 65535], "me to my house by'th' way we met": [0, 65535], "to my house by'th' way we met my": [0, 65535], "my house by'th' way we met my wife": [0, 65535], "house by'th' way we met my wife her": [0, 65535], "by'th' way we met my wife her sister": [0, 65535], "way we met my wife her sister and": [0, 65535], "we met my wife her sister and a": [0, 65535], "met my wife her sister and a rabble": [0, 65535], "my wife her sister and a rabble more": [0, 65535], "wife her sister and a rabble more of": [0, 65535], "her sister and a rabble more of vilde": [0, 65535], "sister and a rabble more of vilde confederates": [0, 65535], "and a rabble more of vilde confederates along": [0, 65535], "a rabble more of vilde confederates along with": [0, 65535], "rabble more of vilde confederates along with them": [0, 65535], "more of vilde confederates along with them they": [0, 65535], "of vilde confederates along with them they brought": [0, 65535], "vilde confederates along with them they brought one": [0, 65535], "confederates along with them they brought one pinch": [0, 65535], "along with them they brought one pinch a": [0, 65535], "with them they brought one pinch a hungry": [0, 65535], "them they brought one pinch a hungry leane": [0, 65535], "they brought one pinch a hungry leane fac'd": [0, 65535], "brought one pinch a hungry leane fac'd villaine": [0, 65535], "one pinch a hungry leane fac'd villaine a": [0, 65535], "pinch a hungry leane fac'd villaine a meere": [0, 65535], "a hungry leane fac'd villaine a meere anatomie": [0, 65535], "hungry leane fac'd villaine a meere anatomie a": [0, 65535], "leane fac'd villaine a meere anatomie a mountebanke": [0, 65535], "fac'd villaine a meere anatomie a mountebanke a": [0, 65535], "villaine a meere anatomie a mountebanke a thred": [0, 65535], "a meere anatomie a mountebanke a thred bare": [0, 65535], "meere anatomie a mountebanke a thred bare iugler": [0, 65535], "anatomie a mountebanke a thred bare iugler and": [0, 65535], "a mountebanke a thred bare iugler and a": [0, 65535], "mountebanke a thred bare iugler and a fortune": [0, 65535], "a thred bare iugler and a fortune teller": [0, 65535], "thred bare iugler and a fortune teller a": [0, 65535], "bare iugler and a fortune teller a needy": [0, 65535], "iugler and a fortune teller a needy hollow": [0, 65535], "and a fortune teller a needy hollow ey'd": [0, 65535], "a fortune teller a needy hollow ey'd sharpe": [0, 65535], "fortune teller a needy hollow ey'd sharpe looking": [0, 65535], "teller a needy hollow ey'd sharpe looking wretch": [0, 65535], "a needy hollow ey'd sharpe looking wretch a": [0, 65535], "needy hollow ey'd sharpe looking wretch a liuing": [0, 65535], "hollow ey'd sharpe looking wretch a liuing dead": [0, 65535], "ey'd sharpe looking wretch a liuing dead man": [0, 65535], "sharpe looking wretch a liuing dead man this": [0, 65535], "looking wretch a liuing dead man this pernicious": [0, 65535], "wretch a liuing dead man this pernicious slaue": [0, 65535], "a liuing dead man this pernicious slaue forsooth": [0, 65535], "liuing dead man this pernicious slaue forsooth tooke": [0, 65535], "dead man this pernicious slaue forsooth tooke on": [0, 65535], "man this pernicious slaue forsooth tooke on him": [0, 65535], "this pernicious slaue forsooth tooke on him as": [0, 65535], "pernicious slaue forsooth tooke on him as a": [0, 65535], "slaue forsooth tooke on him as a coniurer": [0, 65535], "forsooth tooke on him as a coniurer and": [0, 65535], "tooke on him as a coniurer and gazing": [0, 65535], "on him as a coniurer and gazing in": [0, 65535], "him as a coniurer and gazing in mine": [0, 65535], "as a coniurer and gazing in mine eyes": [0, 65535], "a coniurer and gazing in mine eyes feeling": [0, 65535], "coniurer and gazing in mine eyes feeling my": [0, 65535], "and gazing in mine eyes feeling my pulse": [0, 65535], "gazing in mine eyes feeling my pulse and": [0, 65535], "in mine eyes feeling my pulse and with": [0, 65535], "mine eyes feeling my pulse and with no": [0, 65535], "eyes feeling my pulse and with no face": [0, 65535], "feeling my pulse and with no face as": [0, 65535], "my pulse and with no face as 'twere": [0, 65535], "pulse and with no face as 'twere out": [0, 65535], "and with no face as 'twere out facing": [0, 65535], "with no face as 'twere out facing me": [0, 65535], "no face as 'twere out facing me cries": [0, 65535], "face as 'twere out facing me cries out": [0, 65535], "as 'twere out facing me cries out i": [0, 65535], "'twere out facing me cries out i was": [0, 65535], "out facing me cries out i was possest": [0, 65535], "facing me cries out i was possest then": [0, 65535], "me cries out i was possest then altogether": [0, 65535], "cries out i was possest then altogether they": [0, 65535], "out i was possest then altogether they fell": [0, 65535], "i was possest then altogether they fell vpon": [0, 65535], "was possest then altogether they fell vpon me": [0, 65535], "possest then altogether they fell vpon me bound": [0, 65535], "then altogether they fell vpon me bound me": [0, 65535], "altogether they fell vpon me bound me bore": [0, 65535], "they fell vpon me bound me bore me": [0, 65535], "fell vpon me bound me bore me thence": [0, 65535], "vpon me bound me bore me thence and": [0, 65535], "me bound me bore me thence and in": [0, 65535], "bound me bore me thence and in a": [0, 65535], "me bore me thence and in a darke": [0, 65535], "bore me thence and in a darke and": [0, 65535], "me thence and in a darke and dankish": [0, 65535], "thence and in a darke and dankish vault": [0, 65535], "and in a darke and dankish vault at": [0, 65535], "in a darke and dankish vault at home": [0, 65535], "a darke and dankish vault at home there": [0, 65535], "darke and dankish vault at home there left": [0, 65535], "and dankish vault at home there left me": [0, 65535], "dankish vault at home there left me and": [0, 65535], "vault at home there left me and my": [0, 65535], "at home there left me and my man": [0, 65535], "home there left me and my man both": [0, 65535], "there left me and my man both bound": [0, 65535], "left me and my man both bound together": [0, 65535], "me and my man both bound together till": [0, 65535], "and my man both bound together till gnawing": [0, 65535], "my man both bound together till gnawing with": [0, 65535], "man both bound together till gnawing with my": [0, 65535], "both bound together till gnawing with my teeth": [0, 65535], "bound together till gnawing with my teeth my": [0, 65535], "together till gnawing with my teeth my bonds": [0, 65535], "till gnawing with my teeth my bonds in": [0, 65535], "gnawing with my teeth my bonds in sunder": [0, 65535], "with my teeth my bonds in sunder i": [0, 65535], "my teeth my bonds in sunder i gain'd": [0, 65535], "teeth my bonds in sunder i gain'd my": [0, 65535], "my bonds in sunder i gain'd my freedome": [0, 65535], "bonds in sunder i gain'd my freedome and": [0, 65535], "in sunder i gain'd my freedome and immediately": [0, 65535], "sunder i gain'd my freedome and immediately ran": [0, 65535], "i gain'd my freedome and immediately ran hether": [0, 65535], "gain'd my freedome and immediately ran hether to": [0, 65535], "my freedome and immediately ran hether to your": [0, 65535], "freedome and immediately ran hether to your grace": [0, 65535], "and immediately ran hether to your grace whom": [0, 65535], "immediately ran hether to your grace whom i": [0, 65535], "ran hether to your grace whom i beseech": [0, 65535], "hether to your grace whom i beseech to": [0, 65535], "to your grace whom i beseech to giue": [0, 65535], "your grace whom i beseech to giue me": [0, 65535], "grace whom i beseech to giue me ample": [0, 65535], "whom i beseech to giue me ample satisfaction": [0, 65535], "i beseech to giue me ample satisfaction for": [0, 65535], "beseech to giue me ample satisfaction for these": [0, 65535], "to giue me ample satisfaction for these deepe": [0, 65535], "giue me ample satisfaction for these deepe shames": [0, 65535], "me ample satisfaction for these deepe shames and": [0, 65535], "ample satisfaction for these deepe shames and great": [0, 65535], "satisfaction for these deepe shames and great indignities": [0, 65535], "for these deepe shames and great indignities gold": [0, 65535], "these deepe shames and great indignities gold my": [0, 65535], "deepe shames and great indignities gold my lord": [0, 65535], "shames and great indignities gold my lord in": [0, 65535], "and great indignities gold my lord in truth": [0, 65535], "great indignities gold my lord in truth thus": [0, 65535], "indignities gold my lord in truth thus far": [0, 65535], "gold my lord in truth thus far i": [0, 65535], "my lord in truth thus far i witnes": [0, 65535], "lord in truth thus far i witnes with": [0, 65535], "in truth thus far i witnes with him": [0, 65535], "truth thus far i witnes with him that": [0, 65535], "thus far i witnes with him that he": [0, 65535], "far i witnes with him that he din'd": [0, 65535], "i witnes with him that he din'd not": [0, 65535], "witnes with him that he din'd not at": [0, 65535], "with him that he din'd not at home": [0, 65535], "him that he din'd not at home but": [0, 65535], "that he din'd not at home but was": [0, 65535], "he din'd not at home but was lock'd": [0, 65535], "din'd not at home but was lock'd out": [0, 65535], "not at home but was lock'd out duke": [0, 65535], "at home but was lock'd out duke but": [0, 65535], "home but was lock'd out duke but had": [0, 65535], "but was lock'd out duke but had he": [0, 65535], "was lock'd out duke but had he such": [0, 65535], "lock'd out duke but had he such a": [0, 65535], "out duke but had he such a chaine": [0, 65535], "duke but had he such a chaine of": [0, 65535], "but had he such a chaine of thee": [0, 65535], "had he such a chaine of thee or": [0, 65535], "he such a chaine of thee or no": [0, 65535], "such a chaine of thee or no gold": [0, 65535], "a chaine of thee or no gold he": [0, 65535], "chaine of thee or no gold he had": [0, 65535], "of thee or no gold he had my": [0, 65535], "thee or no gold he had my lord": [0, 65535], "or no gold he had my lord and": [0, 65535], "no gold he had my lord and when": [0, 65535], "gold he had my lord and when he": [0, 65535], "he had my lord and when he ran": [0, 65535], "had my lord and when he ran in": [0, 65535], "my lord and when he ran in heere": [0, 65535], "lord and when he ran in heere these": [0, 65535], "and when he ran in heere these people": [0, 65535], "when he ran in heere these people saw": [0, 65535], "he ran in heere these people saw the": [0, 65535], "ran in heere these people saw the chaine": [0, 65535], "in heere these people saw the chaine about": [0, 65535], "heere these people saw the chaine about his": [0, 65535], "these people saw the chaine about his necke": [0, 65535], "people saw the chaine about his necke mar": [0, 65535], "saw the chaine about his necke mar besides": [0, 65535], "the chaine about his necke mar besides i": [0, 65535], "chaine about his necke mar besides i will": [0, 65535], "about his necke mar besides i will be": [0, 65535], "his necke mar besides i will be sworne": [0, 65535], "necke mar besides i will be sworne these": [0, 65535], "mar besides i will be sworne these eares": [0, 65535], "besides i will be sworne these eares of": [0, 65535], "i will be sworne these eares of mine": [0, 65535], "will be sworne these eares of mine heard": [0, 65535], "be sworne these eares of mine heard you": [0, 65535], "sworne these eares of mine heard you confesse": [0, 65535], "these eares of mine heard you confesse you": [0, 65535], "eares of mine heard you confesse you had": [0, 65535], "of mine heard you confesse you had the": [0, 65535], "mine heard you confesse you had the chaine": [0, 65535], "heard you confesse you had the chaine of": [0, 65535], "you confesse you had the chaine of him": [0, 65535], "confesse you had the chaine of him after": [0, 65535], "you had the chaine of him after you": [0, 65535], "had the chaine of him after you first": [0, 65535], "the chaine of him after you first forswore": [0, 65535], "chaine of him after you first forswore it": [0, 65535], "of him after you first forswore it on": [0, 65535], "him after you first forswore it on the": [0, 65535], "after you first forswore it on the mart": [0, 65535], "you first forswore it on the mart and": [0, 65535], "first forswore it on the mart and thereupon": [0, 65535], "forswore it on the mart and thereupon i": [0, 65535], "it on the mart and thereupon i drew": [0, 65535], "on the mart and thereupon i drew my": [0, 65535], "the mart and thereupon i drew my sword": [0, 65535], "mart and thereupon i drew my sword on": [0, 65535], "and thereupon i drew my sword on you": [0, 65535], "thereupon i drew my sword on you and": [0, 65535], "i drew my sword on you and then": [0, 65535], "drew my sword on you and then you": [0, 65535], "my sword on you and then you fled": [0, 65535], "sword on you and then you fled into": [0, 65535], "on you and then you fled into this": [0, 65535], "you and then you fled into this abbey": [0, 65535], "and then you fled into this abbey heere": [0, 65535], "then you fled into this abbey heere from": [0, 65535], "you fled into this abbey heere from whence": [0, 65535], "fled into this abbey heere from whence i": [0, 65535], "into this abbey heere from whence i thinke": [0, 65535], "this abbey heere from whence i thinke you": [0, 65535], "abbey heere from whence i thinke you are": [0, 65535], "heere from whence i thinke you are come": [0, 65535], "from whence i thinke you are come by": [0, 65535], "whence i thinke you are come by miracle": [0, 65535], "i thinke you are come by miracle e": [0, 65535], "thinke you are come by miracle e ant": [0, 65535], "you are come by miracle e ant i": [0, 65535], "are come by miracle e ant i neuer": [0, 65535], "come by miracle e ant i neuer came": [0, 65535], "by miracle e ant i neuer came within": [0, 65535], "miracle e ant i neuer came within these": [0, 65535], "e ant i neuer came within these abbey": [0, 65535], "ant i neuer came within these abbey wals": [0, 65535], "i neuer came within these abbey wals nor": [0, 65535], "neuer came within these abbey wals nor euer": [0, 65535], "came within these abbey wals nor euer didst": [0, 65535], "within these abbey wals nor euer didst thou": [0, 65535], "these abbey wals nor euer didst thou draw": [0, 65535], "abbey wals nor euer didst thou draw thy": [0, 65535], "wals nor euer didst thou draw thy sword": [0, 65535], "nor euer didst thou draw thy sword on": [0, 65535], "euer didst thou draw thy sword on me": [0, 65535], "didst thou draw thy sword on me i": [0, 65535], "thou draw thy sword on me i neuer": [0, 65535], "draw thy sword on me i neuer saw": [0, 65535], "thy sword on me i neuer saw the": [0, 65535], "sword on me i neuer saw the chaine": [0, 65535], "on me i neuer saw the chaine so": [0, 65535], "me i neuer saw the chaine so helpe": [0, 65535], "i neuer saw the chaine so helpe me": [0, 65535], "neuer saw the chaine so helpe me heauen": [0, 65535], "saw the chaine so helpe me heauen and": [0, 65535], "the chaine so helpe me heauen and this": [0, 65535], "chaine so helpe me heauen and this is": [0, 65535], "so helpe me heauen and this is false": [0, 65535], "helpe me heauen and this is false you": [0, 65535], "me heauen and this is false you burthen": [0, 65535], "heauen and this is false you burthen me": [0, 65535], "and this is false you burthen me withall": [0, 65535], "this is false you burthen me withall duke": [0, 65535], "is false you burthen me withall duke why": [0, 65535], "false you burthen me withall duke why what": [0, 65535], "you burthen me withall duke why what an": [0, 65535], "burthen me withall duke why what an intricate": [0, 65535], "me withall duke why what an intricate impeach": [0, 65535], "withall duke why what an intricate impeach is": [0, 65535], "duke why what an intricate impeach is this": [0, 65535], "why what an intricate impeach is this i": [0, 65535], "what an intricate impeach is this i thinke": [0, 65535], "an intricate impeach is this i thinke you": [0, 65535], "intricate impeach is this i thinke you all": [0, 65535], "impeach is this i thinke you all haue": [0, 65535], "is this i thinke you all haue drunke": [0, 65535], "this i thinke you all haue drunke of": [0, 65535], "i thinke you all haue drunke of circes": [0, 65535], "thinke you all haue drunke of circes cup": [0, 65535], "you all haue drunke of circes cup if": [0, 65535], "all haue drunke of circes cup if heere": [0, 65535], "haue drunke of circes cup if heere you": [0, 65535], "drunke of circes cup if heere you hous'd": [0, 65535], "of circes cup if heere you hous'd him": [0, 65535], "circes cup if heere you hous'd him heere": [0, 65535], "cup if heere you hous'd him heere he": [0, 65535], "if heere you hous'd him heere he would": [0, 65535], "heere you hous'd him heere he would haue": [0, 65535], "you hous'd him heere he would haue bin": [0, 65535], "hous'd him heere he would haue bin if": [0, 65535], "him heere he would haue bin if he": [0, 65535], "heere he would haue bin if he were": [0, 65535], "he would haue bin if he were mad": [0, 65535], "would haue bin if he were mad he": [0, 65535], "haue bin if he were mad he would": [0, 65535], "bin if he were mad he would not": [0, 65535], "if he were mad he would not pleade": [0, 65535], "he were mad he would not pleade so": [0, 65535], "were mad he would not pleade so coldly": [0, 65535], "mad he would not pleade so coldly you": [0, 65535], "he would not pleade so coldly you say": [0, 65535], "would not pleade so coldly you say he": [0, 65535], "not pleade so coldly you say he din'd": [0, 65535], "pleade so coldly you say he din'd at": [0, 65535], "so coldly you say he din'd at home": [0, 65535], "coldly you say he din'd at home the": [0, 65535], "you say he din'd at home the goldsmith": [0, 65535], "say he din'd at home the goldsmith heere": [0, 65535], "he din'd at home the goldsmith heere denies": [0, 65535], "din'd at home the goldsmith heere denies that": [0, 65535], "at home the goldsmith heere denies that saying": [0, 65535], "home the goldsmith heere denies that saying sirra": [0, 65535], "the goldsmith heere denies that saying sirra what": [0, 65535], "goldsmith heere denies that saying sirra what say": [0, 65535], "heere denies that saying sirra what say you": [0, 65535], "denies that saying sirra what say you e": [0, 65535], "that saying sirra what say you e dro": [0, 65535], "saying sirra what say you e dro sir": [0, 65535], "sirra what say you e dro sir he": [0, 65535], "what say you e dro sir he din'de": [0, 65535], "say you e dro sir he din'de with": [0, 65535], "you e dro sir he din'de with her": [0, 65535], "e dro sir he din'de with her there": [0, 65535], "dro sir he din'de with her there at": [0, 65535], "sir he din'de with her there at the": [0, 65535], "he din'de with her there at the porpentine": [0, 65535], "din'de with her there at the porpentine cur": [0, 65535], "with her there at the porpentine cur he": [0, 65535], "her there at the porpentine cur he did": [0, 65535], "there at the porpentine cur he did and": [0, 65535], "at the porpentine cur he did and from": [0, 65535], "the porpentine cur he did and from my": [0, 65535], "porpentine cur he did and from my finger": [0, 65535], "cur he did and from my finger snacht": [0, 65535], "he did and from my finger snacht that": [0, 65535], "did and from my finger snacht that ring": [0, 65535], "and from my finger snacht that ring e": [0, 65535], "from my finger snacht that ring e anti": [0, 65535], "my finger snacht that ring e anti tis": [0, 65535], "finger snacht that ring e anti tis true": [0, 65535], "snacht that ring e anti tis true my": [0, 65535], "that ring e anti tis true my liege": [0, 65535], "ring e anti tis true my liege this": [0, 65535], "e anti tis true my liege this ring": [0, 65535], "anti tis true my liege this ring i": [0, 65535], "tis true my liege this ring i had": [0, 65535], "true my liege this ring i had of": [0, 65535], "my liege this ring i had of her": [0, 65535], "liege this ring i had of her duke": [0, 65535], "this ring i had of her duke saw'st": [0, 65535], "ring i had of her duke saw'st thou": [0, 65535], "i had of her duke saw'st thou him": [0, 65535], "had of her duke saw'st thou him enter": [0, 65535], "of her duke saw'st thou him enter at": [0, 65535], "her duke saw'st thou him enter at the": [0, 65535], "duke saw'st thou him enter at the abbey": [0, 65535], "saw'st thou him enter at the abbey heere": [0, 65535], "thou him enter at the abbey heere curt": [0, 65535], "him enter at the abbey heere curt as": [0, 65535], "enter at the abbey heere curt as sure": [0, 65535], "at the abbey heere curt as sure my": [0, 65535], "the abbey heere curt as sure my liege": [0, 65535], "abbey heere curt as sure my liege as": [0, 65535], "heere curt as sure my liege as i": [0, 65535], "curt as sure my liege as i do": [0, 65535], "as sure my liege as i do see": [0, 65535], "sure my liege as i do see your": [0, 65535], "my liege as i do see your grace": [0, 65535], "liege as i do see your grace duke": [0, 65535], "as i do see your grace duke why": [0, 65535], "i do see your grace duke why this": [0, 65535], "do see your grace duke why this is": [0, 65535], "see your grace duke why this is straunge": [0, 65535], "your grace duke why this is straunge go": [0, 65535], "grace duke why this is straunge go call": [0, 65535], "duke why this is straunge go call the": [0, 65535], "why this is straunge go call the abbesse": [0, 65535], "this is straunge go call the abbesse hither": [0, 65535], "is straunge go call the abbesse hither i": [0, 65535], "straunge go call the abbesse hither i thinke": [0, 65535], "go call the abbesse hither i thinke you": [0, 65535], "call the abbesse hither i thinke you are": [0, 65535], "the abbesse hither i thinke you are all": [0, 65535], "abbesse hither i thinke you are all mated": [0, 65535], "hither i thinke you are all mated or": [0, 65535], "i thinke you are all mated or starke": [0, 65535], "thinke you are all mated or starke mad": [0, 65535], "you are all mated or starke mad exit": [0, 65535], "are all mated or starke mad exit one": [0, 65535], "all mated or starke mad exit one to": [0, 65535], "mated or starke mad exit one to the": [0, 65535], "or starke mad exit one to the abbesse": [0, 65535], "starke mad exit one to the abbesse fa": [0, 65535], "mad exit one to the abbesse fa most": [0, 65535], "exit one to the abbesse fa most mighty": [0, 65535], "one to the abbesse fa most mighty duke": [0, 65535], "to the abbesse fa most mighty duke vouchsafe": [0, 65535], "the abbesse fa most mighty duke vouchsafe me": [0, 65535], "abbesse fa most mighty duke vouchsafe me speak": [0, 65535], "fa most mighty duke vouchsafe me speak a": [0, 65535], "most mighty duke vouchsafe me speak a word": [0, 65535], "mighty duke vouchsafe me speak a word haply": [0, 65535], "duke vouchsafe me speak a word haply i": [0, 65535], "vouchsafe me speak a word haply i see": [0, 65535], "me speak a word haply i see a": [0, 65535], "speak a word haply i see a friend": [0, 65535], "a word haply i see a friend will": [0, 65535], "word haply i see a friend will saue": [0, 65535], "haply i see a friend will saue my": [0, 65535], "i see a friend will saue my life": [0, 65535], "see a friend will saue my life and": [0, 65535], "a friend will saue my life and pay": [0, 65535], "friend will saue my life and pay the": [0, 65535], "will saue my life and pay the sum": [0, 65535], "saue my life and pay the sum that": [0, 65535], "my life and pay the sum that may": [0, 65535], "life and pay the sum that may deliuer": [0, 65535], "and pay the sum that may deliuer me": [0, 65535], "pay the sum that may deliuer me duke": [0, 65535], "the sum that may deliuer me duke speake": [0, 65535], "sum that may deliuer me duke speake freely": [0, 65535], "that may deliuer me duke speake freely siracusian": [0, 65535], "may deliuer me duke speake freely siracusian what": [0, 65535], "deliuer me duke speake freely siracusian what thou": [0, 65535], "me duke speake freely siracusian what thou wilt": [0, 65535], "duke speake freely siracusian what thou wilt fath": [0, 65535], "speake freely siracusian what thou wilt fath is": [0, 65535], "freely siracusian what thou wilt fath is not": [0, 65535], "siracusian what thou wilt fath is not your": [0, 65535], "what thou wilt fath is not your name": [0, 65535], "thou wilt fath is not your name sir": [0, 65535], "wilt fath is not your name sir call'd": [0, 65535], "fath is not your name sir call'd antipholus": [0, 65535], "is not your name sir call'd antipholus and": [0, 65535], "not your name sir call'd antipholus and is": [0, 65535], "your name sir call'd antipholus and is not": [0, 65535], "name sir call'd antipholus and is not that": [0, 65535], "sir call'd antipholus and is not that your": [0, 65535], "call'd antipholus and is not that your bondman": [0, 65535], "antipholus and is not that your bondman dromio": [0, 65535], "and is not that your bondman dromio e": [0, 65535], "is not that your bondman dromio e dro": [0, 65535], "not that your bondman dromio e dro within": [0, 65535], "that your bondman dromio e dro within this": [0, 65535], "your bondman dromio e dro within this houre": [0, 65535], "bondman dromio e dro within this houre i": [0, 65535], "dromio e dro within this houre i was": [0, 65535], "e dro within this houre i was his": [0, 65535], "dro within this houre i was his bondman": [0, 65535], "within this houre i was his bondman sir": [0, 65535], "this houre i was his bondman sir but": [0, 65535], "houre i was his bondman sir but he": [0, 65535], "i was his bondman sir but he i": [0, 65535], "was his bondman sir but he i thanke": [0, 65535], "his bondman sir but he i thanke him": [0, 65535], "bondman sir but he i thanke him gnaw'd": [0, 65535], "sir but he i thanke him gnaw'd in": [0, 65535], "but he i thanke him gnaw'd in two": [0, 65535], "he i thanke him gnaw'd in two my": [0, 65535], "i thanke him gnaw'd in two my cords": [0, 65535], "thanke him gnaw'd in two my cords now": [0, 65535], "him gnaw'd in two my cords now am": [0, 65535], "gnaw'd in two my cords now am i": [0, 65535], "in two my cords now am i dromio": [0, 65535], "two my cords now am i dromio and": [0, 65535], "my cords now am i dromio and his": [0, 65535], "cords now am i dromio and his man": [0, 65535], "now am i dromio and his man vnbound": [0, 65535], "am i dromio and his man vnbound fath": [0, 65535], "i dromio and his man vnbound fath i": [0, 65535], "dromio and his man vnbound fath i am": [0, 65535], "and his man vnbound fath i am sure": [0, 65535], "his man vnbound fath i am sure you": [0, 65535], "man vnbound fath i am sure you both": [0, 65535], "vnbound fath i am sure you both of": [0, 65535], "fath i am sure you both of you": [0, 65535], "i am sure you both of you remember": [0, 65535], "am sure you both of you remember me": [0, 65535], "sure you both of you remember me dro": [0, 65535], "you both of you remember me dro our": [0, 65535], "both of you remember me dro our selues": [0, 65535], "of you remember me dro our selues we": [0, 65535], "you remember me dro our selues we do": [0, 65535], "remember me dro our selues we do remember": [0, 65535], "me dro our selues we do remember sir": [0, 65535], "dro our selues we do remember sir by": [0, 65535], "our selues we do remember sir by you": [0, 65535], "selues we do remember sir by you for": [0, 65535], "we do remember sir by you for lately": [0, 65535], "do remember sir by you for lately we": [0, 65535], "remember sir by you for lately we were": [0, 65535], "sir by you for lately we were bound": [0, 65535], "by you for lately we were bound as": [0, 65535], "you for lately we were bound as you": [0, 65535], "for lately we were bound as you are": [0, 65535], "lately we were bound as you are now": [0, 65535], "we were bound as you are now you": [0, 65535], "were bound as you are now you are": [0, 65535], "bound as you are now you are not": [0, 65535], "as you are now you are not pinches": [0, 65535], "you are now you are not pinches patient": [0, 65535], "are now you are not pinches patient are": [0, 65535], "now you are not pinches patient are you": [0, 65535], "you are not pinches patient are you sir": [0, 65535], "are not pinches patient are you sir father": [0, 65535], "not pinches patient are you sir father why": [0, 65535], "pinches patient are you sir father why looke": [0, 65535], "patient are you sir father why looke you": [0, 65535], "are you sir father why looke you strange": [0, 65535], "you sir father why looke you strange on": [0, 65535], "sir father why looke you strange on me": [0, 65535], "father why looke you strange on me you": [0, 65535], "why looke you strange on me you know": [0, 65535], "looke you strange on me you know me": [0, 65535], "you strange on me you know me well": [0, 65535], "strange on me you know me well e": [0, 65535], "on me you know me well e ant": [0, 65535], "me you know me well e ant i": [0, 65535], "you know me well e ant i neuer": [0, 65535], "know me well e ant i neuer saw": [0, 65535], "me well e ant i neuer saw you": [0, 65535], "well e ant i neuer saw you in": [0, 65535], "e ant i neuer saw you in my": [0, 65535], "ant i neuer saw you in my life": [0, 65535], "i neuer saw you in my life till": [0, 65535], "neuer saw you in my life till now": [0, 65535], "saw you in my life till now fa": [0, 65535], "you in my life till now fa oh": [0, 65535], "in my life till now fa oh griefe": [0, 65535], "my life till now fa oh griefe hath": [0, 65535], "life till now fa oh griefe hath chang'd": [0, 65535], "till now fa oh griefe hath chang'd me": [0, 65535], "now fa oh griefe hath chang'd me since": [0, 65535], "fa oh griefe hath chang'd me since you": [0, 65535], "oh griefe hath chang'd me since you saw": [0, 65535], "griefe hath chang'd me since you saw me": [0, 65535], "hath chang'd me since you saw me last": [0, 65535], "chang'd me since you saw me last and": [0, 65535], "me since you saw me last and carefull": [0, 65535], "since you saw me last and carefull houres": [0, 65535], "you saw me last and carefull houres with": [0, 65535], "saw me last and carefull houres with times": [0, 65535], "me last and carefull houres with times deformed": [0, 65535], "last and carefull houres with times deformed hand": [0, 65535], "and carefull houres with times deformed hand haue": [0, 65535], "carefull houres with times deformed hand haue written": [0, 65535], "houres with times deformed hand haue written strange": [0, 65535], "with times deformed hand haue written strange defeatures": [0, 65535], "times deformed hand haue written strange defeatures in": [0, 65535], "deformed hand haue written strange defeatures in my": [0, 65535], "hand haue written strange defeatures in my face": [0, 65535], "haue written strange defeatures in my face but": [0, 65535], "written strange defeatures in my face but tell": [0, 65535], "strange defeatures in my face but tell me": [0, 65535], "defeatures in my face but tell me yet": [0, 65535], "in my face but tell me yet dost": [0, 65535], "my face but tell me yet dost thou": [0, 65535], "face but tell me yet dost thou not": [0, 65535], "but tell me yet dost thou not know": [0, 65535], "tell me yet dost thou not know my": [0, 65535], "me yet dost thou not know my voice": [0, 65535], "yet dost thou not know my voice ant": [0, 65535], "dost thou not know my voice ant neither": [0, 65535], "thou not know my voice ant neither fat": [0, 65535], "not know my voice ant neither fat dromio": [0, 65535], "know my voice ant neither fat dromio nor": [0, 65535], "my voice ant neither fat dromio nor thou": [0, 65535], "voice ant neither fat dromio nor thou dro": [0, 65535], "ant neither fat dromio nor thou dro no": [0, 65535], "neither fat dromio nor thou dro no trust": [0, 65535], "fat dromio nor thou dro no trust me": [0, 65535], "dromio nor thou dro no trust me sir": [0, 65535], "nor thou dro no trust me sir nor": [0, 65535], "thou dro no trust me sir nor i": [0, 65535], "dro no trust me sir nor i fa": [0, 65535], "no trust me sir nor i fa i": [0, 65535], "trust me sir nor i fa i am": [0, 65535], "me sir nor i fa i am sure": [0, 65535], "sir nor i fa i am sure thou": [0, 65535], "nor i fa i am sure thou dost": [0, 65535], "i fa i am sure thou dost e": [0, 65535], "fa i am sure thou dost e dromio": [0, 65535], "i am sure thou dost e dromio i": [0, 65535], "am sure thou dost e dromio i sir": [0, 65535], "sure thou dost e dromio i sir but": [0, 65535], "thou dost e dromio i sir but i": [0, 65535], "dost e dromio i sir but i am": [0, 65535], "e dromio i sir but i am sure": [0, 65535], "dromio i sir but i am sure i": [0, 65535], "i sir but i am sure i do": [0, 65535], "sir but i am sure i do not": [0, 65535], "but i am sure i do not and": [0, 65535], "i am sure i do not and whatsoeuer": [0, 65535], "am sure i do not and whatsoeuer a": [0, 65535], "sure i do not and whatsoeuer a man": [0, 65535], "i do not and whatsoeuer a man denies": [0, 65535], "do not and whatsoeuer a man denies you": [0, 65535], "not and whatsoeuer a man denies you are": [0, 65535], "and whatsoeuer a man denies you are now": [0, 65535], "whatsoeuer a man denies you are now bound": [0, 65535], "a man denies you are now bound to": [0, 65535], "man denies you are now bound to beleeue": [0, 65535], "denies you are now bound to beleeue him": [0, 65535], "you are now bound to beleeue him fath": [0, 65535], "are now bound to beleeue him fath not": [0, 65535], "now bound to beleeue him fath not know": [0, 65535], "bound to beleeue him fath not know my": [0, 65535], "to beleeue him fath not know my voice": [0, 65535], "beleeue him fath not know my voice oh": [0, 65535], "him fath not know my voice oh times": [0, 65535], "fath not know my voice oh times extremity": [0, 65535], "not know my voice oh times extremity hast": [0, 65535], "know my voice oh times extremity hast thou": [0, 65535], "my voice oh times extremity hast thou so": [0, 65535], "voice oh times extremity hast thou so crack'd": [0, 65535], "oh times extremity hast thou so crack'd and": [0, 65535], "times extremity hast thou so crack'd and splitted": [0, 65535], "extremity hast thou so crack'd and splitted my": [0, 65535], "hast thou so crack'd and splitted my poore": [0, 65535], "thou so crack'd and splitted my poore tongue": [0, 65535], "so crack'd and splitted my poore tongue in": [0, 65535], "crack'd and splitted my poore tongue in seuen": [0, 65535], "and splitted my poore tongue in seuen short": [0, 65535], "splitted my poore tongue in seuen short yeares": [0, 65535], "my poore tongue in seuen short yeares that": [0, 65535], "poore tongue in seuen short yeares that heere": [0, 65535], "tongue in seuen short yeares that heere my": [0, 65535], "in seuen short yeares that heere my onely": [0, 65535], "seuen short yeares that heere my onely sonne": [0, 65535], "short yeares that heere my onely sonne knowes": [0, 65535], "yeares that heere my onely sonne knowes not": [0, 65535], "that heere my onely sonne knowes not my": [0, 65535], "heere my onely sonne knowes not my feeble": [0, 65535], "my onely sonne knowes not my feeble key": [0, 65535], "onely sonne knowes not my feeble key of": [0, 65535], "sonne knowes not my feeble key of vntun'd": [0, 65535], "knowes not my feeble key of vntun'd cares": [0, 65535], "not my feeble key of vntun'd cares though": [0, 65535], "my feeble key of vntun'd cares though now": [0, 65535], "feeble key of vntun'd cares though now this": [0, 65535], "key of vntun'd cares though now this grained": [0, 65535], "of vntun'd cares though now this grained face": [0, 65535], "vntun'd cares though now this grained face of": [0, 65535], "cares though now this grained face of mine": [0, 65535], "though now this grained face of mine be": [0, 65535], "now this grained face of mine be hid": [0, 65535], "this grained face of mine be hid in": [0, 65535], "grained face of mine be hid in sap": [0, 65535], "face of mine be hid in sap consuming": [0, 65535], "of mine be hid in sap consuming winters": [0, 65535], "mine be hid in sap consuming winters drizled": [0, 65535], "be hid in sap consuming winters drizled snow": [0, 65535], "hid in sap consuming winters drizled snow and": [0, 65535], "in sap consuming winters drizled snow and all": [0, 65535], "sap consuming winters drizled snow and all the": [0, 65535], "consuming winters drizled snow and all the conduits": [0, 65535], "winters drizled snow and all the conduits of": [0, 65535], "drizled snow and all the conduits of my": [0, 65535], "snow and all the conduits of my blood": [0, 65535], "and all the conduits of my blood froze": [0, 65535], "all the conduits of my blood froze vp": [0, 65535], "the conduits of my blood froze vp yet": [0, 65535], "conduits of my blood froze vp yet hath": [0, 65535], "of my blood froze vp yet hath my": [0, 65535], "my blood froze vp yet hath my night": [0, 65535], "blood froze vp yet hath my night of": [0, 65535], "froze vp yet hath my night of life": [0, 65535], "vp yet hath my night of life some": [0, 65535], "yet hath my night of life some memorie": [0, 65535], "hath my night of life some memorie my": [0, 65535], "my night of life some memorie my wasting": [0, 65535], "night of life some memorie my wasting lampes": [0, 65535], "of life some memorie my wasting lampes some": [0, 65535], "life some memorie my wasting lampes some fading": [0, 65535], "some memorie my wasting lampes some fading glimmer": [0, 65535], "memorie my wasting lampes some fading glimmer left": [0, 65535], "my wasting lampes some fading glimmer left my": [0, 65535], "wasting lampes some fading glimmer left my dull": [0, 65535], "lampes some fading glimmer left my dull deafe": [0, 65535], "some fading glimmer left my dull deafe eares": [0, 65535], "fading glimmer left my dull deafe eares a": [0, 65535], "glimmer left my dull deafe eares a little": [0, 65535], "left my dull deafe eares a little vse": [0, 65535], "my dull deafe eares a little vse to": [0, 65535], "dull deafe eares a little vse to heare": [0, 65535], "deafe eares a little vse to heare all": [0, 65535], "eares a little vse to heare all these": [0, 65535], "a little vse to heare all these old": [0, 65535], "little vse to heare all these old witnesses": [0, 65535], "vse to heare all these old witnesses i": [0, 65535], "to heare all these old witnesses i cannot": [0, 65535], "heare all these old witnesses i cannot erre": [0, 65535], "all these old witnesses i cannot erre tell": [0, 65535], "these old witnesses i cannot erre tell me": [0, 65535], "old witnesses i cannot erre tell me thou": [0, 65535], "witnesses i cannot erre tell me thou art": [0, 65535], "i cannot erre tell me thou art my": [0, 65535], "cannot erre tell me thou art my sonne": [0, 65535], "erre tell me thou art my sonne antipholus": [0, 65535], "tell me thou art my sonne antipholus ant": [0, 65535], "me thou art my sonne antipholus ant i": [0, 65535], "thou art my sonne antipholus ant i neuer": [0, 65535], "art my sonne antipholus ant i neuer saw": [0, 65535], "my sonne antipholus ant i neuer saw my": [0, 65535], "sonne antipholus ant i neuer saw my father": [0, 65535], "antipholus ant i neuer saw my father in": [0, 65535], "ant i neuer saw my father in my": [0, 65535], "i neuer saw my father in my life": [0, 65535], "neuer saw my father in my life fa": [0, 65535], "saw my father in my life fa but": [0, 65535], "my father in my life fa but seuen": [0, 65535], "father in my life fa but seuen yeares": [0, 65535], "in my life fa but seuen yeares since": [0, 65535], "my life fa but seuen yeares since in": [0, 65535], "life fa but seuen yeares since in siracusa": [0, 65535], "fa but seuen yeares since in siracusa boy": [0, 65535], "but seuen yeares since in siracusa boy thou": [0, 65535], "seuen yeares since in siracusa boy thou know'st": [0, 65535], "yeares since in siracusa boy thou know'st we": [0, 65535], "since in siracusa boy thou know'st we parted": [0, 65535], "in siracusa boy thou know'st we parted but": [0, 65535], "siracusa boy thou know'st we parted but perhaps": [0, 65535], "boy thou know'st we parted but perhaps my": [0, 65535], "thou know'st we parted but perhaps my sonne": [0, 65535], "know'st we parted but perhaps my sonne thou": [0, 65535], "we parted but perhaps my sonne thou sham'st": [0, 65535], "parted but perhaps my sonne thou sham'st to": [0, 65535], "but perhaps my sonne thou sham'st to acknowledge": [0, 65535], "perhaps my sonne thou sham'st to acknowledge me": [0, 65535], "my sonne thou sham'st to acknowledge me in": [0, 65535], "sonne thou sham'st to acknowledge me in miserie": [0, 65535], "thou sham'st to acknowledge me in miserie ant": [0, 65535], "sham'st to acknowledge me in miserie ant the": [0, 65535], "to acknowledge me in miserie ant the duke": [0, 65535], "acknowledge me in miserie ant the duke and": [0, 65535], "me in miserie ant the duke and all": [0, 65535], "in miserie ant the duke and all that": [0, 65535], "miserie ant the duke and all that know": [0, 65535], "ant the duke and all that know me": [0, 65535], "the duke and all that know me in": [0, 65535], "duke and all that know me in the": [0, 65535], "and all that know me in the city": [0, 65535], "all that know me in the city can": [0, 65535], "that know me in the city can witnesse": [0, 65535], "know me in the city can witnesse with": [0, 65535], "me in the city can witnesse with me": [0, 65535], "in the city can witnesse with me that": [0, 65535], "the city can witnesse with me that it": [0, 65535], "city can witnesse with me that it is": [0, 65535], "can witnesse with me that it is not": [0, 65535], "witnesse with me that it is not so": [0, 65535], "with me that it is not so i": [0, 65535], "me that it is not so i ne're": [0, 65535], "that it is not so i ne're saw": [0, 65535], "it is not so i ne're saw siracusa": [0, 65535], "is not so i ne're saw siracusa in": [0, 65535], "not so i ne're saw siracusa in my": [0, 65535], "so i ne're saw siracusa in my life": [0, 65535], "i ne're saw siracusa in my life duke": [0, 65535], "ne're saw siracusa in my life duke i": [0, 65535], "saw siracusa in my life duke i tell": [0, 65535], "siracusa in my life duke i tell thee": [0, 65535], "in my life duke i tell thee siracusian": [0, 65535], "my life duke i tell thee siracusian twentie": [0, 65535], "life duke i tell thee siracusian twentie yeares": [0, 65535], "duke i tell thee siracusian twentie yeares haue": [0, 65535], "i tell thee siracusian twentie yeares haue i": [0, 65535], "tell thee siracusian twentie yeares haue i bin": [0, 65535], "thee siracusian twentie yeares haue i bin patron": [0, 65535], "siracusian twentie yeares haue i bin patron to": [0, 65535], "twentie yeares haue i bin patron to antipholus": [0, 65535], "yeares haue i bin patron to antipholus during": [0, 65535], "haue i bin patron to antipholus during which": [0, 65535], "i bin patron to antipholus during which time": [0, 65535], "bin patron to antipholus during which time he": [0, 65535], "patron to antipholus during which time he ne're": [0, 65535], "to antipholus during which time he ne're saw": [0, 65535], "antipholus during which time he ne're saw siracusa": [0, 65535], "during which time he ne're saw siracusa i": [0, 65535], "which time he ne're saw siracusa i see": [0, 65535], "time he ne're saw siracusa i see thy": [0, 65535], "he ne're saw siracusa i see thy age": [0, 65535], "ne're saw siracusa i see thy age and": [0, 65535], "saw siracusa i see thy age and dangers": [0, 65535], "siracusa i see thy age and dangers make": [0, 65535], "i see thy age and dangers make thee": [0, 65535], "see thy age and dangers make thee dote": [0, 65535], "thy age and dangers make thee dote enter": [0, 65535], "age and dangers make thee dote enter the": [0, 65535], "and dangers make thee dote enter the abbesse": [0, 65535], "dangers make thee dote enter the abbesse with": [0, 65535], "make thee dote enter the abbesse with antipholus": [0, 65535], "thee dote enter the abbesse with antipholus siracusa": [0, 65535], "dote enter the abbesse with antipholus siracusa and": [0, 65535], "enter the abbesse with antipholus siracusa and dromio": [0, 65535], "the abbesse with antipholus siracusa and dromio sir": [0, 65535], "abbesse with antipholus siracusa and dromio sir abbesse": [0, 65535], "with antipholus siracusa and dromio sir abbesse most": [0, 65535], "antipholus siracusa and dromio sir abbesse most mightie": [0, 65535], "siracusa and dromio sir abbesse most mightie duke": [0, 65535], "and dromio sir abbesse most mightie duke behold": [0, 65535], "dromio sir abbesse most mightie duke behold a": [0, 65535], "sir abbesse most mightie duke behold a man": [0, 65535], "abbesse most mightie duke behold a man much": [0, 65535], "most mightie duke behold a man much wrong'd": [0, 65535], "mightie duke behold a man much wrong'd all": [0, 65535], "duke behold a man much wrong'd all gather": [0, 65535], "behold a man much wrong'd all gather to": [0, 65535], "a man much wrong'd all gather to see": [0, 65535], "man much wrong'd all gather to see them": [0, 65535], "much wrong'd all gather to see them adr": [0, 65535], "wrong'd all gather to see them adr i": [0, 65535], "all gather to see them adr i see": [0, 65535], "gather to see them adr i see two": [0, 65535], "to see them adr i see two husbands": [0, 65535], "see them adr i see two husbands or": [0, 65535], "them adr i see two husbands or mine": [0, 65535], "adr i see two husbands or mine eyes": [0, 65535], "i see two husbands or mine eyes deceiue": [0, 65535], "see two husbands or mine eyes deceiue me": [0, 65535], "two husbands or mine eyes deceiue me duke": [0, 65535], "husbands or mine eyes deceiue me duke one": [0, 65535], "or mine eyes deceiue me duke one of": [0, 65535], "mine eyes deceiue me duke one of these": [0, 65535], "eyes deceiue me duke one of these men": [0, 65535], "deceiue me duke one of these men is": [0, 65535], "me duke one of these men is genius": [0, 65535], "duke one of these men is genius to": [0, 65535], "one of these men is genius to the": [0, 65535], "of these men is genius to the other": [0, 65535], "these men is genius to the other and": [0, 65535], "men is genius to the other and so": [0, 65535], "is genius to the other and so of": [0, 65535], "genius to the other and so of these": [0, 65535], "to the other and so of these which": [0, 65535], "the other and so of these which is": [0, 65535], "other and so of these which is the": [0, 65535], "and so of these which is the naturall": [0, 65535], "so of these which is the naturall man": [0, 65535], "of these which is the naturall man and": [0, 65535], "these which is the naturall man and which": [0, 65535], "which is the naturall man and which the": [0, 65535], "is the naturall man and which the spirit": [0, 65535], "the naturall man and which the spirit who": [0, 65535], "naturall man and which the spirit who deciphers": [0, 65535], "man and which the spirit who deciphers them": [0, 65535], "and which the spirit who deciphers them s": [0, 65535], "which the spirit who deciphers them s dromio": [0, 65535], "the spirit who deciphers them s dromio i": [0, 65535], "spirit who deciphers them s dromio i sir": [0, 65535], "who deciphers them s dromio i sir am": [0, 65535], "deciphers them s dromio i sir am dromio": [0, 65535], "them s dromio i sir am dromio command": [0, 65535], "s dromio i sir am dromio command him": [0, 65535], "dromio i sir am dromio command him away": [0, 65535], "i sir am dromio command him away e": [0, 65535], "sir am dromio command him away e dro": [0, 65535], "am dromio command him away e dro i": [0, 65535], "dromio command him away e dro i sir": [0, 65535], "command him away e dro i sir am": [0, 65535], "him away e dro i sir am dromio": [0, 65535], "away e dro i sir am dromio pray": [0, 65535], "e dro i sir am dromio pray let": [0, 65535], "dro i sir am dromio pray let me": [0, 65535], "i sir am dromio pray let me stay": [0, 65535], "sir am dromio pray let me stay s": [0, 65535], "am dromio pray let me stay s ant": [0, 65535], "dromio pray let me stay s ant egeon": [0, 65535], "pray let me stay s ant egeon art": [0, 65535], "let me stay s ant egeon art thou": [0, 65535], "me stay s ant egeon art thou not": [0, 65535], "stay s ant egeon art thou not or": [0, 65535], "s ant egeon art thou not or else": [0, 65535], "ant egeon art thou not or else his": [0, 65535], "egeon art thou not or else his ghost": [0, 65535], "art thou not or else his ghost s": [0, 65535], "thou not or else his ghost s drom": [0, 65535], "not or else his ghost s drom oh": [0, 65535], "or else his ghost s drom oh my": [0, 65535], "else his ghost s drom oh my olde": [0, 65535], "his ghost s drom oh my olde master": [0, 65535], "ghost s drom oh my olde master who": [0, 65535], "s drom oh my olde master who hath": [0, 65535], "drom oh my olde master who hath bound": [0, 65535], "oh my olde master who hath bound him": [0, 65535], "my olde master who hath bound him heere": [0, 65535], "olde master who hath bound him heere abb": [0, 65535], "master who hath bound him heere abb who": [0, 65535], "who hath bound him heere abb who euer": [0, 65535], "hath bound him heere abb who euer bound": [0, 65535], "bound him heere abb who euer bound him": [0, 65535], "him heere abb who euer bound him i": [0, 65535], "heere abb who euer bound him i will": [0, 65535], "abb who euer bound him i will lose": [0, 65535], "who euer bound him i will lose his": [0, 65535], "euer bound him i will lose his bonds": [0, 65535], "bound him i will lose his bonds and": [0, 65535], "him i will lose his bonds and gaine": [0, 65535], "i will lose his bonds and gaine a": [0, 65535], "will lose his bonds and gaine a husband": [0, 65535], "lose his bonds and gaine a husband by": [0, 65535], "his bonds and gaine a husband by his": [0, 65535], "bonds and gaine a husband by his libertie": [0, 65535], "and gaine a husband by his libertie speake": [0, 65535], "gaine a husband by his libertie speake olde": [0, 65535], "a husband by his libertie speake olde egeon": [0, 65535], "husband by his libertie speake olde egeon if": [0, 65535], "by his libertie speake olde egeon if thou": [0, 65535], "his libertie speake olde egeon if thou bee'st": [0, 65535], "libertie speake olde egeon if thou bee'st the": [0, 65535], "speake olde egeon if thou bee'st the man": [0, 65535], "olde egeon if thou bee'st the man that": [0, 65535], "egeon if thou bee'st the man that hadst": [0, 65535], "if thou bee'st the man that hadst a": [0, 65535], "thou bee'st the man that hadst a wife": [0, 65535], "bee'st the man that hadst a wife once": [0, 65535], "the man that hadst a wife once call'd": [0, 65535], "man that hadst a wife once call'd \u00e6milia": [0, 65535], "that hadst a wife once call'd \u00e6milia that": [0, 65535], "hadst a wife once call'd \u00e6milia that bore": [0, 65535], "a wife once call'd \u00e6milia that bore thee": [0, 65535], "wife once call'd \u00e6milia that bore thee at": [0, 65535], "once call'd \u00e6milia that bore thee at a": [0, 65535], "call'd \u00e6milia that bore thee at a burthen": [0, 65535], "\u00e6milia that bore thee at a burthen two": [0, 65535], "that bore thee at a burthen two faire": [0, 65535], "bore thee at a burthen two faire sonnes": [0, 65535], "thee at a burthen two faire sonnes oh": [0, 65535], "at a burthen two faire sonnes oh if": [0, 65535], "a burthen two faire sonnes oh if thou": [0, 65535], "burthen two faire sonnes oh if thou bee'st": [0, 65535], "two faire sonnes oh if thou bee'st the": [0, 65535], "faire sonnes oh if thou bee'st the same": [0, 65535], "sonnes oh if thou bee'st the same egeon": [0, 65535], "oh if thou bee'st the same egeon speake": [0, 65535], "if thou bee'st the same egeon speake and": [0, 65535], "thou bee'st the same egeon speake and speake": [0, 65535], "bee'st the same egeon speake and speake vnto": [0, 65535], "the same egeon speake and speake vnto the": [0, 65535], "same egeon speake and speake vnto the same": [0, 65535], "egeon speake and speake vnto the same \u00e6milia": [0, 65535], "speake and speake vnto the same \u00e6milia duke": [0, 65535], "and speake vnto the same \u00e6milia duke why": [0, 65535], "speake vnto the same \u00e6milia duke why heere": [0, 65535], "vnto the same \u00e6milia duke why heere begins": [0, 65535], "the same \u00e6milia duke why heere begins his": [0, 65535], "same \u00e6milia duke why heere begins his morning": [0, 65535], "\u00e6milia duke why heere begins his morning storie": [0, 65535], "duke why heere begins his morning storie right": [0, 65535], "why heere begins his morning storie right these": [0, 65535], "heere begins his morning storie right these twoantipholus": [0, 65535], "begins his morning storie right these twoantipholus these": [0, 65535], "his morning storie right these twoantipholus these two": [0, 65535], "morning storie right these twoantipholus these two so": [0, 65535], "storie right these twoantipholus these two so like": [0, 65535], "right these twoantipholus these two so like and": [0, 65535], "these twoantipholus these two so like and these": [0, 65535], "twoantipholus these two so like and these two": [0, 65535], "these two so like and these two dromio's": [0, 65535], "two so like and these two dromio's one": [0, 65535], "so like and these two dromio's one in": [0, 65535], "like and these two dromio's one in semblance": [0, 65535], "and these two dromio's one in semblance besides": [0, 65535], "these two dromio's one in semblance besides her": [0, 65535], "two dromio's one in semblance besides her vrging": [0, 65535], "dromio's one in semblance besides her vrging of": [0, 65535], "one in semblance besides her vrging of her": [0, 65535], "in semblance besides her vrging of her wracke": [0, 65535], "semblance besides her vrging of her wracke at": [0, 65535], "besides her vrging of her wracke at sea": [0, 65535], "her vrging of her wracke at sea these": [0, 65535], "vrging of her wracke at sea these are": [0, 65535], "of her wracke at sea these are the": [0, 65535], "her wracke at sea these are the parents": [0, 65535], "wracke at sea these are the parents to": [0, 65535], "at sea these are the parents to these": [0, 65535], "sea these are the parents to these children": [0, 65535], "these are the parents to these children which": [0, 65535], "are the parents to these children which accidentally": [0, 65535], "the parents to these children which accidentally are": [0, 65535], "parents to these children which accidentally are met": [0, 65535], "to these children which accidentally are met together": [0, 65535], "these children which accidentally are met together fa": [0, 65535], "children which accidentally are met together fa if": [0, 65535], "which accidentally are met together fa if i": [0, 65535], "accidentally are met together fa if i dreame": [0, 65535], "are met together fa if i dreame not": [0, 65535], "met together fa if i dreame not thou": [0, 65535], "together fa if i dreame not thou art": [0, 65535], "fa if i dreame not thou art \u00e6milia": [0, 65535], "if i dreame not thou art \u00e6milia if": [0, 65535], "i dreame not thou art \u00e6milia if thou": [0, 65535], "dreame not thou art \u00e6milia if thou art": [0, 65535], "not thou art \u00e6milia if thou art she": [0, 65535], "thou art \u00e6milia if thou art she tell": [0, 65535], "art \u00e6milia if thou art she tell me": [0, 65535], "\u00e6milia if thou art she tell me where": [0, 65535], "if thou art she tell me where is": [0, 65535], "thou art she tell me where is that": [0, 65535], "art she tell me where is that sonne": [0, 65535], "she tell me where is that sonne that": [0, 65535], "tell me where is that sonne that floated": [0, 65535], "me where is that sonne that floated with": [0, 65535], "where is that sonne that floated with thee": [0, 65535], "is that sonne that floated with thee on": [0, 65535], "that sonne that floated with thee on the": [0, 65535], "sonne that floated with thee on the fatall": [0, 65535], "that floated with thee on the fatall rafte": [0, 65535], "floated with thee on the fatall rafte abb": [0, 65535], "with thee on the fatall rafte abb by": [0, 65535], "thee on the fatall rafte abb by men": [0, 65535], "on the fatall rafte abb by men of": [0, 65535], "the fatall rafte abb by men of epidamium": [0, 65535], "fatall rafte abb by men of epidamium he": [0, 65535], "rafte abb by men of epidamium he and": [0, 65535], "abb by men of epidamium he and i": [0, 65535], "by men of epidamium he and i and": [0, 65535], "men of epidamium he and i and the": [0, 65535], "of epidamium he and i and the twin": [0, 65535], "epidamium he and i and the twin dromio": [0, 65535], "he and i and the twin dromio all": [0, 65535], "and i and the twin dromio all were": [0, 65535], "i and the twin dromio all were taken": [0, 65535], "and the twin dromio all were taken vp": [0, 65535], "the twin dromio all were taken vp but": [0, 65535], "twin dromio all were taken vp but by": [0, 65535], "dromio all were taken vp but by and": [0, 65535], "all were taken vp but by and by": [0, 65535], "were taken vp but by and by rude": [0, 65535], "taken vp but by and by rude fishermen": [0, 65535], "vp but by and by rude fishermen of": [0, 65535], "but by and by rude fishermen of corinth": [0, 65535], "by and by rude fishermen of corinth by": [0, 65535], "and by rude fishermen of corinth by force": [0, 65535], "by rude fishermen of corinth by force tooke": [0, 65535], "rude fishermen of corinth by force tooke dromio": [0, 65535], "fishermen of corinth by force tooke dromio and": [0, 65535], "of corinth by force tooke dromio and my": [0, 65535], "corinth by force tooke dromio and my sonne": [0, 65535], "by force tooke dromio and my sonne from": [0, 65535], "force tooke dromio and my sonne from them": [0, 65535], "tooke dromio and my sonne from them and": [0, 65535], "dromio and my sonne from them and me": [0, 65535], "and my sonne from them and me they": [0, 65535], "my sonne from them and me they left": [0, 65535], "sonne from them and me they left with": [0, 65535], "from them and me they left with those": [0, 65535], "them and me they left with those of": [0, 65535], "and me they left with those of epidamium": [0, 65535], "me they left with those of epidamium what": [0, 65535], "they left with those of epidamium what then": [0, 65535], "left with those of epidamium what then became": [0, 65535], "with those of epidamium what then became of": [0, 65535], "those of epidamium what then became of them": [0, 65535], "of epidamium what then became of them i": [0, 65535], "epidamium what then became of them i cannot": [0, 65535], "what then became of them i cannot tell": [0, 65535], "then became of them i cannot tell i": [0, 65535], "became of them i cannot tell i to": [0, 65535], "of them i cannot tell i to this": [0, 65535], "them i cannot tell i to this fortune": [0, 65535], "i cannot tell i to this fortune that": [0, 65535], "cannot tell i to this fortune that you": [0, 65535], "tell i to this fortune that you see": [0, 65535], "i to this fortune that you see mee": [0, 65535], "to this fortune that you see mee in": [0, 65535], "this fortune that you see mee in duke": [0, 65535], "fortune that you see mee in duke antipholus": [0, 65535], "that you see mee in duke antipholus thou": [0, 65535], "you see mee in duke antipholus thou cam'st": [0, 65535], "see mee in duke antipholus thou cam'st from": [0, 65535], "mee in duke antipholus thou cam'st from corinth": [0, 65535], "in duke antipholus thou cam'st from corinth first": [0, 65535], "duke antipholus thou cam'st from corinth first s": [0, 65535], "antipholus thou cam'st from corinth first s ant": [0, 65535], "thou cam'st from corinth first s ant no": [0, 65535], "cam'st from corinth first s ant no sir": [0, 65535], "from corinth first s ant no sir not": [0, 65535], "corinth first s ant no sir not i": [0, 65535], "first s ant no sir not i i": [0, 65535], "s ant no sir not i i came": [0, 65535], "ant no sir not i i came from": [0, 65535], "no sir not i i came from siracuse": [0, 65535], "sir not i i came from siracuse duke": [0, 65535], "not i i came from siracuse duke stay": [0, 65535], "i i came from siracuse duke stay stand": [0, 65535], "i came from siracuse duke stay stand apart": [0, 65535], "came from siracuse duke stay stand apart i": [0, 65535], "from siracuse duke stay stand apart i know": [0, 65535], "siracuse duke stay stand apart i know not": [0, 65535], "duke stay stand apart i know not which": [0, 65535], "stay stand apart i know not which is": [0, 65535], "stand apart i know not which is which": [0, 65535], "apart i know not which is which e": [0, 65535], "i know not which is which e ant": [0, 65535], "know not which is which e ant i": [0, 65535], "not which is which e ant i came": [0, 65535], "which is which e ant i came from": [0, 65535], "is which e ant i came from corinth": [0, 65535], "which e ant i came from corinth my": [0, 65535], "e ant i came from corinth my most": [0, 65535], "ant i came from corinth my most gracious": [0, 65535], "i came from corinth my most gracious lord": [0, 65535], "came from corinth my most gracious lord e": [0, 65535], "from corinth my most gracious lord e dro": [0, 65535], "corinth my most gracious lord e dro and": [0, 65535], "my most gracious lord e dro and i": [0, 65535], "most gracious lord e dro and i with": [0, 65535], "gracious lord e dro and i with him": [0, 65535], "lord e dro and i with him e": [0, 65535], "e dro and i with him e ant": [0, 65535], "dro and i with him e ant brought": [0, 65535], "and i with him e ant brought to": [0, 65535], "i with him e ant brought to this": [0, 65535], "with him e ant brought to this town": [0, 65535], "him e ant brought to this town by": [0, 65535], "e ant brought to this town by that": [0, 65535], "ant brought to this town by that most": [0, 65535], "brought to this town by that most famous": [0, 65535], "to this town by that most famous warriour": [0, 65535], "this town by that most famous warriour duke": [0, 65535], "town by that most famous warriour duke menaphon": [0, 65535], "by that most famous warriour duke menaphon your": [0, 65535], "that most famous warriour duke menaphon your most": [0, 65535], "most famous warriour duke menaphon your most renowned": [0, 65535], "famous warriour duke menaphon your most renowned vnckle": [0, 65535], "warriour duke menaphon your most renowned vnckle adr": [0, 65535], "duke menaphon your most renowned vnckle adr which": [0, 65535], "menaphon your most renowned vnckle adr which of": [0, 65535], "your most renowned vnckle adr which of you": [0, 65535], "most renowned vnckle adr which of you two": [0, 65535], "renowned vnckle adr which of you two did": [0, 65535], "vnckle adr which of you two did dine": [0, 65535], "adr which of you two did dine with": [0, 65535], "which of you two did dine with me": [0, 65535], "of you two did dine with me to": [0, 65535], "you two did dine with me to day": [0, 65535], "two did dine with me to day s": [0, 65535], "did dine with me to day s ant": [0, 65535], "dine with me to day s ant i": [0, 65535], "with me to day s ant i gentle": [0, 65535], "me to day s ant i gentle mistris": [0, 65535], "to day s ant i gentle mistris adr": [0, 65535], "day s ant i gentle mistris adr and": [0, 65535], "s ant i gentle mistris adr and are": [0, 65535], "ant i gentle mistris adr and are not": [0, 65535], "i gentle mistris adr and are not you": [0, 65535], "gentle mistris adr and are not you my": [0, 65535], "mistris adr and are not you my husband": [0, 65535], "adr and are not you my husband e": [0, 65535], "and are not you my husband e ant": [0, 65535], "are not you my husband e ant no": [0, 65535], "not you my husband e ant no i": [0, 65535], "you my husband e ant no i say": [0, 65535], "my husband e ant no i say nay": [0, 65535], "husband e ant no i say nay to": [0, 65535], "e ant no i say nay to that": [0, 65535], "ant no i say nay to that s": [0, 65535], "no i say nay to that s ant": [0, 65535], "i say nay to that s ant and": [0, 65535], "say nay to that s ant and so": [0, 65535], "nay to that s ant and so do": [0, 65535], "to that s ant and so do i": [0, 65535], "that s ant and so do i yet": [0, 65535], "s ant and so do i yet did": [0, 65535], "ant and so do i yet did she": [0, 65535], "and so do i yet did she call": [0, 65535], "so do i yet did she call me": [0, 65535], "do i yet did she call me so": [0, 65535], "i yet did she call me so and": [0, 65535], "yet did she call me so and this": [0, 65535], "did she call me so and this faire": [0, 65535], "she call me so and this faire gentlewoman": [0, 65535], "call me so and this faire gentlewoman her": [0, 65535], "me so and this faire gentlewoman her sister": [0, 65535], "so and this faire gentlewoman her sister heere": [0, 65535], "and this faire gentlewoman her sister heere did": [0, 65535], "this faire gentlewoman her sister heere did call": [0, 65535], "faire gentlewoman her sister heere did call me": [0, 65535], "gentlewoman her sister heere did call me brother": [0, 65535], "her sister heere did call me brother what": [0, 65535], "sister heere did call me brother what i": [0, 65535], "heere did call me brother what i told": [0, 65535], "did call me brother what i told you": [0, 65535], "call me brother what i told you then": [0, 65535], "me brother what i told you then i": [0, 65535], "brother what i told you then i hope": [0, 65535], "what i told you then i hope i": [0, 65535], "i told you then i hope i shall": [0, 65535], "told you then i hope i shall haue": [0, 65535], "you then i hope i shall haue leisure": [0, 65535], "then i hope i shall haue leisure to": [0, 65535], "i hope i shall haue leisure to make": [0, 65535], "hope i shall haue leisure to make good": [0, 65535], "i shall haue leisure to make good if": [0, 65535], "shall haue leisure to make good if this": [0, 65535], "haue leisure to make good if this be": [0, 65535], "leisure to make good if this be not": [0, 65535], "to make good if this be not a": [0, 65535], "make good if this be not a dreame": [0, 65535], "good if this be not a dreame i": [0, 65535], "if this be not a dreame i see": [0, 65535], "this be not a dreame i see and": [0, 65535], "be not a dreame i see and heare": [0, 65535], "not a dreame i see and heare goldsmith": [0, 65535], "a dreame i see and heare goldsmith that": [0, 65535], "dreame i see and heare goldsmith that is": [0, 65535], "i see and heare goldsmith that is the": [0, 65535], "see and heare goldsmith that is the chaine": [0, 65535], "and heare goldsmith that is the chaine sir": [0, 65535], "heare goldsmith that is the chaine sir which": [0, 65535], "goldsmith that is the chaine sir which you": [0, 65535], "that is the chaine sir which you had": [0, 65535], "is the chaine sir which you had of": [0, 65535], "the chaine sir which you had of mee": [0, 65535], "chaine sir which you had of mee s": [0, 65535], "sir which you had of mee s ant": [0, 65535], "which you had of mee s ant i": [0, 65535], "you had of mee s ant i thinke": [0, 65535], "had of mee s ant i thinke it": [0, 65535], "of mee s ant i thinke it be": [0, 65535], "mee s ant i thinke it be sir": [0, 65535], "s ant i thinke it be sir i": [0, 65535], "ant i thinke it be sir i denie": [0, 65535], "i thinke it be sir i denie it": [0, 65535], "thinke it be sir i denie it not": [0, 65535], "it be sir i denie it not e": [0, 65535], "be sir i denie it not e ant": [0, 65535], "sir i denie it not e ant and": [0, 65535], "i denie it not e ant and you": [0, 65535], "denie it not e ant and you sir": [0, 65535], "it not e ant and you sir for": [0, 65535], "not e ant and you sir for this": [0, 65535], "e ant and you sir for this chaine": [0, 65535], "ant and you sir for this chaine arrested": [0, 65535], "and you sir for this chaine arrested me": [0, 65535], "you sir for this chaine arrested me gold": [0, 65535], "sir for this chaine arrested me gold i": [0, 65535], "for this chaine arrested me gold i thinke": [0, 65535], "this chaine arrested me gold i thinke i": [0, 65535], "chaine arrested me gold i thinke i did": [0, 65535], "arrested me gold i thinke i did sir": [0, 65535], "me gold i thinke i did sir i": [0, 65535], "gold i thinke i did sir i deny": [0, 65535], "i thinke i did sir i deny it": [0, 65535], "thinke i did sir i deny it not": [0, 65535], "i did sir i deny it not adr": [0, 65535], "did sir i deny it not adr i": [0, 65535], "sir i deny it not adr i sent": [0, 65535], "i deny it not adr i sent you": [0, 65535], "deny it not adr i sent you monie": [0, 65535], "it not adr i sent you monie sir": [0, 65535], "not adr i sent you monie sir to": [0, 65535], "adr i sent you monie sir to be": [0, 65535], "i sent you monie sir to be your": [0, 65535], "sent you monie sir to be your baile": [0, 65535], "you monie sir to be your baile by": [0, 65535], "monie sir to be your baile by dromio": [0, 65535], "sir to be your baile by dromio but": [0, 65535], "to be your baile by dromio but i": [0, 65535], "be your baile by dromio but i thinke": [0, 65535], "your baile by dromio but i thinke he": [0, 65535], "baile by dromio but i thinke he brought": [0, 65535], "by dromio but i thinke he brought it": [0, 65535], "dromio but i thinke he brought it not": [0, 65535], "but i thinke he brought it not e": [0, 65535], "i thinke he brought it not e dro": [0, 65535], "thinke he brought it not e dro no": [0, 65535], "he brought it not e dro no none": [0, 65535], "brought it not e dro no none by": [0, 65535], "it not e dro no none by me": [0, 65535], "not e dro no none by me s": [0, 65535], "e dro no none by me s ant": [0, 65535], "dro no none by me s ant this": [0, 65535], "no none by me s ant this purse": [0, 65535], "none by me s ant this purse of": [0, 65535], "by me s ant this purse of duckets": [0, 65535], "me s ant this purse of duckets i": [0, 65535], "s ant this purse of duckets i receiu'd": [0, 65535], "ant this purse of duckets i receiu'd from": [0, 65535], "this purse of duckets i receiu'd from you": [0, 65535], "purse of duckets i receiu'd from you and": [0, 65535], "of duckets i receiu'd from you and dromio": [0, 65535], "duckets i receiu'd from you and dromio my": [0, 65535], "i receiu'd from you and dromio my man": [0, 65535], "receiu'd from you and dromio my man did": [0, 65535], "from you and dromio my man did bring": [0, 65535], "you and dromio my man did bring them": [0, 65535], "and dromio my man did bring them me": [0, 65535], "dromio my man did bring them me i": [0, 65535], "my man did bring them me i see": [0, 65535], "man did bring them me i see we": [0, 65535], "did bring them me i see we still": [0, 65535], "bring them me i see we still did": [0, 65535], "them me i see we still did meete": [0, 65535], "me i see we still did meete each": [0, 65535], "i see we still did meete each others": [0, 65535], "see we still did meete each others man": [0, 65535], "we still did meete each others man and": [0, 65535], "still did meete each others man and i": [0, 65535], "did meete each others man and i was": [0, 65535], "meete each others man and i was tane": [0, 65535], "each others man and i was tane for": [0, 65535], "others man and i was tane for him": [0, 65535], "man and i was tane for him and": [0, 65535], "and i was tane for him and he": [0, 65535], "i was tane for him and he for": [0, 65535], "was tane for him and he for me": [0, 65535], "tane for him and he for me and": [0, 65535], "for him and he for me and thereupon": [0, 65535], "him and he for me and thereupon these": [0, 65535], "and he for me and thereupon these errors": [0, 65535], "he for me and thereupon these errors are": [0, 65535], "for me and thereupon these errors are arose": [0, 65535], "me and thereupon these errors are arose e": [0, 65535], "and thereupon these errors are arose e ant": [0, 65535], "thereupon these errors are arose e ant these": [0, 65535], "these errors are arose e ant these duckets": [0, 65535], "errors are arose e ant these duckets pawne": [0, 65535], "are arose e ant these duckets pawne i": [0, 65535], "arose e ant these duckets pawne i for": [0, 65535], "e ant these duckets pawne i for my": [0, 65535], "ant these duckets pawne i for my father": [0, 65535], "these duckets pawne i for my father heere": [0, 65535], "duckets pawne i for my father heere duke": [0, 65535], "pawne i for my father heere duke it": [0, 65535], "i for my father heere duke it shall": [0, 65535], "for my father heere duke it shall not": [0, 65535], "my father heere duke it shall not neede": [0, 65535], "father heere duke it shall not neede thy": [0, 65535], "heere duke it shall not neede thy father": [0, 65535], "duke it shall not neede thy father hath": [0, 65535], "it shall not neede thy father hath his": [0, 65535], "shall not neede thy father hath his life": [0, 65535], "not neede thy father hath his life cur": [0, 65535], "neede thy father hath his life cur sir": [0, 65535], "thy father hath his life cur sir i": [0, 65535], "father hath his life cur sir i must": [0, 65535], "hath his life cur sir i must haue": [0, 65535], "his life cur sir i must haue that": [0, 65535], "life cur sir i must haue that diamond": [0, 65535], "cur sir i must haue that diamond from": [0, 65535], "sir i must haue that diamond from you": [0, 65535], "i must haue that diamond from you e": [0, 65535], "must haue that diamond from you e ant": [0, 65535], "haue that diamond from you e ant there": [0, 65535], "that diamond from you e ant there take": [0, 65535], "diamond from you e ant there take it": [0, 65535], "from you e ant there take it and": [0, 65535], "you e ant there take it and much": [0, 65535], "e ant there take it and much thanks": [0, 65535], "ant there take it and much thanks for": [0, 65535], "there take it and much thanks for my": [0, 65535], "take it and much thanks for my good": [0, 65535], "it and much thanks for my good cheere": [0, 65535], "and much thanks for my good cheere abb": [0, 65535], "much thanks for my good cheere abb renowned": [0, 65535], "thanks for my good cheere abb renowned duke": [0, 65535], "for my good cheere abb renowned duke vouchsafe": [0, 65535], "my good cheere abb renowned duke vouchsafe to": [0, 65535], "good cheere abb renowned duke vouchsafe to take": [0, 65535], "cheere abb renowned duke vouchsafe to take the": [0, 65535], "abb renowned duke vouchsafe to take the paines": [0, 65535], "renowned duke vouchsafe to take the paines to": [0, 65535], "duke vouchsafe to take the paines to go": [0, 65535], "vouchsafe to take the paines to go with": [0, 65535], "to take the paines to go with vs": [0, 65535], "take the paines to go with vs into": [0, 65535], "the paines to go with vs into the": [0, 65535], "paines to go with vs into the abbey": [0, 65535], "to go with vs into the abbey heere": [0, 65535], "go with vs into the abbey heere and": [0, 65535], "with vs into the abbey heere and heare": [0, 65535], "vs into the abbey heere and heare at": [0, 65535], "into the abbey heere and heare at large": [0, 65535], "the abbey heere and heare at large discoursed": [0, 65535], "abbey heere and heare at large discoursed all": [0, 65535], "heere and heare at large discoursed all our": [0, 65535], "and heare at large discoursed all our fortunes": [0, 65535], "heare at large discoursed all our fortunes and": [0, 65535], "at large discoursed all our fortunes and all": [0, 65535], "large discoursed all our fortunes and all that": [0, 65535], "discoursed all our fortunes and all that are": [0, 65535], "all our fortunes and all that are assembled": [0, 65535], "our fortunes and all that are assembled in": [0, 65535], "fortunes and all that are assembled in this": [0, 65535], "and all that are assembled in this place": [0, 65535], "all that are assembled in this place that": [0, 65535], "that are assembled in this place that by": [0, 65535], "are assembled in this place that by this": [0, 65535], "assembled in this place that by this simpathized": [0, 65535], "in this place that by this simpathized one": [0, 65535], "this place that by this simpathized one daies": [0, 65535], "place that by this simpathized one daies error": [0, 65535], "that by this simpathized one daies error haue": [0, 65535], "by this simpathized one daies error haue suffer'd": [0, 65535], "this simpathized one daies error haue suffer'd wrong": [0, 65535], "simpathized one daies error haue suffer'd wrong goe": [0, 65535], "one daies error haue suffer'd wrong goe keepe": [0, 65535], "daies error haue suffer'd wrong goe keepe vs": [0, 65535], "error haue suffer'd wrong goe keepe vs companie": [0, 65535], "haue suffer'd wrong goe keepe vs companie and": [0, 65535], "suffer'd wrong goe keepe vs companie and we": [0, 65535], "wrong goe keepe vs companie and we shall": [0, 65535], "goe keepe vs companie and we shall make": [0, 65535], "keepe vs companie and we shall make full": [0, 65535], "vs companie and we shall make full satisfaction": [0, 65535], "companie and we shall make full satisfaction thirtie": [0, 65535], "and we shall make full satisfaction thirtie three": [0, 65535], "we shall make full satisfaction thirtie three yeares": [0, 65535], "shall make full satisfaction thirtie three yeares haue": [0, 65535], "make full satisfaction thirtie three yeares haue i": [0, 65535], "full satisfaction thirtie three yeares haue i but": [0, 65535], "satisfaction thirtie three yeares haue i but gone": [0, 65535], "thirtie three yeares haue i but gone in": [0, 65535], "three yeares haue i but gone in trauaile": [0, 65535], "yeares haue i but gone in trauaile of": [0, 65535], "haue i but gone in trauaile of you": [0, 65535], "i but gone in trauaile of you my": [0, 65535], "but gone in trauaile of you my sonnes": [0, 65535], "gone in trauaile of you my sonnes and": [0, 65535], "in trauaile of you my sonnes and till": [0, 65535], "trauaile of you my sonnes and till this": [0, 65535], "of you my sonnes and till this present": [0, 65535], "you my sonnes and till this present houre": [0, 65535], "my sonnes and till this present houre my": [0, 65535], "sonnes and till this present houre my heauie": [0, 65535], "and till this present houre my heauie burthen": [0, 65535], "till this present houre my heauie burthen are": [0, 65535], "this present houre my heauie burthen are deliuered": [0, 65535], "present houre my heauie burthen are deliuered the": [0, 65535], "houre my heauie burthen are deliuered the duke": [0, 65535], "my heauie burthen are deliuered the duke my": [0, 65535], "heauie burthen are deliuered the duke my husband": [0, 65535], "burthen are deliuered the duke my husband and": [0, 65535], "are deliuered the duke my husband and my": [0, 65535], "deliuered the duke my husband and my children": [0, 65535], "the duke my husband and my children both": [0, 65535], "duke my husband and my children both and": [0, 65535], "my husband and my children both and you": [0, 65535], "husband and my children both and you the": [0, 65535], "and my children both and you the kalenders": [0, 65535], "my children both and you the kalenders of": [0, 65535], "children both and you the kalenders of their": [0, 65535], "both and you the kalenders of their natiuity": [0, 65535], "and you the kalenders of their natiuity go": [0, 65535], "you the kalenders of their natiuity go to": [0, 65535], "the kalenders of their natiuity go to a": [0, 65535], "kalenders of their natiuity go to a gossips": [0, 65535], "of their natiuity go to a gossips feast": [0, 65535], "their natiuity go to a gossips feast and": [0, 65535], "natiuity go to a gossips feast and go": [0, 65535], "go to a gossips feast and go with": [0, 65535], "to a gossips feast and go with mee": [0, 65535], "a gossips feast and go with mee after": [0, 65535], "gossips feast and go with mee after so": [0, 65535], "feast and go with mee after so long": [0, 65535], "and go with mee after so long greefe": [0, 65535], "go with mee after so long greefe such": [0, 65535], "with mee after so long greefe such natiuitie": [0, 65535], "mee after so long greefe such natiuitie duke": [0, 65535], "after so long greefe such natiuitie duke with": [0, 65535], "so long greefe such natiuitie duke with all": [0, 65535], "long greefe such natiuitie duke with all my": [0, 65535], "greefe such natiuitie duke with all my heart": [0, 65535], "such natiuitie duke with all my heart ile": [0, 65535], "natiuitie duke with all my heart ile gossip": [0, 65535], "duke with all my heart ile gossip at": [0, 65535], "with all my heart ile gossip at this": [0, 65535], "all my heart ile gossip at this feast": [0, 65535], "my heart ile gossip at this feast exeunt": [0, 65535], "heart ile gossip at this feast exeunt omnes": [0, 65535], "ile gossip at this feast exeunt omnes manet": [0, 65535], "gossip at this feast exeunt omnes manet the": [0, 65535], "at this feast exeunt omnes manet the two": [0, 65535], "this feast exeunt omnes manet the two dromio's": [0, 65535], "feast exeunt omnes manet the two dromio's and": [0, 65535], "exeunt omnes manet the two dromio's and two": [0, 65535], "omnes manet the two dromio's and two brothers": [0, 65535], "manet the two dromio's and two brothers s": [0, 65535], "the two dromio's and two brothers s dro": [0, 65535], "two dromio's and two brothers s dro mast": [0, 65535], "dromio's and two brothers s dro mast shall": [0, 65535], "and two brothers s dro mast shall i": [0, 65535], "two brothers s dro mast shall i fetch": [0, 65535], "brothers s dro mast shall i fetch your": [0, 65535], "s dro mast shall i fetch your stuffe": [0, 65535], "dro mast shall i fetch your stuffe from": [0, 65535], "mast shall i fetch your stuffe from shipbord": [0, 65535], "shall i fetch your stuffe from shipbord e": [0, 65535], "i fetch your stuffe from shipbord e an": [0, 65535], "fetch your stuffe from shipbord e an dromio": [0, 65535], "your stuffe from shipbord e an dromio what": [0, 65535], "stuffe from shipbord e an dromio what stuffe": [0, 65535], "from shipbord e an dromio what stuffe of": [0, 65535], "shipbord e an dromio what stuffe of mine": [0, 65535], "e an dromio what stuffe of mine hast": [0, 65535], "an dromio what stuffe of mine hast thou": [0, 65535], "dromio what stuffe of mine hast thou imbarkt": [0, 65535], "what stuffe of mine hast thou imbarkt s": [0, 65535], "stuffe of mine hast thou imbarkt s dro": [0, 65535], "of mine hast thou imbarkt s dro your": [0, 65535], "mine hast thou imbarkt s dro your goods": [0, 65535], "hast thou imbarkt s dro your goods that": [0, 65535], "thou imbarkt s dro your goods that lay": [0, 65535], "imbarkt s dro your goods that lay at": [0, 65535], "s dro your goods that lay at host": [0, 65535], "dro your goods that lay at host sir": [0, 65535], "your goods that lay at host sir in": [0, 65535], "goods that lay at host sir in the": [0, 65535], "that lay at host sir in the centaur": [0, 65535], "lay at host sir in the centaur s": [0, 65535], "at host sir in the centaur s ant": [0, 65535], "host sir in the centaur s ant he": [0, 65535], "sir in the centaur s ant he speakes": [0, 65535], "in the centaur s ant he speakes to": [0, 65535], "the centaur s ant he speakes to me": [0, 65535], "centaur s ant he speakes to me i": [0, 65535], "s ant he speakes to me i am": [0, 65535], "ant he speakes to me i am your": [0, 65535], "he speakes to me i am your master": [0, 65535], "speakes to me i am your master dromio": [0, 65535], "to me i am your master dromio come": [0, 65535], "me i am your master dromio come go": [0, 65535], "i am your master dromio come go with": [0, 65535], "am your master dromio come go with vs": [0, 65535], "your master dromio come go with vs wee'l": [0, 65535], "master dromio come go with vs wee'l looke": [0, 65535], "dromio come go with vs wee'l looke to": [0, 65535], "come go with vs wee'l looke to that": [0, 65535], "go with vs wee'l looke to that anon": [0, 65535], "with vs wee'l looke to that anon embrace": [0, 65535], "vs wee'l looke to that anon embrace thy": [0, 65535], "wee'l looke to that anon embrace thy brother": [0, 65535], "looke to that anon embrace thy brother there": [0, 65535], "to that anon embrace thy brother there reioyce": [0, 65535], "that anon embrace thy brother there reioyce with": [0, 65535], "anon embrace thy brother there reioyce with him": [0, 65535], "embrace thy brother there reioyce with him exit": [0, 65535], "thy brother there reioyce with him exit s": [0, 65535], "brother there reioyce with him exit s dro": [0, 65535], "there reioyce with him exit s dro there": [0, 65535], "reioyce with him exit s dro there is": [0, 65535], "with him exit s dro there is a": [0, 65535], "him exit s dro there is a fat": [0, 65535], "exit s dro there is a fat friend": [0, 65535], "s dro there is a fat friend at": [0, 65535], "dro there is a fat friend at your": [0, 65535], "there is a fat friend at your masters": [0, 65535], "is a fat friend at your masters house": [0, 65535], "a fat friend at your masters house that": [0, 65535], "fat friend at your masters house that kitchin'd": [0, 65535], "friend at your masters house that kitchin'd me": [0, 65535], "at your masters house that kitchin'd me for": [0, 65535], "your masters house that kitchin'd me for you": [0, 65535], "masters house that kitchin'd me for you to": [0, 65535], "house that kitchin'd me for you to day": [0, 65535], "that kitchin'd me for you to day at": [0, 65535], "kitchin'd me for you to day at dinner": [0, 65535], "me for you to day at dinner she": [0, 65535], "for you to day at dinner she now": [0, 65535], "you to day at dinner she now shall": [0, 65535], "to day at dinner she now shall be": [0, 65535], "day at dinner she now shall be my": [0, 65535], "at dinner she now shall be my sister": [0, 65535], "dinner she now shall be my sister not": [0, 65535], "she now shall be my sister not my": [0, 65535], "now shall be my sister not my wife": [0, 65535], "shall be my sister not my wife e": [0, 65535], "be my sister not my wife e d": [0, 65535], "my sister not my wife e d me": [0, 65535], "sister not my wife e d me thinks": [0, 65535], "not my wife e d me thinks you": [0, 65535], "my wife e d me thinks you are": [0, 65535], "wife e d me thinks you are my": [0, 65535], "e d me thinks you are my glasse": [0, 65535], "d me thinks you are my glasse not": [0, 65535], "me thinks you are my glasse not my": [0, 65535], "thinks you are my glasse not my brother": [0, 65535], "you are my glasse not my brother i": [0, 65535], "are my glasse not my brother i see": [0, 65535], "my glasse not my brother i see by": [0, 65535], "glasse not my brother i see by you": [0, 65535], "not my brother i see by you i": [0, 65535], "my brother i see by you i am": [0, 65535], "brother i see by you i am a": [0, 65535], "i see by you i am a sweet": [0, 65535], "see by you i am a sweet fac'd": [0, 65535], "by you i am a sweet fac'd youth": [0, 65535], "you i am a sweet fac'd youth will": [0, 65535], "i am a sweet fac'd youth will you": [0, 65535], "am a sweet fac'd youth will you walke": [0, 65535], "a sweet fac'd youth will you walke in": [0, 65535], "sweet fac'd youth will you walke in to": [0, 65535], "fac'd youth will you walke in to see": [0, 65535], "youth will you walke in to see their": [0, 65535], "will you walke in to see their gossipping": [0, 65535], "you walke in to see their gossipping s": [0, 65535], "walke in to see their gossipping s dro": [0, 65535], "in to see their gossipping s dro not": [0, 65535], "to see their gossipping s dro not i": [0, 65535], "see their gossipping s dro not i sir": [0, 65535], "their gossipping s dro not i sir you": [0, 65535], "gossipping s dro not i sir you are": [0, 65535], "s dro not i sir you are my": [0, 65535], "dro not i sir you are my elder": [0, 65535], "not i sir you are my elder e": [0, 65535], "i sir you are my elder e dro": [0, 65535], "sir you are my elder e dro that's": [0, 65535], "you are my elder e dro that's a": [0, 65535], "are my elder e dro that's a question": [0, 65535], "my elder e dro that's a question how": [0, 65535], "elder e dro that's a question how shall": [0, 65535], "e dro that's a question how shall we": [0, 65535], "dro that's a question how shall we trie": [0, 65535], "that's a question how shall we trie it": [0, 65535], "a question how shall we trie it s": [0, 65535], "question how shall we trie it s dro": [0, 65535], "how shall we trie it s dro wee'l": [0, 65535], "shall we trie it s dro wee'l draw": [0, 65535], "we trie it s dro wee'l draw cuts": [0, 65535], "trie it s dro wee'l draw cuts for": [0, 65535], "it s dro wee'l draw cuts for the": [0, 65535], "s dro wee'l draw cuts for the signior": [0, 65535], "dro wee'l draw cuts for the signior till": [0, 65535], "wee'l draw cuts for the signior till then": [0, 65535], "draw cuts for the signior till then lead": [0, 65535], "cuts for the signior till then lead thou": [0, 65535], "for the signior till then lead thou first": [0, 65535], "the signior till then lead thou first e": [0, 65535], "signior till then lead thou first e dro": [0, 65535], "till then lead thou first e dro nay": [0, 65535], "then lead thou first e dro nay then": [0, 65535], "lead thou first e dro nay then thus": [0, 65535], "thou first e dro nay then thus we": [0, 65535], "first e dro nay then thus we came": [0, 65535], "e dro nay then thus we came into": [0, 65535], "dro nay then thus we came into the": [0, 65535], "nay then thus we came into the world": [0, 65535], "then thus we came into the world like": [0, 65535], "thus we came into the world like brother": [0, 65535], "we came into the world like brother and": [0, 65535], "came into the world like brother and brother": [0, 65535], "into the world like brother and brother and": [0, 65535], "the world like brother and brother and now": [0, 65535], "world like brother and brother and now let's": [0, 65535], "like brother and brother and now let's go": [0, 65535], "brother and brother and now let's go hand": [0, 65535], "and brother and now let's go hand in": [0, 65535], "brother and now let's go hand in hand": [0, 65535], "and now let's go hand in hand not": [0, 65535], "now let's go hand in hand not one": [0, 65535], "let's go hand in hand not one before": [0, 65535], "go hand in hand not one before another": [0, 65535], "hand in hand not one before another exeunt": [0, 65535], "in hand not one before another exeunt finis": [0, 65535], "actus quintus sc\u0153na prima enter the merchant and the": [0, 65535], "quintus sc\u0153na prima enter the merchant and the goldsmith": [0, 65535], "sc\u0153na prima enter the merchant and the goldsmith gold": [0, 65535], "prima enter the merchant and the goldsmith gold i": [0, 65535], "enter the merchant and the goldsmith gold i am": [0, 65535], "the merchant and the goldsmith gold i am sorry": [0, 65535], "merchant and the goldsmith gold i am sorry sir": [0, 65535], "and the goldsmith gold i am sorry sir that": [0, 65535], "the goldsmith gold i am sorry sir that i": [0, 65535], "goldsmith gold i am sorry sir that i haue": [0, 65535], "gold i am sorry sir that i haue hindred": [0, 65535], "i am sorry sir that i haue hindred you": [0, 65535], "am sorry sir that i haue hindred you but": [0, 65535], "sorry sir that i haue hindred you but i": [0, 65535], "sir that i haue hindred you but i protest": [0, 65535], "that i haue hindred you but i protest he": [0, 65535], "i haue hindred you but i protest he had": [0, 65535], "haue hindred you but i protest he had the": [0, 65535], "hindred you but i protest he had the chaine": [0, 65535], "you but i protest he had the chaine of": [0, 65535], "but i protest he had the chaine of me": [0, 65535], "i protest he had the chaine of me though": [0, 65535], "protest he had the chaine of me though most": [0, 65535], "he had the chaine of me though most dishonestly": [0, 65535], "had the chaine of me though most dishonestly he": [0, 65535], "the chaine of me though most dishonestly he doth": [0, 65535], "chaine of me though most dishonestly he doth denie": [0, 65535], "of me though most dishonestly he doth denie it": [0, 65535], "me though most dishonestly he doth denie it mar": [0, 65535], "though most dishonestly he doth denie it mar how": [0, 65535], "most dishonestly he doth denie it mar how is": [0, 65535], "dishonestly he doth denie it mar how is the": [0, 65535], "he doth denie it mar how is the man": [0, 65535], "doth denie it mar how is the man esteem'd": [0, 65535], "denie it mar how is the man esteem'd heere": [0, 65535], "it mar how is the man esteem'd heere in": [0, 65535], "mar how is the man esteem'd heere in the": [0, 65535], "how is the man esteem'd heere in the citie": [0, 65535], "is the man esteem'd heere in the citie gold": [0, 65535], "the man esteem'd heere in the citie gold of": [0, 65535], "man esteem'd heere in the citie gold of very": [0, 65535], "esteem'd heere in the citie gold of very reuerent": [0, 65535], "heere in the citie gold of very reuerent reputation": [0, 65535], "in the citie gold of very reuerent reputation sir": [0, 65535], "the citie gold of very reuerent reputation sir of": [0, 65535], "citie gold of very reuerent reputation sir of credit": [0, 65535], "gold of very reuerent reputation sir of credit infinite": [0, 65535], "of very reuerent reputation sir of credit infinite highly": [0, 65535], "very reuerent reputation sir of credit infinite highly belou'd": [0, 65535], "reuerent reputation sir of credit infinite highly belou'd second": [0, 65535], "reputation sir of credit infinite highly belou'd second to": [0, 65535], "sir of credit infinite highly belou'd second to none": [0, 65535], "of credit infinite highly belou'd second to none that": [0, 65535], "credit infinite highly belou'd second to none that liues": [0, 65535], "infinite highly belou'd second to none that liues heere": [0, 65535], "highly belou'd second to none that liues heere in": [0, 65535], "belou'd second to none that liues heere in the": [0, 65535], "second to none that liues heere in the citie": [0, 65535], "to none that liues heere in the citie his": [0, 65535], "none that liues heere in the citie his word": [0, 65535], "that liues heere in the citie his word might": [0, 65535], "liues heere in the citie his word might beare": [0, 65535], "heere in the citie his word might beare my": [0, 65535], "in the citie his word might beare my wealth": [0, 65535], "the citie his word might beare my wealth at": [0, 65535], "citie his word might beare my wealth at any": [0, 65535], "his word might beare my wealth at any time": [0, 65535], "word might beare my wealth at any time mar": [0, 65535], "might beare my wealth at any time mar speake": [0, 65535], "beare my wealth at any time mar speake softly": [0, 65535], "my wealth at any time mar speake softly yonder": [0, 65535], "wealth at any time mar speake softly yonder as": [0, 65535], "at any time mar speake softly yonder as i": [0, 65535], "any time mar speake softly yonder as i thinke": [0, 65535], "time mar speake softly yonder as i thinke he": [0, 65535], "mar speake softly yonder as i thinke he walkes": [0, 65535], "speake softly yonder as i thinke he walkes enter": [0, 65535], "softly yonder as i thinke he walkes enter antipholus": [0, 65535], "yonder as i thinke he walkes enter antipholus and": [0, 65535], "as i thinke he walkes enter antipholus and dromio": [0, 65535], "i thinke he walkes enter antipholus and dromio againe": [0, 65535], "thinke he walkes enter antipholus and dromio againe gold": [0, 65535], "he walkes enter antipholus and dromio againe gold 'tis": [0, 65535], "walkes enter antipholus and dromio againe gold 'tis so": [0, 65535], "enter antipholus and dromio againe gold 'tis so and": [0, 65535], "antipholus and dromio againe gold 'tis so and that": [0, 65535], "and dromio againe gold 'tis so and that selfe": [0, 65535], "dromio againe gold 'tis so and that selfe chaine": [0, 65535], "againe gold 'tis so and that selfe chaine about": [0, 65535], "gold 'tis so and that selfe chaine about his": [0, 65535], "'tis so and that selfe chaine about his necke": [0, 65535], "so and that selfe chaine about his necke which": [0, 65535], "and that selfe chaine about his necke which he": [0, 65535], "that selfe chaine about his necke which he forswore": [0, 65535], "selfe chaine about his necke which he forswore most": [0, 65535], "chaine about his necke which he forswore most monstrously": [0, 65535], "about his necke which he forswore most monstrously to": [0, 65535], "his necke which he forswore most monstrously to haue": [0, 65535], "necke which he forswore most monstrously to haue good": [0, 65535], "which he forswore most monstrously to haue good sir": [0, 65535], "he forswore most monstrously to haue good sir draw": [0, 65535], "forswore most monstrously to haue good sir draw neere": [0, 65535], "most monstrously to haue good sir draw neere to": [0, 65535], "monstrously to haue good sir draw neere to me": [0, 65535], "to haue good sir draw neere to me ile": [0, 65535], "haue good sir draw neere to me ile speake": [0, 65535], "good sir draw neere to me ile speake to": [0, 65535], "sir draw neere to me ile speake to him": [0, 65535], "draw neere to me ile speake to him signior": [0, 65535], "neere to me ile speake to him signior antipholus": [0, 65535], "to me ile speake to him signior antipholus i": [0, 65535], "me ile speake to him signior antipholus i wonder": [0, 65535], "ile speake to him signior antipholus i wonder much": [0, 65535], "speake to him signior antipholus i wonder much that": [0, 65535], "to him signior antipholus i wonder much that you": [0, 65535], "him signior antipholus i wonder much that you would": [0, 65535], "signior antipholus i wonder much that you would put": [0, 65535], "antipholus i wonder much that you would put me": [0, 65535], "i wonder much that you would put me to": [0, 65535], "wonder much that you would put me to this": [0, 65535], "much that you would put me to this shame": [0, 65535], "that you would put me to this shame and": [0, 65535], "you would put me to this shame and trouble": [0, 65535], "would put me to this shame and trouble and": [0, 65535], "put me to this shame and trouble and not": [0, 65535], "me to this shame and trouble and not without": [0, 65535], "to this shame and trouble and not without some": [0, 65535], "this shame and trouble and not without some scandall": [0, 65535], "shame and trouble and not without some scandall to": [0, 65535], "and trouble and not without some scandall to your": [0, 65535], "trouble and not without some scandall to your selfe": [0, 65535], "and not without some scandall to your selfe with": [0, 65535], "not without some scandall to your selfe with circumstance": [0, 65535], "without some scandall to your selfe with circumstance and": [0, 65535], "some scandall to your selfe with circumstance and oaths": [0, 65535], "scandall to your selfe with circumstance and oaths so": [0, 65535], "to your selfe with circumstance and oaths so to": [0, 65535], "your selfe with circumstance and oaths so to denie": [0, 65535], "selfe with circumstance and oaths so to denie this": [0, 65535], "with circumstance and oaths so to denie this chaine": [0, 65535], "circumstance and oaths so to denie this chaine which": [0, 65535], "and oaths so to denie this chaine which now": [0, 65535], "oaths so to denie this chaine which now you": [0, 65535], "so to denie this chaine which now you weare": [0, 65535], "to denie this chaine which now you weare so": [0, 65535], "denie this chaine which now you weare so openly": [0, 65535], "this chaine which now you weare so openly beside": [0, 65535], "chaine which now you weare so openly beside the": [0, 65535], "which now you weare so openly beside the charge": [0, 65535], "now you weare so openly beside the charge the": [0, 65535], "you weare so openly beside the charge the shame": [0, 65535], "weare so openly beside the charge the shame imprisonment": [0, 65535], "so openly beside the charge the shame imprisonment you": [0, 65535], "openly beside the charge the shame imprisonment you haue": [0, 65535], "beside the charge the shame imprisonment you haue done": [0, 65535], "the charge the shame imprisonment you haue done wrong": [0, 65535], "charge the shame imprisonment you haue done wrong to": [0, 65535], "the shame imprisonment you haue done wrong to this": [0, 65535], "shame imprisonment you haue done wrong to this my": [0, 65535], "imprisonment you haue done wrong to this my honest": [0, 65535], "you haue done wrong to this my honest friend": [0, 65535], "haue done wrong to this my honest friend who": [0, 65535], "done wrong to this my honest friend who but": [0, 65535], "wrong to this my honest friend who but for": [0, 65535], "to this my honest friend who but for staying": [0, 65535], "this my honest friend who but for staying on": [0, 65535], "my honest friend who but for staying on our": [0, 65535], "honest friend who but for staying on our controuersie": [0, 65535], "friend who but for staying on our controuersie had": [0, 65535], "who but for staying on our controuersie had hoisted": [0, 65535], "but for staying on our controuersie had hoisted saile": [0, 65535], "for staying on our controuersie had hoisted saile and": [0, 65535], "staying on our controuersie had hoisted saile and put": [0, 65535], "on our controuersie had hoisted saile and put to": [0, 65535], "our controuersie had hoisted saile and put to sea": [0, 65535], "controuersie had hoisted saile and put to sea to": [0, 65535], "had hoisted saile and put to sea to day": [0, 65535], "hoisted saile and put to sea to day this": [0, 65535], "saile and put to sea to day this chaine": [0, 65535], "and put to sea to day this chaine you": [0, 65535], "put to sea to day this chaine you had": [0, 65535], "to sea to day this chaine you had of": [0, 65535], "sea to day this chaine you had of me": [0, 65535], "to day this chaine you had of me can": [0, 65535], "day this chaine you had of me can you": [0, 65535], "this chaine you had of me can you deny": [0, 65535], "chaine you had of me can you deny it": [0, 65535], "you had of me can you deny it ant": [0, 65535], "had of me can you deny it ant i": [0, 65535], "of me can you deny it ant i thinke": [0, 65535], "me can you deny it ant i thinke i": [0, 65535], "can you deny it ant i thinke i had": [0, 65535], "you deny it ant i thinke i had i": [0, 65535], "deny it ant i thinke i had i neuer": [0, 65535], "it ant i thinke i had i neuer did": [0, 65535], "ant i thinke i had i neuer did deny": [0, 65535], "i thinke i had i neuer did deny it": [0, 65535], "thinke i had i neuer did deny it mar": [0, 65535], "i had i neuer did deny it mar yes": [0, 65535], "had i neuer did deny it mar yes that": [0, 65535], "i neuer did deny it mar yes that you": [0, 65535], "neuer did deny it mar yes that you did": [0, 65535], "did deny it mar yes that you did sir": [0, 65535], "deny it mar yes that you did sir and": [0, 65535], "it mar yes that you did sir and forswore": [0, 65535], "mar yes that you did sir and forswore it": [0, 65535], "yes that you did sir and forswore it too": [0, 65535], "that you did sir and forswore it too ant": [0, 65535], "you did sir and forswore it too ant who": [0, 65535], "did sir and forswore it too ant who heard": [0, 65535], "sir and forswore it too ant who heard me": [0, 65535], "and forswore it too ant who heard me to": [0, 65535], "forswore it too ant who heard me to denie": [0, 65535], "it too ant who heard me to denie it": [0, 65535], "too ant who heard me to denie it or": [0, 65535], "ant who heard me to denie it or forsweare": [0, 65535], "who heard me to denie it or forsweare it": [0, 65535], "heard me to denie it or forsweare it mar": [0, 65535], "me to denie it or forsweare it mar these": [0, 65535], "to denie it or forsweare it mar these eares": [0, 65535], "denie it or forsweare it mar these eares of": [0, 65535], "it or forsweare it mar these eares of mine": [0, 65535], "or forsweare it mar these eares of mine thou": [0, 65535], "forsweare it mar these eares of mine thou knowst": [0, 65535], "it mar these eares of mine thou knowst did": [0, 65535], "mar these eares of mine thou knowst did hear": [0, 65535], "these eares of mine thou knowst did hear thee": [0, 65535], "eares of mine thou knowst did hear thee fie": [0, 65535], "of mine thou knowst did hear thee fie on": [0, 65535], "mine thou knowst did hear thee fie on thee": [0, 65535], "thou knowst did hear thee fie on thee wretch": [0, 65535], "knowst did hear thee fie on thee wretch 'tis": [0, 65535], "did hear thee fie on thee wretch 'tis pitty": [0, 65535], "hear thee fie on thee wretch 'tis pitty that": [0, 65535], "thee fie on thee wretch 'tis pitty that thou": [0, 65535], "fie on thee wretch 'tis pitty that thou liu'st": [0, 65535], "on thee wretch 'tis pitty that thou liu'st to": [0, 65535], "thee wretch 'tis pitty that thou liu'st to walke": [0, 65535], "wretch 'tis pitty that thou liu'st to walke where": [0, 65535], "'tis pitty that thou liu'st to walke where any": [0, 65535], "pitty that thou liu'st to walke where any honest": [0, 65535], "that thou liu'st to walke where any honest men": [0, 65535], "thou liu'st to walke where any honest men resort": [0, 65535], "liu'st to walke where any honest men resort ant": [0, 65535], "to walke where any honest men resort ant thou": [0, 65535], "walke where any honest men resort ant thou art": [0, 65535], "where any honest men resort ant thou art a": [0, 65535], "any honest men resort ant thou art a villaine": [0, 65535], "honest men resort ant thou art a villaine to": [0, 65535], "men resort ant thou art a villaine to impeach": [0, 65535], "resort ant thou art a villaine to impeach me": [0, 65535], "ant thou art a villaine to impeach me thus": [0, 65535], "thou art a villaine to impeach me thus ile": [0, 65535], "art a villaine to impeach me thus ile proue": [0, 65535], "a villaine to impeach me thus ile proue mine": [0, 65535], "villaine to impeach me thus ile proue mine honor": [0, 65535], "to impeach me thus ile proue mine honor and": [0, 65535], "impeach me thus ile proue mine honor and mine": [0, 65535], "me thus ile proue mine honor and mine honestie": [0, 65535], "thus ile proue mine honor and mine honestie against": [0, 65535], "ile proue mine honor and mine honestie against thee": [0, 65535], "proue mine honor and mine honestie against thee presently": [0, 65535], "mine honor and mine honestie against thee presently if": [0, 65535], "honor and mine honestie against thee presently if thou": [0, 65535], "and mine honestie against thee presently if thou dar'st": [0, 65535], "mine honestie against thee presently if thou dar'st stand": [0, 65535], "honestie against thee presently if thou dar'st stand mar": [0, 65535], "against thee presently if thou dar'st stand mar i": [0, 65535], "thee presently if thou dar'st stand mar i dare": [0, 65535], "presently if thou dar'st stand mar i dare and": [0, 65535], "if thou dar'st stand mar i dare and do": [0, 65535], "thou dar'st stand mar i dare and do defie": [0, 65535], "dar'st stand mar i dare and do defie thee": [0, 65535], "stand mar i dare and do defie thee for": [0, 65535], "mar i dare and do defie thee for a": [0, 65535], "i dare and do defie thee for a villaine": [0, 65535], "dare and do defie thee for a villaine they": [0, 65535], "and do defie thee for a villaine they draw": [0, 65535], "do defie thee for a villaine they draw enter": [0, 65535], "defie thee for a villaine they draw enter adriana": [0, 65535], "thee for a villaine they draw enter adriana luciana": [0, 65535], "for a villaine they draw enter adriana luciana courtezan": [0, 65535], "a villaine they draw enter adriana luciana courtezan others": [0, 65535], "villaine they draw enter adriana luciana courtezan others adr": [0, 65535], "they draw enter adriana luciana courtezan others adr hold": [0, 65535], "draw enter adriana luciana courtezan others adr hold hurt": [0, 65535], "enter adriana luciana courtezan others adr hold hurt him": [0, 65535], "adriana luciana courtezan others adr hold hurt him not": [0, 65535], "luciana courtezan others adr hold hurt him not for": [0, 65535], "courtezan others adr hold hurt him not for god": [0, 65535], "others adr hold hurt him not for god sake": [0, 65535], "adr hold hurt him not for god sake he": [0, 65535], "hold hurt him not for god sake he is": [0, 65535], "hurt him not for god sake he is mad": [0, 65535], "him not for god sake he is mad some": [0, 65535], "not for god sake he is mad some get": [0, 65535], "for god sake he is mad some get within": [0, 65535], "god sake he is mad some get within him": [0, 65535], "sake he is mad some get within him take": [0, 65535], "he is mad some get within him take his": [0, 65535], "is mad some get within him take his sword": [0, 65535], "mad some get within him take his sword away": [0, 65535], "some get within him take his sword away binde": [0, 65535], "get within him take his sword away binde dromio": [0, 65535], "within him take his sword away binde dromio too": [0, 65535], "him take his sword away binde dromio too and": [0, 65535], "take his sword away binde dromio too and beare": [0, 65535], "his sword away binde dromio too and beare them": [0, 65535], "sword away binde dromio too and beare them to": [0, 65535], "away binde dromio too and beare them to my": [0, 65535], "binde dromio too and beare them to my house": [0, 65535], "dromio too and beare them to my house s": [0, 65535], "too and beare them to my house s dro": [0, 65535], "and beare them to my house s dro runne": [0, 65535], "beare them to my house s dro runne master": [0, 65535], "them to my house s dro runne master run": [0, 65535], "to my house s dro runne master run for": [0, 65535], "my house s dro runne master run for gods": [0, 65535], "house s dro runne master run for gods sake": [0, 65535], "s dro runne master run for gods sake take": [0, 65535], "dro runne master run for gods sake take a": [0, 65535], "runne master run for gods sake take a house": [0, 65535], "master run for gods sake take a house this": [0, 65535], "run for gods sake take a house this is": [0, 65535], "for gods sake take a house this is some": [0, 65535], "gods sake take a house this is some priorie": [0, 65535], "sake take a house this is some priorie in": [0, 65535], "take a house this is some priorie in or": [0, 65535], "a house this is some priorie in or we": [0, 65535], "house this is some priorie in or we are": [0, 65535], "this is some priorie in or we are spoyl'd": [0, 65535], "is some priorie in or we are spoyl'd exeunt": [0, 65535], "some priorie in or we are spoyl'd exeunt to": [0, 65535], "priorie in or we are spoyl'd exeunt to the": [0, 65535], "in or we are spoyl'd exeunt to the priorie": [0, 65535], "or we are spoyl'd exeunt to the priorie enter": [0, 65535], "we are spoyl'd exeunt to the priorie enter ladie": [0, 65535], "are spoyl'd exeunt to the priorie enter ladie abbesse": [0, 65535], "spoyl'd exeunt to the priorie enter ladie abbesse ab": [0, 65535], "exeunt to the priorie enter ladie abbesse ab be": [0, 65535], "to the priorie enter ladie abbesse ab be quiet": [0, 65535], "the priorie enter ladie abbesse ab be quiet people": [0, 65535], "priorie enter ladie abbesse ab be quiet people wherefore": [0, 65535], "enter ladie abbesse ab be quiet people wherefore throng": [0, 65535], "ladie abbesse ab be quiet people wherefore throng you": [0, 65535], "abbesse ab be quiet people wherefore throng you hither": [0, 65535], "ab be quiet people wherefore throng you hither adr": [0, 65535], "be quiet people wherefore throng you hither adr to": [0, 65535], "quiet people wherefore throng you hither adr to fetch": [0, 65535], "people wherefore throng you hither adr to fetch my": [0, 65535], "wherefore throng you hither adr to fetch my poore": [0, 65535], "throng you hither adr to fetch my poore distracted": [0, 65535], "you hither adr to fetch my poore distracted husband": [0, 65535], "hither adr to fetch my poore distracted husband hence": [0, 65535], "adr to fetch my poore distracted husband hence let": [0, 65535], "to fetch my poore distracted husband hence let vs": [0, 65535], "fetch my poore distracted husband hence let vs come": [0, 65535], "my poore distracted husband hence let vs come in": [0, 65535], "poore distracted husband hence let vs come in that": [0, 65535], "distracted husband hence let vs come in that we": [0, 65535], "husband hence let vs come in that we may": [0, 65535], "hence let vs come in that we may binde": [0, 65535], "let vs come in that we may binde him": [0, 65535], "vs come in that we may binde him fast": [0, 65535], "come in that we may binde him fast and": [0, 65535], "in that we may binde him fast and beare": [0, 65535], "that we may binde him fast and beare him": [0, 65535], "we may binde him fast and beare him home": [0, 65535], "may binde him fast and beare him home for": [0, 65535], "binde him fast and beare him home for his": [0, 65535], "him fast and beare him home for his recouerie": [0, 65535], "fast and beare him home for his recouerie gold": [0, 65535], "and beare him home for his recouerie gold i": [0, 65535], "beare him home for his recouerie gold i knew": [0, 65535], "him home for his recouerie gold i knew he": [0, 65535], "home for his recouerie gold i knew he was": [0, 65535], "for his recouerie gold i knew he was not": [0, 65535], "his recouerie gold i knew he was not in": [0, 65535], "recouerie gold i knew he was not in his": [0, 65535], "gold i knew he was not in his perfect": [0, 65535], "i knew he was not in his perfect wits": [0, 65535], "knew he was not in his perfect wits mar": [0, 65535], "he was not in his perfect wits mar i": [0, 65535], "was not in his perfect wits mar i am": [0, 65535], "not in his perfect wits mar i am sorry": [0, 65535], "in his perfect wits mar i am sorry now": [0, 65535], "his perfect wits mar i am sorry now that": [0, 65535], "perfect wits mar i am sorry now that i": [0, 65535], "wits mar i am sorry now that i did": [0, 65535], "mar i am sorry now that i did draw": [0, 65535], "i am sorry now that i did draw on": [0, 65535], "am sorry now that i did draw on him": [0, 65535], "sorry now that i did draw on him ab": [0, 65535], "now that i did draw on him ab how": [0, 65535], "that i did draw on him ab how long": [0, 65535], "i did draw on him ab how long hath": [0, 65535], "did draw on him ab how long hath this": [0, 65535], "draw on him ab how long hath this possession": [0, 65535], "on him ab how long hath this possession held": [0, 65535], "him ab how long hath this possession held the": [0, 65535], "ab how long hath this possession held the man": [0, 65535], "how long hath this possession held the man adr": [0, 65535], "long hath this possession held the man adr this": [0, 65535], "hath this possession held the man adr this weeke": [0, 65535], "this possession held the man adr this weeke he": [0, 65535], "possession held the man adr this weeke he hath": [0, 65535], "held the man adr this weeke he hath beene": [0, 65535], "the man adr this weeke he hath beene heauie": [0, 65535], "man adr this weeke he hath beene heauie sower": [0, 65535], "adr this weeke he hath beene heauie sower sad": [0, 65535], "this weeke he hath beene heauie sower sad and": [0, 65535], "weeke he hath beene heauie sower sad and much": [0, 65535], "he hath beene heauie sower sad and much different": [0, 65535], "hath beene heauie sower sad and much different from": [0, 65535], "beene heauie sower sad and much different from the": [0, 65535], "heauie sower sad and much different from the man": [0, 65535], "sower sad and much different from the man he": [0, 65535], "sad and much different from the man he was": [0, 65535], "and much different from the man he was but": [0, 65535], "much different from the man he was but till": [0, 65535], "different from the man he was but till this": [0, 65535], "from the man he was but till this afternoone": [0, 65535], "the man he was but till this afternoone his": [0, 65535], "man he was but till this afternoone his passion": [0, 65535], "he was but till this afternoone his passion ne're": [0, 65535], "was but till this afternoone his passion ne're brake": [0, 65535], "but till this afternoone his passion ne're brake into": [0, 65535], "till this afternoone his passion ne're brake into extremity": [0, 65535], "this afternoone his passion ne're brake into extremity of": [0, 65535], "afternoone his passion ne're brake into extremity of rage": [0, 65535], "his passion ne're brake into extremity of rage ab": [0, 65535], "passion ne're brake into extremity of rage ab hath": [0, 65535], "ne're brake into extremity of rage ab hath he": [0, 65535], "brake into extremity of rage ab hath he not": [0, 65535], "into extremity of rage ab hath he not lost": [0, 65535], "extremity of rage ab hath he not lost much": [0, 65535], "of rage ab hath he not lost much wealth": [0, 65535], "rage ab hath he not lost much wealth by": [0, 65535], "ab hath he not lost much wealth by wrack": [0, 65535], "hath he not lost much wealth by wrack of": [0, 65535], "he not lost much wealth by wrack of sea": [0, 65535], "not lost much wealth by wrack of sea buried": [0, 65535], "lost much wealth by wrack of sea buried some": [0, 65535], "much wealth by wrack of sea buried some deere": [0, 65535], "wealth by wrack of sea buried some deere friend": [0, 65535], "by wrack of sea buried some deere friend hath": [0, 65535], "wrack of sea buried some deere friend hath not": [0, 65535], "of sea buried some deere friend hath not else": [0, 65535], "sea buried some deere friend hath not else his": [0, 65535], "buried some deere friend hath not else his eye": [0, 65535], "some deere friend hath not else his eye stray'd": [0, 65535], "deere friend hath not else his eye stray'd his": [0, 65535], "friend hath not else his eye stray'd his affection": [0, 65535], "hath not else his eye stray'd his affection in": [0, 65535], "not else his eye stray'd his affection in vnlawfull": [0, 65535], "else his eye stray'd his affection in vnlawfull loue": [0, 65535], "his eye stray'd his affection in vnlawfull loue a": [0, 65535], "eye stray'd his affection in vnlawfull loue a sinne": [0, 65535], "stray'd his affection in vnlawfull loue a sinne preuailing": [0, 65535], "his affection in vnlawfull loue a sinne preuailing much": [0, 65535], "affection in vnlawfull loue a sinne preuailing much in": [0, 65535], "in vnlawfull loue a sinne preuailing much in youthfull": [0, 65535], "vnlawfull loue a sinne preuailing much in youthfull men": [0, 65535], "loue a sinne preuailing much in youthfull men who": [0, 65535], "a sinne preuailing much in youthfull men who giue": [0, 65535], "sinne preuailing much in youthfull men who giue their": [0, 65535], "preuailing much in youthfull men who giue their eies": [0, 65535], "much in youthfull men who giue their eies the": [0, 65535], "in youthfull men who giue their eies the liberty": [0, 65535], "youthfull men who giue their eies the liberty of": [0, 65535], "men who giue their eies the liberty of gazing": [0, 65535], "who giue their eies the liberty of gazing which": [0, 65535], "giue their eies the liberty of gazing which of": [0, 65535], "their eies the liberty of gazing which of these": [0, 65535], "eies the liberty of gazing which of these sorrowes": [0, 65535], "the liberty of gazing which of these sorrowes is": [0, 65535], "liberty of gazing which of these sorrowes is he": [0, 65535], "of gazing which of these sorrowes is he subiect": [0, 65535], "gazing which of these sorrowes is he subiect too": [0, 65535], "which of these sorrowes is he subiect too adr": [0, 65535], "of these sorrowes is he subiect too adr to": [0, 65535], "these sorrowes is he subiect too adr to none": [0, 65535], "sorrowes is he subiect too adr to none of": [0, 65535], "is he subiect too adr to none of these": [0, 65535], "he subiect too adr to none of these except": [0, 65535], "subiect too adr to none of these except it": [0, 65535], "too adr to none of these except it be": [0, 65535], "adr to none of these except it be the": [0, 65535], "to none of these except it be the last": [0, 65535], "none of these except it be the last namely": [0, 65535], "of these except it be the last namely some": [0, 65535], "these except it be the last namely some loue": [0, 65535], "except it be the last namely some loue that": [0, 65535], "it be the last namely some loue that drew": [0, 65535], "be the last namely some loue that drew him": [0, 65535], "the last namely some loue that drew him oft": [0, 65535], "last namely some loue that drew him oft from": [0, 65535], "namely some loue that drew him oft from home": [0, 65535], "some loue that drew him oft from home ab": [0, 65535], "loue that drew him oft from home ab you": [0, 65535], "that drew him oft from home ab you should": [0, 65535], "drew him oft from home ab you should for": [0, 65535], "him oft from home ab you should for that": [0, 65535], "oft from home ab you should for that haue": [0, 65535], "from home ab you should for that haue reprehended": [0, 65535], "home ab you should for that haue reprehended him": [0, 65535], "ab you should for that haue reprehended him adr": [0, 65535], "you should for that haue reprehended him adr why": [0, 65535], "should for that haue reprehended him adr why so": [0, 65535], "for that haue reprehended him adr why so i": [0, 65535], "that haue reprehended him adr why so i did": [0, 65535], "haue reprehended him adr why so i did ab": [0, 65535], "reprehended him adr why so i did ab i": [0, 65535], "him adr why so i did ab i but": [0, 65535], "adr why so i did ab i but not": [0, 65535], "why so i did ab i but not rough": [0, 65535], "so i did ab i but not rough enough": [0, 65535], "i did ab i but not rough enough adr": [0, 65535], "did ab i but not rough enough adr as": [0, 65535], "ab i but not rough enough adr as roughly": [0, 65535], "i but not rough enough adr as roughly as": [0, 65535], "but not rough enough adr as roughly as my": [0, 65535], "not rough enough adr as roughly as my modestie": [0, 65535], "rough enough adr as roughly as my modestie would": [0, 65535], "enough adr as roughly as my modestie would let": [0, 65535], "adr as roughly as my modestie would let me": [0, 65535], "as roughly as my modestie would let me ab": [0, 65535], "roughly as my modestie would let me ab haply": [0, 65535], "as my modestie would let me ab haply in": [0, 65535], "my modestie would let me ab haply in priuate": [0, 65535], "modestie would let me ab haply in priuate adr": [0, 65535], "would let me ab haply in priuate adr and": [0, 65535], "let me ab haply in priuate adr and in": [0, 65535], "me ab haply in priuate adr and in assemblies": [0, 65535], "ab haply in priuate adr and in assemblies too": [0, 65535], "haply in priuate adr and in assemblies too ab": [0, 65535], "in priuate adr and in assemblies too ab i": [0, 65535], "priuate adr and in assemblies too ab i but": [0, 65535], "adr and in assemblies too ab i but not": [0, 65535], "and in assemblies too ab i but not enough": [0, 65535], "in assemblies too ab i but not enough adr": [0, 65535], "assemblies too ab i but not enough adr it": [0, 65535], "too ab i but not enough adr it was": [0, 65535], "ab i but not enough adr it was the": [0, 65535], "i but not enough adr it was the copie": [0, 65535], "but not enough adr it was the copie of": [0, 65535], "not enough adr it was the copie of our": [0, 65535], "enough adr it was the copie of our conference": [0, 65535], "adr it was the copie of our conference in": [0, 65535], "it was the copie of our conference in bed": [0, 65535], "was the copie of our conference in bed he": [0, 65535], "the copie of our conference in bed he slept": [0, 65535], "copie of our conference in bed he slept not": [0, 65535], "of our conference in bed he slept not for": [0, 65535], "our conference in bed he slept not for my": [0, 65535], "conference in bed he slept not for my vrging": [0, 65535], "in bed he slept not for my vrging it": [0, 65535], "bed he slept not for my vrging it at": [0, 65535], "he slept not for my vrging it at boord": [0, 65535], "slept not for my vrging it at boord he": [0, 65535], "not for my vrging it at boord he fed": [0, 65535], "for my vrging it at boord he fed not": [0, 65535], "my vrging it at boord he fed not for": [0, 65535], "vrging it at boord he fed not for my": [0, 65535], "it at boord he fed not for my vrging": [0, 65535], "at boord he fed not for my vrging it": [0, 65535], "boord he fed not for my vrging it alone": [0, 65535], "he fed not for my vrging it alone it": [0, 65535], "fed not for my vrging it alone it was": [0, 65535], "not for my vrging it alone it was the": [0, 65535], "for my vrging it alone it was the subiect": [0, 65535], "my vrging it alone it was the subiect of": [0, 65535], "vrging it alone it was the subiect of my": [0, 65535], "it alone it was the subiect of my theame": [0, 65535], "alone it was the subiect of my theame in": [0, 65535], "it was the subiect of my theame in company": [0, 65535], "was the subiect of my theame in company i": [0, 65535], "the subiect of my theame in company i often": [0, 65535], "subiect of my theame in company i often glanced": [0, 65535], "of my theame in company i often glanced it": [0, 65535], "my theame in company i often glanced it still": [0, 65535], "theame in company i often glanced it still did": [0, 65535], "in company i often glanced it still did i": [0, 65535], "company i often glanced it still did i tell": [0, 65535], "i often glanced it still did i tell him": [0, 65535], "often glanced it still did i tell him it": [0, 65535], "glanced it still did i tell him it was": [0, 65535], "it still did i tell him it was vilde": [0, 65535], "still did i tell him it was vilde and": [0, 65535], "did i tell him it was vilde and bad": [0, 65535], "i tell him it was vilde and bad ab": [0, 65535], "tell him it was vilde and bad ab and": [0, 65535], "him it was vilde and bad ab and thereof": [0, 65535], "it was vilde and bad ab and thereof came": [0, 65535], "was vilde and bad ab and thereof came it": [0, 65535], "vilde and bad ab and thereof came it that": [0, 65535], "and bad ab and thereof came it that the": [0, 65535], "bad ab and thereof came it that the man": [0, 65535], "ab and thereof came it that the man was": [0, 65535], "and thereof came it that the man was mad": [0, 65535], "thereof came it that the man was mad the": [0, 65535], "came it that the man was mad the venome": [0, 65535], "it that the man was mad the venome clamors": [0, 65535], "that the man was mad the venome clamors of": [0, 65535], "the man was mad the venome clamors of a": [0, 65535], "man was mad the venome clamors of a iealous": [0, 65535], "was mad the venome clamors of a iealous woman": [0, 65535], "mad the venome clamors of a iealous woman poisons": [0, 65535], "the venome clamors of a iealous woman poisons more": [0, 65535], "venome clamors of a iealous woman poisons more deadly": [0, 65535], "clamors of a iealous woman poisons more deadly then": [0, 65535], "of a iealous woman poisons more deadly then a": [0, 65535], "a iealous woman poisons more deadly then a mad": [0, 65535], "iealous woman poisons more deadly then a mad dogges": [0, 65535], "woman poisons more deadly then a mad dogges tooth": [0, 65535], "poisons more deadly then a mad dogges tooth it": [0, 65535], "more deadly then a mad dogges tooth it seemes": [0, 65535], "deadly then a mad dogges tooth it seemes his": [0, 65535], "then a mad dogges tooth it seemes his sleepes": [0, 65535], "a mad dogges tooth it seemes his sleepes were": [0, 65535], "mad dogges tooth it seemes his sleepes were hindred": [0, 65535], "dogges tooth it seemes his sleepes were hindred by": [0, 65535], "tooth it seemes his sleepes were hindred by thy": [0, 65535], "it seemes his sleepes were hindred by thy railing": [0, 65535], "seemes his sleepes were hindred by thy railing and": [0, 65535], "his sleepes were hindred by thy railing and thereof": [0, 65535], "sleepes were hindred by thy railing and thereof comes": [0, 65535], "were hindred by thy railing and thereof comes it": [0, 65535], "hindred by thy railing and thereof comes it that": [0, 65535], "by thy railing and thereof comes it that his": [0, 65535], "thy railing and thereof comes it that his head": [0, 65535], "railing and thereof comes it that his head is": [0, 65535], "and thereof comes it that his head is light": [0, 65535], "thereof comes it that his head is light thou": [0, 65535], "comes it that his head is light thou saist": [0, 65535], "it that his head is light thou saist his": [0, 65535], "that his head is light thou saist his meate": [0, 65535], "his head is light thou saist his meate was": [0, 65535], "head is light thou saist his meate was sawc'd": [0, 65535], "is light thou saist his meate was sawc'd with": [0, 65535], "light thou saist his meate was sawc'd with thy": [0, 65535], "thou saist his meate was sawc'd with thy vpbraidings": [0, 65535], "saist his meate was sawc'd with thy vpbraidings vnquiet": [0, 65535], "his meate was sawc'd with thy vpbraidings vnquiet meales": [0, 65535], "meate was sawc'd with thy vpbraidings vnquiet meales make": [0, 65535], "was sawc'd with thy vpbraidings vnquiet meales make ill": [0, 65535], "sawc'd with thy vpbraidings vnquiet meales make ill digestions": [0, 65535], "with thy vpbraidings vnquiet meales make ill digestions thereof": [0, 65535], "thy vpbraidings vnquiet meales make ill digestions thereof the": [0, 65535], "vpbraidings vnquiet meales make ill digestions thereof the raging": [0, 65535], "vnquiet meales make ill digestions thereof the raging fire": [0, 65535], "meales make ill digestions thereof the raging fire of": [0, 65535], "make ill digestions thereof the raging fire of feauer": [0, 65535], "ill digestions thereof the raging fire of feauer bred": [0, 65535], "digestions thereof the raging fire of feauer bred and": [0, 65535], "thereof the raging fire of feauer bred and what's": [0, 65535], "the raging fire of feauer bred and what's a": [0, 65535], "raging fire of feauer bred and what's a feauer": [0, 65535], "fire of feauer bred and what's a feauer but": [0, 65535], "of feauer bred and what's a feauer but a": [0, 65535], "feauer bred and what's a feauer but a fit": [0, 65535], "bred and what's a feauer but a fit of": [0, 65535], "and what's a feauer but a fit of madnesse": [0, 65535], "what's a feauer but a fit of madnesse thou": [0, 65535], "a feauer but a fit of madnesse thou sayest": [0, 65535], "feauer but a fit of madnesse thou sayest his": [0, 65535], "but a fit of madnesse thou sayest his sports": [0, 65535], "a fit of madnesse thou sayest his sports were": [0, 65535], "fit of madnesse thou sayest his sports were hindred": [0, 65535], "of madnesse thou sayest his sports were hindred by": [0, 65535], "madnesse thou sayest his sports were hindred by thy": [0, 65535], "thou sayest his sports were hindred by thy bralles": [0, 65535], "sayest his sports were hindred by thy bralles sweet": [0, 65535], "his sports were hindred by thy bralles sweet recreation": [0, 65535], "sports were hindred by thy bralles sweet recreation barr'd": [0, 65535], "were hindred by thy bralles sweet recreation barr'd what": [0, 65535], "hindred by thy bralles sweet recreation barr'd what doth": [0, 65535], "by thy bralles sweet recreation barr'd what doth ensue": [0, 65535], "thy bralles sweet recreation barr'd what doth ensue but": [0, 65535], "bralles sweet recreation barr'd what doth ensue but moodie": [0, 65535], "sweet recreation barr'd what doth ensue but moodie and": [0, 65535], "recreation barr'd what doth ensue but moodie and dull": [0, 65535], "barr'd what doth ensue but moodie and dull melancholly": [0, 65535], "what doth ensue but moodie and dull melancholly kinsman": [0, 65535], "doth ensue but moodie and dull melancholly kinsman to": [0, 65535], "ensue but moodie and dull melancholly kinsman to grim": [0, 65535], "but moodie and dull melancholly kinsman to grim and": [0, 65535], "moodie and dull melancholly kinsman to grim and comfortlesse": [0, 65535], "and dull melancholly kinsman to grim and comfortlesse dispaire": [0, 65535], "dull melancholly kinsman to grim and comfortlesse dispaire and": [0, 65535], "melancholly kinsman to grim and comfortlesse dispaire and at": [0, 65535], "kinsman to grim and comfortlesse dispaire and at her": [0, 65535], "to grim and comfortlesse dispaire and at her heeles": [0, 65535], "grim and comfortlesse dispaire and at her heeles a": [0, 65535], "and comfortlesse dispaire and at her heeles a huge": [0, 65535], "comfortlesse dispaire and at her heeles a huge infectious": [0, 65535], "dispaire and at her heeles a huge infectious troope": [0, 65535], "and at her heeles a huge infectious troope of": [0, 65535], "at her heeles a huge infectious troope of pale": [0, 65535], "her heeles a huge infectious troope of pale distemperatures": [0, 65535], "heeles a huge infectious troope of pale distemperatures and": [0, 65535], "a huge infectious troope of pale distemperatures and foes": [0, 65535], "huge infectious troope of pale distemperatures and foes to": [0, 65535], "infectious troope of pale distemperatures and foes to life": [0, 65535], "troope of pale distemperatures and foes to life in": [0, 65535], "of pale distemperatures and foes to life in food": [0, 65535], "pale distemperatures and foes to life in food in": [0, 65535], "distemperatures and foes to life in food in sport": [0, 65535], "and foes to life in food in sport and": [0, 65535], "foes to life in food in sport and life": [0, 65535], "to life in food in sport and life preseruing": [0, 65535], "life in food in sport and life preseruing rest": [0, 65535], "in food in sport and life preseruing rest to": [0, 65535], "food in sport and life preseruing rest to be": [0, 65535], "in sport and life preseruing rest to be disturb'd": [0, 65535], "sport and life preseruing rest to be disturb'd would": [0, 65535], "and life preseruing rest to be disturb'd would mad": [0, 65535], "life preseruing rest to be disturb'd would mad or": [0, 65535], "preseruing rest to be disturb'd would mad or man": [0, 65535], "rest to be disturb'd would mad or man or": [0, 65535], "to be disturb'd would mad or man or beast": [0, 65535], "be disturb'd would mad or man or beast the": [0, 65535], "disturb'd would mad or man or beast the consequence": [0, 65535], "would mad or man or beast the consequence is": [0, 65535], "mad or man or beast the consequence is then": [0, 65535], "or man or beast the consequence is then thy": [0, 65535], "man or beast the consequence is then thy iealous": [0, 65535], "or beast the consequence is then thy iealous fits": [0, 65535], "beast the consequence is then thy iealous fits hath": [0, 65535], "the consequence is then thy iealous fits hath scar'd": [0, 65535], "consequence is then thy iealous fits hath scar'd thy": [0, 65535], "is then thy iealous fits hath scar'd thy husband": [0, 65535], "then thy iealous fits hath scar'd thy husband from": [0, 65535], "thy iealous fits hath scar'd thy husband from the": [0, 65535], "iealous fits hath scar'd thy husband from the vse": [0, 65535], "fits hath scar'd thy husband from the vse of": [0, 65535], "hath scar'd thy husband from the vse of wits": [0, 65535], "scar'd thy husband from the vse of wits luc": [0, 65535], "thy husband from the vse of wits luc she": [0, 65535], "husband from the vse of wits luc she neuer": [0, 65535], "from the vse of wits luc she neuer reprehended": [0, 65535], "the vse of wits luc she neuer reprehended him": [0, 65535], "vse of wits luc she neuer reprehended him but": [0, 65535], "of wits luc she neuer reprehended him but mildely": [0, 65535], "wits luc she neuer reprehended him but mildely when": [0, 65535], "luc she neuer reprehended him but mildely when he": [0, 65535], "she neuer reprehended him but mildely when he demean'd": [0, 65535], "neuer reprehended him but mildely when he demean'd himselfe": [0, 65535], "reprehended him but mildely when he demean'd himselfe rough": [0, 65535], "him but mildely when he demean'd himselfe rough rude": [0, 65535], "but mildely when he demean'd himselfe rough rude and": [0, 65535], "mildely when he demean'd himselfe rough rude and wildly": [0, 65535], "when he demean'd himselfe rough rude and wildly why": [0, 65535], "he demean'd himselfe rough rude and wildly why beare": [0, 65535], "demean'd himselfe rough rude and wildly why beare you": [0, 65535], "himselfe rough rude and wildly why beare you these": [0, 65535], "rough rude and wildly why beare you these rebukes": [0, 65535], "rude and wildly why beare you these rebukes and": [0, 65535], "and wildly why beare you these rebukes and answer": [0, 65535], "wildly why beare you these rebukes and answer not": [0, 65535], "why beare you these rebukes and answer not adri": [0, 65535], "beare you these rebukes and answer not adri she": [0, 65535], "you these rebukes and answer not adri she did": [0, 65535], "these rebukes and answer not adri she did betray": [0, 65535], "rebukes and answer not adri she did betray me": [0, 65535], "and answer not adri she did betray me to": [0, 65535], "answer not adri she did betray me to my": [0, 65535], "not adri she did betray me to my owne": [0, 65535], "adri she did betray me to my owne reproofe": [0, 65535], "she did betray me to my owne reproofe good": [0, 65535], "did betray me to my owne reproofe good people": [0, 65535], "betray me to my owne reproofe good people enter": [0, 65535], "me to my owne reproofe good people enter and": [0, 65535], "to my owne reproofe good people enter and lay": [0, 65535], "my owne reproofe good people enter and lay hold": [0, 65535], "owne reproofe good people enter and lay hold on": [0, 65535], "reproofe good people enter and lay hold on him": [0, 65535], "good people enter and lay hold on him ab": [0, 65535], "people enter and lay hold on him ab no": [0, 65535], "enter and lay hold on him ab no not": [0, 65535], "and lay hold on him ab no not a": [0, 65535], "lay hold on him ab no not a creature": [0, 65535], "hold on him ab no not a creature enters": [0, 65535], "on him ab no not a creature enters in": [0, 65535], "him ab no not a creature enters in my": [0, 65535], "ab no not a creature enters in my house": [0, 65535], "no not a creature enters in my house ad": [0, 65535], "not a creature enters in my house ad then": [0, 65535], "a creature enters in my house ad then let": [0, 65535], "creature enters in my house ad then let your": [0, 65535], "enters in my house ad then let your seruants": [0, 65535], "in my house ad then let your seruants bring": [0, 65535], "my house ad then let your seruants bring my": [0, 65535], "house ad then let your seruants bring my husband": [0, 65535], "ad then let your seruants bring my husband forth": [0, 65535], "then let your seruants bring my husband forth ab": [0, 65535], "let your seruants bring my husband forth ab neither": [0, 65535], "your seruants bring my husband forth ab neither he": [0, 65535], "seruants bring my husband forth ab neither he tooke": [0, 65535], "bring my husband forth ab neither he tooke this": [0, 65535], "my husband forth ab neither he tooke this place": [0, 65535], "husband forth ab neither he tooke this place for": [0, 65535], "forth ab neither he tooke this place for sanctuary": [0, 65535], "ab neither he tooke this place for sanctuary and": [0, 65535], "neither he tooke this place for sanctuary and it": [0, 65535], "he tooke this place for sanctuary and it shall": [0, 65535], "tooke this place for sanctuary and it shall priuiledge": [0, 65535], "this place for sanctuary and it shall priuiledge him": [0, 65535], "place for sanctuary and it shall priuiledge him from": [0, 65535], "for sanctuary and it shall priuiledge him from your": [0, 65535], "sanctuary and it shall priuiledge him from your hands": [0, 65535], "and it shall priuiledge him from your hands till": [0, 65535], "it shall priuiledge him from your hands till i": [0, 65535], "shall priuiledge him from your hands till i haue": [0, 65535], "priuiledge him from your hands till i haue brought": [0, 65535], "him from your hands till i haue brought him": [0, 65535], "from your hands till i haue brought him to": [0, 65535], "your hands till i haue brought him to his": [0, 65535], "hands till i haue brought him to his wits": [0, 65535], "till i haue brought him to his wits againe": [0, 65535], "i haue brought him to his wits againe or": [0, 65535], "haue brought him to his wits againe or loose": [0, 65535], "brought him to his wits againe or loose my": [0, 65535], "him to his wits againe or loose my labour": [0, 65535], "to his wits againe or loose my labour in": [0, 65535], "his wits againe or loose my labour in assaying": [0, 65535], "wits againe or loose my labour in assaying it": [0, 65535], "againe or loose my labour in assaying it adr": [0, 65535], "or loose my labour in assaying it adr i": [0, 65535], "loose my labour in assaying it adr i will": [0, 65535], "my labour in assaying it adr i will attend": [0, 65535], "labour in assaying it adr i will attend my": [0, 65535], "in assaying it adr i will attend my husband": [0, 65535], "assaying it adr i will attend my husband be": [0, 65535], "it adr i will attend my husband be his": [0, 65535], "adr i will attend my husband be his nurse": [0, 65535], "i will attend my husband be his nurse diet": [0, 65535], "will attend my husband be his nurse diet his": [0, 65535], "attend my husband be his nurse diet his sicknesse": [0, 65535], "my husband be his nurse diet his sicknesse for": [0, 65535], "husband be his nurse diet his sicknesse for it": [0, 65535], "be his nurse diet his sicknesse for it is": [0, 65535], "his nurse diet his sicknesse for it is my": [0, 65535], "nurse diet his sicknesse for it is my office": [0, 65535], "diet his sicknesse for it is my office and": [0, 65535], "his sicknesse for it is my office and will": [0, 65535], "sicknesse for it is my office and will haue": [0, 65535], "for it is my office and will haue no": [0, 65535], "it is my office and will haue no atturney": [0, 65535], "is my office and will haue no atturney but": [0, 65535], "my office and will haue no atturney but my": [0, 65535], "office and will haue no atturney but my selfe": [0, 65535], "and will haue no atturney but my selfe and": [0, 65535], "will haue no atturney but my selfe and therefore": [0, 65535], "haue no atturney but my selfe and therefore let": [0, 65535], "no atturney but my selfe and therefore let me": [0, 65535], "atturney but my selfe and therefore let me haue": [0, 65535], "but my selfe and therefore let me haue him": [0, 65535], "my selfe and therefore let me haue him home": [0, 65535], "selfe and therefore let me haue him home with": [0, 65535], "and therefore let me haue him home with me": [0, 65535], "therefore let me haue him home with me ab": [0, 65535], "let me haue him home with me ab be": [0, 65535], "me haue him home with me ab be patient": [0, 65535], "haue him home with me ab be patient for": [0, 65535], "him home with me ab be patient for i": [0, 65535], "home with me ab be patient for i will": [0, 65535], "with me ab be patient for i will not": [0, 65535], "me ab be patient for i will not let": [0, 65535], "ab be patient for i will not let him": [0, 65535], "be patient for i will not let him stirre": [0, 65535], "patient for i will not let him stirre till": [0, 65535], "for i will not let him stirre till i": [0, 65535], "i will not let him stirre till i haue": [0, 65535], "will not let him stirre till i haue vs'd": [0, 65535], "not let him stirre till i haue vs'd the": [0, 65535], "let him stirre till i haue vs'd the approoued": [0, 65535], "him stirre till i haue vs'd the approoued meanes": [0, 65535], "stirre till i haue vs'd the approoued meanes i": [0, 65535], "till i haue vs'd the approoued meanes i haue": [0, 65535], "i haue vs'd the approoued meanes i haue with": [0, 65535], "haue vs'd the approoued meanes i haue with wholsome": [0, 65535], "vs'd the approoued meanes i haue with wholsome sirrups": [0, 65535], "the approoued meanes i haue with wholsome sirrups drugges": [0, 65535], "approoued meanes i haue with wholsome sirrups drugges and": [0, 65535], "meanes i haue with wholsome sirrups drugges and holy": [0, 65535], "i haue with wholsome sirrups drugges and holy prayers": [0, 65535], "haue with wholsome sirrups drugges and holy prayers to": [0, 65535], "with wholsome sirrups drugges and holy prayers to make": [0, 65535], "wholsome sirrups drugges and holy prayers to make of": [0, 65535], "sirrups drugges and holy prayers to make of him": [0, 65535], "drugges and holy prayers to make of him a": [0, 65535], "and holy prayers to make of him a formall": [0, 65535], "holy prayers to make of him a formall man": [0, 65535], "prayers to make of him a formall man againe": [0, 65535], "to make of him a formall man againe it": [0, 65535], "make of him a formall man againe it is": [0, 65535], "of him a formall man againe it is a": [0, 65535], "him a formall man againe it is a branch": [0, 65535], "a formall man againe it is a branch and": [0, 65535], "formall man againe it is a branch and parcell": [0, 65535], "man againe it is a branch and parcell of": [0, 65535], "againe it is a branch and parcell of mine": [0, 65535], "it is a branch and parcell of mine oath": [0, 65535], "is a branch and parcell of mine oath a": [0, 65535], "a branch and parcell of mine oath a charitable": [0, 65535], "branch and parcell of mine oath a charitable dutie": [0, 65535], "and parcell of mine oath a charitable dutie of": [0, 65535], "parcell of mine oath a charitable dutie of my": [0, 65535], "of mine oath a charitable dutie of my order": [0, 65535], "mine oath a charitable dutie of my order therefore": [0, 65535], "oath a charitable dutie of my order therefore depart": [0, 65535], "a charitable dutie of my order therefore depart and": [0, 65535], "charitable dutie of my order therefore depart and leaue": [0, 65535], "dutie of my order therefore depart and leaue him": [0, 65535], "of my order therefore depart and leaue him heere": [0, 65535], "my order therefore depart and leaue him heere with": [0, 65535], "order therefore depart and leaue him heere with me": [0, 65535], "therefore depart and leaue him heere with me adr": [0, 65535], "depart and leaue him heere with me adr i": [0, 65535], "and leaue him heere with me adr i will": [0, 65535], "leaue him heere with me adr i will not": [0, 65535], "him heere with me adr i will not hence": [0, 65535], "heere with me adr i will not hence and": [0, 65535], "with me adr i will not hence and leaue": [0, 65535], "me adr i will not hence and leaue my": [0, 65535], "adr i will not hence and leaue my husband": [0, 65535], "i will not hence and leaue my husband heere": [0, 65535], "will not hence and leaue my husband heere and": [0, 65535], "not hence and leaue my husband heere and ill": [0, 65535], "hence and leaue my husband heere and ill it": [0, 65535], "and leaue my husband heere and ill it doth": [0, 65535], "leaue my husband heere and ill it doth beseeme": [0, 65535], "my husband heere and ill it doth beseeme your": [0, 65535], "husband heere and ill it doth beseeme your holinesse": [0, 65535], "heere and ill it doth beseeme your holinesse to": [0, 65535], "and ill it doth beseeme your holinesse to separate": [0, 65535], "ill it doth beseeme your holinesse to separate the": [0, 65535], "it doth beseeme your holinesse to separate the husband": [0, 65535], "doth beseeme your holinesse to separate the husband and": [0, 65535], "beseeme your holinesse to separate the husband and the": [0, 65535], "your holinesse to separate the husband and the wife": [0, 65535], "holinesse to separate the husband and the wife ab": [0, 65535], "to separate the husband and the wife ab be": [0, 65535], "separate the husband and the wife ab be quiet": [0, 65535], "the husband and the wife ab be quiet and": [0, 65535], "husband and the wife ab be quiet and depart": [0, 65535], "and the wife ab be quiet and depart thou": [0, 65535], "the wife ab be quiet and depart thou shalt": [0, 65535], "wife ab be quiet and depart thou shalt not": [0, 65535], "ab be quiet and depart thou shalt not haue": [0, 65535], "be quiet and depart thou shalt not haue him": [0, 65535], "quiet and depart thou shalt not haue him luc": [0, 65535], "and depart thou shalt not haue him luc complaine": [0, 65535], "depart thou shalt not haue him luc complaine vnto": [0, 65535], "thou shalt not haue him luc complaine vnto the": [0, 65535], "shalt not haue him luc complaine vnto the duke": [0, 65535], "not haue him luc complaine vnto the duke of": [0, 65535], "haue him luc complaine vnto the duke of this": [0, 65535], "him luc complaine vnto the duke of this indignity": [0, 65535], "luc complaine vnto the duke of this indignity adr": [0, 65535], "complaine vnto the duke of this indignity adr come": [0, 65535], "vnto the duke of this indignity adr come go": [0, 65535], "the duke of this indignity adr come go i": [0, 65535], "duke of this indignity adr come go i will": [0, 65535], "of this indignity adr come go i will fall": [0, 65535], "this indignity adr come go i will fall prostrate": [0, 65535], "indignity adr come go i will fall prostrate at": [0, 65535], "adr come go i will fall prostrate at his": [0, 65535], "come go i will fall prostrate at his feete": [0, 65535], "go i will fall prostrate at his feete and": [0, 65535], "i will fall prostrate at his feete and neuer": [0, 65535], "will fall prostrate at his feete and neuer rise": [0, 65535], "fall prostrate at his feete and neuer rise vntill": [0, 65535], "prostrate at his feete and neuer rise vntill my": [0, 65535], "at his feete and neuer rise vntill my teares": [0, 65535], "his feete and neuer rise vntill my teares and": [0, 65535], "feete and neuer rise vntill my teares and prayers": [0, 65535], "and neuer rise vntill my teares and prayers haue": [0, 65535], "neuer rise vntill my teares and prayers haue won": [0, 65535], "rise vntill my teares and prayers haue won his": [0, 65535], "vntill my teares and prayers haue won his grace": [0, 65535], "my teares and prayers haue won his grace to": [0, 65535], "teares and prayers haue won his grace to come": [0, 65535], "and prayers haue won his grace to come in": [0, 65535], "prayers haue won his grace to come in person": [0, 65535], "haue won his grace to come in person hither": [0, 65535], "won his grace to come in person hither and": [0, 65535], "his grace to come in person hither and take": [0, 65535], "grace to come in person hither and take perforce": [0, 65535], "to come in person hither and take perforce my": [0, 65535], "come in person hither and take perforce my husband": [0, 65535], "in person hither and take perforce my husband from": [0, 65535], "person hither and take perforce my husband from the": [0, 65535], "hither and take perforce my husband from the abbesse": [0, 65535], "and take perforce my husband from the abbesse mar": [0, 65535], "take perforce my husband from the abbesse mar by": [0, 65535], "perforce my husband from the abbesse mar by this": [0, 65535], "my husband from the abbesse mar by this i": [0, 65535], "husband from the abbesse mar by this i thinke": [0, 65535], "from the abbesse mar by this i thinke the": [0, 65535], "the abbesse mar by this i thinke the diall": [0, 65535], "abbesse mar by this i thinke the diall points": [0, 65535], "mar by this i thinke the diall points at": [0, 65535], "by this i thinke the diall points at fiue": [0, 65535], "this i thinke the diall points at fiue anon": [0, 65535], "i thinke the diall points at fiue anon i'me": [0, 65535], "thinke the diall points at fiue anon i'me sure": [0, 65535], "the diall points at fiue anon i'me sure the": [0, 65535], "diall points at fiue anon i'me sure the duke": [0, 65535], "points at fiue anon i'me sure the duke himselfe": [0, 65535], "at fiue anon i'me sure the duke himselfe in": [0, 65535], "fiue anon i'me sure the duke himselfe in person": [0, 65535], "anon i'me sure the duke himselfe in person comes": [0, 65535], "i'me sure the duke himselfe in person comes this": [0, 65535], "sure the duke himselfe in person comes this way": [0, 65535], "the duke himselfe in person comes this way to": [0, 65535], "duke himselfe in person comes this way to the": [0, 65535], "himselfe in person comes this way to the melancholly": [0, 65535], "in person comes this way to the melancholly vale": [0, 65535], "person comes this way to the melancholly vale the": [0, 65535], "comes this way to the melancholly vale the place": [0, 65535], "this way to the melancholly vale the place of": [0, 65535], "way to the melancholly vale the place of depth": [0, 65535], "to the melancholly vale the place of depth and": [0, 65535], "the melancholly vale the place of depth and sorrie": [0, 65535], "melancholly vale the place of depth and sorrie execution": [0, 65535], "vale the place of depth and sorrie execution behinde": [0, 65535], "the place of depth and sorrie execution behinde the": [0, 65535], "place of depth and sorrie execution behinde the ditches": [0, 65535], "of depth and sorrie execution behinde the ditches of": [0, 65535], "depth and sorrie execution behinde the ditches of the": [0, 65535], "and sorrie execution behinde the ditches of the abbey": [0, 65535], "sorrie execution behinde the ditches of the abbey heere": [0, 65535], "execution behinde the ditches of the abbey heere gold": [0, 65535], "behinde the ditches of the abbey heere gold vpon": [0, 65535], "the ditches of the abbey heere gold vpon what": [0, 65535], "ditches of the abbey heere gold vpon what cause": [0, 65535], "of the abbey heere gold vpon what cause mar": [0, 65535], "the abbey heere gold vpon what cause mar to": [0, 65535], "abbey heere gold vpon what cause mar to see": [0, 65535], "heere gold vpon what cause mar to see a": [0, 65535], "gold vpon what cause mar to see a reuerent": [0, 65535], "vpon what cause mar to see a reuerent siracusian": [0, 65535], "what cause mar to see a reuerent siracusian merchant": [0, 65535], "cause mar to see a reuerent siracusian merchant who": [0, 65535], "mar to see a reuerent siracusian merchant who put": [0, 65535], "to see a reuerent siracusian merchant who put vnluckily": [0, 65535], "see a reuerent siracusian merchant who put vnluckily into": [0, 65535], "a reuerent siracusian merchant who put vnluckily into this": [0, 65535], "reuerent siracusian merchant who put vnluckily into this bay": [0, 65535], "siracusian merchant who put vnluckily into this bay against": [0, 65535], "merchant who put vnluckily into this bay against the": [0, 65535], "who put vnluckily into this bay against the lawes": [0, 65535], "put vnluckily into this bay against the lawes and": [0, 65535], "vnluckily into this bay against the lawes and statutes": [0, 65535], "into this bay against the lawes and statutes of": [0, 65535], "this bay against the lawes and statutes of this": [0, 65535], "bay against the lawes and statutes of this towne": [0, 65535], "against the lawes and statutes of this towne beheaded": [0, 65535], "the lawes and statutes of this towne beheaded publikely": [0, 65535], "lawes and statutes of this towne beheaded publikely for": [0, 65535], "and statutes of this towne beheaded publikely for his": [0, 65535], "statutes of this towne beheaded publikely for his offence": [0, 65535], "of this towne beheaded publikely for his offence gold": [0, 65535], "this towne beheaded publikely for his offence gold see": [0, 65535], "towne beheaded publikely for his offence gold see where": [0, 65535], "beheaded publikely for his offence gold see where they": [0, 65535], "publikely for his offence gold see where they come": [0, 65535], "for his offence gold see where they come we": [0, 65535], "his offence gold see where they come we wil": [0, 65535], "offence gold see where they come we wil behold": [0, 65535], "gold see where they come we wil behold his": [0, 65535], "see where they come we wil behold his death": [0, 65535], "where they come we wil behold his death luc": [0, 65535], "they come we wil behold his death luc kneele": [0, 65535], "come we wil behold his death luc kneele to": [0, 65535], "we wil behold his death luc kneele to the": [0, 65535], "wil behold his death luc kneele to the duke": [0, 65535], "behold his death luc kneele to the duke before": [0, 65535], "his death luc kneele to the duke before he": [0, 65535], "death luc kneele to the duke before he passe": [0, 65535], "luc kneele to the duke before he passe the": [0, 65535], "kneele to the duke before he passe the abbey": [0, 65535], "to the duke before he passe the abbey enter": [0, 65535], "the duke before he passe the abbey enter the": [0, 65535], "duke before he passe the abbey enter the duke": [0, 65535], "before he passe the abbey enter the duke of": [0, 65535], "he passe the abbey enter the duke of ephesus": [0, 65535], "passe the abbey enter the duke of ephesus and": [0, 65535], "the abbey enter the duke of ephesus and the": [0, 65535], "abbey enter the duke of ephesus and the merchant": [0, 65535], "enter the duke of ephesus and the merchant of": [0, 65535], "the duke of ephesus and the merchant of siracuse": [0, 65535], "duke of ephesus and the merchant of siracuse bare": [0, 65535], "of ephesus and the merchant of siracuse bare head": [0, 65535], "ephesus and the merchant of siracuse bare head with": [0, 65535], "and the merchant of siracuse bare head with the": [0, 65535], "the merchant of siracuse bare head with the headsman": [0, 65535], "merchant of siracuse bare head with the headsman other": [0, 65535], "of siracuse bare head with the headsman other officers": [0, 65535], "siracuse bare head with the headsman other officers duke": [0, 65535], "bare head with the headsman other officers duke yet": [0, 65535], "head with the headsman other officers duke yet once": [0, 65535], "with the headsman other officers duke yet once againe": [0, 65535], "the headsman other officers duke yet once againe proclaime": [0, 65535], "headsman other officers duke yet once againe proclaime it": [0, 65535], "other officers duke yet once againe proclaime it publikely": [0, 65535], "officers duke yet once againe proclaime it publikely if": [0, 65535], "duke yet once againe proclaime it publikely if any": [0, 65535], "yet once againe proclaime it publikely if any friend": [0, 65535], "once againe proclaime it publikely if any friend will": [0, 65535], "againe proclaime it publikely if any friend will pay": [0, 65535], "proclaime it publikely if any friend will pay the": [0, 65535], "it publikely if any friend will pay the summe": [0, 65535], "publikely if any friend will pay the summe for": [0, 65535], "if any friend will pay the summe for him": [0, 65535], "any friend will pay the summe for him he": [0, 65535], "friend will pay the summe for him he shall": [0, 65535], "will pay the summe for him he shall not": [0, 65535], "pay the summe for him he shall not die": [0, 65535], "the summe for him he shall not die so": [0, 65535], "summe for him he shall not die so much": [0, 65535], "for him he shall not die so much we": [0, 65535], "him he shall not die so much we tender": [0, 65535], "he shall not die so much we tender him": [0, 65535], "shall not die so much we tender him adr": [0, 65535], "not die so much we tender him adr iustice": [0, 65535], "die so much we tender him adr iustice most": [0, 65535], "so much we tender him adr iustice most sacred": [0, 65535], "much we tender him adr iustice most sacred duke": [0, 65535], "we tender him adr iustice most sacred duke against": [0, 65535], "tender him adr iustice most sacred duke against the": [0, 65535], "him adr iustice most sacred duke against the abbesse": [0, 65535], "adr iustice most sacred duke against the abbesse duke": [0, 65535], "iustice most sacred duke against the abbesse duke she": [0, 65535], "most sacred duke against the abbesse duke she is": [0, 65535], "sacred duke against the abbesse duke she is a": [0, 65535], "duke against the abbesse duke she is a vertuous": [0, 65535], "against the abbesse duke she is a vertuous and": [0, 65535], "the abbesse duke she is a vertuous and a": [0, 65535], "abbesse duke she is a vertuous and a reuerend": [0, 65535], "duke she is a vertuous and a reuerend lady": [0, 65535], "she is a vertuous and a reuerend lady it": [0, 65535], "is a vertuous and a reuerend lady it cannot": [0, 65535], "a vertuous and a reuerend lady it cannot be": [0, 65535], "vertuous and a reuerend lady it cannot be that": [0, 65535], "and a reuerend lady it cannot be that she": [0, 65535], "a reuerend lady it cannot be that she hath": [0, 65535], "reuerend lady it cannot be that she hath done": [0, 65535], "lady it cannot be that she hath done thee": [0, 65535], "it cannot be that she hath done thee wrong": [0, 65535], "cannot be that she hath done thee wrong adr": [0, 65535], "be that she hath done thee wrong adr may": [0, 65535], "that she hath done thee wrong adr may it": [0, 65535], "she hath done thee wrong adr may it please": [0, 65535], "hath done thee wrong adr may it please your": [0, 65535], "done thee wrong adr may it please your grace": [0, 65535], "thee wrong adr may it please your grace antipholus": [0, 65535], "wrong adr may it please your grace antipholus my": [0, 65535], "adr may it please your grace antipholus my husba": [0, 65535], "may it please your grace antipholus my husba n": [0, 65535], "it please your grace antipholus my husba n d": [0, 65535], "please your grace antipholus my husba n d who": [0, 65535], "your grace antipholus my husba n d who i": [0, 65535], "grace antipholus my husba n d who i made": [0, 65535], "antipholus my husba n d who i made lord": [0, 65535], "my husba n d who i made lord of": [0, 65535], "husba n d who i made lord of me": [0, 65535], "n d who i made lord of me and": [0, 65535], "d who i made lord of me and all": [0, 65535], "who i made lord of me and all i": [0, 65535], "i made lord of me and all i had": [0, 65535], "made lord of me and all i had at": [0, 65535], "lord of me and all i had at your": [0, 65535], "of me and all i had at your important": [0, 65535], "me and all i had at your important letters": [0, 65535], "and all i had at your important letters this": [0, 65535], "all i had at your important letters this ill": [0, 65535], "i had at your important letters this ill day": [0, 65535], "had at your important letters this ill day a": [0, 65535], "at your important letters this ill day a most": [0, 65535], "your important letters this ill day a most outragious": [0, 65535], "important letters this ill day a most outragious fit": [0, 65535], "letters this ill day a most outragious fit of": [0, 65535], "this ill day a most outragious fit of madnesse": [0, 65535], "ill day a most outragious fit of madnesse tooke": [0, 65535], "day a most outragious fit of madnesse tooke him": [0, 65535], "a most outragious fit of madnesse tooke him that": [0, 65535], "most outragious fit of madnesse tooke him that desp'rately": [0, 65535], "outragious fit of madnesse tooke him that desp'rately he": [0, 65535], "fit of madnesse tooke him that desp'rately he hurried": [0, 65535], "of madnesse tooke him that desp'rately he hurried through": [0, 65535], "madnesse tooke him that desp'rately he hurried through the": [0, 65535], "tooke him that desp'rately he hurried through the streete": [0, 65535], "him that desp'rately he hurried through the streete with": [0, 65535], "that desp'rately he hurried through the streete with him": [0, 65535], "desp'rately he hurried through the streete with him his": [0, 65535], "he hurried through the streete with him his bondman": [0, 65535], "hurried through the streete with him his bondman all": [0, 65535], "through the streete with him his bondman all as": [0, 65535], "the streete with him his bondman all as mad": [0, 65535], "streete with him his bondman all as mad as": [0, 65535], "with him his bondman all as mad as he": [0, 65535], "him his bondman all as mad as he doing": [0, 65535], "his bondman all as mad as he doing displeasure": [0, 65535], "bondman all as mad as he doing displeasure to": [0, 65535], "all as mad as he doing displeasure to the": [0, 65535], "as mad as he doing displeasure to the citizens": [0, 65535], "mad as he doing displeasure to the citizens by": [0, 65535], "as he doing displeasure to the citizens by rushing": [0, 65535], "he doing displeasure to the citizens by rushing in": [0, 65535], "doing displeasure to the citizens by rushing in their": [0, 65535], "displeasure to the citizens by rushing in their houses": [0, 65535], "to the citizens by rushing in their houses bearing": [0, 65535], "the citizens by rushing in their houses bearing thence": [0, 65535], "citizens by rushing in their houses bearing thence rings": [0, 65535], "by rushing in their houses bearing thence rings iewels": [0, 65535], "rushing in their houses bearing thence rings iewels any": [0, 65535], "in their houses bearing thence rings iewels any thing": [0, 65535], "their houses bearing thence rings iewels any thing his": [0, 65535], "houses bearing thence rings iewels any thing his rage": [0, 65535], "bearing thence rings iewels any thing his rage did": [0, 65535], "thence rings iewels any thing his rage did like": [0, 65535], "rings iewels any thing his rage did like once": [0, 65535], "iewels any thing his rage did like once did": [0, 65535], "any thing his rage did like once did i": [0, 65535], "thing his rage did like once did i get": [0, 65535], "his rage did like once did i get him": [0, 65535], "rage did like once did i get him bound": [0, 65535], "did like once did i get him bound and": [0, 65535], "like once did i get him bound and sent": [0, 65535], "once did i get him bound and sent him": [0, 65535], "did i get him bound and sent him home": [0, 65535], "i get him bound and sent him home whil'st": [0, 65535], "get him bound and sent him home whil'st to": [0, 65535], "him bound and sent him home whil'st to take": [0, 65535], "bound and sent him home whil'st to take order": [0, 65535], "and sent him home whil'st to take order for": [0, 65535], "sent him home whil'st to take order for the": [0, 65535], "him home whil'st to take order for the wrongs": [0, 65535], "home whil'st to take order for the wrongs i": [0, 65535], "whil'st to take order for the wrongs i went": [0, 65535], "to take order for the wrongs i went that": [0, 65535], "take order for the wrongs i went that heere": [0, 65535], "order for the wrongs i went that heere and": [0, 65535], "for the wrongs i went that heere and there": [0, 65535], "the wrongs i went that heere and there his": [0, 65535], "wrongs i went that heere and there his furie": [0, 65535], "i went that heere and there his furie had": [0, 65535], "went that heere and there his furie had committed": [0, 65535], "that heere and there his furie had committed anon": [0, 65535], "heere and there his furie had committed anon i": [0, 65535], "and there his furie had committed anon i wot": [0, 65535], "there his furie had committed anon i wot not": [0, 65535], "his furie had committed anon i wot not by": [0, 65535], "furie had committed anon i wot not by what": [0, 65535], "had committed anon i wot not by what strong": [0, 65535], "committed anon i wot not by what strong escape": [0, 65535], "anon i wot not by what strong escape he": [0, 65535], "i wot not by what strong escape he broke": [0, 65535], "wot not by what strong escape he broke from": [0, 65535], "not by what strong escape he broke from those": [0, 65535], "by what strong escape he broke from those that": [0, 65535], "what strong escape he broke from those that had": [0, 65535], "strong escape he broke from those that had the": [0, 65535], "escape he broke from those that had the guard": [0, 65535], "he broke from those that had the guard of": [0, 65535], "broke from those that had the guard of him": [0, 65535], "from those that had the guard of him and": [0, 65535], "those that had the guard of him and with": [0, 65535], "that had the guard of him and with his": [0, 65535], "had the guard of him and with his mad": [0, 65535], "the guard of him and with his mad attendant": [0, 65535], "guard of him and with his mad attendant and": [0, 65535], "of him and with his mad attendant and himselfe": [0, 65535], "him and with his mad attendant and himselfe each": [0, 65535], "and with his mad attendant and himselfe each one": [0, 65535], "with his mad attendant and himselfe each one with": [0, 65535], "his mad attendant and himselfe each one with irefull": [0, 65535], "mad attendant and himselfe each one with irefull passion": [0, 65535], "attendant and himselfe each one with irefull passion with": [0, 65535], "and himselfe each one with irefull passion with drawne": [0, 65535], "himselfe each one with irefull passion with drawne swords": [0, 65535], "each one with irefull passion with drawne swords met": [0, 65535], "one with irefull passion with drawne swords met vs": [0, 65535], "with irefull passion with drawne swords met vs againe": [0, 65535], "irefull passion with drawne swords met vs againe and": [0, 65535], "passion with drawne swords met vs againe and madly": [0, 65535], "with drawne swords met vs againe and madly bent": [0, 65535], "drawne swords met vs againe and madly bent on": [0, 65535], "swords met vs againe and madly bent on vs": [0, 65535], "met vs againe and madly bent on vs chac'd": [0, 65535], "vs againe and madly bent on vs chac'd vs": [0, 65535], "againe and madly bent on vs chac'd vs away": [0, 65535], "and madly bent on vs chac'd vs away till": [0, 65535], "madly bent on vs chac'd vs away till raising": [0, 65535], "bent on vs chac'd vs away till raising of": [0, 65535], "on vs chac'd vs away till raising of more": [0, 65535], "vs chac'd vs away till raising of more aide": [0, 65535], "chac'd vs away till raising of more aide we": [0, 65535], "vs away till raising of more aide we came": [0, 65535], "away till raising of more aide we came againe": [0, 65535], "till raising of more aide we came againe to": [0, 65535], "raising of more aide we came againe to binde": [0, 65535], "of more aide we came againe to binde them": [0, 65535], "more aide we came againe to binde them then": [0, 65535], "aide we came againe to binde them then they": [0, 65535], "we came againe to binde them then they fled": [0, 65535], "came againe to binde them then they fled into": [0, 65535], "againe to binde them then they fled into this": [0, 65535], "to binde them then they fled into this abbey": [0, 65535], "binde them then they fled into this abbey whether": [0, 65535], "them then they fled into this abbey whether we": [0, 65535], "then they fled into this abbey whether we pursu'd": [0, 65535], "they fled into this abbey whether we pursu'd them": [0, 65535], "fled into this abbey whether we pursu'd them and": [0, 65535], "into this abbey whether we pursu'd them and heere": [0, 65535], "this abbey whether we pursu'd them and heere the": [0, 65535], "abbey whether we pursu'd them and heere the abbesse": [0, 65535], "whether we pursu'd them and heere the abbesse shuts": [0, 65535], "we pursu'd them and heere the abbesse shuts the": [0, 65535], "pursu'd them and heere the abbesse shuts the gates": [0, 65535], "them and heere the abbesse shuts the gates on": [0, 65535], "and heere the abbesse shuts the gates on vs": [0, 65535], "heere the abbesse shuts the gates on vs and": [0, 65535], "the abbesse shuts the gates on vs and will": [0, 65535], "abbesse shuts the gates on vs and will not": [0, 65535], "shuts the gates on vs and will not suffer": [0, 65535], "the gates on vs and will not suffer vs": [0, 65535], "gates on vs and will not suffer vs to": [0, 65535], "on vs and will not suffer vs to fetch": [0, 65535], "vs and will not suffer vs to fetch him": [0, 65535], "and will not suffer vs to fetch him out": [0, 65535], "will not suffer vs to fetch him out nor": [0, 65535], "not suffer vs to fetch him out nor send": [0, 65535], "suffer vs to fetch him out nor send him": [0, 65535], "vs to fetch him out nor send him forth": [0, 65535], "to fetch him out nor send him forth that": [0, 65535], "fetch him out nor send him forth that we": [0, 65535], "him out nor send him forth that we may": [0, 65535], "out nor send him forth that we may beare": [0, 65535], "nor send him forth that we may beare him": [0, 65535], "send him forth that we may beare him hence": [0, 65535], "him forth that we may beare him hence therefore": [0, 65535], "forth that we may beare him hence therefore most": [0, 65535], "that we may beare him hence therefore most gracious": [0, 65535], "we may beare him hence therefore most gracious duke": [0, 65535], "may beare him hence therefore most gracious duke with": [0, 65535], "beare him hence therefore most gracious duke with thy": [0, 65535], "him hence therefore most gracious duke with thy command": [0, 65535], "hence therefore most gracious duke with thy command let": [0, 65535], "therefore most gracious duke with thy command let him": [0, 65535], "most gracious duke with thy command let him be": [0, 65535], "gracious duke with thy command let him be brought": [0, 65535], "duke with thy command let him be brought forth": [0, 65535], "with thy command let him be brought forth and": [0, 65535], "thy command let him be brought forth and borne": [0, 65535], "command let him be brought forth and borne hence": [0, 65535], "let him be brought forth and borne hence for": [0, 65535], "him be brought forth and borne hence for helpe": [0, 65535], "be brought forth and borne hence for helpe duke": [0, 65535], "brought forth and borne hence for helpe duke long": [0, 65535], "forth and borne hence for helpe duke long since": [0, 65535], "and borne hence for helpe duke long since thy": [0, 65535], "borne hence for helpe duke long since thy husband": [0, 65535], "hence for helpe duke long since thy husband seru'd": [0, 65535], "for helpe duke long since thy husband seru'd me": [0, 65535], "helpe duke long since thy husband seru'd me in": [0, 65535], "duke long since thy husband seru'd me in my": [0, 65535], "long since thy husband seru'd me in my wars": [0, 65535], "since thy husband seru'd me in my wars and": [0, 65535], "thy husband seru'd me in my wars and i": [0, 65535], "husband seru'd me in my wars and i to": [0, 65535], "seru'd me in my wars and i to thee": [0, 65535], "me in my wars and i to thee ingag'd": [0, 65535], "in my wars and i to thee ingag'd a": [0, 65535], "my wars and i to thee ingag'd a princes": [0, 65535], "wars and i to thee ingag'd a princes word": [0, 65535], "and i to thee ingag'd a princes word when": [0, 65535], "i to thee ingag'd a princes word when thou": [0, 65535], "to thee ingag'd a princes word when thou didst": [0, 65535], "thee ingag'd a princes word when thou didst make": [0, 65535], "ingag'd a princes word when thou didst make him": [0, 65535], "a princes word when thou didst make him master": [0, 65535], "princes word when thou didst make him master of": [0, 65535], "word when thou didst make him master of thy": [0, 65535], "when thou didst make him master of thy bed": [0, 65535], "thou didst make him master of thy bed to": [0, 65535], "didst make him master of thy bed to do": [0, 65535], "make him master of thy bed to do him": [0, 65535], "him master of thy bed to do him all": [0, 65535], "master of thy bed to do him all the": [0, 65535], "of thy bed to do him all the grace": [0, 65535], "thy bed to do him all the grace and": [0, 65535], "bed to do him all the grace and good": [0, 65535], "to do him all the grace and good i": [0, 65535], "do him all the grace and good i could": [0, 65535], "him all the grace and good i could go": [0, 65535], "all the grace and good i could go some": [0, 65535], "the grace and good i could go some of": [0, 65535], "grace and good i could go some of you": [0, 65535], "and good i could go some of you knocke": [0, 65535], "good i could go some of you knocke at": [0, 65535], "i could go some of you knocke at the": [0, 65535], "could go some of you knocke at the abbey": [0, 65535], "go some of you knocke at the abbey gate": [0, 65535], "some of you knocke at the abbey gate and": [0, 65535], "of you knocke at the abbey gate and bid": [0, 65535], "you knocke at the abbey gate and bid the": [0, 65535], "knocke at the abbey gate and bid the lady": [0, 65535], "at the abbey gate and bid the lady abbesse": [0, 65535], "the abbey gate and bid the lady abbesse come": [0, 65535], "abbey gate and bid the lady abbesse come to": [0, 65535], "gate and bid the lady abbesse come to me": [0, 65535], "and bid the lady abbesse come to me i": [0, 65535], "bid the lady abbesse come to me i will": [0, 65535], "the lady abbesse come to me i will determine": [0, 65535], "lady abbesse come to me i will determine this": [0, 65535], "abbesse come to me i will determine this before": [0, 65535], "come to me i will determine this before i": [0, 65535], "to me i will determine this before i stirre": [0, 65535], "me i will determine this before i stirre enter": [0, 65535], "i will determine this before i stirre enter a": [0, 65535], "will determine this before i stirre enter a messenger": [0, 65535], "determine this before i stirre enter a messenger oh": [0, 65535], "this before i stirre enter a messenger oh mistris": [0, 65535], "before i stirre enter a messenger oh mistris mistris": [0, 65535], "i stirre enter a messenger oh mistris mistris shift": [0, 65535], "stirre enter a messenger oh mistris mistris shift and": [0, 65535], "enter a messenger oh mistris mistris shift and saue": [0, 65535], "a messenger oh mistris mistris shift and saue your": [0, 65535], "messenger oh mistris mistris shift and saue your selfe": [0, 65535], "oh mistris mistris shift and saue your selfe my": [0, 65535], "mistris mistris shift and saue your selfe my master": [0, 65535], "mistris shift and saue your selfe my master and": [0, 65535], "shift and saue your selfe my master and his": [0, 65535], "and saue your selfe my master and his man": [0, 65535], "saue your selfe my master and his man are": [0, 65535], "your selfe my master and his man are both": [0, 65535], "selfe my master and his man are both broke": [0, 65535], "my master and his man are both broke loose": [0, 65535], "master and his man are both broke loose beaten": [0, 65535], "and his man are both broke loose beaten the": [0, 65535], "his man are both broke loose beaten the maids": [0, 65535], "man are both broke loose beaten the maids a": [0, 65535], "are both broke loose beaten the maids a row": [0, 65535], "both broke loose beaten the maids a row and": [0, 65535], "broke loose beaten the maids a row and bound": [0, 65535], "loose beaten the maids a row and bound the": [0, 65535], "beaten the maids a row and bound the doctor": [0, 65535], "the maids a row and bound the doctor whose": [0, 65535], "maids a row and bound the doctor whose beard": [0, 65535], "a row and bound the doctor whose beard they": [0, 65535], "row and bound the doctor whose beard they haue": [0, 65535], "and bound the doctor whose beard they haue sindg'd": [0, 65535], "bound the doctor whose beard they haue sindg'd off": [0, 65535], "the doctor whose beard they haue sindg'd off with": [0, 65535], "doctor whose beard they haue sindg'd off with brands": [0, 65535], "whose beard they haue sindg'd off with brands of": [0, 65535], "beard they haue sindg'd off with brands of fire": [0, 65535], "they haue sindg'd off with brands of fire and": [0, 65535], "haue sindg'd off with brands of fire and euer": [0, 65535], "sindg'd off with brands of fire and euer as": [0, 65535], "off with brands of fire and euer as it": [0, 65535], "with brands of fire and euer as it blaz'd": [0, 65535], "brands of fire and euer as it blaz'd they": [0, 65535], "of fire and euer as it blaz'd they threw": [0, 65535], "fire and euer as it blaz'd they threw on": [0, 65535], "and euer as it blaz'd they threw on him": [0, 65535], "euer as it blaz'd they threw on him great": [0, 65535], "as it blaz'd they threw on him great pailes": [0, 65535], "it blaz'd they threw on him great pailes of": [0, 65535], "blaz'd they threw on him great pailes of puddled": [0, 65535], "they threw on him great pailes of puddled myre": [0, 65535], "threw on him great pailes of puddled myre to": [0, 65535], "on him great pailes of puddled myre to quench": [0, 65535], "him great pailes of puddled myre to quench the": [0, 65535], "great pailes of puddled myre to quench the haire": [0, 65535], "pailes of puddled myre to quench the haire my": [0, 65535], "of puddled myre to quench the haire my mr": [0, 65535], "puddled myre to quench the haire my mr preaches": [0, 65535], "myre to quench the haire my mr preaches patience": [0, 65535], "to quench the haire my mr preaches patience to": [0, 65535], "quench the haire my mr preaches patience to him": [0, 65535], "the haire my mr preaches patience to him and": [0, 65535], "haire my mr preaches patience to him and the": [0, 65535], "my mr preaches patience to him and the while": [0, 65535], "mr preaches patience to him and the while his": [0, 65535], "preaches patience to him and the while his man": [0, 65535], "patience to him and the while his man with": [0, 65535], "to him and the while his man with cizers": [0, 65535], "him and the while his man with cizers nickes": [0, 65535], "and the while his man with cizers nickes him": [0, 65535], "the while his man with cizers nickes him like": [0, 65535], "while his man with cizers nickes him like a": [0, 65535], "his man with cizers nickes him like a foole": [0, 65535], "man with cizers nickes him like a foole and": [0, 65535], "with cizers nickes him like a foole and sure": [0, 65535], "cizers nickes him like a foole and sure vnlesse": [0, 65535], "nickes him like a foole and sure vnlesse you": [0, 65535], "him like a foole and sure vnlesse you send": [0, 65535], "like a foole and sure vnlesse you send some": [0, 65535], "a foole and sure vnlesse you send some present": [0, 65535], "foole and sure vnlesse you send some present helpe": [0, 65535], "and sure vnlesse you send some present helpe betweene": [0, 65535], "sure vnlesse you send some present helpe betweene them": [0, 65535], "vnlesse you send some present helpe betweene them they": [0, 65535], "you send some present helpe betweene them they will": [0, 65535], "send some present helpe betweene them they will kill": [0, 65535], "some present helpe betweene them they will kill the": [0, 65535], "present helpe betweene them they will kill the coniurer": [0, 65535], "helpe betweene them they will kill the coniurer adr": [0, 65535], "betweene them they will kill the coniurer adr peace": [0, 65535], "them they will kill the coniurer adr peace foole": [0, 65535], "they will kill the coniurer adr peace foole thy": [0, 65535], "will kill the coniurer adr peace foole thy master": [0, 65535], "kill the coniurer adr peace foole thy master and": [0, 65535], "the coniurer adr peace foole thy master and his": [0, 65535], "coniurer adr peace foole thy master and his man": [0, 65535], "adr peace foole thy master and his man are": [0, 65535], "peace foole thy master and his man are here": [0, 65535], "foole thy master and his man are here and": [0, 65535], "thy master and his man are here and that": [0, 65535], "master and his man are here and that is": [0, 65535], "and his man are here and that is false": [0, 65535], "his man are here and that is false thou": [0, 65535], "man are here and that is false thou dost": [0, 65535], "are here and that is false thou dost report": [0, 65535], "here and that is false thou dost report to": [0, 65535], "and that is false thou dost report to vs": [0, 65535], "that is false thou dost report to vs mess": [0, 65535], "is false thou dost report to vs mess mistris": [0, 65535], "false thou dost report to vs mess mistris vpon": [0, 65535], "thou dost report to vs mess mistris vpon my": [0, 65535], "dost report to vs mess mistris vpon my life": [0, 65535], "report to vs mess mistris vpon my life i": [0, 65535], "to vs mess mistris vpon my life i tel": [0, 65535], "vs mess mistris vpon my life i tel you": [0, 65535], "mess mistris vpon my life i tel you true": [0, 65535], "mistris vpon my life i tel you true i": [0, 65535], "vpon my life i tel you true i haue": [0, 65535], "my life i tel you true i haue not": [0, 65535], "life i tel you true i haue not breath'd": [0, 65535], "i tel you true i haue not breath'd almost": [0, 65535], "tel you true i haue not breath'd almost since": [0, 65535], "you true i haue not breath'd almost since i": [0, 65535], "true i haue not breath'd almost since i did": [0, 65535], "i haue not breath'd almost since i did see": [0, 65535], "haue not breath'd almost since i did see it": [0, 65535], "not breath'd almost since i did see it he": [0, 65535], "breath'd almost since i did see it he cries": [0, 65535], "almost since i did see it he cries for": [0, 65535], "since i did see it he cries for you": [0, 65535], "i did see it he cries for you and": [0, 65535], "did see it he cries for you and vowes": [0, 65535], "see it he cries for you and vowes if": [0, 65535], "it he cries for you and vowes if he": [0, 65535], "he cries for you and vowes if he can": [0, 65535], "cries for you and vowes if he can take": [0, 65535], "for you and vowes if he can take you": [0, 65535], "you and vowes if he can take you to": [0, 65535], "and vowes if he can take you to scorch": [0, 65535], "vowes if he can take you to scorch your": [0, 65535], "if he can take you to scorch your face": [0, 65535], "he can take you to scorch your face and": [0, 65535], "can take you to scorch your face and to": [0, 65535], "take you to scorch your face and to disfigure": [0, 65535], "you to scorch your face and to disfigure you": [0, 65535], "to scorch your face and to disfigure you cry": [0, 65535], "scorch your face and to disfigure you cry within": [0, 65535], "your face and to disfigure you cry within harke": [0, 65535], "face and to disfigure you cry within harke harke": [0, 65535], "and to disfigure you cry within harke harke i": [0, 65535], "to disfigure you cry within harke harke i heare": [0, 65535], "disfigure you cry within harke harke i heare him": [0, 65535], "you cry within harke harke i heare him mistris": [0, 65535], "cry within harke harke i heare him mistris flie": [0, 65535], "within harke harke i heare him mistris flie be": [0, 65535], "harke harke i heare him mistris flie be gone": [0, 65535], "harke i heare him mistris flie be gone duke": [0, 65535], "i heare him mistris flie be gone duke come": [0, 65535], "heare him mistris flie be gone duke come stand": [0, 65535], "him mistris flie be gone duke come stand by": [0, 65535], "mistris flie be gone duke come stand by me": [0, 65535], "flie be gone duke come stand by me feare": [0, 65535], "be gone duke come stand by me feare nothing": [0, 65535], "gone duke come stand by me feare nothing guard": [0, 65535], "duke come stand by me feare nothing guard with": [0, 65535], "come stand by me feare nothing guard with halberds": [0, 65535], "stand by me feare nothing guard with halberds adr": [0, 65535], "by me feare nothing guard with halberds adr ay": [0, 65535], "me feare nothing guard with halberds adr ay me": [0, 65535], "feare nothing guard with halberds adr ay me it": [0, 65535], "nothing guard with halberds adr ay me it is": [0, 65535], "guard with halberds adr ay me it is my": [0, 65535], "with halberds adr ay me it is my husband": [0, 65535], "halberds adr ay me it is my husband witnesse": [0, 65535], "adr ay me it is my husband witnesse you": [0, 65535], "ay me it is my husband witnesse you that": [0, 65535], "me it is my husband witnesse you that he": [0, 65535], "it is my husband witnesse you that he is": [0, 65535], "is my husband witnesse you that he is borne": [0, 65535], "my husband witnesse you that he is borne about": [0, 65535], "husband witnesse you that he is borne about inuisible": [0, 65535], "witnesse you that he is borne about inuisible euen": [0, 65535], "you that he is borne about inuisible euen now": [0, 65535], "that he is borne about inuisible euen now we": [0, 65535], "he is borne about inuisible euen now we hous'd": [0, 65535], "is borne about inuisible euen now we hous'd him": [0, 65535], "borne about inuisible euen now we hous'd him in": [0, 65535], "about inuisible euen now we hous'd him in the": [0, 65535], "inuisible euen now we hous'd him in the abbey": [0, 65535], "euen now we hous'd him in the abbey heere": [0, 65535], "now we hous'd him in the abbey heere and": [0, 65535], "we hous'd him in the abbey heere and now": [0, 65535], "hous'd him in the abbey heere and now he's": [0, 65535], "him in the abbey heere and now he's there": [0, 65535], "in the abbey heere and now he's there past": [0, 65535], "the abbey heere and now he's there past thought": [0, 65535], "abbey heere and now he's there past thought of": [0, 65535], "heere and now he's there past thought of humane": [0, 65535], "and now he's there past thought of humane reason": [0, 65535], "now he's there past thought of humane reason enter": [0, 65535], "he's there past thought of humane reason enter antipholus": [0, 65535], "there past thought of humane reason enter antipholus and": [0, 65535], "past thought of humane reason enter antipholus and e": [0, 65535], "thought of humane reason enter antipholus and e dromio": [0, 65535], "of humane reason enter antipholus and e dromio of": [0, 65535], "humane reason enter antipholus and e dromio of ephesus": [0, 65535], "reason enter antipholus and e dromio of ephesus e": [0, 65535], "enter antipholus and e dromio of ephesus e ant": [0, 65535], "antipholus and e dromio of ephesus e ant iustice": [0, 65535], "and e dromio of ephesus e ant iustice most": [0, 65535], "e dromio of ephesus e ant iustice most gracious": [0, 65535], "dromio of ephesus e ant iustice most gracious duke": [0, 65535], "of ephesus e ant iustice most gracious duke oh": [0, 65535], "ephesus e ant iustice most gracious duke oh grant": [0, 65535], "e ant iustice most gracious duke oh grant me": [0, 65535], "ant iustice most gracious duke oh grant me iustice": [0, 65535], "iustice most gracious duke oh grant me iustice euen": [0, 65535], "most gracious duke oh grant me iustice euen for": [0, 65535], "gracious duke oh grant me iustice euen for the": [0, 65535], "duke oh grant me iustice euen for the seruice": [0, 65535], "oh grant me iustice euen for the seruice that": [0, 65535], "grant me iustice euen for the seruice that long": [0, 65535], "me iustice euen for the seruice that long since": [0, 65535], "iustice euen for the seruice that long since i": [0, 65535], "euen for the seruice that long since i did": [0, 65535], "for the seruice that long since i did thee": [0, 65535], "the seruice that long since i did thee when": [0, 65535], "seruice that long since i did thee when i": [0, 65535], "that long since i did thee when i bestrid": [0, 65535], "long since i did thee when i bestrid thee": [0, 65535], "since i did thee when i bestrid thee in": [0, 65535], "i did thee when i bestrid thee in the": [0, 65535], "did thee when i bestrid thee in the warres": [0, 65535], "thee when i bestrid thee in the warres and": [0, 65535], "when i bestrid thee in the warres and tooke": [0, 65535], "i bestrid thee in the warres and tooke deepe": [0, 65535], "bestrid thee in the warres and tooke deepe scarres": [0, 65535], "thee in the warres and tooke deepe scarres to": [0, 65535], "in the warres and tooke deepe scarres to saue": [0, 65535], "the warres and tooke deepe scarres to saue thy": [0, 65535], "warres and tooke deepe scarres to saue thy life": [0, 65535], "and tooke deepe scarres to saue thy life euen": [0, 65535], "tooke deepe scarres to saue thy life euen for": [0, 65535], "deepe scarres to saue thy life euen for the": [0, 65535], "scarres to saue thy life euen for the blood": [0, 65535], "to saue thy life euen for the blood that": [0, 65535], "saue thy life euen for the blood that then": [0, 65535], "thy life euen for the blood that then i": [0, 65535], "life euen for the blood that then i lost": [0, 65535], "euen for the blood that then i lost for": [0, 65535], "for the blood that then i lost for thee": [0, 65535], "the blood that then i lost for thee now": [0, 65535], "blood that then i lost for thee now grant": [0, 65535], "that then i lost for thee now grant me": [0, 65535], "then i lost for thee now grant me iustice": [0, 65535], "i lost for thee now grant me iustice mar": [0, 65535], "lost for thee now grant me iustice mar fat": [0, 65535], "for thee now grant me iustice mar fat vnlesse": [0, 65535], "thee now grant me iustice mar fat vnlesse the": [0, 65535], "now grant me iustice mar fat vnlesse the feare": [0, 65535], "grant me iustice mar fat vnlesse the feare of": [0, 65535], "me iustice mar fat vnlesse the feare of death": [0, 65535], "iustice mar fat vnlesse the feare of death doth": [0, 65535], "mar fat vnlesse the feare of death doth make": [0, 65535], "fat vnlesse the feare of death doth make me": [0, 65535], "vnlesse the feare of death doth make me dote": [0, 65535], "the feare of death doth make me dote i": [0, 65535], "feare of death doth make me dote i see": [0, 65535], "of death doth make me dote i see my": [0, 65535], "death doth make me dote i see my sonne": [0, 65535], "doth make me dote i see my sonne antipholus": [0, 65535], "make me dote i see my sonne antipholus and": [0, 65535], "me dote i see my sonne antipholus and dromio": [0, 65535], "dote i see my sonne antipholus and dromio e": [0, 65535], "i see my sonne antipholus and dromio e ant": [0, 65535], "see my sonne antipholus and dromio e ant iustice": [0, 65535], "my sonne antipholus and dromio e ant iustice sweet": [0, 65535], "sonne antipholus and dromio e ant iustice sweet prince": [0, 65535], "antipholus and dromio e ant iustice sweet prince against": [0, 65535], "and dromio e ant iustice sweet prince against that": [0, 65535], "dromio e ant iustice sweet prince against that woman": [0, 65535], "e ant iustice sweet prince against that woman there": [0, 65535], "ant iustice sweet prince against that woman there she": [0, 65535], "iustice sweet prince against that woman there she whom": [0, 65535], "sweet prince against that woman there she whom thou": [0, 65535], "prince against that woman there she whom thou gau'st": [0, 65535], "against that woman there she whom thou gau'st to": [0, 65535], "that woman there she whom thou gau'st to me": [0, 65535], "woman there she whom thou gau'st to me to": [0, 65535], "there she whom thou gau'st to me to be": [0, 65535], "she whom thou gau'st to me to be my": [0, 65535], "whom thou gau'st to me to be my wife": [0, 65535], "thou gau'st to me to be my wife that": [0, 65535], "gau'st to me to be my wife that hath": [0, 65535], "to me to be my wife that hath abused": [0, 65535], "me to be my wife that hath abused and": [0, 65535], "to be my wife that hath abused and dishonored": [0, 65535], "be my wife that hath abused and dishonored me": [0, 65535], "my wife that hath abused and dishonored me euen": [0, 65535], "wife that hath abused and dishonored me euen in": [0, 65535], "that hath abused and dishonored me euen in the": [0, 65535], "hath abused and dishonored me euen in the strength": [0, 65535], "abused and dishonored me euen in the strength and": [0, 65535], "and dishonored me euen in the strength and height": [0, 65535], "dishonored me euen in the strength and height of": [0, 65535], "me euen in the strength and height of iniurie": [0, 65535], "euen in the strength and height of iniurie beyond": [0, 65535], "in the strength and height of iniurie beyond imagination": [0, 65535], "the strength and height of iniurie beyond imagination is": [0, 65535], "strength and height of iniurie beyond imagination is the": [0, 65535], "and height of iniurie beyond imagination is the wrong": [0, 65535], "height of iniurie beyond imagination is the wrong that": [0, 65535], "of iniurie beyond imagination is the wrong that she": [0, 65535], "iniurie beyond imagination is the wrong that she this": [0, 65535], "beyond imagination is the wrong that she this day": [0, 65535], "imagination is the wrong that she this day hath": [0, 65535], "is the wrong that she this day hath shamelesse": [0, 65535], "the wrong that she this day hath shamelesse throwne": [0, 65535], "wrong that she this day hath shamelesse throwne on": [0, 65535], "that she this day hath shamelesse throwne on me": [0, 65535], "she this day hath shamelesse throwne on me duke": [0, 65535], "this day hath shamelesse throwne on me duke discouer": [0, 65535], "day hath shamelesse throwne on me duke discouer how": [0, 65535], "hath shamelesse throwne on me duke discouer how and": [0, 65535], "shamelesse throwne on me duke discouer how and thou": [0, 65535], "throwne on me duke discouer how and thou shalt": [0, 65535], "on me duke discouer how and thou shalt finde": [0, 65535], "me duke discouer how and thou shalt finde me": [0, 65535], "duke discouer how and thou shalt finde me iust": [0, 65535], "discouer how and thou shalt finde me iust e": [0, 65535], "how and thou shalt finde me iust e ant": [0, 65535], "and thou shalt finde me iust e ant this": [0, 65535], "thou shalt finde me iust e ant this day": [0, 65535], "shalt finde me iust e ant this day great": [0, 65535], "finde me iust e ant this day great duke": [0, 65535], "me iust e ant this day great duke she": [0, 65535], "iust e ant this day great duke she shut": [0, 65535], "e ant this day great duke she shut the": [0, 65535], "ant this day great duke she shut the doores": [0, 65535], "this day great duke she shut the doores vpon": [0, 65535], "day great duke she shut the doores vpon me": [0, 65535], "great duke she shut the doores vpon me while": [0, 65535], "duke she shut the doores vpon me while she": [0, 65535], "she shut the doores vpon me while she with": [0, 65535], "shut the doores vpon me while she with harlots": [0, 65535], "the doores vpon me while she with harlots feasted": [0, 65535], "doores vpon me while she with harlots feasted in": [0, 65535], "vpon me while she with harlots feasted in my": [0, 65535], "me while she with harlots feasted in my house": [0, 65535], "while she with harlots feasted in my house duke": [0, 65535], "she with harlots feasted in my house duke a": [0, 65535], "with harlots feasted in my house duke a greeuous": [0, 65535], "harlots feasted in my house duke a greeuous fault": [0, 65535], "feasted in my house duke a greeuous fault say": [0, 65535], "in my house duke a greeuous fault say woman": [0, 65535], "my house duke a greeuous fault say woman didst": [0, 65535], "house duke a greeuous fault say woman didst thou": [0, 65535], "duke a greeuous fault say woman didst thou so": [0, 65535], "a greeuous fault say woman didst thou so adr": [0, 65535], "greeuous fault say woman didst thou so adr no": [0, 65535], "fault say woman didst thou so adr no my": [0, 65535], "say woman didst thou so adr no my good": [0, 65535], "woman didst thou so adr no my good lord": [0, 65535], "didst thou so adr no my good lord my": [0, 65535], "thou so adr no my good lord my selfe": [0, 65535], "so adr no my good lord my selfe he": [0, 65535], "adr no my good lord my selfe he and": [0, 65535], "no my good lord my selfe he and my": [0, 65535], "my good lord my selfe he and my sister": [0, 65535], "good lord my selfe he and my sister to": [0, 65535], "lord my selfe he and my sister to day": [0, 65535], "my selfe he and my sister to day did": [0, 65535], "selfe he and my sister to day did dine": [0, 65535], "he and my sister to day did dine together": [0, 65535], "and my sister to day did dine together so": [0, 65535], "my sister to day did dine together so befall": [0, 65535], "sister to day did dine together so befall my": [0, 65535], "to day did dine together so befall my soule": [0, 65535], "day did dine together so befall my soule as": [0, 65535], "did dine together so befall my soule as this": [0, 65535], "dine together so befall my soule as this is": [0, 65535], "together so befall my soule as this is false": [0, 65535], "so befall my soule as this is false he": [0, 65535], "befall my soule as this is false he burthens": [0, 65535], "my soule as this is false he burthens me": [0, 65535], "soule as this is false he burthens me withall": [0, 65535], "as this is false he burthens me withall luc": [0, 65535], "this is false he burthens me withall luc nere": [0, 65535], "is false he burthens me withall luc nere may": [0, 65535], "false he burthens me withall luc nere may i": [0, 65535], "he burthens me withall luc nere may i looke": [0, 65535], "burthens me withall luc nere may i looke on": [0, 65535], "me withall luc nere may i looke on day": [0, 65535], "withall luc nere may i looke on day nor": [0, 65535], "luc nere may i looke on day nor sleepe": [0, 65535], "nere may i looke on day nor sleepe on": [0, 65535], "may i looke on day nor sleepe on night": [0, 65535], "i looke on day nor sleepe on night but": [0, 65535], "looke on day nor sleepe on night but she": [0, 65535], "on day nor sleepe on night but she tels": [0, 65535], "day nor sleepe on night but she tels to": [0, 65535], "nor sleepe on night but she tels to your": [0, 65535], "sleepe on night but she tels to your highnesse": [0, 65535], "on night but she tels to your highnesse simple": [0, 65535], "night but she tels to your highnesse simple truth": [0, 65535], "but she tels to your highnesse simple truth gold": [0, 65535], "she tels to your highnesse simple truth gold o": [0, 65535], "tels to your highnesse simple truth gold o periur'd": [0, 65535], "to your highnesse simple truth gold o periur'd woman": [0, 65535], "your highnesse simple truth gold o periur'd woman they": [0, 65535], "highnesse simple truth gold o periur'd woman they are": [0, 65535], "simple truth gold o periur'd woman they are both": [0, 65535], "truth gold o periur'd woman they are both forsworne": [0, 65535], "gold o periur'd woman they are both forsworne in": [0, 65535], "o periur'd woman they are both forsworne in this": [0, 65535], "periur'd woman they are both forsworne in this the": [0, 65535], "woman they are both forsworne in this the madman": [0, 65535], "they are both forsworne in this the madman iustly": [0, 65535], "are both forsworne in this the madman iustly chargeth": [0, 65535], "both forsworne in this the madman iustly chargeth them": [0, 65535], "forsworne in this the madman iustly chargeth them e": [0, 65535], "in this the madman iustly chargeth them e ant": [0, 65535], "this the madman iustly chargeth them e ant my": [0, 65535], "the madman iustly chargeth them e ant my liege": [0, 65535], "madman iustly chargeth them e ant my liege i": [0, 65535], "iustly chargeth them e ant my liege i am": [0, 65535], "chargeth them e ant my liege i am aduised": [0, 65535], "them e ant my liege i am aduised what": [0, 65535], "e ant my liege i am aduised what i": [0, 65535], "ant my liege i am aduised what i say": [0, 65535], "my liege i am aduised what i say neither": [0, 65535], "liege i am aduised what i say neither disturbed": [0, 65535], "i am aduised what i say neither disturbed with": [0, 65535], "am aduised what i say neither disturbed with the": [0, 65535], "aduised what i say neither disturbed with the effect": [0, 65535], "what i say neither disturbed with the effect of": [0, 65535], "i say neither disturbed with the effect of wine": [0, 65535], "say neither disturbed with the effect of wine nor": [0, 65535], "neither disturbed with the effect of wine nor headie": [0, 65535], "disturbed with the effect of wine nor headie rash": [0, 65535], "with the effect of wine nor headie rash prouoak'd": [0, 65535], "the effect of wine nor headie rash prouoak'd with": [0, 65535], "effect of wine nor headie rash prouoak'd with raging": [0, 65535], "of wine nor headie rash prouoak'd with raging ire": [0, 65535], "wine nor headie rash prouoak'd with raging ire albeit": [0, 65535], "nor headie rash prouoak'd with raging ire albeit my": [0, 65535], "headie rash prouoak'd with raging ire albeit my wrongs": [0, 65535], "rash prouoak'd with raging ire albeit my wrongs might": [0, 65535], "prouoak'd with raging ire albeit my wrongs might make": [0, 65535], "with raging ire albeit my wrongs might make one": [0, 65535], "raging ire albeit my wrongs might make one wiser": [0, 65535], "ire albeit my wrongs might make one wiser mad": [0, 65535], "albeit my wrongs might make one wiser mad this": [0, 65535], "my wrongs might make one wiser mad this woman": [0, 65535], "wrongs might make one wiser mad this woman lock'd": [0, 65535], "might make one wiser mad this woman lock'd me": [0, 65535], "make one wiser mad this woman lock'd me out": [0, 65535], "one wiser mad this woman lock'd me out this": [0, 65535], "wiser mad this woman lock'd me out this day": [0, 65535], "mad this woman lock'd me out this day from": [0, 65535], "this woman lock'd me out this day from dinner": [0, 65535], "woman lock'd me out this day from dinner that": [0, 65535], "lock'd me out this day from dinner that goldsmith": [0, 65535], "me out this day from dinner that goldsmith there": [0, 65535], "out this day from dinner that goldsmith there were": [0, 65535], "this day from dinner that goldsmith there were he": [0, 65535], "day from dinner that goldsmith there were he not": [0, 65535], "from dinner that goldsmith there were he not pack'd": [0, 65535], "dinner that goldsmith there were he not pack'd with": [0, 65535], "that goldsmith there were he not pack'd with her": [0, 65535], "goldsmith there were he not pack'd with her could": [0, 65535], "there were he not pack'd with her could witnesse": [0, 65535], "were he not pack'd with her could witnesse it": [0, 65535], "he not pack'd with her could witnesse it for": [0, 65535], "not pack'd with her could witnesse it for he": [0, 65535], "pack'd with her could witnesse it for he was": [0, 65535], "with her could witnesse it for he was with": [0, 65535], "her could witnesse it for he was with me": [0, 65535], "could witnesse it for he was with me then": [0, 65535], "witnesse it for he was with me then who": [0, 65535], "it for he was with me then who parted": [0, 65535], "for he was with me then who parted with": [0, 65535], "he was with me then who parted with me": [0, 65535], "was with me then who parted with me to": [0, 65535], "with me then who parted with me to go": [0, 65535], "me then who parted with me to go fetch": [0, 65535], "then who parted with me to go fetch a": [0, 65535], "who parted with me to go fetch a chaine": [0, 65535], "parted with me to go fetch a chaine promising": [0, 65535], "with me to go fetch a chaine promising to": [0, 65535], "me to go fetch a chaine promising to bring": [0, 65535], "to go fetch a chaine promising to bring it": [0, 65535], "go fetch a chaine promising to bring it to": [0, 65535], "fetch a chaine promising to bring it to the": [0, 65535], "a chaine promising to bring it to the porpentine": [0, 65535], "chaine promising to bring it to the porpentine where": [0, 65535], "promising to bring it to the porpentine where balthasar": [0, 65535], "to bring it to the porpentine where balthasar and": [0, 65535], "bring it to the porpentine where balthasar and i": [0, 65535], "it to the porpentine where balthasar and i did": [0, 65535], "to the porpentine where balthasar and i did dine": [0, 65535], "the porpentine where balthasar and i did dine together": [0, 65535], "porpentine where balthasar and i did dine together our": [0, 65535], "where balthasar and i did dine together our dinner": [0, 65535], "balthasar and i did dine together our dinner done": [0, 65535], "and i did dine together our dinner done and": [0, 65535], "i did dine together our dinner done and he": [0, 65535], "did dine together our dinner done and he not": [0, 65535], "dine together our dinner done and he not comming": [0, 65535], "together our dinner done and he not comming thither": [0, 65535], "our dinner done and he not comming thither i": [0, 65535], "dinner done and he not comming thither i went": [0, 65535], "done and he not comming thither i went to": [0, 65535], "and he not comming thither i went to seeke": [0, 65535], "he not comming thither i went to seeke him": [0, 65535], "not comming thither i went to seeke him in": [0, 65535], "comming thither i went to seeke him in the": [0, 65535], "thither i went to seeke him in the street": [0, 65535], "i went to seeke him in the street i": [0, 65535], "went to seeke him in the street i met": [0, 65535], "to seeke him in the street i met him": [0, 65535], "seeke him in the street i met him and": [0, 65535], "him in the street i met him and in": [0, 65535], "in the street i met him and in his": [0, 65535], "the street i met him and in his companie": [0, 65535], "street i met him and in his companie that": [0, 65535], "i met him and in his companie that gentleman": [0, 65535], "met him and in his companie that gentleman there": [0, 65535], "him and in his companie that gentleman there did": [0, 65535], "and in his companie that gentleman there did this": [0, 65535], "in his companie that gentleman there did this periur'd": [0, 65535], "his companie that gentleman there did this periur'd goldsmith": [0, 65535], "companie that gentleman there did this periur'd goldsmith sweare": [0, 65535], "that gentleman there did this periur'd goldsmith sweare me": [0, 65535], "gentleman there did this periur'd goldsmith sweare me downe": [0, 65535], "there did this periur'd goldsmith sweare me downe that": [0, 65535], "did this periur'd goldsmith sweare me downe that i": [0, 65535], "this periur'd goldsmith sweare me downe that i this": [0, 65535], "periur'd goldsmith sweare me downe that i this day": [0, 65535], "goldsmith sweare me downe that i this day of": [0, 65535], "sweare me downe that i this day of him": [0, 65535], "me downe that i this day of him receiu'd": [0, 65535], "downe that i this day of him receiu'd the": [0, 65535], "that i this day of him receiu'd the chaine": [0, 65535], "i this day of him receiu'd the chaine which": [0, 65535], "this day of him receiu'd the chaine which god": [0, 65535], "day of him receiu'd the chaine which god he": [0, 65535], "of him receiu'd the chaine which god he knowes": [0, 65535], "him receiu'd the chaine which god he knowes i": [0, 65535], "receiu'd the chaine which god he knowes i saw": [0, 65535], "the chaine which god he knowes i saw not": [0, 65535], "chaine which god he knowes i saw not for": [0, 65535], "which god he knowes i saw not for the": [0, 65535], "god he knowes i saw not for the which": [0, 65535], "he knowes i saw not for the which he": [0, 65535], "knowes i saw not for the which he did": [0, 65535], "i saw not for the which he did arrest": [0, 65535], "saw not for the which he did arrest me": [0, 65535], "not for the which he did arrest me with": [0, 65535], "for the which he did arrest me with an": [0, 65535], "the which he did arrest me with an officer": [0, 65535], "which he did arrest me with an officer i": [0, 65535], "he did arrest me with an officer i did": [0, 65535], "did arrest me with an officer i did obey": [0, 65535], "arrest me with an officer i did obey and": [0, 65535], "me with an officer i did obey and sent": [0, 65535], "with an officer i did obey and sent my": [0, 65535], "an officer i did obey and sent my pesant": [0, 65535], "officer i did obey and sent my pesant home": [0, 65535], "i did obey and sent my pesant home for": [0, 65535], "did obey and sent my pesant home for certaine": [0, 65535], "obey and sent my pesant home for certaine duckets": [0, 65535], "and sent my pesant home for certaine duckets he": [0, 65535], "sent my pesant home for certaine duckets he with": [0, 65535], "my pesant home for certaine duckets he with none": [0, 65535], "pesant home for certaine duckets he with none return'd": [0, 65535], "home for certaine duckets he with none return'd then": [0, 65535], "for certaine duckets he with none return'd then fairely": [0, 65535], "certaine duckets he with none return'd then fairely i": [0, 65535], "duckets he with none return'd then fairely i bespoke": [0, 65535], "he with none return'd then fairely i bespoke the": [0, 65535], "with none return'd then fairely i bespoke the officer": [0, 65535], "none return'd then fairely i bespoke the officer to": [0, 65535], "return'd then fairely i bespoke the officer to go": [0, 65535], "then fairely i bespoke the officer to go in": [0, 65535], "fairely i bespoke the officer to go in person": [0, 65535], "i bespoke the officer to go in person with": [0, 65535], "bespoke the officer to go in person with me": [0, 65535], "the officer to go in person with me to": [0, 65535], "officer to go in person with me to my": [0, 65535], "to go in person with me to my house": [0, 65535], "go in person with me to my house by'th'": [0, 65535], "in person with me to my house by'th' way": [0, 65535], "person with me to my house by'th' way we": [0, 65535], "with me to my house by'th' way we met": [0, 65535], "me to my house by'th' way we met my": [0, 65535], "to my house by'th' way we met my wife": [0, 65535], "my house by'th' way we met my wife her": [0, 65535], "house by'th' way we met my wife her sister": [0, 65535], "by'th' way we met my wife her sister and": [0, 65535], "way we met my wife her sister and a": [0, 65535], "we met my wife her sister and a rabble": [0, 65535], "met my wife her sister and a rabble more": [0, 65535], "my wife her sister and a rabble more of": [0, 65535], "wife her sister and a rabble more of vilde": [0, 65535], "her sister and a rabble more of vilde confederates": [0, 65535], "sister and a rabble more of vilde confederates along": [0, 65535], "and a rabble more of vilde confederates along with": [0, 65535], "a rabble more of vilde confederates along with them": [0, 65535], "rabble more of vilde confederates along with them they": [0, 65535], "more of vilde confederates along with them they brought": [0, 65535], "of vilde confederates along with them they brought one": [0, 65535], "vilde confederates along with them they brought one pinch": [0, 65535], "confederates along with them they brought one pinch a": [0, 65535], "along with them they brought one pinch a hungry": [0, 65535], "with them they brought one pinch a hungry leane": [0, 65535], "them they brought one pinch a hungry leane fac'd": [0, 65535], "they brought one pinch a hungry leane fac'd villaine": [0, 65535], "brought one pinch a hungry leane fac'd villaine a": [0, 65535], "one pinch a hungry leane fac'd villaine a meere": [0, 65535], "pinch a hungry leane fac'd villaine a meere anatomie": [0, 65535], "a hungry leane fac'd villaine a meere anatomie a": [0, 65535], "hungry leane fac'd villaine a meere anatomie a mountebanke": [0, 65535], "leane fac'd villaine a meere anatomie a mountebanke a": [0, 65535], "fac'd villaine a meere anatomie a mountebanke a thred": [0, 65535], "villaine a meere anatomie a mountebanke a thred bare": [0, 65535], "a meere anatomie a mountebanke a thred bare iugler": [0, 65535], "meere anatomie a mountebanke a thred bare iugler and": [0, 65535], "anatomie a mountebanke a thred bare iugler and a": [0, 65535], "a mountebanke a thred bare iugler and a fortune": [0, 65535], "mountebanke a thred bare iugler and a fortune teller": [0, 65535], "a thred bare iugler and a fortune teller a": [0, 65535], "thred bare iugler and a fortune teller a needy": [0, 65535], "bare iugler and a fortune teller a needy hollow": [0, 65535], "iugler and a fortune teller a needy hollow ey'd": [0, 65535], "and a fortune teller a needy hollow ey'd sharpe": [0, 65535], "a fortune teller a needy hollow ey'd sharpe looking": [0, 65535], "fortune teller a needy hollow ey'd sharpe looking wretch": [0, 65535], "teller a needy hollow ey'd sharpe looking wretch a": [0, 65535], "a needy hollow ey'd sharpe looking wretch a liuing": [0, 65535], "needy hollow ey'd sharpe looking wretch a liuing dead": [0, 65535], "hollow ey'd sharpe looking wretch a liuing dead man": [0, 65535], "ey'd sharpe looking wretch a liuing dead man this": [0, 65535], "sharpe looking wretch a liuing dead man this pernicious": [0, 65535], "looking wretch a liuing dead man this pernicious slaue": [0, 65535], "wretch a liuing dead man this pernicious slaue forsooth": [0, 65535], "a liuing dead man this pernicious slaue forsooth tooke": [0, 65535], "liuing dead man this pernicious slaue forsooth tooke on": [0, 65535], "dead man this pernicious slaue forsooth tooke on him": [0, 65535], "man this pernicious slaue forsooth tooke on him as": [0, 65535], "this pernicious slaue forsooth tooke on him as a": [0, 65535], "pernicious slaue forsooth tooke on him as a coniurer": [0, 65535], "slaue forsooth tooke on him as a coniurer and": [0, 65535], "forsooth tooke on him as a coniurer and gazing": [0, 65535], "tooke on him as a coniurer and gazing in": [0, 65535], "on him as a coniurer and gazing in mine": [0, 65535], "him as a coniurer and gazing in mine eyes": [0, 65535], "as a coniurer and gazing in mine eyes feeling": [0, 65535], "a coniurer and gazing in mine eyes feeling my": [0, 65535], "coniurer and gazing in mine eyes feeling my pulse": [0, 65535], "and gazing in mine eyes feeling my pulse and": [0, 65535], "gazing in mine eyes feeling my pulse and with": [0, 65535], "in mine eyes feeling my pulse and with no": [0, 65535], "mine eyes feeling my pulse and with no face": [0, 65535], "eyes feeling my pulse and with no face as": [0, 65535], "feeling my pulse and with no face as 'twere": [0, 65535], "my pulse and with no face as 'twere out": [0, 65535], "pulse and with no face as 'twere out facing": [0, 65535], "and with no face as 'twere out facing me": [0, 65535], "with no face as 'twere out facing me cries": [0, 65535], "no face as 'twere out facing me cries out": [0, 65535], "face as 'twere out facing me cries out i": [0, 65535], "as 'twere out facing me cries out i was": [0, 65535], "'twere out facing me cries out i was possest": [0, 65535], "out facing me cries out i was possest then": [0, 65535], "facing me cries out i was possest then altogether": [0, 65535], "me cries out i was possest then altogether they": [0, 65535], "cries out i was possest then altogether they fell": [0, 65535], "out i was possest then altogether they fell vpon": [0, 65535], "i was possest then altogether they fell vpon me": [0, 65535], "was possest then altogether they fell vpon me bound": [0, 65535], "possest then altogether they fell vpon me bound me": [0, 65535], "then altogether they fell vpon me bound me bore": [0, 65535], "altogether they fell vpon me bound me bore me": [0, 65535], "they fell vpon me bound me bore me thence": [0, 65535], "fell vpon me bound me bore me thence and": [0, 65535], "vpon me bound me bore me thence and in": [0, 65535], "me bound me bore me thence and in a": [0, 65535], "bound me bore me thence and in a darke": [0, 65535], "me bore me thence and in a darke and": [0, 65535], "bore me thence and in a darke and dankish": [0, 65535], "me thence and in a darke and dankish vault": [0, 65535], "thence and in a darke and dankish vault at": [0, 65535], "and in a darke and dankish vault at home": [0, 65535], "in a darke and dankish vault at home there": [0, 65535], "a darke and dankish vault at home there left": [0, 65535], "darke and dankish vault at home there left me": [0, 65535], "and dankish vault at home there left me and": [0, 65535], "dankish vault at home there left me and my": [0, 65535], "vault at home there left me and my man": [0, 65535], "at home there left me and my man both": [0, 65535], "home there left me and my man both bound": [0, 65535], "there left me and my man both bound together": [0, 65535], "left me and my man both bound together till": [0, 65535], "me and my man both bound together till gnawing": [0, 65535], "and my man both bound together till gnawing with": [0, 65535], "my man both bound together till gnawing with my": [0, 65535], "man both bound together till gnawing with my teeth": [0, 65535], "both bound together till gnawing with my teeth my": [0, 65535], "bound together till gnawing with my teeth my bonds": [0, 65535], "together till gnawing with my teeth my bonds in": [0, 65535], "till gnawing with my teeth my bonds in sunder": [0, 65535], "gnawing with my teeth my bonds in sunder i": [0, 65535], "with my teeth my bonds in sunder i gain'd": [0, 65535], "my teeth my bonds in sunder i gain'd my": [0, 65535], "teeth my bonds in sunder i gain'd my freedome": [0, 65535], "my bonds in sunder i gain'd my freedome and": [0, 65535], "bonds in sunder i gain'd my freedome and immediately": [0, 65535], "in sunder i gain'd my freedome and immediately ran": [0, 65535], "sunder i gain'd my freedome and immediately ran hether": [0, 65535], "i gain'd my freedome and immediately ran hether to": [0, 65535], "gain'd my freedome and immediately ran hether to your": [0, 65535], "my freedome and immediately ran hether to your grace": [0, 65535], "freedome and immediately ran hether to your grace whom": [0, 65535], "and immediately ran hether to your grace whom i": [0, 65535], "immediately ran hether to your grace whom i beseech": [0, 65535], "ran hether to your grace whom i beseech to": [0, 65535], "hether to your grace whom i beseech to giue": [0, 65535], "to your grace whom i beseech to giue me": [0, 65535], "your grace whom i beseech to giue me ample": [0, 65535], "grace whom i beseech to giue me ample satisfaction": [0, 65535], "whom i beseech to giue me ample satisfaction for": [0, 65535], "i beseech to giue me ample satisfaction for these": [0, 65535], "beseech to giue me ample satisfaction for these deepe": [0, 65535], "to giue me ample satisfaction for these deepe shames": [0, 65535], "giue me ample satisfaction for these deepe shames and": [0, 65535], "me ample satisfaction for these deepe shames and great": [0, 65535], "ample satisfaction for these deepe shames and great indignities": [0, 65535], "satisfaction for these deepe shames and great indignities gold": [0, 65535], "for these deepe shames and great indignities gold my": [0, 65535], "these deepe shames and great indignities gold my lord": [0, 65535], "deepe shames and great indignities gold my lord in": [0, 65535], "shames and great indignities gold my lord in truth": [0, 65535], "and great indignities gold my lord in truth thus": [0, 65535], "great indignities gold my lord in truth thus far": [0, 65535], "indignities gold my lord in truth thus far i": [0, 65535], "gold my lord in truth thus far i witnes": [0, 65535], "my lord in truth thus far i witnes with": [0, 65535], "lord in truth thus far i witnes with him": [0, 65535], "in truth thus far i witnes with him that": [0, 65535], "truth thus far i witnes with him that he": [0, 65535], "thus far i witnes with him that he din'd": [0, 65535], "far i witnes with him that he din'd not": [0, 65535], "i witnes with him that he din'd not at": [0, 65535], "witnes with him that he din'd not at home": [0, 65535], "with him that he din'd not at home but": [0, 65535], "him that he din'd not at home but was": [0, 65535], "that he din'd not at home but was lock'd": [0, 65535], "he din'd not at home but was lock'd out": [0, 65535], "din'd not at home but was lock'd out duke": [0, 65535], "not at home but was lock'd out duke but": [0, 65535], "at home but was lock'd out duke but had": [0, 65535], "home but was lock'd out duke but had he": [0, 65535], "but was lock'd out duke but had he such": [0, 65535], "was lock'd out duke but had he such a": [0, 65535], "lock'd out duke but had he such a chaine": [0, 65535], "out duke but had he such a chaine of": [0, 65535], "duke but had he such a chaine of thee": [0, 65535], "but had he such a chaine of thee or": [0, 65535], "had he such a chaine of thee or no": [0, 65535], "he such a chaine of thee or no gold": [0, 65535], "such a chaine of thee or no gold he": [0, 65535], "a chaine of thee or no gold he had": [0, 65535], "chaine of thee or no gold he had my": [0, 65535], "of thee or no gold he had my lord": [0, 65535], "thee or no gold he had my lord and": [0, 65535], "or no gold he had my lord and when": [0, 65535], "no gold he had my lord and when he": [0, 65535], "gold he had my lord and when he ran": [0, 65535], "he had my lord and when he ran in": [0, 65535], "had my lord and when he ran in heere": [0, 65535], "my lord and when he ran in heere these": [0, 65535], "lord and when he ran in heere these people": [0, 65535], "and when he ran in heere these people saw": [0, 65535], "when he ran in heere these people saw the": [0, 65535], "he ran in heere these people saw the chaine": [0, 65535], "ran in heere these people saw the chaine about": [0, 65535], "in heere these people saw the chaine about his": [0, 65535], "heere these people saw the chaine about his necke": [0, 65535], "these people saw the chaine about his necke mar": [0, 65535], "people saw the chaine about his necke mar besides": [0, 65535], "saw the chaine about his necke mar besides i": [0, 65535], "the chaine about his necke mar besides i will": [0, 65535], "chaine about his necke mar besides i will be": [0, 65535], "about his necke mar besides i will be sworne": [0, 65535], "his necke mar besides i will be sworne these": [0, 65535], "necke mar besides i will be sworne these eares": [0, 65535], "mar besides i will be sworne these eares of": [0, 65535], "besides i will be sworne these eares of mine": [0, 65535], "i will be sworne these eares of mine heard": [0, 65535], "will be sworne these eares of mine heard you": [0, 65535], "be sworne these eares of mine heard you confesse": [0, 65535], "sworne these eares of mine heard you confesse you": [0, 65535], "these eares of mine heard you confesse you had": [0, 65535], "eares of mine heard you confesse you had the": [0, 65535], "of mine heard you confesse you had the chaine": [0, 65535], "mine heard you confesse you had the chaine of": [0, 65535], "heard you confesse you had the chaine of him": [0, 65535], "you confesse you had the chaine of him after": [0, 65535], "confesse you had the chaine of him after you": [0, 65535], "you had the chaine of him after you first": [0, 65535], "had the chaine of him after you first forswore": [0, 65535], "the chaine of him after you first forswore it": [0, 65535], "chaine of him after you first forswore it on": [0, 65535], "of him after you first forswore it on the": [0, 65535], "him after you first forswore it on the mart": [0, 65535], "after you first forswore it on the mart and": [0, 65535], "you first forswore it on the mart and thereupon": [0, 65535], "first forswore it on the mart and thereupon i": [0, 65535], "forswore it on the mart and thereupon i drew": [0, 65535], "it on the mart and thereupon i drew my": [0, 65535], "on the mart and thereupon i drew my sword": [0, 65535], "the mart and thereupon i drew my sword on": [0, 65535], "mart and thereupon i drew my sword on you": [0, 65535], "and thereupon i drew my sword on you and": [0, 65535], "thereupon i drew my sword on you and then": [0, 65535], "i drew my sword on you and then you": [0, 65535], "drew my sword on you and then you fled": [0, 65535], "my sword on you and then you fled into": [0, 65535], "sword on you and then you fled into this": [0, 65535], "on you and then you fled into this abbey": [0, 65535], "you and then you fled into this abbey heere": [0, 65535], "and then you fled into this abbey heere from": [0, 65535], "then you fled into this abbey heere from whence": [0, 65535], "you fled into this abbey heere from whence i": [0, 65535], "fled into this abbey heere from whence i thinke": [0, 65535], "into this abbey heere from whence i thinke you": [0, 65535], "this abbey heere from whence i thinke you are": [0, 65535], "abbey heere from whence i thinke you are come": [0, 65535], "heere from whence i thinke you are come by": [0, 65535], "from whence i thinke you are come by miracle": [0, 65535], "whence i thinke you are come by miracle e": [0, 65535], "i thinke you are come by miracle e ant": [0, 65535], "thinke you are come by miracle e ant i": [0, 65535], "you are come by miracle e ant i neuer": [0, 65535], "are come by miracle e ant i neuer came": [0, 65535], "come by miracle e ant i neuer came within": [0, 65535], "by miracle e ant i neuer came within these": [0, 65535], "miracle e ant i neuer came within these abbey": [0, 65535], "e ant i neuer came within these abbey wals": [0, 65535], "ant i neuer came within these abbey wals nor": [0, 65535], "i neuer came within these abbey wals nor euer": [0, 65535], "neuer came within these abbey wals nor euer didst": [0, 65535], "came within these abbey wals nor euer didst thou": [0, 65535], "within these abbey wals nor euer didst thou draw": [0, 65535], "these abbey wals nor euer didst thou draw thy": [0, 65535], "abbey wals nor euer didst thou draw thy sword": [0, 65535], "wals nor euer didst thou draw thy sword on": [0, 65535], "nor euer didst thou draw thy sword on me": [0, 65535], "euer didst thou draw thy sword on me i": [0, 65535], "didst thou draw thy sword on me i neuer": [0, 65535], "thou draw thy sword on me i neuer saw": [0, 65535], "draw thy sword on me i neuer saw the": [0, 65535], "thy sword on me i neuer saw the chaine": [0, 65535], "sword on me i neuer saw the chaine so": [0, 65535], "on me i neuer saw the chaine so helpe": [0, 65535], "me i neuer saw the chaine so helpe me": [0, 65535], "i neuer saw the chaine so helpe me heauen": [0, 65535], "neuer saw the chaine so helpe me heauen and": [0, 65535], "saw the chaine so helpe me heauen and this": [0, 65535], "the chaine so helpe me heauen and this is": [0, 65535], "chaine so helpe me heauen and this is false": [0, 65535], "so helpe me heauen and this is false you": [0, 65535], "helpe me heauen and this is false you burthen": [0, 65535], "me heauen and this is false you burthen me": [0, 65535], "heauen and this is false you burthen me withall": [0, 65535], "and this is false you burthen me withall duke": [0, 65535], "this is false you burthen me withall duke why": [0, 65535], "is false you burthen me withall duke why what": [0, 65535], "false you burthen me withall duke why what an": [0, 65535], "you burthen me withall duke why what an intricate": [0, 65535], "burthen me withall duke why what an intricate impeach": [0, 65535], "me withall duke why what an intricate impeach is": [0, 65535], "withall duke why what an intricate impeach is this": [0, 65535], "duke why what an intricate impeach is this i": [0, 65535], "why what an intricate impeach is this i thinke": [0, 65535], "what an intricate impeach is this i thinke you": [0, 65535], "an intricate impeach is this i thinke you all": [0, 65535], "intricate impeach is this i thinke you all haue": [0, 65535], "impeach is this i thinke you all haue drunke": [0, 65535], "is this i thinke you all haue drunke of": [0, 65535], "this i thinke you all haue drunke of circes": [0, 65535], "i thinke you all haue drunke of circes cup": [0, 65535], "thinke you all haue drunke of circes cup if": [0, 65535], "you all haue drunke of circes cup if heere": [0, 65535], "all haue drunke of circes cup if heere you": [0, 65535], "haue drunke of circes cup if heere you hous'd": [0, 65535], "drunke of circes cup if heere you hous'd him": [0, 65535], "of circes cup if heere you hous'd him heere": [0, 65535], "circes cup if heere you hous'd him heere he": [0, 65535], "cup if heere you hous'd him heere he would": [0, 65535], "if heere you hous'd him heere he would haue": [0, 65535], "heere you hous'd him heere he would haue bin": [0, 65535], "you hous'd him heere he would haue bin if": [0, 65535], "hous'd him heere he would haue bin if he": [0, 65535], "him heere he would haue bin if he were": [0, 65535], "heere he would haue bin if he were mad": [0, 65535], "he would haue bin if he were mad he": [0, 65535], "would haue bin if he were mad he would": [0, 65535], "haue bin if he were mad he would not": [0, 65535], "bin if he were mad he would not pleade": [0, 65535], "if he were mad he would not pleade so": [0, 65535], "he were mad he would not pleade so coldly": [0, 65535], "were mad he would not pleade so coldly you": [0, 65535], "mad he would not pleade so coldly you say": [0, 65535], "he would not pleade so coldly you say he": [0, 65535], "would not pleade so coldly you say he din'd": [0, 65535], "not pleade so coldly you say he din'd at": [0, 65535], "pleade so coldly you say he din'd at home": [0, 65535], "so coldly you say he din'd at home the": [0, 65535], "coldly you say he din'd at home the goldsmith": [0, 65535], "you say he din'd at home the goldsmith heere": [0, 65535], "say he din'd at home the goldsmith heere denies": [0, 65535], "he din'd at home the goldsmith heere denies that": [0, 65535], "din'd at home the goldsmith heere denies that saying": [0, 65535], "at home the goldsmith heere denies that saying sirra": [0, 65535], "home the goldsmith heere denies that saying sirra what": [0, 65535], "the goldsmith heere denies that saying sirra what say": [0, 65535], "goldsmith heere denies that saying sirra what say you": [0, 65535], "heere denies that saying sirra what say you e": [0, 65535], "denies that saying sirra what say you e dro": [0, 65535], "that saying sirra what say you e dro sir": [0, 65535], "saying sirra what say you e dro sir he": [0, 65535], "sirra what say you e dro sir he din'de": [0, 65535], "what say you e dro sir he din'de with": [0, 65535], "say you e dro sir he din'de with her": [0, 65535], "you e dro sir he din'de with her there": [0, 65535], "e dro sir he din'de with her there at": [0, 65535], "dro sir he din'de with her there at the": [0, 65535], "sir he din'de with her there at the porpentine": [0, 65535], "he din'de with her there at the porpentine cur": [0, 65535], "din'de with her there at the porpentine cur he": [0, 65535], "with her there at the porpentine cur he did": [0, 65535], "her there at the porpentine cur he did and": [0, 65535], "there at the porpentine cur he did and from": [0, 65535], "at the porpentine cur he did and from my": [0, 65535], "the porpentine cur he did and from my finger": [0, 65535], "porpentine cur he did and from my finger snacht": [0, 65535], "cur he did and from my finger snacht that": [0, 65535], "he did and from my finger snacht that ring": [0, 65535], "did and from my finger snacht that ring e": [0, 65535], "and from my finger snacht that ring e anti": [0, 65535], "from my finger snacht that ring e anti tis": [0, 65535], "my finger snacht that ring e anti tis true": [0, 65535], "finger snacht that ring e anti tis true my": [0, 65535], "snacht that ring e anti tis true my liege": [0, 65535], "that ring e anti tis true my liege this": [0, 65535], "ring e anti tis true my liege this ring": [0, 65535], "e anti tis true my liege this ring i": [0, 65535], "anti tis true my liege this ring i had": [0, 65535], "tis true my liege this ring i had of": [0, 65535], "true my liege this ring i had of her": [0, 65535], "my liege this ring i had of her duke": [0, 65535], "liege this ring i had of her duke saw'st": [0, 65535], "this ring i had of her duke saw'st thou": [0, 65535], "ring i had of her duke saw'st thou him": [0, 65535], "i had of her duke saw'st thou him enter": [0, 65535], "had of her duke saw'st thou him enter at": [0, 65535], "of her duke saw'st thou him enter at the": [0, 65535], "her duke saw'st thou him enter at the abbey": [0, 65535], "duke saw'st thou him enter at the abbey heere": [0, 65535], "saw'st thou him enter at the abbey heere curt": [0, 65535], "thou him enter at the abbey heere curt as": [0, 65535], "him enter at the abbey heere curt as sure": [0, 65535], "enter at the abbey heere curt as sure my": [0, 65535], "at the abbey heere curt as sure my liege": [0, 65535], "the abbey heere curt as sure my liege as": [0, 65535], "abbey heere curt as sure my liege as i": [0, 65535], "heere curt as sure my liege as i do": [0, 65535], "curt as sure my liege as i do see": [0, 65535], "as sure my liege as i do see your": [0, 65535], "sure my liege as i do see your grace": [0, 65535], "my liege as i do see your grace duke": [0, 65535], "liege as i do see your grace duke why": [0, 65535], "as i do see your grace duke why this": [0, 65535], "i do see your grace duke why this is": [0, 65535], "do see your grace duke why this is straunge": [0, 65535], "see your grace duke why this is straunge go": [0, 65535], "your grace duke why this is straunge go call": [0, 65535], "grace duke why this is straunge go call the": [0, 65535], "duke why this is straunge go call the abbesse": [0, 65535], "why this is straunge go call the abbesse hither": [0, 65535], "this is straunge go call the abbesse hither i": [0, 65535], "is straunge go call the abbesse hither i thinke": [0, 65535], "straunge go call the abbesse hither i thinke you": [0, 65535], "go call the abbesse hither i thinke you are": [0, 65535], "call the abbesse hither i thinke you are all": [0, 65535], "the abbesse hither i thinke you are all mated": [0, 65535], "abbesse hither i thinke you are all mated or": [0, 65535], "hither i thinke you are all mated or starke": [0, 65535], "i thinke you are all mated or starke mad": [0, 65535], "thinke you are all mated or starke mad exit": [0, 65535], "you are all mated or starke mad exit one": [0, 65535], "are all mated or starke mad exit one to": [0, 65535], "all mated or starke mad exit one to the": [0, 65535], "mated or starke mad exit one to the abbesse": [0, 65535], "or starke mad exit one to the abbesse fa": [0, 65535], "starke mad exit one to the abbesse fa most": [0, 65535], "mad exit one to the abbesse fa most mighty": [0, 65535], "exit one to the abbesse fa most mighty duke": [0, 65535], "one to the abbesse fa most mighty duke vouchsafe": [0, 65535], "to the abbesse fa most mighty duke vouchsafe me": [0, 65535], "the abbesse fa most mighty duke vouchsafe me speak": [0, 65535], "abbesse fa most mighty duke vouchsafe me speak a": [0, 65535], "fa most mighty duke vouchsafe me speak a word": [0, 65535], "most mighty duke vouchsafe me speak a word haply": [0, 65535], "mighty duke vouchsafe me speak a word haply i": [0, 65535], "duke vouchsafe me speak a word haply i see": [0, 65535], "vouchsafe me speak a word haply i see a": [0, 65535], "me speak a word haply i see a friend": [0, 65535], "speak a word haply i see a friend will": [0, 65535], "a word haply i see a friend will saue": [0, 65535], "word haply i see a friend will saue my": [0, 65535], "haply i see a friend will saue my life": [0, 65535], "i see a friend will saue my life and": [0, 65535], "see a friend will saue my life and pay": [0, 65535], "a friend will saue my life and pay the": [0, 65535], "friend will saue my life and pay the sum": [0, 65535], "will saue my life and pay the sum that": [0, 65535], "saue my life and pay the sum that may": [0, 65535], "my life and pay the sum that may deliuer": [0, 65535], "life and pay the sum that may deliuer me": [0, 65535], "and pay the sum that may deliuer me duke": [0, 65535], "pay the sum that may deliuer me duke speake": [0, 65535], "the sum that may deliuer me duke speake freely": [0, 65535], "sum that may deliuer me duke speake freely siracusian": [0, 65535], "that may deliuer me duke speake freely siracusian what": [0, 65535], "may deliuer me duke speake freely siracusian what thou": [0, 65535], "deliuer me duke speake freely siracusian what thou wilt": [0, 65535], "me duke speake freely siracusian what thou wilt fath": [0, 65535], "duke speake freely siracusian what thou wilt fath is": [0, 65535], "speake freely siracusian what thou wilt fath is not": [0, 65535], "freely siracusian what thou wilt fath is not your": [0, 65535], "siracusian what thou wilt fath is not your name": [0, 65535], "what thou wilt fath is not your name sir": [0, 65535], "thou wilt fath is not your name sir call'd": [0, 65535], "wilt fath is not your name sir call'd antipholus": [0, 65535], "fath is not your name sir call'd antipholus and": [0, 65535], "is not your name sir call'd antipholus and is": [0, 65535], "not your name sir call'd antipholus and is not": [0, 65535], "your name sir call'd antipholus and is not that": [0, 65535], "name sir call'd antipholus and is not that your": [0, 65535], "sir call'd antipholus and is not that your bondman": [0, 65535], "call'd antipholus and is not that your bondman dromio": [0, 65535], "antipholus and is not that your bondman dromio e": [0, 65535], "and is not that your bondman dromio e dro": [0, 65535], "is not that your bondman dromio e dro within": [0, 65535], "not that your bondman dromio e dro within this": [0, 65535], "that your bondman dromio e dro within this houre": [0, 65535], "your bondman dromio e dro within this houre i": [0, 65535], "bondman dromio e dro within this houre i was": [0, 65535], "dromio e dro within this houre i was his": [0, 65535], "e dro within this houre i was his bondman": [0, 65535], "dro within this houre i was his bondman sir": [0, 65535], "within this houre i was his bondman sir but": [0, 65535], "this houre i was his bondman sir but he": [0, 65535], "houre i was his bondman sir but he i": [0, 65535], "i was his bondman sir but he i thanke": [0, 65535], "was his bondman sir but he i thanke him": [0, 65535], "his bondman sir but he i thanke him gnaw'd": [0, 65535], "bondman sir but he i thanke him gnaw'd in": [0, 65535], "sir but he i thanke him gnaw'd in two": [0, 65535], "but he i thanke him gnaw'd in two my": [0, 65535], "he i thanke him gnaw'd in two my cords": [0, 65535], "i thanke him gnaw'd in two my cords now": [0, 65535], "thanke him gnaw'd in two my cords now am": [0, 65535], "him gnaw'd in two my cords now am i": [0, 65535], "gnaw'd in two my cords now am i dromio": [0, 65535], "in two my cords now am i dromio and": [0, 65535], "two my cords now am i dromio and his": [0, 65535], "my cords now am i dromio and his man": [0, 65535], "cords now am i dromio and his man vnbound": [0, 65535], "now am i dromio and his man vnbound fath": [0, 65535], "am i dromio and his man vnbound fath i": [0, 65535], "i dromio and his man vnbound fath i am": [0, 65535], "dromio and his man vnbound fath i am sure": [0, 65535], "and his man vnbound fath i am sure you": [0, 65535], "his man vnbound fath i am sure you both": [0, 65535], "man vnbound fath i am sure you both of": [0, 65535], "vnbound fath i am sure you both of you": [0, 65535], "fath i am sure you both of you remember": [0, 65535], "i am sure you both of you remember me": [0, 65535], "am sure you both of you remember me dro": [0, 65535], "sure you both of you remember me dro our": [0, 65535], "you both of you remember me dro our selues": [0, 65535], "both of you remember me dro our selues we": [0, 65535], "of you remember me dro our selues we do": [0, 65535], "you remember me dro our selues we do remember": [0, 65535], "remember me dro our selues we do remember sir": [0, 65535], "me dro our selues we do remember sir by": [0, 65535], "dro our selues we do remember sir by you": [0, 65535], "our selues we do remember sir by you for": [0, 65535], "selues we do remember sir by you for lately": [0, 65535], "we do remember sir by you for lately we": [0, 65535], "do remember sir by you for lately we were": [0, 65535], "remember sir by you for lately we were bound": [0, 65535], "sir by you for lately we were bound as": [0, 65535], "by you for lately we were bound as you": [0, 65535], "you for lately we were bound as you are": [0, 65535], "for lately we were bound as you are now": [0, 65535], "lately we were bound as you are now you": [0, 65535], "we were bound as you are now you are": [0, 65535], "were bound as you are now you are not": [0, 65535], "bound as you are now you are not pinches": [0, 65535], "as you are now you are not pinches patient": [0, 65535], "you are now you are not pinches patient are": [0, 65535], "are now you are not pinches patient are you": [0, 65535], "now you are not pinches patient are you sir": [0, 65535], "you are not pinches patient are you sir father": [0, 65535], "are not pinches patient are you sir father why": [0, 65535], "not pinches patient are you sir father why looke": [0, 65535], "pinches patient are you sir father why looke you": [0, 65535], "patient are you sir father why looke you strange": [0, 65535], "are you sir father why looke you strange on": [0, 65535], "you sir father why looke you strange on me": [0, 65535], "sir father why looke you strange on me you": [0, 65535], "father why looke you strange on me you know": [0, 65535], "why looke you strange on me you know me": [0, 65535], "looke you strange on me you know me well": [0, 65535], "you strange on me you know me well e": [0, 65535], "strange on me you know me well e ant": [0, 65535], "on me you know me well e ant i": [0, 65535], "me you know me well e ant i neuer": [0, 65535], "you know me well e ant i neuer saw": [0, 65535], "know me well e ant i neuer saw you": [0, 65535], "me well e ant i neuer saw you in": [0, 65535], "well e ant i neuer saw you in my": [0, 65535], "e ant i neuer saw you in my life": [0, 65535], "ant i neuer saw you in my life till": [0, 65535], "i neuer saw you in my life till now": [0, 65535], "neuer saw you in my life till now fa": [0, 65535], "saw you in my life till now fa oh": [0, 65535], "you in my life till now fa oh griefe": [0, 65535], "in my life till now fa oh griefe hath": [0, 65535], "my life till now fa oh griefe hath chang'd": [0, 65535], "life till now fa oh griefe hath chang'd me": [0, 65535], "till now fa oh griefe hath chang'd me since": [0, 65535], "now fa oh griefe hath chang'd me since you": [0, 65535], "fa oh griefe hath chang'd me since you saw": [0, 65535], "oh griefe hath chang'd me since you saw me": [0, 65535], "griefe hath chang'd me since you saw me last": [0, 65535], "hath chang'd me since you saw me last and": [0, 65535], "chang'd me since you saw me last and carefull": [0, 65535], "me since you saw me last and carefull houres": [0, 65535], "since you saw me last and carefull houres with": [0, 65535], "you saw me last and carefull houres with times": [0, 65535], "saw me last and carefull houres with times deformed": [0, 65535], "me last and carefull houres with times deformed hand": [0, 65535], "last and carefull houres with times deformed hand haue": [0, 65535], "and carefull houres with times deformed hand haue written": [0, 65535], "carefull houres with times deformed hand haue written strange": [0, 65535], "houres with times deformed hand haue written strange defeatures": [0, 65535], "with times deformed hand haue written strange defeatures in": [0, 65535], "times deformed hand haue written strange defeatures in my": [0, 65535], "deformed hand haue written strange defeatures in my face": [0, 65535], "hand haue written strange defeatures in my face but": [0, 65535], "haue written strange defeatures in my face but tell": [0, 65535], "written strange defeatures in my face but tell me": [0, 65535], "strange defeatures in my face but tell me yet": [0, 65535], "defeatures in my face but tell me yet dost": [0, 65535], "in my face but tell me yet dost thou": [0, 65535], "my face but tell me yet dost thou not": [0, 65535], "face but tell me yet dost thou not know": [0, 65535], "but tell me yet dost thou not know my": [0, 65535], "tell me yet dost thou not know my voice": [0, 65535], "me yet dost thou not know my voice ant": [0, 65535], "yet dost thou not know my voice ant neither": [0, 65535], "dost thou not know my voice ant neither fat": [0, 65535], "thou not know my voice ant neither fat dromio": [0, 65535], "not know my voice ant neither fat dromio nor": [0, 65535], "know my voice ant neither fat dromio nor thou": [0, 65535], "my voice ant neither fat dromio nor thou dro": [0, 65535], "voice ant neither fat dromio nor thou dro no": [0, 65535], "ant neither fat dromio nor thou dro no trust": [0, 65535], "neither fat dromio nor thou dro no trust me": [0, 65535], "fat dromio nor thou dro no trust me sir": [0, 65535], "dromio nor thou dro no trust me sir nor": [0, 65535], "nor thou dro no trust me sir nor i": [0, 65535], "thou dro no trust me sir nor i fa": [0, 65535], "dro no trust me sir nor i fa i": [0, 65535], "no trust me sir nor i fa i am": [0, 65535], "trust me sir nor i fa i am sure": [0, 65535], "me sir nor i fa i am sure thou": [0, 65535], "sir nor i fa i am sure thou dost": [0, 65535], "nor i fa i am sure thou dost e": [0, 65535], "i fa i am sure thou dost e dromio": [0, 65535], "fa i am sure thou dost e dromio i": [0, 65535], "i am sure thou dost e dromio i sir": [0, 65535], "am sure thou dost e dromio i sir but": [0, 65535], "sure thou dost e dromio i sir but i": [0, 65535], "thou dost e dromio i sir but i am": [0, 65535], "dost e dromio i sir but i am sure": [0, 65535], "e dromio i sir but i am sure i": [0, 65535], "dromio i sir but i am sure i do": [0, 65535], "i sir but i am sure i do not": [0, 65535], "sir but i am sure i do not and": [0, 65535], "but i am sure i do not and whatsoeuer": [0, 65535], "i am sure i do not and whatsoeuer a": [0, 65535], "am sure i do not and whatsoeuer a man": [0, 65535], "sure i do not and whatsoeuer a man denies": [0, 65535], "i do not and whatsoeuer a man denies you": [0, 65535], "do not and whatsoeuer a man denies you are": [0, 65535], "not and whatsoeuer a man denies you are now": [0, 65535], "and whatsoeuer a man denies you are now bound": [0, 65535], "whatsoeuer a man denies you are now bound to": [0, 65535], "a man denies you are now bound to beleeue": [0, 65535], "man denies you are now bound to beleeue him": [0, 65535], "denies you are now bound to beleeue him fath": [0, 65535], "you are now bound to beleeue him fath not": [0, 65535], "are now bound to beleeue him fath not know": [0, 65535], "now bound to beleeue him fath not know my": [0, 65535], "bound to beleeue him fath not know my voice": [0, 65535], "to beleeue him fath not know my voice oh": [0, 65535], "beleeue him fath not know my voice oh times": [0, 65535], "him fath not know my voice oh times extremity": [0, 65535], "fath not know my voice oh times extremity hast": [0, 65535], "not know my voice oh times extremity hast thou": [0, 65535], "know my voice oh times extremity hast thou so": [0, 65535], "my voice oh times extremity hast thou so crack'd": [0, 65535], "voice oh times extremity hast thou so crack'd and": [0, 65535], "oh times extremity hast thou so crack'd and splitted": [0, 65535], "times extremity hast thou so crack'd and splitted my": [0, 65535], "extremity hast thou so crack'd and splitted my poore": [0, 65535], "hast thou so crack'd and splitted my poore tongue": [0, 65535], "thou so crack'd and splitted my poore tongue in": [0, 65535], "so crack'd and splitted my poore tongue in seuen": [0, 65535], "crack'd and splitted my poore tongue in seuen short": [0, 65535], "and splitted my poore tongue in seuen short yeares": [0, 65535], "splitted my poore tongue in seuen short yeares that": [0, 65535], "my poore tongue in seuen short yeares that heere": [0, 65535], "poore tongue in seuen short yeares that heere my": [0, 65535], "tongue in seuen short yeares that heere my onely": [0, 65535], "in seuen short yeares that heere my onely sonne": [0, 65535], "seuen short yeares that heere my onely sonne knowes": [0, 65535], "short yeares that heere my onely sonne knowes not": [0, 65535], "yeares that heere my onely sonne knowes not my": [0, 65535], "that heere my onely sonne knowes not my feeble": [0, 65535], "heere my onely sonne knowes not my feeble key": [0, 65535], "my onely sonne knowes not my feeble key of": [0, 65535], "onely sonne knowes not my feeble key of vntun'd": [0, 65535], "sonne knowes not my feeble key of vntun'd cares": [0, 65535], "knowes not my feeble key of vntun'd cares though": [0, 65535], "not my feeble key of vntun'd cares though now": [0, 65535], "my feeble key of vntun'd cares though now this": [0, 65535], "feeble key of vntun'd cares though now this grained": [0, 65535], "key of vntun'd cares though now this grained face": [0, 65535], "of vntun'd cares though now this grained face of": [0, 65535], "vntun'd cares though now this grained face of mine": [0, 65535], "cares though now this grained face of mine be": [0, 65535], "though now this grained face of mine be hid": [0, 65535], "now this grained face of mine be hid in": [0, 65535], "this grained face of mine be hid in sap": [0, 65535], "grained face of mine be hid in sap consuming": [0, 65535], "face of mine be hid in sap consuming winters": [0, 65535], "of mine be hid in sap consuming winters drizled": [0, 65535], "mine be hid in sap consuming winters drizled snow": [0, 65535], "be hid in sap consuming winters drizled snow and": [0, 65535], "hid in sap consuming winters drizled snow and all": [0, 65535], "in sap consuming winters drizled snow and all the": [0, 65535], "sap consuming winters drizled snow and all the conduits": [0, 65535], "consuming winters drizled snow and all the conduits of": [0, 65535], "winters drizled snow and all the conduits of my": [0, 65535], "drizled snow and all the conduits of my blood": [0, 65535], "snow and all the conduits of my blood froze": [0, 65535], "and all the conduits of my blood froze vp": [0, 65535], "all the conduits of my blood froze vp yet": [0, 65535], "the conduits of my blood froze vp yet hath": [0, 65535], "conduits of my blood froze vp yet hath my": [0, 65535], "of my blood froze vp yet hath my night": [0, 65535], "my blood froze vp yet hath my night of": [0, 65535], "blood froze vp yet hath my night of life": [0, 65535], "froze vp yet hath my night of life some": [0, 65535], "vp yet hath my night of life some memorie": [0, 65535], "yet hath my night of life some memorie my": [0, 65535], "hath my night of life some memorie my wasting": [0, 65535], "my night of life some memorie my wasting lampes": [0, 65535], "night of life some memorie my wasting lampes some": [0, 65535], "of life some memorie my wasting lampes some fading": [0, 65535], "life some memorie my wasting lampes some fading glimmer": [0, 65535], "some memorie my wasting lampes some fading glimmer left": [0, 65535], "memorie my wasting lampes some fading glimmer left my": [0, 65535], "my wasting lampes some fading glimmer left my dull": [0, 65535], "wasting lampes some fading glimmer left my dull deafe": [0, 65535], "lampes some fading glimmer left my dull deafe eares": [0, 65535], "some fading glimmer left my dull deafe eares a": [0, 65535], "fading glimmer left my dull deafe eares a little": [0, 65535], "glimmer left my dull deafe eares a little vse": [0, 65535], "left my dull deafe eares a little vse to": [0, 65535], "my dull deafe eares a little vse to heare": [0, 65535], "dull deafe eares a little vse to heare all": [0, 65535], "deafe eares a little vse to heare all these": [0, 65535], "eares a little vse to heare all these old": [0, 65535], "a little vse to heare all these old witnesses": [0, 65535], "little vse to heare all these old witnesses i": [0, 65535], "vse to heare all these old witnesses i cannot": [0, 65535], "to heare all these old witnesses i cannot erre": [0, 65535], "heare all these old witnesses i cannot erre tell": [0, 65535], "all these old witnesses i cannot erre tell me": [0, 65535], "these old witnesses i cannot erre tell me thou": [0, 65535], "old witnesses i cannot erre tell me thou art": [0, 65535], "witnesses i cannot erre tell me thou art my": [0, 65535], "i cannot erre tell me thou art my sonne": [0, 65535], "cannot erre tell me thou art my sonne antipholus": [0, 65535], "erre tell me thou art my sonne antipholus ant": [0, 65535], "tell me thou art my sonne antipholus ant i": [0, 65535], "me thou art my sonne antipholus ant i neuer": [0, 65535], "thou art my sonne antipholus ant i neuer saw": [0, 65535], "art my sonne antipholus ant i neuer saw my": [0, 65535], "my sonne antipholus ant i neuer saw my father": [0, 65535], "sonne antipholus ant i neuer saw my father in": [0, 65535], "antipholus ant i neuer saw my father in my": [0, 65535], "ant i neuer saw my father in my life": [0, 65535], "i neuer saw my father in my life fa": [0, 65535], "neuer saw my father in my life fa but": [0, 65535], "saw my father in my life fa but seuen": [0, 65535], "my father in my life fa but seuen yeares": [0, 65535], "father in my life fa but seuen yeares since": [0, 65535], "in my life fa but seuen yeares since in": [0, 65535], "my life fa but seuen yeares since in siracusa": [0, 65535], "life fa but seuen yeares since in siracusa boy": [0, 65535], "fa but seuen yeares since in siracusa boy thou": [0, 65535], "but seuen yeares since in siracusa boy thou know'st": [0, 65535], "seuen yeares since in siracusa boy thou know'st we": [0, 65535], "yeares since in siracusa boy thou know'st we parted": [0, 65535], "since in siracusa boy thou know'st we parted but": [0, 65535], "in siracusa boy thou know'st we parted but perhaps": [0, 65535], "siracusa boy thou know'st we parted but perhaps my": [0, 65535], "boy thou know'st we parted but perhaps my sonne": [0, 65535], "thou know'st we parted but perhaps my sonne thou": [0, 65535], "know'st we parted but perhaps my sonne thou sham'st": [0, 65535], "we parted but perhaps my sonne thou sham'st to": [0, 65535], "parted but perhaps my sonne thou sham'st to acknowledge": [0, 65535], "but perhaps my sonne thou sham'st to acknowledge me": [0, 65535], "perhaps my sonne thou sham'st to acknowledge me in": [0, 65535], "my sonne thou sham'st to acknowledge me in miserie": [0, 65535], "sonne thou sham'st to acknowledge me in miserie ant": [0, 65535], "thou sham'st to acknowledge me in miserie ant the": [0, 65535], "sham'st to acknowledge me in miserie ant the duke": [0, 65535], "to acknowledge me in miserie ant the duke and": [0, 65535], "acknowledge me in miserie ant the duke and all": [0, 65535], "me in miserie ant the duke and all that": [0, 65535], "in miserie ant the duke and all that know": [0, 65535], "miserie ant the duke and all that know me": [0, 65535], "ant the duke and all that know me in": [0, 65535], "the duke and all that know me in the": [0, 65535], "duke and all that know me in the city": [0, 65535], "and all that know me in the city can": [0, 65535], "all that know me in the city can witnesse": [0, 65535], "that know me in the city can witnesse with": [0, 65535], "know me in the city can witnesse with me": [0, 65535], "me in the city can witnesse with me that": [0, 65535], "in the city can witnesse with me that it": [0, 65535], "the city can witnesse with me that it is": [0, 65535], "city can witnesse with me that it is not": [0, 65535], "can witnesse with me that it is not so": [0, 65535], "witnesse with me that it is not so i": [0, 65535], "with me that it is not so i ne're": [0, 65535], "me that it is not so i ne're saw": [0, 65535], "that it is not so i ne're saw siracusa": [0, 65535], "it is not so i ne're saw siracusa in": [0, 65535], "is not so i ne're saw siracusa in my": [0, 65535], "not so i ne're saw siracusa in my life": [0, 65535], "so i ne're saw siracusa in my life duke": [0, 65535], "i ne're saw siracusa in my life duke i": [0, 65535], "ne're saw siracusa in my life duke i tell": [0, 65535], "saw siracusa in my life duke i tell thee": [0, 65535], "siracusa in my life duke i tell thee siracusian": [0, 65535], "in my life duke i tell thee siracusian twentie": [0, 65535], "my life duke i tell thee siracusian twentie yeares": [0, 65535], "life duke i tell thee siracusian twentie yeares haue": [0, 65535], "duke i tell thee siracusian twentie yeares haue i": [0, 65535], "i tell thee siracusian twentie yeares haue i bin": [0, 65535], "tell thee siracusian twentie yeares haue i bin patron": [0, 65535], "thee siracusian twentie yeares haue i bin patron to": [0, 65535], "siracusian twentie yeares haue i bin patron to antipholus": [0, 65535], "twentie yeares haue i bin patron to antipholus during": [0, 65535], "yeares haue i bin patron to antipholus during which": [0, 65535], "haue i bin patron to antipholus during which time": [0, 65535], "i bin patron to antipholus during which time he": [0, 65535], "bin patron to antipholus during which time he ne're": [0, 65535], "patron to antipholus during which time he ne're saw": [0, 65535], "to antipholus during which time he ne're saw siracusa": [0, 65535], "antipholus during which time he ne're saw siracusa i": [0, 65535], "during which time he ne're saw siracusa i see": [0, 65535], "which time he ne're saw siracusa i see thy": [0, 65535], "time he ne're saw siracusa i see thy age": [0, 65535], "he ne're saw siracusa i see thy age and": [0, 65535], "ne're saw siracusa i see thy age and dangers": [0, 65535], "saw siracusa i see thy age and dangers make": [0, 65535], "siracusa i see thy age and dangers make thee": [0, 65535], "i see thy age and dangers make thee dote": [0, 65535], "see thy age and dangers make thee dote enter": [0, 65535], "thy age and dangers make thee dote enter the": [0, 65535], "age and dangers make thee dote enter the abbesse": [0, 65535], "and dangers make thee dote enter the abbesse with": [0, 65535], "dangers make thee dote enter the abbesse with antipholus": [0, 65535], "make thee dote enter the abbesse with antipholus siracusa": [0, 65535], "thee dote enter the abbesse with antipholus siracusa and": [0, 65535], "dote enter the abbesse with antipholus siracusa and dromio": [0, 65535], "enter the abbesse with antipholus siracusa and dromio sir": [0, 65535], "the abbesse with antipholus siracusa and dromio sir abbesse": [0, 65535], "abbesse with antipholus siracusa and dromio sir abbesse most": [0, 65535], "with antipholus siracusa and dromio sir abbesse most mightie": [0, 65535], "antipholus siracusa and dromio sir abbesse most mightie duke": [0, 65535], "siracusa and dromio sir abbesse most mightie duke behold": [0, 65535], "and dromio sir abbesse most mightie duke behold a": [0, 65535], "dromio sir abbesse most mightie duke behold a man": [0, 65535], "sir abbesse most mightie duke behold a man much": [0, 65535], "abbesse most mightie duke behold a man much wrong'd": [0, 65535], "most mightie duke behold a man much wrong'd all": [0, 65535], "mightie duke behold a man much wrong'd all gather": [0, 65535], "duke behold a man much wrong'd all gather to": [0, 65535], "behold a man much wrong'd all gather to see": [0, 65535], "a man much wrong'd all gather to see them": [0, 65535], "man much wrong'd all gather to see them adr": [0, 65535], "much wrong'd all gather to see them adr i": [0, 65535], "wrong'd all gather to see them adr i see": [0, 65535], "all gather to see them adr i see two": [0, 65535], "gather to see them adr i see two husbands": [0, 65535], "to see them adr i see two husbands or": [0, 65535], "see them adr i see two husbands or mine": [0, 65535], "them adr i see two husbands or mine eyes": [0, 65535], "adr i see two husbands or mine eyes deceiue": [0, 65535], "i see two husbands or mine eyes deceiue me": [0, 65535], "see two husbands or mine eyes deceiue me duke": [0, 65535], "two husbands or mine eyes deceiue me duke one": [0, 65535], "husbands or mine eyes deceiue me duke one of": [0, 65535], "or mine eyes deceiue me duke one of these": [0, 65535], "mine eyes deceiue me duke one of these men": [0, 65535], "eyes deceiue me duke one of these men is": [0, 65535], "deceiue me duke one of these men is genius": [0, 65535], "me duke one of these men is genius to": [0, 65535], "duke one of these men is genius to the": [0, 65535], "one of these men is genius to the other": [0, 65535], "of these men is genius to the other and": [0, 65535], "these men is genius to the other and so": [0, 65535], "men is genius to the other and so of": [0, 65535], "is genius to the other and so of these": [0, 65535], "genius to the other and so of these which": [0, 65535], "to the other and so of these which is": [0, 65535], "the other and so of these which is the": [0, 65535], "other and so of these which is the naturall": [0, 65535], "and so of these which is the naturall man": [0, 65535], "so of these which is the naturall man and": [0, 65535], "of these which is the naturall man and which": [0, 65535], "these which is the naturall man and which the": [0, 65535], "which is the naturall man and which the spirit": [0, 65535], "is the naturall man and which the spirit who": [0, 65535], "the naturall man and which the spirit who deciphers": [0, 65535], "naturall man and which the spirit who deciphers them": [0, 65535], "man and which the spirit who deciphers them s": [0, 65535], "and which the spirit who deciphers them s dromio": [0, 65535], "which the spirit who deciphers them s dromio i": [0, 65535], "the spirit who deciphers them s dromio i sir": [0, 65535], "spirit who deciphers them s dromio i sir am": [0, 65535], "who deciphers them s dromio i sir am dromio": [0, 65535], "deciphers them s dromio i sir am dromio command": [0, 65535], "them s dromio i sir am dromio command him": [0, 65535], "s dromio i sir am dromio command him away": [0, 65535], "dromio i sir am dromio command him away e": [0, 65535], "i sir am dromio command him away e dro": [0, 65535], "sir am dromio command him away e dro i": [0, 65535], "am dromio command him away e dro i sir": [0, 65535], "dromio command him away e dro i sir am": [0, 65535], "command him away e dro i sir am dromio": [0, 65535], "him away e dro i sir am dromio pray": [0, 65535], "away e dro i sir am dromio pray let": [0, 65535], "e dro i sir am dromio pray let me": [0, 65535], "dro i sir am dromio pray let me stay": [0, 65535], "i sir am dromio pray let me stay s": [0, 65535], "sir am dromio pray let me stay s ant": [0, 65535], "am dromio pray let me stay s ant egeon": [0, 65535], "dromio pray let me stay s ant egeon art": [0, 65535], "pray let me stay s ant egeon art thou": [0, 65535], "let me stay s ant egeon art thou not": [0, 65535], "me stay s ant egeon art thou not or": [0, 65535], "stay s ant egeon art thou not or else": [0, 65535], "s ant egeon art thou not or else his": [0, 65535], "ant egeon art thou not or else his ghost": [0, 65535], "egeon art thou not or else his ghost s": [0, 65535], "art thou not or else his ghost s drom": [0, 65535], "thou not or else his ghost s drom oh": [0, 65535], "not or else his ghost s drom oh my": [0, 65535], "or else his ghost s drom oh my olde": [0, 65535], "else his ghost s drom oh my olde master": [0, 65535], "his ghost s drom oh my olde master who": [0, 65535], "ghost s drom oh my olde master who hath": [0, 65535], "s drom oh my olde master who hath bound": [0, 65535], "drom oh my olde master who hath bound him": [0, 65535], "oh my olde master who hath bound him heere": [0, 65535], "my olde master who hath bound him heere abb": [0, 65535], "olde master who hath bound him heere abb who": [0, 65535], "master who hath bound him heere abb who euer": [0, 65535], "who hath bound him heere abb who euer bound": [0, 65535], "hath bound him heere abb who euer bound him": [0, 65535], "bound him heere abb who euer bound him i": [0, 65535], "him heere abb who euer bound him i will": [0, 65535], "heere abb who euer bound him i will lose": [0, 65535], "abb who euer bound him i will lose his": [0, 65535], "who euer bound him i will lose his bonds": [0, 65535], "euer bound him i will lose his bonds and": [0, 65535], "bound him i will lose his bonds and gaine": [0, 65535], "him i will lose his bonds and gaine a": [0, 65535], "i will lose his bonds and gaine a husband": [0, 65535], "will lose his bonds and gaine a husband by": [0, 65535], "lose his bonds and gaine a husband by his": [0, 65535], "his bonds and gaine a husband by his libertie": [0, 65535], "bonds and gaine a husband by his libertie speake": [0, 65535], "and gaine a husband by his libertie speake olde": [0, 65535], "gaine a husband by his libertie speake olde egeon": [0, 65535], "a husband by his libertie speake olde egeon if": [0, 65535], "husband by his libertie speake olde egeon if thou": [0, 65535], "by his libertie speake olde egeon if thou bee'st": [0, 65535], "his libertie speake olde egeon if thou bee'st the": [0, 65535], "libertie speake olde egeon if thou bee'st the man": [0, 65535], "speake olde egeon if thou bee'st the man that": [0, 65535], "olde egeon if thou bee'st the man that hadst": [0, 65535], "egeon if thou bee'st the man that hadst a": [0, 65535], "if thou bee'st the man that hadst a wife": [0, 65535], "thou bee'st the man that hadst a wife once": [0, 65535], "bee'st the man that hadst a wife once call'd": [0, 65535], "the man that hadst a wife once call'd \u00e6milia": [0, 65535], "man that hadst a wife once call'd \u00e6milia that": [0, 65535], "that hadst a wife once call'd \u00e6milia that bore": [0, 65535], "hadst a wife once call'd \u00e6milia that bore thee": [0, 65535], "a wife once call'd \u00e6milia that bore thee at": [0, 65535], "wife once call'd \u00e6milia that bore thee at a": [0, 65535], "once call'd \u00e6milia that bore thee at a burthen": [0, 65535], "call'd \u00e6milia that bore thee at a burthen two": [0, 65535], "\u00e6milia that bore thee at a burthen two faire": [0, 65535], "that bore thee at a burthen two faire sonnes": [0, 65535], "bore thee at a burthen two faire sonnes oh": [0, 65535], "thee at a burthen two faire sonnes oh if": [0, 65535], "at a burthen two faire sonnes oh if thou": [0, 65535], "a burthen two faire sonnes oh if thou bee'st": [0, 65535], "burthen two faire sonnes oh if thou bee'st the": [0, 65535], "two faire sonnes oh if thou bee'st the same": [0, 65535], "faire sonnes oh if thou bee'st the same egeon": [0, 65535], "sonnes oh if thou bee'st the same egeon speake": [0, 65535], "oh if thou bee'st the same egeon speake and": [0, 65535], "if thou bee'st the same egeon speake and speake": [0, 65535], "thou bee'st the same egeon speake and speake vnto": [0, 65535], "bee'st the same egeon speake and speake vnto the": [0, 65535], "the same egeon speake and speake vnto the same": [0, 65535], "same egeon speake and speake vnto the same \u00e6milia": [0, 65535], "egeon speake and speake vnto the same \u00e6milia duke": [0, 65535], "speake and speake vnto the same \u00e6milia duke why": [0, 65535], "and speake vnto the same \u00e6milia duke why heere": [0, 65535], "speake vnto the same \u00e6milia duke why heere begins": [0, 65535], "vnto the same \u00e6milia duke why heere begins his": [0, 65535], "the same \u00e6milia duke why heere begins his morning": [0, 65535], "same \u00e6milia duke why heere begins his morning storie": [0, 65535], "\u00e6milia duke why heere begins his morning storie right": [0, 65535], "duke why heere begins his morning storie right these": [0, 65535], "why heere begins his morning storie right these twoantipholus": [0, 65535], "heere begins his morning storie right these twoantipholus these": [0, 65535], "begins his morning storie right these twoantipholus these two": [0, 65535], "his morning storie right these twoantipholus these two so": [0, 65535], "morning storie right these twoantipholus these two so like": [0, 65535], "storie right these twoantipholus these two so like and": [0, 65535], "right these twoantipholus these two so like and these": [0, 65535], "these twoantipholus these two so like and these two": [0, 65535], "twoantipholus these two so like and these two dromio's": [0, 65535], "these two so like and these two dromio's one": [0, 65535], "two so like and these two dromio's one in": [0, 65535], "so like and these two dromio's one in semblance": [0, 65535], "like and these two dromio's one in semblance besides": [0, 65535], "and these two dromio's one in semblance besides her": [0, 65535], "these two dromio's one in semblance besides her vrging": [0, 65535], "two dromio's one in semblance besides her vrging of": [0, 65535], "dromio's one in semblance besides her vrging of her": [0, 65535], "one in semblance besides her vrging of her wracke": [0, 65535], "in semblance besides her vrging of her wracke at": [0, 65535], "semblance besides her vrging of her wracke at sea": [0, 65535], "besides her vrging of her wracke at sea these": [0, 65535], "her vrging of her wracke at sea these are": [0, 65535], "vrging of her wracke at sea these are the": [0, 65535], "of her wracke at sea these are the parents": [0, 65535], "her wracke at sea these are the parents to": [0, 65535], "wracke at sea these are the parents to these": [0, 65535], "at sea these are the parents to these children": [0, 65535], "sea these are the parents to these children which": [0, 65535], "these are the parents to these children which accidentally": [0, 65535], "are the parents to these children which accidentally are": [0, 65535], "the parents to these children which accidentally are met": [0, 65535], "parents to these children which accidentally are met together": [0, 65535], "to these children which accidentally are met together fa": [0, 65535], "these children which accidentally are met together fa if": [0, 65535], "children which accidentally are met together fa if i": [0, 65535], "which accidentally are met together fa if i dreame": [0, 65535], "accidentally are met together fa if i dreame not": [0, 65535], "are met together fa if i dreame not thou": [0, 65535], "met together fa if i dreame not thou art": [0, 65535], "together fa if i dreame not thou art \u00e6milia": [0, 65535], "fa if i dreame not thou art \u00e6milia if": [0, 65535], "if i dreame not thou art \u00e6milia if thou": [0, 65535], "i dreame not thou art \u00e6milia if thou art": [0, 65535], "dreame not thou art \u00e6milia if thou art she": [0, 65535], "not thou art \u00e6milia if thou art she tell": [0, 65535], "thou art \u00e6milia if thou art she tell me": [0, 65535], "art \u00e6milia if thou art she tell me where": [0, 65535], "\u00e6milia if thou art she tell me where is": [0, 65535], "if thou art she tell me where is that": [0, 65535], "thou art she tell me where is that sonne": [0, 65535], "art she tell me where is that sonne that": [0, 65535], "she tell me where is that sonne that floated": [0, 65535], "tell me where is that sonne that floated with": [0, 65535], "me where is that sonne that floated with thee": [0, 65535], "where is that sonne that floated with thee on": [0, 65535], "is that sonne that floated with thee on the": [0, 65535], "that sonne that floated with thee on the fatall": [0, 65535], "sonne that floated with thee on the fatall rafte": [0, 65535], "that floated with thee on the fatall rafte abb": [0, 65535], "floated with thee on the fatall rafte abb by": [0, 65535], "with thee on the fatall rafte abb by men": [0, 65535], "thee on the fatall rafte abb by men of": [0, 65535], "on the fatall rafte abb by men of epidamium": [0, 65535], "the fatall rafte abb by men of epidamium he": [0, 65535], "fatall rafte abb by men of epidamium he and": [0, 65535], "rafte abb by men of epidamium he and i": [0, 65535], "abb by men of epidamium he and i and": [0, 65535], "by men of epidamium he and i and the": [0, 65535], "men of epidamium he and i and the twin": [0, 65535], "of epidamium he and i and the twin dromio": [0, 65535], "epidamium he and i and the twin dromio all": [0, 65535], "he and i and the twin dromio all were": [0, 65535], "and i and the twin dromio all were taken": [0, 65535], "i and the twin dromio all were taken vp": [0, 65535], "and the twin dromio all were taken vp but": [0, 65535], "the twin dromio all were taken vp but by": [0, 65535], "twin dromio all were taken vp but by and": [0, 65535], "dromio all were taken vp but by and by": [0, 65535], "all were taken vp but by and by rude": [0, 65535], "were taken vp but by and by rude fishermen": [0, 65535], "taken vp but by and by rude fishermen of": [0, 65535], "vp but by and by rude fishermen of corinth": [0, 65535], "but by and by rude fishermen of corinth by": [0, 65535], "by and by rude fishermen of corinth by force": [0, 65535], "and by rude fishermen of corinth by force tooke": [0, 65535], "by rude fishermen of corinth by force tooke dromio": [0, 65535], "rude fishermen of corinth by force tooke dromio and": [0, 65535], "fishermen of corinth by force tooke dromio and my": [0, 65535], "of corinth by force tooke dromio and my sonne": [0, 65535], "corinth by force tooke dromio and my sonne from": [0, 65535], "by force tooke dromio and my sonne from them": [0, 65535], "force tooke dromio and my sonne from them and": [0, 65535], "tooke dromio and my sonne from them and me": [0, 65535], "dromio and my sonne from them and me they": [0, 65535], "and my sonne from them and me they left": [0, 65535], "my sonne from them and me they left with": [0, 65535], "sonne from them and me they left with those": [0, 65535], "from them and me they left with those of": [0, 65535], "them and me they left with those of epidamium": [0, 65535], "and me they left with those of epidamium what": [0, 65535], "me they left with those of epidamium what then": [0, 65535], "they left with those of epidamium what then became": [0, 65535], "left with those of epidamium what then became of": [0, 65535], "with those of epidamium what then became of them": [0, 65535], "those of epidamium what then became of them i": [0, 65535], "of epidamium what then became of them i cannot": [0, 65535], "epidamium what then became of them i cannot tell": [0, 65535], "what then became of them i cannot tell i": [0, 65535], "then became of them i cannot tell i to": [0, 65535], "became of them i cannot tell i to this": [0, 65535], "of them i cannot tell i to this fortune": [0, 65535], "them i cannot tell i to this fortune that": [0, 65535], "i cannot tell i to this fortune that you": [0, 65535], "cannot tell i to this fortune that you see": [0, 65535], "tell i to this fortune that you see mee": [0, 65535], "i to this fortune that you see mee in": [0, 65535], "to this fortune that you see mee in duke": [0, 65535], "this fortune that you see mee in duke antipholus": [0, 65535], "fortune that you see mee in duke antipholus thou": [0, 65535], "that you see mee in duke antipholus thou cam'st": [0, 65535], "you see mee in duke antipholus thou cam'st from": [0, 65535], "see mee in duke antipholus thou cam'st from corinth": [0, 65535], "mee in duke antipholus thou cam'st from corinth first": [0, 65535], "in duke antipholus thou cam'st from corinth first s": [0, 65535], "duke antipholus thou cam'st from corinth first s ant": [0, 65535], "antipholus thou cam'st from corinth first s ant no": [0, 65535], "thou cam'st from corinth first s ant no sir": [0, 65535], "cam'st from corinth first s ant no sir not": [0, 65535], "from corinth first s ant no sir not i": [0, 65535], "corinth first s ant no sir not i i": [0, 65535], "first s ant no sir not i i came": [0, 65535], "s ant no sir not i i came from": [0, 65535], "ant no sir not i i came from siracuse": [0, 65535], "no sir not i i came from siracuse duke": [0, 65535], "sir not i i came from siracuse duke stay": [0, 65535], "not i i came from siracuse duke stay stand": [0, 65535], "i i came from siracuse duke stay stand apart": [0, 65535], "i came from siracuse duke stay stand apart i": [0, 65535], "came from siracuse duke stay stand apart i know": [0, 65535], "from siracuse duke stay stand apart i know not": [0, 65535], "siracuse duke stay stand apart i know not which": [0, 65535], "duke stay stand apart i know not which is": [0, 65535], "stay stand apart i know not which is which": [0, 65535], "stand apart i know not which is which e": [0, 65535], "apart i know not which is which e ant": [0, 65535], "i know not which is which e ant i": [0, 65535], "know not which is which e ant i came": [0, 65535], "not which is which e ant i came from": [0, 65535], "which is which e ant i came from corinth": [0, 65535], "is which e ant i came from corinth my": [0, 65535], "which e ant i came from corinth my most": [0, 65535], "e ant i came from corinth my most gracious": [0, 65535], "ant i came from corinth my most gracious lord": [0, 65535], "i came from corinth my most gracious lord e": [0, 65535], "came from corinth my most gracious lord e dro": [0, 65535], "from corinth my most gracious lord e dro and": [0, 65535], "corinth my most gracious lord e dro and i": [0, 65535], "my most gracious lord e dro and i with": [0, 65535], "most gracious lord e dro and i with him": [0, 65535], "gracious lord e dro and i with him e": [0, 65535], "lord e dro and i with him e ant": [0, 65535], "e dro and i with him e ant brought": [0, 65535], "dro and i with him e ant brought to": [0, 65535], "and i with him e ant brought to this": [0, 65535], "i with him e ant brought to this town": [0, 65535], "with him e ant brought to this town by": [0, 65535], "him e ant brought to this town by that": [0, 65535], "e ant brought to this town by that most": [0, 65535], "ant brought to this town by that most famous": [0, 65535], "brought to this town by that most famous warriour": [0, 65535], "to this town by that most famous warriour duke": [0, 65535], "this town by that most famous warriour duke menaphon": [0, 65535], "town by that most famous warriour duke menaphon your": [0, 65535], "by that most famous warriour duke menaphon your most": [0, 65535], "that most famous warriour duke menaphon your most renowned": [0, 65535], "most famous warriour duke menaphon your most renowned vnckle": [0, 65535], "famous warriour duke menaphon your most renowned vnckle adr": [0, 65535], "warriour duke menaphon your most renowned vnckle adr which": [0, 65535], "duke menaphon your most renowned vnckle adr which of": [0, 65535], "menaphon your most renowned vnckle adr which of you": [0, 65535], "your most renowned vnckle adr which of you two": [0, 65535], "most renowned vnckle adr which of you two did": [0, 65535], "renowned vnckle adr which of you two did dine": [0, 65535], "vnckle adr which of you two did dine with": [0, 65535], "adr which of you two did dine with me": [0, 65535], "which of you two did dine with me to": [0, 65535], "of you two did dine with me to day": [0, 65535], "you two did dine with me to day s": [0, 65535], "two did dine with me to day s ant": [0, 65535], "did dine with me to day s ant i": [0, 65535], "dine with me to day s ant i gentle": [0, 65535], "with me to day s ant i gentle mistris": [0, 65535], "me to day s ant i gentle mistris adr": [0, 65535], "to day s ant i gentle mistris adr and": [0, 65535], "day s ant i gentle mistris adr and are": [0, 65535], "s ant i gentle mistris adr and are not": [0, 65535], "ant i gentle mistris adr and are not you": [0, 65535], "i gentle mistris adr and are not you my": [0, 65535], "gentle mistris adr and are not you my husband": [0, 65535], "mistris adr and are not you my husband e": [0, 65535], "adr and are not you my husband e ant": [0, 65535], "and are not you my husband e ant no": [0, 65535], "are not you my husband e ant no i": [0, 65535], "not you my husband e ant no i say": [0, 65535], "you my husband e ant no i say nay": [0, 65535], "my husband e ant no i say nay to": [0, 65535], "husband e ant no i say nay to that": [0, 65535], "e ant no i say nay to that s": [0, 65535], "ant no i say nay to that s ant": [0, 65535], "no i say nay to that s ant and": [0, 65535], "i say nay to that s ant and so": [0, 65535], "say nay to that s ant and so do": [0, 65535], "nay to that s ant and so do i": [0, 65535], "to that s ant and so do i yet": [0, 65535], "that s ant and so do i yet did": [0, 65535], "s ant and so do i yet did she": [0, 65535], "ant and so do i yet did she call": [0, 65535], "and so do i yet did she call me": [0, 65535], "so do i yet did she call me so": [0, 65535], "do i yet did she call me so and": [0, 65535], "i yet did she call me so and this": [0, 65535], "yet did she call me so and this faire": [0, 65535], "did she call me so and this faire gentlewoman": [0, 65535], "she call me so and this faire gentlewoman her": [0, 65535], "call me so and this faire gentlewoman her sister": [0, 65535], "me so and this faire gentlewoman her sister heere": [0, 65535], "so and this faire gentlewoman her sister heere did": [0, 65535], "and this faire gentlewoman her sister heere did call": [0, 65535], "this faire gentlewoman her sister heere did call me": [0, 65535], "faire gentlewoman her sister heere did call me brother": [0, 65535], "gentlewoman her sister heere did call me brother what": [0, 65535], "her sister heere did call me brother what i": [0, 65535], "sister heere did call me brother what i told": [0, 65535], "heere did call me brother what i told you": [0, 65535], "did call me brother what i told you then": [0, 65535], "call me brother what i told you then i": [0, 65535], "me brother what i told you then i hope": [0, 65535], "brother what i told you then i hope i": [0, 65535], "what i told you then i hope i shall": [0, 65535], "i told you then i hope i shall haue": [0, 65535], "told you then i hope i shall haue leisure": [0, 65535], "you then i hope i shall haue leisure to": [0, 65535], "then i hope i shall haue leisure to make": [0, 65535], "i hope i shall haue leisure to make good": [0, 65535], "hope i shall haue leisure to make good if": [0, 65535], "i shall haue leisure to make good if this": [0, 65535], "shall haue leisure to make good if this be": [0, 65535], "haue leisure to make good if this be not": [0, 65535], "leisure to make good if this be not a": [0, 65535], "to make good if this be not a dreame": [0, 65535], "make good if this be not a dreame i": [0, 65535], "good if this be not a dreame i see": [0, 65535], "if this be not a dreame i see and": [0, 65535], "this be not a dreame i see and heare": [0, 65535], "be not a dreame i see and heare goldsmith": [0, 65535], "not a dreame i see and heare goldsmith that": [0, 65535], "a dreame i see and heare goldsmith that is": [0, 65535], "dreame i see and heare goldsmith that is the": [0, 65535], "i see and heare goldsmith that is the chaine": [0, 65535], "see and heare goldsmith that is the chaine sir": [0, 65535], "and heare goldsmith that is the chaine sir which": [0, 65535], "heare goldsmith that is the chaine sir which you": [0, 65535], "goldsmith that is the chaine sir which you had": [0, 65535], "that is the chaine sir which you had of": [0, 65535], "is the chaine sir which you had of mee": [0, 65535], "the chaine sir which you had of mee s": [0, 65535], "chaine sir which you had of mee s ant": [0, 65535], "sir which you had of mee s ant i": [0, 65535], "which you had of mee s ant i thinke": [0, 65535], "you had of mee s ant i thinke it": [0, 65535], "had of mee s ant i thinke it be": [0, 65535], "of mee s ant i thinke it be sir": [0, 65535], "mee s ant i thinke it be sir i": [0, 65535], "s ant i thinke it be sir i denie": [0, 65535], "ant i thinke it be sir i denie it": [0, 65535], "i thinke it be sir i denie it not": [0, 65535], "thinke it be sir i denie it not e": [0, 65535], "it be sir i denie it not e ant": [0, 65535], "be sir i denie it not e ant and": [0, 65535], "sir i denie it not e ant and you": [0, 65535], "i denie it not e ant and you sir": [0, 65535], "denie it not e ant and you sir for": [0, 65535], "it not e ant and you sir for this": [0, 65535], "not e ant and you sir for this chaine": [0, 65535], "e ant and you sir for this chaine arrested": [0, 65535], "ant and you sir for this chaine arrested me": [0, 65535], "and you sir for this chaine arrested me gold": [0, 65535], "you sir for this chaine arrested me gold i": [0, 65535], "sir for this chaine arrested me gold i thinke": [0, 65535], "for this chaine arrested me gold i thinke i": [0, 65535], "this chaine arrested me gold i thinke i did": [0, 65535], "chaine arrested me gold i thinke i did sir": [0, 65535], "arrested me gold i thinke i did sir i": [0, 65535], "me gold i thinke i did sir i deny": [0, 65535], "gold i thinke i did sir i deny it": [0, 65535], "i thinke i did sir i deny it not": [0, 65535], "thinke i did sir i deny it not adr": [0, 65535], "i did sir i deny it not adr i": [0, 65535], "did sir i deny it not adr i sent": [0, 65535], "sir i deny it not adr i sent you": [0, 65535], "i deny it not adr i sent you monie": [0, 65535], "deny it not adr i sent you monie sir": [0, 65535], "it not adr i sent you monie sir to": [0, 65535], "not adr i sent you monie sir to be": [0, 65535], "adr i sent you monie sir to be your": [0, 65535], "i sent you monie sir to be your baile": [0, 65535], "sent you monie sir to be your baile by": [0, 65535], "you monie sir to be your baile by dromio": [0, 65535], "monie sir to be your baile by dromio but": [0, 65535], "sir to be your baile by dromio but i": [0, 65535], "to be your baile by dromio but i thinke": [0, 65535], "be your baile by dromio but i thinke he": [0, 65535], "your baile by dromio but i thinke he brought": [0, 65535], "baile by dromio but i thinke he brought it": [0, 65535], "by dromio but i thinke he brought it not": [0, 65535], "dromio but i thinke he brought it not e": [0, 65535], "but i thinke he brought it not e dro": [0, 65535], "i thinke he brought it not e dro no": [0, 65535], "thinke he brought it not e dro no none": [0, 65535], "he brought it not e dro no none by": [0, 65535], "brought it not e dro no none by me": [0, 65535], "it not e dro no none by me s": [0, 65535], "not e dro no none by me s ant": [0, 65535], "e dro no none by me s ant this": [0, 65535], "dro no none by me s ant this purse": [0, 65535], "no none by me s ant this purse of": [0, 65535], "none by me s ant this purse of duckets": [0, 65535], "by me s ant this purse of duckets i": [0, 65535], "me s ant this purse of duckets i receiu'd": [0, 65535], "s ant this purse of duckets i receiu'd from": [0, 65535], "ant this purse of duckets i receiu'd from you": [0, 65535], "this purse of duckets i receiu'd from you and": [0, 65535], "purse of duckets i receiu'd from you and dromio": [0, 65535], "of duckets i receiu'd from you and dromio my": [0, 65535], "duckets i receiu'd from you and dromio my man": [0, 65535], "i receiu'd from you and dromio my man did": [0, 65535], "receiu'd from you and dromio my man did bring": [0, 65535], "from you and dromio my man did bring them": [0, 65535], "you and dromio my man did bring them me": [0, 65535], "and dromio my man did bring them me i": [0, 65535], "dromio my man did bring them me i see": [0, 65535], "my man did bring them me i see we": [0, 65535], "man did bring them me i see we still": [0, 65535], "did bring them me i see we still did": [0, 65535], "bring them me i see we still did meete": [0, 65535], "them me i see we still did meete each": [0, 65535], "me i see we still did meete each others": [0, 65535], "i see we still did meete each others man": [0, 65535], "see we still did meete each others man and": [0, 65535], "we still did meete each others man and i": [0, 65535], "still did meete each others man and i was": [0, 65535], "did meete each others man and i was tane": [0, 65535], "meete each others man and i was tane for": [0, 65535], "each others man and i was tane for him": [0, 65535], "others man and i was tane for him and": [0, 65535], "man and i was tane for him and he": [0, 65535], "and i was tane for him and he for": [0, 65535], "i was tane for him and he for me": [0, 65535], "was tane for him and he for me and": [0, 65535], "tane for him and he for me and thereupon": [0, 65535], "for him and he for me and thereupon these": [0, 65535], "him and he for me and thereupon these errors": [0, 65535], "and he for me and thereupon these errors are": [0, 65535], "he for me and thereupon these errors are arose": [0, 65535], "for me and thereupon these errors are arose e": [0, 65535], "me and thereupon these errors are arose e ant": [0, 65535], "and thereupon these errors are arose e ant these": [0, 65535], "thereupon these errors are arose e ant these duckets": [0, 65535], "these errors are arose e ant these duckets pawne": [0, 65535], "errors are arose e ant these duckets pawne i": [0, 65535], "are arose e ant these duckets pawne i for": [0, 65535], "arose e ant these duckets pawne i for my": [0, 65535], "e ant these duckets pawne i for my father": [0, 65535], "ant these duckets pawne i for my father heere": [0, 65535], "these duckets pawne i for my father heere duke": [0, 65535], "duckets pawne i for my father heere duke it": [0, 65535], "pawne i for my father heere duke it shall": [0, 65535], "i for my father heere duke it shall not": [0, 65535], "for my father heere duke it shall not neede": [0, 65535], "my father heere duke it shall not neede thy": [0, 65535], "father heere duke it shall not neede thy father": [0, 65535], "heere duke it shall not neede thy father hath": [0, 65535], "duke it shall not neede thy father hath his": [0, 65535], "it shall not neede thy father hath his life": [0, 65535], "shall not neede thy father hath his life cur": [0, 65535], "not neede thy father hath his life cur sir": [0, 65535], "neede thy father hath his life cur sir i": [0, 65535], "thy father hath his life cur sir i must": [0, 65535], "father hath his life cur sir i must haue": [0, 65535], "hath his life cur sir i must haue that": [0, 65535], "his life cur sir i must haue that diamond": [0, 65535], "life cur sir i must haue that diamond from": [0, 65535], "cur sir i must haue that diamond from you": [0, 65535], "sir i must haue that diamond from you e": [0, 65535], "i must haue that diamond from you e ant": [0, 65535], "must haue that diamond from you e ant there": [0, 65535], "haue that diamond from you e ant there take": [0, 65535], "that diamond from you e ant there take it": [0, 65535], "diamond from you e ant there take it and": [0, 65535], "from you e ant there take it and much": [0, 65535], "you e ant there take it and much thanks": [0, 65535], "e ant there take it and much thanks for": [0, 65535], "ant there take it and much thanks for my": [0, 65535], "there take it and much thanks for my good": [0, 65535], "take it and much thanks for my good cheere": [0, 65535], "it and much thanks for my good cheere abb": [0, 65535], "and much thanks for my good cheere abb renowned": [0, 65535], "much thanks for my good cheere abb renowned duke": [0, 65535], "thanks for my good cheere abb renowned duke vouchsafe": [0, 65535], "for my good cheere abb renowned duke vouchsafe to": [0, 65535], "my good cheere abb renowned duke vouchsafe to take": [0, 65535], "good cheere abb renowned duke vouchsafe to take the": [0, 65535], "cheere abb renowned duke vouchsafe to take the paines": [0, 65535], "abb renowned duke vouchsafe to take the paines to": [0, 65535], "renowned duke vouchsafe to take the paines to go": [0, 65535], "duke vouchsafe to take the paines to go with": [0, 65535], "vouchsafe to take the paines to go with vs": [0, 65535], "to take the paines to go with vs into": [0, 65535], "take the paines to go with vs into the": [0, 65535], "the paines to go with vs into the abbey": [0, 65535], "paines to go with vs into the abbey heere": [0, 65535], "to go with vs into the abbey heere and": [0, 65535], "go with vs into the abbey heere and heare": [0, 65535], "with vs into the abbey heere and heare at": [0, 65535], "vs into the abbey heere and heare at large": [0, 65535], "into the abbey heere and heare at large discoursed": [0, 65535], "the abbey heere and heare at large discoursed all": [0, 65535], "abbey heere and heare at large discoursed all our": [0, 65535], "heere and heare at large discoursed all our fortunes": [0, 65535], "and heare at large discoursed all our fortunes and": [0, 65535], "heare at large discoursed all our fortunes and all": [0, 65535], "at large discoursed all our fortunes and all that": [0, 65535], "large discoursed all our fortunes and all that are": [0, 65535], "discoursed all our fortunes and all that are assembled": [0, 65535], "all our fortunes and all that are assembled in": [0, 65535], "our fortunes and all that are assembled in this": [0, 65535], "fortunes and all that are assembled in this place": [0, 65535], "and all that are assembled in this place that": [0, 65535], "all that are assembled in this place that by": [0, 65535], "that are assembled in this place that by this": [0, 65535], "are assembled in this place that by this simpathized": [0, 65535], "assembled in this place that by this simpathized one": [0, 65535], "in this place that by this simpathized one daies": [0, 65535], "this place that by this simpathized one daies error": [0, 65535], "place that by this simpathized one daies error haue": [0, 65535], "that by this simpathized one daies error haue suffer'd": [0, 65535], "by this simpathized one daies error haue suffer'd wrong": [0, 65535], "this simpathized one daies error haue suffer'd wrong goe": [0, 65535], "simpathized one daies error haue suffer'd wrong goe keepe": [0, 65535], "one daies error haue suffer'd wrong goe keepe vs": [0, 65535], "daies error haue suffer'd wrong goe keepe vs companie": [0, 65535], "error haue suffer'd wrong goe keepe vs companie and": [0, 65535], "haue suffer'd wrong goe keepe vs companie and we": [0, 65535], "suffer'd wrong goe keepe vs companie and we shall": [0, 65535], "wrong goe keepe vs companie and we shall make": [0, 65535], "goe keepe vs companie and we shall make full": [0, 65535], "keepe vs companie and we shall make full satisfaction": [0, 65535], "vs companie and we shall make full satisfaction thirtie": [0, 65535], "companie and we shall make full satisfaction thirtie three": [0, 65535], "and we shall make full satisfaction thirtie three yeares": [0, 65535], "we shall make full satisfaction thirtie three yeares haue": [0, 65535], "shall make full satisfaction thirtie three yeares haue i": [0, 65535], "make full satisfaction thirtie three yeares haue i but": [0, 65535], "full satisfaction thirtie three yeares haue i but gone": [0, 65535], "satisfaction thirtie three yeares haue i but gone in": [0, 65535], "thirtie three yeares haue i but gone in trauaile": [0, 65535], "three yeares haue i but gone in trauaile of": [0, 65535], "yeares haue i but gone in trauaile of you": [0, 65535], "haue i but gone in trauaile of you my": [0, 65535], "i but gone in trauaile of you my sonnes": [0, 65535], "but gone in trauaile of you my sonnes and": [0, 65535], "gone in trauaile of you my sonnes and till": [0, 65535], "in trauaile of you my sonnes and till this": [0, 65535], "trauaile of you my sonnes and till this present": [0, 65535], "of you my sonnes and till this present houre": [0, 65535], "you my sonnes and till this present houre my": [0, 65535], "my sonnes and till this present houre my heauie": [0, 65535], "sonnes and till this present houre my heauie burthen": [0, 65535], "and till this present houre my heauie burthen are": [0, 65535], "till this present houre my heauie burthen are deliuered": [0, 65535], "this present houre my heauie burthen are deliuered the": [0, 65535], "present houre my heauie burthen are deliuered the duke": [0, 65535], "houre my heauie burthen are deliuered the duke my": [0, 65535], "my heauie burthen are deliuered the duke my husband": [0, 65535], "heauie burthen are deliuered the duke my husband and": [0, 65535], "burthen are deliuered the duke my husband and my": [0, 65535], "are deliuered the duke my husband and my children": [0, 65535], "deliuered the duke my husband and my children both": [0, 65535], "the duke my husband and my children both and": [0, 65535], "duke my husband and my children both and you": [0, 65535], "my husband and my children both and you the": [0, 65535], "husband and my children both and you the kalenders": [0, 65535], "and my children both and you the kalenders of": [0, 65535], "my children both and you the kalenders of their": [0, 65535], "children both and you the kalenders of their natiuity": [0, 65535], "both and you the kalenders of their natiuity go": [0, 65535], "and you the kalenders of their natiuity go to": [0, 65535], "you the kalenders of their natiuity go to a": [0, 65535], "the kalenders of their natiuity go to a gossips": [0, 65535], "kalenders of their natiuity go to a gossips feast": [0, 65535], "of their natiuity go to a gossips feast and": [0, 65535], "their natiuity go to a gossips feast and go": [0, 65535], "natiuity go to a gossips feast and go with": [0, 65535], "go to a gossips feast and go with mee": [0, 65535], "to a gossips feast and go with mee after": [0, 65535], "a gossips feast and go with mee after so": [0, 65535], "gossips feast and go with mee after so long": [0, 65535], "feast and go with mee after so long greefe": [0, 65535], "and go with mee after so long greefe such": [0, 65535], "go with mee after so long greefe such natiuitie": [0, 65535], "with mee after so long greefe such natiuitie duke": [0, 65535], "mee after so long greefe such natiuitie duke with": [0, 65535], "after so long greefe such natiuitie duke with all": [0, 65535], "so long greefe such natiuitie duke with all my": [0, 65535], "long greefe such natiuitie duke with all my heart": [0, 65535], "greefe such natiuitie duke with all my heart ile": [0, 65535], "such natiuitie duke with all my heart ile gossip": [0, 65535], "natiuitie duke with all my heart ile gossip at": [0, 65535], "duke with all my heart ile gossip at this": [0, 65535], "with all my heart ile gossip at this feast": [0, 65535], "all my heart ile gossip at this feast exeunt": [0, 65535], "my heart ile gossip at this feast exeunt omnes": [0, 65535], "heart ile gossip at this feast exeunt omnes manet": [0, 65535], "ile gossip at this feast exeunt omnes manet the": [0, 65535], "gossip at this feast exeunt omnes manet the two": [0, 65535], "at this feast exeunt omnes manet the two dromio's": [0, 65535], "this feast exeunt omnes manet the two dromio's and": [0, 65535], "feast exeunt omnes manet the two dromio's and two": [0, 65535], "exeunt omnes manet the two dromio's and two brothers": [0, 65535], "omnes manet the two dromio's and two brothers s": [0, 65535], "manet the two dromio's and two brothers s dro": [0, 65535], "the two dromio's and two brothers s dro mast": [0, 65535], "two dromio's and two brothers s dro mast shall": [0, 65535], "dromio's and two brothers s dro mast shall i": [0, 65535], "and two brothers s dro mast shall i fetch": [0, 65535], "two brothers s dro mast shall i fetch your": [0, 65535], "brothers s dro mast shall i fetch your stuffe": [0, 65535], "s dro mast shall i fetch your stuffe from": [0, 65535], "dro mast shall i fetch your stuffe from shipbord": [0, 65535], "mast shall i fetch your stuffe from shipbord e": [0, 65535], "shall i fetch your stuffe from shipbord e an": [0, 65535], "i fetch your stuffe from shipbord e an dromio": [0, 65535], "fetch your stuffe from shipbord e an dromio what": [0, 65535], "your stuffe from shipbord e an dromio what stuffe": [0, 65535], "stuffe from shipbord e an dromio what stuffe of": [0, 65535], "from shipbord e an dromio what stuffe of mine": [0, 65535], "shipbord e an dromio what stuffe of mine hast": [0, 65535], "e an dromio what stuffe of mine hast thou": [0, 65535], "an dromio what stuffe of mine hast thou imbarkt": [0, 65535], "dromio what stuffe of mine hast thou imbarkt s": [0, 65535], "what stuffe of mine hast thou imbarkt s dro": [0, 65535], "stuffe of mine hast thou imbarkt s dro your": [0, 65535], "of mine hast thou imbarkt s dro your goods": [0, 65535], "mine hast thou imbarkt s dro your goods that": [0, 65535], "hast thou imbarkt s dro your goods that lay": [0, 65535], "thou imbarkt s dro your goods that lay at": [0, 65535], "imbarkt s dro your goods that lay at host": [0, 65535], "s dro your goods that lay at host sir": [0, 65535], "dro your goods that lay at host sir in": [0, 65535], "your goods that lay at host sir in the": [0, 65535], "goods that lay at host sir in the centaur": [0, 65535], "that lay at host sir in the centaur s": [0, 65535], "lay at host sir in the centaur s ant": [0, 65535], "at host sir in the centaur s ant he": [0, 65535], "host sir in the centaur s ant he speakes": [0, 65535], "sir in the centaur s ant he speakes to": [0, 65535], "in the centaur s ant he speakes to me": [0, 65535], "the centaur s ant he speakes to me i": [0, 65535], "centaur s ant he speakes to me i am": [0, 65535], "s ant he speakes to me i am your": [0, 65535], "ant he speakes to me i am your master": [0, 65535], "he speakes to me i am your master dromio": [0, 65535], "speakes to me i am your master dromio come": [0, 65535], "to me i am your master dromio come go": [0, 65535], "me i am your master dromio come go with": [0, 65535], "i am your master dromio come go with vs": [0, 65535], "am your master dromio come go with vs wee'l": [0, 65535], "your master dromio come go with vs wee'l looke": [0, 65535], "master dromio come go with vs wee'l looke to": [0, 65535], "dromio come go with vs wee'l looke to that": [0, 65535], "come go with vs wee'l looke to that anon": [0, 65535], "go with vs wee'l looke to that anon embrace": [0, 65535], "with vs wee'l looke to that anon embrace thy": [0, 65535], "vs wee'l looke to that anon embrace thy brother": [0, 65535], "wee'l looke to that anon embrace thy brother there": [0, 65535], "looke to that anon embrace thy brother there reioyce": [0, 65535], "to that anon embrace thy brother there reioyce with": [0, 65535], "that anon embrace thy brother there reioyce with him": [0, 65535], "anon embrace thy brother there reioyce with him exit": [0, 65535], "embrace thy brother there reioyce with him exit s": [0, 65535], "thy brother there reioyce with him exit s dro": [0, 65535], "brother there reioyce with him exit s dro there": [0, 65535], "there reioyce with him exit s dro there is": [0, 65535], "reioyce with him exit s dro there is a": [0, 65535], "with him exit s dro there is a fat": [0, 65535], "him exit s dro there is a fat friend": [0, 65535], "exit s dro there is a fat friend at": [0, 65535], "s dro there is a fat friend at your": [0, 65535], "dro there is a fat friend at your masters": [0, 65535], "there is a fat friend at your masters house": [0, 65535], "is a fat friend at your masters house that": [0, 65535], "a fat friend at your masters house that kitchin'd": [0, 65535], "fat friend at your masters house that kitchin'd me": [0, 65535], "friend at your masters house that kitchin'd me for": [0, 65535], "at your masters house that kitchin'd me for you": [0, 65535], "your masters house that kitchin'd me for you to": [0, 65535], "masters house that kitchin'd me for you to day": [0, 65535], "house that kitchin'd me for you to day at": [0, 65535], "that kitchin'd me for you to day at dinner": [0, 65535], "kitchin'd me for you to day at dinner she": [0, 65535], "me for you to day at dinner she now": [0, 65535], "for you to day at dinner she now shall": [0, 65535], "you to day at dinner she now shall be": [0, 65535], "to day at dinner she now shall be my": [0, 65535], "day at dinner she now shall be my sister": [0, 65535], "at dinner she now shall be my sister not": [0, 65535], "dinner she now shall be my sister not my": [0, 65535], "she now shall be my sister not my wife": [0, 65535], "now shall be my sister not my wife e": [0, 65535], "shall be my sister not my wife e d": [0, 65535], "be my sister not my wife e d me": [0, 65535], "my sister not my wife e d me thinks": [0, 65535], "sister not my wife e d me thinks you": [0, 65535], "not my wife e d me thinks you are": [0, 65535], "my wife e d me thinks you are my": [0, 65535], "wife e d me thinks you are my glasse": [0, 65535], "e d me thinks you are my glasse not": [0, 65535], "d me thinks you are my glasse not my": [0, 65535], "me thinks you are my glasse not my brother": [0, 65535], "thinks you are my glasse not my brother i": [0, 65535], "you are my glasse not my brother i see": [0, 65535], "are my glasse not my brother i see by": [0, 65535], "my glasse not my brother i see by you": [0, 65535], "glasse not my brother i see by you i": [0, 65535], "not my brother i see by you i am": [0, 65535], "my brother i see by you i am a": [0, 65535], "brother i see by you i am a sweet": [0, 65535], "i see by you i am a sweet fac'd": [0, 65535], "see by you i am a sweet fac'd youth": [0, 65535], "by you i am a sweet fac'd youth will": [0, 65535], "you i am a sweet fac'd youth will you": [0, 65535], "i am a sweet fac'd youth will you walke": [0, 65535], "am a sweet fac'd youth will you walke in": [0, 65535], "a sweet fac'd youth will you walke in to": [0, 65535], "sweet fac'd youth will you walke in to see": [0, 65535], "fac'd youth will you walke in to see their": [0, 65535], "youth will you walke in to see their gossipping": [0, 65535], "will you walke in to see their gossipping s": [0, 65535], "you walke in to see their gossipping s dro": [0, 65535], "walke in to see their gossipping s dro not": [0, 65535], "in to see their gossipping s dro not i": [0, 65535], "to see their gossipping s dro not i sir": [0, 65535], "see their gossipping s dro not i sir you": [0, 65535], "their gossipping s dro not i sir you are": [0, 65535], "gossipping s dro not i sir you are my": [0, 65535], "s dro not i sir you are my elder": [0, 65535], "dro not i sir you are my elder e": [0, 65535], "not i sir you are my elder e dro": [0, 65535], "i sir you are my elder e dro that's": [0, 65535], "sir you are my elder e dro that's a": [0, 65535], "you are my elder e dro that's a question": [0, 65535], "are my elder e dro that's a question how": [0, 65535], "my elder e dro that's a question how shall": [0, 65535], "elder e dro that's a question how shall we": [0, 65535], "e dro that's a question how shall we trie": [0, 65535], "dro that's a question how shall we trie it": [0, 65535], "that's a question how shall we trie it s": [0, 65535], "a question how shall we trie it s dro": [0, 65535], "question how shall we trie it s dro wee'l": [0, 65535], "how shall we trie it s dro wee'l draw": [0, 65535], "shall we trie it s dro wee'l draw cuts": [0, 65535], "we trie it s dro wee'l draw cuts for": [0, 65535], "trie it s dro wee'l draw cuts for the": [0, 65535], "it s dro wee'l draw cuts for the signior": [0, 65535], "s dro wee'l draw cuts for the signior till": [0, 65535], "dro wee'l draw cuts for the signior till then": [0, 65535], "wee'l draw cuts for the signior till then lead": [0, 65535], "draw cuts for the signior till then lead thou": [0, 65535], "cuts for the signior till then lead thou first": [0, 65535], "for the signior till then lead thou first e": [0, 65535], "the signior till then lead thou first e dro": [0, 65535], "signior till then lead thou first e dro nay": [0, 65535], "till then lead thou first e dro nay then": [0, 65535], "then lead thou first e dro nay then thus": [0, 65535], "lead thou first e dro nay then thus we": [0, 65535], "thou first e dro nay then thus we came": [0, 65535], "first e dro nay then thus we came into": [0, 65535], "e dro nay then thus we came into the": [0, 65535], "dro nay then thus we came into the world": [0, 65535], "nay then thus we came into the world like": [0, 65535], "then thus we came into the world like brother": [0, 65535], "thus we came into the world like brother and": [0, 65535], "we came into the world like brother and brother": [0, 65535], "came into the world like brother and brother and": [0, 65535], "into the world like brother and brother and now": [0, 65535], "the world like brother and brother and now let's": [0, 65535], "world like brother and brother and now let's go": [0, 65535], "like brother and brother and now let's go hand": [0, 65535], "brother and brother and now let's go hand in": [0, 65535], "and brother and now let's go hand in hand": [0, 65535], "brother and now let's go hand in hand not": [0, 65535], "and now let's go hand in hand not one": [0, 65535], "now let's go hand in hand not one before": [0, 65535], "let's go hand in hand not one before another": [0, 65535], "go hand in hand not one before another exeunt": [0, 65535], "hand in hand not one before another exeunt finis": [0, 65535], "actus quintus sc\u0153na prima enter the merchant and the goldsmith": [0, 65535], "quintus sc\u0153na prima enter the merchant and the goldsmith gold": [0, 65535], "sc\u0153na prima enter the merchant and the goldsmith gold i": [0, 65535], "prima enter the merchant and the goldsmith gold i am": [0, 65535], "enter the merchant and the goldsmith gold i am sorry": [0, 65535], "the merchant and the goldsmith gold i am sorry sir": [0, 65535], "merchant and the goldsmith gold i am sorry sir that": [0, 65535], "and the goldsmith gold i am sorry sir that i": [0, 65535], "the goldsmith gold i am sorry sir that i haue": [0, 65535], "goldsmith gold i am sorry sir that i haue hindred": [0, 65535], "gold i am sorry sir that i haue hindred you": [0, 65535], "i am sorry sir that i haue hindred you but": [0, 65535], "am sorry sir that i haue hindred you but i": [0, 65535], "sorry sir that i haue hindred you but i protest": [0, 65535], "sir that i haue hindred you but i protest he": [0, 65535], "that i haue hindred you but i protest he had": [0, 65535], "i haue hindred you but i protest he had the": [0, 65535], "haue hindred you but i protest he had the chaine": [0, 65535], "hindred you but i protest he had the chaine of": [0, 65535], "you but i protest he had the chaine of me": [0, 65535], "but i protest he had the chaine of me though": [0, 65535], "i protest he had the chaine of me though most": [0, 65535], "protest he had the chaine of me though most dishonestly": [0, 65535], "he had the chaine of me though most dishonestly he": [0, 65535], "had the chaine of me though most dishonestly he doth": [0, 65535], "the chaine of me though most dishonestly he doth denie": [0, 65535], "chaine of me though most dishonestly he doth denie it": [0, 65535], "of me though most dishonestly he doth denie it mar": [0, 65535], "me though most dishonestly he doth denie it mar how": [0, 65535], "though most dishonestly he doth denie it mar how is": [0, 65535], "most dishonestly he doth denie it mar how is the": [0, 65535], "dishonestly he doth denie it mar how is the man": [0, 65535], "he doth denie it mar how is the man esteem'd": [0, 65535], "doth denie it mar how is the man esteem'd heere": [0, 65535], "denie it mar how is the man esteem'd heere in": [0, 65535], "it mar how is the man esteem'd heere in the": [0, 65535], "mar how is the man esteem'd heere in the citie": [0, 65535], "how is the man esteem'd heere in the citie gold": [0, 65535], "is the man esteem'd heere in the citie gold of": [0, 65535], "the man esteem'd heere in the citie gold of very": [0, 65535], "man esteem'd heere in the citie gold of very reuerent": [0, 65535], "esteem'd heere in the citie gold of very reuerent reputation": [0, 65535], "heere in the citie gold of very reuerent reputation sir": [0, 65535], "in the citie gold of very reuerent reputation sir of": [0, 65535], "the citie gold of very reuerent reputation sir of credit": [0, 65535], "citie gold of very reuerent reputation sir of credit infinite": [0, 65535], "gold of very reuerent reputation sir of credit infinite highly": [0, 65535], "of very reuerent reputation sir of credit infinite highly belou'd": [0, 65535], "very reuerent reputation sir of credit infinite highly belou'd second": [0, 65535], "reuerent reputation sir of credit infinite highly belou'd second to": [0, 65535], "reputation sir of credit infinite highly belou'd second to none": [0, 65535], "sir of credit infinite highly belou'd second to none that": [0, 65535], "of credit infinite highly belou'd second to none that liues": [0, 65535], "credit infinite highly belou'd second to none that liues heere": [0, 65535], "infinite highly belou'd second to none that liues heere in": [0, 65535], "highly belou'd second to none that liues heere in the": [0, 65535], "belou'd second to none that liues heere in the citie": [0, 65535], "second to none that liues heere in the citie his": [0, 65535], "to none that liues heere in the citie his word": [0, 65535], "none that liues heere in the citie his word might": [0, 65535], "that liues heere in the citie his word might beare": [0, 65535], "liues heere in the citie his word might beare my": [0, 65535], "heere in the citie his word might beare my wealth": [0, 65535], "in the citie his word might beare my wealth at": [0, 65535], "the citie his word might beare my wealth at any": [0, 65535], "citie his word might beare my wealth at any time": [0, 65535], "his word might beare my wealth at any time mar": [0, 65535], "word might beare my wealth at any time mar speake": [0, 65535], "might beare my wealth at any time mar speake softly": [0, 65535], "beare my wealth at any time mar speake softly yonder": [0, 65535], "my wealth at any time mar speake softly yonder as": [0, 65535], "wealth at any time mar speake softly yonder as i": [0, 65535], "at any time mar speake softly yonder as i thinke": [0, 65535], "any time mar speake softly yonder as i thinke he": [0, 65535], "time mar speake softly yonder as i thinke he walkes": [0, 65535], "mar speake softly yonder as i thinke he walkes enter": [0, 65535], "speake softly yonder as i thinke he walkes enter antipholus": [0, 65535], "softly yonder as i thinke he walkes enter antipholus and": [0, 65535], "yonder as i thinke he walkes enter antipholus and dromio": [0, 65535], "as i thinke he walkes enter antipholus and dromio againe": [0, 65535], "i thinke he walkes enter antipholus and dromio againe gold": [0, 65535], "thinke he walkes enter antipholus and dromio againe gold 'tis": [0, 65535], "he walkes enter antipholus and dromio againe gold 'tis so": [0, 65535], "walkes enter antipholus and dromio againe gold 'tis so and": [0, 65535], "enter antipholus and dromio againe gold 'tis so and that": [0, 65535], "antipholus and dromio againe gold 'tis so and that selfe": [0, 65535], "and dromio againe gold 'tis so and that selfe chaine": [0, 65535], "dromio againe gold 'tis so and that selfe chaine about": [0, 65535], "againe gold 'tis so and that selfe chaine about his": [0, 65535], "gold 'tis so and that selfe chaine about his necke": [0, 65535], "'tis so and that selfe chaine about his necke which": [0, 65535], "so and that selfe chaine about his necke which he": [0, 65535], "and that selfe chaine about his necke which he forswore": [0, 65535], "that selfe chaine about his necke which he forswore most": [0, 65535], "selfe chaine about his necke which he forswore most monstrously": [0, 65535], "chaine about his necke which he forswore most monstrously to": [0, 65535], "about his necke which he forswore most monstrously to haue": [0, 65535], "his necke which he forswore most monstrously to haue good": [0, 65535], "necke which he forswore most monstrously to haue good sir": [0, 65535], "which he forswore most monstrously to haue good sir draw": [0, 65535], "he forswore most monstrously to haue good sir draw neere": [0, 65535], "forswore most monstrously to haue good sir draw neere to": [0, 65535], "most monstrously to haue good sir draw neere to me": [0, 65535], "monstrously to haue good sir draw neere to me ile": [0, 65535], "to haue good sir draw neere to me ile speake": [0, 65535], "haue good sir draw neere to me ile speake to": [0, 65535], "good sir draw neere to me ile speake to him": [0, 65535], "sir draw neere to me ile speake to him signior": [0, 65535], "draw neere to me ile speake to him signior antipholus": [0, 65535], "neere to me ile speake to him signior antipholus i": [0, 65535], "to me ile speake to him signior antipholus i wonder": [0, 65535], "me ile speake to him signior antipholus i wonder much": [0, 65535], "ile speake to him signior antipholus i wonder much that": [0, 65535], "speake to him signior antipholus i wonder much that you": [0, 65535], "to him signior antipholus i wonder much that you would": [0, 65535], "him signior antipholus i wonder much that you would put": [0, 65535], "signior antipholus i wonder much that you would put me": [0, 65535], "antipholus i wonder much that you would put me to": [0, 65535], "i wonder much that you would put me to this": [0, 65535], "wonder much that you would put me to this shame": [0, 65535], "much that you would put me to this shame and": [0, 65535], "that you would put me to this shame and trouble": [0, 65535], "you would put me to this shame and trouble and": [0, 65535], "would put me to this shame and trouble and not": [0, 65535], "put me to this shame and trouble and not without": [0, 65535], "me to this shame and trouble and not without some": [0, 65535], "to this shame and trouble and not without some scandall": [0, 65535], "this shame and trouble and not without some scandall to": [0, 65535], "shame and trouble and not without some scandall to your": [0, 65535], "and trouble and not without some scandall to your selfe": [0, 65535], "trouble and not without some scandall to your selfe with": [0, 65535], "and not without some scandall to your selfe with circumstance": [0, 65535], "not without some scandall to your selfe with circumstance and": [0, 65535], "without some scandall to your selfe with circumstance and oaths": [0, 65535], "some scandall to your selfe with circumstance and oaths so": [0, 65535], "scandall to your selfe with circumstance and oaths so to": [0, 65535], "to your selfe with circumstance and oaths so to denie": [0, 65535], "your selfe with circumstance and oaths so to denie this": [0, 65535], "selfe with circumstance and oaths so to denie this chaine": [0, 65535], "with circumstance and oaths so to denie this chaine which": [0, 65535], "circumstance and oaths so to denie this chaine which now": [0, 65535], "and oaths so to denie this chaine which now you": [0, 65535], "oaths so to denie this chaine which now you weare": [0, 65535], "so to denie this chaine which now you weare so": [0, 65535], "to denie this chaine which now you weare so openly": [0, 65535], "denie this chaine which now you weare so openly beside": [0, 65535], "this chaine which now you weare so openly beside the": [0, 65535], "chaine which now you weare so openly beside the charge": [0, 65535], "which now you weare so openly beside the charge the": [0, 65535], "now you weare so openly beside the charge the shame": [0, 65535], "you weare so openly beside the charge the shame imprisonment": [0, 65535], "weare so openly beside the charge the shame imprisonment you": [0, 65535], "so openly beside the charge the shame imprisonment you haue": [0, 65535], "openly beside the charge the shame imprisonment you haue done": [0, 65535], "beside the charge the shame imprisonment you haue done wrong": [0, 65535], "the charge the shame imprisonment you haue done wrong to": [0, 65535], "charge the shame imprisonment you haue done wrong to this": [0, 65535], "the shame imprisonment you haue done wrong to this my": [0, 65535], "shame imprisonment you haue done wrong to this my honest": [0, 65535], "imprisonment you haue done wrong to this my honest friend": [0, 65535], "you haue done wrong to this my honest friend who": [0, 65535], "haue done wrong to this my honest friend who but": [0, 65535], "done wrong to this my honest friend who but for": [0, 65535], "wrong to this my honest friend who but for staying": [0, 65535], "to this my honest friend who but for staying on": [0, 65535], "this my honest friend who but for staying on our": [0, 65535], "my honest friend who but for staying on our controuersie": [0, 65535], "honest friend who but for staying on our controuersie had": [0, 65535], "friend who but for staying on our controuersie had hoisted": [0, 65535], "who but for staying on our controuersie had hoisted saile": [0, 65535], "but for staying on our controuersie had hoisted saile and": [0, 65535], "for staying on our controuersie had hoisted saile and put": [0, 65535], "staying on our controuersie had hoisted saile and put to": [0, 65535], "on our controuersie had hoisted saile and put to sea": [0, 65535], "our controuersie had hoisted saile and put to sea to": [0, 65535], "controuersie had hoisted saile and put to sea to day": [0, 65535], "had hoisted saile and put to sea to day this": [0, 65535], "hoisted saile and put to sea to day this chaine": [0, 65535], "saile and put to sea to day this chaine you": [0, 65535], "and put to sea to day this chaine you had": [0, 65535], "put to sea to day this chaine you had of": [0, 65535], "to sea to day this chaine you had of me": [0, 65535], "sea to day this chaine you had of me can": [0, 65535], "to day this chaine you had of me can you": [0, 65535], "day this chaine you had of me can you deny": [0, 65535], "this chaine you had of me can you deny it": [0, 65535], "chaine you had of me can you deny it ant": [0, 65535], "you had of me can you deny it ant i": [0, 65535], "had of me can you deny it ant i thinke": [0, 65535], "of me can you deny it ant i thinke i": [0, 65535], "me can you deny it ant i thinke i had": [0, 65535], "can you deny it ant i thinke i had i": [0, 65535], "you deny it ant i thinke i had i neuer": [0, 65535], "deny it ant i thinke i had i neuer did": [0, 65535], "it ant i thinke i had i neuer did deny": [0, 65535], "ant i thinke i had i neuer did deny it": [0, 65535], "i thinke i had i neuer did deny it mar": [0, 65535], "thinke i had i neuer did deny it mar yes": [0, 65535], "i had i neuer did deny it mar yes that": [0, 65535], "had i neuer did deny it mar yes that you": [0, 65535], "i neuer did deny it mar yes that you did": [0, 65535], "neuer did deny it mar yes that you did sir": [0, 65535], "did deny it mar yes that you did sir and": [0, 65535], "deny it mar yes that you did sir and forswore": [0, 65535], "it mar yes that you did sir and forswore it": [0, 65535], "mar yes that you did sir and forswore it too": [0, 65535], "yes that you did sir and forswore it too ant": [0, 65535], "that you did sir and forswore it too ant who": [0, 65535], "you did sir and forswore it too ant who heard": [0, 65535], "did sir and forswore it too ant who heard me": [0, 65535], "sir and forswore it too ant who heard me to": [0, 65535], "and forswore it too ant who heard me to denie": [0, 65535], "forswore it too ant who heard me to denie it": [0, 65535], "it too ant who heard me to denie it or": [0, 65535], "too ant who heard me to denie it or forsweare": [0, 65535], "ant who heard me to denie it or forsweare it": [0, 65535], "who heard me to denie it or forsweare it mar": [0, 65535], "heard me to denie it or forsweare it mar these": [0, 65535], "me to denie it or forsweare it mar these eares": [0, 65535], "to denie it or forsweare it mar these eares of": [0, 65535], "denie it or forsweare it mar these eares of mine": [0, 65535], "it or forsweare it mar these eares of mine thou": [0, 65535], "or forsweare it mar these eares of mine thou knowst": [0, 65535], "forsweare it mar these eares of mine thou knowst did": [0, 65535], "it mar these eares of mine thou knowst did hear": [0, 65535], "mar these eares of mine thou knowst did hear thee": [0, 65535], "these eares of mine thou knowst did hear thee fie": [0, 65535], "eares of mine thou knowst did hear thee fie on": [0, 65535], "of mine thou knowst did hear thee fie on thee": [0, 65535], "mine thou knowst did hear thee fie on thee wretch": [0, 65535], "thou knowst did hear thee fie on thee wretch 'tis": [0, 65535], "knowst did hear thee fie on thee wretch 'tis pitty": [0, 65535], "did hear thee fie on thee wretch 'tis pitty that": [0, 65535], "hear thee fie on thee wretch 'tis pitty that thou": [0, 65535], "thee fie on thee wretch 'tis pitty that thou liu'st": [0, 65535], "fie on thee wretch 'tis pitty that thou liu'st to": [0, 65535], "on thee wretch 'tis pitty that thou liu'st to walke": [0, 65535], "thee wretch 'tis pitty that thou liu'st to walke where": [0, 65535], "wretch 'tis pitty that thou liu'st to walke where any": [0, 65535], "'tis pitty that thou liu'st to walke where any honest": [0, 65535], "pitty that thou liu'st to walke where any honest men": [0, 65535], "that thou liu'st to walke where any honest men resort": [0, 65535], "thou liu'st to walke where any honest men resort ant": [0, 65535], "liu'st to walke where any honest men resort ant thou": [0, 65535], "to walke where any honest men resort ant thou art": [0, 65535], "walke where any honest men resort ant thou art a": [0, 65535], "where any honest men resort ant thou art a villaine": [0, 65535], "any honest men resort ant thou art a villaine to": [0, 65535], "honest men resort ant thou art a villaine to impeach": [0, 65535], "men resort ant thou art a villaine to impeach me": [0, 65535], "resort ant thou art a villaine to impeach me thus": [0, 65535], "ant thou art a villaine to impeach me thus ile": [0, 65535], "thou art a villaine to impeach me thus ile proue": [0, 65535], "art a villaine to impeach me thus ile proue mine": [0, 65535], "a villaine to impeach me thus ile proue mine honor": [0, 65535], "villaine to impeach me thus ile proue mine honor and": [0, 65535], "to impeach me thus ile proue mine honor and mine": [0, 65535], "impeach me thus ile proue mine honor and mine honestie": [0, 65535], "me thus ile proue mine honor and mine honestie against": [0, 65535], "thus ile proue mine honor and mine honestie against thee": [0, 65535], "ile proue mine honor and mine honestie against thee presently": [0, 65535], "proue mine honor and mine honestie against thee presently if": [0, 65535], "mine honor and mine honestie against thee presently if thou": [0, 65535], "honor and mine honestie against thee presently if thou dar'st": [0, 65535], "and mine honestie against thee presently if thou dar'st stand": [0, 65535], "mine honestie against thee presently if thou dar'st stand mar": [0, 65535], "honestie against thee presently if thou dar'st stand mar i": [0, 65535], "against thee presently if thou dar'st stand mar i dare": [0, 65535], "thee presently if thou dar'st stand mar i dare and": [0, 65535], "presently if thou dar'st stand mar i dare and do": [0, 65535], "if thou dar'st stand mar i dare and do defie": [0, 65535], "thou dar'st stand mar i dare and do defie thee": [0, 65535], "dar'st stand mar i dare and do defie thee for": [0, 65535], "stand mar i dare and do defie thee for a": [0, 65535], "mar i dare and do defie thee for a villaine": [0, 65535], "i dare and do defie thee for a villaine they": [0, 65535], "dare and do defie thee for a villaine they draw": [0, 65535], "and do defie thee for a villaine they draw enter": [0, 65535], "do defie thee for a villaine they draw enter adriana": [0, 65535], "defie thee for a villaine they draw enter adriana luciana": [0, 65535], "thee for a villaine they draw enter adriana luciana courtezan": [0, 65535], "for a villaine they draw enter adriana luciana courtezan others": [0, 65535], "a villaine they draw enter adriana luciana courtezan others adr": [0, 65535], "villaine they draw enter adriana luciana courtezan others adr hold": [0, 65535], "they draw enter adriana luciana courtezan others adr hold hurt": [0, 65535], "draw enter adriana luciana courtezan others adr hold hurt him": [0, 65535], "enter adriana luciana courtezan others adr hold hurt him not": [0, 65535], "adriana luciana courtezan others adr hold hurt him not for": [0, 65535], "luciana courtezan others adr hold hurt him not for god": [0, 65535], "courtezan others adr hold hurt him not for god sake": [0, 65535], "others adr hold hurt him not for god sake he": [0, 65535], "adr hold hurt him not for god sake he is": [0, 65535], "hold hurt him not for god sake he is mad": [0, 65535], "hurt him not for god sake he is mad some": [0, 65535], "him not for god sake he is mad some get": [0, 65535], "not for god sake he is mad some get within": [0, 65535], "for god sake he is mad some get within him": [0, 65535], "god sake he is mad some get within him take": [0, 65535], "sake he is mad some get within him take his": [0, 65535], "he is mad some get within him take his sword": [0, 65535], "is mad some get within him take his sword away": [0, 65535], "mad some get within him take his sword away binde": [0, 65535], "some get within him take his sword away binde dromio": [0, 65535], "get within him take his sword away binde dromio too": [0, 65535], "within him take his sword away binde dromio too and": [0, 65535], "him take his sword away binde dromio too and beare": [0, 65535], "take his sword away binde dromio too and beare them": [0, 65535], "his sword away binde dromio too and beare them to": [0, 65535], "sword away binde dromio too and beare them to my": [0, 65535], "away binde dromio too and beare them to my house": [0, 65535], "binde dromio too and beare them to my house s": [0, 65535], "dromio too and beare them to my house s dro": [0, 65535], "too and beare them to my house s dro runne": [0, 65535], "and beare them to my house s dro runne master": [0, 65535], "beare them to my house s dro runne master run": [0, 65535], "them to my house s dro runne master run for": [0, 65535], "to my house s dro runne master run for gods": [0, 65535], "my house s dro runne master run for gods sake": [0, 65535], "house s dro runne master run for gods sake take": [0, 65535], "s dro runne master run for gods sake take a": [0, 65535], "dro runne master run for gods sake take a house": [0, 65535], "runne master run for gods sake take a house this": [0, 65535], "master run for gods sake take a house this is": [0, 65535], "run for gods sake take a house this is some": [0, 65535], "for gods sake take a house this is some priorie": [0, 65535], "gods sake take a house this is some priorie in": [0, 65535], "sake take a house this is some priorie in or": [0, 65535], "take a house this is some priorie in or we": [0, 65535], "a house this is some priorie in or we are": [0, 65535], "house this is some priorie in or we are spoyl'd": [0, 65535], "this is some priorie in or we are spoyl'd exeunt": [0, 65535], "is some priorie in or we are spoyl'd exeunt to": [0, 65535], "some priorie in or we are spoyl'd exeunt to the": [0, 65535], "priorie in or we are spoyl'd exeunt to the priorie": [0, 65535], "in or we are spoyl'd exeunt to the priorie enter": [0, 65535], "or we are spoyl'd exeunt to the priorie enter ladie": [0, 65535], "we are spoyl'd exeunt to the priorie enter ladie abbesse": [0, 65535], "are spoyl'd exeunt to the priorie enter ladie abbesse ab": [0, 65535], "spoyl'd exeunt to the priorie enter ladie abbesse ab be": [0, 65535], "exeunt to the priorie enter ladie abbesse ab be quiet": [0, 65535], "to the priorie enter ladie abbesse ab be quiet people": [0, 65535], "the priorie enter ladie abbesse ab be quiet people wherefore": [0, 65535], "priorie enter ladie abbesse ab be quiet people wherefore throng": [0, 65535], "enter ladie abbesse ab be quiet people wherefore throng you": [0, 65535], "ladie abbesse ab be quiet people wherefore throng you hither": [0, 65535], "abbesse ab be quiet people wherefore throng you hither adr": [0, 65535], "ab be quiet people wherefore throng you hither adr to": [0, 65535], "be quiet people wherefore throng you hither adr to fetch": [0, 65535], "quiet people wherefore throng you hither adr to fetch my": [0, 65535], "people wherefore throng you hither adr to fetch my poore": [0, 65535], "wherefore throng you hither adr to fetch my poore distracted": [0, 65535], "throng you hither adr to fetch my poore distracted husband": [0, 65535], "you hither adr to fetch my poore distracted husband hence": [0, 65535], "hither adr to fetch my poore distracted husband hence let": [0, 65535], "adr to fetch my poore distracted husband hence let vs": [0, 65535], "to fetch my poore distracted husband hence let vs come": [0, 65535], "fetch my poore distracted husband hence let vs come in": [0, 65535], "my poore distracted husband hence let vs come in that": [0, 65535], "poore distracted husband hence let vs come in that we": [0, 65535], "distracted husband hence let vs come in that we may": [0, 65535], "husband hence let vs come in that we may binde": [0, 65535], "hence let vs come in that we may binde him": [0, 65535], "let vs come in that we may binde him fast": [0, 65535], "vs come in that we may binde him fast and": [0, 65535], "come in that we may binde him fast and beare": [0, 65535], "in that we may binde him fast and beare him": [0, 65535], "that we may binde him fast and beare him home": [0, 65535], "we may binde him fast and beare him home for": [0, 65535], "may binde him fast and beare him home for his": [0, 65535], "binde him fast and beare him home for his recouerie": [0, 65535], "him fast and beare him home for his recouerie gold": [0, 65535], "fast and beare him home for his recouerie gold i": [0, 65535], "and beare him home for his recouerie gold i knew": [0, 65535], "beare him home for his recouerie gold i knew he": [0, 65535], "him home for his recouerie gold i knew he was": [0, 65535], "home for his recouerie gold i knew he was not": [0, 65535], "for his recouerie gold i knew he was not in": [0, 65535], "his recouerie gold i knew he was not in his": [0, 65535], "recouerie gold i knew he was not in his perfect": [0, 65535], "gold i knew he was not in his perfect wits": [0, 65535], "i knew he was not in his perfect wits mar": [0, 65535], "knew he was not in his perfect wits mar i": [0, 65535], "he was not in his perfect wits mar i am": [0, 65535], "was not in his perfect wits mar i am sorry": [0, 65535], "not in his perfect wits mar i am sorry now": [0, 65535], "in his perfect wits mar i am sorry now that": [0, 65535], "his perfect wits mar i am sorry now that i": [0, 65535], "perfect wits mar i am sorry now that i did": [0, 65535], "wits mar i am sorry now that i did draw": [0, 65535], "mar i am sorry now that i did draw on": [0, 65535], "i am sorry now that i did draw on him": [0, 65535], "am sorry now that i did draw on him ab": [0, 65535], "sorry now that i did draw on him ab how": [0, 65535], "now that i did draw on him ab how long": [0, 65535], "that i did draw on him ab how long hath": [0, 65535], "i did draw on him ab how long hath this": [0, 65535], "did draw on him ab how long hath this possession": [0, 65535], "draw on him ab how long hath this possession held": [0, 65535], "on him ab how long hath this possession held the": [0, 65535], "him ab how long hath this possession held the man": [0, 65535], "ab how long hath this possession held the man adr": [0, 65535], "how long hath this possession held the man adr this": [0, 65535], "long hath this possession held the man adr this weeke": [0, 65535], "hath this possession held the man adr this weeke he": [0, 65535], "this possession held the man adr this weeke he hath": [0, 65535], "possession held the man adr this weeke he hath beene": [0, 65535], "held the man adr this weeke he hath beene heauie": [0, 65535], "the man adr this weeke he hath beene heauie sower": [0, 65535], "man adr this weeke he hath beene heauie sower sad": [0, 65535], "adr this weeke he hath beene heauie sower sad and": [0, 65535], "this weeke he hath beene heauie sower sad and much": [0, 65535], "weeke he hath beene heauie sower sad and much different": [0, 65535], "he hath beene heauie sower sad and much different from": [0, 65535], "hath beene heauie sower sad and much different from the": [0, 65535], "beene heauie sower sad and much different from the man": [0, 65535], "heauie sower sad and much different from the man he": [0, 65535], "sower sad and much different from the man he was": [0, 65535], "sad and much different from the man he was but": [0, 65535], "and much different from the man he was but till": [0, 65535], "much different from the man he was but till this": [0, 65535], "different from the man he was but till this afternoone": [0, 65535], "from the man he was but till this afternoone his": [0, 65535], "the man he was but till this afternoone his passion": [0, 65535], "man he was but till this afternoone his passion ne're": [0, 65535], "he was but till this afternoone his passion ne're brake": [0, 65535], "was but till this afternoone his passion ne're brake into": [0, 65535], "but till this afternoone his passion ne're brake into extremity": [0, 65535], "till this afternoone his passion ne're brake into extremity of": [0, 65535], "this afternoone his passion ne're brake into extremity of rage": [0, 65535], "afternoone his passion ne're brake into extremity of rage ab": [0, 65535], "his passion ne're brake into extremity of rage ab hath": [0, 65535], "passion ne're brake into extremity of rage ab hath he": [0, 65535], "ne're brake into extremity of rage ab hath he not": [0, 65535], "brake into extremity of rage ab hath he not lost": [0, 65535], "into extremity of rage ab hath he not lost much": [0, 65535], "extremity of rage ab hath he not lost much wealth": [0, 65535], "of rage ab hath he not lost much wealth by": [0, 65535], "rage ab hath he not lost much wealth by wrack": [0, 65535], "ab hath he not lost much wealth by wrack of": [0, 65535], "hath he not lost much wealth by wrack of sea": [0, 65535], "he not lost much wealth by wrack of sea buried": [0, 65535], "not lost much wealth by wrack of sea buried some": [0, 65535], "lost much wealth by wrack of sea buried some deere": [0, 65535], "much wealth by wrack of sea buried some deere friend": [0, 65535], "wealth by wrack of sea buried some deere friend hath": [0, 65535], "by wrack of sea buried some deere friend hath not": [0, 65535], "wrack of sea buried some deere friend hath not else": [0, 65535], "of sea buried some deere friend hath not else his": [0, 65535], "sea buried some deere friend hath not else his eye": [0, 65535], "buried some deere friend hath not else his eye stray'd": [0, 65535], "some deere friend hath not else his eye stray'd his": [0, 65535], "deere friend hath not else his eye stray'd his affection": [0, 65535], "friend hath not else his eye stray'd his affection in": [0, 65535], "hath not else his eye stray'd his affection in vnlawfull": [0, 65535], "not else his eye stray'd his affection in vnlawfull loue": [0, 65535], "else his eye stray'd his affection in vnlawfull loue a": [0, 65535], "his eye stray'd his affection in vnlawfull loue a sinne": [0, 65535], "eye stray'd his affection in vnlawfull loue a sinne preuailing": [0, 65535], "stray'd his affection in vnlawfull loue a sinne preuailing much": [0, 65535], "his affection in vnlawfull loue a sinne preuailing much in": [0, 65535], "affection in vnlawfull loue a sinne preuailing much in youthfull": [0, 65535], "in vnlawfull loue a sinne preuailing much in youthfull men": [0, 65535], "vnlawfull loue a sinne preuailing much in youthfull men who": [0, 65535], "loue a sinne preuailing much in youthfull men who giue": [0, 65535], "a sinne preuailing much in youthfull men who giue their": [0, 65535], "sinne preuailing much in youthfull men who giue their eies": [0, 65535], "preuailing much in youthfull men who giue their eies the": [0, 65535], "much in youthfull men who giue their eies the liberty": [0, 65535], "in youthfull men who giue their eies the liberty of": [0, 65535], "youthfull men who giue their eies the liberty of gazing": [0, 65535], "men who giue their eies the liberty of gazing which": [0, 65535], "who giue their eies the liberty of gazing which of": [0, 65535], "giue their eies the liberty of gazing which of these": [0, 65535], "their eies the liberty of gazing which of these sorrowes": [0, 65535], "eies the liberty of gazing which of these sorrowes is": [0, 65535], "the liberty of gazing which of these sorrowes is he": [0, 65535], "liberty of gazing which of these sorrowes is he subiect": [0, 65535], "of gazing which of these sorrowes is he subiect too": [0, 65535], "gazing which of these sorrowes is he subiect too adr": [0, 65535], "which of these sorrowes is he subiect too adr to": [0, 65535], "of these sorrowes is he subiect too adr to none": [0, 65535], "these sorrowes is he subiect too adr to none of": [0, 65535], "sorrowes is he subiect too adr to none of these": [0, 65535], "is he subiect too adr to none of these except": [0, 65535], "he subiect too adr to none of these except it": [0, 65535], "subiect too adr to none of these except it be": [0, 65535], "too adr to none of these except it be the": [0, 65535], "adr to none of these except it be the last": [0, 65535], "to none of these except it be the last namely": [0, 65535], "none of these except it be the last namely some": [0, 65535], "of these except it be the last namely some loue": [0, 65535], "these except it be the last namely some loue that": [0, 65535], "except it be the last namely some loue that drew": [0, 65535], "it be the last namely some loue that drew him": [0, 65535], "be the last namely some loue that drew him oft": [0, 65535], "the last namely some loue that drew him oft from": [0, 65535], "last namely some loue that drew him oft from home": [0, 65535], "namely some loue that drew him oft from home ab": [0, 65535], "some loue that drew him oft from home ab you": [0, 65535], "loue that drew him oft from home ab you should": [0, 65535], "that drew him oft from home ab you should for": [0, 65535], "drew him oft from home ab you should for that": [0, 65535], "him oft from home ab you should for that haue": [0, 65535], "oft from home ab you should for that haue reprehended": [0, 65535], "from home ab you should for that haue reprehended him": [0, 65535], "home ab you should for that haue reprehended him adr": [0, 65535], "ab you should for that haue reprehended him adr why": [0, 65535], "you should for that haue reprehended him adr why so": [0, 65535], "should for that haue reprehended him adr why so i": [0, 65535], "for that haue reprehended him adr why so i did": [0, 65535], "that haue reprehended him adr why so i did ab": [0, 65535], "haue reprehended him adr why so i did ab i": [0, 65535], "reprehended him adr why so i did ab i but": [0, 65535], "him adr why so i did ab i but not": [0, 65535], "adr why so i did ab i but not rough": [0, 65535], "why so i did ab i but not rough enough": [0, 65535], "so i did ab i but not rough enough adr": [0, 65535], "i did ab i but not rough enough adr as": [0, 65535], "did ab i but not rough enough adr as roughly": [0, 65535], "ab i but not rough enough adr as roughly as": [0, 65535], "i but not rough enough adr as roughly as my": [0, 65535], "but not rough enough adr as roughly as my modestie": [0, 65535], "not rough enough adr as roughly as my modestie would": [0, 65535], "rough enough adr as roughly as my modestie would let": [0, 65535], "enough adr as roughly as my modestie would let me": [0, 65535], "adr as roughly as my modestie would let me ab": [0, 65535], "as roughly as my modestie would let me ab haply": [0, 65535], "roughly as my modestie would let me ab haply in": [0, 65535], "as my modestie would let me ab haply in priuate": [0, 65535], "my modestie would let me ab haply in priuate adr": [0, 65535], "modestie would let me ab haply in priuate adr and": [0, 65535], "would let me ab haply in priuate adr and in": [0, 65535], "let me ab haply in priuate adr and in assemblies": [0, 65535], "me ab haply in priuate adr and in assemblies too": [0, 65535], "ab haply in priuate adr and in assemblies too ab": [0, 65535], "haply in priuate adr and in assemblies too ab i": [0, 65535], "in priuate adr and in assemblies too ab i but": [0, 65535], "priuate adr and in assemblies too ab i but not": [0, 65535], "adr and in assemblies too ab i but not enough": [0, 65535], "and in assemblies too ab i but not enough adr": [0, 65535], "in assemblies too ab i but not enough adr it": [0, 65535], "assemblies too ab i but not enough adr it was": [0, 65535], "too ab i but not enough adr it was the": [0, 65535], "ab i but not enough adr it was the copie": [0, 65535], "i but not enough adr it was the copie of": [0, 65535], "but not enough adr it was the copie of our": [0, 65535], "not enough adr it was the copie of our conference": [0, 65535], "enough adr it was the copie of our conference in": [0, 65535], "adr it was the copie of our conference in bed": [0, 65535], "it was the copie of our conference in bed he": [0, 65535], "was the copie of our conference in bed he slept": [0, 65535], "the copie of our conference in bed he slept not": [0, 65535], "copie of our conference in bed he slept not for": [0, 65535], "of our conference in bed he slept not for my": [0, 65535], "our conference in bed he slept not for my vrging": [0, 65535], "conference in bed he slept not for my vrging it": [0, 65535], "in bed he slept not for my vrging it at": [0, 65535], "bed he slept not for my vrging it at boord": [0, 65535], "he slept not for my vrging it at boord he": [0, 65535], "slept not for my vrging it at boord he fed": [0, 65535], "not for my vrging it at boord he fed not": [0, 65535], "for my vrging it at boord he fed not for": [0, 65535], "my vrging it at boord he fed not for my": [0, 65535], "vrging it at boord he fed not for my vrging": [0, 65535], "it at boord he fed not for my vrging it": [0, 65535], "at boord he fed not for my vrging it alone": [0, 65535], "boord he fed not for my vrging it alone it": [0, 65535], "he fed not for my vrging it alone it was": [0, 65535], "fed not for my vrging it alone it was the": [0, 65535], "not for my vrging it alone it was the subiect": [0, 65535], "for my vrging it alone it was the subiect of": [0, 65535], "my vrging it alone it was the subiect of my": [0, 65535], "vrging it alone it was the subiect of my theame": [0, 65535], "it alone it was the subiect of my theame in": [0, 65535], "alone it was the subiect of my theame in company": [0, 65535], "it was the subiect of my theame in company i": [0, 65535], "was the subiect of my theame in company i often": [0, 65535], "the subiect of my theame in company i often glanced": [0, 65535], "subiect of my theame in company i often glanced it": [0, 65535], "of my theame in company i often glanced it still": [0, 65535], "my theame in company i often glanced it still did": [0, 65535], "theame in company i often glanced it still did i": [0, 65535], "in company i often glanced it still did i tell": [0, 65535], "company i often glanced it still did i tell him": [0, 65535], "i often glanced it still did i tell him it": [0, 65535], "often glanced it still did i tell him it was": [0, 65535], "glanced it still did i tell him it was vilde": [0, 65535], "it still did i tell him it was vilde and": [0, 65535], "still did i tell him it was vilde and bad": [0, 65535], "did i tell him it was vilde and bad ab": [0, 65535], "i tell him it was vilde and bad ab and": [0, 65535], "tell him it was vilde and bad ab and thereof": [0, 65535], "him it was vilde and bad ab and thereof came": [0, 65535], "it was vilde and bad ab and thereof came it": [0, 65535], "was vilde and bad ab and thereof came it that": [0, 65535], "vilde and bad ab and thereof came it that the": [0, 65535], "and bad ab and thereof came it that the man": [0, 65535], "bad ab and thereof came it that the man was": [0, 65535], "ab and thereof came it that the man was mad": [0, 65535], "and thereof came it that the man was mad the": [0, 65535], "thereof came it that the man was mad the venome": [0, 65535], "came it that the man was mad the venome clamors": [0, 65535], "it that the man was mad the venome clamors of": [0, 65535], "that the man was mad the venome clamors of a": [0, 65535], "the man was mad the venome clamors of a iealous": [0, 65535], "man was mad the venome clamors of a iealous woman": [0, 65535], "was mad the venome clamors of a iealous woman poisons": [0, 65535], "mad the venome clamors of a iealous woman poisons more": [0, 65535], "the venome clamors of a iealous woman poisons more deadly": [0, 65535], "venome clamors of a iealous woman poisons more deadly then": [0, 65535], "clamors of a iealous woman poisons more deadly then a": [0, 65535], "of a iealous woman poisons more deadly then a mad": [0, 65535], "a iealous woman poisons more deadly then a mad dogges": [0, 65535], "iealous woman poisons more deadly then a mad dogges tooth": [0, 65535], "woman poisons more deadly then a mad dogges tooth it": [0, 65535], "poisons more deadly then a mad dogges tooth it seemes": [0, 65535], "more deadly then a mad dogges tooth it seemes his": [0, 65535], "deadly then a mad dogges tooth it seemes his sleepes": [0, 65535], "then a mad dogges tooth it seemes his sleepes were": [0, 65535], "a mad dogges tooth it seemes his sleepes were hindred": [0, 65535], "mad dogges tooth it seemes his sleepes were hindred by": [0, 65535], "dogges tooth it seemes his sleepes were hindred by thy": [0, 65535], "tooth it seemes his sleepes were hindred by thy railing": [0, 65535], "it seemes his sleepes were hindred by thy railing and": [0, 65535], "seemes his sleepes were hindred by thy railing and thereof": [0, 65535], "his sleepes were hindred by thy railing and thereof comes": [0, 65535], "sleepes were hindred by thy railing and thereof comes it": [0, 65535], "were hindred by thy railing and thereof comes it that": [0, 65535], "hindred by thy railing and thereof comes it that his": [0, 65535], "by thy railing and thereof comes it that his head": [0, 65535], "thy railing and thereof comes it that his head is": [0, 65535], "railing and thereof comes it that his head is light": [0, 65535], "and thereof comes it that his head is light thou": [0, 65535], "thereof comes it that his head is light thou saist": [0, 65535], "comes it that his head is light thou saist his": [0, 65535], "it that his head is light thou saist his meate": [0, 65535], "that his head is light thou saist his meate was": [0, 65535], "his head is light thou saist his meate was sawc'd": [0, 65535], "head is light thou saist his meate was sawc'd with": [0, 65535], "is light thou saist his meate was sawc'd with thy": [0, 65535], "light thou saist his meate was sawc'd with thy vpbraidings": [0, 65535], "thou saist his meate was sawc'd with thy vpbraidings vnquiet": [0, 65535], "saist his meate was sawc'd with thy vpbraidings vnquiet meales": [0, 65535], "his meate was sawc'd with thy vpbraidings vnquiet meales make": [0, 65535], "meate was sawc'd with thy vpbraidings vnquiet meales make ill": [0, 65535], "was sawc'd with thy vpbraidings vnquiet meales make ill digestions": [0, 65535], "sawc'd with thy vpbraidings vnquiet meales make ill digestions thereof": [0, 65535], "with thy vpbraidings vnquiet meales make ill digestions thereof the": [0, 65535], "thy vpbraidings vnquiet meales make ill digestions thereof the raging": [0, 65535], "vpbraidings vnquiet meales make ill digestions thereof the raging fire": [0, 65535], "vnquiet meales make ill digestions thereof the raging fire of": [0, 65535], "meales make ill digestions thereof the raging fire of feauer": [0, 65535], "make ill digestions thereof the raging fire of feauer bred": [0, 65535], "ill digestions thereof the raging fire of feauer bred and": [0, 65535], "digestions thereof the raging fire of feauer bred and what's": [0, 65535], "thereof the raging fire of feauer bred and what's a": [0, 65535], "the raging fire of feauer bred and what's a feauer": [0, 65535], "raging fire of feauer bred and what's a feauer but": [0, 65535], "fire of feauer bred and what's a feauer but a": [0, 65535], "of feauer bred and what's a feauer but a fit": [0, 65535], "feauer bred and what's a feauer but a fit of": [0, 65535], "bred and what's a feauer but a fit of madnesse": [0, 65535], "and what's a feauer but a fit of madnesse thou": [0, 65535], "what's a feauer but a fit of madnesse thou sayest": [0, 65535], "a feauer but a fit of madnesse thou sayest his": [0, 65535], "feauer but a fit of madnesse thou sayest his sports": [0, 65535], "but a fit of madnesse thou sayest his sports were": [0, 65535], "a fit of madnesse thou sayest his sports were hindred": [0, 65535], "fit of madnesse thou sayest his sports were hindred by": [0, 65535], "of madnesse thou sayest his sports were hindred by thy": [0, 65535], "madnesse thou sayest his sports were hindred by thy bralles": [0, 65535], "thou sayest his sports were hindred by thy bralles sweet": [0, 65535], "sayest his sports were hindred by thy bralles sweet recreation": [0, 65535], "his sports were hindred by thy bralles sweet recreation barr'd": [0, 65535], "sports were hindred by thy bralles sweet recreation barr'd what": [0, 65535], "were hindred by thy bralles sweet recreation barr'd what doth": [0, 65535], "hindred by thy bralles sweet recreation barr'd what doth ensue": [0, 65535], "by thy bralles sweet recreation barr'd what doth ensue but": [0, 65535], "thy bralles sweet recreation barr'd what doth ensue but moodie": [0, 65535], "bralles sweet recreation barr'd what doth ensue but moodie and": [0, 65535], "sweet recreation barr'd what doth ensue but moodie and dull": [0, 65535], "recreation barr'd what doth ensue but moodie and dull melancholly": [0, 65535], "barr'd what doth ensue but moodie and dull melancholly kinsman": [0, 65535], "what doth ensue but moodie and dull melancholly kinsman to": [0, 65535], "doth ensue but moodie and dull melancholly kinsman to grim": [0, 65535], "ensue but moodie and dull melancholly kinsman to grim and": [0, 65535], "but moodie and dull melancholly kinsman to grim and comfortlesse": [0, 65535], "moodie and dull melancholly kinsman to grim and comfortlesse dispaire": [0, 65535], "and dull melancholly kinsman to grim and comfortlesse dispaire and": [0, 65535], "dull melancholly kinsman to grim and comfortlesse dispaire and at": [0, 65535], "melancholly kinsman to grim and comfortlesse dispaire and at her": [0, 65535], "kinsman to grim and comfortlesse dispaire and at her heeles": [0, 65535], "to grim and comfortlesse dispaire and at her heeles a": [0, 65535], "grim and comfortlesse dispaire and at her heeles a huge": [0, 65535], "and comfortlesse dispaire and at her heeles a huge infectious": [0, 65535], "comfortlesse dispaire and at her heeles a huge infectious troope": [0, 65535], "dispaire and at her heeles a huge infectious troope of": [0, 65535], "and at her heeles a huge infectious troope of pale": [0, 65535], "at her heeles a huge infectious troope of pale distemperatures": [0, 65535], "her heeles a huge infectious troope of pale distemperatures and": [0, 65535], "heeles a huge infectious troope of pale distemperatures and foes": [0, 65535], "a huge infectious troope of pale distemperatures and foes to": [0, 65535], "huge infectious troope of pale distemperatures and foes to life": [0, 65535], "infectious troope of pale distemperatures and foes to life in": [0, 65535], "troope of pale distemperatures and foes to life in food": [0, 65535], "of pale distemperatures and foes to life in food in": [0, 65535], "pale distemperatures and foes to life in food in sport": [0, 65535], "distemperatures and foes to life in food in sport and": [0, 65535], "and foes to life in food in sport and life": [0, 65535], "foes to life in food in sport and life preseruing": [0, 65535], "to life in food in sport and life preseruing rest": [0, 65535], "life in food in sport and life preseruing rest to": [0, 65535], "in food in sport and life preseruing rest to be": [0, 65535], "food in sport and life preseruing rest to be disturb'd": [0, 65535], "in sport and life preseruing rest to be disturb'd would": [0, 65535], "sport and life preseruing rest to be disturb'd would mad": [0, 65535], "and life preseruing rest to be disturb'd would mad or": [0, 65535], "life preseruing rest to be disturb'd would mad or man": [0, 65535], "preseruing rest to be disturb'd would mad or man or": [0, 65535], "rest to be disturb'd would mad or man or beast": [0, 65535], "to be disturb'd would mad or man or beast the": [0, 65535], "be disturb'd would mad or man or beast the consequence": [0, 65535], "disturb'd would mad or man or beast the consequence is": [0, 65535], "would mad or man or beast the consequence is then": [0, 65535], "mad or man or beast the consequence is then thy": [0, 65535], "or man or beast the consequence is then thy iealous": [0, 65535], "man or beast the consequence is then thy iealous fits": [0, 65535], "or beast the consequence is then thy iealous fits hath": [0, 65535], "beast the consequence is then thy iealous fits hath scar'd": [0, 65535], "the consequence is then thy iealous fits hath scar'd thy": [0, 65535], "consequence is then thy iealous fits hath scar'd thy husband": [0, 65535], "is then thy iealous fits hath scar'd thy husband from": [0, 65535], "then thy iealous fits hath scar'd thy husband from the": [0, 65535], "thy iealous fits hath scar'd thy husband from the vse": [0, 65535], "iealous fits hath scar'd thy husband from the vse of": [0, 65535], "fits hath scar'd thy husband from the vse of wits": [0, 65535], "hath scar'd thy husband from the vse of wits luc": [0, 65535], "scar'd thy husband from the vse of wits luc she": [0, 65535], "thy husband from the vse of wits luc she neuer": [0, 65535], "husband from the vse of wits luc she neuer reprehended": [0, 65535], "from the vse of wits luc she neuer reprehended him": [0, 65535], "the vse of wits luc she neuer reprehended him but": [0, 65535], "vse of wits luc she neuer reprehended him but mildely": [0, 65535], "of wits luc she neuer reprehended him but mildely when": [0, 65535], "wits luc she neuer reprehended him but mildely when he": [0, 65535], "luc she neuer reprehended him but mildely when he demean'd": [0, 65535], "she neuer reprehended him but mildely when he demean'd himselfe": [0, 65535], "neuer reprehended him but mildely when he demean'd himselfe rough": [0, 65535], "reprehended him but mildely when he demean'd himselfe rough rude": [0, 65535], "him but mildely when he demean'd himselfe rough rude and": [0, 65535], "but mildely when he demean'd himselfe rough rude and wildly": [0, 65535], "mildely when he demean'd himselfe rough rude and wildly why": [0, 65535], "when he demean'd himselfe rough rude and wildly why beare": [0, 65535], "he demean'd himselfe rough rude and wildly why beare you": [0, 65535], "demean'd himselfe rough rude and wildly why beare you these": [0, 65535], "himselfe rough rude and wildly why beare you these rebukes": [0, 65535], "rough rude and wildly why beare you these rebukes and": [0, 65535], "rude and wildly why beare you these rebukes and answer": [0, 65535], "and wildly why beare you these rebukes and answer not": [0, 65535], "wildly why beare you these rebukes and answer not adri": [0, 65535], "why beare you these rebukes and answer not adri she": [0, 65535], "beare you these rebukes and answer not adri she did": [0, 65535], "you these rebukes and answer not adri she did betray": [0, 65535], "these rebukes and answer not adri she did betray me": [0, 65535], "rebukes and answer not adri she did betray me to": [0, 65535], "and answer not adri she did betray me to my": [0, 65535], "answer not adri she did betray me to my owne": [0, 65535], "not adri she did betray me to my owne reproofe": [0, 65535], "adri she did betray me to my owne reproofe good": [0, 65535], "she did betray me to my owne reproofe good people": [0, 65535], "did betray me to my owne reproofe good people enter": [0, 65535], "betray me to my owne reproofe good people enter and": [0, 65535], "me to my owne reproofe good people enter and lay": [0, 65535], "to my owne reproofe good people enter and lay hold": [0, 65535], "my owne reproofe good people enter and lay hold on": [0, 65535], "owne reproofe good people enter and lay hold on him": [0, 65535], "reproofe good people enter and lay hold on him ab": [0, 65535], "good people enter and lay hold on him ab no": [0, 65535], "people enter and lay hold on him ab no not": [0, 65535], "enter and lay hold on him ab no not a": [0, 65535], "and lay hold on him ab no not a creature": [0, 65535], "lay hold on him ab no not a creature enters": [0, 65535], "hold on him ab no not a creature enters in": [0, 65535], "on him ab no not a creature enters in my": [0, 65535], "him ab no not a creature enters in my house": [0, 65535], "ab no not a creature enters in my house ad": [0, 65535], "no not a creature enters in my house ad then": [0, 65535], "not a creature enters in my house ad then let": [0, 65535], "a creature enters in my house ad then let your": [0, 65535], "creature enters in my house ad then let your seruants": [0, 65535], "enters in my house ad then let your seruants bring": [0, 65535], "in my house ad then let your seruants bring my": [0, 65535], "my house ad then let your seruants bring my husband": [0, 65535], "house ad then let your seruants bring my husband forth": [0, 65535], "ad then let your seruants bring my husband forth ab": [0, 65535], "then let your seruants bring my husband forth ab neither": [0, 65535], "let your seruants bring my husband forth ab neither he": [0, 65535], "your seruants bring my husband forth ab neither he tooke": [0, 65535], "seruants bring my husband forth ab neither he tooke this": [0, 65535], "bring my husband forth ab neither he tooke this place": [0, 65535], "my husband forth ab neither he tooke this place for": [0, 65535], "husband forth ab neither he tooke this place for sanctuary": [0, 65535], "forth ab neither he tooke this place for sanctuary and": [0, 65535], "ab neither he tooke this place for sanctuary and it": [0, 65535], "neither he tooke this place for sanctuary and it shall": [0, 65535], "he tooke this place for sanctuary and it shall priuiledge": [0, 65535], "tooke this place for sanctuary and it shall priuiledge him": [0, 65535], "this place for sanctuary and it shall priuiledge him from": [0, 65535], "place for sanctuary and it shall priuiledge him from your": [0, 65535], "for sanctuary and it shall priuiledge him from your hands": [0, 65535], "sanctuary and it shall priuiledge him from your hands till": [0, 65535], "and it shall priuiledge him from your hands till i": [0, 65535], "it shall priuiledge him from your hands till i haue": [0, 65535], "shall priuiledge him from your hands till i haue brought": [0, 65535], "priuiledge him from your hands till i haue brought him": [0, 65535], "him from your hands till i haue brought him to": [0, 65535], "from your hands till i haue brought him to his": [0, 65535], "your hands till i haue brought him to his wits": [0, 65535], "hands till i haue brought him to his wits againe": [0, 65535], "till i haue brought him to his wits againe or": [0, 65535], "i haue brought him to his wits againe or loose": [0, 65535], "haue brought him to his wits againe or loose my": [0, 65535], "brought him to his wits againe or loose my labour": [0, 65535], "him to his wits againe or loose my labour in": [0, 65535], "to his wits againe or loose my labour in assaying": [0, 65535], "his wits againe or loose my labour in assaying it": [0, 65535], "wits againe or loose my labour in assaying it adr": [0, 65535], "againe or loose my labour in assaying it adr i": [0, 65535], "or loose my labour in assaying it adr i will": [0, 65535], "loose my labour in assaying it adr i will attend": [0, 65535], "my labour in assaying it adr i will attend my": [0, 65535], "labour in assaying it adr i will attend my husband": [0, 65535], "in assaying it adr i will attend my husband be": [0, 65535], "assaying it adr i will attend my husband be his": [0, 65535], "it adr i will attend my husband be his nurse": [0, 65535], "adr i will attend my husband be his nurse diet": [0, 65535], "i will attend my husband be his nurse diet his": [0, 65535], "will attend my husband be his nurse diet his sicknesse": [0, 65535], "attend my husband be his nurse diet his sicknesse for": [0, 65535], "my husband be his nurse diet his sicknesse for it": [0, 65535], "husband be his nurse diet his sicknesse for it is": [0, 65535], "be his nurse diet his sicknesse for it is my": [0, 65535], "his nurse diet his sicknesse for it is my office": [0, 65535], "nurse diet his sicknesse for it is my office and": [0, 65535], "diet his sicknesse for it is my office and will": [0, 65535], "his sicknesse for it is my office and will haue": [0, 65535], "sicknesse for it is my office and will haue no": [0, 65535], "for it is my office and will haue no atturney": [0, 65535], "it is my office and will haue no atturney but": [0, 65535], "is my office and will haue no atturney but my": [0, 65535], "my office and will haue no atturney but my selfe": [0, 65535], "office and will haue no atturney but my selfe and": [0, 65535], "and will haue no atturney but my selfe and therefore": [0, 65535], "will haue no atturney but my selfe and therefore let": [0, 65535], "haue no atturney but my selfe and therefore let me": [0, 65535], "no atturney but my selfe and therefore let me haue": [0, 65535], "atturney but my selfe and therefore let me haue him": [0, 65535], "but my selfe and therefore let me haue him home": [0, 65535], "my selfe and therefore let me haue him home with": [0, 65535], "selfe and therefore let me haue him home with me": [0, 65535], "and therefore let me haue him home with me ab": [0, 65535], "therefore let me haue him home with me ab be": [0, 65535], "let me haue him home with me ab be patient": [0, 65535], "me haue him home with me ab be patient for": [0, 65535], "haue him home with me ab be patient for i": [0, 65535], "him home with me ab be patient for i will": [0, 65535], "home with me ab be patient for i will not": [0, 65535], "with me ab be patient for i will not let": [0, 65535], "me ab be patient for i will not let him": [0, 65535], "ab be patient for i will not let him stirre": [0, 65535], "be patient for i will not let him stirre till": [0, 65535], "patient for i will not let him stirre till i": [0, 65535], "for i will not let him stirre till i haue": [0, 65535], "i will not let him stirre till i haue vs'd": [0, 65535], "will not let him stirre till i haue vs'd the": [0, 65535], "not let him stirre till i haue vs'd the approoued": [0, 65535], "let him stirre till i haue vs'd the approoued meanes": [0, 65535], "him stirre till i haue vs'd the approoued meanes i": [0, 65535], "stirre till i haue vs'd the approoued meanes i haue": [0, 65535], "till i haue vs'd the approoued meanes i haue with": [0, 65535], "i haue vs'd the approoued meanes i haue with wholsome": [0, 65535], "haue vs'd the approoued meanes i haue with wholsome sirrups": [0, 65535], "vs'd the approoued meanes i haue with wholsome sirrups drugges": [0, 65535], "the approoued meanes i haue with wholsome sirrups drugges and": [0, 65535], "approoued meanes i haue with wholsome sirrups drugges and holy": [0, 65535], "meanes i haue with wholsome sirrups drugges and holy prayers": [0, 65535], "i haue with wholsome sirrups drugges and holy prayers to": [0, 65535], "haue with wholsome sirrups drugges and holy prayers to make": [0, 65535], "with wholsome sirrups drugges and holy prayers to make of": [0, 65535], "wholsome sirrups drugges and holy prayers to make of him": [0, 65535], "sirrups drugges and holy prayers to make of him a": [0, 65535], "drugges and holy prayers to make of him a formall": [0, 65535], "and holy prayers to make of him a formall man": [0, 65535], "holy prayers to make of him a formall man againe": [0, 65535], "prayers to make of him a formall man againe it": [0, 65535], "to make of him a formall man againe it is": [0, 65535], "make of him a formall man againe it is a": [0, 65535], "of him a formall man againe it is a branch": [0, 65535], "him a formall man againe it is a branch and": [0, 65535], "a formall man againe it is a branch and parcell": [0, 65535], "formall man againe it is a branch and parcell of": [0, 65535], "man againe it is a branch and parcell of mine": [0, 65535], "againe it is a branch and parcell of mine oath": [0, 65535], "it is a branch and parcell of mine oath a": [0, 65535], "is a branch and parcell of mine oath a charitable": [0, 65535], "a branch and parcell of mine oath a charitable dutie": [0, 65535], "branch and parcell of mine oath a charitable dutie of": [0, 65535], "and parcell of mine oath a charitable dutie of my": [0, 65535], "parcell of mine oath a charitable dutie of my order": [0, 65535], "of mine oath a charitable dutie of my order therefore": [0, 65535], "mine oath a charitable dutie of my order therefore depart": [0, 65535], "oath a charitable dutie of my order therefore depart and": [0, 65535], "a charitable dutie of my order therefore depart and leaue": [0, 65535], "charitable dutie of my order therefore depart and leaue him": [0, 65535], "dutie of my order therefore depart and leaue him heere": [0, 65535], "of my order therefore depart and leaue him heere with": [0, 65535], "my order therefore depart and leaue him heere with me": [0, 65535], "order therefore depart and leaue him heere with me adr": [0, 65535], "therefore depart and leaue him heere with me adr i": [0, 65535], "depart and leaue him heere with me adr i will": [0, 65535], "and leaue him heere with me adr i will not": [0, 65535], "leaue him heere with me adr i will not hence": [0, 65535], "him heere with me adr i will not hence and": [0, 65535], "heere with me adr i will not hence and leaue": [0, 65535], "with me adr i will not hence and leaue my": [0, 65535], "me adr i will not hence and leaue my husband": [0, 65535], "adr i will not hence and leaue my husband heere": [0, 65535], "i will not hence and leaue my husband heere and": [0, 65535], "will not hence and leaue my husband heere and ill": [0, 65535], "not hence and leaue my husband heere and ill it": [0, 65535], "hence and leaue my husband heere and ill it doth": [0, 65535], "and leaue my husband heere and ill it doth beseeme": [0, 65535], "leaue my husband heere and ill it doth beseeme your": [0, 65535], "my husband heere and ill it doth beseeme your holinesse": [0, 65535], "husband heere and ill it doth beseeme your holinesse to": [0, 65535], "heere and ill it doth beseeme your holinesse to separate": [0, 65535], "and ill it doth beseeme your holinesse to separate the": [0, 65535], "ill it doth beseeme your holinesse to separate the husband": [0, 65535], "it doth beseeme your holinesse to separate the husband and": [0, 65535], "doth beseeme your holinesse to separate the husband and the": [0, 65535], "beseeme your holinesse to separate the husband and the wife": [0, 65535], "your holinesse to separate the husband and the wife ab": [0, 65535], "holinesse to separate the husband and the wife ab be": [0, 65535], "to separate the husband and the wife ab be quiet": [0, 65535], "separate the husband and the wife ab be quiet and": [0, 65535], "the husband and the wife ab be quiet and depart": [0, 65535], "husband and the wife ab be quiet and depart thou": [0, 65535], "and the wife ab be quiet and depart thou shalt": [0, 65535], "the wife ab be quiet and depart thou shalt not": [0, 65535], "wife ab be quiet and depart thou shalt not haue": [0, 65535], "ab be quiet and depart thou shalt not haue him": [0, 65535], "be quiet and depart thou shalt not haue him luc": [0, 65535], "quiet and depart thou shalt not haue him luc complaine": [0, 65535], "and depart thou shalt not haue him luc complaine vnto": [0, 65535], "depart thou shalt not haue him luc complaine vnto the": [0, 65535], "thou shalt not haue him luc complaine vnto the duke": [0, 65535], "shalt not haue him luc complaine vnto the duke of": [0, 65535], "not haue him luc complaine vnto the duke of this": [0, 65535], "haue him luc complaine vnto the duke of this indignity": [0, 65535], "him luc complaine vnto the duke of this indignity adr": [0, 65535], "luc complaine vnto the duke of this indignity adr come": [0, 65535], "complaine vnto the duke of this indignity adr come go": [0, 65535], "vnto the duke of this indignity adr come go i": [0, 65535], "the duke of this indignity adr come go i will": [0, 65535], "duke of this indignity adr come go i will fall": [0, 65535], "of this indignity adr come go i will fall prostrate": [0, 65535], "this indignity adr come go i will fall prostrate at": [0, 65535], "indignity adr come go i will fall prostrate at his": [0, 65535], "adr come go i will fall prostrate at his feete": [0, 65535], "come go i will fall prostrate at his feete and": [0, 65535], "go i will fall prostrate at his feete and neuer": [0, 65535], "i will fall prostrate at his feete and neuer rise": [0, 65535], "will fall prostrate at his feete and neuer rise vntill": [0, 65535], "fall prostrate at his feete and neuer rise vntill my": [0, 65535], "prostrate at his feete and neuer rise vntill my teares": [0, 65535], "at his feete and neuer rise vntill my teares and": [0, 65535], "his feete and neuer rise vntill my teares and prayers": [0, 65535], "feete and neuer rise vntill my teares and prayers haue": [0, 65535], "and neuer rise vntill my teares and prayers haue won": [0, 65535], "neuer rise vntill my teares and prayers haue won his": [0, 65535], "rise vntill my teares and prayers haue won his grace": [0, 65535], "vntill my teares and prayers haue won his grace to": [0, 65535], "my teares and prayers haue won his grace to come": [0, 65535], "teares and prayers haue won his grace to come in": [0, 65535], "and prayers haue won his grace to come in person": [0, 65535], "prayers haue won his grace to come in person hither": [0, 65535], "haue won his grace to come in person hither and": [0, 65535], "won his grace to come in person hither and take": [0, 65535], "his grace to come in person hither and take perforce": [0, 65535], "grace to come in person hither and take perforce my": [0, 65535], "to come in person hither and take perforce my husband": [0, 65535], "come in person hither and take perforce my husband from": [0, 65535], "in person hither and take perforce my husband from the": [0, 65535], "person hither and take perforce my husband from the abbesse": [0, 65535], "hither and take perforce my husband from the abbesse mar": [0, 65535], "and take perforce my husband from the abbesse mar by": [0, 65535], "take perforce my husband from the abbesse mar by this": [0, 65535], "perforce my husband from the abbesse mar by this i": [0, 65535], "my husband from the abbesse mar by this i thinke": [0, 65535], "husband from the abbesse mar by this i thinke the": [0, 65535], "from the abbesse mar by this i thinke the diall": [0, 65535], "the abbesse mar by this i thinke the diall points": [0, 65535], "abbesse mar by this i thinke the diall points at": [0, 65535], "mar by this i thinke the diall points at fiue": [0, 65535], "by this i thinke the diall points at fiue anon": [0, 65535], "this i thinke the diall points at fiue anon i'me": [0, 65535], "i thinke the diall points at fiue anon i'me sure": [0, 65535], "thinke the diall points at fiue anon i'me sure the": [0, 65535], "the diall points at fiue anon i'me sure the duke": [0, 65535], "diall points at fiue anon i'me sure the duke himselfe": [0, 65535], "points at fiue anon i'me sure the duke himselfe in": [0, 65535], "at fiue anon i'me sure the duke himselfe in person": [0, 65535], "fiue anon i'me sure the duke himselfe in person comes": [0, 65535], "anon i'me sure the duke himselfe in person comes this": [0, 65535], "i'me sure the duke himselfe in person comes this way": [0, 65535], "sure the duke himselfe in person comes this way to": [0, 65535], "the duke himselfe in person comes this way to the": [0, 65535], "duke himselfe in person comes this way to the melancholly": [0, 65535], "himselfe in person comes this way to the melancholly vale": [0, 65535], "in person comes this way to the melancholly vale the": [0, 65535], "person comes this way to the melancholly vale the place": [0, 65535], "comes this way to the melancholly vale the place of": [0, 65535], "this way to the melancholly vale the place of depth": [0, 65535], "way to the melancholly vale the place of depth and": [0, 65535], "to the melancholly vale the place of depth and sorrie": [0, 65535], "the melancholly vale the place of depth and sorrie execution": [0, 65535], "melancholly vale the place of depth and sorrie execution behinde": [0, 65535], "vale the place of depth and sorrie execution behinde the": [0, 65535], "the place of depth and sorrie execution behinde the ditches": [0, 65535], "place of depth and sorrie execution behinde the ditches of": [0, 65535], "of depth and sorrie execution behinde the ditches of the": [0, 65535], "depth and sorrie execution behinde the ditches of the abbey": [0, 65535], "and sorrie execution behinde the ditches of the abbey heere": [0, 65535], "sorrie execution behinde the ditches of the abbey heere gold": [0, 65535], "execution behinde the ditches of the abbey heere gold vpon": [0, 65535], "behinde the ditches of the abbey heere gold vpon what": [0, 65535], "the ditches of the abbey heere gold vpon what cause": [0, 65535], "ditches of the abbey heere gold vpon what cause mar": [0, 65535], "of the abbey heere gold vpon what cause mar to": [0, 65535], "the abbey heere gold vpon what cause mar to see": [0, 65535], "abbey heere gold vpon what cause mar to see a": [0, 65535], "heere gold vpon what cause mar to see a reuerent": [0, 65535], "gold vpon what cause mar to see a reuerent siracusian": [0, 65535], "vpon what cause mar to see a reuerent siracusian merchant": [0, 65535], "what cause mar to see a reuerent siracusian merchant who": [0, 65535], "cause mar to see a reuerent siracusian merchant who put": [0, 65535], "mar to see a reuerent siracusian merchant who put vnluckily": [0, 65535], "to see a reuerent siracusian merchant who put vnluckily into": [0, 65535], "see a reuerent siracusian merchant who put vnluckily into this": [0, 65535], "a reuerent siracusian merchant who put vnluckily into this bay": [0, 65535], "reuerent siracusian merchant who put vnluckily into this bay against": [0, 65535], "siracusian merchant who put vnluckily into this bay against the": [0, 65535], "merchant who put vnluckily into this bay against the lawes": [0, 65535], "who put vnluckily into this bay against the lawes and": [0, 65535], "put vnluckily into this bay against the lawes and statutes": [0, 65535], "vnluckily into this bay against the lawes and statutes of": [0, 65535], "into this bay against the lawes and statutes of this": [0, 65535], "this bay against the lawes and statutes of this towne": [0, 65535], "bay against the lawes and statutes of this towne beheaded": [0, 65535], "against the lawes and statutes of this towne beheaded publikely": [0, 65535], "the lawes and statutes of this towne beheaded publikely for": [0, 65535], "lawes and statutes of this towne beheaded publikely for his": [0, 65535], "and statutes of this towne beheaded publikely for his offence": [0, 65535], "statutes of this towne beheaded publikely for his offence gold": [0, 65535], "of this towne beheaded publikely for his offence gold see": [0, 65535], "this towne beheaded publikely for his offence gold see where": [0, 65535], "towne beheaded publikely for his offence gold see where they": [0, 65535], "beheaded publikely for his offence gold see where they come": [0, 65535], "publikely for his offence gold see where they come we": [0, 65535], "for his offence gold see where they come we wil": [0, 65535], "his offence gold see where they come we wil behold": [0, 65535], "offence gold see where they come we wil behold his": [0, 65535], "gold see where they come we wil behold his death": [0, 65535], "see where they come we wil behold his death luc": [0, 65535], "where they come we wil behold his death luc kneele": [0, 65535], "they come we wil behold his death luc kneele to": [0, 65535], "come we wil behold his death luc kneele to the": [0, 65535], "we wil behold his death luc kneele to the duke": [0, 65535], "wil behold his death luc kneele to the duke before": [0, 65535], "behold his death luc kneele to the duke before he": [0, 65535], "his death luc kneele to the duke before he passe": [0, 65535], "death luc kneele to the duke before he passe the": [0, 65535], "luc kneele to the duke before he passe the abbey": [0, 65535], "kneele to the duke before he passe the abbey enter": [0, 65535], "to the duke before he passe the abbey enter the": [0, 65535], "the duke before he passe the abbey enter the duke": [0, 65535], "duke before he passe the abbey enter the duke of": [0, 65535], "before he passe the abbey enter the duke of ephesus": [0, 65535], "he passe the abbey enter the duke of ephesus and": [0, 65535], "passe the abbey enter the duke of ephesus and the": [0, 65535], "the abbey enter the duke of ephesus and the merchant": [0, 65535], "abbey enter the duke of ephesus and the merchant of": [0, 65535], "enter the duke of ephesus and the merchant of siracuse": [0, 65535], "the duke of ephesus and the merchant of siracuse bare": [0, 65535], "duke of ephesus and the merchant of siracuse bare head": [0, 65535], "of ephesus and the merchant of siracuse bare head with": [0, 65535], "ephesus and the merchant of siracuse bare head with the": [0, 65535], "and the merchant of siracuse bare head with the headsman": [0, 65535], "the merchant of siracuse bare head with the headsman other": [0, 65535], "merchant of siracuse bare head with the headsman other officers": [0, 65535], "of siracuse bare head with the headsman other officers duke": [0, 65535], "siracuse bare head with the headsman other officers duke yet": [0, 65535], "bare head with the headsman other officers duke yet once": [0, 65535], "head with the headsman other officers duke yet once againe": [0, 65535], "with the headsman other officers duke yet once againe proclaime": [0, 65535], "the headsman other officers duke yet once againe proclaime it": [0, 65535], "headsman other officers duke yet once againe proclaime it publikely": [0, 65535], "other officers duke yet once againe proclaime it publikely if": [0, 65535], "officers duke yet once againe proclaime it publikely if any": [0, 65535], "duke yet once againe proclaime it publikely if any friend": [0, 65535], "yet once againe proclaime it publikely if any friend will": [0, 65535], "once againe proclaime it publikely if any friend will pay": [0, 65535], "againe proclaime it publikely if any friend will pay the": [0, 65535], "proclaime it publikely if any friend will pay the summe": [0, 65535], "it publikely if any friend will pay the summe for": [0, 65535], "publikely if any friend will pay the summe for him": [0, 65535], "if any friend will pay the summe for him he": [0, 65535], "any friend will pay the summe for him he shall": [0, 65535], "friend will pay the summe for him he shall not": [0, 65535], "will pay the summe for him he shall not die": [0, 65535], "pay the summe for him he shall not die so": [0, 65535], "the summe for him he shall not die so much": [0, 65535], "summe for him he shall not die so much we": [0, 65535], "for him he shall not die so much we tender": [0, 65535], "him he shall not die so much we tender him": [0, 65535], "he shall not die so much we tender him adr": [0, 65535], "shall not die so much we tender him adr iustice": [0, 65535], "not die so much we tender him adr iustice most": [0, 65535], "die so much we tender him adr iustice most sacred": [0, 65535], "so much we tender him adr iustice most sacred duke": [0, 65535], "much we tender him adr iustice most sacred duke against": [0, 65535], "we tender him adr iustice most sacred duke against the": [0, 65535], "tender him adr iustice most sacred duke against the abbesse": [0, 65535], "him adr iustice most sacred duke against the abbesse duke": [0, 65535], "adr iustice most sacred duke against the abbesse duke she": [0, 65535], "iustice most sacred duke against the abbesse duke she is": [0, 65535], "most sacred duke against the abbesse duke she is a": [0, 65535], "sacred duke against the abbesse duke she is a vertuous": [0, 65535], "duke against the abbesse duke she is a vertuous and": [0, 65535], "against the abbesse duke she is a vertuous and a": [0, 65535], "the abbesse duke she is a vertuous and a reuerend": [0, 65535], "abbesse duke she is a vertuous and a reuerend lady": [0, 65535], "duke she is a vertuous and a reuerend lady it": [0, 65535], "she is a vertuous and a reuerend lady it cannot": [0, 65535], "is a vertuous and a reuerend lady it cannot be": [0, 65535], "a vertuous and a reuerend lady it cannot be that": [0, 65535], "vertuous and a reuerend lady it cannot be that she": [0, 65535], "and a reuerend lady it cannot be that she hath": [0, 65535], "a reuerend lady it cannot be that she hath done": [0, 65535], "reuerend lady it cannot be that she hath done thee": [0, 65535], "lady it cannot be that she hath done thee wrong": [0, 65535], "it cannot be that she hath done thee wrong adr": [0, 65535], "cannot be that she hath done thee wrong adr may": [0, 65535], "be that she hath done thee wrong adr may it": [0, 65535], "that she hath done thee wrong adr may it please": [0, 65535], "she hath done thee wrong adr may it please your": [0, 65535], "hath done thee wrong adr may it please your grace": [0, 65535], "done thee wrong adr may it please your grace antipholus": [0, 65535], "thee wrong adr may it please your grace antipholus my": [0, 65535], "wrong adr may it please your grace antipholus my husba": [0, 65535], "adr may it please your grace antipholus my husba n": [0, 65535], "may it please your grace antipholus my husba n d": [0, 65535], "it please your grace antipholus my husba n d who": [0, 65535], "please your grace antipholus my husba n d who i": [0, 65535], "your grace antipholus my husba n d who i made": [0, 65535], "grace antipholus my husba n d who i made lord": [0, 65535], "antipholus my husba n d who i made lord of": [0, 65535], "my husba n d who i made lord of me": [0, 65535], "husba n d who i made lord of me and": [0, 65535], "n d who i made lord of me and all": [0, 65535], "d who i made lord of me and all i": [0, 65535], "who i made lord of me and all i had": [0, 65535], "i made lord of me and all i had at": [0, 65535], "made lord of me and all i had at your": [0, 65535], "lord of me and all i had at your important": [0, 65535], "of me and all i had at your important letters": [0, 65535], "me and all i had at your important letters this": [0, 65535], "and all i had at your important letters this ill": [0, 65535], "all i had at your important letters this ill day": [0, 65535], "i had at your important letters this ill day a": [0, 65535], "had at your important letters this ill day a most": [0, 65535], "at your important letters this ill day a most outragious": [0, 65535], "your important letters this ill day a most outragious fit": [0, 65535], "important letters this ill day a most outragious fit of": [0, 65535], "letters this ill day a most outragious fit of madnesse": [0, 65535], "this ill day a most outragious fit of madnesse tooke": [0, 65535], "ill day a most outragious fit of madnesse tooke him": [0, 65535], "day a most outragious fit of madnesse tooke him that": [0, 65535], "a most outragious fit of madnesse tooke him that desp'rately": [0, 65535], "most outragious fit of madnesse tooke him that desp'rately he": [0, 65535], "outragious fit of madnesse tooke him that desp'rately he hurried": [0, 65535], "fit of madnesse tooke him that desp'rately he hurried through": [0, 65535], "of madnesse tooke him that desp'rately he hurried through the": [0, 65535], "madnesse tooke him that desp'rately he hurried through the streete": [0, 65535], "tooke him that desp'rately he hurried through the streete with": [0, 65535], "him that desp'rately he hurried through the streete with him": [0, 65535], "that desp'rately he hurried through the streete with him his": [0, 65535], "desp'rately he hurried through the streete with him his bondman": [0, 65535], "he hurried through the streete with him his bondman all": [0, 65535], "hurried through the streete with him his bondman all as": [0, 65535], "through the streete with him his bondman all as mad": [0, 65535], "the streete with him his bondman all as mad as": [0, 65535], "streete with him his bondman all as mad as he": [0, 65535], "with him his bondman all as mad as he doing": [0, 65535], "him his bondman all as mad as he doing displeasure": [0, 65535], "his bondman all as mad as he doing displeasure to": [0, 65535], "bondman all as mad as he doing displeasure to the": [0, 65535], "all as mad as he doing displeasure to the citizens": [0, 65535], "as mad as he doing displeasure to the citizens by": [0, 65535], "mad as he doing displeasure to the citizens by rushing": [0, 65535], "as he doing displeasure to the citizens by rushing in": [0, 65535], "he doing displeasure to the citizens by rushing in their": [0, 65535], "doing displeasure to the citizens by rushing in their houses": [0, 65535], "displeasure to the citizens by rushing in their houses bearing": [0, 65535], "to the citizens by rushing in their houses bearing thence": [0, 65535], "the citizens by rushing in their houses bearing thence rings": [0, 65535], "citizens by rushing in their houses bearing thence rings iewels": [0, 65535], "by rushing in their houses bearing thence rings iewels any": [0, 65535], "rushing in their houses bearing thence rings iewels any thing": [0, 65535], "in their houses bearing thence rings iewels any thing his": [0, 65535], "their houses bearing thence rings iewels any thing his rage": [0, 65535], "houses bearing thence rings iewels any thing his rage did": [0, 65535], "bearing thence rings iewels any thing his rage did like": [0, 65535], "thence rings iewels any thing his rage did like once": [0, 65535], "rings iewels any thing his rage did like once did": [0, 65535], "iewels any thing his rage did like once did i": [0, 65535], "any thing his rage did like once did i get": [0, 65535], "thing his rage did like once did i get him": [0, 65535], "his rage did like once did i get him bound": [0, 65535], "rage did like once did i get him bound and": [0, 65535], "did like once did i get him bound and sent": [0, 65535], "like once did i get him bound and sent him": [0, 65535], "once did i get him bound and sent him home": [0, 65535], "did i get him bound and sent him home whil'st": [0, 65535], "i get him bound and sent him home whil'st to": [0, 65535], "get him bound and sent him home whil'st to take": [0, 65535], "him bound and sent him home whil'st to take order": [0, 65535], "bound and sent him home whil'st to take order for": [0, 65535], "and sent him home whil'st to take order for the": [0, 65535], "sent him home whil'st to take order for the wrongs": [0, 65535], "him home whil'st to take order for the wrongs i": [0, 65535], "home whil'st to take order for the wrongs i went": [0, 65535], "whil'st to take order for the wrongs i went that": [0, 65535], "to take order for the wrongs i went that heere": [0, 65535], "take order for the wrongs i went that heere and": [0, 65535], "order for the wrongs i went that heere and there": [0, 65535], "for the wrongs i went that heere and there his": [0, 65535], "the wrongs i went that heere and there his furie": [0, 65535], "wrongs i went that heere and there his furie had": [0, 65535], "i went that heere and there his furie had committed": [0, 65535], "went that heere and there his furie had committed anon": [0, 65535], "that heere and there his furie had committed anon i": [0, 65535], "heere and there his furie had committed anon i wot": [0, 65535], "and there his furie had committed anon i wot not": [0, 65535], "there his furie had committed anon i wot not by": [0, 65535], "his furie had committed anon i wot not by what": [0, 65535], "furie had committed anon i wot not by what strong": [0, 65535], "had committed anon i wot not by what strong escape": [0, 65535], "committed anon i wot not by what strong escape he": [0, 65535], "anon i wot not by what strong escape he broke": [0, 65535], "i wot not by what strong escape he broke from": [0, 65535], "wot not by what strong escape he broke from those": [0, 65535], "not by what strong escape he broke from those that": [0, 65535], "by what strong escape he broke from those that had": [0, 65535], "what strong escape he broke from those that had the": [0, 65535], "strong escape he broke from those that had the guard": [0, 65535], "escape he broke from those that had the guard of": [0, 65535], "he broke from those that had the guard of him": [0, 65535], "broke from those that had the guard of him and": [0, 65535], "from those that had the guard of him and with": [0, 65535], "those that had the guard of him and with his": [0, 65535], "that had the guard of him and with his mad": [0, 65535], "had the guard of him and with his mad attendant": [0, 65535], "the guard of him and with his mad attendant and": [0, 65535], "guard of him and with his mad attendant and himselfe": [0, 65535], "of him and with his mad attendant and himselfe each": [0, 65535], "him and with his mad attendant and himselfe each one": [0, 65535], "and with his mad attendant and himselfe each one with": [0, 65535], "with his mad attendant and himselfe each one with irefull": [0, 65535], "his mad attendant and himselfe each one with irefull passion": [0, 65535], "mad attendant and himselfe each one with irefull passion with": [0, 65535], "attendant and himselfe each one with irefull passion with drawne": [0, 65535], "and himselfe each one with irefull passion with drawne swords": [0, 65535], "himselfe each one with irefull passion with drawne swords met": [0, 65535], "each one with irefull passion with drawne swords met vs": [0, 65535], "one with irefull passion with drawne swords met vs againe": [0, 65535], "with irefull passion with drawne swords met vs againe and": [0, 65535], "irefull passion with drawne swords met vs againe and madly": [0, 65535], "passion with drawne swords met vs againe and madly bent": [0, 65535], "with drawne swords met vs againe and madly bent on": [0, 65535], "drawne swords met vs againe and madly bent on vs": [0, 65535], "swords met vs againe and madly bent on vs chac'd": [0, 65535], "met vs againe and madly bent on vs chac'd vs": [0, 65535], "vs againe and madly bent on vs chac'd vs away": [0, 65535], "againe and madly bent on vs chac'd vs away till": [0, 65535], "and madly bent on vs chac'd vs away till raising": [0, 65535], "madly bent on vs chac'd vs away till raising of": [0, 65535], "bent on vs chac'd vs away till raising of more": [0, 65535], "on vs chac'd vs away till raising of more aide": [0, 65535], "vs chac'd vs away till raising of more aide we": [0, 65535], "chac'd vs away till raising of more aide we came": [0, 65535], "vs away till raising of more aide we came againe": [0, 65535], "away till raising of more aide we came againe to": [0, 65535], "till raising of more aide we came againe to binde": [0, 65535], "raising of more aide we came againe to binde them": [0, 65535], "of more aide we came againe to binde them then": [0, 65535], "more aide we came againe to binde them then they": [0, 65535], "aide we came againe to binde them then they fled": [0, 65535], "we came againe to binde them then they fled into": [0, 65535], "came againe to binde them then they fled into this": [0, 65535], "againe to binde them then they fled into this abbey": [0, 65535], "to binde them then they fled into this abbey whether": [0, 65535], "binde them then they fled into this abbey whether we": [0, 65535], "them then they fled into this abbey whether we pursu'd": [0, 65535], "then they fled into this abbey whether we pursu'd them": [0, 65535], "they fled into this abbey whether we pursu'd them and": [0, 65535], "fled into this abbey whether we pursu'd them and heere": [0, 65535], "into this abbey whether we pursu'd them and heere the": [0, 65535], "this abbey whether we pursu'd them and heere the abbesse": [0, 65535], "abbey whether we pursu'd them and heere the abbesse shuts": [0, 65535], "whether we pursu'd them and heere the abbesse shuts the": [0, 65535], "we pursu'd them and heere the abbesse shuts the gates": [0, 65535], "pursu'd them and heere the abbesse shuts the gates on": [0, 65535], "them and heere the abbesse shuts the gates on vs": [0, 65535], "and heere the abbesse shuts the gates on vs and": [0, 65535], "heere the abbesse shuts the gates on vs and will": [0, 65535], "the abbesse shuts the gates on vs and will not": [0, 65535], "abbesse shuts the gates on vs and will not suffer": [0, 65535], "shuts the gates on vs and will not suffer vs": [0, 65535], "the gates on vs and will not suffer vs to": [0, 65535], "gates on vs and will not suffer vs to fetch": [0, 65535], "on vs and will not suffer vs to fetch him": [0, 65535], "vs and will not suffer vs to fetch him out": [0, 65535], "and will not suffer vs to fetch him out nor": [0, 65535], "will not suffer vs to fetch him out nor send": [0, 65535], "not suffer vs to fetch him out nor send him": [0, 65535], "suffer vs to fetch him out nor send him forth": [0, 65535], "vs to fetch him out nor send him forth that": [0, 65535], "to fetch him out nor send him forth that we": [0, 65535], "fetch him out nor send him forth that we may": [0, 65535], "him out nor send him forth that we may beare": [0, 65535], "out nor send him forth that we may beare him": [0, 65535], "nor send him forth that we may beare him hence": [0, 65535], "send him forth that we may beare him hence therefore": [0, 65535], "him forth that we may beare him hence therefore most": [0, 65535], "forth that we may beare him hence therefore most gracious": [0, 65535], "that we may beare him hence therefore most gracious duke": [0, 65535], "we may beare him hence therefore most gracious duke with": [0, 65535], "may beare him hence therefore most gracious duke with thy": [0, 65535], "beare him hence therefore most gracious duke with thy command": [0, 65535], "him hence therefore most gracious duke with thy command let": [0, 65535], "hence therefore most gracious duke with thy command let him": [0, 65535], "therefore most gracious duke with thy command let him be": [0, 65535], "most gracious duke with thy command let him be brought": [0, 65535], "gracious duke with thy command let him be brought forth": [0, 65535], "duke with thy command let him be brought forth and": [0, 65535], "with thy command let him be brought forth and borne": [0, 65535], "thy command let him be brought forth and borne hence": [0, 65535], "command let him be brought forth and borne hence for": [0, 65535], "let him be brought forth and borne hence for helpe": [0, 65535], "him be brought forth and borne hence for helpe duke": [0, 65535], "be brought forth and borne hence for helpe duke long": [0, 65535], "brought forth and borne hence for helpe duke long since": [0, 65535], "forth and borne hence for helpe duke long since thy": [0, 65535], "and borne hence for helpe duke long since thy husband": [0, 65535], "borne hence for helpe duke long since thy husband seru'd": [0, 65535], "hence for helpe duke long since thy husband seru'd me": [0, 65535], "for helpe duke long since thy husband seru'd me in": [0, 65535], "helpe duke long since thy husband seru'd me in my": [0, 65535], "duke long since thy husband seru'd me in my wars": [0, 65535], "long since thy husband seru'd me in my wars and": [0, 65535], "since thy husband seru'd me in my wars and i": [0, 65535], "thy husband seru'd me in my wars and i to": [0, 65535], "husband seru'd me in my wars and i to thee": [0, 65535], "seru'd me in my wars and i to thee ingag'd": [0, 65535], "me in my wars and i to thee ingag'd a": [0, 65535], "in my wars and i to thee ingag'd a princes": [0, 65535], "my wars and i to thee ingag'd a princes word": [0, 65535], "wars and i to thee ingag'd a princes word when": [0, 65535], "and i to thee ingag'd a princes word when thou": [0, 65535], "i to thee ingag'd a princes word when thou didst": [0, 65535], "to thee ingag'd a princes word when thou didst make": [0, 65535], "thee ingag'd a princes word when thou didst make him": [0, 65535], "ingag'd a princes word when thou didst make him master": [0, 65535], "a princes word when thou didst make him master of": [0, 65535], "princes word when thou didst make him master of thy": [0, 65535], "word when thou didst make him master of thy bed": [0, 65535], "when thou didst make him master of thy bed to": [0, 65535], "thou didst make him master of thy bed to do": [0, 65535], "didst make him master of thy bed to do him": [0, 65535], "make him master of thy bed to do him all": [0, 65535], "him master of thy bed to do him all the": [0, 65535], "master of thy bed to do him all the grace": [0, 65535], "of thy bed to do him all the grace and": [0, 65535], "thy bed to do him all the grace and good": [0, 65535], "bed to do him all the grace and good i": [0, 65535], "to do him all the grace and good i could": [0, 65535], "do him all the grace and good i could go": [0, 65535], "him all the grace and good i could go some": [0, 65535], "all the grace and good i could go some of": [0, 65535], "the grace and good i could go some of you": [0, 65535], "grace and good i could go some of you knocke": [0, 65535], "and good i could go some of you knocke at": [0, 65535], "good i could go some of you knocke at the": [0, 65535], "i could go some of you knocke at the abbey": [0, 65535], "could go some of you knocke at the abbey gate": [0, 65535], "go some of you knocke at the abbey gate and": [0, 65535], "some of you knocke at the abbey gate and bid": [0, 65535], "of you knocke at the abbey gate and bid the": [0, 65535], "you knocke at the abbey gate and bid the lady": [0, 65535], "knocke at the abbey gate and bid the lady abbesse": [0, 65535], "at the abbey gate and bid the lady abbesse come": [0, 65535], "the abbey gate and bid the lady abbesse come to": [0, 65535], "abbey gate and bid the lady abbesse come to me": [0, 65535], "gate and bid the lady abbesse come to me i": [0, 65535], "and bid the lady abbesse come to me i will": [0, 65535], "bid the lady abbesse come to me i will determine": [0, 65535], "the lady abbesse come to me i will determine this": [0, 65535], "lady abbesse come to me i will determine this before": [0, 65535], "abbesse come to me i will determine this before i": [0, 65535], "come to me i will determine this before i stirre": [0, 65535], "to me i will determine this before i stirre enter": [0, 65535], "me i will determine this before i stirre enter a": [0, 65535], "i will determine this before i stirre enter a messenger": [0, 65535], "will determine this before i stirre enter a messenger oh": [0, 65535], "determine this before i stirre enter a messenger oh mistris": [0, 65535], "this before i stirre enter a messenger oh mistris mistris": [0, 65535], "before i stirre enter a messenger oh mistris mistris shift": [0, 65535], "i stirre enter a messenger oh mistris mistris shift and": [0, 65535], "stirre enter a messenger oh mistris mistris shift and saue": [0, 65535], "enter a messenger oh mistris mistris shift and saue your": [0, 65535], "a messenger oh mistris mistris shift and saue your selfe": [0, 65535], "messenger oh mistris mistris shift and saue your selfe my": [0, 65535], "oh mistris mistris shift and saue your selfe my master": [0, 65535], "mistris mistris shift and saue your selfe my master and": [0, 65535], "mistris shift and saue your selfe my master and his": [0, 65535], "shift and saue your selfe my master and his man": [0, 65535], "and saue your selfe my master and his man are": [0, 65535], "saue your selfe my master and his man are both": [0, 65535], "your selfe my master and his man are both broke": [0, 65535], "selfe my master and his man are both broke loose": [0, 65535], "my master and his man are both broke loose beaten": [0, 65535], "master and his man are both broke loose beaten the": [0, 65535], "and his man are both broke loose beaten the maids": [0, 65535], "his man are both broke loose beaten the maids a": [0, 65535], "man are both broke loose beaten the maids a row": [0, 65535], "are both broke loose beaten the maids a row and": [0, 65535], "both broke loose beaten the maids a row and bound": [0, 65535], "broke loose beaten the maids a row and bound the": [0, 65535], "loose beaten the maids a row and bound the doctor": [0, 65535], "beaten the maids a row and bound the doctor whose": [0, 65535], "the maids a row and bound the doctor whose beard": [0, 65535], "maids a row and bound the doctor whose beard they": [0, 65535], "a row and bound the doctor whose beard they haue": [0, 65535], "row and bound the doctor whose beard they haue sindg'd": [0, 65535], "and bound the doctor whose beard they haue sindg'd off": [0, 65535], "bound the doctor whose beard they haue sindg'd off with": [0, 65535], "the doctor whose beard they haue sindg'd off with brands": [0, 65535], "doctor whose beard they haue sindg'd off with brands of": [0, 65535], "whose beard they haue sindg'd off with brands of fire": [0, 65535], "beard they haue sindg'd off with brands of fire and": [0, 65535], "they haue sindg'd off with brands of fire and euer": [0, 65535], "haue sindg'd off with brands of fire and euer as": [0, 65535], "sindg'd off with brands of fire and euer as it": [0, 65535], "off with brands of fire and euer as it blaz'd": [0, 65535], "with brands of fire and euer as it blaz'd they": [0, 65535], "brands of fire and euer as it blaz'd they threw": [0, 65535], "of fire and euer as it blaz'd they threw on": [0, 65535], "fire and euer as it blaz'd they threw on him": [0, 65535], "and euer as it blaz'd they threw on him great": [0, 65535], "euer as it blaz'd they threw on him great pailes": [0, 65535], "as it blaz'd they threw on him great pailes of": [0, 65535], "it blaz'd they threw on him great pailes of puddled": [0, 65535], "blaz'd they threw on him great pailes of puddled myre": [0, 65535], "they threw on him great pailes of puddled myre to": [0, 65535], "threw on him great pailes of puddled myre to quench": [0, 65535], "on him great pailes of puddled myre to quench the": [0, 65535], "him great pailes of puddled myre to quench the haire": [0, 65535], "great pailes of puddled myre to quench the haire my": [0, 65535], "pailes of puddled myre to quench the haire my mr": [0, 65535], "of puddled myre to quench the haire my mr preaches": [0, 65535], "puddled myre to quench the haire my mr preaches patience": [0, 65535], "myre to quench the haire my mr preaches patience to": [0, 65535], "to quench the haire my mr preaches patience to him": [0, 65535], "quench the haire my mr preaches patience to him and": [0, 65535], "the haire my mr preaches patience to him and the": [0, 65535], "haire my mr preaches patience to him and the while": [0, 65535], "my mr preaches patience to him and the while his": [0, 65535], "mr preaches patience to him and the while his man": [0, 65535], "preaches patience to him and the while his man with": [0, 65535], "patience to him and the while his man with cizers": [0, 65535], "to him and the while his man with cizers nickes": [0, 65535], "him and the while his man with cizers nickes him": [0, 65535], "and the while his man with cizers nickes him like": [0, 65535], "the while his man with cizers nickes him like a": [0, 65535], "while his man with cizers nickes him like a foole": [0, 65535], "his man with cizers nickes him like a foole and": [0, 65535], "man with cizers nickes him like a foole and sure": [0, 65535], "with cizers nickes him like a foole and sure vnlesse": [0, 65535], "cizers nickes him like a foole and sure vnlesse you": [0, 65535], "nickes him like a foole and sure vnlesse you send": [0, 65535], "him like a foole and sure vnlesse you send some": [0, 65535], "like a foole and sure vnlesse you send some present": [0, 65535], "a foole and sure vnlesse you send some present helpe": [0, 65535], "foole and sure vnlesse you send some present helpe betweene": [0, 65535], "and sure vnlesse you send some present helpe betweene them": [0, 65535], "sure vnlesse you send some present helpe betweene them they": [0, 65535], "vnlesse you send some present helpe betweene them they will": [0, 65535], "you send some present helpe betweene them they will kill": [0, 65535], "send some present helpe betweene them they will kill the": [0, 65535], "some present helpe betweene them they will kill the coniurer": [0, 65535], "present helpe betweene them they will kill the coniurer adr": [0, 65535], "helpe betweene them they will kill the coniurer adr peace": [0, 65535], "betweene them they will kill the coniurer adr peace foole": [0, 65535], "them they will kill the coniurer adr peace foole thy": [0, 65535], "they will kill the coniurer adr peace foole thy master": [0, 65535], "will kill the coniurer adr peace foole thy master and": [0, 65535], "kill the coniurer adr peace foole thy master and his": [0, 65535], "the coniurer adr peace foole thy master and his man": [0, 65535], "coniurer adr peace foole thy master and his man are": [0, 65535], "adr peace foole thy master and his man are here": [0, 65535], "peace foole thy master and his man are here and": [0, 65535], "foole thy master and his man are here and that": [0, 65535], "thy master and his man are here and that is": [0, 65535], "master and his man are here and that is false": [0, 65535], "and his man are here and that is false thou": [0, 65535], "his man are here and that is false thou dost": [0, 65535], "man are here and that is false thou dost report": [0, 65535], "are here and that is false thou dost report to": [0, 65535], "here and that is false thou dost report to vs": [0, 65535], "and that is false thou dost report to vs mess": [0, 65535], "that is false thou dost report to vs mess mistris": [0, 65535], "is false thou dost report to vs mess mistris vpon": [0, 65535], "false thou dost report to vs mess mistris vpon my": [0, 65535], "thou dost report to vs mess mistris vpon my life": [0, 65535], "dost report to vs mess mistris vpon my life i": [0, 65535], "report to vs mess mistris vpon my life i tel": [0, 65535], "to vs mess mistris vpon my life i tel you": [0, 65535], "vs mess mistris vpon my life i tel you true": [0, 65535], "mess mistris vpon my life i tel you true i": [0, 65535], "mistris vpon my life i tel you true i haue": [0, 65535], "vpon my life i tel you true i haue not": [0, 65535], "my life i tel you true i haue not breath'd": [0, 65535], "life i tel you true i haue not breath'd almost": [0, 65535], "i tel you true i haue not breath'd almost since": [0, 65535], "tel you true i haue not breath'd almost since i": [0, 65535], "you true i haue not breath'd almost since i did": [0, 65535], "true i haue not breath'd almost since i did see": [0, 65535], "i haue not breath'd almost since i did see it": [0, 65535], "haue not breath'd almost since i did see it he": [0, 65535], "not breath'd almost since i did see it he cries": [0, 65535], "breath'd almost since i did see it he cries for": [0, 65535], "almost since i did see it he cries for you": [0, 65535], "since i did see it he cries for you and": [0, 65535], "i did see it he cries for you and vowes": [0, 65535], "did see it he cries for you and vowes if": [0, 65535], "see it he cries for you and vowes if he": [0, 65535], "it he cries for you and vowes if he can": [0, 65535], "he cries for you and vowes if he can take": [0, 65535], "cries for you and vowes if he can take you": [0, 65535], "for you and vowes if he can take you to": [0, 65535], "you and vowes if he can take you to scorch": [0, 65535], "and vowes if he can take you to scorch your": [0, 65535], "vowes if he can take you to scorch your face": [0, 65535], "if he can take you to scorch your face and": [0, 65535], "he can take you to scorch your face and to": [0, 65535], "can take you to scorch your face and to disfigure": [0, 65535], "take you to scorch your face and to disfigure you": [0, 65535], "you to scorch your face and to disfigure you cry": [0, 65535], "to scorch your face and to disfigure you cry within": [0, 65535], "scorch your face and to disfigure you cry within harke": [0, 65535], "your face and to disfigure you cry within harke harke": [0, 65535], "face and to disfigure you cry within harke harke i": [0, 65535], "and to disfigure you cry within harke harke i heare": [0, 65535], "to disfigure you cry within harke harke i heare him": [0, 65535], "disfigure you cry within harke harke i heare him mistris": [0, 65535], "you cry within harke harke i heare him mistris flie": [0, 65535], "cry within harke harke i heare him mistris flie be": [0, 65535], "within harke harke i heare him mistris flie be gone": [0, 65535], "harke harke i heare him mistris flie be gone duke": [0, 65535], "harke i heare him mistris flie be gone duke come": [0, 65535], "i heare him mistris flie be gone duke come stand": [0, 65535], "heare him mistris flie be gone duke come stand by": [0, 65535], "him mistris flie be gone duke come stand by me": [0, 65535], "mistris flie be gone duke come stand by me feare": [0, 65535], "flie be gone duke come stand by me feare nothing": [0, 65535], "be gone duke come stand by me feare nothing guard": [0, 65535], "gone duke come stand by me feare nothing guard with": [0, 65535], "duke come stand by me feare nothing guard with halberds": [0, 65535], "come stand by me feare nothing guard with halberds adr": [0, 65535], "stand by me feare nothing guard with halberds adr ay": [0, 65535], "by me feare nothing guard with halberds adr ay me": [0, 65535], "me feare nothing guard with halberds adr ay me it": [0, 65535], "feare nothing guard with halberds adr ay me it is": [0, 65535], "nothing guard with halberds adr ay me it is my": [0, 65535], "guard with halberds adr ay me it is my husband": [0, 65535], "with halberds adr ay me it is my husband witnesse": [0, 65535], "halberds adr ay me it is my husband witnesse you": [0, 65535], "adr ay me it is my husband witnesse you that": [0, 65535], "ay me it is my husband witnesse you that he": [0, 65535], "me it is my husband witnesse you that he is": [0, 65535], "it is my husband witnesse you that he is borne": [0, 65535], "is my husband witnesse you that he is borne about": [0, 65535], "my husband witnesse you that he is borne about inuisible": [0, 65535], "husband witnesse you that he is borne about inuisible euen": [0, 65535], "witnesse you that he is borne about inuisible euen now": [0, 65535], "you that he is borne about inuisible euen now we": [0, 65535], "that he is borne about inuisible euen now we hous'd": [0, 65535], "he is borne about inuisible euen now we hous'd him": [0, 65535], "is borne about inuisible euen now we hous'd him in": [0, 65535], "borne about inuisible euen now we hous'd him in the": [0, 65535], "about inuisible euen now we hous'd him in the abbey": [0, 65535], "inuisible euen now we hous'd him in the abbey heere": [0, 65535], "euen now we hous'd him in the abbey heere and": [0, 65535], "now we hous'd him in the abbey heere and now": [0, 65535], "we hous'd him in the abbey heere and now he's": [0, 65535], "hous'd him in the abbey heere and now he's there": [0, 65535], "him in the abbey heere and now he's there past": [0, 65535], "in the abbey heere and now he's there past thought": [0, 65535], "the abbey heere and now he's there past thought of": [0, 65535], "abbey heere and now he's there past thought of humane": [0, 65535], "heere and now he's there past thought of humane reason": [0, 65535], "and now he's there past thought of humane reason enter": [0, 65535], "now he's there past thought of humane reason enter antipholus": [0, 65535], "he's there past thought of humane reason enter antipholus and": [0, 65535], "there past thought of humane reason enter antipholus and e": [0, 65535], "past thought of humane reason enter antipholus and e dromio": [0, 65535], "thought of humane reason enter antipholus and e dromio of": [0, 65535], "of humane reason enter antipholus and e dromio of ephesus": [0, 65535], "humane reason enter antipholus and e dromio of ephesus e": [0, 65535], "reason enter antipholus and e dromio of ephesus e ant": [0, 65535], "enter antipholus and e dromio of ephesus e ant iustice": [0, 65535], "antipholus and e dromio of ephesus e ant iustice most": [0, 65535], "and e dromio of ephesus e ant iustice most gracious": [0, 65535], "e dromio of ephesus e ant iustice most gracious duke": [0, 65535], "dromio of ephesus e ant iustice most gracious duke oh": [0, 65535], "of ephesus e ant iustice most gracious duke oh grant": [0, 65535], "ephesus e ant iustice most gracious duke oh grant me": [0, 65535], "e ant iustice most gracious duke oh grant me iustice": [0, 65535], "ant iustice most gracious duke oh grant me iustice euen": [0, 65535], "iustice most gracious duke oh grant me iustice euen for": [0, 65535], "most gracious duke oh grant me iustice euen for the": [0, 65535], "gracious duke oh grant me iustice euen for the seruice": [0, 65535], "duke oh grant me iustice euen for the seruice that": [0, 65535], "oh grant me iustice euen for the seruice that long": [0, 65535], "grant me iustice euen for the seruice that long since": [0, 65535], "me iustice euen for the seruice that long since i": [0, 65535], "iustice euen for the seruice that long since i did": [0, 65535], "euen for the seruice that long since i did thee": [0, 65535], "for the seruice that long since i did thee when": [0, 65535], "the seruice that long since i did thee when i": [0, 65535], "seruice that long since i did thee when i bestrid": [0, 65535], "that long since i did thee when i bestrid thee": [0, 65535], "long since i did thee when i bestrid thee in": [0, 65535], "since i did thee when i bestrid thee in the": [0, 65535], "i did thee when i bestrid thee in the warres": [0, 65535], "did thee when i bestrid thee in the warres and": [0, 65535], "thee when i bestrid thee in the warres and tooke": [0, 65535], "when i bestrid thee in the warres and tooke deepe": [0, 65535], "i bestrid thee in the warres and tooke deepe scarres": [0, 65535], "bestrid thee in the warres and tooke deepe scarres to": [0, 65535], "thee in the warres and tooke deepe scarres to saue": [0, 65535], "in the warres and tooke deepe scarres to saue thy": [0, 65535], "the warres and tooke deepe scarres to saue thy life": [0, 65535], "warres and tooke deepe scarres to saue thy life euen": [0, 65535], "and tooke deepe scarres to saue thy life euen for": [0, 65535], "tooke deepe scarres to saue thy life euen for the": [0, 65535], "deepe scarres to saue thy life euen for the blood": [0, 65535], "scarres to saue thy life euen for the blood that": [0, 65535], "to saue thy life euen for the blood that then": [0, 65535], "saue thy life euen for the blood that then i": [0, 65535], "thy life euen for the blood that then i lost": [0, 65535], "life euen for the blood that then i lost for": [0, 65535], "euen for the blood that then i lost for thee": [0, 65535], "for the blood that then i lost for thee now": [0, 65535], "the blood that then i lost for thee now grant": [0, 65535], "blood that then i lost for thee now grant me": [0, 65535], "that then i lost for thee now grant me iustice": [0, 65535], "then i lost for thee now grant me iustice mar": [0, 65535], "i lost for thee now grant me iustice mar fat": [0, 65535], "lost for thee now grant me iustice mar fat vnlesse": [0, 65535], "for thee now grant me iustice mar fat vnlesse the": [0, 65535], "thee now grant me iustice mar fat vnlesse the feare": [0, 65535], "now grant me iustice mar fat vnlesse the feare of": [0, 65535], "grant me iustice mar fat vnlesse the feare of death": [0, 65535], "me iustice mar fat vnlesse the feare of death doth": [0, 65535], "iustice mar fat vnlesse the feare of death doth make": [0, 65535], "mar fat vnlesse the feare of death doth make me": [0, 65535], "fat vnlesse the feare of death doth make me dote": [0, 65535], "vnlesse the feare of death doth make me dote i": [0, 65535], "the feare of death doth make me dote i see": [0, 65535], "feare of death doth make me dote i see my": [0, 65535], "of death doth make me dote i see my sonne": [0, 65535], "death doth make me dote i see my sonne antipholus": [0, 65535], "doth make me dote i see my sonne antipholus and": [0, 65535], "make me dote i see my sonne antipholus and dromio": [0, 65535], "me dote i see my sonne antipholus and dromio e": [0, 65535], "dote i see my sonne antipholus and dromio e ant": [0, 65535], "i see my sonne antipholus and dromio e ant iustice": [0, 65535], "see my sonne antipholus and dromio e ant iustice sweet": [0, 65535], "my sonne antipholus and dromio e ant iustice sweet prince": [0, 65535], "sonne antipholus and dromio e ant iustice sweet prince against": [0, 65535], "antipholus and dromio e ant iustice sweet prince against that": [0, 65535], "and dromio e ant iustice sweet prince against that woman": [0, 65535], "dromio e ant iustice sweet prince against that woman there": [0, 65535], "e ant iustice sweet prince against that woman there she": [0, 65535], "ant iustice sweet prince against that woman there she whom": [0, 65535], "iustice sweet prince against that woman there she whom thou": [0, 65535], "sweet prince against that woman there she whom thou gau'st": [0, 65535], "prince against that woman there she whom thou gau'st to": [0, 65535], "against that woman there she whom thou gau'st to me": [0, 65535], "that woman there she whom thou gau'st to me to": [0, 65535], "woman there she whom thou gau'st to me to be": [0, 65535], "there she whom thou gau'st to me to be my": [0, 65535], "she whom thou gau'st to me to be my wife": [0, 65535], "whom thou gau'st to me to be my wife that": [0, 65535], "thou gau'st to me to be my wife that hath": [0, 65535], "gau'st to me to be my wife that hath abused": [0, 65535], "to me to be my wife that hath abused and": [0, 65535], "me to be my wife that hath abused and dishonored": [0, 65535], "to be my wife that hath abused and dishonored me": [0, 65535], "be my wife that hath abused and dishonored me euen": [0, 65535], "my wife that hath abused and dishonored me euen in": [0, 65535], "wife that hath abused and dishonored me euen in the": [0, 65535], "that hath abused and dishonored me euen in the strength": [0, 65535], "hath abused and dishonored me euen in the strength and": [0, 65535], "abused and dishonored me euen in the strength and height": [0, 65535], "and dishonored me euen in the strength and height of": [0, 65535], "dishonored me euen in the strength and height of iniurie": [0, 65535], "me euen in the strength and height of iniurie beyond": [0, 65535], "euen in the strength and height of iniurie beyond imagination": [0, 65535], "in the strength and height of iniurie beyond imagination is": [0, 65535], "the strength and height of iniurie beyond imagination is the": [0, 65535], "strength and height of iniurie beyond imagination is the wrong": [0, 65535], "and height of iniurie beyond imagination is the wrong that": [0, 65535], "height of iniurie beyond imagination is the wrong that she": [0, 65535], "of iniurie beyond imagination is the wrong that she this": [0, 65535], "iniurie beyond imagination is the wrong that she this day": [0, 65535], "beyond imagination is the wrong that she this day hath": [0, 65535], "imagination is the wrong that she this day hath shamelesse": [0, 65535], "is the wrong that she this day hath shamelesse throwne": [0, 65535], "the wrong that she this day hath shamelesse throwne on": [0, 65535], "wrong that she this day hath shamelesse throwne on me": [0, 65535], "that she this day hath shamelesse throwne on me duke": [0, 65535], "she this day hath shamelesse throwne on me duke discouer": [0, 65535], "this day hath shamelesse throwne on me duke discouer how": [0, 65535], "day hath shamelesse throwne on me duke discouer how and": [0, 65535], "hath shamelesse throwne on me duke discouer how and thou": [0, 65535], "shamelesse throwne on me duke discouer how and thou shalt": [0, 65535], "throwne on me duke discouer how and thou shalt finde": [0, 65535], "on me duke discouer how and thou shalt finde me": [0, 65535], "me duke discouer how and thou shalt finde me iust": [0, 65535], "duke discouer how and thou shalt finde me iust e": [0, 65535], "discouer how and thou shalt finde me iust e ant": [0, 65535], "how and thou shalt finde me iust e ant this": [0, 65535], "and thou shalt finde me iust e ant this day": [0, 65535], "thou shalt finde me iust e ant this day great": [0, 65535], "shalt finde me iust e ant this day great duke": [0, 65535], "finde me iust e ant this day great duke she": [0, 65535], "me iust e ant this day great duke she shut": [0, 65535], "iust e ant this day great duke she shut the": [0, 65535], "e ant this day great duke she shut the doores": [0, 65535], "ant this day great duke she shut the doores vpon": [0, 65535], "this day great duke she shut the doores vpon me": [0, 65535], "day great duke she shut the doores vpon me while": [0, 65535], "great duke she shut the doores vpon me while she": [0, 65535], "duke she shut the doores vpon me while she with": [0, 65535], "she shut the doores vpon me while she with harlots": [0, 65535], "shut the doores vpon me while she with harlots feasted": [0, 65535], "the doores vpon me while she with harlots feasted in": [0, 65535], "doores vpon me while she with harlots feasted in my": [0, 65535], "vpon me while she with harlots feasted in my house": [0, 65535], "me while she with harlots feasted in my house duke": [0, 65535], "while she with harlots feasted in my house duke a": [0, 65535], "she with harlots feasted in my house duke a greeuous": [0, 65535], "with harlots feasted in my house duke a greeuous fault": [0, 65535], "harlots feasted in my house duke a greeuous fault say": [0, 65535], "feasted in my house duke a greeuous fault say woman": [0, 65535], "in my house duke a greeuous fault say woman didst": [0, 65535], "my house duke a greeuous fault say woman didst thou": [0, 65535], "house duke a greeuous fault say woman didst thou so": [0, 65535], "duke a greeuous fault say woman didst thou so adr": [0, 65535], "a greeuous fault say woman didst thou so adr no": [0, 65535], "greeuous fault say woman didst thou so adr no my": [0, 65535], "fault say woman didst thou so adr no my good": [0, 65535], "say woman didst thou so adr no my good lord": [0, 65535], "woman didst thou so adr no my good lord my": [0, 65535], "didst thou so adr no my good lord my selfe": [0, 65535], "thou so adr no my good lord my selfe he": [0, 65535], "so adr no my good lord my selfe he and": [0, 65535], "adr no my good lord my selfe he and my": [0, 65535], "no my good lord my selfe he and my sister": [0, 65535], "my good lord my selfe he and my sister to": [0, 65535], "good lord my selfe he and my sister to day": [0, 65535], "lord my selfe he and my sister to day did": [0, 65535], "my selfe he and my sister to day did dine": [0, 65535], "selfe he and my sister to day did dine together": [0, 65535], "he and my sister to day did dine together so": [0, 65535], "and my sister to day did dine together so befall": [0, 65535], "my sister to day did dine together so befall my": [0, 65535], "sister to day did dine together so befall my soule": [0, 65535], "to day did dine together so befall my soule as": [0, 65535], "day did dine together so befall my soule as this": [0, 65535], "did dine together so befall my soule as this is": [0, 65535], "dine together so befall my soule as this is false": [0, 65535], "together so befall my soule as this is false he": [0, 65535], "so befall my soule as this is false he burthens": [0, 65535], "befall my soule as this is false he burthens me": [0, 65535], "my soule as this is false he burthens me withall": [0, 65535], "soule as this is false he burthens me withall luc": [0, 65535], "as this is false he burthens me withall luc nere": [0, 65535], "this is false he burthens me withall luc nere may": [0, 65535], "is false he burthens me withall luc nere may i": [0, 65535], "false he burthens me withall luc nere may i looke": [0, 65535], "he burthens me withall luc nere may i looke on": [0, 65535], "burthens me withall luc nere may i looke on day": [0, 65535], "me withall luc nere may i looke on day nor": [0, 65535], "withall luc nere may i looke on day nor sleepe": [0, 65535], "luc nere may i looke on day nor sleepe on": [0, 65535], "nere may i looke on day nor sleepe on night": [0, 65535], "may i looke on day nor sleepe on night but": [0, 65535], "i looke on day nor sleepe on night but she": [0, 65535], "looke on day nor sleepe on night but she tels": [0, 65535], "on day nor sleepe on night but she tels to": [0, 65535], "day nor sleepe on night but she tels to your": [0, 65535], "nor sleepe on night but she tels to your highnesse": [0, 65535], "sleepe on night but she tels to your highnesse simple": [0, 65535], "on night but she tels to your highnesse simple truth": [0, 65535], "night but she tels to your highnesse simple truth gold": [0, 65535], "but she tels to your highnesse simple truth gold o": [0, 65535], "she tels to your highnesse simple truth gold o periur'd": [0, 65535], "tels to your highnesse simple truth gold o periur'd woman": [0, 65535], "to your highnesse simple truth gold o periur'd woman they": [0, 65535], "your highnesse simple truth gold o periur'd woman they are": [0, 65535], "highnesse simple truth gold o periur'd woman they are both": [0, 65535], "simple truth gold o periur'd woman they are both forsworne": [0, 65535], "truth gold o periur'd woman they are both forsworne in": [0, 65535], "gold o periur'd woman they are both forsworne in this": [0, 65535], "o periur'd woman they are both forsworne in this the": [0, 65535], "periur'd woman they are both forsworne in this the madman": [0, 65535], "woman they are both forsworne in this the madman iustly": [0, 65535], "they are both forsworne in this the madman iustly chargeth": [0, 65535], "are both forsworne in this the madman iustly chargeth them": [0, 65535], "both forsworne in this the madman iustly chargeth them e": [0, 65535], "forsworne in this the madman iustly chargeth them e ant": [0, 65535], "in this the madman iustly chargeth them e ant my": [0, 65535], "this the madman iustly chargeth them e ant my liege": [0, 65535], "the madman iustly chargeth them e ant my liege i": [0, 65535], "madman iustly chargeth them e ant my liege i am": [0, 65535], "iustly chargeth them e ant my liege i am aduised": [0, 65535], "chargeth them e ant my liege i am aduised what": [0, 65535], "them e ant my liege i am aduised what i": [0, 65535], "e ant my liege i am aduised what i say": [0, 65535], "ant my liege i am aduised what i say neither": [0, 65535], "my liege i am aduised what i say neither disturbed": [0, 65535], "liege i am aduised what i say neither disturbed with": [0, 65535], "i am aduised what i say neither disturbed with the": [0, 65535], "am aduised what i say neither disturbed with the effect": [0, 65535], "aduised what i say neither disturbed with the effect of": [0, 65535], "what i say neither disturbed with the effect of wine": [0, 65535], "i say neither disturbed with the effect of wine nor": [0, 65535], "say neither disturbed with the effect of wine nor headie": [0, 65535], "neither disturbed with the effect of wine nor headie rash": [0, 65535], "disturbed with the effect of wine nor headie rash prouoak'd": [0, 65535], "with the effect of wine nor headie rash prouoak'd with": [0, 65535], "the effect of wine nor headie rash prouoak'd with raging": [0, 65535], "effect of wine nor headie rash prouoak'd with raging ire": [0, 65535], "of wine nor headie rash prouoak'd with raging ire albeit": [0, 65535], "wine nor headie rash prouoak'd with raging ire albeit my": [0, 65535], "nor headie rash prouoak'd with raging ire albeit my wrongs": [0, 65535], "headie rash prouoak'd with raging ire albeit my wrongs might": [0, 65535], "rash prouoak'd with raging ire albeit my wrongs might make": [0, 65535], "prouoak'd with raging ire albeit my wrongs might make one": [0, 65535], "with raging ire albeit my wrongs might make one wiser": [0, 65535], "raging ire albeit my wrongs might make one wiser mad": [0, 65535], "ire albeit my wrongs might make one wiser mad this": [0, 65535], "albeit my wrongs might make one wiser mad this woman": [0, 65535], "my wrongs might make one wiser mad this woman lock'd": [0, 65535], "wrongs might make one wiser mad this woman lock'd me": [0, 65535], "might make one wiser mad this woman lock'd me out": [0, 65535], "make one wiser mad this woman lock'd me out this": [0, 65535], "one wiser mad this woman lock'd me out this day": [0, 65535], "wiser mad this woman lock'd me out this day from": [0, 65535], "mad this woman lock'd me out this day from dinner": [0, 65535], "this woman lock'd me out this day from dinner that": [0, 65535], "woman lock'd me out this day from dinner that goldsmith": [0, 65535], "lock'd me out this day from dinner that goldsmith there": [0, 65535], "me out this day from dinner that goldsmith there were": [0, 65535], "out this day from dinner that goldsmith there were he": [0, 65535], "this day from dinner that goldsmith there were he not": [0, 65535], "day from dinner that goldsmith there were he not pack'd": [0, 65535], "from dinner that goldsmith there were he not pack'd with": [0, 65535], "dinner that goldsmith there were he not pack'd with her": [0, 65535], "that goldsmith there were he not pack'd with her could": [0, 65535], "goldsmith there were he not pack'd with her could witnesse": [0, 65535], "there were he not pack'd with her could witnesse it": [0, 65535], "were he not pack'd with her could witnesse it for": [0, 65535], "he not pack'd with her could witnesse it for he": [0, 65535], "not pack'd with her could witnesse it for he was": [0, 65535], "pack'd with her could witnesse it for he was with": [0, 65535], "with her could witnesse it for he was with me": [0, 65535], "her could witnesse it for he was with me then": [0, 65535], "could witnesse it for he was with me then who": [0, 65535], "witnesse it for he was with me then who parted": [0, 65535], "it for he was with me then who parted with": [0, 65535], "for he was with me then who parted with me": [0, 65535], "he was with me then who parted with me to": [0, 65535], "was with me then who parted with me to go": [0, 65535], "with me then who parted with me to go fetch": [0, 65535], "me then who parted with me to go fetch a": [0, 65535], "then who parted with me to go fetch a chaine": [0, 65535], "who parted with me to go fetch a chaine promising": [0, 65535], "parted with me to go fetch a chaine promising to": [0, 65535], "with me to go fetch a chaine promising to bring": [0, 65535], "me to go fetch a chaine promising to bring it": [0, 65535], "to go fetch a chaine promising to bring it to": [0, 65535], "go fetch a chaine promising to bring it to the": [0, 65535], "fetch a chaine promising to bring it to the porpentine": [0, 65535], "a chaine promising to bring it to the porpentine where": [0, 65535], "chaine promising to bring it to the porpentine where balthasar": [0, 65535], "promising to bring it to the porpentine where balthasar and": [0, 65535], "to bring it to the porpentine where balthasar and i": [0, 65535], "bring it to the porpentine where balthasar and i did": [0, 65535], "it to the porpentine where balthasar and i did dine": [0, 65535], "to the porpentine where balthasar and i did dine together": [0, 65535], "the porpentine where balthasar and i did dine together our": [0, 65535], "porpentine where balthasar and i did dine together our dinner": [0, 65535], "where balthasar and i did dine together our dinner done": [0, 65535], "balthasar and i did dine together our dinner done and": [0, 65535], "and i did dine together our dinner done and he": [0, 65535], "i did dine together our dinner done and he not": [0, 65535], "did dine together our dinner done and he not comming": [0, 65535], "dine together our dinner done and he not comming thither": [0, 65535], "together our dinner done and he not comming thither i": [0, 65535], "our dinner done and he not comming thither i went": [0, 65535], "dinner done and he not comming thither i went to": [0, 65535], "done and he not comming thither i went to seeke": [0, 65535], "and he not comming thither i went to seeke him": [0, 65535], "he not comming thither i went to seeke him in": [0, 65535], "not comming thither i went to seeke him in the": [0, 65535], "comming thither i went to seeke him in the street": [0, 65535], "thither i went to seeke him in the street i": [0, 65535], "i went to seeke him in the street i met": [0, 65535], "went to seeke him in the street i met him": [0, 65535], "to seeke him in the street i met him and": [0, 65535], "seeke him in the street i met him and in": [0, 65535], "him in the street i met him and in his": [0, 65535], "in the street i met him and in his companie": [0, 65535], "the street i met him and in his companie that": [0, 65535], "street i met him and in his companie that gentleman": [0, 65535], "i met him and in his companie that gentleman there": [0, 65535], "met him and in his companie that gentleman there did": [0, 65535], "him and in his companie that gentleman there did this": [0, 65535], "and in his companie that gentleman there did this periur'd": [0, 65535], "in his companie that gentleman there did this periur'd goldsmith": [0, 65535], "his companie that gentleman there did this periur'd goldsmith sweare": [0, 65535], "companie that gentleman there did this periur'd goldsmith sweare me": [0, 65535], "that gentleman there did this periur'd goldsmith sweare me downe": [0, 65535], "gentleman there did this periur'd goldsmith sweare me downe that": [0, 65535], "there did this periur'd goldsmith sweare me downe that i": [0, 65535], "did this periur'd goldsmith sweare me downe that i this": [0, 65535], "this periur'd goldsmith sweare me downe that i this day": [0, 65535], "periur'd goldsmith sweare me downe that i this day of": [0, 65535], "goldsmith sweare me downe that i this day of him": [0, 65535], "sweare me downe that i this day of him receiu'd": [0, 65535], "me downe that i this day of him receiu'd the": [0, 65535], "downe that i this day of him receiu'd the chaine": [0, 65535], "that i this day of him receiu'd the chaine which": [0, 65535], "i this day of him receiu'd the chaine which god": [0, 65535], "this day of him receiu'd the chaine which god he": [0, 65535], "day of him receiu'd the chaine which god he knowes": [0, 65535], "of him receiu'd the chaine which god he knowes i": [0, 65535], "him receiu'd the chaine which god he knowes i saw": [0, 65535], "receiu'd the chaine which god he knowes i saw not": [0, 65535], "the chaine which god he knowes i saw not for": [0, 65535], "chaine which god he knowes i saw not for the": [0, 65535], "which god he knowes i saw not for the which": [0, 65535], "god he knowes i saw not for the which he": [0, 65535], "he knowes i saw not for the which he did": [0, 65535], "knowes i saw not for the which he did arrest": [0, 65535], "i saw not for the which he did arrest me": [0, 65535], "saw not for the which he did arrest me with": [0, 65535], "not for the which he did arrest me with an": [0, 65535], "for the which he did arrest me with an officer": [0, 65535], "the which he did arrest me with an officer i": [0, 65535], "which he did arrest me with an officer i did": [0, 65535], "he did arrest me with an officer i did obey": [0, 65535], "did arrest me with an officer i did obey and": [0, 65535], "arrest me with an officer i did obey and sent": [0, 65535], "me with an officer i did obey and sent my": [0, 65535], "with an officer i did obey and sent my pesant": [0, 65535], "an officer i did obey and sent my pesant home": [0, 65535], "officer i did obey and sent my pesant home for": [0, 65535], "i did obey and sent my pesant home for certaine": [0, 65535], "did obey and sent my pesant home for certaine duckets": [0, 65535], "obey and sent my pesant home for certaine duckets he": [0, 65535], "and sent my pesant home for certaine duckets he with": [0, 65535], "sent my pesant home for certaine duckets he with none": [0, 65535], "my pesant home for certaine duckets he with none return'd": [0, 65535], "pesant home for certaine duckets he with none return'd then": [0, 65535], "home for certaine duckets he with none return'd then fairely": [0, 65535], "for certaine duckets he with none return'd then fairely i": [0, 65535], "certaine duckets he with none return'd then fairely i bespoke": [0, 65535], "duckets he with none return'd then fairely i bespoke the": [0, 65535], "he with none return'd then fairely i bespoke the officer": [0, 65535], "with none return'd then fairely i bespoke the officer to": [0, 65535], "none return'd then fairely i bespoke the officer to go": [0, 65535], "return'd then fairely i bespoke the officer to go in": [0, 65535], "then fairely i bespoke the officer to go in person": [0, 65535], "fairely i bespoke the officer to go in person with": [0, 65535], "i bespoke the officer to go in person with me": [0, 65535], "bespoke the officer to go in person with me to": [0, 65535], "the officer to go in person with me to my": [0, 65535], "officer to go in person with me to my house": [0, 65535], "to go in person with me to my house by'th'": [0, 65535], "go in person with me to my house by'th' way": [0, 65535], "in person with me to my house by'th' way we": [0, 65535], "person with me to my house by'th' way we met": [0, 65535], "with me to my house by'th' way we met my": [0, 65535], "me to my house by'th' way we met my wife": [0, 65535], "to my house by'th' way we met my wife her": [0, 65535], "my house by'th' way we met my wife her sister": [0, 65535], "house by'th' way we met my wife her sister and": [0, 65535], "by'th' way we met my wife her sister and a": [0, 65535], "way we met my wife her sister and a rabble": [0, 65535], "we met my wife her sister and a rabble more": [0, 65535], "met my wife her sister and a rabble more of": [0, 65535], "my wife her sister and a rabble more of vilde": [0, 65535], "wife her sister and a rabble more of vilde confederates": [0, 65535], "her sister and a rabble more of vilde confederates along": [0, 65535], "sister and a rabble more of vilde confederates along with": [0, 65535], "and a rabble more of vilde confederates along with them": [0, 65535], "a rabble more of vilde confederates along with them they": [0, 65535], "rabble more of vilde confederates along with them they brought": [0, 65535], "more of vilde confederates along with them they brought one": [0, 65535], "of vilde confederates along with them they brought one pinch": [0, 65535], "vilde confederates along with them they brought one pinch a": [0, 65535], "confederates along with them they brought one pinch a hungry": [0, 65535], "along with them they brought one pinch a hungry leane": [0, 65535], "with them they brought one pinch a hungry leane fac'd": [0, 65535], "them they brought one pinch a hungry leane fac'd villaine": [0, 65535], "they brought one pinch a hungry leane fac'd villaine a": [0, 65535], "brought one pinch a hungry leane fac'd villaine a meere": [0, 65535], "one pinch a hungry leane fac'd villaine a meere anatomie": [0, 65535], "pinch a hungry leane fac'd villaine a meere anatomie a": [0, 65535], "a hungry leane fac'd villaine a meere anatomie a mountebanke": [0, 65535], "hungry leane fac'd villaine a meere anatomie a mountebanke a": [0, 65535], "leane fac'd villaine a meere anatomie a mountebanke a thred": [0, 65535], "fac'd villaine a meere anatomie a mountebanke a thred bare": [0, 65535], "villaine a meere anatomie a mountebanke a thred bare iugler": [0, 65535], "a meere anatomie a mountebanke a thred bare iugler and": [0, 65535], "meere anatomie a mountebanke a thred bare iugler and a": [0, 65535], "anatomie a mountebanke a thred bare iugler and a fortune": [0, 65535], "a mountebanke a thred bare iugler and a fortune teller": [0, 65535], "mountebanke a thred bare iugler and a fortune teller a": [0, 65535], "a thred bare iugler and a fortune teller a needy": [0, 65535], "thred bare iugler and a fortune teller a needy hollow": [0, 65535], "bare iugler and a fortune teller a needy hollow ey'd": [0, 65535], "iugler and a fortune teller a needy hollow ey'd sharpe": [0, 65535], "and a fortune teller a needy hollow ey'd sharpe looking": [0, 65535], "a fortune teller a needy hollow ey'd sharpe looking wretch": [0, 65535], "fortune teller a needy hollow ey'd sharpe looking wretch a": [0, 65535], "teller a needy hollow ey'd sharpe looking wretch a liuing": [0, 65535], "a needy hollow ey'd sharpe looking wretch a liuing dead": [0, 65535], "needy hollow ey'd sharpe looking wretch a liuing dead man": [0, 65535], "hollow ey'd sharpe looking wretch a liuing dead man this": [0, 65535], "ey'd sharpe looking wretch a liuing dead man this pernicious": [0, 65535], "sharpe looking wretch a liuing dead man this pernicious slaue": [0, 65535], "looking wretch a liuing dead man this pernicious slaue forsooth": [0, 65535], "wretch a liuing dead man this pernicious slaue forsooth tooke": [0, 65535], "a liuing dead man this pernicious slaue forsooth tooke on": [0, 65535], "liuing dead man this pernicious slaue forsooth tooke on him": [0, 65535], "dead man this pernicious slaue forsooth tooke on him as": [0, 65535], "man this pernicious slaue forsooth tooke on him as a": [0, 65535], "this pernicious slaue forsooth tooke on him as a coniurer": [0, 65535], "pernicious slaue forsooth tooke on him as a coniurer and": [0, 65535], "slaue forsooth tooke on him as a coniurer and gazing": [0, 65535], "forsooth tooke on him as a coniurer and gazing in": [0, 65535], "tooke on him as a coniurer and gazing in mine": [0, 65535], "on him as a coniurer and gazing in mine eyes": [0, 65535], "him as a coniurer and gazing in mine eyes feeling": [0, 65535], "as a coniurer and gazing in mine eyes feeling my": [0, 65535], "a coniurer and gazing in mine eyes feeling my pulse": [0, 65535], "coniurer and gazing in mine eyes feeling my pulse and": [0, 65535], "and gazing in mine eyes feeling my pulse and with": [0, 65535], "gazing in mine eyes feeling my pulse and with no": [0, 65535], "in mine eyes feeling my pulse and with no face": [0, 65535], "mine eyes feeling my pulse and with no face as": [0, 65535], "eyes feeling my pulse and with no face as 'twere": [0, 65535], "feeling my pulse and with no face as 'twere out": [0, 65535], "my pulse and with no face as 'twere out facing": [0, 65535], "pulse and with no face as 'twere out facing me": [0, 65535], "and with no face as 'twere out facing me cries": [0, 65535], "with no face as 'twere out facing me cries out": [0, 65535], "no face as 'twere out facing me cries out i": [0, 65535], "face as 'twere out facing me cries out i was": [0, 65535], "as 'twere out facing me cries out i was possest": [0, 65535], "'twere out facing me cries out i was possest then": [0, 65535], "out facing me cries out i was possest then altogether": [0, 65535], "facing me cries out i was possest then altogether they": [0, 65535], "me cries out i was possest then altogether they fell": [0, 65535], "cries out i was possest then altogether they fell vpon": [0, 65535], "out i was possest then altogether they fell vpon me": [0, 65535], "i was possest then altogether they fell vpon me bound": [0, 65535], "was possest then altogether they fell vpon me bound me": [0, 65535], "possest then altogether they fell vpon me bound me bore": [0, 65535], "then altogether they fell vpon me bound me bore me": [0, 65535], "altogether they fell vpon me bound me bore me thence": [0, 65535], "they fell vpon me bound me bore me thence and": [0, 65535], "fell vpon me bound me bore me thence and in": [0, 65535], "vpon me bound me bore me thence and in a": [0, 65535], "me bound me bore me thence and in a darke": [0, 65535], "bound me bore me thence and in a darke and": [0, 65535], "me bore me thence and in a darke and dankish": [0, 65535], "bore me thence and in a darke and dankish vault": [0, 65535], "me thence and in a darke and dankish vault at": [0, 65535], "thence and in a darke and dankish vault at home": [0, 65535], "and in a darke and dankish vault at home there": [0, 65535], "in a darke and dankish vault at home there left": [0, 65535], "a darke and dankish vault at home there left me": [0, 65535], "darke and dankish vault at home there left me and": [0, 65535], "and dankish vault at home there left me and my": [0, 65535], "dankish vault at home there left me and my man": [0, 65535], "vault at home there left me and my man both": [0, 65535], "at home there left me and my man both bound": [0, 65535], "home there left me and my man both bound together": [0, 65535], "there left me and my man both bound together till": [0, 65535], "left me and my man both bound together till gnawing": [0, 65535], "me and my man both bound together till gnawing with": [0, 65535], "and my man both bound together till gnawing with my": [0, 65535], "my man both bound together till gnawing with my teeth": [0, 65535], "man both bound together till gnawing with my teeth my": [0, 65535], "both bound together till gnawing with my teeth my bonds": [0, 65535], "bound together till gnawing with my teeth my bonds in": [0, 65535], "together till gnawing with my teeth my bonds in sunder": [0, 65535], "till gnawing with my teeth my bonds in sunder i": [0, 65535], "gnawing with my teeth my bonds in sunder i gain'd": [0, 65535], "with my teeth my bonds in sunder i gain'd my": [0, 65535], "my teeth my bonds in sunder i gain'd my freedome": [0, 65535], "teeth my bonds in sunder i gain'd my freedome and": [0, 65535], "my bonds in sunder i gain'd my freedome and immediately": [0, 65535], "bonds in sunder i gain'd my freedome and immediately ran": [0, 65535], "in sunder i gain'd my freedome and immediately ran hether": [0, 65535], "sunder i gain'd my freedome and immediately ran hether to": [0, 65535], "i gain'd my freedome and immediately ran hether to your": [0, 65535], "gain'd my freedome and immediately ran hether to your grace": [0, 65535], "my freedome and immediately ran hether to your grace whom": [0, 65535], "freedome and immediately ran hether to your grace whom i": [0, 65535], "and immediately ran hether to your grace whom i beseech": [0, 65535], "immediately ran hether to your grace whom i beseech to": [0, 65535], "ran hether to your grace whom i beseech to giue": [0, 65535], "hether to your grace whom i beseech to giue me": [0, 65535], "to your grace whom i beseech to giue me ample": [0, 65535], "your grace whom i beseech to giue me ample satisfaction": [0, 65535], "grace whom i beseech to giue me ample satisfaction for": [0, 65535], "whom i beseech to giue me ample satisfaction for these": [0, 65535], "i beseech to giue me ample satisfaction for these deepe": [0, 65535], "beseech to giue me ample satisfaction for these deepe shames": [0, 65535], "to giue me ample satisfaction for these deepe shames and": [0, 65535], "giue me ample satisfaction for these deepe shames and great": [0, 65535], "me ample satisfaction for these deepe shames and great indignities": [0, 65535], "ample satisfaction for these deepe shames and great indignities gold": [0, 65535], "satisfaction for these deepe shames and great indignities gold my": [0, 65535], "for these deepe shames and great indignities gold my lord": [0, 65535], "these deepe shames and great indignities gold my lord in": [0, 65535], "deepe shames and great indignities gold my lord in truth": [0, 65535], "shames and great indignities gold my lord in truth thus": [0, 65535], "and great indignities gold my lord in truth thus far": [0, 65535], "great indignities gold my lord in truth thus far i": [0, 65535], "indignities gold my lord in truth thus far i witnes": [0, 65535], "gold my lord in truth thus far i witnes with": [0, 65535], "my lord in truth thus far i witnes with him": [0, 65535], "lord in truth thus far i witnes with him that": [0, 65535], "in truth thus far i witnes with him that he": [0, 65535], "truth thus far i witnes with him that he din'd": [0, 65535], "thus far i witnes with him that he din'd not": [0, 65535], "far i witnes with him that he din'd not at": [0, 65535], "i witnes with him that he din'd not at home": [0, 65535], "witnes with him that he din'd not at home but": [0, 65535], "with him that he din'd not at home but was": [0, 65535], "him that he din'd not at home but was lock'd": [0, 65535], "that he din'd not at home but was lock'd out": [0, 65535], "he din'd not at home but was lock'd out duke": [0, 65535], "din'd not at home but was lock'd out duke but": [0, 65535], "not at home but was lock'd out duke but had": [0, 65535], "at home but was lock'd out duke but had he": [0, 65535], "home but was lock'd out duke but had he such": [0, 65535], "but was lock'd out duke but had he such a": [0, 65535], "was lock'd out duke but had he such a chaine": [0, 65535], "lock'd out duke but had he such a chaine of": [0, 65535], "out duke but had he such a chaine of thee": [0, 65535], "duke but had he such a chaine of thee or": [0, 65535], "but had he such a chaine of thee or no": [0, 65535], "had he such a chaine of thee or no gold": [0, 65535], "he such a chaine of thee or no gold he": [0, 65535], "such a chaine of thee or no gold he had": [0, 65535], "a chaine of thee or no gold he had my": [0, 65535], "chaine of thee or no gold he had my lord": [0, 65535], "of thee or no gold he had my lord and": [0, 65535], "thee or no gold he had my lord and when": [0, 65535], "or no gold he had my lord and when he": [0, 65535], "no gold he had my lord and when he ran": [0, 65535], "gold he had my lord and when he ran in": [0, 65535], "he had my lord and when he ran in heere": [0, 65535], "had my lord and when he ran in heere these": [0, 65535], "my lord and when he ran in heere these people": [0, 65535], "lord and when he ran in heere these people saw": [0, 65535], "and when he ran in heere these people saw the": [0, 65535], "when he ran in heere these people saw the chaine": [0, 65535], "he ran in heere these people saw the chaine about": [0, 65535], "ran in heere these people saw the chaine about his": [0, 65535], "in heere these people saw the chaine about his necke": [0, 65535], "heere these people saw the chaine about his necke mar": [0, 65535], "these people saw the chaine about his necke mar besides": [0, 65535], "people saw the chaine about his necke mar besides i": [0, 65535], "saw the chaine about his necke mar besides i will": [0, 65535], "the chaine about his necke mar besides i will be": [0, 65535], "chaine about his necke mar besides i will be sworne": [0, 65535], "about his necke mar besides i will be sworne these": [0, 65535], "his necke mar besides i will be sworne these eares": [0, 65535], "necke mar besides i will be sworne these eares of": [0, 65535], "mar besides i will be sworne these eares of mine": [0, 65535], "besides i will be sworne these eares of mine heard": [0, 65535], "i will be sworne these eares of mine heard you": [0, 65535], "will be sworne these eares of mine heard you confesse": [0, 65535], "be sworne these eares of mine heard you confesse you": [0, 65535], "sworne these eares of mine heard you confesse you had": [0, 65535], "these eares of mine heard you confesse you had the": [0, 65535], "eares of mine heard you confesse you had the chaine": [0, 65535], "of mine heard you confesse you had the chaine of": [0, 65535], "mine heard you confesse you had the chaine of him": [0, 65535], "heard you confesse you had the chaine of him after": [0, 65535], "you confesse you had the chaine of him after you": [0, 65535], "confesse you had the chaine of him after you first": [0, 65535], "you had the chaine of him after you first forswore": [0, 65535], "had the chaine of him after you first forswore it": [0, 65535], "the chaine of him after you first forswore it on": [0, 65535], "chaine of him after you first forswore it on the": [0, 65535], "of him after you first forswore it on the mart": [0, 65535], "him after you first forswore it on the mart and": [0, 65535], "after you first forswore it on the mart and thereupon": [0, 65535], "you first forswore it on the mart and thereupon i": [0, 65535], "first forswore it on the mart and thereupon i drew": [0, 65535], "forswore it on the mart and thereupon i drew my": [0, 65535], "it on the mart and thereupon i drew my sword": [0, 65535], "on the mart and thereupon i drew my sword on": [0, 65535], "the mart and thereupon i drew my sword on you": [0, 65535], "mart and thereupon i drew my sword on you and": [0, 65535], "and thereupon i drew my sword on you and then": [0, 65535], "thereupon i drew my sword on you and then you": [0, 65535], "i drew my sword on you and then you fled": [0, 65535], "drew my sword on you and then you fled into": [0, 65535], "my sword on you and then you fled into this": [0, 65535], "sword on you and then you fled into this abbey": [0, 65535], "on you and then you fled into this abbey heere": [0, 65535], "you and then you fled into this abbey heere from": [0, 65535], "and then you fled into this abbey heere from whence": [0, 65535], "then you fled into this abbey heere from whence i": [0, 65535], "you fled into this abbey heere from whence i thinke": [0, 65535], "fled into this abbey heere from whence i thinke you": [0, 65535], "into this abbey heere from whence i thinke you are": [0, 65535], "this abbey heere from whence i thinke you are come": [0, 65535], "abbey heere from whence i thinke you are come by": [0, 65535], "heere from whence i thinke you are come by miracle": [0, 65535], "from whence i thinke you are come by miracle e": [0, 65535], "whence i thinke you are come by miracle e ant": [0, 65535], "i thinke you are come by miracle e ant i": [0, 65535], "thinke you are come by miracle e ant i neuer": [0, 65535], "you are come by miracle e ant i neuer came": [0, 65535], "are come by miracle e ant i neuer came within": [0, 65535], "come by miracle e ant i neuer came within these": [0, 65535], "by miracle e ant i neuer came within these abbey": [0, 65535], "miracle e ant i neuer came within these abbey wals": [0, 65535], "e ant i neuer came within these abbey wals nor": [0, 65535], "ant i neuer came within these abbey wals nor euer": [0, 65535], "i neuer came within these abbey wals nor euer didst": [0, 65535], "neuer came within these abbey wals nor euer didst thou": [0, 65535], "came within these abbey wals nor euer didst thou draw": [0, 65535], "within these abbey wals nor euer didst thou draw thy": [0, 65535], "these abbey wals nor euer didst thou draw thy sword": [0, 65535], "abbey wals nor euer didst thou draw thy sword on": [0, 65535], "wals nor euer didst thou draw thy sword on me": [0, 65535], "nor euer didst thou draw thy sword on me i": [0, 65535], "euer didst thou draw thy sword on me i neuer": [0, 65535], "didst thou draw thy sword on me i neuer saw": [0, 65535], "thou draw thy sword on me i neuer saw the": [0, 65535], "draw thy sword on me i neuer saw the chaine": [0, 65535], "thy sword on me i neuer saw the chaine so": [0, 65535], "sword on me i neuer saw the chaine so helpe": [0, 65535], "on me i neuer saw the chaine so helpe me": [0, 65535], "me i neuer saw the chaine so helpe me heauen": [0, 65535], "i neuer saw the chaine so helpe me heauen and": [0, 65535], "neuer saw the chaine so helpe me heauen and this": [0, 65535], "saw the chaine so helpe me heauen and this is": [0, 65535], "the chaine so helpe me heauen and this is false": [0, 65535], "chaine so helpe me heauen and this is false you": [0, 65535], "so helpe me heauen and this is false you burthen": [0, 65535], "helpe me heauen and this is false you burthen me": [0, 65535], "me heauen and this is false you burthen me withall": [0, 65535], "heauen and this is false you burthen me withall duke": [0, 65535], "and this is false you burthen me withall duke why": [0, 65535], "this is false you burthen me withall duke why what": [0, 65535], "is false you burthen me withall duke why what an": [0, 65535], "false you burthen me withall duke why what an intricate": [0, 65535], "you burthen me withall duke why what an intricate impeach": [0, 65535], "burthen me withall duke why what an intricate impeach is": [0, 65535], "me withall duke why what an intricate impeach is this": [0, 65535], "withall duke why what an intricate impeach is this i": [0, 65535], "duke why what an intricate impeach is this i thinke": [0, 65535], "why what an intricate impeach is this i thinke you": [0, 65535], "what an intricate impeach is this i thinke you all": [0, 65535], "an intricate impeach is this i thinke you all haue": [0, 65535], "intricate impeach is this i thinke you all haue drunke": [0, 65535], "impeach is this i thinke you all haue drunke of": [0, 65535], "is this i thinke you all haue drunke of circes": [0, 65535], "this i thinke you all haue drunke of circes cup": [0, 65535], "i thinke you all haue drunke of circes cup if": [0, 65535], "thinke you all haue drunke of circes cup if heere": [0, 65535], "you all haue drunke of circes cup if heere you": [0, 65535], "all haue drunke of circes cup if heere you hous'd": [0, 65535], "haue drunke of circes cup if heere you hous'd him": [0, 65535], "drunke of circes cup if heere you hous'd him heere": [0, 65535], "of circes cup if heere you hous'd him heere he": [0, 65535], "circes cup if heere you hous'd him heere he would": [0, 65535], "cup if heere you hous'd him heere he would haue": [0, 65535], "if heere you hous'd him heere he would haue bin": [0, 65535], "heere you hous'd him heere he would haue bin if": [0, 65535], "you hous'd him heere he would haue bin if he": [0, 65535], "hous'd him heere he would haue bin if he were": [0, 65535], "him heere he would haue bin if he were mad": [0, 65535], "heere he would haue bin if he were mad he": [0, 65535], "he would haue bin if he were mad he would": [0, 65535], "would haue bin if he were mad he would not": [0, 65535], "haue bin if he were mad he would not pleade": [0, 65535], "bin if he were mad he would not pleade so": [0, 65535], "if he were mad he would not pleade so coldly": [0, 65535], "he were mad he would not pleade so coldly you": [0, 65535], "were mad he would not pleade so coldly you say": [0, 65535], "mad he would not pleade so coldly you say he": [0, 65535], "he would not pleade so coldly you say he din'd": [0, 65535], "would not pleade so coldly you say he din'd at": [0, 65535], "not pleade so coldly you say he din'd at home": [0, 65535], "pleade so coldly you say he din'd at home the": [0, 65535], "so coldly you say he din'd at home the goldsmith": [0, 65535], "coldly you say he din'd at home the goldsmith heere": [0, 65535], "you say he din'd at home the goldsmith heere denies": [0, 65535], "say he din'd at home the goldsmith heere denies that": [0, 65535], "he din'd at home the goldsmith heere denies that saying": [0, 65535], "din'd at home the goldsmith heere denies that saying sirra": [0, 65535], "at home the goldsmith heere denies that saying sirra what": [0, 65535], "home the goldsmith heere denies that saying sirra what say": [0, 65535], "the goldsmith heere denies that saying sirra what say you": [0, 65535], "goldsmith heere denies that saying sirra what say you e": [0, 65535], "heere denies that saying sirra what say you e dro": [0, 65535], "denies that saying sirra what say you e dro sir": [0, 65535], "that saying sirra what say you e dro sir he": [0, 65535], "saying sirra what say you e dro sir he din'de": [0, 65535], "sirra what say you e dro sir he din'de with": [0, 65535], "what say you e dro sir he din'de with her": [0, 65535], "say you e dro sir he din'de with her there": [0, 65535], "you e dro sir he din'de with her there at": [0, 65535], "e dro sir he din'de with her there at the": [0, 65535], "dro sir he din'de with her there at the porpentine": [0, 65535], "sir he din'de with her there at the porpentine cur": [0, 65535], "he din'de with her there at the porpentine cur he": [0, 65535], "din'de with her there at the porpentine cur he did": [0, 65535], "with her there at the porpentine cur he did and": [0, 65535], "her there at the porpentine cur he did and from": [0, 65535], "there at the porpentine cur he did and from my": [0, 65535], "at the porpentine cur he did and from my finger": [0, 65535], "the porpentine cur he did and from my finger snacht": [0, 65535], "porpentine cur he did and from my finger snacht that": [0, 65535], "cur he did and from my finger snacht that ring": [0, 65535], "he did and from my finger snacht that ring e": [0, 65535], "did and from my finger snacht that ring e anti": [0, 65535], "and from my finger snacht that ring e anti tis": [0, 65535], "from my finger snacht that ring e anti tis true": [0, 65535], "my finger snacht that ring e anti tis true my": [0, 65535], "finger snacht that ring e anti tis true my liege": [0, 65535], "snacht that ring e anti tis true my liege this": [0, 65535], "that ring e anti tis true my liege this ring": [0, 65535], "ring e anti tis true my liege this ring i": [0, 65535], "e anti tis true my liege this ring i had": [0, 65535], "anti tis true my liege this ring i had of": [0, 65535], "tis true my liege this ring i had of her": [0, 65535], "true my liege this ring i had of her duke": [0, 65535], "my liege this ring i had of her duke saw'st": [0, 65535], "liege this ring i had of her duke saw'st thou": [0, 65535], "this ring i had of her duke saw'st thou him": [0, 65535], "ring i had of her duke saw'st thou him enter": [0, 65535], "i had of her duke saw'st thou him enter at": [0, 65535], "had of her duke saw'st thou him enter at the": [0, 65535], "of her duke saw'st thou him enter at the abbey": [0, 65535], "her duke saw'st thou him enter at the abbey heere": [0, 65535], "duke saw'st thou him enter at the abbey heere curt": [0, 65535], "saw'st thou him enter at the abbey heere curt as": [0, 65535], "thou him enter at the abbey heere curt as sure": [0, 65535], "him enter at the abbey heere curt as sure my": [0, 65535], "enter at the abbey heere curt as sure my liege": [0, 65535], "at the abbey heere curt as sure my liege as": [0, 65535], "the abbey heere curt as sure my liege as i": [0, 65535], "abbey heere curt as sure my liege as i do": [0, 65535], "heere curt as sure my liege as i do see": [0, 65535], "curt as sure my liege as i do see your": [0, 65535], "as sure my liege as i do see your grace": [0, 65535], "sure my liege as i do see your grace duke": [0, 65535], "my liege as i do see your grace duke why": [0, 65535], "liege as i do see your grace duke why this": [0, 65535], "as i do see your grace duke why this is": [0, 65535], "i do see your grace duke why this is straunge": [0, 65535], "do see your grace duke why this is straunge go": [0, 65535], "see your grace duke why this is straunge go call": [0, 65535], "your grace duke why this is straunge go call the": [0, 65535], "grace duke why this is straunge go call the abbesse": [0, 65535], "duke why this is straunge go call the abbesse hither": [0, 65535], "why this is straunge go call the abbesse hither i": [0, 65535], "this is straunge go call the abbesse hither i thinke": [0, 65535], "is straunge go call the abbesse hither i thinke you": [0, 65535], "straunge go call the abbesse hither i thinke you are": [0, 65535], "go call the abbesse hither i thinke you are all": [0, 65535], "call the abbesse hither i thinke you are all mated": [0, 65535], "the abbesse hither i thinke you are all mated or": [0, 65535], "abbesse hither i thinke you are all mated or starke": [0, 65535], "hither i thinke you are all mated or starke mad": [0, 65535], "i thinke you are all mated or starke mad exit": [0, 65535], "thinke you are all mated or starke mad exit one": [0, 65535], "you are all mated or starke mad exit one to": [0, 65535], "are all mated or starke mad exit one to the": [0, 65535], "all mated or starke mad exit one to the abbesse": [0, 65535], "mated or starke mad exit one to the abbesse fa": [0, 65535], "or starke mad exit one to the abbesse fa most": [0, 65535], "starke mad exit one to the abbesse fa most mighty": [0, 65535], "mad exit one to the abbesse fa most mighty duke": [0, 65535], "exit one to the abbesse fa most mighty duke vouchsafe": [0, 65535], "one to the abbesse fa most mighty duke vouchsafe me": [0, 65535], "to the abbesse fa most mighty duke vouchsafe me speak": [0, 65535], "the abbesse fa most mighty duke vouchsafe me speak a": [0, 65535], "abbesse fa most mighty duke vouchsafe me speak a word": [0, 65535], "fa most mighty duke vouchsafe me speak a word haply": [0, 65535], "most mighty duke vouchsafe me speak a word haply i": [0, 65535], "mighty duke vouchsafe me speak a word haply i see": [0, 65535], "duke vouchsafe me speak a word haply i see a": [0, 65535], "vouchsafe me speak a word haply i see a friend": [0, 65535], "me speak a word haply i see a friend will": [0, 65535], "speak a word haply i see a friend will saue": [0, 65535], "a word haply i see a friend will saue my": [0, 65535], "word haply i see a friend will saue my life": [0, 65535], "haply i see a friend will saue my life and": [0, 65535], "i see a friend will saue my life and pay": [0, 65535], "see a friend will saue my life and pay the": [0, 65535], "a friend will saue my life and pay the sum": [0, 65535], "friend will saue my life and pay the sum that": [0, 65535], "will saue my life and pay the sum that may": [0, 65535], "saue my life and pay the sum that may deliuer": [0, 65535], "my life and pay the sum that may deliuer me": [0, 65535], "life and pay the sum that may deliuer me duke": [0, 65535], "and pay the sum that may deliuer me duke speake": [0, 65535], "pay the sum that may deliuer me duke speake freely": [0, 65535], "the sum that may deliuer me duke speake freely siracusian": [0, 65535], "sum that may deliuer me duke speake freely siracusian what": [0, 65535], "that may deliuer me duke speake freely siracusian what thou": [0, 65535], "may deliuer me duke speake freely siracusian what thou wilt": [0, 65535], "deliuer me duke speake freely siracusian what thou wilt fath": [0, 65535], "me duke speake freely siracusian what thou wilt fath is": [0, 65535], "duke speake freely siracusian what thou wilt fath is not": [0, 65535], "speake freely siracusian what thou wilt fath is not your": [0, 65535], "freely siracusian what thou wilt fath is not your name": [0, 65535], "siracusian what thou wilt fath is not your name sir": [0, 65535], "what thou wilt fath is not your name sir call'd": [0, 65535], "thou wilt fath is not your name sir call'd antipholus": [0, 65535], "wilt fath is not your name sir call'd antipholus and": [0, 65535], "fath is not your name sir call'd antipholus and is": [0, 65535], "is not your name sir call'd antipholus and is not": [0, 65535], "not your name sir call'd antipholus and is not that": [0, 65535], "your name sir call'd antipholus and is not that your": [0, 65535], "name sir call'd antipholus and is not that your bondman": [0, 65535], "sir call'd antipholus and is not that your bondman dromio": [0, 65535], "call'd antipholus and is not that your bondman dromio e": [0, 65535], "antipholus and is not that your bondman dromio e dro": [0, 65535], "and is not that your bondman dromio e dro within": [0, 65535], "is not that your bondman dromio e dro within this": [0, 65535], "not that your bondman dromio e dro within this houre": [0, 65535], "that your bondman dromio e dro within this houre i": [0, 65535], "your bondman dromio e dro within this houre i was": [0, 65535], "bondman dromio e dro within this houre i was his": [0, 65535], "dromio e dro within this houre i was his bondman": [0, 65535], "e dro within this houre i was his bondman sir": [0, 65535], "dro within this houre i was his bondman sir but": [0, 65535], "within this houre i was his bondman sir but he": [0, 65535], "this houre i was his bondman sir but he i": [0, 65535], "houre i was his bondman sir but he i thanke": [0, 65535], "i was his bondman sir but he i thanke him": [0, 65535], "was his bondman sir but he i thanke him gnaw'd": [0, 65535], "his bondman sir but he i thanke him gnaw'd in": [0, 65535], "bondman sir but he i thanke him gnaw'd in two": [0, 65535], "sir but he i thanke him gnaw'd in two my": [0, 65535], "but he i thanke him gnaw'd in two my cords": [0, 65535], "he i thanke him gnaw'd in two my cords now": [0, 65535], "i thanke him gnaw'd in two my cords now am": [0, 65535], "thanke him gnaw'd in two my cords now am i": [0, 65535], "him gnaw'd in two my cords now am i dromio": [0, 65535], "gnaw'd in two my cords now am i dromio and": [0, 65535], "in two my cords now am i dromio and his": [0, 65535], "two my cords now am i dromio and his man": [0, 65535], "my cords now am i dromio and his man vnbound": [0, 65535], "cords now am i dromio and his man vnbound fath": [0, 65535], "now am i dromio and his man vnbound fath i": [0, 65535], "am i dromio and his man vnbound fath i am": [0, 65535], "i dromio and his man vnbound fath i am sure": [0, 65535], "dromio and his man vnbound fath i am sure you": [0, 65535], "and his man vnbound fath i am sure you both": [0, 65535], "his man vnbound fath i am sure you both of": [0, 65535], "man vnbound fath i am sure you both of you": [0, 65535], "vnbound fath i am sure you both of you remember": [0, 65535], "fath i am sure you both of you remember me": [0, 65535], "i am sure you both of you remember me dro": [0, 65535], "am sure you both of you remember me dro our": [0, 65535], "sure you both of you remember me dro our selues": [0, 65535], "you both of you remember me dro our selues we": [0, 65535], "both of you remember me dro our selues we do": [0, 65535], "of you remember me dro our selues we do remember": [0, 65535], "you remember me dro our selues we do remember sir": [0, 65535], "remember me dro our selues we do remember sir by": [0, 65535], "me dro our selues we do remember sir by you": [0, 65535], "dro our selues we do remember sir by you for": [0, 65535], "our selues we do remember sir by you for lately": [0, 65535], "selues we do remember sir by you for lately we": [0, 65535], "we do remember sir by you for lately we were": [0, 65535], "do remember sir by you for lately we were bound": [0, 65535], "remember sir by you for lately we were bound as": [0, 65535], "sir by you for lately we were bound as you": [0, 65535], "by you for lately we were bound as you are": [0, 65535], "you for lately we were bound as you are now": [0, 65535], "for lately we were bound as you are now you": [0, 65535], "lately we were bound as you are now you are": [0, 65535], "we were bound as you are now you are not": [0, 65535], "were bound as you are now you are not pinches": [0, 65535], "bound as you are now you are not pinches patient": [0, 65535], "as you are now you are not pinches patient are": [0, 65535], "you are now you are not pinches patient are you": [0, 65535], "are now you are not pinches patient are you sir": [0, 65535], "now you are not pinches patient are you sir father": [0, 65535], "you are not pinches patient are you sir father why": [0, 65535], "are not pinches patient are you sir father why looke": [0, 65535], "not pinches patient are you sir father why looke you": [0, 65535], "pinches patient are you sir father why looke you strange": [0, 65535], "patient are you sir father why looke you strange on": [0, 65535], "are you sir father why looke you strange on me": [0, 65535], "you sir father why looke you strange on me you": [0, 65535], "sir father why looke you strange on me you know": [0, 65535], "father why looke you strange on me you know me": [0, 65535], "why looke you strange on me you know me well": [0, 65535], "looke you strange on me you know me well e": [0, 65535], "you strange on me you know me well e ant": [0, 65535], "strange on me you know me well e ant i": [0, 65535], "on me you know me well e ant i neuer": [0, 65535], "me you know me well e ant i neuer saw": [0, 65535], "you know me well e ant i neuer saw you": [0, 65535], "know me well e ant i neuer saw you in": [0, 65535], "me well e ant i neuer saw you in my": [0, 65535], "well e ant i neuer saw you in my life": [0, 65535], "e ant i neuer saw you in my life till": [0, 65535], "ant i neuer saw you in my life till now": [0, 65535], "i neuer saw you in my life till now fa": [0, 65535], "neuer saw you in my life till now fa oh": [0, 65535], "saw you in my life till now fa oh griefe": [0, 65535], "you in my life till now fa oh griefe hath": [0, 65535], "in my life till now fa oh griefe hath chang'd": [0, 65535], "my life till now fa oh griefe hath chang'd me": [0, 65535], "life till now fa oh griefe hath chang'd me since": [0, 65535], "till now fa oh griefe hath chang'd me since you": [0, 65535], "now fa oh griefe hath chang'd me since you saw": [0, 65535], "fa oh griefe hath chang'd me since you saw me": [0, 65535], "oh griefe hath chang'd me since you saw me last": [0, 65535], "griefe hath chang'd me since you saw me last and": [0, 65535], "hath chang'd me since you saw me last and carefull": [0, 65535], "chang'd me since you saw me last and carefull houres": [0, 65535], "me since you saw me last and carefull houres with": [0, 65535], "since you saw me last and carefull houres with times": [0, 65535], "you saw me last and carefull houres with times deformed": [0, 65535], "saw me last and carefull houres with times deformed hand": [0, 65535], "me last and carefull houres with times deformed hand haue": [0, 65535], "last and carefull houres with times deformed hand haue written": [0, 65535], "and carefull houres with times deformed hand haue written strange": [0, 65535], "carefull houres with times deformed hand haue written strange defeatures": [0, 65535], "houres with times deformed hand haue written strange defeatures in": [0, 65535], "with times deformed hand haue written strange defeatures in my": [0, 65535], "times deformed hand haue written strange defeatures in my face": [0, 65535], "deformed hand haue written strange defeatures in my face but": [0, 65535], "hand haue written strange defeatures in my face but tell": [0, 65535], "haue written strange defeatures in my face but tell me": [0, 65535], "written strange defeatures in my face but tell me yet": [0, 65535], "strange defeatures in my face but tell me yet dost": [0, 65535], "defeatures in my face but tell me yet dost thou": [0, 65535], "in my face but tell me yet dost thou not": [0, 65535], "my face but tell me yet dost thou not know": [0, 65535], "face but tell me yet dost thou not know my": [0, 65535], "but tell me yet dost thou not know my voice": [0, 65535], "tell me yet dost thou not know my voice ant": [0, 65535], "me yet dost thou not know my voice ant neither": [0, 65535], "yet dost thou not know my voice ant neither fat": [0, 65535], "dost thou not know my voice ant neither fat dromio": [0, 65535], "thou not know my voice ant neither fat dromio nor": [0, 65535], "not know my voice ant neither fat dromio nor thou": [0, 65535], "know my voice ant neither fat dromio nor thou dro": [0, 65535], "my voice ant neither fat dromio nor thou dro no": [0, 65535], "voice ant neither fat dromio nor thou dro no trust": [0, 65535], "ant neither fat dromio nor thou dro no trust me": [0, 65535], "neither fat dromio nor thou dro no trust me sir": [0, 65535], "fat dromio nor thou dro no trust me sir nor": [0, 65535], "dromio nor thou dro no trust me sir nor i": [0, 65535], "nor thou dro no trust me sir nor i fa": [0, 65535], "thou dro no trust me sir nor i fa i": [0, 65535], "dro no trust me sir nor i fa i am": [0, 65535], "no trust me sir nor i fa i am sure": [0, 65535], "trust me sir nor i fa i am sure thou": [0, 65535], "me sir nor i fa i am sure thou dost": [0, 65535], "sir nor i fa i am sure thou dost e": [0, 65535], "nor i fa i am sure thou dost e dromio": [0, 65535], "i fa i am sure thou dost e dromio i": [0, 65535], "fa i am sure thou dost e dromio i sir": [0, 65535], "i am sure thou dost e dromio i sir but": [0, 65535], "am sure thou dost e dromio i sir but i": [0, 65535], "sure thou dost e dromio i sir but i am": [0, 65535], "thou dost e dromio i sir but i am sure": [0, 65535], "dost e dromio i sir but i am sure i": [0, 65535], "e dromio i sir but i am sure i do": [0, 65535], "dromio i sir but i am sure i do not": [0, 65535], "i sir but i am sure i do not and": [0, 65535], "sir but i am sure i do not and whatsoeuer": [0, 65535], "but i am sure i do not and whatsoeuer a": [0, 65535], "i am sure i do not and whatsoeuer a man": [0, 65535], "am sure i do not and whatsoeuer a man denies": [0, 65535], "sure i do not and whatsoeuer a man denies you": [0, 65535], "i do not and whatsoeuer a man denies you are": [0, 65535], "do not and whatsoeuer a man denies you are now": [0, 65535], "not and whatsoeuer a man denies you are now bound": [0, 65535], "and whatsoeuer a man denies you are now bound to": [0, 65535], "whatsoeuer a man denies you are now bound to beleeue": [0, 65535], "a man denies you are now bound to beleeue him": [0, 65535], "man denies you are now bound to beleeue him fath": [0, 65535], "denies you are now bound to beleeue him fath not": [0, 65535], "you are now bound to beleeue him fath not know": [0, 65535], "are now bound to beleeue him fath not know my": [0, 65535], "now bound to beleeue him fath not know my voice": [0, 65535], "bound to beleeue him fath not know my voice oh": [0, 65535], "to beleeue him fath not know my voice oh times": [0, 65535], "beleeue him fath not know my voice oh times extremity": [0, 65535], "him fath not know my voice oh times extremity hast": [0, 65535], "fath not know my voice oh times extremity hast thou": [0, 65535], "not know my voice oh times extremity hast thou so": [0, 65535], "know my voice oh times extremity hast thou so crack'd": [0, 65535], "my voice oh times extremity hast thou so crack'd and": [0, 65535], "voice oh times extremity hast thou so crack'd and splitted": [0, 65535], "oh times extremity hast thou so crack'd and splitted my": [0, 65535], "times extremity hast thou so crack'd and splitted my poore": [0, 65535], "extremity hast thou so crack'd and splitted my poore tongue": [0, 65535], "hast thou so crack'd and splitted my poore tongue in": [0, 65535], "thou so crack'd and splitted my poore tongue in seuen": [0, 65535], "so crack'd and splitted my poore tongue in seuen short": [0, 65535], "crack'd and splitted my poore tongue in seuen short yeares": [0, 65535], "and splitted my poore tongue in seuen short yeares that": [0, 65535], "splitted my poore tongue in seuen short yeares that heere": [0, 65535], "my poore tongue in seuen short yeares that heere my": [0, 65535], "poore tongue in seuen short yeares that heere my onely": [0, 65535], "tongue in seuen short yeares that heere my onely sonne": [0, 65535], "in seuen short yeares that heere my onely sonne knowes": [0, 65535], "seuen short yeares that heere my onely sonne knowes not": [0, 65535], "short yeares that heere my onely sonne knowes not my": [0, 65535], "yeares that heere my onely sonne knowes not my feeble": [0, 65535], "that heere my onely sonne knowes not my feeble key": [0, 65535], "heere my onely sonne knowes not my feeble key of": [0, 65535], "my onely sonne knowes not my feeble key of vntun'd": [0, 65535], "onely sonne knowes not my feeble key of vntun'd cares": [0, 65535], "sonne knowes not my feeble key of vntun'd cares though": [0, 65535], "knowes not my feeble key of vntun'd cares though now": [0, 65535], "not my feeble key of vntun'd cares though now this": [0, 65535], "my feeble key of vntun'd cares though now this grained": [0, 65535], "feeble key of vntun'd cares though now this grained face": [0, 65535], "key of vntun'd cares though now this grained face of": [0, 65535], "of vntun'd cares though now this grained face of mine": [0, 65535], "vntun'd cares though now this grained face of mine be": [0, 65535], "cares though now this grained face of mine be hid": [0, 65535], "though now this grained face of mine be hid in": [0, 65535], "now this grained face of mine be hid in sap": [0, 65535], "this grained face of mine be hid in sap consuming": [0, 65535], "grained face of mine be hid in sap consuming winters": [0, 65535], "face of mine be hid in sap consuming winters drizled": [0, 65535], "of mine be hid in sap consuming winters drizled snow": [0, 65535], "mine be hid in sap consuming winters drizled snow and": [0, 65535], "be hid in sap consuming winters drizled snow and all": [0, 65535], "hid in sap consuming winters drizled snow and all the": [0, 65535], "in sap consuming winters drizled snow and all the conduits": [0, 65535], "sap consuming winters drizled snow and all the conduits of": [0, 65535], "consuming winters drizled snow and all the conduits of my": [0, 65535], "winters drizled snow and all the conduits of my blood": [0, 65535], "drizled snow and all the conduits of my blood froze": [0, 65535], "snow and all the conduits of my blood froze vp": [0, 65535], "and all the conduits of my blood froze vp yet": [0, 65535], "all the conduits of my blood froze vp yet hath": [0, 65535], "the conduits of my blood froze vp yet hath my": [0, 65535], "conduits of my blood froze vp yet hath my night": [0, 65535], "of my blood froze vp yet hath my night of": [0, 65535], "my blood froze vp yet hath my night of life": [0, 65535], "blood froze vp yet hath my night of life some": [0, 65535], "froze vp yet hath my night of life some memorie": [0, 65535], "vp yet hath my night of life some memorie my": [0, 65535], "yet hath my night of life some memorie my wasting": [0, 65535], "hath my night of life some memorie my wasting lampes": [0, 65535], "my night of life some memorie my wasting lampes some": [0, 65535], "night of life some memorie my wasting lampes some fading": [0, 65535], "of life some memorie my wasting lampes some fading glimmer": [0, 65535], "life some memorie my wasting lampes some fading glimmer left": [0, 65535], "some memorie my wasting lampes some fading glimmer left my": [0, 65535], "memorie my wasting lampes some fading glimmer left my dull": [0, 65535], "my wasting lampes some fading glimmer left my dull deafe": [0, 65535], "wasting lampes some fading glimmer left my dull deafe eares": [0, 65535], "lampes some fading glimmer left my dull deafe eares a": [0, 65535], "some fading glimmer left my dull deafe eares a little": [0, 65535], "fading glimmer left my dull deafe eares a little vse": [0, 65535], "glimmer left my dull deafe eares a little vse to": [0, 65535], "left my dull deafe eares a little vse to heare": [0, 65535], "my dull deafe eares a little vse to heare all": [0, 65535], "dull deafe eares a little vse to heare all these": [0, 65535], "deafe eares a little vse to heare all these old": [0, 65535], "eares a little vse to heare all these old witnesses": [0, 65535], "a little vse to heare all these old witnesses i": [0, 65535], "little vse to heare all these old witnesses i cannot": [0, 65535], "vse to heare all these old witnesses i cannot erre": [0, 65535], "to heare all these old witnesses i cannot erre tell": [0, 65535], "heare all these old witnesses i cannot erre tell me": [0, 65535], "all these old witnesses i cannot erre tell me thou": [0, 65535], "these old witnesses i cannot erre tell me thou art": [0, 65535], "old witnesses i cannot erre tell me thou art my": [0, 65535], "witnesses i cannot erre tell me thou art my sonne": [0, 65535], "i cannot erre tell me thou art my sonne antipholus": [0, 65535], "cannot erre tell me thou art my sonne antipholus ant": [0, 65535], "erre tell me thou art my sonne antipholus ant i": [0, 65535], "tell me thou art my sonne antipholus ant i neuer": [0, 65535], "me thou art my sonne antipholus ant i neuer saw": [0, 65535], "thou art my sonne antipholus ant i neuer saw my": [0, 65535], "art my sonne antipholus ant i neuer saw my father": [0, 65535], "my sonne antipholus ant i neuer saw my father in": [0, 65535], "sonne antipholus ant i neuer saw my father in my": [0, 65535], "antipholus ant i neuer saw my father in my life": [0, 65535], "ant i neuer saw my father in my life fa": [0, 65535], "i neuer saw my father in my life fa but": [0, 65535], "neuer saw my father in my life fa but seuen": [0, 65535], "saw my father in my life fa but seuen yeares": [0, 65535], "my father in my life fa but seuen yeares since": [0, 65535], "father in my life fa but seuen yeares since in": [0, 65535], "in my life fa but seuen yeares since in siracusa": [0, 65535], "my life fa but seuen yeares since in siracusa boy": [0, 65535], "life fa but seuen yeares since in siracusa boy thou": [0, 65535], "fa but seuen yeares since in siracusa boy thou know'st": [0, 65535], "but seuen yeares since in siracusa boy thou know'st we": [0, 65535], "seuen yeares since in siracusa boy thou know'st we parted": [0, 65535], "yeares since in siracusa boy thou know'st we parted but": [0, 65535], "since in siracusa boy thou know'st we parted but perhaps": [0, 65535], "in siracusa boy thou know'st we parted but perhaps my": [0, 65535], "siracusa boy thou know'st we parted but perhaps my sonne": [0, 65535], "boy thou know'st we parted but perhaps my sonne thou": [0, 65535], "thou know'st we parted but perhaps my sonne thou sham'st": [0, 65535], "know'st we parted but perhaps my sonne thou sham'st to": [0, 65535], "we parted but perhaps my sonne thou sham'st to acknowledge": [0, 65535], "parted but perhaps my sonne thou sham'st to acknowledge me": [0, 65535], "but perhaps my sonne thou sham'st to acknowledge me in": [0, 65535], "perhaps my sonne thou sham'st to acknowledge me in miserie": [0, 65535], "my sonne thou sham'st to acknowledge me in miserie ant": [0, 65535], "sonne thou sham'st to acknowledge me in miserie ant the": [0, 65535], "thou sham'st to acknowledge me in miserie ant the duke": [0, 65535], "sham'st to acknowledge me in miserie ant the duke and": [0, 65535], "to acknowledge me in miserie ant the duke and all": [0, 65535], "acknowledge me in miserie ant the duke and all that": [0, 65535], "me in miserie ant the duke and all that know": [0, 65535], "in miserie ant the duke and all that know me": [0, 65535], "miserie ant the duke and all that know me in": [0, 65535], "ant the duke and all that know me in the": [0, 65535], "the duke and all that know me in the city": [0, 65535], "duke and all that know me in the city can": [0, 65535], "and all that know me in the city can witnesse": [0, 65535], "all that know me in the city can witnesse with": [0, 65535], "that know me in the city can witnesse with me": [0, 65535], "know me in the city can witnesse with me that": [0, 65535], "me in the city can witnesse with me that it": [0, 65535], "in the city can witnesse with me that it is": [0, 65535], "the city can witnesse with me that it is not": [0, 65535], "city can witnesse with me that it is not so": [0, 65535], "can witnesse with me that it is not so i": [0, 65535], "witnesse with me that it is not so i ne're": [0, 65535], "with me that it is not so i ne're saw": [0, 65535], "me that it is not so i ne're saw siracusa": [0, 65535], "that it is not so i ne're saw siracusa in": [0, 65535], "it is not so i ne're saw siracusa in my": [0, 65535], "is not so i ne're saw siracusa in my life": [0, 65535], "not so i ne're saw siracusa in my life duke": [0, 65535], "so i ne're saw siracusa in my life duke i": [0, 65535], "i ne're saw siracusa in my life duke i tell": [0, 65535], "ne're saw siracusa in my life duke i tell thee": [0, 65535], "saw siracusa in my life duke i tell thee siracusian": [0, 65535], "siracusa in my life duke i tell thee siracusian twentie": [0, 65535], "in my life duke i tell thee siracusian twentie yeares": [0, 65535], "my life duke i tell thee siracusian twentie yeares haue": [0, 65535], "life duke i tell thee siracusian twentie yeares haue i": [0, 65535], "duke i tell thee siracusian twentie yeares haue i bin": [0, 65535], "i tell thee siracusian twentie yeares haue i bin patron": [0, 65535], "tell thee siracusian twentie yeares haue i bin patron to": [0, 65535], "thee siracusian twentie yeares haue i bin patron to antipholus": [0, 65535], "siracusian twentie yeares haue i bin patron to antipholus during": [0, 65535], "twentie yeares haue i bin patron to antipholus during which": [0, 65535], "yeares haue i bin patron to antipholus during which time": [0, 65535], "haue i bin patron to antipholus during which time he": [0, 65535], "i bin patron to antipholus during which time he ne're": [0, 65535], "bin patron to antipholus during which time he ne're saw": [0, 65535], "patron to antipholus during which time he ne're saw siracusa": [0, 65535], "to antipholus during which time he ne're saw siracusa i": [0, 65535], "antipholus during which time he ne're saw siracusa i see": [0, 65535], "during which time he ne're saw siracusa i see thy": [0, 65535], "which time he ne're saw siracusa i see thy age": [0, 65535], "time he ne're saw siracusa i see thy age and": [0, 65535], "he ne're saw siracusa i see thy age and dangers": [0, 65535], "ne're saw siracusa i see thy age and dangers make": [0, 65535], "saw siracusa i see thy age and dangers make thee": [0, 65535], "siracusa i see thy age and dangers make thee dote": [0, 65535], "i see thy age and dangers make thee dote enter": [0, 65535], "see thy age and dangers make thee dote enter the": [0, 65535], "thy age and dangers make thee dote enter the abbesse": [0, 65535], "age and dangers make thee dote enter the abbesse with": [0, 65535], "and dangers make thee dote enter the abbesse with antipholus": [0, 65535], "dangers make thee dote enter the abbesse with antipholus siracusa": [0, 65535], "make thee dote enter the abbesse with antipholus siracusa and": [0, 65535], "thee dote enter the abbesse with antipholus siracusa and dromio": [0, 65535], "dote enter the abbesse with antipholus siracusa and dromio sir": [0, 65535], "enter the abbesse with antipholus siracusa and dromio sir abbesse": [0, 65535], "the abbesse with antipholus siracusa and dromio sir abbesse most": [0, 65535], "abbesse with antipholus siracusa and dromio sir abbesse most mightie": [0, 65535], "with antipholus siracusa and dromio sir abbesse most mightie duke": [0, 65535], "antipholus siracusa and dromio sir abbesse most mightie duke behold": [0, 65535], "siracusa and dromio sir abbesse most mightie duke behold a": [0, 65535], "and dromio sir abbesse most mightie duke behold a man": [0, 65535], "dromio sir abbesse most mightie duke behold a man much": [0, 65535], "sir abbesse most mightie duke behold a man much wrong'd": [0, 65535], "abbesse most mightie duke behold a man much wrong'd all": [0, 65535], "most mightie duke behold a man much wrong'd all gather": [0, 65535], "mightie duke behold a man much wrong'd all gather to": [0, 65535], "duke behold a man much wrong'd all gather to see": [0, 65535], "behold a man much wrong'd all gather to see them": [0, 65535], "a man much wrong'd all gather to see them adr": [0, 65535], "man much wrong'd all gather to see them adr i": [0, 65535], "much wrong'd all gather to see them adr i see": [0, 65535], "wrong'd all gather to see them adr i see two": [0, 65535], "all gather to see them adr i see two husbands": [0, 65535], "gather to see them adr i see two husbands or": [0, 65535], "to see them adr i see two husbands or mine": [0, 65535], "see them adr i see two husbands or mine eyes": [0, 65535], "them adr i see two husbands or mine eyes deceiue": [0, 65535], "adr i see two husbands or mine eyes deceiue me": [0, 65535], "i see two husbands or mine eyes deceiue me duke": [0, 65535], "see two husbands or mine eyes deceiue me duke one": [0, 65535], "two husbands or mine eyes deceiue me duke one of": [0, 65535], "husbands or mine eyes deceiue me duke one of these": [0, 65535], "or mine eyes deceiue me duke one of these men": [0, 65535], "mine eyes deceiue me duke one of these men is": [0, 65535], "eyes deceiue me duke one of these men is genius": [0, 65535], "deceiue me duke one of these men is genius to": [0, 65535], "me duke one of these men is genius to the": [0, 65535], "duke one of these men is genius to the other": [0, 65535], "one of these men is genius to the other and": [0, 65535], "of these men is genius to the other and so": [0, 65535], "these men is genius to the other and so of": [0, 65535], "men is genius to the other and so of these": [0, 65535], "is genius to the other and so of these which": [0, 65535], "genius to the other and so of these which is": [0, 65535], "to the other and so of these which is the": [0, 65535], "the other and so of these which is the naturall": [0, 65535], "other and so of these which is the naturall man": [0, 65535], "and so of these which is the naturall man and": [0, 65535], "so of these which is the naturall man and which": [0, 65535], "of these which is the naturall man and which the": [0, 65535], "these which is the naturall man and which the spirit": [0, 65535], "which is the naturall man and which the spirit who": [0, 65535], "is the naturall man and which the spirit who deciphers": [0, 65535], "the naturall man and which the spirit who deciphers them": [0, 65535], "naturall man and which the spirit who deciphers them s": [0, 65535], "man and which the spirit who deciphers them s dromio": [0, 65535], "and which the spirit who deciphers them s dromio i": [0, 65535], "which the spirit who deciphers them s dromio i sir": [0, 65535], "the spirit who deciphers them s dromio i sir am": [0, 65535], "spirit who deciphers them s dromio i sir am dromio": [0, 65535], "who deciphers them s dromio i sir am dromio command": [0, 65535], "deciphers them s dromio i sir am dromio command him": [0, 65535], "them s dromio i sir am dromio command him away": [0, 65535], "s dromio i sir am dromio command him away e": [0, 65535], "dromio i sir am dromio command him away e dro": [0, 65535], "i sir am dromio command him away e dro i": [0, 65535], "sir am dromio command him away e dro i sir": [0, 65535], "am dromio command him away e dro i sir am": [0, 65535], "dromio command him away e dro i sir am dromio": [0, 65535], "command him away e dro i sir am dromio pray": [0, 65535], "him away e dro i sir am dromio pray let": [0, 65535], "away e dro i sir am dromio pray let me": [0, 65535], "e dro i sir am dromio pray let me stay": [0, 65535], "dro i sir am dromio pray let me stay s": [0, 65535], "i sir am dromio pray let me stay s ant": [0, 65535], "sir am dromio pray let me stay s ant egeon": [0, 65535], "am dromio pray let me stay s ant egeon art": [0, 65535], "dromio pray let me stay s ant egeon art thou": [0, 65535], "pray let me stay s ant egeon art thou not": [0, 65535], "let me stay s ant egeon art thou not or": [0, 65535], "me stay s ant egeon art thou not or else": [0, 65535], "stay s ant egeon art thou not or else his": [0, 65535], "s ant egeon art thou not or else his ghost": [0, 65535], "ant egeon art thou not or else his ghost s": [0, 65535], "egeon art thou not or else his ghost s drom": [0, 65535], "art thou not or else his ghost s drom oh": [0, 65535], "thou not or else his ghost s drom oh my": [0, 65535], "not or else his ghost s drom oh my olde": [0, 65535], "or else his ghost s drom oh my olde master": [0, 65535], "else his ghost s drom oh my olde master who": [0, 65535], "his ghost s drom oh my olde master who hath": [0, 65535], "ghost s drom oh my olde master who hath bound": [0, 65535], "s drom oh my olde master who hath bound him": [0, 65535], "drom oh my olde master who hath bound him heere": [0, 65535], "oh my olde master who hath bound him heere abb": [0, 65535], "my olde master who hath bound him heere abb who": [0, 65535], "olde master who hath bound him heere abb who euer": [0, 65535], "master who hath bound him heere abb who euer bound": [0, 65535], "who hath bound him heere abb who euer bound him": [0, 65535], "hath bound him heere abb who euer bound him i": [0, 65535], "bound him heere abb who euer bound him i will": [0, 65535], "him heere abb who euer bound him i will lose": [0, 65535], "heere abb who euer bound him i will lose his": [0, 65535], "abb who euer bound him i will lose his bonds": [0, 65535], "who euer bound him i will lose his bonds and": [0, 65535], "euer bound him i will lose his bonds and gaine": [0, 65535], "bound him i will lose his bonds and gaine a": [0, 65535], "him i will lose his bonds and gaine a husband": [0, 65535], "i will lose his bonds and gaine a husband by": [0, 65535], "will lose his bonds and gaine a husband by his": [0, 65535], "lose his bonds and gaine a husband by his libertie": [0, 65535], "his bonds and gaine a husband by his libertie speake": [0, 65535], "bonds and gaine a husband by his libertie speake olde": [0, 65535], "and gaine a husband by his libertie speake olde egeon": [0, 65535], "gaine a husband by his libertie speake olde egeon if": [0, 65535], "a husband by his libertie speake olde egeon if thou": [0, 65535], "husband by his libertie speake olde egeon if thou bee'st": [0, 65535], "by his libertie speake olde egeon if thou bee'st the": [0, 65535], "his libertie speake olde egeon if thou bee'st the man": [0, 65535], "libertie speake olde egeon if thou bee'st the man that": [0, 65535], "speake olde egeon if thou bee'st the man that hadst": [0, 65535], "olde egeon if thou bee'st the man that hadst a": [0, 65535], "egeon if thou bee'st the man that hadst a wife": [0, 65535], "if thou bee'st the man that hadst a wife once": [0, 65535], "thou bee'st the man that hadst a wife once call'd": [0, 65535], "bee'st the man that hadst a wife once call'd \u00e6milia": [0, 65535], "the man that hadst a wife once call'd \u00e6milia that": [0, 65535], "man that hadst a wife once call'd \u00e6milia that bore": [0, 65535], "that hadst a wife once call'd \u00e6milia that bore thee": [0, 65535], "hadst a wife once call'd \u00e6milia that bore thee at": [0, 65535], "a wife once call'd \u00e6milia that bore thee at a": [0, 65535], "wife once call'd \u00e6milia that bore thee at a burthen": [0, 65535], "once call'd \u00e6milia that bore thee at a burthen two": [0, 65535], "call'd \u00e6milia that bore thee at a burthen two faire": [0, 65535], "\u00e6milia that bore thee at a burthen two faire sonnes": [0, 65535], "that bore thee at a burthen two faire sonnes oh": [0, 65535], "bore thee at a burthen two faire sonnes oh if": [0, 65535], "thee at a burthen two faire sonnes oh if thou": [0, 65535], "at a burthen two faire sonnes oh if thou bee'st": [0, 65535], "a burthen two faire sonnes oh if thou bee'st the": [0, 65535], "burthen two faire sonnes oh if thou bee'st the same": [0, 65535], "two faire sonnes oh if thou bee'st the same egeon": [0, 65535], "faire sonnes oh if thou bee'st the same egeon speake": [0, 65535], "sonnes oh if thou bee'st the same egeon speake and": [0, 65535], "oh if thou bee'st the same egeon speake and speake": [0, 65535], "if thou bee'st the same egeon speake and speake vnto": [0, 65535], "thou bee'st the same egeon speake and speake vnto the": [0, 65535], "bee'st the same egeon speake and speake vnto the same": [0, 65535], "the same egeon speake and speake vnto the same \u00e6milia": [0, 65535], "same egeon speake and speake vnto the same \u00e6milia duke": [0, 65535], "egeon speake and speake vnto the same \u00e6milia duke why": [0, 65535], "speake and speake vnto the same \u00e6milia duke why heere": [0, 65535], "and speake vnto the same \u00e6milia duke why heere begins": [0, 65535], "speake vnto the same \u00e6milia duke why heere begins his": [0, 65535], "vnto the same \u00e6milia duke why heere begins his morning": [0, 65535], "the same \u00e6milia duke why heere begins his morning storie": [0, 65535], "same \u00e6milia duke why heere begins his morning storie right": [0, 65535], "\u00e6milia duke why heere begins his morning storie right these": [0, 65535], "duke why heere begins his morning storie right these twoantipholus": [0, 65535], "why heere begins his morning storie right these twoantipholus these": [0, 65535], "heere begins his morning storie right these twoantipholus these two": [0, 65535], "begins his morning storie right these twoantipholus these two so": [0, 65535], "his morning storie right these twoantipholus these two so like": [0, 65535], "morning storie right these twoantipholus these two so like and": [0, 65535], "storie right these twoantipholus these two so like and these": [0, 65535], "right these twoantipholus these two so like and these two": [0, 65535], "these twoantipholus these two so like and these two dromio's": [0, 65535], "twoantipholus these two so like and these two dromio's one": [0, 65535], "these two so like and these two dromio's one in": [0, 65535], "two so like and these two dromio's one in semblance": [0, 65535], "so like and these two dromio's one in semblance besides": [0, 65535], "like and these two dromio's one in semblance besides her": [0, 65535], "and these two dromio's one in semblance besides her vrging": [0, 65535], "these two dromio's one in semblance besides her vrging of": [0, 65535], "two dromio's one in semblance besides her vrging of her": [0, 65535], "dromio's one in semblance besides her vrging of her wracke": [0, 65535], "one in semblance besides her vrging of her wracke at": [0, 65535], "in semblance besides her vrging of her wracke at sea": [0, 65535], "semblance besides her vrging of her wracke at sea these": [0, 65535], "besides her vrging of her wracke at sea these are": [0, 65535], "her vrging of her wracke at sea these are the": [0, 65535], "vrging of her wracke at sea these are the parents": [0, 65535], "of her wracke at sea these are the parents to": [0, 65535], "her wracke at sea these are the parents to these": [0, 65535], "wracke at sea these are the parents to these children": [0, 65535], "at sea these are the parents to these children which": [0, 65535], "sea these are the parents to these children which accidentally": [0, 65535], "these are the parents to these children which accidentally are": [0, 65535], "are the parents to these children which accidentally are met": [0, 65535], "the parents to these children which accidentally are met together": [0, 65535], "parents to these children which accidentally are met together fa": [0, 65535], "to these children which accidentally are met together fa if": [0, 65535], "these children which accidentally are met together fa if i": [0, 65535], "children which accidentally are met together fa if i dreame": [0, 65535], "which accidentally are met together fa if i dreame not": [0, 65535], "accidentally are met together fa if i dreame not thou": [0, 65535], "are met together fa if i dreame not thou art": [0, 65535], "met together fa if i dreame not thou art \u00e6milia": [0, 65535], "together fa if i dreame not thou art \u00e6milia if": [0, 65535], "fa if i dreame not thou art \u00e6milia if thou": [0, 65535], "if i dreame not thou art \u00e6milia if thou art": [0, 65535], "i dreame not thou art \u00e6milia if thou art she": [0, 65535], "dreame not thou art \u00e6milia if thou art she tell": [0, 65535], "not thou art \u00e6milia if thou art she tell me": [0, 65535], "thou art \u00e6milia if thou art she tell me where": [0, 65535], "art \u00e6milia if thou art she tell me where is": [0, 65535], "\u00e6milia if thou art she tell me where is that": [0, 65535], "if thou art she tell me where is that sonne": [0, 65535], "thou art she tell me where is that sonne that": [0, 65535], "art she tell me where is that sonne that floated": [0, 65535], "she tell me where is that sonne that floated with": [0, 65535], "tell me where is that sonne that floated with thee": [0, 65535], "me where is that sonne that floated with thee on": [0, 65535], "where is that sonne that floated with thee on the": [0, 65535], "is that sonne that floated with thee on the fatall": [0, 65535], "that sonne that floated with thee on the fatall rafte": [0, 65535], "sonne that floated with thee on the fatall rafte abb": [0, 65535], "that floated with thee on the fatall rafte abb by": [0, 65535], "floated with thee on the fatall rafte abb by men": [0, 65535], "with thee on the fatall rafte abb by men of": [0, 65535], "thee on the fatall rafte abb by men of epidamium": [0, 65535], "on the fatall rafte abb by men of epidamium he": [0, 65535], "the fatall rafte abb by men of epidamium he and": [0, 65535], "fatall rafte abb by men of epidamium he and i": [0, 65535], "rafte abb by men of epidamium he and i and": [0, 65535], "abb by men of epidamium he and i and the": [0, 65535], "by men of epidamium he and i and the twin": [0, 65535], "men of epidamium he and i and the twin dromio": [0, 65535], "of epidamium he and i and the twin dromio all": [0, 65535], "epidamium he and i and the twin dromio all were": [0, 65535], "he and i and the twin dromio all were taken": [0, 65535], "and i and the twin dromio all were taken vp": [0, 65535], "i and the twin dromio all were taken vp but": [0, 65535], "and the twin dromio all were taken vp but by": [0, 65535], "the twin dromio all were taken vp but by and": [0, 65535], "twin dromio all were taken vp but by and by": [0, 65535], "dromio all were taken vp but by and by rude": [0, 65535], "all were taken vp but by and by rude fishermen": [0, 65535], "were taken vp but by and by rude fishermen of": [0, 65535], "taken vp but by and by rude fishermen of corinth": [0, 65535], "vp but by and by rude fishermen of corinth by": [0, 65535], "but by and by rude fishermen of corinth by force": [0, 65535], "by and by rude fishermen of corinth by force tooke": [0, 65535], "and by rude fishermen of corinth by force tooke dromio": [0, 65535], "by rude fishermen of corinth by force tooke dromio and": [0, 65535], "rude fishermen of corinth by force tooke dromio and my": [0, 65535], "fishermen of corinth by force tooke dromio and my sonne": [0, 65535], "of corinth by force tooke dromio and my sonne from": [0, 65535], "corinth by force tooke dromio and my sonne from them": [0, 65535], "by force tooke dromio and my sonne from them and": [0, 65535], "force tooke dromio and my sonne from them and me": [0, 65535], "tooke dromio and my sonne from them and me they": [0, 65535], "dromio and my sonne from them and me they left": [0, 65535], "and my sonne from them and me they left with": [0, 65535], "my sonne from them and me they left with those": [0, 65535], "sonne from them and me they left with those of": [0, 65535], "from them and me they left with those of epidamium": [0, 65535], "them and me they left with those of epidamium what": [0, 65535], "and me they left with those of epidamium what then": [0, 65535], "me they left with those of epidamium what then became": [0, 65535], "they left with those of epidamium what then became of": [0, 65535], "left with those of epidamium what then became of them": [0, 65535], "with those of epidamium what then became of them i": [0, 65535], "those of epidamium what then became of them i cannot": [0, 65535], "of epidamium what then became of them i cannot tell": [0, 65535], "epidamium what then became of them i cannot tell i": [0, 65535], "what then became of them i cannot tell i to": [0, 65535], "then became of them i cannot tell i to this": [0, 65535], "became of them i cannot tell i to this fortune": [0, 65535], "of them i cannot tell i to this fortune that": [0, 65535], "them i cannot tell i to this fortune that you": [0, 65535], "i cannot tell i to this fortune that you see": [0, 65535], "cannot tell i to this fortune that you see mee": [0, 65535], "tell i to this fortune that you see mee in": [0, 65535], "i to this fortune that you see mee in duke": [0, 65535], "to this fortune that you see mee in duke antipholus": [0, 65535], "this fortune that you see mee in duke antipholus thou": [0, 65535], "fortune that you see mee in duke antipholus thou cam'st": [0, 65535], "that you see mee in duke antipholus thou cam'st from": [0, 65535], "you see mee in duke antipholus thou cam'st from corinth": [0, 65535], "see mee in duke antipholus thou cam'st from corinth first": [0, 65535], "mee in duke antipholus thou cam'st from corinth first s": [0, 65535], "in duke antipholus thou cam'st from corinth first s ant": [0, 65535], "duke antipholus thou cam'st from corinth first s ant no": [0, 65535], "antipholus thou cam'st from corinth first s ant no sir": [0, 65535], "thou cam'st from corinth first s ant no sir not": [0, 65535], "cam'st from corinth first s ant no sir not i": [0, 65535], "from corinth first s ant no sir not i i": [0, 65535], "corinth first s ant no sir not i i came": [0, 65535], "first s ant no sir not i i came from": [0, 65535], "s ant no sir not i i came from siracuse": [0, 65535], "ant no sir not i i came from siracuse duke": [0, 65535], "no sir not i i came from siracuse duke stay": [0, 65535], "sir not i i came from siracuse duke stay stand": [0, 65535], "not i i came from siracuse duke stay stand apart": [0, 65535], "i i came from siracuse duke stay stand apart i": [0, 65535], "i came from siracuse duke stay stand apart i know": [0, 65535], "came from siracuse duke stay stand apart i know not": [0, 65535], "from siracuse duke stay stand apart i know not which": [0, 65535], "siracuse duke stay stand apart i know not which is": [0, 65535], "duke stay stand apart i know not which is which": [0, 65535], "stay stand apart i know not which is which e": [0, 65535], "stand apart i know not which is which e ant": [0, 65535], "apart i know not which is which e ant i": [0, 65535], "i know not which is which e ant i came": [0, 65535], "know not which is which e ant i came from": [0, 65535], "not which is which e ant i came from corinth": [0, 65535], "which is which e ant i came from corinth my": [0, 65535], "is which e ant i came from corinth my most": [0, 65535], "which e ant i came from corinth my most gracious": [0, 65535], "e ant i came from corinth my most gracious lord": [0, 65535], "ant i came from corinth my most gracious lord e": [0, 65535], "i came from corinth my most gracious lord e dro": [0, 65535], "came from corinth my most gracious lord e dro and": [0, 65535], "from corinth my most gracious lord e dro and i": [0, 65535], "corinth my most gracious lord e dro and i with": [0, 65535], "my most gracious lord e dro and i with him": [0, 65535], "most gracious lord e dro and i with him e": [0, 65535], "gracious lord e dro and i with him e ant": [0, 65535], "lord e dro and i with him e ant brought": [0, 65535], "e dro and i with him e ant brought to": [0, 65535], "dro and i with him e ant brought to this": [0, 65535], "and i with him e ant brought to this town": [0, 65535], "i with him e ant brought to this town by": [0, 65535], "with him e ant brought to this town by that": [0, 65535], "him e ant brought to this town by that most": [0, 65535], "e ant brought to this town by that most famous": [0, 65535], "ant brought to this town by that most famous warriour": [0, 65535], "brought to this town by that most famous warriour duke": [0, 65535], "to this town by that most famous warriour duke menaphon": [0, 65535], "this town by that most famous warriour duke menaphon your": [0, 65535], "town by that most famous warriour duke menaphon your most": [0, 65535], "by that most famous warriour duke menaphon your most renowned": [0, 65535], "that most famous warriour duke menaphon your most renowned vnckle": [0, 65535], "most famous warriour duke menaphon your most renowned vnckle adr": [0, 65535], "famous warriour duke menaphon your most renowned vnckle adr which": [0, 65535], "warriour duke menaphon your most renowned vnckle adr which of": [0, 65535], "duke menaphon your most renowned vnckle adr which of you": [0, 65535], "menaphon your most renowned vnckle adr which of you two": [0, 65535], "your most renowned vnckle adr which of you two did": [0, 65535], "most renowned vnckle adr which of you two did dine": [0, 65535], "renowned vnckle adr which of you two did dine with": [0, 65535], "vnckle adr which of you two did dine with me": [0, 65535], "adr which of you two did dine with me to": [0, 65535], "which of you two did dine with me to day": [0, 65535], "of you two did dine with me to day s": [0, 65535], "you two did dine with me to day s ant": [0, 65535], "two did dine with me to day s ant i": [0, 65535], "did dine with me to day s ant i gentle": [0, 65535], "dine with me to day s ant i gentle mistris": [0, 65535], "with me to day s ant i gentle mistris adr": [0, 65535], "me to day s ant i gentle mistris adr and": [0, 65535], "to day s ant i gentle mistris adr and are": [0, 65535], "day s ant i gentle mistris adr and are not": [0, 65535], "s ant i gentle mistris adr and are not you": [0, 65535], "ant i gentle mistris adr and are not you my": [0, 65535], "i gentle mistris adr and are not you my husband": [0, 65535], "gentle mistris adr and are not you my husband e": [0, 65535], "mistris adr and are not you my husband e ant": [0, 65535], "adr and are not you my husband e ant no": [0, 65535], "and are not you my husband e ant no i": [0, 65535], "are not you my husband e ant no i say": [0, 65535], "not you my husband e ant no i say nay": [0, 65535], "you my husband e ant no i say nay to": [0, 65535], "my husband e ant no i say nay to that": [0, 65535], "husband e ant no i say nay to that s": [0, 65535], "e ant no i say nay to that s ant": [0, 65535], "ant no i say nay to that s ant and": [0, 65535], "no i say nay to that s ant and so": [0, 65535], "i say nay to that s ant and so do": [0, 65535], "say nay to that s ant and so do i": [0, 65535], "nay to that s ant and so do i yet": [0, 65535], "to that s ant and so do i yet did": [0, 65535], "that s ant and so do i yet did she": [0, 65535], "s ant and so do i yet did she call": [0, 65535], "ant and so do i yet did she call me": [0, 65535], "and so do i yet did she call me so": [0, 65535], "so do i yet did she call me so and": [0, 65535], "do i yet did she call me so and this": [0, 65535], "i yet did she call me so and this faire": [0, 65535], "yet did she call me so and this faire gentlewoman": [0, 65535], "did she call me so and this faire gentlewoman her": [0, 65535], "she call me so and this faire gentlewoman her sister": [0, 65535], "call me so and this faire gentlewoman her sister heere": [0, 65535], "me so and this faire gentlewoman her sister heere did": [0, 65535], "so and this faire gentlewoman her sister heere did call": [0, 65535], "and this faire gentlewoman her sister heere did call me": [0, 65535], "this faire gentlewoman her sister heere did call me brother": [0, 65535], "faire gentlewoman her sister heere did call me brother what": [0, 65535], "gentlewoman her sister heere did call me brother what i": [0, 65535], "her sister heere did call me brother what i told": [0, 65535], "sister heere did call me brother what i told you": [0, 65535], "heere did call me brother what i told you then": [0, 65535], "did call me brother what i told you then i": [0, 65535], "call me brother what i told you then i hope": [0, 65535], "me brother what i told you then i hope i": [0, 65535], "brother what i told you then i hope i shall": [0, 65535], "what i told you then i hope i shall haue": [0, 65535], "i told you then i hope i shall haue leisure": [0, 65535], "told you then i hope i shall haue leisure to": [0, 65535], "you then i hope i shall haue leisure to make": [0, 65535], "then i hope i shall haue leisure to make good": [0, 65535], "i hope i shall haue leisure to make good if": [0, 65535], "hope i shall haue leisure to make good if this": [0, 65535], "i shall haue leisure to make good if this be": [0, 65535], "shall haue leisure to make good if this be not": [0, 65535], "haue leisure to make good if this be not a": [0, 65535], "leisure to make good if this be not a dreame": [0, 65535], "to make good if this be not a dreame i": [0, 65535], "make good if this be not a dreame i see": [0, 65535], "good if this be not a dreame i see and": [0, 65535], "if this be not a dreame i see and heare": [0, 65535], "this be not a dreame i see and heare goldsmith": [0, 65535], "be not a dreame i see and heare goldsmith that": [0, 65535], "not a dreame i see and heare goldsmith that is": [0, 65535], "a dreame i see and heare goldsmith that is the": [0, 65535], "dreame i see and heare goldsmith that is the chaine": [0, 65535], "i see and heare goldsmith that is the chaine sir": [0, 65535], "see and heare goldsmith that is the chaine sir which": [0, 65535], "and heare goldsmith that is the chaine sir which you": [0, 65535], "heare goldsmith that is the chaine sir which you had": [0, 65535], "goldsmith that is the chaine sir which you had of": [0, 65535], "that is the chaine sir which you had of mee": [0, 65535], "is the chaine sir which you had of mee s": [0, 65535], "the chaine sir which you had of mee s ant": [0, 65535], "chaine sir which you had of mee s ant i": [0, 65535], "sir which you had of mee s ant i thinke": [0, 65535], "which you had of mee s ant i thinke it": [0, 65535], "you had of mee s ant i thinke it be": [0, 65535], "had of mee s ant i thinke it be sir": [0, 65535], "of mee s ant i thinke it be sir i": [0, 65535], "mee s ant i thinke it be sir i denie": [0, 65535], "s ant i thinke it be sir i denie it": [0, 65535], "ant i thinke it be sir i denie it not": [0, 65535], "i thinke it be sir i denie it not e": [0, 65535], "thinke it be sir i denie it not e ant": [0, 65535], "it be sir i denie it not e ant and": [0, 65535], "be sir i denie it not e ant and you": [0, 65535], "sir i denie it not e ant and you sir": [0, 65535], "i denie it not e ant and you sir for": [0, 65535], "denie it not e ant and you sir for this": [0, 65535], "it not e ant and you sir for this chaine": [0, 65535], "not e ant and you sir for this chaine arrested": [0, 65535], "e ant and you sir for this chaine arrested me": [0, 65535], "ant and you sir for this chaine arrested me gold": [0, 65535], "and you sir for this chaine arrested me gold i": [0, 65535], "you sir for this chaine arrested me gold i thinke": [0, 65535], "sir for this chaine arrested me gold i thinke i": [0, 65535], "for this chaine arrested me gold i thinke i did": [0, 65535], "this chaine arrested me gold i thinke i did sir": [0, 65535], "chaine arrested me gold i thinke i did sir i": [0, 65535], "arrested me gold i thinke i did sir i deny": [0, 65535], "me gold i thinke i did sir i deny it": [0, 65535], "gold i thinke i did sir i deny it not": [0, 65535], "i thinke i did sir i deny it not adr": [0, 65535], "thinke i did sir i deny it not adr i": [0, 65535], "i did sir i deny it not adr i sent": [0, 65535], "did sir i deny it not adr i sent you": [0, 65535], "sir i deny it not adr i sent you monie": [0, 65535], "i deny it not adr i sent you monie sir": [0, 65535], "deny it not adr i sent you monie sir to": [0, 65535], "it not adr i sent you monie sir to be": [0, 65535], "not adr i sent you monie sir to be your": [0, 65535], "adr i sent you monie sir to be your baile": [0, 65535], "i sent you monie sir to be your baile by": [0, 65535], "sent you monie sir to be your baile by dromio": [0, 65535], "you monie sir to be your baile by dromio but": [0, 65535], "monie sir to be your baile by dromio but i": [0, 65535], "sir to be your baile by dromio but i thinke": [0, 65535], "to be your baile by dromio but i thinke he": [0, 65535], "be your baile by dromio but i thinke he brought": [0, 65535], "your baile by dromio but i thinke he brought it": [0, 65535], "baile by dromio but i thinke he brought it not": [0, 65535], "by dromio but i thinke he brought it not e": [0, 65535], "dromio but i thinke he brought it not e dro": [0, 65535], "but i thinke he brought it not e dro no": [0, 65535], "i thinke he brought it not e dro no none": [0, 65535], "thinke he brought it not e dro no none by": [0, 65535], "he brought it not e dro no none by me": [0, 65535], "brought it not e dro no none by me s": [0, 65535], "it not e dro no none by me s ant": [0, 65535], "not e dro no none by me s ant this": [0, 65535], "e dro no none by me s ant this purse": [0, 65535], "dro no none by me s ant this purse of": [0, 65535], "no none by me s ant this purse of duckets": [0, 65535], "none by me s ant this purse of duckets i": [0, 65535], "by me s ant this purse of duckets i receiu'd": [0, 65535], "me s ant this purse of duckets i receiu'd from": [0, 65535], "s ant this purse of duckets i receiu'd from you": [0, 65535], "ant this purse of duckets i receiu'd from you and": [0, 65535], "this purse of duckets i receiu'd from you and dromio": [0, 65535], "purse of duckets i receiu'd from you and dromio my": [0, 65535], "of duckets i receiu'd from you and dromio my man": [0, 65535], "duckets i receiu'd from you and dromio my man did": [0, 65535], "i receiu'd from you and dromio my man did bring": [0, 65535], "receiu'd from you and dromio my man did bring them": [0, 65535], "from you and dromio my man did bring them me": [0, 65535], "you and dromio my man did bring them me i": [0, 65535], "and dromio my man did bring them me i see": [0, 65535], "dromio my man did bring them me i see we": [0, 65535], "my man did bring them me i see we still": [0, 65535], "man did bring them me i see we still did": [0, 65535], "did bring them me i see we still did meete": [0, 65535], "bring them me i see we still did meete each": [0, 65535], "them me i see we still did meete each others": [0, 65535], "me i see we still did meete each others man": [0, 65535], "i see we still did meete each others man and": [0, 65535], "see we still did meete each others man and i": [0, 65535], "we still did meete each others man and i was": [0, 65535], "still did meete each others man and i was tane": [0, 65535], "did meete each others man and i was tane for": [0, 65535], "meete each others man and i was tane for him": [0, 65535], "each others man and i was tane for him and": [0, 65535], "others man and i was tane for him and he": [0, 65535], "man and i was tane for him and he for": [0, 65535], "and i was tane for him and he for me": [0, 65535], "i was tane for him and he for me and": [0, 65535], "was tane for him and he for me and thereupon": [0, 65535], "tane for him and he for me and thereupon these": [0, 65535], "for him and he for me and thereupon these errors": [0, 65535], "him and he for me and thereupon these errors are": [0, 65535], "and he for me and thereupon these errors are arose": [0, 65535], "he for me and thereupon these errors are arose e": [0, 65535], "for me and thereupon these errors are arose e ant": [0, 65535], "me and thereupon these errors are arose e ant these": [0, 65535], "and thereupon these errors are arose e ant these duckets": [0, 65535], "thereupon these errors are arose e ant these duckets pawne": [0, 65535], "these errors are arose e ant these duckets pawne i": [0, 65535], "errors are arose e ant these duckets pawne i for": [0, 65535], "are arose e ant these duckets pawne i for my": [0, 65535], "arose e ant these duckets pawne i for my father": [0, 65535], "e ant these duckets pawne i for my father heere": [0, 65535], "ant these duckets pawne i for my father heere duke": [0, 65535], "these duckets pawne i for my father heere duke it": [0, 65535], "duckets pawne i for my father heere duke it shall": [0, 65535], "pawne i for my father heere duke it shall not": [0, 65535], "i for my father heere duke it shall not neede": [0, 65535], "for my father heere duke it shall not neede thy": [0, 65535], "my father heere duke it shall not neede thy father": [0, 65535], "father heere duke it shall not neede thy father hath": [0, 65535], "heere duke it shall not neede thy father hath his": [0, 65535], "duke it shall not neede thy father hath his life": [0, 65535], "it shall not neede thy father hath his life cur": [0, 65535], "shall not neede thy father hath his life cur sir": [0, 65535], "not neede thy father hath his life cur sir i": [0, 65535], "neede thy father hath his life cur sir i must": [0, 65535], "thy father hath his life cur sir i must haue": [0, 65535], "father hath his life cur sir i must haue that": [0, 65535], "hath his life cur sir i must haue that diamond": [0, 65535], "his life cur sir i must haue that diamond from": [0, 65535], "life cur sir i must haue that diamond from you": [0, 65535], "cur sir i must haue that diamond from you e": [0, 65535], "sir i must haue that diamond from you e ant": [0, 65535], "i must haue that diamond from you e ant there": [0, 65535], "must haue that diamond from you e ant there take": [0, 65535], "haue that diamond from you e ant there take it": [0, 65535], "that diamond from you e ant there take it and": [0, 65535], "diamond from you e ant there take it and much": [0, 65535], "from you e ant there take it and much thanks": [0, 65535], "you e ant there take it and much thanks for": [0, 65535], "e ant there take it and much thanks for my": [0, 65535], "ant there take it and much thanks for my good": [0, 65535], "there take it and much thanks for my good cheere": [0, 65535], "take it and much thanks for my good cheere abb": [0, 65535], "it and much thanks for my good cheere abb renowned": [0, 65535], "and much thanks for my good cheere abb renowned duke": [0, 65535], "much thanks for my good cheere abb renowned duke vouchsafe": [0, 65535], "thanks for my good cheere abb renowned duke vouchsafe to": [0, 65535], "for my good cheere abb renowned duke vouchsafe to take": [0, 65535], "my good cheere abb renowned duke vouchsafe to take the": [0, 65535], "good cheere abb renowned duke vouchsafe to take the paines": [0, 65535], "cheere abb renowned duke vouchsafe to take the paines to": [0, 65535], "abb renowned duke vouchsafe to take the paines to go": [0, 65535], "renowned duke vouchsafe to take the paines to go with": [0, 65535], "duke vouchsafe to take the paines to go with vs": [0, 65535], "vouchsafe to take the paines to go with vs into": [0, 65535], "to take the paines to go with vs into the": [0, 65535], "take the paines to go with vs into the abbey": [0, 65535], "the paines to go with vs into the abbey heere": [0, 65535], "paines to go with vs into the abbey heere and": [0, 65535], "to go with vs into the abbey heere and heare": [0, 65535], "go with vs into the abbey heere and heare at": [0, 65535], "with vs into the abbey heere and heare at large": [0, 65535], "vs into the abbey heere and heare at large discoursed": [0, 65535], "into the abbey heere and heare at large discoursed all": [0, 65535], "the abbey heere and heare at large discoursed all our": [0, 65535], "abbey heere and heare at large discoursed all our fortunes": [0, 65535], "heere and heare at large discoursed all our fortunes and": [0, 65535], "and heare at large discoursed all our fortunes and all": [0, 65535], "heare at large discoursed all our fortunes and all that": [0, 65535], "at large discoursed all our fortunes and all that are": [0, 65535], "large discoursed all our fortunes and all that are assembled": [0, 65535], "discoursed all our fortunes and all that are assembled in": [0, 65535], "all our fortunes and all that are assembled in this": [0, 65535], "our fortunes and all that are assembled in this place": [0, 65535], "fortunes and all that are assembled in this place that": [0, 65535], "and all that are assembled in this place that by": [0, 65535], "all that are assembled in this place that by this": [0, 65535], "that are assembled in this place that by this simpathized": [0, 65535], "are assembled in this place that by this simpathized one": [0, 65535], "assembled in this place that by this simpathized one daies": [0, 65535], "in this place that by this simpathized one daies error": [0, 65535], "this place that by this simpathized one daies error haue": [0, 65535], "place that by this simpathized one daies error haue suffer'd": [0, 65535], "that by this simpathized one daies error haue suffer'd wrong": [0, 65535], "by this simpathized one daies error haue suffer'd wrong goe": [0, 65535], "this simpathized one daies error haue suffer'd wrong goe keepe": [0, 65535], "simpathized one daies error haue suffer'd wrong goe keepe vs": [0, 65535], "one daies error haue suffer'd wrong goe keepe vs companie": [0, 65535], "daies error haue suffer'd wrong goe keepe vs companie and": [0, 65535], "error haue suffer'd wrong goe keepe vs companie and we": [0, 65535], "haue suffer'd wrong goe keepe vs companie and we shall": [0, 65535], "suffer'd wrong goe keepe vs companie and we shall make": [0, 65535], "wrong goe keepe vs companie and we shall make full": [0, 65535], "goe keepe vs companie and we shall make full satisfaction": [0, 65535], "keepe vs companie and we shall make full satisfaction thirtie": [0, 65535], "vs companie and we shall make full satisfaction thirtie three": [0, 65535], "companie and we shall make full satisfaction thirtie three yeares": [0, 65535], "and we shall make full satisfaction thirtie three yeares haue": [0, 65535], "we shall make full satisfaction thirtie three yeares haue i": [0, 65535], "shall make full satisfaction thirtie three yeares haue i but": [0, 65535], "make full satisfaction thirtie three yeares haue i but gone": [0, 65535], "full satisfaction thirtie three yeares haue i but gone in": [0, 65535], "satisfaction thirtie three yeares haue i but gone in trauaile": [0, 65535], "thirtie three yeares haue i but gone in trauaile of": [0, 65535], "three yeares haue i but gone in trauaile of you": [0, 65535], "yeares haue i but gone in trauaile of you my": [0, 65535], "haue i but gone in trauaile of you my sonnes": [0, 65535], "i but gone in trauaile of you my sonnes and": [0, 65535], "but gone in trauaile of you my sonnes and till": [0, 65535], "gone in trauaile of you my sonnes and till this": [0, 65535], "in trauaile of you my sonnes and till this present": [0, 65535], "trauaile of you my sonnes and till this present houre": [0, 65535], "of you my sonnes and till this present houre my": [0, 65535], "you my sonnes and till this present houre my heauie": [0, 65535], "my sonnes and till this present houre my heauie burthen": [0, 65535], "sonnes and till this present houre my heauie burthen are": [0, 65535], "and till this present houre my heauie burthen are deliuered": [0, 65535], "till this present houre my heauie burthen are deliuered the": [0, 65535], "this present houre my heauie burthen are deliuered the duke": [0, 65535], "present houre my heauie burthen are deliuered the duke my": [0, 65535], "houre my heauie burthen are deliuered the duke my husband": [0, 65535], "my heauie burthen are deliuered the duke my husband and": [0, 65535], "heauie burthen are deliuered the duke my husband and my": [0, 65535], "burthen are deliuered the duke my husband and my children": [0, 65535], "are deliuered the duke my husband and my children both": [0, 65535], "deliuered the duke my husband and my children both and": [0, 65535], "the duke my husband and my children both and you": [0, 65535], "duke my husband and my children both and you the": [0, 65535], "my husband and my children both and you the kalenders": [0, 65535], "husband and my children both and you the kalenders of": [0, 65535], "and my children both and you the kalenders of their": [0, 65535], "my children both and you the kalenders of their natiuity": [0, 65535], "children both and you the kalenders of their natiuity go": [0, 65535], "both and you the kalenders of their natiuity go to": [0, 65535], "and you the kalenders of their natiuity go to a": [0, 65535], "you the kalenders of their natiuity go to a gossips": [0, 65535], "the kalenders of their natiuity go to a gossips feast": [0, 65535], "kalenders of their natiuity go to a gossips feast and": [0, 65535], "of their natiuity go to a gossips feast and go": [0, 65535], "their natiuity go to a gossips feast and go with": [0, 65535], "natiuity go to a gossips feast and go with mee": [0, 65535], "go to a gossips feast and go with mee after": [0, 65535], "to a gossips feast and go with mee after so": [0, 65535], "a gossips feast and go with mee after so long": [0, 65535], "gossips feast and go with mee after so long greefe": [0, 65535], "feast and go with mee after so long greefe such": [0, 65535], "and go with mee after so long greefe such natiuitie": [0, 65535], "go with mee after so long greefe such natiuitie duke": [0, 65535], "with mee after so long greefe such natiuitie duke with": [0, 65535], "mee after so long greefe such natiuitie duke with all": [0, 65535], "after so long greefe such natiuitie duke with all my": [0, 65535], "so long greefe such natiuitie duke with all my heart": [0, 65535], "long greefe such natiuitie duke with all my heart ile": [0, 65535], "greefe such natiuitie duke with all my heart ile gossip": [0, 65535], "such natiuitie duke with all my heart ile gossip at": [0, 65535], "natiuitie duke with all my heart ile gossip at this": [0, 65535], "duke with all my heart ile gossip at this feast": [0, 65535], "with all my heart ile gossip at this feast exeunt": [0, 65535], "all my heart ile gossip at this feast exeunt omnes": [0, 65535], "my heart ile gossip at this feast exeunt omnes manet": [0, 65535], "heart ile gossip at this feast exeunt omnes manet the": [0, 65535], "ile gossip at this feast exeunt omnes manet the two": [0, 65535], "gossip at this feast exeunt omnes manet the two dromio's": [0, 65535], "at this feast exeunt omnes manet the two dromio's and": [0, 65535], "this feast exeunt omnes manet the two dromio's and two": [0, 65535], "feast exeunt omnes manet the two dromio's and two brothers": [0, 65535], "exeunt omnes manet the two dromio's and two brothers s": [0, 65535], "omnes manet the two dromio's and two brothers s dro": [0, 65535], "manet the two dromio's and two brothers s dro mast": [0, 65535], "the two dromio's and two brothers s dro mast shall": [0, 65535], "two dromio's and two brothers s dro mast shall i": [0, 65535], "dromio's and two brothers s dro mast shall i fetch": [0, 65535], "and two brothers s dro mast shall i fetch your": [0, 65535], "two brothers s dro mast shall i fetch your stuffe": [0, 65535], "brothers s dro mast shall i fetch your stuffe from": [0, 65535], "s dro mast shall i fetch your stuffe from shipbord": [0, 65535], "dro mast shall i fetch your stuffe from shipbord e": [0, 65535], "mast shall i fetch your stuffe from shipbord e an": [0, 65535], "shall i fetch your stuffe from shipbord e an dromio": [0, 65535], "i fetch your stuffe from shipbord e an dromio what": [0, 65535], "fetch your stuffe from shipbord e an dromio what stuffe": [0, 65535], "your stuffe from shipbord e an dromio what stuffe of": [0, 65535], "stuffe from shipbord e an dromio what stuffe of mine": [0, 65535], "from shipbord e an dromio what stuffe of mine hast": [0, 65535], "shipbord e an dromio what stuffe of mine hast thou": [0, 65535], "e an dromio what stuffe of mine hast thou imbarkt": [0, 65535], "an dromio what stuffe of mine hast thou imbarkt s": [0, 65535], "dromio what stuffe of mine hast thou imbarkt s dro": [0, 65535], "what stuffe of mine hast thou imbarkt s dro your": [0, 65535], "stuffe of mine hast thou imbarkt s dro your goods": [0, 65535], "of mine hast thou imbarkt s dro your goods that": [0, 65535], "mine hast thou imbarkt s dro your goods that lay": [0, 65535], "hast thou imbarkt s dro your goods that lay at": [0, 65535], "thou imbarkt s dro your goods that lay at host": [0, 65535], "imbarkt s dro your goods that lay at host sir": [0, 65535], "s dro your goods that lay at host sir in": [0, 65535], "dro your goods that lay at host sir in the": [0, 65535], "your goods that lay at host sir in the centaur": [0, 65535], "goods that lay at host sir in the centaur s": [0, 65535], "that lay at host sir in the centaur s ant": [0, 65535], "lay at host sir in the centaur s ant he": [0, 65535], "at host sir in the centaur s ant he speakes": [0, 65535], "host sir in the centaur s ant he speakes to": [0, 65535], "sir in the centaur s ant he speakes to me": [0, 65535], "in the centaur s ant he speakes to me i": [0, 65535], "the centaur s ant he speakes to me i am": [0, 65535], "centaur s ant he speakes to me i am your": [0, 65535], "s ant he speakes to me i am your master": [0, 65535], "ant he speakes to me i am your master dromio": [0, 65535], "he speakes to me i am your master dromio come": [0, 65535], "speakes to me i am your master dromio come go": [0, 65535], "to me i am your master dromio come go with": [0, 65535], "me i am your master dromio come go with vs": [0, 65535], "i am your master dromio come go with vs wee'l": [0, 65535], "am your master dromio come go with vs wee'l looke": [0, 65535], "your master dromio come go with vs wee'l looke to": [0, 65535], "master dromio come go with vs wee'l looke to that": [0, 65535], "dromio come go with vs wee'l looke to that anon": [0, 65535], "come go with vs wee'l looke to that anon embrace": [0, 65535], "go with vs wee'l looke to that anon embrace thy": [0, 65535], "with vs wee'l looke to that anon embrace thy brother": [0, 65535], "vs wee'l looke to that anon embrace thy brother there": [0, 65535], "wee'l looke to that anon embrace thy brother there reioyce": [0, 65535], "looke to that anon embrace thy brother there reioyce with": [0, 65535], "to that anon embrace thy brother there reioyce with him": [0, 65535], "that anon embrace thy brother there reioyce with him exit": [0, 65535], "anon embrace thy brother there reioyce with him exit s": [0, 65535], "embrace thy brother there reioyce with him exit s dro": [0, 65535], "thy brother there reioyce with him exit s dro there": [0, 65535], "brother there reioyce with him exit s dro there is": [0, 65535], "there reioyce with him exit s dro there is a": [0, 65535], "reioyce with him exit s dro there is a fat": [0, 65535], "with him exit s dro there is a fat friend": [0, 65535], "him exit s dro there is a fat friend at": [0, 65535], "exit s dro there is a fat friend at your": [0, 65535], "s dro there is a fat friend at your masters": [0, 65535], "dro there is a fat friend at your masters house": [0, 65535], "there is a fat friend at your masters house that": [0, 65535], "is a fat friend at your masters house that kitchin'd": [0, 65535], "a fat friend at your masters house that kitchin'd me": [0, 65535], "fat friend at your masters house that kitchin'd me for": [0, 65535], "friend at your masters house that kitchin'd me for you": [0, 65535], "at your masters house that kitchin'd me for you to": [0, 65535], "your masters house that kitchin'd me for you to day": [0, 65535], "masters house that kitchin'd me for you to day at": [0, 65535], "house that kitchin'd me for you to day at dinner": [0, 65535], "that kitchin'd me for you to day at dinner she": [0, 65535], "kitchin'd me for you to day at dinner she now": [0, 65535], "me for you to day at dinner she now shall": [0, 65535], "for you to day at dinner she now shall be": [0, 65535], "you to day at dinner she now shall be my": [0, 65535], "to day at dinner she now shall be my sister": [0, 65535], "day at dinner she now shall be my sister not": [0, 65535], "at dinner she now shall be my sister not my": [0, 65535], "dinner she now shall be my sister not my wife": [0, 65535], "she now shall be my sister not my wife e": [0, 65535], "now shall be my sister not my wife e d": [0, 65535], "shall be my sister not my wife e d me": [0, 65535], "be my sister not my wife e d me thinks": [0, 65535], "my sister not my wife e d me thinks you": [0, 65535], "sister not my wife e d me thinks you are": [0, 65535], "not my wife e d me thinks you are my": [0, 65535], "my wife e d me thinks you are my glasse": [0, 65535], "wife e d me thinks you are my glasse not": [0, 65535], "e d me thinks you are my glasse not my": [0, 65535], "d me thinks you are my glasse not my brother": [0, 65535], "me thinks you are my glasse not my brother i": [0, 65535], "thinks you are my glasse not my brother i see": [0, 65535], "you are my glasse not my brother i see by": [0, 65535], "are my glasse not my brother i see by you": [0, 65535], "my glasse not my brother i see by you i": [0, 65535], "glasse not my brother i see by you i am": [0, 65535], "not my brother i see by you i am a": [0, 65535], "my brother i see by you i am a sweet": [0, 65535], "brother i see by you i am a sweet fac'd": [0, 65535], "i see by you i am a sweet fac'd youth": [0, 65535], "see by you i am a sweet fac'd youth will": [0, 65535], "by you i am a sweet fac'd youth will you": [0, 65535], "you i am a sweet fac'd youth will you walke": [0, 65535], "i am a sweet fac'd youth will you walke in": [0, 65535], "am a sweet fac'd youth will you walke in to": [0, 65535], "a sweet fac'd youth will you walke in to see": [0, 65535], "sweet fac'd youth will you walke in to see their": [0, 65535], "fac'd youth will you walke in to see their gossipping": [0, 65535], "youth will you walke in to see their gossipping s": [0, 65535], "will you walke in to see their gossipping s dro": [0, 65535], "you walke in to see their gossipping s dro not": [0, 65535], "walke in to see their gossipping s dro not i": [0, 65535], "in to see their gossipping s dro not i sir": [0, 65535], "to see their gossipping s dro not i sir you": [0, 65535], "see their gossipping s dro not i sir you are": [0, 65535], "their gossipping s dro not i sir you are my": [0, 65535], "gossipping s dro not i sir you are my elder": [0, 65535], "s dro not i sir you are my elder e": [0, 65535], "dro not i sir you are my elder e dro": [0, 65535], "not i sir you are my elder e dro that's": [0, 65535], "i sir you are my elder e dro that's a": [0, 65535], "sir you are my elder e dro that's a question": [0, 65535], "you are my elder e dro that's a question how": [0, 65535], "are my elder e dro that's a question how shall": [0, 65535], "my elder e dro that's a question how shall we": [0, 65535], "elder e dro that's a question how shall we trie": [0, 65535], "e dro that's a question how shall we trie it": [0, 65535], "dro that's a question how shall we trie it s": [0, 65535], "that's a question how shall we trie it s dro": [0, 65535], "a question how shall we trie it s dro wee'l": [0, 65535], "question how shall we trie it s dro wee'l draw": [0, 65535], "how shall we trie it s dro wee'l draw cuts": [0, 65535], "shall we trie it s dro wee'l draw cuts for": [0, 65535], "we trie it s dro wee'l draw cuts for the": [0, 65535], "trie it s dro wee'l draw cuts for the signior": [0, 65535], "it s dro wee'l draw cuts for the signior till": [0, 65535], "s dro wee'l draw cuts for the signior till then": [0, 65535], "dro wee'l draw cuts for the signior till then lead": [0, 65535], "wee'l draw cuts for the signior till then lead thou": [0, 65535], "draw cuts for the signior till then lead thou first": [0, 65535], "cuts for the signior till then lead thou first e": [0, 65535], "for the signior till then lead thou first e dro": [0, 65535], "the signior till then lead thou first e dro nay": [0, 65535], "signior till then lead thou first e dro nay then": [0, 65535], "till then lead thou first e dro nay then thus": [0, 65535], "then lead thou first e dro nay then thus we": [0, 65535], "lead thou first e dro nay then thus we came": [0, 65535], "thou first e dro nay then thus we came into": [0, 65535], "first e dro nay then thus we came into the": [0, 65535], "e dro nay then thus we came into the world": [0, 65535], "dro nay then thus we came into the world like": [0, 65535], "nay then thus we came into the world like brother": [0, 65535], "then thus we came into the world like brother and": [0, 65535], "thus we came into the world like brother and brother": [0, 65535], "we came into the world like brother and brother and": [0, 65535], "came into the world like brother and brother and now": [0, 65535], "into the world like brother and brother and now let's": [0, 65535], "the world like brother and brother and now let's go": [0, 65535], "world like brother and brother and now let's go hand": [0, 65535], "like brother and brother and now let's go hand in": [0, 65535], "brother and brother and now let's go hand in hand": [0, 65535], "and brother and now let's go hand in hand not": [0, 65535], "brother and now let's go hand in hand not one": [0, 65535], "and now let's go hand in hand not one before": [0, 65535], "now let's go hand in hand not one before another": [0, 65535], "let's go hand in hand not one before another exeunt": [0, 65535], "go hand in hand not one before another exeunt finis": [0, 65535], "comedie": [0, 65535], "primus": [0, 65535], "iaylor": [0, 65535], "attendants": [0, 65535], "marchant": [0, 65535], "broceed": [0, 65535], "solinus": [0, 65535], "procure": [0, 65535], "doome": [0, 65535], "partiall": [0, 65535], "infringe": [0, 65535], "enmity": [0, 65535], "discord": [0, 65535], "sprung": [0, 65535], "rancorous": [0, 65535], "outrage": [0, 65535], "merchants": [0, 65535], "dealing": [0, 65535], "countrimen": [0, 65535], "gilders": [0, 65535], "redeeme": [0, 65535], "seal'd": [0, 65535], "rigorous": [0, 65535], "blouds": [0, 65535], "excludes": [0, 65535], "threatning": [0, 65535], "mortall": [0, 65535], "intestine": [0, 65535], "iarres": [0, 65535], "twixt": [0, 65535], "seditious": [0, 65535], "solemne": [0, 65535], "synodes": [0, 65535], "decreed": [0, 65535], "siracusians": [0, 65535], "admit": [0, 65535], "trafficke": [0, 65535], "aduerse": [0, 65535], "townes": [0, 65535], "seene": [0, 65535], "marts": [0, 65535], "fayres": [0, 65535], "dies": [0, 65535], "confiscate": [0, 65535], "dukes": [0, 65535], "dispose": [0, 65535], "leuied": [0, 65535], "quit": [0, 65535], "penalty": [0, 65535], "ransome": [0, 65535], "substance": [0, 65535], "rate": [0, 65535], "amount": [0, 65535], "condemn'd": [0, 65535], "mer": [0, 65535], "likewise": [0, 65535], "duk": [0, 65535], "briefe": [0, 65535], "departedst": [0, 65535], "natiue": [0, 65535], "heauier": [0, 65535], "taske": [0, 65535], "impos'd": [0, 65535], "griefes": [0, 65535], "vnspeakeable": [0, 65535], "vile": [0, 65535], "vtter": [0, 65535], "sorrow": [0, 65535], "giues": [0, 65535], "syracusa": [0, 65535], "wedde": [0, 65535], "hap": [0, 65535], "liu'd": [0, 65535], "ioy": [0, 65535], "increast": [0, 65535], "prosperous": [0, 65535], "voyages": [0, 65535], "factors": [0, 65535], "randone": [0, 65535], "embracements": [0, 65535], "spouse": [0, 65535], "absence": [0, 65535], "sixe": [0, 65535], "moneths": [0, 65535], "fainting": [0, 65535], "prouision": [0, 65535], "arriued": [0, 65535], "ioyfull": [0, 65535], "goodly": [0, 65535], "distinguish'd": [0, 65535], "inne": [0, 65535], "male": [0, 65535], "twins": [0, 65535], "exceeding": [0, 65535], "meanely": [0, 65535], "prowd": [0, 65535], "boyes": [0, 65535], "motions": [0, 65535], "vnwilling": [0, 65535], "aboord": [0, 65535], "saild": [0, 65535], "alwaies": [0, 65535], "obeying": [0, 65535], "tragicke": [0, 65535], "instance": [0, 65535], "harme": [0, 65535], "retaine": [0, 65535], "obscured": [0, 65535], "conuay": [0, 65535], "fearefull": [0, 65535], "mindes": [0, 65535], "doubtfull": [0, 65535], "immediate": [0, 65535], "gladly": [0, 65535], "imbrac'd": [0, 65535], "incessant": [0, 65535], "weepings": [0, 65535], "pitteous": [0, 65535], "playnings": [0, 65535], "babes": [0, 65535], "mourn'd": [0, 65535], "ignorant": [0, 65535], "forst": [0, 65535], "delayes": [0, 65535], "boate": [0, 65535], "sinking": [0, 65535], "ripe": [0, 65535], "fastned": [0, 65535], "faring": [0, 65535], "prouide": [0, 65535], "stormes": [0, 65535], "dispos'd": [0, 65535], "fixing": [0, 65535], "fixt": [0, 65535], "eyther": [0, 65535], "floating": [0, 65535], "streame": [0, 65535], "towards": [0, 65535], "length": [0, 65535], "disperst": [0, 65535], "vapours": [0, 65535], "offended": [0, 65535], "benefit": [0, 65535], "waxt": [0, 65535], "calme": [0, 65535], "discouered": [0, 65535], "shippes": [0, 65535], "amaine": [0, 65535], "epidarus": [0, 65535], "sequell": [0, 65535], "pardon": [0, 65535], "merch": [0, 65535], "worthily": [0, 65535], "tearm'd": [0, 65535], "mercilesse": [0, 65535], "ships": [0, 65535], "leagues": [0, 65535], "encountred": [0, 65535], "rocke": [0, 65535], "violently": [0, 65535], "helpefull": [0, 65535], "vniust": [0, 65535], "diuorce": [0, 65535], "burdened": [0, 65535], "lesser": [0, 65535], "seiz'd": [0, 65535], "healthfull": [0, 65535], "wrackt": [0, 65535], "guests": [0, 65535], "reft": [0, 65535], "fishers": [0, 65535], "prey": [0, 65535], "seuer'd": [0, 65535], "blisse": [0, 65535], "prolong'd": [0, 65535], "stories": [0, 65535], "mishaps": [0, 65535], "sorrowest": [0, 65535], "fauour": [0, 65535], "dilate": [0, 65535], "befalne": [0, 65535], "yongest": [0, 65535], "eldest": [0, 65535], "eighteene": [0, 65535], "yeeres": [0, 65535], "inquisitiue": [0, 65535], "importun'd": [0, 65535], "retain'd": [0, 65535], "quest": [0, 65535], "laboured": [0, 65535], "hazarded": [0, 65535], "losse": [0, 65535], "lou'd": [0, 65535], "sommers": [0, 65535], "spent": [0, 65535], "farthest": [0, 65535], "greece": [0, 65535], "roming": [0, 65535], "bounds": [0, 65535], "asia": [0, 65535], "coasting": [0, 65535], "hopelesse": [0, 65535], "loth": [0, 65535], "vnsought": [0, 65535], "harbours": [0, 65535], "timelie": [0, 65535], "trauells": [0, 65535], "haplesse": [0, 65535], "fates": [0, 65535], "markt": [0, 65535], "extremitie": [0, 65535], "dire": [0, 65535], "mishap": [0, 65535], "crowne": [0, 65535], "dignity": [0, 65535], "disanull": [0, 65535], "sue": [0, 65535], "aduocate": [0, 65535], "adiudged": [0, 65535], "recal'd": [0, 65535], "honours": [0, 65535], "disparagement": [0, 65535], "limit": [0, 65535], "beneficiall": [0, 65535], "friends": [0, 65535], "beg": [0, 65535], "doom'd": [0, 65535], "custodie": [0, 65535], "egean": [0, 65535], "wend": [0, 65535], "procrastinate": [0, 65535], "liuelesse": [0, 65535], "erotes": [0, 65535], "syracusian": [0, 65535], "apprehended": [0, 65535], "riuall": [0, 65535], "able": [0, 65535], "statute": [0, 65535], "wearie": [0, 65535], "west": [0, 65535], "centaure": [0, 65535], "peruse": [0, 65535], "traders": [0, 65535], "stiffe": [0, 65535], "indeede": [0, 65535], "hauing": [0, 65535], "trustie": [0, 65535], "lightens": [0, 65535], "humour": [0, 65535], "iests": [0, 65535], "marchants": [0, 65535], "craue": [0, 65535], "afterward": [0, 65535], "consort": [0, 65535], "cals": [0, 65535], "farewell": [0, 65535], "commend": [0, 65535], "commends": [0, 65535], "ocean": [0, 65535], "seekes": [0, 65535], "falling": [0, 65535], "vnseene": [0, 65535], "confounds": [0, 65535], "vnhappie": [0, 65535], "almanacke": [0, 65535], "date": [0, 65535], "approacht": [0, 65535], "burnes": [0, 65535], "pig": [0, 65535], "fals": [0, 65535], "strucken": [0, 65535], "twelue": [0, 65535], "colde": [0, 65535], "stomacke": [0, 65535], "penitent": [0, 65535], "default": [0, 65535], "pence": [0, 65535], "wensday": [0, 65535], "sadler": [0, 65535], "crupper": [0, 65535], "sportiue": [0, 65535], "dally": [0, 65535], "strangers": [0, 65535], "scoure": [0, 65535], "thinkes": [0, 65535], "maw": [0, 65535], "cooke": [0, 65535], "reserue": [0, 65535], "merrier": [0, 65535], "foolishnes": [0, 65535], "staies": [0, 65535], "christian": [0, 65535], "bestow'd": [0, 65535], "vndispos'd": [0, 65535], "perchance": [0, 65535], "worships": [0, 65535], "praies": [0, 65535], "flout": [0, 65535], "forbid": [0, 65535], "ep": [0, 65535], "deuise": [0, 65535], "cosenage": [0, 65535], "nimble": [0, 65535], "iuglers": [0, 65535], "sorcerers": [0, 65535], "killing": [0, 65535], "deforme": [0, 65535], "bodie": [0, 65535], "disguised": [0, 65535], "cheaters": [0, 65535], "mountebankes": [0, 65535], "liberties": [0, 65535], "greatly": [0, 65535], "the comedie": [0, 65535], "comedie of": [0, 65535], "of errors": [0, 65535], "errors actus": [0, 65535], "actus primus": [0, 65535], "primus scena": [0, 65535], "ephesus with": [0, 65535], "of siracusa": [0, 65535], "siracusa iaylor": [0, 65535], "iaylor and": [0, 65535], "other attendants": [0, 65535], "attendants marchant": [0, 65535], "marchant broceed": [0, 65535], "broceed solinus": [0, 65535], "solinus to": [0, 65535], "to procure": [0, 65535], "procure my": [0, 65535], "my fall": [0, 65535], "fall and": [0, 65535], "the doome": [0, 65535], "doome of": [0, 65535], "death end": [0, 65535], "end woes": [0, 65535], "woes and": [0, 65535], "all duke": [0, 65535], "duke merchant": [0, 65535], "siracusa plead": [0, 65535], "plead no": [0, 65535], "not partiall": [0, 65535], "partiall to": [0, 65535], "to infringe": [0, 65535], "infringe our": [0, 65535], "our lawes": [0, 65535], "lawes the": [0, 65535], "the enmity": [0, 65535], "enmity and": [0, 65535], "and discord": [0, 65535], "discord which": [0, 65535], "of late": [0, 65535], "late sprung": [0, 65535], "sprung from": [0, 65535], "the rancorous": [0, 65535], "rancorous outrage": [0, 65535], "outrage of": [0, 65535], "your duke": [0, 65535], "duke to": [0, 65535], "to merchants": [0, 65535], "merchants our": [0, 65535], "our well": [0, 65535], "well dealing": [0, 65535], "dealing countrimen": [0, 65535], "countrimen who": [0, 65535], "who wanting": [0, 65535], "wanting gilders": [0, 65535], "gilders to": [0, 65535], "to redeeme": [0, 65535], "redeeme their": [0, 65535], "their liues": [0, 65535], "liues haue": [0, 65535], "haue seal'd": [0, 65535], "seal'd his": [0, 65535], "his rigorous": [0, 65535], "rigorous statutes": [0, 65535], "statutes with": [0, 65535], "their blouds": [0, 65535], "blouds excludes": [0, 65535], "excludes all": [0, 65535], "all pitty": [0, 65535], "pitty from": [0, 65535], "from our": [0, 65535], "our threatning": [0, 65535], "threatning lookes": [0, 65535], "lookes for": [0, 65535], "for since": [0, 65535], "since the": [0, 65535], "the mortall": [0, 65535], "mortall and": [0, 65535], "and intestine": [0, 65535], "intestine iarres": [0, 65535], "iarres twixt": [0, 65535], "twixt thy": [0, 65535], "thy seditious": [0, 65535], "seditious countrimen": [0, 65535], "countrimen and": [0, 65535], "and vs": [0, 65535], "vs it": [0, 65535], "it hath": [0, 65535], "hath in": [0, 65535], "in solemne": [0, 65535], "solemne synodes": [0, 65535], "synodes beene": [0, 65535], "beene decreed": [0, 65535], "decreed both": [0, 65535], "both by": [0, 65535], "the siracusians": [0, 65535], "siracusians and": [0, 65535], "and our": [0, 65535], "selues to": [0, 65535], "to admit": [0, 65535], "admit no": [0, 65535], "no trafficke": [0, 65535], "trafficke to": [0, 65535], "to our": [0, 65535], "our aduerse": [0, 65535], "aduerse townes": [0, 65535], "townes nay": [0, 65535], "nay more": [0, 65535], "more if": [0, 65535], "any borne": [0, 65535], "borne at": [0, 65535], "at ephesus": [0, 65535], "ephesus be": [0, 65535], "be seene": [0, 65535], "seene at": [0, 65535], "any siracusian": [0, 65535], "siracusian marts": [0, 65535], "marts and": [0, 65535], "and fayres": [0, 65535], "fayres againe": [0, 65535], "againe if": [0, 65535], "siracusian borne": [0, 65535], "borne come": [0, 65535], "the bay": [0, 65535], "bay of": [0, 65535], "ephesus he": [0, 65535], "he dies": [0, 65535], "dies his": [0, 65535], "his goods": [0, 65535], "goods confiscate": [0, 65535], "confiscate to": [0, 65535], "the dukes": [0, 65535], "dukes dispose": [0, 65535], "dispose vnlesse": [0, 65535], "vnlesse a": [0, 65535], "markes be": [0, 65535], "be leuied": [0, 65535], "leuied to": [0, 65535], "to quit": [0, 65535], "quit the": [0, 65535], "the penalty": [0, 65535], "penalty and": [0, 65535], "to ransome": [0, 65535], "ransome him": [0, 65535], "him thy": [0, 65535], "thy substance": [0, 65535], "substance valued": [0, 65535], "valued at": [0, 65535], "highest rate": [0, 65535], "rate cannot": [0, 65535], "cannot amount": [0, 65535], "amount vnto": [0, 65535], "vnto a": [0, 65535], "markes therefore": [0, 65535], "therefore by": [0, 65535], "by law": [0, 65535], "law thou": [0, 65535], "art condemn'd": [0, 65535], "condemn'd to": [0, 65535], "die mer": [0, 65535], "mer yet": [0, 65535], "yet this": [0, 65535], "my comfort": [0, 65535], "comfort when": [0, 65535], "when your": [0, 65535], "are done": [0, 65535], "done my": [0, 65535], "woes end": [0, 65535], "end likewise": [0, 65535], "likewise with": [0, 65535], "the euening": [0, 65535], "euening sonne": [0, 65535], "sonne duk": [0, 65535], "duk well": [0, 65535], "well siracusian": [0, 65535], "siracusian say": [0, 65535], "say in": [0, 65535], "in briefe": [0, 65535], "briefe the": [0, 65535], "the cause": [0, 65535], "cause why": [0, 65535], "thou departedst": [0, 65535], "departedst from": [0, 65535], "thy natiue": [0, 65535], "natiue home": [0, 65535], "cause thou": [0, 65535], "cam'st to": [0, 65535], "to ephesus": [0, 65535], "ephesus mer": [0, 65535], "mer a": [0, 65535], "a heauier": [0, 65535], "heauier taske": [0, 65535], "taske could": [0, 65535], "haue beene": [0, 65535], "beene impos'd": [0, 65535], "impos'd then": [0, 65535], "to speake": [0, 65535], "speake my": [0, 65535], "my griefes": [0, 65535], "griefes vnspeakeable": [0, 65535], "vnspeakeable yet": [0, 65535], "yet that": [0, 65535], "world may": [0, 65535], "may witnesse": [0, 65535], "witnesse that": [0, 65535], "my end": [0, 65535], "end was": [0, 65535], "was wrought": [0, 65535], "wrought by": [0, 65535], "nature not": [0, 65535], "by vile": [0, 65535], "vile offence": [0, 65535], "offence ile": [0, 65535], "ile vtter": [0, 65535], "vtter what": [0, 65535], "what my": [0, 65535], "my sorrow": [0, 65535], "sorrow giues": [0, 65535], "giues me": [0, 65535], "me leaue": [0, 65535], "leaue in": [0, 65535], "in syracusa": [0, 65535], "syracusa was": [0, 65535], "i borne": [0, 65535], "borne and": [0, 65535], "and wedde": [0, 65535], "wedde vnto": [0, 65535], "woman happy": [0, 65535], "happy but": [0, 65535], "me had": [0, 65535], "not our": [0, 65535], "our hap": [0, 65535], "hap beene": [0, 65535], "beene bad": [0, 65535], "bad with": [0, 65535], "her i": [0, 65535], "i liu'd": [0, 65535], "liu'd in": [0, 65535], "in ioy": [0, 65535], "ioy our": [0, 65535], "our wealth": [0, 65535], "wealth increast": [0, 65535], "increast by": [0, 65535], "by prosperous": [0, 65535], "prosperous voyages": [0, 65535], "voyages i": [0, 65535], "often made": [0, 65535], "to epidamium": [0, 65535], "epidamium till": [0, 65535], "till my": [0, 65535], "my factors": [0, 65535], "factors death": [0, 65535], "he great": [0, 65535], "of goods": [0, 65535], "goods at": [0, 65535], "at randone": [0, 65535], "randone left": [0, 65535], "left drew": [0, 65535], "drew me": [0, 65535], "me from": [0, 65535], "from kinde": [0, 65535], "kinde embracements": [0, 65535], "embracements of": [0, 65535], "my spouse": [0, 65535], "spouse from": [0, 65535], "from whom": [0, 65535], "whom my": [0, 65535], "my absence": [0, 65535], "absence was": [0, 65535], "not sixe": [0, 65535], "sixe moneths": [0, 65535], "moneths olde": [0, 65535], "olde before": [0, 65535], "her selfe": [0, 65535], "selfe almost": [0, 65535], "almost at": [0, 65535], "at fainting": [0, 65535], "fainting vnder": [0, 65535], "vnder the": [0, 65535], "the pleasing": [0, 65535], "pleasing punishment": [0, 65535], "punishment that": [0, 65535], "that women": [0, 65535], "women beare": [0, 65535], "beare had": [0, 65535], "had made": [0, 65535], "made prouision": [0, 65535], "prouision for": [0, 65535], "her following": [0, 65535], "following me": [0, 65535], "soone and": [0, 65535], "and safe": [0, 65535], "safe arriued": [0, 65535], "arriued where": [0, 65535], "had she": [0, 65535], "she not": [0, 65535], "beene long": [0, 65535], "long but": [0, 65535], "she became": [0, 65535], "became a": [0, 65535], "a ioyfull": [0, 65535], "ioyfull mother": [0, 65535], "mother of": [0, 65535], "two goodly": [0, 65535], "goodly sonnes": [0, 65535], "was strange": [0, 65535], "strange the": [0, 65535], "one so": [0, 65535], "other as": [0, 65535], "as could": [0, 65535], "be distinguish'd": [0, 65535], "distinguish'd but": [0, 65535], "by names": [0, 65535], "names that": [0, 65535], "very howre": [0, 65535], "howre and": [0, 65535], "the selfe": [0, 65535], "selfe same": [0, 65535], "same inne": [0, 65535], "inne a": [0, 65535], "a meane": [0, 65535], "meane woman": [0, 65535], "woman was": [0, 65535], "was deliuered": [0, 65535], "deliuered of": [0, 65535], "burthen male": [0, 65535], "male twins": [0, 65535], "twins both": [0, 65535], "both alike": [0, 65535], "alike those": [0, 65535], "those for": [0, 65535], "parents were": [0, 65535], "were exceeding": [0, 65535], "exceeding poore": [0, 65535], "i bought": [0, 65535], "brought vp": [0, 65535], "vp to": [0, 65535], "to attend": [0, 65535], "sonnes my": [0, 65535], "wife not": [0, 65535], "not meanely": [0, 65535], "meanely prowd": [0, 65535], "prowd of": [0, 65535], "two such": [0, 65535], "such boyes": [0, 65535], "boyes made": [0, 65535], "made daily": [0, 65535], "daily motions": [0, 65535], "motions for": [0, 65535], "for our": [0, 65535], "our home": [0, 65535], "home returne": [0, 65535], "returne vnwilling": [0, 65535], "vnwilling i": [0, 65535], "i agreed": [0, 65535], "agreed alas": [0, 65535], "alas too": [0, 65535], "too soone": [0, 65535], "soone wee": [0, 65535], "wee came": [0, 65535], "came aboord": [0, 65535], "aboord a": [0, 65535], "a league": [0, 65535], "league from": [0, 65535], "from epidamium": [0, 65535], "epidamium had": [0, 65535], "had we": [0, 65535], "we saild": [0, 65535], "saild before": [0, 65535], "the alwaies": [0, 65535], "alwaies winde": [0, 65535], "winde obeying": [0, 65535], "obeying deepe": [0, 65535], "deepe gaue": [0, 65535], "gaue any": [0, 65535], "any tragicke": [0, 65535], "tragicke instance": [0, 65535], "instance of": [0, 65535], "our harme": [0, 65535], "harme but": [0, 65535], "but longer": [0, 65535], "longer did": [0, 65535], "did we": [0, 65535], "we not": [0, 65535], "not retaine": [0, 65535], "retaine much": [0, 65535], "much hope": [0, 65535], "hope for": [0, 65535], "what obscured": [0, 65535], "obscured light": [0, 65535], "light the": [0, 65535], "the heauens": [0, 65535], "heauens did": [0, 65535], "did grant": [0, 65535], "grant did": [0, 65535], "did but": [0, 65535], "but conuay": [0, 65535], "conuay vnto": [0, 65535], "vnto our": [0, 65535], "our fearefull": [0, 65535], "fearefull mindes": [0, 65535], "mindes a": [0, 65535], "a doubtfull": [0, 65535], "doubtfull warrant": [0, 65535], "warrant of": [0, 65535], "of immediate": [0, 65535], "immediate death": [0, 65535], "death which": [0, 65535], "which though": [0, 65535], "selfe would": [0, 65535], "would gladly": [0, 65535], "gladly haue": [0, 65535], "haue imbrac'd": [0, 65535], "imbrac'd yet": [0, 65535], "the incessant": [0, 65535], "incessant weepings": [0, 65535], "weepings of": [0, 65535], "wife weeping": [0, 65535], "weeping before": [0, 65535], "before for": [0, 65535], "saw must": [0, 65535], "must come": [0, 65535], "and pitteous": [0, 65535], "pitteous playnings": [0, 65535], "playnings of": [0, 65535], "the prettie": [0, 65535], "prettie babes": [0, 65535], "babes that": [0, 65535], "that mourn'd": [0, 65535], "mourn'd for": [0, 65535], "for fashion": [0, 65535], "fashion ignorant": [0, 65535], "ignorant what": [0, 65535], "what to": [0, 65535], "to feare": [0, 65535], "feare forst": [0, 65535], "forst me": [0, 65535], "seeke delayes": [0, 65535], "delayes for": [0, 65535], "for them": [0, 65535], "this it": [0, 65535], "for other": [0, 65535], "other meanes": [0, 65535], "meanes was": [0, 65535], "was none": [0, 65535], "none the": [0, 65535], "the sailors": [0, 65535], "sailors sought": [0, 65535], "sought for": [0, 65535], "safety by": [0, 65535], "our boate": [0, 65535], "boate and": [0, 65535], "left the": [0, 65535], "the ship": [0, 65535], "ship then": [0, 65535], "then sinking": [0, 65535], "sinking ripe": [0, 65535], "ripe to": [0, 65535], "vs my": [0, 65535], "wife more": [0, 65535], "more carefull": [0, 65535], "carefull for": [0, 65535], "latter borne": [0, 65535], "borne had": [0, 65535], "had fastned": [0, 65535], "fastned him": [0, 65535], "him vnto": [0, 65535], "small spare": [0, 65535], "spare mast": [0, 65535], "mast such": [0, 65535], "as sea": [0, 65535], "sea faring": [0, 65535], "faring men": [0, 65535], "men prouide": [0, 65535], "prouide for": [0, 65535], "for stormes": [0, 65535], "stormes to": [0, 65535], "him one": [0, 65535], "other twins": [0, 65535], "twins was": [0, 65535], "was bound": [0, 65535], "bound whil'st": [0, 65535], "had beene": [0, 65535], "beene like": [0, 65535], "like heedfull": [0, 65535], "heedfull of": [0, 65535], "other the": [0, 65535], "children thus": [0, 65535], "thus dispos'd": [0, 65535], "dispos'd my": [0, 65535], "i fixing": [0, 65535], "fixing our": [0, 65535], "our eyes": [0, 65535], "eyes on": [0, 65535], "on whom": [0, 65535], "whom our": [0, 65535], "our care": [0, 65535], "care was": [0, 65535], "was fixt": [0, 65535], "fixt fastned": [0, 65535], "fastned our": [0, 65535], "selues at": [0, 65535], "at eyther": [0, 65535], "eyther end": [0, 65535], "end the": [0, 65535], "the mast": [0, 65535], "mast and": [0, 65535], "and floating": [0, 65535], "floating straight": [0, 65535], "straight obedient": [0, 65535], "obedient to": [0, 65535], "the streame": [0, 65535], "streame was": [0, 65535], "was carried": [0, 65535], "carried towards": [0, 65535], "towards corinth": [0, 65535], "corinth as": [0, 65535], "as we": [0, 65535], "we thought": [0, 65535], "thought at": [0, 65535], "at length": [0, 65535], "length the": [0, 65535], "the sonne": [0, 65535], "sonne gazing": [0, 65535], "gazing vpon": [0, 65535], "vpon the": [0, 65535], "the earth": [0, 65535], "earth disperst": [0, 65535], "disperst those": [0, 65535], "those vapours": [0, 65535], "vapours that": [0, 65535], "that offended": [0, 65535], "offended vs": [0, 65535], "the benefit": [0, 65535], "benefit of": [0, 65535], "his wished": [0, 65535], "wished light": [0, 65535], "the seas": [0, 65535], "seas waxt": [0, 65535], "waxt calme": [0, 65535], "calme and": [0, 65535], "we discouered": [0, 65535], "discouered two": [0, 65535], "two shippes": [0, 65535], "shippes from": [0, 65535], "from farre": [0, 65535], "farre making": [0, 65535], "making amaine": [0, 65535], "amaine to": [0, 65535], "vs of": [0, 65535], "corinth that": [0, 65535], "of epidarus": [0, 65535], "epidarus this": [0, 65535], "but ere": [0, 65535], "ere they": [0, 65535], "came oh": [0, 65535], "me say": [0, 65535], "say no": [0, 65535], "more gather": [0, 65535], "gather the": [0, 65535], "the sequell": [0, 65535], "sequell by": [0, 65535], "went before": [0, 65535], "before duk": [0, 65535], "duk nay": [0, 65535], "nay forward": [0, 65535], "forward old": [0, 65535], "old man": [0, 65535], "man doe": [0, 65535], "not breake": [0, 65535], "breake off": [0, 65535], "off so": [0, 65535], "may pitty": [0, 65535], "pitty though": [0, 65535], "though not": [0, 65535], "not pardon": [0, 65535], "pardon thee": [0, 65535], "thee merch": [0, 65535], "merch oh": [0, 65535], "oh had": [0, 65535], "the gods": [0, 65535], "gods done": [0, 65535], "done so": [0, 65535], "not now": [0, 65535], "now worthily": [0, 65535], "worthily tearm'd": [0, 65535], "tearm'd them": [0, 65535], "them mercilesse": [0, 65535], "mercilesse to": [0, 65535], "vs for": [0, 65535], "for ere": [0, 65535], "ere the": [0, 65535], "the ships": [0, 65535], "ships could": [0, 65535], "could meet": [0, 65535], "meet by": [0, 65535], "by twice": [0, 65535], "twice fiue": [0, 65535], "fiue leagues": [0, 65535], "leagues we": [0, 65535], "were encountred": [0, 65535], "encountred by": [0, 65535], "mighty rocke": [0, 65535], "rocke which": [0, 65535], "which being": [0, 65535], "being violently": [0, 65535], "violently borne": [0, 65535], "borne vp": [0, 65535], "vp our": [0, 65535], "our helpefull": [0, 65535], "helpefull ship": [0, 65535], "ship was": [0, 65535], "was splitted": [0, 65535], "splitted in": [0, 65535], "midst so": [0, 65535], "this vniust": [0, 65535], "vniust diuorce": [0, 65535], "diuorce of": [0, 65535], "of vs": [0, 65535], "vs fortune": [0, 65535], "fortune had": [0, 65535], "had left": [0, 65535], "left to": [0, 65535], "to both": [0, 65535], "vs alike": [0, 65535], "alike what": [0, 65535], "to delight": [0, 65535], "delight in": [0, 65535], "to sorrow": [0, 65535], "sorrow for": [0, 65535], "her part": [0, 65535], "part poore": [0, 65535], "poore soule": [0, 65535], "soule seeming": [0, 65535], "seeming as": [0, 65535], "as burdened": [0, 65535], "burdened with": [0, 65535], "with lesser": [0, 65535], "lesser waight": [0, 65535], "waight but": [0, 65535], "lesser woe": [0, 65535], "woe was": [0, 65535], "carried with": [0, 65535], "more speed": [0, 65535], "speed before": [0, 65535], "winde and": [0, 65535], "in our": [0, 65535], "our sight": [0, 65535], "sight they": [0, 65535], "they three": [0, 65535], "three were": [0, 65535], "vp by": [0, 65535], "by fishermen": [0, 65535], "length another": [0, 65535], "another ship": [0, 65535], "ship had": [0, 65535], "had seiz'd": [0, 65535], "seiz'd on": [0, 65535], "and knowing": [0, 65535], "knowing whom": [0, 65535], "whom it": [0, 65535], "was their": [0, 65535], "their hap": [0, 65535], "hap to": [0, 65535], "saue gaue": [0, 65535], "gaue healthfull": [0, 65535], "healthfull welcome": [0, 65535], "their ship": [0, 65535], "ship wrackt": [0, 65535], "wrackt guests": [0, 65535], "guests and": [0, 65535], "and would": [0, 65535], "haue reft": [0, 65535], "reft the": [0, 65535], "the fishers": [0, 65535], "fishers of": [0, 65535], "their prey": [0, 65535], "prey had": [0, 65535], "not their": [0, 65535], "their backe": [0, 65535], "backe beene": [0, 65535], "beene very": [0, 65535], "very slow": [0, 65535], "slow of": [0, 65535], "of saile": [0, 65535], "therefore homeward": [0, 65535], "homeward did": [0, 65535], "did they": [0, 65535], "they bend": [0, 65535], "bend their": [0, 65535], "their course": [0, 65535], "course thus": [0, 65535], "thus haue": [0, 65535], "haue you": [0, 65535], "you heard": [0, 65535], "me seuer'd": [0, 65535], "seuer'd from": [0, 65535], "my blisse": [0, 65535], "blisse that": [0, 65535], "by misfortunes": [0, 65535], "misfortunes was": [0, 65535], "was my": [0, 65535], "life prolong'd": [0, 65535], "prolong'd to": [0, 65535], "tell sad": [0, 65535], "sad stories": [0, 65535], "stories of": [0, 65535], "owne mishaps": [0, 65535], "mishaps duke": [0, 65535], "the sake": [0, 65535], "sake of": [0, 65535], "them thou": [0, 65535], "thou sorrowest": [0, 65535], "sorrowest for": [0, 65535], "for doe": [0, 65535], "doe me": [0, 65535], "me the": [0, 65535], "the fauour": [0, 65535], "fauour to": [0, 65535], "to dilate": [0, 65535], "dilate at": [0, 65535], "at full": [0, 65535], "full what": [0, 65535], "what haue": [0, 65535], "haue befalne": [0, 65535], "befalne of": [0, 65535], "they till": [0, 65535], "now merch": [0, 65535], "merch my": [0, 65535], "my yongest": [0, 65535], "yongest boy": [0, 65535], "yet my": [0, 65535], "my eldest": [0, 65535], "eldest care": [0, 65535], "care at": [0, 65535], "at eighteene": [0, 65535], "eighteene yeeres": [0, 65535], "yeeres became": [0, 65535], "became inquisitiue": [0, 65535], "inquisitiue after": [0, 65535], "after his": [0, 65535], "his brother": [0, 65535], "and importun'd": [0, 65535], "importun'd me": [0, 65535], "his attendant": [0, 65535], "attendant so": [0, 65535], "his case": [0, 65535], "case was": [0, 65535], "like reft": [0, 65535], "reft of": [0, 65535], "brother but": [0, 65535], "but retain'd": [0, 65535], "retain'd his": [0, 65535], "name might": [0, 65535], "him company": [0, 65535], "company in": [0, 65535], "the quest": [0, 65535], "quest of": [0, 65535], "him whom": [0, 65535], "whom whil'st": [0, 65535], "i laboured": [0, 65535], "laboured of": [0, 65535], "loue to": [0, 65535], "see i": [0, 65535], "i hazarded": [0, 65535], "hazarded the": [0, 65535], "the losse": [0, 65535], "losse of": [0, 65535], "of whom": [0, 65535], "i lou'd": [0, 65535], "lou'd fiue": [0, 65535], "fiue sommers": [0, 65535], "sommers haue": [0, 65535], "i spent": [0, 65535], "spent in": [0, 65535], "in farthest": [0, 65535], "farthest greece": [0, 65535], "greece roming": [0, 65535], "roming cleane": [0, 65535], "cleane through": [0, 65535], "the bounds": [0, 65535], "bounds of": [0, 65535], "of asia": [0, 65535], "asia and": [0, 65535], "and coasting": [0, 65535], "coasting homeward": [0, 65535], "homeward came": [0, 65535], "ephesus hopelesse": [0, 65535], "hopelesse to": [0, 65535], "to finde": [0, 65535], "finde yet": [0, 65535], "yet loth": [0, 65535], "loth to": [0, 65535], "to leaue": [0, 65535], "leaue vnsought": [0, 65535], "vnsought or": [0, 65535], "or that": [0, 65535], "that or": [0, 65535], "any place": [0, 65535], "that harbours": [0, 65535], "harbours men": [0, 65535], "men but": [0, 65535], "but heere": [0, 65535], "heere must": [0, 65535], "must end": [0, 65535], "the story": [0, 65535], "story of": [0, 65535], "and happy": [0, 65535], "happy were": [0, 65535], "were i": [0, 65535], "my timelie": [0, 65535], "timelie death": [0, 65535], "death could": [0, 65535], "could all": [0, 65535], "my trauells": [0, 65535], "trauells warrant": [0, 65535], "warrant me": [0, 65535], "they liue": [0, 65535], "liue duke": [0, 65535], "duke haplesse": [0, 65535], "haplesse egeon": [0, 65535], "egeon whom": [0, 65535], "whom the": [0, 65535], "the fates": [0, 65535], "fates haue": [0, 65535], "haue markt": [0, 65535], "markt to": [0, 65535], "to beare": [0, 65535], "beare the": [0, 65535], "the extremitie": [0, 65535], "extremitie of": [0, 65535], "of dire": [0, 65535], "dire mishap": [0, 65535], "mishap now": [0, 65535], "now trust": [0, 65535], "me were": [0, 65535], "were it": [0, 65535], "not against": [0, 65535], "against our": [0, 65535], "lawes against": [0, 65535], "my crowne": [0, 65535], "crowne my": [0, 65535], "my oath": [0, 65535], "oath my": [0, 65535], "my dignity": [0, 65535], "dignity which": [0, 65535], "which princes": [0, 65535], "princes would": [0, 65535], "would they": [0, 65535], "they may": [0, 65535], "not disanull": [0, 65535], "disanull my": [0, 65535], "soule should": [0, 65535], "should sue": [0, 65535], "sue as": [0, 65535], "as aduocate": [0, 65535], "aduocate for": [0, 65535], "thee but": [0, 65535], "though thou": [0, 65535], "art adiudged": [0, 65535], "adiudged to": [0, 65535], "passed sentence": [0, 65535], "sentence may": [0, 65535], "be recal'd": [0, 65535], "recal'd but": [0, 65535], "our honours": [0, 65535], "honours great": [0, 65535], "great disparagement": [0, 65535], "disparagement yet": [0, 65535], "yet will": [0, 65535], "i fauour": [0, 65535], "fauour thee": [0, 65535], "can therefore": [0, 65535], "therefore marchant": [0, 65535], "marchant ile": [0, 65535], "ile limit": [0, 65535], "limit thee": [0, 65535], "thee this": [0, 65535], "day to": [0, 65535], "seeke thy": [0, 65535], "thy helpe": [0, 65535], "helpe by": [0, 65535], "by beneficiall": [0, 65535], "beneficiall helpe": [0, 65535], "helpe try": [0, 65535], "try all": [0, 65535], "the friends": [0, 65535], "friends thou": [0, 65535], "hast in": [0, 65535], "ephesus beg": [0, 65535], "beg thou": [0, 65535], "thou or": [0, 65535], "or borrow": [0, 65535], "borrow to": [0, 65535], "make vp": [0, 65535], "vp the": [0, 65535], "summe and": [0, 65535], "liue if": [0, 65535], "if no": [0, 65535], "no then": [0, 65535], "then thou": [0, 65535], "art doom'd": [0, 65535], "doom'd to": [0, 65535], "die iaylor": [0, 65535], "iaylor take": [0, 65535], "thy custodie": [0, 65535], "custodie iaylor": [0, 65535], "iaylor i": [0, 65535], "will my": [0, 65535], "lord merch": [0, 65535], "merch hopelesse": [0, 65535], "hopelesse and": [0, 65535], "and helpelesse": [0, 65535], "helpelesse doth": [0, 65535], "doth egean": [0, 65535], "egean wend": [0, 65535], "wend but": [0, 65535], "to procrastinate": [0, 65535], "procrastinate his": [0, 65535], "his liuelesse": [0, 65535], "liuelesse end": [0, 65535], "end exeunt": [0, 65535], "antipholis erotes": [0, 65535], "erotes a": [0, 65535], "a marchant": [0, 65535], "marchant and": [0, 65535], "dromio mer": [0, 65535], "mer therefore": [0, 65535], "therefore giue": [0, 65535], "giue out": [0, 65535], "are of": [0, 65535], "epidamium lest": [0, 65535], "lest that": [0, 65535], "goods too": [0, 65535], "soone be": [0, 65535], "be confiscate": [0, 65535], "confiscate this": [0, 65535], "this very": [0, 65535], "very day": [0, 65535], "a syracusian": [0, 65535], "syracusian marchant": [0, 65535], "marchant is": [0, 65535], "is apprehended": [0, 65535], "apprehended for": [0, 65535], "a riuall": [0, 65535], "riuall here": [0, 65535], "not being": [0, 65535], "being able": [0, 65535], "able to": [0, 65535], "buy out": [0, 65535], "life according": [0, 65535], "the statute": [0, 65535], "statute of": [0, 65535], "towne dies": [0, 65535], "dies ere": [0, 65535], "the wearie": [0, 65535], "wearie sunne": [0, 65535], "sunne set": [0, 65535], "the west": [0, 65535], "west there": [0, 65535], "your monie": [0, 65535], "monie that": [0, 65535], "keepe ant": [0, 65535], "ant goe": [0, 65535], "goe beare": [0, 65535], "beare it": [0, 65535], "the centaure": [0, 65535], "centaure where": [0, 65535], "where we": [0, 65535], "we host": [0, 65535], "stay there": [0, 65535], "dromio till": [0, 65535], "i come": [0, 65535], "thee within": [0, 65535], "houre it": [0, 65535], "be dinner": [0, 65535], "time till": [0, 65535], "till that": [0, 65535], "that ile": [0, 65535], "ile view": [0, 65535], "view the": [0, 65535], "the manners": [0, 65535], "manners of": [0, 65535], "towne peruse": [0, 65535], "peruse the": [0, 65535], "the traders": [0, 65535], "traders gaze": [0, 65535], "gaze vpon": [0, 65535], "the buildings": [0, 65535], "buildings and": [0, 65535], "then returne": [0, 65535], "returne and": [0, 65535], "and sleepe": [0, 65535], "sleepe within": [0, 65535], "within mine": [0, 65535], "mine inne": [0, 65535], "inne for": [0, 65535], "for with": [0, 65535], "with long": [0, 65535], "long trauaile": [0, 65535], "trauaile i": [0, 65535], "am stiffe": [0, 65535], "stiffe and": [0, 65535], "and wearie": [0, 65535], "wearie get": [0, 65535], "thee away": [0, 65535], "away dro": [0, 65535], "dro many": [0, 65535], "your word": [0, 65535], "and goe": [0, 65535], "goe indeede": [0, 65535], "indeede hauing": [0, 65535], "hauing so": [0, 65535], "good a": [0, 65535], "meane exit": [0, 65535], "exit dromio": [0, 65535], "dromio ant": [0, 65535], "ant a": [0, 65535], "a trustie": [0, 65535], "trustie villaine": [0, 65535], "villaine sir": [0, 65535], "very oft": [0, 65535], "oft when": [0, 65535], "am dull": [0, 65535], "dull with": [0, 65535], "with care": [0, 65535], "care and": [0, 65535], "and melancholly": [0, 65535], "melancholly lightens": [0, 65535], "lightens my": [0, 65535], "my humour": [0, 65535], "humour with": [0, 65535], "his merry": [0, 65535], "merry iests": [0, 65535], "iests what": [0, 65535], "what will": [0, 65535], "walke with": [0, 65535], "me about": [0, 65535], "towne and": [0, 65535], "then goe": [0, 65535], "goe to": [0, 65535], "my inne": [0, 65535], "inne and": [0, 65535], "and dine": [0, 65535], "me e": [0, 65535], "e mar": [0, 65535], "am inuited": [0, 65535], "inuited sir": [0, 65535], "to certaine": [0, 65535], "certaine marchants": [0, 65535], "marchants of": [0, 65535], "hope to": [0, 65535], "make much": [0, 65535], "much benefit": [0, 65535], "benefit i": [0, 65535], "i craue": [0, 65535], "craue your": [0, 65535], "your pardon": [0, 65535], "pardon soone": [0, 65535], "fiue a": [0, 65535], "clocke please": [0, 65535], "please you": [0, 65535], "you ile": [0, 65535], "ile meete": [0, 65535], "meete with": [0, 65535], "you vpon": [0, 65535], "and afterward": [0, 65535], "afterward consort": [0, 65535], "consort you": [0, 65535], "till bed": [0, 65535], "bed time": [0, 65535], "time my": [0, 65535], "my present": [0, 65535], "present businesse": [0, 65535], "businesse cals": [0, 65535], "cals me": [0, 65535], "you now": [0, 65535], "now ant": [0, 65535], "ant farewell": [0, 65535], "farewell till": [0, 65535], "will goe": [0, 65535], "goe loose": [0, 65535], "and wander": [0, 65535], "wander vp": [0, 65535], "vp and": [0, 65535], "and downe": [0, 65535], "downe to": [0, 65535], "citie e": [0, 65535], "mar sir": [0, 65535], "i commend": [0, 65535], "commend you": [0, 65535], "owne content": [0, 65535], "content exeunt": [0, 65535], "exeunt ant": [0, 65535], "he that": [0, 65535], "that commends": [0, 65535], "commends me": [0, 65535], "to mine": [0, 65535], "content commends": [0, 65535], "thing i": [0, 65535], "get i": [0, 65535], "world am": [0, 65535], "am like": [0, 65535], "water that": [0, 65535], "the ocean": [0, 65535], "ocean seekes": [0, 65535], "seekes another": [0, 65535], "another drop": [0, 65535], "drop who": [0, 65535], "who falling": [0, 65535], "falling there": [0, 65535], "there to": [0, 65535], "finde his": [0, 65535], "his fellow": [0, 65535], "fellow forth": [0, 65535], "forth vnseene": [0, 65535], "vnseene inquisitiue": [0, 65535], "inquisitiue confounds": [0, 65535], "confounds himselfe": [0, 65535], "himselfe so": [0, 65535], "finde a": [0, 65535], "a mother": [0, 65535], "mother and": [0, 65535], "brother in": [0, 65535], "in quest": [0, 65535], "them vnhappie": [0, 65535], "vnhappie a": [0, 65535], "a loose": [0, 65535], "selfe enter": [0, 65535], "ephesus here": [0, 65535], "here comes": [0, 65535], "comes the": [0, 65535], "the almanacke": [0, 65535], "almanacke of": [0, 65535], "my true": [0, 65535], "true date": [0, 65535], "date what": [0, 65535], "what now": [0, 65535], "now how": [0, 65535], "how chance": [0, 65535], "chance thou": [0, 65535], "art return'd": [0, 65535], "return'd so": [0, 65535], "so soone": [0, 65535], "soone e": [0, 65535], "dro return'd": [0, 65535], "soone rather": [0, 65535], "rather approacht": [0, 65535], "approacht too": [0, 65535], "late the": [0, 65535], "the capon": [0, 65535], "capon burnes": [0, 65535], "burnes the": [0, 65535], "the pig": [0, 65535], "pig fals": [0, 65535], "fals from": [0, 65535], "the spit": [0, 65535], "spit the": [0, 65535], "the clocke": [0, 65535], "clocke hath": [0, 65535], "hath strucken": [0, 65535], "strucken twelue": [0, 65535], "twelue vpon": [0, 65535], "bell my": [0, 65535], "my mistris": [0, 65535], "mistris made": [0, 65535], "it one": [0, 65535], "one vpon": [0, 65535], "my cheeke": [0, 65535], "cheeke she": [0, 65535], "so hot": [0, 65535], "hot because": [0, 65535], "the meate": [0, 65535], "meate is": [0, 65535], "is colde": [0, 65535], "colde the": [0, 65535], "colde because": [0, 65535], "come not": [0, 65535], "not home": [0, 65535], "home you": [0, 65535], "home because": [0, 65535], "no stomacke": [0, 65535], "stomacke you": [0, 65535], "stomacke hauing": [0, 65535], "hauing broke": [0, 65535], "broke your": [0, 65535], "your fast": [0, 65535], "fast but": [0, 65535], "but we": [0, 65535], "we that": [0, 65535], "what 'tis": [0, 65535], "to fast": [0, 65535], "and pray": [0, 65535], "pray are": [0, 65535], "are penitent": [0, 65535], "penitent for": [0, 65535], "your default": [0, 65535], "default to": [0, 65535], "day ant": [0, 65535], "ant stop": [0, 65535], "stop in": [0, 65535], "your winde": [0, 65535], "winde sir": [0, 65535], "sir tell": [0, 65535], "me this": [0, 65535], "pray where": [0, 65535], "where haue": [0, 65535], "you left": [0, 65535], "the mony": [0, 65535], "mony that": [0, 65535], "gaue you": [0, 65535], "oh sixe": [0, 65535], "sixe pence": [0, 65535], "pence that": [0, 65535], "a wensday": [0, 65535], "wensday last": [0, 65535], "the sadler": [0, 65535], "sadler for": [0, 65535], "mistris crupper": [0, 65535], "crupper the": [0, 65535], "sadler had": [0, 65535], "had it": [0, 65535], "it sir": [0, 65535], "i kept": [0, 65535], "kept it": [0, 65535], "a sportiue": [0, 65535], "sportiue humor": [0, 65535], "humor now": [0, 65535], "now tell": [0, 65535], "and dally": [0, 65535], "dally not": [0, 65535], "not where": [0, 65535], "the monie": [0, 65535], "monie we": [0, 65535], "we being": [0, 65535], "being strangers": [0, 65535], "strangers here": [0, 65535], "here how": [0, 65535], "how dar'st": [0, 65535], "dar'st thou": [0, 65535], "thou trust": [0, 65535], "trust so": [0, 65535], "great a": [0, 65535], "a charge": [0, 65535], "charge from": [0, 65535], "from thine": [0, 65535], "owne custodie": [0, 65535], "custodie e": [0, 65535], "you iest": [0, 65535], "iest sir": [0, 65535], "sir as": [0, 65535], "you sit": [0, 65535], "sit at": [0, 65535], "mistris come": [0, 65535], "in post": [0, 65535], "post if": [0, 65535], "i returne": [0, 65535], "returne i": [0, 65535], "be post": [0, 65535], "post indeede": [0, 65535], "indeede for": [0, 65535], "will scoure": [0, 65535], "scoure your": [0, 65535], "your fault": [0, 65535], "fault vpon": [0, 65535], "my pate": [0, 65535], "pate me": [0, 65535], "me thinkes": [0, 65535], "thinkes your": [0, 65535], "your maw": [0, 65535], "maw like": [0, 65535], "like mine": [0, 65535], "mine should": [0, 65535], "your cooke": [0, 65535], "cooke and": [0, 65535], "and strike": [0, 65535], "strike you": [0, 65535], "messenger ant": [0, 65535], "ant come": [0, 65535], "come dromio": [0, 65535], "come these": [0, 65535], "these iests": [0, 65535], "iests are": [0, 65535], "are out": [0, 65535], "season reserue": [0, 65535], "reserue them": [0, 65535], "them till": [0, 65535], "till a": [0, 65535], "a merrier": [0, 65535], "merrier houre": [0, 65535], "houre then": [0, 65535], "then this": [0, 65535], "this where": [0, 65535], "gaue in": [0, 65535], "in charge": [0, 65535], "charge to": [0, 65535], "thee e": [0, 65535], "dro to": [0, 65535], "gaue no": [0, 65535], "gold to": [0, 65535], "come on": [0, 65535], "on sir": [0, 65535], "knaue haue": [0, 65535], "done your": [0, 65535], "your foolishnes": [0, 65535], "foolishnes and": [0, 65535], "how thou": [0, 65535], "hast dispos'd": [0, 65535], "dispos'd thy": [0, 65535], "thy charge": [0, 65535], "charge e": [0, 65535], "dro my": [0, 65535], "my charge": [0, 65535], "charge was": [0, 65535], "fetch you": [0, 65535], "mart home": [0, 65535], "your house": [0, 65535], "house the": [0, 65535], "ph\u0153nix sir": [0, 65535], "mistris and": [0, 65535], "sister staies": [0, 65535], "staies for": [0, 65535], "ant now": [0, 65535], "now as": [0, 65535], "a christian": [0, 65535], "christian answer": [0, 65535], "answer me": [0, 65535], "what safe": [0, 65535], "place you": [0, 65535], "haue bestow'd": [0, 65535], "bestow'd my": [0, 65535], "my monie": [0, 65535], "monie or": [0, 65535], "shall breake": [0, 65535], "breake that": [0, 65535], "that merrie": [0, 65535], "merrie sconce": [0, 65535], "sconce of": [0, 65535], "of yours": [0, 65535], "yours that": [0, 65535], "that stands": [0, 65535], "stands on": [0, 65535], "on tricks": [0, 65535], "tricks when": [0, 65535], "am vndispos'd": [0, 65535], "vndispos'd where": [0, 65535], "markes thou": [0, 65535], "hadst of": [0, 65535], "haue some": [0, 65535], "some markes": [0, 65535], "markes of": [0, 65535], "yours vpon": [0, 65535], "pate some": [0, 65535], "mistris markes": [0, 65535], "markes vpon": [0, 65535], "markes betweene": [0, 65535], "both if": [0, 65535], "should pay": [0, 65535], "pay your": [0, 65535], "your worship": [0, 65535], "worship those": [0, 65535], "those againe": [0, 65535], "againe perchance": [0, 65535], "perchance you": [0, 65535], "not beare": [0, 65535], "them patiently": [0, 65535], "patiently ant": [0, 65535], "thy mistris": [0, 65535], "markes what": [0, 65535], "what mistris": [0, 65535], "mistris slaue": [0, 65535], "slaue hast": [0, 65535], "thou e": [0, 65535], "your worships": [0, 65535], "worships wife": [0, 65535], "wife my": [0, 65535], "mistris at": [0, 65535], "ph\u0153nix she": [0, 65535], "doth fast": [0, 65535], "fast till": [0, 65535], "and praies": [0, 65535], "praies that": [0, 65535], "will hie": [0, 65535], "hie you": [0, 65535], "what wilt": [0, 65535], "wilt thou": [0, 65535], "thou flout": [0, 65535], "flout me": [0, 65535], "thus vnto": [0, 65535], "face being": [0, 65535], "being forbid": [0, 65535], "forbid there": [0, 65535], "that sir": [0, 65535], "knaue e": [0, 65535], "what meane": [0, 65535], "sake hold": [0, 65535], "hands nay": [0, 65535], "nay and": [0, 65535], "take my": [0, 65535], "heeles exeunt": [0, 65535], "exeunt dromio": [0, 65535], "dromio ep": [0, 65535], "ep ant": [0, 65535], "ant vpon": [0, 65535], "life by": [0, 65535], "by some": [0, 65535], "some deuise": [0, 65535], "deuise or": [0, 65535], "the villaine": [0, 65535], "villaine is": [0, 65535], "is ore": [0, 65535], "ore wrought": [0, 65535], "wrought of": [0, 65535], "monie they": [0, 65535], "say this": [0, 65535], "is full": [0, 65535], "of cosenage": [0, 65535], "cosenage as": [0, 65535], "as nimble": [0, 65535], "nimble iuglers": [0, 65535], "iuglers that": [0, 65535], "that deceiue": [0, 65535], "deceiue the": [0, 65535], "eie darke": [0, 65535], "darke working": [0, 65535], "working sorcerers": [0, 65535], "sorcerers that": [0, 65535], "that change": [0, 65535], "change the": [0, 65535], "the minde": [0, 65535], "minde soule": [0, 65535], "soule killing": [0, 65535], "killing witches": [0, 65535], "witches that": [0, 65535], "that deforme": [0, 65535], "deforme the": [0, 65535], "the bodie": [0, 65535], "bodie disguised": [0, 65535], "disguised cheaters": [0, 65535], "cheaters prating": [0, 65535], "prating mountebankes": [0, 65535], "mountebankes and": [0, 65535], "and manie": [0, 65535], "manie such": [0, 65535], "such like": [0, 65535], "like liberties": [0, 65535], "liberties of": [0, 65535], "of sinne": [0, 65535], "sinne if": [0, 65535], "it proue": [0, 65535], "proue so": [0, 65535], "gone the": [0, 65535], "sooner ile": [0, 65535], "centaur to": [0, 65535], "to goe": [0, 65535], "goe seeke": [0, 65535], "seeke this": [0, 65535], "this slaue": [0, 65535], "slaue i": [0, 65535], "i greatly": [0, 65535], "greatly feare": [0, 65535], "feare my": [0, 65535], "monie is": [0, 65535], "not safe": [0, 65535], "the comedie of": [0, 65535], "comedie of errors": [0, 65535], "of errors actus": [0, 65535], "errors actus primus": [0, 65535], "actus primus scena": [0, 65535], "primus scena prima": [0, 65535], "of ephesus with": [0, 65535], "ephesus with the": [0, 65535], "with the merchant": [0, 65535], "merchant of siracusa": [0, 65535], "of siracusa iaylor": [0, 65535], "siracusa iaylor and": [0, 65535], "iaylor and other": [0, 65535], "and other attendants": [0, 65535], "other attendants marchant": [0, 65535], "attendants marchant broceed": [0, 65535], "marchant broceed solinus": [0, 65535], "broceed solinus to": [0, 65535], "solinus to procure": [0, 65535], "to procure my": [0, 65535], "procure my fall": [0, 65535], "my fall and": [0, 65535], "fall and by": [0, 65535], "and by the": [0, 65535], "by the doome": [0, 65535], "the doome of": [0, 65535], "doome of death": [0, 65535], "of death end": [0, 65535], "death end woes": [0, 65535], "end woes and": [0, 65535], "woes and all": [0, 65535], "and all duke": [0, 65535], "all duke merchant": [0, 65535], "duke merchant of": [0, 65535], "of siracusa plead": [0, 65535], "siracusa plead no": [0, 65535], "plead no more": [0, 65535], "no more i": [0, 65535], "more i am": [0, 65535], "am not partiall": [0, 65535], "not partiall to": [0, 65535], "partiall to infringe": [0, 65535], "to infringe our": [0, 65535], "infringe our lawes": [0, 65535], "our lawes the": [0, 65535], "lawes the enmity": [0, 65535], "the enmity and": [0, 65535], "enmity and discord": [0, 65535], "and discord which": [0, 65535], "discord which of": [0, 65535], "which of late": [0, 65535], "of late sprung": [0, 65535], "late sprung from": [0, 65535], "sprung from the": [0, 65535], "from the rancorous": [0, 65535], "the rancorous outrage": [0, 65535], "rancorous outrage of": [0, 65535], "outrage of your": [0, 65535], "of your duke": [0, 65535], "your duke to": [0, 65535], "duke to merchants": [0, 65535], "to merchants our": [0, 65535], "merchants our well": [0, 65535], "our well dealing": [0, 65535], "well dealing countrimen": [0, 65535], "dealing countrimen who": [0, 65535], "countrimen who wanting": [0, 65535], "who wanting gilders": [0, 65535], "wanting gilders to": [0, 65535], "gilders to redeeme": [0, 65535], "to redeeme their": [0, 65535], "redeeme their liues": [0, 65535], "their liues haue": [0, 65535], "liues haue seal'd": [0, 65535], "haue seal'd his": [0, 65535], "seal'd his rigorous": [0, 65535], "his rigorous statutes": [0, 65535], "rigorous statutes with": [0, 65535], "statutes with their": [0, 65535], "with their blouds": [0, 65535], "their blouds excludes": [0, 65535], "blouds excludes all": [0, 65535], "excludes all pitty": [0, 65535], "all pitty from": [0, 65535], "pitty from our": [0, 65535], "from our threatning": [0, 65535], "our threatning lookes": [0, 65535], "threatning lookes for": [0, 65535], "lookes for since": [0, 65535], "for since the": [0, 65535], "since the mortall": [0, 65535], "the mortall and": [0, 65535], "mortall and intestine": [0, 65535], "and intestine iarres": [0, 65535], "intestine iarres twixt": [0, 65535], "iarres twixt thy": [0, 65535], "twixt thy seditious": [0, 65535], "thy seditious countrimen": [0, 65535], "seditious countrimen and": [0, 65535], "countrimen and vs": [0, 65535], "and vs it": [0, 65535], "vs it hath": [0, 65535], "it hath in": [0, 65535], "hath in solemne": [0, 65535], "in solemne synodes": [0, 65535], "solemne synodes beene": [0, 65535], "synodes beene decreed": [0, 65535], "beene decreed both": [0, 65535], "decreed both by": [0, 65535], "both by the": [0, 65535], "by the siracusians": [0, 65535], "the siracusians and": [0, 65535], "siracusians and our": [0, 65535], "and our selues": [0, 65535], "our selues to": [0, 65535], "selues to admit": [0, 65535], "to admit no": [0, 65535], "admit no trafficke": [0, 65535], "no trafficke to": [0, 65535], "trafficke to our": [0, 65535], "to our aduerse": [0, 65535], "our aduerse townes": [0, 65535], "aduerse townes nay": [0, 65535], "townes nay more": [0, 65535], "nay more if": [0, 65535], "more if any": [0, 65535], "if any borne": [0, 65535], "any borne at": [0, 65535], "borne at ephesus": [0, 65535], "at ephesus be": [0, 65535], "ephesus be seene": [0, 65535], "be seene at": [0, 65535], "seene at any": [0, 65535], "at any siracusian": [0, 65535], "any siracusian marts": [0, 65535], "siracusian marts and": [0, 65535], "marts and fayres": [0, 65535], "and fayres againe": [0, 65535], "fayres againe if": [0, 65535], "againe if any": [0, 65535], "if any siracusian": [0, 65535], "any siracusian borne": [0, 65535], "siracusian borne come": [0, 65535], "borne come to": [0, 65535], "to the bay": [0, 65535], "the bay of": [0, 65535], "bay of ephesus": [0, 65535], "of ephesus he": [0, 65535], "ephesus he dies": [0, 65535], "he dies his": [0, 65535], "dies his goods": [0, 65535], "his goods confiscate": [0, 65535], "goods confiscate to": [0, 65535], "confiscate to the": [0, 65535], "to the dukes": [0, 65535], "the dukes dispose": [0, 65535], "dukes dispose vnlesse": [0, 65535], "dispose vnlesse a": [0, 65535], "vnlesse a thousand": [0, 65535], "thousand markes be": [0, 65535], "markes be leuied": [0, 65535], "be leuied to": [0, 65535], "leuied to quit": [0, 65535], "to quit the": [0, 65535], "quit the penalty": [0, 65535], "the penalty and": [0, 65535], "penalty and to": [0, 65535], "and to ransome": [0, 65535], "to ransome him": [0, 65535], "ransome him thy": [0, 65535], "him thy substance": [0, 65535], "thy substance valued": [0, 65535], "substance valued at": [0, 65535], "valued at the": [0, 65535], "at the highest": [0, 65535], "the highest rate": [0, 65535], "highest rate cannot": [0, 65535], "rate cannot amount": [0, 65535], "cannot amount vnto": [0, 65535], "amount vnto a": [0, 65535], "vnto a hundred": [0, 65535], "hundred markes therefore": [0, 65535], "markes therefore by": [0, 65535], "therefore by law": [0, 65535], "by law thou": [0, 65535], "law thou art": [0, 65535], "thou art condemn'd": [0, 65535], "art condemn'd to": [0, 65535], "condemn'd to die": [0, 65535], "to die mer": [0, 65535], "die mer yet": [0, 65535], "mer yet this": [0, 65535], "yet this my": [0, 65535], "this my comfort": [0, 65535], "my comfort when": [0, 65535], "comfort when your": [0, 65535], "when your words": [0, 65535], "your words are": [0, 65535], "words are done": [0, 65535], "are done my": [0, 65535], "done my woes": [0, 65535], "my woes end": [0, 65535], "woes end likewise": [0, 65535], "end likewise with": [0, 65535], "likewise with the": [0, 65535], "with the euening": [0, 65535], "the euening sonne": [0, 65535], "euening sonne duk": [0, 65535], "sonne duk well": [0, 65535], "duk well siracusian": [0, 65535], "well siracusian say": [0, 65535], "siracusian say in": [0, 65535], "say in briefe": [0, 65535], "in briefe the": [0, 65535], "briefe the cause": [0, 65535], "the cause why": [0, 65535], "cause why thou": [0, 65535], "why thou departedst": [0, 65535], "thou departedst from": [0, 65535], "departedst from thy": [0, 65535], "from thy natiue": [0, 65535], "thy natiue home": [0, 65535], "natiue home and": [0, 65535], "home and for": [0, 65535], "and for what": [0, 65535], "for what cause": [0, 65535], "what cause thou": [0, 65535], "cause thou cam'st": [0, 65535], "thou cam'st to": [0, 65535], "cam'st to ephesus": [0, 65535], "to ephesus mer": [0, 65535], "ephesus mer a": [0, 65535], "mer a heauier": [0, 65535], "a heauier taske": [0, 65535], "heauier taske could": [0, 65535], "taske could not": [0, 65535], "could not haue": [0, 65535], "not haue beene": [0, 65535], "haue beene impos'd": [0, 65535], "beene impos'd then": [0, 65535], "impos'd then i": [0, 65535], "then i to": [0, 65535], "i to speake": [0, 65535], "to speake my": [0, 65535], "speake my griefes": [0, 65535], "my griefes vnspeakeable": [0, 65535], "griefes vnspeakeable yet": [0, 65535], "vnspeakeable yet that": [0, 65535], "yet that the": [0, 65535], "that the world": [0, 65535], "the world may": [0, 65535], "world may witnesse": [0, 65535], "may witnesse that": [0, 65535], "witnesse that my": [0, 65535], "that my end": [0, 65535], "my end was": [0, 65535], "end was wrought": [0, 65535], "was wrought by": [0, 65535], "wrought by nature": [0, 65535], "by nature not": [0, 65535], "nature not by": [0, 65535], "not by vile": [0, 65535], "by vile offence": [0, 65535], "vile offence ile": [0, 65535], "offence ile vtter": [0, 65535], "ile vtter what": [0, 65535], "vtter what my": [0, 65535], "what my sorrow": [0, 65535], "my sorrow giues": [0, 65535], "sorrow giues me": [0, 65535], "giues me leaue": [0, 65535], "me leaue in": [0, 65535], "leaue in syracusa": [0, 65535], "in syracusa was": [0, 65535], "syracusa was i": [0, 65535], "was i borne": [0, 65535], "i borne and": [0, 65535], "borne and wedde": [0, 65535], "and wedde vnto": [0, 65535], "wedde vnto a": [0, 65535], "vnto a woman": [0, 65535], "a woman happy": [0, 65535], "woman happy but": [0, 65535], "happy but for": [0, 65535], "but for me": [0, 65535], "me and by": [0, 65535], "and by me": [0, 65535], "by me had": [0, 65535], "me had not": [0, 65535], "had not our": [0, 65535], "not our hap": [0, 65535], "our hap beene": [0, 65535], "hap beene bad": [0, 65535], "beene bad with": [0, 65535], "bad with her": [0, 65535], "with her i": [0, 65535], "her i liu'd": [0, 65535], "i liu'd in": [0, 65535], "liu'd in ioy": [0, 65535], "in ioy our": [0, 65535], "ioy our wealth": [0, 65535], "our wealth increast": [0, 65535], "wealth increast by": [0, 65535], "increast by prosperous": [0, 65535], "by prosperous voyages": [0, 65535], "prosperous voyages i": [0, 65535], "voyages i often": [0, 65535], "i often made": [0, 65535], "often made to": [0, 65535], "made to epidamium": [0, 65535], "to epidamium till": [0, 65535], "epidamium till my": [0, 65535], "till my factors": [0, 65535], "my factors death": [0, 65535], "factors death and": [0, 65535], "death and he": [0, 65535], "and he great": [0, 65535], "he great care": [0, 65535], "great care of": [0, 65535], "care of goods": [0, 65535], "of goods at": [0, 65535], "goods at randone": [0, 65535], "at randone left": [0, 65535], "randone left drew": [0, 65535], "left drew me": [0, 65535], "drew me from": [0, 65535], "me from kinde": [0, 65535], "from kinde embracements": [0, 65535], "kinde embracements of": [0, 65535], "embracements of my": [0, 65535], "of my spouse": [0, 65535], "my spouse from": [0, 65535], "spouse from whom": [0, 65535], "from whom my": [0, 65535], "whom my absence": [0, 65535], "my absence was": [0, 65535], "absence was not": [0, 65535], "was not sixe": [0, 65535], "not sixe moneths": [0, 65535], "sixe moneths olde": [0, 65535], "moneths olde before": [0, 65535], "olde before her": [0, 65535], "before her selfe": [0, 65535], "her selfe almost": [0, 65535], "selfe almost at": [0, 65535], "almost at fainting": [0, 65535], "at fainting vnder": [0, 65535], "fainting vnder the": [0, 65535], "vnder the pleasing": [0, 65535], "the pleasing punishment": [0, 65535], "pleasing punishment that": [0, 65535], "punishment that women": [0, 65535], "that women beare": [0, 65535], "women beare had": [0, 65535], "beare had made": [0, 65535], "had made prouision": [0, 65535], "made prouision for": [0, 65535], "prouision for her": [0, 65535], "for her following": [0, 65535], "her following me": [0, 65535], "following me and": [0, 65535], "me and soone": [0, 65535], "and soone and": [0, 65535], "soone and safe": [0, 65535], "and safe arriued": [0, 65535], "safe arriued where": [0, 65535], "arriued where i": [0, 65535], "where i was": [0, 65535], "i was there": [0, 65535], "was there had": [0, 65535], "there had she": [0, 65535], "had she not": [0, 65535], "she not beene": [0, 65535], "not beene long": [0, 65535], "beene long but": [0, 65535], "long but she": [0, 65535], "but she became": [0, 65535], "she became a": [0, 65535], "became a ioyfull": [0, 65535], "a ioyfull mother": [0, 65535], "ioyfull mother of": [0, 65535], "mother of two": [0, 65535], "of two goodly": [0, 65535], "two goodly sonnes": [0, 65535], "goodly sonnes and": [0, 65535], "sonnes and which": [0, 65535], "and which was": [0, 65535], "which was strange": [0, 65535], "was strange the": [0, 65535], "strange the one": [0, 65535], "the one so": [0, 65535], "one so like": [0, 65535], "so like the": [0, 65535], "like the other": [0, 65535], "the other as": [0, 65535], "other as could": [0, 65535], "as could not": [0, 65535], "could not be": [0, 65535], "not be distinguish'd": [0, 65535], "be distinguish'd but": [0, 65535], "distinguish'd but by": [0, 65535], "but by names": [0, 65535], "by names that": [0, 65535], "names that very": [0, 65535], "that very howre": [0, 65535], "very howre and": [0, 65535], "howre and in": [0, 65535], "and in the": [0, 65535], "in the selfe": [0, 65535], "the selfe same": [0, 65535], "selfe same inne": [0, 65535], "same inne a": [0, 65535], "inne a meane": [0, 65535], "a meane woman": [0, 65535], "meane woman was": [0, 65535], "woman was deliuered": [0, 65535], "was deliuered of": [0, 65535], "deliuered of such": [0, 65535], "of such a": [0, 65535], "such a burthen": [0, 65535], "a burthen male": [0, 65535], "burthen male twins": [0, 65535], "male twins both": [0, 65535], "twins both alike": [0, 65535], "both alike those": [0, 65535], "alike those for": [0, 65535], "those for their": [0, 65535], "for their parents": [0, 65535], "their parents were": [0, 65535], "parents were exceeding": [0, 65535], "were exceeding poore": [0, 65535], "exceeding poore i": [0, 65535], "poore i bought": [0, 65535], "i bought and": [0, 65535], "bought and brought": [0, 65535], "and brought vp": [0, 65535], "brought vp to": [0, 65535], "vp to attend": [0, 65535], "to attend my": [0, 65535], "attend my sonnes": [0, 65535], "my sonnes my": [0, 65535], "sonnes my wife": [0, 65535], "my wife not": [0, 65535], "wife not meanely": [0, 65535], "not meanely prowd": [0, 65535], "meanely prowd of": [0, 65535], "prowd of two": [0, 65535], "of two such": [0, 65535], "two such boyes": [0, 65535], "such boyes made": [0, 65535], "boyes made daily": [0, 65535], "made daily motions": [0, 65535], "daily motions for": [0, 65535], "motions for our": [0, 65535], "for our home": [0, 65535], "our home returne": [0, 65535], "home returne vnwilling": [0, 65535], "returne vnwilling i": [0, 65535], "vnwilling i agreed": [0, 65535], "i agreed alas": [0, 65535], "agreed alas too": [0, 65535], "alas too soone": [0, 65535], "too soone wee": [0, 65535], "soone wee came": [0, 65535], "wee came aboord": [0, 65535], "came aboord a": [0, 65535], "aboord a league": [0, 65535], "a league from": [0, 65535], "league from epidamium": [0, 65535], "from epidamium had": [0, 65535], "epidamium had we": [0, 65535], "had we saild": [0, 65535], "we saild before": [0, 65535], "saild before the": [0, 65535], "before the alwaies": [0, 65535], "the alwaies winde": [0, 65535], "alwaies winde obeying": [0, 65535], "winde obeying deepe": [0, 65535], "obeying deepe gaue": [0, 65535], "deepe gaue any": [0, 65535], "gaue any tragicke": [0, 65535], "any tragicke instance": [0, 65535], "tragicke instance of": [0, 65535], "instance of our": [0, 65535], "of our harme": [0, 65535], "our harme but": [0, 65535], "harme but longer": [0, 65535], "but longer did": [0, 65535], "longer did we": [0, 65535], "did we not": [0, 65535], "we not retaine": [0, 65535], "not retaine much": [0, 65535], "retaine much hope": [0, 65535], "much hope for": [0, 65535], "hope for what": [0, 65535], "for what obscured": [0, 65535], "what obscured light": [0, 65535], "obscured light the": [0, 65535], "light the heauens": [0, 65535], "the heauens did": [0, 65535], "heauens did grant": [0, 65535], "did grant did": [0, 65535], "grant did but": [0, 65535], "did but conuay": [0, 65535], "but conuay vnto": [0, 65535], "conuay vnto our": [0, 65535], "vnto our fearefull": [0, 65535], "our fearefull mindes": [0, 65535], "fearefull mindes a": [0, 65535], "mindes a doubtfull": [0, 65535], "a doubtfull warrant": [0, 65535], "doubtfull warrant of": [0, 65535], "warrant of immediate": [0, 65535], "of immediate death": [0, 65535], "immediate death which": [0, 65535], "death which though": [0, 65535], "which though my": [0, 65535], "though my selfe": [0, 65535], "my selfe would": [0, 65535], "selfe would gladly": [0, 65535], "would gladly haue": [0, 65535], "gladly haue imbrac'd": [0, 65535], "haue imbrac'd yet": [0, 65535], "imbrac'd yet the": [0, 65535], "yet the incessant": [0, 65535], "the incessant weepings": [0, 65535], "incessant weepings of": [0, 65535], "weepings of my": [0, 65535], "of my wife": [0, 65535], "my wife weeping": [0, 65535], "wife weeping before": [0, 65535], "weeping before for": [0, 65535], "before for what": [0, 65535], "for what she": [0, 65535], "what she saw": [0, 65535], "she saw must": [0, 65535], "saw must come": [0, 65535], "must come and": [0, 65535], "come and pitteous": [0, 65535], "and pitteous playnings": [0, 65535], "pitteous playnings of": [0, 65535], "playnings of the": [0, 65535], "of the prettie": [0, 65535], "the prettie babes": [0, 65535], "prettie babes that": [0, 65535], "babes that mourn'd": [0, 65535], "that mourn'd for": [0, 65535], "mourn'd for fashion": [0, 65535], "for fashion ignorant": [0, 65535], "fashion ignorant what": [0, 65535], "ignorant what to": [0, 65535], "what to feare": [0, 65535], "to feare forst": [0, 65535], "feare forst me": [0, 65535], "forst me to": [0, 65535], "me to seeke": [0, 65535], "to seeke delayes": [0, 65535], "seeke delayes for": [0, 65535], "delayes for them": [0, 65535], "for them and": [0, 65535], "and me and": [0, 65535], "and this it": [0, 65535], "this it was": [0, 65535], "was for other": [0, 65535], "for other meanes": [0, 65535], "other meanes was": [0, 65535], "meanes was none": [0, 65535], "was none the": [0, 65535], "none the sailors": [0, 65535], "the sailors sought": [0, 65535], "sailors sought for": [0, 65535], "sought for safety": [0, 65535], "for safety by": [0, 65535], "safety by our": [0, 65535], "by our boate": [0, 65535], "our boate and": [0, 65535], "boate and left": [0, 65535], "and left the": [0, 65535], "left the ship": [0, 65535], "the ship then": [0, 65535], "ship then sinking": [0, 65535], "then sinking ripe": [0, 65535], "sinking ripe to": [0, 65535], "ripe to vs": [0, 65535], "to vs my": [0, 65535], "vs my wife": [0, 65535], "my wife more": [0, 65535], "wife more carefull": [0, 65535], "more carefull for": [0, 65535], "carefull for the": [0, 65535], "for the latter": [0, 65535], "the latter borne": [0, 65535], "latter borne had": [0, 65535], "borne had fastned": [0, 65535], "had fastned him": [0, 65535], "fastned him vnto": [0, 65535], "him vnto a": [0, 65535], "vnto a small": [0, 65535], "a small spare": [0, 65535], "small spare mast": [0, 65535], "spare mast such": [0, 65535], "mast such as": [0, 65535], "such as sea": [0, 65535], "as sea faring": [0, 65535], "sea faring men": [0, 65535], "faring men prouide": [0, 65535], "men prouide for": [0, 65535], "prouide for stormes": [0, 65535], "for stormes to": [0, 65535], "stormes to him": [0, 65535], "to him one": [0, 65535], "him one of": [0, 65535], "the other twins": [0, 65535], "other twins was": [0, 65535], "twins was bound": [0, 65535], "was bound whil'st": [0, 65535], "bound whil'st i": [0, 65535], "whil'st i had": [0, 65535], "i had beene": [0, 65535], "had beene like": [0, 65535], "beene like heedfull": [0, 65535], "like heedfull of": [0, 65535], "heedfull of the": [0, 65535], "the other the": [0, 65535], "other the children": [0, 65535], "the children thus": [0, 65535], "children thus dispos'd": [0, 65535], "thus dispos'd my": [0, 65535], "dispos'd my wife": [0, 65535], "wife and i": [0, 65535], "and i fixing": [0, 65535], "i fixing our": [0, 65535], "fixing our eyes": [0, 65535], "our eyes on": [0, 65535], "eyes on whom": [0, 65535], "on whom our": [0, 65535], "whom our care": [0, 65535], "our care was": [0, 65535], "care was fixt": [0, 65535], "was fixt fastned": [0, 65535], "fixt fastned our": [0, 65535], "fastned our selues": [0, 65535], "our selues at": [0, 65535], "selues at eyther": [0, 65535], "at eyther end": [0, 65535], "eyther end the": [0, 65535], "end the mast": [0, 65535], "the mast and": [0, 65535], "mast and floating": [0, 65535], "and floating straight": [0, 65535], "floating straight obedient": [0, 65535], "straight obedient to": [0, 65535], "obedient to the": [0, 65535], "to the streame": [0, 65535], "the streame was": [0, 65535], "streame was carried": [0, 65535], "was carried towards": [0, 65535], "carried towards corinth": [0, 65535], "towards corinth as": [0, 65535], "corinth as we": [0, 65535], "as we thought": [0, 65535], "we thought at": [0, 65535], "thought at length": [0, 65535], "at length the": [0, 65535], "length the sonne": [0, 65535], "the sonne gazing": [0, 65535], "sonne gazing vpon": [0, 65535], "gazing vpon the": [0, 65535], "vpon the earth": [0, 65535], "the earth disperst": [0, 65535], "earth disperst those": [0, 65535], "disperst those vapours": [0, 65535], "those vapours that": [0, 65535], "vapours that offended": [0, 65535], "that offended vs": [0, 65535], "offended vs and": [0, 65535], "vs and by": [0, 65535], "by the benefit": [0, 65535], "the benefit of": [0, 65535], "benefit of his": [0, 65535], "of his wished": [0, 65535], "his wished light": [0, 65535], "wished light the": [0, 65535], "light the seas": [0, 65535], "the seas waxt": [0, 65535], "seas waxt calme": [0, 65535], "waxt calme and": [0, 65535], "calme and we": [0, 65535], "and we discouered": [0, 65535], "we discouered two": [0, 65535], "discouered two shippes": [0, 65535], "two shippes from": [0, 65535], "shippes from farre": [0, 65535], "from farre making": [0, 65535], "farre making amaine": [0, 65535], "making amaine to": [0, 65535], "amaine to vs": [0, 65535], "to vs of": [0, 65535], "vs of corinth": [0, 65535], "of corinth that": [0, 65535], "corinth that of": [0, 65535], "that of epidarus": [0, 65535], "of epidarus this": [0, 65535], "epidarus this but": [0, 65535], "this but ere": [0, 65535], "but ere they": [0, 65535], "ere they came": [0, 65535], "they came oh": [0, 65535], "came oh let": [0, 65535], "oh let me": [0, 65535], "let me say": [0, 65535], "me say no": [0, 65535], "say no more": [0, 65535], "no more gather": [0, 65535], "more gather the": [0, 65535], "gather the sequell": [0, 65535], "the sequell by": [0, 65535], "sequell by that": [0, 65535], "by that went": [0, 65535], "that went before": [0, 65535], "went before duk": [0, 65535], "before duk nay": [0, 65535], "duk nay forward": [0, 65535], "nay forward old": [0, 65535], "forward old man": [0, 65535], "old man doe": [0, 65535], "man doe not": [0, 65535], "doe not breake": [0, 65535], "not breake off": [0, 65535], "breake off so": [0, 65535], "off so for": [0, 65535], "so for we": [0, 65535], "for we may": [0, 65535], "we may pitty": [0, 65535], "may pitty though": [0, 65535], "pitty though not": [0, 65535], "though not pardon": [0, 65535], "not pardon thee": [0, 65535], "pardon thee merch": [0, 65535], "thee merch oh": [0, 65535], "merch oh had": [0, 65535], "oh had the": [0, 65535], "had the gods": [0, 65535], "the gods done": [0, 65535], "gods done so": [0, 65535], "done so i": [0, 65535], "so i had": [0, 65535], "i had not": [0, 65535], "had not now": [0, 65535], "not now worthily": [0, 65535], "now worthily tearm'd": [0, 65535], "worthily tearm'd them": [0, 65535], "tearm'd them mercilesse": [0, 65535], "them mercilesse to": [0, 65535], "mercilesse to vs": [0, 65535], "to vs for": [0, 65535], "vs for ere": [0, 65535], "for ere the": [0, 65535], "ere the ships": [0, 65535], "the ships could": [0, 65535], "ships could meet": [0, 65535], "could meet by": [0, 65535], "meet by twice": [0, 65535], "by twice fiue": [0, 65535], "twice fiue leagues": [0, 65535], "fiue leagues we": [0, 65535], "leagues we were": [0, 65535], "we were encountred": [0, 65535], "were encountred by": [0, 65535], "encountred by a": [0, 65535], "by a mighty": [0, 65535], "a mighty rocke": [0, 65535], "mighty rocke which": [0, 65535], "rocke which being": [0, 65535], "which being violently": [0, 65535], "being violently borne": [0, 65535], "violently borne vp": [0, 65535], "borne vp our": [0, 65535], "vp our helpefull": [0, 65535], "our helpefull ship": [0, 65535], "helpefull ship was": [0, 65535], "ship was splitted": [0, 65535], "was splitted in": [0, 65535], "splitted in the": [0, 65535], "the midst so": [0, 65535], "midst so that": [0, 65535], "so that in": [0, 65535], "that in this": [0, 65535], "in this vniust": [0, 65535], "this vniust diuorce": [0, 65535], "vniust diuorce of": [0, 65535], "diuorce of vs": [0, 65535], "of vs fortune": [0, 65535], "vs fortune had": [0, 65535], "fortune had left": [0, 65535], "had left to": [0, 65535], "left to both": [0, 65535], "to both of": [0, 65535], "both of vs": [0, 65535], "of vs alike": [0, 65535], "vs alike what": [0, 65535], "alike what to": [0, 65535], "what to delight": [0, 65535], "to delight in": [0, 65535], "delight in what": [0, 65535], "in what to": [0, 65535], "what to sorrow": [0, 65535], "to sorrow for": [0, 65535], "sorrow for her": [0, 65535], "for her part": [0, 65535], "her part poore": [0, 65535], "part poore soule": [0, 65535], "poore soule seeming": [0, 65535], "soule seeming as": [0, 65535], "seeming as burdened": [0, 65535], "as burdened with": [0, 65535], "burdened with lesser": [0, 65535], "with lesser waight": [0, 65535], "lesser waight but": [0, 65535], "waight but not": [0, 65535], "not with lesser": [0, 65535], "with lesser woe": [0, 65535], "lesser woe was": [0, 65535], "woe was carried": [0, 65535], "was carried with": [0, 65535], "carried with more": [0, 65535], "with more speed": [0, 65535], "more speed before": [0, 65535], "speed before the": [0, 65535], "before the winde": [0, 65535], "the winde and": [0, 65535], "winde and in": [0, 65535], "and in our": [0, 65535], "in our sight": [0, 65535], "our sight they": [0, 65535], "sight they three": [0, 65535], "they three were": [0, 65535], "three were taken": [0, 65535], "taken vp by": [0, 65535], "vp by fishermen": [0, 65535], "by fishermen of": [0, 65535], "of corinth as": [0, 65535], "at length another": [0, 65535], "length another ship": [0, 65535], "another ship had": [0, 65535], "ship had seiz'd": [0, 65535], "had seiz'd on": [0, 65535], "seiz'd on vs": [0, 65535], "vs and knowing": [0, 65535], "and knowing whom": [0, 65535], "knowing whom it": [0, 65535], "whom it was": [0, 65535], "it was their": [0, 65535], "was their hap": [0, 65535], "their hap to": [0, 65535], "hap to saue": [0, 65535], "to saue gaue": [0, 65535], "saue gaue healthfull": [0, 65535], "gaue healthfull welcome": [0, 65535], "healthfull welcome to": [0, 65535], "welcome to their": [0, 65535], "to their ship": [0, 65535], "their ship wrackt": [0, 65535], "ship wrackt guests": [0, 65535], "wrackt guests and": [0, 65535], "guests and would": [0, 65535], "and would haue": [0, 65535], "would haue reft": [0, 65535], "haue reft the": [0, 65535], "reft the fishers": [0, 65535], "the fishers of": [0, 65535], "fishers of their": [0, 65535], "of their prey": [0, 65535], "their prey had": [0, 65535], "prey had not": [0, 65535], "had not their": [0, 65535], "not their backe": [0, 65535], "their backe beene": [0, 65535], "backe beene very": [0, 65535], "beene very slow": [0, 65535], "very slow of": [0, 65535], "slow of saile": [0, 65535], "of saile and": [0, 65535], "saile and therefore": [0, 65535], "and therefore homeward": [0, 65535], "therefore homeward did": [0, 65535], "homeward did they": [0, 65535], "did they bend": [0, 65535], "they bend their": [0, 65535], "bend their course": [0, 65535], "their course thus": [0, 65535], "course thus haue": [0, 65535], "thus haue you": [0, 65535], "haue you heard": [0, 65535], "you heard me": [0, 65535], "heard me seuer'd": [0, 65535], "me seuer'd from": [0, 65535], "seuer'd from my": [0, 65535], "from my blisse": [0, 65535], "my blisse that": [0, 65535], "blisse that by": [0, 65535], "that by misfortunes": [0, 65535], "by misfortunes was": [0, 65535], "misfortunes was my": [0, 65535], "was my life": [0, 65535], "my life prolong'd": [0, 65535], "life prolong'd to": [0, 65535], "prolong'd to tell": [0, 65535], "to tell sad": [0, 65535], "tell sad stories": [0, 65535], "sad stories of": [0, 65535], "stories of my": [0, 65535], "of my owne": [0, 65535], "my owne mishaps": [0, 65535], "owne mishaps duke": [0, 65535], "mishaps duke and": [0, 65535], "duke and for": [0, 65535], "for the sake": [0, 65535], "the sake of": [0, 65535], "sake of them": [0, 65535], "of them thou": [0, 65535], "them thou sorrowest": [0, 65535], "thou sorrowest for": [0, 65535], "sorrowest for doe": [0, 65535], "for doe me": [0, 65535], "doe me the": [0, 65535], "me the fauour": [0, 65535], "the fauour to": [0, 65535], "fauour to dilate": [0, 65535], "to dilate at": [0, 65535], "dilate at full": [0, 65535], "at full what": [0, 65535], "full what haue": [0, 65535], "what haue befalne": [0, 65535], "haue befalne of": [0, 65535], "befalne of them": [0, 65535], "of them and": [0, 65535], "them and they": [0, 65535], "and they till": [0, 65535], "they till now": [0, 65535], "till now merch": [0, 65535], "now merch my": [0, 65535], "merch my yongest": [0, 65535], "my yongest boy": [0, 65535], "yongest boy and": [0, 65535], "boy and yet": [0, 65535], "and yet my": [0, 65535], "yet my eldest": [0, 65535], "my eldest care": [0, 65535], "eldest care at": [0, 65535], "care at eighteene": [0, 65535], "at eighteene yeeres": [0, 65535], "eighteene yeeres became": [0, 65535], "yeeres became inquisitiue": [0, 65535], "became inquisitiue after": [0, 65535], "inquisitiue after his": [0, 65535], "after his brother": [0, 65535], "his brother and": [0, 65535], "brother and importun'd": [0, 65535], "and importun'd me": [0, 65535], "importun'd me that": [0, 65535], "me that his": [0, 65535], "that his attendant": [0, 65535], "his attendant so": [0, 65535], "attendant so his": [0, 65535], "so his case": [0, 65535], "his case was": [0, 65535], "case was like": [0, 65535], "was like reft": [0, 65535], "like reft of": [0, 65535], "reft of his": [0, 65535], "of his brother": [0, 65535], "his brother but": [0, 65535], "brother but retain'd": [0, 65535], "but retain'd his": [0, 65535], "retain'd his name": [0, 65535], "his name might": [0, 65535], "name might beare": [0, 65535], "might beare him": [0, 65535], "beare him company": [0, 65535], "him company in": [0, 65535], "company in the": [0, 65535], "in the quest": [0, 65535], "the quest of": [0, 65535], "quest of him": [0, 65535], "of him whom": [0, 65535], "him whom whil'st": [0, 65535], "whom whil'st i": [0, 65535], "whil'st i laboured": [0, 65535], "i laboured of": [0, 65535], "laboured of a": [0, 65535], "of a loue": [0, 65535], "a loue to": [0, 65535], "loue to see": [0, 65535], "to see i": [0, 65535], "see i hazarded": [0, 65535], "i hazarded the": [0, 65535], "hazarded the losse": [0, 65535], "the losse of": [0, 65535], "losse of whom": [0, 65535], "of whom i": [0, 65535], "whom i lou'd": [0, 65535], "i lou'd fiue": [0, 65535], "lou'd fiue sommers": [0, 65535], "fiue sommers haue": [0, 65535], "sommers haue i": [0, 65535], "haue i spent": [0, 65535], "i spent in": [0, 65535], "spent in farthest": [0, 65535], "in farthest greece": [0, 65535], "farthest greece roming": [0, 65535], "greece roming cleane": [0, 65535], "roming cleane through": [0, 65535], "cleane through the": [0, 65535], "through the bounds": [0, 65535], "the bounds of": [0, 65535], "bounds of asia": [0, 65535], "of asia and": [0, 65535], "asia and coasting": [0, 65535], "and coasting homeward": [0, 65535], "coasting homeward came": [0, 65535], "homeward came to": [0, 65535], "came to ephesus": [0, 65535], "to ephesus hopelesse": [0, 65535], "ephesus hopelesse to": [0, 65535], "hopelesse to finde": [0, 65535], "to finde yet": [0, 65535], "finde yet loth": [0, 65535], "yet loth to": [0, 65535], "loth to leaue": [0, 65535], "to leaue vnsought": [0, 65535], "leaue vnsought or": [0, 65535], "vnsought or that": [0, 65535], "or that or": [0, 65535], "that or any": [0, 65535], "or any place": [0, 65535], "any place that": [0, 65535], "place that harbours": [0, 65535], "that harbours men": [0, 65535], "harbours men but": [0, 65535], "men but heere": [0, 65535], "but heere must": [0, 65535], "heere must end": [0, 65535], "must end the": [0, 65535], "end the story": [0, 65535], "the story of": [0, 65535], "story of my": [0, 65535], "of my life": [0, 65535], "life and happy": [0, 65535], "and happy were": [0, 65535], "happy were i": [0, 65535], "were i in": [0, 65535], "i in my": [0, 65535], "in my timelie": [0, 65535], "my timelie death": [0, 65535], "timelie death could": [0, 65535], "death could all": [0, 65535], "could all my": [0, 65535], "all my trauells": [0, 65535], "my trauells warrant": [0, 65535], "trauells warrant me": [0, 65535], "warrant me they": [0, 65535], "me they liue": [0, 65535], "they liue duke": [0, 65535], "liue duke haplesse": [0, 65535], "duke haplesse egeon": [0, 65535], "haplesse egeon whom": [0, 65535], "egeon whom the": [0, 65535], "whom the fates": [0, 65535], "the fates haue": [0, 65535], "fates haue markt": [0, 65535], "haue markt to": [0, 65535], "markt to beare": [0, 65535], "to beare the": [0, 65535], "beare the extremitie": [0, 65535], "the extremitie of": [0, 65535], "extremitie of dire": [0, 65535], "of dire mishap": [0, 65535], "dire mishap now": [0, 65535], "mishap now trust": [0, 65535], "now trust me": [0, 65535], "trust me were": [0, 65535], "me were it": [0, 65535], "were it not": [0, 65535], "it not against": [0, 65535], "not against our": [0, 65535], "against our lawes": [0, 65535], "our lawes against": [0, 65535], "lawes against my": [0, 65535], "against my crowne": [0, 65535], "my crowne my": [0, 65535], "crowne my oath": [0, 65535], "my oath my": [0, 65535], "oath my dignity": [0, 65535], "my dignity which": [0, 65535], "dignity which princes": [0, 65535], "which princes would": [0, 65535], "princes would they": [0, 65535], "would they may": [0, 65535], "they may not": [0, 65535], "may not disanull": [0, 65535], "not disanull my": [0, 65535], "disanull my soule": [0, 65535], "my soule should": [0, 65535], "soule should sue": [0, 65535], "should sue as": [0, 65535], "sue as aduocate": [0, 65535], "as aduocate for": [0, 65535], "aduocate for thee": [0, 65535], "for thee but": [0, 65535], "thee but though": [0, 65535], "but though thou": [0, 65535], "though thou art": [0, 65535], "thou art adiudged": [0, 65535], "art adiudged to": [0, 65535], "adiudged to the": [0, 65535], "to the death": [0, 65535], "the death and": [0, 65535], "death and passed": [0, 65535], "and passed sentence": [0, 65535], "passed sentence may": [0, 65535], "sentence may not": [0, 65535], "may not be": [0, 65535], "not be recal'd": [0, 65535], "be recal'd but": [0, 65535], "recal'd but to": [0, 65535], "but to our": [0, 65535], "to our honours": [0, 65535], "our honours great": [0, 65535], "honours great disparagement": [0, 65535], "great disparagement yet": [0, 65535], "disparagement yet will": [0, 65535], "yet will i": [0, 65535], "will i fauour": [0, 65535], "i fauour thee": [0, 65535], "fauour thee in": [0, 65535], "thee in what": [0, 65535], "in what i": [0, 65535], "what i can": [0, 65535], "i can therefore": [0, 65535], "can therefore marchant": [0, 65535], "therefore marchant ile": [0, 65535], "marchant ile limit": [0, 65535], "ile limit thee": [0, 65535], "limit thee this": [0, 65535], "thee this day": [0, 65535], "this day to": [0, 65535], "day to seeke": [0, 65535], "to seeke thy": [0, 65535], "seeke thy helpe": [0, 65535], "thy helpe by": [0, 65535], "helpe by beneficiall": [0, 65535], "by beneficiall helpe": [0, 65535], "beneficiall helpe try": [0, 65535], "helpe try all": [0, 65535], "try all the": [0, 65535], "all the friends": [0, 65535], "the friends thou": [0, 65535], "friends thou hast": [0, 65535], "thou hast in": [0, 65535], "hast in ephesus": [0, 65535], "in ephesus beg": [0, 65535], "ephesus beg thou": [0, 65535], "beg thou or": [0, 65535], "thou or borrow": [0, 65535], "or borrow to": [0, 65535], "borrow to make": [0, 65535], "to make vp": [0, 65535], "make vp the": [0, 65535], "vp the summe": [0, 65535], "the summe and": [0, 65535], "summe and liue": [0, 65535], "and liue if": [0, 65535], "liue if no": [0, 65535], "if no then": [0, 65535], "no then thou": [0, 65535], "then thou art": [0, 65535], "thou art doom'd": [0, 65535], "art doom'd to": [0, 65535], "doom'd to die": [0, 65535], "to die iaylor": [0, 65535], "die iaylor take": [0, 65535], "iaylor take him": [0, 65535], "take him to": [0, 65535], "him to thy": [0, 65535], "to thy custodie": [0, 65535], "thy custodie iaylor": [0, 65535], "custodie iaylor i": [0, 65535], "iaylor i will": [0, 65535], "i will my": [0, 65535], "will my lord": [0, 65535], "my lord merch": [0, 65535], "lord merch hopelesse": [0, 65535], "merch hopelesse and": [0, 65535], "hopelesse and helpelesse": [0, 65535], "and helpelesse doth": [0, 65535], "helpelesse doth egean": [0, 65535], "doth egean wend": [0, 65535], "egean wend but": [0, 65535], "wend but to": [0, 65535], "but to procrastinate": [0, 65535], "to procrastinate his": [0, 65535], "procrastinate his liuelesse": [0, 65535], "his liuelesse end": [0, 65535], "liuelesse end exeunt": [0, 65535], "end exeunt enter": [0, 65535], "exeunt enter antipholis": [0, 65535], "enter antipholis erotes": [0, 65535], "antipholis erotes a": [0, 65535], "erotes a marchant": [0, 65535], "a marchant and": [0, 65535], "marchant and dromio": [0, 65535], "and dromio mer": [0, 65535], "dromio mer therefore": [0, 65535], "mer therefore giue": [0, 65535], "therefore giue out": [0, 65535], "giue out you": [0, 65535], "out you are": [0, 65535], "you are of": [0, 65535], "are of epidamium": [0, 65535], "of epidamium lest": [0, 65535], "epidamium lest that": [0, 65535], "lest that your": [0, 65535], "that your goods": [0, 65535], "your goods too": [0, 65535], "goods too soone": [0, 65535], "too soone be": [0, 65535], "soone be confiscate": [0, 65535], "be confiscate this": [0, 65535], "confiscate this very": [0, 65535], "this very day": [0, 65535], "very day a": [0, 65535], "day a syracusian": [0, 65535], "a syracusian marchant": [0, 65535], "syracusian marchant is": [0, 65535], "marchant is apprehended": [0, 65535], "is apprehended for": [0, 65535], "apprehended for a": [0, 65535], "for a riuall": [0, 65535], "a riuall here": [0, 65535], "riuall here and": [0, 65535], "here and not": [0, 65535], "and not being": [0, 65535], "not being able": [0, 65535], "being able to": [0, 65535], "able to buy": [0, 65535], "to buy out": [0, 65535], "buy out his": [0, 65535], "out his life": [0, 65535], "his life according": [0, 65535], "life according to": [0, 65535], "according to the": [0, 65535], "to the statute": [0, 65535], "the statute of": [0, 65535], "statute of the": [0, 65535], "of the towne": [0, 65535], "the towne dies": [0, 65535], "towne dies ere": [0, 65535], "dies ere the": [0, 65535], "ere the wearie": [0, 65535], "the wearie sunne": [0, 65535], "wearie sunne set": [0, 65535], "sunne set in": [0, 65535], "set in the": [0, 65535], "in the west": [0, 65535], "the west there": [0, 65535], "west there is": [0, 65535], "there is your": [0, 65535], "is your monie": [0, 65535], "your monie that": [0, 65535], "monie that i": [0, 65535], "that i had": [0, 65535], "i had to": [0, 65535], "had to keepe": [0, 65535], "to keepe ant": [0, 65535], "keepe ant goe": [0, 65535], "ant goe beare": [0, 65535], "goe beare it": [0, 65535], "beare it to": [0, 65535], "to the centaure": [0, 65535], "the centaure where": [0, 65535], "centaure where we": [0, 65535], "where we host": [0, 65535], "we host and": [0, 65535], "host and stay": [0, 65535], "and stay there": [0, 65535], "stay there dromio": [0, 65535], "there dromio till": [0, 65535], "dromio till i": [0, 65535], "till i come": [0, 65535], "i come to": [0, 65535], "come to thee": [0, 65535], "to thee within": [0, 65535], "thee within this": [0, 65535], "this houre it": [0, 65535], "houre it will": [0, 65535], "it will be": [0, 65535], "will be dinner": [0, 65535], "be dinner time": [0, 65535], "dinner time till": [0, 65535], "time till that": [0, 65535], "till that ile": [0, 65535], "that ile view": [0, 65535], "ile view the": [0, 65535], "view the manners": [0, 65535], "the manners of": [0, 65535], "manners of the": [0, 65535], "the towne peruse": [0, 65535], "towne peruse the": [0, 65535], "peruse the traders": [0, 65535], "the traders gaze": [0, 65535], "traders gaze vpon": [0, 65535], "gaze vpon the": [0, 65535], "vpon the buildings": [0, 65535], "the buildings and": [0, 65535], "buildings and then": [0, 65535], "and then returne": [0, 65535], "then returne and": [0, 65535], "returne and sleepe": [0, 65535], "and sleepe within": [0, 65535], "sleepe within mine": [0, 65535], "within mine inne": [0, 65535], "mine inne for": [0, 65535], "inne for with": [0, 65535], "for with long": [0, 65535], "with long trauaile": [0, 65535], "long trauaile i": [0, 65535], "trauaile i am": [0, 65535], "i am stiffe": [0, 65535], "am stiffe and": [0, 65535], "stiffe and wearie": [0, 65535], "and wearie get": [0, 65535], "wearie get thee": [0, 65535], "get thee away": [0, 65535], "thee away dro": [0, 65535], "away dro many": [0, 65535], "dro many a": [0, 65535], "many a man": [0, 65535], "man would take": [0, 65535], "would take you": [0, 65535], "take you at": [0, 65535], "at your word": [0, 65535], "your word and": [0, 65535], "word and goe": [0, 65535], "and goe indeede": [0, 65535], "goe indeede hauing": [0, 65535], "indeede hauing so": [0, 65535], "hauing so good": [0, 65535], "so good a": [0, 65535], "good a meane": [0, 65535], "a meane exit": [0, 65535], "meane exit dromio": [0, 65535], "exit dromio ant": [0, 65535], "dromio ant a": [0, 65535], "ant a trustie": [0, 65535], "a trustie villaine": [0, 65535], "trustie villaine sir": [0, 65535], "villaine sir that": [0, 65535], "sir that very": [0, 65535], "that very oft": [0, 65535], "very oft when": [0, 65535], "oft when i": [0, 65535], "when i am": [0, 65535], "i am dull": [0, 65535], "am dull with": [0, 65535], "dull with care": [0, 65535], "with care and": [0, 65535], "care and melancholly": [0, 65535], "and melancholly lightens": [0, 65535], "melancholly lightens my": [0, 65535], "lightens my humour": [0, 65535], "my humour with": [0, 65535], "humour with his": [0, 65535], "with his merry": [0, 65535], "his merry iests": [0, 65535], "merry iests what": [0, 65535], "iests what will": [0, 65535], "what will you": [0, 65535], "you walke with": [0, 65535], "walke with me": [0, 65535], "with me about": [0, 65535], "me about the": [0, 65535], "about the towne": [0, 65535], "the towne and": [0, 65535], "towne and then": [0, 65535], "and then goe": [0, 65535], "then goe to": [0, 65535], "goe to my": [0, 65535], "to my inne": [0, 65535], "my inne and": [0, 65535], "inne and dine": [0, 65535], "and dine with": [0, 65535], "with me e": [0, 65535], "me e mar": [0, 65535], "e mar i": [0, 65535], "i am inuited": [0, 65535], "am inuited sir": [0, 65535], "inuited sir to": [0, 65535], "sir to certaine": [0, 65535], "to certaine marchants": [0, 65535], "certaine marchants of": [0, 65535], "marchants of whom": [0, 65535], "whom i hope": [0, 65535], "i hope to": [0, 65535], "hope to make": [0, 65535], "to make much": [0, 65535], "make much benefit": [0, 65535], "much benefit i": [0, 65535], "benefit i craue": [0, 65535], "i craue your": [0, 65535], "craue your pardon": [0, 65535], "your pardon soone": [0, 65535], "pardon soone at": [0, 65535], "soone at fiue": [0, 65535], "at fiue a": [0, 65535], "fiue a clocke": [0, 65535], "a clocke please": [0, 65535], "clocke please you": [0, 65535], "please you ile": [0, 65535], "you ile meete": [0, 65535], "ile meete with": [0, 65535], "meete with you": [0, 65535], "with you vpon": [0, 65535], "you vpon the": [0, 65535], "vpon the mart": [0, 65535], "mart and afterward": [0, 65535], "and afterward consort": [0, 65535], "afterward consort you": [0, 65535], "consort you till": [0, 65535], "you till bed": [0, 65535], "till bed time": [0, 65535], "bed time my": [0, 65535], "time my present": [0, 65535], "my present businesse": [0, 65535], "present businesse cals": [0, 65535], "businesse cals me": [0, 65535], "cals me from": [0, 65535], "me from you": [0, 65535], "from you now": [0, 65535], "you now ant": [0, 65535], "now ant farewell": [0, 65535], "ant farewell till": [0, 65535], "farewell till then": [0, 65535], "till then i": [0, 65535], "then i will": [0, 65535], "i will goe": [0, 65535], "will goe loose": [0, 65535], "goe loose my": [0, 65535], "loose my selfe": [0, 65535], "selfe and wander": [0, 65535], "and wander vp": [0, 65535], "wander vp and": [0, 65535], "vp and downe": [0, 65535], "and downe to": [0, 65535], "downe to view": [0, 65535], "to view the": [0, 65535], "view the citie": [0, 65535], "the citie e": [0, 65535], "citie e mar": [0, 65535], "e mar sir": [0, 65535], "mar sir i": [0, 65535], "sir i commend": [0, 65535], "i commend you": [0, 65535], "commend you to": [0, 65535], "you to your": [0, 65535], "to your owne": [0, 65535], "your owne content": [0, 65535], "owne content exeunt": [0, 65535], "content exeunt ant": [0, 65535], "exeunt ant he": [0, 65535], "ant he that": [0, 65535], "he that commends": [0, 65535], "that commends me": [0, 65535], "commends me to": [0, 65535], "me to mine": [0, 65535], "to mine owne": [0, 65535], "mine owne content": [0, 65535], "owne content commends": [0, 65535], "content commends me": [0, 65535], "me to the": [0, 65535], "to the thing": [0, 65535], "the thing i": [0, 65535], "thing i cannot": [0, 65535], "i cannot get": [0, 65535], "cannot get i": [0, 65535], "get i to": [0, 65535], "i to the": [0, 65535], "to the world": [0, 65535], "the world am": [0, 65535], "world am like": [0, 65535], "am like a": [0, 65535], "like a drop": [0, 65535], "of water that": [0, 65535], "water that in": [0, 65535], "that in the": [0, 65535], "in the ocean": [0, 65535], "the ocean seekes": [0, 65535], "ocean seekes another": [0, 65535], "seekes another drop": [0, 65535], "another drop who": [0, 65535], "drop who falling": [0, 65535], "who falling there": [0, 65535], "falling there to": [0, 65535], "there to finde": [0, 65535], "to finde his": [0, 65535], "finde his fellow": [0, 65535], "his fellow forth": [0, 65535], "fellow forth vnseene": [0, 65535], "forth vnseene inquisitiue": [0, 65535], "vnseene inquisitiue confounds": [0, 65535], "inquisitiue confounds himselfe": [0, 65535], "confounds himselfe so": [0, 65535], "himselfe so i": [0, 65535], "so i to": [0, 65535], "i to finde": [0, 65535], "to finde a": [0, 65535], "finde a mother": [0, 65535], "a mother and": [0, 65535], "mother and a": [0, 65535], "a brother in": [0, 65535], "brother in quest": [0, 65535], "in quest of": [0, 65535], "quest of them": [0, 65535], "of them vnhappie": [0, 65535], "them vnhappie a": [0, 65535], "vnhappie a loose": [0, 65535], "a loose my": [0, 65535], "my selfe enter": [0, 65535], "selfe enter dromio": [0, 65535], "enter dromio of": [0, 65535], "of ephesus here": [0, 65535], "ephesus here comes": [0, 65535], "here comes the": [0, 65535], "comes the almanacke": [0, 65535], "the almanacke of": [0, 65535], "almanacke of my": [0, 65535], "of my true": [0, 65535], "my true date": [0, 65535], "true date what": [0, 65535], "date what now": [0, 65535], "what now how": [0, 65535], "now how chance": [0, 65535], "how chance thou": [0, 65535], "chance thou art": [0, 65535], "thou art return'd": [0, 65535], "art return'd so": [0, 65535], "return'd so soone": [0, 65535], "so soone e": [0, 65535], "soone e dro": [0, 65535], "e dro return'd": [0, 65535], "dro return'd so": [0, 65535], "so soone rather": [0, 65535], "soone rather approacht": [0, 65535], "rather approacht too": [0, 65535], "approacht too late": [0, 65535], "too late the": [0, 65535], "late the capon": [0, 65535], "the capon burnes": [0, 65535], "capon burnes the": [0, 65535], "burnes the pig": [0, 65535], "the pig fals": [0, 65535], "pig fals from": [0, 65535], "fals from the": [0, 65535], "from the spit": [0, 65535], "the spit the": [0, 65535], "spit the clocke": [0, 65535], "the clocke hath": [0, 65535], "clocke hath strucken": [0, 65535], "hath strucken twelue": [0, 65535], "strucken twelue vpon": [0, 65535], "twelue vpon the": [0, 65535], "vpon the bell": [0, 65535], "the bell my": [0, 65535], "bell my mistris": [0, 65535], "my mistris made": [0, 65535], "mistris made it": [0, 65535], "made it one": [0, 65535], "it one vpon": [0, 65535], "one vpon my": [0, 65535], "vpon my cheeke": [0, 65535], "my cheeke she": [0, 65535], "cheeke she is": [0, 65535], "she is so": [0, 65535], "is so hot": [0, 65535], "so hot because": [0, 65535], "hot because the": [0, 65535], "because the meate": [0, 65535], "the meate is": [0, 65535], "meate is colde": [0, 65535], "is colde the": [0, 65535], "colde the meate": [0, 65535], "is colde because": [0, 65535], "colde because you": [0, 65535], "because you come": [0, 65535], "you come not": [0, 65535], "come not home": [0, 65535], "not home you": [0, 65535], "home you come": [0, 65535], "not home because": [0, 65535], "home because you": [0, 65535], "because you haue": [0, 65535], "you haue no": [0, 65535], "haue no stomacke": [0, 65535], "no stomacke you": [0, 65535], "stomacke you haue": [0, 65535], "no stomacke hauing": [0, 65535], "stomacke hauing broke": [0, 65535], "hauing broke your": [0, 65535], "broke your fast": [0, 65535], "your fast but": [0, 65535], "fast but we": [0, 65535], "but we that": [0, 65535], "we that know": [0, 65535], "that know what": [0, 65535], "know what 'tis": [0, 65535], "what 'tis to": [0, 65535], "'tis to fast": [0, 65535], "to fast and": [0, 65535], "fast and pray": [0, 65535], "and pray are": [0, 65535], "pray are penitent": [0, 65535], "are penitent for": [0, 65535], "penitent for your": [0, 65535], "for your default": [0, 65535], "your default to": [0, 65535], "default to day": [0, 65535], "to day ant": [0, 65535], "day ant stop": [0, 65535], "ant stop in": [0, 65535], "stop in your": [0, 65535], "in your winde": [0, 65535], "your winde sir": [0, 65535], "winde sir tell": [0, 65535], "sir tell me": [0, 65535], "tell me this": [0, 65535], "me this i": [0, 65535], "this i pray": [0, 65535], "i pray where": [0, 65535], "pray where haue": [0, 65535], "where haue you": [0, 65535], "haue you left": [0, 65535], "you left the": [0, 65535], "left the mony": [0, 65535], "the mony that": [0, 65535], "mony that i": [0, 65535], "that i gaue": [0, 65535], "i gaue you": [0, 65535], "gaue you e": [0, 65535], "e dro oh": [0, 65535], "dro oh sixe": [0, 65535], "oh sixe pence": [0, 65535], "sixe pence that": [0, 65535], "pence that i": [0, 65535], "i had a": [0, 65535], "had a wensday": [0, 65535], "a wensday last": [0, 65535], "wensday last to": [0, 65535], "last to pay": [0, 65535], "to pay the": [0, 65535], "pay the sadler": [0, 65535], "the sadler for": [0, 65535], "sadler for my": [0, 65535], "for my mistris": [0, 65535], "my mistris crupper": [0, 65535], "mistris crupper the": [0, 65535], "crupper the sadler": [0, 65535], "the sadler had": [0, 65535], "sadler had it": [0, 65535], "had it sir": [0, 65535], "it sir i": [0, 65535], "sir i kept": [0, 65535], "i kept it": [0, 65535], "kept it not": [0, 65535], "it not ant": [0, 65535], "ant i am": [0, 65535], "am not in": [0, 65535], "not in a": [0, 65535], "in a sportiue": [0, 65535], "a sportiue humor": [0, 65535], "sportiue humor now": [0, 65535], "humor now tell": [0, 65535], "now tell me": [0, 65535], "tell me and": [0, 65535], "me and dally": [0, 65535], "and dally not": [0, 65535], "dally not where": [0, 65535], "not where is": [0, 65535], "is the monie": [0, 65535], "the monie we": [0, 65535], "monie we being": [0, 65535], "we being strangers": [0, 65535], "being strangers here": [0, 65535], "strangers here how": [0, 65535], "here how dar'st": [0, 65535], "how dar'st thou": [0, 65535], "dar'st thou trust": [0, 65535], "thou trust so": [0, 65535], "trust so great": [0, 65535], "so great a": [0, 65535], "great a charge": [0, 65535], "a charge from": [0, 65535], "charge from thine": [0, 65535], "from thine owne": [0, 65535], "thine owne custodie": [0, 65535], "owne custodie e": [0, 65535], "custodie e dro": [0, 65535], "dro i pray": [0, 65535], "pray you iest": [0, 65535], "you iest sir": [0, 65535], "iest sir as": [0, 65535], "sir as you": [0, 65535], "as you sit": [0, 65535], "you sit at": [0, 65535], "sit at dinner": [0, 65535], "at dinner i": [0, 65535], "dinner i from": [0, 65535], "i from my": [0, 65535], "from my mistris": [0, 65535], "my mistris come": [0, 65535], "mistris come to": [0, 65535], "come to you": [0, 65535], "to you in": [0, 65535], "you in post": [0, 65535], "in post if": [0, 65535], "post if i": [0, 65535], "if i returne": [0, 65535], "i returne i": [0, 65535], "returne i shall": [0, 65535], "i shall be": [0, 65535], "shall be post": [0, 65535], "be post indeede": [0, 65535], "post indeede for": [0, 65535], "indeede for she": [0, 65535], "for she will": [0, 65535], "she will scoure": [0, 65535], "will scoure your": [0, 65535], "scoure your fault": [0, 65535], "your fault vpon": [0, 65535], "fault vpon my": [0, 65535], "vpon my pate": [0, 65535], "my pate me": [0, 65535], "pate me thinkes": [0, 65535], "me thinkes your": [0, 65535], "thinkes your maw": [0, 65535], "your maw like": [0, 65535], "maw like mine": [0, 65535], "like mine should": [0, 65535], "mine should be": [0, 65535], "should be your": [0, 65535], "be your cooke": [0, 65535], "your cooke and": [0, 65535], "cooke and strike": [0, 65535], "and strike you": [0, 65535], "strike you home": [0, 65535], "you home without": [0, 65535], "home without a": [0, 65535], "without a messenger": [0, 65535], "a messenger ant": [0, 65535], "messenger ant come": [0, 65535], "ant come dromio": [0, 65535], "come dromio come": [0, 65535], "dromio come these": [0, 65535], "come these iests": [0, 65535], "these iests are": [0, 65535], "iests are out": [0, 65535], "are out of": [0, 65535], "of season reserue": [0, 65535], "season reserue them": [0, 65535], "reserue them till": [0, 65535], "them till a": [0, 65535], "till a merrier": [0, 65535], "a merrier houre": [0, 65535], "merrier houre then": [0, 65535], "houre then this": [0, 65535], "then this where": [0, 65535], "this where is": [0, 65535], "is the gold": [0, 65535], "i gaue in": [0, 65535], "gaue in charge": [0, 65535], "in charge to": [0, 65535], "charge to thee": [0, 65535], "to thee e": [0, 65535], "thee e dro": [0, 65535], "e dro to": [0, 65535], "dro to me": [0, 65535], "to me sir": [0, 65535], "me sir why": [0, 65535], "sir why you": [0, 65535], "why you gaue": [0, 65535], "you gaue no": [0, 65535], "gaue no gold": [0, 65535], "no gold to": [0, 65535], "gold to me": [0, 65535], "to me ant": [0, 65535], "me ant come": [0, 65535], "ant come on": [0, 65535], "come on sir": [0, 65535], "on sir knaue": [0, 65535], "sir knaue haue": [0, 65535], "knaue haue done": [0, 65535], "haue done your": [0, 65535], "done your foolishnes": [0, 65535], "your foolishnes and": [0, 65535], "foolishnes and tell": [0, 65535], "and tell me": [0, 65535], "me how thou": [0, 65535], "how thou hast": [0, 65535], "thou hast dispos'd": [0, 65535], "hast dispos'd thy": [0, 65535], "dispos'd thy charge": [0, 65535], "thy charge e": [0, 65535], "charge e dro": [0, 65535], "e dro my": [0, 65535], "dro my charge": [0, 65535], "my charge was": [0, 65535], "charge was but": [0, 65535], "was but to": [0, 65535], "but to fetch": [0, 65535], "to fetch you": [0, 65535], "fetch you from": [0, 65535], "the mart home": [0, 65535], "mart home to": [0, 65535], "home to your": [0, 65535], "to your house": [0, 65535], "your house the": [0, 65535], "house the ph\u0153nix": [0, 65535], "the ph\u0153nix sir": [0, 65535], "ph\u0153nix sir to": [0, 65535], "dinner my mistris": [0, 65535], "my mistris and": [0, 65535], "mistris and her": [0, 65535], "and her sister": [0, 65535], "her sister staies": [0, 65535], "sister staies for": [0, 65535], "staies for you": [0, 65535], "for you ant": [0, 65535], "you ant now": [0, 65535], "ant now as": [0, 65535], "now as i": [0, 65535], "as i am": [0, 65535], "am a christian": [0, 65535], "a christian answer": [0, 65535], "christian answer me": [0, 65535], "answer me in": [0, 65535], "me in what": [0, 65535], "in what safe": [0, 65535], "what safe place": [0, 65535], "safe place you": [0, 65535], "place you haue": [0, 65535], "you haue bestow'd": [0, 65535], "haue bestow'd my": [0, 65535], "bestow'd my monie": [0, 65535], "my monie or": [0, 65535], "monie or i": [0, 65535], "or i shall": [0, 65535], "i shall breake": [0, 65535], "shall breake that": [0, 65535], "breake that merrie": [0, 65535], "that merrie sconce": [0, 65535], "merrie sconce of": [0, 65535], "sconce of yours": [0, 65535], "of yours that": [0, 65535], "yours that stands": [0, 65535], "that stands on": [0, 65535], "stands on tricks": [0, 65535], "on tricks when": [0, 65535], "tricks when i": [0, 65535], "i am vndispos'd": [0, 65535], "am vndispos'd where": [0, 65535], "vndispos'd where is": [0, 65535], "thousand markes thou": [0, 65535], "markes thou hadst": [0, 65535], "thou hadst of": [0, 65535], "hadst of me": [0, 65535], "of me e": [0, 65535], "me e dro": [0, 65535], "dro i haue": [0, 65535], "i haue some": [0, 65535], "haue some markes": [0, 65535], "some markes of": [0, 65535], "markes of yours": [0, 65535], "of yours vpon": [0, 65535], "yours vpon my": [0, 65535], "my pate some": [0, 65535], "pate some of": [0, 65535], "of my mistris": [0, 65535], "my mistris markes": [0, 65535], "mistris markes vpon": [0, 65535], "markes vpon my": [0, 65535], "shoulders but not": [0, 65535], "but not a": [0, 65535], "not a thousand": [0, 65535], "thousand markes betweene": [0, 65535], "markes betweene you": [0, 65535], "betweene you both": [0, 65535], "you both if": [0, 65535], "both if i": [0, 65535], "if i should": [0, 65535], "i should pay": [0, 65535], "should pay your": [0, 65535], "pay your worship": [0, 65535], "your worship those": [0, 65535], "worship those againe": [0, 65535], "those againe perchance": [0, 65535], "againe perchance you": [0, 65535], "perchance you will": [0, 65535], "you will not": [0, 65535], "will not beare": [0, 65535], "not beare them": [0, 65535], "beare them patiently": [0, 65535], "them patiently ant": [0, 65535], "patiently ant thy": [0, 65535], "ant thy mistris": [0, 65535], "thy mistris markes": [0, 65535], "mistris markes what": [0, 65535], "markes what mistris": [0, 65535], "what mistris slaue": [0, 65535], "mistris slaue hast": [0, 65535], "slaue hast thou": [0, 65535], "hast thou e": [0, 65535], "thou e dro": [0, 65535], "e dro your": [0, 65535], "dro your worships": [0, 65535], "your worships wife": [0, 65535], "worships wife my": [0, 65535], "wife my mistris": [0, 65535], "my mistris at": [0, 65535], "mistris at the": [0, 65535], "the ph\u0153nix she": [0, 65535], "ph\u0153nix she that": [0, 65535], "that doth fast": [0, 65535], "doth fast till": [0, 65535], "fast till you": [0, 65535], "till you come": [0, 65535], "you come home": [0, 65535], "dinner and praies": [0, 65535], "and praies that": [0, 65535], "praies that you": [0, 65535], "that you will": [0, 65535], "you will hie": [0, 65535], "will hie you": [0, 65535], "hie you home": [0, 65535], "you home to": [0, 65535], "dinner ant what": [0, 65535], "ant what wilt": [0, 65535], "what wilt thou": [0, 65535], "wilt thou flout": [0, 65535], "thou flout me": [0, 65535], "flout me thus": [0, 65535], "me thus vnto": [0, 65535], "thus vnto my": [0, 65535], "vnto my face": [0, 65535], "my face being": [0, 65535], "face being forbid": [0, 65535], "being forbid there": [0, 65535], "forbid there take": [0, 65535], "there take you": [0, 65535], "take you that": [0, 65535], "you that sir": [0, 65535], "that sir knaue": [0, 65535], "sir knaue e": [0, 65535], "knaue e dro": [0, 65535], "dro what meane": [0, 65535], "what meane you": [0, 65535], "meane you sir": [0, 65535], "sir for god": [0, 65535], "god sake hold": [0, 65535], "sake hold your": [0, 65535], "hold your hands": [0, 65535], "your hands nay": [0, 65535], "hands nay and": [0, 65535], "nay and you": [0, 65535], "and you will": [0, 65535], "will not sir": [0, 65535], "not sir ile": [0, 65535], "sir ile take": [0, 65535], "ile take my": [0, 65535], "take my heeles": [0, 65535], "my heeles exeunt": [0, 65535], "heeles exeunt dromio": [0, 65535], "exeunt dromio ep": [0, 65535], "dromio ep ant": [0, 65535], "ep ant vpon": [0, 65535], "ant vpon my": [0, 65535], "my life by": [0, 65535], "life by some": [0, 65535], "by some deuise": [0, 65535], "some deuise or": [0, 65535], "deuise or other": [0, 65535], "or other the": [0, 65535], "other the villaine": [0, 65535], "the villaine is": [0, 65535], "villaine is ore": [0, 65535], "is ore wrought": [0, 65535], "ore wrought of": [0, 65535], "wrought of all": [0, 65535], "of all my": [0, 65535], "all my monie": [0, 65535], "my monie they": [0, 65535], "monie they say": [0, 65535], "they say this": [0, 65535], "say this towne": [0, 65535], "this towne is": [0, 65535], "towne is full": [0, 65535], "is full of": [0, 65535], "full of cosenage": [0, 65535], "of cosenage as": [0, 65535], "cosenage as nimble": [0, 65535], "as nimble iuglers": [0, 65535], "nimble iuglers that": [0, 65535], "iuglers that deceiue": [0, 65535], "that deceiue the": [0, 65535], "deceiue the eie": [0, 65535], "the eie darke": [0, 65535], "eie darke working": [0, 65535], "darke working sorcerers": [0, 65535], "working sorcerers that": [0, 65535], "sorcerers that change": [0, 65535], "that change the": [0, 65535], "change the minde": [0, 65535], "the minde soule": [0, 65535], "minde soule killing": [0, 65535], "soule killing witches": [0, 65535], "killing witches that": [0, 65535], "witches that deforme": [0, 65535], "that deforme the": [0, 65535], "deforme the bodie": [0, 65535], "the bodie disguised": [0, 65535], "bodie disguised cheaters": [0, 65535], "disguised cheaters prating": [0, 65535], "cheaters prating mountebankes": [0, 65535], "prating mountebankes and": [0, 65535], "mountebankes and manie": [0, 65535], "and manie such": [0, 65535], "manie such like": [0, 65535], "such like liberties": [0, 65535], "like liberties of": [0, 65535], "liberties of sinne": [0, 65535], "of sinne if": [0, 65535], "sinne if it": [0, 65535], "if it proue": [0, 65535], "it proue so": [0, 65535], "proue so i": [0, 65535], "will be gone": [0, 65535], "be gone the": [0, 65535], "gone the sooner": [0, 65535], "the sooner ile": [0, 65535], "sooner ile to": [0, 65535], "the centaur to": [0, 65535], "centaur to goe": [0, 65535], "to goe seeke": [0, 65535], "goe seeke this": [0, 65535], "seeke this slaue": [0, 65535], "this slaue i": [0, 65535], "slaue i greatly": [0, 65535], "i greatly feare": [0, 65535], "greatly feare my": [0, 65535], "feare my monie": [0, 65535], "my monie is": [0, 65535], "monie is not": [0, 65535], "is not safe": [0, 65535], "the comedie of errors": [0, 65535], "comedie of errors actus": [0, 65535], "of errors actus primus": [0, 65535], "errors actus primus scena": [0, 65535], "actus primus scena prima": [0, 65535], "primus scena prima enter": [0, 65535], "scena prima enter the": [0, 65535], "prima enter the duke": [0, 65535], "duke of ephesus with": [0, 65535], "of ephesus with the": [0, 65535], "ephesus with the merchant": [0, 65535], "with the merchant of": [0, 65535], "the merchant of siracusa": [0, 65535], "merchant of siracusa iaylor": [0, 65535], "of siracusa iaylor and": [0, 65535], "siracusa iaylor and other": [0, 65535], "iaylor and other attendants": [0, 65535], "and other attendants marchant": [0, 65535], "other attendants marchant broceed": [0, 65535], "attendants marchant broceed solinus": [0, 65535], "marchant broceed solinus to": [0, 65535], "broceed solinus to procure": [0, 65535], "solinus to procure my": [0, 65535], "to procure my fall": [0, 65535], "procure my fall and": [0, 65535], "my fall and by": [0, 65535], "fall and by the": [0, 65535], "and by the doome": [0, 65535], "by the doome of": [0, 65535], "the doome of death": [0, 65535], "doome of death end": [0, 65535], "of death end woes": [0, 65535], "death end woes and": [0, 65535], "end woes and all": [0, 65535], "woes and all duke": [0, 65535], "and all duke merchant": [0, 65535], "all duke merchant of": [0, 65535], "duke merchant of siracusa": [0, 65535], "merchant of siracusa plead": [0, 65535], "of siracusa plead no": [0, 65535], "siracusa plead no more": [0, 65535], "plead no more i": [0, 65535], "no more i am": [0, 65535], "more i am not": [0, 65535], "i am not partiall": [0, 65535], "am not partiall to": [0, 65535], "not partiall to infringe": [0, 65535], "partiall to infringe our": [0, 65535], "to infringe our lawes": [0, 65535], "infringe our lawes the": [0, 65535], "our lawes the enmity": [0, 65535], "lawes the enmity and": [0, 65535], "the enmity and discord": [0, 65535], "enmity and discord which": [0, 65535], "and discord which of": [0, 65535], "discord which of late": [0, 65535], "which of late sprung": [0, 65535], "of late sprung from": [0, 65535], "late sprung from the": [0, 65535], "sprung from the rancorous": [0, 65535], "from the rancorous outrage": [0, 65535], "the rancorous outrage of": [0, 65535], "rancorous outrage of your": [0, 65535], "outrage of your duke": [0, 65535], "of your duke to": [0, 65535], "your duke to merchants": [0, 65535], "duke to merchants our": [0, 65535], "to merchants our well": [0, 65535], "merchants our well dealing": [0, 65535], "our well dealing countrimen": [0, 65535], "well dealing countrimen who": [0, 65535], "dealing countrimen who wanting": [0, 65535], "countrimen who wanting gilders": [0, 65535], "who wanting gilders to": [0, 65535], "wanting gilders to redeeme": [0, 65535], "gilders to redeeme their": [0, 65535], "to redeeme their liues": [0, 65535], "redeeme their liues haue": [0, 65535], "their liues haue seal'd": [0, 65535], "liues haue seal'd his": [0, 65535], "haue seal'd his rigorous": [0, 65535], "seal'd his rigorous statutes": [0, 65535], "his rigorous statutes with": [0, 65535], "rigorous statutes with their": [0, 65535], "statutes with their blouds": [0, 65535], "with their blouds excludes": [0, 65535], "their blouds excludes all": [0, 65535], "blouds excludes all pitty": [0, 65535], "excludes all pitty from": [0, 65535], "all pitty from our": [0, 65535], "pitty from our threatning": [0, 65535], "from our threatning lookes": [0, 65535], "our threatning lookes for": [0, 65535], "threatning lookes for since": [0, 65535], "lookes for since the": [0, 65535], "for since the mortall": [0, 65535], "since the mortall and": [0, 65535], "the mortall and intestine": [0, 65535], "mortall and intestine iarres": [0, 65535], "and intestine iarres twixt": [0, 65535], "intestine iarres twixt thy": [0, 65535], "iarres twixt thy seditious": [0, 65535], "twixt thy seditious countrimen": [0, 65535], "thy seditious countrimen and": [0, 65535], "seditious countrimen and vs": [0, 65535], "countrimen and vs it": [0, 65535], "and vs it hath": [0, 65535], "vs it hath in": [0, 65535], "it hath in solemne": [0, 65535], "hath in solemne synodes": [0, 65535], "in solemne synodes beene": [0, 65535], "solemne synodes beene decreed": [0, 65535], "synodes beene decreed both": [0, 65535], "beene decreed both by": [0, 65535], "decreed both by the": [0, 65535], "both by the siracusians": [0, 65535], "by the siracusians and": [0, 65535], "the siracusians and our": [0, 65535], "siracusians and our selues": [0, 65535], "and our selues to": [0, 65535], "our selues to admit": [0, 65535], "selues to admit no": [0, 65535], "to admit no trafficke": [0, 65535], "admit no trafficke to": [0, 65535], "no trafficke to our": [0, 65535], "trafficke to our aduerse": [0, 65535], "to our aduerse townes": [0, 65535], "our aduerse townes nay": [0, 65535], "aduerse townes nay more": [0, 65535], "townes nay more if": [0, 65535], "nay more if any": [0, 65535], "more if any borne": [0, 65535], "if any borne at": [0, 65535], "any borne at ephesus": [0, 65535], "borne at ephesus be": [0, 65535], "at ephesus be seene": [0, 65535], "ephesus be seene at": [0, 65535], "be seene at any": [0, 65535], "seene at any siracusian": [0, 65535], "at any siracusian marts": [0, 65535], "any siracusian marts and": [0, 65535], "siracusian marts and fayres": [0, 65535], "marts and fayres againe": [0, 65535], "and fayres againe if": [0, 65535], "fayres againe if any": [0, 65535], "againe if any siracusian": [0, 65535], "if any siracusian borne": [0, 65535], "any siracusian borne come": [0, 65535], "siracusian borne come to": [0, 65535], "borne come to the": [0, 65535], "come to the bay": [0, 65535], "to the bay of": [0, 65535], "the bay of ephesus": [0, 65535], "bay of ephesus he": [0, 65535], "of ephesus he dies": [0, 65535], "ephesus he dies his": [0, 65535], "he dies his goods": [0, 65535], "dies his goods confiscate": [0, 65535], "his goods confiscate to": [0, 65535], "goods confiscate to the": [0, 65535], "confiscate to the dukes": [0, 65535], "to the dukes dispose": [0, 65535], "the dukes dispose vnlesse": [0, 65535], "dukes dispose vnlesse a": [0, 65535], "dispose vnlesse a thousand": [0, 65535], "vnlesse a thousand markes": [0, 65535], "a thousand markes be": [0, 65535], "thousand markes be leuied": [0, 65535], "markes be leuied to": [0, 65535], "be leuied to quit": [0, 65535], "leuied to quit the": [0, 65535], "to quit the penalty": [0, 65535], "quit the penalty and": [0, 65535], "the penalty and to": [0, 65535], "penalty and to ransome": [0, 65535], "and to ransome him": [0, 65535], "to ransome him thy": [0, 65535], "ransome him thy substance": [0, 65535], "him thy substance valued": [0, 65535], "thy substance valued at": [0, 65535], "substance valued at the": [0, 65535], "valued at the highest": [0, 65535], "at the highest rate": [0, 65535], "the highest rate cannot": [0, 65535], "highest rate cannot amount": [0, 65535], "rate cannot amount vnto": [0, 65535], "cannot amount vnto a": [0, 65535], "amount vnto a hundred": [0, 65535], "vnto a hundred markes": [0, 65535], "a hundred markes therefore": [0, 65535], "hundred markes therefore by": [0, 65535], "markes therefore by law": [0, 65535], "therefore by law thou": [0, 65535], "by law thou art": [0, 65535], "law thou art condemn'd": [0, 65535], "thou art condemn'd to": [0, 65535], "art condemn'd to die": [0, 65535], "condemn'd to die mer": [0, 65535], "to die mer yet": [0, 65535], "die mer yet this": [0, 65535], "mer yet this my": [0, 65535], "yet this my comfort": [0, 65535], "this my comfort when": [0, 65535], "my comfort when your": [0, 65535], "comfort when your words": [0, 65535], "when your words are": [0, 65535], "your words are done": [0, 65535], "words are done my": [0, 65535], "are done my woes": [0, 65535], "done my woes end": [0, 65535], "my woes end likewise": [0, 65535], "woes end likewise with": [0, 65535], "end likewise with the": [0, 65535], "likewise with the euening": [0, 65535], "with the euening sonne": [0, 65535], "the euening sonne duk": [0, 65535], "euening sonne duk well": [0, 65535], "sonne duk well siracusian": [0, 65535], "duk well siracusian say": [0, 65535], "well siracusian say in": [0, 65535], "siracusian say in briefe": [0, 65535], "say in briefe the": [0, 65535], "in briefe the cause": [0, 65535], "briefe the cause why": [0, 65535], "the cause why thou": [0, 65535], "cause why thou departedst": [0, 65535], "why thou departedst from": [0, 65535], "thou departedst from thy": [0, 65535], "departedst from thy natiue": [0, 65535], "from thy natiue home": [0, 65535], "thy natiue home and": [0, 65535], "natiue home and for": [0, 65535], "home and for what": [0, 65535], "and for what cause": [0, 65535], "for what cause thou": [0, 65535], "what cause thou cam'st": [0, 65535], "cause thou cam'st to": [0, 65535], "thou cam'st to ephesus": [0, 65535], "cam'st to ephesus mer": [0, 65535], "to ephesus mer a": [0, 65535], "ephesus mer a heauier": [0, 65535], "mer a heauier taske": [0, 65535], "a heauier taske could": [0, 65535], "heauier taske could not": [0, 65535], "taske could not haue": [0, 65535], "could not haue beene": [0, 65535], "not haue beene impos'd": [0, 65535], "haue beene impos'd then": [0, 65535], "beene impos'd then i": [0, 65535], "impos'd then i to": [0, 65535], "then i to speake": [0, 65535], "i to speake my": [0, 65535], "to speake my griefes": [0, 65535], "speake my griefes vnspeakeable": [0, 65535], "my griefes vnspeakeable yet": [0, 65535], "griefes vnspeakeable yet that": [0, 65535], "vnspeakeable yet that the": [0, 65535], "yet that the world": [0, 65535], "that the world may": [0, 65535], "the world may witnesse": [0, 65535], "world may witnesse that": [0, 65535], "may witnesse that my": [0, 65535], "witnesse that my end": [0, 65535], "that my end was": [0, 65535], "my end was wrought": [0, 65535], "end was wrought by": [0, 65535], "was wrought by nature": [0, 65535], "wrought by nature not": [0, 65535], "by nature not by": [0, 65535], "nature not by vile": [0, 65535], "not by vile offence": [0, 65535], "by vile offence ile": [0, 65535], "vile offence ile vtter": [0, 65535], "offence ile vtter what": [0, 65535], "ile vtter what my": [0, 65535], "vtter what my sorrow": [0, 65535], "what my sorrow giues": [0, 65535], "my sorrow giues me": [0, 65535], "sorrow giues me leaue": [0, 65535], "giues me leaue in": [0, 65535], "me leaue in syracusa": [0, 65535], "leaue in syracusa was": [0, 65535], "in syracusa was i": [0, 65535], "syracusa was i borne": [0, 65535], "was i borne and": [0, 65535], "i borne and wedde": [0, 65535], "borne and wedde vnto": [0, 65535], "and wedde vnto a": [0, 65535], "wedde vnto a woman": [0, 65535], "vnto a woman happy": [0, 65535], "a woman happy but": [0, 65535], "woman happy but for": [0, 65535], "happy but for me": [0, 65535], "but for me and": [0, 65535], "for me and by": [0, 65535], "me and by me": [0, 65535], "and by me had": [0, 65535], "by me had not": [0, 65535], "me had not our": [0, 65535], "had not our hap": [0, 65535], "not our hap beene": [0, 65535], "our hap beene bad": [0, 65535], "hap beene bad with": [0, 65535], "beene bad with her": [0, 65535], "bad with her i": [0, 65535], "with her i liu'd": [0, 65535], "her i liu'd in": [0, 65535], "i liu'd in ioy": [0, 65535], "liu'd in ioy our": [0, 65535], "in ioy our wealth": [0, 65535], "ioy our wealth increast": [0, 65535], "our wealth increast by": [0, 65535], "wealth increast by prosperous": [0, 65535], "increast by prosperous voyages": [0, 65535], "by prosperous voyages i": [0, 65535], "prosperous voyages i often": [0, 65535], "voyages i often made": [0, 65535], "i often made to": [0, 65535], "often made to epidamium": [0, 65535], "made to epidamium till": [0, 65535], "to epidamium till my": [0, 65535], "epidamium till my factors": [0, 65535], "till my factors death": [0, 65535], "my factors death and": [0, 65535], "factors death and he": [0, 65535], "death and he great": [0, 65535], "and he great care": [0, 65535], "he great care of": [0, 65535], "great care of goods": [0, 65535], "care of goods at": [0, 65535], "of goods at randone": [0, 65535], "goods at randone left": [0, 65535], "at randone left drew": [0, 65535], "randone left drew me": [0, 65535], "left drew me from": [0, 65535], "drew me from kinde": [0, 65535], "me from kinde embracements": [0, 65535], "from kinde embracements of": [0, 65535], "kinde embracements of my": [0, 65535], "embracements of my spouse": [0, 65535], "of my spouse from": [0, 65535], "my spouse from whom": [0, 65535], "spouse from whom my": [0, 65535], "from whom my absence": [0, 65535], "whom my absence was": [0, 65535], "my absence was not": [0, 65535], "absence was not sixe": [0, 65535], "was not sixe moneths": [0, 65535], "not sixe moneths olde": [0, 65535], "sixe moneths olde before": [0, 65535], "moneths olde before her": [0, 65535], "olde before her selfe": [0, 65535], "before her selfe almost": [0, 65535], "her selfe almost at": [0, 65535], "selfe almost at fainting": [0, 65535], "almost at fainting vnder": [0, 65535], "at fainting vnder the": [0, 65535], "fainting vnder the pleasing": [0, 65535], "vnder the pleasing punishment": [0, 65535], "the pleasing punishment that": [0, 65535], "pleasing punishment that women": [0, 65535], "punishment that women beare": [0, 65535], "that women beare had": [0, 65535], "women beare had made": [0, 65535], "beare had made prouision": [0, 65535], "had made prouision for": [0, 65535], "made prouision for her": [0, 65535], "prouision for her following": [0, 65535], "for her following me": [0, 65535], "her following me and": [0, 65535], "following me and soone": [0, 65535], "me and soone and": [0, 65535], "and soone and safe": [0, 65535], "soone and safe arriued": [0, 65535], "and safe arriued where": [0, 65535], "safe arriued where i": [0, 65535], "arriued where i was": [0, 65535], "where i was there": [0, 65535], "i was there had": [0, 65535], "was there had she": [0, 65535], "there had she not": [0, 65535], "had she not beene": [0, 65535], "she not beene long": [0, 65535], "not beene long but": [0, 65535], "beene long but she": [0, 65535], "long but she became": [0, 65535], "but she became a": [0, 65535], "she became a ioyfull": [0, 65535], "became a ioyfull mother": [0, 65535], "a ioyfull mother of": [0, 65535], "ioyfull mother of two": [0, 65535], "mother of two goodly": [0, 65535], "of two goodly sonnes": [0, 65535], "two goodly sonnes and": [0, 65535], "goodly sonnes and which": [0, 65535], "sonnes and which was": [0, 65535], "and which was strange": [0, 65535], "which was strange the": [0, 65535], "was strange the one": [0, 65535], "strange the one so": [0, 65535], "the one so like": [0, 65535], "one so like the": [0, 65535], "so like the other": [0, 65535], "like the other as": [0, 65535], "the other as could": [0, 65535], "other as could not": [0, 65535], "as could not be": [0, 65535], "could not be distinguish'd": [0, 65535], "not be distinguish'd but": [0, 65535], "be distinguish'd but by": [0, 65535], "distinguish'd but by names": [0, 65535], "but by names that": [0, 65535], "by names that very": [0, 65535], "names that very howre": [0, 65535], "that very howre and": [0, 65535], "very howre and in": [0, 65535], "howre and in the": [0, 65535], "and in the selfe": [0, 65535], "in the selfe same": [0, 65535], "the selfe same inne": [0, 65535], "selfe same inne a": [0, 65535], "same inne a meane": [0, 65535], "inne a meane woman": [0, 65535], "a meane woman was": [0, 65535], "meane woman was deliuered": [0, 65535], "woman was deliuered of": [0, 65535], "was deliuered of such": [0, 65535], "deliuered of such a": [0, 65535], "of such a burthen": [0, 65535], "such a burthen male": [0, 65535], "a burthen male twins": [0, 65535], "burthen male twins both": [0, 65535], "male twins both alike": [0, 65535], "twins both alike those": [0, 65535], "both alike those for": [0, 65535], "alike those for their": [0, 65535], "those for their parents": [0, 65535], "for their parents were": [0, 65535], "their parents were exceeding": [0, 65535], "parents were exceeding poore": [0, 65535], "were exceeding poore i": [0, 65535], "exceeding poore i bought": [0, 65535], "poore i bought and": [0, 65535], "i bought and brought": [0, 65535], "bought and brought vp": [0, 65535], "and brought vp to": [0, 65535], "brought vp to attend": [0, 65535], "vp to attend my": [0, 65535], "to attend my sonnes": [0, 65535], "attend my sonnes my": [0, 65535], "my sonnes my wife": [0, 65535], "sonnes my wife not": [0, 65535], "my wife not meanely": [0, 65535], "wife not meanely prowd": [0, 65535], "not meanely prowd of": [0, 65535], "meanely prowd of two": [0, 65535], "prowd of two such": [0, 65535], "of two such boyes": [0, 65535], "two such boyes made": [0, 65535], "such boyes made daily": [0, 65535], "boyes made daily motions": [0, 65535], "made daily motions for": [0, 65535], "daily motions for our": [0, 65535], "motions for our home": [0, 65535], "for our home returne": [0, 65535], "our home returne vnwilling": [0, 65535], "home returne vnwilling i": [0, 65535], "returne vnwilling i agreed": [0, 65535], "vnwilling i agreed alas": [0, 65535], "i agreed alas too": [0, 65535], "agreed alas too soone": [0, 65535], "alas too soone wee": [0, 65535], "too soone wee came": [0, 65535], "soone wee came aboord": [0, 65535], "wee came aboord a": [0, 65535], "came aboord a league": [0, 65535], "aboord a league from": [0, 65535], "a league from epidamium": [0, 65535], "league from epidamium had": [0, 65535], "from epidamium had we": [0, 65535], "epidamium had we saild": [0, 65535], "had we saild before": [0, 65535], "we saild before the": [0, 65535], "saild before the alwaies": [0, 65535], "before the alwaies winde": [0, 65535], "the alwaies winde obeying": [0, 65535], "alwaies winde obeying deepe": [0, 65535], "winde obeying deepe gaue": [0, 65535], "obeying deepe gaue any": [0, 65535], "deepe gaue any tragicke": [0, 65535], "gaue any tragicke instance": [0, 65535], "any tragicke instance of": [0, 65535], "tragicke instance of our": [0, 65535], "instance of our harme": [0, 65535], "of our harme but": [0, 65535], "our harme but longer": [0, 65535], "harme but longer did": [0, 65535], "but longer did we": [0, 65535], "longer did we not": [0, 65535], "did we not retaine": [0, 65535], "we not retaine much": [0, 65535], "not retaine much hope": [0, 65535], "retaine much hope for": [0, 65535], "much hope for what": [0, 65535], "hope for what obscured": [0, 65535], "for what obscured light": [0, 65535], "what obscured light the": [0, 65535], "obscured light the heauens": [0, 65535], "light the heauens did": [0, 65535], "the heauens did grant": [0, 65535], "heauens did grant did": [0, 65535], "did grant did but": [0, 65535], "grant did but conuay": [0, 65535], "did but conuay vnto": [0, 65535], "but conuay vnto our": [0, 65535], "conuay vnto our fearefull": [0, 65535], "vnto our fearefull mindes": [0, 65535], "our fearefull mindes a": [0, 65535], "fearefull mindes a doubtfull": [0, 65535], "mindes a doubtfull warrant": [0, 65535], "a doubtfull warrant of": [0, 65535], "doubtfull warrant of immediate": [0, 65535], "warrant of immediate death": [0, 65535], "of immediate death which": [0, 65535], "immediate death which though": [0, 65535], "death which though my": [0, 65535], "which though my selfe": [0, 65535], "though my selfe would": [0, 65535], "my selfe would gladly": [0, 65535], "selfe would gladly haue": [0, 65535], "would gladly haue imbrac'd": [0, 65535], "gladly haue imbrac'd yet": [0, 65535], "haue imbrac'd yet the": [0, 65535], "imbrac'd yet the incessant": [0, 65535], "yet the incessant weepings": [0, 65535], "the incessant weepings of": [0, 65535], "incessant weepings of my": [0, 65535], "weepings of my wife": [0, 65535], "of my wife weeping": [0, 65535], "my wife weeping before": [0, 65535], "wife weeping before for": [0, 65535], "weeping before for what": [0, 65535], "before for what she": [0, 65535], "for what she saw": [0, 65535], "what she saw must": [0, 65535], "she saw must come": [0, 65535], "saw must come and": [0, 65535], "must come and pitteous": [0, 65535], "come and pitteous playnings": [0, 65535], "and pitteous playnings of": [0, 65535], "pitteous playnings of the": [0, 65535], "playnings of the prettie": [0, 65535], "of the prettie babes": [0, 65535], "the prettie babes that": [0, 65535], "prettie babes that mourn'd": [0, 65535], "babes that mourn'd for": [0, 65535], "that mourn'd for fashion": [0, 65535], "mourn'd for fashion ignorant": [0, 65535], "for fashion ignorant what": [0, 65535], "fashion ignorant what to": [0, 65535], "ignorant what to feare": [0, 65535], "what to feare forst": [0, 65535], "to feare forst me": [0, 65535], "feare forst me to": [0, 65535], "forst me to seeke": [0, 65535], "me to seeke delayes": [0, 65535], "to seeke delayes for": [0, 65535], "seeke delayes for them": [0, 65535], "delayes for them and": [0, 65535], "for them and me": [0, 65535], "them and me and": [0, 65535], "and me and this": [0, 65535], "me and this it": [0, 65535], "and this it was": [0, 65535], "this it was for": [0, 65535], "it was for other": [0, 65535], "was for other meanes": [0, 65535], "for other meanes was": [0, 65535], "other meanes was none": [0, 65535], "meanes was none the": [0, 65535], "was none the sailors": [0, 65535], "none the sailors sought": [0, 65535], "the sailors sought for": [0, 65535], "sailors sought for safety": [0, 65535], "sought for safety by": [0, 65535], "for safety by our": [0, 65535], "safety by our boate": [0, 65535], "by our boate and": [0, 65535], "our boate and left": [0, 65535], "boate and left the": [0, 65535], "and left the ship": [0, 65535], "left the ship then": [0, 65535], "the ship then sinking": [0, 65535], "ship then sinking ripe": [0, 65535], "then sinking ripe to": [0, 65535], "sinking ripe to vs": [0, 65535], "ripe to vs my": [0, 65535], "to vs my wife": [0, 65535], "vs my wife more": [0, 65535], "my wife more carefull": [0, 65535], "wife more carefull for": [0, 65535], "more carefull for the": [0, 65535], "carefull for the latter": [0, 65535], "for the latter borne": [0, 65535], "the latter borne had": [0, 65535], "latter borne had fastned": [0, 65535], "borne had fastned him": [0, 65535], "had fastned him vnto": [0, 65535], "fastned him vnto a": [0, 65535], "him vnto a small": [0, 65535], "vnto a small spare": [0, 65535], "a small spare mast": [0, 65535], "small spare mast such": [0, 65535], "spare mast such as": [0, 65535], "mast such as sea": [0, 65535], "such as sea faring": [0, 65535], "as sea faring men": [0, 65535], "sea faring men prouide": [0, 65535], "faring men prouide for": [0, 65535], "men prouide for stormes": [0, 65535], "prouide for stormes to": [0, 65535], "for stormes to him": [0, 65535], "stormes to him one": [0, 65535], "to him one of": [0, 65535], "him one of the": [0, 65535], "one of the other": [0, 65535], "of the other twins": [0, 65535], "the other twins was": [0, 65535], "other twins was bound": [0, 65535], "twins was bound whil'st": [0, 65535], "was bound whil'st i": [0, 65535], "bound whil'st i had": [0, 65535], "whil'st i had beene": [0, 65535], "i had beene like": [0, 65535], "had beene like heedfull": [0, 65535], "beene like heedfull of": [0, 65535], "like heedfull of the": [0, 65535], "heedfull of the other": [0, 65535], "of the other the": [0, 65535], "the other the children": [0, 65535], "other the children thus": [0, 65535], "the children thus dispos'd": [0, 65535], "children thus dispos'd my": [0, 65535], "thus dispos'd my wife": [0, 65535], "dispos'd my wife and": [0, 65535], "my wife and i": [0, 65535], "wife and i fixing": [0, 65535], "and i fixing our": [0, 65535], "i fixing our eyes": [0, 65535], "fixing our eyes on": [0, 65535], "our eyes on whom": [0, 65535], "eyes on whom our": [0, 65535], "on whom our care": [0, 65535], "whom our care was": [0, 65535], "our care was fixt": [0, 65535], "care was fixt fastned": [0, 65535], "was fixt fastned our": [0, 65535], "fixt fastned our selues": [0, 65535], "fastned our selues at": [0, 65535], "our selues at eyther": [0, 65535], "selues at eyther end": [0, 65535], "at eyther end the": [0, 65535], "eyther end the mast": [0, 65535], "end the mast and": [0, 65535], "the mast and floating": [0, 65535], "mast and floating straight": [0, 65535], "and floating straight obedient": [0, 65535], "floating straight obedient to": [0, 65535], "straight obedient to the": [0, 65535], "obedient to the streame": [0, 65535], "to the streame was": [0, 65535], "the streame was carried": [0, 65535], "streame was carried towards": [0, 65535], "was carried towards corinth": [0, 65535], "carried towards corinth as": [0, 65535], "towards corinth as we": [0, 65535], "corinth as we thought": [0, 65535], "as we thought at": [0, 65535], "we thought at length": [0, 65535], "thought at length the": [0, 65535], "at length the sonne": [0, 65535], "length the sonne gazing": [0, 65535], "the sonne gazing vpon": [0, 65535], "sonne gazing vpon the": [0, 65535], "gazing vpon the earth": [0, 65535], "vpon the earth disperst": [0, 65535], "the earth disperst those": [0, 65535], "earth disperst those vapours": [0, 65535], "disperst those vapours that": [0, 65535], "those vapours that offended": [0, 65535], "vapours that offended vs": [0, 65535], "that offended vs and": [0, 65535], "offended vs and by": [0, 65535], "vs and by the": [0, 65535], "and by the benefit": [0, 65535], "by the benefit of": [0, 65535], "the benefit of his": [0, 65535], "benefit of his wished": [0, 65535], "of his wished light": [0, 65535], "his wished light the": [0, 65535], "wished light the seas": [0, 65535], "light the seas waxt": [0, 65535], "the seas waxt calme": [0, 65535], "seas waxt calme and": [0, 65535], "waxt calme and we": [0, 65535], "calme and we discouered": [0, 65535], "and we discouered two": [0, 65535], "we discouered two shippes": [0, 65535], "discouered two shippes from": [0, 65535], "two shippes from farre": [0, 65535], "shippes from farre making": [0, 65535], "from farre making amaine": [0, 65535], "farre making amaine to": [0, 65535], "making amaine to vs": [0, 65535], "amaine to vs of": [0, 65535], "to vs of corinth": [0, 65535], "vs of corinth that": [0, 65535], "of corinth that of": [0, 65535], "corinth that of epidarus": [0, 65535], "that of epidarus this": [0, 65535], "of epidarus this but": [0, 65535], "epidarus this but ere": [0, 65535], "this but ere they": [0, 65535], "but ere they came": [0, 65535], "ere they came oh": [0, 65535], "they came oh let": [0, 65535], "came oh let me": [0, 65535], "oh let me say": [0, 65535], "let me say no": [0, 65535], "me say no more": [0, 65535], "say no more gather": [0, 65535], "no more gather the": [0, 65535], "more gather the sequell": [0, 65535], "gather the sequell by": [0, 65535], "the sequell by that": [0, 65535], "sequell by that went": [0, 65535], "by that went before": [0, 65535], "that went before duk": [0, 65535], "went before duk nay": [0, 65535], "before duk nay forward": [0, 65535], "duk nay forward old": [0, 65535], "nay forward old man": [0, 65535], "forward old man doe": [0, 65535], "old man doe not": [0, 65535], "man doe not breake": [0, 65535], "doe not breake off": [0, 65535], "not breake off so": [0, 65535], "breake off so for": [0, 65535], "off so for we": [0, 65535], "so for we may": [0, 65535], "for we may pitty": [0, 65535], "we may pitty though": [0, 65535], "may pitty though not": [0, 65535], "pitty though not pardon": [0, 65535], "though not pardon thee": [0, 65535], "not pardon thee merch": [0, 65535], "pardon thee merch oh": [0, 65535], "thee merch oh had": [0, 65535], "merch oh had the": [0, 65535], "oh had the gods": [0, 65535], "had the gods done": [0, 65535], "the gods done so": [0, 65535], "gods done so i": [0, 65535], "done so i had": [0, 65535], "so i had not": [0, 65535], "i had not now": [0, 65535], "had not now worthily": [0, 65535], "not now worthily tearm'd": [0, 65535], "now worthily tearm'd them": [0, 65535], "worthily tearm'd them mercilesse": [0, 65535], "tearm'd them mercilesse to": [0, 65535], "them mercilesse to vs": [0, 65535], "mercilesse to vs for": [0, 65535], "to vs for ere": [0, 65535], "vs for ere the": [0, 65535], "for ere the ships": [0, 65535], "ere the ships could": [0, 65535], "the ships could meet": [0, 65535], "ships could meet by": [0, 65535], "could meet by twice": [0, 65535], "meet by twice fiue": [0, 65535], "by twice fiue leagues": [0, 65535], "twice fiue leagues we": [0, 65535], "fiue leagues we were": [0, 65535], "leagues we were encountred": [0, 65535], "we were encountred by": [0, 65535], "were encountred by a": [0, 65535], "encountred by a mighty": [0, 65535], "by a mighty rocke": [0, 65535], "a mighty rocke which": [0, 65535], "mighty rocke which being": [0, 65535], "rocke which being violently": [0, 65535], "which being violently borne": [0, 65535], "being violently borne vp": [0, 65535], "violently borne vp our": [0, 65535], "borne vp our helpefull": [0, 65535], "vp our helpefull ship": [0, 65535], "our helpefull ship was": [0, 65535], "helpefull ship was splitted": [0, 65535], "ship was splitted in": [0, 65535], "was splitted in the": [0, 65535], "splitted in the midst": [0, 65535], "in the midst so": [0, 65535], "the midst so that": [0, 65535], "midst so that in": [0, 65535], "so that in this": [0, 65535], "that in this vniust": [0, 65535], "in this vniust diuorce": [0, 65535], "this vniust diuorce of": [0, 65535], "vniust diuorce of vs": [0, 65535], "diuorce of vs fortune": [0, 65535], "of vs fortune had": [0, 65535], "vs fortune had left": [0, 65535], "fortune had left to": [0, 65535], "had left to both": [0, 65535], "left to both of": [0, 65535], "to both of vs": [0, 65535], "both of vs alike": [0, 65535], "of vs alike what": [0, 65535], "vs alike what to": [0, 65535], "alike what to delight": [0, 65535], "what to delight in": [0, 65535], "to delight in what": [0, 65535], "delight in what to": [0, 65535], "in what to sorrow": [0, 65535], "what to sorrow for": [0, 65535], "to sorrow for her": [0, 65535], "sorrow for her part": [0, 65535], "for her part poore": [0, 65535], "her part poore soule": [0, 65535], "part poore soule seeming": [0, 65535], "poore soule seeming as": [0, 65535], "soule seeming as burdened": [0, 65535], "seeming as burdened with": [0, 65535], "as burdened with lesser": [0, 65535], "burdened with lesser waight": [0, 65535], "with lesser waight but": [0, 65535], "lesser waight but not": [0, 65535], "waight but not with": [0, 65535], "but not with lesser": [0, 65535], "not with lesser woe": [0, 65535], "with lesser woe was": [0, 65535], "lesser woe was carried": [0, 65535], "woe was carried with": [0, 65535], "was carried with more": [0, 65535], "carried with more speed": [0, 65535], "with more speed before": [0, 65535], "more speed before the": [0, 65535], "speed before the winde": [0, 65535], "before the winde and": [0, 65535], "the winde and in": [0, 65535], "winde and in our": [0, 65535], "and in our sight": [0, 65535], "in our sight they": [0, 65535], "our sight they three": [0, 65535], "sight they three were": [0, 65535], "they three were taken": [0, 65535], "three were taken vp": [0, 65535], "were taken vp by": [0, 65535], "taken vp by fishermen": [0, 65535], "vp by fishermen of": [0, 65535], "by fishermen of corinth": [0, 65535], "fishermen of corinth as": [0, 65535], "of corinth as we": [0, 65535], "thought at length another": [0, 65535], "at length another ship": [0, 65535], "length another ship had": [0, 65535], "another ship had seiz'd": [0, 65535], "ship had seiz'd on": [0, 65535], "had seiz'd on vs": [0, 65535], "seiz'd on vs and": [0, 65535], "on vs and knowing": [0, 65535], "vs and knowing whom": [0, 65535], "and knowing whom it": [0, 65535], "knowing whom it was": [0, 65535], "whom it was their": [0, 65535], "it was their hap": [0, 65535], "was their hap to": [0, 65535], "their hap to saue": [0, 65535], "hap to saue gaue": [0, 65535], "to saue gaue healthfull": [0, 65535], "saue gaue healthfull welcome": [0, 65535], "gaue healthfull welcome to": [0, 65535], "healthfull welcome to their": [0, 65535], "welcome to their ship": [0, 65535], "to their ship wrackt": [0, 65535], "their ship wrackt guests": [0, 65535], "ship wrackt guests and": [0, 65535], "wrackt guests and would": [0, 65535], "guests and would haue": [0, 65535], "and would haue reft": [0, 65535], "would haue reft the": [0, 65535], "haue reft the fishers": [0, 65535], "reft the fishers of": [0, 65535], "the fishers of their": [0, 65535], "fishers of their prey": [0, 65535], "of their prey had": [0, 65535], "their prey had not": [0, 65535], "prey had not their": [0, 65535], "had not their backe": [0, 65535], "not their backe beene": [0, 65535], "their backe beene very": [0, 65535], "backe beene very slow": [0, 65535], "beene very slow of": [0, 65535], "very slow of saile": [0, 65535], "slow of saile and": [0, 65535], "of saile and therefore": [0, 65535], "saile and therefore homeward": [0, 65535], "and therefore homeward did": [0, 65535], "therefore homeward did they": [0, 65535], "homeward did they bend": [0, 65535], "did they bend their": [0, 65535], "they bend their course": [0, 65535], "bend their course thus": [0, 65535], "their course thus haue": [0, 65535], "course thus haue you": [0, 65535], "thus haue you heard": [0, 65535], "haue you heard me": [0, 65535], "you heard me seuer'd": [0, 65535], "heard me seuer'd from": [0, 65535], "me seuer'd from my": [0, 65535], "seuer'd from my blisse": [0, 65535], "from my blisse that": [0, 65535], "my blisse that by": [0, 65535], "blisse that by misfortunes": [0, 65535], "that by misfortunes was": [0, 65535], "by misfortunes was my": [0, 65535], "misfortunes was my life": [0, 65535], "was my life prolong'd": [0, 65535], "my life prolong'd to": [0, 65535], "life prolong'd to tell": [0, 65535], "prolong'd to tell sad": [0, 65535], "to tell sad stories": [0, 65535], "tell sad stories of": [0, 65535], "sad stories of my": [0, 65535], "stories of my owne": [0, 65535], "of my owne mishaps": [0, 65535], "my owne mishaps duke": [0, 65535], "owne mishaps duke and": [0, 65535], "mishaps duke and for": [0, 65535], "duke and for the": [0, 65535], "and for the sake": [0, 65535], "for the sake of": [0, 65535], "the sake of them": [0, 65535], "sake of them thou": [0, 65535], "of them thou sorrowest": [0, 65535], "them thou sorrowest for": [0, 65535], "thou sorrowest for doe": [0, 65535], "sorrowest for doe me": [0, 65535], "for doe me the": [0, 65535], "doe me the fauour": [0, 65535], "me the fauour to": [0, 65535], "the fauour to dilate": [0, 65535], "fauour to dilate at": [0, 65535], "to dilate at full": [0, 65535], "dilate at full what": [0, 65535], "at full what haue": [0, 65535], "full what haue befalne": [0, 65535], "what haue befalne of": [0, 65535], "haue befalne of them": [0, 65535], "befalne of them and": [0, 65535], "of them and they": [0, 65535], "them and they till": [0, 65535], "and they till now": [0, 65535], "they till now merch": [0, 65535], "till now merch my": [0, 65535], "now merch my yongest": [0, 65535], "merch my yongest boy": [0, 65535], "my yongest boy and": [0, 65535], "yongest boy and yet": [0, 65535], "boy and yet my": [0, 65535], "and yet my eldest": [0, 65535], "yet my eldest care": [0, 65535], "my eldest care at": [0, 65535], "eldest care at eighteene": [0, 65535], "care at eighteene yeeres": [0, 65535], "at eighteene yeeres became": [0, 65535], "eighteene yeeres became inquisitiue": [0, 65535], "yeeres became inquisitiue after": [0, 65535], "became inquisitiue after his": [0, 65535], "inquisitiue after his brother": [0, 65535], "after his brother and": [0, 65535], "his brother and importun'd": [0, 65535], "brother and importun'd me": [0, 65535], "and importun'd me that": [0, 65535], "importun'd me that his": [0, 65535], "me that his attendant": [0, 65535], "that his attendant so": [0, 65535], "his attendant so his": [0, 65535], "attendant so his case": [0, 65535], "so his case was": [0, 65535], "his case was like": [0, 65535], "case was like reft": [0, 65535], "was like reft of": [0, 65535], "like reft of his": [0, 65535], "reft of his brother": [0, 65535], "of his brother but": [0, 65535], "his brother but retain'd": [0, 65535], "brother but retain'd his": [0, 65535], "but retain'd his name": [0, 65535], "retain'd his name might": [0, 65535], "his name might beare": [0, 65535], "name might beare him": [0, 65535], "might beare him company": [0, 65535], "beare him company in": [0, 65535], "him company in the": [0, 65535], "company in the quest": [0, 65535], "in the quest of": [0, 65535], "the quest of him": [0, 65535], "quest of him whom": [0, 65535], "of him whom whil'st": [0, 65535], "him whom whil'st i": [0, 65535], "whom whil'st i laboured": [0, 65535], "whil'st i laboured of": [0, 65535], "i laboured of a": [0, 65535], "laboured of a loue": [0, 65535], "of a loue to": [0, 65535], "a loue to see": [0, 65535], "loue to see i": [0, 65535], "to see i hazarded": [0, 65535], "see i hazarded the": [0, 65535], "i hazarded the losse": [0, 65535], "hazarded the losse of": [0, 65535], "the losse of whom": [0, 65535], "losse of whom i": [0, 65535], "of whom i lou'd": [0, 65535], "whom i lou'd fiue": [0, 65535], "i lou'd fiue sommers": [0, 65535], "lou'd fiue sommers haue": [0, 65535], "fiue sommers haue i": [0, 65535], "sommers haue i spent": [0, 65535], "haue i spent in": [0, 65535], "i spent in farthest": [0, 65535], "spent in farthest greece": [0, 65535], "in farthest greece roming": [0, 65535], "farthest greece roming cleane": [0, 65535], "greece roming cleane through": [0, 65535], "roming cleane through the": [0, 65535], "cleane through the bounds": [0, 65535], "through the bounds of": [0, 65535], "the bounds of asia": [0, 65535], "bounds of asia and": [0, 65535], "of asia and coasting": [0, 65535], "asia and coasting homeward": [0, 65535], "and coasting homeward came": [0, 65535], "coasting homeward came to": [0, 65535], "homeward came to ephesus": [0, 65535], "came to ephesus hopelesse": [0, 65535], "to ephesus hopelesse to": [0, 65535], "ephesus hopelesse to finde": [0, 65535], "hopelesse to finde yet": [0, 65535], "to finde yet loth": [0, 65535], "finde yet loth to": [0, 65535], "yet loth to leaue": [0, 65535], "loth to leaue vnsought": [0, 65535], "to leaue vnsought or": [0, 65535], "leaue vnsought or that": [0, 65535], "vnsought or that or": [0, 65535], "or that or any": [0, 65535], "that or any place": [0, 65535], "or any place that": [0, 65535], "any place that harbours": [0, 65535], "place that harbours men": [0, 65535], "that harbours men but": [0, 65535], "harbours men but heere": [0, 65535], "men but heere must": [0, 65535], "but heere must end": [0, 65535], "heere must end the": [0, 65535], "must end the story": [0, 65535], "end the story of": [0, 65535], "the story of my": [0, 65535], "story of my life": [0, 65535], "of my life and": [0, 65535], "my life and happy": [0, 65535], "life and happy were": [0, 65535], "and happy were i": [0, 65535], "happy were i in": [0, 65535], "were i in my": [0, 65535], "i in my timelie": [0, 65535], "in my timelie death": [0, 65535], "my timelie death could": [0, 65535], "timelie death could all": [0, 65535], "death could all my": [0, 65535], "could all my trauells": [0, 65535], "all my trauells warrant": [0, 65535], "my trauells warrant me": [0, 65535], "trauells warrant me they": [0, 65535], "warrant me they liue": [0, 65535], "me they liue duke": [0, 65535], "they liue duke haplesse": [0, 65535], "liue duke haplesse egeon": [0, 65535], "duke haplesse egeon whom": [0, 65535], "haplesse egeon whom the": [0, 65535], "egeon whom the fates": [0, 65535], "whom the fates haue": [0, 65535], "the fates haue markt": [0, 65535], "fates haue markt to": [0, 65535], "haue markt to beare": [0, 65535], "markt to beare the": [0, 65535], "to beare the extremitie": [0, 65535], "beare the extremitie of": [0, 65535], "the extremitie of dire": [0, 65535], "extremitie of dire mishap": [0, 65535], "of dire mishap now": [0, 65535], "dire mishap now trust": [0, 65535], "mishap now trust me": [0, 65535], "now trust me were": [0, 65535], "trust me were it": [0, 65535], "me were it not": [0, 65535], "were it not against": [0, 65535], "it not against our": [0, 65535], "not against our lawes": [0, 65535], "against our lawes against": [0, 65535], "our lawes against my": [0, 65535], "lawes against my crowne": [0, 65535], "against my crowne my": [0, 65535], "my crowne my oath": [0, 65535], "crowne my oath my": [0, 65535], "my oath my dignity": [0, 65535], "oath my dignity which": [0, 65535], "my dignity which princes": [0, 65535], "dignity which princes would": [0, 65535], "which princes would they": [0, 65535], "princes would they may": [0, 65535], "would they may not": [0, 65535], "they may not disanull": [0, 65535], "may not disanull my": [0, 65535], "not disanull my soule": [0, 65535], "disanull my soule should": [0, 65535], "my soule should sue": [0, 65535], "soule should sue as": [0, 65535], "should sue as aduocate": [0, 65535], "sue as aduocate for": [0, 65535], "as aduocate for thee": [0, 65535], "aduocate for thee but": [0, 65535], "for thee but though": [0, 65535], "thee but though thou": [0, 65535], "but though thou art": [0, 65535], "though thou art adiudged": [0, 65535], "thou art adiudged to": [0, 65535], "art adiudged to the": [0, 65535], "adiudged to the death": [0, 65535], "to the death and": [0, 65535], "the death and passed": [0, 65535], "death and passed sentence": [0, 65535], "and passed sentence may": [0, 65535], "passed sentence may not": [0, 65535], "sentence may not be": [0, 65535], "may not be recal'd": [0, 65535], "not be recal'd but": [0, 65535], "be recal'd but to": [0, 65535], "recal'd but to our": [0, 65535], "but to our honours": [0, 65535], "to our honours great": [0, 65535], "our honours great disparagement": [0, 65535], "honours great disparagement yet": [0, 65535], "great disparagement yet will": [0, 65535], "disparagement yet will i": [0, 65535], "yet will i fauour": [0, 65535], "will i fauour thee": [0, 65535], "i fauour thee in": [0, 65535], "fauour thee in what": [0, 65535], "thee in what i": [0, 65535], "in what i can": [0, 65535], "what i can therefore": [0, 65535], "i can therefore marchant": [0, 65535], "can therefore marchant ile": [0, 65535], "therefore marchant ile limit": [0, 65535], "marchant ile limit thee": [0, 65535], "ile limit thee this": [0, 65535], "limit thee this day": [0, 65535], "thee this day to": [0, 65535], "this day to seeke": [0, 65535], "day to seeke thy": [0, 65535], "to seeke thy helpe": [0, 65535], "seeke thy helpe by": [0, 65535], "thy helpe by beneficiall": [0, 65535], "helpe by beneficiall helpe": [0, 65535], "by beneficiall helpe try": [0, 65535], "beneficiall helpe try all": [0, 65535], "helpe try all the": [0, 65535], "try all the friends": [0, 65535], "all the friends thou": [0, 65535], "the friends thou hast": [0, 65535], "friends thou hast in": [0, 65535], "thou hast in ephesus": [0, 65535], "hast in ephesus beg": [0, 65535], "in ephesus beg thou": [0, 65535], "ephesus beg thou or": [0, 65535], "beg thou or borrow": [0, 65535], "thou or borrow to": [0, 65535], "or borrow to make": [0, 65535], "borrow to make vp": [0, 65535], "to make vp the": [0, 65535], "make vp the summe": [0, 65535], "vp the summe and": [0, 65535], "the summe and liue": [0, 65535], "summe and liue if": [0, 65535], "and liue if no": [0, 65535], "liue if no then": [0, 65535], "if no then thou": [0, 65535], "no then thou art": [0, 65535], "then thou art doom'd": [0, 65535], "thou art doom'd to": [0, 65535], "art doom'd to die": [0, 65535], "doom'd to die iaylor": [0, 65535], "to die iaylor take": [0, 65535], "die iaylor take him": [0, 65535], "iaylor take him to": [0, 65535], "take him to thy": [0, 65535], "him to thy custodie": [0, 65535], "to thy custodie iaylor": [0, 65535], "thy custodie iaylor i": [0, 65535], "custodie iaylor i will": [0, 65535], "iaylor i will my": [0, 65535], "i will my lord": [0, 65535], "will my lord merch": [0, 65535], "my lord merch hopelesse": [0, 65535], "lord merch hopelesse and": [0, 65535], "merch hopelesse and helpelesse": [0, 65535], "hopelesse and helpelesse doth": [0, 65535], "and helpelesse doth egean": [0, 65535], "helpelesse doth egean wend": [0, 65535], "doth egean wend but": [0, 65535], "egean wend but to": [0, 65535], "wend but to procrastinate": [0, 65535], "but to procrastinate his": [0, 65535], "to procrastinate his liuelesse": [0, 65535], "procrastinate his liuelesse end": [0, 65535], "his liuelesse end exeunt": [0, 65535], "liuelesse end exeunt enter": [0, 65535], "end exeunt enter antipholis": [0, 65535], "exeunt enter antipholis erotes": [0, 65535], "enter antipholis erotes a": [0, 65535], "antipholis erotes a marchant": [0, 65535], "erotes a marchant and": [0, 65535], "a marchant and dromio": [0, 65535], "marchant and dromio mer": [0, 65535], "and dromio mer therefore": [0, 65535], "dromio mer therefore giue": [0, 65535], "mer therefore giue out": [0, 65535], "therefore giue out you": [0, 65535], "giue out you are": [0, 65535], "out you are of": [0, 65535], "you are of epidamium": [0, 65535], "are of epidamium lest": [0, 65535], "of epidamium lest that": [0, 65535], "epidamium lest that your": [0, 65535], "lest that your goods": [0, 65535], "that your goods too": [0, 65535], "your goods too soone": [0, 65535], "goods too soone be": [0, 65535], "too soone be confiscate": [0, 65535], "soone be confiscate this": [0, 65535], "be confiscate this very": [0, 65535], "confiscate this very day": [0, 65535], "this very day a": [0, 65535], "very day a syracusian": [0, 65535], "day a syracusian marchant": [0, 65535], "a syracusian marchant is": [0, 65535], "syracusian marchant is apprehended": [0, 65535], "marchant is apprehended for": [0, 65535], "is apprehended for a": [0, 65535], "apprehended for a riuall": [0, 65535], "for a riuall here": [0, 65535], "a riuall here and": [0, 65535], "riuall here and not": [0, 65535], "here and not being": [0, 65535], "and not being able": [0, 65535], "not being able to": [0, 65535], "being able to buy": [0, 65535], "able to buy out": [0, 65535], "to buy out his": [0, 65535], "buy out his life": [0, 65535], "out his life according": [0, 65535], "his life according to": [0, 65535], "life according to the": [0, 65535], "according to the statute": [0, 65535], "to the statute of": [0, 65535], "the statute of the": [0, 65535], "statute of the towne": [0, 65535], "of the towne dies": [0, 65535], "the towne dies ere": [0, 65535], "towne dies ere the": [0, 65535], "dies ere the wearie": [0, 65535], "ere the wearie sunne": [0, 65535], "the wearie sunne set": [0, 65535], "wearie sunne set in": [0, 65535], "sunne set in the": [0, 65535], "set in the west": [0, 65535], "in the west there": [0, 65535], "the west there is": [0, 65535], "west there is your": [0, 65535], "there is your monie": [0, 65535], "is your monie that": [0, 65535], "your monie that i": [0, 65535], "monie that i had": [0, 65535], "that i had to": [0, 65535], "i had to keepe": [0, 65535], "had to keepe ant": [0, 65535], "to keepe ant goe": [0, 65535], "keepe ant goe beare": [0, 65535], "ant goe beare it": [0, 65535], "goe beare it to": [0, 65535], "beare it to the": [0, 65535], "it to the centaure": [0, 65535], "to the centaure where": [0, 65535], "the centaure where we": [0, 65535], "centaure where we host": [0, 65535], "where we host and": [0, 65535], "we host and stay": [0, 65535], "host and stay there": [0, 65535], "and stay there dromio": [0, 65535], "stay there dromio till": [0, 65535], "there dromio till i": [0, 65535], "dromio till i come": [0, 65535], "till i come to": [0, 65535], "i come to thee": [0, 65535], "come to thee within": [0, 65535], "to thee within this": [0, 65535], "thee within this houre": [0, 65535], "within this houre it": [0, 65535], "this houre it will": [0, 65535], "houre it will be": [0, 65535], "it will be dinner": [0, 65535], "will be dinner time": [0, 65535], "be dinner time till": [0, 65535], "dinner time till that": [0, 65535], "time till that ile": [0, 65535], "till that ile view": [0, 65535], "that ile view the": [0, 65535], "ile view the manners": [0, 65535], "view the manners of": [0, 65535], "the manners of the": [0, 65535], "manners of the towne": [0, 65535], "of the towne peruse": [0, 65535], "the towne peruse the": [0, 65535], "towne peruse the traders": [0, 65535], "peruse the traders gaze": [0, 65535], "the traders gaze vpon": [0, 65535], "traders gaze vpon the": [0, 65535], "gaze vpon the buildings": [0, 65535], "vpon the buildings and": [0, 65535], "the buildings and then": [0, 65535], "buildings and then returne": [0, 65535], "and then returne and": [0, 65535], "then returne and sleepe": [0, 65535], "returne and sleepe within": [0, 65535], "and sleepe within mine": [0, 65535], "sleepe within mine inne": [0, 65535], "within mine inne for": [0, 65535], "mine inne for with": [0, 65535], "inne for with long": [0, 65535], "for with long trauaile": [0, 65535], "with long trauaile i": [0, 65535], "long trauaile i am": [0, 65535], "trauaile i am stiffe": [0, 65535], "i am stiffe and": [0, 65535], "am stiffe and wearie": [0, 65535], "stiffe and wearie get": [0, 65535], "and wearie get thee": [0, 65535], "wearie get thee away": [0, 65535], "get thee away dro": [0, 65535], "thee away dro many": [0, 65535], "away dro many a": [0, 65535], "dro many a man": [0, 65535], "many a man would": [0, 65535], "a man would take": [0, 65535], "man would take you": [0, 65535], "would take you at": [0, 65535], "take you at your": [0, 65535], "you at your word": [0, 65535], "at your word and": [0, 65535], "your word and goe": [0, 65535], "word and goe indeede": [0, 65535], "and goe indeede hauing": [0, 65535], "goe indeede hauing so": [0, 65535], "indeede hauing so good": [0, 65535], "hauing so good a": [0, 65535], "so good a meane": [0, 65535], "good a meane exit": [0, 65535], "a meane exit dromio": [0, 65535], "meane exit dromio ant": [0, 65535], "exit dromio ant a": [0, 65535], "dromio ant a trustie": [0, 65535], "ant a trustie villaine": [0, 65535], "a trustie villaine sir": [0, 65535], "trustie villaine sir that": [0, 65535], "villaine sir that very": [0, 65535], "sir that very oft": [0, 65535], "that very oft when": [0, 65535], "very oft when i": [0, 65535], "oft when i am": [0, 65535], "when i am dull": [0, 65535], "i am dull with": [0, 65535], "am dull with care": [0, 65535], "dull with care and": [0, 65535], "with care and melancholly": [0, 65535], "care and melancholly lightens": [0, 65535], "and melancholly lightens my": [0, 65535], "melancholly lightens my humour": [0, 65535], "lightens my humour with": [0, 65535], "my humour with his": [0, 65535], "humour with his merry": [0, 65535], "with his merry iests": [0, 65535], "his merry iests what": [0, 65535], "merry iests what will": [0, 65535], "iests what will you": [0, 65535], "what will you walke": [0, 65535], "will you walke with": [0, 65535], "you walke with me": [0, 65535], "walke with me about": [0, 65535], "with me about the": [0, 65535], "me about the towne": [0, 65535], "about the towne and": [0, 65535], "the towne and then": [0, 65535], "towne and then goe": [0, 65535], "and then goe to": [0, 65535], "then goe to my": [0, 65535], "goe to my inne": [0, 65535], "to my inne and": [0, 65535], "my inne and dine": [0, 65535], "inne and dine with": [0, 65535], "and dine with me": [0, 65535], "dine with me e": [0, 65535], "with me e mar": [0, 65535], "me e mar i": [0, 65535], "e mar i am": [0, 65535], "mar i am inuited": [0, 65535], "i am inuited sir": [0, 65535], "am inuited sir to": [0, 65535], "inuited sir to certaine": [0, 65535], "sir to certaine marchants": [0, 65535], "to certaine marchants of": [0, 65535], "certaine marchants of whom": [0, 65535], "marchants of whom i": [0, 65535], "of whom i hope": [0, 65535], "whom i hope to": [0, 65535], "i hope to make": [0, 65535], "hope to make much": [0, 65535], "to make much benefit": [0, 65535], "make much benefit i": [0, 65535], "much benefit i craue": [0, 65535], "benefit i craue your": [0, 65535], "i craue your pardon": [0, 65535], "craue your pardon soone": [0, 65535], "your pardon soone at": [0, 65535], "pardon soone at fiue": [0, 65535], "soone at fiue a": [0, 65535], "at fiue a clocke": [0, 65535], "fiue a clocke please": [0, 65535], "a clocke please you": [0, 65535], "clocke please you ile": [0, 65535], "please you ile meete": [0, 65535], "you ile meete with": [0, 65535], "ile meete with you": [0, 65535], "meete with you vpon": [0, 65535], "with you vpon the": [0, 65535], "you vpon the mart": [0, 65535], "vpon the mart and": [0, 65535], "the mart and afterward": [0, 65535], "mart and afterward consort": [0, 65535], "and afterward consort you": [0, 65535], "afterward consort you till": [0, 65535], "consort you till bed": [0, 65535], "you till bed time": [0, 65535], "till bed time my": [0, 65535], "bed time my present": [0, 65535], "time my present businesse": [0, 65535], "my present businesse cals": [0, 65535], "present businesse cals me": [0, 65535], "businesse cals me from": [0, 65535], "cals me from you": [0, 65535], "me from you now": [0, 65535], "from you now ant": [0, 65535], "you now ant farewell": [0, 65535], "now ant farewell till": [0, 65535], "ant farewell till then": [0, 65535], "farewell till then i": [0, 65535], "till then i will": [0, 65535], "then i will goe": [0, 65535], "i will goe loose": [0, 65535], "will goe loose my": [0, 65535], "goe loose my selfe": [0, 65535], "loose my selfe and": [0, 65535], "my selfe and wander": [0, 65535], "selfe and wander vp": [0, 65535], "and wander vp and": [0, 65535], "wander vp and downe": [0, 65535], "vp and downe to": [0, 65535], "and downe to view": [0, 65535], "downe to view the": [0, 65535], "to view the citie": [0, 65535], "view the citie e": [0, 65535], "the citie e mar": [0, 65535], "citie e mar sir": [0, 65535], "e mar sir i": [0, 65535], "mar sir i commend": [0, 65535], "sir i commend you": [0, 65535], "i commend you to": [0, 65535], "commend you to your": [0, 65535], "you to your owne": [0, 65535], "to your owne content": [0, 65535], "your owne content exeunt": [0, 65535], "owne content exeunt ant": [0, 65535], "content exeunt ant he": [0, 65535], "exeunt ant he that": [0, 65535], "ant he that commends": [0, 65535], "he that commends me": [0, 65535], "that commends me to": [0, 65535], "commends me to mine": [0, 65535], "me to mine owne": [0, 65535], "to mine owne content": [0, 65535], "mine owne content commends": [0, 65535], "owne content commends me": [0, 65535], "content commends me to": [0, 65535], "commends me to the": [0, 65535], "me to the thing": [0, 65535], "to the thing i": [0, 65535], "the thing i cannot": [0, 65535], "thing i cannot get": [0, 65535], "i cannot get i": [0, 65535], "cannot get i to": [0, 65535], "get i to the": [0, 65535], "i to the world": [0, 65535], "to the world am": [0, 65535], "the world am like": [0, 65535], "world am like a": [0, 65535], "am like a drop": [0, 65535], "like a drop of": [0, 65535], "drop of water that": [0, 65535], "of water that in": [0, 65535], "water that in the": [0, 65535], "that in the ocean": [0, 65535], "in the ocean seekes": [0, 65535], "the ocean seekes another": [0, 65535], "ocean seekes another drop": [0, 65535], "seekes another drop who": [0, 65535], "another drop who falling": [0, 65535], "drop who falling there": [0, 65535], "who falling there to": [0, 65535], "falling there to finde": [0, 65535], "there to finde his": [0, 65535], "to finde his fellow": [0, 65535], "finde his fellow forth": [0, 65535], "his fellow forth vnseene": [0, 65535], "fellow forth vnseene inquisitiue": [0, 65535], "forth vnseene inquisitiue confounds": [0, 65535], "vnseene inquisitiue confounds himselfe": [0, 65535], "inquisitiue confounds himselfe so": [0, 65535], "confounds himselfe so i": [0, 65535], "himselfe so i to": [0, 65535], "so i to finde": [0, 65535], "i to finde a": [0, 65535], "to finde a mother": [0, 65535], "finde a mother and": [0, 65535], "a mother and a": [0, 65535], "mother and a brother": [0, 65535], "and a brother in": [0, 65535], "a brother in quest": [0, 65535], "brother in quest of": [0, 65535], "in quest of them": [0, 65535], "quest of them vnhappie": [0, 65535], "of them vnhappie a": [0, 65535], "them vnhappie a loose": [0, 65535], "vnhappie a loose my": [0, 65535], "a loose my selfe": [0, 65535], "loose my selfe enter": [0, 65535], "my selfe enter dromio": [0, 65535], "selfe enter dromio of": [0, 65535], "enter dromio of ephesus": [0, 65535], "dromio of ephesus here": [0, 65535], "of ephesus here comes": [0, 65535], "ephesus here comes the": [0, 65535], "here comes the almanacke": [0, 65535], "comes the almanacke of": [0, 65535], "the almanacke of my": [0, 65535], "almanacke of my true": [0, 65535], "of my true date": [0, 65535], "my true date what": [0, 65535], "true date what now": [0, 65535], "date what now how": [0, 65535], "what now how chance": [0, 65535], "now how chance thou": [0, 65535], "how chance thou art": [0, 65535], "chance thou art return'd": [0, 65535], "thou art return'd so": [0, 65535], "art return'd so soone": [0, 65535], "return'd so soone e": [0, 65535], "so soone e dro": [0, 65535], "soone e dro return'd": [0, 65535], "e dro return'd so": [0, 65535], "dro return'd so soone": [0, 65535], "return'd so soone rather": [0, 65535], "so soone rather approacht": [0, 65535], "soone rather approacht too": [0, 65535], "rather approacht too late": [0, 65535], "approacht too late the": [0, 65535], "too late the capon": [0, 65535], "late the capon burnes": [0, 65535], "the capon burnes the": [0, 65535], "capon burnes the pig": [0, 65535], "burnes the pig fals": [0, 65535], "the pig fals from": [0, 65535], "pig fals from the": [0, 65535], "fals from the spit": [0, 65535], "from the spit the": [0, 65535], "the spit the clocke": [0, 65535], "spit the clocke hath": [0, 65535], "the clocke hath strucken": [0, 65535], "clocke hath strucken twelue": [0, 65535], "hath strucken twelue vpon": [0, 65535], "strucken twelue vpon the": [0, 65535], "twelue vpon the bell": [0, 65535], "vpon the bell my": [0, 65535], "the bell my mistris": [0, 65535], "bell my mistris made": [0, 65535], "my mistris made it": [0, 65535], "mistris made it one": [0, 65535], "made it one vpon": [0, 65535], "it one vpon my": [0, 65535], "one vpon my cheeke": [0, 65535], "vpon my cheeke she": [0, 65535], "my cheeke she is": [0, 65535], "cheeke she is so": [0, 65535], "she is so hot": [0, 65535], "is so hot because": [0, 65535], "so hot because the": [0, 65535], "hot because the meate": [0, 65535], "because the meate is": [0, 65535], "the meate is colde": [0, 65535], "meate is colde the": [0, 65535], "is colde the meate": [0, 65535], "colde the meate is": [0, 65535], "meate is colde because": [0, 65535], "is colde because you": [0, 65535], "colde because you come": [0, 65535], "because you come not": [0, 65535], "you come not home": [0, 65535], "come not home you": [0, 65535], "not home you come": [0, 65535], "home you come not": [0, 65535], "come not home because": [0, 65535], "not home because you": [0, 65535], "home because you haue": [0, 65535], "because you haue no": [0, 65535], "you haue no stomacke": [0, 65535], "haue no stomacke you": [0, 65535], "no stomacke you haue": [0, 65535], "stomacke you haue no": [0, 65535], "haue no stomacke hauing": [0, 65535], "no stomacke hauing broke": [0, 65535], "stomacke hauing broke your": [0, 65535], "hauing broke your fast": [0, 65535], "broke your fast but": [0, 65535], "your fast but we": [0, 65535], "fast but we that": [0, 65535], "but we that know": [0, 65535], "we that know what": [0, 65535], "that know what 'tis": [0, 65535], "know what 'tis to": [0, 65535], "what 'tis to fast": [0, 65535], "'tis to fast and": [0, 65535], "to fast and pray": [0, 65535], "fast and pray are": [0, 65535], "and pray are penitent": [0, 65535], "pray are penitent for": [0, 65535], "are penitent for your": [0, 65535], "penitent for your default": [0, 65535], "for your default to": [0, 65535], "your default to day": [0, 65535], "default to day ant": [0, 65535], "to day ant stop": [0, 65535], "day ant stop in": [0, 65535], "ant stop in your": [0, 65535], "stop in your winde": [0, 65535], "in your winde sir": [0, 65535], "your winde sir tell": [0, 65535], "winde sir tell me": [0, 65535], "sir tell me this": [0, 65535], "tell me this i": [0, 65535], "me this i pray": [0, 65535], "this i pray where": [0, 65535], "i pray where haue": [0, 65535], "pray where haue you": [0, 65535], "where haue you left": [0, 65535], "haue you left the": [0, 65535], "you left the mony": [0, 65535], "left the mony that": [0, 65535], "the mony that i": [0, 65535], "mony that i gaue": [0, 65535], "that i gaue you": [0, 65535], "i gaue you e": [0, 65535], "gaue you e dro": [0, 65535], "you e dro oh": [0, 65535], "e dro oh sixe": [0, 65535], "dro oh sixe pence": [0, 65535], "oh sixe pence that": [0, 65535], "sixe pence that i": [0, 65535], "pence that i had": [0, 65535], "that i had a": [0, 65535], "i had a wensday": [0, 65535], "had a wensday last": [0, 65535], "a wensday last to": [0, 65535], "wensday last to pay": [0, 65535], "last to pay the": [0, 65535], "to pay the sadler": [0, 65535], "pay the sadler for": [0, 65535], "the sadler for my": [0, 65535], "sadler for my mistris": [0, 65535], "for my mistris crupper": [0, 65535], "my mistris crupper the": [0, 65535], "mistris crupper the sadler": [0, 65535], "crupper the sadler had": [0, 65535], "the sadler had it": [0, 65535], "sadler had it sir": [0, 65535], "had it sir i": [0, 65535], "it sir i kept": [0, 65535], "sir i kept it": [0, 65535], "i kept it not": [0, 65535], "kept it not ant": [0, 65535], "it not ant i": [0, 65535], "not ant i am": [0, 65535], "ant i am not": [0, 65535], "i am not in": [0, 65535], "am not in a": [0, 65535], "not in a sportiue": [0, 65535], "in a sportiue humor": [0, 65535], "a sportiue humor now": [0, 65535], "sportiue humor now tell": [0, 65535], "humor now tell me": [0, 65535], "now tell me and": [0, 65535], "tell me and dally": [0, 65535], "me and dally not": [0, 65535], "and dally not where": [0, 65535], "dally not where is": [0, 65535], "not where is the": [0, 65535], "where is the monie": [0, 65535], "is the monie we": [0, 65535], "the monie we being": [0, 65535], "monie we being strangers": [0, 65535], "we being strangers here": [0, 65535], "being strangers here how": [0, 65535], "strangers here how dar'st": [0, 65535], "here how dar'st thou": [0, 65535], "how dar'st thou trust": [0, 65535], "dar'st thou trust so": [0, 65535], "thou trust so great": [0, 65535], "trust so great a": [0, 65535], "so great a charge": [0, 65535], "great a charge from": [0, 65535], "a charge from thine": [0, 65535], "charge from thine owne": [0, 65535], "from thine owne custodie": [0, 65535], "thine owne custodie e": [0, 65535], "owne custodie e dro": [0, 65535], "custodie e dro i": [0, 65535], "e dro i pray": [0, 65535], "dro i pray you": [0, 65535], "i pray you iest": [0, 65535], "pray you iest sir": [0, 65535], "you iest sir as": [0, 65535], "iest sir as you": [0, 65535], "sir as you sit": [0, 65535], "as you sit at": [0, 65535], "you sit at dinner": [0, 65535], "sit at dinner i": [0, 65535], "at dinner i from": [0, 65535], "dinner i from my": [0, 65535], "i from my mistris": [0, 65535], "from my mistris come": [0, 65535], "my mistris come to": [0, 65535], "mistris come to you": [0, 65535], "come to you in": [0, 65535], "to you in post": [0, 65535], "you in post if": [0, 65535], "in post if i": [0, 65535], "post if i returne": [0, 65535], "if i returne i": [0, 65535], "i returne i shall": [0, 65535], "returne i shall be": [0, 65535], "i shall be post": [0, 65535], "shall be post indeede": [0, 65535], "be post indeede for": [0, 65535], "post indeede for she": [0, 65535], "indeede for she will": [0, 65535], "for she will scoure": [0, 65535], "she will scoure your": [0, 65535], "will scoure your fault": [0, 65535], "scoure your fault vpon": [0, 65535], "your fault vpon my": [0, 65535], "fault vpon my pate": [0, 65535], "vpon my pate me": [0, 65535], "my pate me thinkes": [0, 65535], "pate me thinkes your": [0, 65535], "me thinkes your maw": [0, 65535], "thinkes your maw like": [0, 65535], "your maw like mine": [0, 65535], "maw like mine should": [0, 65535], "like mine should be": [0, 65535], "mine should be your": [0, 65535], "should be your cooke": [0, 65535], "be your cooke and": [0, 65535], "your cooke and strike": [0, 65535], "cooke and strike you": [0, 65535], "and strike you home": [0, 65535], "strike you home without": [0, 65535], "you home without a": [0, 65535], "home without a messenger": [0, 65535], "without a messenger ant": [0, 65535], "a messenger ant come": [0, 65535], "messenger ant come dromio": [0, 65535], "ant come dromio come": [0, 65535], "come dromio come these": [0, 65535], "dromio come these iests": [0, 65535], "come these iests are": [0, 65535], "these iests are out": [0, 65535], "iests are out of": [0, 65535], "are out of season": [0, 65535], "out of season reserue": [0, 65535], "of season reserue them": [0, 65535], "season reserue them till": [0, 65535], "reserue them till a": [0, 65535], "them till a merrier": [0, 65535], "till a merrier houre": [0, 65535], "a merrier houre then": [0, 65535], "merrier houre then this": [0, 65535], "houre then this where": [0, 65535], "then this where is": [0, 65535], "this where is the": [0, 65535], "where is the gold": [0, 65535], "is the gold i": [0, 65535], "gold i gaue in": [0, 65535], "i gaue in charge": [0, 65535], "gaue in charge to": [0, 65535], "in charge to thee": [0, 65535], "charge to thee e": [0, 65535], "to thee e dro": [0, 65535], "thee e dro to": [0, 65535], "e dro to me": [0, 65535], "dro to me sir": [0, 65535], "to me sir why": [0, 65535], "me sir why you": [0, 65535], "sir why you gaue": [0, 65535], "why you gaue no": [0, 65535], "you gaue no gold": [0, 65535], "gaue no gold to": [0, 65535], "no gold to me": [0, 65535], "gold to me ant": [0, 65535], "to me ant come": [0, 65535], "me ant come on": [0, 65535], "ant come on sir": [0, 65535], "come on sir knaue": [0, 65535], "on sir knaue haue": [0, 65535], "sir knaue haue done": [0, 65535], "knaue haue done your": [0, 65535], "haue done your foolishnes": [0, 65535], "done your foolishnes and": [0, 65535], "your foolishnes and tell": [0, 65535], "foolishnes and tell me": [0, 65535], "and tell me how": [0, 65535], "tell me how thou": [0, 65535], "me how thou hast": [0, 65535], "how thou hast dispos'd": [0, 65535], "thou hast dispos'd thy": [0, 65535], "hast dispos'd thy charge": [0, 65535], "dispos'd thy charge e": [0, 65535], "thy charge e dro": [0, 65535], "charge e dro my": [0, 65535], "e dro my charge": [0, 65535], "dro my charge was": [0, 65535], "my charge was but": [0, 65535], "charge was but to": [0, 65535], "was but to fetch": [0, 65535], "but to fetch you": [0, 65535], "to fetch you from": [0, 65535], "fetch you from the": [0, 65535], "you from the mart": [0, 65535], "from the mart home": [0, 65535], "the mart home to": [0, 65535], "mart home to your": [0, 65535], "home to your house": [0, 65535], "to your house the": [0, 65535], "your house the ph\u0153nix": [0, 65535], "house the ph\u0153nix sir": [0, 65535], "the ph\u0153nix sir to": [0, 65535], "ph\u0153nix sir to dinner": [0, 65535], "sir to dinner my": [0, 65535], "to dinner my mistris": [0, 65535], "dinner my mistris and": [0, 65535], "my mistris and her": [0, 65535], "mistris and her sister": [0, 65535], "and her sister staies": [0, 65535], "her sister staies for": [0, 65535], "sister staies for you": [0, 65535], "staies for you ant": [0, 65535], "for you ant now": [0, 65535], "you ant now as": [0, 65535], "ant now as i": [0, 65535], "now as i am": [0, 65535], "as i am a": [0, 65535], "i am a christian": [0, 65535], "am a christian answer": [0, 65535], "a christian answer me": [0, 65535], "christian answer me in": [0, 65535], "answer me in what": [0, 65535], "me in what safe": [0, 65535], "in what safe place": [0, 65535], "what safe place you": [0, 65535], "safe place you haue": [0, 65535], "place you haue bestow'd": [0, 65535], "you haue bestow'd my": [0, 65535], "haue bestow'd my monie": [0, 65535], "bestow'd my monie or": [0, 65535], "my monie or i": [0, 65535], "monie or i shall": [0, 65535], "or i shall breake": [0, 65535], "i shall breake that": [0, 65535], "shall breake that merrie": [0, 65535], "breake that merrie sconce": [0, 65535], "that merrie sconce of": [0, 65535], "merrie sconce of yours": [0, 65535], "sconce of yours that": [0, 65535], "of yours that stands": [0, 65535], "yours that stands on": [0, 65535], "that stands on tricks": [0, 65535], "stands on tricks when": [0, 65535], "on tricks when i": [0, 65535], "tricks when i am": [0, 65535], "when i am vndispos'd": [0, 65535], "i am vndispos'd where": [0, 65535], "am vndispos'd where is": [0, 65535], "vndispos'd where is the": [0, 65535], "the thousand markes thou": [0, 65535], "thousand markes thou hadst": [0, 65535], "markes thou hadst of": [0, 65535], "thou hadst of me": [0, 65535], "hadst of me e": [0, 65535], "of me e dro": [0, 65535], "me e dro i": [0, 65535], "e dro i haue": [0, 65535], "dro i haue some": [0, 65535], "i haue some markes": [0, 65535], "haue some markes of": [0, 65535], "some markes of yours": [0, 65535], "markes of yours vpon": [0, 65535], "of yours vpon my": [0, 65535], "yours vpon my pate": [0, 65535], "vpon my pate some": [0, 65535], "my pate some of": [0, 65535], "pate some of my": [0, 65535], "some of my mistris": [0, 65535], "of my mistris markes": [0, 65535], "my mistris markes vpon": [0, 65535], "mistris markes vpon my": [0, 65535], "markes vpon my shoulders": [0, 65535], "vpon my shoulders but": [0, 65535], "my shoulders but not": [0, 65535], "shoulders but not a": [0, 65535], "but not a thousand": [0, 65535], "not a thousand markes": [0, 65535], "a thousand markes betweene": [0, 65535], "thousand markes betweene you": [0, 65535], "markes betweene you both": [0, 65535], "betweene you both if": [0, 65535], "you both if i": [0, 65535], "both if i should": [0, 65535], "if i should pay": [0, 65535], "i should pay your": [0, 65535], "should pay your worship": [0, 65535], "pay your worship those": [0, 65535], "your worship those againe": [0, 65535], "worship those againe perchance": [0, 65535], "those againe perchance you": [0, 65535], "againe perchance you will": [0, 65535], "perchance you will not": [0, 65535], "you will not beare": [0, 65535], "will not beare them": [0, 65535], "not beare them patiently": [0, 65535], "beare them patiently ant": [0, 65535], "them patiently ant thy": [0, 65535], "patiently ant thy mistris": [0, 65535], "ant thy mistris markes": [0, 65535], "thy mistris markes what": [0, 65535], "mistris markes what mistris": [0, 65535], "markes what mistris slaue": [0, 65535], "what mistris slaue hast": [0, 65535], "mistris slaue hast thou": [0, 65535], "slaue hast thou e": [0, 65535], "hast thou e dro": [0, 65535], "thou e dro your": [0, 65535], "e dro your worships": [0, 65535], "dro your worships wife": [0, 65535], "your worships wife my": [0, 65535], "worships wife my mistris": [0, 65535], "wife my mistris at": [0, 65535], "my mistris at the": [0, 65535], "mistris at the ph\u0153nix": [0, 65535], "at the ph\u0153nix she": [0, 65535], "the ph\u0153nix she that": [0, 65535], "ph\u0153nix she that doth": [0, 65535], "she that doth fast": [0, 65535], "that doth fast till": [0, 65535], "doth fast till you": [0, 65535], "fast till you come": [0, 65535], "till you come home": [0, 65535], "you come home to": [0, 65535], "home to dinner and": [0, 65535], "to dinner and praies": [0, 65535], "dinner and praies that": [0, 65535], "and praies that you": [0, 65535], "praies that you will": [0, 65535], "that you will hie": [0, 65535], "you will hie you": [0, 65535], "will hie you home": [0, 65535], "hie you home to": [0, 65535], "you home to dinner": [0, 65535], "to dinner ant what": [0, 65535], "dinner ant what wilt": [0, 65535], "ant what wilt thou": [0, 65535], "what wilt thou flout": [0, 65535], "wilt thou flout me": [0, 65535], "thou flout me thus": [0, 65535], "flout me thus vnto": [0, 65535], "me thus vnto my": [0, 65535], "thus vnto my face": [0, 65535], "vnto my face being": [0, 65535], "my face being forbid": [0, 65535], "face being forbid there": [0, 65535], "being forbid there take": [0, 65535], "forbid there take you": [0, 65535], "there take you that": [0, 65535], "take you that sir": [0, 65535], "you that sir knaue": [0, 65535], "that sir knaue e": [0, 65535], "sir knaue e dro": [0, 65535], "knaue e dro what": [0, 65535], "e dro what meane": [0, 65535], "dro what meane you": [0, 65535], "what meane you sir": [0, 65535], "meane you sir for": [0, 65535], "you sir for god": [0, 65535], "sir for god sake": [0, 65535], "for god sake hold": [0, 65535], "god sake hold your": [0, 65535], "sake hold your hands": [0, 65535], "hold your hands nay": [0, 65535], "your hands nay and": [0, 65535], "hands nay and you": [0, 65535], "nay and you will": [0, 65535], "and you will not": [0, 65535], "you will not sir": [0, 65535], "will not sir ile": [0, 65535], "not sir ile take": [0, 65535], "sir ile take my": [0, 65535], "ile take my heeles": [0, 65535], "take my heeles exeunt": [0, 65535], "my heeles exeunt dromio": [0, 65535], "heeles exeunt dromio ep": [0, 65535], "exeunt dromio ep ant": [0, 65535], "dromio ep ant vpon": [0, 65535], "ep ant vpon my": [0, 65535], "ant vpon my life": [0, 65535], "vpon my life by": [0, 65535], "my life by some": [0, 65535], "life by some deuise": [0, 65535], "by some deuise or": [0, 65535], "some deuise or other": [0, 65535], "deuise or other the": [0, 65535], "or other the villaine": [0, 65535], "other the villaine is": [0, 65535], "the villaine is ore": [0, 65535], "villaine is ore wrought": [0, 65535], "is ore wrought of": [0, 65535], "ore wrought of all": [0, 65535], "wrought of all my": [0, 65535], "of all my monie": [0, 65535], "all my monie they": [0, 65535], "my monie they say": [0, 65535], "monie they say this": [0, 65535], "they say this towne": [0, 65535], "say this towne is": [0, 65535], "this towne is full": [0, 65535], "towne is full of": [0, 65535], "is full of cosenage": [0, 65535], "full of cosenage as": [0, 65535], "of cosenage as nimble": [0, 65535], "cosenage as nimble iuglers": [0, 65535], "as nimble iuglers that": [0, 65535], "nimble iuglers that deceiue": [0, 65535], "iuglers that deceiue the": [0, 65535], "that deceiue the eie": [0, 65535], "deceiue the eie darke": [0, 65535], "the eie darke working": [0, 65535], "eie darke working sorcerers": [0, 65535], "darke working sorcerers that": [0, 65535], "working sorcerers that change": [0, 65535], "sorcerers that change the": [0, 65535], "that change the minde": [0, 65535], "change the minde soule": [0, 65535], "the minde soule killing": [0, 65535], "minde soule killing witches": [0, 65535], "soule killing witches that": [0, 65535], "killing witches that deforme": [0, 65535], "witches that deforme the": [0, 65535], "that deforme the bodie": [0, 65535], "deforme the bodie disguised": [0, 65535], "the bodie disguised cheaters": [0, 65535], "bodie disguised cheaters prating": [0, 65535], "disguised cheaters prating mountebankes": [0, 65535], "cheaters prating mountebankes and": [0, 65535], "prating mountebankes and manie": [0, 65535], "mountebankes and manie such": [0, 65535], "and manie such like": [0, 65535], "manie such like liberties": [0, 65535], "such like liberties of": [0, 65535], "like liberties of sinne": [0, 65535], "liberties of sinne if": [0, 65535], "of sinne if it": [0, 65535], "sinne if it proue": [0, 65535], "if it proue so": [0, 65535], "it proue so i": [0, 65535], "proue so i will": [0, 65535], "so i will be": [0, 65535], "i will be gone": [0, 65535], "will be gone the": [0, 65535], "be gone the sooner": [0, 65535], "gone the sooner ile": [0, 65535], "the sooner ile to": [0, 65535], "sooner ile to the": [0, 65535], "ile to the centaur": [0, 65535], "to the centaur to": [0, 65535], "the centaur to goe": [0, 65535], "centaur to goe seeke": [0, 65535], "to goe seeke this": [0, 65535], "goe seeke this slaue": [0, 65535], "seeke this slaue i": [0, 65535], "this slaue i greatly": [0, 65535], "slaue i greatly feare": [0, 65535], "i greatly feare my": [0, 65535], "greatly feare my monie": [0, 65535], "feare my monie is": [0, 65535], "my monie is not": [0, 65535], "monie is not safe": [0, 65535], "the comedie of errors actus": [0, 65535], "comedie of errors actus primus": [0, 65535], "of errors actus primus scena": [0, 65535], "errors actus primus scena prima": [0, 65535], "actus primus scena prima enter": [0, 65535], "primus scena prima enter the": [0, 65535], "scena prima enter the duke": [0, 65535], "prima enter the duke of": [0, 65535], "the duke of ephesus with": [0, 65535], "duke of ephesus with the": [0, 65535], "of ephesus with the merchant": [0, 65535], "ephesus with the merchant of": [0, 65535], "with the merchant of siracusa": [0, 65535], "the merchant of siracusa iaylor": [0, 65535], "merchant of siracusa iaylor and": [0, 65535], "of siracusa iaylor and other": [0, 65535], "siracusa iaylor and other attendants": [0, 65535], "iaylor and other attendants marchant": [0, 65535], "and other attendants marchant broceed": [0, 65535], "other attendants marchant broceed solinus": [0, 65535], "attendants marchant broceed solinus to": [0, 65535], "marchant broceed solinus to procure": [0, 65535], "broceed solinus to procure my": [0, 65535], "solinus to procure my fall": [0, 65535], "to procure my fall and": [0, 65535], "procure my fall and by": [0, 65535], "my fall and by the": [0, 65535], "fall and by the doome": [0, 65535], "and by the doome of": [0, 65535], "by the doome of death": [0, 65535], "the doome of death end": [0, 65535], "doome of death end woes": [0, 65535], "of death end woes and": [0, 65535], "death end woes and all": [0, 65535], "end woes and all duke": [0, 65535], "woes and all duke merchant": [0, 65535], "and all duke merchant of": [0, 65535], "all duke merchant of siracusa": [0, 65535], "duke merchant of siracusa plead": [0, 65535], "merchant of siracusa plead no": [0, 65535], "of siracusa plead no more": [0, 65535], "siracusa plead no more i": [0, 65535], "plead no more i am": [0, 65535], "no more i am not": [0, 65535], "more i am not partiall": [0, 65535], "i am not partiall to": [0, 65535], "am not partiall to infringe": [0, 65535], "not partiall to infringe our": [0, 65535], "partiall to infringe our lawes": [0, 65535], "to infringe our lawes the": [0, 65535], "infringe our lawes the enmity": [0, 65535], "our lawes the enmity and": [0, 65535], "lawes the enmity and discord": [0, 65535], "the enmity and discord which": [0, 65535], "enmity and discord which of": [0, 65535], "and discord which of late": [0, 65535], "discord which of late sprung": [0, 65535], "which of late sprung from": [0, 65535], "of late sprung from the": [0, 65535], "late sprung from the rancorous": [0, 65535], "sprung from the rancorous outrage": [0, 65535], "from the rancorous outrage of": [0, 65535], "the rancorous outrage of your": [0, 65535], "rancorous outrage of your duke": [0, 65535], "outrage of your duke to": [0, 65535], "of your duke to merchants": [0, 65535], "your duke to merchants our": [0, 65535], "duke to merchants our well": [0, 65535], "to merchants our well dealing": [0, 65535], "merchants our well dealing countrimen": [0, 65535], "our well dealing countrimen who": [0, 65535], "well dealing countrimen who wanting": [0, 65535], "dealing countrimen who wanting gilders": [0, 65535], "countrimen who wanting gilders to": [0, 65535], "who wanting gilders to redeeme": [0, 65535], "wanting gilders to redeeme their": [0, 65535], "gilders to redeeme their liues": [0, 65535], "to redeeme their liues haue": [0, 65535], "redeeme their liues haue seal'd": [0, 65535], "their liues haue seal'd his": [0, 65535], "liues haue seal'd his rigorous": [0, 65535], "haue seal'd his rigorous statutes": [0, 65535], "seal'd his rigorous statutes with": [0, 65535], "his rigorous statutes with their": [0, 65535], "rigorous statutes with their blouds": [0, 65535], "statutes with their blouds excludes": [0, 65535], "with their blouds excludes all": [0, 65535], "their blouds excludes all pitty": [0, 65535], "blouds excludes all pitty from": [0, 65535], "excludes all pitty from our": [0, 65535], "all pitty from our threatning": [0, 65535], "pitty from our threatning lookes": [0, 65535], "from our threatning lookes for": [0, 65535], "our threatning lookes for since": [0, 65535], "threatning lookes for since the": [0, 65535], "lookes for since the mortall": [0, 65535], "for since the mortall and": [0, 65535], "since the mortall and intestine": [0, 65535], "the mortall and intestine iarres": [0, 65535], "mortall and intestine iarres twixt": [0, 65535], "and intestine iarres twixt thy": [0, 65535], "intestine iarres twixt thy seditious": [0, 65535], "iarres twixt thy seditious countrimen": [0, 65535], "twixt thy seditious countrimen and": [0, 65535], "thy seditious countrimen and vs": [0, 65535], "seditious countrimen and vs it": [0, 65535], "countrimen and vs it hath": [0, 65535], "and vs it hath in": [0, 65535], "vs it hath in solemne": [0, 65535], "it hath in solemne synodes": [0, 65535], "hath in solemne synodes beene": [0, 65535], "in solemne synodes beene decreed": [0, 65535], "solemne synodes beene decreed both": [0, 65535], "synodes beene decreed both by": [0, 65535], "beene decreed both by the": [0, 65535], "decreed both by the siracusians": [0, 65535], "both by the siracusians and": [0, 65535], "by the siracusians and our": [0, 65535], "the siracusians and our selues": [0, 65535], "siracusians and our selues to": [0, 65535], "and our selues to admit": [0, 65535], "our selues to admit no": [0, 65535], "selues to admit no trafficke": [0, 65535], "to admit no trafficke to": [0, 65535], "admit no trafficke to our": [0, 65535], "no trafficke to our aduerse": [0, 65535], "trafficke to our aduerse townes": [0, 65535], "to our aduerse townes nay": [0, 65535], "our aduerse townes nay more": [0, 65535], "aduerse townes nay more if": [0, 65535], "townes nay more if any": [0, 65535], "nay more if any borne": [0, 65535], "more if any borne at": [0, 65535], "if any borne at ephesus": [0, 65535], "any borne at ephesus be": [0, 65535], "borne at ephesus be seene": [0, 65535], "at ephesus be seene at": [0, 65535], "ephesus be seene at any": [0, 65535], "be seene at any siracusian": [0, 65535], "seene at any siracusian marts": [0, 65535], "at any siracusian marts and": [0, 65535], "any siracusian marts and fayres": [0, 65535], "siracusian marts and fayres againe": [0, 65535], "marts and fayres againe if": [0, 65535], "and fayres againe if any": [0, 65535], "fayres againe if any siracusian": [0, 65535], "againe if any siracusian borne": [0, 65535], "if any siracusian borne come": [0, 65535], "any siracusian borne come to": [0, 65535], "siracusian borne come to the": [0, 65535], "borne come to the bay": [0, 65535], "come to the bay of": [0, 65535], "to the bay of ephesus": [0, 65535], "the bay of ephesus he": [0, 65535], "bay of ephesus he dies": [0, 65535], "of ephesus he dies his": [0, 65535], "ephesus he dies his goods": [0, 65535], "he dies his goods confiscate": [0, 65535], "dies his goods confiscate to": [0, 65535], "his goods confiscate to the": [0, 65535], "goods confiscate to the dukes": [0, 65535], "confiscate to the dukes dispose": [0, 65535], "to the dukes dispose vnlesse": [0, 65535], "the dukes dispose vnlesse a": [0, 65535], "dukes dispose vnlesse a thousand": [0, 65535], "dispose vnlesse a thousand markes": [0, 65535], "vnlesse a thousand markes be": [0, 65535], "a thousand markes be leuied": [0, 65535], "thousand markes be leuied to": [0, 65535], "markes be leuied to quit": [0, 65535], "be leuied to quit the": [0, 65535], "leuied to quit the penalty": [0, 65535], "to quit the penalty and": [0, 65535], "quit the penalty and to": [0, 65535], "the penalty and to ransome": [0, 65535], "penalty and to ransome him": [0, 65535], "and to ransome him thy": [0, 65535], "to ransome him thy substance": [0, 65535], "ransome him thy substance valued": [0, 65535], "him thy substance valued at": [0, 65535], "thy substance valued at the": [0, 65535], "substance valued at the highest": [0, 65535], "valued at the highest rate": [0, 65535], "at the highest rate cannot": [0, 65535], "the highest rate cannot amount": [0, 65535], "highest rate cannot amount vnto": [0, 65535], "rate cannot amount vnto a": [0, 65535], "cannot amount vnto a hundred": [0, 65535], "amount vnto a hundred markes": [0, 65535], "vnto a hundred markes therefore": [0, 65535], "a hundred markes therefore by": [0, 65535], "hundred markes therefore by law": [0, 65535], "markes therefore by law thou": [0, 65535], "therefore by law thou art": [0, 65535], "by law thou art condemn'd": [0, 65535], "law thou art condemn'd to": [0, 65535], "thou art condemn'd to die": [0, 65535], "art condemn'd to die mer": [0, 65535], "condemn'd to die mer yet": [0, 65535], "to die mer yet this": [0, 65535], "die mer yet this my": [0, 65535], "mer yet this my comfort": [0, 65535], "yet this my comfort when": [0, 65535], "this my comfort when your": [0, 65535], "my comfort when your words": [0, 65535], "comfort when your words are": [0, 65535], "when your words are done": [0, 65535], "your words are done my": [0, 65535], "words are done my woes": [0, 65535], "are done my woes end": [0, 65535], "done my woes end likewise": [0, 65535], "my woes end likewise with": [0, 65535], "woes end likewise with the": [0, 65535], "end likewise with the euening": [0, 65535], "likewise with the euening sonne": [0, 65535], "with the euening sonne duk": [0, 65535], "the euening sonne duk well": [0, 65535], "euening sonne duk well siracusian": [0, 65535], "sonne duk well siracusian say": [0, 65535], "duk well siracusian say in": [0, 65535], "well siracusian say in briefe": [0, 65535], "siracusian say in briefe the": [0, 65535], "say in briefe the cause": [0, 65535], "in briefe the cause why": [0, 65535], "briefe the cause why thou": [0, 65535], "the cause why thou departedst": [0, 65535], "cause why thou departedst from": [0, 65535], "why thou departedst from thy": [0, 65535], "thou departedst from thy natiue": [0, 65535], "departedst from thy natiue home": [0, 65535], "from thy natiue home and": [0, 65535], "thy natiue home and for": [0, 65535], "natiue home and for what": [0, 65535], "home and for what cause": [0, 65535], "and for what cause thou": [0, 65535], "for what cause thou cam'st": [0, 65535], "what cause thou cam'st to": [0, 65535], "cause thou cam'st to ephesus": [0, 65535], "thou cam'st to ephesus mer": [0, 65535], "cam'st to ephesus mer a": [0, 65535], "to ephesus mer a heauier": [0, 65535], "ephesus mer a heauier taske": [0, 65535], "mer a heauier taske could": [0, 65535], "a heauier taske could not": [0, 65535], "heauier taske could not haue": [0, 65535], "taske could not haue beene": [0, 65535], "could not haue beene impos'd": [0, 65535], "not haue beene impos'd then": [0, 65535], "haue beene impos'd then i": [0, 65535], "beene impos'd then i to": [0, 65535], "impos'd then i to speake": [0, 65535], "then i to speake my": [0, 65535], "i to speake my griefes": [0, 65535], "to speake my griefes vnspeakeable": [0, 65535], "speake my griefes vnspeakeable yet": [0, 65535], "my griefes vnspeakeable yet that": [0, 65535], "griefes vnspeakeable yet that the": [0, 65535], "vnspeakeable yet that the world": [0, 65535], "yet that the world may": [0, 65535], "that the world may witnesse": [0, 65535], "the world may witnesse that": [0, 65535], "world may witnesse that my": [0, 65535], "may witnesse that my end": [0, 65535], "witnesse that my end was": [0, 65535], "that my end was wrought": [0, 65535], "my end was wrought by": [0, 65535], "end was wrought by nature": [0, 65535], "was wrought by nature not": [0, 65535], "wrought by nature not by": [0, 65535], "by nature not by vile": [0, 65535], "nature not by vile offence": [0, 65535], "not by vile offence ile": [0, 65535], "by vile offence ile vtter": [0, 65535], "vile offence ile vtter what": [0, 65535], "offence ile vtter what my": [0, 65535], "ile vtter what my sorrow": [0, 65535], "vtter what my sorrow giues": [0, 65535], "what my sorrow giues me": [0, 65535], "my sorrow giues me leaue": [0, 65535], "sorrow giues me leaue in": [0, 65535], "giues me leaue in syracusa": [0, 65535], "me leaue in syracusa was": [0, 65535], "leaue in syracusa was i": [0, 65535], "in syracusa was i borne": [0, 65535], "syracusa was i borne and": [0, 65535], "was i borne and wedde": [0, 65535], "i borne and wedde vnto": [0, 65535], "borne and wedde vnto a": [0, 65535], "and wedde vnto a woman": [0, 65535], "wedde vnto a woman happy": [0, 65535], "vnto a woman happy but": [0, 65535], "a woman happy but for": [0, 65535], "woman happy but for me": [0, 65535], "happy but for me and": [0, 65535], "but for me and by": [0, 65535], "for me and by me": [0, 65535], "me and by me had": [0, 65535], "and by me had not": [0, 65535], "by me had not our": [0, 65535], "me had not our hap": [0, 65535], "had not our hap beene": [0, 65535], "not our hap beene bad": [0, 65535], "our hap beene bad with": [0, 65535], "hap beene bad with her": [0, 65535], "beene bad with her i": [0, 65535], "bad with her i liu'd": [0, 65535], "with her i liu'd in": [0, 65535], "her i liu'd in ioy": [0, 65535], "i liu'd in ioy our": [0, 65535], "liu'd in ioy our wealth": [0, 65535], "in ioy our wealth increast": [0, 65535], "ioy our wealth increast by": [0, 65535], "our wealth increast by prosperous": [0, 65535], "wealth increast by prosperous voyages": [0, 65535], "increast by prosperous voyages i": [0, 65535], "by prosperous voyages i often": [0, 65535], "prosperous voyages i often made": [0, 65535], "voyages i often made to": [0, 65535], "i often made to epidamium": [0, 65535], "often made to epidamium till": [0, 65535], "made to epidamium till my": [0, 65535], "to epidamium till my factors": [0, 65535], "epidamium till my factors death": [0, 65535], "till my factors death and": [0, 65535], "my factors death and he": [0, 65535], "factors death and he great": [0, 65535], "death and he great care": [0, 65535], "and he great care of": [0, 65535], "he great care of goods": [0, 65535], "great care of goods at": [0, 65535], "care of goods at randone": [0, 65535], "of goods at randone left": [0, 65535], "goods at randone left drew": [0, 65535], "at randone left drew me": [0, 65535], "randone left drew me from": [0, 65535], "left drew me from kinde": [0, 65535], "drew me from kinde embracements": [0, 65535], "me from kinde embracements of": [0, 65535], "from kinde embracements of my": [0, 65535], "kinde embracements of my spouse": [0, 65535], "embracements of my spouse from": [0, 65535], "of my spouse from whom": [0, 65535], "my spouse from whom my": [0, 65535], "spouse from whom my absence": [0, 65535], "from whom my absence was": [0, 65535], "whom my absence was not": [0, 65535], "my absence was not sixe": [0, 65535], "absence was not sixe moneths": [0, 65535], "was not sixe moneths olde": [0, 65535], "not sixe moneths olde before": [0, 65535], "sixe moneths olde before her": [0, 65535], "moneths olde before her selfe": [0, 65535], "olde before her selfe almost": [0, 65535], "before her selfe almost at": [0, 65535], "her selfe almost at fainting": [0, 65535], "selfe almost at fainting vnder": [0, 65535], "almost at fainting vnder the": [0, 65535], "at fainting vnder the pleasing": [0, 65535], "fainting vnder the pleasing punishment": [0, 65535], "vnder the pleasing punishment that": [0, 65535], "the pleasing punishment that women": [0, 65535], "pleasing punishment that women beare": [0, 65535], "punishment that women beare had": [0, 65535], "that women beare had made": [0, 65535], "women beare had made prouision": [0, 65535], "beare had made prouision for": [0, 65535], "had made prouision for her": [0, 65535], "made prouision for her following": [0, 65535], "prouision for her following me": [0, 65535], "for her following me and": [0, 65535], "her following me and soone": [0, 65535], "following me and soone and": [0, 65535], "me and soone and safe": [0, 65535], "and soone and safe arriued": [0, 65535], "soone and safe arriued where": [0, 65535], "and safe arriued where i": [0, 65535], "safe arriued where i was": [0, 65535], "arriued where i was there": [0, 65535], "where i was there had": [0, 65535], "i was there had she": [0, 65535], "was there had she not": [0, 65535], "there had she not beene": [0, 65535], "had she not beene long": [0, 65535], "she not beene long but": [0, 65535], "not beene long but she": [0, 65535], "beene long but she became": [0, 65535], "long but she became a": [0, 65535], "but she became a ioyfull": [0, 65535], "she became a ioyfull mother": [0, 65535], "became a ioyfull mother of": [0, 65535], "a ioyfull mother of two": [0, 65535], "ioyfull mother of two goodly": [0, 65535], "mother of two goodly sonnes": [0, 65535], "of two goodly sonnes and": [0, 65535], "two goodly sonnes and which": [0, 65535], "goodly sonnes and which was": [0, 65535], "sonnes and which was strange": [0, 65535], "and which was strange the": [0, 65535], "which was strange the one": [0, 65535], "was strange the one so": [0, 65535], "strange the one so like": [0, 65535], "the one so like the": [0, 65535], "one so like the other": [0, 65535], "so like the other as": [0, 65535], "like the other as could": [0, 65535], "the other as could not": [0, 65535], "other as could not be": [0, 65535], "as could not be distinguish'd": [0, 65535], "could not be distinguish'd but": [0, 65535], "not be distinguish'd but by": [0, 65535], "be distinguish'd but by names": [0, 65535], "distinguish'd but by names that": [0, 65535], "but by names that very": [0, 65535], "by names that very howre": [0, 65535], "names that very howre and": [0, 65535], "that very howre and in": [0, 65535], "very howre and in the": [0, 65535], "howre and in the selfe": [0, 65535], "and in the selfe same": [0, 65535], "in the selfe same inne": [0, 65535], "the selfe same inne a": [0, 65535], "selfe same inne a meane": [0, 65535], "same inne a meane woman": [0, 65535], "inne a meane woman was": [0, 65535], "a meane woman was deliuered": [0, 65535], "meane woman was deliuered of": [0, 65535], "woman was deliuered of such": [0, 65535], "was deliuered of such a": [0, 65535], "deliuered of such a burthen": [0, 65535], "of such a burthen male": [0, 65535], "such a burthen male twins": [0, 65535], "a burthen male twins both": [0, 65535], "burthen male twins both alike": [0, 65535], "male twins both alike those": [0, 65535], "twins both alike those for": [0, 65535], "both alike those for their": [0, 65535], "alike those for their parents": [0, 65535], "those for their parents were": [0, 65535], "for their parents were exceeding": [0, 65535], "their parents were exceeding poore": [0, 65535], "parents were exceeding poore i": [0, 65535], "were exceeding poore i bought": [0, 65535], "exceeding poore i bought and": [0, 65535], "poore i bought and brought": [0, 65535], "i bought and brought vp": [0, 65535], "bought and brought vp to": [0, 65535], "and brought vp to attend": [0, 65535], "brought vp to attend my": [0, 65535], "vp to attend my sonnes": [0, 65535], "to attend my sonnes my": [0, 65535], "attend my sonnes my wife": [0, 65535], "my sonnes my wife not": [0, 65535], "sonnes my wife not meanely": [0, 65535], "my wife not meanely prowd": [0, 65535], "wife not meanely prowd of": [0, 65535], "not meanely prowd of two": [0, 65535], "meanely prowd of two such": [0, 65535], "prowd of two such boyes": [0, 65535], "of two such boyes made": [0, 65535], "two such boyes made daily": [0, 65535], "such boyes made daily motions": [0, 65535], "boyes made daily motions for": [0, 65535], "made daily motions for our": [0, 65535], "daily motions for our home": [0, 65535], "motions for our home returne": [0, 65535], "for our home returne vnwilling": [0, 65535], "our home returne vnwilling i": [0, 65535], "home returne vnwilling i agreed": [0, 65535], "returne vnwilling i agreed alas": [0, 65535], "vnwilling i agreed alas too": [0, 65535], "i agreed alas too soone": [0, 65535], "agreed alas too soone wee": [0, 65535], "alas too soone wee came": [0, 65535], "too soone wee came aboord": [0, 65535], "soone wee came aboord a": [0, 65535], "wee came aboord a league": [0, 65535], "came aboord a league from": [0, 65535], "aboord a league from epidamium": [0, 65535], "a league from epidamium had": [0, 65535], "league from epidamium had we": [0, 65535], "from epidamium had we saild": [0, 65535], "epidamium had we saild before": [0, 65535], "had we saild before the": [0, 65535], "we saild before the alwaies": [0, 65535], "saild before the alwaies winde": [0, 65535], "before the alwaies winde obeying": [0, 65535], "the alwaies winde obeying deepe": [0, 65535], "alwaies winde obeying deepe gaue": [0, 65535], "winde obeying deepe gaue any": [0, 65535], "obeying deepe gaue any tragicke": [0, 65535], "deepe gaue any tragicke instance": [0, 65535], "gaue any tragicke instance of": [0, 65535], "any tragicke instance of our": [0, 65535], "tragicke instance of our harme": [0, 65535], "instance of our harme but": [0, 65535], "of our harme but longer": [0, 65535], "our harme but longer did": [0, 65535], "harme but longer did we": [0, 65535], "but longer did we not": [0, 65535], "longer did we not retaine": [0, 65535], "did we not retaine much": [0, 65535], "we not retaine much hope": [0, 65535], "not retaine much hope for": [0, 65535], "retaine much hope for what": [0, 65535], "much hope for what obscured": [0, 65535], "hope for what obscured light": [0, 65535], "for what obscured light the": [0, 65535], "what obscured light the heauens": [0, 65535], "obscured light the heauens did": [0, 65535], "light the heauens did grant": [0, 65535], "the heauens did grant did": [0, 65535], "heauens did grant did but": [0, 65535], "did grant did but conuay": [0, 65535], "grant did but conuay vnto": [0, 65535], "did but conuay vnto our": [0, 65535], "but conuay vnto our fearefull": [0, 65535], "conuay vnto our fearefull mindes": [0, 65535], "vnto our fearefull mindes a": [0, 65535], "our fearefull mindes a doubtfull": [0, 65535], "fearefull mindes a doubtfull warrant": [0, 65535], "mindes a doubtfull warrant of": [0, 65535], "a doubtfull warrant of immediate": [0, 65535], "doubtfull warrant of immediate death": [0, 65535], "warrant of immediate death which": [0, 65535], "of immediate death which though": [0, 65535], "immediate death which though my": [0, 65535], "death which though my selfe": [0, 65535], "which though my selfe would": [0, 65535], "though my selfe would gladly": [0, 65535], "my selfe would gladly haue": [0, 65535], "selfe would gladly haue imbrac'd": [0, 65535], "would gladly haue imbrac'd yet": [0, 65535], "gladly haue imbrac'd yet the": [0, 65535], "haue imbrac'd yet the incessant": [0, 65535], "imbrac'd yet the incessant weepings": [0, 65535], "yet the incessant weepings of": [0, 65535], "the incessant weepings of my": [0, 65535], "incessant weepings of my wife": [0, 65535], "weepings of my wife weeping": [0, 65535], "of my wife weeping before": [0, 65535], "my wife weeping before for": [0, 65535], "wife weeping before for what": [0, 65535], "weeping before for what she": [0, 65535], "before for what she saw": [0, 65535], "for what she saw must": [0, 65535], "what she saw must come": [0, 65535], "she saw must come and": [0, 65535], "saw must come and pitteous": [0, 65535], "must come and pitteous playnings": [0, 65535], "come and pitteous playnings of": [0, 65535], "and pitteous playnings of the": [0, 65535], "pitteous playnings of the prettie": [0, 65535], "playnings of the prettie babes": [0, 65535], "of the prettie babes that": [0, 65535], "the prettie babes that mourn'd": [0, 65535], "prettie babes that mourn'd for": [0, 65535], "babes that mourn'd for fashion": [0, 65535], "that mourn'd for fashion ignorant": [0, 65535], "mourn'd for fashion ignorant what": [0, 65535], "for fashion ignorant what to": [0, 65535], "fashion ignorant what to feare": [0, 65535], "ignorant what to feare forst": [0, 65535], "what to feare forst me": [0, 65535], "to feare forst me to": [0, 65535], "feare forst me to seeke": [0, 65535], "forst me to seeke delayes": [0, 65535], "me to seeke delayes for": [0, 65535], "to seeke delayes for them": [0, 65535], "seeke delayes for them and": [0, 65535], "delayes for them and me": [0, 65535], "for them and me and": [0, 65535], "them and me and this": [0, 65535], "and me and this it": [0, 65535], "me and this it was": [0, 65535], "and this it was for": [0, 65535], "this it was for other": [0, 65535], "it was for other meanes": [0, 65535], "was for other meanes was": [0, 65535], "for other meanes was none": [0, 65535], "other meanes was none the": [0, 65535], "meanes was none the sailors": [0, 65535], "was none the sailors sought": [0, 65535], "none the sailors sought for": [0, 65535], "the sailors sought for safety": [0, 65535], "sailors sought for safety by": [0, 65535], "sought for safety by our": [0, 65535], "for safety by our boate": [0, 65535], "safety by our boate and": [0, 65535], "by our boate and left": [0, 65535], "our boate and left the": [0, 65535], "boate and left the ship": [0, 65535], "and left the ship then": [0, 65535], "left the ship then sinking": [0, 65535], "the ship then sinking ripe": [0, 65535], "ship then sinking ripe to": [0, 65535], "then sinking ripe to vs": [0, 65535], "sinking ripe to vs my": [0, 65535], "ripe to vs my wife": [0, 65535], "to vs my wife more": [0, 65535], "vs my wife more carefull": [0, 65535], "my wife more carefull for": [0, 65535], "wife more carefull for the": [0, 65535], "more carefull for the latter": [0, 65535], "carefull for the latter borne": [0, 65535], "for the latter borne had": [0, 65535], "the latter borne had fastned": [0, 65535], "latter borne had fastned him": [0, 65535], "borne had fastned him vnto": [0, 65535], "had fastned him vnto a": [0, 65535], "fastned him vnto a small": [0, 65535], "him vnto a small spare": [0, 65535], "vnto a small spare mast": [0, 65535], "a small spare mast such": [0, 65535], "small spare mast such as": [0, 65535], "spare mast such as sea": [0, 65535], "mast such as sea faring": [0, 65535], "such as sea faring men": [0, 65535], "as sea faring men prouide": [0, 65535], "sea faring men prouide for": [0, 65535], "faring men prouide for stormes": [0, 65535], "men prouide for stormes to": [0, 65535], "prouide for stormes to him": [0, 65535], "for stormes to him one": [0, 65535], "stormes to him one of": [0, 65535], "to him one of the": [0, 65535], "him one of the other": [0, 65535], "one of the other twins": [0, 65535], "of the other twins was": [0, 65535], "the other twins was bound": [0, 65535], "other twins was bound whil'st": [0, 65535], "twins was bound whil'st i": [0, 65535], "was bound whil'st i had": [0, 65535], "bound whil'st i had beene": [0, 65535], "whil'st i had beene like": [0, 65535], "i had beene like heedfull": [0, 65535], "had beene like heedfull of": [0, 65535], "beene like heedfull of the": [0, 65535], "like heedfull of the other": [0, 65535], "heedfull of the other the": [0, 65535], "of the other the children": [0, 65535], "the other the children thus": [0, 65535], "other the children thus dispos'd": [0, 65535], "the children thus dispos'd my": [0, 65535], "children thus dispos'd my wife": [0, 65535], "thus dispos'd my wife and": [0, 65535], "dispos'd my wife and i": [0, 65535], "my wife and i fixing": [0, 65535], "wife and i fixing our": [0, 65535], "and i fixing our eyes": [0, 65535], "i fixing our eyes on": [0, 65535], "fixing our eyes on whom": [0, 65535], "our eyes on whom our": [0, 65535], "eyes on whom our care": [0, 65535], "on whom our care was": [0, 65535], "whom our care was fixt": [0, 65535], "our care was fixt fastned": [0, 65535], "care was fixt fastned our": [0, 65535], "was fixt fastned our selues": [0, 65535], "fixt fastned our selues at": [0, 65535], "fastned our selues at eyther": [0, 65535], "our selues at eyther end": [0, 65535], "selues at eyther end the": [0, 65535], "at eyther end the mast": [0, 65535], "eyther end the mast and": [0, 65535], "end the mast and floating": [0, 65535], "the mast and floating straight": [0, 65535], "mast and floating straight obedient": [0, 65535], "and floating straight obedient to": [0, 65535], "floating straight obedient to the": [0, 65535], "straight obedient to the streame": [0, 65535], "obedient to the streame was": [0, 65535], "to the streame was carried": [0, 65535], "the streame was carried towards": [0, 65535], "streame was carried towards corinth": [0, 65535], "was carried towards corinth as": [0, 65535], "carried towards corinth as we": [0, 65535], "towards corinth as we thought": [0, 65535], "corinth as we thought at": [0, 65535], "as we thought at length": [0, 65535], "we thought at length the": [0, 65535], "thought at length the sonne": [0, 65535], "at length the sonne gazing": [0, 65535], "length the sonne gazing vpon": [0, 65535], "the sonne gazing vpon the": [0, 65535], "sonne gazing vpon the earth": [0, 65535], "gazing vpon the earth disperst": [0, 65535], "vpon the earth disperst those": [0, 65535], "the earth disperst those vapours": [0, 65535], "earth disperst those vapours that": [0, 65535], "disperst those vapours that offended": [0, 65535], "those vapours that offended vs": [0, 65535], "vapours that offended vs and": [0, 65535], "that offended vs and by": [0, 65535], "offended vs and by the": [0, 65535], "vs and by the benefit": [0, 65535], "and by the benefit of": [0, 65535], "by the benefit of his": [0, 65535], "the benefit of his wished": [0, 65535], "benefit of his wished light": [0, 65535], "of his wished light the": [0, 65535], "his wished light the seas": [0, 65535], "wished light the seas waxt": [0, 65535], "light the seas waxt calme": [0, 65535], "the seas waxt calme and": [0, 65535], "seas waxt calme and we": [0, 65535], "waxt calme and we discouered": [0, 65535], "calme and we discouered two": [0, 65535], "and we discouered two shippes": [0, 65535], "we discouered two shippes from": [0, 65535], "discouered two shippes from farre": [0, 65535], "two shippes from farre making": [0, 65535], "shippes from farre making amaine": [0, 65535], "from farre making amaine to": [0, 65535], "farre making amaine to vs": [0, 65535], "making amaine to vs of": [0, 65535], "amaine to vs of corinth": [0, 65535], "to vs of corinth that": [0, 65535], "vs of corinth that of": [0, 65535], "of corinth that of epidarus": [0, 65535], "corinth that of epidarus this": [0, 65535], "that of epidarus this but": [0, 65535], "of epidarus this but ere": [0, 65535], "epidarus this but ere they": [0, 65535], "this but ere they came": [0, 65535], "but ere they came oh": [0, 65535], "ere they came oh let": [0, 65535], "they came oh let me": [0, 65535], "came oh let me say": [0, 65535], "oh let me say no": [0, 65535], "let me say no more": [0, 65535], "me say no more gather": [0, 65535], "say no more gather the": [0, 65535], "no more gather the sequell": [0, 65535], "more gather the sequell by": [0, 65535], "gather the sequell by that": [0, 65535], "the sequell by that went": [0, 65535], "sequell by that went before": [0, 65535], "by that went before duk": [0, 65535], "that went before duk nay": [0, 65535], "went before duk nay forward": [0, 65535], "before duk nay forward old": [0, 65535], "duk nay forward old man": [0, 65535], "nay forward old man doe": [0, 65535], "forward old man doe not": [0, 65535], "old man doe not breake": [0, 65535], "man doe not breake off": [0, 65535], "doe not breake off so": [0, 65535], "not breake off so for": [0, 65535], "breake off so for we": [0, 65535], "off so for we may": [0, 65535], "so for we may pitty": [0, 65535], "for we may pitty though": [0, 65535], "we may pitty though not": [0, 65535], "may pitty though not pardon": [0, 65535], "pitty though not pardon thee": [0, 65535], "though not pardon thee merch": [0, 65535], "not pardon thee merch oh": [0, 65535], "pardon thee merch oh had": [0, 65535], "thee merch oh had the": [0, 65535], "merch oh had the gods": [0, 65535], "oh had the gods done": [0, 65535], "had the gods done so": [0, 65535], "the gods done so i": [0, 65535], "gods done so i had": [0, 65535], "done so i had not": [0, 65535], "so i had not now": [0, 65535], "i had not now worthily": [0, 65535], "had not now worthily tearm'd": [0, 65535], "not now worthily tearm'd them": [0, 65535], "now worthily tearm'd them mercilesse": [0, 65535], "worthily tearm'd them mercilesse to": [0, 65535], "tearm'd them mercilesse to vs": [0, 65535], "them mercilesse to vs for": [0, 65535], "mercilesse to vs for ere": [0, 65535], "to vs for ere the": [0, 65535], "vs for ere the ships": [0, 65535], "for ere the ships could": [0, 65535], "ere the ships could meet": [0, 65535], "the ships could meet by": [0, 65535], "ships could meet by twice": [0, 65535], "could meet by twice fiue": [0, 65535], "meet by twice fiue leagues": [0, 65535], "by twice fiue leagues we": [0, 65535], "twice fiue leagues we were": [0, 65535], "fiue leagues we were encountred": [0, 65535], "leagues we were encountred by": [0, 65535], "we were encountred by a": [0, 65535], "were encountred by a mighty": [0, 65535], "encountred by a mighty rocke": [0, 65535], "by a mighty rocke which": [0, 65535], "a mighty rocke which being": [0, 65535], "mighty rocke which being violently": [0, 65535], "rocke which being violently borne": [0, 65535], "which being violently borne vp": [0, 65535], "being violently borne vp our": [0, 65535], "violently borne vp our helpefull": [0, 65535], "borne vp our helpefull ship": [0, 65535], "vp our helpefull ship was": [0, 65535], "our helpefull ship was splitted": [0, 65535], "helpefull ship was splitted in": [0, 65535], "ship was splitted in the": [0, 65535], "was splitted in the midst": [0, 65535], "splitted in the midst so": [0, 65535], "in the midst so that": [0, 65535], "the midst so that in": [0, 65535], "midst so that in this": [0, 65535], "so that in this vniust": [0, 65535], "that in this vniust diuorce": [0, 65535], "in this vniust diuorce of": [0, 65535], "this vniust diuorce of vs": [0, 65535], "vniust diuorce of vs fortune": [0, 65535], "diuorce of vs fortune had": [0, 65535], "of vs fortune had left": [0, 65535], "vs fortune had left to": [0, 65535], "fortune had left to both": [0, 65535], "had left to both of": [0, 65535], "left to both of vs": [0, 65535], "to both of vs alike": [0, 65535], "both of vs alike what": [0, 65535], "of vs alike what to": [0, 65535], "vs alike what to delight": [0, 65535], "alike what to delight in": [0, 65535], "what to delight in what": [0, 65535], "to delight in what to": [0, 65535], "delight in what to sorrow": [0, 65535], "in what to sorrow for": [0, 65535], "what to sorrow for her": [0, 65535], "to sorrow for her part": [0, 65535], "sorrow for her part poore": [0, 65535], "for her part poore soule": [0, 65535], "her part poore soule seeming": [0, 65535], "part poore soule seeming as": [0, 65535], "poore soule seeming as burdened": [0, 65535], "soule seeming as burdened with": [0, 65535], "seeming as burdened with lesser": [0, 65535], "as burdened with lesser waight": [0, 65535], "burdened with lesser waight but": [0, 65535], "with lesser waight but not": [0, 65535], "lesser waight but not with": [0, 65535], "waight but not with lesser": [0, 65535], "but not with lesser woe": [0, 65535], "not with lesser woe was": [0, 65535], "with lesser woe was carried": [0, 65535], "lesser woe was carried with": [0, 65535], "woe was carried with more": [0, 65535], "was carried with more speed": [0, 65535], "carried with more speed before": [0, 65535], "with more speed before the": [0, 65535], "more speed before the winde": [0, 65535], "speed before the winde and": [0, 65535], "before the winde and in": [0, 65535], "the winde and in our": [0, 65535], "winde and in our sight": [0, 65535], "and in our sight they": [0, 65535], "in our sight they three": [0, 65535], "our sight they three were": [0, 65535], "sight they three were taken": [0, 65535], "they three were taken vp": [0, 65535], "three were taken vp by": [0, 65535], "were taken vp by fishermen": [0, 65535], "taken vp by fishermen of": [0, 65535], "vp by fishermen of corinth": [0, 65535], "by fishermen of corinth as": [0, 65535], "fishermen of corinth as we": [0, 65535], "of corinth as we thought": [0, 65535], "we thought at length another": [0, 65535], "thought at length another ship": [0, 65535], "at length another ship had": [0, 65535], "length another ship had seiz'd": [0, 65535], "another ship had seiz'd on": [0, 65535], "ship had seiz'd on vs": [0, 65535], "had seiz'd on vs and": [0, 65535], "seiz'd on vs and knowing": [0, 65535], "on vs and knowing whom": [0, 65535], "vs and knowing whom it": [0, 65535], "and knowing whom it was": [0, 65535], "knowing whom it was their": [0, 65535], "whom it was their hap": [0, 65535], "it was their hap to": [0, 65535], "was their hap to saue": [0, 65535], "their hap to saue gaue": [0, 65535], "hap to saue gaue healthfull": [0, 65535], "to saue gaue healthfull welcome": [0, 65535], "saue gaue healthfull welcome to": [0, 65535], "gaue healthfull welcome to their": [0, 65535], "healthfull welcome to their ship": [0, 65535], "welcome to their ship wrackt": [0, 65535], "to their ship wrackt guests": [0, 65535], "their ship wrackt guests and": [0, 65535], "ship wrackt guests and would": [0, 65535], "wrackt guests and would haue": [0, 65535], "guests and would haue reft": [0, 65535], "and would haue reft the": [0, 65535], "would haue reft the fishers": [0, 65535], "haue reft the fishers of": [0, 65535], "reft the fishers of their": [0, 65535], "the fishers of their prey": [0, 65535], "fishers of their prey had": [0, 65535], "of their prey had not": [0, 65535], "their prey had not their": [0, 65535], "prey had not their backe": [0, 65535], "had not their backe beene": [0, 65535], "not their backe beene very": [0, 65535], "their backe beene very slow": [0, 65535], "backe beene very slow of": [0, 65535], "beene very slow of saile": [0, 65535], "very slow of saile and": [0, 65535], "slow of saile and therefore": [0, 65535], "of saile and therefore homeward": [0, 65535], "saile and therefore homeward did": [0, 65535], "and therefore homeward did they": [0, 65535], "therefore homeward did they bend": [0, 65535], "homeward did they bend their": [0, 65535], "did they bend their course": [0, 65535], "they bend their course thus": [0, 65535], "bend their course thus haue": [0, 65535], "their course thus haue you": [0, 65535], "course thus haue you heard": [0, 65535], "thus haue you heard me": [0, 65535], "haue you heard me seuer'd": [0, 65535], "you heard me seuer'd from": [0, 65535], "heard me seuer'd from my": [0, 65535], "me seuer'd from my blisse": [0, 65535], "seuer'd from my blisse that": [0, 65535], "from my blisse that by": [0, 65535], "my blisse that by misfortunes": [0, 65535], "blisse that by misfortunes was": [0, 65535], "that by misfortunes was my": [0, 65535], "by misfortunes was my life": [0, 65535], "misfortunes was my life prolong'd": [0, 65535], "was my life prolong'd to": [0, 65535], "my life prolong'd to tell": [0, 65535], "life prolong'd to tell sad": [0, 65535], "prolong'd to tell sad stories": [0, 65535], "to tell sad stories of": [0, 65535], "tell sad stories of my": [0, 65535], "sad stories of my owne": [0, 65535], "stories of my owne mishaps": [0, 65535], "of my owne mishaps duke": [0, 65535], "my owne mishaps duke and": [0, 65535], "owne mishaps duke and for": [0, 65535], "mishaps duke and for the": [0, 65535], "duke and for the sake": [0, 65535], "and for the sake of": [0, 65535], "for the sake of them": [0, 65535], "the sake of them thou": [0, 65535], "sake of them thou sorrowest": [0, 65535], "of them thou sorrowest for": [0, 65535], "them thou sorrowest for doe": [0, 65535], "thou sorrowest for doe me": [0, 65535], "sorrowest for doe me the": [0, 65535], "for doe me the fauour": [0, 65535], "doe me the fauour to": [0, 65535], "me the fauour to dilate": [0, 65535], "the fauour to dilate at": [0, 65535], "fauour to dilate at full": [0, 65535], "to dilate at full what": [0, 65535], "dilate at full what haue": [0, 65535], "at full what haue befalne": [0, 65535], "full what haue befalne of": [0, 65535], "what haue befalne of them": [0, 65535], "haue befalne of them and": [0, 65535], "befalne of them and they": [0, 65535], "of them and they till": [0, 65535], "them and they till now": [0, 65535], "and they till now merch": [0, 65535], "they till now merch my": [0, 65535], "till now merch my yongest": [0, 65535], "now merch my yongest boy": [0, 65535], "merch my yongest boy and": [0, 65535], "my yongest boy and yet": [0, 65535], "yongest boy and yet my": [0, 65535], "boy and yet my eldest": [0, 65535], "and yet my eldest care": [0, 65535], "yet my eldest care at": [0, 65535], "my eldest care at eighteene": [0, 65535], "eldest care at eighteene yeeres": [0, 65535], "care at eighteene yeeres became": [0, 65535], "at eighteene yeeres became inquisitiue": [0, 65535], "eighteene yeeres became inquisitiue after": [0, 65535], "yeeres became inquisitiue after his": [0, 65535], "became inquisitiue after his brother": [0, 65535], "inquisitiue after his brother and": [0, 65535], "after his brother and importun'd": [0, 65535], "his brother and importun'd me": [0, 65535], "brother and importun'd me that": [0, 65535], "and importun'd me that his": [0, 65535], "importun'd me that his attendant": [0, 65535], "me that his attendant so": [0, 65535], "that his attendant so his": [0, 65535], "his attendant so his case": [0, 65535], "attendant so his case was": [0, 65535], "so his case was like": [0, 65535], "his case was like reft": [0, 65535], "case was like reft of": [0, 65535], "was like reft of his": [0, 65535], "like reft of his brother": [0, 65535], "reft of his brother but": [0, 65535], "of his brother but retain'd": [0, 65535], "his brother but retain'd his": [0, 65535], "brother but retain'd his name": [0, 65535], "but retain'd his name might": [0, 65535], "retain'd his name might beare": [0, 65535], "his name might beare him": [0, 65535], "name might beare him company": [0, 65535], "might beare him company in": [0, 65535], "beare him company in the": [0, 65535], "him company in the quest": [0, 65535], "company in the quest of": [0, 65535], "in the quest of him": [0, 65535], "the quest of him whom": [0, 65535], "quest of him whom whil'st": [0, 65535], "of him whom whil'st i": [0, 65535], "him whom whil'st i laboured": [0, 65535], "whom whil'st i laboured of": [0, 65535], "whil'st i laboured of a": [0, 65535], "i laboured of a loue": [0, 65535], "laboured of a loue to": [0, 65535], "of a loue to see": [0, 65535], "a loue to see i": [0, 65535], "loue to see i hazarded": [0, 65535], "to see i hazarded the": [0, 65535], "see i hazarded the losse": [0, 65535], "i hazarded the losse of": [0, 65535], "hazarded the losse of whom": [0, 65535], "the losse of whom i": [0, 65535], "losse of whom i lou'd": [0, 65535], "of whom i lou'd fiue": [0, 65535], "whom i lou'd fiue sommers": [0, 65535], "i lou'd fiue sommers haue": [0, 65535], "lou'd fiue sommers haue i": [0, 65535], "fiue sommers haue i spent": [0, 65535], "sommers haue i spent in": [0, 65535], "haue i spent in farthest": [0, 65535], "i spent in farthest greece": [0, 65535], "spent in farthest greece roming": [0, 65535], "in farthest greece roming cleane": [0, 65535], "farthest greece roming cleane through": [0, 65535], "greece roming cleane through the": [0, 65535], "roming cleane through the bounds": [0, 65535], "cleane through the bounds of": [0, 65535], "through the bounds of asia": [0, 65535], "the bounds of asia and": [0, 65535], "bounds of asia and coasting": [0, 65535], "of asia and coasting homeward": [0, 65535], "asia and coasting homeward came": [0, 65535], "and coasting homeward came to": [0, 65535], "coasting homeward came to ephesus": [0, 65535], "homeward came to ephesus hopelesse": [0, 65535], "came to ephesus hopelesse to": [0, 65535], "to ephesus hopelesse to finde": [0, 65535], "ephesus hopelesse to finde yet": [0, 65535], "hopelesse to finde yet loth": [0, 65535], "to finde yet loth to": [0, 65535], "finde yet loth to leaue": [0, 65535], "yet loth to leaue vnsought": [0, 65535], "loth to leaue vnsought or": [0, 65535], "to leaue vnsought or that": [0, 65535], "leaue vnsought or that or": [0, 65535], "vnsought or that or any": [0, 65535], "or that or any place": [0, 65535], "that or any place that": [0, 65535], "or any place that harbours": [0, 65535], "any place that harbours men": [0, 65535], "place that harbours men but": [0, 65535], "that harbours men but heere": [0, 65535], "harbours men but heere must": [0, 65535], "men but heere must end": [0, 65535], "but heere must end the": [0, 65535], "heere must end the story": [0, 65535], "must end the story of": [0, 65535], "end the story of my": [0, 65535], "the story of my life": [0, 65535], "story of my life and": [0, 65535], "of my life and happy": [0, 65535], "my life and happy were": [0, 65535], "life and happy were i": [0, 65535], "and happy were i in": [0, 65535], "happy were i in my": [0, 65535], "were i in my timelie": [0, 65535], "i in my timelie death": [0, 65535], "in my timelie death could": [0, 65535], "my timelie death could all": [0, 65535], "timelie death could all my": [0, 65535], "death could all my trauells": [0, 65535], "could all my trauells warrant": [0, 65535], "all my trauells warrant me": [0, 65535], "my trauells warrant me they": [0, 65535], "trauells warrant me they liue": [0, 65535], "warrant me they liue duke": [0, 65535], "me they liue duke haplesse": [0, 65535], "they liue duke haplesse egeon": [0, 65535], "liue duke haplesse egeon whom": [0, 65535], "duke haplesse egeon whom the": [0, 65535], "haplesse egeon whom the fates": [0, 65535], "egeon whom the fates haue": [0, 65535], "whom the fates haue markt": [0, 65535], "the fates haue markt to": [0, 65535], "fates haue markt to beare": [0, 65535], "haue markt to beare the": [0, 65535], "markt to beare the extremitie": [0, 65535], "to beare the extremitie of": [0, 65535], "beare the extremitie of dire": [0, 65535], "the extremitie of dire mishap": [0, 65535], "extremitie of dire mishap now": [0, 65535], "of dire mishap now trust": [0, 65535], "dire mishap now trust me": [0, 65535], "mishap now trust me were": [0, 65535], "now trust me were it": [0, 65535], "trust me were it not": [0, 65535], "me were it not against": [0, 65535], "were it not against our": [0, 65535], "it not against our lawes": [0, 65535], "not against our lawes against": [0, 65535], "against our lawes against my": [0, 65535], "our lawes against my crowne": [0, 65535], "lawes against my crowne my": [0, 65535], "against my crowne my oath": [0, 65535], "my crowne my oath my": [0, 65535], "crowne my oath my dignity": [0, 65535], "my oath my dignity which": [0, 65535], "oath my dignity which princes": [0, 65535], "my dignity which princes would": [0, 65535], "dignity which princes would they": [0, 65535], "which princes would they may": [0, 65535], "princes would they may not": [0, 65535], "would they may not disanull": [0, 65535], "they may not disanull my": [0, 65535], "may not disanull my soule": [0, 65535], "not disanull my soule should": [0, 65535], "disanull my soule should sue": [0, 65535], "my soule should sue as": [0, 65535], "soule should sue as aduocate": [0, 65535], "should sue as aduocate for": [0, 65535], "sue as aduocate for thee": [0, 65535], "as aduocate for thee but": [0, 65535], "aduocate for thee but though": [0, 65535], "for thee but though thou": [0, 65535], "thee but though thou art": [0, 65535], "but though thou art adiudged": [0, 65535], "though thou art adiudged to": [0, 65535], "thou art adiudged to the": [0, 65535], "art adiudged to the death": [0, 65535], "adiudged to the death and": [0, 65535], "to the death and passed": [0, 65535], "the death and passed sentence": [0, 65535], "death and passed sentence may": [0, 65535], "and passed sentence may not": [0, 65535], "passed sentence may not be": [0, 65535], "sentence may not be recal'd": [0, 65535], "may not be recal'd but": [0, 65535], "not be recal'd but to": [0, 65535], "be recal'd but to our": [0, 65535], "recal'd but to our honours": [0, 65535], "but to our honours great": [0, 65535], "to our honours great disparagement": [0, 65535], "our honours great disparagement yet": [0, 65535], "honours great disparagement yet will": [0, 65535], "great disparagement yet will i": [0, 65535], "disparagement yet will i fauour": [0, 65535], "yet will i fauour thee": [0, 65535], "will i fauour thee in": [0, 65535], "i fauour thee in what": [0, 65535], "fauour thee in what i": [0, 65535], "thee in what i can": [0, 65535], "in what i can therefore": [0, 65535], "what i can therefore marchant": [0, 65535], "i can therefore marchant ile": [0, 65535], "can therefore marchant ile limit": [0, 65535], "therefore marchant ile limit thee": [0, 65535], "marchant ile limit thee this": [0, 65535], "ile limit thee this day": [0, 65535], "limit thee this day to": [0, 65535], "thee this day to seeke": [0, 65535], "this day to seeke thy": [0, 65535], "day to seeke thy helpe": [0, 65535], "to seeke thy helpe by": [0, 65535], "seeke thy helpe by beneficiall": [0, 65535], "thy helpe by beneficiall helpe": [0, 65535], "helpe by beneficiall helpe try": [0, 65535], "by beneficiall helpe try all": [0, 65535], "beneficiall helpe try all the": [0, 65535], "helpe try all the friends": [0, 65535], "try all the friends thou": [0, 65535], "all the friends thou hast": [0, 65535], "the friends thou hast in": [0, 65535], "friends thou hast in ephesus": [0, 65535], "thou hast in ephesus beg": [0, 65535], "hast in ephesus beg thou": [0, 65535], "in ephesus beg thou or": [0, 65535], "ephesus beg thou or borrow": [0, 65535], "beg thou or borrow to": [0, 65535], "thou or borrow to make": [0, 65535], "or borrow to make vp": [0, 65535], "borrow to make vp the": [0, 65535], "to make vp the summe": [0, 65535], "make vp the summe and": [0, 65535], "vp the summe and liue": [0, 65535], "the summe and liue if": [0, 65535], "summe and liue if no": [0, 65535], "and liue if no then": [0, 65535], "liue if no then thou": [0, 65535], "if no then thou art": [0, 65535], "no then thou art doom'd": [0, 65535], "then thou art doom'd to": [0, 65535], "thou art doom'd to die": [0, 65535], "art doom'd to die iaylor": [0, 65535], "doom'd to die iaylor take": [0, 65535], "to die iaylor take him": [0, 65535], "die iaylor take him to": [0, 65535], "iaylor take him to thy": [0, 65535], "take him to thy custodie": [0, 65535], "him to thy custodie iaylor": [0, 65535], "to thy custodie iaylor i": [0, 65535], "thy custodie iaylor i will": [0, 65535], "custodie iaylor i will my": [0, 65535], "iaylor i will my lord": [0, 65535], "i will my lord merch": [0, 65535], "will my lord merch hopelesse": [0, 65535], "my lord merch hopelesse and": [0, 65535], "lord merch hopelesse and helpelesse": [0, 65535], "merch hopelesse and helpelesse doth": [0, 65535], "hopelesse and helpelesse doth egean": [0, 65535], "and helpelesse doth egean wend": [0, 65535], "helpelesse doth egean wend but": [0, 65535], "doth egean wend but to": [0, 65535], "egean wend but to procrastinate": [0, 65535], "wend but to procrastinate his": [0, 65535], "but to procrastinate his liuelesse": [0, 65535], "to procrastinate his liuelesse end": [0, 65535], "procrastinate his liuelesse end exeunt": [0, 65535], "his liuelesse end exeunt enter": [0, 65535], "liuelesse end exeunt enter antipholis": [0, 65535], "end exeunt enter antipholis erotes": [0, 65535], "exeunt enter antipholis erotes a": [0, 65535], "enter antipholis erotes a marchant": [0, 65535], "antipholis erotes a marchant and": [0, 65535], "erotes a marchant and dromio": [0, 65535], "a marchant and dromio mer": [0, 65535], "marchant and dromio mer therefore": [0, 65535], "and dromio mer therefore giue": [0, 65535], "dromio mer therefore giue out": [0, 65535], "mer therefore giue out you": [0, 65535], "therefore giue out you are": [0, 65535], "giue out you are of": [0, 65535], "out you are of epidamium": [0, 65535], "you are of epidamium lest": [0, 65535], "are of epidamium lest that": [0, 65535], "of epidamium lest that your": [0, 65535], "epidamium lest that your goods": [0, 65535], "lest that your goods too": [0, 65535], "that your goods too soone": [0, 65535], "your goods too soone be": [0, 65535], "goods too soone be confiscate": [0, 65535], "too soone be confiscate this": [0, 65535], "soone be confiscate this very": [0, 65535], "be confiscate this very day": [0, 65535], "confiscate this very day a": [0, 65535], "this very day a syracusian": [0, 65535], "very day a syracusian marchant": [0, 65535], "day a syracusian marchant is": [0, 65535], "a syracusian marchant is apprehended": [0, 65535], "syracusian marchant is apprehended for": [0, 65535], "marchant is apprehended for a": [0, 65535], "is apprehended for a riuall": [0, 65535], "apprehended for a riuall here": [0, 65535], "for a riuall here and": [0, 65535], "a riuall here and not": [0, 65535], "riuall here and not being": [0, 65535], "here and not being able": [0, 65535], "and not being able to": [0, 65535], "not being able to buy": [0, 65535], "being able to buy out": [0, 65535], "able to buy out his": [0, 65535], "to buy out his life": [0, 65535], "buy out his life according": [0, 65535], "out his life according to": [0, 65535], "his life according to the": [0, 65535], "life according to the statute": [0, 65535], "according to the statute of": [0, 65535], "to the statute of the": [0, 65535], "the statute of the towne": [0, 65535], "statute of the towne dies": [0, 65535], "of the towne dies ere": [0, 65535], "the towne dies ere the": [0, 65535], "towne dies ere the wearie": [0, 65535], "dies ere the wearie sunne": [0, 65535], "ere the wearie sunne set": [0, 65535], "the wearie sunne set in": [0, 65535], "wearie sunne set in the": [0, 65535], "sunne set in the west": [0, 65535], "set in the west there": [0, 65535], "in the west there is": [0, 65535], "the west there is your": [0, 65535], "west there is your monie": [0, 65535], "there is your monie that": [0, 65535], "is your monie that i": [0, 65535], "your monie that i had": [0, 65535], "monie that i had to": [0, 65535], "that i had to keepe": [0, 65535], "i had to keepe ant": [0, 65535], "had to keepe ant goe": [0, 65535], "to keepe ant goe beare": [0, 65535], "keepe ant goe beare it": [0, 65535], "ant goe beare it to": [0, 65535], "goe beare it to the": [0, 65535], "beare it to the centaure": [0, 65535], "it to the centaure where": [0, 65535], "to the centaure where we": [0, 65535], "the centaure where we host": [0, 65535], "centaure where we host and": [0, 65535], "where we host and stay": [0, 65535], "we host and stay there": [0, 65535], "host and stay there dromio": [0, 65535], "and stay there dromio till": [0, 65535], "stay there dromio till i": [0, 65535], "there dromio till i come": [0, 65535], "dromio till i come to": [0, 65535], "till i come to thee": [0, 65535], "i come to thee within": [0, 65535], "come to thee within this": [0, 65535], "to thee within this houre": [0, 65535], "thee within this houre it": [0, 65535], "within this houre it will": [0, 65535], "this houre it will be": [0, 65535], "houre it will be dinner": [0, 65535], "it will be dinner time": [0, 65535], "will be dinner time till": [0, 65535], "be dinner time till that": [0, 65535], "dinner time till that ile": [0, 65535], "time till that ile view": [0, 65535], "till that ile view the": [0, 65535], "that ile view the manners": [0, 65535], "ile view the manners of": [0, 65535], "view the manners of the": [0, 65535], "the manners of the towne": [0, 65535], "manners of the towne peruse": [0, 65535], "of the towne peruse the": [0, 65535], "the towne peruse the traders": [0, 65535], "towne peruse the traders gaze": [0, 65535], "peruse the traders gaze vpon": [0, 65535], "the traders gaze vpon the": [0, 65535], "traders gaze vpon the buildings": [0, 65535], "gaze vpon the buildings and": [0, 65535], "vpon the buildings and then": [0, 65535], "the buildings and then returne": [0, 65535], "buildings and then returne and": [0, 65535], "and then returne and sleepe": [0, 65535], "then returne and sleepe within": [0, 65535], "returne and sleepe within mine": [0, 65535], "and sleepe within mine inne": [0, 65535], "sleepe within mine inne for": [0, 65535], "within mine inne for with": [0, 65535], "mine inne for with long": [0, 65535], "inne for with long trauaile": [0, 65535], "for with long trauaile i": [0, 65535], "with long trauaile i am": [0, 65535], "long trauaile i am stiffe": [0, 65535], "trauaile i am stiffe and": [0, 65535], "i am stiffe and wearie": [0, 65535], "am stiffe and wearie get": [0, 65535], "stiffe and wearie get thee": [0, 65535], "and wearie get thee away": [0, 65535], "wearie get thee away dro": [0, 65535], "get thee away dro many": [0, 65535], "thee away dro many a": [0, 65535], "away dro many a man": [0, 65535], "dro many a man would": [0, 65535], "many a man would take": [0, 65535], "a man would take you": [0, 65535], "man would take you at": [0, 65535], "would take you at your": [0, 65535], "take you at your word": [0, 65535], "you at your word and": [0, 65535], "at your word and goe": [0, 65535], "your word and goe indeede": [0, 65535], "word and goe indeede hauing": [0, 65535], "and goe indeede hauing so": [0, 65535], "goe indeede hauing so good": [0, 65535], "indeede hauing so good a": [0, 65535], "hauing so good a meane": [0, 65535], "so good a meane exit": [0, 65535], "good a meane exit dromio": [0, 65535], "a meane exit dromio ant": [0, 65535], "meane exit dromio ant a": [0, 65535], "exit dromio ant a trustie": [0, 65535], "dromio ant a trustie villaine": [0, 65535], "ant a trustie villaine sir": [0, 65535], "a trustie villaine sir that": [0, 65535], "trustie villaine sir that very": [0, 65535], "villaine sir that very oft": [0, 65535], "sir that very oft when": [0, 65535], "that very oft when i": [0, 65535], "very oft when i am": [0, 65535], "oft when i am dull": [0, 65535], "when i am dull with": [0, 65535], "i am dull with care": [0, 65535], "am dull with care and": [0, 65535], "dull with care and melancholly": [0, 65535], "with care and melancholly lightens": [0, 65535], "care and melancholly lightens my": [0, 65535], "and melancholly lightens my humour": [0, 65535], "melancholly lightens my humour with": [0, 65535], "lightens my humour with his": [0, 65535], "my humour with his merry": [0, 65535], "humour with his merry iests": [0, 65535], "with his merry iests what": [0, 65535], "his merry iests what will": [0, 65535], "merry iests what will you": [0, 65535], "iests what will you walke": [0, 65535], "what will you walke with": [0, 65535], "will you walke with me": [0, 65535], "you walke with me about": [0, 65535], "walke with me about the": [0, 65535], "with me about the towne": [0, 65535], "me about the towne and": [0, 65535], "about the towne and then": [0, 65535], "the towne and then goe": [0, 65535], "towne and then goe to": [0, 65535], "and then goe to my": [0, 65535], "then goe to my inne": [0, 65535], "goe to my inne and": [0, 65535], "to my inne and dine": [0, 65535], "my inne and dine with": [0, 65535], "inne and dine with me": [0, 65535], "and dine with me e": [0, 65535], "dine with me e mar": [0, 65535], "with me e mar i": [0, 65535], "me e mar i am": [0, 65535], "e mar i am inuited": [0, 65535], "mar i am inuited sir": [0, 65535], "i am inuited sir to": [0, 65535], "am inuited sir to certaine": [0, 65535], "inuited sir to certaine marchants": [0, 65535], "sir to certaine marchants of": [0, 65535], "to certaine marchants of whom": [0, 65535], "certaine marchants of whom i": [0, 65535], "marchants of whom i hope": [0, 65535], "of whom i hope to": [0, 65535], "whom i hope to make": [0, 65535], "i hope to make much": [0, 65535], "hope to make much benefit": [0, 65535], "to make much benefit i": [0, 65535], "make much benefit i craue": [0, 65535], "much benefit i craue your": [0, 65535], "benefit i craue your pardon": [0, 65535], "i craue your pardon soone": [0, 65535], "craue your pardon soone at": [0, 65535], "your pardon soone at fiue": [0, 65535], "pardon soone at fiue a": [0, 65535], "soone at fiue a clocke": [0, 65535], "at fiue a clocke please": [0, 65535], "fiue a clocke please you": [0, 65535], "a clocke please you ile": [0, 65535], "clocke please you ile meete": [0, 65535], "please you ile meete with": [0, 65535], "you ile meete with you": [0, 65535], "ile meete with you vpon": [0, 65535], "meete with you vpon the": [0, 65535], "with you vpon the mart": [0, 65535], "you vpon the mart and": [0, 65535], "vpon the mart and afterward": [0, 65535], "the mart and afterward consort": [0, 65535], "mart and afterward consort you": [0, 65535], "and afterward consort you till": [0, 65535], "afterward consort you till bed": [0, 65535], "consort you till bed time": [0, 65535], "you till bed time my": [0, 65535], "till bed time my present": [0, 65535], "bed time my present businesse": [0, 65535], "time my present businesse cals": [0, 65535], "my present businesse cals me": [0, 65535], "present businesse cals me from": [0, 65535], "businesse cals me from you": [0, 65535], "cals me from you now": [0, 65535], "me from you now ant": [0, 65535], "from you now ant farewell": [0, 65535], "you now ant farewell till": [0, 65535], "now ant farewell till then": [0, 65535], "ant farewell till then i": [0, 65535], "farewell till then i will": [0, 65535], "till then i will goe": [0, 65535], "then i will goe loose": [0, 65535], "i will goe loose my": [0, 65535], "will goe loose my selfe": [0, 65535], "goe loose my selfe and": [0, 65535], "loose my selfe and wander": [0, 65535], "my selfe and wander vp": [0, 65535], "selfe and wander vp and": [0, 65535], "and wander vp and downe": [0, 65535], "wander vp and downe to": [0, 65535], "vp and downe to view": [0, 65535], "and downe to view the": [0, 65535], "downe to view the citie": [0, 65535], "to view the citie e": [0, 65535], "view the citie e mar": [0, 65535], "the citie e mar sir": [0, 65535], "citie e mar sir i": [0, 65535], "e mar sir i commend": [0, 65535], "mar sir i commend you": [0, 65535], "sir i commend you to": [0, 65535], "i commend you to your": [0, 65535], "commend you to your owne": [0, 65535], "you to your owne content": [0, 65535], "to your owne content exeunt": [0, 65535], "your owne content exeunt ant": [0, 65535], "owne content exeunt ant he": [0, 65535], "content exeunt ant he that": [0, 65535], "exeunt ant he that commends": [0, 65535], "ant he that commends me": [0, 65535], "he that commends me to": [0, 65535], "that commends me to mine": [0, 65535], "commends me to mine owne": [0, 65535], "me to mine owne content": [0, 65535], "to mine owne content commends": [0, 65535], "mine owne content commends me": [0, 65535], "owne content commends me to": [0, 65535], "content commends me to the": [0, 65535], "commends me to the thing": [0, 65535], "me to the thing i": [0, 65535], "to the thing i cannot": [0, 65535], "the thing i cannot get": [0, 65535], "thing i cannot get i": [0, 65535], "i cannot get i to": [0, 65535], "cannot get i to the": [0, 65535], "get i to the world": [0, 65535], "i to the world am": [0, 65535], "to the world am like": [0, 65535], "the world am like a": [0, 65535], "world am like a drop": [0, 65535], "am like a drop of": [0, 65535], "like a drop of water": [0, 65535], "a drop of water that": [0, 65535], "drop of water that in": [0, 65535], "of water that in the": [0, 65535], "water that in the ocean": [0, 65535], "that in the ocean seekes": [0, 65535], "in the ocean seekes another": [0, 65535], "the ocean seekes another drop": [0, 65535], "ocean seekes another drop who": [0, 65535], "seekes another drop who falling": [0, 65535], "another drop who falling there": [0, 65535], "drop who falling there to": [0, 65535], "who falling there to finde": [0, 65535], "falling there to finde his": [0, 65535], "there to finde his fellow": [0, 65535], "to finde his fellow forth": [0, 65535], "finde his fellow forth vnseene": [0, 65535], "his fellow forth vnseene inquisitiue": [0, 65535], "fellow forth vnseene inquisitiue confounds": [0, 65535], "forth vnseene inquisitiue confounds himselfe": [0, 65535], "vnseene inquisitiue confounds himselfe so": [0, 65535], "inquisitiue confounds himselfe so i": [0, 65535], "confounds himselfe so i to": [0, 65535], "himselfe so i to finde": [0, 65535], "so i to finde a": [0, 65535], "i to finde a mother": [0, 65535], "to finde a mother and": [0, 65535], "finde a mother and a": [0, 65535], "a mother and a brother": [0, 65535], "mother and a brother in": [0, 65535], "and a brother in quest": [0, 65535], "a brother in quest of": [0, 65535], "brother in quest of them": [0, 65535], "in quest of them vnhappie": [0, 65535], "quest of them vnhappie a": [0, 65535], "of them vnhappie a loose": [0, 65535], "them vnhappie a loose my": [0, 65535], "vnhappie a loose my selfe": [0, 65535], "a loose my selfe enter": [0, 65535], "loose my selfe enter dromio": [0, 65535], "my selfe enter dromio of": [0, 65535], "selfe enter dromio of ephesus": [0, 65535], "enter dromio of ephesus here": [0, 65535], "dromio of ephesus here comes": [0, 65535], "of ephesus here comes the": [0, 65535], "ephesus here comes the almanacke": [0, 65535], "here comes the almanacke of": [0, 65535], "comes the almanacke of my": [0, 65535], "the almanacke of my true": [0, 65535], "almanacke of my true date": [0, 65535], "of my true date what": [0, 65535], "my true date what now": [0, 65535], "true date what now how": [0, 65535], "date what now how chance": [0, 65535], "what now how chance thou": [0, 65535], "now how chance thou art": [0, 65535], "how chance thou art return'd": [0, 65535], "chance thou art return'd so": [0, 65535], "thou art return'd so soone": [0, 65535], "art return'd so soone e": [0, 65535], "return'd so soone e dro": [0, 65535], "so soone e dro return'd": [0, 65535], "soone e dro return'd so": [0, 65535], "e dro return'd so soone": [0, 65535], "dro return'd so soone rather": [0, 65535], "return'd so soone rather approacht": [0, 65535], "so soone rather approacht too": [0, 65535], "soone rather approacht too late": [0, 65535], "rather approacht too late the": [0, 65535], "approacht too late the capon": [0, 65535], "too late the capon burnes": [0, 65535], "late the capon burnes the": [0, 65535], "the capon burnes the pig": [0, 65535], "capon burnes the pig fals": [0, 65535], "burnes the pig fals from": [0, 65535], "the pig fals from the": [0, 65535], "pig fals from the spit": [0, 65535], "fals from the spit the": [0, 65535], "from the spit the clocke": [0, 65535], "the spit the clocke hath": [0, 65535], "spit the clocke hath strucken": [0, 65535], "the clocke hath strucken twelue": [0, 65535], "clocke hath strucken twelue vpon": [0, 65535], "hath strucken twelue vpon the": [0, 65535], "strucken twelue vpon the bell": [0, 65535], "twelue vpon the bell my": [0, 65535], "vpon the bell my mistris": [0, 65535], "the bell my mistris made": [0, 65535], "bell my mistris made it": [0, 65535], "my mistris made it one": [0, 65535], "mistris made it one vpon": [0, 65535], "made it one vpon my": [0, 65535], "it one vpon my cheeke": [0, 65535], "one vpon my cheeke she": [0, 65535], "vpon my cheeke she is": [0, 65535], "my cheeke she is so": [0, 65535], "cheeke she is so hot": [0, 65535], "she is so hot because": [0, 65535], "is so hot because the": [0, 65535], "so hot because the meate": [0, 65535], "hot because the meate is": [0, 65535], "because the meate is colde": [0, 65535], "the meate is colde the": [0, 65535], "meate is colde the meate": [0, 65535], "is colde the meate is": [0, 65535], "colde the meate is colde": [0, 65535], "the meate is colde because": [0, 65535], "meate is colde because you": [0, 65535], "is colde because you come": [0, 65535], "colde because you come not": [0, 65535], "because you come not home": [0, 65535], "you come not home you": [0, 65535], "come not home you come": [0, 65535], "not home you come not": [0, 65535], "home you come not home": [0, 65535], "you come not home because": [0, 65535], "come not home because you": [0, 65535], "not home because you haue": [0, 65535], "home because you haue no": [0, 65535], "because you haue no stomacke": [0, 65535], "you haue no stomacke you": [0, 65535], "haue no stomacke you haue": [0, 65535], "no stomacke you haue no": [0, 65535], "stomacke you haue no stomacke": [0, 65535], "you haue no stomacke hauing": [0, 65535], "haue no stomacke hauing broke": [0, 65535], "no stomacke hauing broke your": [0, 65535], "stomacke hauing broke your fast": [0, 65535], "hauing broke your fast but": [0, 65535], "broke your fast but we": [0, 65535], "your fast but we that": [0, 65535], "fast but we that know": [0, 65535], "but we that know what": [0, 65535], "we that know what 'tis": [0, 65535], "that know what 'tis to": [0, 65535], "know what 'tis to fast": [0, 65535], "what 'tis to fast and": [0, 65535], "'tis to fast and pray": [0, 65535], "to fast and pray are": [0, 65535], "fast and pray are penitent": [0, 65535], "and pray are penitent for": [0, 65535], "pray are penitent for your": [0, 65535], "are penitent for your default": [0, 65535], "penitent for your default to": [0, 65535], "for your default to day": [0, 65535], "your default to day ant": [0, 65535], "default to day ant stop": [0, 65535], "to day ant stop in": [0, 65535], "day ant stop in your": [0, 65535], "ant stop in your winde": [0, 65535], "stop in your winde sir": [0, 65535], "in your winde sir tell": [0, 65535], "your winde sir tell me": [0, 65535], "winde sir tell me this": [0, 65535], "sir tell me this i": [0, 65535], "tell me this i pray": [0, 65535], "me this i pray where": [0, 65535], "this i pray where haue": [0, 65535], "i pray where haue you": [0, 65535], "pray where haue you left": [0, 65535], "where haue you left the": [0, 65535], "haue you left the mony": [0, 65535], "you left the mony that": [0, 65535], "left the mony that i": [0, 65535], "the mony that i gaue": [0, 65535], "mony that i gaue you": [0, 65535], "that i gaue you e": [0, 65535], "i gaue you e dro": [0, 65535], "gaue you e dro oh": [0, 65535], "you e dro oh sixe": [0, 65535], "e dro oh sixe pence": [0, 65535], "dro oh sixe pence that": [0, 65535], "oh sixe pence that i": [0, 65535], "sixe pence that i had": [0, 65535], "pence that i had a": [0, 65535], "that i had a wensday": [0, 65535], "i had a wensday last": [0, 65535], "had a wensday last to": [0, 65535], "a wensday last to pay": [0, 65535], "wensday last to pay the": [0, 65535], "last to pay the sadler": [0, 65535], "to pay the sadler for": [0, 65535], "pay the sadler for my": [0, 65535], "the sadler for my mistris": [0, 65535], "sadler for my mistris crupper": [0, 65535], "for my mistris crupper the": [0, 65535], "my mistris crupper the sadler": [0, 65535], "mistris crupper the sadler had": [0, 65535], "crupper the sadler had it": [0, 65535], "the sadler had it sir": [0, 65535], "sadler had it sir i": [0, 65535], "had it sir i kept": [0, 65535], "it sir i kept it": [0, 65535], "sir i kept it not": [0, 65535], "i kept it not ant": [0, 65535], "kept it not ant i": [0, 65535], "it not ant i am": [0, 65535], "not ant i am not": [0, 65535], "ant i am not in": [0, 65535], "i am not in a": [0, 65535], "am not in a sportiue": [0, 65535], "not in a sportiue humor": [0, 65535], "in a sportiue humor now": [0, 65535], "a sportiue humor now tell": [0, 65535], "sportiue humor now tell me": [0, 65535], "humor now tell me and": [0, 65535], "now tell me and dally": [0, 65535], "tell me and dally not": [0, 65535], "me and dally not where": [0, 65535], "and dally not where is": [0, 65535], "dally not where is the": [0, 65535], "not where is the monie": [0, 65535], "where is the monie we": [0, 65535], "is the monie we being": [0, 65535], "the monie we being strangers": [0, 65535], "monie we being strangers here": [0, 65535], "we being strangers here how": [0, 65535], "being strangers here how dar'st": [0, 65535], "strangers here how dar'st thou": [0, 65535], "here how dar'st thou trust": [0, 65535], "how dar'st thou trust so": [0, 65535], "dar'st thou trust so great": [0, 65535], "thou trust so great a": [0, 65535], "trust so great a charge": [0, 65535], "so great a charge from": [0, 65535], "great a charge from thine": [0, 65535], "a charge from thine owne": [0, 65535], "charge from thine owne custodie": [0, 65535], "from thine owne custodie e": [0, 65535], "thine owne custodie e dro": [0, 65535], "owne custodie e dro i": [0, 65535], "custodie e dro i pray": [0, 65535], "e dro i pray you": [0, 65535], "dro i pray you iest": [0, 65535], "i pray you iest sir": [0, 65535], "pray you iest sir as": [0, 65535], "you iest sir as you": [0, 65535], "iest sir as you sit": [0, 65535], "sir as you sit at": [0, 65535], "as you sit at dinner": [0, 65535], "you sit at dinner i": [0, 65535], "sit at dinner i from": [0, 65535], "at dinner i from my": [0, 65535], "dinner i from my mistris": [0, 65535], "i from my mistris come": [0, 65535], "from my mistris come to": [0, 65535], "my mistris come to you": [0, 65535], "mistris come to you in": [0, 65535], "come to you in post": [0, 65535], "to you in post if": [0, 65535], "you in post if i": [0, 65535], "in post if i returne": [0, 65535], "post if i returne i": [0, 65535], "if i returne i shall": [0, 65535], "i returne i shall be": [0, 65535], "returne i shall be post": [0, 65535], "i shall be post indeede": [0, 65535], "shall be post indeede for": [0, 65535], "be post indeede for she": [0, 65535], "post indeede for she will": [0, 65535], "indeede for she will scoure": [0, 65535], "for she will scoure your": [0, 65535], "she will scoure your fault": [0, 65535], "will scoure your fault vpon": [0, 65535], "scoure your fault vpon my": [0, 65535], "your fault vpon my pate": [0, 65535], "fault vpon my pate me": [0, 65535], "vpon my pate me thinkes": [0, 65535], "my pate me thinkes your": [0, 65535], "pate me thinkes your maw": [0, 65535], "me thinkes your maw like": [0, 65535], "thinkes your maw like mine": [0, 65535], "your maw like mine should": [0, 65535], "maw like mine should be": [0, 65535], "like mine should be your": [0, 65535], "mine should be your cooke": [0, 65535], "should be your cooke and": [0, 65535], "be your cooke and strike": [0, 65535], "your cooke and strike you": [0, 65535], "cooke and strike you home": [0, 65535], "and strike you home without": [0, 65535], "strike you home without a": [0, 65535], "you home without a messenger": [0, 65535], "home without a messenger ant": [0, 65535], "without a messenger ant come": [0, 65535], "a messenger ant come dromio": [0, 65535], "messenger ant come dromio come": [0, 65535], "ant come dromio come these": [0, 65535], "come dromio come these iests": [0, 65535], "dromio come these iests are": [0, 65535], "come these iests are out": [0, 65535], "these iests are out of": [0, 65535], "iests are out of season": [0, 65535], "are out of season reserue": [0, 65535], "out of season reserue them": [0, 65535], "of season reserue them till": [0, 65535], "season reserue them till a": [0, 65535], "reserue them till a merrier": [0, 65535], "them till a merrier houre": [0, 65535], "till a merrier houre then": [0, 65535], "a merrier houre then this": [0, 65535], "merrier houre then this where": [0, 65535], "houre then this where is": [0, 65535], "then this where is the": [0, 65535], "this where is the gold": [0, 65535], "where is the gold i": [0, 65535], "is the gold i gaue": [0, 65535], "the gold i gaue in": [0, 65535], "gold i gaue in charge": [0, 65535], "i gaue in charge to": [0, 65535], "gaue in charge to thee": [0, 65535], "in charge to thee e": [0, 65535], "charge to thee e dro": [0, 65535], "to thee e dro to": [0, 65535], "thee e dro to me": [0, 65535], "e dro to me sir": [0, 65535], "dro to me sir why": [0, 65535], "to me sir why you": [0, 65535], "me sir why you gaue": [0, 65535], "sir why you gaue no": [0, 65535], "why you gaue no gold": [0, 65535], "you gaue no gold to": [0, 65535], "gaue no gold to me": [0, 65535], "no gold to me ant": [0, 65535], "gold to me ant come": [0, 65535], "to me ant come on": [0, 65535], "me ant come on sir": [0, 65535], "ant come on sir knaue": [0, 65535], "come on sir knaue haue": [0, 65535], "on sir knaue haue done": [0, 65535], "sir knaue haue done your": [0, 65535], "knaue haue done your foolishnes": [0, 65535], "haue done your foolishnes and": [0, 65535], "done your foolishnes and tell": [0, 65535], "your foolishnes and tell me": [0, 65535], "foolishnes and tell me how": [0, 65535], "and tell me how thou": [0, 65535], "tell me how thou hast": [0, 65535], "me how thou hast dispos'd": [0, 65535], "how thou hast dispos'd thy": [0, 65535], "thou hast dispos'd thy charge": [0, 65535], "hast dispos'd thy charge e": [0, 65535], "dispos'd thy charge e dro": [0, 65535], "thy charge e dro my": [0, 65535], "charge e dro my charge": [0, 65535], "e dro my charge was": [0, 65535], "dro my charge was but": [0, 65535], "my charge was but to": [0, 65535], "charge was but to fetch": [0, 65535], "was but to fetch you": [0, 65535], "but to fetch you from": [0, 65535], "to fetch you from the": [0, 65535], "fetch you from the mart": [0, 65535], "you from the mart home": [0, 65535], "from the mart home to": [0, 65535], "the mart home to your": [0, 65535], "mart home to your house": [0, 65535], "home to your house the": [0, 65535], "to your house the ph\u0153nix": [0, 65535], "your house the ph\u0153nix sir": [0, 65535], "house the ph\u0153nix sir to": [0, 65535], "the ph\u0153nix sir to dinner": [0, 65535], "ph\u0153nix sir to dinner my": [0, 65535], "sir to dinner my mistris": [0, 65535], "to dinner my mistris and": [0, 65535], "dinner my mistris and her": [0, 65535], "my mistris and her sister": [0, 65535], "mistris and her sister staies": [0, 65535], "and her sister staies for": [0, 65535], "her sister staies for you": [0, 65535], "sister staies for you ant": [0, 65535], "staies for you ant now": [0, 65535], "for you ant now as": [0, 65535], "you ant now as i": [0, 65535], "ant now as i am": [0, 65535], "now as i am a": [0, 65535], "as i am a christian": [0, 65535], "i am a christian answer": [0, 65535], "am a christian answer me": [0, 65535], "a christian answer me in": [0, 65535], "christian answer me in what": [0, 65535], "answer me in what safe": [0, 65535], "me in what safe place": [0, 65535], "in what safe place you": [0, 65535], "what safe place you haue": [0, 65535], "safe place you haue bestow'd": [0, 65535], "place you haue bestow'd my": [0, 65535], "you haue bestow'd my monie": [0, 65535], "haue bestow'd my monie or": [0, 65535], "bestow'd my monie or i": [0, 65535], "my monie or i shall": [0, 65535], "monie or i shall breake": [0, 65535], "or i shall breake that": [0, 65535], "i shall breake that merrie": [0, 65535], "shall breake that merrie sconce": [0, 65535], "breake that merrie sconce of": [0, 65535], "that merrie sconce of yours": [0, 65535], "merrie sconce of yours that": [0, 65535], "sconce of yours that stands": [0, 65535], "of yours that stands on": [0, 65535], "yours that stands on tricks": [0, 65535], "that stands on tricks when": [0, 65535], "stands on tricks when i": [0, 65535], "on tricks when i am": [0, 65535], "tricks when i am vndispos'd": [0, 65535], "when i am vndispos'd where": [0, 65535], "i am vndispos'd where is": [0, 65535], "am vndispos'd where is the": [0, 65535], "vndispos'd where is the thousand": [0, 65535], "is the thousand markes thou": [0, 65535], "the thousand markes thou hadst": [0, 65535], "thousand markes thou hadst of": [0, 65535], "markes thou hadst of me": [0, 65535], "thou hadst of me e": [0, 65535], "hadst of me e dro": [0, 65535], "of me e dro i": [0, 65535], "me e dro i haue": [0, 65535], "e dro i haue some": [0, 65535], "dro i haue some markes": [0, 65535], "i haue some markes of": [0, 65535], "haue some markes of yours": [0, 65535], "some markes of yours vpon": [0, 65535], "markes of yours vpon my": [0, 65535], "of yours vpon my pate": [0, 65535], "yours vpon my pate some": [0, 65535], "vpon my pate some of": [0, 65535], "my pate some of my": [0, 65535], "pate some of my mistris": [0, 65535], "some of my mistris markes": [0, 65535], "of my mistris markes vpon": [0, 65535], "my mistris markes vpon my": [0, 65535], "mistris markes vpon my shoulders": [0, 65535], "markes vpon my shoulders but": [0, 65535], "vpon my shoulders but not": [0, 65535], "my shoulders but not a": [0, 65535], "shoulders but not a thousand": [0, 65535], "but not a thousand markes": [0, 65535], "not a thousand markes betweene": [0, 65535], "a thousand markes betweene you": [0, 65535], "thousand markes betweene you both": [0, 65535], "markes betweene you both if": [0, 65535], "betweene you both if i": [0, 65535], "you both if i should": [0, 65535], "both if i should pay": [0, 65535], "if i should pay your": [0, 65535], "i should pay your worship": [0, 65535], "should pay your worship those": [0, 65535], "pay your worship those againe": [0, 65535], "your worship those againe perchance": [0, 65535], "worship those againe perchance you": [0, 65535], "those againe perchance you will": [0, 65535], "againe perchance you will not": [0, 65535], "perchance you will not beare": [0, 65535], "you will not beare them": [0, 65535], "will not beare them patiently": [0, 65535], "not beare them patiently ant": [0, 65535], "beare them patiently ant thy": [0, 65535], "them patiently ant thy mistris": [0, 65535], "patiently ant thy mistris markes": [0, 65535], "ant thy mistris markes what": [0, 65535], "thy mistris markes what mistris": [0, 65535], "mistris markes what mistris slaue": [0, 65535], "markes what mistris slaue hast": [0, 65535], "what mistris slaue hast thou": [0, 65535], "mistris slaue hast thou e": [0, 65535], "slaue hast thou e dro": [0, 65535], "hast thou e dro your": [0, 65535], "thou e dro your worships": [0, 65535], "e dro your worships wife": [0, 65535], "dro your worships wife my": [0, 65535], "your worships wife my mistris": [0, 65535], "worships wife my mistris at": [0, 65535], "wife my mistris at the": [0, 65535], "my mistris at the ph\u0153nix": [0, 65535], "mistris at the ph\u0153nix she": [0, 65535], "at the ph\u0153nix she that": [0, 65535], "the ph\u0153nix she that doth": [0, 65535], "ph\u0153nix she that doth fast": [0, 65535], "she that doth fast till": [0, 65535], "that doth fast till you": [0, 65535], "doth fast till you come": [0, 65535], "fast till you come home": [0, 65535], "till you come home to": [0, 65535], "you come home to dinner": [0, 65535], "come home to dinner and": [0, 65535], "home to dinner and praies": [0, 65535], "to dinner and praies that": [0, 65535], "dinner and praies that you": [0, 65535], "and praies that you will": [0, 65535], "praies that you will hie": [0, 65535], "that you will hie you": [0, 65535], "you will hie you home": [0, 65535], "will hie you home to": [0, 65535], "hie you home to dinner": [0, 65535], "you home to dinner ant": [0, 65535], "home to dinner ant what": [0, 65535], "to dinner ant what wilt": [0, 65535], "dinner ant what wilt thou": [0, 65535], "ant what wilt thou flout": [0, 65535], "what wilt thou flout me": [0, 65535], "wilt thou flout me thus": [0, 65535], "thou flout me thus vnto": [0, 65535], "flout me thus vnto my": [0, 65535], "me thus vnto my face": [0, 65535], "thus vnto my face being": [0, 65535], "vnto my face being forbid": [0, 65535], "my face being forbid there": [0, 65535], "face being forbid there take": [0, 65535], "being forbid there take you": [0, 65535], "forbid there take you that": [0, 65535], "there take you that sir": [0, 65535], "take you that sir knaue": [0, 65535], "you that sir knaue e": [0, 65535], "that sir knaue e dro": [0, 65535], "sir knaue e dro what": [0, 65535], "knaue e dro what meane": [0, 65535], "e dro what meane you": [0, 65535], "dro what meane you sir": [0, 65535], "what meane you sir for": [0, 65535], "meane you sir for god": [0, 65535], "you sir for god sake": [0, 65535], "sir for god sake hold": [0, 65535], "for god sake hold your": [0, 65535], "god sake hold your hands": [0, 65535], "sake hold your hands nay": [0, 65535], "hold your hands nay and": [0, 65535], "your hands nay and you": [0, 65535], "hands nay and you will": [0, 65535], "nay and you will not": [0, 65535], "and you will not sir": [0, 65535], "you will not sir ile": [0, 65535], "will not sir ile take": [0, 65535], "not sir ile take my": [0, 65535], "sir ile take my heeles": [0, 65535], "ile take my heeles exeunt": [0, 65535], "take my heeles exeunt dromio": [0, 65535], "my heeles exeunt dromio ep": [0, 65535], "heeles exeunt dromio ep ant": [0, 65535], "exeunt dromio ep ant vpon": [0, 65535], "dromio ep ant vpon my": [0, 65535], "ep ant vpon my life": [0, 65535], "ant vpon my life by": [0, 65535], "vpon my life by some": [0, 65535], "my life by some deuise": [0, 65535], "life by some deuise or": [0, 65535], "by some deuise or other": [0, 65535], "some deuise or other the": [0, 65535], "deuise or other the villaine": [0, 65535], "or other the villaine is": [0, 65535], "other the villaine is ore": [0, 65535], "the villaine is ore wrought": [0, 65535], "villaine is ore wrought of": [0, 65535], "is ore wrought of all": [0, 65535], "ore wrought of all my": [0, 65535], "wrought of all my monie": [0, 65535], "of all my monie they": [0, 65535], "all my monie they say": [0, 65535], "my monie they say this": [0, 65535], "monie they say this towne": [0, 65535], "they say this towne is": [0, 65535], "say this towne is full": [0, 65535], "this towne is full of": [0, 65535], "towne is full of cosenage": [0, 65535], "is full of cosenage as": [0, 65535], "full of cosenage as nimble": [0, 65535], "of cosenage as nimble iuglers": [0, 65535], "cosenage as nimble iuglers that": [0, 65535], "as nimble iuglers that deceiue": [0, 65535], "nimble iuglers that deceiue the": [0, 65535], "iuglers that deceiue the eie": [0, 65535], "that deceiue the eie darke": [0, 65535], "deceiue the eie darke working": [0, 65535], "the eie darke working sorcerers": [0, 65535], "eie darke working sorcerers that": [0, 65535], "darke working sorcerers that change": [0, 65535], "working sorcerers that change the": [0, 65535], "sorcerers that change the minde": [0, 65535], "that change the minde soule": [0, 65535], "change the minde soule killing": [0, 65535], "the minde soule killing witches": [0, 65535], "minde soule killing witches that": [0, 65535], "soule killing witches that deforme": [0, 65535], "killing witches that deforme the": [0, 65535], "witches that deforme the bodie": [0, 65535], "that deforme the bodie disguised": [0, 65535], "deforme the bodie disguised cheaters": [0, 65535], "the bodie disguised cheaters prating": [0, 65535], "bodie disguised cheaters prating mountebankes": [0, 65535], "disguised cheaters prating mountebankes and": [0, 65535], "cheaters prating mountebankes and manie": [0, 65535], "prating mountebankes and manie such": [0, 65535], "mountebankes and manie such like": [0, 65535], "and manie such like liberties": [0, 65535], "manie such like liberties of": [0, 65535], "such like liberties of sinne": [0, 65535], "like liberties of sinne if": [0, 65535], "liberties of sinne if it": [0, 65535], "of sinne if it proue": [0, 65535], "sinne if it proue so": [0, 65535], "if it proue so i": [0, 65535], "it proue so i will": [0, 65535], "proue so i will be": [0, 65535], "so i will be gone": [0, 65535], "i will be gone the": [0, 65535], "will be gone the sooner": [0, 65535], "be gone the sooner ile": [0, 65535], "gone the sooner ile to": [0, 65535], "the sooner ile to the": [0, 65535], "sooner ile to the centaur": [0, 65535], "ile to the centaur to": [0, 65535], "to the centaur to goe": [0, 65535], "the centaur to goe seeke": [0, 65535], "centaur to goe seeke this": [0, 65535], "to goe seeke this slaue": [0, 65535], "goe seeke this slaue i": [0, 65535], "seeke this slaue i greatly": [0, 65535], "this slaue i greatly feare": [0, 65535], "slaue i greatly feare my": [0, 65535], "i greatly feare my monie": [0, 65535], "greatly feare my monie is": [0, 65535], "feare my monie is not": [0, 65535], "my monie is not safe": [0, 65535], "the comedie of errors actus primus": [0, 65535], "comedie of errors actus primus scena": [0, 65535], "of errors actus primus scena prima": [0, 65535], "errors actus primus scena prima enter": [0, 65535], "actus primus scena prima enter the": [0, 65535], "primus scena prima enter the duke": [0, 65535], "scena prima enter the duke of": [0, 65535], "prima enter the duke of ephesus": [0, 65535], "enter the duke of ephesus with": [0, 65535], "the duke of ephesus with the": [0, 65535], "duke of ephesus with the merchant": [0, 65535], "of ephesus with the merchant of": [0, 65535], "ephesus with the merchant of siracusa": [0, 65535], "with the merchant of siracusa iaylor": [0, 65535], "the merchant of siracusa iaylor and": [0, 65535], "merchant of siracusa iaylor and other": [0, 65535], "of siracusa iaylor and other attendants": [0, 65535], "siracusa iaylor and other attendants marchant": [0, 65535], "iaylor and other attendants marchant broceed": [0, 65535], "and other attendants marchant broceed solinus": [0, 65535], "other attendants marchant broceed solinus to": [0, 65535], "attendants marchant broceed solinus to procure": [0, 65535], "marchant broceed solinus to procure my": [0, 65535], "broceed solinus to procure my fall": [0, 65535], "solinus to procure my fall and": [0, 65535], "to procure my fall and by": [0, 65535], "procure my fall and by the": [0, 65535], "my fall and by the doome": [0, 65535], "fall and by the doome of": [0, 65535], "and by the doome of death": [0, 65535], "by the doome of death end": [0, 65535], "the doome of death end woes": [0, 65535], "doome of death end woes and": [0, 65535], "of death end woes and all": [0, 65535], "death end woes and all duke": [0, 65535], "end woes and all duke merchant": [0, 65535], "woes and all duke merchant of": [0, 65535], "and all duke merchant of siracusa": [0, 65535], "all duke merchant of siracusa plead": [0, 65535], "duke merchant of siracusa plead no": [0, 65535], "merchant of siracusa plead no more": [0, 65535], "of siracusa plead no more i": [0, 65535], "siracusa plead no more i am": [0, 65535], "plead no more i am not": [0, 65535], "no more i am not partiall": [0, 65535], "more i am not partiall to": [0, 65535], "i am not partiall to infringe": [0, 65535], "am not partiall to infringe our": [0, 65535], "not partiall to infringe our lawes": [0, 65535], "partiall to infringe our lawes the": [0, 65535], "to infringe our lawes the enmity": [0, 65535], "infringe our lawes the enmity and": [0, 65535], "our lawes the enmity and discord": [0, 65535], "lawes the enmity and discord which": [0, 65535], "the enmity and discord which of": [0, 65535], "enmity and discord which of late": [0, 65535], "and discord which of late sprung": [0, 65535], "discord which of late sprung from": [0, 65535], "which of late sprung from the": [0, 65535], "of late sprung from the rancorous": [0, 65535], "late sprung from the rancorous outrage": [0, 65535], "sprung from the rancorous outrage of": [0, 65535], "from the rancorous outrage of your": [0, 65535], "the rancorous outrage of your duke": [0, 65535], "rancorous outrage of your duke to": [0, 65535], "outrage of your duke to merchants": [0, 65535], "of your duke to merchants our": [0, 65535], "your duke to merchants our well": [0, 65535], "duke to merchants our well dealing": [0, 65535], "to merchants our well dealing countrimen": [0, 65535], "merchants our well dealing countrimen who": [0, 65535], "our well dealing countrimen who wanting": [0, 65535], "well dealing countrimen who wanting gilders": [0, 65535], "dealing countrimen who wanting gilders to": [0, 65535], "countrimen who wanting gilders to redeeme": [0, 65535], "who wanting gilders to redeeme their": [0, 65535], "wanting gilders to redeeme their liues": [0, 65535], "gilders to redeeme their liues haue": [0, 65535], "to redeeme their liues haue seal'd": [0, 65535], "redeeme their liues haue seal'd his": [0, 65535], "their liues haue seal'd his rigorous": [0, 65535], "liues haue seal'd his rigorous statutes": [0, 65535], "haue seal'd his rigorous statutes with": [0, 65535], "seal'd his rigorous statutes with their": [0, 65535], "his rigorous statutes with their blouds": [0, 65535], "rigorous statutes with their blouds excludes": [0, 65535], "statutes with their blouds excludes all": [0, 65535], "with their blouds excludes all pitty": [0, 65535], "their blouds excludes all pitty from": [0, 65535], "blouds excludes all pitty from our": [0, 65535], "excludes all pitty from our threatning": [0, 65535], "all pitty from our threatning lookes": [0, 65535], "pitty from our threatning lookes for": [0, 65535], "from our threatning lookes for since": [0, 65535], "our threatning lookes for since the": [0, 65535], "threatning lookes for since the mortall": [0, 65535], "lookes for since the mortall and": [0, 65535], "for since the mortall and intestine": [0, 65535], "since the mortall and intestine iarres": [0, 65535], "the mortall and intestine iarres twixt": [0, 65535], "mortall and intestine iarres twixt thy": [0, 65535], "and intestine iarres twixt thy seditious": [0, 65535], "intestine iarres twixt thy seditious countrimen": [0, 65535], "iarres twixt thy seditious countrimen and": [0, 65535], "twixt thy seditious countrimen and vs": [0, 65535], "thy seditious countrimen and vs it": [0, 65535], "seditious countrimen and vs it hath": [0, 65535], "countrimen and vs it hath in": [0, 65535], "and vs it hath in solemne": [0, 65535], "vs it hath in solemne synodes": [0, 65535], "it hath in solemne synodes beene": [0, 65535], "hath in solemne synodes beene decreed": [0, 65535], "in solemne synodes beene decreed both": [0, 65535], "solemne synodes beene decreed both by": [0, 65535], "synodes beene decreed both by the": [0, 65535], "beene decreed both by the siracusians": [0, 65535], "decreed both by the siracusians and": [0, 65535], "both by the siracusians and our": [0, 65535], "by the siracusians and our selues": [0, 65535], "the siracusians and our selues to": [0, 65535], "siracusians and our selues to admit": [0, 65535], "and our selues to admit no": [0, 65535], "our selues to admit no trafficke": [0, 65535], "selues to admit no trafficke to": [0, 65535], "to admit no trafficke to our": [0, 65535], "admit no trafficke to our aduerse": [0, 65535], "no trafficke to our aduerse townes": [0, 65535], "trafficke to our aduerse townes nay": [0, 65535], "to our aduerse townes nay more": [0, 65535], "our aduerse townes nay more if": [0, 65535], "aduerse townes nay more if any": [0, 65535], "townes nay more if any borne": [0, 65535], "nay more if any borne at": [0, 65535], "more if any borne at ephesus": [0, 65535], "if any borne at ephesus be": [0, 65535], "any borne at ephesus be seene": [0, 65535], "borne at ephesus be seene at": [0, 65535], "at ephesus be seene at any": [0, 65535], "ephesus be seene at any siracusian": [0, 65535], "be seene at any siracusian marts": [0, 65535], "seene at any siracusian marts and": [0, 65535], "at any siracusian marts and fayres": [0, 65535], "any siracusian marts and fayres againe": [0, 65535], "siracusian marts and fayres againe if": [0, 65535], "marts and fayres againe if any": [0, 65535], "and fayres againe if any siracusian": [0, 65535], "fayres againe if any siracusian borne": [0, 65535], "againe if any siracusian borne come": [0, 65535], "if any siracusian borne come to": [0, 65535], "any siracusian borne come to the": [0, 65535], "siracusian borne come to the bay": [0, 65535], "borne come to the bay of": [0, 65535], "come to the bay of ephesus": [0, 65535], "to the bay of ephesus he": [0, 65535], "the bay of ephesus he dies": [0, 65535], "bay of ephesus he dies his": [0, 65535], "of ephesus he dies his goods": [0, 65535], "ephesus he dies his goods confiscate": [0, 65535], "he dies his goods confiscate to": [0, 65535], "dies his goods confiscate to the": [0, 65535], "his goods confiscate to the dukes": [0, 65535], "goods confiscate to the dukes dispose": [0, 65535], "confiscate to the dukes dispose vnlesse": [0, 65535], "to the dukes dispose vnlesse a": [0, 65535], "the dukes dispose vnlesse a thousand": [0, 65535], "dukes dispose vnlesse a thousand markes": [0, 65535], "dispose vnlesse a thousand markes be": [0, 65535], "vnlesse a thousand markes be leuied": [0, 65535], "a thousand markes be leuied to": [0, 65535], "thousand markes be leuied to quit": [0, 65535], "markes be leuied to quit the": [0, 65535], "be leuied to quit the penalty": [0, 65535], "leuied to quit the penalty and": [0, 65535], "to quit the penalty and to": [0, 65535], "quit the penalty and to ransome": [0, 65535], "the penalty and to ransome him": [0, 65535], "penalty and to ransome him thy": [0, 65535], "and to ransome him thy substance": [0, 65535], "to ransome him thy substance valued": [0, 65535], "ransome him thy substance valued at": [0, 65535], "him thy substance valued at the": [0, 65535], "thy substance valued at the highest": [0, 65535], "substance valued at the highest rate": [0, 65535], "valued at the highest rate cannot": [0, 65535], "at the highest rate cannot amount": [0, 65535], "the highest rate cannot amount vnto": [0, 65535], "highest rate cannot amount vnto a": [0, 65535], "rate cannot amount vnto a hundred": [0, 65535], "cannot amount vnto a hundred markes": [0, 65535], "amount vnto a hundred markes therefore": [0, 65535], "vnto a hundred markes therefore by": [0, 65535], "a hundred markes therefore by law": [0, 65535], "hundred markes therefore by law thou": [0, 65535], "markes therefore by law thou art": [0, 65535], "therefore by law thou art condemn'd": [0, 65535], "by law thou art condemn'd to": [0, 65535], "law thou art condemn'd to die": [0, 65535], "thou art condemn'd to die mer": [0, 65535], "art condemn'd to die mer yet": [0, 65535], "condemn'd to die mer yet this": [0, 65535], "to die mer yet this my": [0, 65535], "die mer yet this my comfort": [0, 65535], "mer yet this my comfort when": [0, 65535], "yet this my comfort when your": [0, 65535], "this my comfort when your words": [0, 65535], "my comfort when your words are": [0, 65535], "comfort when your words are done": [0, 65535], "when your words are done my": [0, 65535], "your words are done my woes": [0, 65535], "words are done my woes end": [0, 65535], "are done my woes end likewise": [0, 65535], "done my woes end likewise with": [0, 65535], "my woes end likewise with the": [0, 65535], "woes end likewise with the euening": [0, 65535], "end likewise with the euening sonne": [0, 65535], "likewise with the euening sonne duk": [0, 65535], "with the euening sonne duk well": [0, 65535], "the euening sonne duk well siracusian": [0, 65535], "euening sonne duk well siracusian say": [0, 65535], "sonne duk well siracusian say in": [0, 65535], "duk well siracusian say in briefe": [0, 65535], "well siracusian say in briefe the": [0, 65535], "siracusian say in briefe the cause": [0, 65535], "say in briefe the cause why": [0, 65535], "in briefe the cause why thou": [0, 65535], "briefe the cause why thou departedst": [0, 65535], "the cause why thou departedst from": [0, 65535], "cause why thou departedst from thy": [0, 65535], "why thou departedst from thy natiue": [0, 65535], "thou departedst from thy natiue home": [0, 65535], "departedst from thy natiue home and": [0, 65535], "from thy natiue home and for": [0, 65535], "thy natiue home and for what": [0, 65535], "natiue home and for what cause": [0, 65535], "home and for what cause thou": [0, 65535], "and for what cause thou cam'st": [0, 65535], "for what cause thou cam'st to": [0, 65535], "what cause thou cam'st to ephesus": [0, 65535], "cause thou cam'st to ephesus mer": [0, 65535], "thou cam'st to ephesus mer a": [0, 65535], "cam'st to ephesus mer a heauier": [0, 65535], "to ephesus mer a heauier taske": [0, 65535], "ephesus mer a heauier taske could": [0, 65535], "mer a heauier taske could not": [0, 65535], "a heauier taske could not haue": [0, 65535], "heauier taske could not haue beene": [0, 65535], "taske could not haue beene impos'd": [0, 65535], "could not haue beene impos'd then": [0, 65535], "not haue beene impos'd then i": [0, 65535], "haue beene impos'd then i to": [0, 65535], "beene impos'd then i to speake": [0, 65535], "impos'd then i to speake my": [0, 65535], "then i to speake my griefes": [0, 65535], "i to speake my griefes vnspeakeable": [0, 65535], "to speake my griefes vnspeakeable yet": [0, 65535], "speake my griefes vnspeakeable yet that": [0, 65535], "my griefes vnspeakeable yet that the": [0, 65535], "griefes vnspeakeable yet that the world": [0, 65535], "vnspeakeable yet that the world may": [0, 65535], "yet that the world may witnesse": [0, 65535], "that the world may witnesse that": [0, 65535], "the world may witnesse that my": [0, 65535], "world may witnesse that my end": [0, 65535], "may witnesse that my end was": [0, 65535], "witnesse that my end was wrought": [0, 65535], "that my end was wrought by": [0, 65535], "my end was wrought by nature": [0, 65535], "end was wrought by nature not": [0, 65535], "was wrought by nature not by": [0, 65535], "wrought by nature not by vile": [0, 65535], "by nature not by vile offence": [0, 65535], "nature not by vile offence ile": [0, 65535], "not by vile offence ile vtter": [0, 65535], "by vile offence ile vtter what": [0, 65535], "vile offence ile vtter what my": [0, 65535], "offence ile vtter what my sorrow": [0, 65535], "ile vtter what my sorrow giues": [0, 65535], "vtter what my sorrow giues me": [0, 65535], "what my sorrow giues me leaue": [0, 65535], "my sorrow giues me leaue in": [0, 65535], "sorrow giues me leaue in syracusa": [0, 65535], "giues me leaue in syracusa was": [0, 65535], "me leaue in syracusa was i": [0, 65535], "leaue in syracusa was i borne": [0, 65535], "in syracusa was i borne and": [0, 65535], "syracusa was i borne and wedde": [0, 65535], "was i borne and wedde vnto": [0, 65535], "i borne and wedde vnto a": [0, 65535], "borne and wedde vnto a woman": [0, 65535], "and wedde vnto a woman happy": [0, 65535], "wedde vnto a woman happy but": [0, 65535], "vnto a woman happy but for": [0, 65535], "a woman happy but for me": [0, 65535], "woman happy but for me and": [0, 65535], "happy but for me and by": [0, 65535], "but for me and by me": [0, 65535], "for me and by me had": [0, 65535], "me and by me had not": [0, 65535], "and by me had not our": [0, 65535], "by me had not our hap": [0, 65535], "me had not our hap beene": [0, 65535], "had not our hap beene bad": [0, 65535], "not our hap beene bad with": [0, 65535], "our hap beene bad with her": [0, 65535], "hap beene bad with her i": [0, 65535], "beene bad with her i liu'd": [0, 65535], "bad with her i liu'd in": [0, 65535], "with her i liu'd in ioy": [0, 65535], "her i liu'd in ioy our": [0, 65535], "i liu'd in ioy our wealth": [0, 65535], "liu'd in ioy our wealth increast": [0, 65535], "in ioy our wealth increast by": [0, 65535], "ioy our wealth increast by prosperous": [0, 65535], "our wealth increast by prosperous voyages": [0, 65535], "wealth increast by prosperous voyages i": [0, 65535], "increast by prosperous voyages i often": [0, 65535], "by prosperous voyages i often made": [0, 65535], "prosperous voyages i often made to": [0, 65535], "voyages i often made to epidamium": [0, 65535], "i often made to epidamium till": [0, 65535], "often made to epidamium till my": [0, 65535], "made to epidamium till my factors": [0, 65535], "to epidamium till my factors death": [0, 65535], "epidamium till my factors death and": [0, 65535], "till my factors death and he": [0, 65535], "my factors death and he great": [0, 65535], "factors death and he great care": [0, 65535], "death and he great care of": [0, 65535], "and he great care of goods": [0, 65535], "he great care of goods at": [0, 65535], "great care of goods at randone": [0, 65535], "care of goods at randone left": [0, 65535], "of goods at randone left drew": [0, 65535], "goods at randone left drew me": [0, 65535], "at randone left drew me from": [0, 65535], "randone left drew me from kinde": [0, 65535], "left drew me from kinde embracements": [0, 65535], "drew me from kinde embracements of": [0, 65535], "me from kinde embracements of my": [0, 65535], "from kinde embracements of my spouse": [0, 65535], "kinde embracements of my spouse from": [0, 65535], "embracements of my spouse from whom": [0, 65535], "of my spouse from whom my": [0, 65535], "my spouse from whom my absence": [0, 65535], "spouse from whom my absence was": [0, 65535], "from whom my absence was not": [0, 65535], "whom my absence was not sixe": [0, 65535], "my absence was not sixe moneths": [0, 65535], "absence was not sixe moneths olde": [0, 65535], "was not sixe moneths olde before": [0, 65535], "not sixe moneths olde before her": [0, 65535], "sixe moneths olde before her selfe": [0, 65535], "moneths olde before her selfe almost": [0, 65535], "olde before her selfe almost at": [0, 65535], "before her selfe almost at fainting": [0, 65535], "her selfe almost at fainting vnder": [0, 65535], "selfe almost at fainting vnder the": [0, 65535], "almost at fainting vnder the pleasing": [0, 65535], "at fainting vnder the pleasing punishment": [0, 65535], "fainting vnder the pleasing punishment that": [0, 65535], "vnder the pleasing punishment that women": [0, 65535], "the pleasing punishment that women beare": [0, 65535], "pleasing punishment that women beare had": [0, 65535], "punishment that women beare had made": [0, 65535], "that women beare had made prouision": [0, 65535], "women beare had made prouision for": [0, 65535], "beare had made prouision for her": [0, 65535], "had made prouision for her following": [0, 65535], "made prouision for her following me": [0, 65535], "prouision for her following me and": [0, 65535], "for her following me and soone": [0, 65535], "her following me and soone and": [0, 65535], "following me and soone and safe": [0, 65535], "me and soone and safe arriued": [0, 65535], "and soone and safe arriued where": [0, 65535], "soone and safe arriued where i": [0, 65535], "and safe arriued where i was": [0, 65535], "safe arriued where i was there": [0, 65535], "arriued where i was there had": [0, 65535], "where i was there had she": [0, 65535], "i was there had she not": [0, 65535], "was there had she not beene": [0, 65535], "there had she not beene long": [0, 65535], "had she not beene long but": [0, 65535], "she not beene long but she": [0, 65535], "not beene long but she became": [0, 65535], "beene long but she became a": [0, 65535], "long but she became a ioyfull": [0, 65535], "but she became a ioyfull mother": [0, 65535], "she became a ioyfull mother of": [0, 65535], "became a ioyfull mother of two": [0, 65535], "a ioyfull mother of two goodly": [0, 65535], "ioyfull mother of two goodly sonnes": [0, 65535], "mother of two goodly sonnes and": [0, 65535], "of two goodly sonnes and which": [0, 65535], "two goodly sonnes and which was": [0, 65535], "goodly sonnes and which was strange": [0, 65535], "sonnes and which was strange the": [0, 65535], "and which was strange the one": [0, 65535], "which was strange the one so": [0, 65535], "was strange the one so like": [0, 65535], "strange the one so like the": [0, 65535], "the one so like the other": [0, 65535], "one so like the other as": [0, 65535], "so like the other as could": [0, 65535], "like the other as could not": [0, 65535], "the other as could not be": [0, 65535], "other as could not be distinguish'd": [0, 65535], "as could not be distinguish'd but": [0, 65535], "could not be distinguish'd but by": [0, 65535], "not be distinguish'd but by names": [0, 65535], "be distinguish'd but by names that": [0, 65535], "distinguish'd but by names that very": [0, 65535], "but by names that very howre": [0, 65535], "by names that very howre and": [0, 65535], "names that very howre and in": [0, 65535], "that very howre and in the": [0, 65535], "very howre and in the selfe": [0, 65535], "howre and in the selfe same": [0, 65535], "and in the selfe same inne": [0, 65535], "in the selfe same inne a": [0, 65535], "the selfe same inne a meane": [0, 65535], "selfe same inne a meane woman": [0, 65535], "same inne a meane woman was": [0, 65535], "inne a meane woman was deliuered": [0, 65535], "a meane woman was deliuered of": [0, 65535], "meane woman was deliuered of such": [0, 65535], "woman was deliuered of such a": [0, 65535], "was deliuered of such a burthen": [0, 65535], "deliuered of such a burthen male": [0, 65535], "of such a burthen male twins": [0, 65535], "such a burthen male twins both": [0, 65535], "a burthen male twins both alike": [0, 65535], "burthen male twins both alike those": [0, 65535], "male twins both alike those for": [0, 65535], "twins both alike those for their": [0, 65535], "both alike those for their parents": [0, 65535], "alike those for their parents were": [0, 65535], "those for their parents were exceeding": [0, 65535], "for their parents were exceeding poore": [0, 65535], "their parents were exceeding poore i": [0, 65535], "parents were exceeding poore i bought": [0, 65535], "were exceeding poore i bought and": [0, 65535], "exceeding poore i bought and brought": [0, 65535], "poore i bought and brought vp": [0, 65535], "i bought and brought vp to": [0, 65535], "bought and brought vp to attend": [0, 65535], "and brought vp to attend my": [0, 65535], "brought vp to attend my sonnes": [0, 65535], "vp to attend my sonnes my": [0, 65535], "to attend my sonnes my wife": [0, 65535], "attend my sonnes my wife not": [0, 65535], "my sonnes my wife not meanely": [0, 65535], "sonnes my wife not meanely prowd": [0, 65535], "my wife not meanely prowd of": [0, 65535], "wife not meanely prowd of two": [0, 65535], "not meanely prowd of two such": [0, 65535], "meanely prowd of two such boyes": [0, 65535], "prowd of two such boyes made": [0, 65535], "of two such boyes made daily": [0, 65535], "two such boyes made daily motions": [0, 65535], "such boyes made daily motions for": [0, 65535], "boyes made daily motions for our": [0, 65535], "made daily motions for our home": [0, 65535], "daily motions for our home returne": [0, 65535], "motions for our home returne vnwilling": [0, 65535], "for our home returne vnwilling i": [0, 65535], "our home returne vnwilling i agreed": [0, 65535], "home returne vnwilling i agreed alas": [0, 65535], "returne vnwilling i agreed alas too": [0, 65535], "vnwilling i agreed alas too soone": [0, 65535], "i agreed alas too soone wee": [0, 65535], "agreed alas too soone wee came": [0, 65535], "alas too soone wee came aboord": [0, 65535], "too soone wee came aboord a": [0, 65535], "soone wee came aboord a league": [0, 65535], "wee came aboord a league from": [0, 65535], "came aboord a league from epidamium": [0, 65535], "aboord a league from epidamium had": [0, 65535], "a league from epidamium had we": [0, 65535], "league from epidamium had we saild": [0, 65535], "from epidamium had we saild before": [0, 65535], "epidamium had we saild before the": [0, 65535], "had we saild before the alwaies": [0, 65535], "we saild before the alwaies winde": [0, 65535], "saild before the alwaies winde obeying": [0, 65535], "before the alwaies winde obeying deepe": [0, 65535], "the alwaies winde obeying deepe gaue": [0, 65535], "alwaies winde obeying deepe gaue any": [0, 65535], "winde obeying deepe gaue any tragicke": [0, 65535], "obeying deepe gaue any tragicke instance": [0, 65535], "deepe gaue any tragicke instance of": [0, 65535], "gaue any tragicke instance of our": [0, 65535], "any tragicke instance of our harme": [0, 65535], "tragicke instance of our harme but": [0, 65535], "instance of our harme but longer": [0, 65535], "of our harme but longer did": [0, 65535], "our harme but longer did we": [0, 65535], "harme but longer did we not": [0, 65535], "but longer did we not retaine": [0, 65535], "longer did we not retaine much": [0, 65535], "did we not retaine much hope": [0, 65535], "we not retaine much hope for": [0, 65535], "not retaine much hope for what": [0, 65535], "retaine much hope for what obscured": [0, 65535], "much hope for what obscured light": [0, 65535], "hope for what obscured light the": [0, 65535], "for what obscured light the heauens": [0, 65535], "what obscured light the heauens did": [0, 65535], "obscured light the heauens did grant": [0, 65535], "light the heauens did grant did": [0, 65535], "the heauens did grant did but": [0, 65535], "heauens did grant did but conuay": [0, 65535], "did grant did but conuay vnto": [0, 65535], "grant did but conuay vnto our": [0, 65535], "did but conuay vnto our fearefull": [0, 65535], "but conuay vnto our fearefull mindes": [0, 65535], "conuay vnto our fearefull mindes a": [0, 65535], "vnto our fearefull mindes a doubtfull": [0, 65535], "our fearefull mindes a doubtfull warrant": [0, 65535], "fearefull mindes a doubtfull warrant of": [0, 65535], "mindes a doubtfull warrant of immediate": [0, 65535], "a doubtfull warrant of immediate death": [0, 65535], "doubtfull warrant of immediate death which": [0, 65535], "warrant of immediate death which though": [0, 65535], "of immediate death which though my": [0, 65535], "immediate death which though my selfe": [0, 65535], "death which though my selfe would": [0, 65535], "which though my selfe would gladly": [0, 65535], "though my selfe would gladly haue": [0, 65535], "my selfe would gladly haue imbrac'd": [0, 65535], "selfe would gladly haue imbrac'd yet": [0, 65535], "would gladly haue imbrac'd yet the": [0, 65535], "gladly haue imbrac'd yet the incessant": [0, 65535], "haue imbrac'd yet the incessant weepings": [0, 65535], "imbrac'd yet the incessant weepings of": [0, 65535], "yet the incessant weepings of my": [0, 65535], "the incessant weepings of my wife": [0, 65535], "incessant weepings of my wife weeping": [0, 65535], "weepings of my wife weeping before": [0, 65535], "of my wife weeping before for": [0, 65535], "my wife weeping before for what": [0, 65535], "wife weeping before for what she": [0, 65535], "weeping before for what she saw": [0, 65535], "before for what she saw must": [0, 65535], "for what she saw must come": [0, 65535], "what she saw must come and": [0, 65535], "she saw must come and pitteous": [0, 65535], "saw must come and pitteous playnings": [0, 65535], "must come and pitteous playnings of": [0, 65535], "come and pitteous playnings of the": [0, 65535], "and pitteous playnings of the prettie": [0, 65535], "pitteous playnings of the prettie babes": [0, 65535], "playnings of the prettie babes that": [0, 65535], "of the prettie babes that mourn'd": [0, 65535], "the prettie babes that mourn'd for": [0, 65535], "prettie babes that mourn'd for fashion": [0, 65535], "babes that mourn'd for fashion ignorant": [0, 65535], "that mourn'd for fashion ignorant what": [0, 65535], "mourn'd for fashion ignorant what to": [0, 65535], "for fashion ignorant what to feare": [0, 65535], "fashion ignorant what to feare forst": [0, 65535], "ignorant what to feare forst me": [0, 65535], "what to feare forst me to": [0, 65535], "to feare forst me to seeke": [0, 65535], "feare forst me to seeke delayes": [0, 65535], "forst me to seeke delayes for": [0, 65535], "me to seeke delayes for them": [0, 65535], "to seeke delayes for them and": [0, 65535], "seeke delayes for them and me": [0, 65535], "delayes for them and me and": [0, 65535], "for them and me and this": [0, 65535], "them and me and this it": [0, 65535], "and me and this it was": [0, 65535], "me and this it was for": [0, 65535], "and this it was for other": [0, 65535], "this it was for other meanes": [0, 65535], "it was for other meanes was": [0, 65535], "was for other meanes was none": [0, 65535], "for other meanes was none the": [0, 65535], "other meanes was none the sailors": [0, 65535], "meanes was none the sailors sought": [0, 65535], "was none the sailors sought for": [0, 65535], "none the sailors sought for safety": [0, 65535], "the sailors sought for safety by": [0, 65535], "sailors sought for safety by our": [0, 65535], "sought for safety by our boate": [0, 65535], "for safety by our boate and": [0, 65535], "safety by our boate and left": [0, 65535], "by our boate and left the": [0, 65535], "our boate and left the ship": [0, 65535], "boate and left the ship then": [0, 65535], "and left the ship then sinking": [0, 65535], "left the ship then sinking ripe": [0, 65535], "the ship then sinking ripe to": [0, 65535], "ship then sinking ripe to vs": [0, 65535], "then sinking ripe to vs my": [0, 65535], "sinking ripe to vs my wife": [0, 65535], "ripe to vs my wife more": [0, 65535], "to vs my wife more carefull": [0, 65535], "vs my wife more carefull for": [0, 65535], "my wife more carefull for the": [0, 65535], "wife more carefull for the latter": [0, 65535], "more carefull for the latter borne": [0, 65535], "carefull for the latter borne had": [0, 65535], "for the latter borne had fastned": [0, 65535], "the latter borne had fastned him": [0, 65535], "latter borne had fastned him vnto": [0, 65535], "borne had fastned him vnto a": [0, 65535], "had fastned him vnto a small": [0, 65535], "fastned him vnto a small spare": [0, 65535], "him vnto a small spare mast": [0, 65535], "vnto a small spare mast such": [0, 65535], "a small spare mast such as": [0, 65535], "small spare mast such as sea": [0, 65535], "spare mast such as sea faring": [0, 65535], "mast such as sea faring men": [0, 65535], "such as sea faring men prouide": [0, 65535], "as sea faring men prouide for": [0, 65535], "sea faring men prouide for stormes": [0, 65535], "faring men prouide for stormes to": [0, 65535], "men prouide for stormes to him": [0, 65535], "prouide for stormes to him one": [0, 65535], "for stormes to him one of": [0, 65535], "stormes to him one of the": [0, 65535], "to him one of the other": [0, 65535], "him one of the other twins": [0, 65535], "one of the other twins was": [0, 65535], "of the other twins was bound": [0, 65535], "the other twins was bound whil'st": [0, 65535], "other twins was bound whil'st i": [0, 65535], "twins was bound whil'st i had": [0, 65535], "was bound whil'st i had beene": [0, 65535], "bound whil'st i had beene like": [0, 65535], "whil'st i had beene like heedfull": [0, 65535], "i had beene like heedfull of": [0, 65535], "had beene like heedfull of the": [0, 65535], "beene like heedfull of the other": [0, 65535], "like heedfull of the other the": [0, 65535], "heedfull of the other the children": [0, 65535], "of the other the children thus": [0, 65535], "the other the children thus dispos'd": [0, 65535], "other the children thus dispos'd my": [0, 65535], "the children thus dispos'd my wife": [0, 65535], "children thus dispos'd my wife and": [0, 65535], "thus dispos'd my wife and i": [0, 65535], "dispos'd my wife and i fixing": [0, 65535], "my wife and i fixing our": [0, 65535], "wife and i fixing our eyes": [0, 65535], "and i fixing our eyes on": [0, 65535], "i fixing our eyes on whom": [0, 65535], "fixing our eyes on whom our": [0, 65535], "our eyes on whom our care": [0, 65535], "eyes on whom our care was": [0, 65535], "on whom our care was fixt": [0, 65535], "whom our care was fixt fastned": [0, 65535], "our care was fixt fastned our": [0, 65535], "care was fixt fastned our selues": [0, 65535], "was fixt fastned our selues at": [0, 65535], "fixt fastned our selues at eyther": [0, 65535], "fastned our selues at eyther end": [0, 65535], "our selues at eyther end the": [0, 65535], "selues at eyther end the mast": [0, 65535], "at eyther end the mast and": [0, 65535], "eyther end the mast and floating": [0, 65535], "end the mast and floating straight": [0, 65535], "the mast and floating straight obedient": [0, 65535], "mast and floating straight obedient to": [0, 65535], "and floating straight obedient to the": [0, 65535], "floating straight obedient to the streame": [0, 65535], "straight obedient to the streame was": [0, 65535], "obedient to the streame was carried": [0, 65535], "to the streame was carried towards": [0, 65535], "the streame was carried towards corinth": [0, 65535], "streame was carried towards corinth as": [0, 65535], "was carried towards corinth as we": [0, 65535], "carried towards corinth as we thought": [0, 65535], "towards corinth as we thought at": [0, 65535], "corinth as we thought at length": [0, 65535], "as we thought at length the": [0, 65535], "we thought at length the sonne": [0, 65535], "thought at length the sonne gazing": [0, 65535], "at length the sonne gazing vpon": [0, 65535], "length the sonne gazing vpon the": [0, 65535], "the sonne gazing vpon the earth": [0, 65535], "sonne gazing vpon the earth disperst": [0, 65535], "gazing vpon the earth disperst those": [0, 65535], "vpon the earth disperst those vapours": [0, 65535], "the earth disperst those vapours that": [0, 65535], "earth disperst those vapours that offended": [0, 65535], "disperst those vapours that offended vs": [0, 65535], "those vapours that offended vs and": [0, 65535], "vapours that offended vs and by": [0, 65535], "that offended vs and by the": [0, 65535], "offended vs and by the benefit": [0, 65535], "vs and by the benefit of": [0, 65535], "and by the benefit of his": [0, 65535], "by the benefit of his wished": [0, 65535], "the benefit of his wished light": [0, 65535], "benefit of his wished light the": [0, 65535], "of his wished light the seas": [0, 65535], "his wished light the seas waxt": [0, 65535], "wished light the seas waxt calme": [0, 65535], "light the seas waxt calme and": [0, 65535], "the seas waxt calme and we": [0, 65535], "seas waxt calme and we discouered": [0, 65535], "waxt calme and we discouered two": [0, 65535], "calme and we discouered two shippes": [0, 65535], "and we discouered two shippes from": [0, 65535], "we discouered two shippes from farre": [0, 65535], "discouered two shippes from farre making": [0, 65535], "two shippes from farre making amaine": [0, 65535], "shippes from farre making amaine to": [0, 65535], "from farre making amaine to vs": [0, 65535], "farre making amaine to vs of": [0, 65535], "making amaine to vs of corinth": [0, 65535], "amaine to vs of corinth that": [0, 65535], "to vs of corinth that of": [0, 65535], "vs of corinth that of epidarus": [0, 65535], "of corinth that of epidarus this": [0, 65535], "corinth that of epidarus this but": [0, 65535], "that of epidarus this but ere": [0, 65535], "of epidarus this but ere they": [0, 65535], "epidarus this but ere they came": [0, 65535], "this but ere they came oh": [0, 65535], "but ere they came oh let": [0, 65535], "ere they came oh let me": [0, 65535], "they came oh let me say": [0, 65535], "came oh let me say no": [0, 65535], "oh let me say no more": [0, 65535], "let me say no more gather": [0, 65535], "me say no more gather the": [0, 65535], "say no more gather the sequell": [0, 65535], "no more gather the sequell by": [0, 65535], "more gather the sequell by that": [0, 65535], "gather the sequell by that went": [0, 65535], "the sequell by that went before": [0, 65535], "sequell by that went before duk": [0, 65535], "by that went before duk nay": [0, 65535], "that went before duk nay forward": [0, 65535], "went before duk nay forward old": [0, 65535], "before duk nay forward old man": [0, 65535], "duk nay forward old man doe": [0, 65535], "nay forward old man doe not": [0, 65535], "forward old man doe not breake": [0, 65535], "old man doe not breake off": [0, 65535], "man doe not breake off so": [0, 65535], "doe not breake off so for": [0, 65535], "not breake off so for we": [0, 65535], "breake off so for we may": [0, 65535], "off so for we may pitty": [0, 65535], "so for we may pitty though": [0, 65535], "for we may pitty though not": [0, 65535], "we may pitty though not pardon": [0, 65535], "may pitty though not pardon thee": [0, 65535], "pitty though not pardon thee merch": [0, 65535], "though not pardon thee merch oh": [0, 65535], "not pardon thee merch oh had": [0, 65535], "pardon thee merch oh had the": [0, 65535], "thee merch oh had the gods": [0, 65535], "merch oh had the gods done": [0, 65535], "oh had the gods done so": [0, 65535], "had the gods done so i": [0, 65535], "the gods done so i had": [0, 65535], "gods done so i had not": [0, 65535], "done so i had not now": [0, 65535], "so i had not now worthily": [0, 65535], "i had not now worthily tearm'd": [0, 65535], "had not now worthily tearm'd them": [0, 65535], "not now worthily tearm'd them mercilesse": [0, 65535], "now worthily tearm'd them mercilesse to": [0, 65535], "worthily tearm'd them mercilesse to vs": [0, 65535], "tearm'd them mercilesse to vs for": [0, 65535], "them mercilesse to vs for ere": [0, 65535], "mercilesse to vs for ere the": [0, 65535], "to vs for ere the ships": [0, 65535], "vs for ere the ships could": [0, 65535], "for ere the ships could meet": [0, 65535], "ere the ships could meet by": [0, 65535], "the ships could meet by twice": [0, 65535], "ships could meet by twice fiue": [0, 65535], "could meet by twice fiue leagues": [0, 65535], "meet by twice fiue leagues we": [0, 65535], "by twice fiue leagues we were": [0, 65535], "twice fiue leagues we were encountred": [0, 65535], "fiue leagues we were encountred by": [0, 65535], "leagues we were encountred by a": [0, 65535], "we were encountred by a mighty": [0, 65535], "were encountred by a mighty rocke": [0, 65535], "encountred by a mighty rocke which": [0, 65535], "by a mighty rocke which being": [0, 65535], "a mighty rocke which being violently": [0, 65535], "mighty rocke which being violently borne": [0, 65535], "rocke which being violently borne vp": [0, 65535], "which being violently borne vp our": [0, 65535], "being violently borne vp our helpefull": [0, 65535], "violently borne vp our helpefull ship": [0, 65535], "borne vp our helpefull ship was": [0, 65535], "vp our helpefull ship was splitted": [0, 65535], "our helpefull ship was splitted in": [0, 65535], "helpefull ship was splitted in the": [0, 65535], "ship was splitted in the midst": [0, 65535], "was splitted in the midst so": [0, 65535], "splitted in the midst so that": [0, 65535], "in the midst so that in": [0, 65535], "the midst so that in this": [0, 65535], "midst so that in this vniust": [0, 65535], "so that in this vniust diuorce": [0, 65535], "that in this vniust diuorce of": [0, 65535], "in this vniust diuorce of vs": [0, 65535], "this vniust diuorce of vs fortune": [0, 65535], "vniust diuorce of vs fortune had": [0, 65535], "diuorce of vs fortune had left": [0, 65535], "of vs fortune had left to": [0, 65535], "vs fortune had left to both": [0, 65535], "fortune had left to both of": [0, 65535], "had left to both of vs": [0, 65535], "left to both of vs alike": [0, 65535], "to both of vs alike what": [0, 65535], "both of vs alike what to": [0, 65535], "of vs alike what to delight": [0, 65535], "vs alike what to delight in": [0, 65535], "alike what to delight in what": [0, 65535], "what to delight in what to": [0, 65535], "to delight in what to sorrow": [0, 65535], "delight in what to sorrow for": [0, 65535], "in what to sorrow for her": [0, 65535], "what to sorrow for her part": [0, 65535], "to sorrow for her part poore": [0, 65535], "sorrow for her part poore soule": [0, 65535], "for her part poore soule seeming": [0, 65535], "her part poore soule seeming as": [0, 65535], "part poore soule seeming as burdened": [0, 65535], "poore soule seeming as burdened with": [0, 65535], "soule seeming as burdened with lesser": [0, 65535], "seeming as burdened with lesser waight": [0, 65535], "as burdened with lesser waight but": [0, 65535], "burdened with lesser waight but not": [0, 65535], "with lesser waight but not with": [0, 65535], "lesser waight but not with lesser": [0, 65535], "waight but not with lesser woe": [0, 65535], "but not with lesser woe was": [0, 65535], "not with lesser woe was carried": [0, 65535], "with lesser woe was carried with": [0, 65535], "lesser woe was carried with more": [0, 65535], "woe was carried with more speed": [0, 65535], "was carried with more speed before": [0, 65535], "carried with more speed before the": [0, 65535], "with more speed before the winde": [0, 65535], "more speed before the winde and": [0, 65535], "speed before the winde and in": [0, 65535], "before the winde and in our": [0, 65535], "the winde and in our sight": [0, 65535], "winde and in our sight they": [0, 65535], "and in our sight they three": [0, 65535], "in our sight they three were": [0, 65535], "our sight they three were taken": [0, 65535], "sight they three were taken vp": [0, 65535], "they three were taken vp by": [0, 65535], "three were taken vp by fishermen": [0, 65535], "were taken vp by fishermen of": [0, 65535], "taken vp by fishermen of corinth": [0, 65535], "vp by fishermen of corinth as": [0, 65535], "by fishermen of corinth as we": [0, 65535], "fishermen of corinth as we thought": [0, 65535], "of corinth as we thought at": [0, 65535], "as we thought at length another": [0, 65535], "we thought at length another ship": [0, 65535], "thought at length another ship had": [0, 65535], "at length another ship had seiz'd": [0, 65535], "length another ship had seiz'd on": [0, 65535], "another ship had seiz'd on vs": [0, 65535], "ship had seiz'd on vs and": [0, 65535], "had seiz'd on vs and knowing": [0, 65535], "seiz'd on vs and knowing whom": [0, 65535], "on vs and knowing whom it": [0, 65535], "vs and knowing whom it was": [0, 65535], "and knowing whom it was their": [0, 65535], "knowing whom it was their hap": [0, 65535], "whom it was their hap to": [0, 65535], "it was their hap to saue": [0, 65535], "was their hap to saue gaue": [0, 65535], "their hap to saue gaue healthfull": [0, 65535], "hap to saue gaue healthfull welcome": [0, 65535], "to saue gaue healthfull welcome to": [0, 65535], "saue gaue healthfull welcome to their": [0, 65535], "gaue healthfull welcome to their ship": [0, 65535], "healthfull welcome to their ship wrackt": [0, 65535], "welcome to their ship wrackt guests": [0, 65535], "to their ship wrackt guests and": [0, 65535], "their ship wrackt guests and would": [0, 65535], "ship wrackt guests and would haue": [0, 65535], "wrackt guests and would haue reft": [0, 65535], "guests and would haue reft the": [0, 65535], "and would haue reft the fishers": [0, 65535], "would haue reft the fishers of": [0, 65535], "haue reft the fishers of their": [0, 65535], "reft the fishers of their prey": [0, 65535], "the fishers of their prey had": [0, 65535], "fishers of their prey had not": [0, 65535], "of their prey had not their": [0, 65535], "their prey had not their backe": [0, 65535], "prey had not their backe beene": [0, 65535], "had not their backe beene very": [0, 65535], "not their backe beene very slow": [0, 65535], "their backe beene very slow of": [0, 65535], "backe beene very slow of saile": [0, 65535], "beene very slow of saile and": [0, 65535], "very slow of saile and therefore": [0, 65535], "slow of saile and therefore homeward": [0, 65535], "of saile and therefore homeward did": [0, 65535], "saile and therefore homeward did they": [0, 65535], "and therefore homeward did they bend": [0, 65535], "therefore homeward did they bend their": [0, 65535], "homeward did they bend their course": [0, 65535], "did they bend their course thus": [0, 65535], "they bend their course thus haue": [0, 65535], "bend their course thus haue you": [0, 65535], "their course thus haue you heard": [0, 65535], "course thus haue you heard me": [0, 65535], "thus haue you heard me seuer'd": [0, 65535], "haue you heard me seuer'd from": [0, 65535], "you heard me seuer'd from my": [0, 65535], "heard me seuer'd from my blisse": [0, 65535], "me seuer'd from my blisse that": [0, 65535], "seuer'd from my blisse that by": [0, 65535], "from my blisse that by misfortunes": [0, 65535], "my blisse that by misfortunes was": [0, 65535], "blisse that by misfortunes was my": [0, 65535], "that by misfortunes was my life": [0, 65535], "by misfortunes was my life prolong'd": [0, 65535], "misfortunes was my life prolong'd to": [0, 65535], "was my life prolong'd to tell": [0, 65535], "my life prolong'd to tell sad": [0, 65535], "life prolong'd to tell sad stories": [0, 65535], "prolong'd to tell sad stories of": [0, 65535], "to tell sad stories of my": [0, 65535], "tell sad stories of my owne": [0, 65535], "sad stories of my owne mishaps": [0, 65535], "stories of my owne mishaps duke": [0, 65535], "of my owne mishaps duke and": [0, 65535], "my owne mishaps duke and for": [0, 65535], "owne mishaps duke and for the": [0, 65535], "mishaps duke and for the sake": [0, 65535], "duke and for the sake of": [0, 65535], "and for the sake of them": [0, 65535], "for the sake of them thou": [0, 65535], "the sake of them thou sorrowest": [0, 65535], "sake of them thou sorrowest for": [0, 65535], "of them thou sorrowest for doe": [0, 65535], "them thou sorrowest for doe me": [0, 65535], "thou sorrowest for doe me the": [0, 65535], "sorrowest for doe me the fauour": [0, 65535], "for doe me the fauour to": [0, 65535], "doe me the fauour to dilate": [0, 65535], "me the fauour to dilate at": [0, 65535], "the fauour to dilate at full": [0, 65535], "fauour to dilate at full what": [0, 65535], "to dilate at full what haue": [0, 65535], "dilate at full what haue befalne": [0, 65535], "at full what haue befalne of": [0, 65535], "full what haue befalne of them": [0, 65535], "what haue befalne of them and": [0, 65535], "haue befalne of them and they": [0, 65535], "befalne of them and they till": [0, 65535], "of them and they till now": [0, 65535], "them and they till now merch": [0, 65535], "and they till now merch my": [0, 65535], "they till now merch my yongest": [0, 65535], "till now merch my yongest boy": [0, 65535], "now merch my yongest boy and": [0, 65535], "merch my yongest boy and yet": [0, 65535], "my yongest boy and yet my": [0, 65535], "yongest boy and yet my eldest": [0, 65535], "boy and yet my eldest care": [0, 65535], "and yet my eldest care at": [0, 65535], "yet my eldest care at eighteene": [0, 65535], "my eldest care at eighteene yeeres": [0, 65535], "eldest care at eighteene yeeres became": [0, 65535], "care at eighteene yeeres became inquisitiue": [0, 65535], "at eighteene yeeres became inquisitiue after": [0, 65535], "eighteene yeeres became inquisitiue after his": [0, 65535], "yeeres became inquisitiue after his brother": [0, 65535], "became inquisitiue after his brother and": [0, 65535], "inquisitiue after his brother and importun'd": [0, 65535], "after his brother and importun'd me": [0, 65535], "his brother and importun'd me that": [0, 65535], "brother and importun'd me that his": [0, 65535], "and importun'd me that his attendant": [0, 65535], "importun'd me that his attendant so": [0, 65535], "me that his attendant so his": [0, 65535], "that his attendant so his case": [0, 65535], "his attendant so his case was": [0, 65535], "attendant so his case was like": [0, 65535], "so his case was like reft": [0, 65535], "his case was like reft of": [0, 65535], "case was like reft of his": [0, 65535], "was like reft of his brother": [0, 65535], "like reft of his brother but": [0, 65535], "reft of his brother but retain'd": [0, 65535], "of his brother but retain'd his": [0, 65535], "his brother but retain'd his name": [0, 65535], "brother but retain'd his name might": [0, 65535], "but retain'd his name might beare": [0, 65535], "retain'd his name might beare him": [0, 65535], "his name might beare him company": [0, 65535], "name might beare him company in": [0, 65535], "might beare him company in the": [0, 65535], "beare him company in the quest": [0, 65535], "him company in the quest of": [0, 65535], "company in the quest of him": [0, 65535], "in the quest of him whom": [0, 65535], "the quest of him whom whil'st": [0, 65535], "quest of him whom whil'st i": [0, 65535], "of him whom whil'st i laboured": [0, 65535], "him whom whil'st i laboured of": [0, 65535], "whom whil'st i laboured of a": [0, 65535], "whil'st i laboured of a loue": [0, 65535], "i laboured of a loue to": [0, 65535], "laboured of a loue to see": [0, 65535], "of a loue to see i": [0, 65535], "a loue to see i hazarded": [0, 65535], "loue to see i hazarded the": [0, 65535], "to see i hazarded the losse": [0, 65535], "see i hazarded the losse of": [0, 65535], "i hazarded the losse of whom": [0, 65535], "hazarded the losse of whom i": [0, 65535], "the losse of whom i lou'd": [0, 65535], "losse of whom i lou'd fiue": [0, 65535], "of whom i lou'd fiue sommers": [0, 65535], "whom i lou'd fiue sommers haue": [0, 65535], "i lou'd fiue sommers haue i": [0, 65535], "lou'd fiue sommers haue i spent": [0, 65535], "fiue sommers haue i spent in": [0, 65535], "sommers haue i spent in farthest": [0, 65535], "haue i spent in farthest greece": [0, 65535], "i spent in farthest greece roming": [0, 65535], "spent in farthest greece roming cleane": [0, 65535], "in farthest greece roming cleane through": [0, 65535], "farthest greece roming cleane through the": [0, 65535], "greece roming cleane through the bounds": [0, 65535], "roming cleane through the bounds of": [0, 65535], "cleane through the bounds of asia": [0, 65535], "through the bounds of asia and": [0, 65535], "the bounds of asia and coasting": [0, 65535], "bounds of asia and coasting homeward": [0, 65535], "of asia and coasting homeward came": [0, 65535], "asia and coasting homeward came to": [0, 65535], "and coasting homeward came to ephesus": [0, 65535], "coasting homeward came to ephesus hopelesse": [0, 65535], "homeward came to ephesus hopelesse to": [0, 65535], "came to ephesus hopelesse to finde": [0, 65535], "to ephesus hopelesse to finde yet": [0, 65535], "ephesus hopelesse to finde yet loth": [0, 65535], "hopelesse to finde yet loth to": [0, 65535], "to finde yet loth to leaue": [0, 65535], "finde yet loth to leaue vnsought": [0, 65535], "yet loth to leaue vnsought or": [0, 65535], "loth to leaue vnsought or that": [0, 65535], "to leaue vnsought or that or": [0, 65535], "leaue vnsought or that or any": [0, 65535], "vnsought or that or any place": [0, 65535], "or that or any place that": [0, 65535], "that or any place that harbours": [0, 65535], "or any place that harbours men": [0, 65535], "any place that harbours men but": [0, 65535], "place that harbours men but heere": [0, 65535], "that harbours men but heere must": [0, 65535], "harbours men but heere must end": [0, 65535], "men but heere must end the": [0, 65535], "but heere must end the story": [0, 65535], "heere must end the story of": [0, 65535], "must end the story of my": [0, 65535], "end the story of my life": [0, 65535], "the story of my life and": [0, 65535], "story of my life and happy": [0, 65535], "of my life and happy were": [0, 65535], "my life and happy were i": [0, 65535], "life and happy were i in": [0, 65535], "and happy were i in my": [0, 65535], "happy were i in my timelie": [0, 65535], "were i in my timelie death": [0, 65535], "i in my timelie death could": [0, 65535], "in my timelie death could all": [0, 65535], "my timelie death could all my": [0, 65535], "timelie death could all my trauells": [0, 65535], "death could all my trauells warrant": [0, 65535], "could all my trauells warrant me": [0, 65535], "all my trauells warrant me they": [0, 65535], "my trauells warrant me they liue": [0, 65535], "trauells warrant me they liue duke": [0, 65535], "warrant me they liue duke haplesse": [0, 65535], "me they liue duke haplesse egeon": [0, 65535], "they liue duke haplesse egeon whom": [0, 65535], "liue duke haplesse egeon whom the": [0, 65535], "duke haplesse egeon whom the fates": [0, 65535], "haplesse egeon whom the fates haue": [0, 65535], "egeon whom the fates haue markt": [0, 65535], "whom the fates haue markt to": [0, 65535], "the fates haue markt to beare": [0, 65535], "fates haue markt to beare the": [0, 65535], "haue markt to beare the extremitie": [0, 65535], "markt to beare the extremitie of": [0, 65535], "to beare the extremitie of dire": [0, 65535], "beare the extremitie of dire mishap": [0, 65535], "the extremitie of dire mishap now": [0, 65535], "extremitie of dire mishap now trust": [0, 65535], "of dire mishap now trust me": [0, 65535], "dire mishap now trust me were": [0, 65535], "mishap now trust me were it": [0, 65535], "now trust me were it not": [0, 65535], "trust me were it not against": [0, 65535], "me were it not against our": [0, 65535], "were it not against our lawes": [0, 65535], "it not against our lawes against": [0, 65535], "not against our lawes against my": [0, 65535], "against our lawes against my crowne": [0, 65535], "our lawes against my crowne my": [0, 65535], "lawes against my crowne my oath": [0, 65535], "against my crowne my oath my": [0, 65535], "my crowne my oath my dignity": [0, 65535], "crowne my oath my dignity which": [0, 65535], "my oath my dignity which princes": [0, 65535], "oath my dignity which princes would": [0, 65535], "my dignity which princes would they": [0, 65535], "dignity which princes would they may": [0, 65535], "which princes would they may not": [0, 65535], "princes would they may not disanull": [0, 65535], "would they may not disanull my": [0, 65535], "they may not disanull my soule": [0, 65535], "may not disanull my soule should": [0, 65535], "not disanull my soule should sue": [0, 65535], "disanull my soule should sue as": [0, 65535], "my soule should sue as aduocate": [0, 65535], "soule should sue as aduocate for": [0, 65535], "should sue as aduocate for thee": [0, 65535], "sue as aduocate for thee but": [0, 65535], "as aduocate for thee but though": [0, 65535], "aduocate for thee but though thou": [0, 65535], "for thee but though thou art": [0, 65535], "thee but though thou art adiudged": [0, 65535], "but though thou art adiudged to": [0, 65535], "though thou art adiudged to the": [0, 65535], "thou art adiudged to the death": [0, 65535], "art adiudged to the death and": [0, 65535], "adiudged to the death and passed": [0, 65535], "to the death and passed sentence": [0, 65535], "the death and passed sentence may": [0, 65535], "death and passed sentence may not": [0, 65535], "and passed sentence may not be": [0, 65535], "passed sentence may not be recal'd": [0, 65535], "sentence may not be recal'd but": [0, 65535], "may not be recal'd but to": [0, 65535], "not be recal'd but to our": [0, 65535], "be recal'd but to our honours": [0, 65535], "recal'd but to our honours great": [0, 65535], "but to our honours great disparagement": [0, 65535], "to our honours great disparagement yet": [0, 65535], "our honours great disparagement yet will": [0, 65535], "honours great disparagement yet will i": [0, 65535], "great disparagement yet will i fauour": [0, 65535], "disparagement yet will i fauour thee": [0, 65535], "yet will i fauour thee in": [0, 65535], "will i fauour thee in what": [0, 65535], "i fauour thee in what i": [0, 65535], "fauour thee in what i can": [0, 65535], "thee in what i can therefore": [0, 65535], "in what i can therefore marchant": [0, 65535], "what i can therefore marchant ile": [0, 65535], "i can therefore marchant ile limit": [0, 65535], "can therefore marchant ile limit thee": [0, 65535], "therefore marchant ile limit thee this": [0, 65535], "marchant ile limit thee this day": [0, 65535], "ile limit thee this day to": [0, 65535], "limit thee this day to seeke": [0, 65535], "thee this day to seeke thy": [0, 65535], "this day to seeke thy helpe": [0, 65535], "day to seeke thy helpe by": [0, 65535], "to seeke thy helpe by beneficiall": [0, 65535], "seeke thy helpe by beneficiall helpe": [0, 65535], "thy helpe by beneficiall helpe try": [0, 65535], "helpe by beneficiall helpe try all": [0, 65535], "by beneficiall helpe try all the": [0, 65535], "beneficiall helpe try all the friends": [0, 65535], "helpe try all the friends thou": [0, 65535], "try all the friends thou hast": [0, 65535], "all the friends thou hast in": [0, 65535], "the friends thou hast in ephesus": [0, 65535], "friends thou hast in ephesus beg": [0, 65535], "thou hast in ephesus beg thou": [0, 65535], "hast in ephesus beg thou or": [0, 65535], "in ephesus beg thou or borrow": [0, 65535], "ephesus beg thou or borrow to": [0, 65535], "beg thou or borrow to make": [0, 65535], "thou or borrow to make vp": [0, 65535], "or borrow to make vp the": [0, 65535], "borrow to make vp the summe": [0, 65535], "to make vp the summe and": [0, 65535], "make vp the summe and liue": [0, 65535], "vp the summe and liue if": [0, 65535], "the summe and liue if no": [0, 65535], "summe and liue if no then": [0, 65535], "and liue if no then thou": [0, 65535], "liue if no then thou art": [0, 65535], "if no then thou art doom'd": [0, 65535], "no then thou art doom'd to": [0, 65535], "then thou art doom'd to die": [0, 65535], "thou art doom'd to die iaylor": [0, 65535], "art doom'd to die iaylor take": [0, 65535], "doom'd to die iaylor take him": [0, 65535], "to die iaylor take him to": [0, 65535], "die iaylor take him to thy": [0, 65535], "iaylor take him to thy custodie": [0, 65535], "take him to thy custodie iaylor": [0, 65535], "him to thy custodie iaylor i": [0, 65535], "to thy custodie iaylor i will": [0, 65535], "thy custodie iaylor i will my": [0, 65535], "custodie iaylor i will my lord": [0, 65535], "iaylor i will my lord merch": [0, 65535], "i will my lord merch hopelesse": [0, 65535], "will my lord merch hopelesse and": [0, 65535], "my lord merch hopelesse and helpelesse": [0, 65535], "lord merch hopelesse and helpelesse doth": [0, 65535], "merch hopelesse and helpelesse doth egean": [0, 65535], "hopelesse and helpelesse doth egean wend": [0, 65535], "and helpelesse doth egean wend but": [0, 65535], "helpelesse doth egean wend but to": [0, 65535], "doth egean wend but to procrastinate": [0, 65535], "egean wend but to procrastinate his": [0, 65535], "wend but to procrastinate his liuelesse": [0, 65535], "but to procrastinate his liuelesse end": [0, 65535], "to procrastinate his liuelesse end exeunt": [0, 65535], "procrastinate his liuelesse end exeunt enter": [0, 65535], "his liuelesse end exeunt enter antipholis": [0, 65535], "liuelesse end exeunt enter antipholis erotes": [0, 65535], "end exeunt enter antipholis erotes a": [0, 65535], "exeunt enter antipholis erotes a marchant": [0, 65535], "enter antipholis erotes a marchant and": [0, 65535], "antipholis erotes a marchant and dromio": [0, 65535], "erotes a marchant and dromio mer": [0, 65535], "a marchant and dromio mer therefore": [0, 65535], "marchant and dromio mer therefore giue": [0, 65535], "and dromio mer therefore giue out": [0, 65535], "dromio mer therefore giue out you": [0, 65535], "mer therefore giue out you are": [0, 65535], "therefore giue out you are of": [0, 65535], "giue out you are of epidamium": [0, 65535], "out you are of epidamium lest": [0, 65535], "you are of epidamium lest that": [0, 65535], "are of epidamium lest that your": [0, 65535], "of epidamium lest that your goods": [0, 65535], "epidamium lest that your goods too": [0, 65535], "lest that your goods too soone": [0, 65535], "that your goods too soone be": [0, 65535], "your goods too soone be confiscate": [0, 65535], "goods too soone be confiscate this": [0, 65535], "too soone be confiscate this very": [0, 65535], "soone be confiscate this very day": [0, 65535], "be confiscate this very day a": [0, 65535], "confiscate this very day a syracusian": [0, 65535], "this very day a syracusian marchant": [0, 65535], "very day a syracusian marchant is": [0, 65535], "day a syracusian marchant is apprehended": [0, 65535], "a syracusian marchant is apprehended for": [0, 65535], "syracusian marchant is apprehended for a": [0, 65535], "marchant is apprehended for a riuall": [0, 65535], "is apprehended for a riuall here": [0, 65535], "apprehended for a riuall here and": [0, 65535], "for a riuall here and not": [0, 65535], "a riuall here and not being": [0, 65535], "riuall here and not being able": [0, 65535], "here and not being able to": [0, 65535], "and not being able to buy": [0, 65535], "not being able to buy out": [0, 65535], "being able to buy out his": [0, 65535], "able to buy out his life": [0, 65535], "to buy out his life according": [0, 65535], "buy out his life according to": [0, 65535], "out his life according to the": [0, 65535], "his life according to the statute": [0, 65535], "life according to the statute of": [0, 65535], "according to the statute of the": [0, 65535], "to the statute of the towne": [0, 65535], "the statute of the towne dies": [0, 65535], "statute of the towne dies ere": [0, 65535], "of the towne dies ere the": [0, 65535], "the towne dies ere the wearie": [0, 65535], "towne dies ere the wearie sunne": [0, 65535], "dies ere the wearie sunne set": [0, 65535], "ere the wearie sunne set in": [0, 65535], "the wearie sunne set in the": [0, 65535], "wearie sunne set in the west": [0, 65535], "sunne set in the west there": [0, 65535], "set in the west there is": [0, 65535], "in the west there is your": [0, 65535], "the west there is your monie": [0, 65535], "west there is your monie that": [0, 65535], "there is your monie that i": [0, 65535], "is your monie that i had": [0, 65535], "your monie that i had to": [0, 65535], "monie that i had to keepe": [0, 65535], "that i had to keepe ant": [0, 65535], "i had to keepe ant goe": [0, 65535], "had to keepe ant goe beare": [0, 65535], "to keepe ant goe beare it": [0, 65535], "keepe ant goe beare it to": [0, 65535], "ant goe beare it to the": [0, 65535], "goe beare it to the centaure": [0, 65535], "beare it to the centaure where": [0, 65535], "it to the centaure where we": [0, 65535], "to the centaure where we host": [0, 65535], "the centaure where we host and": [0, 65535], "centaure where we host and stay": [0, 65535], "where we host and stay there": [0, 65535], "we host and stay there dromio": [0, 65535], "host and stay there dromio till": [0, 65535], "and stay there dromio till i": [0, 65535], "stay there dromio till i come": [0, 65535], "there dromio till i come to": [0, 65535], "dromio till i come to thee": [0, 65535], "till i come to thee within": [0, 65535], "i come to thee within this": [0, 65535], "come to thee within this houre": [0, 65535], "to thee within this houre it": [0, 65535], "thee within this houre it will": [0, 65535], "within this houre it will be": [0, 65535], "this houre it will be dinner": [0, 65535], "houre it will be dinner time": [0, 65535], "it will be dinner time till": [0, 65535], "will be dinner time till that": [0, 65535], "be dinner time till that ile": [0, 65535], "dinner time till that ile view": [0, 65535], "time till that ile view the": [0, 65535], "till that ile view the manners": [0, 65535], "that ile view the manners of": [0, 65535], "ile view the manners of the": [0, 65535], "view the manners of the towne": [0, 65535], "the manners of the towne peruse": [0, 65535], "manners of the towne peruse the": [0, 65535], "of the towne peruse the traders": [0, 65535], "the towne peruse the traders gaze": [0, 65535], "towne peruse the traders gaze vpon": [0, 65535], "peruse the traders gaze vpon the": [0, 65535], "the traders gaze vpon the buildings": [0, 65535], "traders gaze vpon the buildings and": [0, 65535], "gaze vpon the buildings and then": [0, 65535], "vpon the buildings and then returne": [0, 65535], "the buildings and then returne and": [0, 65535], "buildings and then returne and sleepe": [0, 65535], "and then returne and sleepe within": [0, 65535], "then returne and sleepe within mine": [0, 65535], "returne and sleepe within mine inne": [0, 65535], "and sleepe within mine inne for": [0, 65535], "sleepe within mine inne for with": [0, 65535], "within mine inne for with long": [0, 65535], "mine inne for with long trauaile": [0, 65535], "inne for with long trauaile i": [0, 65535], "for with long trauaile i am": [0, 65535], "with long trauaile i am stiffe": [0, 65535], "long trauaile i am stiffe and": [0, 65535], "trauaile i am stiffe and wearie": [0, 65535], "i am stiffe and wearie get": [0, 65535], "am stiffe and wearie get thee": [0, 65535], "stiffe and wearie get thee away": [0, 65535], "and wearie get thee away dro": [0, 65535], "wearie get thee away dro many": [0, 65535], "get thee away dro many a": [0, 65535], "thee away dro many a man": [0, 65535], "away dro many a man would": [0, 65535], "dro many a man would take": [0, 65535], "many a man would take you": [0, 65535], "a man would take you at": [0, 65535], "man would take you at your": [0, 65535], "would take you at your word": [0, 65535], "take you at your word and": [0, 65535], "you at your word and goe": [0, 65535], "at your word and goe indeede": [0, 65535], "your word and goe indeede hauing": [0, 65535], "word and goe indeede hauing so": [0, 65535], "and goe indeede hauing so good": [0, 65535], "goe indeede hauing so good a": [0, 65535], "indeede hauing so good a meane": [0, 65535], "hauing so good a meane exit": [0, 65535], "so good a meane exit dromio": [0, 65535], "good a meane exit dromio ant": [0, 65535], "a meane exit dromio ant a": [0, 65535], "meane exit dromio ant a trustie": [0, 65535], "exit dromio ant a trustie villaine": [0, 65535], "dromio ant a trustie villaine sir": [0, 65535], "ant a trustie villaine sir that": [0, 65535], "a trustie villaine sir that very": [0, 65535], "trustie villaine sir that very oft": [0, 65535], "villaine sir that very oft when": [0, 65535], "sir that very oft when i": [0, 65535], "that very oft when i am": [0, 65535], "very oft when i am dull": [0, 65535], "oft when i am dull with": [0, 65535], "when i am dull with care": [0, 65535], "i am dull with care and": [0, 65535], "am dull with care and melancholly": [0, 65535], "dull with care and melancholly lightens": [0, 65535], "with care and melancholly lightens my": [0, 65535], "care and melancholly lightens my humour": [0, 65535], "and melancholly lightens my humour with": [0, 65535], "melancholly lightens my humour with his": [0, 65535], "lightens my humour with his merry": [0, 65535], "my humour with his merry iests": [0, 65535], "humour with his merry iests what": [0, 65535], "with his merry iests what will": [0, 65535], "his merry iests what will you": [0, 65535], "merry iests what will you walke": [0, 65535], "iests what will you walke with": [0, 65535], "what will you walke with me": [0, 65535], "will you walke with me about": [0, 65535], "you walke with me about the": [0, 65535], "walke with me about the towne": [0, 65535], "with me about the towne and": [0, 65535], "me about the towne and then": [0, 65535], "about the towne and then goe": [0, 65535], "the towne and then goe to": [0, 65535], "towne and then goe to my": [0, 65535], "and then goe to my inne": [0, 65535], "then goe to my inne and": [0, 65535], "goe to my inne and dine": [0, 65535], "to my inne and dine with": [0, 65535], "my inne and dine with me": [0, 65535], "inne and dine with me e": [0, 65535], "and dine with me e mar": [0, 65535], "dine with me e mar i": [0, 65535], "with me e mar i am": [0, 65535], "me e mar i am inuited": [0, 65535], "e mar i am inuited sir": [0, 65535], "mar i am inuited sir to": [0, 65535], "i am inuited sir to certaine": [0, 65535], "am inuited sir to certaine marchants": [0, 65535], "inuited sir to certaine marchants of": [0, 65535], "sir to certaine marchants of whom": [0, 65535], "to certaine marchants of whom i": [0, 65535], "certaine marchants of whom i hope": [0, 65535], "marchants of whom i hope to": [0, 65535], "of whom i hope to make": [0, 65535], "whom i hope to make much": [0, 65535], "i hope to make much benefit": [0, 65535], "hope to make much benefit i": [0, 65535], "to make much benefit i craue": [0, 65535], "make much benefit i craue your": [0, 65535], "much benefit i craue your pardon": [0, 65535], "benefit i craue your pardon soone": [0, 65535], "i craue your pardon soone at": [0, 65535], "craue your pardon soone at fiue": [0, 65535], "your pardon soone at fiue a": [0, 65535], "pardon soone at fiue a clocke": [0, 65535], "soone at fiue a clocke please": [0, 65535], "at fiue a clocke please you": [0, 65535], "fiue a clocke please you ile": [0, 65535], "a clocke please you ile meete": [0, 65535], "clocke please you ile meete with": [0, 65535], "please you ile meete with you": [0, 65535], "you ile meete with you vpon": [0, 65535], "ile meete with you vpon the": [0, 65535], "meete with you vpon the mart": [0, 65535], "with you vpon the mart and": [0, 65535], "you vpon the mart and afterward": [0, 65535], "vpon the mart and afterward consort": [0, 65535], "the mart and afterward consort you": [0, 65535], "mart and afterward consort you till": [0, 65535], "and afterward consort you till bed": [0, 65535], "afterward consort you till bed time": [0, 65535], "consort you till bed time my": [0, 65535], "you till bed time my present": [0, 65535], "till bed time my present businesse": [0, 65535], "bed time my present businesse cals": [0, 65535], "time my present businesse cals me": [0, 65535], "my present businesse cals me from": [0, 65535], "present businesse cals me from you": [0, 65535], "businesse cals me from you now": [0, 65535], "cals me from you now ant": [0, 65535], "me from you now ant farewell": [0, 65535], "from you now ant farewell till": [0, 65535], "you now ant farewell till then": [0, 65535], "now ant farewell till then i": [0, 65535], "ant farewell till then i will": [0, 65535], "farewell till then i will goe": [0, 65535], "till then i will goe loose": [0, 65535], "then i will goe loose my": [0, 65535], "i will goe loose my selfe": [0, 65535], "will goe loose my selfe and": [0, 65535], "goe loose my selfe and wander": [0, 65535], "loose my selfe and wander vp": [0, 65535], "my selfe and wander vp and": [0, 65535], "selfe and wander vp and downe": [0, 65535], "and wander vp and downe to": [0, 65535], "wander vp and downe to view": [0, 65535], "vp and downe to view the": [0, 65535], "and downe to view the citie": [0, 65535], "downe to view the citie e": [0, 65535], "to view the citie e mar": [0, 65535], "view the citie e mar sir": [0, 65535], "the citie e mar sir i": [0, 65535], "citie e mar sir i commend": [0, 65535], "e mar sir i commend you": [0, 65535], "mar sir i commend you to": [0, 65535], "sir i commend you to your": [0, 65535], "i commend you to your owne": [0, 65535], "commend you to your owne content": [0, 65535], "you to your owne content exeunt": [0, 65535], "to your owne content exeunt ant": [0, 65535], "your owne content exeunt ant he": [0, 65535], "owne content exeunt ant he that": [0, 65535], "content exeunt ant he that commends": [0, 65535], "exeunt ant he that commends me": [0, 65535], "ant he that commends me to": [0, 65535], "he that commends me to mine": [0, 65535], "that commends me to mine owne": [0, 65535], "commends me to mine owne content": [0, 65535], "me to mine owne content commends": [0, 65535], "to mine owne content commends me": [0, 65535], "mine owne content commends me to": [0, 65535], "owne content commends me to the": [0, 65535], "content commends me to the thing": [0, 65535], "commends me to the thing i": [0, 65535], "me to the thing i cannot": [0, 65535], "to the thing i cannot get": [0, 65535], "the thing i cannot get i": [0, 65535], "thing i cannot get i to": [0, 65535], "i cannot get i to the": [0, 65535], "cannot get i to the world": [0, 65535], "get i to the world am": [0, 65535], "i to the world am like": [0, 65535], "to the world am like a": [0, 65535], "the world am like a drop": [0, 65535], "world am like a drop of": [0, 65535], "am like a drop of water": [0, 65535], "like a drop of water that": [0, 65535], "a drop of water that in": [0, 65535], "drop of water that in the": [0, 65535], "of water that in the ocean": [0, 65535], "water that in the ocean seekes": [0, 65535], "that in the ocean seekes another": [0, 65535], "in the ocean seekes another drop": [0, 65535], "the ocean seekes another drop who": [0, 65535], "ocean seekes another drop who falling": [0, 65535], "seekes another drop who falling there": [0, 65535], "another drop who falling there to": [0, 65535], "drop who falling there to finde": [0, 65535], "who falling there to finde his": [0, 65535], "falling there to finde his fellow": [0, 65535], "there to finde his fellow forth": [0, 65535], "to finde his fellow forth vnseene": [0, 65535], "finde his fellow forth vnseene inquisitiue": [0, 65535], "his fellow forth vnseene inquisitiue confounds": [0, 65535], "fellow forth vnseene inquisitiue confounds himselfe": [0, 65535], "forth vnseene inquisitiue confounds himselfe so": [0, 65535], "vnseene inquisitiue confounds himselfe so i": [0, 65535], "inquisitiue confounds himselfe so i to": [0, 65535], "confounds himselfe so i to finde": [0, 65535], "himselfe so i to finde a": [0, 65535], "so i to finde a mother": [0, 65535], "i to finde a mother and": [0, 65535], "to finde a mother and a": [0, 65535], "finde a mother and a brother": [0, 65535], "a mother and a brother in": [0, 65535], "mother and a brother in quest": [0, 65535], "and a brother in quest of": [0, 65535], "a brother in quest of them": [0, 65535], "brother in quest of them vnhappie": [0, 65535], "in quest of them vnhappie a": [0, 65535], "quest of them vnhappie a loose": [0, 65535], "of them vnhappie a loose my": [0, 65535], "them vnhappie a loose my selfe": [0, 65535], "vnhappie a loose my selfe enter": [0, 65535], "a loose my selfe enter dromio": [0, 65535], "loose my selfe enter dromio of": [0, 65535], "my selfe enter dromio of ephesus": [0, 65535], "selfe enter dromio of ephesus here": [0, 65535], "enter dromio of ephesus here comes": [0, 65535], "dromio of ephesus here comes the": [0, 65535], "of ephesus here comes the almanacke": [0, 65535], "ephesus here comes the almanacke of": [0, 65535], "here comes the almanacke of my": [0, 65535], "comes the almanacke of my true": [0, 65535], "the almanacke of my true date": [0, 65535], "almanacke of my true date what": [0, 65535], "of my true date what now": [0, 65535], "my true date what now how": [0, 65535], "true date what now how chance": [0, 65535], "date what now how chance thou": [0, 65535], "what now how chance thou art": [0, 65535], "now how chance thou art return'd": [0, 65535], "how chance thou art return'd so": [0, 65535], "chance thou art return'd so soone": [0, 65535], "thou art return'd so soone e": [0, 65535], "art return'd so soone e dro": [0, 65535], "return'd so soone e dro return'd": [0, 65535], "so soone e dro return'd so": [0, 65535], "soone e dro return'd so soone": [0, 65535], "e dro return'd so soone rather": [0, 65535], "dro return'd so soone rather approacht": [0, 65535], "return'd so soone rather approacht too": [0, 65535], "so soone rather approacht too late": [0, 65535], "soone rather approacht too late the": [0, 65535], "rather approacht too late the capon": [0, 65535], "approacht too late the capon burnes": [0, 65535], "too late the capon burnes the": [0, 65535], "late the capon burnes the pig": [0, 65535], "the capon burnes the pig fals": [0, 65535], "capon burnes the pig fals from": [0, 65535], "burnes the pig fals from the": [0, 65535], "the pig fals from the spit": [0, 65535], "pig fals from the spit the": [0, 65535], "fals from the spit the clocke": [0, 65535], "from the spit the clocke hath": [0, 65535], "the spit the clocke hath strucken": [0, 65535], "spit the clocke hath strucken twelue": [0, 65535], "the clocke hath strucken twelue vpon": [0, 65535], "clocke hath strucken twelue vpon the": [0, 65535], "hath strucken twelue vpon the bell": [0, 65535], "strucken twelue vpon the bell my": [0, 65535], "twelue vpon the bell my mistris": [0, 65535], "vpon the bell my mistris made": [0, 65535], "the bell my mistris made it": [0, 65535], "bell my mistris made it one": [0, 65535], "my mistris made it one vpon": [0, 65535], "mistris made it one vpon my": [0, 65535], "made it one vpon my cheeke": [0, 65535], "it one vpon my cheeke she": [0, 65535], "one vpon my cheeke she is": [0, 65535], "vpon my cheeke she is so": [0, 65535], "my cheeke she is so hot": [0, 65535], "cheeke she is so hot because": [0, 65535], "she is so hot because the": [0, 65535], "is so hot because the meate": [0, 65535], "so hot because the meate is": [0, 65535], "hot because the meate is colde": [0, 65535], "because the meate is colde the": [0, 65535], "the meate is colde the meate": [0, 65535], "meate is colde the meate is": [0, 65535], "is colde the meate is colde": [0, 65535], "colde the meate is colde because": [0, 65535], "the meate is colde because you": [0, 65535], "meate is colde because you come": [0, 65535], "is colde because you come not": [0, 65535], "colde because you come not home": [0, 65535], "because you come not home you": [0, 65535], "you come not home you come": [0, 65535], "come not home you come not": [0, 65535], "not home you come not home": [0, 65535], "home you come not home because": [0, 65535], "you come not home because you": [0, 65535], "come not home because you haue": [0, 65535], "not home because you haue no": [0, 65535], "home because you haue no stomacke": [0, 65535], "because you haue no stomacke you": [0, 65535], "you haue no stomacke you haue": [0, 65535], "haue no stomacke you haue no": [0, 65535], "no stomacke you haue no stomacke": [0, 65535], "stomacke you haue no stomacke hauing": [0, 65535], "you haue no stomacke hauing broke": [0, 65535], "haue no stomacke hauing broke your": [0, 65535], "no stomacke hauing broke your fast": [0, 65535], "stomacke hauing broke your fast but": [0, 65535], "hauing broke your fast but we": [0, 65535], "broke your fast but we that": [0, 65535], "your fast but we that know": [0, 65535], "fast but we that know what": [0, 65535], "but we that know what 'tis": [0, 65535], "we that know what 'tis to": [0, 65535], "that know what 'tis to fast": [0, 65535], "know what 'tis to fast and": [0, 65535], "what 'tis to fast and pray": [0, 65535], "'tis to fast and pray are": [0, 65535], "to fast and pray are penitent": [0, 65535], "fast and pray are penitent for": [0, 65535], "and pray are penitent for your": [0, 65535], "pray are penitent for your default": [0, 65535], "are penitent for your default to": [0, 65535], "penitent for your default to day": [0, 65535], "for your default to day ant": [0, 65535], "your default to day ant stop": [0, 65535], "default to day ant stop in": [0, 65535], "to day ant stop in your": [0, 65535], "day ant stop in your winde": [0, 65535], "ant stop in your winde sir": [0, 65535], "stop in your winde sir tell": [0, 65535], "in your winde sir tell me": [0, 65535], "your winde sir tell me this": [0, 65535], "winde sir tell me this i": [0, 65535], "sir tell me this i pray": [0, 65535], "tell me this i pray where": [0, 65535], "me this i pray where haue": [0, 65535], "this i pray where haue you": [0, 65535], "i pray where haue you left": [0, 65535], "pray where haue you left the": [0, 65535], "where haue you left the mony": [0, 65535], "haue you left the mony that": [0, 65535], "you left the mony that i": [0, 65535], "left the mony that i gaue": [0, 65535], "the mony that i gaue you": [0, 65535], "mony that i gaue you e": [0, 65535], "that i gaue you e dro": [0, 65535], "i gaue you e dro oh": [0, 65535], "gaue you e dro oh sixe": [0, 65535], "you e dro oh sixe pence": [0, 65535], "e dro oh sixe pence that": [0, 65535], "dro oh sixe pence that i": [0, 65535], "oh sixe pence that i had": [0, 65535], "sixe pence that i had a": [0, 65535], "pence that i had a wensday": [0, 65535], "that i had a wensday last": [0, 65535], "i had a wensday last to": [0, 65535], "had a wensday last to pay": [0, 65535], "a wensday last to pay the": [0, 65535], "wensday last to pay the sadler": [0, 65535], "last to pay the sadler for": [0, 65535], "to pay the sadler for my": [0, 65535], "pay the sadler for my mistris": [0, 65535], "the sadler for my mistris crupper": [0, 65535], "sadler for my mistris crupper the": [0, 65535], "for my mistris crupper the sadler": [0, 65535], "my mistris crupper the sadler had": [0, 65535], "mistris crupper the sadler had it": [0, 65535], "crupper the sadler had it sir": [0, 65535], "the sadler had it sir i": [0, 65535], "sadler had it sir i kept": [0, 65535], "had it sir i kept it": [0, 65535], "it sir i kept it not": [0, 65535], "sir i kept it not ant": [0, 65535], "i kept it not ant i": [0, 65535], "kept it not ant i am": [0, 65535], "it not ant i am not": [0, 65535], "not ant i am not in": [0, 65535], "ant i am not in a": [0, 65535], "i am not in a sportiue": [0, 65535], "am not in a sportiue humor": [0, 65535], "not in a sportiue humor now": [0, 65535], "in a sportiue humor now tell": [0, 65535], "a sportiue humor now tell me": [0, 65535], "sportiue humor now tell me and": [0, 65535], "humor now tell me and dally": [0, 65535], "now tell me and dally not": [0, 65535], "tell me and dally not where": [0, 65535], "me and dally not where is": [0, 65535], "and dally not where is the": [0, 65535], "dally not where is the monie": [0, 65535], "not where is the monie we": [0, 65535], "where is the monie we being": [0, 65535], "is the monie we being strangers": [0, 65535], "the monie we being strangers here": [0, 65535], "monie we being strangers here how": [0, 65535], "we being strangers here how dar'st": [0, 65535], "being strangers here how dar'st thou": [0, 65535], "strangers here how dar'st thou trust": [0, 65535], "here how dar'st thou trust so": [0, 65535], "how dar'st thou trust so great": [0, 65535], "dar'st thou trust so great a": [0, 65535], "thou trust so great a charge": [0, 65535], "trust so great a charge from": [0, 65535], "so great a charge from thine": [0, 65535], "great a charge from thine owne": [0, 65535], "a charge from thine owne custodie": [0, 65535], "charge from thine owne custodie e": [0, 65535], "from thine owne custodie e dro": [0, 65535], "thine owne custodie e dro i": [0, 65535], "owne custodie e dro i pray": [0, 65535], "custodie e dro i pray you": [0, 65535], "e dro i pray you iest": [0, 65535], "dro i pray you iest sir": [0, 65535], "i pray you iest sir as": [0, 65535], "pray you iest sir as you": [0, 65535], "you iest sir as you sit": [0, 65535], "iest sir as you sit at": [0, 65535], "sir as you sit at dinner": [0, 65535], "as you sit at dinner i": [0, 65535], "you sit at dinner i from": [0, 65535], "sit at dinner i from my": [0, 65535], "at dinner i from my mistris": [0, 65535], "dinner i from my mistris come": [0, 65535], "i from my mistris come to": [0, 65535], "from my mistris come to you": [0, 65535], "my mistris come to you in": [0, 65535], "mistris come to you in post": [0, 65535], "come to you in post if": [0, 65535], "to you in post if i": [0, 65535], "you in post if i returne": [0, 65535], "in post if i returne i": [0, 65535], "post if i returne i shall": [0, 65535], "if i returne i shall be": [0, 65535], "i returne i shall be post": [0, 65535], "returne i shall be post indeede": [0, 65535], "i shall be post indeede for": [0, 65535], "shall be post indeede for she": [0, 65535], "be post indeede for she will": [0, 65535], "post indeede for she will scoure": [0, 65535], "indeede for she will scoure your": [0, 65535], "for she will scoure your fault": [0, 65535], "she will scoure your fault vpon": [0, 65535], "will scoure your fault vpon my": [0, 65535], "scoure your fault vpon my pate": [0, 65535], "your fault vpon my pate me": [0, 65535], "fault vpon my pate me thinkes": [0, 65535], "vpon my pate me thinkes your": [0, 65535], "my pate me thinkes your maw": [0, 65535], "pate me thinkes your maw like": [0, 65535], "me thinkes your maw like mine": [0, 65535], "thinkes your maw like mine should": [0, 65535], "your maw like mine should be": [0, 65535], "maw like mine should be your": [0, 65535], "like mine should be your cooke": [0, 65535], "mine should be your cooke and": [0, 65535], "should be your cooke and strike": [0, 65535], "be your cooke and strike you": [0, 65535], "your cooke and strike you home": [0, 65535], "cooke and strike you home without": [0, 65535], "and strike you home without a": [0, 65535], "strike you home without a messenger": [0, 65535], "you home without a messenger ant": [0, 65535], "home without a messenger ant come": [0, 65535], "without a messenger ant come dromio": [0, 65535], "a messenger ant come dromio come": [0, 65535], "messenger ant come dromio come these": [0, 65535], "ant come dromio come these iests": [0, 65535], "come dromio come these iests are": [0, 65535], "dromio come these iests are out": [0, 65535], "come these iests are out of": [0, 65535], "these iests are out of season": [0, 65535], "iests are out of season reserue": [0, 65535], "are out of season reserue them": [0, 65535], "out of season reserue them till": [0, 65535], "of season reserue them till a": [0, 65535], "season reserue them till a merrier": [0, 65535], "reserue them till a merrier houre": [0, 65535], "them till a merrier houre then": [0, 65535], "till a merrier houre then this": [0, 65535], "a merrier houre then this where": [0, 65535], "merrier houre then this where is": [0, 65535], "houre then this where is the": [0, 65535], "then this where is the gold": [0, 65535], "this where is the gold i": [0, 65535], "where is the gold i gaue": [0, 65535], "is the gold i gaue in": [0, 65535], "the gold i gaue in charge": [0, 65535], "gold i gaue in charge to": [0, 65535], "i gaue in charge to thee": [0, 65535], "gaue in charge to thee e": [0, 65535], "in charge to thee e dro": [0, 65535], "charge to thee e dro to": [0, 65535], "to thee e dro to me": [0, 65535], "thee e dro to me sir": [0, 65535], "e dro to me sir why": [0, 65535], "dro to me sir why you": [0, 65535], "to me sir why you gaue": [0, 65535], "me sir why you gaue no": [0, 65535], "sir why you gaue no gold": [0, 65535], "why you gaue no gold to": [0, 65535], "you gaue no gold to me": [0, 65535], "gaue no gold to me ant": [0, 65535], "no gold to me ant come": [0, 65535], "gold to me ant come on": [0, 65535], "to me ant come on sir": [0, 65535], "me ant come on sir knaue": [0, 65535], "ant come on sir knaue haue": [0, 65535], "come on sir knaue haue done": [0, 65535], "on sir knaue haue done your": [0, 65535], "sir knaue haue done your foolishnes": [0, 65535], "knaue haue done your foolishnes and": [0, 65535], "haue done your foolishnes and tell": [0, 65535], "done your foolishnes and tell me": [0, 65535], "your foolishnes and tell me how": [0, 65535], "foolishnes and tell me how thou": [0, 65535], "and tell me how thou hast": [0, 65535], "tell me how thou hast dispos'd": [0, 65535], "me how thou hast dispos'd thy": [0, 65535], "how thou hast dispos'd thy charge": [0, 65535], "thou hast dispos'd thy charge e": [0, 65535], "hast dispos'd thy charge e dro": [0, 65535], "dispos'd thy charge e dro my": [0, 65535], "thy charge e dro my charge": [0, 65535], "charge e dro my charge was": [0, 65535], "e dro my charge was but": [0, 65535], "dro my charge was but to": [0, 65535], "my charge was but to fetch": [0, 65535], "charge was but to fetch you": [0, 65535], "was but to fetch you from": [0, 65535], "but to fetch you from the": [0, 65535], "to fetch you from the mart": [0, 65535], "fetch you from the mart home": [0, 65535], "you from the mart home to": [0, 65535], "from the mart home to your": [0, 65535], "the mart home to your house": [0, 65535], "mart home to your house the": [0, 65535], "home to your house the ph\u0153nix": [0, 65535], "to your house the ph\u0153nix sir": [0, 65535], "your house the ph\u0153nix sir to": [0, 65535], "house the ph\u0153nix sir to dinner": [0, 65535], "the ph\u0153nix sir to dinner my": [0, 65535], "ph\u0153nix sir to dinner my mistris": [0, 65535], "sir to dinner my mistris and": [0, 65535], "to dinner my mistris and her": [0, 65535], "dinner my mistris and her sister": [0, 65535], "my mistris and her sister staies": [0, 65535], "mistris and her sister staies for": [0, 65535], "and her sister staies for you": [0, 65535], "her sister staies for you ant": [0, 65535], "sister staies for you ant now": [0, 65535], "staies for you ant now as": [0, 65535], "for you ant now as i": [0, 65535], "you ant now as i am": [0, 65535], "ant now as i am a": [0, 65535], "now as i am a christian": [0, 65535], "as i am a christian answer": [0, 65535], "i am a christian answer me": [0, 65535], "am a christian answer me in": [0, 65535], "a christian answer me in what": [0, 65535], "christian answer me in what safe": [0, 65535], "answer me in what safe place": [0, 65535], "me in what safe place you": [0, 65535], "in what safe place you haue": [0, 65535], "what safe place you haue bestow'd": [0, 65535], "safe place you haue bestow'd my": [0, 65535], "place you haue bestow'd my monie": [0, 65535], "you haue bestow'd my monie or": [0, 65535], "haue bestow'd my monie or i": [0, 65535], "bestow'd my monie or i shall": [0, 65535], "my monie or i shall breake": [0, 65535], "monie or i shall breake that": [0, 65535], "or i shall breake that merrie": [0, 65535], "i shall breake that merrie sconce": [0, 65535], "shall breake that merrie sconce of": [0, 65535], "breake that merrie sconce of yours": [0, 65535], "that merrie sconce of yours that": [0, 65535], "merrie sconce of yours that stands": [0, 65535], "sconce of yours that stands on": [0, 65535], "of yours that stands on tricks": [0, 65535], "yours that stands on tricks when": [0, 65535], "that stands on tricks when i": [0, 65535], "stands on tricks when i am": [0, 65535], "on tricks when i am vndispos'd": [0, 65535], "tricks when i am vndispos'd where": [0, 65535], "when i am vndispos'd where is": [0, 65535], "i am vndispos'd where is the": [0, 65535], "am vndispos'd where is the thousand": [0, 65535], "vndispos'd where is the thousand markes": [0, 65535], "where is the thousand markes thou": [0, 65535], "is the thousand markes thou hadst": [0, 65535], "the thousand markes thou hadst of": [0, 65535], "thousand markes thou hadst of me": [0, 65535], "markes thou hadst of me e": [0, 65535], "thou hadst of me e dro": [0, 65535], "hadst of me e dro i": [0, 65535], "of me e dro i haue": [0, 65535], "me e dro i haue some": [0, 65535], "e dro i haue some markes": [0, 65535], "dro i haue some markes of": [0, 65535], "i haue some markes of yours": [0, 65535], "haue some markes of yours vpon": [0, 65535], "some markes of yours vpon my": [0, 65535], "markes of yours vpon my pate": [0, 65535], "of yours vpon my pate some": [0, 65535], "yours vpon my pate some of": [0, 65535], "vpon my pate some of my": [0, 65535], "my pate some of my mistris": [0, 65535], "pate some of my mistris markes": [0, 65535], "some of my mistris markes vpon": [0, 65535], "of my mistris markes vpon my": [0, 65535], "my mistris markes vpon my shoulders": [0, 65535], "mistris markes vpon my shoulders but": [0, 65535], "markes vpon my shoulders but not": [0, 65535], "vpon my shoulders but not a": [0, 65535], "my shoulders but not a thousand": [0, 65535], "shoulders but not a thousand markes": [0, 65535], "but not a thousand markes betweene": [0, 65535], "not a thousand markes betweene you": [0, 65535], "a thousand markes betweene you both": [0, 65535], "thousand markes betweene you both if": [0, 65535], "markes betweene you both if i": [0, 65535], "betweene you both if i should": [0, 65535], "you both if i should pay": [0, 65535], "both if i should pay your": [0, 65535], "if i should pay your worship": [0, 65535], "i should pay your worship those": [0, 65535], "should pay your worship those againe": [0, 65535], "pay your worship those againe perchance": [0, 65535], "your worship those againe perchance you": [0, 65535], "worship those againe perchance you will": [0, 65535], "those againe perchance you will not": [0, 65535], "againe perchance you will not beare": [0, 65535], "perchance you will not beare them": [0, 65535], "you will not beare them patiently": [0, 65535], "will not beare them patiently ant": [0, 65535], "not beare them patiently ant thy": [0, 65535], "beare them patiently ant thy mistris": [0, 65535], "them patiently ant thy mistris markes": [0, 65535], "patiently ant thy mistris markes what": [0, 65535], "ant thy mistris markes what mistris": [0, 65535], "thy mistris markes what mistris slaue": [0, 65535], "mistris markes what mistris slaue hast": [0, 65535], "markes what mistris slaue hast thou": [0, 65535], "what mistris slaue hast thou e": [0, 65535], "mistris slaue hast thou e dro": [0, 65535], "slaue hast thou e dro your": [0, 65535], "hast thou e dro your worships": [0, 65535], "thou e dro your worships wife": [0, 65535], "e dro your worships wife my": [0, 65535], "dro your worships wife my mistris": [0, 65535], "your worships wife my mistris at": [0, 65535], "worships wife my mistris at the": [0, 65535], "wife my mistris at the ph\u0153nix": [0, 65535], "my mistris at the ph\u0153nix she": [0, 65535], "mistris at the ph\u0153nix she that": [0, 65535], "at the ph\u0153nix she that doth": [0, 65535], "the ph\u0153nix she that doth fast": [0, 65535], "ph\u0153nix she that doth fast till": [0, 65535], "she that doth fast till you": [0, 65535], "that doth fast till you come": [0, 65535], "doth fast till you come home": [0, 65535], "fast till you come home to": [0, 65535], "till you come home to dinner": [0, 65535], "you come home to dinner and": [0, 65535], "come home to dinner and praies": [0, 65535], "home to dinner and praies that": [0, 65535], "to dinner and praies that you": [0, 65535], "dinner and praies that you will": [0, 65535], "and praies that you will hie": [0, 65535], "praies that you will hie you": [0, 65535], "that you will hie you home": [0, 65535], "you will hie you home to": [0, 65535], "will hie you home to dinner": [0, 65535], "hie you home to dinner ant": [0, 65535], "you home to dinner ant what": [0, 65535], "home to dinner ant what wilt": [0, 65535], "to dinner ant what wilt thou": [0, 65535], "dinner ant what wilt thou flout": [0, 65535], "ant what wilt thou flout me": [0, 65535], "what wilt thou flout me thus": [0, 65535], "wilt thou flout me thus vnto": [0, 65535], "thou flout me thus vnto my": [0, 65535], "flout me thus vnto my face": [0, 65535], "me thus vnto my face being": [0, 65535], "thus vnto my face being forbid": [0, 65535], "vnto my face being forbid there": [0, 65535], "my face being forbid there take": [0, 65535], "face being forbid there take you": [0, 65535], "being forbid there take you that": [0, 65535], "forbid there take you that sir": [0, 65535], "there take you that sir knaue": [0, 65535], "take you that sir knaue e": [0, 65535], "you that sir knaue e dro": [0, 65535], "that sir knaue e dro what": [0, 65535], "sir knaue e dro what meane": [0, 65535], "knaue e dro what meane you": [0, 65535], "e dro what meane you sir": [0, 65535], "dro what meane you sir for": [0, 65535], "what meane you sir for god": [0, 65535], "meane you sir for god sake": [0, 65535], "you sir for god sake hold": [0, 65535], "sir for god sake hold your": [0, 65535], "for god sake hold your hands": [0, 65535], "god sake hold your hands nay": [0, 65535], "sake hold your hands nay and": [0, 65535], "hold your hands nay and you": [0, 65535], "your hands nay and you will": [0, 65535], "hands nay and you will not": [0, 65535], "nay and you will not sir": [0, 65535], "and you will not sir ile": [0, 65535], "you will not sir ile take": [0, 65535], "will not sir ile take my": [0, 65535], "not sir ile take my heeles": [0, 65535], "sir ile take my heeles exeunt": [0, 65535], "ile take my heeles exeunt dromio": [0, 65535], "take my heeles exeunt dromio ep": [0, 65535], "my heeles exeunt dromio ep ant": [0, 65535], "heeles exeunt dromio ep ant vpon": [0, 65535], "exeunt dromio ep ant vpon my": [0, 65535], "dromio ep ant vpon my life": [0, 65535], "ep ant vpon my life by": [0, 65535], "ant vpon my life by some": [0, 65535], "vpon my life by some deuise": [0, 65535], "my life by some deuise or": [0, 65535], "life by some deuise or other": [0, 65535], "by some deuise or other the": [0, 65535], "some deuise or other the villaine": [0, 65535], "deuise or other the villaine is": [0, 65535], "or other the villaine is ore": [0, 65535], "other the villaine is ore wrought": [0, 65535], "the villaine is ore wrought of": [0, 65535], "villaine is ore wrought of all": [0, 65535], "is ore wrought of all my": [0, 65535], "ore wrought of all my monie": [0, 65535], "wrought of all my monie they": [0, 65535], "of all my monie they say": [0, 65535], "all my monie they say this": [0, 65535], "my monie they say this towne": [0, 65535], "monie they say this towne is": [0, 65535], "they say this towne is full": [0, 65535], "say this towne is full of": [0, 65535], "this towne is full of cosenage": [0, 65535], "towne is full of cosenage as": [0, 65535], "is full of cosenage as nimble": [0, 65535], "full of cosenage as nimble iuglers": [0, 65535], "of cosenage as nimble iuglers that": [0, 65535], "cosenage as nimble iuglers that deceiue": [0, 65535], "as nimble iuglers that deceiue the": [0, 65535], "nimble iuglers that deceiue the eie": [0, 65535], "iuglers that deceiue the eie darke": [0, 65535], "that deceiue the eie darke working": [0, 65535], "deceiue the eie darke working sorcerers": [0, 65535], "the eie darke working sorcerers that": [0, 65535], "eie darke working sorcerers that change": [0, 65535], "darke working sorcerers that change the": [0, 65535], "working sorcerers that change the minde": [0, 65535], "sorcerers that change the minde soule": [0, 65535], "that change the minde soule killing": [0, 65535], "change the minde soule killing witches": [0, 65535], "the minde soule killing witches that": [0, 65535], "minde soule killing witches that deforme": [0, 65535], "soule killing witches that deforme the": [0, 65535], "killing witches that deforme the bodie": [0, 65535], "witches that deforme the bodie disguised": [0, 65535], "that deforme the bodie disguised cheaters": [0, 65535], "deforme the bodie disguised cheaters prating": [0, 65535], "the bodie disguised cheaters prating mountebankes": [0, 65535], "bodie disguised cheaters prating mountebankes and": [0, 65535], "disguised cheaters prating mountebankes and manie": [0, 65535], "cheaters prating mountebankes and manie such": [0, 65535], "prating mountebankes and manie such like": [0, 65535], "mountebankes and manie such like liberties": [0, 65535], "and manie such like liberties of": [0, 65535], "manie such like liberties of sinne": [0, 65535], "such like liberties of sinne if": [0, 65535], "like liberties of sinne if it": [0, 65535], "liberties of sinne if it proue": [0, 65535], "of sinne if it proue so": [0, 65535], "sinne if it proue so i": [0, 65535], "if it proue so i will": [0, 65535], "it proue so i will be": [0, 65535], "proue so i will be gone": [0, 65535], "so i will be gone the": [0, 65535], "i will be gone the sooner": [0, 65535], "will be gone the sooner ile": [0, 65535], "be gone the sooner ile to": [0, 65535], "gone the sooner ile to the": [0, 65535], "the sooner ile to the centaur": [0, 65535], "sooner ile to the centaur to": [0, 65535], "ile to the centaur to goe": [0, 65535], "to the centaur to goe seeke": [0, 65535], "the centaur to goe seeke this": [0, 65535], "centaur to goe seeke this slaue": [0, 65535], "to goe seeke this slaue i": [0, 65535], "goe seeke this slaue i greatly": [0, 65535], "seeke this slaue i greatly feare": [0, 65535], "this slaue i greatly feare my": [0, 65535], "slaue i greatly feare my monie": [0, 65535], "i greatly feare my monie is": [0, 65535], "greatly feare my monie is not": [0, 65535], "feare my monie is not safe": [0, 65535], "the comedie of errors actus primus scena": [0, 65535], "comedie of errors actus primus scena prima": [0, 65535], "of errors actus primus scena prima enter": [0, 65535], "errors actus primus scena prima enter the": [0, 65535], "actus primus scena prima enter the duke": [0, 65535], "primus scena prima enter the duke of": [0, 65535], "scena prima enter the duke of ephesus": [0, 65535], "prima enter the duke of ephesus with": [0, 65535], "enter the duke of ephesus with the": [0, 65535], "the duke of ephesus with the merchant": [0, 65535], "duke of ephesus with the merchant of": [0, 65535], "of ephesus with the merchant of siracusa": [0, 65535], "ephesus with the merchant of siracusa iaylor": [0, 65535], "with the merchant of siracusa iaylor and": [0, 65535], "the merchant of siracusa iaylor and other": [0, 65535], "merchant of siracusa iaylor and other attendants": [0, 65535], "of siracusa iaylor and other attendants marchant": [0, 65535], "siracusa iaylor and other attendants marchant broceed": [0, 65535], "iaylor and other attendants marchant broceed solinus": [0, 65535], "and other attendants marchant broceed solinus to": [0, 65535], "other attendants marchant broceed solinus to procure": [0, 65535], "attendants marchant broceed solinus to procure my": [0, 65535], "marchant broceed solinus to procure my fall": [0, 65535], "broceed solinus to procure my fall and": [0, 65535], "solinus to procure my fall and by": [0, 65535], "to procure my fall and by the": [0, 65535], "procure my fall and by the doome": [0, 65535], "my fall and by the doome of": [0, 65535], "fall and by the doome of death": [0, 65535], "and by the doome of death end": [0, 65535], "by the doome of death end woes": [0, 65535], "the doome of death end woes and": [0, 65535], "doome of death end woes and all": [0, 65535], "of death end woes and all duke": [0, 65535], "death end woes and all duke merchant": [0, 65535], "end woes and all duke merchant of": [0, 65535], "woes and all duke merchant of siracusa": [0, 65535], "and all duke merchant of siracusa plead": [0, 65535], "all duke merchant of siracusa plead no": [0, 65535], "duke merchant of siracusa plead no more": [0, 65535], "merchant of siracusa plead no more i": [0, 65535], "of siracusa plead no more i am": [0, 65535], "siracusa plead no more i am not": [0, 65535], "plead no more i am not partiall": [0, 65535], "no more i am not partiall to": [0, 65535], "more i am not partiall to infringe": [0, 65535], "i am not partiall to infringe our": [0, 65535], "am not partiall to infringe our lawes": [0, 65535], "not partiall to infringe our lawes the": [0, 65535], "partiall to infringe our lawes the enmity": [0, 65535], "to infringe our lawes the enmity and": [0, 65535], "infringe our lawes the enmity and discord": [0, 65535], "our lawes the enmity and discord which": [0, 65535], "lawes the enmity and discord which of": [0, 65535], "the enmity and discord which of late": [0, 65535], "enmity and discord which of late sprung": [0, 65535], "and discord which of late sprung from": [0, 65535], "discord which of late sprung from the": [0, 65535], "which of late sprung from the rancorous": [0, 65535], "of late sprung from the rancorous outrage": [0, 65535], "late sprung from the rancorous outrage of": [0, 65535], "sprung from the rancorous outrage of your": [0, 65535], "from the rancorous outrage of your duke": [0, 65535], "the rancorous outrage of your duke to": [0, 65535], "rancorous outrage of your duke to merchants": [0, 65535], "outrage of your duke to merchants our": [0, 65535], "of your duke to merchants our well": [0, 65535], "your duke to merchants our well dealing": [0, 65535], "duke to merchants our well dealing countrimen": [0, 65535], "to merchants our well dealing countrimen who": [0, 65535], "merchants our well dealing countrimen who wanting": [0, 65535], "our well dealing countrimen who wanting gilders": [0, 65535], "well dealing countrimen who wanting gilders to": [0, 65535], "dealing countrimen who wanting gilders to redeeme": [0, 65535], "countrimen who wanting gilders to redeeme their": [0, 65535], "who wanting gilders to redeeme their liues": [0, 65535], "wanting gilders to redeeme their liues haue": [0, 65535], "gilders to redeeme their liues haue seal'd": [0, 65535], "to redeeme their liues haue seal'd his": [0, 65535], "redeeme their liues haue seal'd his rigorous": [0, 65535], "their liues haue seal'd his rigorous statutes": [0, 65535], "liues haue seal'd his rigorous statutes with": [0, 65535], "haue seal'd his rigorous statutes with their": [0, 65535], "seal'd his rigorous statutes with their blouds": [0, 65535], "his rigorous statutes with their blouds excludes": [0, 65535], "rigorous statutes with their blouds excludes all": [0, 65535], "statutes with their blouds excludes all pitty": [0, 65535], "with their blouds excludes all pitty from": [0, 65535], "their blouds excludes all pitty from our": [0, 65535], "blouds excludes all pitty from our threatning": [0, 65535], "excludes all pitty from our threatning lookes": [0, 65535], "all pitty from our threatning lookes for": [0, 65535], "pitty from our threatning lookes for since": [0, 65535], "from our threatning lookes for since the": [0, 65535], "our threatning lookes for since the mortall": [0, 65535], "threatning lookes for since the mortall and": [0, 65535], "lookes for since the mortall and intestine": [0, 65535], "for since the mortall and intestine iarres": [0, 65535], "since the mortall and intestine iarres twixt": [0, 65535], "the mortall and intestine iarres twixt thy": [0, 65535], "mortall and intestine iarres twixt thy seditious": [0, 65535], "and intestine iarres twixt thy seditious countrimen": [0, 65535], "intestine iarres twixt thy seditious countrimen and": [0, 65535], "iarres twixt thy seditious countrimen and vs": [0, 65535], "twixt thy seditious countrimen and vs it": [0, 65535], "thy seditious countrimen and vs it hath": [0, 65535], "seditious countrimen and vs it hath in": [0, 65535], "countrimen and vs it hath in solemne": [0, 65535], "and vs it hath in solemne synodes": [0, 65535], "vs it hath in solemne synodes beene": [0, 65535], "it hath in solemne synodes beene decreed": [0, 65535], "hath in solemne synodes beene decreed both": [0, 65535], "in solemne synodes beene decreed both by": [0, 65535], "solemne synodes beene decreed both by the": [0, 65535], "synodes beene decreed both by the siracusians": [0, 65535], "beene decreed both by the siracusians and": [0, 65535], "decreed both by the siracusians and our": [0, 65535], "both by the siracusians and our selues": [0, 65535], "by the siracusians and our selues to": [0, 65535], "the siracusians and our selues to admit": [0, 65535], "siracusians and our selues to admit no": [0, 65535], "and our selues to admit no trafficke": [0, 65535], "our selues to admit no trafficke to": [0, 65535], "selues to admit no trafficke to our": [0, 65535], "to admit no trafficke to our aduerse": [0, 65535], "admit no trafficke to our aduerse townes": [0, 65535], "no trafficke to our aduerse townes nay": [0, 65535], "trafficke to our aduerse townes nay more": [0, 65535], "to our aduerse townes nay more if": [0, 65535], "our aduerse townes nay more if any": [0, 65535], "aduerse townes nay more if any borne": [0, 65535], "townes nay more if any borne at": [0, 65535], "nay more if any borne at ephesus": [0, 65535], "more if any borne at ephesus be": [0, 65535], "if any borne at ephesus be seene": [0, 65535], "any borne at ephesus be seene at": [0, 65535], "borne at ephesus be seene at any": [0, 65535], "at ephesus be seene at any siracusian": [0, 65535], "ephesus be seene at any siracusian marts": [0, 65535], "be seene at any siracusian marts and": [0, 65535], "seene at any siracusian marts and fayres": [0, 65535], "at any siracusian marts and fayres againe": [0, 65535], "any siracusian marts and fayres againe if": [0, 65535], "siracusian marts and fayres againe if any": [0, 65535], "marts and fayres againe if any siracusian": [0, 65535], "and fayres againe if any siracusian borne": [0, 65535], "fayres againe if any siracusian borne come": [0, 65535], "againe if any siracusian borne come to": [0, 65535], "if any siracusian borne come to the": [0, 65535], "any siracusian borne come to the bay": [0, 65535], "siracusian borne come to the bay of": [0, 65535], "borne come to the bay of ephesus": [0, 65535], "come to the bay of ephesus he": [0, 65535], "to the bay of ephesus he dies": [0, 65535], "the bay of ephesus he dies his": [0, 65535], "bay of ephesus he dies his goods": [0, 65535], "of ephesus he dies his goods confiscate": [0, 65535], "ephesus he dies his goods confiscate to": [0, 65535], "he dies his goods confiscate to the": [0, 65535], "dies his goods confiscate to the dukes": [0, 65535], "his goods confiscate to the dukes dispose": [0, 65535], "goods confiscate to the dukes dispose vnlesse": [0, 65535], "confiscate to the dukes dispose vnlesse a": [0, 65535], "to the dukes dispose vnlesse a thousand": [0, 65535], "the dukes dispose vnlesse a thousand markes": [0, 65535], "dukes dispose vnlesse a thousand markes be": [0, 65535], "dispose vnlesse a thousand markes be leuied": [0, 65535], "vnlesse a thousand markes be leuied to": [0, 65535], "a thousand markes be leuied to quit": [0, 65535], "thousand markes be leuied to quit the": [0, 65535], "markes be leuied to quit the penalty": [0, 65535], "be leuied to quit the penalty and": [0, 65535], "leuied to quit the penalty and to": [0, 65535], "to quit the penalty and to ransome": [0, 65535], "quit the penalty and to ransome him": [0, 65535], "the penalty and to ransome him thy": [0, 65535], "penalty and to ransome him thy substance": [0, 65535], "and to ransome him thy substance valued": [0, 65535], "to ransome him thy substance valued at": [0, 65535], "ransome him thy substance valued at the": [0, 65535], "him thy substance valued at the highest": [0, 65535], "thy substance valued at the highest rate": [0, 65535], "substance valued at the highest rate cannot": [0, 65535], "valued at the highest rate cannot amount": [0, 65535], "at the highest rate cannot amount vnto": [0, 65535], "the highest rate cannot amount vnto a": [0, 65535], "highest rate cannot amount vnto a hundred": [0, 65535], "rate cannot amount vnto a hundred markes": [0, 65535], "cannot amount vnto a hundred markes therefore": [0, 65535], "amount vnto a hundred markes therefore by": [0, 65535], "vnto a hundred markes therefore by law": [0, 65535], "a hundred markes therefore by law thou": [0, 65535], "hundred markes therefore by law thou art": [0, 65535], "markes therefore by law thou art condemn'd": [0, 65535], "therefore by law thou art condemn'd to": [0, 65535], "by law thou art condemn'd to die": [0, 65535], "law thou art condemn'd to die mer": [0, 65535], "thou art condemn'd to die mer yet": [0, 65535], "art condemn'd to die mer yet this": [0, 65535], "condemn'd to die mer yet this my": [0, 65535], "to die mer yet this my comfort": [0, 65535], "die mer yet this my comfort when": [0, 65535], "mer yet this my comfort when your": [0, 65535], "yet this my comfort when your words": [0, 65535], "this my comfort when your words are": [0, 65535], "my comfort when your words are done": [0, 65535], "comfort when your words are done my": [0, 65535], "when your words are done my woes": [0, 65535], "your words are done my woes end": [0, 65535], "words are done my woes end likewise": [0, 65535], "are done my woes end likewise with": [0, 65535], "done my woes end likewise with the": [0, 65535], "my woes end likewise with the euening": [0, 65535], "woes end likewise with the euening sonne": [0, 65535], "end likewise with the euening sonne duk": [0, 65535], "likewise with the euening sonne duk well": [0, 65535], "with the euening sonne duk well siracusian": [0, 65535], "the euening sonne duk well siracusian say": [0, 65535], "euening sonne duk well siracusian say in": [0, 65535], "sonne duk well siracusian say in briefe": [0, 65535], "duk well siracusian say in briefe the": [0, 65535], "well siracusian say in briefe the cause": [0, 65535], "siracusian say in briefe the cause why": [0, 65535], "say in briefe the cause why thou": [0, 65535], "in briefe the cause why thou departedst": [0, 65535], "briefe the cause why thou departedst from": [0, 65535], "the cause why thou departedst from thy": [0, 65535], "cause why thou departedst from thy natiue": [0, 65535], "why thou departedst from thy natiue home": [0, 65535], "thou departedst from thy natiue home and": [0, 65535], "departedst from thy natiue home and for": [0, 65535], "from thy natiue home and for what": [0, 65535], "thy natiue home and for what cause": [0, 65535], "natiue home and for what cause thou": [0, 65535], "home and for what cause thou cam'st": [0, 65535], "and for what cause thou cam'st to": [0, 65535], "for what cause thou cam'st to ephesus": [0, 65535], "what cause thou cam'st to ephesus mer": [0, 65535], "cause thou cam'st to ephesus mer a": [0, 65535], "thou cam'st to ephesus mer a heauier": [0, 65535], "cam'st to ephesus mer a heauier taske": [0, 65535], "to ephesus mer a heauier taske could": [0, 65535], "ephesus mer a heauier taske could not": [0, 65535], "mer a heauier taske could not haue": [0, 65535], "a heauier taske could not haue beene": [0, 65535], "heauier taske could not haue beene impos'd": [0, 65535], "taske could not haue beene impos'd then": [0, 65535], "could not haue beene impos'd then i": [0, 65535], "not haue beene impos'd then i to": [0, 65535], "haue beene impos'd then i to speake": [0, 65535], "beene impos'd then i to speake my": [0, 65535], "impos'd then i to speake my griefes": [0, 65535], "then i to speake my griefes vnspeakeable": [0, 65535], "i to speake my griefes vnspeakeable yet": [0, 65535], "to speake my griefes vnspeakeable yet that": [0, 65535], "speake my griefes vnspeakeable yet that the": [0, 65535], "my griefes vnspeakeable yet that the world": [0, 65535], "griefes vnspeakeable yet that the world may": [0, 65535], "vnspeakeable yet that the world may witnesse": [0, 65535], "yet that the world may witnesse that": [0, 65535], "that the world may witnesse that my": [0, 65535], "the world may witnesse that my end": [0, 65535], "world may witnesse that my end was": [0, 65535], "may witnesse that my end was wrought": [0, 65535], "witnesse that my end was wrought by": [0, 65535], "that my end was wrought by nature": [0, 65535], "my end was wrought by nature not": [0, 65535], "end was wrought by nature not by": [0, 65535], "was wrought by nature not by vile": [0, 65535], "wrought by nature not by vile offence": [0, 65535], "by nature not by vile offence ile": [0, 65535], "nature not by vile offence ile vtter": [0, 65535], "not by vile offence ile vtter what": [0, 65535], "by vile offence ile vtter what my": [0, 65535], "vile offence ile vtter what my sorrow": [0, 65535], "offence ile vtter what my sorrow giues": [0, 65535], "ile vtter what my sorrow giues me": [0, 65535], "vtter what my sorrow giues me leaue": [0, 65535], "what my sorrow giues me leaue in": [0, 65535], "my sorrow giues me leaue in syracusa": [0, 65535], "sorrow giues me leaue in syracusa was": [0, 65535], "giues me leaue in syracusa was i": [0, 65535], "me leaue in syracusa was i borne": [0, 65535], "leaue in syracusa was i borne and": [0, 65535], "in syracusa was i borne and wedde": [0, 65535], "syracusa was i borne and wedde vnto": [0, 65535], "was i borne and wedde vnto a": [0, 65535], "i borne and wedde vnto a woman": [0, 65535], "borne and wedde vnto a woman happy": [0, 65535], "and wedde vnto a woman happy but": [0, 65535], "wedde vnto a woman happy but for": [0, 65535], "vnto a woman happy but for me": [0, 65535], "a woman happy but for me and": [0, 65535], "woman happy but for me and by": [0, 65535], "happy but for me and by me": [0, 65535], "but for me and by me had": [0, 65535], "for me and by me had not": [0, 65535], "me and by me had not our": [0, 65535], "and by me had not our hap": [0, 65535], "by me had not our hap beene": [0, 65535], "me had not our hap beene bad": [0, 65535], "had not our hap beene bad with": [0, 65535], "not our hap beene bad with her": [0, 65535], "our hap beene bad with her i": [0, 65535], "hap beene bad with her i liu'd": [0, 65535], "beene bad with her i liu'd in": [0, 65535], "bad with her i liu'd in ioy": [0, 65535], "with her i liu'd in ioy our": [0, 65535], "her i liu'd in ioy our wealth": [0, 65535], "i liu'd in ioy our wealth increast": [0, 65535], "liu'd in ioy our wealth increast by": [0, 65535], "in ioy our wealth increast by prosperous": [0, 65535], "ioy our wealth increast by prosperous voyages": [0, 65535], "our wealth increast by prosperous voyages i": [0, 65535], "wealth increast by prosperous voyages i often": [0, 65535], "increast by prosperous voyages i often made": [0, 65535], "by prosperous voyages i often made to": [0, 65535], "prosperous voyages i often made to epidamium": [0, 65535], "voyages i often made to epidamium till": [0, 65535], "i often made to epidamium till my": [0, 65535], "often made to epidamium till my factors": [0, 65535], "made to epidamium till my factors death": [0, 65535], "to epidamium till my factors death and": [0, 65535], "epidamium till my factors death and he": [0, 65535], "till my factors death and he great": [0, 65535], "my factors death and he great care": [0, 65535], "factors death and he great care of": [0, 65535], "death and he great care of goods": [0, 65535], "and he great care of goods at": [0, 65535], "he great care of goods at randone": [0, 65535], "great care of goods at randone left": [0, 65535], "care of goods at randone left drew": [0, 65535], "of goods at randone left drew me": [0, 65535], "goods at randone left drew me from": [0, 65535], "at randone left drew me from kinde": [0, 65535], "randone left drew me from kinde embracements": [0, 65535], "left drew me from kinde embracements of": [0, 65535], "drew me from kinde embracements of my": [0, 65535], "me from kinde embracements of my spouse": [0, 65535], "from kinde embracements of my spouse from": [0, 65535], "kinde embracements of my spouse from whom": [0, 65535], "embracements of my spouse from whom my": [0, 65535], "of my spouse from whom my absence": [0, 65535], "my spouse from whom my absence was": [0, 65535], "spouse from whom my absence was not": [0, 65535], "from whom my absence was not sixe": [0, 65535], "whom my absence was not sixe moneths": [0, 65535], "my absence was not sixe moneths olde": [0, 65535], "absence was not sixe moneths olde before": [0, 65535], "was not sixe moneths olde before her": [0, 65535], "not sixe moneths olde before her selfe": [0, 65535], "sixe moneths olde before her selfe almost": [0, 65535], "moneths olde before her selfe almost at": [0, 65535], "olde before her selfe almost at fainting": [0, 65535], "before her selfe almost at fainting vnder": [0, 65535], "her selfe almost at fainting vnder the": [0, 65535], "selfe almost at fainting vnder the pleasing": [0, 65535], "almost at fainting vnder the pleasing punishment": [0, 65535], "at fainting vnder the pleasing punishment that": [0, 65535], "fainting vnder the pleasing punishment that women": [0, 65535], "vnder the pleasing punishment that women beare": [0, 65535], "the pleasing punishment that women beare had": [0, 65535], "pleasing punishment that women beare had made": [0, 65535], "punishment that women beare had made prouision": [0, 65535], "that women beare had made prouision for": [0, 65535], "women beare had made prouision for her": [0, 65535], "beare had made prouision for her following": [0, 65535], "had made prouision for her following me": [0, 65535], "made prouision for her following me and": [0, 65535], "prouision for her following me and soone": [0, 65535], "for her following me and soone and": [0, 65535], "her following me and soone and safe": [0, 65535], "following me and soone and safe arriued": [0, 65535], "me and soone and safe arriued where": [0, 65535], "and soone and safe arriued where i": [0, 65535], "soone and safe arriued where i was": [0, 65535], "and safe arriued where i was there": [0, 65535], "safe arriued where i was there had": [0, 65535], "arriued where i was there had she": [0, 65535], "where i was there had she not": [0, 65535], "i was there had she not beene": [0, 65535], "was there had she not beene long": [0, 65535], "there had she not beene long but": [0, 65535], "had she not beene long but she": [0, 65535], "she not beene long but she became": [0, 65535], "not beene long but she became a": [0, 65535], "beene long but she became a ioyfull": [0, 65535], "long but she became a ioyfull mother": [0, 65535], "but she became a ioyfull mother of": [0, 65535], "she became a ioyfull mother of two": [0, 65535], "became a ioyfull mother of two goodly": [0, 65535], "a ioyfull mother of two goodly sonnes": [0, 65535], "ioyfull mother of two goodly sonnes and": [0, 65535], "mother of two goodly sonnes and which": [0, 65535], "of two goodly sonnes and which was": [0, 65535], "two goodly sonnes and which was strange": [0, 65535], "goodly sonnes and which was strange the": [0, 65535], "sonnes and which was strange the one": [0, 65535], "and which was strange the one so": [0, 65535], "which was strange the one so like": [0, 65535], "was strange the one so like the": [0, 65535], "strange the one so like the other": [0, 65535], "the one so like the other as": [0, 65535], "one so like the other as could": [0, 65535], "so like the other as could not": [0, 65535], "like the other as could not be": [0, 65535], "the other as could not be distinguish'd": [0, 65535], "other as could not be distinguish'd but": [0, 65535], "as could not be distinguish'd but by": [0, 65535], "could not be distinguish'd but by names": [0, 65535], "not be distinguish'd but by names that": [0, 65535], "be distinguish'd but by names that very": [0, 65535], "distinguish'd but by names that very howre": [0, 65535], "but by names that very howre and": [0, 65535], "by names that very howre and in": [0, 65535], "names that very howre and in the": [0, 65535], "that very howre and in the selfe": [0, 65535], "very howre and in the selfe same": [0, 65535], "howre and in the selfe same inne": [0, 65535], "and in the selfe same inne a": [0, 65535], "in the selfe same inne a meane": [0, 65535], "the selfe same inne a meane woman": [0, 65535], "selfe same inne a meane woman was": [0, 65535], "same inne a meane woman was deliuered": [0, 65535], "inne a meane woman was deliuered of": [0, 65535], "a meane woman was deliuered of such": [0, 65535], "meane woman was deliuered of such a": [0, 65535], "woman was deliuered of such a burthen": [0, 65535], "was deliuered of such a burthen male": [0, 65535], "deliuered of such a burthen male twins": [0, 65535], "of such a burthen male twins both": [0, 65535], "such a burthen male twins both alike": [0, 65535], "a burthen male twins both alike those": [0, 65535], "burthen male twins both alike those for": [0, 65535], "male twins both alike those for their": [0, 65535], "twins both alike those for their parents": [0, 65535], "both alike those for their parents were": [0, 65535], "alike those for their parents were exceeding": [0, 65535], "those for their parents were exceeding poore": [0, 65535], "for their parents were exceeding poore i": [0, 65535], "their parents were exceeding poore i bought": [0, 65535], "parents were exceeding poore i bought and": [0, 65535], "were exceeding poore i bought and brought": [0, 65535], "exceeding poore i bought and brought vp": [0, 65535], "poore i bought and brought vp to": [0, 65535], "i bought and brought vp to attend": [0, 65535], "bought and brought vp to attend my": [0, 65535], "and brought vp to attend my sonnes": [0, 65535], "brought vp to attend my sonnes my": [0, 65535], "vp to attend my sonnes my wife": [0, 65535], "to attend my sonnes my wife not": [0, 65535], "attend my sonnes my wife not meanely": [0, 65535], "my sonnes my wife not meanely prowd": [0, 65535], "sonnes my wife not meanely prowd of": [0, 65535], "my wife not meanely prowd of two": [0, 65535], "wife not meanely prowd of two such": [0, 65535], "not meanely prowd of two such boyes": [0, 65535], "meanely prowd of two such boyes made": [0, 65535], "prowd of two such boyes made daily": [0, 65535], "of two such boyes made daily motions": [0, 65535], "two such boyes made daily motions for": [0, 65535], "such boyes made daily motions for our": [0, 65535], "boyes made daily motions for our home": [0, 65535], "made daily motions for our home returne": [0, 65535], "daily motions for our home returne vnwilling": [0, 65535], "motions for our home returne vnwilling i": [0, 65535], "for our home returne vnwilling i agreed": [0, 65535], "our home returne vnwilling i agreed alas": [0, 65535], "home returne vnwilling i agreed alas too": [0, 65535], "returne vnwilling i agreed alas too soone": [0, 65535], "vnwilling i agreed alas too soone wee": [0, 65535], "i agreed alas too soone wee came": [0, 65535], "agreed alas too soone wee came aboord": [0, 65535], "alas too soone wee came aboord a": [0, 65535], "too soone wee came aboord a league": [0, 65535], "soone wee came aboord a league from": [0, 65535], "wee came aboord a league from epidamium": [0, 65535], "came aboord a league from epidamium had": [0, 65535], "aboord a league from epidamium had we": [0, 65535], "a league from epidamium had we saild": [0, 65535], "league from epidamium had we saild before": [0, 65535], "from epidamium had we saild before the": [0, 65535], "epidamium had we saild before the alwaies": [0, 65535], "had we saild before the alwaies winde": [0, 65535], "we saild before the alwaies winde obeying": [0, 65535], "saild before the alwaies winde obeying deepe": [0, 65535], "before the alwaies winde obeying deepe gaue": [0, 65535], "the alwaies winde obeying deepe gaue any": [0, 65535], "alwaies winde obeying deepe gaue any tragicke": [0, 65535], "winde obeying deepe gaue any tragicke instance": [0, 65535], "obeying deepe gaue any tragicke instance of": [0, 65535], "deepe gaue any tragicke instance of our": [0, 65535], "gaue any tragicke instance of our harme": [0, 65535], "any tragicke instance of our harme but": [0, 65535], "tragicke instance of our harme but longer": [0, 65535], "instance of our harme but longer did": [0, 65535], "of our harme but longer did we": [0, 65535], "our harme but longer did we not": [0, 65535], "harme but longer did we not retaine": [0, 65535], "but longer did we not retaine much": [0, 65535], "longer did we not retaine much hope": [0, 65535], "did we not retaine much hope for": [0, 65535], "we not retaine much hope for what": [0, 65535], "not retaine much hope for what obscured": [0, 65535], "retaine much hope for what obscured light": [0, 65535], "much hope for what obscured light the": [0, 65535], "hope for what obscured light the heauens": [0, 65535], "for what obscured light the heauens did": [0, 65535], "what obscured light the heauens did grant": [0, 65535], "obscured light the heauens did grant did": [0, 65535], "light the heauens did grant did but": [0, 65535], "the heauens did grant did but conuay": [0, 65535], "heauens did grant did but conuay vnto": [0, 65535], "did grant did but conuay vnto our": [0, 65535], "grant did but conuay vnto our fearefull": [0, 65535], "did but conuay vnto our fearefull mindes": [0, 65535], "but conuay vnto our fearefull mindes a": [0, 65535], "conuay vnto our fearefull mindes a doubtfull": [0, 65535], "vnto our fearefull mindes a doubtfull warrant": [0, 65535], "our fearefull mindes a doubtfull warrant of": [0, 65535], "fearefull mindes a doubtfull warrant of immediate": [0, 65535], "mindes a doubtfull warrant of immediate death": [0, 65535], "a doubtfull warrant of immediate death which": [0, 65535], "doubtfull warrant of immediate death which though": [0, 65535], "warrant of immediate death which though my": [0, 65535], "of immediate death which though my selfe": [0, 65535], "immediate death which though my selfe would": [0, 65535], "death which though my selfe would gladly": [0, 65535], "which though my selfe would gladly haue": [0, 65535], "though my selfe would gladly haue imbrac'd": [0, 65535], "my selfe would gladly haue imbrac'd yet": [0, 65535], "selfe would gladly haue imbrac'd yet the": [0, 65535], "would gladly haue imbrac'd yet the incessant": [0, 65535], "gladly haue imbrac'd yet the incessant weepings": [0, 65535], "haue imbrac'd yet the incessant weepings of": [0, 65535], "imbrac'd yet the incessant weepings of my": [0, 65535], "yet the incessant weepings of my wife": [0, 65535], "the incessant weepings of my wife weeping": [0, 65535], "incessant weepings of my wife weeping before": [0, 65535], "weepings of my wife weeping before for": [0, 65535], "of my wife weeping before for what": [0, 65535], "my wife weeping before for what she": [0, 65535], "wife weeping before for what she saw": [0, 65535], "weeping before for what she saw must": [0, 65535], "before for what she saw must come": [0, 65535], "for what she saw must come and": [0, 65535], "what she saw must come and pitteous": [0, 65535], "she saw must come and pitteous playnings": [0, 65535], "saw must come and pitteous playnings of": [0, 65535], "must come and pitteous playnings of the": [0, 65535], "come and pitteous playnings of the prettie": [0, 65535], "and pitteous playnings of the prettie babes": [0, 65535], "pitteous playnings of the prettie babes that": [0, 65535], "playnings of the prettie babes that mourn'd": [0, 65535], "of the prettie babes that mourn'd for": [0, 65535], "the prettie babes that mourn'd for fashion": [0, 65535], "prettie babes that mourn'd for fashion ignorant": [0, 65535], "babes that mourn'd for fashion ignorant what": [0, 65535], "that mourn'd for fashion ignorant what to": [0, 65535], "mourn'd for fashion ignorant what to feare": [0, 65535], "for fashion ignorant what to feare forst": [0, 65535], "fashion ignorant what to feare forst me": [0, 65535], "ignorant what to feare forst me to": [0, 65535], "what to feare forst me to seeke": [0, 65535], "to feare forst me to seeke delayes": [0, 65535], "feare forst me to seeke delayes for": [0, 65535], "forst me to seeke delayes for them": [0, 65535], "me to seeke delayes for them and": [0, 65535], "to seeke delayes for them and me": [0, 65535], "seeke delayes for them and me and": [0, 65535], "delayes for them and me and this": [0, 65535], "for them and me and this it": [0, 65535], "them and me and this it was": [0, 65535], "and me and this it was for": [0, 65535], "me and this it was for other": [0, 65535], "and this it was for other meanes": [0, 65535], "this it was for other meanes was": [0, 65535], "it was for other meanes was none": [0, 65535], "was for other meanes was none the": [0, 65535], "for other meanes was none the sailors": [0, 65535], "other meanes was none the sailors sought": [0, 65535], "meanes was none the sailors sought for": [0, 65535], "was none the sailors sought for safety": [0, 65535], "none the sailors sought for safety by": [0, 65535], "the sailors sought for safety by our": [0, 65535], "sailors sought for safety by our boate": [0, 65535], "sought for safety by our boate and": [0, 65535], "for safety by our boate and left": [0, 65535], "safety by our boate and left the": [0, 65535], "by our boate and left the ship": [0, 65535], "our boate and left the ship then": [0, 65535], "boate and left the ship then sinking": [0, 65535], "and left the ship then sinking ripe": [0, 65535], "left the ship then sinking ripe to": [0, 65535], "the ship then sinking ripe to vs": [0, 65535], "ship then sinking ripe to vs my": [0, 65535], "then sinking ripe to vs my wife": [0, 65535], "sinking ripe to vs my wife more": [0, 65535], "ripe to vs my wife more carefull": [0, 65535], "to vs my wife more carefull for": [0, 65535], "vs my wife more carefull for the": [0, 65535], "my wife more carefull for the latter": [0, 65535], "wife more carefull for the latter borne": [0, 65535], "more carefull for the latter borne had": [0, 65535], "carefull for the latter borne had fastned": [0, 65535], "for the latter borne had fastned him": [0, 65535], "the latter borne had fastned him vnto": [0, 65535], "latter borne had fastned him vnto a": [0, 65535], "borne had fastned him vnto a small": [0, 65535], "had fastned him vnto a small spare": [0, 65535], "fastned him vnto a small spare mast": [0, 65535], "him vnto a small spare mast such": [0, 65535], "vnto a small spare mast such as": [0, 65535], "a small spare mast such as sea": [0, 65535], "small spare mast such as sea faring": [0, 65535], "spare mast such as sea faring men": [0, 65535], "mast such as sea faring men prouide": [0, 65535], "such as sea faring men prouide for": [0, 65535], "as sea faring men prouide for stormes": [0, 65535], "sea faring men prouide for stormes to": [0, 65535], "faring men prouide for stormes to him": [0, 65535], "men prouide for stormes to him one": [0, 65535], "prouide for stormes to him one of": [0, 65535], "for stormes to him one of the": [0, 65535], "stormes to him one of the other": [0, 65535], "to him one of the other twins": [0, 65535], "him one of the other twins was": [0, 65535], "one of the other twins was bound": [0, 65535], "of the other twins was bound whil'st": [0, 65535], "the other twins was bound whil'st i": [0, 65535], "other twins was bound whil'st i had": [0, 65535], "twins was bound whil'st i had beene": [0, 65535], "was bound whil'st i had beene like": [0, 65535], "bound whil'st i had beene like heedfull": [0, 65535], "whil'st i had beene like heedfull of": [0, 65535], "i had beene like heedfull of the": [0, 65535], "had beene like heedfull of the other": [0, 65535], "beene like heedfull of the other the": [0, 65535], "like heedfull of the other the children": [0, 65535], "heedfull of the other the children thus": [0, 65535], "of the other the children thus dispos'd": [0, 65535], "the other the children thus dispos'd my": [0, 65535], "other the children thus dispos'd my wife": [0, 65535], "the children thus dispos'd my wife and": [0, 65535], "children thus dispos'd my wife and i": [0, 65535], "thus dispos'd my wife and i fixing": [0, 65535], "dispos'd my wife and i fixing our": [0, 65535], "my wife and i fixing our eyes": [0, 65535], "wife and i fixing our eyes on": [0, 65535], "and i fixing our eyes on whom": [0, 65535], "i fixing our eyes on whom our": [0, 65535], "fixing our eyes on whom our care": [0, 65535], "our eyes on whom our care was": [0, 65535], "eyes on whom our care was fixt": [0, 65535], "on whom our care was fixt fastned": [0, 65535], "whom our care was fixt fastned our": [0, 65535], "our care was fixt fastned our selues": [0, 65535], "care was fixt fastned our selues at": [0, 65535], "was fixt fastned our selues at eyther": [0, 65535], "fixt fastned our selues at eyther end": [0, 65535], "fastned our selues at eyther end the": [0, 65535], "our selues at eyther end the mast": [0, 65535], "selues at eyther end the mast and": [0, 65535], "at eyther end the mast and floating": [0, 65535], "eyther end the mast and floating straight": [0, 65535], "end the mast and floating straight obedient": [0, 65535], "the mast and floating straight obedient to": [0, 65535], "mast and floating straight obedient to the": [0, 65535], "and floating straight obedient to the streame": [0, 65535], "floating straight obedient to the streame was": [0, 65535], "straight obedient to the streame was carried": [0, 65535], "obedient to the streame was carried towards": [0, 65535], "to the streame was carried towards corinth": [0, 65535], "the streame was carried towards corinth as": [0, 65535], "streame was carried towards corinth as we": [0, 65535], "was carried towards corinth as we thought": [0, 65535], "carried towards corinth as we thought at": [0, 65535], "towards corinth as we thought at length": [0, 65535], "corinth as we thought at length the": [0, 65535], "as we thought at length the sonne": [0, 65535], "we thought at length the sonne gazing": [0, 65535], "thought at length the sonne gazing vpon": [0, 65535], "at length the sonne gazing vpon the": [0, 65535], "length the sonne gazing vpon the earth": [0, 65535], "the sonne gazing vpon the earth disperst": [0, 65535], "sonne gazing vpon the earth disperst those": [0, 65535], "gazing vpon the earth disperst those vapours": [0, 65535], "vpon the earth disperst those vapours that": [0, 65535], "the earth disperst those vapours that offended": [0, 65535], "earth disperst those vapours that offended vs": [0, 65535], "disperst those vapours that offended vs and": [0, 65535], "those vapours that offended vs and by": [0, 65535], "vapours that offended vs and by the": [0, 65535], "that offended vs and by the benefit": [0, 65535], "offended vs and by the benefit of": [0, 65535], "vs and by the benefit of his": [0, 65535], "and by the benefit of his wished": [0, 65535], "by the benefit of his wished light": [0, 65535], "the benefit of his wished light the": [0, 65535], "benefit of his wished light the seas": [0, 65535], "of his wished light the seas waxt": [0, 65535], "his wished light the seas waxt calme": [0, 65535], "wished light the seas waxt calme and": [0, 65535], "light the seas waxt calme and we": [0, 65535], "the seas waxt calme and we discouered": [0, 65535], "seas waxt calme and we discouered two": [0, 65535], "waxt calme and we discouered two shippes": [0, 65535], "calme and we discouered two shippes from": [0, 65535], "and we discouered two shippes from farre": [0, 65535], "we discouered two shippes from farre making": [0, 65535], "discouered two shippes from farre making amaine": [0, 65535], "two shippes from farre making amaine to": [0, 65535], "shippes from farre making amaine to vs": [0, 65535], "from farre making amaine to vs of": [0, 65535], "farre making amaine to vs of corinth": [0, 65535], "making amaine to vs of corinth that": [0, 65535], "amaine to vs of corinth that of": [0, 65535], "to vs of corinth that of epidarus": [0, 65535], "vs of corinth that of epidarus this": [0, 65535], "of corinth that of epidarus this but": [0, 65535], "corinth that of epidarus this but ere": [0, 65535], "that of epidarus this but ere they": [0, 65535], "of epidarus this but ere they came": [0, 65535], "epidarus this but ere they came oh": [0, 65535], "this but ere they came oh let": [0, 65535], "but ere they came oh let me": [0, 65535], "ere they came oh let me say": [0, 65535], "they came oh let me say no": [0, 65535], "came oh let me say no more": [0, 65535], "oh let me say no more gather": [0, 65535], "let me say no more gather the": [0, 65535], "me say no more gather the sequell": [0, 65535], "say no more gather the sequell by": [0, 65535], "no more gather the sequell by that": [0, 65535], "more gather the sequell by that went": [0, 65535], "gather the sequell by that went before": [0, 65535], "the sequell by that went before duk": [0, 65535], "sequell by that went before duk nay": [0, 65535], "by that went before duk nay forward": [0, 65535], "that went before duk nay forward old": [0, 65535], "went before duk nay forward old man": [0, 65535], "before duk nay forward old man doe": [0, 65535], "duk nay forward old man doe not": [0, 65535], "nay forward old man doe not breake": [0, 65535], "forward old man doe not breake off": [0, 65535], "old man doe not breake off so": [0, 65535], "man doe not breake off so for": [0, 65535], "doe not breake off so for we": [0, 65535], "not breake off so for we may": [0, 65535], "breake off so for we may pitty": [0, 65535], "off so for we may pitty though": [0, 65535], "so for we may pitty though not": [0, 65535], "for we may pitty though not pardon": [0, 65535], "we may pitty though not pardon thee": [0, 65535], "may pitty though not pardon thee merch": [0, 65535], "pitty though not pardon thee merch oh": [0, 65535], "though not pardon thee merch oh had": [0, 65535], "not pardon thee merch oh had the": [0, 65535], "pardon thee merch oh had the gods": [0, 65535], "thee merch oh had the gods done": [0, 65535], "merch oh had the gods done so": [0, 65535], "oh had the gods done so i": [0, 65535], "had the gods done so i had": [0, 65535], "the gods done so i had not": [0, 65535], "gods done so i had not now": [0, 65535], "done so i had not now worthily": [0, 65535], "so i had not now worthily tearm'd": [0, 65535], "i had not now worthily tearm'd them": [0, 65535], "had not now worthily tearm'd them mercilesse": [0, 65535], "not now worthily tearm'd them mercilesse to": [0, 65535], "now worthily tearm'd them mercilesse to vs": [0, 65535], "worthily tearm'd them mercilesse to vs for": [0, 65535], "tearm'd them mercilesse to vs for ere": [0, 65535], "them mercilesse to vs for ere the": [0, 65535], "mercilesse to vs for ere the ships": [0, 65535], "to vs for ere the ships could": [0, 65535], "vs for ere the ships could meet": [0, 65535], "for ere the ships could meet by": [0, 65535], "ere the ships could meet by twice": [0, 65535], "the ships could meet by twice fiue": [0, 65535], "ships could meet by twice fiue leagues": [0, 65535], "could meet by twice fiue leagues we": [0, 65535], "meet by twice fiue leagues we were": [0, 65535], "by twice fiue leagues we were encountred": [0, 65535], "twice fiue leagues we were encountred by": [0, 65535], "fiue leagues we were encountred by a": [0, 65535], "leagues we were encountred by a mighty": [0, 65535], "we were encountred by a mighty rocke": [0, 65535], "were encountred by a mighty rocke which": [0, 65535], "encountred by a mighty rocke which being": [0, 65535], "by a mighty rocke which being violently": [0, 65535], "a mighty rocke which being violently borne": [0, 65535], "mighty rocke which being violently borne vp": [0, 65535], "rocke which being violently borne vp our": [0, 65535], "which being violently borne vp our helpefull": [0, 65535], "being violently borne vp our helpefull ship": [0, 65535], "violently borne vp our helpefull ship was": [0, 65535], "borne vp our helpefull ship was splitted": [0, 65535], "vp our helpefull ship was splitted in": [0, 65535], "our helpefull ship was splitted in the": [0, 65535], "helpefull ship was splitted in the midst": [0, 65535], "ship was splitted in the midst so": [0, 65535], "was splitted in the midst so that": [0, 65535], "splitted in the midst so that in": [0, 65535], "in the midst so that in this": [0, 65535], "the midst so that in this vniust": [0, 65535], "midst so that in this vniust diuorce": [0, 65535], "so that in this vniust diuorce of": [0, 65535], "that in this vniust diuorce of vs": [0, 65535], "in this vniust diuorce of vs fortune": [0, 65535], "this vniust diuorce of vs fortune had": [0, 65535], "vniust diuorce of vs fortune had left": [0, 65535], "diuorce of vs fortune had left to": [0, 65535], "of vs fortune had left to both": [0, 65535], "vs fortune had left to both of": [0, 65535], "fortune had left to both of vs": [0, 65535], "had left to both of vs alike": [0, 65535], "left to both of vs alike what": [0, 65535], "to both of vs alike what to": [0, 65535], "both of vs alike what to delight": [0, 65535], "of vs alike what to delight in": [0, 65535], "vs alike what to delight in what": [0, 65535], "alike what to delight in what to": [0, 65535], "what to delight in what to sorrow": [0, 65535], "to delight in what to sorrow for": [0, 65535], "delight in what to sorrow for her": [0, 65535], "in what to sorrow for her part": [0, 65535], "what to sorrow for her part poore": [0, 65535], "to sorrow for her part poore soule": [0, 65535], "sorrow for her part poore soule seeming": [0, 65535], "for her part poore soule seeming as": [0, 65535], "her part poore soule seeming as burdened": [0, 65535], "part poore soule seeming as burdened with": [0, 65535], "poore soule seeming as burdened with lesser": [0, 65535], "soule seeming as burdened with lesser waight": [0, 65535], "seeming as burdened with lesser waight but": [0, 65535], "as burdened with lesser waight but not": [0, 65535], "burdened with lesser waight but not with": [0, 65535], "with lesser waight but not with lesser": [0, 65535], "lesser waight but not with lesser woe": [0, 65535], "waight but not with lesser woe was": [0, 65535], "but not with lesser woe was carried": [0, 65535], "not with lesser woe was carried with": [0, 65535], "with lesser woe was carried with more": [0, 65535], "lesser woe was carried with more speed": [0, 65535], "woe was carried with more speed before": [0, 65535], "was carried with more speed before the": [0, 65535], "carried with more speed before the winde": [0, 65535], "with more speed before the winde and": [0, 65535], "more speed before the winde and in": [0, 65535], "speed before the winde and in our": [0, 65535], "before the winde and in our sight": [0, 65535], "the winde and in our sight they": [0, 65535], "winde and in our sight they three": [0, 65535], "and in our sight they three were": [0, 65535], "in our sight they three were taken": [0, 65535], "our sight they three were taken vp": [0, 65535], "sight they three were taken vp by": [0, 65535], "they three were taken vp by fishermen": [0, 65535], "three were taken vp by fishermen of": [0, 65535], "were taken vp by fishermen of corinth": [0, 65535], "taken vp by fishermen of corinth as": [0, 65535], "vp by fishermen of corinth as we": [0, 65535], "by fishermen of corinth as we thought": [0, 65535], "fishermen of corinth as we thought at": [0, 65535], "of corinth as we thought at length": [0, 65535], "corinth as we thought at length another": [0, 65535], "as we thought at length another ship": [0, 65535], "we thought at length another ship had": [0, 65535], "thought at length another ship had seiz'd": [0, 65535], "at length another ship had seiz'd on": [0, 65535], "length another ship had seiz'd on vs": [0, 65535], "another ship had seiz'd on vs and": [0, 65535], "ship had seiz'd on vs and knowing": [0, 65535], "had seiz'd on vs and knowing whom": [0, 65535], "seiz'd on vs and knowing whom it": [0, 65535], "on vs and knowing whom it was": [0, 65535], "vs and knowing whom it was their": [0, 65535], "and knowing whom it was their hap": [0, 65535], "knowing whom it was their hap to": [0, 65535], "whom it was their hap to saue": [0, 65535], "it was their hap to saue gaue": [0, 65535], "was their hap to saue gaue healthfull": [0, 65535], "their hap to saue gaue healthfull welcome": [0, 65535], "hap to saue gaue healthfull welcome to": [0, 65535], "to saue gaue healthfull welcome to their": [0, 65535], "saue gaue healthfull welcome to their ship": [0, 65535], "gaue healthfull welcome to their ship wrackt": [0, 65535], "healthfull welcome to their ship wrackt guests": [0, 65535], "welcome to their ship wrackt guests and": [0, 65535], "to their ship wrackt guests and would": [0, 65535], "their ship wrackt guests and would haue": [0, 65535], "ship wrackt guests and would haue reft": [0, 65535], "wrackt guests and would haue reft the": [0, 65535], "guests and would haue reft the fishers": [0, 65535], "and would haue reft the fishers of": [0, 65535], "would haue reft the fishers of their": [0, 65535], "haue reft the fishers of their prey": [0, 65535], "reft the fishers of their prey had": [0, 65535], "the fishers of their prey had not": [0, 65535], "fishers of their prey had not their": [0, 65535], "of their prey had not their backe": [0, 65535], "their prey had not their backe beene": [0, 65535], "prey had not their backe beene very": [0, 65535], "had not their backe beene very slow": [0, 65535], "not their backe beene very slow of": [0, 65535], "their backe beene very slow of saile": [0, 65535], "backe beene very slow of saile and": [0, 65535], "beene very slow of saile and therefore": [0, 65535], "very slow of saile and therefore homeward": [0, 65535], "slow of saile and therefore homeward did": [0, 65535], "of saile and therefore homeward did they": [0, 65535], "saile and therefore homeward did they bend": [0, 65535], "and therefore homeward did they bend their": [0, 65535], "therefore homeward did they bend their course": [0, 65535], "homeward did they bend their course thus": [0, 65535], "did they bend their course thus haue": [0, 65535], "they bend their course thus haue you": [0, 65535], "bend their course thus haue you heard": [0, 65535], "their course thus haue you heard me": [0, 65535], "course thus haue you heard me seuer'd": [0, 65535], "thus haue you heard me seuer'd from": [0, 65535], "haue you heard me seuer'd from my": [0, 65535], "you heard me seuer'd from my blisse": [0, 65535], "heard me seuer'd from my blisse that": [0, 65535], "me seuer'd from my blisse that by": [0, 65535], "seuer'd from my blisse that by misfortunes": [0, 65535], "from my blisse that by misfortunes was": [0, 65535], "my blisse that by misfortunes was my": [0, 65535], "blisse that by misfortunes was my life": [0, 65535], "that by misfortunes was my life prolong'd": [0, 65535], "by misfortunes was my life prolong'd to": [0, 65535], "misfortunes was my life prolong'd to tell": [0, 65535], "was my life prolong'd to tell sad": [0, 65535], "my life prolong'd to tell sad stories": [0, 65535], "life prolong'd to tell sad stories of": [0, 65535], "prolong'd to tell sad stories of my": [0, 65535], "to tell sad stories of my owne": [0, 65535], "tell sad stories of my owne mishaps": [0, 65535], "sad stories of my owne mishaps duke": [0, 65535], "stories of my owne mishaps duke and": [0, 65535], "of my owne mishaps duke and for": [0, 65535], "my owne mishaps duke and for the": [0, 65535], "owne mishaps duke and for the sake": [0, 65535], "mishaps duke and for the sake of": [0, 65535], "duke and for the sake of them": [0, 65535], "and for the sake of them thou": [0, 65535], "for the sake of them thou sorrowest": [0, 65535], "the sake of them thou sorrowest for": [0, 65535], "sake of them thou sorrowest for doe": [0, 65535], "of them thou sorrowest for doe me": [0, 65535], "them thou sorrowest for doe me the": [0, 65535], "thou sorrowest for doe me the fauour": [0, 65535], "sorrowest for doe me the fauour to": [0, 65535], "for doe me the fauour to dilate": [0, 65535], "doe me the fauour to dilate at": [0, 65535], "me the fauour to dilate at full": [0, 65535], "the fauour to dilate at full what": [0, 65535], "fauour to dilate at full what haue": [0, 65535], "to dilate at full what haue befalne": [0, 65535], "dilate at full what haue befalne of": [0, 65535], "at full what haue befalne of them": [0, 65535], "full what haue befalne of them and": [0, 65535], "what haue befalne of them and they": [0, 65535], "haue befalne of them and they till": [0, 65535], "befalne of them and they till now": [0, 65535], "of them and they till now merch": [0, 65535], "them and they till now merch my": [0, 65535], "and they till now merch my yongest": [0, 65535], "they till now merch my yongest boy": [0, 65535], "till now merch my yongest boy and": [0, 65535], "now merch my yongest boy and yet": [0, 65535], "merch my yongest boy and yet my": [0, 65535], "my yongest boy and yet my eldest": [0, 65535], "yongest boy and yet my eldest care": [0, 65535], "boy and yet my eldest care at": [0, 65535], "and yet my eldest care at eighteene": [0, 65535], "yet my eldest care at eighteene yeeres": [0, 65535], "my eldest care at eighteene yeeres became": [0, 65535], "eldest care at eighteene yeeres became inquisitiue": [0, 65535], "care at eighteene yeeres became inquisitiue after": [0, 65535], "at eighteene yeeres became inquisitiue after his": [0, 65535], "eighteene yeeres became inquisitiue after his brother": [0, 65535], "yeeres became inquisitiue after his brother and": [0, 65535], "became inquisitiue after his brother and importun'd": [0, 65535], "inquisitiue after his brother and importun'd me": [0, 65535], "after his brother and importun'd me that": [0, 65535], "his brother and importun'd me that his": [0, 65535], "brother and importun'd me that his attendant": [0, 65535], "and importun'd me that his attendant so": [0, 65535], "importun'd me that his attendant so his": [0, 65535], "me that his attendant so his case": [0, 65535], "that his attendant so his case was": [0, 65535], "his attendant so his case was like": [0, 65535], "attendant so his case was like reft": [0, 65535], "so his case was like reft of": [0, 65535], "his case was like reft of his": [0, 65535], "case was like reft of his brother": [0, 65535], "was like reft of his brother but": [0, 65535], "like reft of his brother but retain'd": [0, 65535], "reft of his brother but retain'd his": [0, 65535], "of his brother but retain'd his name": [0, 65535], "his brother but retain'd his name might": [0, 65535], "brother but retain'd his name might beare": [0, 65535], "but retain'd his name might beare him": [0, 65535], "retain'd his name might beare him company": [0, 65535], "his name might beare him company in": [0, 65535], "name might beare him company in the": [0, 65535], "might beare him company in the quest": [0, 65535], "beare him company in the quest of": [0, 65535], "him company in the quest of him": [0, 65535], "company in the quest of him whom": [0, 65535], "in the quest of him whom whil'st": [0, 65535], "the quest of him whom whil'st i": [0, 65535], "quest of him whom whil'st i laboured": [0, 65535], "of him whom whil'st i laboured of": [0, 65535], "him whom whil'st i laboured of a": [0, 65535], "whom whil'st i laboured of a loue": [0, 65535], "whil'st i laboured of a loue to": [0, 65535], "i laboured of a loue to see": [0, 65535], "laboured of a loue to see i": [0, 65535], "of a loue to see i hazarded": [0, 65535], "a loue to see i hazarded the": [0, 65535], "loue to see i hazarded the losse": [0, 65535], "to see i hazarded the losse of": [0, 65535], "see i hazarded the losse of whom": [0, 65535], "i hazarded the losse of whom i": [0, 65535], "hazarded the losse of whom i lou'd": [0, 65535], "the losse of whom i lou'd fiue": [0, 65535], "losse of whom i lou'd fiue sommers": [0, 65535], "of whom i lou'd fiue sommers haue": [0, 65535], "whom i lou'd fiue sommers haue i": [0, 65535], "i lou'd fiue sommers haue i spent": [0, 65535], "lou'd fiue sommers haue i spent in": [0, 65535], "fiue sommers haue i spent in farthest": [0, 65535], "sommers haue i spent in farthest greece": [0, 65535], "haue i spent in farthest greece roming": [0, 65535], "i spent in farthest greece roming cleane": [0, 65535], "spent in farthest greece roming cleane through": [0, 65535], "in farthest greece roming cleane through the": [0, 65535], "farthest greece roming cleane through the bounds": [0, 65535], "greece roming cleane through the bounds of": [0, 65535], "roming cleane through the bounds of asia": [0, 65535], "cleane through the bounds of asia and": [0, 65535], "through the bounds of asia and coasting": [0, 65535], "the bounds of asia and coasting homeward": [0, 65535], "bounds of asia and coasting homeward came": [0, 65535], "of asia and coasting homeward came to": [0, 65535], "asia and coasting homeward came to ephesus": [0, 65535], "and coasting homeward came to ephesus hopelesse": [0, 65535], "coasting homeward came to ephesus hopelesse to": [0, 65535], "homeward came to ephesus hopelesse to finde": [0, 65535], "came to ephesus hopelesse to finde yet": [0, 65535], "to ephesus hopelesse to finde yet loth": [0, 65535], "ephesus hopelesse to finde yet loth to": [0, 65535], "hopelesse to finde yet loth to leaue": [0, 65535], "to finde yet loth to leaue vnsought": [0, 65535], "finde yet loth to leaue vnsought or": [0, 65535], "yet loth to leaue vnsought or that": [0, 65535], "loth to leaue vnsought or that or": [0, 65535], "to leaue vnsought or that or any": [0, 65535], "leaue vnsought or that or any place": [0, 65535], "vnsought or that or any place that": [0, 65535], "or that or any place that harbours": [0, 65535], "that or any place that harbours men": [0, 65535], "or any place that harbours men but": [0, 65535], "any place that harbours men but heere": [0, 65535], "place that harbours men but heere must": [0, 65535], "that harbours men but heere must end": [0, 65535], "harbours men but heere must end the": [0, 65535], "men but heere must end the story": [0, 65535], "but heere must end the story of": [0, 65535], "heere must end the story of my": [0, 65535], "must end the story of my life": [0, 65535], "end the story of my life and": [0, 65535], "the story of my life and happy": [0, 65535], "story of my life and happy were": [0, 65535], "of my life and happy were i": [0, 65535], "my life and happy were i in": [0, 65535], "life and happy were i in my": [0, 65535], "and happy were i in my timelie": [0, 65535], "happy were i in my timelie death": [0, 65535], "were i in my timelie death could": [0, 65535], "i in my timelie death could all": [0, 65535], "in my timelie death could all my": [0, 65535], "my timelie death could all my trauells": [0, 65535], "timelie death could all my trauells warrant": [0, 65535], "death could all my trauells warrant me": [0, 65535], "could all my trauells warrant me they": [0, 65535], "all my trauells warrant me they liue": [0, 65535], "my trauells warrant me they liue duke": [0, 65535], "trauells warrant me they liue duke haplesse": [0, 65535], "warrant me they liue duke haplesse egeon": [0, 65535], "me they liue duke haplesse egeon whom": [0, 65535], "they liue duke haplesse egeon whom the": [0, 65535], "liue duke haplesse egeon whom the fates": [0, 65535], "duke haplesse egeon whom the fates haue": [0, 65535], "haplesse egeon whom the fates haue markt": [0, 65535], "egeon whom the fates haue markt to": [0, 65535], "whom the fates haue markt to beare": [0, 65535], "the fates haue markt to beare the": [0, 65535], "fates haue markt to beare the extremitie": [0, 65535], "haue markt to beare the extremitie of": [0, 65535], "markt to beare the extremitie of dire": [0, 65535], "to beare the extremitie of dire mishap": [0, 65535], "beare the extremitie of dire mishap now": [0, 65535], "the extremitie of dire mishap now trust": [0, 65535], "extremitie of dire mishap now trust me": [0, 65535], "of dire mishap now trust me were": [0, 65535], "dire mishap now trust me were it": [0, 65535], "mishap now trust me were it not": [0, 65535], "now trust me were it not against": [0, 65535], "trust me were it not against our": [0, 65535], "me were it not against our lawes": [0, 65535], "were it not against our lawes against": [0, 65535], "it not against our lawes against my": [0, 65535], "not against our lawes against my crowne": [0, 65535], "against our lawes against my crowne my": [0, 65535], "our lawes against my crowne my oath": [0, 65535], "lawes against my crowne my oath my": [0, 65535], "against my crowne my oath my dignity": [0, 65535], "my crowne my oath my dignity which": [0, 65535], "crowne my oath my dignity which princes": [0, 65535], "my oath my dignity which princes would": [0, 65535], "oath my dignity which princes would they": [0, 65535], "my dignity which princes would they may": [0, 65535], "dignity which princes would they may not": [0, 65535], "which princes would they may not disanull": [0, 65535], "princes would they may not disanull my": [0, 65535], "would they may not disanull my soule": [0, 65535], "they may not disanull my soule should": [0, 65535], "may not disanull my soule should sue": [0, 65535], "not disanull my soule should sue as": [0, 65535], "disanull my soule should sue as aduocate": [0, 65535], "my soule should sue as aduocate for": [0, 65535], "soule should sue as aduocate for thee": [0, 65535], "should sue as aduocate for thee but": [0, 65535], "sue as aduocate for thee but though": [0, 65535], "as aduocate for thee but though thou": [0, 65535], "aduocate for thee but though thou art": [0, 65535], "for thee but though thou art adiudged": [0, 65535], "thee but though thou art adiudged to": [0, 65535], "but though thou art adiudged to the": [0, 65535], "though thou art adiudged to the death": [0, 65535], "thou art adiudged to the death and": [0, 65535], "art adiudged to the death and passed": [0, 65535], "adiudged to the death and passed sentence": [0, 65535], "to the death and passed sentence may": [0, 65535], "the death and passed sentence may not": [0, 65535], "death and passed sentence may not be": [0, 65535], "and passed sentence may not be recal'd": [0, 65535], "passed sentence may not be recal'd but": [0, 65535], "sentence may not be recal'd but to": [0, 65535], "may not be recal'd but to our": [0, 65535], "not be recal'd but to our honours": [0, 65535], "be recal'd but to our honours great": [0, 65535], "recal'd but to our honours great disparagement": [0, 65535], "but to our honours great disparagement yet": [0, 65535], "to our honours great disparagement yet will": [0, 65535], "our honours great disparagement yet will i": [0, 65535], "honours great disparagement yet will i fauour": [0, 65535], "great disparagement yet will i fauour thee": [0, 65535], "disparagement yet will i fauour thee in": [0, 65535], "yet will i fauour thee in what": [0, 65535], "will i fauour thee in what i": [0, 65535], "i fauour thee in what i can": [0, 65535], "fauour thee in what i can therefore": [0, 65535], "thee in what i can therefore marchant": [0, 65535], "in what i can therefore marchant ile": [0, 65535], "what i can therefore marchant ile limit": [0, 65535], "i can therefore marchant ile limit thee": [0, 65535], "can therefore marchant ile limit thee this": [0, 65535], "therefore marchant ile limit thee this day": [0, 65535], "marchant ile limit thee this day to": [0, 65535], "ile limit thee this day to seeke": [0, 65535], "limit thee this day to seeke thy": [0, 65535], "thee this day to seeke thy helpe": [0, 65535], "this day to seeke thy helpe by": [0, 65535], "day to seeke thy helpe by beneficiall": [0, 65535], "to seeke thy helpe by beneficiall helpe": [0, 65535], "seeke thy helpe by beneficiall helpe try": [0, 65535], "thy helpe by beneficiall helpe try all": [0, 65535], "helpe by beneficiall helpe try all the": [0, 65535], "by beneficiall helpe try all the friends": [0, 65535], "beneficiall helpe try all the friends thou": [0, 65535], "helpe try all the friends thou hast": [0, 65535], "try all the friends thou hast in": [0, 65535], "all the friends thou hast in ephesus": [0, 65535], "the friends thou hast in ephesus beg": [0, 65535], "friends thou hast in ephesus beg thou": [0, 65535], "thou hast in ephesus beg thou or": [0, 65535], "hast in ephesus beg thou or borrow": [0, 65535], "in ephesus beg thou or borrow to": [0, 65535], "ephesus beg thou or borrow to make": [0, 65535], "beg thou or borrow to make vp": [0, 65535], "thou or borrow to make vp the": [0, 65535], "or borrow to make vp the summe": [0, 65535], "borrow to make vp the summe and": [0, 65535], "to make vp the summe and liue": [0, 65535], "make vp the summe and liue if": [0, 65535], "vp the summe and liue if no": [0, 65535], "the summe and liue if no then": [0, 65535], "summe and liue if no then thou": [0, 65535], "and liue if no then thou art": [0, 65535], "liue if no then thou art doom'd": [0, 65535], "if no then thou art doom'd to": [0, 65535], "no then thou art doom'd to die": [0, 65535], "then thou art doom'd to die iaylor": [0, 65535], "thou art doom'd to die iaylor take": [0, 65535], "art doom'd to die iaylor take him": [0, 65535], "doom'd to die iaylor take him to": [0, 65535], "to die iaylor take him to thy": [0, 65535], "die iaylor take him to thy custodie": [0, 65535], "iaylor take him to thy custodie iaylor": [0, 65535], "take him to thy custodie iaylor i": [0, 65535], "him to thy custodie iaylor i will": [0, 65535], "to thy custodie iaylor i will my": [0, 65535], "thy custodie iaylor i will my lord": [0, 65535], "custodie iaylor i will my lord merch": [0, 65535], "iaylor i will my lord merch hopelesse": [0, 65535], "i will my lord merch hopelesse and": [0, 65535], "will my lord merch hopelesse and helpelesse": [0, 65535], "my lord merch hopelesse and helpelesse doth": [0, 65535], "lord merch hopelesse and helpelesse doth egean": [0, 65535], "merch hopelesse and helpelesse doth egean wend": [0, 65535], "hopelesse and helpelesse doth egean wend but": [0, 65535], "and helpelesse doth egean wend but to": [0, 65535], "helpelesse doth egean wend but to procrastinate": [0, 65535], "doth egean wend but to procrastinate his": [0, 65535], "egean wend but to procrastinate his liuelesse": [0, 65535], "wend but to procrastinate his liuelesse end": [0, 65535], "but to procrastinate his liuelesse end exeunt": [0, 65535], "to procrastinate his liuelesse end exeunt enter": [0, 65535], "procrastinate his liuelesse end exeunt enter antipholis": [0, 65535], "his liuelesse end exeunt enter antipholis erotes": [0, 65535], "liuelesse end exeunt enter antipholis erotes a": [0, 65535], "end exeunt enter antipholis erotes a marchant": [0, 65535], "exeunt enter antipholis erotes a marchant and": [0, 65535], "enter antipholis erotes a marchant and dromio": [0, 65535], "antipholis erotes a marchant and dromio mer": [0, 65535], "erotes a marchant and dromio mer therefore": [0, 65535], "a marchant and dromio mer therefore giue": [0, 65535], "marchant and dromio mer therefore giue out": [0, 65535], "and dromio mer therefore giue out you": [0, 65535], "dromio mer therefore giue out you are": [0, 65535], "mer therefore giue out you are of": [0, 65535], "therefore giue out you are of epidamium": [0, 65535], "giue out you are of epidamium lest": [0, 65535], "out you are of epidamium lest that": [0, 65535], "you are of epidamium lest that your": [0, 65535], "are of epidamium lest that your goods": [0, 65535], "of epidamium lest that your goods too": [0, 65535], "epidamium lest that your goods too soone": [0, 65535], "lest that your goods too soone be": [0, 65535], "that your goods too soone be confiscate": [0, 65535], "your goods too soone be confiscate this": [0, 65535], "goods too soone be confiscate this very": [0, 65535], "too soone be confiscate this very day": [0, 65535], "soone be confiscate this very day a": [0, 65535], "be confiscate this very day a syracusian": [0, 65535], "confiscate this very day a syracusian marchant": [0, 65535], "this very day a syracusian marchant is": [0, 65535], "very day a syracusian marchant is apprehended": [0, 65535], "day a syracusian marchant is apprehended for": [0, 65535], "a syracusian marchant is apprehended for a": [0, 65535], "syracusian marchant is apprehended for a riuall": [0, 65535], "marchant is apprehended for a riuall here": [0, 65535], "is apprehended for a riuall here and": [0, 65535], "apprehended for a riuall here and not": [0, 65535], "for a riuall here and not being": [0, 65535], "a riuall here and not being able": [0, 65535], "riuall here and not being able to": [0, 65535], "here and not being able to buy": [0, 65535], "and not being able to buy out": [0, 65535], "not being able to buy out his": [0, 65535], "being able to buy out his life": [0, 65535], "able to buy out his life according": [0, 65535], "to buy out his life according to": [0, 65535], "buy out his life according to the": [0, 65535], "out his life according to the statute": [0, 65535], "his life according to the statute of": [0, 65535], "life according to the statute of the": [0, 65535], "according to the statute of the towne": [0, 65535], "to the statute of the towne dies": [0, 65535], "the statute of the towne dies ere": [0, 65535], "statute of the towne dies ere the": [0, 65535], "of the towne dies ere the wearie": [0, 65535], "the towne dies ere the wearie sunne": [0, 65535], "towne dies ere the wearie sunne set": [0, 65535], "dies ere the wearie sunne set in": [0, 65535], "ere the wearie sunne set in the": [0, 65535], "the wearie sunne set in the west": [0, 65535], "wearie sunne set in the west there": [0, 65535], "sunne set in the west there is": [0, 65535], "set in the west there is your": [0, 65535], "in the west there is your monie": [0, 65535], "the west there is your monie that": [0, 65535], "west there is your monie that i": [0, 65535], "there is your monie that i had": [0, 65535], "is your monie that i had to": [0, 65535], "your monie that i had to keepe": [0, 65535], "monie that i had to keepe ant": [0, 65535], "that i had to keepe ant goe": [0, 65535], "i had to keepe ant goe beare": [0, 65535], "had to keepe ant goe beare it": [0, 65535], "to keepe ant goe beare it to": [0, 65535], "keepe ant goe beare it to the": [0, 65535], "ant goe beare it to the centaure": [0, 65535], "goe beare it to the centaure where": [0, 65535], "beare it to the centaure where we": [0, 65535], "it to the centaure where we host": [0, 65535], "to the centaure where we host and": [0, 65535], "the centaure where we host and stay": [0, 65535], "centaure where we host and stay there": [0, 65535], "where we host and stay there dromio": [0, 65535], "we host and stay there dromio till": [0, 65535], "host and stay there dromio till i": [0, 65535], "and stay there dromio till i come": [0, 65535], "stay there dromio till i come to": [0, 65535], "there dromio till i come to thee": [0, 65535], "dromio till i come to thee within": [0, 65535], "till i come to thee within this": [0, 65535], "i come to thee within this houre": [0, 65535], "come to thee within this houre it": [0, 65535], "to thee within this houre it will": [0, 65535], "thee within this houre it will be": [0, 65535], "within this houre it will be dinner": [0, 65535], "this houre it will be dinner time": [0, 65535], "houre it will be dinner time till": [0, 65535], "it will be dinner time till that": [0, 65535], "will be dinner time till that ile": [0, 65535], "be dinner time till that ile view": [0, 65535], "dinner time till that ile view the": [0, 65535], "time till that ile view the manners": [0, 65535], "till that ile view the manners of": [0, 65535], "that ile view the manners of the": [0, 65535], "ile view the manners of the towne": [0, 65535], "view the manners of the towne peruse": [0, 65535], "the manners of the towne peruse the": [0, 65535], "manners of the towne peruse the traders": [0, 65535], "of the towne peruse the traders gaze": [0, 65535], "the towne peruse the traders gaze vpon": [0, 65535], "towne peruse the traders gaze vpon the": [0, 65535], "peruse the traders gaze vpon the buildings": [0, 65535], "the traders gaze vpon the buildings and": [0, 65535], "traders gaze vpon the buildings and then": [0, 65535], "gaze vpon the buildings and then returne": [0, 65535], "vpon the buildings and then returne and": [0, 65535], "the buildings and then returne and sleepe": [0, 65535], "buildings and then returne and sleepe within": [0, 65535], "and then returne and sleepe within mine": [0, 65535], "then returne and sleepe within mine inne": [0, 65535], "returne and sleepe within mine inne for": [0, 65535], "and sleepe within mine inne for with": [0, 65535], "sleepe within mine inne for with long": [0, 65535], "within mine inne for with long trauaile": [0, 65535], "mine inne for with long trauaile i": [0, 65535], "inne for with long trauaile i am": [0, 65535], "for with long trauaile i am stiffe": [0, 65535], "with long trauaile i am stiffe and": [0, 65535], "long trauaile i am stiffe and wearie": [0, 65535], "trauaile i am stiffe and wearie get": [0, 65535], "i am stiffe and wearie get thee": [0, 65535], "am stiffe and wearie get thee away": [0, 65535], "stiffe and wearie get thee away dro": [0, 65535], "and wearie get thee away dro many": [0, 65535], "wearie get thee away dro many a": [0, 65535], "get thee away dro many a man": [0, 65535], "thee away dro many a man would": [0, 65535], "away dro many a man would take": [0, 65535], "dro many a man would take you": [0, 65535], "many a man would take you at": [0, 65535], "a man would take you at your": [0, 65535], "man would take you at your word": [0, 65535], "would take you at your word and": [0, 65535], "take you at your word and goe": [0, 65535], "you at your word and goe indeede": [0, 65535], "at your word and goe indeede hauing": [0, 65535], "your word and goe indeede hauing so": [0, 65535], "word and goe indeede hauing so good": [0, 65535], "and goe indeede hauing so good a": [0, 65535], "goe indeede hauing so good a meane": [0, 65535], "indeede hauing so good a meane exit": [0, 65535], "hauing so good a meane exit dromio": [0, 65535], "so good a meane exit dromio ant": [0, 65535], "good a meane exit dromio ant a": [0, 65535], "a meane exit dromio ant a trustie": [0, 65535], "meane exit dromio ant a trustie villaine": [0, 65535], "exit dromio ant a trustie villaine sir": [0, 65535], "dromio ant a trustie villaine sir that": [0, 65535], "ant a trustie villaine sir that very": [0, 65535], "a trustie villaine sir that very oft": [0, 65535], "trustie villaine sir that very oft when": [0, 65535], "villaine sir that very oft when i": [0, 65535], "sir that very oft when i am": [0, 65535], "that very oft when i am dull": [0, 65535], "very oft when i am dull with": [0, 65535], "oft when i am dull with care": [0, 65535], "when i am dull with care and": [0, 65535], "i am dull with care and melancholly": [0, 65535], "am dull with care and melancholly lightens": [0, 65535], "dull with care and melancholly lightens my": [0, 65535], "with care and melancholly lightens my humour": [0, 65535], "care and melancholly lightens my humour with": [0, 65535], "and melancholly lightens my humour with his": [0, 65535], "melancholly lightens my humour with his merry": [0, 65535], "lightens my humour with his merry iests": [0, 65535], "my humour with his merry iests what": [0, 65535], "humour with his merry iests what will": [0, 65535], "with his merry iests what will you": [0, 65535], "his merry iests what will you walke": [0, 65535], "merry iests what will you walke with": [0, 65535], "iests what will you walke with me": [0, 65535], "what will you walke with me about": [0, 65535], "will you walke with me about the": [0, 65535], "you walke with me about the towne": [0, 65535], "walke with me about the towne and": [0, 65535], "with me about the towne and then": [0, 65535], "me about the towne and then goe": [0, 65535], "about the towne and then goe to": [0, 65535], "the towne and then goe to my": [0, 65535], "towne and then goe to my inne": [0, 65535], "and then goe to my inne and": [0, 65535], "then goe to my inne and dine": [0, 65535], "goe to my inne and dine with": [0, 65535], "to my inne and dine with me": [0, 65535], "my inne and dine with me e": [0, 65535], "inne and dine with me e mar": [0, 65535], "and dine with me e mar i": [0, 65535], "dine with me e mar i am": [0, 65535], "with me e mar i am inuited": [0, 65535], "me e mar i am inuited sir": [0, 65535], "e mar i am inuited sir to": [0, 65535], "mar i am inuited sir to certaine": [0, 65535], "i am inuited sir to certaine marchants": [0, 65535], "am inuited sir to certaine marchants of": [0, 65535], "inuited sir to certaine marchants of whom": [0, 65535], "sir to certaine marchants of whom i": [0, 65535], "to certaine marchants of whom i hope": [0, 65535], "certaine marchants of whom i hope to": [0, 65535], "marchants of whom i hope to make": [0, 65535], "of whom i hope to make much": [0, 65535], "whom i hope to make much benefit": [0, 65535], "i hope to make much benefit i": [0, 65535], "hope to make much benefit i craue": [0, 65535], "to make much benefit i craue your": [0, 65535], "make much benefit i craue your pardon": [0, 65535], "much benefit i craue your pardon soone": [0, 65535], "benefit i craue your pardon soone at": [0, 65535], "i craue your pardon soone at fiue": [0, 65535], "craue your pardon soone at fiue a": [0, 65535], "your pardon soone at fiue a clocke": [0, 65535], "pardon soone at fiue a clocke please": [0, 65535], "soone at fiue a clocke please you": [0, 65535], "at fiue a clocke please you ile": [0, 65535], "fiue a clocke please you ile meete": [0, 65535], "a clocke please you ile meete with": [0, 65535], "clocke please you ile meete with you": [0, 65535], "please you ile meete with you vpon": [0, 65535], "you ile meete with you vpon the": [0, 65535], "ile meete with you vpon the mart": [0, 65535], "meete with you vpon the mart and": [0, 65535], "with you vpon the mart and afterward": [0, 65535], "you vpon the mart and afterward consort": [0, 65535], "vpon the mart and afterward consort you": [0, 65535], "the mart and afterward consort you till": [0, 65535], "mart and afterward consort you till bed": [0, 65535], "and afterward consort you till bed time": [0, 65535], "afterward consort you till bed time my": [0, 65535], "consort you till bed time my present": [0, 65535], "you till bed time my present businesse": [0, 65535], "till bed time my present businesse cals": [0, 65535], "bed time my present businesse cals me": [0, 65535], "time my present businesse cals me from": [0, 65535], "my present businesse cals me from you": [0, 65535], "present businesse cals me from you now": [0, 65535], "businesse cals me from you now ant": [0, 65535], "cals me from you now ant farewell": [0, 65535], "me from you now ant farewell till": [0, 65535], "from you now ant farewell till then": [0, 65535], "you now ant farewell till then i": [0, 65535], "now ant farewell till then i will": [0, 65535], "ant farewell till then i will goe": [0, 65535], "farewell till then i will goe loose": [0, 65535], "till then i will goe loose my": [0, 65535], "then i will goe loose my selfe": [0, 65535], "i will goe loose my selfe and": [0, 65535], "will goe loose my selfe and wander": [0, 65535], "goe loose my selfe and wander vp": [0, 65535], "loose my selfe and wander vp and": [0, 65535], "my selfe and wander vp and downe": [0, 65535], "selfe and wander vp and downe to": [0, 65535], "and wander vp and downe to view": [0, 65535], "wander vp and downe to view the": [0, 65535], "vp and downe to view the citie": [0, 65535], "and downe to view the citie e": [0, 65535], "downe to view the citie e mar": [0, 65535], "to view the citie e mar sir": [0, 65535], "view the citie e mar sir i": [0, 65535], "the citie e mar sir i commend": [0, 65535], "citie e mar sir i commend you": [0, 65535], "e mar sir i commend you to": [0, 65535], "mar sir i commend you to your": [0, 65535], "sir i commend you to your owne": [0, 65535], "i commend you to your owne content": [0, 65535], "commend you to your owne content exeunt": [0, 65535], "you to your owne content exeunt ant": [0, 65535], "to your owne content exeunt ant he": [0, 65535], "your owne content exeunt ant he that": [0, 65535], "owne content exeunt ant he that commends": [0, 65535], "content exeunt ant he that commends me": [0, 65535], "exeunt ant he that commends me to": [0, 65535], "ant he that commends me to mine": [0, 65535], "he that commends me to mine owne": [0, 65535], "that commends me to mine owne content": [0, 65535], "commends me to mine owne content commends": [0, 65535], "me to mine owne content commends me": [0, 65535], "to mine owne content commends me to": [0, 65535], "mine owne content commends me to the": [0, 65535], "owne content commends me to the thing": [0, 65535], "content commends me to the thing i": [0, 65535], "commends me to the thing i cannot": [0, 65535], "me to the thing i cannot get": [0, 65535], "to the thing i cannot get i": [0, 65535], "the thing i cannot get i to": [0, 65535], "thing i cannot get i to the": [0, 65535], "i cannot get i to the world": [0, 65535], "cannot get i to the world am": [0, 65535], "get i to the world am like": [0, 65535], "i to the world am like a": [0, 65535], "to the world am like a drop": [0, 65535], "the world am like a drop of": [0, 65535], "world am like a drop of water": [0, 65535], "am like a drop of water that": [0, 65535], "like a drop of water that in": [0, 65535], "a drop of water that in the": [0, 65535], "drop of water that in the ocean": [0, 65535], "of water that in the ocean seekes": [0, 65535], "water that in the ocean seekes another": [0, 65535], "that in the ocean seekes another drop": [0, 65535], "in the ocean seekes another drop who": [0, 65535], "the ocean seekes another drop who falling": [0, 65535], "ocean seekes another drop who falling there": [0, 65535], "seekes another drop who falling there to": [0, 65535], "another drop who falling there to finde": [0, 65535], "drop who falling there to finde his": [0, 65535], "who falling there to finde his fellow": [0, 65535], "falling there to finde his fellow forth": [0, 65535], "there to finde his fellow forth vnseene": [0, 65535], "to finde his fellow forth vnseene inquisitiue": [0, 65535], "finde his fellow forth vnseene inquisitiue confounds": [0, 65535], "his fellow forth vnseene inquisitiue confounds himselfe": [0, 65535], "fellow forth vnseene inquisitiue confounds himselfe so": [0, 65535], "forth vnseene inquisitiue confounds himselfe so i": [0, 65535], "vnseene inquisitiue confounds himselfe so i to": [0, 65535], "inquisitiue confounds himselfe so i to finde": [0, 65535], "confounds himselfe so i to finde a": [0, 65535], "himselfe so i to finde a mother": [0, 65535], "so i to finde a mother and": [0, 65535], "i to finde a mother and a": [0, 65535], "to finde a mother and a brother": [0, 65535], "finde a mother and a brother in": [0, 65535], "a mother and a brother in quest": [0, 65535], "mother and a brother in quest of": [0, 65535], "and a brother in quest of them": [0, 65535], "a brother in quest of them vnhappie": [0, 65535], "brother in quest of them vnhappie a": [0, 65535], "in quest of them vnhappie a loose": [0, 65535], "quest of them vnhappie a loose my": [0, 65535], "of them vnhappie a loose my selfe": [0, 65535], "them vnhappie a loose my selfe enter": [0, 65535], "vnhappie a loose my selfe enter dromio": [0, 65535], "a loose my selfe enter dromio of": [0, 65535], "loose my selfe enter dromio of ephesus": [0, 65535], "my selfe enter dromio of ephesus here": [0, 65535], "selfe enter dromio of ephesus here comes": [0, 65535], "enter dromio of ephesus here comes the": [0, 65535], "dromio of ephesus here comes the almanacke": [0, 65535], "of ephesus here comes the almanacke of": [0, 65535], "ephesus here comes the almanacke of my": [0, 65535], "here comes the almanacke of my true": [0, 65535], "comes the almanacke of my true date": [0, 65535], "the almanacke of my true date what": [0, 65535], "almanacke of my true date what now": [0, 65535], "of my true date what now how": [0, 65535], "my true date what now how chance": [0, 65535], "true date what now how chance thou": [0, 65535], "date what now how chance thou art": [0, 65535], "what now how chance thou art return'd": [0, 65535], "now how chance thou art return'd so": [0, 65535], "how chance thou art return'd so soone": [0, 65535], "chance thou art return'd so soone e": [0, 65535], "thou art return'd so soone e dro": [0, 65535], "art return'd so soone e dro return'd": [0, 65535], "return'd so soone e dro return'd so": [0, 65535], "so soone e dro return'd so soone": [0, 65535], "soone e dro return'd so soone rather": [0, 65535], "e dro return'd so soone rather approacht": [0, 65535], "dro return'd so soone rather approacht too": [0, 65535], "return'd so soone rather approacht too late": [0, 65535], "so soone rather approacht too late the": [0, 65535], "soone rather approacht too late the capon": [0, 65535], "rather approacht too late the capon burnes": [0, 65535], "approacht too late the capon burnes the": [0, 65535], "too late the capon burnes the pig": [0, 65535], "late the capon burnes the pig fals": [0, 65535], "the capon burnes the pig fals from": [0, 65535], "capon burnes the pig fals from the": [0, 65535], "burnes the pig fals from the spit": [0, 65535], "the pig fals from the spit the": [0, 65535], "pig fals from the spit the clocke": [0, 65535], "fals from the spit the clocke hath": [0, 65535], "from the spit the clocke hath strucken": [0, 65535], "the spit the clocke hath strucken twelue": [0, 65535], "spit the clocke hath strucken twelue vpon": [0, 65535], "the clocke hath strucken twelue vpon the": [0, 65535], "clocke hath strucken twelue vpon the bell": [0, 65535], "hath strucken twelue vpon the bell my": [0, 65535], "strucken twelue vpon the bell my mistris": [0, 65535], "twelue vpon the bell my mistris made": [0, 65535], "vpon the bell my mistris made it": [0, 65535], "the bell my mistris made it one": [0, 65535], "bell my mistris made it one vpon": [0, 65535], "my mistris made it one vpon my": [0, 65535], "mistris made it one vpon my cheeke": [0, 65535], "made it one vpon my cheeke she": [0, 65535], "it one vpon my cheeke she is": [0, 65535], "one vpon my cheeke she is so": [0, 65535], "vpon my cheeke she is so hot": [0, 65535], "my cheeke she is so hot because": [0, 65535], "cheeke she is so hot because the": [0, 65535], "she is so hot because the meate": [0, 65535], "is so hot because the meate is": [0, 65535], "so hot because the meate is colde": [0, 65535], "hot because the meate is colde the": [0, 65535], "because the meate is colde the meate": [0, 65535], "the meate is colde the meate is": [0, 65535], "meate is colde the meate is colde": [0, 65535], "is colde the meate is colde because": [0, 65535], "colde the meate is colde because you": [0, 65535], "the meate is colde because you come": [0, 65535], "meate is colde because you come not": [0, 65535], "is colde because you come not home": [0, 65535], "colde because you come not home you": [0, 65535], "because you come not home you come": [0, 65535], "you come not home you come not": [0, 65535], "come not home you come not home": [0, 65535], "not home you come not home because": [0, 65535], "home you come not home because you": [0, 65535], "you come not home because you haue": [0, 65535], "come not home because you haue no": [0, 65535], "not home because you haue no stomacke": [0, 65535], "home because you haue no stomacke you": [0, 65535], "because you haue no stomacke you haue": [0, 65535], "you haue no stomacke you haue no": [0, 65535], "haue no stomacke you haue no stomacke": [0, 65535], "no stomacke you haue no stomacke hauing": [0, 65535], "stomacke you haue no stomacke hauing broke": [0, 65535], "you haue no stomacke hauing broke your": [0, 65535], "haue no stomacke hauing broke your fast": [0, 65535], "no stomacke hauing broke your fast but": [0, 65535], "stomacke hauing broke your fast but we": [0, 65535], "hauing broke your fast but we that": [0, 65535], "broke your fast but we that know": [0, 65535], "your fast but we that know what": [0, 65535], "fast but we that know what 'tis": [0, 65535], "but we that know what 'tis to": [0, 65535], "we that know what 'tis to fast": [0, 65535], "that know what 'tis to fast and": [0, 65535], "know what 'tis to fast and pray": [0, 65535], "what 'tis to fast and pray are": [0, 65535], "'tis to fast and pray are penitent": [0, 65535], "to fast and pray are penitent for": [0, 65535], "fast and pray are penitent for your": [0, 65535], "and pray are penitent for your default": [0, 65535], "pray are penitent for your default to": [0, 65535], "are penitent for your default to day": [0, 65535], "penitent for your default to day ant": [0, 65535], "for your default to day ant stop": [0, 65535], "your default to day ant stop in": [0, 65535], "default to day ant stop in your": [0, 65535], "to day ant stop in your winde": [0, 65535], "day ant stop in your winde sir": [0, 65535], "ant stop in your winde sir tell": [0, 65535], "stop in your winde sir tell me": [0, 65535], "in your winde sir tell me this": [0, 65535], "your winde sir tell me this i": [0, 65535], "winde sir tell me this i pray": [0, 65535], "sir tell me this i pray where": [0, 65535], "tell me this i pray where haue": [0, 65535], "me this i pray where haue you": [0, 65535], "this i pray where haue you left": [0, 65535], "i pray where haue you left the": [0, 65535], "pray where haue you left the mony": [0, 65535], "where haue you left the mony that": [0, 65535], "haue you left the mony that i": [0, 65535], "you left the mony that i gaue": [0, 65535], "left the mony that i gaue you": [0, 65535], "the mony that i gaue you e": [0, 65535], "mony that i gaue you e dro": [0, 65535], "that i gaue you e dro oh": [0, 65535], "i gaue you e dro oh sixe": [0, 65535], "gaue you e dro oh sixe pence": [0, 65535], "you e dro oh sixe pence that": [0, 65535], "e dro oh sixe pence that i": [0, 65535], "dro oh sixe pence that i had": [0, 65535], "oh sixe pence that i had a": [0, 65535], "sixe pence that i had a wensday": [0, 65535], "pence that i had a wensday last": [0, 65535], "that i had a wensday last to": [0, 65535], "i had a wensday last to pay": [0, 65535], "had a wensday last to pay the": [0, 65535], "a wensday last to pay the sadler": [0, 65535], "wensday last to pay the sadler for": [0, 65535], "last to pay the sadler for my": [0, 65535], "to pay the sadler for my mistris": [0, 65535], "pay the sadler for my mistris crupper": [0, 65535], "the sadler for my mistris crupper the": [0, 65535], "sadler for my mistris crupper the sadler": [0, 65535], "for my mistris crupper the sadler had": [0, 65535], "my mistris crupper the sadler had it": [0, 65535], "mistris crupper the sadler had it sir": [0, 65535], "crupper the sadler had it sir i": [0, 65535], "the sadler had it sir i kept": [0, 65535], "sadler had it sir i kept it": [0, 65535], "had it sir i kept it not": [0, 65535], "it sir i kept it not ant": [0, 65535], "sir i kept it not ant i": [0, 65535], "i kept it not ant i am": [0, 65535], "kept it not ant i am not": [0, 65535], "it not ant i am not in": [0, 65535], "not ant i am not in a": [0, 65535], "ant i am not in a sportiue": [0, 65535], "i am not in a sportiue humor": [0, 65535], "am not in a sportiue humor now": [0, 65535], "not in a sportiue humor now tell": [0, 65535], "in a sportiue humor now tell me": [0, 65535], "a sportiue humor now tell me and": [0, 65535], "sportiue humor now tell me and dally": [0, 65535], "humor now tell me and dally not": [0, 65535], "now tell me and dally not where": [0, 65535], "tell me and dally not where is": [0, 65535], "me and dally not where is the": [0, 65535], "and dally not where is the monie": [0, 65535], "dally not where is the monie we": [0, 65535], "not where is the monie we being": [0, 65535], "where is the monie we being strangers": [0, 65535], "is the monie we being strangers here": [0, 65535], "the monie we being strangers here how": [0, 65535], "monie we being strangers here how dar'st": [0, 65535], "we being strangers here how dar'st thou": [0, 65535], "being strangers here how dar'st thou trust": [0, 65535], "strangers here how dar'st thou trust so": [0, 65535], "here how dar'st thou trust so great": [0, 65535], "how dar'st thou trust so great a": [0, 65535], "dar'st thou trust so great a charge": [0, 65535], "thou trust so great a charge from": [0, 65535], "trust so great a charge from thine": [0, 65535], "so great a charge from thine owne": [0, 65535], "great a charge from thine owne custodie": [0, 65535], "a charge from thine owne custodie e": [0, 65535], "charge from thine owne custodie e dro": [0, 65535], "from thine owne custodie e dro i": [0, 65535], "thine owne custodie e dro i pray": [0, 65535], "owne custodie e dro i pray you": [0, 65535], "custodie e dro i pray you iest": [0, 65535], "e dro i pray you iest sir": [0, 65535], "dro i pray you iest sir as": [0, 65535], "i pray you iest sir as you": [0, 65535], "pray you iest sir as you sit": [0, 65535], "you iest sir as you sit at": [0, 65535], "iest sir as you sit at dinner": [0, 65535], "sir as you sit at dinner i": [0, 65535], "as you sit at dinner i from": [0, 65535], "you sit at dinner i from my": [0, 65535], "sit at dinner i from my mistris": [0, 65535], "at dinner i from my mistris come": [0, 65535], "dinner i from my mistris come to": [0, 65535], "i from my mistris come to you": [0, 65535], "from my mistris come to you in": [0, 65535], "my mistris come to you in post": [0, 65535], "mistris come to you in post if": [0, 65535], "come to you in post if i": [0, 65535], "to you in post if i returne": [0, 65535], "you in post if i returne i": [0, 65535], "in post if i returne i shall": [0, 65535], "post if i returne i shall be": [0, 65535], "if i returne i shall be post": [0, 65535], "i returne i shall be post indeede": [0, 65535], "returne i shall be post indeede for": [0, 65535], "i shall be post indeede for she": [0, 65535], "shall be post indeede for she will": [0, 65535], "be post indeede for she will scoure": [0, 65535], "post indeede for she will scoure your": [0, 65535], "indeede for she will scoure your fault": [0, 65535], "for she will scoure your fault vpon": [0, 65535], "she will scoure your fault vpon my": [0, 65535], "will scoure your fault vpon my pate": [0, 65535], "scoure your fault vpon my pate me": [0, 65535], "your fault vpon my pate me thinkes": [0, 65535], "fault vpon my pate me thinkes your": [0, 65535], "vpon my pate me thinkes your maw": [0, 65535], "my pate me thinkes your maw like": [0, 65535], "pate me thinkes your maw like mine": [0, 65535], "me thinkes your maw like mine should": [0, 65535], "thinkes your maw like mine should be": [0, 65535], "your maw like mine should be your": [0, 65535], "maw like mine should be your cooke": [0, 65535], "like mine should be your cooke and": [0, 65535], "mine should be your cooke and strike": [0, 65535], "should be your cooke and strike you": [0, 65535], "be your cooke and strike you home": [0, 65535], "your cooke and strike you home without": [0, 65535], "cooke and strike you home without a": [0, 65535], "and strike you home without a messenger": [0, 65535], "strike you home without a messenger ant": [0, 65535], "you home without a messenger ant come": [0, 65535], "home without a messenger ant come dromio": [0, 65535], "without a messenger ant come dromio come": [0, 65535], "a messenger ant come dromio come these": [0, 65535], "messenger ant come dromio come these iests": [0, 65535], "ant come dromio come these iests are": [0, 65535], "come dromio come these iests are out": [0, 65535], "dromio come these iests are out of": [0, 65535], "come these iests are out of season": [0, 65535], "these iests are out of season reserue": [0, 65535], "iests are out of season reserue them": [0, 65535], "are out of season reserue them till": [0, 65535], "out of season reserue them till a": [0, 65535], "of season reserue them till a merrier": [0, 65535], "season reserue them till a merrier houre": [0, 65535], "reserue them till a merrier houre then": [0, 65535], "them till a merrier houre then this": [0, 65535], "till a merrier houre then this where": [0, 65535], "a merrier houre then this where is": [0, 65535], "merrier houre then this where is the": [0, 65535], "houre then this where is the gold": [0, 65535], "then this where is the gold i": [0, 65535], "this where is the gold i gaue": [0, 65535], "where is the gold i gaue in": [0, 65535], "is the gold i gaue in charge": [0, 65535], "the gold i gaue in charge to": [0, 65535], "gold i gaue in charge to thee": [0, 65535], "i gaue in charge to thee e": [0, 65535], "gaue in charge to thee e dro": [0, 65535], "in charge to thee e dro to": [0, 65535], "charge to thee e dro to me": [0, 65535], "to thee e dro to me sir": [0, 65535], "thee e dro to me sir why": [0, 65535], "e dro to me sir why you": [0, 65535], "dro to me sir why you gaue": [0, 65535], "to me sir why you gaue no": [0, 65535], "me sir why you gaue no gold": [0, 65535], "sir why you gaue no gold to": [0, 65535], "why you gaue no gold to me": [0, 65535], "you gaue no gold to me ant": [0, 65535], "gaue no gold to me ant come": [0, 65535], "no gold to me ant come on": [0, 65535], "gold to me ant come on sir": [0, 65535], "to me ant come on sir knaue": [0, 65535], "me ant come on sir knaue haue": [0, 65535], "ant come on sir knaue haue done": [0, 65535], "come on sir knaue haue done your": [0, 65535], "on sir knaue haue done your foolishnes": [0, 65535], "sir knaue haue done your foolishnes and": [0, 65535], "knaue haue done your foolishnes and tell": [0, 65535], "haue done your foolishnes and tell me": [0, 65535], "done your foolishnes and tell me how": [0, 65535], "your foolishnes and tell me how thou": [0, 65535], "foolishnes and tell me how thou hast": [0, 65535], "and tell me how thou hast dispos'd": [0, 65535], "tell me how thou hast dispos'd thy": [0, 65535], "me how thou hast dispos'd thy charge": [0, 65535], "how thou hast dispos'd thy charge e": [0, 65535], "thou hast dispos'd thy charge e dro": [0, 65535], "hast dispos'd thy charge e dro my": [0, 65535], "dispos'd thy charge e dro my charge": [0, 65535], "thy charge e dro my charge was": [0, 65535], "charge e dro my charge was but": [0, 65535], "e dro my charge was but to": [0, 65535], "dro my charge was but to fetch": [0, 65535], "my charge was but to fetch you": [0, 65535], "charge was but to fetch you from": [0, 65535], "was but to fetch you from the": [0, 65535], "but to fetch you from the mart": [0, 65535], "to fetch you from the mart home": [0, 65535], "fetch you from the mart home to": [0, 65535], "you from the mart home to your": [0, 65535], "from the mart home to your house": [0, 65535], "the mart home to your house the": [0, 65535], "mart home to your house the ph\u0153nix": [0, 65535], "home to your house the ph\u0153nix sir": [0, 65535], "to your house the ph\u0153nix sir to": [0, 65535], "your house the ph\u0153nix sir to dinner": [0, 65535], "house the ph\u0153nix sir to dinner my": [0, 65535], "the ph\u0153nix sir to dinner my mistris": [0, 65535], "ph\u0153nix sir to dinner my mistris and": [0, 65535], "sir to dinner my mistris and her": [0, 65535], "to dinner my mistris and her sister": [0, 65535], "dinner my mistris and her sister staies": [0, 65535], "my mistris and her sister staies for": [0, 65535], "mistris and her sister staies for you": [0, 65535], "and her sister staies for you ant": [0, 65535], "her sister staies for you ant now": [0, 65535], "sister staies for you ant now as": [0, 65535], "staies for you ant now as i": [0, 65535], "for you ant now as i am": [0, 65535], "you ant now as i am a": [0, 65535], "ant now as i am a christian": [0, 65535], "now as i am a christian answer": [0, 65535], "as i am a christian answer me": [0, 65535], "i am a christian answer me in": [0, 65535], "am a christian answer me in what": [0, 65535], "a christian answer me in what safe": [0, 65535], "christian answer me in what safe place": [0, 65535], "answer me in what safe place you": [0, 65535], "me in what safe place you haue": [0, 65535], "in what safe place you haue bestow'd": [0, 65535], "what safe place you haue bestow'd my": [0, 65535], "safe place you haue bestow'd my monie": [0, 65535], "place you haue bestow'd my monie or": [0, 65535], "you haue bestow'd my monie or i": [0, 65535], "haue bestow'd my monie or i shall": [0, 65535], "bestow'd my monie or i shall breake": [0, 65535], "my monie or i shall breake that": [0, 65535], "monie or i shall breake that merrie": [0, 65535], "or i shall breake that merrie sconce": [0, 65535], "i shall breake that merrie sconce of": [0, 65535], "shall breake that merrie sconce of yours": [0, 65535], "breake that merrie sconce of yours that": [0, 65535], "that merrie sconce of yours that stands": [0, 65535], "merrie sconce of yours that stands on": [0, 65535], "sconce of yours that stands on tricks": [0, 65535], "of yours that stands on tricks when": [0, 65535], "yours that stands on tricks when i": [0, 65535], "that stands on tricks when i am": [0, 65535], "stands on tricks when i am vndispos'd": [0, 65535], "on tricks when i am vndispos'd where": [0, 65535], "tricks when i am vndispos'd where is": [0, 65535], "when i am vndispos'd where is the": [0, 65535], "i am vndispos'd where is the thousand": [0, 65535], "am vndispos'd where is the thousand markes": [0, 65535], "vndispos'd where is the thousand markes thou": [0, 65535], "where is the thousand markes thou hadst": [0, 65535], "is the thousand markes thou hadst of": [0, 65535], "the thousand markes thou hadst of me": [0, 65535], "thousand markes thou hadst of me e": [0, 65535], "markes thou hadst of me e dro": [0, 65535], "thou hadst of me e dro i": [0, 65535], "hadst of me e dro i haue": [0, 65535], "of me e dro i haue some": [0, 65535], "me e dro i haue some markes": [0, 65535], "e dro i haue some markes of": [0, 65535], "dro i haue some markes of yours": [0, 65535], "i haue some markes of yours vpon": [0, 65535], "haue some markes of yours vpon my": [0, 65535], "some markes of yours vpon my pate": [0, 65535], "markes of yours vpon my pate some": [0, 65535], "of yours vpon my pate some of": [0, 65535], "yours vpon my pate some of my": [0, 65535], "vpon my pate some of my mistris": [0, 65535], "my pate some of my mistris markes": [0, 65535], "pate some of my mistris markes vpon": [0, 65535], "some of my mistris markes vpon my": [0, 65535], "of my mistris markes vpon my shoulders": [0, 65535], "my mistris markes vpon my shoulders but": [0, 65535], "mistris markes vpon my shoulders but not": [0, 65535], "markes vpon my shoulders but not a": [0, 65535], "vpon my shoulders but not a thousand": [0, 65535], "my shoulders but not a thousand markes": [0, 65535], "shoulders but not a thousand markes betweene": [0, 65535], "but not a thousand markes betweene you": [0, 65535], "not a thousand markes betweene you both": [0, 65535], "a thousand markes betweene you both if": [0, 65535], "thousand markes betweene you both if i": [0, 65535], "markes betweene you both if i should": [0, 65535], "betweene you both if i should pay": [0, 65535], "you both if i should pay your": [0, 65535], "both if i should pay your worship": [0, 65535], "if i should pay your worship those": [0, 65535], "i should pay your worship those againe": [0, 65535], "should pay your worship those againe perchance": [0, 65535], "pay your worship those againe perchance you": [0, 65535], "your worship those againe perchance you will": [0, 65535], "worship those againe perchance you will not": [0, 65535], "those againe perchance you will not beare": [0, 65535], "againe perchance you will not beare them": [0, 65535], "perchance you will not beare them patiently": [0, 65535], "you will not beare them patiently ant": [0, 65535], "will not beare them patiently ant thy": [0, 65535], "not beare them patiently ant thy mistris": [0, 65535], "beare them patiently ant thy mistris markes": [0, 65535], "them patiently ant thy mistris markes what": [0, 65535], "patiently ant thy mistris markes what mistris": [0, 65535], "ant thy mistris markes what mistris slaue": [0, 65535], "thy mistris markes what mistris slaue hast": [0, 65535], "mistris markes what mistris slaue hast thou": [0, 65535], "markes what mistris slaue hast thou e": [0, 65535], "what mistris slaue hast thou e dro": [0, 65535], "mistris slaue hast thou e dro your": [0, 65535], "slaue hast thou e dro your worships": [0, 65535], "hast thou e dro your worships wife": [0, 65535], "thou e dro your worships wife my": [0, 65535], "e dro your worships wife my mistris": [0, 65535], "dro your worships wife my mistris at": [0, 65535], "your worships wife my mistris at the": [0, 65535], "worships wife my mistris at the ph\u0153nix": [0, 65535], "wife my mistris at the ph\u0153nix she": [0, 65535], "my mistris at the ph\u0153nix she that": [0, 65535], "mistris at the ph\u0153nix she that doth": [0, 65535], "at the ph\u0153nix she that doth fast": [0, 65535], "the ph\u0153nix she that doth fast till": [0, 65535], "ph\u0153nix she that doth fast till you": [0, 65535], "she that doth fast till you come": [0, 65535], "that doth fast till you come home": [0, 65535], "doth fast till you come home to": [0, 65535], "fast till you come home to dinner": [0, 65535], "till you come home to dinner and": [0, 65535], "you come home to dinner and praies": [0, 65535], "come home to dinner and praies that": [0, 65535], "home to dinner and praies that you": [0, 65535], "to dinner and praies that you will": [0, 65535], "dinner and praies that you will hie": [0, 65535], "and praies that you will hie you": [0, 65535], "praies that you will hie you home": [0, 65535], "that you will hie you home to": [0, 65535], "you will hie you home to dinner": [0, 65535], "will hie you home to dinner ant": [0, 65535], "hie you home to dinner ant what": [0, 65535], "you home to dinner ant what wilt": [0, 65535], "home to dinner ant what wilt thou": [0, 65535], "to dinner ant what wilt thou flout": [0, 65535], "dinner ant what wilt thou flout me": [0, 65535], "ant what wilt thou flout me thus": [0, 65535], "what wilt thou flout me thus vnto": [0, 65535], "wilt thou flout me thus vnto my": [0, 65535], "thou flout me thus vnto my face": [0, 65535], "flout me thus vnto my face being": [0, 65535], "me thus vnto my face being forbid": [0, 65535], "thus vnto my face being forbid there": [0, 65535], "vnto my face being forbid there take": [0, 65535], "my face being forbid there take you": [0, 65535], "face being forbid there take you that": [0, 65535], "being forbid there take you that sir": [0, 65535], "forbid there take you that sir knaue": [0, 65535], "there take you that sir knaue e": [0, 65535], "take you that sir knaue e dro": [0, 65535], "you that sir knaue e dro what": [0, 65535], "that sir knaue e dro what meane": [0, 65535], "sir knaue e dro what meane you": [0, 65535], "knaue e dro what meane you sir": [0, 65535], "e dro what meane you sir for": [0, 65535], "dro what meane you sir for god": [0, 65535], "what meane you sir for god sake": [0, 65535], "meane you sir for god sake hold": [0, 65535], "you sir for god sake hold your": [0, 65535], "sir for god sake hold your hands": [0, 65535], "for god sake hold your hands nay": [0, 65535], "god sake hold your hands nay and": [0, 65535], "sake hold your hands nay and you": [0, 65535], "hold your hands nay and you will": [0, 65535], "your hands nay and you will not": [0, 65535], "hands nay and you will not sir": [0, 65535], "nay and you will not sir ile": [0, 65535], "and you will not sir ile take": [0, 65535], "you will not sir ile take my": [0, 65535], "will not sir ile take my heeles": [0, 65535], "not sir ile take my heeles exeunt": [0, 65535], "sir ile take my heeles exeunt dromio": [0, 65535], "ile take my heeles exeunt dromio ep": [0, 65535], "take my heeles exeunt dromio ep ant": [0, 65535], "my heeles exeunt dromio ep ant vpon": [0, 65535], "heeles exeunt dromio ep ant vpon my": [0, 65535], "exeunt dromio ep ant vpon my life": [0, 65535], "dromio ep ant vpon my life by": [0, 65535], "ep ant vpon my life by some": [0, 65535], "ant vpon my life by some deuise": [0, 65535], "vpon my life by some deuise or": [0, 65535], "my life by some deuise or other": [0, 65535], "life by some deuise or other the": [0, 65535], "by some deuise or other the villaine": [0, 65535], "some deuise or other the villaine is": [0, 65535], "deuise or other the villaine is ore": [0, 65535], "or other the villaine is ore wrought": [0, 65535], "other the villaine is ore wrought of": [0, 65535], "the villaine is ore wrought of all": [0, 65535], "villaine is ore wrought of all my": [0, 65535], "is ore wrought of all my monie": [0, 65535], "ore wrought of all my monie they": [0, 65535], "wrought of all my monie they say": [0, 65535], "of all my monie they say this": [0, 65535], "all my monie they say this towne": [0, 65535], "my monie they say this towne is": [0, 65535], "monie they say this towne is full": [0, 65535], "they say this towne is full of": [0, 65535], "say this towne is full of cosenage": [0, 65535], "this towne is full of cosenage as": [0, 65535], "towne is full of cosenage as nimble": [0, 65535], "is full of cosenage as nimble iuglers": [0, 65535], "full of cosenage as nimble iuglers that": [0, 65535], "of cosenage as nimble iuglers that deceiue": [0, 65535], "cosenage as nimble iuglers that deceiue the": [0, 65535], "as nimble iuglers that deceiue the eie": [0, 65535], "nimble iuglers that deceiue the eie darke": [0, 65535], "iuglers that deceiue the eie darke working": [0, 65535], "that deceiue the eie darke working sorcerers": [0, 65535], "deceiue the eie darke working sorcerers that": [0, 65535], "the eie darke working sorcerers that change": [0, 65535], "eie darke working sorcerers that change the": [0, 65535], "darke working sorcerers that change the minde": [0, 65535], "working sorcerers that change the minde soule": [0, 65535], "sorcerers that change the minde soule killing": [0, 65535], "that change the minde soule killing witches": [0, 65535], "change the minde soule killing witches that": [0, 65535], "the minde soule killing witches that deforme": [0, 65535], "minde soule killing witches that deforme the": [0, 65535], "soule killing witches that deforme the bodie": [0, 65535], "killing witches that deforme the bodie disguised": [0, 65535], "witches that deforme the bodie disguised cheaters": [0, 65535], "that deforme the bodie disguised cheaters prating": [0, 65535], "deforme the bodie disguised cheaters prating mountebankes": [0, 65535], "the bodie disguised cheaters prating mountebankes and": [0, 65535], "bodie disguised cheaters prating mountebankes and manie": [0, 65535], "disguised cheaters prating mountebankes and manie such": [0, 65535], "cheaters prating mountebankes and manie such like": [0, 65535], "prating mountebankes and manie such like liberties": [0, 65535], "mountebankes and manie such like liberties of": [0, 65535], "and manie such like liberties of sinne": [0, 65535], "manie such like liberties of sinne if": [0, 65535], "such like liberties of sinne if it": [0, 65535], "like liberties of sinne if it proue": [0, 65535], "liberties of sinne if it proue so": [0, 65535], "of sinne if it proue so i": [0, 65535], "sinne if it proue so i will": [0, 65535], "if it proue so i will be": [0, 65535], "it proue so i will be gone": [0, 65535], "proue so i will be gone the": [0, 65535], "so i will be gone the sooner": [0, 65535], "i will be gone the sooner ile": [0, 65535], "will be gone the sooner ile to": [0, 65535], "be gone the sooner ile to the": [0, 65535], "gone the sooner ile to the centaur": [0, 65535], "the sooner ile to the centaur to": [0, 65535], "sooner ile to the centaur to goe": [0, 65535], "ile to the centaur to goe seeke": [0, 65535], "to the centaur to goe seeke this": [0, 65535], "the centaur to goe seeke this slaue": [0, 65535], "centaur to goe seeke this slaue i": [0, 65535], "to goe seeke this slaue i greatly": [0, 65535], "goe seeke this slaue i greatly feare": [0, 65535], "seeke this slaue i greatly feare my": [0, 65535], "this slaue i greatly feare my monie": [0, 65535], "slaue i greatly feare my monie is": [0, 65535], "i greatly feare my monie is not": [0, 65535], "greatly feare my monie is not safe": [0, 65535], "the comedie of errors actus primus scena prima": [0, 65535], "comedie of errors actus primus scena prima enter": [0, 65535], "of errors actus primus scena prima enter the": [0, 65535], "errors actus primus scena prima enter the duke": [0, 65535], "actus primus scena prima enter the duke of": [0, 65535], "primus scena prima enter the duke of ephesus": [0, 65535], "scena prima enter the duke of ephesus with": [0, 65535], "prima enter the duke of ephesus with the": [0, 65535], "enter the duke of ephesus with the merchant": [0, 65535], "the duke of ephesus with the merchant of": [0, 65535], "duke of ephesus with the merchant of siracusa": [0, 65535], "of ephesus with the merchant of siracusa iaylor": [0, 65535], "ephesus with the merchant of siracusa iaylor and": [0, 65535], "with the merchant of siracusa iaylor and other": [0, 65535], "the merchant of siracusa iaylor and other attendants": [0, 65535], "merchant of siracusa iaylor and other attendants marchant": [0, 65535], "of siracusa iaylor and other attendants marchant broceed": [0, 65535], "siracusa iaylor and other attendants marchant broceed solinus": [0, 65535], "iaylor and other attendants marchant broceed solinus to": [0, 65535], "and other attendants marchant broceed solinus to procure": [0, 65535], "other attendants marchant broceed solinus to procure my": [0, 65535], "attendants marchant broceed solinus to procure my fall": [0, 65535], "marchant broceed solinus to procure my fall and": [0, 65535], "broceed solinus to procure my fall and by": [0, 65535], "solinus to procure my fall and by the": [0, 65535], "to procure my fall and by the doome": [0, 65535], "procure my fall and by the doome of": [0, 65535], "my fall and by the doome of death": [0, 65535], "fall and by the doome of death end": [0, 65535], "and by the doome of death end woes": [0, 65535], "by the doome of death end woes and": [0, 65535], "the doome of death end woes and all": [0, 65535], "doome of death end woes and all duke": [0, 65535], "of death end woes and all duke merchant": [0, 65535], "death end woes and all duke merchant of": [0, 65535], "end woes and all duke merchant of siracusa": [0, 65535], "woes and all duke merchant of siracusa plead": [0, 65535], "and all duke merchant of siracusa plead no": [0, 65535], "all duke merchant of siracusa plead no more": [0, 65535], "duke merchant of siracusa plead no more i": [0, 65535], "merchant of siracusa plead no more i am": [0, 65535], "of siracusa plead no more i am not": [0, 65535], "siracusa plead no more i am not partiall": [0, 65535], "plead no more i am not partiall to": [0, 65535], "no more i am not partiall to infringe": [0, 65535], "more i am not partiall to infringe our": [0, 65535], "i am not partiall to infringe our lawes": [0, 65535], "am not partiall to infringe our lawes the": [0, 65535], "not partiall to infringe our lawes the enmity": [0, 65535], "partiall to infringe our lawes the enmity and": [0, 65535], "to infringe our lawes the enmity and discord": [0, 65535], "infringe our lawes the enmity and discord which": [0, 65535], "our lawes the enmity and discord which of": [0, 65535], "lawes the enmity and discord which of late": [0, 65535], "the enmity and discord which of late sprung": [0, 65535], "enmity and discord which of late sprung from": [0, 65535], "and discord which of late sprung from the": [0, 65535], "discord which of late sprung from the rancorous": [0, 65535], "which of late sprung from the rancorous outrage": [0, 65535], "of late sprung from the rancorous outrage of": [0, 65535], "late sprung from the rancorous outrage of your": [0, 65535], "sprung from the rancorous outrage of your duke": [0, 65535], "from the rancorous outrage of your duke to": [0, 65535], "the rancorous outrage of your duke to merchants": [0, 65535], "rancorous outrage of your duke to merchants our": [0, 65535], "outrage of your duke to merchants our well": [0, 65535], "of your duke to merchants our well dealing": [0, 65535], "your duke to merchants our well dealing countrimen": [0, 65535], "duke to merchants our well dealing countrimen who": [0, 65535], "to merchants our well dealing countrimen who wanting": [0, 65535], "merchants our well dealing countrimen who wanting gilders": [0, 65535], "our well dealing countrimen who wanting gilders to": [0, 65535], "well dealing countrimen who wanting gilders to redeeme": [0, 65535], "dealing countrimen who wanting gilders to redeeme their": [0, 65535], "countrimen who wanting gilders to redeeme their liues": [0, 65535], "who wanting gilders to redeeme their liues haue": [0, 65535], "wanting gilders to redeeme their liues haue seal'd": [0, 65535], "gilders to redeeme their liues haue seal'd his": [0, 65535], "to redeeme their liues haue seal'd his rigorous": [0, 65535], "redeeme their liues haue seal'd his rigorous statutes": [0, 65535], "their liues haue seal'd his rigorous statutes with": [0, 65535], "liues haue seal'd his rigorous statutes with their": [0, 65535], "haue seal'd his rigorous statutes with their blouds": [0, 65535], "seal'd his rigorous statutes with their blouds excludes": [0, 65535], "his rigorous statutes with their blouds excludes all": [0, 65535], "rigorous statutes with their blouds excludes all pitty": [0, 65535], "statutes with their blouds excludes all pitty from": [0, 65535], "with their blouds excludes all pitty from our": [0, 65535], "their blouds excludes all pitty from our threatning": [0, 65535], "blouds excludes all pitty from our threatning lookes": [0, 65535], "excludes all pitty from our threatning lookes for": [0, 65535], "all pitty from our threatning lookes for since": [0, 65535], "pitty from our threatning lookes for since the": [0, 65535], "from our threatning lookes for since the mortall": [0, 65535], "our threatning lookes for since the mortall and": [0, 65535], "threatning lookes for since the mortall and intestine": [0, 65535], "lookes for since the mortall and intestine iarres": [0, 65535], "for since the mortall and intestine iarres twixt": [0, 65535], "since the mortall and intestine iarres twixt thy": [0, 65535], "the mortall and intestine iarres twixt thy seditious": [0, 65535], "mortall and intestine iarres twixt thy seditious countrimen": [0, 65535], "and intestine iarres twixt thy seditious countrimen and": [0, 65535], "intestine iarres twixt thy seditious countrimen and vs": [0, 65535], "iarres twixt thy seditious countrimen and vs it": [0, 65535], "twixt thy seditious countrimen and vs it hath": [0, 65535], "thy seditious countrimen and vs it hath in": [0, 65535], "seditious countrimen and vs it hath in solemne": [0, 65535], "countrimen and vs it hath in solemne synodes": [0, 65535], "and vs it hath in solemne synodes beene": [0, 65535], "vs it hath in solemne synodes beene decreed": [0, 65535], "it hath in solemne synodes beene decreed both": [0, 65535], "hath in solemne synodes beene decreed both by": [0, 65535], "in solemne synodes beene decreed both by the": [0, 65535], "solemne synodes beene decreed both by the siracusians": [0, 65535], "synodes beene decreed both by the siracusians and": [0, 65535], "beene decreed both by the siracusians and our": [0, 65535], "decreed both by the siracusians and our selues": [0, 65535], "both by the siracusians and our selues to": [0, 65535], "by the siracusians and our selues to admit": [0, 65535], "the siracusians and our selues to admit no": [0, 65535], "siracusians and our selues to admit no trafficke": [0, 65535], "and our selues to admit no trafficke to": [0, 65535], "our selues to admit no trafficke to our": [0, 65535], "selues to admit no trafficke to our aduerse": [0, 65535], "to admit no trafficke to our aduerse townes": [0, 65535], "admit no trafficke to our aduerse townes nay": [0, 65535], "no trafficke to our aduerse townes nay more": [0, 65535], "trafficke to our aduerse townes nay more if": [0, 65535], "to our aduerse townes nay more if any": [0, 65535], "our aduerse townes nay more if any borne": [0, 65535], "aduerse townes nay more if any borne at": [0, 65535], "townes nay more if any borne at ephesus": [0, 65535], "nay more if any borne at ephesus be": [0, 65535], "more if any borne at ephesus be seene": [0, 65535], "if any borne at ephesus be seene at": [0, 65535], "any borne at ephesus be seene at any": [0, 65535], "borne at ephesus be seene at any siracusian": [0, 65535], "at ephesus be seene at any siracusian marts": [0, 65535], "ephesus be seene at any siracusian marts and": [0, 65535], "be seene at any siracusian marts and fayres": [0, 65535], "seene at any siracusian marts and fayres againe": [0, 65535], "at any siracusian marts and fayres againe if": [0, 65535], "any siracusian marts and fayres againe if any": [0, 65535], "siracusian marts and fayres againe if any siracusian": [0, 65535], "marts and fayres againe if any siracusian borne": [0, 65535], "and fayres againe if any siracusian borne come": [0, 65535], "fayres againe if any siracusian borne come to": [0, 65535], "againe if any siracusian borne come to the": [0, 65535], "if any siracusian borne come to the bay": [0, 65535], "any siracusian borne come to the bay of": [0, 65535], "siracusian borne come to the bay of ephesus": [0, 65535], "borne come to the bay of ephesus he": [0, 65535], "come to the bay of ephesus he dies": [0, 65535], "to the bay of ephesus he dies his": [0, 65535], "the bay of ephesus he dies his goods": [0, 65535], "bay of ephesus he dies his goods confiscate": [0, 65535], "of ephesus he dies his goods confiscate to": [0, 65535], "ephesus he dies his goods confiscate to the": [0, 65535], "he dies his goods confiscate to the dukes": [0, 65535], "dies his goods confiscate to the dukes dispose": [0, 65535], "his goods confiscate to the dukes dispose vnlesse": [0, 65535], "goods confiscate to the dukes dispose vnlesse a": [0, 65535], "confiscate to the dukes dispose vnlesse a thousand": [0, 65535], "to the dukes dispose vnlesse a thousand markes": [0, 65535], "the dukes dispose vnlesse a thousand markes be": [0, 65535], "dukes dispose vnlesse a thousand markes be leuied": [0, 65535], "dispose vnlesse a thousand markes be leuied to": [0, 65535], "vnlesse a thousand markes be leuied to quit": [0, 65535], "a thousand markes be leuied to quit the": [0, 65535], "thousand markes be leuied to quit the penalty": [0, 65535], "markes be leuied to quit the penalty and": [0, 65535], "be leuied to quit the penalty and to": [0, 65535], "leuied to quit the penalty and to ransome": [0, 65535], "to quit the penalty and to ransome him": [0, 65535], "quit the penalty and to ransome him thy": [0, 65535], "the penalty and to ransome him thy substance": [0, 65535], "penalty and to ransome him thy substance valued": [0, 65535], "and to ransome him thy substance valued at": [0, 65535], "to ransome him thy substance valued at the": [0, 65535], "ransome him thy substance valued at the highest": [0, 65535], "him thy substance valued at the highest rate": [0, 65535], "thy substance valued at the highest rate cannot": [0, 65535], "substance valued at the highest rate cannot amount": [0, 65535], "valued at the highest rate cannot amount vnto": [0, 65535], "at the highest rate cannot amount vnto a": [0, 65535], "the highest rate cannot amount vnto a hundred": [0, 65535], "highest rate cannot amount vnto a hundred markes": [0, 65535], "rate cannot amount vnto a hundred markes therefore": [0, 65535], "cannot amount vnto a hundred markes therefore by": [0, 65535], "amount vnto a hundred markes therefore by law": [0, 65535], "vnto a hundred markes therefore by law thou": [0, 65535], "a hundred markes therefore by law thou art": [0, 65535], "hundred markes therefore by law thou art condemn'd": [0, 65535], "markes therefore by law thou art condemn'd to": [0, 65535], "therefore by law thou art condemn'd to die": [0, 65535], "by law thou art condemn'd to die mer": [0, 65535], "law thou art condemn'd to die mer yet": [0, 65535], "thou art condemn'd to die mer yet this": [0, 65535], "art condemn'd to die mer yet this my": [0, 65535], "condemn'd to die mer yet this my comfort": [0, 65535], "to die mer yet this my comfort when": [0, 65535], "die mer yet this my comfort when your": [0, 65535], "mer yet this my comfort when your words": [0, 65535], "yet this my comfort when your words are": [0, 65535], "this my comfort when your words are done": [0, 65535], "my comfort when your words are done my": [0, 65535], "comfort when your words are done my woes": [0, 65535], "when your words are done my woes end": [0, 65535], "your words are done my woes end likewise": [0, 65535], "words are done my woes end likewise with": [0, 65535], "are done my woes end likewise with the": [0, 65535], "done my woes end likewise with the euening": [0, 65535], "my woes end likewise with the euening sonne": [0, 65535], "woes end likewise with the euening sonne duk": [0, 65535], "end likewise with the euening sonne duk well": [0, 65535], "likewise with the euening sonne duk well siracusian": [0, 65535], "with the euening sonne duk well siracusian say": [0, 65535], "the euening sonne duk well siracusian say in": [0, 65535], "euening sonne duk well siracusian say in briefe": [0, 65535], "sonne duk well siracusian say in briefe the": [0, 65535], "duk well siracusian say in briefe the cause": [0, 65535], "well siracusian say in briefe the cause why": [0, 65535], "siracusian say in briefe the cause why thou": [0, 65535], "say in briefe the cause why thou departedst": [0, 65535], "in briefe the cause why thou departedst from": [0, 65535], "briefe the cause why thou departedst from thy": [0, 65535], "the cause why thou departedst from thy natiue": [0, 65535], "cause why thou departedst from thy natiue home": [0, 65535], "why thou departedst from thy natiue home and": [0, 65535], "thou departedst from thy natiue home and for": [0, 65535], "departedst from thy natiue home and for what": [0, 65535], "from thy natiue home and for what cause": [0, 65535], "thy natiue home and for what cause thou": [0, 65535], "natiue home and for what cause thou cam'st": [0, 65535], "home and for what cause thou cam'st to": [0, 65535], "and for what cause thou cam'st to ephesus": [0, 65535], "for what cause thou cam'st to ephesus mer": [0, 65535], "what cause thou cam'st to ephesus mer a": [0, 65535], "cause thou cam'st to ephesus mer a heauier": [0, 65535], "thou cam'st to ephesus mer a heauier taske": [0, 65535], "cam'st to ephesus mer a heauier taske could": [0, 65535], "to ephesus mer a heauier taske could not": [0, 65535], "ephesus mer a heauier taske could not haue": [0, 65535], "mer a heauier taske could not haue beene": [0, 65535], "a heauier taske could not haue beene impos'd": [0, 65535], "heauier taske could not haue beene impos'd then": [0, 65535], "taske could not haue beene impos'd then i": [0, 65535], "could not haue beene impos'd then i to": [0, 65535], "not haue beene impos'd then i to speake": [0, 65535], "haue beene impos'd then i to speake my": [0, 65535], "beene impos'd then i to speake my griefes": [0, 65535], "impos'd then i to speake my griefes vnspeakeable": [0, 65535], "then i to speake my griefes vnspeakeable yet": [0, 65535], "i to speake my griefes vnspeakeable yet that": [0, 65535], "to speake my griefes vnspeakeable yet that the": [0, 65535], "speake my griefes vnspeakeable yet that the world": [0, 65535], "my griefes vnspeakeable yet that the world may": [0, 65535], "griefes vnspeakeable yet that the world may witnesse": [0, 65535], "vnspeakeable yet that the world may witnesse that": [0, 65535], "yet that the world may witnesse that my": [0, 65535], "that the world may witnesse that my end": [0, 65535], "the world may witnesse that my end was": [0, 65535], "world may witnesse that my end was wrought": [0, 65535], "may witnesse that my end was wrought by": [0, 65535], "witnesse that my end was wrought by nature": [0, 65535], "that my end was wrought by nature not": [0, 65535], "my end was wrought by nature not by": [0, 65535], "end was wrought by nature not by vile": [0, 65535], "was wrought by nature not by vile offence": [0, 65535], "wrought by nature not by vile offence ile": [0, 65535], "by nature not by vile offence ile vtter": [0, 65535], "nature not by vile offence ile vtter what": [0, 65535], "not by vile offence ile vtter what my": [0, 65535], "by vile offence ile vtter what my sorrow": [0, 65535], "vile offence ile vtter what my sorrow giues": [0, 65535], "offence ile vtter what my sorrow giues me": [0, 65535], "ile vtter what my sorrow giues me leaue": [0, 65535], "vtter what my sorrow giues me leaue in": [0, 65535], "what my sorrow giues me leaue in syracusa": [0, 65535], "my sorrow giues me leaue in syracusa was": [0, 65535], "sorrow giues me leaue in syracusa was i": [0, 65535], "giues me leaue in syracusa was i borne": [0, 65535], "me leaue in syracusa was i borne and": [0, 65535], "leaue in syracusa was i borne and wedde": [0, 65535], "in syracusa was i borne and wedde vnto": [0, 65535], "syracusa was i borne and wedde vnto a": [0, 65535], "was i borne and wedde vnto a woman": [0, 65535], "i borne and wedde vnto a woman happy": [0, 65535], "borne and wedde vnto a woman happy but": [0, 65535], "and wedde vnto a woman happy but for": [0, 65535], "wedde vnto a woman happy but for me": [0, 65535], "vnto a woman happy but for me and": [0, 65535], "a woman happy but for me and by": [0, 65535], "woman happy but for me and by me": [0, 65535], "happy but for me and by me had": [0, 65535], "but for me and by me had not": [0, 65535], "for me and by me had not our": [0, 65535], "me and by me had not our hap": [0, 65535], "and by me had not our hap beene": [0, 65535], "by me had not our hap beene bad": [0, 65535], "me had not our hap beene bad with": [0, 65535], "had not our hap beene bad with her": [0, 65535], "not our hap beene bad with her i": [0, 65535], "our hap beene bad with her i liu'd": [0, 65535], "hap beene bad with her i liu'd in": [0, 65535], "beene bad with her i liu'd in ioy": [0, 65535], "bad with her i liu'd in ioy our": [0, 65535], "with her i liu'd in ioy our wealth": [0, 65535], "her i liu'd in ioy our wealth increast": [0, 65535], "i liu'd in ioy our wealth increast by": [0, 65535], "liu'd in ioy our wealth increast by prosperous": [0, 65535], "in ioy our wealth increast by prosperous voyages": [0, 65535], "ioy our wealth increast by prosperous voyages i": [0, 65535], "our wealth increast by prosperous voyages i often": [0, 65535], "wealth increast by prosperous voyages i often made": [0, 65535], "increast by prosperous voyages i often made to": [0, 65535], "by prosperous voyages i often made to epidamium": [0, 65535], "prosperous voyages i often made to epidamium till": [0, 65535], "voyages i often made to epidamium till my": [0, 65535], "i often made to epidamium till my factors": [0, 65535], "often made to epidamium till my factors death": [0, 65535], "made to epidamium till my factors death and": [0, 65535], "to epidamium till my factors death and he": [0, 65535], "epidamium till my factors death and he great": [0, 65535], "till my factors death and he great care": [0, 65535], "my factors death and he great care of": [0, 65535], "factors death and he great care of goods": [0, 65535], "death and he great care of goods at": [0, 65535], "and he great care of goods at randone": [0, 65535], "he great care of goods at randone left": [0, 65535], "great care of goods at randone left drew": [0, 65535], "care of goods at randone left drew me": [0, 65535], "of goods at randone left drew me from": [0, 65535], "goods at randone left drew me from kinde": [0, 65535], "at randone left drew me from kinde embracements": [0, 65535], "randone left drew me from kinde embracements of": [0, 65535], "left drew me from kinde embracements of my": [0, 65535], "drew me from kinde embracements of my spouse": [0, 65535], "me from kinde embracements of my spouse from": [0, 65535], "from kinde embracements of my spouse from whom": [0, 65535], "kinde embracements of my spouse from whom my": [0, 65535], "embracements of my spouse from whom my absence": [0, 65535], "of my spouse from whom my absence was": [0, 65535], "my spouse from whom my absence was not": [0, 65535], "spouse from whom my absence was not sixe": [0, 65535], "from whom my absence was not sixe moneths": [0, 65535], "whom my absence was not sixe moneths olde": [0, 65535], "my absence was not sixe moneths olde before": [0, 65535], "absence was not sixe moneths olde before her": [0, 65535], "was not sixe moneths olde before her selfe": [0, 65535], "not sixe moneths olde before her selfe almost": [0, 65535], "sixe moneths olde before her selfe almost at": [0, 65535], "moneths olde before her selfe almost at fainting": [0, 65535], "olde before her selfe almost at fainting vnder": [0, 65535], "before her selfe almost at fainting vnder the": [0, 65535], "her selfe almost at fainting vnder the pleasing": [0, 65535], "selfe almost at fainting vnder the pleasing punishment": [0, 65535], "almost at fainting vnder the pleasing punishment that": [0, 65535], "at fainting vnder the pleasing punishment that women": [0, 65535], "fainting vnder the pleasing punishment that women beare": [0, 65535], "vnder the pleasing punishment that women beare had": [0, 65535], "the pleasing punishment that women beare had made": [0, 65535], "pleasing punishment that women beare had made prouision": [0, 65535], "punishment that women beare had made prouision for": [0, 65535], "that women beare had made prouision for her": [0, 65535], "women beare had made prouision for her following": [0, 65535], "beare had made prouision for her following me": [0, 65535], "had made prouision for her following me and": [0, 65535], "made prouision for her following me and soone": [0, 65535], "prouision for her following me and soone and": [0, 65535], "for her following me and soone and safe": [0, 65535], "her following me and soone and safe arriued": [0, 65535], "following me and soone and safe arriued where": [0, 65535], "me and soone and safe arriued where i": [0, 65535], "and soone and safe arriued where i was": [0, 65535], "soone and safe arriued where i was there": [0, 65535], "and safe arriued where i was there had": [0, 65535], "safe arriued where i was there had she": [0, 65535], "arriued where i was there had she not": [0, 65535], "where i was there had she not beene": [0, 65535], "i was there had she not beene long": [0, 65535], "was there had she not beene long but": [0, 65535], "there had she not beene long but she": [0, 65535], "had she not beene long but she became": [0, 65535], "she not beene long but she became a": [0, 65535], "not beene long but she became a ioyfull": [0, 65535], "beene long but she became a ioyfull mother": [0, 65535], "long but she became a ioyfull mother of": [0, 65535], "but she became a ioyfull mother of two": [0, 65535], "she became a ioyfull mother of two goodly": [0, 65535], "became a ioyfull mother of two goodly sonnes": [0, 65535], "a ioyfull mother of two goodly sonnes and": [0, 65535], "ioyfull mother of two goodly sonnes and which": [0, 65535], "mother of two goodly sonnes and which was": [0, 65535], "of two goodly sonnes and which was strange": [0, 65535], "two goodly sonnes and which was strange the": [0, 65535], "goodly sonnes and which was strange the one": [0, 65535], "sonnes and which was strange the one so": [0, 65535], "and which was strange the one so like": [0, 65535], "which was strange the one so like the": [0, 65535], "was strange the one so like the other": [0, 65535], "strange the one so like the other as": [0, 65535], "the one so like the other as could": [0, 65535], "one so like the other as could not": [0, 65535], "so like the other as could not be": [0, 65535], "like the other as could not be distinguish'd": [0, 65535], "the other as could not be distinguish'd but": [0, 65535], "other as could not be distinguish'd but by": [0, 65535], "as could not be distinguish'd but by names": [0, 65535], "could not be distinguish'd but by names that": [0, 65535], "not be distinguish'd but by names that very": [0, 65535], "be distinguish'd but by names that very howre": [0, 65535], "distinguish'd but by names that very howre and": [0, 65535], "but by names that very howre and in": [0, 65535], "by names that very howre and in the": [0, 65535], "names that very howre and in the selfe": [0, 65535], "that very howre and in the selfe same": [0, 65535], "very howre and in the selfe same inne": [0, 65535], "howre and in the selfe same inne a": [0, 65535], "and in the selfe same inne a meane": [0, 65535], "in the selfe same inne a meane woman": [0, 65535], "the selfe same inne a meane woman was": [0, 65535], "selfe same inne a meane woman was deliuered": [0, 65535], "same inne a meane woman was deliuered of": [0, 65535], "inne a meane woman was deliuered of such": [0, 65535], "a meane woman was deliuered of such a": [0, 65535], "meane woman was deliuered of such a burthen": [0, 65535], "woman was deliuered of such a burthen male": [0, 65535], "was deliuered of such a burthen male twins": [0, 65535], "deliuered of such a burthen male twins both": [0, 65535], "of such a burthen male twins both alike": [0, 65535], "such a burthen male twins both alike those": [0, 65535], "a burthen male twins both alike those for": [0, 65535], "burthen male twins both alike those for their": [0, 65535], "male twins both alike those for their parents": [0, 65535], "twins both alike those for their parents were": [0, 65535], "both alike those for their parents were exceeding": [0, 65535], "alike those for their parents were exceeding poore": [0, 65535], "those for their parents were exceeding poore i": [0, 65535], "for their parents were exceeding poore i bought": [0, 65535], "their parents were exceeding poore i bought and": [0, 65535], "parents were exceeding poore i bought and brought": [0, 65535], "were exceeding poore i bought and brought vp": [0, 65535], "exceeding poore i bought and brought vp to": [0, 65535], "poore i bought and brought vp to attend": [0, 65535], "i bought and brought vp to attend my": [0, 65535], "bought and brought vp to attend my sonnes": [0, 65535], "and brought vp to attend my sonnes my": [0, 65535], "brought vp to attend my sonnes my wife": [0, 65535], "vp to attend my sonnes my wife not": [0, 65535], "to attend my sonnes my wife not meanely": [0, 65535], "attend my sonnes my wife not meanely prowd": [0, 65535], "my sonnes my wife not meanely prowd of": [0, 65535], "sonnes my wife not meanely prowd of two": [0, 65535], "my wife not meanely prowd of two such": [0, 65535], "wife not meanely prowd of two such boyes": [0, 65535], "not meanely prowd of two such boyes made": [0, 65535], "meanely prowd of two such boyes made daily": [0, 65535], "prowd of two such boyes made daily motions": [0, 65535], "of two such boyes made daily motions for": [0, 65535], "two such boyes made daily motions for our": [0, 65535], "such boyes made daily motions for our home": [0, 65535], "boyes made daily motions for our home returne": [0, 65535], "made daily motions for our home returne vnwilling": [0, 65535], "daily motions for our home returne vnwilling i": [0, 65535], "motions for our home returne vnwilling i agreed": [0, 65535], "for our home returne vnwilling i agreed alas": [0, 65535], "our home returne vnwilling i agreed alas too": [0, 65535], "home returne vnwilling i agreed alas too soone": [0, 65535], "returne vnwilling i agreed alas too soone wee": [0, 65535], "vnwilling i agreed alas too soone wee came": [0, 65535], "i agreed alas too soone wee came aboord": [0, 65535], "agreed alas too soone wee came aboord a": [0, 65535], "alas too soone wee came aboord a league": [0, 65535], "too soone wee came aboord a league from": [0, 65535], "soone wee came aboord a league from epidamium": [0, 65535], "wee came aboord a league from epidamium had": [0, 65535], "came aboord a league from epidamium had we": [0, 65535], "aboord a league from epidamium had we saild": [0, 65535], "a league from epidamium had we saild before": [0, 65535], "league from epidamium had we saild before the": [0, 65535], "from epidamium had we saild before the alwaies": [0, 65535], "epidamium had we saild before the alwaies winde": [0, 65535], "had we saild before the alwaies winde obeying": [0, 65535], "we saild before the alwaies winde obeying deepe": [0, 65535], "saild before the alwaies winde obeying deepe gaue": [0, 65535], "before the alwaies winde obeying deepe gaue any": [0, 65535], "the alwaies winde obeying deepe gaue any tragicke": [0, 65535], "alwaies winde obeying deepe gaue any tragicke instance": [0, 65535], "winde obeying deepe gaue any tragicke instance of": [0, 65535], "obeying deepe gaue any tragicke instance of our": [0, 65535], "deepe gaue any tragicke instance of our harme": [0, 65535], "gaue any tragicke instance of our harme but": [0, 65535], "any tragicke instance of our harme but longer": [0, 65535], "tragicke instance of our harme but longer did": [0, 65535], "instance of our harme but longer did we": [0, 65535], "of our harme but longer did we not": [0, 65535], "our harme but longer did we not retaine": [0, 65535], "harme but longer did we not retaine much": [0, 65535], "but longer did we not retaine much hope": [0, 65535], "longer did we not retaine much hope for": [0, 65535], "did we not retaine much hope for what": [0, 65535], "we not retaine much hope for what obscured": [0, 65535], "not retaine much hope for what obscured light": [0, 65535], "retaine much hope for what obscured light the": [0, 65535], "much hope for what obscured light the heauens": [0, 65535], "hope for what obscured light the heauens did": [0, 65535], "for what obscured light the heauens did grant": [0, 65535], "what obscured light the heauens did grant did": [0, 65535], "obscured light the heauens did grant did but": [0, 65535], "light the heauens did grant did but conuay": [0, 65535], "the heauens did grant did but conuay vnto": [0, 65535], "heauens did grant did but conuay vnto our": [0, 65535], "did grant did but conuay vnto our fearefull": [0, 65535], "grant did but conuay vnto our fearefull mindes": [0, 65535], "did but conuay vnto our fearefull mindes a": [0, 65535], "but conuay vnto our fearefull mindes a doubtfull": [0, 65535], "conuay vnto our fearefull mindes a doubtfull warrant": [0, 65535], "vnto our fearefull mindes a doubtfull warrant of": [0, 65535], "our fearefull mindes a doubtfull warrant of immediate": [0, 65535], "fearefull mindes a doubtfull warrant of immediate death": [0, 65535], "mindes a doubtfull warrant of immediate death which": [0, 65535], "a doubtfull warrant of immediate death which though": [0, 65535], "doubtfull warrant of immediate death which though my": [0, 65535], "warrant of immediate death which though my selfe": [0, 65535], "of immediate death which though my selfe would": [0, 65535], "immediate death which though my selfe would gladly": [0, 65535], "death which though my selfe would gladly haue": [0, 65535], "which though my selfe would gladly haue imbrac'd": [0, 65535], "though my selfe would gladly haue imbrac'd yet": [0, 65535], "my selfe would gladly haue imbrac'd yet the": [0, 65535], "selfe would gladly haue imbrac'd yet the incessant": [0, 65535], "would gladly haue imbrac'd yet the incessant weepings": [0, 65535], "gladly haue imbrac'd yet the incessant weepings of": [0, 65535], "haue imbrac'd yet the incessant weepings of my": [0, 65535], "imbrac'd yet the incessant weepings of my wife": [0, 65535], "yet the incessant weepings of my wife weeping": [0, 65535], "the incessant weepings of my wife weeping before": [0, 65535], "incessant weepings of my wife weeping before for": [0, 65535], "weepings of my wife weeping before for what": [0, 65535], "of my wife weeping before for what she": [0, 65535], "my wife weeping before for what she saw": [0, 65535], "wife weeping before for what she saw must": [0, 65535], "weeping before for what she saw must come": [0, 65535], "before for what she saw must come and": [0, 65535], "for what she saw must come and pitteous": [0, 65535], "what she saw must come and pitteous playnings": [0, 65535], "she saw must come and pitteous playnings of": [0, 65535], "saw must come and pitteous playnings of the": [0, 65535], "must come and pitteous playnings of the prettie": [0, 65535], "come and pitteous playnings of the prettie babes": [0, 65535], "and pitteous playnings of the prettie babes that": [0, 65535], "pitteous playnings of the prettie babes that mourn'd": [0, 65535], "playnings of the prettie babes that mourn'd for": [0, 65535], "of the prettie babes that mourn'd for fashion": [0, 65535], "the prettie babes that mourn'd for fashion ignorant": [0, 65535], "prettie babes that mourn'd for fashion ignorant what": [0, 65535], "babes that mourn'd for fashion ignorant what to": [0, 65535], "that mourn'd for fashion ignorant what to feare": [0, 65535], "mourn'd for fashion ignorant what to feare forst": [0, 65535], "for fashion ignorant what to feare forst me": [0, 65535], "fashion ignorant what to feare forst me to": [0, 65535], "ignorant what to feare forst me to seeke": [0, 65535], "what to feare forst me to seeke delayes": [0, 65535], "to feare forst me to seeke delayes for": [0, 65535], "feare forst me to seeke delayes for them": [0, 65535], "forst me to seeke delayes for them and": [0, 65535], "me to seeke delayes for them and me": [0, 65535], "to seeke delayes for them and me and": [0, 65535], "seeke delayes for them and me and this": [0, 65535], "delayes for them and me and this it": [0, 65535], "for them and me and this it was": [0, 65535], "them and me and this it was for": [0, 65535], "and me and this it was for other": [0, 65535], "me and this it was for other meanes": [0, 65535], "and this it was for other meanes was": [0, 65535], "this it was for other meanes was none": [0, 65535], "it was for other meanes was none the": [0, 65535], "was for other meanes was none the sailors": [0, 65535], "for other meanes was none the sailors sought": [0, 65535], "other meanes was none the sailors sought for": [0, 65535], "meanes was none the sailors sought for safety": [0, 65535], "was none the sailors sought for safety by": [0, 65535], "none the sailors sought for safety by our": [0, 65535], "the sailors sought for safety by our boate": [0, 65535], "sailors sought for safety by our boate and": [0, 65535], "sought for safety by our boate and left": [0, 65535], "for safety by our boate and left the": [0, 65535], "safety by our boate and left the ship": [0, 65535], "by our boate and left the ship then": [0, 65535], "our boate and left the ship then sinking": [0, 65535], "boate and left the ship then sinking ripe": [0, 65535], "and left the ship then sinking ripe to": [0, 65535], "left the ship then sinking ripe to vs": [0, 65535], "the ship then sinking ripe to vs my": [0, 65535], "ship then sinking ripe to vs my wife": [0, 65535], "then sinking ripe to vs my wife more": [0, 65535], "sinking ripe to vs my wife more carefull": [0, 65535], "ripe to vs my wife more carefull for": [0, 65535], "to vs my wife more carefull for the": [0, 65535], "vs my wife more carefull for the latter": [0, 65535], "my wife more carefull for the latter borne": [0, 65535], "wife more carefull for the latter borne had": [0, 65535], "more carefull for the latter borne had fastned": [0, 65535], "carefull for the latter borne had fastned him": [0, 65535], "for the latter borne had fastned him vnto": [0, 65535], "the latter borne had fastned him vnto a": [0, 65535], "latter borne had fastned him vnto a small": [0, 65535], "borne had fastned him vnto a small spare": [0, 65535], "had fastned him vnto a small spare mast": [0, 65535], "fastned him vnto a small spare mast such": [0, 65535], "him vnto a small spare mast such as": [0, 65535], "vnto a small spare mast such as sea": [0, 65535], "a small spare mast such as sea faring": [0, 65535], "small spare mast such as sea faring men": [0, 65535], "spare mast such as sea faring men prouide": [0, 65535], "mast such as sea faring men prouide for": [0, 65535], "such as sea faring men prouide for stormes": [0, 65535], "as sea faring men prouide for stormes to": [0, 65535], "sea faring men prouide for stormes to him": [0, 65535], "faring men prouide for stormes to him one": [0, 65535], "men prouide for stormes to him one of": [0, 65535], "prouide for stormes to him one of the": [0, 65535], "for stormes to him one of the other": [0, 65535], "stormes to him one of the other twins": [0, 65535], "to him one of the other twins was": [0, 65535], "him one of the other twins was bound": [0, 65535], "one of the other twins was bound whil'st": [0, 65535], "of the other twins was bound whil'st i": [0, 65535], "the other twins was bound whil'st i had": [0, 65535], "other twins was bound whil'st i had beene": [0, 65535], "twins was bound whil'st i had beene like": [0, 65535], "was bound whil'st i had beene like heedfull": [0, 65535], "bound whil'st i had beene like heedfull of": [0, 65535], "whil'st i had beene like heedfull of the": [0, 65535], "i had beene like heedfull of the other": [0, 65535], "had beene like heedfull of the other the": [0, 65535], "beene like heedfull of the other the children": [0, 65535], "like heedfull of the other the children thus": [0, 65535], "heedfull of the other the children thus dispos'd": [0, 65535], "of the other the children thus dispos'd my": [0, 65535], "the other the children thus dispos'd my wife": [0, 65535], "other the children thus dispos'd my wife and": [0, 65535], "the children thus dispos'd my wife and i": [0, 65535], "children thus dispos'd my wife and i fixing": [0, 65535], "thus dispos'd my wife and i fixing our": [0, 65535], "dispos'd my wife and i fixing our eyes": [0, 65535], "my wife and i fixing our eyes on": [0, 65535], "wife and i fixing our eyes on whom": [0, 65535], "and i fixing our eyes on whom our": [0, 65535], "i fixing our eyes on whom our care": [0, 65535], "fixing our eyes on whom our care was": [0, 65535], "our eyes on whom our care was fixt": [0, 65535], "eyes on whom our care was fixt fastned": [0, 65535], "on whom our care was fixt fastned our": [0, 65535], "whom our care was fixt fastned our selues": [0, 65535], "our care was fixt fastned our selues at": [0, 65535], "care was fixt fastned our selues at eyther": [0, 65535], "was fixt fastned our selues at eyther end": [0, 65535], "fixt fastned our selues at eyther end the": [0, 65535], "fastned our selues at eyther end the mast": [0, 65535], "our selues at eyther end the mast and": [0, 65535], "selues at eyther end the mast and floating": [0, 65535], "at eyther end the mast and floating straight": [0, 65535], "eyther end the mast and floating straight obedient": [0, 65535], "end the mast and floating straight obedient to": [0, 65535], "the mast and floating straight obedient to the": [0, 65535], "mast and floating straight obedient to the streame": [0, 65535], "and floating straight obedient to the streame was": [0, 65535], "floating straight obedient to the streame was carried": [0, 65535], "straight obedient to the streame was carried towards": [0, 65535], "obedient to the streame was carried towards corinth": [0, 65535], "to the streame was carried towards corinth as": [0, 65535], "the streame was carried towards corinth as we": [0, 65535], "streame was carried towards corinth as we thought": [0, 65535], "was carried towards corinth as we thought at": [0, 65535], "carried towards corinth as we thought at length": [0, 65535], "towards corinth as we thought at length the": [0, 65535], "corinth as we thought at length the sonne": [0, 65535], "as we thought at length the sonne gazing": [0, 65535], "we thought at length the sonne gazing vpon": [0, 65535], "thought at length the sonne gazing vpon the": [0, 65535], "at length the sonne gazing vpon the earth": [0, 65535], "length the sonne gazing vpon the earth disperst": [0, 65535], "the sonne gazing vpon the earth disperst those": [0, 65535], "sonne gazing vpon the earth disperst those vapours": [0, 65535], "gazing vpon the earth disperst those vapours that": [0, 65535], "vpon the earth disperst those vapours that offended": [0, 65535], "the earth disperst those vapours that offended vs": [0, 65535], "earth disperst those vapours that offended vs and": [0, 65535], "disperst those vapours that offended vs and by": [0, 65535], "those vapours that offended vs and by the": [0, 65535], "vapours that offended vs and by the benefit": [0, 65535], "that offended vs and by the benefit of": [0, 65535], "offended vs and by the benefit of his": [0, 65535], "vs and by the benefit of his wished": [0, 65535], "and by the benefit of his wished light": [0, 65535], "by the benefit of his wished light the": [0, 65535], "the benefit of his wished light the seas": [0, 65535], "benefit of his wished light the seas waxt": [0, 65535], "of his wished light the seas waxt calme": [0, 65535], "his wished light the seas waxt calme and": [0, 65535], "wished light the seas waxt calme and we": [0, 65535], "light the seas waxt calme and we discouered": [0, 65535], "the seas waxt calme and we discouered two": [0, 65535], "seas waxt calme and we discouered two shippes": [0, 65535], "waxt calme and we discouered two shippes from": [0, 65535], "calme and we discouered two shippes from farre": [0, 65535], "and we discouered two shippes from farre making": [0, 65535], "we discouered two shippes from farre making amaine": [0, 65535], "discouered two shippes from farre making amaine to": [0, 65535], "two shippes from farre making amaine to vs": [0, 65535], "shippes from farre making amaine to vs of": [0, 65535], "from farre making amaine to vs of corinth": [0, 65535], "farre making amaine to vs of corinth that": [0, 65535], "making amaine to vs of corinth that of": [0, 65535], "amaine to vs of corinth that of epidarus": [0, 65535], "to vs of corinth that of epidarus this": [0, 65535], "vs of corinth that of epidarus this but": [0, 65535], "of corinth that of epidarus this but ere": [0, 65535], "corinth that of epidarus this but ere they": [0, 65535], "that of epidarus this but ere they came": [0, 65535], "of epidarus this but ere they came oh": [0, 65535], "epidarus this but ere they came oh let": [0, 65535], "this but ere they came oh let me": [0, 65535], "but ere they came oh let me say": [0, 65535], "ere they came oh let me say no": [0, 65535], "they came oh let me say no more": [0, 65535], "came oh let me say no more gather": [0, 65535], "oh let me say no more gather the": [0, 65535], "let me say no more gather the sequell": [0, 65535], "me say no more gather the sequell by": [0, 65535], "say no more gather the sequell by that": [0, 65535], "no more gather the sequell by that went": [0, 65535], "more gather the sequell by that went before": [0, 65535], "gather the sequell by that went before duk": [0, 65535], "the sequell by that went before duk nay": [0, 65535], "sequell by that went before duk nay forward": [0, 65535], "by that went before duk nay forward old": [0, 65535], "that went before duk nay forward old man": [0, 65535], "went before duk nay forward old man doe": [0, 65535], "before duk nay forward old man doe not": [0, 65535], "duk nay forward old man doe not breake": [0, 65535], "nay forward old man doe not breake off": [0, 65535], "forward old man doe not breake off so": [0, 65535], "old man doe not breake off so for": [0, 65535], "man doe not breake off so for we": [0, 65535], "doe not breake off so for we may": [0, 65535], "not breake off so for we may pitty": [0, 65535], "breake off so for we may pitty though": [0, 65535], "off so for we may pitty though not": [0, 65535], "so for we may pitty though not pardon": [0, 65535], "for we may pitty though not pardon thee": [0, 65535], "we may pitty though not pardon thee merch": [0, 65535], "may pitty though not pardon thee merch oh": [0, 65535], "pitty though not pardon thee merch oh had": [0, 65535], "though not pardon thee merch oh had the": [0, 65535], "not pardon thee merch oh had the gods": [0, 65535], "pardon thee merch oh had the gods done": [0, 65535], "thee merch oh had the gods done so": [0, 65535], "merch oh had the gods done so i": [0, 65535], "oh had the gods done so i had": [0, 65535], "had the gods done so i had not": [0, 65535], "the gods done so i had not now": [0, 65535], "gods done so i had not now worthily": [0, 65535], "done so i had not now worthily tearm'd": [0, 65535], "so i had not now worthily tearm'd them": [0, 65535], "i had not now worthily tearm'd them mercilesse": [0, 65535], "had not now worthily tearm'd them mercilesse to": [0, 65535], "not now worthily tearm'd them mercilesse to vs": [0, 65535], "now worthily tearm'd them mercilesse to vs for": [0, 65535], "worthily tearm'd them mercilesse to vs for ere": [0, 65535], "tearm'd them mercilesse to vs for ere the": [0, 65535], "them mercilesse to vs for ere the ships": [0, 65535], "mercilesse to vs for ere the ships could": [0, 65535], "to vs for ere the ships could meet": [0, 65535], "vs for ere the ships could meet by": [0, 65535], "for ere the ships could meet by twice": [0, 65535], "ere the ships could meet by twice fiue": [0, 65535], "the ships could meet by twice fiue leagues": [0, 65535], "ships could meet by twice fiue leagues we": [0, 65535], "could meet by twice fiue leagues we were": [0, 65535], "meet by twice fiue leagues we were encountred": [0, 65535], "by twice fiue leagues we were encountred by": [0, 65535], "twice fiue leagues we were encountred by a": [0, 65535], "fiue leagues we were encountred by a mighty": [0, 65535], "leagues we were encountred by a mighty rocke": [0, 65535], "we were encountred by a mighty rocke which": [0, 65535], "were encountred by a mighty rocke which being": [0, 65535], "encountred by a mighty rocke which being violently": [0, 65535], "by a mighty rocke which being violently borne": [0, 65535], "a mighty rocke which being violently borne vp": [0, 65535], "mighty rocke which being violently borne vp our": [0, 65535], "rocke which being violently borne vp our helpefull": [0, 65535], "which being violently borne vp our helpefull ship": [0, 65535], "being violently borne vp our helpefull ship was": [0, 65535], "violently borne vp our helpefull ship was splitted": [0, 65535], "borne vp our helpefull ship was splitted in": [0, 65535], "vp our helpefull ship was splitted in the": [0, 65535], "our helpefull ship was splitted in the midst": [0, 65535], "helpefull ship was splitted in the midst so": [0, 65535], "ship was splitted in the midst so that": [0, 65535], "was splitted in the midst so that in": [0, 65535], "splitted in the midst so that in this": [0, 65535], "in the midst so that in this vniust": [0, 65535], "the midst so that in this vniust diuorce": [0, 65535], "midst so that in this vniust diuorce of": [0, 65535], "so that in this vniust diuorce of vs": [0, 65535], "that in this vniust diuorce of vs fortune": [0, 65535], "in this vniust diuorce of vs fortune had": [0, 65535], "this vniust diuorce of vs fortune had left": [0, 65535], "vniust diuorce of vs fortune had left to": [0, 65535], "diuorce of vs fortune had left to both": [0, 65535], "of vs fortune had left to both of": [0, 65535], "vs fortune had left to both of vs": [0, 65535], "fortune had left to both of vs alike": [0, 65535], "had left to both of vs alike what": [0, 65535], "left to both of vs alike what to": [0, 65535], "to both of vs alike what to delight": [0, 65535], "both of vs alike what to delight in": [0, 65535], "of vs alike what to delight in what": [0, 65535], "vs alike what to delight in what to": [0, 65535], "alike what to delight in what to sorrow": [0, 65535], "what to delight in what to sorrow for": [0, 65535], "to delight in what to sorrow for her": [0, 65535], "delight in what to sorrow for her part": [0, 65535], "in what to sorrow for her part poore": [0, 65535], "what to sorrow for her part poore soule": [0, 65535], "to sorrow for her part poore soule seeming": [0, 65535], "sorrow for her part poore soule seeming as": [0, 65535], "for her part poore soule seeming as burdened": [0, 65535], "her part poore soule seeming as burdened with": [0, 65535], "part poore soule seeming as burdened with lesser": [0, 65535], "poore soule seeming as burdened with lesser waight": [0, 65535], "soule seeming as burdened with lesser waight but": [0, 65535], "seeming as burdened with lesser waight but not": [0, 65535], "as burdened with lesser waight but not with": [0, 65535], "burdened with lesser waight but not with lesser": [0, 65535], "with lesser waight but not with lesser woe": [0, 65535], "lesser waight but not with lesser woe was": [0, 65535], "waight but not with lesser woe was carried": [0, 65535], "but not with lesser woe was carried with": [0, 65535], "not with lesser woe was carried with more": [0, 65535], "with lesser woe was carried with more speed": [0, 65535], "lesser woe was carried with more speed before": [0, 65535], "woe was carried with more speed before the": [0, 65535], "was carried with more speed before the winde": [0, 65535], "carried with more speed before the winde and": [0, 65535], "with more speed before the winde and in": [0, 65535], "more speed before the winde and in our": [0, 65535], "speed before the winde and in our sight": [0, 65535], "before the winde and in our sight they": [0, 65535], "the winde and in our sight they three": [0, 65535], "winde and in our sight they three were": [0, 65535], "and in our sight they three were taken": [0, 65535], "in our sight they three were taken vp": [0, 65535], "our sight they three were taken vp by": [0, 65535], "sight they three were taken vp by fishermen": [0, 65535], "they three were taken vp by fishermen of": [0, 65535], "three were taken vp by fishermen of corinth": [0, 65535], "were taken vp by fishermen of corinth as": [0, 65535], "taken vp by fishermen of corinth as we": [0, 65535], "vp by fishermen of corinth as we thought": [0, 65535], "by fishermen of corinth as we thought at": [0, 65535], "fishermen of corinth as we thought at length": [0, 65535], "of corinth as we thought at length another": [0, 65535], "corinth as we thought at length another ship": [0, 65535], "as we thought at length another ship had": [0, 65535], "we thought at length another ship had seiz'd": [0, 65535], "thought at length another ship had seiz'd on": [0, 65535], "at length another ship had seiz'd on vs": [0, 65535], "length another ship had seiz'd on vs and": [0, 65535], "another ship had seiz'd on vs and knowing": [0, 65535], "ship had seiz'd on vs and knowing whom": [0, 65535], "had seiz'd on vs and knowing whom it": [0, 65535], "seiz'd on vs and knowing whom it was": [0, 65535], "on vs and knowing whom it was their": [0, 65535], "vs and knowing whom it was their hap": [0, 65535], "and knowing whom it was their hap to": [0, 65535], "knowing whom it was their hap to saue": [0, 65535], "whom it was their hap to saue gaue": [0, 65535], "it was their hap to saue gaue healthfull": [0, 65535], "was their hap to saue gaue healthfull welcome": [0, 65535], "their hap to saue gaue healthfull welcome to": [0, 65535], "hap to saue gaue healthfull welcome to their": [0, 65535], "to saue gaue healthfull welcome to their ship": [0, 65535], "saue gaue healthfull welcome to their ship wrackt": [0, 65535], "gaue healthfull welcome to their ship wrackt guests": [0, 65535], "healthfull welcome to their ship wrackt guests and": [0, 65535], "welcome to their ship wrackt guests and would": [0, 65535], "to their ship wrackt guests and would haue": [0, 65535], "their ship wrackt guests and would haue reft": [0, 65535], "ship wrackt guests and would haue reft the": [0, 65535], "wrackt guests and would haue reft the fishers": [0, 65535], "guests and would haue reft the fishers of": [0, 65535], "and would haue reft the fishers of their": [0, 65535], "would haue reft the fishers of their prey": [0, 65535], "haue reft the fishers of their prey had": [0, 65535], "reft the fishers of their prey had not": [0, 65535], "the fishers of their prey had not their": [0, 65535], "fishers of their prey had not their backe": [0, 65535], "of their prey had not their backe beene": [0, 65535], "their prey had not their backe beene very": [0, 65535], "prey had not their backe beene very slow": [0, 65535], "had not their backe beene very slow of": [0, 65535], "not their backe beene very slow of saile": [0, 65535], "their backe beene very slow of saile and": [0, 65535], "backe beene very slow of saile and therefore": [0, 65535], "beene very slow of saile and therefore homeward": [0, 65535], "very slow of saile and therefore homeward did": [0, 65535], "slow of saile and therefore homeward did they": [0, 65535], "of saile and therefore homeward did they bend": [0, 65535], "saile and therefore homeward did they bend their": [0, 65535], "and therefore homeward did they bend their course": [0, 65535], "therefore homeward did they bend their course thus": [0, 65535], "homeward did they bend their course thus haue": [0, 65535], "did they bend their course thus haue you": [0, 65535], "they bend their course thus haue you heard": [0, 65535], "bend their course thus haue you heard me": [0, 65535], "their course thus haue you heard me seuer'd": [0, 65535], "course thus haue you heard me seuer'd from": [0, 65535], "thus haue you heard me seuer'd from my": [0, 65535], "haue you heard me seuer'd from my blisse": [0, 65535], "you heard me seuer'd from my blisse that": [0, 65535], "heard me seuer'd from my blisse that by": [0, 65535], "me seuer'd from my blisse that by misfortunes": [0, 65535], "seuer'd from my blisse that by misfortunes was": [0, 65535], "from my blisse that by misfortunes was my": [0, 65535], "my blisse that by misfortunes was my life": [0, 65535], "blisse that by misfortunes was my life prolong'd": [0, 65535], "that by misfortunes was my life prolong'd to": [0, 65535], "by misfortunes was my life prolong'd to tell": [0, 65535], "misfortunes was my life prolong'd to tell sad": [0, 65535], "was my life prolong'd to tell sad stories": [0, 65535], "my life prolong'd to tell sad stories of": [0, 65535], "life prolong'd to tell sad stories of my": [0, 65535], "prolong'd to tell sad stories of my owne": [0, 65535], "to tell sad stories of my owne mishaps": [0, 65535], "tell sad stories of my owne mishaps duke": [0, 65535], "sad stories of my owne mishaps duke and": [0, 65535], "stories of my owne mishaps duke and for": [0, 65535], "of my owne mishaps duke and for the": [0, 65535], "my owne mishaps duke and for the sake": [0, 65535], "owne mishaps duke and for the sake of": [0, 65535], "mishaps duke and for the sake of them": [0, 65535], "duke and for the sake of them thou": [0, 65535], "and for the sake of them thou sorrowest": [0, 65535], "for the sake of them thou sorrowest for": [0, 65535], "the sake of them thou sorrowest for doe": [0, 65535], "sake of them thou sorrowest for doe me": [0, 65535], "of them thou sorrowest for doe me the": [0, 65535], "them thou sorrowest for doe me the fauour": [0, 65535], "thou sorrowest for doe me the fauour to": [0, 65535], "sorrowest for doe me the fauour to dilate": [0, 65535], "for doe me the fauour to dilate at": [0, 65535], "doe me the fauour to dilate at full": [0, 65535], "me the fauour to dilate at full what": [0, 65535], "the fauour to dilate at full what haue": [0, 65535], "fauour to dilate at full what haue befalne": [0, 65535], "to dilate at full what haue befalne of": [0, 65535], "dilate at full what haue befalne of them": [0, 65535], "at full what haue befalne of them and": [0, 65535], "full what haue befalne of them and they": [0, 65535], "what haue befalne of them and they till": [0, 65535], "haue befalne of them and they till now": [0, 65535], "befalne of them and they till now merch": [0, 65535], "of them and they till now merch my": [0, 65535], "them and they till now merch my yongest": [0, 65535], "and they till now merch my yongest boy": [0, 65535], "they till now merch my yongest boy and": [0, 65535], "till now merch my yongest boy and yet": [0, 65535], "now merch my yongest boy and yet my": [0, 65535], "merch my yongest boy and yet my eldest": [0, 65535], "my yongest boy and yet my eldest care": [0, 65535], "yongest boy and yet my eldest care at": [0, 65535], "boy and yet my eldest care at eighteene": [0, 65535], "and yet my eldest care at eighteene yeeres": [0, 65535], "yet my eldest care at eighteene yeeres became": [0, 65535], "my eldest care at eighteene yeeres became inquisitiue": [0, 65535], "eldest care at eighteene yeeres became inquisitiue after": [0, 65535], "care at eighteene yeeres became inquisitiue after his": [0, 65535], "at eighteene yeeres became inquisitiue after his brother": [0, 65535], "eighteene yeeres became inquisitiue after his brother and": [0, 65535], "yeeres became inquisitiue after his brother and importun'd": [0, 65535], "became inquisitiue after his brother and importun'd me": [0, 65535], "inquisitiue after his brother and importun'd me that": [0, 65535], "after his brother and importun'd me that his": [0, 65535], "his brother and importun'd me that his attendant": [0, 65535], "brother and importun'd me that his attendant so": [0, 65535], "and importun'd me that his attendant so his": [0, 65535], "importun'd me that his attendant so his case": [0, 65535], "me that his attendant so his case was": [0, 65535], "that his attendant so his case was like": [0, 65535], "his attendant so his case was like reft": [0, 65535], "attendant so his case was like reft of": [0, 65535], "so his case was like reft of his": [0, 65535], "his case was like reft of his brother": [0, 65535], "case was like reft of his brother but": [0, 65535], "was like reft of his brother but retain'd": [0, 65535], "like reft of his brother but retain'd his": [0, 65535], "reft of his brother but retain'd his name": [0, 65535], "of his brother but retain'd his name might": [0, 65535], "his brother but retain'd his name might beare": [0, 65535], "brother but retain'd his name might beare him": [0, 65535], "but retain'd his name might beare him company": [0, 65535], "retain'd his name might beare him company in": [0, 65535], "his name might beare him company in the": [0, 65535], "name might beare him company in the quest": [0, 65535], "might beare him company in the quest of": [0, 65535], "beare him company in the quest of him": [0, 65535], "him company in the quest of him whom": [0, 65535], "company in the quest of him whom whil'st": [0, 65535], "in the quest of him whom whil'st i": [0, 65535], "the quest of him whom whil'st i laboured": [0, 65535], "quest of him whom whil'st i laboured of": [0, 65535], "of him whom whil'st i laboured of a": [0, 65535], "him whom whil'st i laboured of a loue": [0, 65535], "whom whil'st i laboured of a loue to": [0, 65535], "whil'st i laboured of a loue to see": [0, 65535], "i laboured of a loue to see i": [0, 65535], "laboured of a loue to see i hazarded": [0, 65535], "of a loue to see i hazarded the": [0, 65535], "a loue to see i hazarded the losse": [0, 65535], "loue to see i hazarded the losse of": [0, 65535], "to see i hazarded the losse of whom": [0, 65535], "see i hazarded the losse of whom i": [0, 65535], "i hazarded the losse of whom i lou'd": [0, 65535], "hazarded the losse of whom i lou'd fiue": [0, 65535], "the losse of whom i lou'd fiue sommers": [0, 65535], "losse of whom i lou'd fiue sommers haue": [0, 65535], "of whom i lou'd fiue sommers haue i": [0, 65535], "whom i lou'd fiue sommers haue i spent": [0, 65535], "i lou'd fiue sommers haue i spent in": [0, 65535], "lou'd fiue sommers haue i spent in farthest": [0, 65535], "fiue sommers haue i spent in farthest greece": [0, 65535], "sommers haue i spent in farthest greece roming": [0, 65535], "haue i spent in farthest greece roming cleane": [0, 65535], "i spent in farthest greece roming cleane through": [0, 65535], "spent in farthest greece roming cleane through the": [0, 65535], "in farthest greece roming cleane through the bounds": [0, 65535], "farthest greece roming cleane through the bounds of": [0, 65535], "greece roming cleane through the bounds of asia": [0, 65535], "roming cleane through the bounds of asia and": [0, 65535], "cleane through the bounds of asia and coasting": [0, 65535], "through the bounds of asia and coasting homeward": [0, 65535], "the bounds of asia and coasting homeward came": [0, 65535], "bounds of asia and coasting homeward came to": [0, 65535], "of asia and coasting homeward came to ephesus": [0, 65535], "asia and coasting homeward came to ephesus hopelesse": [0, 65535], "and coasting homeward came to ephesus hopelesse to": [0, 65535], "coasting homeward came to ephesus hopelesse to finde": [0, 65535], "homeward came to ephesus hopelesse to finde yet": [0, 65535], "came to ephesus hopelesse to finde yet loth": [0, 65535], "to ephesus hopelesse to finde yet loth to": [0, 65535], "ephesus hopelesse to finde yet loth to leaue": [0, 65535], "hopelesse to finde yet loth to leaue vnsought": [0, 65535], "to finde yet loth to leaue vnsought or": [0, 65535], "finde yet loth to leaue vnsought or that": [0, 65535], "yet loth to leaue vnsought or that or": [0, 65535], "loth to leaue vnsought or that or any": [0, 65535], "to leaue vnsought or that or any place": [0, 65535], "leaue vnsought or that or any place that": [0, 65535], "vnsought or that or any place that harbours": [0, 65535], "or that or any place that harbours men": [0, 65535], "that or any place that harbours men but": [0, 65535], "or any place that harbours men but heere": [0, 65535], "any place that harbours men but heere must": [0, 65535], "place that harbours men but heere must end": [0, 65535], "that harbours men but heere must end the": [0, 65535], "harbours men but heere must end the story": [0, 65535], "men but heere must end the story of": [0, 65535], "but heere must end the story of my": [0, 65535], "heere must end the story of my life": [0, 65535], "must end the story of my life and": [0, 65535], "end the story of my life and happy": [0, 65535], "the story of my life and happy were": [0, 65535], "story of my life and happy were i": [0, 65535], "of my life and happy were i in": [0, 65535], "my life and happy were i in my": [0, 65535], "life and happy were i in my timelie": [0, 65535], "and happy were i in my timelie death": [0, 65535], "happy were i in my timelie death could": [0, 65535], "were i in my timelie death could all": [0, 65535], "i in my timelie death could all my": [0, 65535], "in my timelie death could all my trauells": [0, 65535], "my timelie death could all my trauells warrant": [0, 65535], "timelie death could all my trauells warrant me": [0, 65535], "death could all my trauells warrant me they": [0, 65535], "could all my trauells warrant me they liue": [0, 65535], "all my trauells warrant me they liue duke": [0, 65535], "my trauells warrant me they liue duke haplesse": [0, 65535], "trauells warrant me they liue duke haplesse egeon": [0, 65535], "warrant me they liue duke haplesse egeon whom": [0, 65535], "me they liue duke haplesse egeon whom the": [0, 65535], "they liue duke haplesse egeon whom the fates": [0, 65535], "liue duke haplesse egeon whom the fates haue": [0, 65535], "duke haplesse egeon whom the fates haue markt": [0, 65535], "haplesse egeon whom the fates haue markt to": [0, 65535], "egeon whom the fates haue markt to beare": [0, 65535], "whom the fates haue markt to beare the": [0, 65535], "the fates haue markt to beare the extremitie": [0, 65535], "fates haue markt to beare the extremitie of": [0, 65535], "haue markt to beare the extremitie of dire": [0, 65535], "markt to beare the extremitie of dire mishap": [0, 65535], "to beare the extremitie of dire mishap now": [0, 65535], "beare the extremitie of dire mishap now trust": [0, 65535], "the extremitie of dire mishap now trust me": [0, 65535], "extremitie of dire mishap now trust me were": [0, 65535], "of dire mishap now trust me were it": [0, 65535], "dire mishap now trust me were it not": [0, 65535], "mishap now trust me were it not against": [0, 65535], "now trust me were it not against our": [0, 65535], "trust me were it not against our lawes": [0, 65535], "me were it not against our lawes against": [0, 65535], "were it not against our lawes against my": [0, 65535], "it not against our lawes against my crowne": [0, 65535], "not against our lawes against my crowne my": [0, 65535], "against our lawes against my crowne my oath": [0, 65535], "our lawes against my crowne my oath my": [0, 65535], "lawes against my crowne my oath my dignity": [0, 65535], "against my crowne my oath my dignity which": [0, 65535], "my crowne my oath my dignity which princes": [0, 65535], "crowne my oath my dignity which princes would": [0, 65535], "my oath my dignity which princes would they": [0, 65535], "oath my dignity which princes would they may": [0, 65535], "my dignity which princes would they may not": [0, 65535], "dignity which princes would they may not disanull": [0, 65535], "which princes would they may not disanull my": [0, 65535], "princes would they may not disanull my soule": [0, 65535], "would they may not disanull my soule should": [0, 65535], "they may not disanull my soule should sue": [0, 65535], "may not disanull my soule should sue as": [0, 65535], "not disanull my soule should sue as aduocate": [0, 65535], "disanull my soule should sue as aduocate for": [0, 65535], "my soule should sue as aduocate for thee": [0, 65535], "soule should sue as aduocate for thee but": [0, 65535], "should sue as aduocate for thee but though": [0, 65535], "sue as aduocate for thee but though thou": [0, 65535], "as aduocate for thee but though thou art": [0, 65535], "aduocate for thee but though thou art adiudged": [0, 65535], "for thee but though thou art adiudged to": [0, 65535], "thee but though thou art adiudged to the": [0, 65535], "but though thou art adiudged to the death": [0, 65535], "though thou art adiudged to the death and": [0, 65535], "thou art adiudged to the death and passed": [0, 65535], "art adiudged to the death and passed sentence": [0, 65535], "adiudged to the death and passed sentence may": [0, 65535], "to the death and passed sentence may not": [0, 65535], "the death and passed sentence may not be": [0, 65535], "death and passed sentence may not be recal'd": [0, 65535], "and passed sentence may not be recal'd but": [0, 65535], "passed sentence may not be recal'd but to": [0, 65535], "sentence may not be recal'd but to our": [0, 65535], "may not be recal'd but to our honours": [0, 65535], "not be recal'd but to our honours great": [0, 65535], "be recal'd but to our honours great disparagement": [0, 65535], "recal'd but to our honours great disparagement yet": [0, 65535], "but to our honours great disparagement yet will": [0, 65535], "to our honours great disparagement yet will i": [0, 65535], "our honours great disparagement yet will i fauour": [0, 65535], "honours great disparagement yet will i fauour thee": [0, 65535], "great disparagement yet will i fauour thee in": [0, 65535], "disparagement yet will i fauour thee in what": [0, 65535], "yet will i fauour thee in what i": [0, 65535], "will i fauour thee in what i can": [0, 65535], "i fauour thee in what i can therefore": [0, 65535], "fauour thee in what i can therefore marchant": [0, 65535], "thee in what i can therefore marchant ile": [0, 65535], "in what i can therefore marchant ile limit": [0, 65535], "what i can therefore marchant ile limit thee": [0, 65535], "i can therefore marchant ile limit thee this": [0, 65535], "can therefore marchant ile limit thee this day": [0, 65535], "therefore marchant ile limit thee this day to": [0, 65535], "marchant ile limit thee this day to seeke": [0, 65535], "ile limit thee this day to seeke thy": [0, 65535], "limit thee this day to seeke thy helpe": [0, 65535], "thee this day to seeke thy helpe by": [0, 65535], "this day to seeke thy helpe by beneficiall": [0, 65535], "day to seeke thy helpe by beneficiall helpe": [0, 65535], "to seeke thy helpe by beneficiall helpe try": [0, 65535], "seeke thy helpe by beneficiall helpe try all": [0, 65535], "thy helpe by beneficiall helpe try all the": [0, 65535], "helpe by beneficiall helpe try all the friends": [0, 65535], "by beneficiall helpe try all the friends thou": [0, 65535], "beneficiall helpe try all the friends thou hast": [0, 65535], "helpe try all the friends thou hast in": [0, 65535], "try all the friends thou hast in ephesus": [0, 65535], "all the friends thou hast in ephesus beg": [0, 65535], "the friends thou hast in ephesus beg thou": [0, 65535], "friends thou hast in ephesus beg thou or": [0, 65535], "thou hast in ephesus beg thou or borrow": [0, 65535], "hast in ephesus beg thou or borrow to": [0, 65535], "in ephesus beg thou or borrow to make": [0, 65535], "ephesus beg thou or borrow to make vp": [0, 65535], "beg thou or borrow to make vp the": [0, 65535], "thou or borrow to make vp the summe": [0, 65535], "or borrow to make vp the summe and": [0, 65535], "borrow to make vp the summe and liue": [0, 65535], "to make vp the summe and liue if": [0, 65535], "make vp the summe and liue if no": [0, 65535], "vp the summe and liue if no then": [0, 65535], "the summe and liue if no then thou": [0, 65535], "summe and liue if no then thou art": [0, 65535], "and liue if no then thou art doom'd": [0, 65535], "liue if no then thou art doom'd to": [0, 65535], "if no then thou art doom'd to die": [0, 65535], "no then thou art doom'd to die iaylor": [0, 65535], "then thou art doom'd to die iaylor take": [0, 65535], "thou art doom'd to die iaylor take him": [0, 65535], "art doom'd to die iaylor take him to": [0, 65535], "doom'd to die iaylor take him to thy": [0, 65535], "to die iaylor take him to thy custodie": [0, 65535], "die iaylor take him to thy custodie iaylor": [0, 65535], "iaylor take him to thy custodie iaylor i": [0, 65535], "take him to thy custodie iaylor i will": [0, 65535], "him to thy custodie iaylor i will my": [0, 65535], "to thy custodie iaylor i will my lord": [0, 65535], "thy custodie iaylor i will my lord merch": [0, 65535], "custodie iaylor i will my lord merch hopelesse": [0, 65535], "iaylor i will my lord merch hopelesse and": [0, 65535], "i will my lord merch hopelesse and helpelesse": [0, 65535], "will my lord merch hopelesse and helpelesse doth": [0, 65535], "my lord merch hopelesse and helpelesse doth egean": [0, 65535], "lord merch hopelesse and helpelesse doth egean wend": [0, 65535], "merch hopelesse and helpelesse doth egean wend but": [0, 65535], "hopelesse and helpelesse doth egean wend but to": [0, 65535], "and helpelesse doth egean wend but to procrastinate": [0, 65535], "helpelesse doth egean wend but to procrastinate his": [0, 65535], "doth egean wend but to procrastinate his liuelesse": [0, 65535], "egean wend but to procrastinate his liuelesse end": [0, 65535], "wend but to procrastinate his liuelesse end exeunt": [0, 65535], "but to procrastinate his liuelesse end exeunt enter": [0, 65535], "to procrastinate his liuelesse end exeunt enter antipholis": [0, 65535], "procrastinate his liuelesse end exeunt enter antipholis erotes": [0, 65535], "his liuelesse end exeunt enter antipholis erotes a": [0, 65535], "liuelesse end exeunt enter antipholis erotes a marchant": [0, 65535], "end exeunt enter antipholis erotes a marchant and": [0, 65535], "exeunt enter antipholis erotes a marchant and dromio": [0, 65535], "enter antipholis erotes a marchant and dromio mer": [0, 65535], "antipholis erotes a marchant and dromio mer therefore": [0, 65535], "erotes a marchant and dromio mer therefore giue": [0, 65535], "a marchant and dromio mer therefore giue out": [0, 65535], "marchant and dromio mer therefore giue out you": [0, 65535], "and dromio mer therefore giue out you are": [0, 65535], "dromio mer therefore giue out you are of": [0, 65535], "mer therefore giue out you are of epidamium": [0, 65535], "therefore giue out you are of epidamium lest": [0, 65535], "giue out you are of epidamium lest that": [0, 65535], "out you are of epidamium lest that your": [0, 65535], "you are of epidamium lest that your goods": [0, 65535], "are of epidamium lest that your goods too": [0, 65535], "of epidamium lest that your goods too soone": [0, 65535], "epidamium lest that your goods too soone be": [0, 65535], "lest that your goods too soone be confiscate": [0, 65535], "that your goods too soone be confiscate this": [0, 65535], "your goods too soone be confiscate this very": [0, 65535], "goods too soone be confiscate this very day": [0, 65535], "too soone be confiscate this very day a": [0, 65535], "soone be confiscate this very day a syracusian": [0, 65535], "be confiscate this very day a syracusian marchant": [0, 65535], "confiscate this very day a syracusian marchant is": [0, 65535], "this very day a syracusian marchant is apprehended": [0, 65535], "very day a syracusian marchant is apprehended for": [0, 65535], "day a syracusian marchant is apprehended for a": [0, 65535], "a syracusian marchant is apprehended for a riuall": [0, 65535], "syracusian marchant is apprehended for a riuall here": [0, 65535], "marchant is apprehended for a riuall here and": [0, 65535], "is apprehended for a riuall here and not": [0, 65535], "apprehended for a riuall here and not being": [0, 65535], "for a riuall here and not being able": [0, 65535], "a riuall here and not being able to": [0, 65535], "riuall here and not being able to buy": [0, 65535], "here and not being able to buy out": [0, 65535], "and not being able to buy out his": [0, 65535], "not being able to buy out his life": [0, 65535], "being able to buy out his life according": [0, 65535], "able to buy out his life according to": [0, 65535], "to buy out his life according to the": [0, 65535], "buy out his life according to the statute": [0, 65535], "out his life according to the statute of": [0, 65535], "his life according to the statute of the": [0, 65535], "life according to the statute of the towne": [0, 65535], "according to the statute of the towne dies": [0, 65535], "to the statute of the towne dies ere": [0, 65535], "the statute of the towne dies ere the": [0, 65535], "statute of the towne dies ere the wearie": [0, 65535], "of the towne dies ere the wearie sunne": [0, 65535], "the towne dies ere the wearie sunne set": [0, 65535], "towne dies ere the wearie sunne set in": [0, 65535], "dies ere the wearie sunne set in the": [0, 65535], "ere the wearie sunne set in the west": [0, 65535], "the wearie sunne set in the west there": [0, 65535], "wearie sunne set in the west there is": [0, 65535], "sunne set in the west there is your": [0, 65535], "set in the west there is your monie": [0, 65535], "in the west there is your monie that": [0, 65535], "the west there is your monie that i": [0, 65535], "west there is your monie that i had": [0, 65535], "there is your monie that i had to": [0, 65535], "is your monie that i had to keepe": [0, 65535], "your monie that i had to keepe ant": [0, 65535], "monie that i had to keepe ant goe": [0, 65535], "that i had to keepe ant goe beare": [0, 65535], "i had to keepe ant goe beare it": [0, 65535], "had to keepe ant goe beare it to": [0, 65535], "to keepe ant goe beare it to the": [0, 65535], "keepe ant goe beare it to the centaure": [0, 65535], "ant goe beare it to the centaure where": [0, 65535], "goe beare it to the centaure where we": [0, 65535], "beare it to the centaure where we host": [0, 65535], "it to the centaure where we host and": [0, 65535], "to the centaure where we host and stay": [0, 65535], "the centaure where we host and stay there": [0, 65535], "centaure where we host and stay there dromio": [0, 65535], "where we host and stay there dromio till": [0, 65535], "we host and stay there dromio till i": [0, 65535], "host and stay there dromio till i come": [0, 65535], "and stay there dromio till i come to": [0, 65535], "stay there dromio till i come to thee": [0, 65535], "there dromio till i come to thee within": [0, 65535], "dromio till i come to thee within this": [0, 65535], "till i come to thee within this houre": [0, 65535], "i come to thee within this houre it": [0, 65535], "come to thee within this houre it will": [0, 65535], "to thee within this houre it will be": [0, 65535], "thee within this houre it will be dinner": [0, 65535], "within this houre it will be dinner time": [0, 65535], "this houre it will be dinner time till": [0, 65535], "houre it will be dinner time till that": [0, 65535], "it will be dinner time till that ile": [0, 65535], "will be dinner time till that ile view": [0, 65535], "be dinner time till that ile view the": [0, 65535], "dinner time till that ile view the manners": [0, 65535], "time till that ile view the manners of": [0, 65535], "till that ile view the manners of the": [0, 65535], "that ile view the manners of the towne": [0, 65535], "ile view the manners of the towne peruse": [0, 65535], "view the manners of the towne peruse the": [0, 65535], "the manners of the towne peruse the traders": [0, 65535], "manners of the towne peruse the traders gaze": [0, 65535], "of the towne peruse the traders gaze vpon": [0, 65535], "the towne peruse the traders gaze vpon the": [0, 65535], "towne peruse the traders gaze vpon the buildings": [0, 65535], "peruse the traders gaze vpon the buildings and": [0, 65535], "the traders gaze vpon the buildings and then": [0, 65535], "traders gaze vpon the buildings and then returne": [0, 65535], "gaze vpon the buildings and then returne and": [0, 65535], "vpon the buildings and then returne and sleepe": [0, 65535], "the buildings and then returne and sleepe within": [0, 65535], "buildings and then returne and sleepe within mine": [0, 65535], "and then returne and sleepe within mine inne": [0, 65535], "then returne and sleepe within mine inne for": [0, 65535], "returne and sleepe within mine inne for with": [0, 65535], "and sleepe within mine inne for with long": [0, 65535], "sleepe within mine inne for with long trauaile": [0, 65535], "within mine inne for with long trauaile i": [0, 65535], "mine inne for with long trauaile i am": [0, 65535], "inne for with long trauaile i am stiffe": [0, 65535], "for with long trauaile i am stiffe and": [0, 65535], "with long trauaile i am stiffe and wearie": [0, 65535], "long trauaile i am stiffe and wearie get": [0, 65535], "trauaile i am stiffe and wearie get thee": [0, 65535], "i am stiffe and wearie get thee away": [0, 65535], "am stiffe and wearie get thee away dro": [0, 65535], "stiffe and wearie get thee away dro many": [0, 65535], "and wearie get thee away dro many a": [0, 65535], "wearie get thee away dro many a man": [0, 65535], "get thee away dro many a man would": [0, 65535], "thee away dro many a man would take": [0, 65535], "away dro many a man would take you": [0, 65535], "dro many a man would take you at": [0, 65535], "many a man would take you at your": [0, 65535], "a man would take you at your word": [0, 65535], "man would take you at your word and": [0, 65535], "would take you at your word and goe": [0, 65535], "take you at your word and goe indeede": [0, 65535], "you at your word and goe indeede hauing": [0, 65535], "at your word and goe indeede hauing so": [0, 65535], "your word and goe indeede hauing so good": [0, 65535], "word and goe indeede hauing so good a": [0, 65535], "and goe indeede hauing so good a meane": [0, 65535], "goe indeede hauing so good a meane exit": [0, 65535], "indeede hauing so good a meane exit dromio": [0, 65535], "hauing so good a meane exit dromio ant": [0, 65535], "so good a meane exit dromio ant a": [0, 65535], "good a meane exit dromio ant a trustie": [0, 65535], "a meane exit dromio ant a trustie villaine": [0, 65535], "meane exit dromio ant a trustie villaine sir": [0, 65535], "exit dromio ant a trustie villaine sir that": [0, 65535], "dromio ant a trustie villaine sir that very": [0, 65535], "ant a trustie villaine sir that very oft": [0, 65535], "a trustie villaine sir that very oft when": [0, 65535], "trustie villaine sir that very oft when i": [0, 65535], "villaine sir that very oft when i am": [0, 65535], "sir that very oft when i am dull": [0, 65535], "that very oft when i am dull with": [0, 65535], "very oft when i am dull with care": [0, 65535], "oft when i am dull with care and": [0, 65535], "when i am dull with care and melancholly": [0, 65535], "i am dull with care and melancholly lightens": [0, 65535], "am dull with care and melancholly lightens my": [0, 65535], "dull with care and melancholly lightens my humour": [0, 65535], "with care and melancholly lightens my humour with": [0, 65535], "care and melancholly lightens my humour with his": [0, 65535], "and melancholly lightens my humour with his merry": [0, 65535], "melancholly lightens my humour with his merry iests": [0, 65535], "lightens my humour with his merry iests what": [0, 65535], "my humour with his merry iests what will": [0, 65535], "humour with his merry iests what will you": [0, 65535], "with his merry iests what will you walke": [0, 65535], "his merry iests what will you walke with": [0, 65535], "merry iests what will you walke with me": [0, 65535], "iests what will you walke with me about": [0, 65535], "what will you walke with me about the": [0, 65535], "will you walke with me about the towne": [0, 65535], "you walke with me about the towne and": [0, 65535], "walke with me about the towne and then": [0, 65535], "with me about the towne and then goe": [0, 65535], "me about the towne and then goe to": [0, 65535], "about the towne and then goe to my": [0, 65535], "the towne and then goe to my inne": [0, 65535], "towne and then goe to my inne and": [0, 65535], "and then goe to my inne and dine": [0, 65535], "then goe to my inne and dine with": [0, 65535], "goe to my inne and dine with me": [0, 65535], "to my inne and dine with me e": [0, 65535], "my inne and dine with me e mar": [0, 65535], "inne and dine with me e mar i": [0, 65535], "and dine with me e mar i am": [0, 65535], "dine with me e mar i am inuited": [0, 65535], "with me e mar i am inuited sir": [0, 65535], "me e mar i am inuited sir to": [0, 65535], "e mar i am inuited sir to certaine": [0, 65535], "mar i am inuited sir to certaine marchants": [0, 65535], "i am inuited sir to certaine marchants of": [0, 65535], "am inuited sir to certaine marchants of whom": [0, 65535], "inuited sir to certaine marchants of whom i": [0, 65535], "sir to certaine marchants of whom i hope": [0, 65535], "to certaine marchants of whom i hope to": [0, 65535], "certaine marchants of whom i hope to make": [0, 65535], "marchants of whom i hope to make much": [0, 65535], "of whom i hope to make much benefit": [0, 65535], "whom i hope to make much benefit i": [0, 65535], "i hope to make much benefit i craue": [0, 65535], "hope to make much benefit i craue your": [0, 65535], "to make much benefit i craue your pardon": [0, 65535], "make much benefit i craue your pardon soone": [0, 65535], "much benefit i craue your pardon soone at": [0, 65535], "benefit i craue your pardon soone at fiue": [0, 65535], "i craue your pardon soone at fiue a": [0, 65535], "craue your pardon soone at fiue a clocke": [0, 65535], "your pardon soone at fiue a clocke please": [0, 65535], "pardon soone at fiue a clocke please you": [0, 65535], "soone at fiue a clocke please you ile": [0, 65535], "at fiue a clocke please you ile meete": [0, 65535], "fiue a clocke please you ile meete with": [0, 65535], "a clocke please you ile meete with you": [0, 65535], "clocke please you ile meete with you vpon": [0, 65535], "please you ile meete with you vpon the": [0, 65535], "you ile meete with you vpon the mart": [0, 65535], "ile meete with you vpon the mart and": [0, 65535], "meete with you vpon the mart and afterward": [0, 65535], "with you vpon the mart and afterward consort": [0, 65535], "you vpon the mart and afterward consort you": [0, 65535], "vpon the mart and afterward consort you till": [0, 65535], "the mart and afterward consort you till bed": [0, 65535], "mart and afterward consort you till bed time": [0, 65535], "and afterward consort you till bed time my": [0, 65535], "afterward consort you till bed time my present": [0, 65535], "consort you till bed time my present businesse": [0, 65535], "you till bed time my present businesse cals": [0, 65535], "till bed time my present businesse cals me": [0, 65535], "bed time my present businesse cals me from": [0, 65535], "time my present businesse cals me from you": [0, 65535], "my present businesse cals me from you now": [0, 65535], "present businesse cals me from you now ant": [0, 65535], "businesse cals me from you now ant farewell": [0, 65535], "cals me from you now ant farewell till": [0, 65535], "me from you now ant farewell till then": [0, 65535], "from you now ant farewell till then i": [0, 65535], "you now ant farewell till then i will": [0, 65535], "now ant farewell till then i will goe": [0, 65535], "ant farewell till then i will goe loose": [0, 65535], "farewell till then i will goe loose my": [0, 65535], "till then i will goe loose my selfe": [0, 65535], "then i will goe loose my selfe and": [0, 65535], "i will goe loose my selfe and wander": [0, 65535], "will goe loose my selfe and wander vp": [0, 65535], "goe loose my selfe and wander vp and": [0, 65535], "loose my selfe and wander vp and downe": [0, 65535], "my selfe and wander vp and downe to": [0, 65535], "selfe and wander vp and downe to view": [0, 65535], "and wander vp and downe to view the": [0, 65535], "wander vp and downe to view the citie": [0, 65535], "vp and downe to view the citie e": [0, 65535], "and downe to view the citie e mar": [0, 65535], "downe to view the citie e mar sir": [0, 65535], "to view the citie e mar sir i": [0, 65535], "view the citie e mar sir i commend": [0, 65535], "the citie e mar sir i commend you": [0, 65535], "citie e mar sir i commend you to": [0, 65535], "e mar sir i commend you to your": [0, 65535], "mar sir i commend you to your owne": [0, 65535], "sir i commend you to your owne content": [0, 65535], "i commend you to your owne content exeunt": [0, 65535], "commend you to your owne content exeunt ant": [0, 65535], "you to your owne content exeunt ant he": [0, 65535], "to your owne content exeunt ant he that": [0, 65535], "your owne content exeunt ant he that commends": [0, 65535], "owne content exeunt ant he that commends me": [0, 65535], "content exeunt ant he that commends me to": [0, 65535], "exeunt ant he that commends me to mine": [0, 65535], "ant he that commends me to mine owne": [0, 65535], "he that commends me to mine owne content": [0, 65535], "that commends me to mine owne content commends": [0, 65535], "commends me to mine owne content commends me": [0, 65535], "me to mine owne content commends me to": [0, 65535], "to mine owne content commends me to the": [0, 65535], "mine owne content commends me to the thing": [0, 65535], "owne content commends me to the thing i": [0, 65535], "content commends me to the thing i cannot": [0, 65535], "commends me to the thing i cannot get": [0, 65535], "me to the thing i cannot get i": [0, 65535], "to the thing i cannot get i to": [0, 65535], "the thing i cannot get i to the": [0, 65535], "thing i cannot get i to the world": [0, 65535], "i cannot get i to the world am": [0, 65535], "cannot get i to the world am like": [0, 65535], "get i to the world am like a": [0, 65535], "i to the world am like a drop": [0, 65535], "to the world am like a drop of": [0, 65535], "the world am like a drop of water": [0, 65535], "world am like a drop of water that": [0, 65535], "am like a drop of water that in": [0, 65535], "like a drop of water that in the": [0, 65535], "a drop of water that in the ocean": [0, 65535], "drop of water that in the ocean seekes": [0, 65535], "of water that in the ocean seekes another": [0, 65535], "water that in the ocean seekes another drop": [0, 65535], "that in the ocean seekes another drop who": [0, 65535], "in the ocean seekes another drop who falling": [0, 65535], "the ocean seekes another drop who falling there": [0, 65535], "ocean seekes another drop who falling there to": [0, 65535], "seekes another drop who falling there to finde": [0, 65535], "another drop who falling there to finde his": [0, 65535], "drop who falling there to finde his fellow": [0, 65535], "who falling there to finde his fellow forth": [0, 65535], "falling there to finde his fellow forth vnseene": [0, 65535], "there to finde his fellow forth vnseene inquisitiue": [0, 65535], "to finde his fellow forth vnseene inquisitiue confounds": [0, 65535], "finde his fellow forth vnseene inquisitiue confounds himselfe": [0, 65535], "his fellow forth vnseene inquisitiue confounds himselfe so": [0, 65535], "fellow forth vnseene inquisitiue confounds himselfe so i": [0, 65535], "forth vnseene inquisitiue confounds himselfe so i to": [0, 65535], "vnseene inquisitiue confounds himselfe so i to finde": [0, 65535], "inquisitiue confounds himselfe so i to finde a": [0, 65535], "confounds himselfe so i to finde a mother": [0, 65535], "himselfe so i to finde a mother and": [0, 65535], "so i to finde a mother and a": [0, 65535], "i to finde a mother and a brother": [0, 65535], "to finde a mother and a brother in": [0, 65535], "finde a mother and a brother in quest": [0, 65535], "a mother and a brother in quest of": [0, 65535], "mother and a brother in quest of them": [0, 65535], "and a brother in quest of them vnhappie": [0, 65535], "a brother in quest of them vnhappie a": [0, 65535], "brother in quest of them vnhappie a loose": [0, 65535], "in quest of them vnhappie a loose my": [0, 65535], "quest of them vnhappie a loose my selfe": [0, 65535], "of them vnhappie a loose my selfe enter": [0, 65535], "them vnhappie a loose my selfe enter dromio": [0, 65535], "vnhappie a loose my selfe enter dromio of": [0, 65535], "a loose my selfe enter dromio of ephesus": [0, 65535], "loose my selfe enter dromio of ephesus here": [0, 65535], "my selfe enter dromio of ephesus here comes": [0, 65535], "selfe enter dromio of ephesus here comes the": [0, 65535], "enter dromio of ephesus here comes the almanacke": [0, 65535], "dromio of ephesus here comes the almanacke of": [0, 65535], "of ephesus here comes the almanacke of my": [0, 65535], "ephesus here comes the almanacke of my true": [0, 65535], "here comes the almanacke of my true date": [0, 65535], "comes the almanacke of my true date what": [0, 65535], "the almanacke of my true date what now": [0, 65535], "almanacke of my true date what now how": [0, 65535], "of my true date what now how chance": [0, 65535], "my true date what now how chance thou": [0, 65535], "true date what now how chance thou art": [0, 65535], "date what now how chance thou art return'd": [0, 65535], "what now how chance thou art return'd so": [0, 65535], "now how chance thou art return'd so soone": [0, 65535], "how chance thou art return'd so soone e": [0, 65535], "chance thou art return'd so soone e dro": [0, 65535], "thou art return'd so soone e dro return'd": [0, 65535], "art return'd so soone e dro return'd so": [0, 65535], "return'd so soone e dro return'd so soone": [0, 65535], "so soone e dro return'd so soone rather": [0, 65535], "soone e dro return'd so soone rather approacht": [0, 65535], "e dro return'd so soone rather approacht too": [0, 65535], "dro return'd so soone rather approacht too late": [0, 65535], "return'd so soone rather approacht too late the": [0, 65535], "so soone rather approacht too late the capon": [0, 65535], "soone rather approacht too late the capon burnes": [0, 65535], "rather approacht too late the capon burnes the": [0, 65535], "approacht too late the capon burnes the pig": [0, 65535], "too late the capon burnes the pig fals": [0, 65535], "late the capon burnes the pig fals from": [0, 65535], "the capon burnes the pig fals from the": [0, 65535], "capon burnes the pig fals from the spit": [0, 65535], "burnes the pig fals from the spit the": [0, 65535], "the pig fals from the spit the clocke": [0, 65535], "pig fals from the spit the clocke hath": [0, 65535], "fals from the spit the clocke hath strucken": [0, 65535], "from the spit the clocke hath strucken twelue": [0, 65535], "the spit the clocke hath strucken twelue vpon": [0, 65535], "spit the clocke hath strucken twelue vpon the": [0, 65535], "the clocke hath strucken twelue vpon the bell": [0, 65535], "clocke hath strucken twelue vpon the bell my": [0, 65535], "hath strucken twelue vpon the bell my mistris": [0, 65535], "strucken twelue vpon the bell my mistris made": [0, 65535], "twelue vpon the bell my mistris made it": [0, 65535], "vpon the bell my mistris made it one": [0, 65535], "the bell my mistris made it one vpon": [0, 65535], "bell my mistris made it one vpon my": [0, 65535], "my mistris made it one vpon my cheeke": [0, 65535], "mistris made it one vpon my cheeke she": [0, 65535], "made it one vpon my cheeke she is": [0, 65535], "it one vpon my cheeke she is so": [0, 65535], "one vpon my cheeke she is so hot": [0, 65535], "vpon my cheeke she is so hot because": [0, 65535], "my cheeke she is so hot because the": [0, 65535], "cheeke she is so hot because the meate": [0, 65535], "she is so hot because the meate is": [0, 65535], "is so hot because the meate is colde": [0, 65535], "so hot because the meate is colde the": [0, 65535], "hot because the meate is colde the meate": [0, 65535], "because the meate is colde the meate is": [0, 65535], "the meate is colde the meate is colde": [0, 65535], "meate is colde the meate is colde because": [0, 65535], "is colde the meate is colde because you": [0, 65535], "colde the meate is colde because you come": [0, 65535], "the meate is colde because you come not": [0, 65535], "meate is colde because you come not home": [0, 65535], "is colde because you come not home you": [0, 65535], "colde because you come not home you come": [0, 65535], "because you come not home you come not": [0, 65535], "you come not home you come not home": [0, 65535], "come not home you come not home because": [0, 65535], "not home you come not home because you": [0, 65535], "home you come not home because you haue": [0, 65535], "you come not home because you haue no": [0, 65535], "come not home because you haue no stomacke": [0, 65535], "not home because you haue no stomacke you": [0, 65535], "home because you haue no stomacke you haue": [0, 65535], "because you haue no stomacke you haue no": [0, 65535], "you haue no stomacke you haue no stomacke": [0, 65535], "haue no stomacke you haue no stomacke hauing": [0, 65535], "no stomacke you haue no stomacke hauing broke": [0, 65535], "stomacke you haue no stomacke hauing broke your": [0, 65535], "you haue no stomacke hauing broke your fast": [0, 65535], "haue no stomacke hauing broke your fast but": [0, 65535], "no stomacke hauing broke your fast but we": [0, 65535], "stomacke hauing broke your fast but we that": [0, 65535], "hauing broke your fast but we that know": [0, 65535], "broke your fast but we that know what": [0, 65535], "your fast but we that know what 'tis": [0, 65535], "fast but we that know what 'tis to": [0, 65535], "but we that know what 'tis to fast": [0, 65535], "we that know what 'tis to fast and": [0, 65535], "that know what 'tis to fast and pray": [0, 65535], "know what 'tis to fast and pray are": [0, 65535], "what 'tis to fast and pray are penitent": [0, 65535], "'tis to fast and pray are penitent for": [0, 65535], "to fast and pray are penitent for your": [0, 65535], "fast and pray are penitent for your default": [0, 65535], "and pray are penitent for your default to": [0, 65535], "pray are penitent for your default to day": [0, 65535], "are penitent for your default to day ant": [0, 65535], "penitent for your default to day ant stop": [0, 65535], "for your default to day ant stop in": [0, 65535], "your default to day ant stop in your": [0, 65535], "default to day ant stop in your winde": [0, 65535], "to day ant stop in your winde sir": [0, 65535], "day ant stop in your winde sir tell": [0, 65535], "ant stop in your winde sir tell me": [0, 65535], "stop in your winde sir tell me this": [0, 65535], "in your winde sir tell me this i": [0, 65535], "your winde sir tell me this i pray": [0, 65535], "winde sir tell me this i pray where": [0, 65535], "sir tell me this i pray where haue": [0, 65535], "tell me this i pray where haue you": [0, 65535], "me this i pray where haue you left": [0, 65535], "this i pray where haue you left the": [0, 65535], "i pray where haue you left the mony": [0, 65535], "pray where haue you left the mony that": [0, 65535], "where haue you left the mony that i": [0, 65535], "haue you left the mony that i gaue": [0, 65535], "you left the mony that i gaue you": [0, 65535], "left the mony that i gaue you e": [0, 65535], "the mony that i gaue you e dro": [0, 65535], "mony that i gaue you e dro oh": [0, 65535], "that i gaue you e dro oh sixe": [0, 65535], "i gaue you e dro oh sixe pence": [0, 65535], "gaue you e dro oh sixe pence that": [0, 65535], "you e dro oh sixe pence that i": [0, 65535], "e dro oh sixe pence that i had": [0, 65535], "dro oh sixe pence that i had a": [0, 65535], "oh sixe pence that i had a wensday": [0, 65535], "sixe pence that i had a wensday last": [0, 65535], "pence that i had a wensday last to": [0, 65535], "that i had a wensday last to pay": [0, 65535], "i had a wensday last to pay the": [0, 65535], "had a wensday last to pay the sadler": [0, 65535], "a wensday last to pay the sadler for": [0, 65535], "wensday last to pay the sadler for my": [0, 65535], "last to pay the sadler for my mistris": [0, 65535], "to pay the sadler for my mistris crupper": [0, 65535], "pay the sadler for my mistris crupper the": [0, 65535], "the sadler for my mistris crupper the sadler": [0, 65535], "sadler for my mistris crupper the sadler had": [0, 65535], "for my mistris crupper the sadler had it": [0, 65535], "my mistris crupper the sadler had it sir": [0, 65535], "mistris crupper the sadler had it sir i": [0, 65535], "crupper the sadler had it sir i kept": [0, 65535], "the sadler had it sir i kept it": [0, 65535], "sadler had it sir i kept it not": [0, 65535], "had it sir i kept it not ant": [0, 65535], "it sir i kept it not ant i": [0, 65535], "sir i kept it not ant i am": [0, 65535], "i kept it not ant i am not": [0, 65535], "kept it not ant i am not in": [0, 65535], "it not ant i am not in a": [0, 65535], "not ant i am not in a sportiue": [0, 65535], "ant i am not in a sportiue humor": [0, 65535], "i am not in a sportiue humor now": [0, 65535], "am not in a sportiue humor now tell": [0, 65535], "not in a sportiue humor now tell me": [0, 65535], "in a sportiue humor now tell me and": [0, 65535], "a sportiue humor now tell me and dally": [0, 65535], "sportiue humor now tell me and dally not": [0, 65535], "humor now tell me and dally not where": [0, 65535], "now tell me and dally not where is": [0, 65535], "tell me and dally not where is the": [0, 65535], "me and dally not where is the monie": [0, 65535], "and dally not where is the monie we": [0, 65535], "dally not where is the monie we being": [0, 65535], "not where is the monie we being strangers": [0, 65535], "where is the monie we being strangers here": [0, 65535], "is the monie we being strangers here how": [0, 65535], "the monie we being strangers here how dar'st": [0, 65535], "monie we being strangers here how dar'st thou": [0, 65535], "we being strangers here how dar'st thou trust": [0, 65535], "being strangers here how dar'st thou trust so": [0, 65535], "strangers here how dar'st thou trust so great": [0, 65535], "here how dar'st thou trust so great a": [0, 65535], "how dar'st thou trust so great a charge": [0, 65535], "dar'st thou trust so great a charge from": [0, 65535], "thou trust so great a charge from thine": [0, 65535], "trust so great a charge from thine owne": [0, 65535], "so great a charge from thine owne custodie": [0, 65535], "great a charge from thine owne custodie e": [0, 65535], "a charge from thine owne custodie e dro": [0, 65535], "charge from thine owne custodie e dro i": [0, 65535], "from thine owne custodie e dro i pray": [0, 65535], "thine owne custodie e dro i pray you": [0, 65535], "owne custodie e dro i pray you iest": [0, 65535], "custodie e dro i pray you iest sir": [0, 65535], "e dro i pray you iest sir as": [0, 65535], "dro i pray you iest sir as you": [0, 65535], "i pray you iest sir as you sit": [0, 65535], "pray you iest sir as you sit at": [0, 65535], "you iest sir as you sit at dinner": [0, 65535], "iest sir as you sit at dinner i": [0, 65535], "sir as you sit at dinner i from": [0, 65535], "as you sit at dinner i from my": [0, 65535], "you sit at dinner i from my mistris": [0, 65535], "sit at dinner i from my mistris come": [0, 65535], "at dinner i from my mistris come to": [0, 65535], "dinner i from my mistris come to you": [0, 65535], "i from my mistris come to you in": [0, 65535], "from my mistris come to you in post": [0, 65535], "my mistris come to you in post if": [0, 65535], "mistris come to you in post if i": [0, 65535], "come to you in post if i returne": [0, 65535], "to you in post if i returne i": [0, 65535], "you in post if i returne i shall": [0, 65535], "in post if i returne i shall be": [0, 65535], "post if i returne i shall be post": [0, 65535], "if i returne i shall be post indeede": [0, 65535], "i returne i shall be post indeede for": [0, 65535], "returne i shall be post indeede for she": [0, 65535], "i shall be post indeede for she will": [0, 65535], "shall be post indeede for she will scoure": [0, 65535], "be post indeede for she will scoure your": [0, 65535], "post indeede for she will scoure your fault": [0, 65535], "indeede for she will scoure your fault vpon": [0, 65535], "for she will scoure your fault vpon my": [0, 65535], "she will scoure your fault vpon my pate": [0, 65535], "will scoure your fault vpon my pate me": [0, 65535], "scoure your fault vpon my pate me thinkes": [0, 65535], "your fault vpon my pate me thinkes your": [0, 65535], "fault vpon my pate me thinkes your maw": [0, 65535], "vpon my pate me thinkes your maw like": [0, 65535], "my pate me thinkes your maw like mine": [0, 65535], "pate me thinkes your maw like mine should": [0, 65535], "me thinkes your maw like mine should be": [0, 65535], "thinkes your maw like mine should be your": [0, 65535], "your maw like mine should be your cooke": [0, 65535], "maw like mine should be your cooke and": [0, 65535], "like mine should be your cooke and strike": [0, 65535], "mine should be your cooke and strike you": [0, 65535], "should be your cooke and strike you home": [0, 65535], "be your cooke and strike you home without": [0, 65535], "your cooke and strike you home without a": [0, 65535], "cooke and strike you home without a messenger": [0, 65535], "and strike you home without a messenger ant": [0, 65535], "strike you home without a messenger ant come": [0, 65535], "you home without a messenger ant come dromio": [0, 65535], "home without a messenger ant come dromio come": [0, 65535], "without a messenger ant come dromio come these": [0, 65535], "a messenger ant come dromio come these iests": [0, 65535], "messenger ant come dromio come these iests are": [0, 65535], "ant come dromio come these iests are out": [0, 65535], "come dromio come these iests are out of": [0, 65535], "dromio come these iests are out of season": [0, 65535], "come these iests are out of season reserue": [0, 65535], "these iests are out of season reserue them": [0, 65535], "iests are out of season reserue them till": [0, 65535], "are out of season reserue them till a": [0, 65535], "out of season reserue them till a merrier": [0, 65535], "of season reserue them till a merrier houre": [0, 65535], "season reserue them till a merrier houre then": [0, 65535], "reserue them till a merrier houre then this": [0, 65535], "them till a merrier houre then this where": [0, 65535], "till a merrier houre then this where is": [0, 65535], "a merrier houre then this where is the": [0, 65535], "merrier houre then this where is the gold": [0, 65535], "houre then this where is the gold i": [0, 65535], "then this where is the gold i gaue": [0, 65535], "this where is the gold i gaue in": [0, 65535], "where is the gold i gaue in charge": [0, 65535], "is the gold i gaue in charge to": [0, 65535], "the gold i gaue in charge to thee": [0, 65535], "gold i gaue in charge to thee e": [0, 65535], "i gaue in charge to thee e dro": [0, 65535], "gaue in charge to thee e dro to": [0, 65535], "in charge to thee e dro to me": [0, 65535], "charge to thee e dro to me sir": [0, 65535], "to thee e dro to me sir why": [0, 65535], "thee e dro to me sir why you": [0, 65535], "e dro to me sir why you gaue": [0, 65535], "dro to me sir why you gaue no": [0, 65535], "to me sir why you gaue no gold": [0, 65535], "me sir why you gaue no gold to": [0, 65535], "sir why you gaue no gold to me": [0, 65535], "why you gaue no gold to me ant": [0, 65535], "you gaue no gold to me ant come": [0, 65535], "gaue no gold to me ant come on": [0, 65535], "no gold to me ant come on sir": [0, 65535], "gold to me ant come on sir knaue": [0, 65535], "to me ant come on sir knaue haue": [0, 65535], "me ant come on sir knaue haue done": [0, 65535], "ant come on sir knaue haue done your": [0, 65535], "come on sir knaue haue done your foolishnes": [0, 65535], "on sir knaue haue done your foolishnes and": [0, 65535], "sir knaue haue done your foolishnes and tell": [0, 65535], "knaue haue done your foolishnes and tell me": [0, 65535], "haue done your foolishnes and tell me how": [0, 65535], "done your foolishnes and tell me how thou": [0, 65535], "your foolishnes and tell me how thou hast": [0, 65535], "foolishnes and tell me how thou hast dispos'd": [0, 65535], "and tell me how thou hast dispos'd thy": [0, 65535], "tell me how thou hast dispos'd thy charge": [0, 65535], "me how thou hast dispos'd thy charge e": [0, 65535], "how thou hast dispos'd thy charge e dro": [0, 65535], "thou hast dispos'd thy charge e dro my": [0, 65535], "hast dispos'd thy charge e dro my charge": [0, 65535], "dispos'd thy charge e dro my charge was": [0, 65535], "thy charge e dro my charge was but": [0, 65535], "charge e dro my charge was but to": [0, 65535], "e dro my charge was but to fetch": [0, 65535], "dro my charge was but to fetch you": [0, 65535], "my charge was but to fetch you from": [0, 65535], "charge was but to fetch you from the": [0, 65535], "was but to fetch you from the mart": [0, 65535], "but to fetch you from the mart home": [0, 65535], "to fetch you from the mart home to": [0, 65535], "fetch you from the mart home to your": [0, 65535], "you from the mart home to your house": [0, 65535], "from the mart home to your house the": [0, 65535], "the mart home to your house the ph\u0153nix": [0, 65535], "mart home to your house the ph\u0153nix sir": [0, 65535], "home to your house the ph\u0153nix sir to": [0, 65535], "to your house the ph\u0153nix sir to dinner": [0, 65535], "your house the ph\u0153nix sir to dinner my": [0, 65535], "house the ph\u0153nix sir to dinner my mistris": [0, 65535], "the ph\u0153nix sir to dinner my mistris and": [0, 65535], "ph\u0153nix sir to dinner my mistris and her": [0, 65535], "sir to dinner my mistris and her sister": [0, 65535], "to dinner my mistris and her sister staies": [0, 65535], "dinner my mistris and her sister staies for": [0, 65535], "my mistris and her sister staies for you": [0, 65535], "mistris and her sister staies for you ant": [0, 65535], "and her sister staies for you ant now": [0, 65535], "her sister staies for you ant now as": [0, 65535], "sister staies for you ant now as i": [0, 65535], "staies for you ant now as i am": [0, 65535], "for you ant now as i am a": [0, 65535], "you ant now as i am a christian": [0, 65535], "ant now as i am a christian answer": [0, 65535], "now as i am a christian answer me": [0, 65535], "as i am a christian answer me in": [0, 65535], "i am a christian answer me in what": [0, 65535], "am a christian answer me in what safe": [0, 65535], "a christian answer me in what safe place": [0, 65535], "christian answer me in what safe place you": [0, 65535], "answer me in what safe place you haue": [0, 65535], "me in what safe place you haue bestow'd": [0, 65535], "in what safe place you haue bestow'd my": [0, 65535], "what safe place you haue bestow'd my monie": [0, 65535], "safe place you haue bestow'd my monie or": [0, 65535], "place you haue bestow'd my monie or i": [0, 65535], "you haue bestow'd my monie or i shall": [0, 65535], "haue bestow'd my monie or i shall breake": [0, 65535], "bestow'd my monie or i shall breake that": [0, 65535], "my monie or i shall breake that merrie": [0, 65535], "monie or i shall breake that merrie sconce": [0, 65535], "or i shall breake that merrie sconce of": [0, 65535], "i shall breake that merrie sconce of yours": [0, 65535], "shall breake that merrie sconce of yours that": [0, 65535], "breake that merrie sconce of yours that stands": [0, 65535], "that merrie sconce of yours that stands on": [0, 65535], "merrie sconce of yours that stands on tricks": [0, 65535], "sconce of yours that stands on tricks when": [0, 65535], "of yours that stands on tricks when i": [0, 65535], "yours that stands on tricks when i am": [0, 65535], "that stands on tricks when i am vndispos'd": [0, 65535], "stands on tricks when i am vndispos'd where": [0, 65535], "on tricks when i am vndispos'd where is": [0, 65535], "tricks when i am vndispos'd where is the": [0, 65535], "when i am vndispos'd where is the thousand": [0, 65535], "i am vndispos'd where is the thousand markes": [0, 65535], "am vndispos'd where is the thousand markes thou": [0, 65535], "vndispos'd where is the thousand markes thou hadst": [0, 65535], "where is the thousand markes thou hadst of": [0, 65535], "is the thousand markes thou hadst of me": [0, 65535], "the thousand markes thou hadst of me e": [0, 65535], "thousand markes thou hadst of me e dro": [0, 65535], "markes thou hadst of me e dro i": [0, 65535], "thou hadst of me e dro i haue": [0, 65535], "hadst of me e dro i haue some": [0, 65535], "of me e dro i haue some markes": [0, 65535], "me e dro i haue some markes of": [0, 65535], "e dro i haue some markes of yours": [0, 65535], "dro i haue some markes of yours vpon": [0, 65535], "i haue some markes of yours vpon my": [0, 65535], "haue some markes of yours vpon my pate": [0, 65535], "some markes of yours vpon my pate some": [0, 65535], "markes of yours vpon my pate some of": [0, 65535], "of yours vpon my pate some of my": [0, 65535], "yours vpon my pate some of my mistris": [0, 65535], "vpon my pate some of my mistris markes": [0, 65535], "my pate some of my mistris markes vpon": [0, 65535], "pate some of my mistris markes vpon my": [0, 65535], "some of my mistris markes vpon my shoulders": [0, 65535], "of my mistris markes vpon my shoulders but": [0, 65535], "my mistris markes vpon my shoulders but not": [0, 65535], "mistris markes vpon my shoulders but not a": [0, 65535], "markes vpon my shoulders but not a thousand": [0, 65535], "vpon my shoulders but not a thousand markes": [0, 65535], "my shoulders but not a thousand markes betweene": [0, 65535], "shoulders but not a thousand markes betweene you": [0, 65535], "but not a thousand markes betweene you both": [0, 65535], "not a thousand markes betweene you both if": [0, 65535], "a thousand markes betweene you both if i": [0, 65535], "thousand markes betweene you both if i should": [0, 65535], "markes betweene you both if i should pay": [0, 65535], "betweene you both if i should pay your": [0, 65535], "you both if i should pay your worship": [0, 65535], "both if i should pay your worship those": [0, 65535], "if i should pay your worship those againe": [0, 65535], "i should pay your worship those againe perchance": [0, 65535], "should pay your worship those againe perchance you": [0, 65535], "pay your worship those againe perchance you will": [0, 65535], "your worship those againe perchance you will not": [0, 65535], "worship those againe perchance you will not beare": [0, 65535], "those againe perchance you will not beare them": [0, 65535], "againe perchance you will not beare them patiently": [0, 65535], "perchance you will not beare them patiently ant": [0, 65535], "you will not beare them patiently ant thy": [0, 65535], "will not beare them patiently ant thy mistris": [0, 65535], "not beare them patiently ant thy mistris markes": [0, 65535], "beare them patiently ant thy mistris markes what": [0, 65535], "them patiently ant thy mistris markes what mistris": [0, 65535], "patiently ant thy mistris markes what mistris slaue": [0, 65535], "ant thy mistris markes what mistris slaue hast": [0, 65535], "thy mistris markes what mistris slaue hast thou": [0, 65535], "mistris markes what mistris slaue hast thou e": [0, 65535], "markes what mistris slaue hast thou e dro": [0, 65535], "what mistris slaue hast thou e dro your": [0, 65535], "mistris slaue hast thou e dro your worships": [0, 65535], "slaue hast thou e dro your worships wife": [0, 65535], "hast thou e dro your worships wife my": [0, 65535], "thou e dro your worships wife my mistris": [0, 65535], "e dro your worships wife my mistris at": [0, 65535], "dro your worships wife my mistris at the": [0, 65535], "your worships wife my mistris at the ph\u0153nix": [0, 65535], "worships wife my mistris at the ph\u0153nix she": [0, 65535], "wife my mistris at the ph\u0153nix she that": [0, 65535], "my mistris at the ph\u0153nix she that doth": [0, 65535], "mistris at the ph\u0153nix she that doth fast": [0, 65535], "at the ph\u0153nix she that doth fast till": [0, 65535], "the ph\u0153nix she that doth fast till you": [0, 65535], "ph\u0153nix she that doth fast till you come": [0, 65535], "she that doth fast till you come home": [0, 65535], "that doth fast till you come home to": [0, 65535], "doth fast till you come home to dinner": [0, 65535], "fast till you come home to dinner and": [0, 65535], "till you come home to dinner and praies": [0, 65535], "you come home to dinner and praies that": [0, 65535], "come home to dinner and praies that you": [0, 65535], "home to dinner and praies that you will": [0, 65535], "to dinner and praies that you will hie": [0, 65535], "dinner and praies that you will hie you": [0, 65535], "and praies that you will hie you home": [0, 65535], "praies that you will hie you home to": [0, 65535], "that you will hie you home to dinner": [0, 65535], "you will hie you home to dinner ant": [0, 65535], "will hie you home to dinner ant what": [0, 65535], "hie you home to dinner ant what wilt": [0, 65535], "you home to dinner ant what wilt thou": [0, 65535], "home to dinner ant what wilt thou flout": [0, 65535], "to dinner ant what wilt thou flout me": [0, 65535], "dinner ant what wilt thou flout me thus": [0, 65535], "ant what wilt thou flout me thus vnto": [0, 65535], "what wilt thou flout me thus vnto my": [0, 65535], "wilt thou flout me thus vnto my face": [0, 65535], "thou flout me thus vnto my face being": [0, 65535], "flout me thus vnto my face being forbid": [0, 65535], "me thus vnto my face being forbid there": [0, 65535], "thus vnto my face being forbid there take": [0, 65535], "vnto my face being forbid there take you": [0, 65535], "my face being forbid there take you that": [0, 65535], "face being forbid there take you that sir": [0, 65535], "being forbid there take you that sir knaue": [0, 65535], "forbid there take you that sir knaue e": [0, 65535], "there take you that sir knaue e dro": [0, 65535], "take you that sir knaue e dro what": [0, 65535], "you that sir knaue e dro what meane": [0, 65535], "that sir knaue e dro what meane you": [0, 65535], "sir knaue e dro what meane you sir": [0, 65535], "knaue e dro what meane you sir for": [0, 65535], "e dro what meane you sir for god": [0, 65535], "dro what meane you sir for god sake": [0, 65535], "what meane you sir for god sake hold": [0, 65535], "meane you sir for god sake hold your": [0, 65535], "you sir for god sake hold your hands": [0, 65535], "sir for god sake hold your hands nay": [0, 65535], "for god sake hold your hands nay and": [0, 65535], "god sake hold your hands nay and you": [0, 65535], "sake hold your hands nay and you will": [0, 65535], "hold your hands nay and you will not": [0, 65535], "your hands nay and you will not sir": [0, 65535], "hands nay and you will not sir ile": [0, 65535], "nay and you will not sir ile take": [0, 65535], "and you will not sir ile take my": [0, 65535], "you will not sir ile take my heeles": [0, 65535], "will not sir ile take my heeles exeunt": [0, 65535], "not sir ile take my heeles exeunt dromio": [0, 65535], "sir ile take my heeles exeunt dromio ep": [0, 65535], "ile take my heeles exeunt dromio ep ant": [0, 65535], "take my heeles exeunt dromio ep ant vpon": [0, 65535], "my heeles exeunt dromio ep ant vpon my": [0, 65535], "heeles exeunt dromio ep ant vpon my life": [0, 65535], "exeunt dromio ep ant vpon my life by": [0, 65535], "dromio ep ant vpon my life by some": [0, 65535], "ep ant vpon my life by some deuise": [0, 65535], "ant vpon my life by some deuise or": [0, 65535], "vpon my life by some deuise or other": [0, 65535], "my life by some deuise or other the": [0, 65535], "life by some deuise or other the villaine": [0, 65535], "by some deuise or other the villaine is": [0, 65535], "some deuise or other the villaine is ore": [0, 65535], "deuise or other the villaine is ore wrought": [0, 65535], "or other the villaine is ore wrought of": [0, 65535], "other the villaine is ore wrought of all": [0, 65535], "the villaine is ore wrought of all my": [0, 65535], "villaine is ore wrought of all my monie": [0, 65535], "is ore wrought of all my monie they": [0, 65535], "ore wrought of all my monie they say": [0, 65535], "wrought of all my monie they say this": [0, 65535], "of all my monie they say this towne": [0, 65535], "all my monie they say this towne is": [0, 65535], "my monie they say this towne is full": [0, 65535], "monie they say this towne is full of": [0, 65535], "they say this towne is full of cosenage": [0, 65535], "say this towne is full of cosenage as": [0, 65535], "this towne is full of cosenage as nimble": [0, 65535], "towne is full of cosenage as nimble iuglers": [0, 65535], "is full of cosenage as nimble iuglers that": [0, 65535], "full of cosenage as nimble iuglers that deceiue": [0, 65535], "of cosenage as nimble iuglers that deceiue the": [0, 65535], "cosenage as nimble iuglers that deceiue the eie": [0, 65535], "as nimble iuglers that deceiue the eie darke": [0, 65535], "nimble iuglers that deceiue the eie darke working": [0, 65535], "iuglers that deceiue the eie darke working sorcerers": [0, 65535], "that deceiue the eie darke working sorcerers that": [0, 65535], "deceiue the eie darke working sorcerers that change": [0, 65535], "the eie darke working sorcerers that change the": [0, 65535], "eie darke working sorcerers that change the minde": [0, 65535], "darke working sorcerers that change the minde soule": [0, 65535], "working sorcerers that change the minde soule killing": [0, 65535], "sorcerers that change the minde soule killing witches": [0, 65535], "that change the minde soule killing witches that": [0, 65535], "change the minde soule killing witches that deforme": [0, 65535], "the minde soule killing witches that deforme the": [0, 65535], "minde soule killing witches that deforme the bodie": [0, 65535], "soule killing witches that deforme the bodie disguised": [0, 65535], "killing witches that deforme the bodie disguised cheaters": [0, 65535], "witches that deforme the bodie disguised cheaters prating": [0, 65535], "that deforme the bodie disguised cheaters prating mountebankes": [0, 65535], "deforme the bodie disguised cheaters prating mountebankes and": [0, 65535], "the bodie disguised cheaters prating mountebankes and manie": [0, 65535], "bodie disguised cheaters prating mountebankes and manie such": [0, 65535], "disguised cheaters prating mountebankes and manie such like": [0, 65535], "cheaters prating mountebankes and manie such like liberties": [0, 65535], "prating mountebankes and manie such like liberties of": [0, 65535], "mountebankes and manie such like liberties of sinne": [0, 65535], "and manie such like liberties of sinne if": [0, 65535], "manie such like liberties of sinne if it": [0, 65535], "such like liberties of sinne if it proue": [0, 65535], "like liberties of sinne if it proue so": [0, 65535], "liberties of sinne if it proue so i": [0, 65535], "of sinne if it proue so i will": [0, 65535], "sinne if it proue so i will be": [0, 65535], "if it proue so i will be gone": [0, 65535], "it proue so i will be gone the": [0, 65535], "proue so i will be gone the sooner": [0, 65535], "so i will be gone the sooner ile": [0, 65535], "i will be gone the sooner ile to": [0, 65535], "will be gone the sooner ile to the": [0, 65535], "be gone the sooner ile to the centaur": [0, 65535], "gone the sooner ile to the centaur to": [0, 65535], "the sooner ile to the centaur to goe": [0, 65535], "sooner ile to the centaur to goe seeke": [0, 65535], "ile to the centaur to goe seeke this": [0, 65535], "to the centaur to goe seeke this slaue": [0, 65535], "the centaur to goe seeke this slaue i": [0, 65535], "centaur to goe seeke this slaue i greatly": [0, 65535], "to goe seeke this slaue i greatly feare": [0, 65535], "goe seeke this slaue i greatly feare my": [0, 65535], "seeke this slaue i greatly feare my monie": [0, 65535], "this slaue i greatly feare my monie is": [0, 65535], "slaue i greatly feare my monie is not": [0, 65535], "i greatly feare my monie is not safe": [0, 65535], "the comedie of errors actus primus scena prima enter": [0, 65535], "comedie of errors actus primus scena prima enter the": [0, 65535], "of errors actus primus scena prima enter the duke": [0, 65535], "errors actus primus scena prima enter the duke of": [0, 65535], "actus primus scena prima enter the duke of ephesus": [0, 65535], "primus scena prima enter the duke of ephesus with": [0, 65535], "scena prima enter the duke of ephesus with the": [0, 65535], "prima enter the duke of ephesus with the merchant": [0, 65535], "enter the duke of ephesus with the merchant of": [0, 65535], "the duke of ephesus with the merchant of siracusa": [0, 65535], "duke of ephesus with the merchant of siracusa iaylor": [0, 65535], "of ephesus with the merchant of siracusa iaylor and": [0, 65535], "ephesus with the merchant of siracusa iaylor and other": [0, 65535], "with the merchant of siracusa iaylor and other attendants": [0, 65535], "the merchant of siracusa iaylor and other attendants marchant": [0, 65535], "merchant of siracusa iaylor and other attendants marchant broceed": [0, 65535], "of siracusa iaylor and other attendants marchant broceed solinus": [0, 65535], "siracusa iaylor and other attendants marchant broceed solinus to": [0, 65535], "iaylor and other attendants marchant broceed solinus to procure": [0, 65535], "and other attendants marchant broceed solinus to procure my": [0, 65535], "other attendants marchant broceed solinus to procure my fall": [0, 65535], "attendants marchant broceed solinus to procure my fall and": [0, 65535], "marchant broceed solinus to procure my fall and by": [0, 65535], "broceed solinus to procure my fall and by the": [0, 65535], "solinus to procure my fall and by the doome": [0, 65535], "to procure my fall and by the doome of": [0, 65535], "procure my fall and by the doome of death": [0, 65535], "my fall and by the doome of death end": [0, 65535], "fall and by the doome of death end woes": [0, 65535], "and by the doome of death end woes and": [0, 65535], "by the doome of death end woes and all": [0, 65535], "the doome of death end woes and all duke": [0, 65535], "doome of death end woes and all duke merchant": [0, 65535], "of death end woes and all duke merchant of": [0, 65535], "death end woes and all duke merchant of siracusa": [0, 65535], "end woes and all duke merchant of siracusa plead": [0, 65535], "woes and all duke merchant of siracusa plead no": [0, 65535], "and all duke merchant of siracusa plead no more": [0, 65535], "all duke merchant of siracusa plead no more i": [0, 65535], "duke merchant of siracusa plead no more i am": [0, 65535], "merchant of siracusa plead no more i am not": [0, 65535], "of siracusa plead no more i am not partiall": [0, 65535], "siracusa plead no more i am not partiall to": [0, 65535], "plead no more i am not partiall to infringe": [0, 65535], "no more i am not partiall to infringe our": [0, 65535], "more i am not partiall to infringe our lawes": [0, 65535], "i am not partiall to infringe our lawes the": [0, 65535], "am not partiall to infringe our lawes the enmity": [0, 65535], "not partiall to infringe our lawes the enmity and": [0, 65535], "partiall to infringe our lawes the enmity and discord": [0, 65535], "to infringe our lawes the enmity and discord which": [0, 65535], "infringe our lawes the enmity and discord which of": [0, 65535], "our lawes the enmity and discord which of late": [0, 65535], "lawes the enmity and discord which of late sprung": [0, 65535], "the enmity and discord which of late sprung from": [0, 65535], "enmity and discord which of late sprung from the": [0, 65535], "and discord which of late sprung from the rancorous": [0, 65535], "discord which of late sprung from the rancorous outrage": [0, 65535], "which of late sprung from the rancorous outrage of": [0, 65535], "of late sprung from the rancorous outrage of your": [0, 65535], "late sprung from the rancorous outrage of your duke": [0, 65535], "sprung from the rancorous outrage of your duke to": [0, 65535], "from the rancorous outrage of your duke to merchants": [0, 65535], "the rancorous outrage of your duke to merchants our": [0, 65535], "rancorous outrage of your duke to merchants our well": [0, 65535], "outrage of your duke to merchants our well dealing": [0, 65535], "of your duke to merchants our well dealing countrimen": [0, 65535], "your duke to merchants our well dealing countrimen who": [0, 65535], "duke to merchants our well dealing countrimen who wanting": [0, 65535], "to merchants our well dealing countrimen who wanting gilders": [0, 65535], "merchants our well dealing countrimen who wanting gilders to": [0, 65535], "our well dealing countrimen who wanting gilders to redeeme": [0, 65535], "well dealing countrimen who wanting gilders to redeeme their": [0, 65535], "dealing countrimen who wanting gilders to redeeme their liues": [0, 65535], "countrimen who wanting gilders to redeeme their liues haue": [0, 65535], "who wanting gilders to redeeme their liues haue seal'd": [0, 65535], "wanting gilders to redeeme their liues haue seal'd his": [0, 65535], "gilders to redeeme their liues haue seal'd his rigorous": [0, 65535], "to redeeme their liues haue seal'd his rigorous statutes": [0, 65535], "redeeme their liues haue seal'd his rigorous statutes with": [0, 65535], "their liues haue seal'd his rigorous statutes with their": [0, 65535], "liues haue seal'd his rigorous statutes with their blouds": [0, 65535], "haue seal'd his rigorous statutes with their blouds excludes": [0, 65535], "seal'd his rigorous statutes with their blouds excludes all": [0, 65535], "his rigorous statutes with their blouds excludes all pitty": [0, 65535], "rigorous statutes with their blouds excludes all pitty from": [0, 65535], "statutes with their blouds excludes all pitty from our": [0, 65535], "with their blouds excludes all pitty from our threatning": [0, 65535], "their blouds excludes all pitty from our threatning lookes": [0, 65535], "blouds excludes all pitty from our threatning lookes for": [0, 65535], "excludes all pitty from our threatning lookes for since": [0, 65535], "all pitty from our threatning lookes for since the": [0, 65535], "pitty from our threatning lookes for since the mortall": [0, 65535], "from our threatning lookes for since the mortall and": [0, 65535], "our threatning lookes for since the mortall and intestine": [0, 65535], "threatning lookes for since the mortall and intestine iarres": [0, 65535], "lookes for since the mortall and intestine iarres twixt": [0, 65535], "for since the mortall and intestine iarres twixt thy": [0, 65535], "since the mortall and intestine iarres twixt thy seditious": [0, 65535], "the mortall and intestine iarres twixt thy seditious countrimen": [0, 65535], "mortall and intestine iarres twixt thy seditious countrimen and": [0, 65535], "and intestine iarres twixt thy seditious countrimen and vs": [0, 65535], "intestine iarres twixt thy seditious countrimen and vs it": [0, 65535], "iarres twixt thy seditious countrimen and vs it hath": [0, 65535], "twixt thy seditious countrimen and vs it hath in": [0, 65535], "thy seditious countrimen and vs it hath in solemne": [0, 65535], "seditious countrimen and vs it hath in solemne synodes": [0, 65535], "countrimen and vs it hath in solemne synodes beene": [0, 65535], "and vs it hath in solemne synodes beene decreed": [0, 65535], "vs it hath in solemne synodes beene decreed both": [0, 65535], "it hath in solemne synodes beene decreed both by": [0, 65535], "hath in solemne synodes beene decreed both by the": [0, 65535], "in solemne synodes beene decreed both by the siracusians": [0, 65535], "solemne synodes beene decreed both by the siracusians and": [0, 65535], "synodes beene decreed both by the siracusians and our": [0, 65535], "beene decreed both by the siracusians and our selues": [0, 65535], "decreed both by the siracusians and our selues to": [0, 65535], "both by the siracusians and our selues to admit": [0, 65535], "by the siracusians and our selues to admit no": [0, 65535], "the siracusians and our selues to admit no trafficke": [0, 65535], "siracusians and our selues to admit no trafficke to": [0, 65535], "and our selues to admit no trafficke to our": [0, 65535], "our selues to admit no trafficke to our aduerse": [0, 65535], "selues to admit no trafficke to our aduerse townes": [0, 65535], "to admit no trafficke to our aduerse townes nay": [0, 65535], "admit no trafficke to our aduerse townes nay more": [0, 65535], "no trafficke to our aduerse townes nay more if": [0, 65535], "trafficke to our aduerse townes nay more if any": [0, 65535], "to our aduerse townes nay more if any borne": [0, 65535], "our aduerse townes nay more if any borne at": [0, 65535], "aduerse townes nay more if any borne at ephesus": [0, 65535], "townes nay more if any borne at ephesus be": [0, 65535], "nay more if any borne at ephesus be seene": [0, 65535], "more if any borne at ephesus be seene at": [0, 65535], "if any borne at ephesus be seene at any": [0, 65535], "any borne at ephesus be seene at any siracusian": [0, 65535], "borne at ephesus be seene at any siracusian marts": [0, 65535], "at ephesus be seene at any siracusian marts and": [0, 65535], "ephesus be seene at any siracusian marts and fayres": [0, 65535], "be seene at any siracusian marts and fayres againe": [0, 65535], "seene at any siracusian marts and fayres againe if": [0, 65535], "at any siracusian marts and fayres againe if any": [0, 65535], "any siracusian marts and fayres againe if any siracusian": [0, 65535], "siracusian marts and fayres againe if any siracusian borne": [0, 65535], "marts and fayres againe if any siracusian borne come": [0, 65535], "and fayres againe if any siracusian borne come to": [0, 65535], "fayres againe if any siracusian borne come to the": [0, 65535], "againe if any siracusian borne come to the bay": [0, 65535], "if any siracusian borne come to the bay of": [0, 65535], "any siracusian borne come to the bay of ephesus": [0, 65535], "siracusian borne come to the bay of ephesus he": [0, 65535], "borne come to the bay of ephesus he dies": [0, 65535], "come to the bay of ephesus he dies his": [0, 65535], "to the bay of ephesus he dies his goods": [0, 65535], "the bay of ephesus he dies his goods confiscate": [0, 65535], "bay of ephesus he dies his goods confiscate to": [0, 65535], "of ephesus he dies his goods confiscate to the": [0, 65535], "ephesus he dies his goods confiscate to the dukes": [0, 65535], "he dies his goods confiscate to the dukes dispose": [0, 65535], "dies his goods confiscate to the dukes dispose vnlesse": [0, 65535], "his goods confiscate to the dukes dispose vnlesse a": [0, 65535], "goods confiscate to the dukes dispose vnlesse a thousand": [0, 65535], "confiscate to the dukes dispose vnlesse a thousand markes": [0, 65535], "to the dukes dispose vnlesse a thousand markes be": [0, 65535], "the dukes dispose vnlesse a thousand markes be leuied": [0, 65535], "dukes dispose vnlesse a thousand markes be leuied to": [0, 65535], "dispose vnlesse a thousand markes be leuied to quit": [0, 65535], "vnlesse a thousand markes be leuied to quit the": [0, 65535], "a thousand markes be leuied to quit the penalty": [0, 65535], "thousand markes be leuied to quit the penalty and": [0, 65535], "markes be leuied to quit the penalty and to": [0, 65535], "be leuied to quit the penalty and to ransome": [0, 65535], "leuied to quit the penalty and to ransome him": [0, 65535], "to quit the penalty and to ransome him thy": [0, 65535], "quit the penalty and to ransome him thy substance": [0, 65535], "the penalty and to ransome him thy substance valued": [0, 65535], "penalty and to ransome him thy substance valued at": [0, 65535], "and to ransome him thy substance valued at the": [0, 65535], "to ransome him thy substance valued at the highest": [0, 65535], "ransome him thy substance valued at the highest rate": [0, 65535], "him thy substance valued at the highest rate cannot": [0, 65535], "thy substance valued at the highest rate cannot amount": [0, 65535], "substance valued at the highest rate cannot amount vnto": [0, 65535], "valued at the highest rate cannot amount vnto a": [0, 65535], "at the highest rate cannot amount vnto a hundred": [0, 65535], "the highest rate cannot amount vnto a hundred markes": [0, 65535], "highest rate cannot amount vnto a hundred markes therefore": [0, 65535], "rate cannot amount vnto a hundred markes therefore by": [0, 65535], "cannot amount vnto a hundred markes therefore by law": [0, 65535], "amount vnto a hundred markes therefore by law thou": [0, 65535], "vnto a hundred markes therefore by law thou art": [0, 65535], "a hundred markes therefore by law thou art condemn'd": [0, 65535], "hundred markes therefore by law thou art condemn'd to": [0, 65535], "markes therefore by law thou art condemn'd to die": [0, 65535], "therefore by law thou art condemn'd to die mer": [0, 65535], "by law thou art condemn'd to die mer yet": [0, 65535], "law thou art condemn'd to die mer yet this": [0, 65535], "thou art condemn'd to die mer yet this my": [0, 65535], "art condemn'd to die mer yet this my comfort": [0, 65535], "condemn'd to die mer yet this my comfort when": [0, 65535], "to die mer yet this my comfort when your": [0, 65535], "die mer yet this my comfort when your words": [0, 65535], "mer yet this my comfort when your words are": [0, 65535], "yet this my comfort when your words are done": [0, 65535], "this my comfort when your words are done my": [0, 65535], "my comfort when your words are done my woes": [0, 65535], "comfort when your words are done my woes end": [0, 65535], "when your words are done my woes end likewise": [0, 65535], "your words are done my woes end likewise with": [0, 65535], "words are done my woes end likewise with the": [0, 65535], "are done my woes end likewise with the euening": [0, 65535], "done my woes end likewise with the euening sonne": [0, 65535], "my woes end likewise with the euening sonne duk": [0, 65535], "woes end likewise with the euening sonne duk well": [0, 65535], "end likewise with the euening sonne duk well siracusian": [0, 65535], "likewise with the euening sonne duk well siracusian say": [0, 65535], "with the euening sonne duk well siracusian say in": [0, 65535], "the euening sonne duk well siracusian say in briefe": [0, 65535], "euening sonne duk well siracusian say in briefe the": [0, 65535], "sonne duk well siracusian say in briefe the cause": [0, 65535], "duk well siracusian say in briefe the cause why": [0, 65535], "well siracusian say in briefe the cause why thou": [0, 65535], "siracusian say in briefe the cause why thou departedst": [0, 65535], "say in briefe the cause why thou departedst from": [0, 65535], "in briefe the cause why thou departedst from thy": [0, 65535], "briefe the cause why thou departedst from thy natiue": [0, 65535], "the cause why thou departedst from thy natiue home": [0, 65535], "cause why thou departedst from thy natiue home and": [0, 65535], "why thou departedst from thy natiue home and for": [0, 65535], "thou departedst from thy natiue home and for what": [0, 65535], "departedst from thy natiue home and for what cause": [0, 65535], "from thy natiue home and for what cause thou": [0, 65535], "thy natiue home and for what cause thou cam'st": [0, 65535], "natiue home and for what cause thou cam'st to": [0, 65535], "home and for what cause thou cam'st to ephesus": [0, 65535], "and for what cause thou cam'st to ephesus mer": [0, 65535], "for what cause thou cam'st to ephesus mer a": [0, 65535], "what cause thou cam'st to ephesus mer a heauier": [0, 65535], "cause thou cam'st to ephesus mer a heauier taske": [0, 65535], "thou cam'st to ephesus mer a heauier taske could": [0, 65535], "cam'st to ephesus mer a heauier taske could not": [0, 65535], "to ephesus mer a heauier taske could not haue": [0, 65535], "ephesus mer a heauier taske could not haue beene": [0, 65535], "mer a heauier taske could not haue beene impos'd": [0, 65535], "a heauier taske could not haue beene impos'd then": [0, 65535], "heauier taske could not haue beene impos'd then i": [0, 65535], "taske could not haue beene impos'd then i to": [0, 65535], "could not haue beene impos'd then i to speake": [0, 65535], "not haue beene impos'd then i to speake my": [0, 65535], "haue beene impos'd then i to speake my griefes": [0, 65535], "beene impos'd then i to speake my griefes vnspeakeable": [0, 65535], "impos'd then i to speake my griefes vnspeakeable yet": [0, 65535], "then i to speake my griefes vnspeakeable yet that": [0, 65535], "i to speake my griefes vnspeakeable yet that the": [0, 65535], "to speake my griefes vnspeakeable yet that the world": [0, 65535], "speake my griefes vnspeakeable yet that the world may": [0, 65535], "my griefes vnspeakeable yet that the world may witnesse": [0, 65535], "griefes vnspeakeable yet that the world may witnesse that": [0, 65535], "vnspeakeable yet that the world may witnesse that my": [0, 65535], "yet that the world may witnesse that my end": [0, 65535], "that the world may witnesse that my end was": [0, 65535], "the world may witnesse that my end was wrought": [0, 65535], "world may witnesse that my end was wrought by": [0, 65535], "may witnesse that my end was wrought by nature": [0, 65535], "witnesse that my end was wrought by nature not": [0, 65535], "that my end was wrought by nature not by": [0, 65535], "my end was wrought by nature not by vile": [0, 65535], "end was wrought by nature not by vile offence": [0, 65535], "was wrought by nature not by vile offence ile": [0, 65535], "wrought by nature not by vile offence ile vtter": [0, 65535], "by nature not by vile offence ile vtter what": [0, 65535], "nature not by vile offence ile vtter what my": [0, 65535], "not by vile offence ile vtter what my sorrow": [0, 65535], "by vile offence ile vtter what my sorrow giues": [0, 65535], "vile offence ile vtter what my sorrow giues me": [0, 65535], "offence ile vtter what my sorrow giues me leaue": [0, 65535], "ile vtter what my sorrow giues me leaue in": [0, 65535], "vtter what my sorrow giues me leaue in syracusa": [0, 65535], "what my sorrow giues me leaue in syracusa was": [0, 65535], "my sorrow giues me leaue in syracusa was i": [0, 65535], "sorrow giues me leaue in syracusa was i borne": [0, 65535], "giues me leaue in syracusa was i borne and": [0, 65535], "me leaue in syracusa was i borne and wedde": [0, 65535], "leaue in syracusa was i borne and wedde vnto": [0, 65535], "in syracusa was i borne and wedde vnto a": [0, 65535], "syracusa was i borne and wedde vnto a woman": [0, 65535], "was i borne and wedde vnto a woman happy": [0, 65535], "i borne and wedde vnto a woman happy but": [0, 65535], "borne and wedde vnto a woman happy but for": [0, 65535], "and wedde vnto a woman happy but for me": [0, 65535], "wedde vnto a woman happy but for me and": [0, 65535], "vnto a woman happy but for me and by": [0, 65535], "a woman happy but for me and by me": [0, 65535], "woman happy but for me and by me had": [0, 65535], "happy but for me and by me had not": [0, 65535], "but for me and by me had not our": [0, 65535], "for me and by me had not our hap": [0, 65535], "me and by me had not our hap beene": [0, 65535], "and by me had not our hap beene bad": [0, 65535], "by me had not our hap beene bad with": [0, 65535], "me had not our hap beene bad with her": [0, 65535], "had not our hap beene bad with her i": [0, 65535], "not our hap beene bad with her i liu'd": [0, 65535], "our hap beene bad with her i liu'd in": [0, 65535], "hap beene bad with her i liu'd in ioy": [0, 65535], "beene bad with her i liu'd in ioy our": [0, 65535], "bad with her i liu'd in ioy our wealth": [0, 65535], "with her i liu'd in ioy our wealth increast": [0, 65535], "her i liu'd in ioy our wealth increast by": [0, 65535], "i liu'd in ioy our wealth increast by prosperous": [0, 65535], "liu'd in ioy our wealth increast by prosperous voyages": [0, 65535], "in ioy our wealth increast by prosperous voyages i": [0, 65535], "ioy our wealth increast by prosperous voyages i often": [0, 65535], "our wealth increast by prosperous voyages i often made": [0, 65535], "wealth increast by prosperous voyages i often made to": [0, 65535], "increast by prosperous voyages i often made to epidamium": [0, 65535], "by prosperous voyages i often made to epidamium till": [0, 65535], "prosperous voyages i often made to epidamium till my": [0, 65535], "voyages i often made to epidamium till my factors": [0, 65535], "i often made to epidamium till my factors death": [0, 65535], "often made to epidamium till my factors death and": [0, 65535], "made to epidamium till my factors death and he": [0, 65535], "to epidamium till my factors death and he great": [0, 65535], "epidamium till my factors death and he great care": [0, 65535], "till my factors death and he great care of": [0, 65535], "my factors death and he great care of goods": [0, 65535], "factors death and he great care of goods at": [0, 65535], "death and he great care of goods at randone": [0, 65535], "and he great care of goods at randone left": [0, 65535], "he great care of goods at randone left drew": [0, 65535], "great care of goods at randone left drew me": [0, 65535], "care of goods at randone left drew me from": [0, 65535], "of goods at randone left drew me from kinde": [0, 65535], "goods at randone left drew me from kinde embracements": [0, 65535], "at randone left drew me from kinde embracements of": [0, 65535], "randone left drew me from kinde embracements of my": [0, 65535], "left drew me from kinde embracements of my spouse": [0, 65535], "drew me from kinde embracements of my spouse from": [0, 65535], "me from kinde embracements of my spouse from whom": [0, 65535], "from kinde embracements of my spouse from whom my": [0, 65535], "kinde embracements of my spouse from whom my absence": [0, 65535], "embracements of my spouse from whom my absence was": [0, 65535], "of my spouse from whom my absence was not": [0, 65535], "my spouse from whom my absence was not sixe": [0, 65535], "spouse from whom my absence was not sixe moneths": [0, 65535], "from whom my absence was not sixe moneths olde": [0, 65535], "whom my absence was not sixe moneths olde before": [0, 65535], "my absence was not sixe moneths olde before her": [0, 65535], "absence was not sixe moneths olde before her selfe": [0, 65535], "was not sixe moneths olde before her selfe almost": [0, 65535], "not sixe moneths olde before her selfe almost at": [0, 65535], "sixe moneths olde before her selfe almost at fainting": [0, 65535], "moneths olde before her selfe almost at fainting vnder": [0, 65535], "olde before her selfe almost at fainting vnder the": [0, 65535], "before her selfe almost at fainting vnder the pleasing": [0, 65535], "her selfe almost at fainting vnder the pleasing punishment": [0, 65535], "selfe almost at fainting vnder the pleasing punishment that": [0, 65535], "almost at fainting vnder the pleasing punishment that women": [0, 65535], "at fainting vnder the pleasing punishment that women beare": [0, 65535], "fainting vnder the pleasing punishment that women beare had": [0, 65535], "vnder the pleasing punishment that women beare had made": [0, 65535], "the pleasing punishment that women beare had made prouision": [0, 65535], "pleasing punishment that women beare had made prouision for": [0, 65535], "punishment that women beare had made prouision for her": [0, 65535], "that women beare had made prouision for her following": [0, 65535], "women beare had made prouision for her following me": [0, 65535], "beare had made prouision for her following me and": [0, 65535], "had made prouision for her following me and soone": [0, 65535], "made prouision for her following me and soone and": [0, 65535], "prouision for her following me and soone and safe": [0, 65535], "for her following me and soone and safe arriued": [0, 65535], "her following me and soone and safe arriued where": [0, 65535], "following me and soone and safe arriued where i": [0, 65535], "me and soone and safe arriued where i was": [0, 65535], "and soone and safe arriued where i was there": [0, 65535], "soone and safe arriued where i was there had": [0, 65535], "and safe arriued where i was there had she": [0, 65535], "safe arriued where i was there had she not": [0, 65535], "arriued where i was there had she not beene": [0, 65535], "where i was there had she not beene long": [0, 65535], "i was there had she not beene long but": [0, 65535], "was there had she not beene long but she": [0, 65535], "there had she not beene long but she became": [0, 65535], "had she not beene long but she became a": [0, 65535], "she not beene long but she became a ioyfull": [0, 65535], "not beene long but she became a ioyfull mother": [0, 65535], "beene long but she became a ioyfull mother of": [0, 65535], "long but she became a ioyfull mother of two": [0, 65535], "but she became a ioyfull mother of two goodly": [0, 65535], "she became a ioyfull mother of two goodly sonnes": [0, 65535], "became a ioyfull mother of two goodly sonnes and": [0, 65535], "a ioyfull mother of two goodly sonnes and which": [0, 65535], "ioyfull mother of two goodly sonnes and which was": [0, 65535], "mother of two goodly sonnes and which was strange": [0, 65535], "of two goodly sonnes and which was strange the": [0, 65535], "two goodly sonnes and which was strange the one": [0, 65535], "goodly sonnes and which was strange the one so": [0, 65535], "sonnes and which was strange the one so like": [0, 65535], "and which was strange the one so like the": [0, 65535], "which was strange the one so like the other": [0, 65535], "was strange the one so like the other as": [0, 65535], "strange the one so like the other as could": [0, 65535], "the one so like the other as could not": [0, 65535], "one so like the other as could not be": [0, 65535], "so like the other as could not be distinguish'd": [0, 65535], "like the other as could not be distinguish'd but": [0, 65535], "the other as could not be distinguish'd but by": [0, 65535], "other as could not be distinguish'd but by names": [0, 65535], "as could not be distinguish'd but by names that": [0, 65535], "could not be distinguish'd but by names that very": [0, 65535], "not be distinguish'd but by names that very howre": [0, 65535], "be distinguish'd but by names that very howre and": [0, 65535], "distinguish'd but by names that very howre and in": [0, 65535], "but by names that very howre and in the": [0, 65535], "by names that very howre and in the selfe": [0, 65535], "names that very howre and in the selfe same": [0, 65535], "that very howre and in the selfe same inne": [0, 65535], "very howre and in the selfe same inne a": [0, 65535], "howre and in the selfe same inne a meane": [0, 65535], "and in the selfe same inne a meane woman": [0, 65535], "in the selfe same inne a meane woman was": [0, 65535], "the selfe same inne a meane woman was deliuered": [0, 65535], "selfe same inne a meane woman was deliuered of": [0, 65535], "same inne a meane woman was deliuered of such": [0, 65535], "inne a meane woman was deliuered of such a": [0, 65535], "a meane woman was deliuered of such a burthen": [0, 65535], "meane woman was deliuered of such a burthen male": [0, 65535], "woman was deliuered of such a burthen male twins": [0, 65535], "was deliuered of such a burthen male twins both": [0, 65535], "deliuered of such a burthen male twins both alike": [0, 65535], "of such a burthen male twins both alike those": [0, 65535], "such a burthen male twins both alike those for": [0, 65535], "a burthen male twins both alike those for their": [0, 65535], "burthen male twins both alike those for their parents": [0, 65535], "male twins both alike those for their parents were": [0, 65535], "twins both alike those for their parents were exceeding": [0, 65535], "both alike those for their parents were exceeding poore": [0, 65535], "alike those for their parents were exceeding poore i": [0, 65535], "those for their parents were exceeding poore i bought": [0, 65535], "for their parents were exceeding poore i bought and": [0, 65535], "their parents were exceeding poore i bought and brought": [0, 65535], "parents were exceeding poore i bought and brought vp": [0, 65535], "were exceeding poore i bought and brought vp to": [0, 65535], "exceeding poore i bought and brought vp to attend": [0, 65535], "poore i bought and brought vp to attend my": [0, 65535], "i bought and brought vp to attend my sonnes": [0, 65535], "bought and brought vp to attend my sonnes my": [0, 65535], "and brought vp to attend my sonnes my wife": [0, 65535], "brought vp to attend my sonnes my wife not": [0, 65535], "vp to attend my sonnes my wife not meanely": [0, 65535], "to attend my sonnes my wife not meanely prowd": [0, 65535], "attend my sonnes my wife not meanely prowd of": [0, 65535], "my sonnes my wife not meanely prowd of two": [0, 65535], "sonnes my wife not meanely prowd of two such": [0, 65535], "my wife not meanely prowd of two such boyes": [0, 65535], "wife not meanely prowd of two such boyes made": [0, 65535], "not meanely prowd of two such boyes made daily": [0, 65535], "meanely prowd of two such boyes made daily motions": [0, 65535], "prowd of two such boyes made daily motions for": [0, 65535], "of two such boyes made daily motions for our": [0, 65535], "two such boyes made daily motions for our home": [0, 65535], "such boyes made daily motions for our home returne": [0, 65535], "boyes made daily motions for our home returne vnwilling": [0, 65535], "made daily motions for our home returne vnwilling i": [0, 65535], "daily motions for our home returne vnwilling i agreed": [0, 65535], "motions for our home returne vnwilling i agreed alas": [0, 65535], "for our home returne vnwilling i agreed alas too": [0, 65535], "our home returne vnwilling i agreed alas too soone": [0, 65535], "home returne vnwilling i agreed alas too soone wee": [0, 65535], "returne vnwilling i agreed alas too soone wee came": [0, 65535], "vnwilling i agreed alas too soone wee came aboord": [0, 65535], "i agreed alas too soone wee came aboord a": [0, 65535], "agreed alas too soone wee came aboord a league": [0, 65535], "alas too soone wee came aboord a league from": [0, 65535], "too soone wee came aboord a league from epidamium": [0, 65535], "soone wee came aboord a league from epidamium had": [0, 65535], "wee came aboord a league from epidamium had we": [0, 65535], "came aboord a league from epidamium had we saild": [0, 65535], "aboord a league from epidamium had we saild before": [0, 65535], "a league from epidamium had we saild before the": [0, 65535], "league from epidamium had we saild before the alwaies": [0, 65535], "from epidamium had we saild before the alwaies winde": [0, 65535], "epidamium had we saild before the alwaies winde obeying": [0, 65535], "had we saild before the alwaies winde obeying deepe": [0, 65535], "we saild before the alwaies winde obeying deepe gaue": [0, 65535], "saild before the alwaies winde obeying deepe gaue any": [0, 65535], "before the alwaies winde obeying deepe gaue any tragicke": [0, 65535], "the alwaies winde obeying deepe gaue any tragicke instance": [0, 65535], "alwaies winde obeying deepe gaue any tragicke instance of": [0, 65535], "winde obeying deepe gaue any tragicke instance of our": [0, 65535], "obeying deepe gaue any tragicke instance of our harme": [0, 65535], "deepe gaue any tragicke instance of our harme but": [0, 65535], "gaue any tragicke instance of our harme but longer": [0, 65535], "any tragicke instance of our harme but longer did": [0, 65535], "tragicke instance of our harme but longer did we": [0, 65535], "instance of our harme but longer did we not": [0, 65535], "of our harme but longer did we not retaine": [0, 65535], "our harme but longer did we not retaine much": [0, 65535], "harme but longer did we not retaine much hope": [0, 65535], "but longer did we not retaine much hope for": [0, 65535], "longer did we not retaine much hope for what": [0, 65535], "did we not retaine much hope for what obscured": [0, 65535], "we not retaine much hope for what obscured light": [0, 65535], "not retaine much hope for what obscured light the": [0, 65535], "retaine much hope for what obscured light the heauens": [0, 65535], "much hope for what obscured light the heauens did": [0, 65535], "hope for what obscured light the heauens did grant": [0, 65535], "for what obscured light the heauens did grant did": [0, 65535], "what obscured light the heauens did grant did but": [0, 65535], "obscured light the heauens did grant did but conuay": [0, 65535], "light the heauens did grant did but conuay vnto": [0, 65535], "the heauens did grant did but conuay vnto our": [0, 65535], "heauens did grant did but conuay vnto our fearefull": [0, 65535], "did grant did but conuay vnto our fearefull mindes": [0, 65535], "grant did but conuay vnto our fearefull mindes a": [0, 65535], "did but conuay vnto our fearefull mindes a doubtfull": [0, 65535], "but conuay vnto our fearefull mindes a doubtfull warrant": [0, 65535], "conuay vnto our fearefull mindes a doubtfull warrant of": [0, 65535], "vnto our fearefull mindes a doubtfull warrant of immediate": [0, 65535], "our fearefull mindes a doubtfull warrant of immediate death": [0, 65535], "fearefull mindes a doubtfull warrant of immediate death which": [0, 65535], "mindes a doubtfull warrant of immediate death which though": [0, 65535], "a doubtfull warrant of immediate death which though my": [0, 65535], "doubtfull warrant of immediate death which though my selfe": [0, 65535], "warrant of immediate death which though my selfe would": [0, 65535], "of immediate death which though my selfe would gladly": [0, 65535], "immediate death which though my selfe would gladly haue": [0, 65535], "death which though my selfe would gladly haue imbrac'd": [0, 65535], "which though my selfe would gladly haue imbrac'd yet": [0, 65535], "though my selfe would gladly haue imbrac'd yet the": [0, 65535], "my selfe would gladly haue imbrac'd yet the incessant": [0, 65535], "selfe would gladly haue imbrac'd yet the incessant weepings": [0, 65535], "would gladly haue imbrac'd yet the incessant weepings of": [0, 65535], "gladly haue imbrac'd yet the incessant weepings of my": [0, 65535], "haue imbrac'd yet the incessant weepings of my wife": [0, 65535], "imbrac'd yet the incessant weepings of my wife weeping": [0, 65535], "yet the incessant weepings of my wife weeping before": [0, 65535], "the incessant weepings of my wife weeping before for": [0, 65535], "incessant weepings of my wife weeping before for what": [0, 65535], "weepings of my wife weeping before for what she": [0, 65535], "of my wife weeping before for what she saw": [0, 65535], "my wife weeping before for what she saw must": [0, 65535], "wife weeping before for what she saw must come": [0, 65535], "weeping before for what she saw must come and": [0, 65535], "before for what she saw must come and pitteous": [0, 65535], "for what she saw must come and pitteous playnings": [0, 65535], "what she saw must come and pitteous playnings of": [0, 65535], "she saw must come and pitteous playnings of the": [0, 65535], "saw must come and pitteous playnings of the prettie": [0, 65535], "must come and pitteous playnings of the prettie babes": [0, 65535], "come and pitteous playnings of the prettie babes that": [0, 65535], "and pitteous playnings of the prettie babes that mourn'd": [0, 65535], "pitteous playnings of the prettie babes that mourn'd for": [0, 65535], "playnings of the prettie babes that mourn'd for fashion": [0, 65535], "of the prettie babes that mourn'd for fashion ignorant": [0, 65535], "the prettie babes that mourn'd for fashion ignorant what": [0, 65535], "prettie babes that mourn'd for fashion ignorant what to": [0, 65535], "babes that mourn'd for fashion ignorant what to feare": [0, 65535], "that mourn'd for fashion ignorant what to feare forst": [0, 65535], "mourn'd for fashion ignorant what to feare forst me": [0, 65535], "for fashion ignorant what to feare forst me to": [0, 65535], "fashion ignorant what to feare forst me to seeke": [0, 65535], "ignorant what to feare forst me to seeke delayes": [0, 65535], "what to feare forst me to seeke delayes for": [0, 65535], "to feare forst me to seeke delayes for them": [0, 65535], "feare forst me to seeke delayes for them and": [0, 65535], "forst me to seeke delayes for them and me": [0, 65535], "me to seeke delayes for them and me and": [0, 65535], "to seeke delayes for them and me and this": [0, 65535], "seeke delayes for them and me and this it": [0, 65535], "delayes for them and me and this it was": [0, 65535], "for them and me and this it was for": [0, 65535], "them and me and this it was for other": [0, 65535], "and me and this it was for other meanes": [0, 65535], "me and this it was for other meanes was": [0, 65535], "and this it was for other meanes was none": [0, 65535], "this it was for other meanes was none the": [0, 65535], "it was for other meanes was none the sailors": [0, 65535], "was for other meanes was none the sailors sought": [0, 65535], "for other meanes was none the sailors sought for": [0, 65535], "other meanes was none the sailors sought for safety": [0, 65535], "meanes was none the sailors sought for safety by": [0, 65535], "was none the sailors sought for safety by our": [0, 65535], "none the sailors sought for safety by our boate": [0, 65535], "the sailors sought for safety by our boate and": [0, 65535], "sailors sought for safety by our boate and left": [0, 65535], "sought for safety by our boate and left the": [0, 65535], "for safety by our boate and left the ship": [0, 65535], "safety by our boate and left the ship then": [0, 65535], "by our boate and left the ship then sinking": [0, 65535], "our boate and left the ship then sinking ripe": [0, 65535], "boate and left the ship then sinking ripe to": [0, 65535], "and left the ship then sinking ripe to vs": [0, 65535], "left the ship then sinking ripe to vs my": [0, 65535], "the ship then sinking ripe to vs my wife": [0, 65535], "ship then sinking ripe to vs my wife more": [0, 65535], "then sinking ripe to vs my wife more carefull": [0, 65535], "sinking ripe to vs my wife more carefull for": [0, 65535], "ripe to vs my wife more carefull for the": [0, 65535], "to vs my wife more carefull for the latter": [0, 65535], "vs my wife more carefull for the latter borne": [0, 65535], "my wife more carefull for the latter borne had": [0, 65535], "wife more carefull for the latter borne had fastned": [0, 65535], "more carefull for the latter borne had fastned him": [0, 65535], "carefull for the latter borne had fastned him vnto": [0, 65535], "for the latter borne had fastned him vnto a": [0, 65535], "the latter borne had fastned him vnto a small": [0, 65535], "latter borne had fastned him vnto a small spare": [0, 65535], "borne had fastned him vnto a small spare mast": [0, 65535], "had fastned him vnto a small spare mast such": [0, 65535], "fastned him vnto a small spare mast such as": [0, 65535], "him vnto a small spare mast such as sea": [0, 65535], "vnto a small spare mast such as sea faring": [0, 65535], "a small spare mast such as sea faring men": [0, 65535], "small spare mast such as sea faring men prouide": [0, 65535], "spare mast such as sea faring men prouide for": [0, 65535], "mast such as sea faring men prouide for stormes": [0, 65535], "such as sea faring men prouide for stormes to": [0, 65535], "as sea faring men prouide for stormes to him": [0, 65535], "sea faring men prouide for stormes to him one": [0, 65535], "faring men prouide for stormes to him one of": [0, 65535], "men prouide for stormes to him one of the": [0, 65535], "prouide for stormes to him one of the other": [0, 65535], "for stormes to him one of the other twins": [0, 65535], "stormes to him one of the other twins was": [0, 65535], "to him one of the other twins was bound": [0, 65535], "him one of the other twins was bound whil'st": [0, 65535], "one of the other twins was bound whil'st i": [0, 65535], "of the other twins was bound whil'st i had": [0, 65535], "the other twins was bound whil'st i had beene": [0, 65535], "other twins was bound whil'st i had beene like": [0, 65535], "twins was bound whil'st i had beene like heedfull": [0, 65535], "was bound whil'st i had beene like heedfull of": [0, 65535], "bound whil'st i had beene like heedfull of the": [0, 65535], "whil'st i had beene like heedfull of the other": [0, 65535], "i had beene like heedfull of the other the": [0, 65535], "had beene like heedfull of the other the children": [0, 65535], "beene like heedfull of the other the children thus": [0, 65535], "like heedfull of the other the children thus dispos'd": [0, 65535], "heedfull of the other the children thus dispos'd my": [0, 65535], "of the other the children thus dispos'd my wife": [0, 65535], "the other the children thus dispos'd my wife and": [0, 65535], "other the children thus dispos'd my wife and i": [0, 65535], "the children thus dispos'd my wife and i fixing": [0, 65535], "children thus dispos'd my wife and i fixing our": [0, 65535], "thus dispos'd my wife and i fixing our eyes": [0, 65535], "dispos'd my wife and i fixing our eyes on": [0, 65535], "my wife and i fixing our eyes on whom": [0, 65535], "wife and i fixing our eyes on whom our": [0, 65535], "and i fixing our eyes on whom our care": [0, 65535], "i fixing our eyes on whom our care was": [0, 65535], "fixing our eyes on whom our care was fixt": [0, 65535], "our eyes on whom our care was fixt fastned": [0, 65535], "eyes on whom our care was fixt fastned our": [0, 65535], "on whom our care was fixt fastned our selues": [0, 65535], "whom our care was fixt fastned our selues at": [0, 65535], "our care was fixt fastned our selues at eyther": [0, 65535], "care was fixt fastned our selues at eyther end": [0, 65535], "was fixt fastned our selues at eyther end the": [0, 65535], "fixt fastned our selues at eyther end the mast": [0, 65535], "fastned our selues at eyther end the mast and": [0, 65535], "our selues at eyther end the mast and floating": [0, 65535], "selues at eyther end the mast and floating straight": [0, 65535], "at eyther end the mast and floating straight obedient": [0, 65535], "eyther end the mast and floating straight obedient to": [0, 65535], "end the mast and floating straight obedient to the": [0, 65535], "the mast and floating straight obedient to the streame": [0, 65535], "mast and floating straight obedient to the streame was": [0, 65535], "and floating straight obedient to the streame was carried": [0, 65535], "floating straight obedient to the streame was carried towards": [0, 65535], "straight obedient to the streame was carried towards corinth": [0, 65535], "obedient to the streame was carried towards corinth as": [0, 65535], "to the streame was carried towards corinth as we": [0, 65535], "the streame was carried towards corinth as we thought": [0, 65535], "streame was carried towards corinth as we thought at": [0, 65535], "was carried towards corinth as we thought at length": [0, 65535], "carried towards corinth as we thought at length the": [0, 65535], "towards corinth as we thought at length the sonne": [0, 65535], "corinth as we thought at length the sonne gazing": [0, 65535], "as we thought at length the sonne gazing vpon": [0, 65535], "we thought at length the sonne gazing vpon the": [0, 65535], "thought at length the sonne gazing vpon the earth": [0, 65535], "at length the sonne gazing vpon the earth disperst": [0, 65535], "length the sonne gazing vpon the earth disperst those": [0, 65535], "the sonne gazing vpon the earth disperst those vapours": [0, 65535], "sonne gazing vpon the earth disperst those vapours that": [0, 65535], "gazing vpon the earth disperst those vapours that offended": [0, 65535], "vpon the earth disperst those vapours that offended vs": [0, 65535], "the earth disperst those vapours that offended vs and": [0, 65535], "earth disperst those vapours that offended vs and by": [0, 65535], "disperst those vapours that offended vs and by the": [0, 65535], "those vapours that offended vs and by the benefit": [0, 65535], "vapours that offended vs and by the benefit of": [0, 65535], "that offended vs and by the benefit of his": [0, 65535], "offended vs and by the benefit of his wished": [0, 65535], "vs and by the benefit of his wished light": [0, 65535], "and by the benefit of his wished light the": [0, 65535], "by the benefit of his wished light the seas": [0, 65535], "the benefit of his wished light the seas waxt": [0, 65535], "benefit of his wished light the seas waxt calme": [0, 65535], "of his wished light the seas waxt calme and": [0, 65535], "his wished light the seas waxt calme and we": [0, 65535], "wished light the seas waxt calme and we discouered": [0, 65535], "light the seas waxt calme and we discouered two": [0, 65535], "the seas waxt calme and we discouered two shippes": [0, 65535], "seas waxt calme and we discouered two shippes from": [0, 65535], "waxt calme and we discouered two shippes from farre": [0, 65535], "calme and we discouered two shippes from farre making": [0, 65535], "and we discouered two shippes from farre making amaine": [0, 65535], "we discouered two shippes from farre making amaine to": [0, 65535], "discouered two shippes from farre making amaine to vs": [0, 65535], "two shippes from farre making amaine to vs of": [0, 65535], "shippes from farre making amaine to vs of corinth": [0, 65535], "from farre making amaine to vs of corinth that": [0, 65535], "farre making amaine to vs of corinth that of": [0, 65535], "making amaine to vs of corinth that of epidarus": [0, 65535], "amaine to vs of corinth that of epidarus this": [0, 65535], "to vs of corinth that of epidarus this but": [0, 65535], "vs of corinth that of epidarus this but ere": [0, 65535], "of corinth that of epidarus this but ere they": [0, 65535], "corinth that of epidarus this but ere they came": [0, 65535], "that of epidarus this but ere they came oh": [0, 65535], "of epidarus this but ere they came oh let": [0, 65535], "epidarus this but ere they came oh let me": [0, 65535], "this but ere they came oh let me say": [0, 65535], "but ere they came oh let me say no": [0, 65535], "ere they came oh let me say no more": [0, 65535], "they came oh let me say no more gather": [0, 65535], "came oh let me say no more gather the": [0, 65535], "oh let me say no more gather the sequell": [0, 65535], "let me say no more gather the sequell by": [0, 65535], "me say no more gather the sequell by that": [0, 65535], "say no more gather the sequell by that went": [0, 65535], "no more gather the sequell by that went before": [0, 65535], "more gather the sequell by that went before duk": [0, 65535], "gather the sequell by that went before duk nay": [0, 65535], "the sequell by that went before duk nay forward": [0, 65535], "sequell by that went before duk nay forward old": [0, 65535], "by that went before duk nay forward old man": [0, 65535], "that went before duk nay forward old man doe": [0, 65535], "went before duk nay forward old man doe not": [0, 65535], "before duk nay forward old man doe not breake": [0, 65535], "duk nay forward old man doe not breake off": [0, 65535], "nay forward old man doe not breake off so": [0, 65535], "forward old man doe not breake off so for": [0, 65535], "old man doe not breake off so for we": [0, 65535], "man doe not breake off so for we may": [0, 65535], "doe not breake off so for we may pitty": [0, 65535], "not breake off so for we may pitty though": [0, 65535], "breake off so for we may pitty though not": [0, 65535], "off so for we may pitty though not pardon": [0, 65535], "so for we may pitty though not pardon thee": [0, 65535], "for we may pitty though not pardon thee merch": [0, 65535], "we may pitty though not pardon thee merch oh": [0, 65535], "may pitty though not pardon thee merch oh had": [0, 65535], "pitty though not pardon thee merch oh had the": [0, 65535], "though not pardon thee merch oh had the gods": [0, 65535], "not pardon thee merch oh had the gods done": [0, 65535], "pardon thee merch oh had the gods done so": [0, 65535], "thee merch oh had the gods done so i": [0, 65535], "merch oh had the gods done so i had": [0, 65535], "oh had the gods done so i had not": [0, 65535], "had the gods done so i had not now": [0, 65535], "the gods done so i had not now worthily": [0, 65535], "gods done so i had not now worthily tearm'd": [0, 65535], "done so i had not now worthily tearm'd them": [0, 65535], "so i had not now worthily tearm'd them mercilesse": [0, 65535], "i had not now worthily tearm'd them mercilesse to": [0, 65535], "had not now worthily tearm'd them mercilesse to vs": [0, 65535], "not now worthily tearm'd them mercilesse to vs for": [0, 65535], "now worthily tearm'd them mercilesse to vs for ere": [0, 65535], "worthily tearm'd them mercilesse to vs for ere the": [0, 65535], "tearm'd them mercilesse to vs for ere the ships": [0, 65535], "them mercilesse to vs for ere the ships could": [0, 65535], "mercilesse to vs for ere the ships could meet": [0, 65535], "to vs for ere the ships could meet by": [0, 65535], "vs for ere the ships could meet by twice": [0, 65535], "for ere the ships could meet by twice fiue": [0, 65535], "ere the ships could meet by twice fiue leagues": [0, 65535], "the ships could meet by twice fiue leagues we": [0, 65535], "ships could meet by twice fiue leagues we were": [0, 65535], "could meet by twice fiue leagues we were encountred": [0, 65535], "meet by twice fiue leagues we were encountred by": [0, 65535], "by twice fiue leagues we were encountred by a": [0, 65535], "twice fiue leagues we were encountred by a mighty": [0, 65535], "fiue leagues we were encountred by a mighty rocke": [0, 65535], "leagues we were encountred by a mighty rocke which": [0, 65535], "we were encountred by a mighty rocke which being": [0, 65535], "were encountred by a mighty rocke which being violently": [0, 65535], "encountred by a mighty rocke which being violently borne": [0, 65535], "by a mighty rocke which being violently borne vp": [0, 65535], "a mighty rocke which being violently borne vp our": [0, 65535], "mighty rocke which being violently borne vp our helpefull": [0, 65535], "rocke which being violently borne vp our helpefull ship": [0, 65535], "which being violently borne vp our helpefull ship was": [0, 65535], "being violently borne vp our helpefull ship was splitted": [0, 65535], "violently borne vp our helpefull ship was splitted in": [0, 65535], "borne vp our helpefull ship was splitted in the": [0, 65535], "vp our helpefull ship was splitted in the midst": [0, 65535], "our helpefull ship was splitted in the midst so": [0, 65535], "helpefull ship was splitted in the midst so that": [0, 65535], "ship was splitted in the midst so that in": [0, 65535], "was splitted in the midst so that in this": [0, 65535], "splitted in the midst so that in this vniust": [0, 65535], "in the midst so that in this vniust diuorce": [0, 65535], "the midst so that in this vniust diuorce of": [0, 65535], "midst so that in this vniust diuorce of vs": [0, 65535], "so that in this vniust diuorce of vs fortune": [0, 65535], "that in this vniust diuorce of vs fortune had": [0, 65535], "in this vniust diuorce of vs fortune had left": [0, 65535], "this vniust diuorce of vs fortune had left to": [0, 65535], "vniust diuorce of vs fortune had left to both": [0, 65535], "diuorce of vs fortune had left to both of": [0, 65535], "of vs fortune had left to both of vs": [0, 65535], "vs fortune had left to both of vs alike": [0, 65535], "fortune had left to both of vs alike what": [0, 65535], "had left to both of vs alike what to": [0, 65535], "left to both of vs alike what to delight": [0, 65535], "to both of vs alike what to delight in": [0, 65535], "both of vs alike what to delight in what": [0, 65535], "of vs alike what to delight in what to": [0, 65535], "vs alike what to delight in what to sorrow": [0, 65535], "alike what to delight in what to sorrow for": [0, 65535], "what to delight in what to sorrow for her": [0, 65535], "to delight in what to sorrow for her part": [0, 65535], "delight in what to sorrow for her part poore": [0, 65535], "in what to sorrow for her part poore soule": [0, 65535], "what to sorrow for her part poore soule seeming": [0, 65535], "to sorrow for her part poore soule seeming as": [0, 65535], "sorrow for her part poore soule seeming as burdened": [0, 65535], "for her part poore soule seeming as burdened with": [0, 65535], "her part poore soule seeming as burdened with lesser": [0, 65535], "part poore soule seeming as burdened with lesser waight": [0, 65535], "poore soule seeming as burdened with lesser waight but": [0, 65535], "soule seeming as burdened with lesser waight but not": [0, 65535], "seeming as burdened with lesser waight but not with": [0, 65535], "as burdened with lesser waight but not with lesser": [0, 65535], "burdened with lesser waight but not with lesser woe": [0, 65535], "with lesser waight but not with lesser woe was": [0, 65535], "lesser waight but not with lesser woe was carried": [0, 65535], "waight but not with lesser woe was carried with": [0, 65535], "but not with lesser woe was carried with more": [0, 65535], "not with lesser woe was carried with more speed": [0, 65535], "with lesser woe was carried with more speed before": [0, 65535], "lesser woe was carried with more speed before the": [0, 65535], "woe was carried with more speed before the winde": [0, 65535], "was carried with more speed before the winde and": [0, 65535], "carried with more speed before the winde and in": [0, 65535], "with more speed before the winde and in our": [0, 65535], "more speed before the winde and in our sight": [0, 65535], "speed before the winde and in our sight they": [0, 65535], "before the winde and in our sight they three": [0, 65535], "the winde and in our sight they three were": [0, 65535], "winde and in our sight they three were taken": [0, 65535], "and in our sight they three were taken vp": [0, 65535], "in our sight they three were taken vp by": [0, 65535], "our sight they three were taken vp by fishermen": [0, 65535], "sight they three were taken vp by fishermen of": [0, 65535], "they three were taken vp by fishermen of corinth": [0, 65535], "three were taken vp by fishermen of corinth as": [0, 65535], "were taken vp by fishermen of corinth as we": [0, 65535], "taken vp by fishermen of corinth as we thought": [0, 65535], "vp by fishermen of corinth as we thought at": [0, 65535], "by fishermen of corinth as we thought at length": [0, 65535], "fishermen of corinth as we thought at length another": [0, 65535], "of corinth as we thought at length another ship": [0, 65535], "corinth as we thought at length another ship had": [0, 65535], "as we thought at length another ship had seiz'd": [0, 65535], "we thought at length another ship had seiz'd on": [0, 65535], "thought at length another ship had seiz'd on vs": [0, 65535], "at length another ship had seiz'd on vs and": [0, 65535], "length another ship had seiz'd on vs and knowing": [0, 65535], "another ship had seiz'd on vs and knowing whom": [0, 65535], "ship had seiz'd on vs and knowing whom it": [0, 65535], "had seiz'd on vs and knowing whom it was": [0, 65535], "seiz'd on vs and knowing whom it was their": [0, 65535], "on vs and knowing whom it was their hap": [0, 65535], "vs and knowing whom it was their hap to": [0, 65535], "and knowing whom it was their hap to saue": [0, 65535], "knowing whom it was their hap to saue gaue": [0, 65535], "whom it was their hap to saue gaue healthfull": [0, 65535], "it was their hap to saue gaue healthfull welcome": [0, 65535], "was their hap to saue gaue healthfull welcome to": [0, 65535], "their hap to saue gaue healthfull welcome to their": [0, 65535], "hap to saue gaue healthfull welcome to their ship": [0, 65535], "to saue gaue healthfull welcome to their ship wrackt": [0, 65535], "saue gaue healthfull welcome to their ship wrackt guests": [0, 65535], "gaue healthfull welcome to their ship wrackt guests and": [0, 65535], "healthfull welcome to their ship wrackt guests and would": [0, 65535], "welcome to their ship wrackt guests and would haue": [0, 65535], "to their ship wrackt guests and would haue reft": [0, 65535], "their ship wrackt guests and would haue reft the": [0, 65535], "ship wrackt guests and would haue reft the fishers": [0, 65535], "wrackt guests and would haue reft the fishers of": [0, 65535], "guests and would haue reft the fishers of their": [0, 65535], "and would haue reft the fishers of their prey": [0, 65535], "would haue reft the fishers of their prey had": [0, 65535], "haue reft the fishers of their prey had not": [0, 65535], "reft the fishers of their prey had not their": [0, 65535], "the fishers of their prey had not their backe": [0, 65535], "fishers of their prey had not their backe beene": [0, 65535], "of their prey had not their backe beene very": [0, 65535], "their prey had not their backe beene very slow": [0, 65535], "prey had not their backe beene very slow of": [0, 65535], "had not their backe beene very slow of saile": [0, 65535], "not their backe beene very slow of saile and": [0, 65535], "their backe beene very slow of saile and therefore": [0, 65535], "backe beene very slow of saile and therefore homeward": [0, 65535], "beene very slow of saile and therefore homeward did": [0, 65535], "very slow of saile and therefore homeward did they": [0, 65535], "slow of saile and therefore homeward did they bend": [0, 65535], "of saile and therefore homeward did they bend their": [0, 65535], "saile and therefore homeward did they bend their course": [0, 65535], "and therefore homeward did they bend their course thus": [0, 65535], "therefore homeward did they bend their course thus haue": [0, 65535], "homeward did they bend their course thus haue you": [0, 65535], "did they bend their course thus haue you heard": [0, 65535], "they bend their course thus haue you heard me": [0, 65535], "bend their course thus haue you heard me seuer'd": [0, 65535], "their course thus haue you heard me seuer'd from": [0, 65535], "course thus haue you heard me seuer'd from my": [0, 65535], "thus haue you heard me seuer'd from my blisse": [0, 65535], "haue you heard me seuer'd from my blisse that": [0, 65535], "you heard me seuer'd from my blisse that by": [0, 65535], "heard me seuer'd from my blisse that by misfortunes": [0, 65535], "me seuer'd from my blisse that by misfortunes was": [0, 65535], "seuer'd from my blisse that by misfortunes was my": [0, 65535], "from my blisse that by misfortunes was my life": [0, 65535], "my blisse that by misfortunes was my life prolong'd": [0, 65535], "blisse that by misfortunes was my life prolong'd to": [0, 65535], "that by misfortunes was my life prolong'd to tell": [0, 65535], "by misfortunes was my life prolong'd to tell sad": [0, 65535], "misfortunes was my life prolong'd to tell sad stories": [0, 65535], "was my life prolong'd to tell sad stories of": [0, 65535], "my life prolong'd to tell sad stories of my": [0, 65535], "life prolong'd to tell sad stories of my owne": [0, 65535], "prolong'd to tell sad stories of my owne mishaps": [0, 65535], "to tell sad stories of my owne mishaps duke": [0, 65535], "tell sad stories of my owne mishaps duke and": [0, 65535], "sad stories of my owne mishaps duke and for": [0, 65535], "stories of my owne mishaps duke and for the": [0, 65535], "of my owne mishaps duke and for the sake": [0, 65535], "my owne mishaps duke and for the sake of": [0, 65535], "owne mishaps duke and for the sake of them": [0, 65535], "mishaps duke and for the sake of them thou": [0, 65535], "duke and for the sake of them thou sorrowest": [0, 65535], "and for the sake of them thou sorrowest for": [0, 65535], "for the sake of them thou sorrowest for doe": [0, 65535], "the sake of them thou sorrowest for doe me": [0, 65535], "sake of them thou sorrowest for doe me the": [0, 65535], "of them thou sorrowest for doe me the fauour": [0, 65535], "them thou sorrowest for doe me the fauour to": [0, 65535], "thou sorrowest for doe me the fauour to dilate": [0, 65535], "sorrowest for doe me the fauour to dilate at": [0, 65535], "for doe me the fauour to dilate at full": [0, 65535], "doe me the fauour to dilate at full what": [0, 65535], "me the fauour to dilate at full what haue": [0, 65535], "the fauour to dilate at full what haue befalne": [0, 65535], "fauour to dilate at full what haue befalne of": [0, 65535], "to dilate at full what haue befalne of them": [0, 65535], "dilate at full what haue befalne of them and": [0, 65535], "at full what haue befalne of them and they": [0, 65535], "full what haue befalne of them and they till": [0, 65535], "what haue befalne of them and they till now": [0, 65535], "haue befalne of them and they till now merch": [0, 65535], "befalne of them and they till now merch my": [0, 65535], "of them and they till now merch my yongest": [0, 65535], "them and they till now merch my yongest boy": [0, 65535], "and they till now merch my yongest boy and": [0, 65535], "they till now merch my yongest boy and yet": [0, 65535], "till now merch my yongest boy and yet my": [0, 65535], "now merch my yongest boy and yet my eldest": [0, 65535], "merch my yongest boy and yet my eldest care": [0, 65535], "my yongest boy and yet my eldest care at": [0, 65535], "yongest boy and yet my eldest care at eighteene": [0, 65535], "boy and yet my eldest care at eighteene yeeres": [0, 65535], "and yet my eldest care at eighteene yeeres became": [0, 65535], "yet my eldest care at eighteene yeeres became inquisitiue": [0, 65535], "my eldest care at eighteene yeeres became inquisitiue after": [0, 65535], "eldest care at eighteene yeeres became inquisitiue after his": [0, 65535], "care at eighteene yeeres became inquisitiue after his brother": [0, 65535], "at eighteene yeeres became inquisitiue after his brother and": [0, 65535], "eighteene yeeres became inquisitiue after his brother and importun'd": [0, 65535], "yeeres became inquisitiue after his brother and importun'd me": [0, 65535], "became inquisitiue after his brother and importun'd me that": [0, 65535], "inquisitiue after his brother and importun'd me that his": [0, 65535], "after his brother and importun'd me that his attendant": [0, 65535], "his brother and importun'd me that his attendant so": [0, 65535], "brother and importun'd me that his attendant so his": [0, 65535], "and importun'd me that his attendant so his case": [0, 65535], "importun'd me that his attendant so his case was": [0, 65535], "me that his attendant so his case was like": [0, 65535], "that his attendant so his case was like reft": [0, 65535], "his attendant so his case was like reft of": [0, 65535], "attendant so his case was like reft of his": [0, 65535], "so his case was like reft of his brother": [0, 65535], "his case was like reft of his brother but": [0, 65535], "case was like reft of his brother but retain'd": [0, 65535], "was like reft of his brother but retain'd his": [0, 65535], "like reft of his brother but retain'd his name": [0, 65535], "reft of his brother but retain'd his name might": [0, 65535], "of his brother but retain'd his name might beare": [0, 65535], "his brother but retain'd his name might beare him": [0, 65535], "brother but retain'd his name might beare him company": [0, 65535], "but retain'd his name might beare him company in": [0, 65535], "retain'd his name might beare him company in the": [0, 65535], "his name might beare him company in the quest": [0, 65535], "name might beare him company in the quest of": [0, 65535], "might beare him company in the quest of him": [0, 65535], "beare him company in the quest of him whom": [0, 65535], "him company in the quest of him whom whil'st": [0, 65535], "company in the quest of him whom whil'st i": [0, 65535], "in the quest of him whom whil'st i laboured": [0, 65535], "the quest of him whom whil'st i laboured of": [0, 65535], "quest of him whom whil'st i laboured of a": [0, 65535], "of him whom whil'st i laboured of a loue": [0, 65535], "him whom whil'st i laboured of a loue to": [0, 65535], "whom whil'st i laboured of a loue to see": [0, 65535], "whil'st i laboured of a loue to see i": [0, 65535], "i laboured of a loue to see i hazarded": [0, 65535], "laboured of a loue to see i hazarded the": [0, 65535], "of a loue to see i hazarded the losse": [0, 65535], "a loue to see i hazarded the losse of": [0, 65535], "loue to see i hazarded the losse of whom": [0, 65535], "to see i hazarded the losse of whom i": [0, 65535], "see i hazarded the losse of whom i lou'd": [0, 65535], "i hazarded the losse of whom i lou'd fiue": [0, 65535], "hazarded the losse of whom i lou'd fiue sommers": [0, 65535], "the losse of whom i lou'd fiue sommers haue": [0, 65535], "losse of whom i lou'd fiue sommers haue i": [0, 65535], "of whom i lou'd fiue sommers haue i spent": [0, 65535], "whom i lou'd fiue sommers haue i spent in": [0, 65535], "i lou'd fiue sommers haue i spent in farthest": [0, 65535], "lou'd fiue sommers haue i spent in farthest greece": [0, 65535], "fiue sommers haue i spent in farthest greece roming": [0, 65535], "sommers haue i spent in farthest greece roming cleane": [0, 65535], "haue i spent in farthest greece roming cleane through": [0, 65535], "i spent in farthest greece roming cleane through the": [0, 65535], "spent in farthest greece roming cleane through the bounds": [0, 65535], "in farthest greece roming cleane through the bounds of": [0, 65535], "farthest greece roming cleane through the bounds of asia": [0, 65535], "greece roming cleane through the bounds of asia and": [0, 65535], "roming cleane through the bounds of asia and coasting": [0, 65535], "cleane through the bounds of asia and coasting homeward": [0, 65535], "through the bounds of asia and coasting homeward came": [0, 65535], "the bounds of asia and coasting homeward came to": [0, 65535], "bounds of asia and coasting homeward came to ephesus": [0, 65535], "of asia and coasting homeward came to ephesus hopelesse": [0, 65535], "asia and coasting homeward came to ephesus hopelesse to": [0, 65535], "and coasting homeward came to ephesus hopelesse to finde": [0, 65535], "coasting homeward came to ephesus hopelesse to finde yet": [0, 65535], "homeward came to ephesus hopelesse to finde yet loth": [0, 65535], "came to ephesus hopelesse to finde yet loth to": [0, 65535], "to ephesus hopelesse to finde yet loth to leaue": [0, 65535], "ephesus hopelesse to finde yet loth to leaue vnsought": [0, 65535], "hopelesse to finde yet loth to leaue vnsought or": [0, 65535], "to finde yet loth to leaue vnsought or that": [0, 65535], "finde yet loth to leaue vnsought or that or": [0, 65535], "yet loth to leaue vnsought or that or any": [0, 65535], "loth to leaue vnsought or that or any place": [0, 65535], "to leaue vnsought or that or any place that": [0, 65535], "leaue vnsought or that or any place that harbours": [0, 65535], "vnsought or that or any place that harbours men": [0, 65535], "or that or any place that harbours men but": [0, 65535], "that or any place that harbours men but heere": [0, 65535], "or any place that harbours men but heere must": [0, 65535], "any place that harbours men but heere must end": [0, 65535], "place that harbours men but heere must end the": [0, 65535], "that harbours men but heere must end the story": [0, 65535], "harbours men but heere must end the story of": [0, 65535], "men but heere must end the story of my": [0, 65535], "but heere must end the story of my life": [0, 65535], "heere must end the story of my life and": [0, 65535], "must end the story of my life and happy": [0, 65535], "end the story of my life and happy were": [0, 65535], "the story of my life and happy were i": [0, 65535], "story of my life and happy were i in": [0, 65535], "of my life and happy were i in my": [0, 65535], "my life and happy were i in my timelie": [0, 65535], "life and happy were i in my timelie death": [0, 65535], "and happy were i in my timelie death could": [0, 65535], "happy were i in my timelie death could all": [0, 65535], "were i in my timelie death could all my": [0, 65535], "i in my timelie death could all my trauells": [0, 65535], "in my timelie death could all my trauells warrant": [0, 65535], "my timelie death could all my trauells warrant me": [0, 65535], "timelie death could all my trauells warrant me they": [0, 65535], "death could all my trauells warrant me they liue": [0, 65535], "could all my trauells warrant me they liue duke": [0, 65535], "all my trauells warrant me they liue duke haplesse": [0, 65535], "my trauells warrant me they liue duke haplesse egeon": [0, 65535], "trauells warrant me they liue duke haplesse egeon whom": [0, 65535], "warrant me they liue duke haplesse egeon whom the": [0, 65535], "me they liue duke haplesse egeon whom the fates": [0, 65535], "they liue duke haplesse egeon whom the fates haue": [0, 65535], "liue duke haplesse egeon whom the fates haue markt": [0, 65535], "duke haplesse egeon whom the fates haue markt to": [0, 65535], "haplesse egeon whom the fates haue markt to beare": [0, 65535], "egeon whom the fates haue markt to beare the": [0, 65535], "whom the fates haue markt to beare the extremitie": [0, 65535], "the fates haue markt to beare the extremitie of": [0, 65535], "fates haue markt to beare the extremitie of dire": [0, 65535], "haue markt to beare the extremitie of dire mishap": [0, 65535], "markt to beare the extremitie of dire mishap now": [0, 65535], "to beare the extremitie of dire mishap now trust": [0, 65535], "beare the extremitie of dire mishap now trust me": [0, 65535], "the extremitie of dire mishap now trust me were": [0, 65535], "extremitie of dire mishap now trust me were it": [0, 65535], "of dire mishap now trust me were it not": [0, 65535], "dire mishap now trust me were it not against": [0, 65535], "mishap now trust me were it not against our": [0, 65535], "now trust me were it not against our lawes": [0, 65535], "trust me were it not against our lawes against": [0, 65535], "me were it not against our lawes against my": [0, 65535], "were it not against our lawes against my crowne": [0, 65535], "it not against our lawes against my crowne my": [0, 65535], "not against our lawes against my crowne my oath": [0, 65535], "against our lawes against my crowne my oath my": [0, 65535], "our lawes against my crowne my oath my dignity": [0, 65535], "lawes against my crowne my oath my dignity which": [0, 65535], "against my crowne my oath my dignity which princes": [0, 65535], "my crowne my oath my dignity which princes would": [0, 65535], "crowne my oath my dignity which princes would they": [0, 65535], "my oath my dignity which princes would they may": [0, 65535], "oath my dignity which princes would they may not": [0, 65535], "my dignity which princes would they may not disanull": [0, 65535], "dignity which princes would they may not disanull my": [0, 65535], "which princes would they may not disanull my soule": [0, 65535], "princes would they may not disanull my soule should": [0, 65535], "would they may not disanull my soule should sue": [0, 65535], "they may not disanull my soule should sue as": [0, 65535], "may not disanull my soule should sue as aduocate": [0, 65535], "not disanull my soule should sue as aduocate for": [0, 65535], "disanull my soule should sue as aduocate for thee": [0, 65535], "my soule should sue as aduocate for thee but": [0, 65535], "soule should sue as aduocate for thee but though": [0, 65535], "should sue as aduocate for thee but though thou": [0, 65535], "sue as aduocate for thee but though thou art": [0, 65535], "as aduocate for thee but though thou art adiudged": [0, 65535], "aduocate for thee but though thou art adiudged to": [0, 65535], "for thee but though thou art adiudged to the": [0, 65535], "thee but though thou art adiudged to the death": [0, 65535], "but though thou art adiudged to the death and": [0, 65535], "though thou art adiudged to the death and passed": [0, 65535], "thou art adiudged to the death and passed sentence": [0, 65535], "art adiudged to the death and passed sentence may": [0, 65535], "adiudged to the death and passed sentence may not": [0, 65535], "to the death and passed sentence may not be": [0, 65535], "the death and passed sentence may not be recal'd": [0, 65535], "death and passed sentence may not be recal'd but": [0, 65535], "and passed sentence may not be recal'd but to": [0, 65535], "passed sentence may not be recal'd but to our": [0, 65535], "sentence may not be recal'd but to our honours": [0, 65535], "may not be recal'd but to our honours great": [0, 65535], "not be recal'd but to our honours great disparagement": [0, 65535], "be recal'd but to our honours great disparagement yet": [0, 65535], "recal'd but to our honours great disparagement yet will": [0, 65535], "but to our honours great disparagement yet will i": [0, 65535], "to our honours great disparagement yet will i fauour": [0, 65535], "our honours great disparagement yet will i fauour thee": [0, 65535], "honours great disparagement yet will i fauour thee in": [0, 65535], "great disparagement yet will i fauour thee in what": [0, 65535], "disparagement yet will i fauour thee in what i": [0, 65535], "yet will i fauour thee in what i can": [0, 65535], "will i fauour thee in what i can therefore": [0, 65535], "i fauour thee in what i can therefore marchant": [0, 65535], "fauour thee in what i can therefore marchant ile": [0, 65535], "thee in what i can therefore marchant ile limit": [0, 65535], "in what i can therefore marchant ile limit thee": [0, 65535], "what i can therefore marchant ile limit thee this": [0, 65535], "i can therefore marchant ile limit thee this day": [0, 65535], "can therefore marchant ile limit thee this day to": [0, 65535], "therefore marchant ile limit thee this day to seeke": [0, 65535], "marchant ile limit thee this day to seeke thy": [0, 65535], "ile limit thee this day to seeke thy helpe": [0, 65535], "limit thee this day to seeke thy helpe by": [0, 65535], "thee this day to seeke thy helpe by beneficiall": [0, 65535], "this day to seeke thy helpe by beneficiall helpe": [0, 65535], "day to seeke thy helpe by beneficiall helpe try": [0, 65535], "to seeke thy helpe by beneficiall helpe try all": [0, 65535], "seeke thy helpe by beneficiall helpe try all the": [0, 65535], "thy helpe by beneficiall helpe try all the friends": [0, 65535], "helpe by beneficiall helpe try all the friends thou": [0, 65535], "by beneficiall helpe try all the friends thou hast": [0, 65535], "beneficiall helpe try all the friends thou hast in": [0, 65535], "helpe try all the friends thou hast in ephesus": [0, 65535], "try all the friends thou hast in ephesus beg": [0, 65535], "all the friends thou hast in ephesus beg thou": [0, 65535], "the friends thou hast in ephesus beg thou or": [0, 65535], "friends thou hast in ephesus beg thou or borrow": [0, 65535], "thou hast in ephesus beg thou or borrow to": [0, 65535], "hast in ephesus beg thou or borrow to make": [0, 65535], "in ephesus beg thou or borrow to make vp": [0, 65535], "ephesus beg thou or borrow to make vp the": [0, 65535], "beg thou or borrow to make vp the summe": [0, 65535], "thou or borrow to make vp the summe and": [0, 65535], "or borrow to make vp the summe and liue": [0, 65535], "borrow to make vp the summe and liue if": [0, 65535], "to make vp the summe and liue if no": [0, 65535], "make vp the summe and liue if no then": [0, 65535], "vp the summe and liue if no then thou": [0, 65535], "the summe and liue if no then thou art": [0, 65535], "summe and liue if no then thou art doom'd": [0, 65535], "and liue if no then thou art doom'd to": [0, 65535], "liue if no then thou art doom'd to die": [0, 65535], "if no then thou art doom'd to die iaylor": [0, 65535], "no then thou art doom'd to die iaylor take": [0, 65535], "then thou art doom'd to die iaylor take him": [0, 65535], "thou art doom'd to die iaylor take him to": [0, 65535], "art doom'd to die iaylor take him to thy": [0, 65535], "doom'd to die iaylor take him to thy custodie": [0, 65535], "to die iaylor take him to thy custodie iaylor": [0, 65535], "die iaylor take him to thy custodie iaylor i": [0, 65535], "iaylor take him to thy custodie iaylor i will": [0, 65535], "take him to thy custodie iaylor i will my": [0, 65535], "him to thy custodie iaylor i will my lord": [0, 65535], "to thy custodie iaylor i will my lord merch": [0, 65535], "thy custodie iaylor i will my lord merch hopelesse": [0, 65535], "custodie iaylor i will my lord merch hopelesse and": [0, 65535], "iaylor i will my lord merch hopelesse and helpelesse": [0, 65535], "i will my lord merch hopelesse and helpelesse doth": [0, 65535], "will my lord merch hopelesse and helpelesse doth egean": [0, 65535], "my lord merch hopelesse and helpelesse doth egean wend": [0, 65535], "lord merch hopelesse and helpelesse doth egean wend but": [0, 65535], "merch hopelesse and helpelesse doth egean wend but to": [0, 65535], "hopelesse and helpelesse doth egean wend but to procrastinate": [0, 65535], "and helpelesse doth egean wend but to procrastinate his": [0, 65535], "helpelesse doth egean wend but to procrastinate his liuelesse": [0, 65535], "doth egean wend but to procrastinate his liuelesse end": [0, 65535], "egean wend but to procrastinate his liuelesse end exeunt": [0, 65535], "wend but to procrastinate his liuelesse end exeunt enter": [0, 65535], "but to procrastinate his liuelesse end exeunt enter antipholis": [0, 65535], "to procrastinate his liuelesse end exeunt enter antipholis erotes": [0, 65535], "procrastinate his liuelesse end exeunt enter antipholis erotes a": [0, 65535], "his liuelesse end exeunt enter antipholis erotes a marchant": [0, 65535], "liuelesse end exeunt enter antipholis erotes a marchant and": [0, 65535], "end exeunt enter antipholis erotes a marchant and dromio": [0, 65535], "exeunt enter antipholis erotes a marchant and dromio mer": [0, 65535], "enter antipholis erotes a marchant and dromio mer therefore": [0, 65535], "antipholis erotes a marchant and dromio mer therefore giue": [0, 65535], "erotes a marchant and dromio mer therefore giue out": [0, 65535], "a marchant and dromio mer therefore giue out you": [0, 65535], "marchant and dromio mer therefore giue out you are": [0, 65535], "and dromio mer therefore giue out you are of": [0, 65535], "dromio mer therefore giue out you are of epidamium": [0, 65535], "mer therefore giue out you are of epidamium lest": [0, 65535], "therefore giue out you are of epidamium lest that": [0, 65535], "giue out you are of epidamium lest that your": [0, 65535], "out you are of epidamium lest that your goods": [0, 65535], "you are of epidamium lest that your goods too": [0, 65535], "are of epidamium lest that your goods too soone": [0, 65535], "of epidamium lest that your goods too soone be": [0, 65535], "epidamium lest that your goods too soone be confiscate": [0, 65535], "lest that your goods too soone be confiscate this": [0, 65535], "that your goods too soone be confiscate this very": [0, 65535], "your goods too soone be confiscate this very day": [0, 65535], "goods too soone be confiscate this very day a": [0, 65535], "too soone be confiscate this very day a syracusian": [0, 65535], "soone be confiscate this very day a syracusian marchant": [0, 65535], "be confiscate this very day a syracusian marchant is": [0, 65535], "confiscate this very day a syracusian marchant is apprehended": [0, 65535], "this very day a syracusian marchant is apprehended for": [0, 65535], "very day a syracusian marchant is apprehended for a": [0, 65535], "day a syracusian marchant is apprehended for a riuall": [0, 65535], "a syracusian marchant is apprehended for a riuall here": [0, 65535], "syracusian marchant is apprehended for a riuall here and": [0, 65535], "marchant is apprehended for a riuall here and not": [0, 65535], "is apprehended for a riuall here and not being": [0, 65535], "apprehended for a riuall here and not being able": [0, 65535], "for a riuall here and not being able to": [0, 65535], "a riuall here and not being able to buy": [0, 65535], "riuall here and not being able to buy out": [0, 65535], "here and not being able to buy out his": [0, 65535], "and not being able to buy out his life": [0, 65535], "not being able to buy out his life according": [0, 65535], "being able to buy out his life according to": [0, 65535], "able to buy out his life according to the": [0, 65535], "to buy out his life according to the statute": [0, 65535], "buy out his life according to the statute of": [0, 65535], "out his life according to the statute of the": [0, 65535], "his life according to the statute of the towne": [0, 65535], "life according to the statute of the towne dies": [0, 65535], "according to the statute of the towne dies ere": [0, 65535], "to the statute of the towne dies ere the": [0, 65535], "the statute of the towne dies ere the wearie": [0, 65535], "statute of the towne dies ere the wearie sunne": [0, 65535], "of the towne dies ere the wearie sunne set": [0, 65535], "the towne dies ere the wearie sunne set in": [0, 65535], "towne dies ere the wearie sunne set in the": [0, 65535], "dies ere the wearie sunne set in the west": [0, 65535], "ere the wearie sunne set in the west there": [0, 65535], "the wearie sunne set in the west there is": [0, 65535], "wearie sunne set in the west there is your": [0, 65535], "sunne set in the west there is your monie": [0, 65535], "set in the west there is your monie that": [0, 65535], "in the west there is your monie that i": [0, 65535], "the west there is your monie that i had": [0, 65535], "west there is your monie that i had to": [0, 65535], "there is your monie that i had to keepe": [0, 65535], "is your monie that i had to keepe ant": [0, 65535], "your monie that i had to keepe ant goe": [0, 65535], "monie that i had to keepe ant goe beare": [0, 65535], "that i had to keepe ant goe beare it": [0, 65535], "i had to keepe ant goe beare it to": [0, 65535], "had to keepe ant goe beare it to the": [0, 65535], "to keepe ant goe beare it to the centaure": [0, 65535], "keepe ant goe beare it to the centaure where": [0, 65535], "ant goe beare it to the centaure where we": [0, 65535], "goe beare it to the centaure where we host": [0, 65535], "beare it to the centaure where we host and": [0, 65535], "it to the centaure where we host and stay": [0, 65535], "to the centaure where we host and stay there": [0, 65535], "the centaure where we host and stay there dromio": [0, 65535], "centaure where we host and stay there dromio till": [0, 65535], "where we host and stay there dromio till i": [0, 65535], "we host and stay there dromio till i come": [0, 65535], "host and stay there dromio till i come to": [0, 65535], "and stay there dromio till i come to thee": [0, 65535], "stay there dromio till i come to thee within": [0, 65535], "there dromio till i come to thee within this": [0, 65535], "dromio till i come to thee within this houre": [0, 65535], "till i come to thee within this houre it": [0, 65535], "i come to thee within this houre it will": [0, 65535], "come to thee within this houre it will be": [0, 65535], "to thee within this houre it will be dinner": [0, 65535], "thee within this houre it will be dinner time": [0, 65535], "within this houre it will be dinner time till": [0, 65535], "this houre it will be dinner time till that": [0, 65535], "houre it will be dinner time till that ile": [0, 65535], "it will be dinner time till that ile view": [0, 65535], "will be dinner time till that ile view the": [0, 65535], "be dinner time till that ile view the manners": [0, 65535], "dinner time till that ile view the manners of": [0, 65535], "time till that ile view the manners of the": [0, 65535], "till that ile view the manners of the towne": [0, 65535], "that ile view the manners of the towne peruse": [0, 65535], "ile view the manners of the towne peruse the": [0, 65535], "view the manners of the towne peruse the traders": [0, 65535], "the manners of the towne peruse the traders gaze": [0, 65535], "manners of the towne peruse the traders gaze vpon": [0, 65535], "of the towne peruse the traders gaze vpon the": [0, 65535], "the towne peruse the traders gaze vpon the buildings": [0, 65535], "towne peruse the traders gaze vpon the buildings and": [0, 65535], "peruse the traders gaze vpon the buildings and then": [0, 65535], "the traders gaze vpon the buildings and then returne": [0, 65535], "traders gaze vpon the buildings and then returne and": [0, 65535], "gaze vpon the buildings and then returne and sleepe": [0, 65535], "vpon the buildings and then returne and sleepe within": [0, 65535], "the buildings and then returne and sleepe within mine": [0, 65535], "buildings and then returne and sleepe within mine inne": [0, 65535], "and then returne and sleepe within mine inne for": [0, 65535], "then returne and sleepe within mine inne for with": [0, 65535], "returne and sleepe within mine inne for with long": [0, 65535], "and sleepe within mine inne for with long trauaile": [0, 65535], "sleepe within mine inne for with long trauaile i": [0, 65535], "within mine inne for with long trauaile i am": [0, 65535], "mine inne for with long trauaile i am stiffe": [0, 65535], "inne for with long trauaile i am stiffe and": [0, 65535], "for with long trauaile i am stiffe and wearie": [0, 65535], "with long trauaile i am stiffe and wearie get": [0, 65535], "long trauaile i am stiffe and wearie get thee": [0, 65535], "trauaile i am stiffe and wearie get thee away": [0, 65535], "i am stiffe and wearie get thee away dro": [0, 65535], "am stiffe and wearie get thee away dro many": [0, 65535], "stiffe and wearie get thee away dro many a": [0, 65535], "and wearie get thee away dro many a man": [0, 65535], "wearie get thee away dro many a man would": [0, 65535], "get thee away dro many a man would take": [0, 65535], "thee away dro many a man would take you": [0, 65535], "away dro many a man would take you at": [0, 65535], "dro many a man would take you at your": [0, 65535], "many a man would take you at your word": [0, 65535], "a man would take you at your word and": [0, 65535], "man would take you at your word and goe": [0, 65535], "would take you at your word and goe indeede": [0, 65535], "take you at your word and goe indeede hauing": [0, 65535], "you at your word and goe indeede hauing so": [0, 65535], "at your word and goe indeede hauing so good": [0, 65535], "your word and goe indeede hauing so good a": [0, 65535], "word and goe indeede hauing so good a meane": [0, 65535], "and goe indeede hauing so good a meane exit": [0, 65535], "goe indeede hauing so good a meane exit dromio": [0, 65535], "indeede hauing so good a meane exit dromio ant": [0, 65535], "hauing so good a meane exit dromio ant a": [0, 65535], "so good a meane exit dromio ant a trustie": [0, 65535], "good a meane exit dromio ant a trustie villaine": [0, 65535], "a meane exit dromio ant a trustie villaine sir": [0, 65535], "meane exit dromio ant a trustie villaine sir that": [0, 65535], "exit dromio ant a trustie villaine sir that very": [0, 65535], "dromio ant a trustie villaine sir that very oft": [0, 65535], "ant a trustie villaine sir that very oft when": [0, 65535], "a trustie villaine sir that very oft when i": [0, 65535], "trustie villaine sir that very oft when i am": [0, 65535], "villaine sir that very oft when i am dull": [0, 65535], "sir that very oft when i am dull with": [0, 65535], "that very oft when i am dull with care": [0, 65535], "very oft when i am dull with care and": [0, 65535], "oft when i am dull with care and melancholly": [0, 65535], "when i am dull with care and melancholly lightens": [0, 65535], "i am dull with care and melancholly lightens my": [0, 65535], "am dull with care and melancholly lightens my humour": [0, 65535], "dull with care and melancholly lightens my humour with": [0, 65535], "with care and melancholly lightens my humour with his": [0, 65535], "care and melancholly lightens my humour with his merry": [0, 65535], "and melancholly lightens my humour with his merry iests": [0, 65535], "melancholly lightens my humour with his merry iests what": [0, 65535], "lightens my humour with his merry iests what will": [0, 65535], "my humour with his merry iests what will you": [0, 65535], "humour with his merry iests what will you walke": [0, 65535], "with his merry iests what will you walke with": [0, 65535], "his merry iests what will you walke with me": [0, 65535], "merry iests what will you walke with me about": [0, 65535], "iests what will you walke with me about the": [0, 65535], "what will you walke with me about the towne": [0, 65535], "will you walke with me about the towne and": [0, 65535], "you walke with me about the towne and then": [0, 65535], "walke with me about the towne and then goe": [0, 65535], "with me about the towne and then goe to": [0, 65535], "me about the towne and then goe to my": [0, 65535], "about the towne and then goe to my inne": [0, 65535], "the towne and then goe to my inne and": [0, 65535], "towne and then goe to my inne and dine": [0, 65535], "and then goe to my inne and dine with": [0, 65535], "then goe to my inne and dine with me": [0, 65535], "goe to my inne and dine with me e": [0, 65535], "to my inne and dine with me e mar": [0, 65535], "my inne and dine with me e mar i": [0, 65535], "inne and dine with me e mar i am": [0, 65535], "and dine with me e mar i am inuited": [0, 65535], "dine with me e mar i am inuited sir": [0, 65535], "with me e mar i am inuited sir to": [0, 65535], "me e mar i am inuited sir to certaine": [0, 65535], "e mar i am inuited sir to certaine marchants": [0, 65535], "mar i am inuited sir to certaine marchants of": [0, 65535], "i am inuited sir to certaine marchants of whom": [0, 65535], "am inuited sir to certaine marchants of whom i": [0, 65535], "inuited sir to certaine marchants of whom i hope": [0, 65535], "sir to certaine marchants of whom i hope to": [0, 65535], "to certaine marchants of whom i hope to make": [0, 65535], "certaine marchants of whom i hope to make much": [0, 65535], "marchants of whom i hope to make much benefit": [0, 65535], "of whom i hope to make much benefit i": [0, 65535], "whom i hope to make much benefit i craue": [0, 65535], "i hope to make much benefit i craue your": [0, 65535], "hope to make much benefit i craue your pardon": [0, 65535], "to make much benefit i craue your pardon soone": [0, 65535], "make much benefit i craue your pardon soone at": [0, 65535], "much benefit i craue your pardon soone at fiue": [0, 65535], "benefit i craue your pardon soone at fiue a": [0, 65535], "i craue your pardon soone at fiue a clocke": [0, 65535], "craue your pardon soone at fiue a clocke please": [0, 65535], "your pardon soone at fiue a clocke please you": [0, 65535], "pardon soone at fiue a clocke please you ile": [0, 65535], "soone at fiue a clocke please you ile meete": [0, 65535], "at fiue a clocke please you ile meete with": [0, 65535], "fiue a clocke please you ile meete with you": [0, 65535], "a clocke please you ile meete with you vpon": [0, 65535], "clocke please you ile meete with you vpon the": [0, 65535], "please you ile meete with you vpon the mart": [0, 65535], "you ile meete with you vpon the mart and": [0, 65535], "ile meete with you vpon the mart and afterward": [0, 65535], "meete with you vpon the mart and afterward consort": [0, 65535], "with you vpon the mart and afterward consort you": [0, 65535], "you vpon the mart and afterward consort you till": [0, 65535], "vpon the mart and afterward consort you till bed": [0, 65535], "the mart and afterward consort you till bed time": [0, 65535], "mart and afterward consort you till bed time my": [0, 65535], "and afterward consort you till bed time my present": [0, 65535], "afterward consort you till bed time my present businesse": [0, 65535], "consort you till bed time my present businesse cals": [0, 65535], "you till bed time my present businesse cals me": [0, 65535], "till bed time my present businesse cals me from": [0, 65535], "bed time my present businesse cals me from you": [0, 65535], "time my present businesse cals me from you now": [0, 65535], "my present businesse cals me from you now ant": [0, 65535], "present businesse cals me from you now ant farewell": [0, 65535], "businesse cals me from you now ant farewell till": [0, 65535], "cals me from you now ant farewell till then": [0, 65535], "me from you now ant farewell till then i": [0, 65535], "from you now ant farewell till then i will": [0, 65535], "you now ant farewell till then i will goe": [0, 65535], "now ant farewell till then i will goe loose": [0, 65535], "ant farewell till then i will goe loose my": [0, 65535], "farewell till then i will goe loose my selfe": [0, 65535], "till then i will goe loose my selfe and": [0, 65535], "then i will goe loose my selfe and wander": [0, 65535], "i will goe loose my selfe and wander vp": [0, 65535], "will goe loose my selfe and wander vp and": [0, 65535], "goe loose my selfe and wander vp and downe": [0, 65535], "loose my selfe and wander vp and downe to": [0, 65535], "my selfe and wander vp and downe to view": [0, 65535], "selfe and wander vp and downe to view the": [0, 65535], "and wander vp and downe to view the citie": [0, 65535], "wander vp and downe to view the citie e": [0, 65535], "vp and downe to view the citie e mar": [0, 65535], "and downe to view the citie e mar sir": [0, 65535], "downe to view the citie e mar sir i": [0, 65535], "to view the citie e mar sir i commend": [0, 65535], "view the citie e mar sir i commend you": [0, 65535], "the citie e mar sir i commend you to": [0, 65535], "citie e mar sir i commend you to your": [0, 65535], "e mar sir i commend you to your owne": [0, 65535], "mar sir i commend you to your owne content": [0, 65535], "sir i commend you to your owne content exeunt": [0, 65535], "i commend you to your owne content exeunt ant": [0, 65535], "commend you to your owne content exeunt ant he": [0, 65535], "you to your owne content exeunt ant he that": [0, 65535], "to your owne content exeunt ant he that commends": [0, 65535], "your owne content exeunt ant he that commends me": [0, 65535], "owne content exeunt ant he that commends me to": [0, 65535], "content exeunt ant he that commends me to mine": [0, 65535], "exeunt ant he that commends me to mine owne": [0, 65535], "ant he that commends me to mine owne content": [0, 65535], "he that commends me to mine owne content commends": [0, 65535], "that commends me to mine owne content commends me": [0, 65535], "commends me to mine owne content commends me to": [0, 65535], "me to mine owne content commends me to the": [0, 65535], "to mine owne content commends me to the thing": [0, 65535], "mine owne content commends me to the thing i": [0, 65535], "owne content commends me to the thing i cannot": [0, 65535], "content commends me to the thing i cannot get": [0, 65535], "commends me to the thing i cannot get i": [0, 65535], "me to the thing i cannot get i to": [0, 65535], "to the thing i cannot get i to the": [0, 65535], "the thing i cannot get i to the world": [0, 65535], "thing i cannot get i to the world am": [0, 65535], "i cannot get i to the world am like": [0, 65535], "cannot get i to the world am like a": [0, 65535], "get i to the world am like a drop": [0, 65535], "i to the world am like a drop of": [0, 65535], "to the world am like a drop of water": [0, 65535], "the world am like a drop of water that": [0, 65535], "world am like a drop of water that in": [0, 65535], "am like a drop of water that in the": [0, 65535], "like a drop of water that in the ocean": [0, 65535], "a drop of water that in the ocean seekes": [0, 65535], "drop of water that in the ocean seekes another": [0, 65535], "of water that in the ocean seekes another drop": [0, 65535], "water that in the ocean seekes another drop who": [0, 65535], "that in the ocean seekes another drop who falling": [0, 65535], "in the ocean seekes another drop who falling there": [0, 65535], "the ocean seekes another drop who falling there to": [0, 65535], "ocean seekes another drop who falling there to finde": [0, 65535], "seekes another drop who falling there to finde his": [0, 65535], "another drop who falling there to finde his fellow": [0, 65535], "drop who falling there to finde his fellow forth": [0, 65535], "who falling there to finde his fellow forth vnseene": [0, 65535], "falling there to finde his fellow forth vnseene inquisitiue": [0, 65535], "there to finde his fellow forth vnseene inquisitiue confounds": [0, 65535], "to finde his fellow forth vnseene inquisitiue confounds himselfe": [0, 65535], "finde his fellow forth vnseene inquisitiue confounds himselfe so": [0, 65535], "his fellow forth vnseene inquisitiue confounds himselfe so i": [0, 65535], "fellow forth vnseene inquisitiue confounds himselfe so i to": [0, 65535], "forth vnseene inquisitiue confounds himselfe so i to finde": [0, 65535], "vnseene inquisitiue confounds himselfe so i to finde a": [0, 65535], "inquisitiue confounds himselfe so i to finde a mother": [0, 65535], "confounds himselfe so i to finde a mother and": [0, 65535], "himselfe so i to finde a mother and a": [0, 65535], "so i to finde a mother and a brother": [0, 65535], "i to finde a mother and a brother in": [0, 65535], "to finde a mother and a brother in quest": [0, 65535], "finde a mother and a brother in quest of": [0, 65535], "a mother and a brother in quest of them": [0, 65535], "mother and a brother in quest of them vnhappie": [0, 65535], "and a brother in quest of them vnhappie a": [0, 65535], "a brother in quest of them vnhappie a loose": [0, 65535], "brother in quest of them vnhappie a loose my": [0, 65535], "in quest of them vnhappie a loose my selfe": [0, 65535], "quest of them vnhappie a loose my selfe enter": [0, 65535], "of them vnhappie a loose my selfe enter dromio": [0, 65535], "them vnhappie a loose my selfe enter dromio of": [0, 65535], "vnhappie a loose my selfe enter dromio of ephesus": [0, 65535], "a loose my selfe enter dromio of ephesus here": [0, 65535], "loose my selfe enter dromio of ephesus here comes": [0, 65535], "my selfe enter dromio of ephesus here comes the": [0, 65535], "selfe enter dromio of ephesus here comes the almanacke": [0, 65535], "enter dromio of ephesus here comes the almanacke of": [0, 65535], "dromio of ephesus here comes the almanacke of my": [0, 65535], "of ephesus here comes the almanacke of my true": [0, 65535], "ephesus here comes the almanacke of my true date": [0, 65535], "here comes the almanacke of my true date what": [0, 65535], "comes the almanacke of my true date what now": [0, 65535], "the almanacke of my true date what now how": [0, 65535], "almanacke of my true date what now how chance": [0, 65535], "of my true date what now how chance thou": [0, 65535], "my true date what now how chance thou art": [0, 65535], "true date what now how chance thou art return'd": [0, 65535], "date what now how chance thou art return'd so": [0, 65535], "what now how chance thou art return'd so soone": [0, 65535], "now how chance thou art return'd so soone e": [0, 65535], "how chance thou art return'd so soone e dro": [0, 65535], "chance thou art return'd so soone e dro return'd": [0, 65535], "thou art return'd so soone e dro return'd so": [0, 65535], "art return'd so soone e dro return'd so soone": [0, 65535], "return'd so soone e dro return'd so soone rather": [0, 65535], "so soone e dro return'd so soone rather approacht": [0, 65535], "soone e dro return'd so soone rather approacht too": [0, 65535], "e dro return'd so soone rather approacht too late": [0, 65535], "dro return'd so soone rather approacht too late the": [0, 65535], "return'd so soone rather approacht too late the capon": [0, 65535], "so soone rather approacht too late the capon burnes": [0, 65535], "soone rather approacht too late the capon burnes the": [0, 65535], "rather approacht too late the capon burnes the pig": [0, 65535], "approacht too late the capon burnes the pig fals": [0, 65535], "too late the capon burnes the pig fals from": [0, 65535], "late the capon burnes the pig fals from the": [0, 65535], "the capon burnes the pig fals from the spit": [0, 65535], "capon burnes the pig fals from the spit the": [0, 65535], "burnes the pig fals from the spit the clocke": [0, 65535], "the pig fals from the spit the clocke hath": [0, 65535], "pig fals from the spit the clocke hath strucken": [0, 65535], "fals from the spit the clocke hath strucken twelue": [0, 65535], "from the spit the clocke hath strucken twelue vpon": [0, 65535], "the spit the clocke hath strucken twelue vpon the": [0, 65535], "spit the clocke hath strucken twelue vpon the bell": [0, 65535], "the clocke hath strucken twelue vpon the bell my": [0, 65535], "clocke hath strucken twelue vpon the bell my mistris": [0, 65535], "hath strucken twelue vpon the bell my mistris made": [0, 65535], "strucken twelue vpon the bell my mistris made it": [0, 65535], "twelue vpon the bell my mistris made it one": [0, 65535], "vpon the bell my mistris made it one vpon": [0, 65535], "the bell my mistris made it one vpon my": [0, 65535], "bell my mistris made it one vpon my cheeke": [0, 65535], "my mistris made it one vpon my cheeke she": [0, 65535], "mistris made it one vpon my cheeke she is": [0, 65535], "made it one vpon my cheeke she is so": [0, 65535], "it one vpon my cheeke she is so hot": [0, 65535], "one vpon my cheeke she is so hot because": [0, 65535], "vpon my cheeke she is so hot because the": [0, 65535], "my cheeke she is so hot because the meate": [0, 65535], "cheeke she is so hot because the meate is": [0, 65535], "she is so hot because the meate is colde": [0, 65535], "is so hot because the meate is colde the": [0, 65535], "so hot because the meate is colde the meate": [0, 65535], "hot because the meate is colde the meate is": [0, 65535], "because the meate is colde the meate is colde": [0, 65535], "the meate is colde the meate is colde because": [0, 65535], "meate is colde the meate is colde because you": [0, 65535], "is colde the meate is colde because you come": [0, 65535], "colde the meate is colde because you come not": [0, 65535], "the meate is colde because you come not home": [0, 65535], "meate is colde because you come not home you": [0, 65535], "is colde because you come not home you come": [0, 65535], "colde because you come not home you come not": [0, 65535], "because you come not home you come not home": [0, 65535], "you come not home you come not home because": [0, 65535], "come not home you come not home because you": [0, 65535], "not home you come not home because you haue": [0, 65535], "home you come not home because you haue no": [0, 65535], "you come not home because you haue no stomacke": [0, 65535], "come not home because you haue no stomacke you": [0, 65535], "not home because you haue no stomacke you haue": [0, 65535], "home because you haue no stomacke you haue no": [0, 65535], "because you haue no stomacke you haue no stomacke": [0, 65535], "you haue no stomacke you haue no stomacke hauing": [0, 65535], "haue no stomacke you haue no stomacke hauing broke": [0, 65535], "no stomacke you haue no stomacke hauing broke your": [0, 65535], "stomacke you haue no stomacke hauing broke your fast": [0, 65535], "you haue no stomacke hauing broke your fast but": [0, 65535], "haue no stomacke hauing broke your fast but we": [0, 65535], "no stomacke hauing broke your fast but we that": [0, 65535], "stomacke hauing broke your fast but we that know": [0, 65535], "hauing broke your fast but we that know what": [0, 65535], "broke your fast but we that know what 'tis": [0, 65535], "your fast but we that know what 'tis to": [0, 65535], "fast but we that know what 'tis to fast": [0, 65535], "but we that know what 'tis to fast and": [0, 65535], "we that know what 'tis to fast and pray": [0, 65535], "that know what 'tis to fast and pray are": [0, 65535], "know what 'tis to fast and pray are penitent": [0, 65535], "what 'tis to fast and pray are penitent for": [0, 65535], "'tis to fast and pray are penitent for your": [0, 65535], "to fast and pray are penitent for your default": [0, 65535], "fast and pray are penitent for your default to": [0, 65535], "and pray are penitent for your default to day": [0, 65535], "pray are penitent for your default to day ant": [0, 65535], "are penitent for your default to day ant stop": [0, 65535], "penitent for your default to day ant stop in": [0, 65535], "for your default to day ant stop in your": [0, 65535], "your default to day ant stop in your winde": [0, 65535], "default to day ant stop in your winde sir": [0, 65535], "to day ant stop in your winde sir tell": [0, 65535], "day ant stop in your winde sir tell me": [0, 65535], "ant stop in your winde sir tell me this": [0, 65535], "stop in your winde sir tell me this i": [0, 65535], "in your winde sir tell me this i pray": [0, 65535], "your winde sir tell me this i pray where": [0, 65535], "winde sir tell me this i pray where haue": [0, 65535], "sir tell me this i pray where haue you": [0, 65535], "tell me this i pray where haue you left": [0, 65535], "me this i pray where haue you left the": [0, 65535], "this i pray where haue you left the mony": [0, 65535], "i pray where haue you left the mony that": [0, 65535], "pray where haue you left the mony that i": [0, 65535], "where haue you left the mony that i gaue": [0, 65535], "haue you left the mony that i gaue you": [0, 65535], "you left the mony that i gaue you e": [0, 65535], "left the mony that i gaue you e dro": [0, 65535], "the mony that i gaue you e dro oh": [0, 65535], "mony that i gaue you e dro oh sixe": [0, 65535], "that i gaue you e dro oh sixe pence": [0, 65535], "i gaue you e dro oh sixe pence that": [0, 65535], "gaue you e dro oh sixe pence that i": [0, 65535], "you e dro oh sixe pence that i had": [0, 65535], "e dro oh sixe pence that i had a": [0, 65535], "dro oh sixe pence that i had a wensday": [0, 65535], "oh sixe pence that i had a wensday last": [0, 65535], "sixe pence that i had a wensday last to": [0, 65535], "pence that i had a wensday last to pay": [0, 65535], "that i had a wensday last to pay the": [0, 65535], "i had a wensday last to pay the sadler": [0, 65535], "had a wensday last to pay the sadler for": [0, 65535], "a wensday last to pay the sadler for my": [0, 65535], "wensday last to pay the sadler for my mistris": [0, 65535], "last to pay the sadler for my mistris crupper": [0, 65535], "to pay the sadler for my mistris crupper the": [0, 65535], "pay the sadler for my mistris crupper the sadler": [0, 65535], "the sadler for my mistris crupper the sadler had": [0, 65535], "sadler for my mistris crupper the sadler had it": [0, 65535], "for my mistris crupper the sadler had it sir": [0, 65535], "my mistris crupper the sadler had it sir i": [0, 65535], "mistris crupper the sadler had it sir i kept": [0, 65535], "crupper the sadler had it sir i kept it": [0, 65535], "the sadler had it sir i kept it not": [0, 65535], "sadler had it sir i kept it not ant": [0, 65535], "had it sir i kept it not ant i": [0, 65535], "it sir i kept it not ant i am": [0, 65535], "sir i kept it not ant i am not": [0, 65535], "i kept it not ant i am not in": [0, 65535], "kept it not ant i am not in a": [0, 65535], "it not ant i am not in a sportiue": [0, 65535], "not ant i am not in a sportiue humor": [0, 65535], "ant i am not in a sportiue humor now": [0, 65535], "i am not in a sportiue humor now tell": [0, 65535], "am not in a sportiue humor now tell me": [0, 65535], "not in a sportiue humor now tell me and": [0, 65535], "in a sportiue humor now tell me and dally": [0, 65535], "a sportiue humor now tell me and dally not": [0, 65535], "sportiue humor now tell me and dally not where": [0, 65535], "humor now tell me and dally not where is": [0, 65535], "now tell me and dally not where is the": [0, 65535], "tell me and dally not where is the monie": [0, 65535], "me and dally not where is the monie we": [0, 65535], "and dally not where is the monie we being": [0, 65535], "dally not where is the monie we being strangers": [0, 65535], "not where is the monie we being strangers here": [0, 65535], "where is the monie we being strangers here how": [0, 65535], "is the monie we being strangers here how dar'st": [0, 65535], "the monie we being strangers here how dar'st thou": [0, 65535], "monie we being strangers here how dar'st thou trust": [0, 65535], "we being strangers here how dar'st thou trust so": [0, 65535], "being strangers here how dar'st thou trust so great": [0, 65535], "strangers here how dar'st thou trust so great a": [0, 65535], "here how dar'st thou trust so great a charge": [0, 65535], "how dar'st thou trust so great a charge from": [0, 65535], "dar'st thou trust so great a charge from thine": [0, 65535], "thou trust so great a charge from thine owne": [0, 65535], "trust so great a charge from thine owne custodie": [0, 65535], "so great a charge from thine owne custodie e": [0, 65535], "great a charge from thine owne custodie e dro": [0, 65535], "a charge from thine owne custodie e dro i": [0, 65535], "charge from thine owne custodie e dro i pray": [0, 65535], "from thine owne custodie e dro i pray you": [0, 65535], "thine owne custodie e dro i pray you iest": [0, 65535], "owne custodie e dro i pray you iest sir": [0, 65535], "custodie e dro i pray you iest sir as": [0, 65535], "e dro i pray you iest sir as you": [0, 65535], "dro i pray you iest sir as you sit": [0, 65535], "i pray you iest sir as you sit at": [0, 65535], "pray you iest sir as you sit at dinner": [0, 65535], "you iest sir as you sit at dinner i": [0, 65535], "iest sir as you sit at dinner i from": [0, 65535], "sir as you sit at dinner i from my": [0, 65535], "as you sit at dinner i from my mistris": [0, 65535], "you sit at dinner i from my mistris come": [0, 65535], "sit at dinner i from my mistris come to": [0, 65535], "at dinner i from my mistris come to you": [0, 65535], "dinner i from my mistris come to you in": [0, 65535], "i from my mistris come to you in post": [0, 65535], "from my mistris come to you in post if": [0, 65535], "my mistris come to you in post if i": [0, 65535], "mistris come to you in post if i returne": [0, 65535], "come to you in post if i returne i": [0, 65535], "to you in post if i returne i shall": [0, 65535], "you in post if i returne i shall be": [0, 65535], "in post if i returne i shall be post": [0, 65535], "post if i returne i shall be post indeede": [0, 65535], "if i returne i shall be post indeede for": [0, 65535], "i returne i shall be post indeede for she": [0, 65535], "returne i shall be post indeede for she will": [0, 65535], "i shall be post indeede for she will scoure": [0, 65535], "shall be post indeede for she will scoure your": [0, 65535], "be post indeede for she will scoure your fault": [0, 65535], "post indeede for she will scoure your fault vpon": [0, 65535], "indeede for she will scoure your fault vpon my": [0, 65535], "for she will scoure your fault vpon my pate": [0, 65535], "she will scoure your fault vpon my pate me": [0, 65535], "will scoure your fault vpon my pate me thinkes": [0, 65535], "scoure your fault vpon my pate me thinkes your": [0, 65535], "your fault vpon my pate me thinkes your maw": [0, 65535], "fault vpon my pate me thinkes your maw like": [0, 65535], "vpon my pate me thinkes your maw like mine": [0, 65535], "my pate me thinkes your maw like mine should": [0, 65535], "pate me thinkes your maw like mine should be": [0, 65535], "me thinkes your maw like mine should be your": [0, 65535], "thinkes your maw like mine should be your cooke": [0, 65535], "your maw like mine should be your cooke and": [0, 65535], "maw like mine should be your cooke and strike": [0, 65535], "like mine should be your cooke and strike you": [0, 65535], "mine should be your cooke and strike you home": [0, 65535], "should be your cooke and strike you home without": [0, 65535], "be your cooke and strike you home without a": [0, 65535], "your cooke and strike you home without a messenger": [0, 65535], "cooke and strike you home without a messenger ant": [0, 65535], "and strike you home without a messenger ant come": [0, 65535], "strike you home without a messenger ant come dromio": [0, 65535], "you home without a messenger ant come dromio come": [0, 65535], "home without a messenger ant come dromio come these": [0, 65535], "without a messenger ant come dromio come these iests": [0, 65535], "a messenger ant come dromio come these iests are": [0, 65535], "messenger ant come dromio come these iests are out": [0, 65535], "ant come dromio come these iests are out of": [0, 65535], "come dromio come these iests are out of season": [0, 65535], "dromio come these iests are out of season reserue": [0, 65535], "come these iests are out of season reserue them": [0, 65535], "these iests are out of season reserue them till": [0, 65535], "iests are out of season reserue them till a": [0, 65535], "are out of season reserue them till a merrier": [0, 65535], "out of season reserue them till a merrier houre": [0, 65535], "of season reserue them till a merrier houre then": [0, 65535], "season reserue them till a merrier houre then this": [0, 65535], "reserue them till a merrier houre then this where": [0, 65535], "them till a merrier houre then this where is": [0, 65535], "till a merrier houre then this where is the": [0, 65535], "a merrier houre then this where is the gold": [0, 65535], "merrier houre then this where is the gold i": [0, 65535], "houre then this where is the gold i gaue": [0, 65535], "then this where is the gold i gaue in": [0, 65535], "this where is the gold i gaue in charge": [0, 65535], "where is the gold i gaue in charge to": [0, 65535], "is the gold i gaue in charge to thee": [0, 65535], "the gold i gaue in charge to thee e": [0, 65535], "gold i gaue in charge to thee e dro": [0, 65535], "i gaue in charge to thee e dro to": [0, 65535], "gaue in charge to thee e dro to me": [0, 65535], "in charge to thee e dro to me sir": [0, 65535], "charge to thee e dro to me sir why": [0, 65535], "to thee e dro to me sir why you": [0, 65535], "thee e dro to me sir why you gaue": [0, 65535], "e dro to me sir why you gaue no": [0, 65535], "dro to me sir why you gaue no gold": [0, 65535], "to me sir why you gaue no gold to": [0, 65535], "me sir why you gaue no gold to me": [0, 65535], "sir why you gaue no gold to me ant": [0, 65535], "why you gaue no gold to me ant come": [0, 65535], "you gaue no gold to me ant come on": [0, 65535], "gaue no gold to me ant come on sir": [0, 65535], "no gold to me ant come on sir knaue": [0, 65535], "gold to me ant come on sir knaue haue": [0, 65535], "to me ant come on sir knaue haue done": [0, 65535], "me ant come on sir knaue haue done your": [0, 65535], "ant come on sir knaue haue done your foolishnes": [0, 65535], "come on sir knaue haue done your foolishnes and": [0, 65535], "on sir knaue haue done your foolishnes and tell": [0, 65535], "sir knaue haue done your foolishnes and tell me": [0, 65535], "knaue haue done your foolishnes and tell me how": [0, 65535], "haue done your foolishnes and tell me how thou": [0, 65535], "done your foolishnes and tell me how thou hast": [0, 65535], "your foolishnes and tell me how thou hast dispos'd": [0, 65535], "foolishnes and tell me how thou hast dispos'd thy": [0, 65535], "and tell me how thou hast dispos'd thy charge": [0, 65535], "tell me how thou hast dispos'd thy charge e": [0, 65535], "me how thou hast dispos'd thy charge e dro": [0, 65535], "how thou hast dispos'd thy charge e dro my": [0, 65535], "thou hast dispos'd thy charge e dro my charge": [0, 65535], "hast dispos'd thy charge e dro my charge was": [0, 65535], "dispos'd thy charge e dro my charge was but": [0, 65535], "thy charge e dro my charge was but to": [0, 65535], "charge e dro my charge was but to fetch": [0, 65535], "e dro my charge was but to fetch you": [0, 65535], "dro my charge was but to fetch you from": [0, 65535], "my charge was but to fetch you from the": [0, 65535], "charge was but to fetch you from the mart": [0, 65535], "was but to fetch you from the mart home": [0, 65535], "but to fetch you from the mart home to": [0, 65535], "to fetch you from the mart home to your": [0, 65535], "fetch you from the mart home to your house": [0, 65535], "you from the mart home to your house the": [0, 65535], "from the mart home to your house the ph\u0153nix": [0, 65535], "the mart home to your house the ph\u0153nix sir": [0, 65535], "mart home to your house the ph\u0153nix sir to": [0, 65535], "home to your house the ph\u0153nix sir to dinner": [0, 65535], "to your house the ph\u0153nix sir to dinner my": [0, 65535], "your house the ph\u0153nix sir to dinner my mistris": [0, 65535], "house the ph\u0153nix sir to dinner my mistris and": [0, 65535], "the ph\u0153nix sir to dinner my mistris and her": [0, 65535], "ph\u0153nix sir to dinner my mistris and her sister": [0, 65535], "sir to dinner my mistris and her sister staies": [0, 65535], "to dinner my mistris and her sister staies for": [0, 65535], "dinner my mistris and her sister staies for you": [0, 65535], "my mistris and her sister staies for you ant": [0, 65535], "mistris and her sister staies for you ant now": [0, 65535], "and her sister staies for you ant now as": [0, 65535], "her sister staies for you ant now as i": [0, 65535], "sister staies for you ant now as i am": [0, 65535], "staies for you ant now as i am a": [0, 65535], "for you ant now as i am a christian": [0, 65535], "you ant now as i am a christian answer": [0, 65535], "ant now as i am a christian answer me": [0, 65535], "now as i am a christian answer me in": [0, 65535], "as i am a christian answer me in what": [0, 65535], "i am a christian answer me in what safe": [0, 65535], "am a christian answer me in what safe place": [0, 65535], "a christian answer me in what safe place you": [0, 65535], "christian answer me in what safe place you haue": [0, 65535], "answer me in what safe place you haue bestow'd": [0, 65535], "me in what safe place you haue bestow'd my": [0, 65535], "in what safe place you haue bestow'd my monie": [0, 65535], "what safe place you haue bestow'd my monie or": [0, 65535], "safe place you haue bestow'd my monie or i": [0, 65535], "place you haue bestow'd my monie or i shall": [0, 65535], "you haue bestow'd my monie or i shall breake": [0, 65535], "haue bestow'd my monie or i shall breake that": [0, 65535], "bestow'd my monie or i shall breake that merrie": [0, 65535], "my monie or i shall breake that merrie sconce": [0, 65535], "monie or i shall breake that merrie sconce of": [0, 65535], "or i shall breake that merrie sconce of yours": [0, 65535], "i shall breake that merrie sconce of yours that": [0, 65535], "shall breake that merrie sconce of yours that stands": [0, 65535], "breake that merrie sconce of yours that stands on": [0, 65535], "that merrie sconce of yours that stands on tricks": [0, 65535], "merrie sconce of yours that stands on tricks when": [0, 65535], "sconce of yours that stands on tricks when i": [0, 65535], "of yours that stands on tricks when i am": [0, 65535], "yours that stands on tricks when i am vndispos'd": [0, 65535], "that stands on tricks when i am vndispos'd where": [0, 65535], "stands on tricks when i am vndispos'd where is": [0, 65535], "on tricks when i am vndispos'd where is the": [0, 65535], "tricks when i am vndispos'd where is the thousand": [0, 65535], "when i am vndispos'd where is the thousand markes": [0, 65535], "i am vndispos'd where is the thousand markes thou": [0, 65535], "am vndispos'd where is the thousand markes thou hadst": [0, 65535], "vndispos'd where is the thousand markes thou hadst of": [0, 65535], "where is the thousand markes thou hadst of me": [0, 65535], "is the thousand markes thou hadst of me e": [0, 65535], "the thousand markes thou hadst of me e dro": [0, 65535], "thousand markes thou hadst of me e dro i": [0, 65535], "markes thou hadst of me e dro i haue": [0, 65535], "thou hadst of me e dro i haue some": [0, 65535], "hadst of me e dro i haue some markes": [0, 65535], "of me e dro i haue some markes of": [0, 65535], "me e dro i haue some markes of yours": [0, 65535], "e dro i haue some markes of yours vpon": [0, 65535], "dro i haue some markes of yours vpon my": [0, 65535], "i haue some markes of yours vpon my pate": [0, 65535], "haue some markes of yours vpon my pate some": [0, 65535], "some markes of yours vpon my pate some of": [0, 65535], "markes of yours vpon my pate some of my": [0, 65535], "of yours vpon my pate some of my mistris": [0, 65535], "yours vpon my pate some of my mistris markes": [0, 65535], "vpon my pate some of my mistris markes vpon": [0, 65535], "my pate some of my mistris markes vpon my": [0, 65535], "pate some of my mistris markes vpon my shoulders": [0, 65535], "some of my mistris markes vpon my shoulders but": [0, 65535], "of my mistris markes vpon my shoulders but not": [0, 65535], "my mistris markes vpon my shoulders but not a": [0, 65535], "mistris markes vpon my shoulders but not a thousand": [0, 65535], "markes vpon my shoulders but not a thousand markes": [0, 65535], "vpon my shoulders but not a thousand markes betweene": [0, 65535], "my shoulders but not a thousand markes betweene you": [0, 65535], "shoulders but not a thousand markes betweene you both": [0, 65535], "but not a thousand markes betweene you both if": [0, 65535], "not a thousand markes betweene you both if i": [0, 65535], "a thousand markes betweene you both if i should": [0, 65535], "thousand markes betweene you both if i should pay": [0, 65535], "markes betweene you both if i should pay your": [0, 65535], "betweene you both if i should pay your worship": [0, 65535], "you both if i should pay your worship those": [0, 65535], "both if i should pay your worship those againe": [0, 65535], "if i should pay your worship those againe perchance": [0, 65535], "i should pay your worship those againe perchance you": [0, 65535], "should pay your worship those againe perchance you will": [0, 65535], "pay your worship those againe perchance you will not": [0, 65535], "your worship those againe perchance you will not beare": [0, 65535], "worship those againe perchance you will not beare them": [0, 65535], "those againe perchance you will not beare them patiently": [0, 65535], "againe perchance you will not beare them patiently ant": [0, 65535], "perchance you will not beare them patiently ant thy": [0, 65535], "you will not beare them patiently ant thy mistris": [0, 65535], "will not beare them patiently ant thy mistris markes": [0, 65535], "not beare them patiently ant thy mistris markes what": [0, 65535], "beare them patiently ant thy mistris markes what mistris": [0, 65535], "them patiently ant thy mistris markes what mistris slaue": [0, 65535], "patiently ant thy mistris markes what mistris slaue hast": [0, 65535], "ant thy mistris markes what mistris slaue hast thou": [0, 65535], "thy mistris markes what mistris slaue hast thou e": [0, 65535], "mistris markes what mistris slaue hast thou e dro": [0, 65535], "markes what mistris slaue hast thou e dro your": [0, 65535], "what mistris slaue hast thou e dro your worships": [0, 65535], "mistris slaue hast thou e dro your worships wife": [0, 65535], "slaue hast thou e dro your worships wife my": [0, 65535], "hast thou e dro your worships wife my mistris": [0, 65535], "thou e dro your worships wife my mistris at": [0, 65535], "e dro your worships wife my mistris at the": [0, 65535], "dro your worships wife my mistris at the ph\u0153nix": [0, 65535], "your worships wife my mistris at the ph\u0153nix she": [0, 65535], "worships wife my mistris at the ph\u0153nix she that": [0, 65535], "wife my mistris at the ph\u0153nix she that doth": [0, 65535], "my mistris at the ph\u0153nix she that doth fast": [0, 65535], "mistris at the ph\u0153nix she that doth fast till": [0, 65535], "at the ph\u0153nix she that doth fast till you": [0, 65535], "the ph\u0153nix she that doth fast till you come": [0, 65535], "ph\u0153nix she that doth fast till you come home": [0, 65535], "she that doth fast till you come home to": [0, 65535], "that doth fast till you come home to dinner": [0, 65535], "doth fast till you come home to dinner and": [0, 65535], "fast till you come home to dinner and praies": [0, 65535], "till you come home to dinner and praies that": [0, 65535], "you come home to dinner and praies that you": [0, 65535], "come home to dinner and praies that you will": [0, 65535], "home to dinner and praies that you will hie": [0, 65535], "to dinner and praies that you will hie you": [0, 65535], "dinner and praies that you will hie you home": [0, 65535], "and praies that you will hie you home to": [0, 65535], "praies that you will hie you home to dinner": [0, 65535], "that you will hie you home to dinner ant": [0, 65535], "you will hie you home to dinner ant what": [0, 65535], "will hie you home to dinner ant what wilt": [0, 65535], "hie you home to dinner ant what wilt thou": [0, 65535], "you home to dinner ant what wilt thou flout": [0, 65535], "home to dinner ant what wilt thou flout me": [0, 65535], "to dinner ant what wilt thou flout me thus": [0, 65535], "dinner ant what wilt thou flout me thus vnto": [0, 65535], "ant what wilt thou flout me thus vnto my": [0, 65535], "what wilt thou flout me thus vnto my face": [0, 65535], "wilt thou flout me thus vnto my face being": [0, 65535], "thou flout me thus vnto my face being forbid": [0, 65535], "flout me thus vnto my face being forbid there": [0, 65535], "me thus vnto my face being forbid there take": [0, 65535], "thus vnto my face being forbid there take you": [0, 65535], "vnto my face being forbid there take you that": [0, 65535], "my face being forbid there take you that sir": [0, 65535], "face being forbid there take you that sir knaue": [0, 65535], "being forbid there take you that sir knaue e": [0, 65535], "forbid there take you that sir knaue e dro": [0, 65535], "there take you that sir knaue e dro what": [0, 65535], "take you that sir knaue e dro what meane": [0, 65535], "you that sir knaue e dro what meane you": [0, 65535], "that sir knaue e dro what meane you sir": [0, 65535], "sir knaue e dro what meane you sir for": [0, 65535], "knaue e dro what meane you sir for god": [0, 65535], "e dro what meane you sir for god sake": [0, 65535], "dro what meane you sir for god sake hold": [0, 65535], "what meane you sir for god sake hold your": [0, 65535], "meane you sir for god sake hold your hands": [0, 65535], "you sir for god sake hold your hands nay": [0, 65535], "sir for god sake hold your hands nay and": [0, 65535], "for god sake hold your hands nay and you": [0, 65535], "god sake hold your hands nay and you will": [0, 65535], "sake hold your hands nay and you will not": [0, 65535], "hold your hands nay and you will not sir": [0, 65535], "your hands nay and you will not sir ile": [0, 65535], "hands nay and you will not sir ile take": [0, 65535], "nay and you will not sir ile take my": [0, 65535], "and you will not sir ile take my heeles": [0, 65535], "you will not sir ile take my heeles exeunt": [0, 65535], "will not sir ile take my heeles exeunt dromio": [0, 65535], "not sir ile take my heeles exeunt dromio ep": [0, 65535], "sir ile take my heeles exeunt dromio ep ant": [0, 65535], "ile take my heeles exeunt dromio ep ant vpon": [0, 65535], "take my heeles exeunt dromio ep ant vpon my": [0, 65535], "my heeles exeunt dromio ep ant vpon my life": [0, 65535], "heeles exeunt dromio ep ant vpon my life by": [0, 65535], "exeunt dromio ep ant vpon my life by some": [0, 65535], "dromio ep ant vpon my life by some deuise": [0, 65535], "ep ant vpon my life by some deuise or": [0, 65535], "ant vpon my life by some deuise or other": [0, 65535], "vpon my life by some deuise or other the": [0, 65535], "my life by some deuise or other the villaine": [0, 65535], "life by some deuise or other the villaine is": [0, 65535], "by some deuise or other the villaine is ore": [0, 65535], "some deuise or other the villaine is ore wrought": [0, 65535], "deuise or other the villaine is ore wrought of": [0, 65535], "or other the villaine is ore wrought of all": [0, 65535], "other the villaine is ore wrought of all my": [0, 65535], "the villaine is ore wrought of all my monie": [0, 65535], "villaine is ore wrought of all my monie they": [0, 65535], "is ore wrought of all my monie they say": [0, 65535], "ore wrought of all my monie they say this": [0, 65535], "wrought of all my monie they say this towne": [0, 65535], "of all my monie they say this towne is": [0, 65535], "all my monie they say this towne is full": [0, 65535], "my monie they say this towne is full of": [0, 65535], "monie they say this towne is full of cosenage": [0, 65535], "they say this towne is full of cosenage as": [0, 65535], "say this towne is full of cosenage as nimble": [0, 65535], "this towne is full of cosenage as nimble iuglers": [0, 65535], "towne is full of cosenage as nimble iuglers that": [0, 65535], "is full of cosenage as nimble iuglers that deceiue": [0, 65535], "full of cosenage as nimble iuglers that deceiue the": [0, 65535], "of cosenage as nimble iuglers that deceiue the eie": [0, 65535], "cosenage as nimble iuglers that deceiue the eie darke": [0, 65535], "as nimble iuglers that deceiue the eie darke working": [0, 65535], "nimble iuglers that deceiue the eie darke working sorcerers": [0, 65535], "iuglers that deceiue the eie darke working sorcerers that": [0, 65535], "that deceiue the eie darke working sorcerers that change": [0, 65535], "deceiue the eie darke working sorcerers that change the": [0, 65535], "the eie darke working sorcerers that change the minde": [0, 65535], "eie darke working sorcerers that change the minde soule": [0, 65535], "darke working sorcerers that change the minde soule killing": [0, 65535], "working sorcerers that change the minde soule killing witches": [0, 65535], "sorcerers that change the minde soule killing witches that": [0, 65535], "that change the minde soule killing witches that deforme": [0, 65535], "change the minde soule killing witches that deforme the": [0, 65535], "the minde soule killing witches that deforme the bodie": [0, 65535], "minde soule killing witches that deforme the bodie disguised": [0, 65535], "soule killing witches that deforme the bodie disguised cheaters": [0, 65535], "killing witches that deforme the bodie disguised cheaters prating": [0, 65535], "witches that deforme the bodie disguised cheaters prating mountebankes": [0, 65535], "that deforme the bodie disguised cheaters prating mountebankes and": [0, 65535], "deforme the bodie disguised cheaters prating mountebankes and manie": [0, 65535], "the bodie disguised cheaters prating mountebankes and manie such": [0, 65535], "bodie disguised cheaters prating mountebankes and manie such like": [0, 65535], "disguised cheaters prating mountebankes and manie such like liberties": [0, 65535], "cheaters prating mountebankes and manie such like liberties of": [0, 65535], "prating mountebankes and manie such like liberties of sinne": [0, 65535], "mountebankes and manie such like liberties of sinne if": [0, 65535], "and manie such like liberties of sinne if it": [0, 65535], "manie such like liberties of sinne if it proue": [0, 65535], "such like liberties of sinne if it proue so": [0, 65535], "like liberties of sinne if it proue so i": [0, 65535], "liberties of sinne if it proue so i will": [0, 65535], "of sinne if it proue so i will be": [0, 65535], "sinne if it proue so i will be gone": [0, 65535], "if it proue so i will be gone the": [0, 65535], "it proue so i will be gone the sooner": [0, 65535], "proue so i will be gone the sooner ile": [0, 65535], "so i will be gone the sooner ile to": [0, 65535], "i will be gone the sooner ile to the": [0, 65535], "will be gone the sooner ile to the centaur": [0, 65535], "be gone the sooner ile to the centaur to": [0, 65535], "gone the sooner ile to the centaur to goe": [0, 65535], "the sooner ile to the centaur to goe seeke": [0, 65535], "sooner ile to the centaur to goe seeke this": [0, 65535], "ile to the centaur to goe seeke this slaue": [0, 65535], "to the centaur to goe seeke this slaue i": [0, 65535], "the centaur to goe seeke this slaue i greatly": [0, 65535], "centaur to goe seeke this slaue i greatly feare": [0, 65535], "to goe seeke this slaue i greatly feare my": [0, 65535], "goe seeke this slaue i greatly feare my monie": [0, 65535], "seeke this slaue i greatly feare my monie is": [0, 65535], "this slaue i greatly feare my monie is not": [0, 65535], "slaue i greatly feare my monie is not safe": [0, 65535], "the comedie of errors actus primus scena prima enter the": [0, 65535], "comedie of errors actus primus scena prima enter the duke": [0, 65535], "of errors actus primus scena prima enter the duke of": [0, 65535], "errors actus primus scena prima enter the duke of ephesus": [0, 65535], "actus primus scena prima enter the duke of ephesus with": [0, 65535], "primus scena prima enter the duke of ephesus with the": [0, 65535], "scena prima enter the duke of ephesus with the merchant": [0, 65535], "prima enter the duke of ephesus with the merchant of": [0, 65535], "enter the duke of ephesus with the merchant of siracusa": [0, 65535], "the duke of ephesus with the merchant of siracusa iaylor": [0, 65535], "duke of ephesus with the merchant of siracusa iaylor and": [0, 65535], "of ephesus with the merchant of siracusa iaylor and other": [0, 65535], "ephesus with the merchant of siracusa iaylor and other attendants": [0, 65535], "with the merchant of siracusa iaylor and other attendants marchant": [0, 65535], "the merchant of siracusa iaylor and other attendants marchant broceed": [0, 65535], "merchant of siracusa iaylor and other attendants marchant broceed solinus": [0, 65535], "of siracusa iaylor and other attendants marchant broceed solinus to": [0, 65535], "siracusa iaylor and other attendants marchant broceed solinus to procure": [0, 65535], "iaylor and other attendants marchant broceed solinus to procure my": [0, 65535], "and other attendants marchant broceed solinus to procure my fall": [0, 65535], "other attendants marchant broceed solinus to procure my fall and": [0, 65535], "attendants marchant broceed solinus to procure my fall and by": [0, 65535], "marchant broceed solinus to procure my fall and by the": [0, 65535], "broceed solinus to procure my fall and by the doome": [0, 65535], "solinus to procure my fall and by the doome of": [0, 65535], "to procure my fall and by the doome of death": [0, 65535], "procure my fall and by the doome of death end": [0, 65535], "my fall and by the doome of death end woes": [0, 65535], "fall and by the doome of death end woes and": [0, 65535], "and by the doome of death end woes and all": [0, 65535], "by the doome of death end woes and all duke": [0, 65535], "the doome of death end woes and all duke merchant": [0, 65535], "doome of death end woes and all duke merchant of": [0, 65535], "of death end woes and all duke merchant of siracusa": [0, 65535], "death end woes and all duke merchant of siracusa plead": [0, 65535], "end woes and all duke merchant of siracusa plead no": [0, 65535], "woes and all duke merchant of siracusa plead no more": [0, 65535], "and all duke merchant of siracusa plead no more i": [0, 65535], "all duke merchant of siracusa plead no more i am": [0, 65535], "duke merchant of siracusa plead no more i am not": [0, 65535], "merchant of siracusa plead no more i am not partiall": [0, 65535], "of siracusa plead no more i am not partiall to": [0, 65535], "siracusa plead no more i am not partiall to infringe": [0, 65535], "plead no more i am not partiall to infringe our": [0, 65535], "no more i am not partiall to infringe our lawes": [0, 65535], "more i am not partiall to infringe our lawes the": [0, 65535], "i am not partiall to infringe our lawes the enmity": [0, 65535], "am not partiall to infringe our lawes the enmity and": [0, 65535], "not partiall to infringe our lawes the enmity and discord": [0, 65535], "partiall to infringe our lawes the enmity and discord which": [0, 65535], "to infringe our lawes the enmity and discord which of": [0, 65535], "infringe our lawes the enmity and discord which of late": [0, 65535], "our lawes the enmity and discord which of late sprung": [0, 65535], "lawes the enmity and discord which of late sprung from": [0, 65535], "the enmity and discord which of late sprung from the": [0, 65535], "enmity and discord which of late sprung from the rancorous": [0, 65535], "and discord which of late sprung from the rancorous outrage": [0, 65535], "discord which of late sprung from the rancorous outrage of": [0, 65535], "which of late sprung from the rancorous outrage of your": [0, 65535], "of late sprung from the rancorous outrage of your duke": [0, 65535], "late sprung from the rancorous outrage of your duke to": [0, 65535], "sprung from the rancorous outrage of your duke to merchants": [0, 65535], "from the rancorous outrage of your duke to merchants our": [0, 65535], "the rancorous outrage of your duke to merchants our well": [0, 65535], "rancorous outrage of your duke to merchants our well dealing": [0, 65535], "outrage of your duke to merchants our well dealing countrimen": [0, 65535], "of your duke to merchants our well dealing countrimen who": [0, 65535], "your duke to merchants our well dealing countrimen who wanting": [0, 65535], "duke to merchants our well dealing countrimen who wanting gilders": [0, 65535], "to merchants our well dealing countrimen who wanting gilders to": [0, 65535], "merchants our well dealing countrimen who wanting gilders to redeeme": [0, 65535], "our well dealing countrimen who wanting gilders to redeeme their": [0, 65535], "well dealing countrimen who wanting gilders to redeeme their liues": [0, 65535], "dealing countrimen who wanting gilders to redeeme their liues haue": [0, 65535], "countrimen who wanting gilders to redeeme their liues haue seal'd": [0, 65535], "who wanting gilders to redeeme their liues haue seal'd his": [0, 65535], "wanting gilders to redeeme their liues haue seal'd his rigorous": [0, 65535], "gilders to redeeme their liues haue seal'd his rigorous statutes": [0, 65535], "to redeeme their liues haue seal'd his rigorous statutes with": [0, 65535], "redeeme their liues haue seal'd his rigorous statutes with their": [0, 65535], "their liues haue seal'd his rigorous statutes with their blouds": [0, 65535], "liues haue seal'd his rigorous statutes with their blouds excludes": [0, 65535], "haue seal'd his rigorous statutes with their blouds excludes all": [0, 65535], "seal'd his rigorous statutes with their blouds excludes all pitty": [0, 65535], "his rigorous statutes with their blouds excludes all pitty from": [0, 65535], "rigorous statutes with their blouds excludes all pitty from our": [0, 65535], "statutes with their blouds excludes all pitty from our threatning": [0, 65535], "with their blouds excludes all pitty from our threatning lookes": [0, 65535], "their blouds excludes all pitty from our threatning lookes for": [0, 65535], "blouds excludes all pitty from our threatning lookes for since": [0, 65535], "excludes all pitty from our threatning lookes for since the": [0, 65535], "all pitty from our threatning lookes for since the mortall": [0, 65535], "pitty from our threatning lookes for since the mortall and": [0, 65535], "from our threatning lookes for since the mortall and intestine": [0, 65535], "our threatning lookes for since the mortall and intestine iarres": [0, 65535], "threatning lookes for since the mortall and intestine iarres twixt": [0, 65535], "lookes for since the mortall and intestine iarres twixt thy": [0, 65535], "for since the mortall and intestine iarres twixt thy seditious": [0, 65535], "since the mortall and intestine iarres twixt thy seditious countrimen": [0, 65535], "the mortall and intestine iarres twixt thy seditious countrimen and": [0, 65535], "mortall and intestine iarres twixt thy seditious countrimen and vs": [0, 65535], "and intestine iarres twixt thy seditious countrimen and vs it": [0, 65535], "intestine iarres twixt thy seditious countrimen and vs it hath": [0, 65535], "iarres twixt thy seditious countrimen and vs it hath in": [0, 65535], "twixt thy seditious countrimen and vs it hath in solemne": [0, 65535], "thy seditious countrimen and vs it hath in solemne synodes": [0, 65535], "seditious countrimen and vs it hath in solemne synodes beene": [0, 65535], "countrimen and vs it hath in solemne synodes beene decreed": [0, 65535], "and vs it hath in solemne synodes beene decreed both": [0, 65535], "vs it hath in solemne synodes beene decreed both by": [0, 65535], "it hath in solemne synodes beene decreed both by the": [0, 65535], "hath in solemne synodes beene decreed both by the siracusians": [0, 65535], "in solemne synodes beene decreed both by the siracusians and": [0, 65535], "solemne synodes beene decreed both by the siracusians and our": [0, 65535], "synodes beene decreed both by the siracusians and our selues": [0, 65535], "beene decreed both by the siracusians and our selues to": [0, 65535], "decreed both by the siracusians and our selues to admit": [0, 65535], "both by the siracusians and our selues to admit no": [0, 65535], "by the siracusians and our selues to admit no trafficke": [0, 65535], "the siracusians and our selues to admit no trafficke to": [0, 65535], "siracusians and our selues to admit no trafficke to our": [0, 65535], "and our selues to admit no trafficke to our aduerse": [0, 65535], "our selues to admit no trafficke to our aduerse townes": [0, 65535], "selues to admit no trafficke to our aduerse townes nay": [0, 65535], "to admit no trafficke to our aduerse townes nay more": [0, 65535], "admit no trafficke to our aduerse townes nay more if": [0, 65535], "no trafficke to our aduerse townes nay more if any": [0, 65535], "trafficke to our aduerse townes nay more if any borne": [0, 65535], "to our aduerse townes nay more if any borne at": [0, 65535], "our aduerse townes nay more if any borne at ephesus": [0, 65535], "aduerse townes nay more if any borne at ephesus be": [0, 65535], "townes nay more if any borne at ephesus be seene": [0, 65535], "nay more if any borne at ephesus be seene at": [0, 65535], "more if any borne at ephesus be seene at any": [0, 65535], "if any borne at ephesus be seene at any siracusian": [0, 65535], "any borne at ephesus be seene at any siracusian marts": [0, 65535], "borne at ephesus be seene at any siracusian marts and": [0, 65535], "at ephesus be seene at any siracusian marts and fayres": [0, 65535], "ephesus be seene at any siracusian marts and fayres againe": [0, 65535], "be seene at any siracusian marts and fayres againe if": [0, 65535], "seene at any siracusian marts and fayres againe if any": [0, 65535], "at any siracusian marts and fayres againe if any siracusian": [0, 65535], "any siracusian marts and fayres againe if any siracusian borne": [0, 65535], "siracusian marts and fayres againe if any siracusian borne come": [0, 65535], "marts and fayres againe if any siracusian borne come to": [0, 65535], "and fayres againe if any siracusian borne come to the": [0, 65535], "fayres againe if any siracusian borne come to the bay": [0, 65535], "againe if any siracusian borne come to the bay of": [0, 65535], "if any siracusian borne come to the bay of ephesus": [0, 65535], "any siracusian borne come to the bay of ephesus he": [0, 65535], "siracusian borne come to the bay of ephesus he dies": [0, 65535], "borne come to the bay of ephesus he dies his": [0, 65535], "come to the bay of ephesus he dies his goods": [0, 65535], "to the bay of ephesus he dies his goods confiscate": [0, 65535], "the bay of ephesus he dies his goods confiscate to": [0, 65535], "bay of ephesus he dies his goods confiscate to the": [0, 65535], "of ephesus he dies his goods confiscate to the dukes": [0, 65535], "ephesus he dies his goods confiscate to the dukes dispose": [0, 65535], "he dies his goods confiscate to the dukes dispose vnlesse": [0, 65535], "dies his goods confiscate to the dukes dispose vnlesse a": [0, 65535], "his goods confiscate to the dukes dispose vnlesse a thousand": [0, 65535], "goods confiscate to the dukes dispose vnlesse a thousand markes": [0, 65535], "confiscate to the dukes dispose vnlesse a thousand markes be": [0, 65535], "to the dukes dispose vnlesse a thousand markes be leuied": [0, 65535], "the dukes dispose vnlesse a thousand markes be leuied to": [0, 65535], "dukes dispose vnlesse a thousand markes be leuied to quit": [0, 65535], "dispose vnlesse a thousand markes be leuied to quit the": [0, 65535], "vnlesse a thousand markes be leuied to quit the penalty": [0, 65535], "a thousand markes be leuied to quit the penalty and": [0, 65535], "thousand markes be leuied to quit the penalty and to": [0, 65535], "markes be leuied to quit the penalty and to ransome": [0, 65535], "be leuied to quit the penalty and to ransome him": [0, 65535], "leuied to quit the penalty and to ransome him thy": [0, 65535], "to quit the penalty and to ransome him thy substance": [0, 65535], "quit the penalty and to ransome him thy substance valued": [0, 65535], "the penalty and to ransome him thy substance valued at": [0, 65535], "penalty and to ransome him thy substance valued at the": [0, 65535], "and to ransome him thy substance valued at the highest": [0, 65535], "to ransome him thy substance valued at the highest rate": [0, 65535], "ransome him thy substance valued at the highest rate cannot": [0, 65535], "him thy substance valued at the highest rate cannot amount": [0, 65535], "thy substance valued at the highest rate cannot amount vnto": [0, 65535], "substance valued at the highest rate cannot amount vnto a": [0, 65535], "valued at the highest rate cannot amount vnto a hundred": [0, 65535], "at the highest rate cannot amount vnto a hundred markes": [0, 65535], "the highest rate cannot amount vnto a hundred markes therefore": [0, 65535], "highest rate cannot amount vnto a hundred markes therefore by": [0, 65535], "rate cannot amount vnto a hundred markes therefore by law": [0, 65535], "cannot amount vnto a hundred markes therefore by law thou": [0, 65535], "amount vnto a hundred markes therefore by law thou art": [0, 65535], "vnto a hundred markes therefore by law thou art condemn'd": [0, 65535], "a hundred markes therefore by law thou art condemn'd to": [0, 65535], "hundred markes therefore by law thou art condemn'd to die": [0, 65535], "markes therefore by law thou art condemn'd to die mer": [0, 65535], "therefore by law thou art condemn'd to die mer yet": [0, 65535], "by law thou art condemn'd to die mer yet this": [0, 65535], "law thou art condemn'd to die mer yet this my": [0, 65535], "thou art condemn'd to die mer yet this my comfort": [0, 65535], "art condemn'd to die mer yet this my comfort when": [0, 65535], "condemn'd to die mer yet this my comfort when your": [0, 65535], "to die mer yet this my comfort when your words": [0, 65535], "die mer yet this my comfort when your words are": [0, 65535], "mer yet this my comfort when your words are done": [0, 65535], "yet this my comfort when your words are done my": [0, 65535], "this my comfort when your words are done my woes": [0, 65535], "my comfort when your words are done my woes end": [0, 65535], "comfort when your words are done my woes end likewise": [0, 65535], "when your words are done my woes end likewise with": [0, 65535], "your words are done my woes end likewise with the": [0, 65535], "words are done my woes end likewise with the euening": [0, 65535], "are done my woes end likewise with the euening sonne": [0, 65535], "done my woes end likewise with the euening sonne duk": [0, 65535], "my woes end likewise with the euening sonne duk well": [0, 65535], "woes end likewise with the euening sonne duk well siracusian": [0, 65535], "end likewise with the euening sonne duk well siracusian say": [0, 65535], "likewise with the euening sonne duk well siracusian say in": [0, 65535], "with the euening sonne duk well siracusian say in briefe": [0, 65535], "the euening sonne duk well siracusian say in briefe the": [0, 65535], "euening sonne duk well siracusian say in briefe the cause": [0, 65535], "sonne duk well siracusian say in briefe the cause why": [0, 65535], "duk well siracusian say in briefe the cause why thou": [0, 65535], "well siracusian say in briefe the cause why thou departedst": [0, 65535], "siracusian say in briefe the cause why thou departedst from": [0, 65535], "say in briefe the cause why thou departedst from thy": [0, 65535], "in briefe the cause why thou departedst from thy natiue": [0, 65535], "briefe the cause why thou departedst from thy natiue home": [0, 65535], "the cause why thou departedst from thy natiue home and": [0, 65535], "cause why thou departedst from thy natiue home and for": [0, 65535], "why thou departedst from thy natiue home and for what": [0, 65535], "thou departedst from thy natiue home and for what cause": [0, 65535], "departedst from thy natiue home and for what cause thou": [0, 65535], "from thy natiue home and for what cause thou cam'st": [0, 65535], "thy natiue home and for what cause thou cam'st to": [0, 65535], "natiue home and for what cause thou cam'st to ephesus": [0, 65535], "home and for what cause thou cam'st to ephesus mer": [0, 65535], "and for what cause thou cam'st to ephesus mer a": [0, 65535], "for what cause thou cam'st to ephesus mer a heauier": [0, 65535], "what cause thou cam'st to ephesus mer a heauier taske": [0, 65535], "cause thou cam'st to ephesus mer a heauier taske could": [0, 65535], "thou cam'st to ephesus mer a heauier taske could not": [0, 65535], "cam'st to ephesus mer a heauier taske could not haue": [0, 65535], "to ephesus mer a heauier taske could not haue beene": [0, 65535], "ephesus mer a heauier taske could not haue beene impos'd": [0, 65535], "mer a heauier taske could not haue beene impos'd then": [0, 65535], "a heauier taske could not haue beene impos'd then i": [0, 65535], "heauier taske could not haue beene impos'd then i to": [0, 65535], "taske could not haue beene impos'd then i to speake": [0, 65535], "could not haue beene impos'd then i to speake my": [0, 65535], "not haue beene impos'd then i to speake my griefes": [0, 65535], "haue beene impos'd then i to speake my griefes vnspeakeable": [0, 65535], "beene impos'd then i to speake my griefes vnspeakeable yet": [0, 65535], "impos'd then i to speake my griefes vnspeakeable yet that": [0, 65535], "then i to speake my griefes vnspeakeable yet that the": [0, 65535], "i to speake my griefes vnspeakeable yet that the world": [0, 65535], "to speake my griefes vnspeakeable yet that the world may": [0, 65535], "speake my griefes vnspeakeable yet that the world may witnesse": [0, 65535], "my griefes vnspeakeable yet that the world may witnesse that": [0, 65535], "griefes vnspeakeable yet that the world may witnesse that my": [0, 65535], "vnspeakeable yet that the world may witnesse that my end": [0, 65535], "yet that the world may witnesse that my end was": [0, 65535], "that the world may witnesse that my end was wrought": [0, 65535], "the world may witnesse that my end was wrought by": [0, 65535], "world may witnesse that my end was wrought by nature": [0, 65535], "may witnesse that my end was wrought by nature not": [0, 65535], "witnesse that my end was wrought by nature not by": [0, 65535], "that my end was wrought by nature not by vile": [0, 65535], "my end was wrought by nature not by vile offence": [0, 65535], "end was wrought by nature not by vile offence ile": [0, 65535], "was wrought by nature not by vile offence ile vtter": [0, 65535], "wrought by nature not by vile offence ile vtter what": [0, 65535], "by nature not by vile offence ile vtter what my": [0, 65535], "nature not by vile offence ile vtter what my sorrow": [0, 65535], "not by vile offence ile vtter what my sorrow giues": [0, 65535], "by vile offence ile vtter what my sorrow giues me": [0, 65535], "vile offence ile vtter what my sorrow giues me leaue": [0, 65535], "offence ile vtter what my sorrow giues me leaue in": [0, 65535], "ile vtter what my sorrow giues me leaue in syracusa": [0, 65535], "vtter what my sorrow giues me leaue in syracusa was": [0, 65535], "what my sorrow giues me leaue in syracusa was i": [0, 65535], "my sorrow giues me leaue in syracusa was i borne": [0, 65535], "sorrow giues me leaue in syracusa was i borne and": [0, 65535], "giues me leaue in syracusa was i borne and wedde": [0, 65535], "me leaue in syracusa was i borne and wedde vnto": [0, 65535], "leaue in syracusa was i borne and wedde vnto a": [0, 65535], "in syracusa was i borne and wedde vnto a woman": [0, 65535], "syracusa was i borne and wedde vnto a woman happy": [0, 65535], "was i borne and wedde vnto a woman happy but": [0, 65535], "i borne and wedde vnto a woman happy but for": [0, 65535], "borne and wedde vnto a woman happy but for me": [0, 65535], "and wedde vnto a woman happy but for me and": [0, 65535], "wedde vnto a woman happy but for me and by": [0, 65535], "vnto a woman happy but for me and by me": [0, 65535], "a woman happy but for me and by me had": [0, 65535], "woman happy but for me and by me had not": [0, 65535], "happy but for me and by me had not our": [0, 65535], "but for me and by me had not our hap": [0, 65535], "for me and by me had not our hap beene": [0, 65535], "me and by me had not our hap beene bad": [0, 65535], "and by me had not our hap beene bad with": [0, 65535], "by me had not our hap beene bad with her": [0, 65535], "me had not our hap beene bad with her i": [0, 65535], "had not our hap beene bad with her i liu'd": [0, 65535], "not our hap beene bad with her i liu'd in": [0, 65535], "our hap beene bad with her i liu'd in ioy": [0, 65535], "hap beene bad with her i liu'd in ioy our": [0, 65535], "beene bad with her i liu'd in ioy our wealth": [0, 65535], "bad with her i liu'd in ioy our wealth increast": [0, 65535], "with her i liu'd in ioy our wealth increast by": [0, 65535], "her i liu'd in ioy our wealth increast by prosperous": [0, 65535], "i liu'd in ioy our wealth increast by prosperous voyages": [0, 65535], "liu'd in ioy our wealth increast by prosperous voyages i": [0, 65535], "in ioy our wealth increast by prosperous voyages i often": [0, 65535], "ioy our wealth increast by prosperous voyages i often made": [0, 65535], "our wealth increast by prosperous voyages i often made to": [0, 65535], "wealth increast by prosperous voyages i often made to epidamium": [0, 65535], "increast by prosperous voyages i often made to epidamium till": [0, 65535], "by prosperous voyages i often made to epidamium till my": [0, 65535], "prosperous voyages i often made to epidamium till my factors": [0, 65535], "voyages i often made to epidamium till my factors death": [0, 65535], "i often made to epidamium till my factors death and": [0, 65535], "often made to epidamium till my factors death and he": [0, 65535], "made to epidamium till my factors death and he great": [0, 65535], "to epidamium till my factors death and he great care": [0, 65535], "epidamium till my factors death and he great care of": [0, 65535], "till my factors death and he great care of goods": [0, 65535], "my factors death and he great care of goods at": [0, 65535], "factors death and he great care of goods at randone": [0, 65535], "death and he great care of goods at randone left": [0, 65535], "and he great care of goods at randone left drew": [0, 65535], "he great care of goods at randone left drew me": [0, 65535], "great care of goods at randone left drew me from": [0, 65535], "care of goods at randone left drew me from kinde": [0, 65535], "of goods at randone left drew me from kinde embracements": [0, 65535], "goods at randone left drew me from kinde embracements of": [0, 65535], "at randone left drew me from kinde embracements of my": [0, 65535], "randone left drew me from kinde embracements of my spouse": [0, 65535], "left drew me from kinde embracements of my spouse from": [0, 65535], "drew me from kinde embracements of my spouse from whom": [0, 65535], "me from kinde embracements of my spouse from whom my": [0, 65535], "from kinde embracements of my spouse from whom my absence": [0, 65535], "kinde embracements of my spouse from whom my absence was": [0, 65535], "embracements of my spouse from whom my absence was not": [0, 65535], "of my spouse from whom my absence was not sixe": [0, 65535], "my spouse from whom my absence was not sixe moneths": [0, 65535], "spouse from whom my absence was not sixe moneths olde": [0, 65535], "from whom my absence was not sixe moneths olde before": [0, 65535], "whom my absence was not sixe moneths olde before her": [0, 65535], "my absence was not sixe moneths olde before her selfe": [0, 65535], "absence was not sixe moneths olde before her selfe almost": [0, 65535], "was not sixe moneths olde before her selfe almost at": [0, 65535], "not sixe moneths olde before her selfe almost at fainting": [0, 65535], "sixe moneths olde before her selfe almost at fainting vnder": [0, 65535], "moneths olde before her selfe almost at fainting vnder the": [0, 65535], "olde before her selfe almost at fainting vnder the pleasing": [0, 65535], "before her selfe almost at fainting vnder the pleasing punishment": [0, 65535], "her selfe almost at fainting vnder the pleasing punishment that": [0, 65535], "selfe almost at fainting vnder the pleasing punishment that women": [0, 65535], "almost at fainting vnder the pleasing punishment that women beare": [0, 65535], "at fainting vnder the pleasing punishment that women beare had": [0, 65535], "fainting vnder the pleasing punishment that women beare had made": [0, 65535], "vnder the pleasing punishment that women beare had made prouision": [0, 65535], "the pleasing punishment that women beare had made prouision for": [0, 65535], "pleasing punishment that women beare had made prouision for her": [0, 65535], "punishment that women beare had made prouision for her following": [0, 65535], "that women beare had made prouision for her following me": [0, 65535], "women beare had made prouision for her following me and": [0, 65535], "beare had made prouision for her following me and soone": [0, 65535], "had made prouision for her following me and soone and": [0, 65535], "made prouision for her following me and soone and safe": [0, 65535], "prouision for her following me and soone and safe arriued": [0, 65535], "for her following me and soone and safe arriued where": [0, 65535], "her following me and soone and safe arriued where i": [0, 65535], "following me and soone and safe arriued where i was": [0, 65535], "me and soone and safe arriued where i was there": [0, 65535], "and soone and safe arriued where i was there had": [0, 65535], "soone and safe arriued where i was there had she": [0, 65535], "and safe arriued where i was there had she not": [0, 65535], "safe arriued where i was there had she not beene": [0, 65535], "arriued where i was there had she not beene long": [0, 65535], "where i was there had she not beene long but": [0, 65535], "i was there had she not beene long but she": [0, 65535], "was there had she not beene long but she became": [0, 65535], "there had she not beene long but she became a": [0, 65535], "had she not beene long but she became a ioyfull": [0, 65535], "she not beene long but she became a ioyfull mother": [0, 65535], "not beene long but she became a ioyfull mother of": [0, 65535], "beene long but she became a ioyfull mother of two": [0, 65535], "long but she became a ioyfull mother of two goodly": [0, 65535], "but she became a ioyfull mother of two goodly sonnes": [0, 65535], "she became a ioyfull mother of two goodly sonnes and": [0, 65535], "became a ioyfull mother of two goodly sonnes and which": [0, 65535], "a ioyfull mother of two goodly sonnes and which was": [0, 65535], "ioyfull mother of two goodly sonnes and which was strange": [0, 65535], "mother of two goodly sonnes and which was strange the": [0, 65535], "of two goodly sonnes and which was strange the one": [0, 65535], "two goodly sonnes and which was strange the one so": [0, 65535], "goodly sonnes and which was strange the one so like": [0, 65535], "sonnes and which was strange the one so like the": [0, 65535], "and which was strange the one so like the other": [0, 65535], "which was strange the one so like the other as": [0, 65535], "was strange the one so like the other as could": [0, 65535], "strange the one so like the other as could not": [0, 65535], "the one so like the other as could not be": [0, 65535], "one so like the other as could not be distinguish'd": [0, 65535], "so like the other as could not be distinguish'd but": [0, 65535], "like the other as could not be distinguish'd but by": [0, 65535], "the other as could not be distinguish'd but by names": [0, 65535], "other as could not be distinguish'd but by names that": [0, 65535], "as could not be distinguish'd but by names that very": [0, 65535], "could not be distinguish'd but by names that very howre": [0, 65535], "not be distinguish'd but by names that very howre and": [0, 65535], "be distinguish'd but by names that very howre and in": [0, 65535], "distinguish'd but by names that very howre and in the": [0, 65535], "but by names that very howre and in the selfe": [0, 65535], "by names that very howre and in the selfe same": [0, 65535], "names that very howre and in the selfe same inne": [0, 65535], "that very howre and in the selfe same inne a": [0, 65535], "very howre and in the selfe same inne a meane": [0, 65535], "howre and in the selfe same inne a meane woman": [0, 65535], "and in the selfe same inne a meane woman was": [0, 65535], "in the selfe same inne a meane woman was deliuered": [0, 65535], "the selfe same inne a meane woman was deliuered of": [0, 65535], "selfe same inne a meane woman was deliuered of such": [0, 65535], "same inne a meane woman was deliuered of such a": [0, 65535], "inne a meane woman was deliuered of such a burthen": [0, 65535], "a meane woman was deliuered of such a burthen male": [0, 65535], "meane woman was deliuered of such a burthen male twins": [0, 65535], "woman was deliuered of such a burthen male twins both": [0, 65535], "was deliuered of such a burthen male twins both alike": [0, 65535], "deliuered of such a burthen male twins both alike those": [0, 65535], "of such a burthen male twins both alike those for": [0, 65535], "such a burthen male twins both alike those for their": [0, 65535], "a burthen male twins both alike those for their parents": [0, 65535], "burthen male twins both alike those for their parents were": [0, 65535], "male twins both alike those for their parents were exceeding": [0, 65535], "twins both alike those for their parents were exceeding poore": [0, 65535], "both alike those for their parents were exceeding poore i": [0, 65535], "alike those for their parents were exceeding poore i bought": [0, 65535], "those for their parents were exceeding poore i bought and": [0, 65535], "for their parents were exceeding poore i bought and brought": [0, 65535], "their parents were exceeding poore i bought and brought vp": [0, 65535], "parents were exceeding poore i bought and brought vp to": [0, 65535], "were exceeding poore i bought and brought vp to attend": [0, 65535], "exceeding poore i bought and brought vp to attend my": [0, 65535], "poore i bought and brought vp to attend my sonnes": [0, 65535], "i bought and brought vp to attend my sonnes my": [0, 65535], "bought and brought vp to attend my sonnes my wife": [0, 65535], "and brought vp to attend my sonnes my wife not": [0, 65535], "brought vp to attend my sonnes my wife not meanely": [0, 65535], "vp to attend my sonnes my wife not meanely prowd": [0, 65535], "to attend my sonnes my wife not meanely prowd of": [0, 65535], "attend my sonnes my wife not meanely prowd of two": [0, 65535], "my sonnes my wife not meanely prowd of two such": [0, 65535], "sonnes my wife not meanely prowd of two such boyes": [0, 65535], "my wife not meanely prowd of two such boyes made": [0, 65535], "wife not meanely prowd of two such boyes made daily": [0, 65535], "not meanely prowd of two such boyes made daily motions": [0, 65535], "meanely prowd of two such boyes made daily motions for": [0, 65535], "prowd of two such boyes made daily motions for our": [0, 65535], "of two such boyes made daily motions for our home": [0, 65535], "two such boyes made daily motions for our home returne": [0, 65535], "such boyes made daily motions for our home returne vnwilling": [0, 65535], "boyes made daily motions for our home returne vnwilling i": [0, 65535], "made daily motions for our home returne vnwilling i agreed": [0, 65535], "daily motions for our home returne vnwilling i agreed alas": [0, 65535], "motions for our home returne vnwilling i agreed alas too": [0, 65535], "for our home returne vnwilling i agreed alas too soone": [0, 65535], "our home returne vnwilling i agreed alas too soone wee": [0, 65535], "home returne vnwilling i agreed alas too soone wee came": [0, 65535], "returne vnwilling i agreed alas too soone wee came aboord": [0, 65535], "vnwilling i agreed alas too soone wee came aboord a": [0, 65535], "i agreed alas too soone wee came aboord a league": [0, 65535], "agreed alas too soone wee came aboord a league from": [0, 65535], "alas too soone wee came aboord a league from epidamium": [0, 65535], "too soone wee came aboord a league from epidamium had": [0, 65535], "soone wee came aboord a league from epidamium had we": [0, 65535], "wee came aboord a league from epidamium had we saild": [0, 65535], "came aboord a league from epidamium had we saild before": [0, 65535], "aboord a league from epidamium had we saild before the": [0, 65535], "a league from epidamium had we saild before the alwaies": [0, 65535], "league from epidamium had we saild before the alwaies winde": [0, 65535], "from epidamium had we saild before the alwaies winde obeying": [0, 65535], "epidamium had we saild before the alwaies winde obeying deepe": [0, 65535], "had we saild before the alwaies winde obeying deepe gaue": [0, 65535], "we saild before the alwaies winde obeying deepe gaue any": [0, 65535], "saild before the alwaies winde obeying deepe gaue any tragicke": [0, 65535], "before the alwaies winde obeying deepe gaue any tragicke instance": [0, 65535], "the alwaies winde obeying deepe gaue any tragicke instance of": [0, 65535], "alwaies winde obeying deepe gaue any tragicke instance of our": [0, 65535], "winde obeying deepe gaue any tragicke instance of our harme": [0, 65535], "obeying deepe gaue any tragicke instance of our harme but": [0, 65535], "deepe gaue any tragicke instance of our harme but longer": [0, 65535], "gaue any tragicke instance of our harme but longer did": [0, 65535], "any tragicke instance of our harme but longer did we": [0, 65535], "tragicke instance of our harme but longer did we not": [0, 65535], "instance of our harme but longer did we not retaine": [0, 65535], "of our harme but longer did we not retaine much": [0, 65535], "our harme but longer did we not retaine much hope": [0, 65535], "harme but longer did we not retaine much hope for": [0, 65535], "but longer did we not retaine much hope for what": [0, 65535], "longer did we not retaine much hope for what obscured": [0, 65535], "did we not retaine much hope for what obscured light": [0, 65535], "we not retaine much hope for what obscured light the": [0, 65535], "not retaine much hope for what obscured light the heauens": [0, 65535], "retaine much hope for what obscured light the heauens did": [0, 65535], "much hope for what obscured light the heauens did grant": [0, 65535], "hope for what obscured light the heauens did grant did": [0, 65535], "for what obscured light the heauens did grant did but": [0, 65535], "what obscured light the heauens did grant did but conuay": [0, 65535], "obscured light the heauens did grant did but conuay vnto": [0, 65535], "light the heauens did grant did but conuay vnto our": [0, 65535], "the heauens did grant did but conuay vnto our fearefull": [0, 65535], "heauens did grant did but conuay vnto our fearefull mindes": [0, 65535], "did grant did but conuay vnto our fearefull mindes a": [0, 65535], "grant did but conuay vnto our fearefull mindes a doubtfull": [0, 65535], "did but conuay vnto our fearefull mindes a doubtfull warrant": [0, 65535], "but conuay vnto our fearefull mindes a doubtfull warrant of": [0, 65535], "conuay vnto our fearefull mindes a doubtfull warrant of immediate": [0, 65535], "vnto our fearefull mindes a doubtfull warrant of immediate death": [0, 65535], "our fearefull mindes a doubtfull warrant of immediate death which": [0, 65535], "fearefull mindes a doubtfull warrant of immediate death which though": [0, 65535], "mindes a doubtfull warrant of immediate death which though my": [0, 65535], "a doubtfull warrant of immediate death which though my selfe": [0, 65535], "doubtfull warrant of immediate death which though my selfe would": [0, 65535], "warrant of immediate death which though my selfe would gladly": [0, 65535], "of immediate death which though my selfe would gladly haue": [0, 65535], "immediate death which though my selfe would gladly haue imbrac'd": [0, 65535], "death which though my selfe would gladly haue imbrac'd yet": [0, 65535], "which though my selfe would gladly haue imbrac'd yet the": [0, 65535], "though my selfe would gladly haue imbrac'd yet the incessant": [0, 65535], "my selfe would gladly haue imbrac'd yet the incessant weepings": [0, 65535], "selfe would gladly haue imbrac'd yet the incessant weepings of": [0, 65535], "would gladly haue imbrac'd yet the incessant weepings of my": [0, 65535], "gladly haue imbrac'd yet the incessant weepings of my wife": [0, 65535], "haue imbrac'd yet the incessant weepings of my wife weeping": [0, 65535], "imbrac'd yet the incessant weepings of my wife weeping before": [0, 65535], "yet the incessant weepings of my wife weeping before for": [0, 65535], "the incessant weepings of my wife weeping before for what": [0, 65535], "incessant weepings of my wife weeping before for what she": [0, 65535], "weepings of my wife weeping before for what she saw": [0, 65535], "of my wife weeping before for what she saw must": [0, 65535], "my wife weeping before for what she saw must come": [0, 65535], "wife weeping before for what she saw must come and": [0, 65535], "weeping before for what she saw must come and pitteous": [0, 65535], "before for what she saw must come and pitteous playnings": [0, 65535], "for what she saw must come and pitteous playnings of": [0, 65535], "what she saw must come and pitteous playnings of the": [0, 65535], "she saw must come and pitteous playnings of the prettie": [0, 65535], "saw must come and pitteous playnings of the prettie babes": [0, 65535], "must come and pitteous playnings of the prettie babes that": [0, 65535], "come and pitteous playnings of the prettie babes that mourn'd": [0, 65535], "and pitteous playnings of the prettie babes that mourn'd for": [0, 65535], "pitteous playnings of the prettie babes that mourn'd for fashion": [0, 65535], "playnings of the prettie babes that mourn'd for fashion ignorant": [0, 65535], "of the prettie babes that mourn'd for fashion ignorant what": [0, 65535], "the prettie babes that mourn'd for fashion ignorant what to": [0, 65535], "prettie babes that mourn'd for fashion ignorant what to feare": [0, 65535], "babes that mourn'd for fashion ignorant what to feare forst": [0, 65535], "that mourn'd for fashion ignorant what to feare forst me": [0, 65535], "mourn'd for fashion ignorant what to feare forst me to": [0, 65535], "for fashion ignorant what to feare forst me to seeke": [0, 65535], "fashion ignorant what to feare forst me to seeke delayes": [0, 65535], "ignorant what to feare forst me to seeke delayes for": [0, 65535], "what to feare forst me to seeke delayes for them": [0, 65535], "to feare forst me to seeke delayes for them and": [0, 65535], "feare forst me to seeke delayes for them and me": [0, 65535], "forst me to seeke delayes for them and me and": [0, 65535], "me to seeke delayes for them and me and this": [0, 65535], "to seeke delayes for them and me and this it": [0, 65535], "seeke delayes for them and me and this it was": [0, 65535], "delayes for them and me and this it was for": [0, 65535], "for them and me and this it was for other": [0, 65535], "them and me and this it was for other meanes": [0, 65535], "and me and this it was for other meanes was": [0, 65535], "me and this it was for other meanes was none": [0, 65535], "and this it was for other meanes was none the": [0, 65535], "this it was for other meanes was none the sailors": [0, 65535], "it was for other meanes was none the sailors sought": [0, 65535], "was for other meanes was none the sailors sought for": [0, 65535], "for other meanes was none the sailors sought for safety": [0, 65535], "other meanes was none the sailors sought for safety by": [0, 65535], "meanes was none the sailors sought for safety by our": [0, 65535], "was none the sailors sought for safety by our boate": [0, 65535], "none the sailors sought for safety by our boate and": [0, 65535], "the sailors sought for safety by our boate and left": [0, 65535], "sailors sought for safety by our boate and left the": [0, 65535], "sought for safety by our boate and left the ship": [0, 65535], "for safety by our boate and left the ship then": [0, 65535], "safety by our boate and left the ship then sinking": [0, 65535], "by our boate and left the ship then sinking ripe": [0, 65535], "our boate and left the ship then sinking ripe to": [0, 65535], "boate and left the ship then sinking ripe to vs": [0, 65535], "and left the ship then sinking ripe to vs my": [0, 65535], "left the ship then sinking ripe to vs my wife": [0, 65535], "the ship then sinking ripe to vs my wife more": [0, 65535], "ship then sinking ripe to vs my wife more carefull": [0, 65535], "then sinking ripe to vs my wife more carefull for": [0, 65535], "sinking ripe to vs my wife more carefull for the": [0, 65535], "ripe to vs my wife more carefull for the latter": [0, 65535], "to vs my wife more carefull for the latter borne": [0, 65535], "vs my wife more carefull for the latter borne had": [0, 65535], "my wife more carefull for the latter borne had fastned": [0, 65535], "wife more carefull for the latter borne had fastned him": [0, 65535], "more carefull for the latter borne had fastned him vnto": [0, 65535], "carefull for the latter borne had fastned him vnto a": [0, 65535], "for the latter borne had fastned him vnto a small": [0, 65535], "the latter borne had fastned him vnto a small spare": [0, 65535], "latter borne had fastned him vnto a small spare mast": [0, 65535], "borne had fastned him vnto a small spare mast such": [0, 65535], "had fastned him vnto a small spare mast such as": [0, 65535], "fastned him vnto a small spare mast such as sea": [0, 65535], "him vnto a small spare mast such as sea faring": [0, 65535], "vnto a small spare mast such as sea faring men": [0, 65535], "a small spare mast such as sea faring men prouide": [0, 65535], "small spare mast such as sea faring men prouide for": [0, 65535], "spare mast such as sea faring men prouide for stormes": [0, 65535], "mast such as sea faring men prouide for stormes to": [0, 65535], "such as sea faring men prouide for stormes to him": [0, 65535], "as sea faring men prouide for stormes to him one": [0, 65535], "sea faring men prouide for stormes to him one of": [0, 65535], "faring men prouide for stormes to him one of the": [0, 65535], "men prouide for stormes to him one of the other": [0, 65535], "prouide for stormes to him one of the other twins": [0, 65535], "for stormes to him one of the other twins was": [0, 65535], "stormes to him one of the other twins was bound": [0, 65535], "to him one of the other twins was bound whil'st": [0, 65535], "him one of the other twins was bound whil'st i": [0, 65535], "one of the other twins was bound whil'st i had": [0, 65535], "of the other twins was bound whil'st i had beene": [0, 65535], "the other twins was bound whil'st i had beene like": [0, 65535], "other twins was bound whil'st i had beene like heedfull": [0, 65535], "twins was bound whil'st i had beene like heedfull of": [0, 65535], "was bound whil'st i had beene like heedfull of the": [0, 65535], "bound whil'st i had beene like heedfull of the other": [0, 65535], "whil'st i had beene like heedfull of the other the": [0, 65535], "i had beene like heedfull of the other the children": [0, 65535], "had beene like heedfull of the other the children thus": [0, 65535], "beene like heedfull of the other the children thus dispos'd": [0, 65535], "like heedfull of the other the children thus dispos'd my": [0, 65535], "heedfull of the other the children thus dispos'd my wife": [0, 65535], "of the other the children thus dispos'd my wife and": [0, 65535], "the other the children thus dispos'd my wife and i": [0, 65535], "other the children thus dispos'd my wife and i fixing": [0, 65535], "the children thus dispos'd my wife and i fixing our": [0, 65535], "children thus dispos'd my wife and i fixing our eyes": [0, 65535], "thus dispos'd my wife and i fixing our eyes on": [0, 65535], "dispos'd my wife and i fixing our eyes on whom": [0, 65535], "my wife and i fixing our eyes on whom our": [0, 65535], "wife and i fixing our eyes on whom our care": [0, 65535], "and i fixing our eyes on whom our care was": [0, 65535], "i fixing our eyes on whom our care was fixt": [0, 65535], "fixing our eyes on whom our care was fixt fastned": [0, 65535], "our eyes on whom our care was fixt fastned our": [0, 65535], "eyes on whom our care was fixt fastned our selues": [0, 65535], "on whom our care was fixt fastned our selues at": [0, 65535], "whom our care was fixt fastned our selues at eyther": [0, 65535], "our care was fixt fastned our selues at eyther end": [0, 65535], "care was fixt fastned our selues at eyther end the": [0, 65535], "was fixt fastned our selues at eyther end the mast": [0, 65535], "fixt fastned our selues at eyther end the mast and": [0, 65535], "fastned our selues at eyther end the mast and floating": [0, 65535], "our selues at eyther end the mast and floating straight": [0, 65535], "selues at eyther end the mast and floating straight obedient": [0, 65535], "at eyther end the mast and floating straight obedient to": [0, 65535], "eyther end the mast and floating straight obedient to the": [0, 65535], "end the mast and floating straight obedient to the streame": [0, 65535], "the mast and floating straight obedient to the streame was": [0, 65535], "mast and floating straight obedient to the streame was carried": [0, 65535], "and floating straight obedient to the streame was carried towards": [0, 65535], "floating straight obedient to the streame was carried towards corinth": [0, 65535], "straight obedient to the streame was carried towards corinth as": [0, 65535], "obedient to the streame was carried towards corinth as we": [0, 65535], "to the streame was carried towards corinth as we thought": [0, 65535], "the streame was carried towards corinth as we thought at": [0, 65535], "streame was carried towards corinth as we thought at length": [0, 65535], "was carried towards corinth as we thought at length the": [0, 65535], "carried towards corinth as we thought at length the sonne": [0, 65535], "towards corinth as we thought at length the sonne gazing": [0, 65535], "corinth as we thought at length the sonne gazing vpon": [0, 65535], "as we thought at length the sonne gazing vpon the": [0, 65535], "we thought at length the sonne gazing vpon the earth": [0, 65535], "thought at length the sonne gazing vpon the earth disperst": [0, 65535], "at length the sonne gazing vpon the earth disperst those": [0, 65535], "length the sonne gazing vpon the earth disperst those vapours": [0, 65535], "the sonne gazing vpon the earth disperst those vapours that": [0, 65535], "sonne gazing vpon the earth disperst those vapours that offended": [0, 65535], "gazing vpon the earth disperst those vapours that offended vs": [0, 65535], "vpon the earth disperst those vapours that offended vs and": [0, 65535], "the earth disperst those vapours that offended vs and by": [0, 65535], "earth disperst those vapours that offended vs and by the": [0, 65535], "disperst those vapours that offended vs and by the benefit": [0, 65535], "those vapours that offended vs and by the benefit of": [0, 65535], "vapours that offended vs and by the benefit of his": [0, 65535], "that offended vs and by the benefit of his wished": [0, 65535], "offended vs and by the benefit of his wished light": [0, 65535], "vs and by the benefit of his wished light the": [0, 65535], "and by the benefit of his wished light the seas": [0, 65535], "by the benefit of his wished light the seas waxt": [0, 65535], "the benefit of his wished light the seas waxt calme": [0, 65535], "benefit of his wished light the seas waxt calme and": [0, 65535], "of his wished light the seas waxt calme and we": [0, 65535], "his wished light the seas waxt calme and we discouered": [0, 65535], "wished light the seas waxt calme and we discouered two": [0, 65535], "light the seas waxt calme and we discouered two shippes": [0, 65535], "the seas waxt calme and we discouered two shippes from": [0, 65535], "seas waxt calme and we discouered two shippes from farre": [0, 65535], "waxt calme and we discouered two shippes from farre making": [0, 65535], "calme and we discouered two shippes from farre making amaine": [0, 65535], "and we discouered two shippes from farre making amaine to": [0, 65535], "we discouered two shippes from farre making amaine to vs": [0, 65535], "discouered two shippes from farre making amaine to vs of": [0, 65535], "two shippes from farre making amaine to vs of corinth": [0, 65535], "shippes from farre making amaine to vs of corinth that": [0, 65535], "from farre making amaine to vs of corinth that of": [0, 65535], "farre making amaine to vs of corinth that of epidarus": [0, 65535], "making amaine to vs of corinth that of epidarus this": [0, 65535], "amaine to vs of corinth that of epidarus this but": [0, 65535], "to vs of corinth that of epidarus this but ere": [0, 65535], "vs of corinth that of epidarus this but ere they": [0, 65535], "of corinth that of epidarus this but ere they came": [0, 65535], "corinth that of epidarus this but ere they came oh": [0, 65535], "that of epidarus this but ere they came oh let": [0, 65535], "of epidarus this but ere they came oh let me": [0, 65535], "epidarus this but ere they came oh let me say": [0, 65535], "this but ere they came oh let me say no": [0, 65535], "but ere they came oh let me say no more": [0, 65535], "ere they came oh let me say no more gather": [0, 65535], "they came oh let me say no more gather the": [0, 65535], "came oh let me say no more gather the sequell": [0, 65535], "oh let me say no more gather the sequell by": [0, 65535], "let me say no more gather the sequell by that": [0, 65535], "me say no more gather the sequell by that went": [0, 65535], "say no more gather the sequell by that went before": [0, 65535], "no more gather the sequell by that went before duk": [0, 65535], "more gather the sequell by that went before duk nay": [0, 65535], "gather the sequell by that went before duk nay forward": [0, 65535], "the sequell by that went before duk nay forward old": [0, 65535], "sequell by that went before duk nay forward old man": [0, 65535], "by that went before duk nay forward old man doe": [0, 65535], "that went before duk nay forward old man doe not": [0, 65535], "went before duk nay forward old man doe not breake": [0, 65535], "before duk nay forward old man doe not breake off": [0, 65535], "duk nay forward old man doe not breake off so": [0, 65535], "nay forward old man doe not breake off so for": [0, 65535], "forward old man doe not breake off so for we": [0, 65535], "old man doe not breake off so for we may": [0, 65535], "man doe not breake off so for we may pitty": [0, 65535], "doe not breake off so for we may pitty though": [0, 65535], "not breake off so for we may pitty though not": [0, 65535], "breake off so for we may pitty though not pardon": [0, 65535], "off so for we may pitty though not pardon thee": [0, 65535], "so for we may pitty though not pardon thee merch": [0, 65535], "for we may pitty though not pardon thee merch oh": [0, 65535], "we may pitty though not pardon thee merch oh had": [0, 65535], "may pitty though not pardon thee merch oh had the": [0, 65535], "pitty though not pardon thee merch oh had the gods": [0, 65535], "though not pardon thee merch oh had the gods done": [0, 65535], "not pardon thee merch oh had the gods done so": [0, 65535], "pardon thee merch oh had the gods done so i": [0, 65535], "thee merch oh had the gods done so i had": [0, 65535], "merch oh had the gods done so i had not": [0, 65535], "oh had the gods done so i had not now": [0, 65535], "had the gods done so i had not now worthily": [0, 65535], "the gods done so i had not now worthily tearm'd": [0, 65535], "gods done so i had not now worthily tearm'd them": [0, 65535], "done so i had not now worthily tearm'd them mercilesse": [0, 65535], "so i had not now worthily tearm'd them mercilesse to": [0, 65535], "i had not now worthily tearm'd them mercilesse to vs": [0, 65535], "had not now worthily tearm'd them mercilesse to vs for": [0, 65535], "not now worthily tearm'd them mercilesse to vs for ere": [0, 65535], "now worthily tearm'd them mercilesse to vs for ere the": [0, 65535], "worthily tearm'd them mercilesse to vs for ere the ships": [0, 65535], "tearm'd them mercilesse to vs for ere the ships could": [0, 65535], "them mercilesse to vs for ere the ships could meet": [0, 65535], "mercilesse to vs for ere the ships could meet by": [0, 65535], "to vs for ere the ships could meet by twice": [0, 65535], "vs for ere the ships could meet by twice fiue": [0, 65535], "for ere the ships could meet by twice fiue leagues": [0, 65535], "ere the ships could meet by twice fiue leagues we": [0, 65535], "the ships could meet by twice fiue leagues we were": [0, 65535], "ships could meet by twice fiue leagues we were encountred": [0, 65535], "could meet by twice fiue leagues we were encountred by": [0, 65535], "meet by twice fiue leagues we were encountred by a": [0, 65535], "by twice fiue leagues we were encountred by a mighty": [0, 65535], "twice fiue leagues we were encountred by a mighty rocke": [0, 65535], "fiue leagues we were encountred by a mighty rocke which": [0, 65535], "leagues we were encountred by a mighty rocke which being": [0, 65535], "we were encountred by a mighty rocke which being violently": [0, 65535], "were encountred by a mighty rocke which being violently borne": [0, 65535], "encountred by a mighty rocke which being violently borne vp": [0, 65535], "by a mighty rocke which being violently borne vp our": [0, 65535], "a mighty rocke which being violently borne vp our helpefull": [0, 65535], "mighty rocke which being violently borne vp our helpefull ship": [0, 65535], "rocke which being violently borne vp our helpefull ship was": [0, 65535], "which being violently borne vp our helpefull ship was splitted": [0, 65535], "being violently borne vp our helpefull ship was splitted in": [0, 65535], "violently borne vp our helpefull ship was splitted in the": [0, 65535], "borne vp our helpefull ship was splitted in the midst": [0, 65535], "vp our helpefull ship was splitted in the midst so": [0, 65535], "our helpefull ship was splitted in the midst so that": [0, 65535], "helpefull ship was splitted in the midst so that in": [0, 65535], "ship was splitted in the midst so that in this": [0, 65535], "was splitted in the midst so that in this vniust": [0, 65535], "splitted in the midst so that in this vniust diuorce": [0, 65535], "in the midst so that in this vniust diuorce of": [0, 65535], "the midst so that in this vniust diuorce of vs": [0, 65535], "midst so that in this vniust diuorce of vs fortune": [0, 65535], "so that in this vniust diuorce of vs fortune had": [0, 65535], "that in this vniust diuorce of vs fortune had left": [0, 65535], "in this vniust diuorce of vs fortune had left to": [0, 65535], "this vniust diuorce of vs fortune had left to both": [0, 65535], "vniust diuorce of vs fortune had left to both of": [0, 65535], "diuorce of vs fortune had left to both of vs": [0, 65535], "of vs fortune had left to both of vs alike": [0, 65535], "vs fortune had left to both of vs alike what": [0, 65535], "fortune had left to both of vs alike what to": [0, 65535], "had left to both of vs alike what to delight": [0, 65535], "left to both of vs alike what to delight in": [0, 65535], "to both of vs alike what to delight in what": [0, 65535], "both of vs alike what to delight in what to": [0, 65535], "of vs alike what to delight in what to sorrow": [0, 65535], "vs alike what to delight in what to sorrow for": [0, 65535], "alike what to delight in what to sorrow for her": [0, 65535], "what to delight in what to sorrow for her part": [0, 65535], "to delight in what to sorrow for her part poore": [0, 65535], "delight in what to sorrow for her part poore soule": [0, 65535], "in what to sorrow for her part poore soule seeming": [0, 65535], "what to sorrow for her part poore soule seeming as": [0, 65535], "to sorrow for her part poore soule seeming as burdened": [0, 65535], "sorrow for her part poore soule seeming as burdened with": [0, 65535], "for her part poore soule seeming as burdened with lesser": [0, 65535], "her part poore soule seeming as burdened with lesser waight": [0, 65535], "part poore soule seeming as burdened with lesser waight but": [0, 65535], "poore soule seeming as burdened with lesser waight but not": [0, 65535], "soule seeming as burdened with lesser waight but not with": [0, 65535], "seeming as burdened with lesser waight but not with lesser": [0, 65535], "as burdened with lesser waight but not with lesser woe": [0, 65535], "burdened with lesser waight but not with lesser woe was": [0, 65535], "with lesser waight but not with lesser woe was carried": [0, 65535], "lesser waight but not with lesser woe was carried with": [0, 65535], "waight but not with lesser woe was carried with more": [0, 65535], "but not with lesser woe was carried with more speed": [0, 65535], "not with lesser woe was carried with more speed before": [0, 65535], "with lesser woe was carried with more speed before the": [0, 65535], "lesser woe was carried with more speed before the winde": [0, 65535], "woe was carried with more speed before the winde and": [0, 65535], "was carried with more speed before the winde and in": [0, 65535], "carried with more speed before the winde and in our": [0, 65535], "with more speed before the winde and in our sight": [0, 65535], "more speed before the winde and in our sight they": [0, 65535], "speed before the winde and in our sight they three": [0, 65535], "before the winde and in our sight they three were": [0, 65535], "the winde and in our sight they three were taken": [0, 65535], "winde and in our sight they three were taken vp": [0, 65535], "and in our sight they three were taken vp by": [0, 65535], "in our sight they three were taken vp by fishermen": [0, 65535], "our sight they three were taken vp by fishermen of": [0, 65535], "sight they three were taken vp by fishermen of corinth": [0, 65535], "they three were taken vp by fishermen of corinth as": [0, 65535], "three were taken vp by fishermen of corinth as we": [0, 65535], "were taken vp by fishermen of corinth as we thought": [0, 65535], "taken vp by fishermen of corinth as we thought at": [0, 65535], "vp by fishermen of corinth as we thought at length": [0, 65535], "by fishermen of corinth as we thought at length another": [0, 65535], "fishermen of corinth as we thought at length another ship": [0, 65535], "of corinth as we thought at length another ship had": [0, 65535], "corinth as we thought at length another ship had seiz'd": [0, 65535], "as we thought at length another ship had seiz'd on": [0, 65535], "we thought at length another ship had seiz'd on vs": [0, 65535], "thought at length another ship had seiz'd on vs and": [0, 65535], "at length another ship had seiz'd on vs and knowing": [0, 65535], "length another ship had seiz'd on vs and knowing whom": [0, 65535], "another ship had seiz'd on vs and knowing whom it": [0, 65535], "ship had seiz'd on vs and knowing whom it was": [0, 65535], "had seiz'd on vs and knowing whom it was their": [0, 65535], "seiz'd on vs and knowing whom it was their hap": [0, 65535], "on vs and knowing whom it was their hap to": [0, 65535], "vs and knowing whom it was their hap to saue": [0, 65535], "and knowing whom it was their hap to saue gaue": [0, 65535], "knowing whom it was their hap to saue gaue healthfull": [0, 65535], "whom it was their hap to saue gaue healthfull welcome": [0, 65535], "it was their hap to saue gaue healthfull welcome to": [0, 65535], "was their hap to saue gaue healthfull welcome to their": [0, 65535], "their hap to saue gaue healthfull welcome to their ship": [0, 65535], "hap to saue gaue healthfull welcome to their ship wrackt": [0, 65535], "to saue gaue healthfull welcome to their ship wrackt guests": [0, 65535], "saue gaue healthfull welcome to their ship wrackt guests and": [0, 65535], "gaue healthfull welcome to their ship wrackt guests and would": [0, 65535], "healthfull welcome to their ship wrackt guests and would haue": [0, 65535], "welcome to their ship wrackt guests and would haue reft": [0, 65535], "to their ship wrackt guests and would haue reft the": [0, 65535], "their ship wrackt guests and would haue reft the fishers": [0, 65535], "ship wrackt guests and would haue reft the fishers of": [0, 65535], "wrackt guests and would haue reft the fishers of their": [0, 65535], "guests and would haue reft the fishers of their prey": [0, 65535], "and would haue reft the fishers of their prey had": [0, 65535], "would haue reft the fishers of their prey had not": [0, 65535], "haue reft the fishers of their prey had not their": [0, 65535], "reft the fishers of their prey had not their backe": [0, 65535], "the fishers of their prey had not their backe beene": [0, 65535], "fishers of their prey had not their backe beene very": [0, 65535], "of their prey had not their backe beene very slow": [0, 65535], "their prey had not their backe beene very slow of": [0, 65535], "prey had not their backe beene very slow of saile": [0, 65535], "had not their backe beene very slow of saile and": [0, 65535], "not their backe beene very slow of saile and therefore": [0, 65535], "their backe beene very slow of saile and therefore homeward": [0, 65535], "backe beene very slow of saile and therefore homeward did": [0, 65535], "beene very slow of saile and therefore homeward did they": [0, 65535], "very slow of saile and therefore homeward did they bend": [0, 65535], "slow of saile and therefore homeward did they bend their": [0, 65535], "of saile and therefore homeward did they bend their course": [0, 65535], "saile and therefore homeward did they bend their course thus": [0, 65535], "and therefore homeward did they bend their course thus haue": [0, 65535], "therefore homeward did they bend their course thus haue you": [0, 65535], "homeward did they bend their course thus haue you heard": [0, 65535], "did they bend their course thus haue you heard me": [0, 65535], "they bend their course thus haue you heard me seuer'd": [0, 65535], "bend their course thus haue you heard me seuer'd from": [0, 65535], "their course thus haue you heard me seuer'd from my": [0, 65535], "course thus haue you heard me seuer'd from my blisse": [0, 65535], "thus haue you heard me seuer'd from my blisse that": [0, 65535], "haue you heard me seuer'd from my blisse that by": [0, 65535], "you heard me seuer'd from my blisse that by misfortunes": [0, 65535], "heard me seuer'd from my blisse that by misfortunes was": [0, 65535], "me seuer'd from my blisse that by misfortunes was my": [0, 65535], "seuer'd from my blisse that by misfortunes was my life": [0, 65535], "from my blisse that by misfortunes was my life prolong'd": [0, 65535], "my blisse that by misfortunes was my life prolong'd to": [0, 65535], "blisse that by misfortunes was my life prolong'd to tell": [0, 65535], "that by misfortunes was my life prolong'd to tell sad": [0, 65535], "by misfortunes was my life prolong'd to tell sad stories": [0, 65535], "misfortunes was my life prolong'd to tell sad stories of": [0, 65535], "was my life prolong'd to tell sad stories of my": [0, 65535], "my life prolong'd to tell sad stories of my owne": [0, 65535], "life prolong'd to tell sad stories of my owne mishaps": [0, 65535], "prolong'd to tell sad stories of my owne mishaps duke": [0, 65535], "to tell sad stories of my owne mishaps duke and": [0, 65535], "tell sad stories of my owne mishaps duke and for": [0, 65535], "sad stories of my owne mishaps duke and for the": [0, 65535], "stories of my owne mishaps duke and for the sake": [0, 65535], "of my owne mishaps duke and for the sake of": [0, 65535], "my owne mishaps duke and for the sake of them": [0, 65535], "owne mishaps duke and for the sake of them thou": [0, 65535], "mishaps duke and for the sake of them thou sorrowest": [0, 65535], "duke and for the sake of them thou sorrowest for": [0, 65535], "and for the sake of them thou sorrowest for doe": [0, 65535], "for the sake of them thou sorrowest for doe me": [0, 65535], "the sake of them thou sorrowest for doe me the": [0, 65535], "sake of them thou sorrowest for doe me the fauour": [0, 65535], "of them thou sorrowest for doe me the fauour to": [0, 65535], "them thou sorrowest for doe me the fauour to dilate": [0, 65535], "thou sorrowest for doe me the fauour to dilate at": [0, 65535], "sorrowest for doe me the fauour to dilate at full": [0, 65535], "for doe me the fauour to dilate at full what": [0, 65535], "doe me the fauour to dilate at full what haue": [0, 65535], "me the fauour to dilate at full what haue befalne": [0, 65535], "the fauour to dilate at full what haue befalne of": [0, 65535], "fauour to dilate at full what haue befalne of them": [0, 65535], "to dilate at full what haue befalne of them and": [0, 65535], "dilate at full what haue befalne of them and they": [0, 65535], "at full what haue befalne of them and they till": [0, 65535], "full what haue befalne of them and they till now": [0, 65535], "what haue befalne of them and they till now merch": [0, 65535], "haue befalne of them and they till now merch my": [0, 65535], "befalne of them and they till now merch my yongest": [0, 65535], "of them and they till now merch my yongest boy": [0, 65535], "them and they till now merch my yongest boy and": [0, 65535], "and they till now merch my yongest boy and yet": [0, 65535], "they till now merch my yongest boy and yet my": [0, 65535], "till now merch my yongest boy and yet my eldest": [0, 65535], "now merch my yongest boy and yet my eldest care": [0, 65535], "merch my yongest boy and yet my eldest care at": [0, 65535], "my yongest boy and yet my eldest care at eighteene": [0, 65535], "yongest boy and yet my eldest care at eighteene yeeres": [0, 65535], "boy and yet my eldest care at eighteene yeeres became": [0, 65535], "and yet my eldest care at eighteene yeeres became inquisitiue": [0, 65535], "yet my eldest care at eighteene yeeres became inquisitiue after": [0, 65535], "my eldest care at eighteene yeeres became inquisitiue after his": [0, 65535], "eldest care at eighteene yeeres became inquisitiue after his brother": [0, 65535], "care at eighteene yeeres became inquisitiue after his brother and": [0, 65535], "at eighteene yeeres became inquisitiue after his brother and importun'd": [0, 65535], "eighteene yeeres became inquisitiue after his brother and importun'd me": [0, 65535], "yeeres became inquisitiue after his brother and importun'd me that": [0, 65535], "became inquisitiue after his brother and importun'd me that his": [0, 65535], "inquisitiue after his brother and importun'd me that his attendant": [0, 65535], "after his brother and importun'd me that his attendant so": [0, 65535], "his brother and importun'd me that his attendant so his": [0, 65535], "brother and importun'd me that his attendant so his case": [0, 65535], "and importun'd me that his attendant so his case was": [0, 65535], "importun'd me that his attendant so his case was like": [0, 65535], "me that his attendant so his case was like reft": [0, 65535], "that his attendant so his case was like reft of": [0, 65535], "his attendant so his case was like reft of his": [0, 65535], "attendant so his case was like reft of his brother": [0, 65535], "so his case was like reft of his brother but": [0, 65535], "his case was like reft of his brother but retain'd": [0, 65535], "case was like reft of his brother but retain'd his": [0, 65535], "was like reft of his brother but retain'd his name": [0, 65535], "like reft of his brother but retain'd his name might": [0, 65535], "reft of his brother but retain'd his name might beare": [0, 65535], "of his brother but retain'd his name might beare him": [0, 65535], "his brother but retain'd his name might beare him company": [0, 65535], "brother but retain'd his name might beare him company in": [0, 65535], "but retain'd his name might beare him company in the": [0, 65535], "retain'd his name might beare him company in the quest": [0, 65535], "his name might beare him company in the quest of": [0, 65535], "name might beare him company in the quest of him": [0, 65535], "might beare him company in the quest of him whom": [0, 65535], "beare him company in the quest of him whom whil'st": [0, 65535], "him company in the quest of him whom whil'st i": [0, 65535], "company in the quest of him whom whil'st i laboured": [0, 65535], "in the quest of him whom whil'st i laboured of": [0, 65535], "the quest of him whom whil'st i laboured of a": [0, 65535], "quest of him whom whil'st i laboured of a loue": [0, 65535], "of him whom whil'st i laboured of a loue to": [0, 65535], "him whom whil'st i laboured of a loue to see": [0, 65535], "whom whil'st i laboured of a loue to see i": [0, 65535], "whil'st i laboured of a loue to see i hazarded": [0, 65535], "i laboured of a loue to see i hazarded the": [0, 65535], "laboured of a loue to see i hazarded the losse": [0, 65535], "of a loue to see i hazarded the losse of": [0, 65535], "a loue to see i hazarded the losse of whom": [0, 65535], "loue to see i hazarded the losse of whom i": [0, 65535], "to see i hazarded the losse of whom i lou'd": [0, 65535], "see i hazarded the losse of whom i lou'd fiue": [0, 65535], "i hazarded the losse of whom i lou'd fiue sommers": [0, 65535], "hazarded the losse of whom i lou'd fiue sommers haue": [0, 65535], "the losse of whom i lou'd fiue sommers haue i": [0, 65535], "losse of whom i lou'd fiue sommers haue i spent": [0, 65535], "of whom i lou'd fiue sommers haue i spent in": [0, 65535], "whom i lou'd fiue sommers haue i spent in farthest": [0, 65535], "i lou'd fiue sommers haue i spent in farthest greece": [0, 65535], "lou'd fiue sommers haue i spent in farthest greece roming": [0, 65535], "fiue sommers haue i spent in farthest greece roming cleane": [0, 65535], "sommers haue i spent in farthest greece roming cleane through": [0, 65535], "haue i spent in farthest greece roming cleane through the": [0, 65535], "i spent in farthest greece roming cleane through the bounds": [0, 65535], "spent in farthest greece roming cleane through the bounds of": [0, 65535], "in farthest greece roming cleane through the bounds of asia": [0, 65535], "farthest greece roming cleane through the bounds of asia and": [0, 65535], "greece roming cleane through the bounds of asia and coasting": [0, 65535], "roming cleane through the bounds of asia and coasting homeward": [0, 65535], "cleane through the bounds of asia and coasting homeward came": [0, 65535], "through the bounds of asia and coasting homeward came to": [0, 65535], "the bounds of asia and coasting homeward came to ephesus": [0, 65535], "bounds of asia and coasting homeward came to ephesus hopelesse": [0, 65535], "of asia and coasting homeward came to ephesus hopelesse to": [0, 65535], "asia and coasting homeward came to ephesus hopelesse to finde": [0, 65535], "and coasting homeward came to ephesus hopelesse to finde yet": [0, 65535], "coasting homeward came to ephesus hopelesse to finde yet loth": [0, 65535], "homeward came to ephesus hopelesse to finde yet loth to": [0, 65535], "came to ephesus hopelesse to finde yet loth to leaue": [0, 65535], "to ephesus hopelesse to finde yet loth to leaue vnsought": [0, 65535], "ephesus hopelesse to finde yet loth to leaue vnsought or": [0, 65535], "hopelesse to finde yet loth to leaue vnsought or that": [0, 65535], "to finde yet loth to leaue vnsought or that or": [0, 65535], "finde yet loth to leaue vnsought or that or any": [0, 65535], "yet loth to leaue vnsought or that or any place": [0, 65535], "loth to leaue vnsought or that or any place that": [0, 65535], "to leaue vnsought or that or any place that harbours": [0, 65535], "leaue vnsought or that or any place that harbours men": [0, 65535], "vnsought or that or any place that harbours men but": [0, 65535], "or that or any place that harbours men but heere": [0, 65535], "that or any place that harbours men but heere must": [0, 65535], "or any place that harbours men but heere must end": [0, 65535], "any place that harbours men but heere must end the": [0, 65535], "place that harbours men but heere must end the story": [0, 65535], "that harbours men but heere must end the story of": [0, 65535], "harbours men but heere must end the story of my": [0, 65535], "men but heere must end the story of my life": [0, 65535], "but heere must end the story of my life and": [0, 65535], "heere must end the story of my life and happy": [0, 65535], "must end the story of my life and happy were": [0, 65535], "end the story of my life and happy were i": [0, 65535], "the story of my life and happy were i in": [0, 65535], "story of my life and happy were i in my": [0, 65535], "of my life and happy were i in my timelie": [0, 65535], "my life and happy were i in my timelie death": [0, 65535], "life and happy were i in my timelie death could": [0, 65535], "and happy were i in my timelie death could all": [0, 65535], "happy were i in my timelie death could all my": [0, 65535], "were i in my timelie death could all my trauells": [0, 65535], "i in my timelie death could all my trauells warrant": [0, 65535], "in my timelie death could all my trauells warrant me": [0, 65535], "my timelie death could all my trauells warrant me they": [0, 65535], "timelie death could all my trauells warrant me they liue": [0, 65535], "death could all my trauells warrant me they liue duke": [0, 65535], "could all my trauells warrant me they liue duke haplesse": [0, 65535], "all my trauells warrant me they liue duke haplesse egeon": [0, 65535], "my trauells warrant me they liue duke haplesse egeon whom": [0, 65535], "trauells warrant me they liue duke haplesse egeon whom the": [0, 65535], "warrant me they liue duke haplesse egeon whom the fates": [0, 65535], "me they liue duke haplesse egeon whom the fates haue": [0, 65535], "they liue duke haplesse egeon whom the fates haue markt": [0, 65535], "liue duke haplesse egeon whom the fates haue markt to": [0, 65535], "duke haplesse egeon whom the fates haue markt to beare": [0, 65535], "haplesse egeon whom the fates haue markt to beare the": [0, 65535], "egeon whom the fates haue markt to beare the extremitie": [0, 65535], "whom the fates haue markt to beare the extremitie of": [0, 65535], "the fates haue markt to beare the extremitie of dire": [0, 65535], "fates haue markt to beare the extremitie of dire mishap": [0, 65535], "haue markt to beare the extremitie of dire mishap now": [0, 65535], "markt to beare the extremitie of dire mishap now trust": [0, 65535], "to beare the extremitie of dire mishap now trust me": [0, 65535], "beare the extremitie of dire mishap now trust me were": [0, 65535], "the extremitie of dire mishap now trust me were it": [0, 65535], "extremitie of dire mishap now trust me were it not": [0, 65535], "of dire mishap now trust me were it not against": [0, 65535], "dire mishap now trust me were it not against our": [0, 65535], "mishap now trust me were it not against our lawes": [0, 65535], "now trust me were it not against our lawes against": [0, 65535], "trust me were it not against our lawes against my": [0, 65535], "me were it not against our lawes against my crowne": [0, 65535], "were it not against our lawes against my crowne my": [0, 65535], "it not against our lawes against my crowne my oath": [0, 65535], "not against our lawes against my crowne my oath my": [0, 65535], "against our lawes against my crowne my oath my dignity": [0, 65535], "our lawes against my crowne my oath my dignity which": [0, 65535], "lawes against my crowne my oath my dignity which princes": [0, 65535], "against my crowne my oath my dignity which princes would": [0, 65535], "my crowne my oath my dignity which princes would they": [0, 65535], "crowne my oath my dignity which princes would they may": [0, 65535], "my oath my dignity which princes would they may not": [0, 65535], "oath my dignity which princes would they may not disanull": [0, 65535], "my dignity which princes would they may not disanull my": [0, 65535], "dignity which princes would they may not disanull my soule": [0, 65535], "which princes would they may not disanull my soule should": [0, 65535], "princes would they may not disanull my soule should sue": [0, 65535], "would they may not disanull my soule should sue as": [0, 65535], "they may not disanull my soule should sue as aduocate": [0, 65535], "may not disanull my soule should sue as aduocate for": [0, 65535], "not disanull my soule should sue as aduocate for thee": [0, 65535], "disanull my soule should sue as aduocate for thee but": [0, 65535], "my soule should sue as aduocate for thee but though": [0, 65535], "soule should sue as aduocate for thee but though thou": [0, 65535], "should sue as aduocate for thee but though thou art": [0, 65535], "sue as aduocate for thee but though thou art adiudged": [0, 65535], "as aduocate for thee but though thou art adiudged to": [0, 65535], "aduocate for thee but though thou art adiudged to the": [0, 65535], "for thee but though thou art adiudged to the death": [0, 65535], "thee but though thou art adiudged to the death and": [0, 65535], "but though thou art adiudged to the death and passed": [0, 65535], "though thou art adiudged to the death and passed sentence": [0, 65535], "thou art adiudged to the death and passed sentence may": [0, 65535], "art adiudged to the death and passed sentence may not": [0, 65535], "adiudged to the death and passed sentence may not be": [0, 65535], "to the death and passed sentence may not be recal'd": [0, 65535], "the death and passed sentence may not be recal'd but": [0, 65535], "death and passed sentence may not be recal'd but to": [0, 65535], "and passed sentence may not be recal'd but to our": [0, 65535], "passed sentence may not be recal'd but to our honours": [0, 65535], "sentence may not be recal'd but to our honours great": [0, 65535], "may not be recal'd but to our honours great disparagement": [0, 65535], "not be recal'd but to our honours great disparagement yet": [0, 65535], "be recal'd but to our honours great disparagement yet will": [0, 65535], "recal'd but to our honours great disparagement yet will i": [0, 65535], "but to our honours great disparagement yet will i fauour": [0, 65535], "to our honours great disparagement yet will i fauour thee": [0, 65535], "our honours great disparagement yet will i fauour thee in": [0, 65535], "honours great disparagement yet will i fauour thee in what": [0, 65535], "great disparagement yet will i fauour thee in what i": [0, 65535], "disparagement yet will i fauour thee in what i can": [0, 65535], "yet will i fauour thee in what i can therefore": [0, 65535], "will i fauour thee in what i can therefore marchant": [0, 65535], "i fauour thee in what i can therefore marchant ile": [0, 65535], "fauour thee in what i can therefore marchant ile limit": [0, 65535], "thee in what i can therefore marchant ile limit thee": [0, 65535], "in what i can therefore marchant ile limit thee this": [0, 65535], "what i can therefore marchant ile limit thee this day": [0, 65535], "i can therefore marchant ile limit thee this day to": [0, 65535], "can therefore marchant ile limit thee this day to seeke": [0, 65535], "therefore marchant ile limit thee this day to seeke thy": [0, 65535], "marchant ile limit thee this day to seeke thy helpe": [0, 65535], "ile limit thee this day to seeke thy helpe by": [0, 65535], "limit thee this day to seeke thy helpe by beneficiall": [0, 65535], "thee this day to seeke thy helpe by beneficiall helpe": [0, 65535], "this day to seeke thy helpe by beneficiall helpe try": [0, 65535], "day to seeke thy helpe by beneficiall helpe try all": [0, 65535], "to seeke thy helpe by beneficiall helpe try all the": [0, 65535], "seeke thy helpe by beneficiall helpe try all the friends": [0, 65535], "thy helpe by beneficiall helpe try all the friends thou": [0, 65535], "helpe by beneficiall helpe try all the friends thou hast": [0, 65535], "by beneficiall helpe try all the friends thou hast in": [0, 65535], "beneficiall helpe try all the friends thou hast in ephesus": [0, 65535], "helpe try all the friends thou hast in ephesus beg": [0, 65535], "try all the friends thou hast in ephesus beg thou": [0, 65535], "all the friends thou hast in ephesus beg thou or": [0, 65535], "the friends thou hast in ephesus beg thou or borrow": [0, 65535], "friends thou hast in ephesus beg thou or borrow to": [0, 65535], "thou hast in ephesus beg thou or borrow to make": [0, 65535], "hast in ephesus beg thou or borrow to make vp": [0, 65535], "in ephesus beg thou or borrow to make vp the": [0, 65535], "ephesus beg thou or borrow to make vp the summe": [0, 65535], "beg thou or borrow to make vp the summe and": [0, 65535], "thou or borrow to make vp the summe and liue": [0, 65535], "or borrow to make vp the summe and liue if": [0, 65535], "borrow to make vp the summe and liue if no": [0, 65535], "to make vp the summe and liue if no then": [0, 65535], "make vp the summe and liue if no then thou": [0, 65535], "vp the summe and liue if no then thou art": [0, 65535], "the summe and liue if no then thou art doom'd": [0, 65535], "summe and liue if no then thou art doom'd to": [0, 65535], "and liue if no then thou art doom'd to die": [0, 65535], "liue if no then thou art doom'd to die iaylor": [0, 65535], "if no then thou art doom'd to die iaylor take": [0, 65535], "no then thou art doom'd to die iaylor take him": [0, 65535], "then thou art doom'd to die iaylor take him to": [0, 65535], "thou art doom'd to die iaylor take him to thy": [0, 65535], "art doom'd to die iaylor take him to thy custodie": [0, 65535], "doom'd to die iaylor take him to thy custodie iaylor": [0, 65535], "to die iaylor take him to thy custodie iaylor i": [0, 65535], "die iaylor take him to thy custodie iaylor i will": [0, 65535], "iaylor take him to thy custodie iaylor i will my": [0, 65535], "take him to thy custodie iaylor i will my lord": [0, 65535], "him to thy custodie iaylor i will my lord merch": [0, 65535], "to thy custodie iaylor i will my lord merch hopelesse": [0, 65535], "thy custodie iaylor i will my lord merch hopelesse and": [0, 65535], "custodie iaylor i will my lord merch hopelesse and helpelesse": [0, 65535], "iaylor i will my lord merch hopelesse and helpelesse doth": [0, 65535], "i will my lord merch hopelesse and helpelesse doth egean": [0, 65535], "will my lord merch hopelesse and helpelesse doth egean wend": [0, 65535], "my lord merch hopelesse and helpelesse doth egean wend but": [0, 65535], "lord merch hopelesse and helpelesse doth egean wend but to": [0, 65535], "merch hopelesse and helpelesse doth egean wend but to procrastinate": [0, 65535], "hopelesse and helpelesse doth egean wend but to procrastinate his": [0, 65535], "and helpelesse doth egean wend but to procrastinate his liuelesse": [0, 65535], "helpelesse doth egean wend but to procrastinate his liuelesse end": [0, 65535], "doth egean wend but to procrastinate his liuelesse end exeunt": [0, 65535], "egean wend but to procrastinate his liuelesse end exeunt enter": [0, 65535], "wend but to procrastinate his liuelesse end exeunt enter antipholis": [0, 65535], "but to procrastinate his liuelesse end exeunt enter antipholis erotes": [0, 65535], "to procrastinate his liuelesse end exeunt enter antipholis erotes a": [0, 65535], "procrastinate his liuelesse end exeunt enter antipholis erotes a marchant": [0, 65535], "his liuelesse end exeunt enter antipholis erotes a marchant and": [0, 65535], "liuelesse end exeunt enter antipholis erotes a marchant and dromio": [0, 65535], "end exeunt enter antipholis erotes a marchant and dromio mer": [0, 65535], "exeunt enter antipholis erotes a marchant and dromio mer therefore": [0, 65535], "enter antipholis erotes a marchant and dromio mer therefore giue": [0, 65535], "antipholis erotes a marchant and dromio mer therefore giue out": [0, 65535], "erotes a marchant and dromio mer therefore giue out you": [0, 65535], "a marchant and dromio mer therefore giue out you are": [0, 65535], "marchant and dromio mer therefore giue out you are of": [0, 65535], "and dromio mer therefore giue out you are of epidamium": [0, 65535], "dromio mer therefore giue out you are of epidamium lest": [0, 65535], "mer therefore giue out you are of epidamium lest that": [0, 65535], "therefore giue out you are of epidamium lest that your": [0, 65535], "giue out you are of epidamium lest that your goods": [0, 65535], "out you are of epidamium lest that your goods too": [0, 65535], "you are of epidamium lest that your goods too soone": [0, 65535], "are of epidamium lest that your goods too soone be": [0, 65535], "of epidamium lest that your goods too soone be confiscate": [0, 65535], "epidamium lest that your goods too soone be confiscate this": [0, 65535], "lest that your goods too soone be confiscate this very": [0, 65535], "that your goods too soone be confiscate this very day": [0, 65535], "your goods too soone be confiscate this very day a": [0, 65535], "goods too soone be confiscate this very day a syracusian": [0, 65535], "too soone be confiscate this very day a syracusian marchant": [0, 65535], "soone be confiscate this very day a syracusian marchant is": [0, 65535], "be confiscate this very day a syracusian marchant is apprehended": [0, 65535], "confiscate this very day a syracusian marchant is apprehended for": [0, 65535], "this very day a syracusian marchant is apprehended for a": [0, 65535], "very day a syracusian marchant is apprehended for a riuall": [0, 65535], "day a syracusian marchant is apprehended for a riuall here": [0, 65535], "a syracusian marchant is apprehended for a riuall here and": [0, 65535], "syracusian marchant is apprehended for a riuall here and not": [0, 65535], "marchant is apprehended for a riuall here and not being": [0, 65535], "is apprehended for a riuall here and not being able": [0, 65535], "apprehended for a riuall here and not being able to": [0, 65535], "for a riuall here and not being able to buy": [0, 65535], "a riuall here and not being able to buy out": [0, 65535], "riuall here and not being able to buy out his": [0, 65535], "here and not being able to buy out his life": [0, 65535], "and not being able to buy out his life according": [0, 65535], "not being able to buy out his life according to": [0, 65535], "being able to buy out his life according to the": [0, 65535], "able to buy out his life according to the statute": [0, 65535], "to buy out his life according to the statute of": [0, 65535], "buy out his life according to the statute of the": [0, 65535], "out his life according to the statute of the towne": [0, 65535], "his life according to the statute of the towne dies": [0, 65535], "life according to the statute of the towne dies ere": [0, 65535], "according to the statute of the towne dies ere the": [0, 65535], "to the statute of the towne dies ere the wearie": [0, 65535], "the statute of the towne dies ere the wearie sunne": [0, 65535], "statute of the towne dies ere the wearie sunne set": [0, 65535], "of the towne dies ere the wearie sunne set in": [0, 65535], "the towne dies ere the wearie sunne set in the": [0, 65535], "towne dies ere the wearie sunne set in the west": [0, 65535], "dies ere the wearie sunne set in the west there": [0, 65535], "ere the wearie sunne set in the west there is": [0, 65535], "the wearie sunne set in the west there is your": [0, 65535], "wearie sunne set in the west there is your monie": [0, 65535], "sunne set in the west there is your monie that": [0, 65535], "set in the west there is your monie that i": [0, 65535], "in the west there is your monie that i had": [0, 65535], "the west there is your monie that i had to": [0, 65535], "west there is your monie that i had to keepe": [0, 65535], "there is your monie that i had to keepe ant": [0, 65535], "is your monie that i had to keepe ant goe": [0, 65535], "your monie that i had to keepe ant goe beare": [0, 65535], "monie that i had to keepe ant goe beare it": [0, 65535], "that i had to keepe ant goe beare it to": [0, 65535], "i had to keepe ant goe beare it to the": [0, 65535], "had to keepe ant goe beare it to the centaure": [0, 65535], "to keepe ant goe beare it to the centaure where": [0, 65535], "keepe ant goe beare it to the centaure where we": [0, 65535], "ant goe beare it to the centaure where we host": [0, 65535], "goe beare it to the centaure where we host and": [0, 65535], "beare it to the centaure where we host and stay": [0, 65535], "it to the centaure where we host and stay there": [0, 65535], "to the centaure where we host and stay there dromio": [0, 65535], "the centaure where we host and stay there dromio till": [0, 65535], "centaure where we host and stay there dromio till i": [0, 65535], "where we host and stay there dromio till i come": [0, 65535], "we host and stay there dromio till i come to": [0, 65535], "host and stay there dromio till i come to thee": [0, 65535], "and stay there dromio till i come to thee within": [0, 65535], "stay there dromio till i come to thee within this": [0, 65535], "there dromio till i come to thee within this houre": [0, 65535], "dromio till i come to thee within this houre it": [0, 65535], "till i come to thee within this houre it will": [0, 65535], "i come to thee within this houre it will be": [0, 65535], "come to thee within this houre it will be dinner": [0, 65535], "to thee within this houre it will be dinner time": [0, 65535], "thee within this houre it will be dinner time till": [0, 65535], "within this houre it will be dinner time till that": [0, 65535], "this houre it will be dinner time till that ile": [0, 65535], "houre it will be dinner time till that ile view": [0, 65535], "it will be dinner time till that ile view the": [0, 65535], "will be dinner time till that ile view the manners": [0, 65535], "be dinner time till that ile view the manners of": [0, 65535], "dinner time till that ile view the manners of the": [0, 65535], "time till that ile view the manners of the towne": [0, 65535], "till that ile view the manners of the towne peruse": [0, 65535], "that ile view the manners of the towne peruse the": [0, 65535], "ile view the manners of the towne peruse the traders": [0, 65535], "view the manners of the towne peruse the traders gaze": [0, 65535], "the manners of the towne peruse the traders gaze vpon": [0, 65535], "manners of the towne peruse the traders gaze vpon the": [0, 65535], "of the towne peruse the traders gaze vpon the buildings": [0, 65535], "the towne peruse the traders gaze vpon the buildings and": [0, 65535], "towne peruse the traders gaze vpon the buildings and then": [0, 65535], "peruse the traders gaze vpon the buildings and then returne": [0, 65535], "the traders gaze vpon the buildings and then returne and": [0, 65535], "traders gaze vpon the buildings and then returne and sleepe": [0, 65535], "gaze vpon the buildings and then returne and sleepe within": [0, 65535], "vpon the buildings and then returne and sleepe within mine": [0, 65535], "the buildings and then returne and sleepe within mine inne": [0, 65535], "buildings and then returne and sleepe within mine inne for": [0, 65535], "and then returne and sleepe within mine inne for with": [0, 65535], "then returne and sleepe within mine inne for with long": [0, 65535], "returne and sleepe within mine inne for with long trauaile": [0, 65535], "and sleepe within mine inne for with long trauaile i": [0, 65535], "sleepe within mine inne for with long trauaile i am": [0, 65535], "within mine inne for with long trauaile i am stiffe": [0, 65535], "mine inne for with long trauaile i am stiffe and": [0, 65535], "inne for with long trauaile i am stiffe and wearie": [0, 65535], "for with long trauaile i am stiffe and wearie get": [0, 65535], "with long trauaile i am stiffe and wearie get thee": [0, 65535], "long trauaile i am stiffe and wearie get thee away": [0, 65535], "trauaile i am stiffe and wearie get thee away dro": [0, 65535], "i am stiffe and wearie get thee away dro many": [0, 65535], "am stiffe and wearie get thee away dro many a": [0, 65535], "stiffe and wearie get thee away dro many a man": [0, 65535], "and wearie get thee away dro many a man would": [0, 65535], "wearie get thee away dro many a man would take": [0, 65535], "get thee away dro many a man would take you": [0, 65535], "thee away dro many a man would take you at": [0, 65535], "away dro many a man would take you at your": [0, 65535], "dro many a man would take you at your word": [0, 65535], "many a man would take you at your word and": [0, 65535], "a man would take you at your word and goe": [0, 65535], "man would take you at your word and goe indeede": [0, 65535], "would take you at your word and goe indeede hauing": [0, 65535], "take you at your word and goe indeede hauing so": [0, 65535], "you at your word and goe indeede hauing so good": [0, 65535], "at your word and goe indeede hauing so good a": [0, 65535], "your word and goe indeede hauing so good a meane": [0, 65535], "word and goe indeede hauing so good a meane exit": [0, 65535], "and goe indeede hauing so good a meane exit dromio": [0, 65535], "goe indeede hauing so good a meane exit dromio ant": [0, 65535], "indeede hauing so good a meane exit dromio ant a": [0, 65535], "hauing so good a meane exit dromio ant a trustie": [0, 65535], "so good a meane exit dromio ant a trustie villaine": [0, 65535], "good a meane exit dromio ant a trustie villaine sir": [0, 65535], "a meane exit dromio ant a trustie villaine sir that": [0, 65535], "meane exit dromio ant a trustie villaine sir that very": [0, 65535], "exit dromio ant a trustie villaine sir that very oft": [0, 65535], "dromio ant a trustie villaine sir that very oft when": [0, 65535], "ant a trustie villaine sir that very oft when i": [0, 65535], "a trustie villaine sir that very oft when i am": [0, 65535], "trustie villaine sir that very oft when i am dull": [0, 65535], "villaine sir that very oft when i am dull with": [0, 65535], "sir that very oft when i am dull with care": [0, 65535], "that very oft when i am dull with care and": [0, 65535], "very oft when i am dull with care and melancholly": [0, 65535], "oft when i am dull with care and melancholly lightens": [0, 65535], "when i am dull with care and melancholly lightens my": [0, 65535], "i am dull with care and melancholly lightens my humour": [0, 65535], "am dull with care and melancholly lightens my humour with": [0, 65535], "dull with care and melancholly lightens my humour with his": [0, 65535], "with care and melancholly lightens my humour with his merry": [0, 65535], "care and melancholly lightens my humour with his merry iests": [0, 65535], "and melancholly lightens my humour with his merry iests what": [0, 65535], "melancholly lightens my humour with his merry iests what will": [0, 65535], "lightens my humour with his merry iests what will you": [0, 65535], "my humour with his merry iests what will you walke": [0, 65535], "humour with his merry iests what will you walke with": [0, 65535], "with his merry iests what will you walke with me": [0, 65535], "his merry iests what will you walke with me about": [0, 65535], "merry iests what will you walke with me about the": [0, 65535], "iests what will you walke with me about the towne": [0, 65535], "what will you walke with me about the towne and": [0, 65535], "will you walke with me about the towne and then": [0, 65535], "you walke with me about the towne and then goe": [0, 65535], "walke with me about the towne and then goe to": [0, 65535], "with me about the towne and then goe to my": [0, 65535], "me about the towne and then goe to my inne": [0, 65535], "about the towne and then goe to my inne and": [0, 65535], "the towne and then goe to my inne and dine": [0, 65535], "towne and then goe to my inne and dine with": [0, 65535], "and then goe to my inne and dine with me": [0, 65535], "then goe to my inne and dine with me e": [0, 65535], "goe to my inne and dine with me e mar": [0, 65535], "to my inne and dine with me e mar i": [0, 65535], "my inne and dine with me e mar i am": [0, 65535], "inne and dine with me e mar i am inuited": [0, 65535], "and dine with me e mar i am inuited sir": [0, 65535], "dine with me e mar i am inuited sir to": [0, 65535], "with me e mar i am inuited sir to certaine": [0, 65535], "me e mar i am inuited sir to certaine marchants": [0, 65535], "e mar i am inuited sir to certaine marchants of": [0, 65535], "mar i am inuited sir to certaine marchants of whom": [0, 65535], "i am inuited sir to certaine marchants of whom i": [0, 65535], "am inuited sir to certaine marchants of whom i hope": [0, 65535], "inuited sir to certaine marchants of whom i hope to": [0, 65535], "sir to certaine marchants of whom i hope to make": [0, 65535], "to certaine marchants of whom i hope to make much": [0, 65535], "certaine marchants of whom i hope to make much benefit": [0, 65535], "marchants of whom i hope to make much benefit i": [0, 65535], "of whom i hope to make much benefit i craue": [0, 65535], "whom i hope to make much benefit i craue your": [0, 65535], "i hope to make much benefit i craue your pardon": [0, 65535], "hope to make much benefit i craue your pardon soone": [0, 65535], "to make much benefit i craue your pardon soone at": [0, 65535], "make much benefit i craue your pardon soone at fiue": [0, 65535], "much benefit i craue your pardon soone at fiue a": [0, 65535], "benefit i craue your pardon soone at fiue a clocke": [0, 65535], "i craue your pardon soone at fiue a clocke please": [0, 65535], "craue your pardon soone at fiue a clocke please you": [0, 65535], "your pardon soone at fiue a clocke please you ile": [0, 65535], "pardon soone at fiue a clocke please you ile meete": [0, 65535], "soone at fiue a clocke please you ile meete with": [0, 65535], "at fiue a clocke please you ile meete with you": [0, 65535], "fiue a clocke please you ile meete with you vpon": [0, 65535], "a clocke please you ile meete with you vpon the": [0, 65535], "clocke please you ile meete with you vpon the mart": [0, 65535], "please you ile meete with you vpon the mart and": [0, 65535], "you ile meete with you vpon the mart and afterward": [0, 65535], "ile meete with you vpon the mart and afterward consort": [0, 65535], "meete with you vpon the mart and afterward consort you": [0, 65535], "with you vpon the mart and afterward consort you till": [0, 65535], "you vpon the mart and afterward consort you till bed": [0, 65535], "vpon the mart and afterward consort you till bed time": [0, 65535], "the mart and afterward consort you till bed time my": [0, 65535], "mart and afterward consort you till bed time my present": [0, 65535], "and afterward consort you till bed time my present businesse": [0, 65535], "afterward consort you till bed time my present businesse cals": [0, 65535], "consort you till bed time my present businesse cals me": [0, 65535], "you till bed time my present businesse cals me from": [0, 65535], "till bed time my present businesse cals me from you": [0, 65535], "bed time my present businesse cals me from you now": [0, 65535], "time my present businesse cals me from you now ant": [0, 65535], "my present businesse cals me from you now ant farewell": [0, 65535], "present businesse cals me from you now ant farewell till": [0, 65535], "businesse cals me from you now ant farewell till then": [0, 65535], "cals me from you now ant farewell till then i": [0, 65535], "me from you now ant farewell till then i will": [0, 65535], "from you now ant farewell till then i will goe": [0, 65535], "you now ant farewell till then i will goe loose": [0, 65535], "now ant farewell till then i will goe loose my": [0, 65535], "ant farewell till then i will goe loose my selfe": [0, 65535], "farewell till then i will goe loose my selfe and": [0, 65535], "till then i will goe loose my selfe and wander": [0, 65535], "then i will goe loose my selfe and wander vp": [0, 65535], "i will goe loose my selfe and wander vp and": [0, 65535], "will goe loose my selfe and wander vp and downe": [0, 65535], "goe loose my selfe and wander vp and downe to": [0, 65535], "loose my selfe and wander vp and downe to view": [0, 65535], "my selfe and wander vp and downe to view the": [0, 65535], "selfe and wander vp and downe to view the citie": [0, 65535], "and wander vp and downe to view the citie e": [0, 65535], "wander vp and downe to view the citie e mar": [0, 65535], "vp and downe to view the citie e mar sir": [0, 65535], "and downe to view the citie e mar sir i": [0, 65535], "downe to view the citie e mar sir i commend": [0, 65535], "to view the citie e mar sir i commend you": [0, 65535], "view the citie e mar sir i commend you to": [0, 65535], "the citie e mar sir i commend you to your": [0, 65535], "citie e mar sir i commend you to your owne": [0, 65535], "e mar sir i commend you to your owne content": [0, 65535], "mar sir i commend you to your owne content exeunt": [0, 65535], "sir i commend you to your owne content exeunt ant": [0, 65535], "i commend you to your owne content exeunt ant he": [0, 65535], "commend you to your owne content exeunt ant he that": [0, 65535], "you to your owne content exeunt ant he that commends": [0, 65535], "to your owne content exeunt ant he that commends me": [0, 65535], "your owne content exeunt ant he that commends me to": [0, 65535], "owne content exeunt ant he that commends me to mine": [0, 65535], "content exeunt ant he that commends me to mine owne": [0, 65535], "exeunt ant he that commends me to mine owne content": [0, 65535], "ant he that commends me to mine owne content commends": [0, 65535], "he that commends me to mine owne content commends me": [0, 65535], "that commends me to mine owne content commends me to": [0, 65535], "commends me to mine owne content commends me to the": [0, 65535], "me to mine owne content commends me to the thing": [0, 65535], "to mine owne content commends me to the thing i": [0, 65535], "mine owne content commends me to the thing i cannot": [0, 65535], "owne content commends me to the thing i cannot get": [0, 65535], "content commends me to the thing i cannot get i": [0, 65535], "commends me to the thing i cannot get i to": [0, 65535], "me to the thing i cannot get i to the": [0, 65535], "to the thing i cannot get i to the world": [0, 65535], "the thing i cannot get i to the world am": [0, 65535], "thing i cannot get i to the world am like": [0, 65535], "i cannot get i to the world am like a": [0, 65535], "cannot get i to the world am like a drop": [0, 65535], "get i to the world am like a drop of": [0, 65535], "i to the world am like a drop of water": [0, 65535], "to the world am like a drop of water that": [0, 65535], "the world am like a drop of water that in": [0, 65535], "world am like a drop of water that in the": [0, 65535], "am like a drop of water that in the ocean": [0, 65535], "like a drop of water that in the ocean seekes": [0, 65535], "a drop of water that in the ocean seekes another": [0, 65535], "drop of water that in the ocean seekes another drop": [0, 65535], "of water that in the ocean seekes another drop who": [0, 65535], "water that in the ocean seekes another drop who falling": [0, 65535], "that in the ocean seekes another drop who falling there": [0, 65535], "in the ocean seekes another drop who falling there to": [0, 65535], "the ocean seekes another drop who falling there to finde": [0, 65535], "ocean seekes another drop who falling there to finde his": [0, 65535], "seekes another drop who falling there to finde his fellow": [0, 65535], "another drop who falling there to finde his fellow forth": [0, 65535], "drop who falling there to finde his fellow forth vnseene": [0, 65535], "who falling there to finde his fellow forth vnseene inquisitiue": [0, 65535], "falling there to finde his fellow forth vnseene inquisitiue confounds": [0, 65535], "there to finde his fellow forth vnseene inquisitiue confounds himselfe": [0, 65535], "to finde his fellow forth vnseene inquisitiue confounds himselfe so": [0, 65535], "finde his fellow forth vnseene inquisitiue confounds himselfe so i": [0, 65535], "his fellow forth vnseene inquisitiue confounds himselfe so i to": [0, 65535], "fellow forth vnseene inquisitiue confounds himselfe so i to finde": [0, 65535], "forth vnseene inquisitiue confounds himselfe so i to finde a": [0, 65535], "vnseene inquisitiue confounds himselfe so i to finde a mother": [0, 65535], "inquisitiue confounds himselfe so i to finde a mother and": [0, 65535], "confounds himselfe so i to finde a mother and a": [0, 65535], "himselfe so i to finde a mother and a brother": [0, 65535], "so i to finde a mother and a brother in": [0, 65535], "i to finde a mother and a brother in quest": [0, 65535], "to finde a mother and a brother in quest of": [0, 65535], "finde a mother and a brother in quest of them": [0, 65535], "a mother and a brother in quest of them vnhappie": [0, 65535], "mother and a brother in quest of them vnhappie a": [0, 65535], "and a brother in quest of them vnhappie a loose": [0, 65535], "a brother in quest of them vnhappie a loose my": [0, 65535], "brother in quest of them vnhappie a loose my selfe": [0, 65535], "in quest of them vnhappie a loose my selfe enter": [0, 65535], "quest of them vnhappie a loose my selfe enter dromio": [0, 65535], "of them vnhappie a loose my selfe enter dromio of": [0, 65535], "them vnhappie a loose my selfe enter dromio of ephesus": [0, 65535], "vnhappie a loose my selfe enter dromio of ephesus here": [0, 65535], "a loose my selfe enter dromio of ephesus here comes": [0, 65535], "loose my selfe enter dromio of ephesus here comes the": [0, 65535], "my selfe enter dromio of ephesus here comes the almanacke": [0, 65535], "selfe enter dromio of ephesus here comes the almanacke of": [0, 65535], "enter dromio of ephesus here comes the almanacke of my": [0, 65535], "dromio of ephesus here comes the almanacke of my true": [0, 65535], "of ephesus here comes the almanacke of my true date": [0, 65535], "ephesus here comes the almanacke of my true date what": [0, 65535], "here comes the almanacke of my true date what now": [0, 65535], "comes the almanacke of my true date what now how": [0, 65535], "the almanacke of my true date what now how chance": [0, 65535], "almanacke of my true date what now how chance thou": [0, 65535], "of my true date what now how chance thou art": [0, 65535], "my true date what now how chance thou art return'd": [0, 65535], "true date what now how chance thou art return'd so": [0, 65535], "date what now how chance thou art return'd so soone": [0, 65535], "what now how chance thou art return'd so soone e": [0, 65535], "now how chance thou art return'd so soone e dro": [0, 65535], "how chance thou art return'd so soone e dro return'd": [0, 65535], "chance thou art return'd so soone e dro return'd so": [0, 65535], "thou art return'd so soone e dro return'd so soone": [0, 65535], "art return'd so soone e dro return'd so soone rather": [0, 65535], "return'd so soone e dro return'd so soone rather approacht": [0, 65535], "so soone e dro return'd so soone rather approacht too": [0, 65535], "soone e dro return'd so soone rather approacht too late": [0, 65535], "e dro return'd so soone rather approacht too late the": [0, 65535], "dro return'd so soone rather approacht too late the capon": [0, 65535], "return'd so soone rather approacht too late the capon burnes": [0, 65535], "so soone rather approacht too late the capon burnes the": [0, 65535], "soone rather approacht too late the capon burnes the pig": [0, 65535], "rather approacht too late the capon burnes the pig fals": [0, 65535], "approacht too late the capon burnes the pig fals from": [0, 65535], "too late the capon burnes the pig fals from the": [0, 65535], "late the capon burnes the pig fals from the spit": [0, 65535], "the capon burnes the pig fals from the spit the": [0, 65535], "capon burnes the pig fals from the spit the clocke": [0, 65535], "burnes the pig fals from the spit the clocke hath": [0, 65535], "the pig fals from the spit the clocke hath strucken": [0, 65535], "pig fals from the spit the clocke hath strucken twelue": [0, 65535], "fals from the spit the clocke hath strucken twelue vpon": [0, 65535], "from the spit the clocke hath strucken twelue vpon the": [0, 65535], "the spit the clocke hath strucken twelue vpon the bell": [0, 65535], "spit the clocke hath strucken twelue vpon the bell my": [0, 65535], "the clocke hath strucken twelue vpon the bell my mistris": [0, 65535], "clocke hath strucken twelue vpon the bell my mistris made": [0, 65535], "hath strucken twelue vpon the bell my mistris made it": [0, 65535], "strucken twelue vpon the bell my mistris made it one": [0, 65535], "twelue vpon the bell my mistris made it one vpon": [0, 65535], "vpon the bell my mistris made it one vpon my": [0, 65535], "the bell my mistris made it one vpon my cheeke": [0, 65535], "bell my mistris made it one vpon my cheeke she": [0, 65535], "my mistris made it one vpon my cheeke she is": [0, 65535], "mistris made it one vpon my cheeke she is so": [0, 65535], "made it one vpon my cheeke she is so hot": [0, 65535], "it one vpon my cheeke she is so hot because": [0, 65535], "one vpon my cheeke she is so hot because the": [0, 65535], "vpon my cheeke she is so hot because the meate": [0, 65535], "my cheeke she is so hot because the meate is": [0, 65535], "cheeke she is so hot because the meate is colde": [0, 65535], "she is so hot because the meate is colde the": [0, 65535], "is so hot because the meate is colde the meate": [0, 65535], "so hot because the meate is colde the meate is": [0, 65535], "hot because the meate is colde the meate is colde": [0, 65535], "because the meate is colde the meate is colde because": [0, 65535], "the meate is colde the meate is colde because you": [0, 65535], "meate is colde the meate is colde because you come": [0, 65535], "is colde the meate is colde because you come not": [0, 65535], "colde the meate is colde because you come not home": [0, 65535], "the meate is colde because you come not home you": [0, 65535], "meate is colde because you come not home you come": [0, 65535], "is colde because you come not home you come not": [0, 65535], "colde because you come not home you come not home": [0, 65535], "because you come not home you come not home because": [0, 65535], "you come not home you come not home because you": [0, 65535], "come not home you come not home because you haue": [0, 65535], "not home you come not home because you haue no": [0, 65535], "home you come not home because you haue no stomacke": [0, 65535], "you come not home because you haue no stomacke you": [0, 65535], "come not home because you haue no stomacke you haue": [0, 65535], "not home because you haue no stomacke you haue no": [0, 65535], "home because you haue no stomacke you haue no stomacke": [0, 65535], "because you haue no stomacke you haue no stomacke hauing": [0, 65535], "you haue no stomacke you haue no stomacke hauing broke": [0, 65535], "haue no stomacke you haue no stomacke hauing broke your": [0, 65535], "no stomacke you haue no stomacke hauing broke your fast": [0, 65535], "stomacke you haue no stomacke hauing broke your fast but": [0, 65535], "you haue no stomacke hauing broke your fast but we": [0, 65535], "haue no stomacke hauing broke your fast but we that": [0, 65535], "no stomacke hauing broke your fast but we that know": [0, 65535], "stomacke hauing broke your fast but we that know what": [0, 65535], "hauing broke your fast but we that know what 'tis": [0, 65535], "broke your fast but we that know what 'tis to": [0, 65535], "your fast but we that know what 'tis to fast": [0, 65535], "fast but we that know what 'tis to fast and": [0, 65535], "but we that know what 'tis to fast and pray": [0, 65535], "we that know what 'tis to fast and pray are": [0, 65535], "that know what 'tis to fast and pray are penitent": [0, 65535], "know what 'tis to fast and pray are penitent for": [0, 65535], "what 'tis to fast and pray are penitent for your": [0, 65535], "'tis to fast and pray are penitent for your default": [0, 65535], "to fast and pray are penitent for your default to": [0, 65535], "fast and pray are penitent for your default to day": [0, 65535], "and pray are penitent for your default to day ant": [0, 65535], "pray are penitent for your default to day ant stop": [0, 65535], "are penitent for your default to day ant stop in": [0, 65535], "penitent for your default to day ant stop in your": [0, 65535], "for your default to day ant stop in your winde": [0, 65535], "your default to day ant stop in your winde sir": [0, 65535], "default to day ant stop in your winde sir tell": [0, 65535], "to day ant stop in your winde sir tell me": [0, 65535], "day ant stop in your winde sir tell me this": [0, 65535], "ant stop in your winde sir tell me this i": [0, 65535], "stop in your winde sir tell me this i pray": [0, 65535], "in your winde sir tell me this i pray where": [0, 65535], "your winde sir tell me this i pray where haue": [0, 65535], "winde sir tell me this i pray where haue you": [0, 65535], "sir tell me this i pray where haue you left": [0, 65535], "tell me this i pray where haue you left the": [0, 65535], "me this i pray where haue you left the mony": [0, 65535], "this i pray where haue you left the mony that": [0, 65535], "i pray where haue you left the mony that i": [0, 65535], "pray where haue you left the mony that i gaue": [0, 65535], "where haue you left the mony that i gaue you": [0, 65535], "haue you left the mony that i gaue you e": [0, 65535], "you left the mony that i gaue you e dro": [0, 65535], "left the mony that i gaue you e dro oh": [0, 65535], "the mony that i gaue you e dro oh sixe": [0, 65535], "mony that i gaue you e dro oh sixe pence": [0, 65535], "that i gaue you e dro oh sixe pence that": [0, 65535], "i gaue you e dro oh sixe pence that i": [0, 65535], "gaue you e dro oh sixe pence that i had": [0, 65535], "you e dro oh sixe pence that i had a": [0, 65535], "e dro oh sixe pence that i had a wensday": [0, 65535], "dro oh sixe pence that i had a wensday last": [0, 65535], "oh sixe pence that i had a wensday last to": [0, 65535], "sixe pence that i had a wensday last to pay": [0, 65535], "pence that i had a wensday last to pay the": [0, 65535], "that i had a wensday last to pay the sadler": [0, 65535], "i had a wensday last to pay the sadler for": [0, 65535], "had a wensday last to pay the sadler for my": [0, 65535], "a wensday last to pay the sadler for my mistris": [0, 65535], "wensday last to pay the sadler for my mistris crupper": [0, 65535], "last to pay the sadler for my mistris crupper the": [0, 65535], "to pay the sadler for my mistris crupper the sadler": [0, 65535], "pay the sadler for my mistris crupper the sadler had": [0, 65535], "the sadler for my mistris crupper the sadler had it": [0, 65535], "sadler for my mistris crupper the sadler had it sir": [0, 65535], "for my mistris crupper the sadler had it sir i": [0, 65535], "my mistris crupper the sadler had it sir i kept": [0, 65535], "mistris crupper the sadler had it sir i kept it": [0, 65535], "crupper the sadler had it sir i kept it not": [0, 65535], "the sadler had it sir i kept it not ant": [0, 65535], "sadler had it sir i kept it not ant i": [0, 65535], "had it sir i kept it not ant i am": [0, 65535], "it sir i kept it not ant i am not": [0, 65535], "sir i kept it not ant i am not in": [0, 65535], "i kept it not ant i am not in a": [0, 65535], "kept it not ant i am not in a sportiue": [0, 65535], "it not ant i am not in a sportiue humor": [0, 65535], "not ant i am not in a sportiue humor now": [0, 65535], "ant i am not in a sportiue humor now tell": [0, 65535], "i am not in a sportiue humor now tell me": [0, 65535], "am not in a sportiue humor now tell me and": [0, 65535], "not in a sportiue humor now tell me and dally": [0, 65535], "in a sportiue humor now tell me and dally not": [0, 65535], "a sportiue humor now tell me and dally not where": [0, 65535], "sportiue humor now tell me and dally not where is": [0, 65535], "humor now tell me and dally not where is the": [0, 65535], "now tell me and dally not where is the monie": [0, 65535], "tell me and dally not where is the monie we": [0, 65535], "me and dally not where is the monie we being": [0, 65535], "and dally not where is the monie we being strangers": [0, 65535], "dally not where is the monie we being strangers here": [0, 65535], "not where is the monie we being strangers here how": [0, 65535], "where is the monie we being strangers here how dar'st": [0, 65535], "is the monie we being strangers here how dar'st thou": [0, 65535], "the monie we being strangers here how dar'st thou trust": [0, 65535], "monie we being strangers here how dar'st thou trust so": [0, 65535], "we being strangers here how dar'st thou trust so great": [0, 65535], "being strangers here how dar'st thou trust so great a": [0, 65535], "strangers here how dar'st thou trust so great a charge": [0, 65535], "here how dar'st thou trust so great a charge from": [0, 65535], "how dar'st thou trust so great a charge from thine": [0, 65535], "dar'st thou trust so great a charge from thine owne": [0, 65535], "thou trust so great a charge from thine owne custodie": [0, 65535], "trust so great a charge from thine owne custodie e": [0, 65535], "so great a charge from thine owne custodie e dro": [0, 65535], "great a charge from thine owne custodie e dro i": [0, 65535], "a charge from thine owne custodie e dro i pray": [0, 65535], "charge from thine owne custodie e dro i pray you": [0, 65535], "from thine owne custodie e dro i pray you iest": [0, 65535], "thine owne custodie e dro i pray you iest sir": [0, 65535], "owne custodie e dro i pray you iest sir as": [0, 65535], "custodie e dro i pray you iest sir as you": [0, 65535], "e dro i pray you iest sir as you sit": [0, 65535], "dro i pray you iest sir as you sit at": [0, 65535], "i pray you iest sir as you sit at dinner": [0, 65535], "pray you iest sir as you sit at dinner i": [0, 65535], "you iest sir as you sit at dinner i from": [0, 65535], "iest sir as you sit at dinner i from my": [0, 65535], "sir as you sit at dinner i from my mistris": [0, 65535], "as you sit at dinner i from my mistris come": [0, 65535], "you sit at dinner i from my mistris come to": [0, 65535], "sit at dinner i from my mistris come to you": [0, 65535], "at dinner i from my mistris come to you in": [0, 65535], "dinner i from my mistris come to you in post": [0, 65535], "i from my mistris come to you in post if": [0, 65535], "from my mistris come to you in post if i": [0, 65535], "my mistris come to you in post if i returne": [0, 65535], "mistris come to you in post if i returne i": [0, 65535], "come to you in post if i returne i shall": [0, 65535], "to you in post if i returne i shall be": [0, 65535], "you in post if i returne i shall be post": [0, 65535], "in post if i returne i shall be post indeede": [0, 65535], "post if i returne i shall be post indeede for": [0, 65535], "if i returne i shall be post indeede for she": [0, 65535], "i returne i shall be post indeede for she will": [0, 65535], "returne i shall be post indeede for she will scoure": [0, 65535], "i shall be post indeede for she will scoure your": [0, 65535], "shall be post indeede for she will scoure your fault": [0, 65535], "be post indeede for she will scoure your fault vpon": [0, 65535], "post indeede for she will scoure your fault vpon my": [0, 65535], "indeede for she will scoure your fault vpon my pate": [0, 65535], "for she will scoure your fault vpon my pate me": [0, 65535], "she will scoure your fault vpon my pate me thinkes": [0, 65535], "will scoure your fault vpon my pate me thinkes your": [0, 65535], "scoure your fault vpon my pate me thinkes your maw": [0, 65535], "your fault vpon my pate me thinkes your maw like": [0, 65535], "fault vpon my pate me thinkes your maw like mine": [0, 65535], "vpon my pate me thinkes your maw like mine should": [0, 65535], "my pate me thinkes your maw like mine should be": [0, 65535], "pate me thinkes your maw like mine should be your": [0, 65535], "me thinkes your maw like mine should be your cooke": [0, 65535], "thinkes your maw like mine should be your cooke and": [0, 65535], "your maw like mine should be your cooke and strike": [0, 65535], "maw like mine should be your cooke and strike you": [0, 65535], "like mine should be your cooke and strike you home": [0, 65535], "mine should be your cooke and strike you home without": [0, 65535], "should be your cooke and strike you home without a": [0, 65535], "be your cooke and strike you home without a messenger": [0, 65535], "your cooke and strike you home without a messenger ant": [0, 65535], "cooke and strike you home without a messenger ant come": [0, 65535], "and strike you home without a messenger ant come dromio": [0, 65535], "strike you home without a messenger ant come dromio come": [0, 65535], "you home without a messenger ant come dromio come these": [0, 65535], "home without a messenger ant come dromio come these iests": [0, 65535], "without a messenger ant come dromio come these iests are": [0, 65535], "a messenger ant come dromio come these iests are out": [0, 65535], "messenger ant come dromio come these iests are out of": [0, 65535], "ant come dromio come these iests are out of season": [0, 65535], "come dromio come these iests are out of season reserue": [0, 65535], "dromio come these iests are out of season reserue them": [0, 65535], "come these iests are out of season reserue them till": [0, 65535], "these iests are out of season reserue them till a": [0, 65535], "iests are out of season reserue them till a merrier": [0, 65535], "are out of season reserue them till a merrier houre": [0, 65535], "out of season reserue them till a merrier houre then": [0, 65535], "of season reserue them till a merrier houre then this": [0, 65535], "season reserue them till a merrier houre then this where": [0, 65535], "reserue them till a merrier houre then this where is": [0, 65535], "them till a merrier houre then this where is the": [0, 65535], "till a merrier houre then this where is the gold": [0, 65535], "a merrier houre then this where is the gold i": [0, 65535], "merrier houre then this where is the gold i gaue": [0, 65535], "houre then this where is the gold i gaue in": [0, 65535], "then this where is the gold i gaue in charge": [0, 65535], "this where is the gold i gaue in charge to": [0, 65535], "where is the gold i gaue in charge to thee": [0, 65535], "is the gold i gaue in charge to thee e": [0, 65535], "the gold i gaue in charge to thee e dro": [0, 65535], "gold i gaue in charge to thee e dro to": [0, 65535], "i gaue in charge to thee e dro to me": [0, 65535], "gaue in charge to thee e dro to me sir": [0, 65535], "in charge to thee e dro to me sir why": [0, 65535], "charge to thee e dro to me sir why you": [0, 65535], "to thee e dro to me sir why you gaue": [0, 65535], "thee e dro to me sir why you gaue no": [0, 65535], "e dro to me sir why you gaue no gold": [0, 65535], "dro to me sir why you gaue no gold to": [0, 65535], "to me sir why you gaue no gold to me": [0, 65535], "me sir why you gaue no gold to me ant": [0, 65535], "sir why you gaue no gold to me ant come": [0, 65535], "why you gaue no gold to me ant come on": [0, 65535], "you gaue no gold to me ant come on sir": [0, 65535], "gaue no gold to me ant come on sir knaue": [0, 65535], "no gold to me ant come on sir knaue haue": [0, 65535], "gold to me ant come on sir knaue haue done": [0, 65535], "to me ant come on sir knaue haue done your": [0, 65535], "me ant come on sir knaue haue done your foolishnes": [0, 65535], "ant come on sir knaue haue done your foolishnes and": [0, 65535], "come on sir knaue haue done your foolishnes and tell": [0, 65535], "on sir knaue haue done your foolishnes and tell me": [0, 65535], "sir knaue haue done your foolishnes and tell me how": [0, 65535], "knaue haue done your foolishnes and tell me how thou": [0, 65535], "haue done your foolishnes and tell me how thou hast": [0, 65535], "done your foolishnes and tell me how thou hast dispos'd": [0, 65535], "your foolishnes and tell me how thou hast dispos'd thy": [0, 65535], "foolishnes and tell me how thou hast dispos'd thy charge": [0, 65535], "and tell me how thou hast dispos'd thy charge e": [0, 65535], "tell me how thou hast dispos'd thy charge e dro": [0, 65535], "me how thou hast dispos'd thy charge e dro my": [0, 65535], "how thou hast dispos'd thy charge e dro my charge": [0, 65535], "thou hast dispos'd thy charge e dro my charge was": [0, 65535], "hast dispos'd thy charge e dro my charge was but": [0, 65535], "dispos'd thy charge e dro my charge was but to": [0, 65535], "thy charge e dro my charge was but to fetch": [0, 65535], "charge e dro my charge was but to fetch you": [0, 65535], "e dro my charge was but to fetch you from": [0, 65535], "dro my charge was but to fetch you from the": [0, 65535], "my charge was but to fetch you from the mart": [0, 65535], "charge was but to fetch you from the mart home": [0, 65535], "was but to fetch you from the mart home to": [0, 65535], "but to fetch you from the mart home to your": [0, 65535], "to fetch you from the mart home to your house": [0, 65535], "fetch you from the mart home to your house the": [0, 65535], "you from the mart home to your house the ph\u0153nix": [0, 65535], "from the mart home to your house the ph\u0153nix sir": [0, 65535], "the mart home to your house the ph\u0153nix sir to": [0, 65535], "mart home to your house the ph\u0153nix sir to dinner": [0, 65535], "home to your house the ph\u0153nix sir to dinner my": [0, 65535], "to your house the ph\u0153nix sir to dinner my mistris": [0, 65535], "your house the ph\u0153nix sir to dinner my mistris and": [0, 65535], "house the ph\u0153nix sir to dinner my mistris and her": [0, 65535], "the ph\u0153nix sir to dinner my mistris and her sister": [0, 65535], "ph\u0153nix sir to dinner my mistris and her sister staies": [0, 65535], "sir to dinner my mistris and her sister staies for": [0, 65535], "to dinner my mistris and her sister staies for you": [0, 65535], "dinner my mistris and her sister staies for you ant": [0, 65535], "my mistris and her sister staies for you ant now": [0, 65535], "mistris and her sister staies for you ant now as": [0, 65535], "and her sister staies for you ant now as i": [0, 65535], "her sister staies for you ant now as i am": [0, 65535], "sister staies for you ant now as i am a": [0, 65535], "staies for you ant now as i am a christian": [0, 65535], "for you ant now as i am a christian answer": [0, 65535], "you ant now as i am a christian answer me": [0, 65535], "ant now as i am a christian answer me in": [0, 65535], "now as i am a christian answer me in what": [0, 65535], "as i am a christian answer me in what safe": [0, 65535], "i am a christian answer me in what safe place": [0, 65535], "am a christian answer me in what safe place you": [0, 65535], "a christian answer me in what safe place you haue": [0, 65535], "christian answer me in what safe place you haue bestow'd": [0, 65535], "answer me in what safe place you haue bestow'd my": [0, 65535], "me in what safe place you haue bestow'd my monie": [0, 65535], "in what safe place you haue bestow'd my monie or": [0, 65535], "what safe place you haue bestow'd my monie or i": [0, 65535], "safe place you haue bestow'd my monie or i shall": [0, 65535], "place you haue bestow'd my monie or i shall breake": [0, 65535], "you haue bestow'd my monie or i shall breake that": [0, 65535], "haue bestow'd my monie or i shall breake that merrie": [0, 65535], "bestow'd my monie or i shall breake that merrie sconce": [0, 65535], "my monie or i shall breake that merrie sconce of": [0, 65535], "monie or i shall breake that merrie sconce of yours": [0, 65535], "or i shall breake that merrie sconce of yours that": [0, 65535], "i shall breake that merrie sconce of yours that stands": [0, 65535], "shall breake that merrie sconce of yours that stands on": [0, 65535], "breake that merrie sconce of yours that stands on tricks": [0, 65535], "that merrie sconce of yours that stands on tricks when": [0, 65535], "merrie sconce of yours that stands on tricks when i": [0, 65535], "sconce of yours that stands on tricks when i am": [0, 65535], "of yours that stands on tricks when i am vndispos'd": [0, 65535], "yours that stands on tricks when i am vndispos'd where": [0, 65535], "that stands on tricks when i am vndispos'd where is": [0, 65535], "stands on tricks when i am vndispos'd where is the": [0, 65535], "on tricks when i am vndispos'd where is the thousand": [0, 65535], "tricks when i am vndispos'd where is the thousand markes": [0, 65535], "when i am vndispos'd where is the thousand markes thou": [0, 65535], "i am vndispos'd where is the thousand markes thou hadst": [0, 65535], "am vndispos'd where is the thousand markes thou hadst of": [0, 65535], "vndispos'd where is the thousand markes thou hadst of me": [0, 65535], "where is the thousand markes thou hadst of me e": [0, 65535], "is the thousand markes thou hadst of me e dro": [0, 65535], "the thousand markes thou hadst of me e dro i": [0, 65535], "thousand markes thou hadst of me e dro i haue": [0, 65535], "markes thou hadst of me e dro i haue some": [0, 65535], "thou hadst of me e dro i haue some markes": [0, 65535], "hadst of me e dro i haue some markes of": [0, 65535], "of me e dro i haue some markes of yours": [0, 65535], "me e dro i haue some markes of yours vpon": [0, 65535], "e dro i haue some markes of yours vpon my": [0, 65535], "dro i haue some markes of yours vpon my pate": [0, 65535], "i haue some markes of yours vpon my pate some": [0, 65535], "haue some markes of yours vpon my pate some of": [0, 65535], "some markes of yours vpon my pate some of my": [0, 65535], "markes of yours vpon my pate some of my mistris": [0, 65535], "of yours vpon my pate some of my mistris markes": [0, 65535], "yours vpon my pate some of my mistris markes vpon": [0, 65535], "vpon my pate some of my mistris markes vpon my": [0, 65535], "my pate some of my mistris markes vpon my shoulders": [0, 65535], "pate some of my mistris markes vpon my shoulders but": [0, 65535], "some of my mistris markes vpon my shoulders but not": [0, 65535], "of my mistris markes vpon my shoulders but not a": [0, 65535], "my mistris markes vpon my shoulders but not a thousand": [0, 65535], "mistris markes vpon my shoulders but not a thousand markes": [0, 65535], "markes vpon my shoulders but not a thousand markes betweene": [0, 65535], "vpon my shoulders but not a thousand markes betweene you": [0, 65535], "my shoulders but not a thousand markes betweene you both": [0, 65535], "shoulders but not a thousand markes betweene you both if": [0, 65535], "but not a thousand markes betweene you both if i": [0, 65535], "not a thousand markes betweene you both if i should": [0, 65535], "a thousand markes betweene you both if i should pay": [0, 65535], "thousand markes betweene you both if i should pay your": [0, 65535], "markes betweene you both if i should pay your worship": [0, 65535], "betweene you both if i should pay your worship those": [0, 65535], "you both if i should pay your worship those againe": [0, 65535], "both if i should pay your worship those againe perchance": [0, 65535], "if i should pay your worship those againe perchance you": [0, 65535], "i should pay your worship those againe perchance you will": [0, 65535], "should pay your worship those againe perchance you will not": [0, 65535], "pay your worship those againe perchance you will not beare": [0, 65535], "your worship those againe perchance you will not beare them": [0, 65535], "worship those againe perchance you will not beare them patiently": [0, 65535], "those againe perchance you will not beare them patiently ant": [0, 65535], "againe perchance you will not beare them patiently ant thy": [0, 65535], "perchance you will not beare them patiently ant thy mistris": [0, 65535], "you will not beare them patiently ant thy mistris markes": [0, 65535], "will not beare them patiently ant thy mistris markes what": [0, 65535], "not beare them patiently ant thy mistris markes what mistris": [0, 65535], "beare them patiently ant thy mistris markes what mistris slaue": [0, 65535], "them patiently ant thy mistris markes what mistris slaue hast": [0, 65535], "patiently ant thy mistris markes what mistris slaue hast thou": [0, 65535], "ant thy mistris markes what mistris slaue hast thou e": [0, 65535], "thy mistris markes what mistris slaue hast thou e dro": [0, 65535], "mistris markes what mistris slaue hast thou e dro your": [0, 65535], "markes what mistris slaue hast thou e dro your worships": [0, 65535], "what mistris slaue hast thou e dro your worships wife": [0, 65535], "mistris slaue hast thou e dro your worships wife my": [0, 65535], "slaue hast thou e dro your worships wife my mistris": [0, 65535], "hast thou e dro your worships wife my mistris at": [0, 65535], "thou e dro your worships wife my mistris at the": [0, 65535], "e dro your worships wife my mistris at the ph\u0153nix": [0, 65535], "dro your worships wife my mistris at the ph\u0153nix she": [0, 65535], "your worships wife my mistris at the ph\u0153nix she that": [0, 65535], "worships wife my mistris at the ph\u0153nix she that doth": [0, 65535], "wife my mistris at the ph\u0153nix she that doth fast": [0, 65535], "my mistris at the ph\u0153nix she that doth fast till": [0, 65535], "mistris at the ph\u0153nix she that doth fast till you": [0, 65535], "at the ph\u0153nix she that doth fast till you come": [0, 65535], "the ph\u0153nix she that doth fast till you come home": [0, 65535], "ph\u0153nix she that doth fast till you come home to": [0, 65535], "she that doth fast till you come home to dinner": [0, 65535], "that doth fast till you come home to dinner and": [0, 65535], "doth fast till you come home to dinner and praies": [0, 65535], "fast till you come home to dinner and praies that": [0, 65535], "till you come home to dinner and praies that you": [0, 65535], "you come home to dinner and praies that you will": [0, 65535], "come home to dinner and praies that you will hie": [0, 65535], "home to dinner and praies that you will hie you": [0, 65535], "to dinner and praies that you will hie you home": [0, 65535], "dinner and praies that you will hie you home to": [0, 65535], "and praies that you will hie you home to dinner": [0, 65535], "praies that you will hie you home to dinner ant": [0, 65535], "that you will hie you home to dinner ant what": [0, 65535], "you will hie you home to dinner ant what wilt": [0, 65535], "will hie you home to dinner ant what wilt thou": [0, 65535], "hie you home to dinner ant what wilt thou flout": [0, 65535], "you home to dinner ant what wilt thou flout me": [0, 65535], "home to dinner ant what wilt thou flout me thus": [0, 65535], "to dinner ant what wilt thou flout me thus vnto": [0, 65535], "dinner ant what wilt thou flout me thus vnto my": [0, 65535], "ant what wilt thou flout me thus vnto my face": [0, 65535], "what wilt thou flout me thus vnto my face being": [0, 65535], "wilt thou flout me thus vnto my face being forbid": [0, 65535], "thou flout me thus vnto my face being forbid there": [0, 65535], "flout me thus vnto my face being forbid there take": [0, 65535], "me thus vnto my face being forbid there take you": [0, 65535], "thus vnto my face being forbid there take you that": [0, 65535], "vnto my face being forbid there take you that sir": [0, 65535], "my face being forbid there take you that sir knaue": [0, 65535], "face being forbid there take you that sir knaue e": [0, 65535], "being forbid there take you that sir knaue e dro": [0, 65535], "forbid there take you that sir knaue e dro what": [0, 65535], "there take you that sir knaue e dro what meane": [0, 65535], "take you that sir knaue e dro what meane you": [0, 65535], "you that sir knaue e dro what meane you sir": [0, 65535], "that sir knaue e dro what meane you sir for": [0, 65535], "sir knaue e dro what meane you sir for god": [0, 65535], "knaue e dro what meane you sir for god sake": [0, 65535], "e dro what meane you sir for god sake hold": [0, 65535], "dro what meane you sir for god sake hold your": [0, 65535], "what meane you sir for god sake hold your hands": [0, 65535], "meane you sir for god sake hold your hands nay": [0, 65535], "you sir for god sake hold your hands nay and": [0, 65535], "sir for god sake hold your hands nay and you": [0, 65535], "for god sake hold your hands nay and you will": [0, 65535], "god sake hold your hands nay and you will not": [0, 65535], "sake hold your hands nay and you will not sir": [0, 65535], "hold your hands nay and you will not sir ile": [0, 65535], "your hands nay and you will not sir ile take": [0, 65535], "hands nay and you will not sir ile take my": [0, 65535], "nay and you will not sir ile take my heeles": [0, 65535], "and you will not sir ile take my heeles exeunt": [0, 65535], "you will not sir ile take my heeles exeunt dromio": [0, 65535], "will not sir ile take my heeles exeunt dromio ep": [0, 65535], "not sir ile take my heeles exeunt dromio ep ant": [0, 65535], "sir ile take my heeles exeunt dromio ep ant vpon": [0, 65535], "ile take my heeles exeunt dromio ep ant vpon my": [0, 65535], "take my heeles exeunt dromio ep ant vpon my life": [0, 65535], "my heeles exeunt dromio ep ant vpon my life by": [0, 65535], "heeles exeunt dromio ep ant vpon my life by some": [0, 65535], "exeunt dromio ep ant vpon my life by some deuise": [0, 65535], "dromio ep ant vpon my life by some deuise or": [0, 65535], "ep ant vpon my life by some deuise or other": [0, 65535], "ant vpon my life by some deuise or other the": [0, 65535], "vpon my life by some deuise or other the villaine": [0, 65535], "my life by some deuise or other the villaine is": [0, 65535], "life by some deuise or other the villaine is ore": [0, 65535], "by some deuise or other the villaine is ore wrought": [0, 65535], "some deuise or other the villaine is ore wrought of": [0, 65535], "deuise or other the villaine is ore wrought of all": [0, 65535], "or other the villaine is ore wrought of all my": [0, 65535], "other the villaine is ore wrought of all my monie": [0, 65535], "the villaine is ore wrought of all my monie they": [0, 65535], "villaine is ore wrought of all my monie they say": [0, 65535], "is ore wrought of all my monie they say this": [0, 65535], "ore wrought of all my monie they say this towne": [0, 65535], "wrought of all my monie they say this towne is": [0, 65535], "of all my monie they say this towne is full": [0, 65535], "all my monie they say this towne is full of": [0, 65535], "my monie they say this towne is full of cosenage": [0, 65535], "monie they say this towne is full of cosenage as": [0, 65535], "they say this towne is full of cosenage as nimble": [0, 65535], "say this towne is full of cosenage as nimble iuglers": [0, 65535], "this towne is full of cosenage as nimble iuglers that": [0, 65535], "towne is full of cosenage as nimble iuglers that deceiue": [0, 65535], "is full of cosenage as nimble iuglers that deceiue the": [0, 65535], "full of cosenage as nimble iuglers that deceiue the eie": [0, 65535], "of cosenage as nimble iuglers that deceiue the eie darke": [0, 65535], "cosenage as nimble iuglers that deceiue the eie darke working": [0, 65535], "as nimble iuglers that deceiue the eie darke working sorcerers": [0, 65535], "nimble iuglers that deceiue the eie darke working sorcerers that": [0, 65535], "iuglers that deceiue the eie darke working sorcerers that change": [0, 65535], "that deceiue the eie darke working sorcerers that change the": [0, 65535], "deceiue the eie darke working sorcerers that change the minde": [0, 65535], "the eie darke working sorcerers that change the minde soule": [0, 65535], "eie darke working sorcerers that change the minde soule killing": [0, 65535], "darke working sorcerers that change the minde soule killing witches": [0, 65535], "working sorcerers that change the minde soule killing witches that": [0, 65535], "sorcerers that change the minde soule killing witches that deforme": [0, 65535], "that change the minde soule killing witches that deforme the": [0, 65535], "change the minde soule killing witches that deforme the bodie": [0, 65535], "the minde soule killing witches that deforme the bodie disguised": [0, 65535], "minde soule killing witches that deforme the bodie disguised cheaters": [0, 65535], "soule killing witches that deforme the bodie disguised cheaters prating": [0, 65535], "killing witches that deforme the bodie disguised cheaters prating mountebankes": [0, 65535], "witches that deforme the bodie disguised cheaters prating mountebankes and": [0, 65535], "that deforme the bodie disguised cheaters prating mountebankes and manie": [0, 65535], "deforme the bodie disguised cheaters prating mountebankes and manie such": [0, 65535], "the bodie disguised cheaters prating mountebankes and manie such like": [0, 65535], "bodie disguised cheaters prating mountebankes and manie such like liberties": [0, 65535], "disguised cheaters prating mountebankes and manie such like liberties of": [0, 65535], "cheaters prating mountebankes and manie such like liberties of sinne": [0, 65535], "prating mountebankes and manie such like liberties of sinne if": [0, 65535], "mountebankes and manie such like liberties of sinne if it": [0, 65535], "and manie such like liberties of sinne if it proue": [0, 65535], "manie such like liberties of sinne if it proue so": [0, 65535], "such like liberties of sinne if it proue so i": [0, 65535], "like liberties of sinne if it proue so i will": [0, 65535], "liberties of sinne if it proue so i will be": [0, 65535], "of sinne if it proue so i will be gone": [0, 65535], "sinne if it proue so i will be gone the": [0, 65535], "if it proue so i will be gone the sooner": [0, 65535], "it proue so i will be gone the sooner ile": [0, 65535], "proue so i will be gone the sooner ile to": [0, 65535], "so i will be gone the sooner ile to the": [0, 65535], "i will be gone the sooner ile to the centaur": [0, 65535], "will be gone the sooner ile to the centaur to": [0, 65535], "be gone the sooner ile to the centaur to goe": [0, 65535], "gone the sooner ile to the centaur to goe seeke": [0, 65535], "the sooner ile to the centaur to goe seeke this": [0, 65535], "sooner ile to the centaur to goe seeke this slaue": [0, 65535], "ile to the centaur to goe seeke this slaue i": [0, 65535], "to the centaur to goe seeke this slaue i greatly": [0, 65535], "the centaur to goe seeke this slaue i greatly feare": [0, 65535], "centaur to goe seeke this slaue i greatly feare my": [0, 65535], "to goe seeke this slaue i greatly feare my monie": [0, 65535], "goe seeke this slaue i greatly feare my monie is": [0, 65535], "seeke this slaue i greatly feare my monie is not": [0, 65535], "this slaue i greatly feare my monie is not safe": [0, 65535], "quartus": [0, 65535], "sc\u00e6na": [0, 65535], "pentecost": [0, 65535], "persia": [0, 65535], "voyage": [0, 65535], "attach": [0, 65535], "growing": [0, 65535], "pleaseth": [0, 65535], "discharge": [0, 65535], "bond": [0, 65535], "ephes": [0, 65535], "courtizans": [0, 65535], "offi": [0, 65535], "goldsmiths": [0, 65535], "ropes": [0, 65535], "locking": [0, 65535], "rope": [0, 65535], "pound": [0, 65535], "yeare": [0, 65535], "holpe": [0, 65535], "trusts": [0, 65535], "promised": [0, 65535], "belike": [0, 65535], "chain'd": [0, 65535], "sauing": [0, 65535], "weighs": [0, 65535], "vtmost": [0, 65535], "charect": [0, 65535], "finenesse": [0, 65535], "chargefull": [0, 65535], "odde": [0, 65535], "debted": [0, 65535], "discharg'd": [0, 65535], "furnish'd": [0, 65535], "disburse": [0, 65535], "tide": [0, 65535], "dalliance": [0, 65535], "breach": [0, 65535], "promise": [0, 65535], "chid": [0, 65535], "shrew": [0, 65535], "brawle": [0, 65535], "steales": [0, 65535], "dispatch": [0, 65535], "importunes": [0, 65535], "token": [0, 65535], "where's": [0, 65535], "brooke": [0, 65535], "whe'r": [0, 65535], "you'l": [0, 65535], "denying": [0, 65535], "consider": [0, 65535], "suite": [0, 65535], "touches": [0, 65535], "fee": [0, 65535], "apparantly": [0, 65535], "offic": [0, 65535], "sirrah": [0, 65535], "mettall": [0, 65535], "notorious": [0, 65535], "sira": [0, 65535], "owner": [0, 65535], "fraughtage": [0, 65535], "conuei'd": [0, 65535], "oyle": [0, 65535], "balsamum": [0, 65535], "aqua": [0, 65535], "vit\u00e6": [0, 65535], "trim": [0, 65535], "nought": [0, 65535], "peeuish": [0, 65535], "hier": [0, 65535], "waftage": [0, 65535], "drunken": [0, 65535], "purpose": [0, 65535], "debate": [0, 65535], "heede": [0, 65535], "deske": [0, 65535], "couer'd": [0, 65535], "o're": [0, 65535], "turkish": [0, 65535], "tapistrie": [0, 65535], "dowsabell": [0, 65535], "bigge": [0, 65535], "fulfill": [0, 65535], "tempt": [0, 65535], "might'st": [0, 65535], "perceiue": [0, 65535], "austeerely": [0, 65535], "merrily": [0, 65535], "obseruation": [0, 65535], "mad'st": [0, 65535], "meteors": [0, 65535], "tilting": [0, 65535], "deni'de": [0, 65535], "begg'd": [0, 65535], "perswasion": [0, 65535], "praise": [0, 65535], "did'st": [0, 65535], "crooked": [0, 65535], "sere": [0, 65535], "worse": [0, 65535], "bodied": [0, 65535], "shapelesse": [0, 65535], "vngentle": [0, 65535], "blunt": [0, 65535], "stigmaticall": [0, 65535], "wail'd": [0, 65535], "herein": [0, 65535], "nest": [0, 65535], "lapwing": [0, 65535], "tartar": [0, 65535], "limbo": [0, 65535], "diuell": [0, 65535], "euerlasting": [0, 65535], "garment": [0, 65535], "button'd": [0, 65535], "feind": [0, 65535], "pittilesse": [0, 65535], "ruffe": [0, 65535], "wolfe": [0, 65535], "buffe": [0, 65535], "clapper": [0, 65535], "countermads": [0, 65535], "passages": [0, 65535], "allies": [0, 65535], "creekes": [0, 65535], "narrow": [0, 65535], "lands": [0, 65535], "hound": [0, 65535], "runs": [0, 65535], "counter": [0, 65535], "draws": [0, 65535], "drifoot": [0, 65535], "iudgment": [0, 65535], "carries": [0, 65535], "hel": [0, 65535], "arested": [0, 65535], "redemption": [0, 65535], "debt": [0, 65535], "band": [0, 65535], "adria": [0, 65535], "strikes": [0, 65535], "serieant": [0, 65535], "turnes": [0, 65535], "fondly": [0, 65535], "do'st": [0, 65535], "bankerout": [0, 65535], "owes": [0, 65535], "theefe": [0, 65535], "theft": [0, 65535], "imediately": [0, 65535], "prest": [0, 65535], "salute": [0, 65535], "inuite": [0, 65535], "thankes": [0, 65535], "kindnesses": [0, 65535], "commodities": [0, 65535], "tailor": [0, 65535], "cal'd": [0, 65535], "show'd": [0, 65535], "silkes": [0, 65535], "therewithall": [0, 65535], "imaginarie": [0, 65535], "wiles": [0, 65535], "lapland": [0, 65535], "adam": [0, 65535], "apparel'd": [0, 65535], "paradise": [0, 65535], "keepes": [0, 65535], "calues": [0, 65535], "kil'd": [0, 65535], "prodigall": [0, 65535], "forsake": [0, 65535], "base": [0, 65535], "viole": [0, 65535], "sob": [0, 65535], "rests": [0, 65535], "pittie": [0, 65535], "decaied": [0, 65535], "suites": [0, 65535], "durance": [0, 65535], "sets": [0, 65535], "exploits": [0, 65535], "mace": [0, 65535], "moris": [0, 65535], "pike": [0, 65535], "mean'st": [0, 65535], "brings": [0, 65535], "saies": [0, 65535], "foolerie": [0, 65535], "puts": [0, 65535], "expedition": [0, 65535], "hoy": [0, 65535], "delay": [0, 65535], "angels": [0, 65535], "distract": [0, 65535], "illusions": [0, 65535], "curtizan": [0, 65535], "smith": [0, 65535], "sathan": [0, 65535], "auoide": [0, 65535], "diuels": [0, 65535], "dam": [0, 65535], "habit": [0, 65535], "ergo": [0, 65535], "maruailous": [0, 65535], "expect": [0, 65535], "spoon": [0, 65535], "bespeake": [0, 65535], "spoone": [0, 65535], "eate": [0, 65535], "auoid": [0, 65535], "fiend": [0, 65535], "tel'st": [0, 65535], "supping": [0, 65535], "sorceresse": [0, 65535], "parings": [0, 65535], "naile": [0, 65535], "rush": [0, 65535], "nut": [0, 65535], "cherrie": [0, 65535], "couetous": [0, 65535], "fright": [0, 65535], "cheate": [0, 65535], "auant": [0, 65535], "pea": [0, 65535], "cocke": [0, 65535], "demeane": [0, 65535], "fortie": [0, 65535], "tale": [0, 65535], "lunaticke": [0, 65535], "rush'd": [0, 65535], "fittest": [0, 65535], "choose": [0, 65535], "iailor": [0, 65535], "wayward": [0, 65535], "lightly": [0, 65535], "attach'd": [0, 65535], "harshly": [0, 65535], "re": [0, 65535], "turn'd": [0, 65535], "perswade": [0, 65535], "whoreson": [0, 65535], "senselesse": [0, 65535], "sensible": [0, 65535], "prooue": [0, 65535], "serued": [0, 65535], "heates": [0, 65535], "cooles": [0, 65535], "wak'd": [0, 65535], "rais'd": [0, 65535], "driuen": [0, 65535], "welcom'd": [0, 65535], "begger": [0, 65535], "woont": [0, 65535], "brat": [0, 65535], "lam'd": [0, 65535], "begge": [0, 65535], "courtizan": [0, 65535], "schoolemaster": [0, 65535], "respice": [0, 65535], "finem": [0, 65535], "respect": [0, 65535], "prophesie": [0, 65535], "parrat": [0, 65535], "inciuility": [0, 65535], "confirmes": [0, 65535], "establish": [0, 65535], "demand": [0, 65535], "fiery": [0, 65535], "trembles": [0, 65535], "extasie": [0, 65535], "holie": [0, 65535], "praiers": [0, 65535], "darknesse": [0, 65535], "saints": [0, 65535], "doting": [0, 65535], "wizard": [0, 65535], "wer't": [0, 65535], "distressed": [0, 65535], "customers": [0, 65535], "companion": [0, 65535], "saffron": [0, 65535], "reuell": [0, 65535], "guiltie": [0, 65535], "remain'd": [0, 65535], "slanders": [0, 65535], "sooth": [0, 65535], "perdie": [0, 65535], "reuile": [0, 65535], "sans": [0, 65535], "fable": [0, 65535], "reuil'd": [0, 65535], "maide": [0, 65535], "raile": [0, 65535], "taunt": [0, 65535], "certis": [0, 65535], "vestall": [0, 65535], "scorn'd": [0, 65535], "veritie": [0, 65535], "bones": [0, 65535], "is't": [0, 65535], "contraries": [0, 65535], "finds": [0, 65535], "yeelding": [0, 65535], "humors": [0, 65535], "frensie": [0, 65535], "subborn'd": [0, 65535], "surely": [0, 65535], "ragge": [0, 65535], "wentst": [0, 65535], "deliuer'd": [0, 65535], "maker": [0, 65535], "laide": [0, 65535], "roome": [0, 65535], "locke": [0, 65535], "bagge": [0, 65535], "dissembling": [0, 65535], "villain": [0, 65535], "speak'st": [0, 65535], "confederate": [0, 65535], "damned": [0, 65535], "loathsome": [0, 65535], "abiect": [0, 65535], "nailes": [0, 65535], "shamefull": [0, 65535], "foure": [0, 65535], "striues": [0, 65535], "aye": [0, 65535], "wan": [0, 65535], "looks": [0, 65535], "murther": [0, 65535], "franticke": [0, 65535], "requir'd": [0, 65535], "forthwith": [0, 65535], "creditor": [0, 65535], "conuey'd": [0, 65535], "vnhappy": [0, 65535], "strumpet": [0, 65535], "entred": [0, 65535], "idlely": [0, 65535], "chain": [0, 65535], "heereof": [0, 65535], "rapier": [0, 65535], "sirac": [0, 65535], "mercy": [0, 65535], "naked": [0, 65535], "they'l": [0, 65535], "frighted": [0, 65535], "affraid": [0, 65535], "nation": [0, 65535], "mountaine": [0, 65535], "mariage": [0, 65535], "actus quartus": [0, 65535], "quartus sc\u00e6na": [0, 65535], "sc\u00e6na prima": [0, 65535], "a merchant": [0, 65535], "merchant goldsmith": [0, 65535], "and an": [0, 65535], "officer mar": [0, 65535], "mar you": [0, 65535], "know since": [0, 65535], "since pentecost": [0, 65535], "pentecost the": [0, 65535], "sum is": [0, 65535], "is due": [0, 65535], "due and": [0, 65535], "and since": [0, 65535], "much importun'd": [0, 65535], "importun'd you": [0, 65535], "you nor": [0, 65535], "nor now": [0, 65535], "am bound": [0, 65535], "to persia": [0, 65535], "persia and": [0, 65535], "and want": [0, 65535], "want gilders": [0, 65535], "gilders for": [0, 65535], "my voyage": [0, 65535], "voyage therefore": [0, 65535], "therefore make": [0, 65535], "make present": [0, 65535], "present satisfaction": [0, 65535], "satisfaction or": [0, 65535], "or ile": [0, 65535], "ile attach": [0, 65535], "attach you": [0, 65535], "this officer": [0, 65535], "officer gold": [0, 65535], "gold euen": [0, 65535], "euen iust": [0, 65535], "iust the": [0, 65535], "do owe": [0, 65535], "owe to": [0, 65535], "you is": [0, 65535], "is growing": [0, 65535], "growing to": [0, 65535], "by antipholus": [0, 65535], "instant that": [0, 65535], "met with": [0, 65535], "you he": [0, 65535], "chaine at": [0, 65535], "clocke i": [0, 65535], "shall receiue": [0, 65535], "same pleaseth": [0, 65535], "pleaseth you": [0, 65535], "his house": [0, 65535], "house i": [0, 65535], "will discharge": [0, 65535], "discharge my": [0, 65535], "my bond": [0, 65535], "bond and": [0, 65535], "and thanke": [0, 65535], "you too": [0, 65535], "too enter": [0, 65535], "antipholus ephes": [0, 65535], "ephes dromio": [0, 65535], "dromio from": [0, 65535], "the courtizans": [0, 65535], "courtizans offi": [0, 65535], "offi that": [0, 65535], "that labour": [0, 65535], "labour may": [0, 65535], "you saue": [0, 65535], "saue see": [0, 65535], "comes ant": [0, 65535], "ant while": [0, 65535], "while i": [0, 65535], "the goldsmiths": [0, 65535], "goldsmiths house": [0, 65535], "house go": [0, 65535], "go thou": [0, 65535], "thou and": [0, 65535], "and buy": [0, 65535], "buy a": [0, 65535], "a ropes": [0, 65535], "ropes end": [0, 65535], "end that": [0, 65535], "bestow among": [0, 65535], "among my": [0, 65535], "their confederates": [0, 65535], "confederates for": [0, 65535], "for locking": [0, 65535], "locking me": [0, 65535], "my doores": [0, 65535], "doores by": [0, 65535], "by day": [0, 65535], "soft i": [0, 65535], "goldsmith get": [0, 65535], "thee gone": [0, 65535], "gone buy": [0, 65535], "buy thou": [0, 65535], "thou a": [0, 65535], "a rope": [0, 65535], "rope and": [0, 65535], "and bring": [0, 65535], "i buy": [0, 65535], "thousand pound": [0, 65535], "pound a": [0, 65535], "a yeare": [0, 65535], "yeare i": [0, 65535], "rope exit": [0, 65535], "eph ant": [0, 65535], "is well": [0, 65535], "well holpe": [0, 65535], "holpe vp": [0, 65535], "vp that": [0, 65535], "that trusts": [0, 65535], "trusts to": [0, 65535], "i promised": [0, 65535], "promised your": [0, 65535], "your presence": [0, 65535], "chaine but": [0, 65535], "neither chaine": [0, 65535], "nor goldsmith": [0, 65535], "goldsmith came": [0, 65535], "me belike": [0, 65535], "belike you": [0, 65535], "thought our": [0, 65535], "our loue": [0, 65535], "loue would": [0, 65535], "would last": [0, 65535], "last too": [0, 65535], "too long": [0, 65535], "long if": [0, 65535], "were chain'd": [0, 65535], "chain'd together": [0, 65535], "therefore came": [0, 65535], "came not": [0, 65535], "not gold": [0, 65535], "gold sauing": [0, 65535], "sauing your": [0, 65535], "humor here's": [0, 65535], "the note": [0, 65535], "note how": [0, 65535], "much your": [0, 65535], "your chaine": [0, 65535], "chaine weighs": [0, 65535], "weighs to": [0, 65535], "the vtmost": [0, 65535], "vtmost charect": [0, 65535], "charect the": [0, 65535], "the finenesse": [0, 65535], "finenesse of": [0, 65535], "and chargefull": [0, 65535], "chargefull fashion": [0, 65535], "fashion which": [0, 65535], "which doth": [0, 65535], "doth amount": [0, 65535], "amount to": [0, 65535], "to three": [0, 65535], "three odde": [0, 65535], "odde duckets": [0, 65535], "duckets more": [0, 65535], "i stand": [0, 65535], "stand debted": [0, 65535], "debted to": [0, 65535], "this gentleman": [0, 65535], "gentleman i": [0, 65535], "him presently": [0, 65535], "presently discharg'd": [0, 65535], "discharg'd for": [0, 65535], "is bound": [0, 65535], "and stayes": [0, 65535], "stayes but": [0, 65535], "not furnish'd": [0, 65535], "furnish'd with": [0, 65535], "present monie": [0, 65535], "monie besides": [0, 65535], "some businesse": [0, 65535], "businesse in": [0, 65535], "towne good": [0, 65535], "signior take": [0, 65535], "stranger to": [0, 65535], "chaine and": [0, 65535], "bid my": [0, 65535], "wife disburse": [0, 65535], "disburse the": [0, 65535], "summe on": [0, 65535], "the receit": [0, 65535], "receit thereof": [0, 65535], "thereof perchance": [0, 65535], "perchance i": [0, 65535], "be there": [0, 65535], "there as": [0, 65535], "as soone": [0, 65535], "soone as": [0, 65535], "you gold": [0, 65535], "gold then": [0, 65535], "bring the": [0, 65535], "chaine to": [0, 65535], "her your": [0, 65535], "selfe anti": [0, 65535], "anti no": [0, 65535], "no beare": [0, 65535], "you least": [0, 65535], "not time": [0, 65535], "time enough": [0, 65535], "enough gold": [0, 65535], "gold well": [0, 65535], "about you": [0, 65535], "hope you": [0, 65535], "haue or": [0, 65535], "else you": [0, 65535], "may returne": [0, 65535], "returne without": [0, 65535], "without your": [0, 65535], "your money": [0, 65535], "money gold": [0, 65535], "gold nay": [0, 65535], "nay come": [0, 65535], "sir giue": [0, 65535], "chaine both": [0, 65535], "both winde": [0, 65535], "and tide": [0, 65535], "tide stayes": [0, 65535], "stayes for": [0, 65535], "gentleman and": [0, 65535], "i too": [0, 65535], "too blame": [0, 65535], "blame haue": [0, 65535], "haue held": [0, 65535], "held him": [0, 65535], "heere too": [0, 65535], "lord you": [0, 65535], "vse this": [0, 65535], "this dalliance": [0, 65535], "dalliance to": [0, 65535], "to excuse": [0, 65535], "excuse your": [0, 65535], "your breach": [0, 65535], "breach of": [0, 65535], "of promise": [0, 65535], "promise to": [0, 65535], "porpentine i": [0, 65535], "should haue": [0, 65535], "haue chid": [0, 65535], "chid you": [0, 65535], "for not": [0, 65535], "not bringing": [0, 65535], "bringing it": [0, 65535], "but like": [0, 65535], "a shrew": [0, 65535], "shrew you": [0, 65535], "first begin": [0, 65535], "to brawle": [0, 65535], "brawle mar": [0, 65535], "mar the": [0, 65535], "the houre": [0, 65535], "houre steales": [0, 65535], "steales on": [0, 65535], "on i": [0, 65535], "sir dispatch": [0, 65535], "dispatch gold": [0, 65535], "heare how": [0, 65535], "how he": [0, 65535], "he importunes": [0, 65535], "importunes me": [0, 65535], "chaine ant": [0, 65535], "why giue": [0, 65535], "your mony": [0, 65535], "mony gold": [0, 65535], "gold come": [0, 65535], "come you": [0, 65535], "gaue it": [0, 65535], "you euen": [0, 65535], "now either": [0, 65535], "either send": [0, 65535], "send the": [0, 65535], "chaine or": [0, 65535], "or send": [0, 65535], "send me": [0, 65535], "some token": [0, 65535], "token ant": [0, 65535], "ant fie": [0, 65535], "fie now": [0, 65535], "you run": [0, 65535], "run this": [0, 65535], "this humor": [0, 65535], "humor out": [0, 65535], "of breath": [0, 65535], "breath come": [0, 65535], "come where's": [0, 65535], "where's the": [0, 65535], "you let": [0, 65535], "mar my": [0, 65535], "my businesse": [0, 65535], "businesse cannot": [0, 65535], "cannot brooke": [0, 65535], "brooke this": [0, 65535], "dalliance good": [0, 65535], "sir say": [0, 65535], "say whe'r": [0, 65535], "whe'r you'l": [0, 65535], "you'l answer": [0, 65535], "me or": [0, 65535], "no if": [0, 65535], "if not": [0, 65535], "not ile": [0, 65535], "ile leaue": [0, 65535], "officer ant": [0, 65535], "i answer": [0, 65535], "answer you": [0, 65535], "what should": [0, 65535], "should i": [0, 65535], "gold the": [0, 65535], "you owe": [0, 65535], "owe me": [0, 65535], "owe you": [0, 65535], "you none": [0, 65535], "none till": [0, 65535], "i receiue": [0, 65535], "chaine gold": [0, 65535], "you halfe": [0, 65535], "an houre": [0, 65535], "houre since": [0, 65535], "since ant": [0, 65535], "ant you": [0, 65535], "me none": [0, 65535], "none you": [0, 65535], "you wrong": [0, 65535], "wrong mee": [0, 65535], "mee much": [0, 65535], "much to": [0, 65535], "so gold": [0, 65535], "wrong me": [0, 65535], "me more": [0, 65535], "more sir": [0, 65535], "in denying": [0, 65535], "denying it": [0, 65535], "it consider": [0, 65535], "consider how": [0, 65535], "how it": [0, 65535], "it stands": [0, 65535], "stands vpon": [0, 65535], "my credit": [0, 65535], "credit mar": [0, 65535], "mar well": [0, 65535], "well officer": [0, 65535], "officer arrest": [0, 65535], "arrest him": [0, 65535], "him at": [0, 65535], "at my": [0, 65535], "my suite": [0, 65535], "suite offi": [0, 65535], "offi i": [0, 65535], "and charge": [0, 65535], "charge you": [0, 65535], "dukes name": [0, 65535], "name to": [0, 65535], "obey me": [0, 65535], "gold this": [0, 65535], "this touches": [0, 65535], "touches me": [0, 65535], "in reputation": [0, 65535], "reputation either": [0, 65535], "either consent": [0, 65535], "consent to": [0, 65535], "pay this": [0, 65535], "this sum": [0, 65535], "sum for": [0, 65535], "i attach": [0, 65535], "ant consent": [0, 65535], "pay thee": [0, 65535], "thee that": [0, 65535], "neuer had": [0, 65535], "had arrest": [0, 65535], "me foolish": [0, 65535], "foolish fellow": [0, 65535], "fellow if": [0, 65535], "dar'st gold": [0, 65535], "gold heere": [0, 65535], "thy fee": [0, 65535], "fee arrest": [0, 65535], "him officer": [0, 65535], "not spare": [0, 65535], "spare my": [0, 65535], "this case": [0, 65535], "case if": [0, 65535], "he should": [0, 65535], "should scorne": [0, 65535], "scorne me": [0, 65535], "so apparantly": [0, 65535], "apparantly offic": [0, 65535], "offic i": [0, 65535], "do arrest": [0, 65535], "arrest you": [0, 65535], "heare the": [0, 65535], "the suite": [0, 65535], "suite ant": [0, 65535], "do obey": [0, 65535], "obey thee": [0, 65535], "thee till": [0, 65535], "i giue": [0, 65535], "giue thee": [0, 65535], "thee baile": [0, 65535], "baile but": [0, 65535], "but sirrah": [0, 65535], "sirrah you": [0, 65535], "you shall": [0, 65535], "shall buy": [0, 65535], "buy this": [0, 65535], "this sport": [0, 65535], "sport as": [0, 65535], "as deere": [0, 65535], "deere as": [0, 65535], "as all": [0, 65535], "the mettall": [0, 65535], "mettall in": [0, 65535], "shop will": [0, 65535], "answer gold": [0, 65535], "gold sir": [0, 65535], "sir sir": [0, 65535], "haue law": [0, 65535], "law in": [0, 65535], "ephesus to": [0, 65535], "your notorious": [0, 65535], "notorious shame": [0, 65535], "shame i": [0, 65535], "i doubt": [0, 65535], "doubt it": [0, 65535], "not enter": [0, 65535], "dromio sira": [0, 65535], "sira from": [0, 65535], "bay dro": [0, 65535], "master there's": [0, 65535], "a barke": [0, 65535], "barke of": [0, 65535], "epidamium that": [0, 65535], "that staies": [0, 65535], "staies but": [0, 65535], "till her": [0, 65535], "her owner": [0, 65535], "owner comes": [0, 65535], "comes aboord": [0, 65535], "aboord and": [0, 65535], "then sir": [0, 65535], "sir she": [0, 65535], "beares away": [0, 65535], "away our": [0, 65535], "our fraughtage": [0, 65535], "fraughtage sir": [0, 65535], "haue conuei'd": [0, 65535], "conuei'd aboord": [0, 65535], "haue bought": [0, 65535], "bought the": [0, 65535], "the oyle": [0, 65535], "oyle the": [0, 65535], "the balsamum": [0, 65535], "balsamum and": [0, 65535], "and aqua": [0, 65535], "aqua vit\u00e6": [0, 65535], "vit\u00e6 the": [0, 65535], "ship is": [0, 65535], "her trim": [0, 65535], "trim the": [0, 65535], "the merrie": [0, 65535], "merrie winde": [0, 65535], "winde blowes": [0, 65535], "blowes faire": [0, 65535], "faire from": [0, 65535], "from land": [0, 65535], "land they": [0, 65535], "they stay": [0, 65535], "stay for": [0, 65535], "for nought": [0, 65535], "nought at": [0, 65535], "their owner": [0, 65535], "owner master": [0, 65535], "selfe an": [0, 65535], "an how": [0, 65535], "now a": [0, 65535], "a madman": [0, 65535], "madman why": [0, 65535], "thou peeuish": [0, 65535], "peeuish sheep": [0, 65535], "sheep what": [0, 65535], "what ship": [0, 65535], "ship of": [0, 65535], "epidamium staies": [0, 65535], "a ship": [0, 65535], "ship you": [0, 65535], "too to": [0, 65535], "to hier": [0, 65535], "hier waftage": [0, 65535], "waftage ant": [0, 65535], "thou drunken": [0, 65535], "drunken slaue": [0, 65535], "sent thee": [0, 65535], "and told": [0, 65535], "told thee": [0, 65535], "to what": [0, 65535], "what purpose": [0, 65535], "purpose and": [0, 65535], "what end": [0, 65535], "end s": [0, 65535], "end as": [0, 65535], "soone you": [0, 65535], "bay sir": [0, 65535], "barke ant": [0, 65535], "will debate": [0, 65535], "debate this": [0, 65535], "this matter": [0, 65535], "matter at": [0, 65535], "at more": [0, 65535], "more leisure": [0, 65535], "leisure and": [0, 65535], "and teach": [0, 65535], "teach your": [0, 65535], "your eares": [0, 65535], "eares to": [0, 65535], "to list": [0, 65535], "list me": [0, 65535], "more heede": [0, 65535], "heede to": [0, 65535], "to adriana": [0, 65535], "adriana villaine": [0, 65535], "villaine hie": [0, 65535], "thee straight": [0, 65535], "straight giue": [0, 65535], "giue her": [0, 65535], "her this": [0, 65535], "this key": [0, 65535], "the deske": [0, 65535], "deske that's": [0, 65535], "that's couer'd": [0, 65535], "couer'd o're": [0, 65535], "o're with": [0, 65535], "with turkish": [0, 65535], "turkish tapistrie": [0, 65535], "tapistrie there": [0, 65535], "a purse": [0, 65535], "duckets let": [0, 65535], "her send": [0, 65535], "send it": [0, 65535], "it tell": [0, 65535], "am arrested": [0, 65535], "arrested in": [0, 65535], "streete and": [0, 65535], "shall baile": [0, 65535], "baile me": [0, 65535], "me hie": [0, 65535], "thee slaue": [0, 65535], "slaue be": [0, 65535], "gone on": [0, 65535], "on officer": [0, 65535], "to prison": [0, 65535], "prison till": [0, 65535], "it come": [0, 65535], "come exeunt": [0, 65535], "exeunt s": [0, 65535], "adriana that": [0, 65535], "is where": [0, 65535], "we din'd": [0, 65535], "din'd where": [0, 65535], "where dowsabell": [0, 65535], "dowsabell did": [0, 65535], "did claime": [0, 65535], "claime me": [0, 65535], "her husband": [0, 65535], "husband she": [0, 65535], "too bigge": [0, 65535], "bigge i": [0, 65535], "to compasse": [0, 65535], "compasse thither": [0, 65535], "must although": [0, 65535], "although against": [0, 65535], "my will": [0, 65535], "for seruants": [0, 65535], "seruants must": [0, 65535], "must their": [0, 65535], "their masters": [0, 65535], "masters mindes": [0, 65535], "mindes fulfill": [0, 65535], "fulfill exit": [0, 65535], "luciana adr": [0, 65535], "adr ah": [0, 65535], "ah luciana": [0, 65535], "luciana did": [0, 65535], "he tempt": [0, 65535], "tempt thee": [0, 65535], "thee so": [0, 65535], "so might'st": [0, 65535], "might'st thou": [0, 65535], "thou perceiue": [0, 65535], "perceiue austeerely": [0, 65535], "austeerely in": [0, 65535], "eie that": [0, 65535], "did plead": [0, 65535], "plead in": [0, 65535], "earnest yea": [0, 65535], "yea or": [0, 65535], "no look'd": [0, 65535], "look'd he": [0, 65535], "he or": [0, 65535], "or red": [0, 65535], "red or": [0, 65535], "or pale": [0, 65535], "pale or": [0, 65535], "or sad": [0, 65535], "sad or": [0, 65535], "or merrily": [0, 65535], "merrily what": [0, 65535], "what obseruation": [0, 65535], "obseruation mad'st": [0, 65535], "mad'st thou": [0, 65535], "thou in": [0, 65535], "case oh": [0, 65535], "oh his": [0, 65535], "his hearts": [0, 65535], "hearts meteors": [0, 65535], "meteors tilting": [0, 65535], "tilting in": [0, 65535], "face luc": [0, 65535], "luc first": [0, 65535], "first he": [0, 65535], "he deni'de": [0, 65535], "deni'de you": [0, 65535], "him no": [0, 65535], "no right": [0, 65535], "right adr": [0, 65535], "adr he": [0, 65535], "he meant": [0, 65535], "meant he": [0, 65535], "did me": [0, 65535], "more my": [0, 65535], "my spight": [0, 65535], "spight luc": [0, 65535], "luc then": [0, 65535], "then swore": [0, 65535], "swore he": [0, 65535], "stranger heere": [0, 65535], "heere adr": [0, 65535], "and true": [0, 65535], "true he": [0, 65535], "he swore": [0, 65535], "swore though": [0, 65535], "though yet": [0, 65535], "yet forsworne": [0, 65535], "forsworne hee": [0, 65535], "hee were": [0, 65535], "were luc": [0, 65535], "then pleaded": [0, 65535], "pleaded i": [0, 65535], "you adr": [0, 65535], "what said": [0, 65535], "he luc": [0, 65535], "luc that": [0, 65535], "that loue": [0, 65535], "loue i": [0, 65535], "i begg'd": [0, 65535], "begg'd for": [0, 65535], "he begg'd": [0, 65535], "begg'd of": [0, 65535], "adr with": [0, 65535], "with what": [0, 65535], "what perswasion": [0, 65535], "perswasion did": [0, 65535], "tempt thy": [0, 65535], "loue luc": [0, 65535], "luc with": [0, 65535], "with words": [0, 65535], "words that": [0, 65535], "honest suit": [0, 65535], "suit might": [0, 65535], "might moue": [0, 65535], "moue first": [0, 65535], "did praise": [0, 65535], "praise my": [0, 65535], "beautie then": [0, 65535], "then my": [0, 65535], "my speech": [0, 65535], "speech adr": [0, 65535], "adr did'st": [0, 65535], "did'st speake": [0, 65535], "speake him": [0, 65535], "him faire": [0, 65535], "faire luc": [0, 65535], "luc haue": [0, 65535], "patience i": [0, 65535], "beseech adr": [0, 65535], "cannot nor": [0, 65535], "not hold": [0, 65535], "hold me": [0, 65535], "me still": [0, 65535], "still my": [0, 65535], "tongue though": [0, 65535], "heart shall": [0, 65535], "haue his": [0, 65535], "his will": [0, 65535], "is deformed": [0, 65535], "deformed crooked": [0, 65535], "crooked old": [0, 65535], "and sere": [0, 65535], "sere ill": [0, 65535], "ill fac'd": [0, 65535], "fac'd worse": [0, 65535], "worse bodied": [0, 65535], "bodied shapelesse": [0, 65535], "shapelesse euery": [0, 65535], "euery where": [0, 65535], "where vicious": [0, 65535], "vicious vngentle": [0, 65535], "vngentle foolish": [0, 65535], "foolish blunt": [0, 65535], "blunt vnkinde": [0, 65535], "vnkinde stigmaticall": [0, 65535], "stigmaticall in": [0, 65535], "in making": [0, 65535], "making worse": [0, 65535], "worse in": [0, 65535], "minde luc": [0, 65535], "luc who": [0, 65535], "who would": [0, 65535], "be iealous": [0, 65535], "iealous then": [0, 65535], "then of": [0, 65535], "one no": [0, 65535], "no euill": [0, 65535], "euill lost": [0, 65535], "lost is": [0, 65535], "is wail'd": [0, 65535], "wail'd when": [0, 65535], "is gone": [0, 65535], "gone adr": [0, 65535], "ah but": [0, 65535], "thinke him": [0, 65535], "him better": [0, 65535], "yet would": [0, 65535], "would herein": [0, 65535], "herein others": [0, 65535], "others eies": [0, 65535], "eies were": [0, 65535], "were worse": [0, 65535], "worse farre": [0, 65535], "farre from": [0, 65535], "her nest": [0, 65535], "nest the": [0, 65535], "the lapwing": [0, 65535], "lapwing cries": [0, 65535], "cries away": [0, 65535], "away my": [0, 65535], "heart praies": [0, 65535], "praies for": [0, 65535], "him though": [0, 65535], "tongue doe": [0, 65535], "doe curse": [0, 65535], "curse enter": [0, 65535], "enter s": [0, 65535], "dromio dro": [0, 65535], "dro here": [0, 65535], "here goe": [0, 65535], "goe the": [0, 65535], "deske the": [0, 65535], "the purse": [0, 65535], "purse sweet": [0, 65535], "sweet now": [0, 65535], "haste luc": [0, 65535], "luc how": [0, 65535], "how hast": [0, 65535], "thou lost": [0, 65535], "lost thy": [0, 65535], "thy breath": [0, 65535], "breath s": [0, 65535], "by running": [0, 65535], "running fast": [0, 65535], "fast adr": [0, 65535], "adr where": [0, 65535], "he well": [0, 65535], "well s": [0, 65535], "no he's": [0, 65535], "he's in": [0, 65535], "in tartar": [0, 65535], "tartar limbo": [0, 65535], "limbo worse": [0, 65535], "worse then": [0, 65535], "then hell": [0, 65535], "hell a": [0, 65535], "a diuell": [0, 65535], "diuell in": [0, 65535], "an euerlasting": [0, 65535], "euerlasting garment": [0, 65535], "garment hath": [0, 65535], "hath him": [0, 65535], "him on": [0, 65535], "on whose": [0, 65535], "whose hard": [0, 65535], "hard heart": [0, 65535], "heart is": [0, 65535], "is button'd": [0, 65535], "button'd vp": [0, 65535], "vp with": [0, 65535], "with steele": [0, 65535], "steele a": [0, 65535], "a feind": [0, 65535], "feind a": [0, 65535], "a fairie": [0, 65535], "fairie pittilesse": [0, 65535], "pittilesse and": [0, 65535], "and ruffe": [0, 65535], "ruffe a": [0, 65535], "a wolfe": [0, 65535], "wolfe nay": [0, 65535], "nay worse": [0, 65535], "worse a": [0, 65535], "a fellow": [0, 65535], "fellow all": [0, 65535], "all in": [0, 65535], "in buffe": [0, 65535], "buffe a": [0, 65535], "back friend": [0, 65535], "friend a": [0, 65535], "a shoulder": [0, 65535], "shoulder clapper": [0, 65535], "clapper one": [0, 65535], "that countermads": [0, 65535], "countermads the": [0, 65535], "the passages": [0, 65535], "passages of": [0, 65535], "of allies": [0, 65535], "allies creekes": [0, 65535], "creekes and": [0, 65535], "and narrow": [0, 65535], "narrow lands": [0, 65535], "lands a": [0, 65535], "a hound": [0, 65535], "hound that": [0, 65535], "that runs": [0, 65535], "runs counter": [0, 65535], "counter and": [0, 65535], "yet draws": [0, 65535], "draws drifoot": [0, 65535], "drifoot well": [0, 65535], "well one": [0, 65535], "the iudgment": [0, 65535], "iudgment carries": [0, 65535], "carries poore": [0, 65535], "poore soules": [0, 65535], "soules to": [0, 65535], "to hel": [0, 65535], "hel adr": [0, 65535], "why man": [0, 65535], "man what": [0, 65535], "matter s": [0, 65535], "matter hee": [0, 65535], "hee is": [0, 65535], "is rested": [0, 65535], "rested on": [0, 65535], "the case": [0, 65535], "case adr": [0, 65535], "adr what": [0, 65535], "he arrested": [0, 65535], "arrested tell": [0, 65535], "at whose": [0, 65535], "whose suite": [0, 65535], "suite s": [0, 65535], "suite he": [0, 65535], "is arested": [0, 65535], "arested well": [0, 65535], "but is": [0, 65535], "a suite": [0, 65535], "suite of": [0, 65535], "of buffe": [0, 65535], "buffe which": [0, 65535], "which rested": [0, 65535], "rested him": [0, 65535], "can i": [0, 65535], "tell will": [0, 65535], "mistris redemption": [0, 65535], "redemption the": [0, 65535], "monie in": [0, 65535], "his deske": [0, 65535], "deske adr": [0, 65535], "adr go": [0, 65535], "fetch it": [0, 65535], "it sister": [0, 65535], "sister this": [0, 65535], "wonder at": [0, 65535], "at exit": [0, 65535], "exit luciana": [0, 65535], "luciana thus": [0, 65535], "he vnknowne": [0, 65535], "vnknowne to": [0, 65535], "me should": [0, 65535], "be in": [0, 65535], "in debt": [0, 65535], "debt tell": [0, 65535], "me was": [0, 65535], "was he": [0, 65535], "he arested": [0, 65535], "arested on": [0, 65535], "a band": [0, 65535], "band s": [0, 65535], "not on": [0, 65535], "band but": [0, 65535], "but on": [0, 65535], "a stronger": [0, 65535], "stronger thing": [0, 65535], "thing a": [0, 65535], "chaine a": [0, 65535], "chaine doe": [0, 65535], "not here": [0, 65535], "here it": [0, 65535], "it ring": [0, 65535], "ring adria": [0, 65535], "adria what": [0, 65535], "what the": [0, 65535], "chaine s": [0, 65535], "no the": [0, 65535], "bell 'tis": [0, 65535], "were gone": [0, 65535], "gone it": [0, 65535], "was two": [0, 65535], "two ere": [0, 65535], "i left": [0, 65535], "clocke strikes": [0, 65535], "strikes one": [0, 65535], "one adr": [0, 65535], "adr the": [0, 65535], "the houres": [0, 65535], "houres come": [0, 65535], "come backe": [0, 65535], "backe that": [0, 65535], "that did": [0, 65535], "neuer here": [0, 65535], "here s": [0, 65535], "yes if": [0, 65535], "any houre": [0, 65535], "houre meete": [0, 65535], "meete a": [0, 65535], "a serieant": [0, 65535], "serieant a": [0, 65535], "a turnes": [0, 65535], "turnes backe": [0, 65535], "backe for": [0, 65535], "for verie": [0, 65535], "verie feare": [0, 65535], "feare adri": [0, 65535], "adri as": [0, 65535], "if time": [0, 65535], "time were": [0, 65535], "debt how": [0, 65535], "how fondly": [0, 65535], "fondly do'st": [0, 65535], "do'st thou": [0, 65535], "thou reason": [0, 65535], "dro time": [0, 65535], "verie bankerout": [0, 65535], "bankerout and": [0, 65535], "and owes": [0, 65535], "owes more": [0, 65535], "then he's": [0, 65535], "he's worth": [0, 65535], "worth to": [0, 65535], "to season": [0, 65535], "season nay": [0, 65535], "nay he's": [0, 65535], "a theefe": [0, 65535], "theefe too": [0, 65535], "too haue": [0, 65535], "not heard": [0, 65535], "heard men": [0, 65535], "men say": [0, 65535], "that time": [0, 65535], "time comes": [0, 65535], "comes stealing": [0, 65535], "stealing on": [0, 65535], "on by": [0, 65535], "by night": [0, 65535], "and day": [0, 65535], "day if": [0, 65535], "debt and": [0, 65535], "and theft": [0, 65535], "theft and": [0, 65535], "serieant in": [0, 65535], "way hath": [0, 65535], "not reason": [0, 65535], "reason to": [0, 65535], "to turne": [0, 65535], "turne backe": [0, 65535], "backe an": [0, 65535], "houre in": [0, 65535], "day enter": [0, 65535], "enter luciana": [0, 65535], "go dromio": [0, 65535], "dromio there's": [0, 65535], "monie beare": [0, 65535], "it straight": [0, 65535], "bring thy": [0, 65535], "home imediately": [0, 65535], "imediately come": [0, 65535], "sister i": [0, 65535], "am prest": [0, 65535], "prest downe": [0, 65535], "downe with": [0, 65535], "with conceit": [0, 65535], "conceit conceit": [0, 65535], "conceit my": [0, 65535], "comfort and": [0, 65535], "my iniurie": [0, 65535], "iniurie exit": [0, 65535], "antipholus siracusia": [0, 65535], "siracusia there's": [0, 65535], "there's not": [0, 65535], "man i": [0, 65535], "i meete": [0, 65535], "meete but": [0, 65535], "but doth": [0, 65535], "doth salute": [0, 65535], "salute me": [0, 65535], "were their": [0, 65535], "their well": [0, 65535], "well acquainted": [0, 65535], "acquainted friend": [0, 65535], "friend and": [0, 65535], "and euerie": [0, 65535], "one doth": [0, 65535], "name some": [0, 65535], "some tender": [0, 65535], "tender monie": [0, 65535], "monie to": [0, 65535], "some inuite": [0, 65535], "inuite me": [0, 65535], "other giue": [0, 65535], "me thankes": [0, 65535], "thankes for": [0, 65535], "for kindnesses": [0, 65535], "kindnesses some": [0, 65535], "some offer": [0, 65535], "offer me": [0, 65535], "me commodities": [0, 65535], "commodities to": [0, 65535], "buy euen": [0, 65535], "a tailor": [0, 65535], "tailor cal'd": [0, 65535], "cal'd me": [0, 65535], "his shop": [0, 65535], "shop and": [0, 65535], "and show'd": [0, 65535], "show'd me": [0, 65535], "me silkes": [0, 65535], "silkes that": [0, 65535], "had bought": [0, 65535], "bought for": [0, 65535], "and therewithall": [0, 65535], "therewithall tooke": [0, 65535], "tooke measure": [0, 65535], "measure of": [0, 65535], "my body": [0, 65535], "body sure": [0, 65535], "sure these": [0, 65535], "but imaginarie": [0, 65535], "imaginarie wiles": [0, 65535], "wiles and": [0, 65535], "and lapland": [0, 65535], "lapland sorcerers": [0, 65535], "sorcerers inhabite": [0, 65535], "inhabite here": [0, 65535], "here enter": [0, 65535], "master here's": [0, 65535], "the picture": [0, 65535], "old adam": [0, 65535], "adam new": [0, 65535], "new apparel'd": [0, 65535], "apparel'd ant": [0, 65535], "what gold": [0, 65535], "gold is": [0, 65535], "what adam": [0, 65535], "adam do'st": [0, 65535], "meane s": [0, 65535], "that adam": [0, 65535], "adam that": [0, 65535], "that kept": [0, 65535], "kept the": [0, 65535], "the paradise": [0, 65535], "paradise but": [0, 65535], "that keepes": [0, 65535], "keepes the": [0, 65535], "the prison": [0, 65535], "prison hee": [0, 65535], "hee that": [0, 65535], "goes in": [0, 65535], "the calues": [0, 65535], "calues skin": [0, 65535], "skin that": [0, 65535], "was kil'd": [0, 65535], "kil'd for": [0, 65535], "the prodigall": [0, 65535], "prodigall hee": [0, 65535], "came behinde": [0, 65535], "behinde you": [0, 65535], "sir like": [0, 65535], "euill angel": [0, 65535], "angel and": [0, 65535], "bid you": [0, 65535], "you forsake": [0, 65535], "forsake your": [0, 65535], "your libertie": [0, 65535], "libertie ant": [0, 65535], "i vnderstand": [0, 65535], "vnderstand thee": [0, 65535], "thee not": [0, 65535], "not s": [0, 65535], "no why": [0, 65535], "why 'tis": [0, 65535], "'tis a": [0, 65535], "a plaine": [0, 65535], "plaine case": [0, 65535], "case he": [0, 65535], "went like": [0, 65535], "a base": [0, 65535], "base viole": [0, 65535], "viole in": [0, 65535], "a case": [0, 65535], "case of": [0, 65535], "of leather": [0, 65535], "leather the": [0, 65535], "when gentlemen": [0, 65535], "gentlemen are": [0, 65535], "are tired": [0, 65535], "tired giues": [0, 65535], "giues them": [0, 65535], "them a": [0, 65535], "a sob": [0, 65535], "sob and": [0, 65535], "and rests": [0, 65535], "rests them": [0, 65535], "them he": [0, 65535], "he sir": [0, 65535], "that takes": [0, 65535], "takes pittie": [0, 65535], "pittie on": [0, 65535], "on decaied": [0, 65535], "decaied men": [0, 65535], "and giues": [0, 65535], "them suites": [0, 65535], "suites of": [0, 65535], "of durance": [0, 65535], "durance he": [0, 65535], "that sets": [0, 65535], "sets vp": [0, 65535], "vp his": [0, 65535], "his rest": [0, 65535], "to doe": [0, 65535], "doe more": [0, 65535], "more exploits": [0, 65535], "exploits with": [0, 65535], "his mace": [0, 65535], "mace then": [0, 65535], "a moris": [0, 65535], "moris pike": [0, 65535], "pike ant": [0, 65535], "thou mean'st": [0, 65535], "mean'st an": [0, 65535], "officer s": [0, 65535], "sir the": [0, 65535], "the serieant": [0, 65535], "serieant of": [0, 65535], "the band": [0, 65535], "band he": [0, 65535], "that brings": [0, 65535], "brings any": [0, 65535], "any man": [0, 65535], "to answer": [0, 65535], "answer it": [0, 65535], "that breakes": [0, 65535], "breakes his": [0, 65535], "his band": [0, 65535], "band one": [0, 65535], "that thinkes": [0, 65535], "thinkes a": [0, 65535], "man alwaies": [0, 65535], "alwaies going": [0, 65535], "to bed": [0, 65535], "and saies": [0, 65535], "saies god": [0, 65535], "god giue": [0, 65535], "you good": [0, 65535], "good rest": [0, 65535], "rest ant": [0, 65535], "sir there": [0, 65535], "there rest": [0, 65535], "rest in": [0, 65535], "your foolerie": [0, 65535], "foolerie is": [0, 65535], "there any": [0, 65535], "any ships": [0, 65535], "ships puts": [0, 65535], "puts forth": [0, 65535], "forth to": [0, 65535], "night may": [0, 65535], "may we": [0, 65535], "we be": [0, 65535], "gone s": [0, 65535], "why sir": [0, 65535], "i brought": [0, 65535], "brought you": [0, 65535], "you word": [0, 65535], "word an": [0, 65535], "the barke": [0, 65535], "barke expedition": [0, 65535], "expedition put": [0, 65535], "then were": [0, 65535], "you hindred": [0, 65535], "serieant to": [0, 65535], "to tarry": [0, 65535], "tarry for": [0, 65535], "the hoy": [0, 65535], "hoy delay": [0, 65535], "delay here": [0, 65535], "here are": [0, 65535], "the angels": [0, 65535], "angels that": [0, 65535], "for to": [0, 65535], "to deliuer": [0, 65535], "deliuer you": [0, 65535], "the fellow": [0, 65535], "fellow is": [0, 65535], "is distract": [0, 65535], "distract and": [0, 65535], "here we": [0, 65535], "we wander": [0, 65535], "in illusions": [0, 65535], "illusions some": [0, 65535], "some blessed": [0, 65535], "blessed power": [0, 65535], "power deliuer": [0, 65535], "deliuer vs": [0, 65535], "vs from": [0, 65535], "from hence": [0, 65535], "hence enter": [0, 65535], "a curtizan": [0, 65535], "curtizan cur": [0, 65535], "cur well": [0, 65535], "well met": [0, 65535], "met well": [0, 65535], "met master": [0, 65535], "master antipholus": [0, 65535], "see sir": [0, 65535], "haue found": [0, 65535], "gold smith": [0, 65535], "smith now": [0, 65535], "you promis'd": [0, 65535], "ant sathan": [0, 65535], "sathan auoide": [0, 65535], "auoide i": [0, 65535], "i charge": [0, 65535], "charge thee": [0, 65535], "thee tempt": [0, 65535], "tempt me": [0, 65535], "this mistris": [0, 65535], "mistris sathan": [0, 65535], "sathan ant": [0, 65535], "ant it": [0, 65535], "the diuell": [0, 65535], "diuell s": [0, 65535], "nay she": [0, 65535], "is worse": [0, 65535], "worse she": [0, 65535], "the diuels": [0, 65535], "diuels dam": [0, 65535], "dam and": [0, 65535], "here she": [0, 65535], "comes in": [0, 65535], "the habit": [0, 65535], "habit of": [0, 65535], "a light": [0, 65535], "light wench": [0, 65535], "wench and": [0, 65535], "comes that": [0, 65535], "the wenches": [0, 65535], "wenches say": [0, 65535], "say god": [0, 65535], "god dam": [0, 65535], "dam me": [0, 65535], "me that's": [0, 65535], "that's as": [0, 65535], "god make": [0, 65535], "wench it": [0, 65535], "is written": [0, 65535], "written they": [0, 65535], "they appeare": [0, 65535], "appeare to": [0, 65535], "to men": [0, 65535], "men like": [0, 65535], "like angels": [0, 65535], "angels of": [0, 65535], "light light": [0, 65535], "light is": [0, 65535], "and fire": [0, 65535], "fire will": [0, 65535], "burne ergo": [0, 65535], "ergo light": [0, 65535], "light wenches": [0, 65535], "wenches will": [0, 65535], "burne come": [0, 65535], "not neere": [0, 65535], "neere her": [0, 65535], "her cur": [0, 65535], "cur your": [0, 65535], "are maruailous": [0, 65535], "maruailous merrie": [0, 65535], "merrie sir": [0, 65535], "sir will": [0, 65535], "you goe": [0, 65535], "goe with": [0, 65535], "me wee'll": [0, 65535], "wee'll mend": [0, 65535], "mend our": [0, 65535], "dinner here": [0, 65535], "if do": [0, 65535], "do expect": [0, 65535], "expect spoon": [0, 65535], "spoon meate": [0, 65535], "meate or": [0, 65535], "or bespeake": [0, 65535], "bespeake a": [0, 65535], "long spoone": [0, 65535], "spoone ant": [0, 65535], "why dromio": [0, 65535], "dromio s": [0, 65535], "marrie he": [0, 65535], "he must": [0, 65535], "spoone that": [0, 65535], "that must": [0, 65535], "must eate": [0, 65535], "eate with": [0, 65535], "diuell ant": [0, 65535], "ant auoid": [0, 65535], "auoid then": [0, 65535], "then fiend": [0, 65535], "fiend what": [0, 65535], "what tel'st": [0, 65535], "tel'st thou": [0, 65535], "thou me": [0, 65535], "of supping": [0, 65535], "supping thou": [0, 65535], "art as": [0, 65535], "all a": [0, 65535], "a sorceresse": [0, 65535], "sorceresse i": [0, 65535], "i coniure": [0, 65535], "coniure thee": [0, 65535], "leaue me": [0, 65535], "be gon": [0, 65535], "gon cur": [0, 65535], "cur giue": [0, 65535], "the ring": [0, 65535], "ring of": [0, 65535], "mine you": [0, 65535], "dinner or": [0, 65535], "or for": [0, 65535], "my diamond": [0, 65535], "diamond the": [0, 65535], "promis'd and": [0, 65535], "ile be": [0, 65535], "gone sir": [0, 65535], "not trouble": [0, 65535], "dro some": [0, 65535], "some diuels": [0, 65535], "diuels aske": [0, 65535], "aske but": [0, 65535], "the parings": [0, 65535], "parings of": [0, 65535], "of ones": [0, 65535], "ones naile": [0, 65535], "naile a": [0, 65535], "a rush": [0, 65535], "rush a": [0, 65535], "a haire": [0, 65535], "haire a": [0, 65535], "of blood": [0, 65535], "blood a": [0, 65535], "pin a": [0, 65535], "a nut": [0, 65535], "nut a": [0, 65535], "a cherrie": [0, 65535], "cherrie stone": [0, 65535], "stone but": [0, 65535], "she more": [0, 65535], "more couetous": [0, 65535], "couetous wold": [0, 65535], "wold haue": [0, 65535], "chaine master": [0, 65535], "master be": [0, 65535], "be wise": [0, 65535], "wise and": [0, 65535], "it her": [0, 65535], "her the": [0, 65535], "diuell will": [0, 65535], "will shake": [0, 65535], "shake her": [0, 65535], "her chaine": [0, 65535], "and fright": [0, 65535], "fright vs": [0, 65535], "vs with": [0, 65535], "it cur": [0, 65535], "cur i": [0, 65535], "sir my": [0, 65535], "my ring": [0, 65535], "ring or": [0, 65535], "else the": [0, 65535], "not meane": [0, 65535], "to cheate": [0, 65535], "cheate me": [0, 65535], "ant auant": [0, 65535], "auant thou": [0, 65535], "thou witch": [0, 65535], "witch come": [0, 65535], "dromio let": [0, 65535], "vs go": [0, 65535], "dro flie": [0, 65535], "flie pride": [0, 65535], "pride saies": [0, 65535], "saies the": [0, 65535], "the pea": [0, 65535], "pea cocke": [0, 65535], "cocke mistris": [0, 65535], "mistris that": [0, 65535], "know exit": [0, 65535], "exit cur": [0, 65535], "cur now": [0, 65535], "now out": [0, 65535], "of doubt": [0, 65535], "doubt antipholus": [0, 65535], "antipholus is": [0, 65535], "mad else": [0, 65535], "else would": [0, 65535], "would he": [0, 65535], "he neuer": [0, 65535], "neuer so": [0, 65535], "so demeane": [0, 65535], "demeane himselfe": [0, 65535], "himselfe a": [0, 65535], "a ring": [0, 65535], "ring he": [0, 65535], "hath of": [0, 65535], "mine worth": [0, 65535], "worth fortie": [0, 65535], "fortie duckets": [0, 65535], "duckets and": [0, 65535], "same he": [0, 65535], "both one": [0, 65535], "he denies": [0, 65535], "denies me": [0, 65535], "reason that": [0, 65535], "i gather": [0, 65535], "gather he": [0, 65535], "mad besides": [0, 65535], "besides this": [0, 65535], "present instance": [0, 65535], "rage is": [0, 65535], "mad tale": [0, 65535], "tale he": [0, 65535], "told to": [0, 65535], "dinner of": [0, 65535], "doores being": [0, 65535], "being shut": [0, 65535], "shut against": [0, 65535], "against his": [0, 65535], "his entrance": [0, 65535], "entrance belike": [0, 65535], "belike his": [0, 65535], "wife acquainted": [0, 65535], "acquainted with": [0, 65535], "his fits": [0, 65535], "fits on": [0, 65535], "on purpose": [0, 65535], "purpose shut": [0, 65535], "doores against": [0, 65535], "way my": [0, 65535], "my way": [0, 65535], "way is": [0, 65535], "is now": [0, 65535], "to hie": [0, 65535], "hie home": [0, 65535], "being lunaticke": [0, 65535], "lunaticke he": [0, 65535], "he rush'd": [0, 65535], "rush'd into": [0, 65535], "into my": [0, 65535], "tooke perforce": [0, 65535], "ring away": [0, 65535], "away this": [0, 65535], "course i": [0, 65535], "i fittest": [0, 65535], "fittest choose": [0, 65535], "choose for": [0, 65535], "for fortie": [0, 65535], "duckets is": [0, 65535], "to loose": [0, 65535], "loose enter": [0, 65535], "ephes with": [0, 65535], "a iailor": [0, 65535], "iailor an": [0, 65535], "an feare": [0, 65535], "feare me": [0, 65535], "not man": [0, 65535], "breake away": [0, 65535], "away ile": [0, 65535], "ile giue": [0, 65535], "thee ere": [0, 65535], "i leaue": [0, 65535], "leaue thee": [0, 65535], "much money": [0, 65535], "money to": [0, 65535], "to warrant": [0, 65535], "warrant thee": [0, 65535], "thee as": [0, 65535], "am rested": [0, 65535], "rested for": [0, 65535], "a wayward": [0, 65535], "wayward moode": [0, 65535], "moode to": [0, 65535], "not lightly": [0, 65535], "lightly trust": [0, 65535], "trust the": [0, 65535], "the messenger": [0, 65535], "messenger that": [0, 65535], "be attach'd": [0, 65535], "attach'd in": [0, 65535], "you 'twill": [0, 65535], "'twill sound": [0, 65535], "sound harshly": [0, 65535], "harshly in": [0, 65535], "her eares": [0, 65535], "eares enter": [0, 65535], "eph with": [0, 65535], "end heere": [0, 65535], "comes my": [0, 65535], "he brings": [0, 65535], "brings the": [0, 65535], "monie how": [0, 65535], "sir haue": [0, 65535], "for e": [0, 65535], "here's that": [0, 65535], "warrant you": [0, 65535], "pay them": [0, 65535], "them all": [0, 65535], "all anti": [0, 65535], "anti but": [0, 65535], "but where's": [0, 65535], "money e": [0, 65535], "gaue the": [0, 65535], "monie for": [0, 65535], "the rope": [0, 65535], "rope ant": [0, 65535], "ant fiue": [0, 65535], "fiue hundred": [0, 65535], "hundred duckets": [0, 65535], "duckets villaine": [0, 65535], "villaine for": [0, 65535], "rope e": [0, 65535], "dro ile": [0, 65535], "ile serue": [0, 65535], "serue you": [0, 65535], "sir fiue": [0, 65535], "hundred at": [0, 65535], "the rate": [0, 65535], "rate ant": [0, 65535], "end did": [0, 65535], "i bid": [0, 65535], "bid thee": [0, 65535], "thee hie": [0, 65535], "thee home": [0, 65535], "home e": [0, 65535], "end sir": [0, 65535], "that end": [0, 65535], "end am": [0, 65535], "i re": [0, 65535], "re turn'd": [0, 65535], "turn'd ant": [0, 65535], "will welcome": [0, 65535], "welcome you": [0, 65535], "you offi": [0, 65535], "offi good": [0, 65535], "sir be": [0, 65535], "patient e": [0, 65535], "nay 'tis": [0, 65535], "'tis for": [0, 65535], "patient i": [0, 65535], "am in": [0, 65535], "in aduersitie": [0, 65535], "aduersitie offi": [0, 65535], "good now": [0, 65535], "now hold": [0, 65535], "hold thy": [0, 65535], "tongue e": [0, 65535], "nay rather": [0, 65535], "rather perswade": [0, 65535], "perswade him": [0, 65535], "to hold": [0, 65535], "hold his": [0, 65535], "hands anti": [0, 65535], "thou whoreson": [0, 65535], "whoreson senselesse": [0, 65535], "senselesse villaine": [0, 65535], "would i": [0, 65535], "were senselesse": [0, 65535], "senselesse sir": [0, 65535], "might not": [0, 65535], "feele your": [0, 65535], "your blowes": [0, 65535], "blowes anti": [0, 65535], "art sensible": [0, 65535], "sensible in": [0, 65535], "in nothing": [0, 65535], "but blowes": [0, 65535], "so is": [0, 65535], "asse indeede": [0, 65535], "indeede you": [0, 65535], "may prooue": [0, 65535], "prooue it": [0, 65535], "my long": [0, 65535], "long eares": [0, 65535], "eares i": [0, 65535], "haue serued": [0, 65535], "serued him": [0, 65535], "houre of": [0, 65535], "my natiuitie": [0, 65535], "natiuitie to": [0, 65535], "this instant": [0, 65535], "instant and": [0, 65535], "and haue": [0, 65535], "haue nothing": [0, 65535], "nothing at": [0, 65535], "hands for": [0, 65535], "my seruice": [0, 65535], "seruice but": [0, 65535], "blowes when": [0, 65535], "am cold": [0, 65535], "cold he": [0, 65535], "he heates": [0, 65535], "heates me": [0, 65535], "with beating": [0, 65535], "beating when": [0, 65535], "am warme": [0, 65535], "warme he": [0, 65535], "he cooles": [0, 65535], "cooles me": [0, 65535], "beating i": [0, 65535], "am wak'd": [0, 65535], "wak'd with": [0, 65535], "i sleepe": [0, 65535], "sleepe rais'd": [0, 65535], "rais'd with": [0, 65535], "i sit": [0, 65535], "sit driuen": [0, 65535], "driuen out": [0, 65535], "of doores": [0, 65535], "doores with": [0, 65535], "i goe": [0, 65535], "goe from": [0, 65535], "home welcom'd": [0, 65535], "welcom'd home": [0, 65535], "returne nay": [0, 65535], "nay i": [0, 65535], "shoulders as": [0, 65535], "a begger": [0, 65535], "begger woont": [0, 65535], "woont her": [0, 65535], "her brat": [0, 65535], "brat and": [0, 65535], "thinke when": [0, 65535], "hath lam'd": [0, 65535], "lam'd me": [0, 65535], "shall begge": [0, 65535], "begge with": [0, 65535], "from doore": [0, 65535], "doore to": [0, 65535], "to doore": [0, 65535], "doore enter": [0, 65535], "luciana courtizan": [0, 65535], "courtizan and": [0, 65535], "a schoolemaster": [0, 65535], "schoolemaster call'd": [0, 65535], "call'd pinch": [0, 65535], "pinch ant": [0, 65535], "come goe": [0, 65535], "goe along": [0, 65535], "along my": [0, 65535], "is comming": [0, 65535], "comming yonder": [0, 65535], "yonder e": [0, 65535], "dro mistris": [0, 65535], "mistris respice": [0, 65535], "respice finem": [0, 65535], "finem respect": [0, 65535], "respect your": [0, 65535], "your end": [0, 65535], "end or": [0, 65535], "rather the": [0, 65535], "the prophesie": [0, 65535], "prophesie like": [0, 65535], "the parrat": [0, 65535], "parrat beware": [0, 65535], "beware the": [0, 65535], "the ropes": [0, 65535], "end anti": [0, 65535], "anti wilt": [0, 65535], "thou still": [0, 65535], "still talke": [0, 65535], "talke beats": [0, 65535], "dro curt": [0, 65535], "curt how": [0, 65535], "how say": [0, 65535], "husband mad": [0, 65535], "his inciuility": [0, 65535], "inciuility confirmes": [0, 65535], "confirmes no": [0, 65535], "no lesse": [0, 65535], "lesse good": [0, 65535], "good doctor": [0, 65535], "doctor pinch": [0, 65535], "pinch you": [0, 65535], "coniurer establish": [0, 65535], "establish him": [0, 65535], "his true": [0, 65535], "true sence": [0, 65535], "sence againe": [0, 65535], "will please": [0, 65535], "will demand": [0, 65535], "demand luc": [0, 65535], "luc alas": [0, 65535], "alas how": [0, 65535], "how fiery": [0, 65535], "fiery and": [0, 65535], "how sharpe": [0, 65535], "sharpe he": [0, 65535], "he lookes": [0, 65535], "lookes cur": [0, 65535], "cur marke": [0, 65535], "marke how": [0, 65535], "he trembles": [0, 65535], "trembles in": [0, 65535], "his extasie": [0, 65535], "extasie pinch": [0, 65535], "pinch giue": [0, 65535], "me your": [0, 65535], "let mee": [0, 65535], "mee feele": [0, 65535], "your pulse": [0, 65535], "pulse ant": [0, 65535], "my hand": [0, 65535], "it feele": [0, 65535], "your eare": [0, 65535], "eare pinch": [0, 65535], "pinch i": [0, 65535], "thee sathan": [0, 65535], "sathan hous'd": [0, 65535], "hous'd within": [0, 65535], "this man": [0, 65535], "to yeeld": [0, 65535], "yeeld possession": [0, 65535], "possession to": [0, 65535], "my holie": [0, 65535], "holie praiers": [0, 65535], "praiers and": [0, 65535], "thy state": [0, 65535], "state of": [0, 65535], "of darknesse": [0, 65535], "darknesse hie": [0, 65535], "straight i": [0, 65535], "the saints": [0, 65535], "saints in": [0, 65535], "heauen anti": [0, 65535], "anti peace": [0, 65535], "peace doting": [0, 65535], "doting wizard": [0, 65535], "wizard peace": [0, 65535], "peace i": [0, 65535], "mad adr": [0, 65535], "adr oh": [0, 65535], "oh that": [0, 65535], "thou wer't": [0, 65535], "wer't not": [0, 65535], "not poore": [0, 65535], "poore distressed": [0, 65535], "distressed soule": [0, 65535], "soule anti": [0, 65535], "minion you": [0, 65535], "are these": [0, 65535], "these your": [0, 65535], "your customers": [0, 65535], "customers did": [0, 65535], "this companion": [0, 65535], "companion with": [0, 65535], "the saffron": [0, 65535], "saffron face": [0, 65535], "face reuell": [0, 65535], "reuell and": [0, 65535], "and feast": [0, 65535], "feast it": [0, 65535], "house to": [0, 65535], "day whil'st": [0, 65535], "whil'st vpon": [0, 65535], "the guiltie": [0, 65535], "guiltie doores": [0, 65535], "doores were": [0, 65535], "were shut": [0, 65535], "i denied": [0, 65535], "denied to": [0, 65535], "to enter": [0, 65535], "house adr": [0, 65535], "adr o": [0, 65535], "o husband": [0, 65535], "husband god": [0, 65535], "god doth": [0, 65535], "doth know": [0, 65535], "you din'd": [0, 65535], "home where": [0, 65535], "where would": [0, 65535], "had remain'd": [0, 65535], "remain'd vntill": [0, 65535], "vntill this": [0, 65535], "time free": [0, 65535], "free from": [0, 65535], "from these": [0, 65535], "these slanders": [0, 65535], "slanders and": [0, 65535], "this open": [0, 65535], "open shame": [0, 65535], "shame anti": [0, 65535], "anti din'd": [0, 65535], "home thou": [0, 65535], "villaine what": [0, 65535], "what sayest": [0, 65535], "sayest thou": [0, 65535], "sir sooth": [0, 65535], "sooth to": [0, 65535], "not dine": [0, 65535], "dine at": [0, 65535], "home ant": [0, 65535], "ant were": [0, 65535], "were not": [0, 65535], "doores lockt": [0, 65535], "lockt vp": [0, 65535], "i shut": [0, 65535], "shut out": [0, 65535], "out dro": [0, 65535], "dro perdie": [0, 65535], "perdie your": [0, 65535], "your doores": [0, 65535], "were lockt": [0, 65535], "lockt and": [0, 65535], "out anti": [0, 65535], "not she": [0, 65535], "she her": [0, 65535], "selfe reuile": [0, 65535], "reuile me": [0, 65535], "there dro": [0, 65535], "dro sans": [0, 65535], "sans fable": [0, 65535], "fable she": [0, 65535], "selfe reuil'd": [0, 65535], "reuil'd you": [0, 65535], "there anti": [0, 65535], "anti did": [0, 65535], "not her": [0, 65535], "her kitchen": [0, 65535], "kitchen maide": [0, 65535], "maide raile": [0, 65535], "raile taunt": [0, 65535], "taunt and": [0, 65535], "and scorne": [0, 65535], "dro certis": [0, 65535], "certis she": [0, 65535], "kitchin vestall": [0, 65535], "vestall scorn'd": [0, 65535], "scorn'd you": [0, 65535], "in rage": [0, 65535], "rage depart": [0, 65535], "depart from": [0, 65535], "from thence": [0, 65535], "thence dro": [0, 65535], "in veritie": [0, 65535], "veritie you": [0, 65535], "did my": [0, 65535], "my bones": [0, 65535], "bones beares": [0, 65535], "beares witnesse": [0, 65535], "that since": [0, 65535], "since haue": [0, 65535], "haue felt": [0, 65535], "felt the": [0, 65535], "the vigor": [0, 65535], "vigor of": [0, 65535], "rage adr": [0, 65535], "adr is't": [0, 65535], "is't good": [0, 65535], "to sooth": [0, 65535], "sooth him": [0, 65535], "in these": [0, 65535], "these contraries": [0, 65535], "contraries pinch": [0, 65535], "pinch it": [0, 65535], "no shame": [0, 65535], "shame the": [0, 65535], "fellow finds": [0, 65535], "finds his": [0, 65535], "his vaine": [0, 65535], "vaine and": [0, 65535], "and yeelding": [0, 65535], "yeelding to": [0, 65535], "him humors": [0, 65535], "humors well": [0, 65535], "well his": [0, 65535], "his frensie": [0, 65535], "frensie ant": [0, 65535], "hast subborn'd": [0, 65535], "subborn'd the": [0, 65535], "goldsmith to": [0, 65535], "to arrest": [0, 65535], "arrest mee": [0, 65535], "mee adr": [0, 65535], "adr alas": [0, 65535], "alas i": [0, 65535], "redeeme you": [0, 65535], "dromio heere": [0, 65535], "heere who": [0, 65535], "who came": [0, 65535], "in hast": [0, 65535], "hast for": [0, 65535], "it dro": [0, 65535], "dro monie": [0, 65535], "monie by": [0, 65535], "me heart": [0, 65535], "might but": [0, 65535], "but surely": [0, 65535], "surely master": [0, 65535], "master not": [0, 65535], "a ragge": [0, 65535], "ragge of": [0, 65535], "of monie": [0, 65535], "monie ant": [0, 65535], "ant wentst": [0, 65535], "wentst not": [0, 65535], "her for": [0, 65535], "duckets adri": [0, 65535], "adri he": [0, 65535], "i deliuer'd": [0, 65535], "deliuer'd it": [0, 65535], "it luci": [0, 65535], "luci and": [0, 65535], "am witnesse": [0, 65535], "did dro": [0, 65535], "dro god": [0, 65535], "god and": [0, 65535], "rope maker": [0, 65535], "maker beare": [0, 65535], "beare me": [0, 65535], "me witnesse": [0, 65535], "was sent": [0, 65535], "rope pinch": [0, 65535], "pinch mistris": [0, 65535], "mistris both": [0, 65535], "both man": [0, 65535], "is possest": [0, 65535], "possest i": [0, 65535], "by their": [0, 65535], "their pale": [0, 65535], "and deadly": [0, 65535], "deadly lookes": [0, 65535], "lookes they": [0, 65535], "they must": [0, 65535], "must be": [0, 65535], "be bound": [0, 65535], "and laide": [0, 65535], "laide in": [0, 65535], "some darke": [0, 65535], "darke roome": [0, 65535], "roome ant": [0, 65535], "ant say": [0, 65535], "say wherefore": [0, 65535], "wherefore didst": [0, 65535], "thou locke": [0, 65535], "locke me": [0, 65535], "me forth": [0, 65535], "and why": [0, 65535], "why dost": [0, 65535], "thou denie": [0, 65535], "the bagge": [0, 65535], "bagge of": [0, 65535], "of gold": [0, 65535], "gold adr": [0, 65535], "not gentle": [0, 65535], "gentle husband": [0, 65535], "husband locke": [0, 65535], "locke thee": [0, 65535], "thee forth": [0, 65535], "forth dro": [0, 65535], "and gentle": [0, 65535], "gentle mr": [0, 65535], "mr i": [0, 65535], "gold but": [0, 65535], "i confesse": [0, 65535], "confesse sir": [0, 65535], "were lock'd": [0, 65535], "out adr": [0, 65535], "adr dissembling": [0, 65535], "dissembling villain": [0, 65535], "villain thou": [0, 65535], "thou speak'st": [0, 65535], "speak'st false": [0, 65535], "false in": [0, 65535], "in both": [0, 65535], "both ant": [0, 65535], "ant dissembling": [0, 65535], "dissembling harlot": [0, 65535], "harlot thou": [0, 65535], "art false": [0, 65535], "all and": [0, 65535], "and art": [0, 65535], "art confederate": [0, 65535], "confederate with": [0, 65535], "a damned": [0, 65535], "damned packe": [0, 65535], "packe to": [0, 65535], "a loathsome": [0, 65535], "loathsome abiect": [0, 65535], "abiect scorne": [0, 65535], "scorne of": [0, 65535], "with these": [0, 65535], "these nailes": [0, 65535], "nailes ile": [0, 65535], "ile plucke": [0, 65535], "plucke out": [0, 65535], "out these": [0, 65535], "these false": [0, 65535], "false eyes": [0, 65535], "eyes that": [0, 65535], "would behold": [0, 65535], "behold in": [0, 65535], "this shamefull": [0, 65535], "shamefull sport": [0, 65535], "sport enter": [0, 65535], "enter three": [0, 65535], "three or": [0, 65535], "or foure": [0, 65535], "foure and": [0, 65535], "and offer": [0, 65535], "him hee": [0, 65535], "hee striues": [0, 65535], "striues adr": [0, 65535], "oh binde": [0, 65535], "him binde": [0, 65535], "come neere": [0, 65535], "neere me": [0, 65535], "me pinch": [0, 65535], "pinch more": [0, 65535], "more company": [0, 65535], "the fiend": [0, 65535], "fiend is": [0, 65535], "is strong": [0, 65535], "strong within": [0, 65535], "luc aye": [0, 65535], "aye me": [0, 65535], "me poore": [0, 65535], "poore man": [0, 65535], "man how": [0, 65535], "how pale": [0, 65535], "and wan": [0, 65535], "wan he": [0, 65535], "he looks": [0, 65535], "looks ant": [0, 65535], "you murther": [0, 65535], "murther me": [0, 65535], "thou iailor": [0, 65535], "iailor thou": [0, 65535], "am thy": [0, 65535], "thy prisoner": [0, 65535], "prisoner wilt": [0, 65535], "thou suffer": [0, 65535], "suffer them": [0, 65535], "a rescue": [0, 65535], "rescue offi": [0, 65535], "offi masters": [0, 65535], "masters let": [0, 65535], "him go": [0, 65535], "go he": [0, 65535], "my prisoner": [0, 65535], "prisoner and": [0, 65535], "him pinch": [0, 65535], "pinch go": [0, 65535], "go binde": [0, 65535], "binde this": [0, 65535], "man for": [0, 65535], "is franticke": [0, 65535], "franticke too": [0, 65535], "thou do": [0, 65535], "do thou": [0, 65535], "peeuish officer": [0, 65535], "officer hast": [0, 65535], "thou delight": [0, 65535], "delight to": [0, 65535], "wretched man": [0, 65535], "man do": [0, 65535], "do outrage": [0, 65535], "outrage and": [0, 65535], "and displeasure": [0, 65535], "to himselfe": [0, 65535], "himselfe offi": [0, 65535], "offi he": [0, 65535], "prisoner if": [0, 65535], "the debt": [0, 65535], "debt he": [0, 65535], "he owes": [0, 65535], "owes will": [0, 65535], "be requir'd": [0, 65535], "requir'd of": [0, 65535], "discharge thee": [0, 65535], "go from": [0, 65535], "from thee": [0, 65535], "thee beare": [0, 65535], "me forthwith": [0, 65535], "forthwith vnto": [0, 65535], "vnto his": [0, 65535], "his creditor": [0, 65535], "creditor and": [0, 65535], "knowing how": [0, 65535], "debt growes": [0, 65535], "growes i": [0, 65535], "pay it": [0, 65535], "it good": [0, 65535], "good master": [0, 65535], "master doctor": [0, 65535], "doctor see": [0, 65535], "him safe": [0, 65535], "safe conuey'd": [0, 65535], "conuey'd home": [0, 65535], "house oh": [0, 65535], "oh most": [0, 65535], "most vnhappy": [0, 65535], "vnhappy day": [0, 65535], "ant oh": [0, 65535], "most vnhappie": [0, 65535], "vnhappie strumpet": [0, 65535], "strumpet dro": [0, 65535], "am heere": [0, 65535], "heere entred": [0, 65535], "entred in": [0, 65535], "in bond": [0, 65535], "bond for": [0, 65535], "ant out": [0, 65535], "villaine wherefore": [0, 65535], "wherefore dost": [0, 65535], "mad mee": [0, 65535], "mee dro": [0, 65535], "dro will": [0, 65535], "bound for": [0, 65535], "nothing be": [0, 65535], "be mad": [0, 65535], "mad good": [0, 65535], "master cry": [0, 65535], "cry the": [0, 65535], "diuell luc": [0, 65535], "luc god": [0, 65535], "god helpe": [0, 65535], "helpe poore": [0, 65535], "soules how": [0, 65535], "how idlely": [0, 65535], "idlely doe": [0, 65535], "doe they": [0, 65535], "they talke": [0, 65535], "talke adr": [0, 65535], "go beare": [0, 65535], "hence sister": [0, 65535], "sister go": [0, 65535], "go you": [0, 65535], "say now": [0, 65535], "now whose": [0, 65535], "suite is": [0, 65535], "arrested at": [0, 65535], "at exeunt": [0, 65535], "exeunt manet": [0, 65535], "manet offic": [0, 65535], "offic adri": [0, 65535], "adri luci": [0, 65535], "luci courtizan": [0, 65535], "courtizan off": [0, 65535], "off one": [0, 65535], "one angelo": [0, 65535], "angelo a": [0, 65535], "a goldsmith": [0, 65535], "goldsmith do": [0, 65535], "summe he": [0, 65535], "owes off": [0, 65535], "off two": [0, 65535], "two hundred": [0, 65535], "duckets adr": [0, 65535], "how growes": [0, 65535], "growes it": [0, 65535], "it due": [0, 65535], "due off": [0, 65535], "off due": [0, 65535], "due for": [0, 65535], "chaine your": [0, 65535], "husband had": [0, 65535], "did bespeake": [0, 65535], "a chain": [0, 65535], "chain for": [0, 65535], "not cur": [0, 65535], "cur when": [0, 65535], "when as": [0, 65535], "as your": [0, 65535], "husband all": [0, 65535], "rage to": [0, 65535], "day came": [0, 65535], "tooke away": [0, 65535], "ring the": [0, 65535], "saw vpon": [0, 65535], "vpon his": [0, 65535], "finger now": [0, 65535], "now straight": [0, 65535], "straight after": [0, 65535], "after did": [0, 65535], "meete him": [0, 65535], "chaine adr": [0, 65535], "it may": [0, 65535], "may be": [0, 65535], "did neuer": [0, 65535], "neuer see": [0, 65535], "come iailor": [0, 65535], "iailor bring": [0, 65535], "bring me": [0, 65535], "goldsmith is": [0, 65535], "is i": [0, 65535], "long to": [0, 65535], "the truth": [0, 65535], "truth heereof": [0, 65535], "heereof at": [0, 65535], "large enter": [0, 65535], "siracusia with": [0, 65535], "his rapier": [0, 65535], "rapier drawne": [0, 65535], "drawne and": [0, 65535], "dromio sirac": [0, 65535], "sirac luc": [0, 65535], "god for": [0, 65535], "thy mercy": [0, 65535], "mercy they": [0, 65535], "are loose": [0, 65535], "loose againe": [0, 65535], "againe adr": [0, 65535], "and come": [0, 65535], "with naked": [0, 65535], "naked swords": [0, 65535], "swords let's": [0, 65535], "let's call": [0, 65535], "call more": [0, 65535], "more helpe": [0, 65535], "helpe to": [0, 65535], "haue them": [0, 65535], "them bound": [0, 65535], "bound againe": [0, 65535], "againe runne": [0, 65535], "runne all": [0, 65535], "all out": [0, 65535], "out off": [0, 65535], "off away": [0, 65535], "away they'l": [0, 65535], "they'l kill": [0, 65535], "kill vs": [0, 65535], "vs exeunt": [0, 65535], "omnes as": [0, 65535], "as fast": [0, 65535], "fast as": [0, 65535], "as may": [0, 65535], "be frighted": [0, 65535], "frighted s": [0, 65535], "see these": [0, 65535], "these witches": [0, 65535], "witches are": [0, 65535], "are affraid": [0, 65535], "affraid of": [0, 65535], "of swords": [0, 65535], "swords s": [0, 65535], "dro she": [0, 65535], "wife now": [0, 65535], "now ran": [0, 65535], "ran from": [0, 65535], "centaur fetch": [0, 65535], "fetch our": [0, 65535], "our stuffe": [0, 65535], "thence i": [0, 65535], "long that": [0, 65535], "were safe": [0, 65535], "safe and": [0, 65535], "sound aboord": [0, 65535], "aboord dro": [0, 65535], "faith stay": [0, 65535], "stay heere": [0, 65535], "heere this": [0, 65535], "this night": [0, 65535], "night they": [0, 65535], "will surely": [0, 65535], "surely do": [0, 65535], "do vs": [0, 65535], "vs no": [0, 65535], "no harme": [0, 65535], "harme you": [0, 65535], "saw they": [0, 65535], "they speake": [0, 65535], "speake vs": [0, 65535], "vs faire": [0, 65535], "faire giue": [0, 65535], "giue vs": [0, 65535], "vs gold": [0, 65535], "gold me": [0, 65535], "thinkes they": [0, 65535], "are such": [0, 65535], "gentle nation": [0, 65535], "nation that": [0, 65535], "that but": [0, 65535], "the mountaine": [0, 65535], "mountaine of": [0, 65535], "of mad": [0, 65535], "mad flesh": [0, 65535], "flesh that": [0, 65535], "claimes mariage": [0, 65535], "mariage of": [0, 65535], "could finde": [0, 65535], "finde in": [0, 65535], "heere still": [0, 65535], "and turne": [0, 65535], "turne witch": [0, 65535], "witch ant": [0, 65535], "not stay": [0, 65535], "stay to": [0, 65535], "night for": [0, 65535], "towne therefore": [0, 65535], "therefore away": [0, 65535], "get our": [0, 65535], "stuffe aboord": [0, 65535], "aboord exeunt": [0, 65535], "actus quartus sc\u00e6na": [0, 65535], "quartus sc\u00e6na prima": [0, 65535], "sc\u00e6na prima enter": [0, 65535], "prima enter a": [0, 65535], "enter a merchant": [0, 65535], "a merchant goldsmith": [0, 65535], "merchant goldsmith and": [0, 65535], "goldsmith and an": [0, 65535], "and an officer": [0, 65535], "an officer mar": [0, 65535], "officer mar you": [0, 65535], "mar you know": [0, 65535], "you know since": [0, 65535], "know since pentecost": [0, 65535], "since pentecost the": [0, 65535], "pentecost the sum": [0, 65535], "the sum is": [0, 65535], "sum is due": [0, 65535], "is due and": [0, 65535], "due and since": [0, 65535], "and since i": [0, 65535], "since i haue": [0, 65535], "haue not much": [0, 65535], "not much importun'd": [0, 65535], "much importun'd you": [0, 65535], "importun'd you nor": [0, 65535], "you nor now": [0, 65535], "nor now i": [0, 65535], "now i had": [0, 65535], "had not but": [0, 65535], "not but that": [0, 65535], "i am bound": [0, 65535], "am bound to": [0, 65535], "bound to persia": [0, 65535], "to persia and": [0, 65535], "persia and want": [0, 65535], "and want gilders": [0, 65535], "want gilders for": [0, 65535], "gilders for my": [0, 65535], "for my voyage": [0, 65535], "my voyage therefore": [0, 65535], "voyage therefore make": [0, 65535], "therefore make present": [0, 65535], "make present satisfaction": [0, 65535], "present satisfaction or": [0, 65535], "satisfaction or ile": [0, 65535], "or ile attach": [0, 65535], "ile attach you": [0, 65535], "attach you by": [0, 65535], "you by this": [0, 65535], "by this officer": [0, 65535], "this officer gold": [0, 65535], "officer gold euen": [0, 65535], "gold euen iust": [0, 65535], "euen iust the": [0, 65535], "iust the sum": [0, 65535], "sum that i": [0, 65535], "that i do": [0, 65535], "i do owe": [0, 65535], "do owe to": [0, 65535], "owe to you": [0, 65535], "to you is": [0, 65535], "you is growing": [0, 65535], "is growing to": [0, 65535], "growing to me": [0, 65535], "to me by": [0, 65535], "me by antipholus": [0, 65535], "by antipholus and": [0, 65535], "antipholus and in": [0, 65535], "in the instant": [0, 65535], "the instant that": [0, 65535], "instant that i": [0, 65535], "that i met": [0, 65535], "i met with": [0, 65535], "met with you": [0, 65535], "with you he": [0, 65535], "you he had": [0, 65535], "he had of": [0, 65535], "of me a": [0, 65535], "a chaine at": [0, 65535], "chaine at fiue": [0, 65535], "a clocke i": [0, 65535], "clocke i shall": [0, 65535], "i shall receiue": [0, 65535], "shall receiue the": [0, 65535], "the money for": [0, 65535], "for the same": [0, 65535], "the same pleaseth": [0, 65535], "same pleaseth you": [0, 65535], "pleaseth you walke": [0, 65535], "with me downe": [0, 65535], "me downe to": [0, 65535], "downe to his": [0, 65535], "to his house": [0, 65535], "his house i": [0, 65535], "house i will": [0, 65535], "i will discharge": [0, 65535], "will discharge my": [0, 65535], "discharge my bond": [0, 65535], "my bond and": [0, 65535], "bond and thanke": [0, 65535], "and thanke you": [0, 65535], "thanke you too": [0, 65535], "you too enter": [0, 65535], "too enter antipholus": [0, 65535], "enter antipholus ephes": [0, 65535], "antipholus ephes dromio": [0, 65535], "ephes dromio from": [0, 65535], "dromio from the": [0, 65535], "from the courtizans": [0, 65535], "the courtizans offi": [0, 65535], "courtizans offi that": [0, 65535], "offi that labour": [0, 65535], "that labour may": [0, 65535], "labour may you": [0, 65535], "may you saue": [0, 65535], "you saue see": [0, 65535], "saue see where": [0, 65535], "see where he": [0, 65535], "where he comes": [0, 65535], "he comes ant": [0, 65535], "comes ant while": [0, 65535], "ant while i": [0, 65535], "while i go": [0, 65535], "i go to": [0, 65535], "go to the": [0, 65535], "to the goldsmiths": [0, 65535], "the goldsmiths house": [0, 65535], "goldsmiths house go": [0, 65535], "house go thou": [0, 65535], "go thou and": [0, 65535], "thou and buy": [0, 65535], "and buy a": [0, 65535], "buy a ropes": [0, 65535], "a ropes end": [0, 65535], "ropes end that": [0, 65535], "end that will": [0, 65535], "that will i": [0, 65535], "i bestow among": [0, 65535], "bestow among my": [0, 65535], "among my wife": [0, 65535], "wife and their": [0, 65535], "and their confederates": [0, 65535], "their confederates for": [0, 65535], "confederates for locking": [0, 65535], "for locking me": [0, 65535], "locking me out": [0, 65535], "me out of": [0, 65535], "out of my": [0, 65535], "of my doores": [0, 65535], "my doores by": [0, 65535], "doores by day": [0, 65535], "by day but": [0, 65535], "day but soft": [0, 65535], "but soft i": [0, 65535], "soft i see": [0, 65535], "see the goldsmith": [0, 65535], "the goldsmith get": [0, 65535], "goldsmith get thee": [0, 65535], "get thee gone": [0, 65535], "thee gone buy": [0, 65535], "gone buy thou": [0, 65535], "buy thou a": [0, 65535], "thou a rope": [0, 65535], "a rope and": [0, 65535], "rope and bring": [0, 65535], "and bring it": [0, 65535], "it home to": [0, 65535], "home to me": [0, 65535], "to me dro": [0, 65535], "me dro i": [0, 65535], "dro i buy": [0, 65535], "i buy a": [0, 65535], "buy a thousand": [0, 65535], "a thousand pound": [0, 65535], "thousand pound a": [0, 65535], "pound a yeare": [0, 65535], "a yeare i": [0, 65535], "yeare i buy": [0, 65535], "buy a rope": [0, 65535], "a rope exit": [0, 65535], "rope exit dromio": [0, 65535], "exit dromio eph": [0, 65535], "dromio eph ant": [0, 65535], "eph ant a": [0, 65535], "ant a man": [0, 65535], "man is well": [0, 65535], "is well holpe": [0, 65535], "well holpe vp": [0, 65535], "holpe vp that": [0, 65535], "vp that trusts": [0, 65535], "that trusts to": [0, 65535], "trusts to you": [0, 65535], "to you i": [0, 65535], "you i promised": [0, 65535], "i promised your": [0, 65535], "promised your presence": [0, 65535], "your presence and": [0, 65535], "presence and the": [0, 65535], "and the chaine": [0, 65535], "the chaine but": [0, 65535], "chaine but neither": [0, 65535], "but neither chaine": [0, 65535], "neither chaine nor": [0, 65535], "chaine nor goldsmith": [0, 65535], "nor goldsmith came": [0, 65535], "goldsmith came to": [0, 65535], "came to me": [0, 65535], "to me belike": [0, 65535], "me belike you": [0, 65535], "belike you thought": [0, 65535], "you thought our": [0, 65535], "thought our loue": [0, 65535], "our loue would": [0, 65535], "loue would last": [0, 65535], "would last too": [0, 65535], "last too long": [0, 65535], "too long if": [0, 65535], "long if it": [0, 65535], "it were chain'd": [0, 65535], "were chain'd together": [0, 65535], "chain'd together and": [0, 65535], "together and therefore": [0, 65535], "and therefore came": [0, 65535], "therefore came not": [0, 65535], "came not gold": [0, 65535], "not gold sauing": [0, 65535], "gold sauing your": [0, 65535], "sauing your merrie": [0, 65535], "merrie humor here's": [0, 65535], "humor here's the": [0, 65535], "here's the note": [0, 65535], "the note how": [0, 65535], "note how much": [0, 65535], "how much your": [0, 65535], "much your chaine": [0, 65535], "your chaine weighs": [0, 65535], "chaine weighs to": [0, 65535], "weighs to the": [0, 65535], "to the vtmost": [0, 65535], "the vtmost charect": [0, 65535], "vtmost charect the": [0, 65535], "charect the finenesse": [0, 65535], "the finenesse of": [0, 65535], "finenesse of the": [0, 65535], "of the gold": [0, 65535], "the gold and": [0, 65535], "gold and chargefull": [0, 65535], "and chargefull fashion": [0, 65535], "chargefull fashion which": [0, 65535], "fashion which doth": [0, 65535], "which doth amount": [0, 65535], "doth amount to": [0, 65535], "amount to three": [0, 65535], "to three odde": [0, 65535], "three odde duckets": [0, 65535], "odde duckets more": [0, 65535], "duckets more then": [0, 65535], "more then i": [0, 65535], "then i stand": [0, 65535], "i stand debted": [0, 65535], "stand debted to": [0, 65535], "debted to this": [0, 65535], "to this gentleman": [0, 65535], "this gentleman i": [0, 65535], "gentleman i pray": [0, 65535], "pray you see": [0, 65535], "you see him": [0, 65535], "see him presently": [0, 65535], "him presently discharg'd": [0, 65535], "presently discharg'd for": [0, 65535], "discharg'd for he": [0, 65535], "for he is": [0, 65535], "he is bound": [0, 65535], "is bound to": [0, 65535], "bound to sea": [0, 65535], "to sea and": [0, 65535], "sea and stayes": [0, 65535], "and stayes but": [0, 65535], "stayes but for": [0, 65535], "but for it": [0, 65535], "for it anti": [0, 65535], "it anti i": [0, 65535], "anti i am": [0, 65535], "am not furnish'd": [0, 65535], "not furnish'd with": [0, 65535], "furnish'd with the": [0, 65535], "with the present": [0, 65535], "the present monie": [0, 65535], "present monie besides": [0, 65535], "monie besides i": [0, 65535], "besides i haue": [0, 65535], "haue some businesse": [0, 65535], "some businesse in": [0, 65535], "businesse in the": [0, 65535], "the towne good": [0, 65535], "towne good signior": [0, 65535], "good signior take": [0, 65535], "signior take the": [0, 65535], "take the stranger": [0, 65535], "the stranger to": [0, 65535], "stranger to my": [0, 65535], "my house and": [0, 65535], "house and with": [0, 65535], "and with you": [0, 65535], "with you take": [0, 65535], "you take the": [0, 65535], "take the chaine": [0, 65535], "the chaine and": [0, 65535], "chaine and bid": [0, 65535], "and bid my": [0, 65535], "bid my wife": [0, 65535], "my wife disburse": [0, 65535], "wife disburse the": [0, 65535], "disburse the summe": [0, 65535], "the summe on": [0, 65535], "summe on the": [0, 65535], "on the receit": [0, 65535], "the receit thereof": [0, 65535], "receit thereof perchance": [0, 65535], "thereof perchance i": [0, 65535], "perchance i will": [0, 65535], "will be there": [0, 65535], "be there as": [0, 65535], "there as soone": [0, 65535], "as soone as": [0, 65535], "soone as you": [0, 65535], "as you gold": [0, 65535], "you gold then": [0, 65535], "gold then you": [0, 65535], "then you will": [0, 65535], "will bring the": [0, 65535], "bring the chaine": [0, 65535], "the chaine to": [0, 65535], "chaine to her": [0, 65535], "to her your": [0, 65535], "her your selfe": [0, 65535], "your selfe anti": [0, 65535], "selfe anti no": [0, 65535], "anti no beare": [0, 65535], "no beare it": [0, 65535], "beare it with": [0, 65535], "it with you": [0, 65535], "with you least": [0, 65535], "you least i": [0, 65535], "least i come": [0, 65535], "i come not": [0, 65535], "come not time": [0, 65535], "not time enough": [0, 65535], "time enough gold": [0, 65535], "enough gold well": [0, 65535], "gold well sir": [0, 65535], "sir i will": [0, 65535], "i will haue": [0, 65535], "will haue you": [0, 65535], "haue you the": [0, 65535], "you the chaine": [0, 65535], "chaine about you": [0, 65535], "about you ant": [0, 65535], "you ant and": [0, 65535], "ant and if": [0, 65535], "and if i": [0, 65535], "if i haue": [0, 65535], "haue not sir": [0, 65535], "not sir i": [0, 65535], "sir i hope": [0, 65535], "i hope you": [0, 65535], "hope you haue": [0, 65535], "you haue or": [0, 65535], "haue or else": [0, 65535], "or else you": [0, 65535], "else you may": [0, 65535], "you may returne": [0, 65535], "may returne without": [0, 65535], "returne without your": [0, 65535], "without your money": [0, 65535], "your money gold": [0, 65535], "money gold nay": [0, 65535], "gold nay come": [0, 65535], "nay come i": [0, 65535], "come i pray": [0, 65535], "you sir giue": [0, 65535], "sir giue me": [0, 65535], "giue me the": [0, 65535], "me the chaine": [0, 65535], "the chaine both": [0, 65535], "chaine both winde": [0, 65535], "both winde and": [0, 65535], "winde and tide": [0, 65535], "and tide stayes": [0, 65535], "tide stayes for": [0, 65535], "stayes for this": [0, 65535], "for this gentleman": [0, 65535], "this gentleman and": [0, 65535], "gentleman and i": [0, 65535], "and i too": [0, 65535], "i too blame": [0, 65535], "too blame haue": [0, 65535], "blame haue held": [0, 65535], "haue held him": [0, 65535], "held him heere": [0, 65535], "him heere too": [0, 65535], "heere too long": [0, 65535], "too long anti": [0, 65535], "long anti good": [0, 65535], "anti good lord": [0, 65535], "good lord you": [0, 65535], "lord you vse": [0, 65535], "you vse this": [0, 65535], "vse this dalliance": [0, 65535], "this dalliance to": [0, 65535], "dalliance to excuse": [0, 65535], "to excuse your": [0, 65535], "excuse your breach": [0, 65535], "your breach of": [0, 65535], "breach of promise": [0, 65535], "of promise to": [0, 65535], "promise to the": [0, 65535], "the porpentine i": [0, 65535], "porpentine i should": [0, 65535], "i should haue": [0, 65535], "should haue chid": [0, 65535], "haue chid you": [0, 65535], "chid you for": [0, 65535], "you for not": [0, 65535], "for not bringing": [0, 65535], "not bringing it": [0, 65535], "bringing it but": [0, 65535], "it but like": [0, 65535], "but like a": [0, 65535], "like a shrew": [0, 65535], "a shrew you": [0, 65535], "shrew you first": [0, 65535], "you first begin": [0, 65535], "first begin to": [0, 65535], "begin to brawle": [0, 65535], "to brawle mar": [0, 65535], "brawle mar the": [0, 65535], "mar the houre": [0, 65535], "the houre steales": [0, 65535], "houre steales on": [0, 65535], "steales on i": [0, 65535], "on i pray": [0, 65535], "you sir dispatch": [0, 65535], "sir dispatch gold": [0, 65535], "dispatch gold you": [0, 65535], "gold you heare": [0, 65535], "you heare how": [0, 65535], "heare how he": [0, 65535], "how he importunes": [0, 65535], "he importunes me": [0, 65535], "importunes me the": [0, 65535], "the chaine ant": [0, 65535], "chaine ant why": [0, 65535], "ant why giue": [0, 65535], "why giue it": [0, 65535], "giue it to": [0, 65535], "it to my": [0, 65535], "to my wife": [0, 65535], "wife and fetch": [0, 65535], "and fetch your": [0, 65535], "fetch your mony": [0, 65535], "your mony gold": [0, 65535], "mony gold come": [0, 65535], "gold come come": [0, 65535], "come come you": [0, 65535], "come you know": [0, 65535], "you know i": [0, 65535], "know i gaue": [0, 65535], "i gaue it": [0, 65535], "gaue it you": [0, 65535], "it you euen": [0, 65535], "you euen now": [0, 65535], "euen now either": [0, 65535], "now either send": [0, 65535], "either send the": [0, 65535], "send the chaine": [0, 65535], "the chaine or": [0, 65535], "chaine or send": [0, 65535], "or send me": [0, 65535], "send me by": [0, 65535], "me by some": [0, 65535], "by some token": [0, 65535], "some token ant": [0, 65535], "token ant fie": [0, 65535], "ant fie now": [0, 65535], "fie now you": [0, 65535], "now you run": [0, 65535], "you run this": [0, 65535], "run this humor": [0, 65535], "this humor out": [0, 65535], "humor out of": [0, 65535], "out of breath": [0, 65535], "of breath come": [0, 65535], "breath come where's": [0, 65535], "come where's the": [0, 65535], "where's the chaine": [0, 65535], "chaine i pray": [0, 65535], "pray you let": [0, 65535], "you let me": [0, 65535], "see it mar": [0, 65535], "it mar my": [0, 65535], "mar my businesse": [0, 65535], "my businesse cannot": [0, 65535], "businesse cannot brooke": [0, 65535], "cannot brooke this": [0, 65535], "brooke this dalliance": [0, 65535], "this dalliance good": [0, 65535], "dalliance good sir": [0, 65535], "good sir say": [0, 65535], "sir say whe'r": [0, 65535], "say whe'r you'l": [0, 65535], "whe'r you'l answer": [0, 65535], "you'l answer me": [0, 65535], "answer me or": [0, 65535], "me or no": [0, 65535], "or no if": [0, 65535], "no if not": [0, 65535], "if not ile": [0, 65535], "not ile leaue": [0, 65535], "ile leaue him": [0, 65535], "leaue him to": [0, 65535], "him to the": [0, 65535], "to the officer": [0, 65535], "the officer ant": [0, 65535], "officer ant i": [0, 65535], "ant i answer": [0, 65535], "i answer you": [0, 65535], "answer you what": [0, 65535], "you what should": [0, 65535], "what should i": [0, 65535], "should i answer": [0, 65535], "answer you gold": [0, 65535], "you gold the": [0, 65535], "gold the monie": [0, 65535], "the monie that": [0, 65535], "monie that you": [0, 65535], "that you owe": [0, 65535], "you owe me": [0, 65535], "owe me for": [0, 65535], "me for the": [0, 65535], "chaine ant i": [0, 65535], "ant i owe": [0, 65535], "i owe you": [0, 65535], "owe you none": [0, 65535], "you none till": [0, 65535], "none till i": [0, 65535], "till i receiue": [0, 65535], "i receiue the": [0, 65535], "receiue the chaine": [0, 65535], "the chaine gold": [0, 65535], "chaine gold you": [0, 65535], "gold you know": [0, 65535], "it you halfe": [0, 65535], "you halfe an": [0, 65535], "halfe an houre": [0, 65535], "an houre since": [0, 65535], "houre since ant": [0, 65535], "since ant you": [0, 65535], "ant you gaue": [0, 65535], "gaue me none": [0, 65535], "me none you": [0, 65535], "none you wrong": [0, 65535], "you wrong mee": [0, 65535], "wrong mee much": [0, 65535], "mee much to": [0, 65535], "much to say": [0, 65535], "to say so": [0, 65535], "say so gold": [0, 65535], "so gold you": [0, 65535], "gold you wrong": [0, 65535], "you wrong me": [0, 65535], "wrong me more": [0, 65535], "me more sir": [0, 65535], "more sir in": [0, 65535], "sir in denying": [0, 65535], "in denying it": [0, 65535], "denying it consider": [0, 65535], "it consider how": [0, 65535], "consider how it": [0, 65535], "how it stands": [0, 65535], "it stands vpon": [0, 65535], "stands vpon my": [0, 65535], "vpon my credit": [0, 65535], "my credit mar": [0, 65535], "credit mar well": [0, 65535], "mar well officer": [0, 65535], "well officer arrest": [0, 65535], "officer arrest him": [0, 65535], "arrest him at": [0, 65535], "him at my": [0, 65535], "at my suite": [0, 65535], "my suite offi": [0, 65535], "suite offi i": [0, 65535], "offi i do": [0, 65535], "i do and": [0, 65535], "do and charge": [0, 65535], "and charge you": [0, 65535], "charge you in": [0, 65535], "you in the": [0, 65535], "in the dukes": [0, 65535], "the dukes name": [0, 65535], "dukes name to": [0, 65535], "name to obey": [0, 65535], "to obey me": [0, 65535], "obey me gold": [0, 65535], "me gold this": [0, 65535], "gold this touches": [0, 65535], "this touches me": [0, 65535], "touches me in": [0, 65535], "me in reputation": [0, 65535], "in reputation either": [0, 65535], "reputation either consent": [0, 65535], "either consent to": [0, 65535], "consent to pay": [0, 65535], "to pay this": [0, 65535], "pay this sum": [0, 65535], "this sum for": [0, 65535], "sum for me": [0, 65535], "for me or": [0, 65535], "me or i": [0, 65535], "or i attach": [0, 65535], "i attach you": [0, 65535], "this officer ant": [0, 65535], "officer ant consent": [0, 65535], "ant consent to": [0, 65535], "to pay thee": [0, 65535], "pay thee that": [0, 65535], "thee that i": [0, 65535], "that i neuer": [0, 65535], "i neuer had": [0, 65535], "neuer had arrest": [0, 65535], "had arrest me": [0, 65535], "arrest me foolish": [0, 65535], "me foolish fellow": [0, 65535], "foolish fellow if": [0, 65535], "fellow if thou": [0, 65535], "thou dar'st gold": [0, 65535], "dar'st gold heere": [0, 65535], "gold heere is": [0, 65535], "heere is thy": [0, 65535], "is thy fee": [0, 65535], "thy fee arrest": [0, 65535], "fee arrest him": [0, 65535], "arrest him officer": [0, 65535], "him officer i": [0, 65535], "officer i would": [0, 65535], "i would not": [0, 65535], "would not spare": [0, 65535], "not spare my": [0, 65535], "spare my brother": [0, 65535], "my brother in": [0, 65535], "brother in this": [0, 65535], "in this case": [0, 65535], "this case if": [0, 65535], "case if he": [0, 65535], "if he should": [0, 65535], "he should scorne": [0, 65535], "should scorne me": [0, 65535], "scorne me so": [0, 65535], "me so apparantly": [0, 65535], "so apparantly offic": [0, 65535], "apparantly offic i": [0, 65535], "offic i do": [0, 65535], "i do arrest": [0, 65535], "do arrest you": [0, 65535], "arrest you sir": [0, 65535], "you sir you": [0, 65535], "sir you heare": [0, 65535], "you heare the": [0, 65535], "heare the suite": [0, 65535], "the suite ant": [0, 65535], "suite ant i": [0, 65535], "ant i do": [0, 65535], "i do obey": [0, 65535], "do obey thee": [0, 65535], "obey thee till": [0, 65535], "thee till i": [0, 65535], "till i giue": [0, 65535], "i giue thee": [0, 65535], "giue thee baile": [0, 65535], "thee baile but": [0, 65535], "baile but sirrah": [0, 65535], "but sirrah you": [0, 65535], "sirrah you shall": [0, 65535], "you shall buy": [0, 65535], "shall buy this": [0, 65535], "buy this sport": [0, 65535], "this sport as": [0, 65535], "sport as deere": [0, 65535], "as deere as": [0, 65535], "deere as all": [0, 65535], "as all the": [0, 65535], "all the mettall": [0, 65535], "the mettall in": [0, 65535], "mettall in your": [0, 65535], "in your shop": [0, 65535], "your shop will": [0, 65535], "shop will answer": [0, 65535], "will answer gold": [0, 65535], "answer gold sir": [0, 65535], "gold sir sir": [0, 65535], "sir sir i": [0, 65535], "sir i shall": [0, 65535], "shall haue law": [0, 65535], "haue law in": [0, 65535], "law in ephesus": [0, 65535], "in ephesus to": [0, 65535], "ephesus to your": [0, 65535], "to your notorious": [0, 65535], "your notorious shame": [0, 65535], "notorious shame i": [0, 65535], "shame i doubt": [0, 65535], "i doubt it": [0, 65535], "doubt it not": [0, 65535], "it not enter": [0, 65535], "not enter dromio": [0, 65535], "enter dromio sira": [0, 65535], "dromio sira from": [0, 65535], "sira from the": [0, 65535], "from the bay": [0, 65535], "the bay dro": [0, 65535], "bay dro master": [0, 65535], "dro master there's": [0, 65535], "master there's a": [0, 65535], "there's a barke": [0, 65535], "a barke of": [0, 65535], "barke of epidamium": [0, 65535], "of epidamium that": [0, 65535], "epidamium that staies": [0, 65535], "that staies but": [0, 65535], "staies but till": [0, 65535], "but till her": [0, 65535], "till her owner": [0, 65535], "her owner comes": [0, 65535], "owner comes aboord": [0, 65535], "comes aboord and": [0, 65535], "aboord and then": [0, 65535], "and then sir": [0, 65535], "then sir she": [0, 65535], "sir she beares": [0, 65535], "she beares away": [0, 65535], "beares away our": [0, 65535], "away our fraughtage": [0, 65535], "our fraughtage sir": [0, 65535], "fraughtage sir i": [0, 65535], "i haue conuei'd": [0, 65535], "haue conuei'd aboord": [0, 65535], "conuei'd aboord and": [0, 65535], "aboord and i": [0, 65535], "and i haue": [0, 65535], "i haue bought": [0, 65535], "haue bought the": [0, 65535], "bought the oyle": [0, 65535], "the oyle the": [0, 65535], "oyle the balsamum": [0, 65535], "the balsamum and": [0, 65535], "balsamum and aqua": [0, 65535], "and aqua vit\u00e6": [0, 65535], "aqua vit\u00e6 the": [0, 65535], "vit\u00e6 the ship": [0, 65535], "the ship is": [0, 65535], "ship is in": [0, 65535], "is in her": [0, 65535], "in her trim": [0, 65535], "her trim the": [0, 65535], "trim the merrie": [0, 65535], "the merrie winde": [0, 65535], "merrie winde blowes": [0, 65535], "winde blowes faire": [0, 65535], "blowes faire from": [0, 65535], "faire from land": [0, 65535], "from land they": [0, 65535], "land they stay": [0, 65535], "they stay for": [0, 65535], "stay for nought": [0, 65535], "for nought at": [0, 65535], "nought at all": [0, 65535], "at all but": [0, 65535], "all but for": [0, 65535], "but for their": [0, 65535], "for their owner": [0, 65535], "their owner master": [0, 65535], "owner master and": [0, 65535], "master and your": [0, 65535], "and your selfe": [0, 65535], "your selfe an": [0, 65535], "selfe an how": [0, 65535], "an how now": [0, 65535], "how now a": [0, 65535], "now a madman": [0, 65535], "a madman why": [0, 65535], "madman why thou": [0, 65535], "why thou peeuish": [0, 65535], "thou peeuish sheep": [0, 65535], "peeuish sheep what": [0, 65535], "sheep what ship": [0, 65535], "what ship of": [0, 65535], "ship of epidamium": [0, 65535], "of epidamium staies": [0, 65535], "epidamium staies for": [0, 65535], "staies for me": [0, 65535], "for me s": [0, 65535], "s dro a": [0, 65535], "dro a ship": [0, 65535], "a ship you": [0, 65535], "ship you sent": [0, 65535], "sent me too": [0, 65535], "me too to": [0, 65535], "too to hier": [0, 65535], "to hier waftage": [0, 65535], "hier waftage ant": [0, 65535], "waftage ant thou": [0, 65535], "ant thou drunken": [0, 65535], "thou drunken slaue": [0, 65535], "drunken slaue i": [0, 65535], "slaue i sent": [0, 65535], "i sent thee": [0, 65535], "sent thee for": [0, 65535], "for a rope": [0, 65535], "rope and told": [0, 65535], "and told thee": [0, 65535], "told thee to": [0, 65535], "thee to what": [0, 65535], "to what purpose": [0, 65535], "what purpose and": [0, 65535], "purpose and what": [0, 65535], "and what end": [0, 65535], "what end s": [0, 65535], "end s dro": [0, 65535], "s dro you": [0, 65535], "dro you sent": [0, 65535], "sent me for": [0, 65535], "for a ropes": [0, 65535], "ropes end as": [0, 65535], "end as soone": [0, 65535], "as soone you": [0, 65535], "soone you sent": [0, 65535], "sent me to": [0, 65535], "the bay sir": [0, 65535], "bay sir for": [0, 65535], "sir for a": [0, 65535], "for a barke": [0, 65535], "a barke ant": [0, 65535], "barke ant i": [0, 65535], "ant i will": [0, 65535], "i will debate": [0, 65535], "will debate this": [0, 65535], "debate this matter": [0, 65535], "this matter at": [0, 65535], "matter at more": [0, 65535], "at more leisure": [0, 65535], "more leisure and": [0, 65535], "leisure and teach": [0, 65535], "and teach your": [0, 65535], "teach your eares": [0, 65535], "your eares to": [0, 65535], "eares to list": [0, 65535], "to list me": [0, 65535], "list me with": [0, 65535], "me with more": [0, 65535], "with more heede": [0, 65535], "more heede to": [0, 65535], "heede to adriana": [0, 65535], "to adriana villaine": [0, 65535], "adriana villaine hie": [0, 65535], "villaine hie thee": [0, 65535], "hie thee straight": [0, 65535], "thee straight giue": [0, 65535], "straight giue her": [0, 65535], "giue her this": [0, 65535], "her this key": [0, 65535], "this key and": [0, 65535], "key and tell": [0, 65535], "tell her in": [0, 65535], "her in the": [0, 65535], "in the deske": [0, 65535], "the deske that's": [0, 65535], "deske that's couer'd": [0, 65535], "that's couer'd o're": [0, 65535], "couer'd o're with": [0, 65535], "o're with turkish": [0, 65535], "with turkish tapistrie": [0, 65535], "turkish tapistrie there": [0, 65535], "tapistrie there is": [0, 65535], "is a purse": [0, 65535], "a purse of": [0, 65535], "of duckets let": [0, 65535], "duckets let her": [0, 65535], "let her send": [0, 65535], "her send it": [0, 65535], "send it tell": [0, 65535], "it tell her": [0, 65535], "tell her i": [0, 65535], "her i am": [0, 65535], "i am arrested": [0, 65535], "am arrested in": [0, 65535], "arrested in the": [0, 65535], "in the streete": [0, 65535], "the streete and": [0, 65535], "streete and that": [0, 65535], "and that shall": [0, 65535], "that shall baile": [0, 65535], "shall baile me": [0, 65535], "baile me hie": [0, 65535], "me hie thee": [0, 65535], "hie thee slaue": [0, 65535], "thee slaue be": [0, 65535], "slaue be gone": [0, 65535], "be gone on": [0, 65535], "gone on officer": [0, 65535], "on officer to": [0, 65535], "officer to prison": [0, 65535], "to prison till": [0, 65535], "prison till it": [0, 65535], "till it come": [0, 65535], "it come exeunt": [0, 65535], "come exeunt s": [0, 65535], "exeunt s dromio": [0, 65535], "s dromio to": [0, 65535], "dromio to adriana": [0, 65535], "to adriana that": [0, 65535], "adriana that is": [0, 65535], "that is where": [0, 65535], "is where we": [0, 65535], "where we din'd": [0, 65535], "we din'd where": [0, 65535], "din'd where dowsabell": [0, 65535], "where dowsabell did": [0, 65535], "dowsabell did claime": [0, 65535], "did claime me": [0, 65535], "claime me for": [0, 65535], "me for her": [0, 65535], "for her husband": [0, 65535], "her husband she": [0, 65535], "husband she is": [0, 65535], "she is too": [0, 65535], "is too bigge": [0, 65535], "too bigge i": [0, 65535], "bigge i hope": [0, 65535], "i hope for": [0, 65535], "hope for me": [0, 65535], "me to compasse": [0, 65535], "to compasse thither": [0, 65535], "compasse thither i": [0, 65535], "thither i must": [0, 65535], "i must although": [0, 65535], "must although against": [0, 65535], "although against my": [0, 65535], "against my will": [0, 65535], "my will for": [0, 65535], "will for seruants": [0, 65535], "for seruants must": [0, 65535], "seruants must their": [0, 65535], "must their masters": [0, 65535], "their masters mindes": [0, 65535], "masters mindes fulfill": [0, 65535], "mindes fulfill exit": [0, 65535], "fulfill exit enter": [0, 65535], "exit enter adriana": [0, 65535], "and luciana adr": [0, 65535], "luciana adr ah": [0, 65535], "adr ah luciana": [0, 65535], "ah luciana did": [0, 65535], "luciana did he": [0, 65535], "did he tempt": [0, 65535], "he tempt thee": [0, 65535], "tempt thee so": [0, 65535], "thee so might'st": [0, 65535], "so might'st thou": [0, 65535], "might'st thou perceiue": [0, 65535], "thou perceiue austeerely": [0, 65535], "perceiue austeerely in": [0, 65535], "austeerely in his": [0, 65535], "in his eie": [0, 65535], "his eie that": [0, 65535], "eie that he": [0, 65535], "he did plead": [0, 65535], "did plead in": [0, 65535], "plead in earnest": [0, 65535], "in earnest yea": [0, 65535], "earnest yea or": [0, 65535], "yea or no": [0, 65535], "or no look'd": [0, 65535], "no look'd he": [0, 65535], "look'd he or": [0, 65535], "he or red": [0, 65535], "or red or": [0, 65535], "red or pale": [0, 65535], "or pale or": [0, 65535], "pale or sad": [0, 65535], "or sad or": [0, 65535], "sad or merrily": [0, 65535], "or merrily what": [0, 65535], "merrily what obseruation": [0, 65535], "what obseruation mad'st": [0, 65535], "obseruation mad'st thou": [0, 65535], "mad'st thou in": [0, 65535], "thou in this": [0, 65535], "this case oh": [0, 65535], "case oh his": [0, 65535], "oh his hearts": [0, 65535], "his hearts meteors": [0, 65535], "hearts meteors tilting": [0, 65535], "meteors tilting in": [0, 65535], "tilting in his": [0, 65535], "his face luc": [0, 65535], "face luc first": [0, 65535], "luc first he": [0, 65535], "first he deni'de": [0, 65535], "he deni'de you": [0, 65535], "deni'de you had": [0, 65535], "you had in": [0, 65535], "had in him": [0, 65535], "in him no": [0, 65535], "him no right": [0, 65535], "no right adr": [0, 65535], "right adr he": [0, 65535], "adr he meant": [0, 65535], "he meant he": [0, 65535], "meant he did": [0, 65535], "he did me": [0, 65535], "did me none": [0, 65535], "me none the": [0, 65535], "none the more": [0, 65535], "the more my": [0, 65535], "more my spight": [0, 65535], "my spight luc": [0, 65535], "spight luc then": [0, 65535], "luc then swore": [0, 65535], "then swore he": [0, 65535], "swore he that": [0, 65535], "he that he": [0, 65535], "was a stranger": [0, 65535], "a stranger heere": [0, 65535], "stranger heere adr": [0, 65535], "heere adr and": [0, 65535], "adr and true": [0, 65535], "and true he": [0, 65535], "true he swore": [0, 65535], "he swore though": [0, 65535], "swore though yet": [0, 65535], "though yet forsworne": [0, 65535], "yet forsworne hee": [0, 65535], "forsworne hee were": [0, 65535], "hee were luc": [0, 65535], "were luc then": [0, 65535], "luc then pleaded": [0, 65535], "then pleaded i": [0, 65535], "pleaded i for": [0, 65535], "i for you": [0, 65535], "for you adr": [0, 65535], "you adr and": [0, 65535], "adr and what": [0, 65535], "and what said": [0, 65535], "what said he": [0, 65535], "said he luc": [0, 65535], "he luc that": [0, 65535], "luc that loue": [0, 65535], "that loue i": [0, 65535], "loue i begg'd": [0, 65535], "i begg'd for": [0, 65535], "begg'd for you": [0, 65535], "for you he": [0, 65535], "you he begg'd": [0, 65535], "he begg'd of": [0, 65535], "begg'd of me": [0, 65535], "of me adr": [0, 65535], "me adr with": [0, 65535], "adr with what": [0, 65535], "with what perswasion": [0, 65535], "what perswasion did": [0, 65535], "perswasion did he": [0, 65535], "he tempt thy": [0, 65535], "tempt thy loue": [0, 65535], "thy loue luc": [0, 65535], "loue luc with": [0, 65535], "luc with words": [0, 65535], "with words that": [0, 65535], "words that in": [0, 65535], "that in an": [0, 65535], "in an honest": [0, 65535], "an honest suit": [0, 65535], "honest suit might": [0, 65535], "suit might moue": [0, 65535], "might moue first": [0, 65535], "moue first he": [0, 65535], "first he did": [0, 65535], "he did praise": [0, 65535], "did praise my": [0, 65535], "praise my beautie": [0, 65535], "my beautie then": [0, 65535], "beautie then my": [0, 65535], "then my speech": [0, 65535], "my speech adr": [0, 65535], "speech adr did'st": [0, 65535], "adr did'st speake": [0, 65535], "did'st speake him": [0, 65535], "speake him faire": [0, 65535], "him faire luc": [0, 65535], "faire luc haue": [0, 65535], "luc haue patience": [0, 65535], "haue patience i": [0, 65535], "patience i beseech": [0, 65535], "i beseech adr": [0, 65535], "beseech adr i": [0, 65535], "adr i cannot": [0, 65535], "i cannot nor": [0, 65535], "cannot nor i": [0, 65535], "nor i will": [0, 65535], "will not hold": [0, 65535], "not hold me": [0, 65535], "hold me still": [0, 65535], "me still my": [0, 65535], "still my tongue": [0, 65535], "my tongue though": [0, 65535], "tongue though not": [0, 65535], "though not my": [0, 65535], "not my heart": [0, 65535], "my heart shall": [0, 65535], "heart shall haue": [0, 65535], "shall haue his": [0, 65535], "haue his will": [0, 65535], "his will he": [0, 65535], "will he is": [0, 65535], "he is deformed": [0, 65535], "is deformed crooked": [0, 65535], "deformed crooked old": [0, 65535], "crooked old and": [0, 65535], "old and sere": [0, 65535], "and sere ill": [0, 65535], "sere ill fac'd": [0, 65535], "ill fac'd worse": [0, 65535], "fac'd worse bodied": [0, 65535], "worse bodied shapelesse": [0, 65535], "bodied shapelesse euery": [0, 65535], "shapelesse euery where": [0, 65535], "euery where vicious": [0, 65535], "where vicious vngentle": [0, 65535], "vicious vngentle foolish": [0, 65535], "vngentle foolish blunt": [0, 65535], "foolish blunt vnkinde": [0, 65535], "blunt vnkinde stigmaticall": [0, 65535], "vnkinde stigmaticall in": [0, 65535], "stigmaticall in making": [0, 65535], "in making worse": [0, 65535], "making worse in": [0, 65535], "worse in minde": [0, 65535], "in minde luc": [0, 65535], "minde luc who": [0, 65535], "luc who would": [0, 65535], "who would be": [0, 65535], "would be iealous": [0, 65535], "be iealous then": [0, 65535], "iealous then of": [0, 65535], "then of such": [0, 65535], "a one no": [0, 65535], "one no euill": [0, 65535], "no euill lost": [0, 65535], "euill lost is": [0, 65535], "lost is wail'd": [0, 65535], "is wail'd when": [0, 65535], "wail'd when it": [0, 65535], "when it is": [0, 65535], "it is gone": [0, 65535], "is gone adr": [0, 65535], "gone adr ah": [0, 65535], "adr ah but": [0, 65535], "ah but i": [0, 65535], "i thinke him": [0, 65535], "thinke him better": [0, 65535], "him better then": [0, 65535], "better then i": [0, 65535], "then i say": [0, 65535], "i say and": [0, 65535], "say and yet": [0, 65535], "and yet would": [0, 65535], "yet would herein": [0, 65535], "would herein others": [0, 65535], "herein others eies": [0, 65535], "others eies were": [0, 65535], "eies were worse": [0, 65535], "were worse farre": [0, 65535], "worse farre from": [0, 65535], "farre from her": [0, 65535], "from her nest": [0, 65535], "her nest the": [0, 65535], "nest the lapwing": [0, 65535], "the lapwing cries": [0, 65535], "lapwing cries away": [0, 65535], "cries away my": [0, 65535], "away my heart": [0, 65535], "my heart praies": [0, 65535], "heart praies for": [0, 65535], "praies for him": [0, 65535], "for him though": [0, 65535], "him though my": [0, 65535], "though my tongue": [0, 65535], "my tongue doe": [0, 65535], "tongue doe curse": [0, 65535], "doe curse enter": [0, 65535], "curse enter s": [0, 65535], "enter s dromio": [0, 65535], "s dromio dro": [0, 65535], "dromio dro here": [0, 65535], "dro here goe": [0, 65535], "here goe the": [0, 65535], "goe the deske": [0, 65535], "the deske the": [0, 65535], "deske the purse": [0, 65535], "the purse sweet": [0, 65535], "purse sweet now": [0, 65535], "sweet now make": [0, 65535], "now make haste": [0, 65535], "make haste luc": [0, 65535], "haste luc how": [0, 65535], "luc how hast": [0, 65535], "how hast thou": [0, 65535], "hast thou lost": [0, 65535], "thou lost thy": [0, 65535], "lost thy breath": [0, 65535], "thy breath s": [0, 65535], "breath s dro": [0, 65535], "dro by running": [0, 65535], "by running fast": [0, 65535], "running fast adr": [0, 65535], "fast adr where": [0, 65535], "adr where is": [0, 65535], "where is thy": [0, 65535], "is thy master": [0, 65535], "thy master dromio": [0, 65535], "master dromio is": [0, 65535], "dromio is he": [0, 65535], "is he well": [0, 65535], "he well s": [0, 65535], "well s dro": [0, 65535], "dro no he's": [0, 65535], "no he's in": [0, 65535], "he's in tartar": [0, 65535], "in tartar limbo": [0, 65535], "tartar limbo worse": [0, 65535], "limbo worse then": [0, 65535], "worse then hell": [0, 65535], "then hell a": [0, 65535], "hell a diuell": [0, 65535], "a diuell in": [0, 65535], "diuell in an": [0, 65535], "in an euerlasting": [0, 65535], "an euerlasting garment": [0, 65535], "euerlasting garment hath": [0, 65535], "garment hath him": [0, 65535], "hath him on": [0, 65535], "him on whose": [0, 65535], "on whose hard": [0, 65535], "whose hard heart": [0, 65535], "hard heart is": [0, 65535], "heart is button'd": [0, 65535], "is button'd vp": [0, 65535], "button'd vp with": [0, 65535], "vp with steele": [0, 65535], "with steele a": [0, 65535], "steele a feind": [0, 65535], "a feind a": [0, 65535], "feind a fairie": [0, 65535], "a fairie pittilesse": [0, 65535], "fairie pittilesse and": [0, 65535], "pittilesse and ruffe": [0, 65535], "and ruffe a": [0, 65535], "ruffe a wolfe": [0, 65535], "a wolfe nay": [0, 65535], "wolfe nay worse": [0, 65535], "nay worse a": [0, 65535], "worse a fellow": [0, 65535], "a fellow all": [0, 65535], "fellow all in": [0, 65535], "all in buffe": [0, 65535], "in buffe a": [0, 65535], "buffe a back": [0, 65535], "a back friend": [0, 65535], "back friend a": [0, 65535], "friend a shoulder": [0, 65535], "a shoulder clapper": [0, 65535], "shoulder clapper one": [0, 65535], "clapper one that": [0, 65535], "one that countermads": [0, 65535], "that countermads the": [0, 65535], "countermads the passages": [0, 65535], "the passages of": [0, 65535], "passages of allies": [0, 65535], "of allies creekes": [0, 65535], "allies creekes and": [0, 65535], "creekes and narrow": [0, 65535], "and narrow lands": [0, 65535], "narrow lands a": [0, 65535], "lands a hound": [0, 65535], "a hound that": [0, 65535], "hound that runs": [0, 65535], "that runs counter": [0, 65535], "runs counter and": [0, 65535], "counter and yet": [0, 65535], "and yet draws": [0, 65535], "yet draws drifoot": [0, 65535], "draws drifoot well": [0, 65535], "drifoot well one": [0, 65535], "well one that": [0, 65535], "one that before": [0, 65535], "that before the": [0, 65535], "before the iudgment": [0, 65535], "the iudgment carries": [0, 65535], "iudgment carries poore": [0, 65535], "carries poore soules": [0, 65535], "poore soules to": [0, 65535], "soules to hel": [0, 65535], "to hel adr": [0, 65535], "hel adr why": [0, 65535], "adr why man": [0, 65535], "why man what": [0, 65535], "man what is": [0, 65535], "the matter s": [0, 65535], "matter s dro": [0, 65535], "dro i doe": [0, 65535], "know the matter": [0, 65535], "the matter hee": [0, 65535], "matter hee is": [0, 65535], "hee is rested": [0, 65535], "is rested on": [0, 65535], "rested on the": [0, 65535], "on the case": [0, 65535], "the case adr": [0, 65535], "case adr what": [0, 65535], "adr what is": [0, 65535], "what is he": [0, 65535], "is he arrested": [0, 65535], "he arrested tell": [0, 65535], "arrested tell me": [0, 65535], "tell me at": [0, 65535], "me at whose": [0, 65535], "at whose suite": [0, 65535], "whose suite s": [0, 65535], "suite s dro": [0, 65535], "dro i know": [0, 65535], "know not at": [0, 65535], "not at whose": [0, 65535], "whose suite he": [0, 65535], "suite he is": [0, 65535], "he is arested": [0, 65535], "is arested well": [0, 65535], "arested well but": [0, 65535], "well but is": [0, 65535], "but is in": [0, 65535], "is in a": [0, 65535], "in a suite": [0, 65535], "a suite of": [0, 65535], "suite of buffe": [0, 65535], "of buffe which": [0, 65535], "buffe which rested": [0, 65535], "which rested him": [0, 65535], "rested him that": [0, 65535], "him that can": [0, 65535], "that can i": [0, 65535], "can i tell": [0, 65535], "i tell will": [0, 65535], "tell will you": [0, 65535], "will you send": [0, 65535], "you send him": [0, 65535], "send him mistris": [0, 65535], "him mistris redemption": [0, 65535], "mistris redemption the": [0, 65535], "redemption the monie": [0, 65535], "the monie in": [0, 65535], "monie in his": [0, 65535], "in his deske": [0, 65535], "his deske adr": [0, 65535], "deske adr go": [0, 65535], "adr go fetch": [0, 65535], "go fetch it": [0, 65535], "fetch it sister": [0, 65535], "it sister this": [0, 65535], "sister this i": [0, 65535], "this i wonder": [0, 65535], "i wonder at": [0, 65535], "wonder at exit": [0, 65535], "at exit luciana": [0, 65535], "exit luciana thus": [0, 65535], "luciana thus he": [0, 65535], "thus he vnknowne": [0, 65535], "he vnknowne to": [0, 65535], "vnknowne to me": [0, 65535], "to me should": [0, 65535], "me should be": [0, 65535], "should be in": [0, 65535], "be in debt": [0, 65535], "in debt tell": [0, 65535], "debt tell me": [0, 65535], "tell me was": [0, 65535], "me was he": [0, 65535], "was he arested": [0, 65535], "he arested on": [0, 65535], "arested on a": [0, 65535], "on a band": [0, 65535], "a band s": [0, 65535], "band s dro": [0, 65535], "dro not on": [0, 65535], "not on a": [0, 65535], "a band but": [0, 65535], "band but on": [0, 65535], "but on a": [0, 65535], "on a stronger": [0, 65535], "a stronger thing": [0, 65535], "stronger thing a": [0, 65535], "thing a chaine": [0, 65535], "a chaine a": [0, 65535], "chaine a chaine": [0, 65535], "a chaine doe": [0, 65535], "chaine doe you": [0, 65535], "doe you not": [0, 65535], "you not here": [0, 65535], "not here it": [0, 65535], "here it ring": [0, 65535], "it ring adria": [0, 65535], "ring adria what": [0, 65535], "adria what the": [0, 65535], "what the chaine": [0, 65535], "the chaine s": [0, 65535], "chaine s dro": [0, 65535], "dro no no": [0, 65535], "no no the": [0, 65535], "no the bell": [0, 65535], "the bell 'tis": [0, 65535], "bell 'tis time": [0, 65535], "'tis time that": [0, 65535], "i were gone": [0, 65535], "were gone it": [0, 65535], "gone it was": [0, 65535], "it was two": [0, 65535], "was two ere": [0, 65535], "two ere i": [0, 65535], "ere i left": [0, 65535], "i left him": [0, 65535], "him and now": [0, 65535], "now the clocke": [0, 65535], "the clocke strikes": [0, 65535], "clocke strikes one": [0, 65535], "strikes one adr": [0, 65535], "one adr the": [0, 65535], "adr the houres": [0, 65535], "the houres come": [0, 65535], "houres come backe": [0, 65535], "come backe that": [0, 65535], "backe that did": [0, 65535], "that did i": [0, 65535], "did i neuer": [0, 65535], "i neuer here": [0, 65535], "neuer here s": [0, 65535], "here s dro": [0, 65535], "dro oh yes": [0, 65535], "oh yes if": [0, 65535], "yes if any": [0, 65535], "if any houre": [0, 65535], "any houre meete": [0, 65535], "houre meete a": [0, 65535], "meete a serieant": [0, 65535], "a serieant a": [0, 65535], "serieant a turnes": [0, 65535], "a turnes backe": [0, 65535], "turnes backe for": [0, 65535], "backe for verie": [0, 65535], "for verie feare": [0, 65535], "verie feare adri": [0, 65535], "feare adri as": [0, 65535], "adri as if": [0, 65535], "as if time": [0, 65535], "if time were": [0, 65535], "time were in": [0, 65535], "were in debt": [0, 65535], "in debt how": [0, 65535], "debt how fondly": [0, 65535], "how fondly do'st": [0, 65535], "fondly do'st thou": [0, 65535], "do'st thou reason": [0, 65535], "thou reason s": [0, 65535], "s dro time": [0, 65535], "dro time is": [0, 65535], "time is a": [0, 65535], "is a verie": [0, 65535], "a verie bankerout": [0, 65535], "verie bankerout and": [0, 65535], "bankerout and owes": [0, 65535], "and owes more": [0, 65535], "owes more then": [0, 65535], "more then he's": [0, 65535], "then he's worth": [0, 65535], "he's worth to": [0, 65535], "worth to season": [0, 65535], "to season nay": [0, 65535], "season nay he's": [0, 65535], "nay he's a": [0, 65535], "he's a theefe": [0, 65535], "a theefe too": [0, 65535], "theefe too haue": [0, 65535], "too haue you": [0, 65535], "haue you not": [0, 65535], "you not heard": [0, 65535], "not heard men": [0, 65535], "heard men say": [0, 65535], "men say that": [0, 65535], "say that time": [0, 65535], "that time comes": [0, 65535], "time comes stealing": [0, 65535], "comes stealing on": [0, 65535], "stealing on by": [0, 65535], "on by night": [0, 65535], "by night and": [0, 65535], "night and day": [0, 65535], "and day if": [0, 65535], "day if i": [0, 65535], "if i be": [0, 65535], "i be in": [0, 65535], "in debt and": [0, 65535], "debt and theft": [0, 65535], "and theft and": [0, 65535], "theft and a": [0, 65535], "and a serieant": [0, 65535], "a serieant in": [0, 65535], "serieant in the": [0, 65535], "in the way": [0, 65535], "the way hath": [0, 65535], "way hath he": [0, 65535], "he not reason": [0, 65535], "not reason to": [0, 65535], "reason to turne": [0, 65535], "to turne backe": [0, 65535], "turne backe an": [0, 65535], "backe an houre": [0, 65535], "an houre in": [0, 65535], "houre in a": [0, 65535], "in a day": [0, 65535], "a day enter": [0, 65535], "day enter luciana": [0, 65535], "enter luciana adr": [0, 65535], "luciana adr go": [0, 65535], "adr go dromio": [0, 65535], "go dromio there's": [0, 65535], "dromio there's the": [0, 65535], "there's the monie": [0, 65535], "the monie beare": [0, 65535], "monie beare it": [0, 65535], "beare it straight": [0, 65535], "it straight and": [0, 65535], "straight and bring": [0, 65535], "and bring thy": [0, 65535], "bring thy master": [0, 65535], "master home imediately": [0, 65535], "home imediately come": [0, 65535], "imediately come sister": [0, 65535], "come sister i": [0, 65535], "sister i am": [0, 65535], "i am prest": [0, 65535], "am prest downe": [0, 65535], "prest downe with": [0, 65535], "downe with conceit": [0, 65535], "with conceit conceit": [0, 65535], "conceit conceit my": [0, 65535], "conceit my comfort": [0, 65535], "my comfort and": [0, 65535], "comfort and my": [0, 65535], "and my iniurie": [0, 65535], "my iniurie exit": [0, 65535], "iniurie exit enter": [0, 65535], "exit enter antipholus": [0, 65535], "enter antipholus siracusia": [0, 65535], "antipholus siracusia there's": [0, 65535], "siracusia there's not": [0, 65535], "there's not a": [0, 65535], "a man i": [0, 65535], "man i meete": [0, 65535], "i meete but": [0, 65535], "meete but doth": [0, 65535], "but doth salute": [0, 65535], "doth salute me": [0, 65535], "salute me as": [0, 65535], "me as if": [0, 65535], "as if i": [0, 65535], "if i were": [0, 65535], "i were their": [0, 65535], "were their well": [0, 65535], "their well acquainted": [0, 65535], "well acquainted friend": [0, 65535], "acquainted friend and": [0, 65535], "friend and euerie": [0, 65535], "and euerie one": [0, 65535], "euerie one doth": [0, 65535], "one doth call": [0, 65535], "call me by": [0, 65535], "me by my": [0, 65535], "by my name": [0, 65535], "my name some": [0, 65535], "name some tender": [0, 65535], "some tender monie": [0, 65535], "tender monie to": [0, 65535], "monie to me": [0, 65535], "to me some": [0, 65535], "me some inuite": [0, 65535], "some inuite me": [0, 65535], "inuite me some": [0, 65535], "me some other": [0, 65535], "some other giue": [0, 65535], "other giue me": [0, 65535], "giue me thankes": [0, 65535], "me thankes for": [0, 65535], "thankes for kindnesses": [0, 65535], "for kindnesses some": [0, 65535], "kindnesses some offer": [0, 65535], "some offer me": [0, 65535], "offer me commodities": [0, 65535], "me commodities to": [0, 65535], "commodities to buy": [0, 65535], "to buy euen": [0, 65535], "buy euen now": [0, 65535], "euen now a": [0, 65535], "now a tailor": [0, 65535], "a tailor cal'd": [0, 65535], "tailor cal'd me": [0, 65535], "cal'd me in": [0, 65535], "me in his": [0, 65535], "in his shop": [0, 65535], "his shop and": [0, 65535], "shop and show'd": [0, 65535], "and show'd me": [0, 65535], "show'd me silkes": [0, 65535], "me silkes that": [0, 65535], "silkes that he": [0, 65535], "he had bought": [0, 65535], "had bought for": [0, 65535], "bought for me": [0, 65535], "me and therewithall": [0, 65535], "and therewithall tooke": [0, 65535], "therewithall tooke measure": [0, 65535], "tooke measure of": [0, 65535], "measure of my": [0, 65535], "of my body": [0, 65535], "my body sure": [0, 65535], "body sure these": [0, 65535], "sure these are": [0, 65535], "these are but": [0, 65535], "are but imaginarie": [0, 65535], "but imaginarie wiles": [0, 65535], "imaginarie wiles and": [0, 65535], "wiles and lapland": [0, 65535], "and lapland sorcerers": [0, 65535], "lapland sorcerers inhabite": [0, 65535], "sorcerers inhabite here": [0, 65535], "inhabite here enter": [0, 65535], "here enter dromio": [0, 65535], "enter dromio sir": [0, 65535], "dromio sir s": [0, 65535], "dro master here's": [0, 65535], "master here's the": [0, 65535], "here's the gold": [0, 65535], "gold you sent": [0, 65535], "me for what": [0, 65535], "for what haue": [0, 65535], "what haue you": [0, 65535], "haue you got": [0, 65535], "you got the": [0, 65535], "got the picture": [0, 65535], "the picture of": [0, 65535], "picture of old": [0, 65535], "of old adam": [0, 65535], "old adam new": [0, 65535], "adam new apparel'd": [0, 65535], "new apparel'd ant": [0, 65535], "apparel'd ant what": [0, 65535], "ant what gold": [0, 65535], "what gold is": [0, 65535], "gold is this": [0, 65535], "is this what": [0, 65535], "this what adam": [0, 65535], "what adam do'st": [0, 65535], "adam do'st thou": [0, 65535], "do'st thou meane": [0, 65535], "thou meane s": [0, 65535], "meane s dro": [0, 65535], "dro not that": [0, 65535], "not that adam": [0, 65535], "that adam that": [0, 65535], "adam that kept": [0, 65535], "that kept the": [0, 65535], "kept the paradise": [0, 65535], "the paradise but": [0, 65535], "paradise but that": [0, 65535], "but that adam": [0, 65535], "adam that keepes": [0, 65535], "that keepes the": [0, 65535], "keepes the prison": [0, 65535], "the prison hee": [0, 65535], "prison hee that": [0, 65535], "hee that goes": [0, 65535], "that goes in": [0, 65535], "goes in the": [0, 65535], "in the calues": [0, 65535], "the calues skin": [0, 65535], "calues skin that": [0, 65535], "skin that was": [0, 65535], "that was kil'd": [0, 65535], "was kil'd for": [0, 65535], "kil'd for the": [0, 65535], "for the prodigall": [0, 65535], "the prodigall hee": [0, 65535], "prodigall hee that": [0, 65535], "hee that came": [0, 65535], "that came behinde": [0, 65535], "came behinde you": [0, 65535], "behinde you sir": [0, 65535], "you sir like": [0, 65535], "sir like an": [0, 65535], "like an euill": [0, 65535], "an euill angel": [0, 65535], "euill angel and": [0, 65535], "angel and bid": [0, 65535], "and bid you": [0, 65535], "bid you forsake": [0, 65535], "you forsake your": [0, 65535], "forsake your libertie": [0, 65535], "your libertie ant": [0, 65535], "libertie ant i": [0, 65535], "ant i vnderstand": [0, 65535], "i vnderstand thee": [0, 65535], "vnderstand thee not": [0, 65535], "thee not s": [0, 65535], "not s dro": [0, 65535], "dro no why": [0, 65535], "no why 'tis": [0, 65535], "why 'tis a": [0, 65535], "'tis a plaine": [0, 65535], "a plaine case": [0, 65535], "plaine case he": [0, 65535], "case he that": [0, 65535], "he that went": [0, 65535], "that went like": [0, 65535], "went like a": [0, 65535], "like a base": [0, 65535], "a base viole": [0, 65535], "base viole in": [0, 65535], "viole in a": [0, 65535], "in a case": [0, 65535], "a case of": [0, 65535], "case of leather": [0, 65535], "of leather the": [0, 65535], "leather the man": [0, 65535], "the man sir": [0, 65535], "man sir that": [0, 65535], "sir that when": [0, 65535], "that when gentlemen": [0, 65535], "when gentlemen are": [0, 65535], "gentlemen are tired": [0, 65535], "are tired giues": [0, 65535], "tired giues them": [0, 65535], "giues them a": [0, 65535], "them a sob": [0, 65535], "a sob and": [0, 65535], "sob and rests": [0, 65535], "and rests them": [0, 65535], "rests them he": [0, 65535], "them he sir": [0, 65535], "he sir that": [0, 65535], "sir that takes": [0, 65535], "that takes pittie": [0, 65535], "takes pittie on": [0, 65535], "pittie on decaied": [0, 65535], "on decaied men": [0, 65535], "decaied men and": [0, 65535], "men and giues": [0, 65535], "and giues them": [0, 65535], "giues them suites": [0, 65535], "them suites of": [0, 65535], "suites of durance": [0, 65535], "of durance he": [0, 65535], "durance he that": [0, 65535], "he that sets": [0, 65535], "that sets vp": [0, 65535], "sets vp his": [0, 65535], "vp his rest": [0, 65535], "his rest to": [0, 65535], "rest to doe": [0, 65535], "to doe more": [0, 65535], "doe more exploits": [0, 65535], "more exploits with": [0, 65535], "exploits with his": [0, 65535], "with his mace": [0, 65535], "his mace then": [0, 65535], "mace then a": [0, 65535], "then a moris": [0, 65535], "a moris pike": [0, 65535], "moris pike ant": [0, 65535], "pike ant what": [0, 65535], "ant what thou": [0, 65535], "what thou mean'st": [0, 65535], "thou mean'st an": [0, 65535], "mean'st an officer": [0, 65535], "an officer s": [0, 65535], "officer s dro": [0, 65535], "i sir the": [0, 65535], "sir the serieant": [0, 65535], "the serieant of": [0, 65535], "serieant of the": [0, 65535], "of the band": [0, 65535], "the band he": [0, 65535], "band he that": [0, 65535], "he that brings": [0, 65535], "that brings any": [0, 65535], "brings any man": [0, 65535], "any man to": [0, 65535], "man to answer": [0, 65535], "to answer it": [0, 65535], "answer it that": [0, 65535], "it that breakes": [0, 65535], "that breakes his": [0, 65535], "breakes his band": [0, 65535], "his band one": [0, 65535], "band one that": [0, 65535], "one that thinkes": [0, 65535], "that thinkes a": [0, 65535], "thinkes a man": [0, 65535], "a man alwaies": [0, 65535], "man alwaies going": [0, 65535], "alwaies going to": [0, 65535], "going to bed": [0, 65535], "to bed and": [0, 65535], "bed and saies": [0, 65535], "and saies god": [0, 65535], "saies god giue": [0, 65535], "god giue you": [0, 65535], "giue you good": [0, 65535], "you good rest": [0, 65535], "good rest ant": [0, 65535], "rest ant well": [0, 65535], "well sir there": [0, 65535], "sir there rest": [0, 65535], "there rest in": [0, 65535], "rest in your": [0, 65535], "in your foolerie": [0, 65535], "your foolerie is": [0, 65535], "foolerie is there": [0, 65535], "is there any": [0, 65535], "there any ships": [0, 65535], "any ships puts": [0, 65535], "ships puts forth": [0, 65535], "puts forth to": [0, 65535], "forth to night": [0, 65535], "to night may": [0, 65535], "night may we": [0, 65535], "may we be": [0, 65535], "we be gone": [0, 65535], "be gone s": [0, 65535], "gone s dro": [0, 65535], "s dro why": [0, 65535], "dro why sir": [0, 65535], "why sir i": [0, 65535], "sir i brought": [0, 65535], "i brought you": [0, 65535], "brought you word": [0, 65535], "you word an": [0, 65535], "word an houre": [0, 65535], "houre since that": [0, 65535], "since that the": [0, 65535], "that the barke": [0, 65535], "the barke expedition": [0, 65535], "barke expedition put": [0, 65535], "expedition put forth": [0, 65535], "put forth to": [0, 65535], "to night and": [0, 65535], "night and then": [0, 65535], "and then were": [0, 65535], "then were you": [0, 65535], "were you hindred": [0, 65535], "you hindred by": [0, 65535], "hindred by the": [0, 65535], "by the serieant": [0, 65535], "the serieant to": [0, 65535], "serieant to tarry": [0, 65535], "to tarry for": [0, 65535], "tarry for the": [0, 65535], "for the hoy": [0, 65535], "the hoy delay": [0, 65535], "hoy delay here": [0, 65535], "delay here are": [0, 65535], "here are the": [0, 65535], "are the angels": [0, 65535], "the angels that": [0, 65535], "angels that you": [0, 65535], "that you sent": [0, 65535], "you sent for": [0, 65535], "sent for to": [0, 65535], "for to deliuer": [0, 65535], "to deliuer you": [0, 65535], "deliuer you ant": [0, 65535], "you ant the": [0, 65535], "ant the fellow": [0, 65535], "the fellow is": [0, 65535], "fellow is distract": [0, 65535], "is distract and": [0, 65535], "distract and so": [0, 65535], "am i and": [0, 65535], "i and here": [0, 65535], "and here we": [0, 65535], "here we wander": [0, 65535], "we wander in": [0, 65535], "wander in illusions": [0, 65535], "in illusions some": [0, 65535], "illusions some blessed": [0, 65535], "some blessed power": [0, 65535], "blessed power deliuer": [0, 65535], "power deliuer vs": [0, 65535], "deliuer vs from": [0, 65535], "vs from hence": [0, 65535], "from hence enter": [0, 65535], "hence enter a": [0, 65535], "enter a curtizan": [0, 65535], "a curtizan cur": [0, 65535], "curtizan cur well": [0, 65535], "cur well met": [0, 65535], "well met well": [0, 65535], "met well met": [0, 65535], "well met master": [0, 65535], "met master antipholus": [0, 65535], "master antipholus i": [0, 65535], "antipholus i see": [0, 65535], "i see sir": [0, 65535], "see sir you": [0, 65535], "sir you haue": [0, 65535], "you haue found": [0, 65535], "haue found the": [0, 65535], "found the gold": [0, 65535], "the gold smith": [0, 65535], "gold smith now": [0, 65535], "smith now is": [0, 65535], "now is that": [0, 65535], "is that the": [0, 65535], "that the chaine": [0, 65535], "the chaine you": [0, 65535], "chaine you promis'd": [0, 65535], "you promis'd me": [0, 65535], "promis'd me to": [0, 65535], "day ant sathan": [0, 65535], "ant sathan auoide": [0, 65535], "sathan auoide i": [0, 65535], "auoide i charge": [0, 65535], "i charge thee": [0, 65535], "charge thee tempt": [0, 65535], "thee tempt me": [0, 65535], "tempt me not": [0, 65535], "me not s": [0, 65535], "dro master is": [0, 65535], "master is this": [0, 65535], "is this mistris": [0, 65535], "this mistris sathan": [0, 65535], "mistris sathan ant": [0, 65535], "sathan ant it": [0, 65535], "ant it is": [0, 65535], "it is the": [0, 65535], "is the diuell": [0, 65535], "the diuell s": [0, 65535], "diuell s dro": [0, 65535], "dro nay she": [0, 65535], "nay she is": [0, 65535], "she is worse": [0, 65535], "is worse she": [0, 65535], "worse she is": [0, 65535], "she is the": [0, 65535], "is the diuels": [0, 65535], "the diuels dam": [0, 65535], "diuels dam and": [0, 65535], "dam and here": [0, 65535], "and here she": [0, 65535], "here she comes": [0, 65535], "she comes in": [0, 65535], "comes in the": [0, 65535], "in the habit": [0, 65535], "the habit of": [0, 65535], "habit of a": [0, 65535], "of a light": [0, 65535], "a light wench": [0, 65535], "light wench and": [0, 65535], "wench and thereof": [0, 65535], "thereof comes that": [0, 65535], "comes that the": [0, 65535], "that the wenches": [0, 65535], "the wenches say": [0, 65535], "wenches say god": [0, 65535], "say god dam": [0, 65535], "god dam me": [0, 65535], "dam me that's": [0, 65535], "me that's as": [0, 65535], "that's as much": [0, 65535], "as much to": [0, 65535], "to say god": [0, 65535], "say god make": [0, 65535], "god make me": [0, 65535], "make me a": [0, 65535], "me a light": [0, 65535], "light wench it": [0, 65535], "wench it is": [0, 65535], "it is written": [0, 65535], "is written they": [0, 65535], "written they appeare": [0, 65535], "they appeare to": [0, 65535], "appeare to men": [0, 65535], "to men like": [0, 65535], "men like angels": [0, 65535], "like angels of": [0, 65535], "angels of light": [0, 65535], "of light light": [0, 65535], "light light is": [0, 65535], "light is an": [0, 65535], "is an effect": [0, 65535], "an effect of": [0, 65535], "effect of fire": [0, 65535], "fire and fire": [0, 65535], "and fire will": [0, 65535], "fire will burne": [0, 65535], "will burne ergo": [0, 65535], "burne ergo light": [0, 65535], "ergo light wenches": [0, 65535], "light wenches will": [0, 65535], "wenches will burne": [0, 65535], "will burne come": [0, 65535], "burne come not": [0, 65535], "come not neere": [0, 65535], "not neere her": [0, 65535], "neere her cur": [0, 65535], "her cur your": [0, 65535], "cur your man": [0, 65535], "your man and": [0, 65535], "man and you": [0, 65535], "and you are": [0, 65535], "you are maruailous": [0, 65535], "are maruailous merrie": [0, 65535], "maruailous merrie sir": [0, 65535], "merrie sir will": [0, 65535], "sir will you": [0, 65535], "will you goe": [0, 65535], "you goe with": [0, 65535], "goe with me": [0, 65535], "with me wee'll": [0, 65535], "me wee'll mend": [0, 65535], "wee'll mend our": [0, 65535], "mend our dinner": [0, 65535], "our dinner here": [0, 65535], "dinner here s": [0, 65535], "dro master if": [0, 65535], "master if do": [0, 65535], "if do expect": [0, 65535], "do expect spoon": [0, 65535], "expect spoon meate": [0, 65535], "spoon meate or": [0, 65535], "meate or bespeake": [0, 65535], "or bespeake a": [0, 65535], "bespeake a long": [0, 65535], "a long spoone": [0, 65535], "long spoone ant": [0, 65535], "spoone ant why": [0, 65535], "ant why dromio": [0, 65535], "why dromio s": [0, 65535], "dromio s dro": [0, 65535], "s dro marrie": [0, 65535], "dro marrie he": [0, 65535], "marrie he must": [0, 65535], "he must haue": [0, 65535], "must haue a": [0, 65535], "haue a long": [0, 65535], "long spoone that": [0, 65535], "spoone that must": [0, 65535], "that must eate": [0, 65535], "must eate with": [0, 65535], "eate with the": [0, 65535], "with the diuell": [0, 65535], "the diuell ant": [0, 65535], "diuell ant auoid": [0, 65535], "ant auoid then": [0, 65535], "auoid then fiend": [0, 65535], "then fiend what": [0, 65535], "fiend what tel'st": [0, 65535], "what tel'st thou": [0, 65535], "tel'st thou me": [0, 65535], "thou me of": [0, 65535], "me of supping": [0, 65535], "of supping thou": [0, 65535], "supping thou art": [0, 65535], "thou art as": [0, 65535], "art as you": [0, 65535], "are all a": [0, 65535], "all a sorceresse": [0, 65535], "a sorceresse i": [0, 65535], "sorceresse i coniure": [0, 65535], "i coniure thee": [0, 65535], "coniure thee to": [0, 65535], "thee to leaue": [0, 65535], "to leaue me": [0, 65535], "leaue me and": [0, 65535], "me and be": [0, 65535], "and be gon": [0, 65535], "be gon cur": [0, 65535], "gon cur giue": [0, 65535], "cur giue me": [0, 65535], "me the ring": [0, 65535], "the ring of": [0, 65535], "ring of mine": [0, 65535], "of mine you": [0, 65535], "mine you had": [0, 65535], "you had at": [0, 65535], "had at dinner": [0, 65535], "at dinner or": [0, 65535], "dinner or for": [0, 65535], "or for my": [0, 65535], "for my diamond": [0, 65535], "my diamond the": [0, 65535], "diamond the chaine": [0, 65535], "you promis'd and": [0, 65535], "promis'd and ile": [0, 65535], "and ile be": [0, 65535], "ile be gone": [0, 65535], "be gone sir": [0, 65535], "gone sir and": [0, 65535], "sir and not": [0, 65535], "and not trouble": [0, 65535], "not trouble you": [0, 65535], "trouble you s": [0, 65535], "s dro some": [0, 65535], "dro some diuels": [0, 65535], "some diuels aske": [0, 65535], "diuels aske but": [0, 65535], "aske but the": [0, 65535], "but the parings": [0, 65535], "the parings of": [0, 65535], "parings of ones": [0, 65535], "of ones naile": [0, 65535], "ones naile a": [0, 65535], "naile a rush": [0, 65535], "a rush a": [0, 65535], "rush a haire": [0, 65535], "a haire a": [0, 65535], "haire a drop": [0, 65535], "drop of blood": [0, 65535], "of blood a": [0, 65535], "blood a pin": [0, 65535], "a pin a": [0, 65535], "pin a nut": [0, 65535], "a nut a": [0, 65535], "nut a cherrie": [0, 65535], "a cherrie stone": [0, 65535], "cherrie stone but": [0, 65535], "stone but she": [0, 65535], "but she more": [0, 65535], "she more couetous": [0, 65535], "more couetous wold": [0, 65535], "couetous wold haue": [0, 65535], "wold haue a": [0, 65535], "haue a chaine": [0, 65535], "a chaine master": [0, 65535], "chaine master be": [0, 65535], "master be wise": [0, 65535], "be wise and": [0, 65535], "wise and if": [0, 65535], "if you giue": [0, 65535], "giue it her": [0, 65535], "it her the": [0, 65535], "her the diuell": [0, 65535], "the diuell will": [0, 65535], "diuell will shake": [0, 65535], "will shake her": [0, 65535], "shake her chaine": [0, 65535], "her chaine and": [0, 65535], "chaine and fright": [0, 65535], "and fright vs": [0, 65535], "fright vs with": [0, 65535], "vs with it": [0, 65535], "with it cur": [0, 65535], "it cur i": [0, 65535], "cur i pray": [0, 65535], "you sir my": [0, 65535], "sir my ring": [0, 65535], "my ring or": [0, 65535], "ring or else": [0, 65535], "or else the": [0, 65535], "else the chaine": [0, 65535], "chaine i hope": [0, 65535], "hope you do": [0, 65535], "you do not": [0, 65535], "do not meane": [0, 65535], "not meane to": [0, 65535], "meane to cheate": [0, 65535], "to cheate me": [0, 65535], "cheate me so": [0, 65535], "me so ant": [0, 65535], "so ant auant": [0, 65535], "ant auant thou": [0, 65535], "auant thou witch": [0, 65535], "thou witch come": [0, 65535], "witch come dromio": [0, 65535], "come dromio let": [0, 65535], "dromio let vs": [0, 65535], "let vs go": [0, 65535], "vs go s": [0, 65535], "s dro flie": [0, 65535], "dro flie pride": [0, 65535], "flie pride saies": [0, 65535], "pride saies the": [0, 65535], "saies the pea": [0, 65535], "the pea cocke": [0, 65535], "pea cocke mistris": [0, 65535], "cocke mistris that": [0, 65535], "mistris that you": [0, 65535], "that you know": [0, 65535], "you know exit": [0, 65535], "know exit cur": [0, 65535], "exit cur now": [0, 65535], "cur now out": [0, 65535], "now out of": [0, 65535], "out of doubt": [0, 65535], "of doubt antipholus": [0, 65535], "doubt antipholus is": [0, 65535], "antipholus is mad": [0, 65535], "is mad else": [0, 65535], "mad else would": [0, 65535], "else would he": [0, 65535], "would he neuer": [0, 65535], "he neuer so": [0, 65535], "neuer so demeane": [0, 65535], "so demeane himselfe": [0, 65535], "demeane himselfe a": [0, 65535], "himselfe a ring": [0, 65535], "a ring he": [0, 65535], "ring he hath": [0, 65535], "he hath of": [0, 65535], "hath of mine": [0, 65535], "of mine worth": [0, 65535], "mine worth fortie": [0, 65535], "worth fortie duckets": [0, 65535], "fortie duckets and": [0, 65535], "duckets and for": [0, 65535], "the same he": [0, 65535], "same he promis'd": [0, 65535], "a chaine both": [0, 65535], "chaine both one": [0, 65535], "both one and": [0, 65535], "one and other": [0, 65535], "and other he": [0, 65535], "other he denies": [0, 65535], "he denies me": [0, 65535], "denies me now": [0, 65535], "me now the": [0, 65535], "now the reason": [0, 65535], "the reason that": [0, 65535], "reason that i": [0, 65535], "that i gather": [0, 65535], "i gather he": [0, 65535], "gather he is": [0, 65535], "is mad besides": [0, 65535], "mad besides this": [0, 65535], "besides this present": [0, 65535], "this present instance": [0, 65535], "present instance of": [0, 65535], "instance of his": [0, 65535], "of his rage": [0, 65535], "his rage is": [0, 65535], "rage is a": [0, 65535], "is a mad": [0, 65535], "a mad tale": [0, 65535], "mad tale he": [0, 65535], "tale he told": [0, 65535], "he told to": [0, 65535], "told to day": [0, 65535], "at dinner of": [0, 65535], "dinner of his": [0, 65535], "his owne doores": [0, 65535], "owne doores being": [0, 65535], "doores being shut": [0, 65535], "being shut against": [0, 65535], "shut against his": [0, 65535], "against his entrance": [0, 65535], "his entrance belike": [0, 65535], "entrance belike his": [0, 65535], "belike his wife": [0, 65535], "his wife acquainted": [0, 65535], "wife acquainted with": [0, 65535], "acquainted with his": [0, 65535], "with his fits": [0, 65535], "his fits on": [0, 65535], "fits on purpose": [0, 65535], "on purpose shut": [0, 65535], "purpose shut the": [0, 65535], "the doores against": [0, 65535], "doores against his": [0, 65535], "against his way": [0, 65535], "his way my": [0, 65535], "way my way": [0, 65535], "my way is": [0, 65535], "way is now": [0, 65535], "is now to": [0, 65535], "now to hie": [0, 65535], "to hie home": [0, 65535], "hie home to": [0, 65535], "home to his": [0, 65535], "his house and": [0, 65535], "house and tell": [0, 65535], "and tell his": [0, 65535], "tell his wife": [0, 65535], "his wife that": [0, 65535], "wife that being": [0, 65535], "that being lunaticke": [0, 65535], "being lunaticke he": [0, 65535], "lunaticke he rush'd": [0, 65535], "he rush'd into": [0, 65535], "rush'd into my": [0, 65535], "into my house": [0, 65535], "house and tooke": [0, 65535], "and tooke perforce": [0, 65535], "tooke perforce my": [0, 65535], "perforce my ring": [0, 65535], "my ring away": [0, 65535], "ring away this": [0, 65535], "away this course": [0, 65535], "this course i": [0, 65535], "course i fittest": [0, 65535], "i fittest choose": [0, 65535], "fittest choose for": [0, 65535], "choose for fortie": [0, 65535], "for fortie duckets": [0, 65535], "fortie duckets is": [0, 65535], "duckets is too": [0, 65535], "is too much": [0, 65535], "too much to": [0, 65535], "much to loose": [0, 65535], "to loose enter": [0, 65535], "loose enter antipholus": [0, 65535], "antipholus ephes with": [0, 65535], "ephes with a": [0, 65535], "with a iailor": [0, 65535], "a iailor an": [0, 65535], "iailor an feare": [0, 65535], "an feare me": [0, 65535], "feare me not": [0, 65535], "me not man": [0, 65535], "not man i": [0, 65535], "man i will": [0, 65535], "will not breake": [0, 65535], "not breake away": [0, 65535], "breake away ile": [0, 65535], "away ile giue": [0, 65535], "ile giue thee": [0, 65535], "giue thee ere": [0, 65535], "thee ere i": [0, 65535], "ere i leaue": [0, 65535], "i leaue thee": [0, 65535], "leaue thee so": [0, 65535], "thee so much": [0, 65535], "so much money": [0, 65535], "much money to": [0, 65535], "money to warrant": [0, 65535], "to warrant thee": [0, 65535], "warrant thee as": [0, 65535], "thee as i": [0, 65535], "i am rested": [0, 65535], "am rested for": [0, 65535], "rested for my": [0, 65535], "for my wife": [0, 65535], "wife is in": [0, 65535], "in a wayward": [0, 65535], "a wayward moode": [0, 65535], "wayward moode to": [0, 65535], "moode to day": [0, 65535], "day and will": [0, 65535], "will not lightly": [0, 65535], "not lightly trust": [0, 65535], "lightly trust the": [0, 65535], "trust the messenger": [0, 65535], "the messenger that": [0, 65535], "messenger that i": [0, 65535], "that i should": [0, 65535], "i should be": [0, 65535], "should be attach'd": [0, 65535], "be attach'd in": [0, 65535], "attach'd in ephesus": [0, 65535], "ephesus i tell": [0, 65535], "tell you 'twill": [0, 65535], "you 'twill sound": [0, 65535], "'twill sound harshly": [0, 65535], "sound harshly in": [0, 65535], "harshly in her": [0, 65535], "in her eares": [0, 65535], "her eares enter": [0, 65535], "eares enter dromio": [0, 65535], "dromio eph with": [0, 65535], "eph with a": [0, 65535], "with a ropes": [0, 65535], "ropes end heere": [0, 65535], "end heere comes": [0, 65535], "heere comes my": [0, 65535], "comes my man": [0, 65535], "my man i": [0, 65535], "man i thinke": [0, 65535], "thinke he brings": [0, 65535], "he brings the": [0, 65535], "brings the monie": [0, 65535], "the monie how": [0, 65535], "monie how now": [0, 65535], "now sir haue": [0, 65535], "sir haue you": [0, 65535], "haue you that": [0, 65535], "you that i": [0, 65535], "that i sent": [0, 65535], "sent you for": [0, 65535], "you for e": [0, 65535], "for e dro": [0, 65535], "dro here's that": [0, 65535], "here's that i": [0, 65535], "that i warrant": [0, 65535], "i warrant you": [0, 65535], "warrant you will": [0, 65535], "you will pay": [0, 65535], "will pay them": [0, 65535], "pay them all": [0, 65535], "them all anti": [0, 65535], "all anti but": [0, 65535], "anti but where's": [0, 65535], "but where's the": [0, 65535], "where's the money": [0, 65535], "the money e": [0, 65535], "money e dro": [0, 65535], "sir i gaue": [0, 65535], "i gaue the": [0, 65535], "gaue the monie": [0, 65535], "the monie for": [0, 65535], "monie for the": [0, 65535], "for the rope": [0, 65535], "the rope ant": [0, 65535], "rope ant fiue": [0, 65535], "ant fiue hundred": [0, 65535], "fiue hundred duckets": [0, 65535], "hundred duckets villaine": [0, 65535], "duckets villaine for": [0, 65535], "villaine for a": [0, 65535], "a rope e": [0, 65535], "rope e dro": [0, 65535], "e dro ile": [0, 65535], "dro ile serue": [0, 65535], "ile serue you": [0, 65535], "serue you sir": [0, 65535], "you sir fiue": [0, 65535], "sir fiue hundred": [0, 65535], "fiue hundred at": [0, 65535], "hundred at the": [0, 65535], "at the rate": [0, 65535], "the rate ant": [0, 65535], "rate ant to": [0, 65535], "ant to what": [0, 65535], "to what end": [0, 65535], "what end did": [0, 65535], "end did i": [0, 65535], "did i bid": [0, 65535], "i bid thee": [0, 65535], "bid thee hie": [0, 65535], "thee hie thee": [0, 65535], "hie thee home": [0, 65535], "thee home e": [0, 65535], "home e dro": [0, 65535], "dro to a": [0, 65535], "to a ropes": [0, 65535], "ropes end sir": [0, 65535], "end sir and": [0, 65535], "sir and to": [0, 65535], "and to that": [0, 65535], "to that end": [0, 65535], "that end am": [0, 65535], "end am i": [0, 65535], "am i re": [0, 65535], "i re turn'd": [0, 65535], "re turn'd ant": [0, 65535], "turn'd ant and": [0, 65535], "ant and to": [0, 65535], "that end sir": [0, 65535], "end sir i": [0, 65535], "i will welcome": [0, 65535], "will welcome you": [0, 65535], "welcome you offi": [0, 65535], "you offi good": [0, 65535], "offi good sir": [0, 65535], "good sir be": [0, 65535], "sir be patient": [0, 65535], "be patient e": [0, 65535], "patient e dro": [0, 65535], "dro nay 'tis": [0, 65535], "nay 'tis for": [0, 65535], "'tis for me": [0, 65535], "to be patient": [0, 65535], "be patient i": [0, 65535], "patient i am": [0, 65535], "i am in": [0, 65535], "am in aduersitie": [0, 65535], "in aduersitie offi": [0, 65535], "aduersitie offi good": [0, 65535], "offi good now": [0, 65535], "good now hold": [0, 65535], "now hold thy": [0, 65535], "hold thy tongue": [0, 65535], "thy tongue e": [0, 65535], "tongue e dro": [0, 65535], "dro nay rather": [0, 65535], "nay rather perswade": [0, 65535], "rather perswade him": [0, 65535], "perswade him to": [0, 65535], "him to hold": [0, 65535], "to hold his": [0, 65535], "hold his hands": [0, 65535], "his hands anti": [0, 65535], "hands anti thou": [0, 65535], "anti thou whoreson": [0, 65535], "thou whoreson senselesse": [0, 65535], "whoreson senselesse villaine": [0, 65535], "senselesse villaine e": [0, 65535], "dro i would": [0, 65535], "i would i": [0, 65535], "would i were": [0, 65535], "i were senselesse": [0, 65535], "were senselesse sir": [0, 65535], "senselesse sir that": [0, 65535], "that i might": [0, 65535], "i might not": [0, 65535], "might not feele": [0, 65535], "not feele your": [0, 65535], "feele your blowes": [0, 65535], "your blowes anti": [0, 65535], "blowes anti thou": [0, 65535], "anti thou art": [0, 65535], "thou art sensible": [0, 65535], "art sensible in": [0, 65535], "sensible in nothing": [0, 65535], "in nothing but": [0, 65535], "nothing but blowes": [0, 65535], "but blowes and": [0, 65535], "blowes and so": [0, 65535], "and so is": [0, 65535], "so is an": [0, 65535], "is an asse": [0, 65535], "an asse indeede": [0, 65535], "asse indeede you": [0, 65535], "indeede you may": [0, 65535], "you may prooue": [0, 65535], "may prooue it": [0, 65535], "prooue it by": [0, 65535], "it by my": [0, 65535], "by my long": [0, 65535], "my long eares": [0, 65535], "long eares i": [0, 65535], "eares i haue": [0, 65535], "i haue serued": [0, 65535], "haue serued him": [0, 65535], "serued him from": [0, 65535], "from the houre": [0, 65535], "the houre of": [0, 65535], "houre of my": [0, 65535], "of my natiuitie": [0, 65535], "my natiuitie to": [0, 65535], "natiuitie to this": [0, 65535], "to this instant": [0, 65535], "this instant and": [0, 65535], "instant and haue": [0, 65535], "and haue nothing": [0, 65535], "haue nothing at": [0, 65535], "nothing at his": [0, 65535], "at his hands": [0, 65535], "his hands for": [0, 65535], "hands for my": [0, 65535], "for my seruice": [0, 65535], "my seruice but": [0, 65535], "seruice but blowes": [0, 65535], "but blowes when": [0, 65535], "blowes when i": [0, 65535], "i am cold": [0, 65535], "am cold he": [0, 65535], "cold he heates": [0, 65535], "he heates me": [0, 65535], "heates me with": [0, 65535], "me with beating": [0, 65535], "with beating when": [0, 65535], "beating when i": [0, 65535], "i am warme": [0, 65535], "am warme he": [0, 65535], "warme he cooles": [0, 65535], "he cooles me": [0, 65535], "cooles me with": [0, 65535], "with beating i": [0, 65535], "beating i am": [0, 65535], "i am wak'd": [0, 65535], "am wak'd with": [0, 65535], "wak'd with it": [0, 65535], "with it when": [0, 65535], "it when i": [0, 65535], "when i sleepe": [0, 65535], "i sleepe rais'd": [0, 65535], "sleepe rais'd with": [0, 65535], "rais'd with it": [0, 65535], "when i sit": [0, 65535], "i sit driuen": [0, 65535], "sit driuen out": [0, 65535], "driuen out of": [0, 65535], "out of doores": [0, 65535], "of doores with": [0, 65535], "doores with it": [0, 65535], "when i goe": [0, 65535], "i goe from": [0, 65535], "goe from home": [0, 65535], "from home welcom'd": [0, 65535], "home welcom'd home": [0, 65535], "welcom'd home with": [0, 65535], "when i returne": [0, 65535], "i returne nay": [0, 65535], "returne nay i": [0, 65535], "nay i beare": [0, 65535], "i beare it": [0, 65535], "beare it on": [0, 65535], "it on my": [0, 65535], "on my shoulders": [0, 65535], "my shoulders as": [0, 65535], "shoulders as a": [0, 65535], "as a begger": [0, 65535], "a begger woont": [0, 65535], "begger woont her": [0, 65535], "woont her brat": [0, 65535], "her brat and": [0, 65535], "brat and i": [0, 65535], "i thinke when": [0, 65535], "thinke when he": [0, 65535], "when he hath": [0, 65535], "he hath lam'd": [0, 65535], "hath lam'd me": [0, 65535], "lam'd me i": [0, 65535], "me i shall": [0, 65535], "i shall begge": [0, 65535], "shall begge with": [0, 65535], "begge with it": [0, 65535], "with it from": [0, 65535], "it from doore": [0, 65535], "from doore to": [0, 65535], "doore to doore": [0, 65535], "to doore enter": [0, 65535], "doore enter adriana": [0, 65535], "adriana luciana courtizan": [0, 65535], "luciana courtizan and": [0, 65535], "courtizan and a": [0, 65535], "and a schoolemaster": [0, 65535], "a schoolemaster call'd": [0, 65535], "schoolemaster call'd pinch": [0, 65535], "call'd pinch ant": [0, 65535], "pinch ant come": [0, 65535], "ant come goe": [0, 65535], "come goe along": [0, 65535], "goe along my": [0, 65535], "along my wife": [0, 65535], "wife is comming": [0, 65535], "is comming yonder": [0, 65535], "comming yonder e": [0, 65535], "yonder e dro": [0, 65535], "e dro mistris": [0, 65535], "dro mistris respice": [0, 65535], "mistris respice finem": [0, 65535], "respice finem respect": [0, 65535], "finem respect your": [0, 65535], "respect your end": [0, 65535], "your end or": [0, 65535], "end or rather": [0, 65535], "or rather the": [0, 65535], "rather the prophesie": [0, 65535], "the prophesie like": [0, 65535], "prophesie like the": [0, 65535], "like the parrat": [0, 65535], "the parrat beware": [0, 65535], "parrat beware the": [0, 65535], "beware the ropes": [0, 65535], "the ropes end": [0, 65535], "ropes end anti": [0, 65535], "end anti wilt": [0, 65535], "anti wilt thou": [0, 65535], "wilt thou still": [0, 65535], "thou still talke": [0, 65535], "still talke beats": [0, 65535], "talke beats dro": [0, 65535], "beats dro curt": [0, 65535], "dro curt how": [0, 65535], "curt how say": [0, 65535], "how say you": [0, 65535], "say you now": [0, 65535], "you now is": [0, 65535], "now is not": [0, 65535], "not your husband": [0, 65535], "your husband mad": [0, 65535], "husband mad adri": [0, 65535], "mad adri his": [0, 65535], "adri his inciuility": [0, 65535], "his inciuility confirmes": [0, 65535], "inciuility confirmes no": [0, 65535], "confirmes no lesse": [0, 65535], "no lesse good": [0, 65535], "lesse good doctor": [0, 65535], "good doctor pinch": [0, 65535], "doctor pinch you": [0, 65535], "pinch you are": [0, 65535], "are a coniurer": [0, 65535], "a coniurer establish": [0, 65535], "coniurer establish him": [0, 65535], "establish him in": [0, 65535], "him in his": [0, 65535], "in his true": [0, 65535], "his true sence": [0, 65535], "true sence againe": [0, 65535], "sence againe and": [0, 65535], "againe and i": [0, 65535], "i will please": [0, 65535], "will please you": [0, 65535], "please you what": [0, 65535], "you what you": [0, 65535], "you will demand": [0, 65535], "will demand luc": [0, 65535], "demand luc alas": [0, 65535], "luc alas how": [0, 65535], "alas how fiery": [0, 65535], "how fiery and": [0, 65535], "fiery and how": [0, 65535], "and how sharpe": [0, 65535], "how sharpe he": [0, 65535], "sharpe he lookes": [0, 65535], "he lookes cur": [0, 65535], "lookes cur marke": [0, 65535], "cur marke how": [0, 65535], "marke how he": [0, 65535], "how he trembles": [0, 65535], "he trembles in": [0, 65535], "trembles in his": [0, 65535], "in his extasie": [0, 65535], "his extasie pinch": [0, 65535], "extasie pinch giue": [0, 65535], "pinch giue me": [0, 65535], "giue me your": [0, 65535], "me your hand": [0, 65535], "your hand and": [0, 65535], "hand and let": [0, 65535], "and let mee": [0, 65535], "let mee feele": [0, 65535], "mee feele your": [0, 65535], "feele your pulse": [0, 65535], "your pulse ant": [0, 65535], "pulse ant there": [0, 65535], "ant there is": [0, 65535], "there is my": [0, 65535], "is my hand": [0, 65535], "my hand and": [0, 65535], "and let it": [0, 65535], "let it feele": [0, 65535], "it feele your": [0, 65535], "feele your eare": [0, 65535], "your eare pinch": [0, 65535], "eare pinch i": [0, 65535], "pinch i charge": [0, 65535], "charge thee sathan": [0, 65535], "thee sathan hous'd": [0, 65535], "sathan hous'd within": [0, 65535], "hous'd within this": [0, 65535], "within this man": [0, 65535], "this man to": [0, 65535], "man to yeeld": [0, 65535], "to yeeld possession": [0, 65535], "yeeld possession to": [0, 65535], "possession to my": [0, 65535], "to my holie": [0, 65535], "my holie praiers": [0, 65535], "holie praiers and": [0, 65535], "praiers and to": [0, 65535], "and to thy": [0, 65535], "to thy state": [0, 65535], "thy state of": [0, 65535], "state of darknesse": [0, 65535], "of darknesse hie": [0, 65535], "darknesse hie thee": [0, 65535], "thee straight i": [0, 65535], "straight i coniure": [0, 65535], "coniure thee by": [0, 65535], "thee by all": [0, 65535], "all the saints": [0, 65535], "the saints in": [0, 65535], "saints in heauen": [0, 65535], "in heauen anti": [0, 65535], "heauen anti peace": [0, 65535], "anti peace doting": [0, 65535], "peace doting wizard": [0, 65535], "doting wizard peace": [0, 65535], "wizard peace i": [0, 65535], "peace i am": [0, 65535], "am not mad": [0, 65535], "not mad adr": [0, 65535], "mad adr oh": [0, 65535], "adr oh that": [0, 65535], "oh that thou": [0, 65535], "that thou wer't": [0, 65535], "thou wer't not": [0, 65535], "wer't not poore": [0, 65535], "not poore distressed": [0, 65535], "poore distressed soule": [0, 65535], "distressed soule anti": [0, 65535], "soule anti you": [0, 65535], "anti you minion": [0, 65535], "you minion you": [0, 65535], "minion you are": [0, 65535], "you are these": [0, 65535], "are these your": [0, 65535], "these your customers": [0, 65535], "your customers did": [0, 65535], "customers did this": [0, 65535], "did this companion": [0, 65535], "this companion with": [0, 65535], "companion with the": [0, 65535], "with the saffron": [0, 65535], "the saffron face": [0, 65535], "saffron face reuell": [0, 65535], "face reuell and": [0, 65535], "reuell and feast": [0, 65535], "and feast it": [0, 65535], "feast it at": [0, 65535], "it at my": [0, 65535], "at my house": [0, 65535], "my house to": [0, 65535], "house to day": [0, 65535], "to day whil'st": [0, 65535], "day whil'st vpon": [0, 65535], "whil'st vpon me": [0, 65535], "vpon me the": [0, 65535], "me the guiltie": [0, 65535], "the guiltie doores": [0, 65535], "guiltie doores were": [0, 65535], "doores were shut": [0, 65535], "were shut and": [0, 65535], "shut and i": [0, 65535], "and i denied": [0, 65535], "i denied to": [0, 65535], "denied to enter": [0, 65535], "to enter in": [0, 65535], "enter in my": [0, 65535], "my house adr": [0, 65535], "house adr o": [0, 65535], "adr o husband": [0, 65535], "o husband god": [0, 65535], "husband god doth": [0, 65535], "god doth know": [0, 65535], "doth know you": [0, 65535], "know you din'd": [0, 65535], "you din'd at": [0, 65535], "at home where": [0, 65535], "home where would": [0, 65535], "where would you": [0, 65535], "would you had": [0, 65535], "you had remain'd": [0, 65535], "had remain'd vntill": [0, 65535], "remain'd vntill this": [0, 65535], "vntill this time": [0, 65535], "this time free": [0, 65535], "time free from": [0, 65535], "free from these": [0, 65535], "from these slanders": [0, 65535], "these slanders and": [0, 65535], "slanders and this": [0, 65535], "and this open": [0, 65535], "this open shame": [0, 65535], "open shame anti": [0, 65535], "shame anti din'd": [0, 65535], "anti din'd at": [0, 65535], "at home thou": [0, 65535], "home thou villaine": [0, 65535], "thou villaine what": [0, 65535], "villaine what sayest": [0, 65535], "what sayest thou": [0, 65535], "sayest thou dro": [0, 65535], "thou dro sir": [0, 65535], "dro sir sooth": [0, 65535], "sir sooth to": [0, 65535], "sooth to say": [0, 65535], "to say you": [0, 65535], "say you did": [0, 65535], "you did not": [0, 65535], "did not dine": [0, 65535], "not dine at": [0, 65535], "dine at home": [0, 65535], "at home ant": [0, 65535], "home ant were": [0, 65535], "ant were not": [0, 65535], "were not my": [0, 65535], "not my doores": [0, 65535], "my doores lockt": [0, 65535], "doores lockt vp": [0, 65535], "lockt vp and": [0, 65535], "vp and i": [0, 65535], "and i shut": [0, 65535], "i shut out": [0, 65535], "shut out dro": [0, 65535], "out dro perdie": [0, 65535], "dro perdie your": [0, 65535], "perdie your doores": [0, 65535], "your doores were": [0, 65535], "doores were lockt": [0, 65535], "were lockt and": [0, 65535], "lockt and you": [0, 65535], "and you shut": [0, 65535], "you shut out": [0, 65535], "shut out anti": [0, 65535], "out anti and": [0, 65535], "anti and did": [0, 65535], "did not she": [0, 65535], "not she her": [0, 65535], "she her selfe": [0, 65535], "her selfe reuile": [0, 65535], "selfe reuile me": [0, 65535], "reuile me there": [0, 65535], "me there dro": [0, 65535], "there dro sans": [0, 65535], "dro sans fable": [0, 65535], "sans fable she": [0, 65535], "fable she her": [0, 65535], "her selfe reuil'd": [0, 65535], "selfe reuil'd you": [0, 65535], "reuil'd you there": [0, 65535], "you there anti": [0, 65535], "there anti did": [0, 65535], "anti did not": [0, 65535], "did not her": [0, 65535], "not her kitchen": [0, 65535], "her kitchen maide": [0, 65535], "kitchen maide raile": [0, 65535], "maide raile taunt": [0, 65535], "raile taunt and": [0, 65535], "taunt and scorne": [0, 65535], "and scorne me": [0, 65535], "scorne me dro": [0, 65535], "me dro certis": [0, 65535], "dro certis she": [0, 65535], "certis she did": [0, 65535], "she did the": [0, 65535], "did the kitchin": [0, 65535], "the kitchin vestall": [0, 65535], "kitchin vestall scorn'd": [0, 65535], "vestall scorn'd you": [0, 65535], "scorn'd you ant": [0, 65535], "ant and did": [0, 65535], "did not i": [0, 65535], "not i in": [0, 65535], "i in rage": [0, 65535], "in rage depart": [0, 65535], "rage depart from": [0, 65535], "depart from thence": [0, 65535], "from thence dro": [0, 65535], "thence dro in": [0, 65535], "dro in veritie": [0, 65535], "in veritie you": [0, 65535], "veritie you did": [0, 65535], "you did my": [0, 65535], "did my bones": [0, 65535], "my bones beares": [0, 65535], "bones beares witnesse": [0, 65535], "beares witnesse that": [0, 65535], "witnesse that since": [0, 65535], "that since haue": [0, 65535], "since haue felt": [0, 65535], "haue felt the": [0, 65535], "felt the vigor": [0, 65535], "the vigor of": [0, 65535], "vigor of his": [0, 65535], "his rage adr": [0, 65535], "rage adr is't": [0, 65535], "adr is't good": [0, 65535], "is't good to": [0, 65535], "good to sooth": [0, 65535], "to sooth him": [0, 65535], "sooth him in": [0, 65535], "him in these": [0, 65535], "in these contraries": [0, 65535], "these contraries pinch": [0, 65535], "contraries pinch it": [0, 65535], "pinch it is": [0, 65535], "is no shame": [0, 65535], "no shame the": [0, 65535], "shame the fellow": [0, 65535], "the fellow finds": [0, 65535], "fellow finds his": [0, 65535], "finds his vaine": [0, 65535], "his vaine and": [0, 65535], "vaine and yeelding": [0, 65535], "and yeelding to": [0, 65535], "yeelding to him": [0, 65535], "to him humors": [0, 65535], "him humors well": [0, 65535], "humors well his": [0, 65535], "well his frensie": [0, 65535], "his frensie ant": [0, 65535], "frensie ant thou": [0, 65535], "thou hast subborn'd": [0, 65535], "hast subborn'd the": [0, 65535], "subborn'd the goldsmith": [0, 65535], "the goldsmith to": [0, 65535], "goldsmith to arrest": [0, 65535], "to arrest mee": [0, 65535], "arrest mee adr": [0, 65535], "mee adr alas": [0, 65535], "adr alas i": [0, 65535], "alas i sent": [0, 65535], "you monie to": [0, 65535], "monie to redeeme": [0, 65535], "to redeeme you": [0, 65535], "redeeme you by": [0, 65535], "by dromio heere": [0, 65535], "dromio heere who": [0, 65535], "heere who came": [0, 65535], "who came in": [0, 65535], "came in hast": [0, 65535], "in hast for": [0, 65535], "hast for it": [0, 65535], "for it dro": [0, 65535], "it dro monie": [0, 65535], "dro monie by": [0, 65535], "monie by me": [0, 65535], "by me heart": [0, 65535], "me heart and": [0, 65535], "heart and good": [0, 65535], "and good will": [0, 65535], "good will you": [0, 65535], "will you might": [0, 65535], "you might but": [0, 65535], "might but surely": [0, 65535], "but surely master": [0, 65535], "surely master not": [0, 65535], "master not a": [0, 65535], "not a ragge": [0, 65535], "a ragge of": [0, 65535], "ragge of monie": [0, 65535], "of monie ant": [0, 65535], "monie ant wentst": [0, 65535], "ant wentst not": [0, 65535], "wentst not thou": [0, 65535], "not thou to": [0, 65535], "thou to her": [0, 65535], "to her for": [0, 65535], "her for a": [0, 65535], "for a purse": [0, 65535], "of duckets adri": [0, 65535], "duckets adri he": [0, 65535], "adri he came": [0, 65535], "he came to": [0, 65535], "to me and": [0, 65535], "and i deliuer'd": [0, 65535], "i deliuer'd it": [0, 65535], "deliuer'd it luci": [0, 65535], "it luci and": [0, 65535], "luci and i": [0, 65535], "and i am": [0, 65535], "i am witnesse": [0, 65535], "am witnesse with": [0, 65535], "witnesse with her": [0, 65535], "with her that": [0, 65535], "her that she": [0, 65535], "that she did": [0, 65535], "she did dro": [0, 65535], "did dro god": [0, 65535], "dro god and": [0, 65535], "god and the": [0, 65535], "and the rope": [0, 65535], "the rope maker": [0, 65535], "rope maker beare": [0, 65535], "maker beare me": [0, 65535], "beare me witnesse": [0, 65535], "me witnesse that": [0, 65535], "witnesse that i": [0, 65535], "that i was": [0, 65535], "i was sent": [0, 65535], "was sent for": [0, 65535], "sent for nothing": [0, 65535], "but a rope": [0, 65535], "a rope pinch": [0, 65535], "rope pinch mistris": [0, 65535], "pinch mistris both": [0, 65535], "mistris both man": [0, 65535], "both man and": [0, 65535], "and master is": [0, 65535], "master is possest": [0, 65535], "is possest i": [0, 65535], "possest i know": [0, 65535], "know it by": [0, 65535], "it by their": [0, 65535], "by their pale": [0, 65535], "their pale and": [0, 65535], "pale and deadly": [0, 65535], "and deadly lookes": [0, 65535], "deadly lookes they": [0, 65535], "lookes they must": [0, 65535], "they must be": [0, 65535], "must be bound": [0, 65535], "be bound and": [0, 65535], "bound and laide": [0, 65535], "and laide in": [0, 65535], "laide in some": [0, 65535], "in some darke": [0, 65535], "some darke roome": [0, 65535], "darke roome ant": [0, 65535], "roome ant say": [0, 65535], "ant say wherefore": [0, 65535], "say wherefore didst": [0, 65535], "wherefore didst thou": [0, 65535], "didst thou locke": [0, 65535], "thou locke me": [0, 65535], "locke me forth": [0, 65535], "me forth to": [0, 65535], "forth to day": [0, 65535], "day and why": [0, 65535], "and why dost": [0, 65535], "why dost thou": [0, 65535], "dost thou denie": [0, 65535], "thou denie the": [0, 65535], "denie the bagge": [0, 65535], "the bagge of": [0, 65535], "bagge of gold": [0, 65535], "of gold adr": [0, 65535], "gold adr i": [0, 65535], "adr i did": [0, 65535], "did not gentle": [0, 65535], "not gentle husband": [0, 65535], "gentle husband locke": [0, 65535], "husband locke thee": [0, 65535], "locke thee forth": [0, 65535], "thee forth dro": [0, 65535], "forth dro and": [0, 65535], "dro and gentle": [0, 65535], "and gentle mr": [0, 65535], "gentle mr i": [0, 65535], "mr i receiu'd": [0, 65535], "i receiu'd no": [0, 65535], "no gold but": [0, 65535], "gold but i": [0, 65535], "but i confesse": [0, 65535], "i confesse sir": [0, 65535], "confesse sir that": [0, 65535], "sir that we": [0, 65535], "that we were": [0, 65535], "we were lock'd": [0, 65535], "were lock'd out": [0, 65535], "lock'd out adr": [0, 65535], "out adr dissembling": [0, 65535], "adr dissembling villain": [0, 65535], "dissembling villain thou": [0, 65535], "villain thou speak'st": [0, 65535], "thou speak'st false": [0, 65535], "speak'st false in": [0, 65535], "false in both": [0, 65535], "in both ant": [0, 65535], "both ant dissembling": [0, 65535], "ant dissembling harlot": [0, 65535], "dissembling harlot thou": [0, 65535], "harlot thou art": [0, 65535], "thou art false": [0, 65535], "art false in": [0, 65535], "false in all": [0, 65535], "in all and": [0, 65535], "all and art": [0, 65535], "and art confederate": [0, 65535], "art confederate with": [0, 65535], "confederate with a": [0, 65535], "with a damned": [0, 65535], "a damned packe": [0, 65535], "damned packe to": [0, 65535], "packe to make": [0, 65535], "make a loathsome": [0, 65535], "a loathsome abiect": [0, 65535], "loathsome abiect scorne": [0, 65535], "abiect scorne of": [0, 65535], "scorne of me": [0, 65535], "of me but": [0, 65535], "me but with": [0, 65535], "but with these": [0, 65535], "with these nailes": [0, 65535], "these nailes ile": [0, 65535], "nailes ile plucke": [0, 65535], "ile plucke out": [0, 65535], "plucke out these": [0, 65535], "out these false": [0, 65535], "these false eyes": [0, 65535], "false eyes that": [0, 65535], "eyes that would": [0, 65535], "that would behold": [0, 65535], "would behold in": [0, 65535], "behold in me": [0, 65535], "in me this": [0, 65535], "me this shamefull": [0, 65535], "this shamefull sport": [0, 65535], "shamefull sport enter": [0, 65535], "sport enter three": [0, 65535], "enter three or": [0, 65535], "three or foure": [0, 65535], "or foure and": [0, 65535], "foure and offer": [0, 65535], "and offer to": [0, 65535], "offer to binde": [0, 65535], "to binde him": [0, 65535], "binde him hee": [0, 65535], "him hee striues": [0, 65535], "hee striues adr": [0, 65535], "striues adr oh": [0, 65535], "adr oh binde": [0, 65535], "oh binde him": [0, 65535], "binde him binde": [0, 65535], "him binde him": [0, 65535], "binde him let": [0, 65535], "him let him": [0, 65535], "let him not": [0, 65535], "him not come": [0, 65535], "not come neere": [0, 65535], "come neere me": [0, 65535], "neere me pinch": [0, 65535], "me pinch more": [0, 65535], "pinch more company": [0, 65535], "more company the": [0, 65535], "company the fiend": [0, 65535], "the fiend is": [0, 65535], "fiend is strong": [0, 65535], "is strong within": [0, 65535], "strong within him": [0, 65535], "within him luc": [0, 65535], "him luc aye": [0, 65535], "luc aye me": [0, 65535], "aye me poore": [0, 65535], "me poore man": [0, 65535], "poore man how": [0, 65535], "man how pale": [0, 65535], "how pale and": [0, 65535], "pale and wan": [0, 65535], "and wan he": [0, 65535], "wan he looks": [0, 65535], "he looks ant": [0, 65535], "looks ant what": [0, 65535], "ant what will": [0, 65535], "will you murther": [0, 65535], "you murther me": [0, 65535], "murther me thou": [0, 65535], "me thou iailor": [0, 65535], "thou iailor thou": [0, 65535], "iailor thou i": [0, 65535], "thou i am": [0, 65535], "i am thy": [0, 65535], "am thy prisoner": [0, 65535], "thy prisoner wilt": [0, 65535], "prisoner wilt thou": [0, 65535], "wilt thou suffer": [0, 65535], "thou suffer them": [0, 65535], "suffer them to": [0, 65535], "them to make": [0, 65535], "make a rescue": [0, 65535], "a rescue offi": [0, 65535], "rescue offi masters": [0, 65535], "offi masters let": [0, 65535], "masters let him": [0, 65535], "let him go": [0, 65535], "him go he": [0, 65535], "go he is": [0, 65535], "he is my": [0, 65535], "is my prisoner": [0, 65535], "my prisoner and": [0, 65535], "prisoner and you": [0, 65535], "and you shall": [0, 65535], "you shall not": [0, 65535], "shall not haue": [0, 65535], "haue him pinch": [0, 65535], "him pinch go": [0, 65535], "pinch go binde": [0, 65535], "go binde this": [0, 65535], "binde this man": [0, 65535], "this man for": [0, 65535], "man for he": [0, 65535], "he is franticke": [0, 65535], "is franticke too": [0, 65535], "franticke too adr": [0, 65535], "too adr what": [0, 65535], "adr what wilt": [0, 65535], "wilt thou do": [0, 65535], "thou do thou": [0, 65535], "do thou peeuish": [0, 65535], "thou peeuish officer": [0, 65535], "peeuish officer hast": [0, 65535], "officer hast thou": [0, 65535], "hast thou delight": [0, 65535], "thou delight to": [0, 65535], "delight to see": [0, 65535], "see a wretched": [0, 65535], "a wretched man": [0, 65535], "wretched man do": [0, 65535], "man do outrage": [0, 65535], "do outrage and": [0, 65535], "outrage and displeasure": [0, 65535], "and displeasure to": [0, 65535], "displeasure to himselfe": [0, 65535], "to himselfe offi": [0, 65535], "himselfe offi he": [0, 65535], "offi he is": [0, 65535], "my prisoner if": [0, 65535], "prisoner if i": [0, 65535], "if i let": [0, 65535], "him go the": [0, 65535], "go the debt": [0, 65535], "the debt he": [0, 65535], "debt he owes": [0, 65535], "he owes will": [0, 65535], "owes will be": [0, 65535], "will be requir'd": [0, 65535], "be requir'd of": [0, 65535], "requir'd of me": [0, 65535], "will discharge thee": [0, 65535], "discharge thee ere": [0, 65535], "ere i go": [0, 65535], "i go from": [0, 65535], "go from thee": [0, 65535], "from thee beare": [0, 65535], "thee beare me": [0, 65535], "beare me forthwith": [0, 65535], "me forthwith vnto": [0, 65535], "forthwith vnto his": [0, 65535], "vnto his creditor": [0, 65535], "his creditor and": [0, 65535], "creditor and knowing": [0, 65535], "and knowing how": [0, 65535], "knowing how the": [0, 65535], "how the debt": [0, 65535], "the debt growes": [0, 65535], "debt growes i": [0, 65535], "growes i will": [0, 65535], "i will pay": [0, 65535], "will pay it": [0, 65535], "pay it good": [0, 65535], "it good master": [0, 65535], "good master doctor": [0, 65535], "master doctor see": [0, 65535], "doctor see him": [0, 65535], "see him safe": [0, 65535], "him safe conuey'd": [0, 65535], "safe conuey'd home": [0, 65535], "conuey'd home to": [0, 65535], "home to my": [0, 65535], "my house oh": [0, 65535], "house oh most": [0, 65535], "oh most vnhappy": [0, 65535], "most vnhappy day": [0, 65535], "vnhappy day ant": [0, 65535], "day ant oh": [0, 65535], "ant oh most": [0, 65535], "oh most vnhappie": [0, 65535], "most vnhappie strumpet": [0, 65535], "vnhappie strumpet dro": [0, 65535], "strumpet dro master": [0, 65535], "dro master i": [0, 65535], "master i am": [0, 65535], "i am heere": [0, 65535], "am heere entred": [0, 65535], "heere entred in": [0, 65535], "entred in bond": [0, 65535], "in bond for": [0, 65535], "bond for you": [0, 65535], "you ant out": [0, 65535], "ant out on": [0, 65535], "out on thee": [0, 65535], "on thee villaine": [0, 65535], "thee villaine wherefore": [0, 65535], "villaine wherefore dost": [0, 65535], "wherefore dost thou": [0, 65535], "dost thou mad": [0, 65535], "thou mad mee": [0, 65535], "mad mee dro": [0, 65535], "mee dro will": [0, 65535], "dro will you": [0, 65535], "will you be": [0, 65535], "you be bound": [0, 65535], "be bound for": [0, 65535], "bound for nothing": [0, 65535], "for nothing be": [0, 65535], "nothing be mad": [0, 65535], "be mad good": [0, 65535], "mad good master": [0, 65535], "good master cry": [0, 65535], "master cry the": [0, 65535], "cry the diuell": [0, 65535], "the diuell luc": [0, 65535], "diuell luc god": [0, 65535], "luc god helpe": [0, 65535], "god helpe poore": [0, 65535], "helpe poore soules": [0, 65535], "poore soules how": [0, 65535], "soules how idlely": [0, 65535], "how idlely doe": [0, 65535], "idlely doe they": [0, 65535], "doe they talke": [0, 65535], "they talke adr": [0, 65535], "talke adr go": [0, 65535], "adr go beare": [0, 65535], "go beare him": [0, 65535], "him hence sister": [0, 65535], "hence sister go": [0, 65535], "sister go you": [0, 65535], "go you with": [0, 65535], "with me say": [0, 65535], "me say now": [0, 65535], "say now whose": [0, 65535], "now whose suite": [0, 65535], "whose suite is": [0, 65535], "suite is he": [0, 65535], "he arrested at": [0, 65535], "arrested at exeunt": [0, 65535], "at exeunt manet": [0, 65535], "exeunt manet offic": [0, 65535], "manet offic adri": [0, 65535], "offic adri luci": [0, 65535], "adri luci courtizan": [0, 65535], "luci courtizan off": [0, 65535], "courtizan off one": [0, 65535], "off one angelo": [0, 65535], "one angelo a": [0, 65535], "angelo a goldsmith": [0, 65535], "a goldsmith do": [0, 65535], "goldsmith do you": [0, 65535], "do you know": [0, 65535], "you know him": [0, 65535], "know him adr": [0, 65535], "him adr i": [0, 65535], "adr i know": [0, 65535], "i know the": [0, 65535], "know the man": [0, 65535], "the man what": [0, 65535], "is the summe": [0, 65535], "the summe he": [0, 65535], "summe he owes": [0, 65535], "he owes off": [0, 65535], "owes off two": [0, 65535], "off two hundred": [0, 65535], "two hundred duckets": [0, 65535], "hundred duckets adr": [0, 65535], "duckets adr say": [0, 65535], "adr say how": [0, 65535], "say how growes": [0, 65535], "how growes it": [0, 65535], "growes it due": [0, 65535], "it due off": [0, 65535], "due off due": [0, 65535], "off due for": [0, 65535], "due for a": [0, 65535], "for a chaine": [0, 65535], "a chaine your": [0, 65535], "chaine your husband": [0, 65535], "your husband had": [0, 65535], "husband had of": [0, 65535], "had of him": [0, 65535], "of him adr": [0, 65535], "him adr he": [0, 65535], "adr he did": [0, 65535], "he did bespeake": [0, 65535], "did bespeake a": [0, 65535], "bespeake a chain": [0, 65535], "a chain for": [0, 65535], "chain for me": [0, 65535], "for me but": [0, 65535], "me but had": [0, 65535], "but had it": [0, 65535], "had it not": [0, 65535], "it not cur": [0, 65535], "not cur when": [0, 65535], "cur when as": [0, 65535], "when as your": [0, 65535], "as your husband": [0, 65535], "your husband all": [0, 65535], "husband all in": [0, 65535], "all in rage": [0, 65535], "in rage to": [0, 65535], "rage to day": [0, 65535], "to day came": [0, 65535], "day came to": [0, 65535], "came to my": [0, 65535], "and tooke away": [0, 65535], "tooke away my": [0, 65535], "away my ring": [0, 65535], "my ring the": [0, 65535], "ring the ring": [0, 65535], "the ring i": [0, 65535], "ring i saw": [0, 65535], "i saw vpon": [0, 65535], "saw vpon his": [0, 65535], "vpon his finger": [0, 65535], "his finger now": [0, 65535], "finger now straight": [0, 65535], "now straight after": [0, 65535], "straight after did": [0, 65535], "after did i": [0, 65535], "did i meete": [0, 65535], "i meete him": [0, 65535], "meete him with": [0, 65535], "with a chaine": [0, 65535], "a chaine adr": [0, 65535], "chaine adr it": [0, 65535], "adr it may": [0, 65535], "it may be": [0, 65535], "may be so": [0, 65535], "be so but": [0, 65535], "so but i": [0, 65535], "but i did": [0, 65535], "i did neuer": [0, 65535], "did neuer see": [0, 65535], "neuer see it": [0, 65535], "see it come": [0, 65535], "it come iailor": [0, 65535], "come iailor bring": [0, 65535], "iailor bring me": [0, 65535], "bring me where": [0, 65535], "me where the": [0, 65535], "where the goldsmith": [0, 65535], "the goldsmith is": [0, 65535], "goldsmith is i": [0, 65535], "is i long": [0, 65535], "i long to": [0, 65535], "long to know": [0, 65535], "know the truth": [0, 65535], "the truth heereof": [0, 65535], "truth heereof at": [0, 65535], "heereof at large": [0, 65535], "at large enter": [0, 65535], "large enter antipholus": [0, 65535], "antipholus siracusia with": [0, 65535], "siracusia with his": [0, 65535], "with his rapier": [0, 65535], "his rapier drawne": [0, 65535], "rapier drawne and": [0, 65535], "drawne and dromio": [0, 65535], "and dromio sirac": [0, 65535], "dromio sirac luc": [0, 65535], "sirac luc god": [0, 65535], "luc god for": [0, 65535], "god for thy": [0, 65535], "for thy mercy": [0, 65535], "thy mercy they": [0, 65535], "mercy they are": [0, 65535], "they are loose": [0, 65535], "are loose againe": [0, 65535], "loose againe adr": [0, 65535], "againe adr and": [0, 65535], "adr and come": [0, 65535], "and come with": [0, 65535], "come with naked": [0, 65535], "with naked swords": [0, 65535], "naked swords let's": [0, 65535], "swords let's call": [0, 65535], "let's call more": [0, 65535], "call more helpe": [0, 65535], "more helpe to": [0, 65535], "helpe to haue": [0, 65535], "to haue them": [0, 65535], "haue them bound": [0, 65535], "them bound againe": [0, 65535], "bound againe runne": [0, 65535], "againe runne all": [0, 65535], "runne all out": [0, 65535], "all out off": [0, 65535], "out off away": [0, 65535], "off away they'l": [0, 65535], "away they'l kill": [0, 65535], "they'l kill vs": [0, 65535], "kill vs exeunt": [0, 65535], "vs exeunt omnes": [0, 65535], "exeunt omnes as": [0, 65535], "omnes as fast": [0, 65535], "as fast as": [0, 65535], "fast as may": [0, 65535], "as may be": [0, 65535], "may be frighted": [0, 65535], "be frighted s": [0, 65535], "frighted s ant": [0, 65535], "ant i see": [0, 65535], "i see these": [0, 65535], "see these witches": [0, 65535], "these witches are": [0, 65535], "witches are affraid": [0, 65535], "are affraid of": [0, 65535], "affraid of swords": [0, 65535], "of swords s": [0, 65535], "swords s dro": [0, 65535], "s dro she": [0, 65535], "dro she that": [0, 65535], "she that would": [0, 65535], "would be your": [0, 65535], "be your wife": [0, 65535], "your wife now": [0, 65535], "wife now ran": [0, 65535], "now ran from": [0, 65535], "ran from you": [0, 65535], "from you ant": [0, 65535], "you ant come": [0, 65535], "ant come to": [0, 65535], "the centaur fetch": [0, 65535], "centaur fetch our": [0, 65535], "fetch our stuffe": [0, 65535], "our stuffe from": [0, 65535], "stuffe from thence": [0, 65535], "from thence i": [0, 65535], "thence i long": [0, 65535], "i long that": [0, 65535], "long that we": [0, 65535], "we were safe": [0, 65535], "were safe and": [0, 65535], "safe and sound": [0, 65535], "and sound aboord": [0, 65535], "sound aboord dro": [0, 65535], "aboord dro faith": [0, 65535], "dro faith stay": [0, 65535], "faith stay heere": [0, 65535], "stay heere this": [0, 65535], "heere this night": [0, 65535], "this night they": [0, 65535], "night they will": [0, 65535], "they will surely": [0, 65535], "will surely do": [0, 65535], "surely do vs": [0, 65535], "do vs no": [0, 65535], "vs no harme": [0, 65535], "no harme you": [0, 65535], "harme you saw": [0, 65535], "you saw they": [0, 65535], "saw they speake": [0, 65535], "they speake vs": [0, 65535], "speake vs faire": [0, 65535], "vs faire giue": [0, 65535], "faire giue vs": [0, 65535], "giue vs gold": [0, 65535], "vs gold me": [0, 65535], "gold me thinkes": [0, 65535], "me thinkes they": [0, 65535], "thinkes they are": [0, 65535], "they are such": [0, 65535], "are such a": [0, 65535], "a gentle nation": [0, 65535], "gentle nation that": [0, 65535], "nation that but": [0, 65535], "that but for": [0, 65535], "but for the": [0, 65535], "for the mountaine": [0, 65535], "the mountaine of": [0, 65535], "mountaine of mad": [0, 65535], "of mad flesh": [0, 65535], "mad flesh that": [0, 65535], "flesh that claimes": [0, 65535], "that claimes mariage": [0, 65535], "claimes mariage of": [0, 65535], "mariage of me": [0, 65535], "of me i": [0, 65535], "me i could": [0, 65535], "i could finde": [0, 65535], "could finde in": [0, 65535], "finde in my": [0, 65535], "in my heart": [0, 65535], "my heart to": [0, 65535], "heart to stay": [0, 65535], "to stay heere": [0, 65535], "stay heere still": [0, 65535], "heere still and": [0, 65535], "still and turne": [0, 65535], "and turne witch": [0, 65535], "turne witch ant": [0, 65535], "witch ant i": [0, 65535], "will not stay": [0, 65535], "not stay to": [0, 65535], "stay to night": [0, 65535], "to night for": [0, 65535], "night for all": [0, 65535], "for all the": [0, 65535], "all the towne": [0, 65535], "the towne therefore": [0, 65535], "towne therefore away": [0, 65535], "therefore away to": [0, 65535], "away to get": [0, 65535], "to get our": [0, 65535], "get our stuffe": [0, 65535], "our stuffe aboord": [0, 65535], "stuffe aboord exeunt": [0, 65535], "actus quartus sc\u00e6na prima": [0, 65535], "quartus sc\u00e6na prima enter": [0, 65535], "sc\u00e6na prima enter a": [0, 65535], "prima enter a merchant": [0, 65535], "enter a merchant goldsmith": [0, 65535], "a merchant goldsmith and": [0, 65535], "merchant goldsmith and an": [0, 65535], "goldsmith and an officer": [0, 65535], "and an officer mar": [0, 65535], "an officer mar you": [0, 65535], "officer mar you know": [0, 65535], "mar you know since": [0, 65535], "you know since pentecost": [0, 65535], "know since pentecost the": [0, 65535], "since pentecost the sum": [0, 65535], "pentecost the sum is": [0, 65535], "the sum is due": [0, 65535], "sum is due and": [0, 65535], "is due and since": [0, 65535], "due and since i": [0, 65535], "and since i haue": [0, 65535], "since i haue not": [0, 65535], "i haue not much": [0, 65535], "haue not much importun'd": [0, 65535], "not much importun'd you": [0, 65535], "much importun'd you nor": [0, 65535], "importun'd you nor now": [0, 65535], "you nor now i": [0, 65535], "nor now i had": [0, 65535], "now i had not": [0, 65535], "i had not but": [0, 65535], "had not but that": [0, 65535], "not but that i": [0, 65535], "that i am bound": [0, 65535], "i am bound to": [0, 65535], "am bound to persia": [0, 65535], "bound to persia and": [0, 65535], "to persia and want": [0, 65535], "persia and want gilders": [0, 65535], "and want gilders for": [0, 65535], "want gilders for my": [0, 65535], "gilders for my voyage": [0, 65535], "for my voyage therefore": [0, 65535], "my voyage therefore make": [0, 65535], "voyage therefore make present": [0, 65535], "therefore make present satisfaction": [0, 65535], "make present satisfaction or": [0, 65535], "present satisfaction or ile": [0, 65535], "satisfaction or ile attach": [0, 65535], "or ile attach you": [0, 65535], "ile attach you by": [0, 65535], "attach you by this": [0, 65535], "you by this officer": [0, 65535], "by this officer gold": [0, 65535], "this officer gold euen": [0, 65535], "officer gold euen iust": [0, 65535], "gold euen iust the": [0, 65535], "euen iust the sum": [0, 65535], "iust the sum that": [0, 65535], "the sum that i": [0, 65535], "sum that i do": [0, 65535], "that i do owe": [0, 65535], "i do owe to": [0, 65535], "do owe to you": [0, 65535], "owe to you is": [0, 65535], "to you is growing": [0, 65535], "you is growing to": [0, 65535], "is growing to me": [0, 65535], "growing to me by": [0, 65535], "to me by antipholus": [0, 65535], "me by antipholus and": [0, 65535], "by antipholus and in": [0, 65535], "antipholus and in the": [0, 65535], "and in the instant": [0, 65535], "in the instant that": [0, 65535], "the instant that i": [0, 65535], "instant that i met": [0, 65535], "that i met with": [0, 65535], "i met with you": [0, 65535], "met with you he": [0, 65535], "with you he had": [0, 65535], "you he had of": [0, 65535], "he had of me": [0, 65535], "had of me a": [0, 65535], "of me a chaine": [0, 65535], "me a chaine at": [0, 65535], "a chaine at fiue": [0, 65535], "chaine at fiue a": [0, 65535], "fiue a clocke i": [0, 65535], "a clocke i shall": [0, 65535], "clocke i shall receiue": [0, 65535], "i shall receiue the": [0, 65535], "shall receiue the money": [0, 65535], "receiue the money for": [0, 65535], "the money for the": [0, 65535], "money for the same": [0, 65535], "for the same pleaseth": [0, 65535], "the same pleaseth you": [0, 65535], "same pleaseth you walke": [0, 65535], "pleaseth you walke with": [0, 65535], "walke with me downe": [0, 65535], "with me downe to": [0, 65535], "me downe to his": [0, 65535], "downe to his house": [0, 65535], "to his house i": [0, 65535], "his house i will": [0, 65535], "house i will discharge": [0, 65535], "i will discharge my": [0, 65535], "will discharge my bond": [0, 65535], "discharge my bond and": [0, 65535], "my bond and thanke": [0, 65535], "bond and thanke you": [0, 65535], "and thanke you too": [0, 65535], "thanke you too enter": [0, 65535], "you too enter antipholus": [0, 65535], "too enter antipholus ephes": [0, 65535], "enter antipholus ephes dromio": [0, 65535], "antipholus ephes dromio from": [0, 65535], "ephes dromio from the": [0, 65535], "dromio from the courtizans": [0, 65535], "from the courtizans offi": [0, 65535], "the courtizans offi that": [0, 65535], "courtizans offi that labour": [0, 65535], "offi that labour may": [0, 65535], "that labour may you": [0, 65535], "labour may you saue": [0, 65535], "may you saue see": [0, 65535], "you saue see where": [0, 65535], "saue see where he": [0, 65535], "see where he comes": [0, 65535], "where he comes ant": [0, 65535], "he comes ant while": [0, 65535], "comes ant while i": [0, 65535], "ant while i go": [0, 65535], "while i go to": [0, 65535], "i go to the": [0, 65535], "go to the goldsmiths": [0, 65535], "to the goldsmiths house": [0, 65535], "the goldsmiths house go": [0, 65535], "goldsmiths house go thou": [0, 65535], "house go thou and": [0, 65535], "go thou and buy": [0, 65535], "thou and buy a": [0, 65535], "and buy a ropes": [0, 65535], "buy a ropes end": [0, 65535], "a ropes end that": [0, 65535], "ropes end that will": [0, 65535], "end that will i": [0, 65535], "that will i bestow": [0, 65535], "will i bestow among": [0, 65535], "i bestow among my": [0, 65535], "bestow among my wife": [0, 65535], "among my wife and": [0, 65535], "my wife and their": [0, 65535], "wife and their confederates": [0, 65535], "and their confederates for": [0, 65535], "their confederates for locking": [0, 65535], "confederates for locking me": [0, 65535], "for locking me out": [0, 65535], "locking me out of": [0, 65535], "me out of my": [0, 65535], "out of my doores": [0, 65535], "of my doores by": [0, 65535], "my doores by day": [0, 65535], "doores by day but": [0, 65535], "by day but soft": [0, 65535], "day but soft i": [0, 65535], "but soft i see": [0, 65535], "soft i see the": [0, 65535], "i see the goldsmith": [0, 65535], "see the goldsmith get": [0, 65535], "the goldsmith get thee": [0, 65535], "goldsmith get thee gone": [0, 65535], "get thee gone buy": [0, 65535], "thee gone buy thou": [0, 65535], "gone buy thou a": [0, 65535], "buy thou a rope": [0, 65535], "thou a rope and": [0, 65535], "a rope and bring": [0, 65535], "rope and bring it": [0, 65535], "and bring it home": [0, 65535], "bring it home to": [0, 65535], "it home to me": [0, 65535], "home to me dro": [0, 65535], "to me dro i": [0, 65535], "me dro i buy": [0, 65535], "dro i buy a": [0, 65535], "i buy a thousand": [0, 65535], "buy a thousand pound": [0, 65535], "a thousand pound a": [0, 65535], "thousand pound a yeare": [0, 65535], "pound a yeare i": [0, 65535], "a yeare i buy": [0, 65535], "yeare i buy a": [0, 65535], "i buy a rope": [0, 65535], "buy a rope exit": [0, 65535], "a rope exit dromio": [0, 65535], "rope exit dromio eph": [0, 65535], "exit dromio eph ant": [0, 65535], "dromio eph ant a": [0, 65535], "eph ant a man": [0, 65535], "ant a man is": [0, 65535], "a man is well": [0, 65535], "man is well holpe": [0, 65535], "is well holpe vp": [0, 65535], "well holpe vp that": [0, 65535], "holpe vp that trusts": [0, 65535], "vp that trusts to": [0, 65535], "that trusts to you": [0, 65535], "trusts to you i": [0, 65535], "to you i promised": [0, 65535], "you i promised your": [0, 65535], "i promised your presence": [0, 65535], "promised your presence and": [0, 65535], "your presence and the": [0, 65535], "presence and the chaine": [0, 65535], "and the chaine but": [0, 65535], "the chaine but neither": [0, 65535], "chaine but neither chaine": [0, 65535], "but neither chaine nor": [0, 65535], "neither chaine nor goldsmith": [0, 65535], "chaine nor goldsmith came": [0, 65535], "nor goldsmith came to": [0, 65535], "goldsmith came to me": [0, 65535], "came to me belike": [0, 65535], "to me belike you": [0, 65535], "me belike you thought": [0, 65535], "belike you thought our": [0, 65535], "you thought our loue": [0, 65535], "thought our loue would": [0, 65535], "our loue would last": [0, 65535], "loue would last too": [0, 65535], "would last too long": [0, 65535], "last too long if": [0, 65535], "too long if it": [0, 65535], "long if it were": [0, 65535], "if it were chain'd": [0, 65535], "it were chain'd together": [0, 65535], "were chain'd together and": [0, 65535], "chain'd together and therefore": [0, 65535], "together and therefore came": [0, 65535], "and therefore came not": [0, 65535], "therefore came not gold": [0, 65535], "came not gold sauing": [0, 65535], "not gold sauing your": [0, 65535], "gold sauing your merrie": [0, 65535], "sauing your merrie humor": [0, 65535], "your merrie humor here's": [0, 65535], "merrie humor here's the": [0, 65535], "humor here's the note": [0, 65535], "here's the note how": [0, 65535], "the note how much": [0, 65535], "note how much your": [0, 65535], "how much your chaine": [0, 65535], "much your chaine weighs": [0, 65535], "your chaine weighs to": [0, 65535], "chaine weighs to the": [0, 65535], "weighs to the vtmost": [0, 65535], "to the vtmost charect": [0, 65535], "the vtmost charect the": [0, 65535], "vtmost charect the finenesse": [0, 65535], "charect the finenesse of": [0, 65535], "the finenesse of the": [0, 65535], "finenesse of the gold": [0, 65535], "of the gold and": [0, 65535], "the gold and chargefull": [0, 65535], "gold and chargefull fashion": [0, 65535], "and chargefull fashion which": [0, 65535], "chargefull fashion which doth": [0, 65535], "fashion which doth amount": [0, 65535], "which doth amount to": [0, 65535], "doth amount to three": [0, 65535], "amount to three odde": [0, 65535], "to three odde duckets": [0, 65535], "three odde duckets more": [0, 65535], "odde duckets more then": [0, 65535], "duckets more then i": [0, 65535], "more then i stand": [0, 65535], "then i stand debted": [0, 65535], "i stand debted to": [0, 65535], "stand debted to this": [0, 65535], "debted to this gentleman": [0, 65535], "to this gentleman i": [0, 65535], "this gentleman i pray": [0, 65535], "gentleman i pray you": [0, 65535], "i pray you see": [0, 65535], "pray you see him": [0, 65535], "you see him presently": [0, 65535], "see him presently discharg'd": [0, 65535], "him presently discharg'd for": [0, 65535], "presently discharg'd for he": [0, 65535], "discharg'd for he is": [0, 65535], "for he is bound": [0, 65535], "he is bound to": [0, 65535], "is bound to sea": [0, 65535], "bound to sea and": [0, 65535], "to sea and stayes": [0, 65535], "sea and stayes but": [0, 65535], "and stayes but for": [0, 65535], "stayes but for it": [0, 65535], "but for it anti": [0, 65535], "for it anti i": [0, 65535], "it anti i am": [0, 65535], "anti i am not": [0, 65535], "i am not furnish'd": [0, 65535], "am not furnish'd with": [0, 65535], "not furnish'd with the": [0, 65535], "furnish'd with the present": [0, 65535], "with the present monie": [0, 65535], "the present monie besides": [0, 65535], "present monie besides i": [0, 65535], "monie besides i haue": [0, 65535], "besides i haue some": [0, 65535], "i haue some businesse": [0, 65535], "haue some businesse in": [0, 65535], "some businesse in the": [0, 65535], "businesse in the towne": [0, 65535], "in the towne good": [0, 65535], "the towne good signior": [0, 65535], "towne good signior take": [0, 65535], "good signior take the": [0, 65535], "signior take the stranger": [0, 65535], "take the stranger to": [0, 65535], "the stranger to my": [0, 65535], "stranger to my house": [0, 65535], "to my house and": [0, 65535], "my house and with": [0, 65535], "house and with you": [0, 65535], "and with you take": [0, 65535], "with you take the": [0, 65535], "you take the chaine": [0, 65535], "take the chaine and": [0, 65535], "the chaine and bid": [0, 65535], "chaine and bid my": [0, 65535], "and bid my wife": [0, 65535], "bid my wife disburse": [0, 65535], "my wife disburse the": [0, 65535], "wife disburse the summe": [0, 65535], "disburse the summe on": [0, 65535], "the summe on the": [0, 65535], "summe on the receit": [0, 65535], "on the receit thereof": [0, 65535], "the receit thereof perchance": [0, 65535], "receit thereof perchance i": [0, 65535], "thereof perchance i will": [0, 65535], "perchance i will be": [0, 65535], "i will be there": [0, 65535], "will be there as": [0, 65535], "be there as soone": [0, 65535], "there as soone as": [0, 65535], "as soone as you": [0, 65535], "soone as you gold": [0, 65535], "as you gold then": [0, 65535], "you gold then you": [0, 65535], "gold then you will": [0, 65535], "then you will bring": [0, 65535], "you will bring the": [0, 65535], "will bring the chaine": [0, 65535], "bring the chaine to": [0, 65535], "the chaine to her": [0, 65535], "chaine to her your": [0, 65535], "to her your selfe": [0, 65535], "her your selfe anti": [0, 65535], "your selfe anti no": [0, 65535], "selfe anti no beare": [0, 65535], "anti no beare it": [0, 65535], "no beare it with": [0, 65535], "beare it with you": [0, 65535], "it with you least": [0, 65535], "with you least i": [0, 65535], "you least i come": [0, 65535], "least i come not": [0, 65535], "i come not time": [0, 65535], "come not time enough": [0, 65535], "not time enough gold": [0, 65535], "time enough gold well": [0, 65535], "enough gold well sir": [0, 65535], "gold well sir i": [0, 65535], "well sir i will": [0, 65535], "sir i will haue": [0, 65535], "i will haue you": [0, 65535], "will haue you the": [0, 65535], "haue you the chaine": [0, 65535], "you the chaine about": [0, 65535], "the chaine about you": [0, 65535], "chaine about you ant": [0, 65535], "about you ant and": [0, 65535], "you ant and if": [0, 65535], "ant and if i": [0, 65535], "and if i haue": [0, 65535], "if i haue not": [0, 65535], "i haue not sir": [0, 65535], "haue not sir i": [0, 65535], "not sir i hope": [0, 65535], "sir i hope you": [0, 65535], "i hope you haue": [0, 65535], "hope you haue or": [0, 65535], "you haue or else": [0, 65535], "haue or else you": [0, 65535], "or else you may": [0, 65535], "else you may returne": [0, 65535], "you may returne without": [0, 65535], "may returne without your": [0, 65535], "returne without your money": [0, 65535], "without your money gold": [0, 65535], "your money gold nay": [0, 65535], "money gold nay come": [0, 65535], "gold nay come i": [0, 65535], "nay come i pray": [0, 65535], "come i pray you": [0, 65535], "pray you sir giue": [0, 65535], "you sir giue me": [0, 65535], "sir giue me the": [0, 65535], "giue me the chaine": [0, 65535], "me the chaine both": [0, 65535], "the chaine both winde": [0, 65535], "chaine both winde and": [0, 65535], "both winde and tide": [0, 65535], "winde and tide stayes": [0, 65535], "and tide stayes for": [0, 65535], "tide stayes for this": [0, 65535], "stayes for this gentleman": [0, 65535], "for this gentleman and": [0, 65535], "this gentleman and i": [0, 65535], "gentleman and i too": [0, 65535], "and i too blame": [0, 65535], "i too blame haue": [0, 65535], "too blame haue held": [0, 65535], "blame haue held him": [0, 65535], "haue held him heere": [0, 65535], "held him heere too": [0, 65535], "him heere too long": [0, 65535], "heere too long anti": [0, 65535], "too long anti good": [0, 65535], "long anti good lord": [0, 65535], "anti good lord you": [0, 65535], "good lord you vse": [0, 65535], "lord you vse this": [0, 65535], "you vse this dalliance": [0, 65535], "vse this dalliance to": [0, 65535], "this dalliance to excuse": [0, 65535], "dalliance to excuse your": [0, 65535], "to excuse your breach": [0, 65535], "excuse your breach of": [0, 65535], "your breach of promise": [0, 65535], "breach of promise to": [0, 65535], "of promise to the": [0, 65535], "promise to the porpentine": [0, 65535], "to the porpentine i": [0, 65535], "the porpentine i should": [0, 65535], "porpentine i should haue": [0, 65535], "i should haue chid": [0, 65535], "should haue chid you": [0, 65535], "haue chid you for": [0, 65535], "chid you for not": [0, 65535], "you for not bringing": [0, 65535], "for not bringing it": [0, 65535], "not bringing it but": [0, 65535], "bringing it but like": [0, 65535], "it but like a": [0, 65535], "but like a shrew": [0, 65535], "like a shrew you": [0, 65535], "a shrew you first": [0, 65535], "shrew you first begin": [0, 65535], "you first begin to": [0, 65535], "first begin to brawle": [0, 65535], "begin to brawle mar": [0, 65535], "to brawle mar the": [0, 65535], "brawle mar the houre": [0, 65535], "mar the houre steales": [0, 65535], "the houre steales on": [0, 65535], "houre steales on i": [0, 65535], "steales on i pray": [0, 65535], "on i pray you": [0, 65535], "pray you sir dispatch": [0, 65535], "you sir dispatch gold": [0, 65535], "sir dispatch gold you": [0, 65535], "dispatch gold you heare": [0, 65535], "gold you heare how": [0, 65535], "you heare how he": [0, 65535], "heare how he importunes": [0, 65535], "how he importunes me": [0, 65535], "he importunes me the": [0, 65535], "importunes me the chaine": [0, 65535], "me the chaine ant": [0, 65535], "the chaine ant why": [0, 65535], "chaine ant why giue": [0, 65535], "ant why giue it": [0, 65535], "why giue it to": [0, 65535], "giue it to my": [0, 65535], "it to my wife": [0, 65535], "to my wife and": [0, 65535], "my wife and fetch": [0, 65535], "wife and fetch your": [0, 65535], "and fetch your mony": [0, 65535], "fetch your mony gold": [0, 65535], "your mony gold come": [0, 65535], "mony gold come come": [0, 65535], "gold come come you": [0, 65535], "come come you know": [0, 65535], "come you know i": [0, 65535], "you know i gaue": [0, 65535], "know i gaue it": [0, 65535], "i gaue it you": [0, 65535], "gaue it you euen": [0, 65535], "it you euen now": [0, 65535], "you euen now either": [0, 65535], "euen now either send": [0, 65535], "now either send the": [0, 65535], "either send the chaine": [0, 65535], "send the chaine or": [0, 65535], "the chaine or send": [0, 65535], "chaine or send me": [0, 65535], "or send me by": [0, 65535], "send me by some": [0, 65535], "me by some token": [0, 65535], "by some token ant": [0, 65535], "some token ant fie": [0, 65535], "token ant fie now": [0, 65535], "ant fie now you": [0, 65535], "fie now you run": [0, 65535], "now you run this": [0, 65535], "you run this humor": [0, 65535], "run this humor out": [0, 65535], "this humor out of": [0, 65535], "humor out of breath": [0, 65535], "out of breath come": [0, 65535], "of breath come where's": [0, 65535], "breath come where's the": [0, 65535], "come where's the chaine": [0, 65535], "where's the chaine i": [0, 65535], "the chaine i pray": [0, 65535], "chaine i pray you": [0, 65535], "i pray you let": [0, 65535], "pray you let me": [0, 65535], "you let me see": [0, 65535], "me see it mar": [0, 65535], "see it mar my": [0, 65535], "it mar my businesse": [0, 65535], "mar my businesse cannot": [0, 65535], "my businesse cannot brooke": [0, 65535], "businesse cannot brooke this": [0, 65535], "cannot brooke this dalliance": [0, 65535], "brooke this dalliance good": [0, 65535], "this dalliance good sir": [0, 65535], "dalliance good sir say": [0, 65535], "good sir say whe'r": [0, 65535], "sir say whe'r you'l": [0, 65535], "say whe'r you'l answer": [0, 65535], "whe'r you'l answer me": [0, 65535], "you'l answer me or": [0, 65535], "answer me or no": [0, 65535], "me or no if": [0, 65535], "or no if not": [0, 65535], "no if not ile": [0, 65535], "if not ile leaue": [0, 65535], "not ile leaue him": [0, 65535], "ile leaue him to": [0, 65535], "leaue him to the": [0, 65535], "him to the officer": [0, 65535], "to the officer ant": [0, 65535], "the officer ant i": [0, 65535], "officer ant i answer": [0, 65535], "ant i answer you": [0, 65535], "i answer you what": [0, 65535], "answer you what should": [0, 65535], "you what should i": [0, 65535], "what should i answer": [0, 65535], "should i answer you": [0, 65535], "i answer you gold": [0, 65535], "answer you gold the": [0, 65535], "you gold the monie": [0, 65535], "gold the monie that": [0, 65535], "the monie that you": [0, 65535], "monie that you owe": [0, 65535], "that you owe me": [0, 65535], "you owe me for": [0, 65535], "owe me for the": [0, 65535], "me for the chaine": [0, 65535], "for the chaine ant": [0, 65535], "the chaine ant i": [0, 65535], "chaine ant i owe": [0, 65535], "ant i owe you": [0, 65535], "i owe you none": [0, 65535], "owe you none till": [0, 65535], "you none till i": [0, 65535], "none till i receiue": [0, 65535], "till i receiue the": [0, 65535], "i receiue the chaine": [0, 65535], "receiue the chaine gold": [0, 65535], "the chaine gold you": [0, 65535], "chaine gold you know": [0, 65535], "gold you know i": [0, 65535], "gaue it you halfe": [0, 65535], "it you halfe an": [0, 65535], "you halfe an houre": [0, 65535], "halfe an houre since": [0, 65535], "an houre since ant": [0, 65535], "houre since ant you": [0, 65535], "since ant you gaue": [0, 65535], "ant you gaue me": [0, 65535], "you gaue me none": [0, 65535], "gaue me none you": [0, 65535], "me none you wrong": [0, 65535], "none you wrong mee": [0, 65535], "you wrong mee much": [0, 65535], "wrong mee much to": [0, 65535], "mee much to say": [0, 65535], "much to say so": [0, 65535], "to say so gold": [0, 65535], "say so gold you": [0, 65535], "so gold you wrong": [0, 65535], "gold you wrong me": [0, 65535], "you wrong me more": [0, 65535], "wrong me more sir": [0, 65535], "me more sir in": [0, 65535], "more sir in denying": [0, 65535], "sir in denying it": [0, 65535], "in denying it consider": [0, 65535], "denying it consider how": [0, 65535], "it consider how it": [0, 65535], "consider how it stands": [0, 65535], "how it stands vpon": [0, 65535], "it stands vpon my": [0, 65535], "stands vpon my credit": [0, 65535], "vpon my credit mar": [0, 65535], "my credit mar well": [0, 65535], "credit mar well officer": [0, 65535], "mar well officer arrest": [0, 65535], "well officer arrest him": [0, 65535], "officer arrest him at": [0, 65535], "arrest him at my": [0, 65535], "him at my suite": [0, 65535], "at my suite offi": [0, 65535], "my suite offi i": [0, 65535], "suite offi i do": [0, 65535], "offi i do and": [0, 65535], "i do and charge": [0, 65535], "do and charge you": [0, 65535], "and charge you in": [0, 65535], "charge you in the": [0, 65535], "you in the dukes": [0, 65535], "in the dukes name": [0, 65535], "the dukes name to": [0, 65535], "dukes name to obey": [0, 65535], "name to obey me": [0, 65535], "to obey me gold": [0, 65535], "obey me gold this": [0, 65535], "me gold this touches": [0, 65535], "gold this touches me": [0, 65535], "this touches me in": [0, 65535], "touches me in reputation": [0, 65535], "me in reputation either": [0, 65535], "in reputation either consent": [0, 65535], "reputation either consent to": [0, 65535], "either consent to pay": [0, 65535], "consent to pay this": [0, 65535], "to pay this sum": [0, 65535], "pay this sum for": [0, 65535], "this sum for me": [0, 65535], "sum for me or": [0, 65535], "for me or i": [0, 65535], "me or i attach": [0, 65535], "or i attach you": [0, 65535], "i attach you by": [0, 65535], "by this officer ant": [0, 65535], "this officer ant consent": [0, 65535], "officer ant consent to": [0, 65535], "ant consent to pay": [0, 65535], "consent to pay thee": [0, 65535], "to pay thee that": [0, 65535], "pay thee that i": [0, 65535], "thee that i neuer": [0, 65535], "that i neuer had": [0, 65535], "i neuer had arrest": [0, 65535], "neuer had arrest me": [0, 65535], "had arrest me foolish": [0, 65535], "arrest me foolish fellow": [0, 65535], "me foolish fellow if": [0, 65535], "foolish fellow if thou": [0, 65535], "fellow if thou dar'st": [0, 65535], "if thou dar'st gold": [0, 65535], "thou dar'st gold heere": [0, 65535], "dar'st gold heere is": [0, 65535], "gold heere is thy": [0, 65535], "heere is thy fee": [0, 65535], "is thy fee arrest": [0, 65535], "thy fee arrest him": [0, 65535], "fee arrest him officer": [0, 65535], "arrest him officer i": [0, 65535], "him officer i would": [0, 65535], "officer i would not": [0, 65535], "i would not spare": [0, 65535], "would not spare my": [0, 65535], "not spare my brother": [0, 65535], "spare my brother in": [0, 65535], "my brother in this": [0, 65535], "brother in this case": [0, 65535], "in this case if": [0, 65535], "this case if he": [0, 65535], "case if he should": [0, 65535], "if he should scorne": [0, 65535], "he should scorne me": [0, 65535], "should scorne me so": [0, 65535], "scorne me so apparantly": [0, 65535], "me so apparantly offic": [0, 65535], "so apparantly offic i": [0, 65535], "apparantly offic i do": [0, 65535], "offic i do arrest": [0, 65535], "i do arrest you": [0, 65535], "do arrest you sir": [0, 65535], "arrest you sir you": [0, 65535], "you sir you heare": [0, 65535], "sir you heare the": [0, 65535], "you heare the suite": [0, 65535], "heare the suite ant": [0, 65535], "the suite ant i": [0, 65535], "suite ant i do": [0, 65535], "ant i do obey": [0, 65535], "i do obey thee": [0, 65535], "do obey thee till": [0, 65535], "obey thee till i": [0, 65535], "thee till i giue": [0, 65535], "till i giue thee": [0, 65535], "i giue thee baile": [0, 65535], "giue thee baile but": [0, 65535], "thee baile but sirrah": [0, 65535], "baile but sirrah you": [0, 65535], "but sirrah you shall": [0, 65535], "sirrah you shall buy": [0, 65535], "you shall buy this": [0, 65535], "shall buy this sport": [0, 65535], "buy this sport as": [0, 65535], "this sport as deere": [0, 65535], "sport as deere as": [0, 65535], "as deere as all": [0, 65535], "deere as all the": [0, 65535], "as all the mettall": [0, 65535], "all the mettall in": [0, 65535], "the mettall in your": [0, 65535], "mettall in your shop": [0, 65535], "in your shop will": [0, 65535], "your shop will answer": [0, 65535], "shop will answer gold": [0, 65535], "will answer gold sir": [0, 65535], "answer gold sir sir": [0, 65535], "gold sir sir i": [0, 65535], "sir sir i shall": [0, 65535], "sir i shall haue": [0, 65535], "i shall haue law": [0, 65535], "shall haue law in": [0, 65535], "haue law in ephesus": [0, 65535], "law in ephesus to": [0, 65535], "in ephesus to your": [0, 65535], "ephesus to your notorious": [0, 65535], "to your notorious shame": [0, 65535], "your notorious shame i": [0, 65535], "notorious shame i doubt": [0, 65535], "shame i doubt it": [0, 65535], "i doubt it not": [0, 65535], "doubt it not enter": [0, 65535], "it not enter dromio": [0, 65535], "not enter dromio sira": [0, 65535], "enter dromio sira from": [0, 65535], "dromio sira from the": [0, 65535], "sira from the bay": [0, 65535], "from the bay dro": [0, 65535], "the bay dro master": [0, 65535], "bay dro master there's": [0, 65535], "dro master there's a": [0, 65535], "master there's a barke": [0, 65535], "there's a barke of": [0, 65535], "a barke of epidamium": [0, 65535], "barke of epidamium that": [0, 65535], "of epidamium that staies": [0, 65535], "epidamium that staies but": [0, 65535], "that staies but till": [0, 65535], "staies but till her": [0, 65535], "but till her owner": [0, 65535], "till her owner comes": [0, 65535], "her owner comes aboord": [0, 65535], "owner comes aboord and": [0, 65535], "comes aboord and then": [0, 65535], "aboord and then sir": [0, 65535], "and then sir she": [0, 65535], "then sir she beares": [0, 65535], "sir she beares away": [0, 65535], "she beares away our": [0, 65535], "beares away our fraughtage": [0, 65535], "away our fraughtage sir": [0, 65535], "our fraughtage sir i": [0, 65535], "fraughtage sir i haue": [0, 65535], "sir i haue conuei'd": [0, 65535], "i haue conuei'd aboord": [0, 65535], "haue conuei'd aboord and": [0, 65535], "conuei'd aboord and i": [0, 65535], "aboord and i haue": [0, 65535], "and i haue bought": [0, 65535], "i haue bought the": [0, 65535], "haue bought the oyle": [0, 65535], "bought the oyle the": [0, 65535], "the oyle the balsamum": [0, 65535], "oyle the balsamum and": [0, 65535], "the balsamum and aqua": [0, 65535], "balsamum and aqua vit\u00e6": [0, 65535], "and aqua vit\u00e6 the": [0, 65535], "aqua vit\u00e6 the ship": [0, 65535], "vit\u00e6 the ship is": [0, 65535], "the ship is in": [0, 65535], "ship is in her": [0, 65535], "is in her trim": [0, 65535], "in her trim the": [0, 65535], "her trim the merrie": [0, 65535], "trim the merrie winde": [0, 65535], "the merrie winde blowes": [0, 65535], "merrie winde blowes faire": [0, 65535], "winde blowes faire from": [0, 65535], "blowes faire from land": [0, 65535], "faire from land they": [0, 65535], "from land they stay": [0, 65535], "land they stay for": [0, 65535], "they stay for nought": [0, 65535], "stay for nought at": [0, 65535], "for nought at all": [0, 65535], "nought at all but": [0, 65535], "at all but for": [0, 65535], "all but for their": [0, 65535], "but for their owner": [0, 65535], "for their owner master": [0, 65535], "their owner master and": [0, 65535], "owner master and your": [0, 65535], "master and your selfe": [0, 65535], "and your selfe an": [0, 65535], "your selfe an how": [0, 65535], "selfe an how now": [0, 65535], "an how now a": [0, 65535], "how now a madman": [0, 65535], "now a madman why": [0, 65535], "a madman why thou": [0, 65535], "madman why thou peeuish": [0, 65535], "why thou peeuish sheep": [0, 65535], "thou peeuish sheep what": [0, 65535], "peeuish sheep what ship": [0, 65535], "sheep what ship of": [0, 65535], "what ship of epidamium": [0, 65535], "ship of epidamium staies": [0, 65535], "of epidamium staies for": [0, 65535], "epidamium staies for me": [0, 65535], "staies for me s": [0, 65535], "for me s dro": [0, 65535], "me s dro a": [0, 65535], "s dro a ship": [0, 65535], "dro a ship you": [0, 65535], "a ship you sent": [0, 65535], "ship you sent me": [0, 65535], "you sent me too": [0, 65535], "sent me too to": [0, 65535], "me too to hier": [0, 65535], "too to hier waftage": [0, 65535], "to hier waftage ant": [0, 65535], "hier waftage ant thou": [0, 65535], "waftage ant thou drunken": [0, 65535], "ant thou drunken slaue": [0, 65535], "thou drunken slaue i": [0, 65535], "drunken slaue i sent": [0, 65535], "slaue i sent thee": [0, 65535], "i sent thee for": [0, 65535], "sent thee for a": [0, 65535], "thee for a rope": [0, 65535], "for a rope and": [0, 65535], "a rope and told": [0, 65535], "rope and told thee": [0, 65535], "and told thee to": [0, 65535], "told thee to what": [0, 65535], "thee to what purpose": [0, 65535], "to what purpose and": [0, 65535], "what purpose and what": [0, 65535], "purpose and what end": [0, 65535], "and what end s": [0, 65535], "what end s dro": [0, 65535], "end s dro you": [0, 65535], "s dro you sent": [0, 65535], "dro you sent me": [0, 65535], "you sent me for": [0, 65535], "sent me for a": [0, 65535], "me for a ropes": [0, 65535], "for a ropes end": [0, 65535], "a ropes end as": [0, 65535], "ropes end as soone": [0, 65535], "end as soone you": [0, 65535], "as soone you sent": [0, 65535], "soone you sent me": [0, 65535], "you sent me to": [0, 65535], "sent me to the": [0, 65535], "me to the bay": [0, 65535], "to the bay sir": [0, 65535], "the bay sir for": [0, 65535], "bay sir for a": [0, 65535], "sir for a barke": [0, 65535], "for a barke ant": [0, 65535], "a barke ant i": [0, 65535], "barke ant i will": [0, 65535], "ant i will debate": [0, 65535], "i will debate this": [0, 65535], "will debate this matter": [0, 65535], "debate this matter at": [0, 65535], "this matter at more": [0, 65535], "matter at more leisure": [0, 65535], "at more leisure and": [0, 65535], "more leisure and teach": [0, 65535], "leisure and teach your": [0, 65535], "and teach your eares": [0, 65535], "teach your eares to": [0, 65535], "your eares to list": [0, 65535], "eares to list me": [0, 65535], "to list me with": [0, 65535], "list me with more": [0, 65535], "me with more heede": [0, 65535], "with more heede to": [0, 65535], "more heede to adriana": [0, 65535], "heede to adriana villaine": [0, 65535], "to adriana villaine hie": [0, 65535], "adriana villaine hie thee": [0, 65535], "villaine hie thee straight": [0, 65535], "hie thee straight giue": [0, 65535], "thee straight giue her": [0, 65535], "straight giue her this": [0, 65535], "giue her this key": [0, 65535], "her this key and": [0, 65535], "this key and tell": [0, 65535], "key and tell her": [0, 65535], "and tell her in": [0, 65535], "tell her in the": [0, 65535], "her in the deske": [0, 65535], "in the deske that's": [0, 65535], "the deske that's couer'd": [0, 65535], "deske that's couer'd o're": [0, 65535], "that's couer'd o're with": [0, 65535], "couer'd o're with turkish": [0, 65535], "o're with turkish tapistrie": [0, 65535], "with turkish tapistrie there": [0, 65535], "turkish tapistrie there is": [0, 65535], "tapistrie there is a": [0, 65535], "there is a purse": [0, 65535], "is a purse of": [0, 65535], "a purse of duckets": [0, 65535], "purse of duckets let": [0, 65535], "of duckets let her": [0, 65535], "duckets let her send": [0, 65535], "let her send it": [0, 65535], "her send it tell": [0, 65535], "send it tell her": [0, 65535], "it tell her i": [0, 65535], "tell her i am": [0, 65535], "her i am arrested": [0, 65535], "i am arrested in": [0, 65535], "am arrested in the": [0, 65535], "arrested in the streete": [0, 65535], "in the streete and": [0, 65535], "the streete and that": [0, 65535], "streete and that shall": [0, 65535], "and that shall baile": [0, 65535], "that shall baile me": [0, 65535], "shall baile me hie": [0, 65535], "baile me hie thee": [0, 65535], "me hie thee slaue": [0, 65535], "hie thee slaue be": [0, 65535], "thee slaue be gone": [0, 65535], "slaue be gone on": [0, 65535], "be gone on officer": [0, 65535], "gone on officer to": [0, 65535], "on officer to prison": [0, 65535], "officer to prison till": [0, 65535], "to prison till it": [0, 65535], "prison till it come": [0, 65535], "till it come exeunt": [0, 65535], "it come exeunt s": [0, 65535], "come exeunt s dromio": [0, 65535], "exeunt s dromio to": [0, 65535], "s dromio to adriana": [0, 65535], "dromio to adriana that": [0, 65535], "to adriana that is": [0, 65535], "adriana that is where": [0, 65535], "that is where we": [0, 65535], "is where we din'd": [0, 65535], "where we din'd where": [0, 65535], "we din'd where dowsabell": [0, 65535], "din'd where dowsabell did": [0, 65535], "where dowsabell did claime": [0, 65535], "dowsabell did claime me": [0, 65535], "did claime me for": [0, 65535], "claime me for her": [0, 65535], "me for her husband": [0, 65535], "for her husband she": [0, 65535], "her husband she is": [0, 65535], "husband she is too": [0, 65535], "she is too bigge": [0, 65535], "is too bigge i": [0, 65535], "too bigge i hope": [0, 65535], "bigge i hope for": [0, 65535], "i hope for me": [0, 65535], "hope for me to": [0, 65535], "for me to compasse": [0, 65535], "me to compasse thither": [0, 65535], "to compasse thither i": [0, 65535], "compasse thither i must": [0, 65535], "thither i must although": [0, 65535], "i must although against": [0, 65535], "must although against my": [0, 65535], "although against my will": [0, 65535], "against my will for": [0, 65535], "my will for seruants": [0, 65535], "will for seruants must": [0, 65535], "for seruants must their": [0, 65535], "seruants must their masters": [0, 65535], "must their masters mindes": [0, 65535], "their masters mindes fulfill": [0, 65535], "masters mindes fulfill exit": [0, 65535], "mindes fulfill exit enter": [0, 65535], "fulfill exit enter adriana": [0, 65535], "exit enter adriana and": [0, 65535], "adriana and luciana adr": [0, 65535], "and luciana adr ah": [0, 65535], "luciana adr ah luciana": [0, 65535], "adr ah luciana did": [0, 65535], "ah luciana did he": [0, 65535], "luciana did he tempt": [0, 65535], "did he tempt thee": [0, 65535], "he tempt thee so": [0, 65535], "tempt thee so might'st": [0, 65535], "thee so might'st thou": [0, 65535], "so might'st thou perceiue": [0, 65535], "might'st thou perceiue austeerely": [0, 65535], "thou perceiue austeerely in": [0, 65535], "perceiue austeerely in his": [0, 65535], "austeerely in his eie": [0, 65535], "in his eie that": [0, 65535], "his eie that he": [0, 65535], "eie that he did": [0, 65535], "that he did plead": [0, 65535], "he did plead in": [0, 65535], "did plead in earnest": [0, 65535], "plead in earnest yea": [0, 65535], "in earnest yea or": [0, 65535], "earnest yea or no": [0, 65535], "yea or no look'd": [0, 65535], "or no look'd he": [0, 65535], "no look'd he or": [0, 65535], "look'd he or red": [0, 65535], "he or red or": [0, 65535], "or red or pale": [0, 65535], "red or pale or": [0, 65535], "or pale or sad": [0, 65535], "pale or sad or": [0, 65535], "or sad or merrily": [0, 65535], "sad or merrily what": [0, 65535], "or merrily what obseruation": [0, 65535], "merrily what obseruation mad'st": [0, 65535], "what obseruation mad'st thou": [0, 65535], "obseruation mad'st thou in": [0, 65535], "mad'st thou in this": [0, 65535], "thou in this case": [0, 65535], "in this case oh": [0, 65535], "this case oh his": [0, 65535], "case oh his hearts": [0, 65535], "oh his hearts meteors": [0, 65535], "his hearts meteors tilting": [0, 65535], "hearts meteors tilting in": [0, 65535], "meteors tilting in his": [0, 65535], "tilting in his face": [0, 65535], "in his face luc": [0, 65535], "his face luc first": [0, 65535], "face luc first he": [0, 65535], "luc first he deni'de": [0, 65535], "first he deni'de you": [0, 65535], "he deni'de you had": [0, 65535], "deni'de you had in": [0, 65535], "you had in him": [0, 65535], "had in him no": [0, 65535], "in him no right": [0, 65535], "him no right adr": [0, 65535], "no right adr he": [0, 65535], "right adr he meant": [0, 65535], "adr he meant he": [0, 65535], "he meant he did": [0, 65535], "meant he did me": [0, 65535], "he did me none": [0, 65535], "did me none the": [0, 65535], "me none the more": [0, 65535], "none the more my": [0, 65535], "the more my spight": [0, 65535], "more my spight luc": [0, 65535], "my spight luc then": [0, 65535], "spight luc then swore": [0, 65535], "luc then swore he": [0, 65535], "then swore he that": [0, 65535], "swore he that he": [0, 65535], "he that he was": [0, 65535], "that he was a": [0, 65535], "he was a stranger": [0, 65535], "was a stranger heere": [0, 65535], "a stranger heere adr": [0, 65535], "stranger heere adr and": [0, 65535], "heere adr and true": [0, 65535], "adr and true he": [0, 65535], "and true he swore": [0, 65535], "true he swore though": [0, 65535], "he swore though yet": [0, 65535], "swore though yet forsworne": [0, 65535], "though yet forsworne hee": [0, 65535], "yet forsworne hee were": [0, 65535], "forsworne hee were luc": [0, 65535], "hee were luc then": [0, 65535], "were luc then pleaded": [0, 65535], "luc then pleaded i": [0, 65535], "then pleaded i for": [0, 65535], "pleaded i for you": [0, 65535], "i for you adr": [0, 65535], "for you adr and": [0, 65535], "you adr and what": [0, 65535], "adr and what said": [0, 65535], "and what said he": [0, 65535], "what said he luc": [0, 65535], "said he luc that": [0, 65535], "he luc that loue": [0, 65535], "luc that loue i": [0, 65535], "that loue i begg'd": [0, 65535], "loue i begg'd for": [0, 65535], "i begg'd for you": [0, 65535], "begg'd for you he": [0, 65535], "for you he begg'd": [0, 65535], "you he begg'd of": [0, 65535], "he begg'd of me": [0, 65535], "begg'd of me adr": [0, 65535], "of me adr with": [0, 65535], "me adr with what": [0, 65535], "adr with what perswasion": [0, 65535], "with what perswasion did": [0, 65535], "what perswasion did he": [0, 65535], "perswasion did he tempt": [0, 65535], "did he tempt thy": [0, 65535], "he tempt thy loue": [0, 65535], "tempt thy loue luc": [0, 65535], "thy loue luc with": [0, 65535], "loue luc with words": [0, 65535], "luc with words that": [0, 65535], "with words that in": [0, 65535], "words that in an": [0, 65535], "that in an honest": [0, 65535], "in an honest suit": [0, 65535], "an honest suit might": [0, 65535], "honest suit might moue": [0, 65535], "suit might moue first": [0, 65535], "might moue first he": [0, 65535], "moue first he did": [0, 65535], "first he did praise": [0, 65535], "he did praise my": [0, 65535], "did praise my beautie": [0, 65535], "praise my beautie then": [0, 65535], "my beautie then my": [0, 65535], "beautie then my speech": [0, 65535], "then my speech adr": [0, 65535], "my speech adr did'st": [0, 65535], "speech adr did'st speake": [0, 65535], "adr did'st speake him": [0, 65535], "did'st speake him faire": [0, 65535], "speake him faire luc": [0, 65535], "him faire luc haue": [0, 65535], "faire luc haue patience": [0, 65535], "luc haue patience i": [0, 65535], "haue patience i beseech": [0, 65535], "patience i beseech adr": [0, 65535], "i beseech adr i": [0, 65535], "beseech adr i cannot": [0, 65535], "adr i cannot nor": [0, 65535], "i cannot nor i": [0, 65535], "cannot nor i will": [0, 65535], "nor i will not": [0, 65535], "i will not hold": [0, 65535], "will not hold me": [0, 65535], "not hold me still": [0, 65535], "hold me still my": [0, 65535], "me still my tongue": [0, 65535], "still my tongue though": [0, 65535], "my tongue though not": [0, 65535], "tongue though not my": [0, 65535], "though not my heart": [0, 65535], "not my heart shall": [0, 65535], "my heart shall haue": [0, 65535], "heart shall haue his": [0, 65535], "shall haue his will": [0, 65535], "haue his will he": [0, 65535], "his will he is": [0, 65535], "will he is deformed": [0, 65535], "he is deformed crooked": [0, 65535], "is deformed crooked old": [0, 65535], "deformed crooked old and": [0, 65535], "crooked old and sere": [0, 65535], "old and sere ill": [0, 65535], "and sere ill fac'd": [0, 65535], "sere ill fac'd worse": [0, 65535], "ill fac'd worse bodied": [0, 65535], "fac'd worse bodied shapelesse": [0, 65535], "worse bodied shapelesse euery": [0, 65535], "bodied shapelesse euery where": [0, 65535], "shapelesse euery where vicious": [0, 65535], "euery where vicious vngentle": [0, 65535], "where vicious vngentle foolish": [0, 65535], "vicious vngentle foolish blunt": [0, 65535], "vngentle foolish blunt vnkinde": [0, 65535], "foolish blunt vnkinde stigmaticall": [0, 65535], "blunt vnkinde stigmaticall in": [0, 65535], "vnkinde stigmaticall in making": [0, 65535], "stigmaticall in making worse": [0, 65535], "in making worse in": [0, 65535], "making worse in minde": [0, 65535], "worse in minde luc": [0, 65535], "in minde luc who": [0, 65535], "minde luc who would": [0, 65535], "luc who would be": [0, 65535], "who would be iealous": [0, 65535], "would be iealous then": [0, 65535], "be iealous then of": [0, 65535], "iealous then of such": [0, 65535], "then of such a": [0, 65535], "of such a one": [0, 65535], "such a one no": [0, 65535], "a one no euill": [0, 65535], "one no euill lost": [0, 65535], "no euill lost is": [0, 65535], "euill lost is wail'd": [0, 65535], "lost is wail'd when": [0, 65535], "is wail'd when it": [0, 65535], "wail'd when it is": [0, 65535], "when it is gone": [0, 65535], "it is gone adr": [0, 65535], "is gone adr ah": [0, 65535], "gone adr ah but": [0, 65535], "adr ah but i": [0, 65535], "ah but i thinke": [0, 65535], "but i thinke him": [0, 65535], "i thinke him better": [0, 65535], "thinke him better then": [0, 65535], "him better then i": [0, 65535], "better then i say": [0, 65535], "then i say and": [0, 65535], "i say and yet": [0, 65535], "say and yet would": [0, 65535], "and yet would herein": [0, 65535], "yet would herein others": [0, 65535], "would herein others eies": [0, 65535], "herein others eies were": [0, 65535], "others eies were worse": [0, 65535], "eies were worse farre": [0, 65535], "were worse farre from": [0, 65535], "worse farre from her": [0, 65535], "farre from her nest": [0, 65535], "from her nest the": [0, 65535], "her nest the lapwing": [0, 65535], "nest the lapwing cries": [0, 65535], "the lapwing cries away": [0, 65535], "lapwing cries away my": [0, 65535], "cries away my heart": [0, 65535], "away my heart praies": [0, 65535], "my heart praies for": [0, 65535], "heart praies for him": [0, 65535], "praies for him though": [0, 65535], "for him though my": [0, 65535], "him though my tongue": [0, 65535], "though my tongue doe": [0, 65535], "my tongue doe curse": [0, 65535], "tongue doe curse enter": [0, 65535], "doe curse enter s": [0, 65535], "curse enter s dromio": [0, 65535], "enter s dromio dro": [0, 65535], "s dromio dro here": [0, 65535], "dromio dro here goe": [0, 65535], "dro here goe the": [0, 65535], "here goe the deske": [0, 65535], "goe the deske the": [0, 65535], "the deske the purse": [0, 65535], "deske the purse sweet": [0, 65535], "the purse sweet now": [0, 65535], "purse sweet now make": [0, 65535], "sweet now make haste": [0, 65535], "now make haste luc": [0, 65535], "make haste luc how": [0, 65535], "haste luc how hast": [0, 65535], "luc how hast thou": [0, 65535], "how hast thou lost": [0, 65535], "hast thou lost thy": [0, 65535], "thou lost thy breath": [0, 65535], "lost thy breath s": [0, 65535], "thy breath s dro": [0, 65535], "breath s dro by": [0, 65535], "s dro by running": [0, 65535], "dro by running fast": [0, 65535], "by running fast adr": [0, 65535], "running fast adr where": [0, 65535], "fast adr where is": [0, 65535], "adr where is thy": [0, 65535], "where is thy master": [0, 65535], "is thy master dromio": [0, 65535], "thy master dromio is": [0, 65535], "master dromio is he": [0, 65535], "dromio is he well": [0, 65535], "is he well s": [0, 65535], "he well s dro": [0, 65535], "well s dro no": [0, 65535], "s dro no he's": [0, 65535], "dro no he's in": [0, 65535], "no he's in tartar": [0, 65535], "he's in tartar limbo": [0, 65535], "in tartar limbo worse": [0, 65535], "tartar limbo worse then": [0, 65535], "limbo worse then hell": [0, 65535], "worse then hell a": [0, 65535], "then hell a diuell": [0, 65535], "hell a diuell in": [0, 65535], "a diuell in an": [0, 65535], "diuell in an euerlasting": [0, 65535], "in an euerlasting garment": [0, 65535], "an euerlasting garment hath": [0, 65535], "euerlasting garment hath him": [0, 65535], "garment hath him on": [0, 65535], "hath him on whose": [0, 65535], "him on whose hard": [0, 65535], "on whose hard heart": [0, 65535], "whose hard heart is": [0, 65535], "hard heart is button'd": [0, 65535], "heart is button'd vp": [0, 65535], "is button'd vp with": [0, 65535], "button'd vp with steele": [0, 65535], "vp with steele a": [0, 65535], "with steele a feind": [0, 65535], "steele a feind a": [0, 65535], "a feind a fairie": [0, 65535], "feind a fairie pittilesse": [0, 65535], "a fairie pittilesse and": [0, 65535], "fairie pittilesse and ruffe": [0, 65535], "pittilesse and ruffe a": [0, 65535], "and ruffe a wolfe": [0, 65535], "ruffe a wolfe nay": [0, 65535], "a wolfe nay worse": [0, 65535], "wolfe nay worse a": [0, 65535], "nay worse a fellow": [0, 65535], "worse a fellow all": [0, 65535], "a fellow all in": [0, 65535], "fellow all in buffe": [0, 65535], "all in buffe a": [0, 65535], "in buffe a back": [0, 65535], "buffe a back friend": [0, 65535], "a back friend a": [0, 65535], "back friend a shoulder": [0, 65535], "friend a shoulder clapper": [0, 65535], "a shoulder clapper one": [0, 65535], "shoulder clapper one that": [0, 65535], "clapper one that countermads": [0, 65535], "one that countermads the": [0, 65535], "that countermads the passages": [0, 65535], "countermads the passages of": [0, 65535], "the passages of allies": [0, 65535], "passages of allies creekes": [0, 65535], "of allies creekes and": [0, 65535], "allies creekes and narrow": [0, 65535], "creekes and narrow lands": [0, 65535], "and narrow lands a": [0, 65535], "narrow lands a hound": [0, 65535], "lands a hound that": [0, 65535], "a hound that runs": [0, 65535], "hound that runs counter": [0, 65535], "that runs counter and": [0, 65535], "runs counter and yet": [0, 65535], "counter and yet draws": [0, 65535], "and yet draws drifoot": [0, 65535], "yet draws drifoot well": [0, 65535], "draws drifoot well one": [0, 65535], "drifoot well one that": [0, 65535], "well one that before": [0, 65535], "one that before the": [0, 65535], "that before the iudgment": [0, 65535], "before the iudgment carries": [0, 65535], "the iudgment carries poore": [0, 65535], "iudgment carries poore soules": [0, 65535], "carries poore soules to": [0, 65535], "poore soules to hel": [0, 65535], "soules to hel adr": [0, 65535], "to hel adr why": [0, 65535], "hel adr why man": [0, 65535], "adr why man what": [0, 65535], "why man what is": [0, 65535], "man what is the": [0, 65535], "is the matter s": [0, 65535], "the matter s dro": [0, 65535], "matter s dro i": [0, 65535], "s dro i doe": [0, 65535], "dro i doe not": [0, 65535], "doe not know the": [0, 65535], "not know the matter": [0, 65535], "know the matter hee": [0, 65535], "the matter hee is": [0, 65535], "matter hee is rested": [0, 65535], "hee is rested on": [0, 65535], "is rested on the": [0, 65535], "rested on the case": [0, 65535], "on the case adr": [0, 65535], "the case adr what": [0, 65535], "case adr what is": [0, 65535], "adr what is he": [0, 65535], "what is he arrested": [0, 65535], "is he arrested tell": [0, 65535], "he arrested tell me": [0, 65535], "arrested tell me at": [0, 65535], "tell me at whose": [0, 65535], "me at whose suite": [0, 65535], "at whose suite s": [0, 65535], "whose suite s dro": [0, 65535], "suite s dro i": [0, 65535], "s dro i know": [0, 65535], "dro i know not": [0, 65535], "i know not at": [0, 65535], "know not at whose": [0, 65535], "not at whose suite": [0, 65535], "at whose suite he": [0, 65535], "whose suite he is": [0, 65535], "suite he is arested": [0, 65535], "he is arested well": [0, 65535], "is arested well but": [0, 65535], "arested well but is": [0, 65535], "well but is in": [0, 65535], "but is in a": [0, 65535], "is in a suite": [0, 65535], "in a suite of": [0, 65535], "a suite of buffe": [0, 65535], "suite of buffe which": [0, 65535], "of buffe which rested": [0, 65535], "buffe which rested him": [0, 65535], "which rested him that": [0, 65535], "rested him that can": [0, 65535], "him that can i": [0, 65535], "that can i tell": [0, 65535], "can i tell will": [0, 65535], "i tell will you": [0, 65535], "tell will you send": [0, 65535], "will you send him": [0, 65535], "you send him mistris": [0, 65535], "send him mistris redemption": [0, 65535], "him mistris redemption the": [0, 65535], "mistris redemption the monie": [0, 65535], "redemption the monie in": [0, 65535], "the monie in his": [0, 65535], "monie in his deske": [0, 65535], "in his deske adr": [0, 65535], "his deske adr go": [0, 65535], "deske adr go fetch": [0, 65535], "adr go fetch it": [0, 65535], "go fetch it sister": [0, 65535], "fetch it sister this": [0, 65535], "it sister this i": [0, 65535], "sister this i wonder": [0, 65535], "this i wonder at": [0, 65535], "i wonder at exit": [0, 65535], "wonder at exit luciana": [0, 65535], "at exit luciana thus": [0, 65535], "exit luciana thus he": [0, 65535], "luciana thus he vnknowne": [0, 65535], "thus he vnknowne to": [0, 65535], "he vnknowne to me": [0, 65535], "vnknowne to me should": [0, 65535], "to me should be": [0, 65535], "me should be in": [0, 65535], "should be in debt": [0, 65535], "be in debt tell": [0, 65535], "in debt tell me": [0, 65535], "debt tell me was": [0, 65535], "tell me was he": [0, 65535], "me was he arested": [0, 65535], "was he arested on": [0, 65535], "he arested on a": [0, 65535], "arested on a band": [0, 65535], "on a band s": [0, 65535], "a band s dro": [0, 65535], "band s dro not": [0, 65535], "s dro not on": [0, 65535], "dro not on a": [0, 65535], "not on a band": [0, 65535], "on a band but": [0, 65535], "a band but on": [0, 65535], "band but on a": [0, 65535], "but on a stronger": [0, 65535], "on a stronger thing": [0, 65535], "a stronger thing a": [0, 65535], "stronger thing a chaine": [0, 65535], "thing a chaine a": [0, 65535], "a chaine a chaine": [0, 65535], "chaine a chaine doe": [0, 65535], "a chaine doe you": [0, 65535], "chaine doe you not": [0, 65535], "doe you not here": [0, 65535], "you not here it": [0, 65535], "not here it ring": [0, 65535], "here it ring adria": [0, 65535], "it ring adria what": [0, 65535], "ring adria what the": [0, 65535], "adria what the chaine": [0, 65535], "what the chaine s": [0, 65535], "the chaine s dro": [0, 65535], "chaine s dro no": [0, 65535], "s dro no no": [0, 65535], "dro no no the": [0, 65535], "no no the bell": [0, 65535], "no the bell 'tis": [0, 65535], "the bell 'tis time": [0, 65535], "bell 'tis time that": [0, 65535], "'tis time that i": [0, 65535], "that i were gone": [0, 65535], "i were gone it": [0, 65535], "were gone it was": [0, 65535], "gone it was two": [0, 65535], "it was two ere": [0, 65535], "was two ere i": [0, 65535], "two ere i left": [0, 65535], "ere i left him": [0, 65535], "i left him and": [0, 65535], "left him and now": [0, 65535], "him and now the": [0, 65535], "and now the clocke": [0, 65535], "now the clocke strikes": [0, 65535], "the clocke strikes one": [0, 65535], "clocke strikes one adr": [0, 65535], "strikes one adr the": [0, 65535], "one adr the houres": [0, 65535], "adr the houres come": [0, 65535], "the houres come backe": [0, 65535], "houres come backe that": [0, 65535], "come backe that did": [0, 65535], "backe that did i": [0, 65535], "that did i neuer": [0, 65535], "did i neuer here": [0, 65535], "i neuer here s": [0, 65535], "neuer here s dro": [0, 65535], "here s dro oh": [0, 65535], "s dro oh yes": [0, 65535], "dro oh yes if": [0, 65535], "oh yes if any": [0, 65535], "yes if any houre": [0, 65535], "if any houre meete": [0, 65535], "any houre meete a": [0, 65535], "houre meete a serieant": [0, 65535], "meete a serieant a": [0, 65535], "a serieant a turnes": [0, 65535], "serieant a turnes backe": [0, 65535], "a turnes backe for": [0, 65535], "turnes backe for verie": [0, 65535], "backe for verie feare": [0, 65535], "for verie feare adri": [0, 65535], "verie feare adri as": [0, 65535], "feare adri as if": [0, 65535], "adri as if time": [0, 65535], "as if time were": [0, 65535], "if time were in": [0, 65535], "time were in debt": [0, 65535], "were in debt how": [0, 65535], "in debt how fondly": [0, 65535], "debt how fondly do'st": [0, 65535], "how fondly do'st thou": [0, 65535], "fondly do'st thou reason": [0, 65535], "do'st thou reason s": [0, 65535], "thou reason s dro": [0, 65535], "reason s dro time": [0, 65535], "s dro time is": [0, 65535], "dro time is a": [0, 65535], "time is a verie": [0, 65535], "is a verie bankerout": [0, 65535], "a verie bankerout and": [0, 65535], "verie bankerout and owes": [0, 65535], "bankerout and owes more": [0, 65535], "and owes more then": [0, 65535], "owes more then he's": [0, 65535], "more then he's worth": [0, 65535], "then he's worth to": [0, 65535], "he's worth to season": [0, 65535], "worth to season nay": [0, 65535], "to season nay he's": [0, 65535], "season nay he's a": [0, 65535], "nay he's a theefe": [0, 65535], "he's a theefe too": [0, 65535], "a theefe too haue": [0, 65535], "theefe too haue you": [0, 65535], "too haue you not": [0, 65535], "haue you not heard": [0, 65535], "you not heard men": [0, 65535], "not heard men say": [0, 65535], "heard men say that": [0, 65535], "men say that time": [0, 65535], "say that time comes": [0, 65535], "that time comes stealing": [0, 65535], "time comes stealing on": [0, 65535], "comes stealing on by": [0, 65535], "stealing on by night": [0, 65535], "on by night and": [0, 65535], "by night and day": [0, 65535], "night and day if": [0, 65535], "and day if i": [0, 65535], "day if i be": [0, 65535], "if i be in": [0, 65535], "i be in debt": [0, 65535], "be in debt and": [0, 65535], "in debt and theft": [0, 65535], "debt and theft and": [0, 65535], "and theft and a": [0, 65535], "theft and a serieant": [0, 65535], "and a serieant in": [0, 65535], "a serieant in the": [0, 65535], "serieant in the way": [0, 65535], "in the way hath": [0, 65535], "the way hath he": [0, 65535], "way hath he not": [0, 65535], "hath he not reason": [0, 65535], "he not reason to": [0, 65535], "not reason to turne": [0, 65535], "reason to turne backe": [0, 65535], "to turne backe an": [0, 65535], "turne backe an houre": [0, 65535], "backe an houre in": [0, 65535], "an houre in a": [0, 65535], "houre in a day": [0, 65535], "in a day enter": [0, 65535], "a day enter luciana": [0, 65535], "day enter luciana adr": [0, 65535], "enter luciana adr go": [0, 65535], "luciana adr go dromio": [0, 65535], "adr go dromio there's": [0, 65535], "go dromio there's the": [0, 65535], "dromio there's the monie": [0, 65535], "there's the monie beare": [0, 65535], "the monie beare it": [0, 65535], "monie beare it straight": [0, 65535], "beare it straight and": [0, 65535], "it straight and bring": [0, 65535], "straight and bring thy": [0, 65535], "and bring thy master": [0, 65535], "bring thy master home": [0, 65535], "thy master home imediately": [0, 65535], "master home imediately come": [0, 65535], "home imediately come sister": [0, 65535], "imediately come sister i": [0, 65535], "come sister i am": [0, 65535], "sister i am prest": [0, 65535], "i am prest downe": [0, 65535], "am prest downe with": [0, 65535], "prest downe with conceit": [0, 65535], "downe with conceit conceit": [0, 65535], "with conceit conceit my": [0, 65535], "conceit conceit my comfort": [0, 65535], "conceit my comfort and": [0, 65535], "my comfort and my": [0, 65535], "comfort and my iniurie": [0, 65535], "and my iniurie exit": [0, 65535], "my iniurie exit enter": [0, 65535], "iniurie exit enter antipholus": [0, 65535], "exit enter antipholus siracusia": [0, 65535], "enter antipholus siracusia there's": [0, 65535], "antipholus siracusia there's not": [0, 65535], "siracusia there's not a": [0, 65535], "there's not a man": [0, 65535], "not a man i": [0, 65535], "a man i meete": [0, 65535], "man i meete but": [0, 65535], "i meete but doth": [0, 65535], "meete but doth salute": [0, 65535], "but doth salute me": [0, 65535], "doth salute me as": [0, 65535], "salute me as if": [0, 65535], "me as if i": [0, 65535], "as if i were": [0, 65535], "if i were their": [0, 65535], "i were their well": [0, 65535], "were their well acquainted": [0, 65535], "their well acquainted friend": [0, 65535], "well acquainted friend and": [0, 65535], "acquainted friend and euerie": [0, 65535], "friend and euerie one": [0, 65535], "and euerie one doth": [0, 65535], "euerie one doth call": [0, 65535], "one doth call me": [0, 65535], "doth call me by": [0, 65535], "call me by my": [0, 65535], "me by my name": [0, 65535], "by my name some": [0, 65535], "my name some tender": [0, 65535], "name some tender monie": [0, 65535], "some tender monie to": [0, 65535], "tender monie to me": [0, 65535], "monie to me some": [0, 65535], "to me some inuite": [0, 65535], "me some inuite me": [0, 65535], "some inuite me some": [0, 65535], "inuite me some other": [0, 65535], "me some other giue": [0, 65535], "some other giue me": [0, 65535], "other giue me thankes": [0, 65535], "giue me thankes for": [0, 65535], "me thankes for kindnesses": [0, 65535], "thankes for kindnesses some": [0, 65535], "for kindnesses some offer": [0, 65535], "kindnesses some offer me": [0, 65535], "some offer me commodities": [0, 65535], "offer me commodities to": [0, 65535], "me commodities to buy": [0, 65535], "commodities to buy euen": [0, 65535], "to buy euen now": [0, 65535], "buy euen now a": [0, 65535], "euen now a tailor": [0, 65535], "now a tailor cal'd": [0, 65535], "a tailor cal'd me": [0, 65535], "tailor cal'd me in": [0, 65535], "cal'd me in his": [0, 65535], "me in his shop": [0, 65535], "in his shop and": [0, 65535], "his shop and show'd": [0, 65535], "shop and show'd me": [0, 65535], "and show'd me silkes": [0, 65535], "show'd me silkes that": [0, 65535], "me silkes that he": [0, 65535], "silkes that he had": [0, 65535], "that he had bought": [0, 65535], "he had bought for": [0, 65535], "had bought for me": [0, 65535], "bought for me and": [0, 65535], "for me and therewithall": [0, 65535], "me and therewithall tooke": [0, 65535], "and therewithall tooke measure": [0, 65535], "therewithall tooke measure of": [0, 65535], "tooke measure of my": [0, 65535], "measure of my body": [0, 65535], "of my body sure": [0, 65535], "my body sure these": [0, 65535], "body sure these are": [0, 65535], "sure these are but": [0, 65535], "these are but imaginarie": [0, 65535], "are but imaginarie wiles": [0, 65535], "but imaginarie wiles and": [0, 65535], "imaginarie wiles and lapland": [0, 65535], "wiles and lapland sorcerers": [0, 65535], "and lapland sorcerers inhabite": [0, 65535], "lapland sorcerers inhabite here": [0, 65535], "sorcerers inhabite here enter": [0, 65535], "inhabite here enter dromio": [0, 65535], "here enter dromio sir": [0, 65535], "enter dromio sir s": [0, 65535], "dromio sir s dro": [0, 65535], "sir s dro master": [0, 65535], "s dro master here's": [0, 65535], "dro master here's the": [0, 65535], "master here's the gold": [0, 65535], "here's the gold you": [0, 65535], "the gold you sent": [0, 65535], "gold you sent me": [0, 65535], "sent me for what": [0, 65535], "me for what haue": [0, 65535], "for what haue you": [0, 65535], "what haue you got": [0, 65535], "haue you got the": [0, 65535], "you got the picture": [0, 65535], "got the picture of": [0, 65535], "the picture of old": [0, 65535], "picture of old adam": [0, 65535], "of old adam new": [0, 65535], "old adam new apparel'd": [0, 65535], "adam new apparel'd ant": [0, 65535], "new apparel'd ant what": [0, 65535], "apparel'd ant what gold": [0, 65535], "ant what gold is": [0, 65535], "what gold is this": [0, 65535], "gold is this what": [0, 65535], "is this what adam": [0, 65535], "this what adam do'st": [0, 65535], "what adam do'st thou": [0, 65535], "adam do'st thou meane": [0, 65535], "do'st thou meane s": [0, 65535], "thou meane s dro": [0, 65535], "meane s dro not": [0, 65535], "s dro not that": [0, 65535], "dro not that adam": [0, 65535], "not that adam that": [0, 65535], "that adam that kept": [0, 65535], "adam that kept the": [0, 65535], "that kept the paradise": [0, 65535], "kept the paradise but": [0, 65535], "the paradise but that": [0, 65535], "paradise but that adam": [0, 65535], "but that adam that": [0, 65535], "that adam that keepes": [0, 65535], "adam that keepes the": [0, 65535], "that keepes the prison": [0, 65535], "keepes the prison hee": [0, 65535], "the prison hee that": [0, 65535], "prison hee that goes": [0, 65535], "hee that goes in": [0, 65535], "that goes in the": [0, 65535], "goes in the calues": [0, 65535], "in the calues skin": [0, 65535], "the calues skin that": [0, 65535], "calues skin that was": [0, 65535], "skin that was kil'd": [0, 65535], "that was kil'd for": [0, 65535], "was kil'd for the": [0, 65535], "kil'd for the prodigall": [0, 65535], "for the prodigall hee": [0, 65535], "the prodigall hee that": [0, 65535], "prodigall hee that came": [0, 65535], "hee that came behinde": [0, 65535], "that came behinde you": [0, 65535], "came behinde you sir": [0, 65535], "behinde you sir like": [0, 65535], "you sir like an": [0, 65535], "sir like an euill": [0, 65535], "like an euill angel": [0, 65535], "an euill angel and": [0, 65535], "euill angel and bid": [0, 65535], "angel and bid you": [0, 65535], "and bid you forsake": [0, 65535], "bid you forsake your": [0, 65535], "you forsake your libertie": [0, 65535], "forsake your libertie ant": [0, 65535], "your libertie ant i": [0, 65535], "libertie ant i vnderstand": [0, 65535], "ant i vnderstand thee": [0, 65535], "i vnderstand thee not": [0, 65535], "vnderstand thee not s": [0, 65535], "thee not s dro": [0, 65535], "not s dro no": [0, 65535], "s dro no why": [0, 65535], "dro no why 'tis": [0, 65535], "no why 'tis a": [0, 65535], "why 'tis a plaine": [0, 65535], "'tis a plaine case": [0, 65535], "a plaine case he": [0, 65535], "plaine case he that": [0, 65535], "case he that went": [0, 65535], "he that went like": [0, 65535], "that went like a": [0, 65535], "went like a base": [0, 65535], "like a base viole": [0, 65535], "a base viole in": [0, 65535], "base viole in a": [0, 65535], "viole in a case": [0, 65535], "in a case of": [0, 65535], "a case of leather": [0, 65535], "case of leather the": [0, 65535], "of leather the man": [0, 65535], "leather the man sir": [0, 65535], "the man sir that": [0, 65535], "man sir that when": [0, 65535], "sir that when gentlemen": [0, 65535], "that when gentlemen are": [0, 65535], "when gentlemen are tired": [0, 65535], "gentlemen are tired giues": [0, 65535], "are tired giues them": [0, 65535], "tired giues them a": [0, 65535], "giues them a sob": [0, 65535], "them a sob and": [0, 65535], "a sob and rests": [0, 65535], "sob and rests them": [0, 65535], "and rests them he": [0, 65535], "rests them he sir": [0, 65535], "them he sir that": [0, 65535], "he sir that takes": [0, 65535], "sir that takes pittie": [0, 65535], "that takes pittie on": [0, 65535], "takes pittie on decaied": [0, 65535], "pittie on decaied men": [0, 65535], "on decaied men and": [0, 65535], "decaied men and giues": [0, 65535], "men and giues them": [0, 65535], "and giues them suites": [0, 65535], "giues them suites of": [0, 65535], "them suites of durance": [0, 65535], "suites of durance he": [0, 65535], "of durance he that": [0, 65535], "durance he that sets": [0, 65535], "he that sets vp": [0, 65535], "that sets vp his": [0, 65535], "sets vp his rest": [0, 65535], "vp his rest to": [0, 65535], "his rest to doe": [0, 65535], "rest to doe more": [0, 65535], "to doe more exploits": [0, 65535], "doe more exploits with": [0, 65535], "more exploits with his": [0, 65535], "exploits with his mace": [0, 65535], "with his mace then": [0, 65535], "his mace then a": [0, 65535], "mace then a moris": [0, 65535], "then a moris pike": [0, 65535], "a moris pike ant": [0, 65535], "moris pike ant what": [0, 65535], "pike ant what thou": [0, 65535], "ant what thou mean'st": [0, 65535], "what thou mean'st an": [0, 65535], "thou mean'st an officer": [0, 65535], "mean'st an officer s": [0, 65535], "an officer s dro": [0, 65535], "officer s dro i": [0, 65535], "dro i sir the": [0, 65535], "i sir the serieant": [0, 65535], "sir the serieant of": [0, 65535], "the serieant of the": [0, 65535], "serieant of the band": [0, 65535], "of the band he": [0, 65535], "the band he that": [0, 65535], "band he that brings": [0, 65535], "he that brings any": [0, 65535], "that brings any man": [0, 65535], "brings any man to": [0, 65535], "any man to answer": [0, 65535], "man to answer it": [0, 65535], "to answer it that": [0, 65535], "answer it that breakes": [0, 65535], "it that breakes his": [0, 65535], "that breakes his band": [0, 65535], "breakes his band one": [0, 65535], "his band one that": [0, 65535], "band one that thinkes": [0, 65535], "one that thinkes a": [0, 65535], "that thinkes a man": [0, 65535], "thinkes a man alwaies": [0, 65535], "a man alwaies going": [0, 65535], "man alwaies going to": [0, 65535], "alwaies going to bed": [0, 65535], "going to bed and": [0, 65535], "to bed and saies": [0, 65535], "bed and saies god": [0, 65535], "and saies god giue": [0, 65535], "saies god giue you": [0, 65535], "god giue you good": [0, 65535], "giue you good rest": [0, 65535], "you good rest ant": [0, 65535], "good rest ant well": [0, 65535], "rest ant well sir": [0, 65535], "ant well sir there": [0, 65535], "well sir there rest": [0, 65535], "sir there rest in": [0, 65535], "there rest in your": [0, 65535], "rest in your foolerie": [0, 65535], "in your foolerie is": [0, 65535], "your foolerie is there": [0, 65535], "foolerie is there any": [0, 65535], "is there any ships": [0, 65535], "there any ships puts": [0, 65535], "any ships puts forth": [0, 65535], "ships puts forth to": [0, 65535], "puts forth to night": [0, 65535], "forth to night may": [0, 65535], "to night may we": [0, 65535], "night may we be": [0, 65535], "may we be gone": [0, 65535], "we be gone s": [0, 65535], "be gone s dro": [0, 65535], "gone s dro why": [0, 65535], "s dro why sir": [0, 65535], "dro why sir i": [0, 65535], "why sir i brought": [0, 65535], "sir i brought you": [0, 65535], "i brought you word": [0, 65535], "brought you word an": [0, 65535], "you word an houre": [0, 65535], "word an houre since": [0, 65535], "an houre since that": [0, 65535], "houre since that the": [0, 65535], "since that the barke": [0, 65535], "that the barke expedition": [0, 65535], "the barke expedition put": [0, 65535], "barke expedition put forth": [0, 65535], "expedition put forth to": [0, 65535], "put forth to night": [0, 65535], "forth to night and": [0, 65535], "to night and then": [0, 65535], "night and then were": [0, 65535], "and then were you": [0, 65535], "then were you hindred": [0, 65535], "were you hindred by": [0, 65535], "you hindred by the": [0, 65535], "hindred by the serieant": [0, 65535], "by the serieant to": [0, 65535], "the serieant to tarry": [0, 65535], "serieant to tarry for": [0, 65535], "to tarry for the": [0, 65535], "tarry for the hoy": [0, 65535], "for the hoy delay": [0, 65535], "the hoy delay here": [0, 65535], "hoy delay here are": [0, 65535], "delay here are the": [0, 65535], "here are the angels": [0, 65535], "are the angels that": [0, 65535], "the angels that you": [0, 65535], "angels that you sent": [0, 65535], "that you sent for": [0, 65535], "you sent for to": [0, 65535], "sent for to deliuer": [0, 65535], "for to deliuer you": [0, 65535], "to deliuer you ant": [0, 65535], "deliuer you ant the": [0, 65535], "you ant the fellow": [0, 65535], "ant the fellow is": [0, 65535], "the fellow is distract": [0, 65535], "fellow is distract and": [0, 65535], "is distract and so": [0, 65535], "distract and so am": [0, 65535], "so am i and": [0, 65535], "am i and here": [0, 65535], "i and here we": [0, 65535], "and here we wander": [0, 65535], "here we wander in": [0, 65535], "we wander in illusions": [0, 65535], "wander in illusions some": [0, 65535], "in illusions some blessed": [0, 65535], "illusions some blessed power": [0, 65535], "some blessed power deliuer": [0, 65535], "blessed power deliuer vs": [0, 65535], "power deliuer vs from": [0, 65535], "deliuer vs from hence": [0, 65535], "vs from hence enter": [0, 65535], "from hence enter a": [0, 65535], "hence enter a curtizan": [0, 65535], "enter a curtizan cur": [0, 65535], "a curtizan cur well": [0, 65535], "curtizan cur well met": [0, 65535], "cur well met well": [0, 65535], "well met well met": [0, 65535], "met well met master": [0, 65535], "well met master antipholus": [0, 65535], "met master antipholus i": [0, 65535], "master antipholus i see": [0, 65535], "antipholus i see sir": [0, 65535], "i see sir you": [0, 65535], "see sir you haue": [0, 65535], "sir you haue found": [0, 65535], "you haue found the": [0, 65535], "haue found the gold": [0, 65535], "found the gold smith": [0, 65535], "the gold smith now": [0, 65535], "gold smith now is": [0, 65535], "smith now is that": [0, 65535], "now is that the": [0, 65535], "is that the chaine": [0, 65535], "that the chaine you": [0, 65535], "the chaine you promis'd": [0, 65535], "chaine you promis'd me": [0, 65535], "you promis'd me to": [0, 65535], "promis'd me to day": [0, 65535], "me to day ant": [0, 65535], "to day ant sathan": [0, 65535], "day ant sathan auoide": [0, 65535], "ant sathan auoide i": [0, 65535], "sathan auoide i charge": [0, 65535], "auoide i charge thee": [0, 65535], "i charge thee tempt": [0, 65535], "charge thee tempt me": [0, 65535], "thee tempt me not": [0, 65535], "tempt me not s": [0, 65535], "me not s dro": [0, 65535], "not s dro master": [0, 65535], "s dro master is": [0, 65535], "dro master is this": [0, 65535], "master is this mistris": [0, 65535], "is this mistris sathan": [0, 65535], "this mistris sathan ant": [0, 65535], "mistris sathan ant it": [0, 65535], "sathan ant it is": [0, 65535], "ant it is the": [0, 65535], "it is the diuell": [0, 65535], "is the diuell s": [0, 65535], "the diuell s dro": [0, 65535], "diuell s dro nay": [0, 65535], "s dro nay she": [0, 65535], "dro nay she is": [0, 65535], "nay she is worse": [0, 65535], "she is worse she": [0, 65535], "is worse she is": [0, 65535], "worse she is the": [0, 65535], "she is the diuels": [0, 65535], "is the diuels dam": [0, 65535], "the diuels dam and": [0, 65535], "diuels dam and here": [0, 65535], "dam and here she": [0, 65535], "and here she comes": [0, 65535], "here she comes in": [0, 65535], "she comes in the": [0, 65535], "comes in the habit": [0, 65535], "in the habit of": [0, 65535], "the habit of a": [0, 65535], "habit of a light": [0, 65535], "of a light wench": [0, 65535], "a light wench and": [0, 65535], "light wench and thereof": [0, 65535], "wench and thereof comes": [0, 65535], "and thereof comes that": [0, 65535], "thereof comes that the": [0, 65535], "comes that the wenches": [0, 65535], "that the wenches say": [0, 65535], "the wenches say god": [0, 65535], "wenches say god dam": [0, 65535], "say god dam me": [0, 65535], "god dam me that's": [0, 65535], "dam me that's as": [0, 65535], "me that's as much": [0, 65535], "that's as much to": [0, 65535], "as much to say": [0, 65535], "much to say god": [0, 65535], "to say god make": [0, 65535], "say god make me": [0, 65535], "god make me a": [0, 65535], "make me a light": [0, 65535], "me a light wench": [0, 65535], "a light wench it": [0, 65535], "light wench it is": [0, 65535], "wench it is written": [0, 65535], "it is written they": [0, 65535], "is written they appeare": [0, 65535], "written they appeare to": [0, 65535], "they appeare to men": [0, 65535], "appeare to men like": [0, 65535], "to men like angels": [0, 65535], "men like angels of": [0, 65535], "like angels of light": [0, 65535], "angels of light light": [0, 65535], "of light light is": [0, 65535], "light light is an": [0, 65535], "light is an effect": [0, 65535], "is an effect of": [0, 65535], "an effect of fire": [0, 65535], "effect of fire and": [0, 65535], "of fire and fire": [0, 65535], "fire and fire will": [0, 65535], "and fire will burne": [0, 65535], "fire will burne ergo": [0, 65535], "will burne ergo light": [0, 65535], "burne ergo light wenches": [0, 65535], "ergo light wenches will": [0, 65535], "light wenches will burne": [0, 65535], "wenches will burne come": [0, 65535], "will burne come not": [0, 65535], "burne come not neere": [0, 65535], "come not neere her": [0, 65535], "not neere her cur": [0, 65535], "neere her cur your": [0, 65535], "her cur your man": [0, 65535], "cur your man and": [0, 65535], "your man and you": [0, 65535], "man and you are": [0, 65535], "and you are maruailous": [0, 65535], "you are maruailous merrie": [0, 65535], "are maruailous merrie sir": [0, 65535], "maruailous merrie sir will": [0, 65535], "merrie sir will you": [0, 65535], "sir will you goe": [0, 65535], "will you goe with": [0, 65535], "you goe with me": [0, 65535], "goe with me wee'll": [0, 65535], "with me wee'll mend": [0, 65535], "me wee'll mend our": [0, 65535], "wee'll mend our dinner": [0, 65535], "mend our dinner here": [0, 65535], "our dinner here s": [0, 65535], "dinner here s dro": [0, 65535], "here s dro master": [0, 65535], "s dro master if": [0, 65535], "dro master if do": [0, 65535], "master if do expect": [0, 65535], "if do expect spoon": [0, 65535], "do expect spoon meate": [0, 65535], "expect spoon meate or": [0, 65535], "spoon meate or bespeake": [0, 65535], "meate or bespeake a": [0, 65535], "or bespeake a long": [0, 65535], "bespeake a long spoone": [0, 65535], "a long spoone ant": [0, 65535], "long spoone ant why": [0, 65535], "spoone ant why dromio": [0, 65535], "ant why dromio s": [0, 65535], "why dromio s dro": [0, 65535], "dromio s dro marrie": [0, 65535], "s dro marrie he": [0, 65535], "dro marrie he must": [0, 65535], "marrie he must haue": [0, 65535], "he must haue a": [0, 65535], "must haue a long": [0, 65535], "haue a long spoone": [0, 65535], "a long spoone that": [0, 65535], "long spoone that must": [0, 65535], "spoone that must eate": [0, 65535], "that must eate with": [0, 65535], "must eate with the": [0, 65535], "eate with the diuell": [0, 65535], "with the diuell ant": [0, 65535], "the diuell ant auoid": [0, 65535], "diuell ant auoid then": [0, 65535], "ant auoid then fiend": [0, 65535], "auoid then fiend what": [0, 65535], "then fiend what tel'st": [0, 65535], "fiend what tel'st thou": [0, 65535], "what tel'st thou me": [0, 65535], "tel'st thou me of": [0, 65535], "thou me of supping": [0, 65535], "me of supping thou": [0, 65535], "of supping thou art": [0, 65535], "supping thou art as": [0, 65535], "thou art as you": [0, 65535], "art as you are": [0, 65535], "as you are all": [0, 65535], "you are all a": [0, 65535], "are all a sorceresse": [0, 65535], "all a sorceresse i": [0, 65535], "a sorceresse i coniure": [0, 65535], "sorceresse i coniure thee": [0, 65535], "i coniure thee to": [0, 65535], "coniure thee to leaue": [0, 65535], "thee to leaue me": [0, 65535], "to leaue me and": [0, 65535], "leaue me and be": [0, 65535], "me and be gon": [0, 65535], "and be gon cur": [0, 65535], "be gon cur giue": [0, 65535], "gon cur giue me": [0, 65535], "cur giue me the": [0, 65535], "giue me the ring": [0, 65535], "me the ring of": [0, 65535], "the ring of mine": [0, 65535], "ring of mine you": [0, 65535], "of mine you had": [0, 65535], "mine you had at": [0, 65535], "you had at dinner": [0, 65535], "had at dinner or": [0, 65535], "at dinner or for": [0, 65535], "dinner or for my": [0, 65535], "or for my diamond": [0, 65535], "for my diamond the": [0, 65535], "my diamond the chaine": [0, 65535], "diamond the chaine you": [0, 65535], "chaine you promis'd and": [0, 65535], "you promis'd and ile": [0, 65535], "promis'd and ile be": [0, 65535], "and ile be gone": [0, 65535], "ile be gone sir": [0, 65535], "be gone sir and": [0, 65535], "gone sir and not": [0, 65535], "sir and not trouble": [0, 65535], "and not trouble you": [0, 65535], "not trouble you s": [0, 65535], "trouble you s dro": [0, 65535], "you s dro some": [0, 65535], "s dro some diuels": [0, 65535], "dro some diuels aske": [0, 65535], "some diuels aske but": [0, 65535], "diuels aske but the": [0, 65535], "aske but the parings": [0, 65535], "but the parings of": [0, 65535], "the parings of ones": [0, 65535], "parings of ones naile": [0, 65535], "of ones naile a": [0, 65535], "ones naile a rush": [0, 65535], "naile a rush a": [0, 65535], "a rush a haire": [0, 65535], "rush a haire a": [0, 65535], "a haire a drop": [0, 65535], "haire a drop of": [0, 65535], "a drop of blood": [0, 65535], "drop of blood a": [0, 65535], "of blood a pin": [0, 65535], "blood a pin a": [0, 65535], "a pin a nut": [0, 65535], "pin a nut a": [0, 65535], "a nut a cherrie": [0, 65535], "nut a cherrie stone": [0, 65535], "a cherrie stone but": [0, 65535], "cherrie stone but she": [0, 65535], "stone but she more": [0, 65535], "but she more couetous": [0, 65535], "she more couetous wold": [0, 65535], "more couetous wold haue": [0, 65535], "couetous wold haue a": [0, 65535], "wold haue a chaine": [0, 65535], "haue a chaine master": [0, 65535], "a chaine master be": [0, 65535], "chaine master be wise": [0, 65535], "master be wise and": [0, 65535], "be wise and if": [0, 65535], "wise and if you": [0, 65535], "and if you giue": [0, 65535], "if you giue it": [0, 65535], "you giue it her": [0, 65535], "giue it her the": [0, 65535], "it her the diuell": [0, 65535], "her the diuell will": [0, 65535], "the diuell will shake": [0, 65535], "diuell will shake her": [0, 65535], "will shake her chaine": [0, 65535], "shake her chaine and": [0, 65535], "her chaine and fright": [0, 65535], "chaine and fright vs": [0, 65535], "and fright vs with": [0, 65535], "fright vs with it": [0, 65535], "vs with it cur": [0, 65535], "with it cur i": [0, 65535], "it cur i pray": [0, 65535], "cur i pray you": [0, 65535], "pray you sir my": [0, 65535], "you sir my ring": [0, 65535], "sir my ring or": [0, 65535], "my ring or else": [0, 65535], "ring or else the": [0, 65535], "or else the chaine": [0, 65535], "else the chaine i": [0, 65535], "the chaine i hope": [0, 65535], "chaine i hope you": [0, 65535], "i hope you do": [0, 65535], "hope you do not": [0, 65535], "you do not meane": [0, 65535], "do not meane to": [0, 65535], "not meane to cheate": [0, 65535], "meane to cheate me": [0, 65535], "to cheate me so": [0, 65535], "cheate me so ant": [0, 65535], "me so ant auant": [0, 65535], "so ant auant thou": [0, 65535], "ant auant thou witch": [0, 65535], "auant thou witch come": [0, 65535], "thou witch come dromio": [0, 65535], "witch come dromio let": [0, 65535], "come dromio let vs": [0, 65535], "dromio let vs go": [0, 65535], "let vs go s": [0, 65535], "vs go s dro": [0, 65535], "go s dro flie": [0, 65535], "s dro flie pride": [0, 65535], "dro flie pride saies": [0, 65535], "flie pride saies the": [0, 65535], "pride saies the pea": [0, 65535], "saies the pea cocke": [0, 65535], "the pea cocke mistris": [0, 65535], "pea cocke mistris that": [0, 65535], "cocke mistris that you": [0, 65535], "mistris that you know": [0, 65535], "that you know exit": [0, 65535], "you know exit cur": [0, 65535], "know exit cur now": [0, 65535], "exit cur now out": [0, 65535], "cur now out of": [0, 65535], "now out of doubt": [0, 65535], "out of doubt antipholus": [0, 65535], "of doubt antipholus is": [0, 65535], "doubt antipholus is mad": [0, 65535], "antipholus is mad else": [0, 65535], "is mad else would": [0, 65535], "mad else would he": [0, 65535], "else would he neuer": [0, 65535], "would he neuer so": [0, 65535], "he neuer so demeane": [0, 65535], "neuer so demeane himselfe": [0, 65535], "so demeane himselfe a": [0, 65535], "demeane himselfe a ring": [0, 65535], "himselfe a ring he": [0, 65535], "a ring he hath": [0, 65535], "ring he hath of": [0, 65535], "he hath of mine": [0, 65535], "hath of mine worth": [0, 65535], "of mine worth fortie": [0, 65535], "mine worth fortie duckets": [0, 65535], "worth fortie duckets and": [0, 65535], "fortie duckets and for": [0, 65535], "duckets and for the": [0, 65535], "and for the same": [0, 65535], "for the same he": [0, 65535], "the same he promis'd": [0, 65535], "same he promis'd me": [0, 65535], "me a chaine both": [0, 65535], "a chaine both one": [0, 65535], "chaine both one and": [0, 65535], "both one and other": [0, 65535], "one and other he": [0, 65535], "and other he denies": [0, 65535], "other he denies me": [0, 65535], "he denies me now": [0, 65535], "denies me now the": [0, 65535], "me now the reason": [0, 65535], "now the reason that": [0, 65535], "the reason that i": [0, 65535], "reason that i gather": [0, 65535], "that i gather he": [0, 65535], "i gather he is": [0, 65535], "gather he is mad": [0, 65535], "he is mad besides": [0, 65535], "is mad besides this": [0, 65535], "mad besides this present": [0, 65535], "besides this present instance": [0, 65535], "this present instance of": [0, 65535], "present instance of his": [0, 65535], "instance of his rage": [0, 65535], "of his rage is": [0, 65535], "his rage is a": [0, 65535], "rage is a mad": [0, 65535], "is a mad tale": [0, 65535], "a mad tale he": [0, 65535], "mad tale he told": [0, 65535], "tale he told to": [0, 65535], "he told to day": [0, 65535], "told to day at": [0, 65535], "day at dinner of": [0, 65535], "at dinner of his": [0, 65535], "dinner of his owne": [0, 65535], "of his owne doores": [0, 65535], "his owne doores being": [0, 65535], "owne doores being shut": [0, 65535], "doores being shut against": [0, 65535], "being shut against his": [0, 65535], "shut against his entrance": [0, 65535], "against his entrance belike": [0, 65535], "his entrance belike his": [0, 65535], "entrance belike his wife": [0, 65535], "belike his wife acquainted": [0, 65535], "his wife acquainted with": [0, 65535], "wife acquainted with his": [0, 65535], "acquainted with his fits": [0, 65535], "with his fits on": [0, 65535], "his fits on purpose": [0, 65535], "fits on purpose shut": [0, 65535], "on purpose shut the": [0, 65535], "purpose shut the doores": [0, 65535], "shut the doores against": [0, 65535], "the doores against his": [0, 65535], "doores against his way": [0, 65535], "against his way my": [0, 65535], "his way my way": [0, 65535], "way my way is": [0, 65535], "my way is now": [0, 65535], "way is now to": [0, 65535], "is now to hie": [0, 65535], "now to hie home": [0, 65535], "to hie home to": [0, 65535], "hie home to his": [0, 65535], "home to his house": [0, 65535], "to his house and": [0, 65535], "his house and tell": [0, 65535], "house and tell his": [0, 65535], "and tell his wife": [0, 65535], "tell his wife that": [0, 65535], "his wife that being": [0, 65535], "wife that being lunaticke": [0, 65535], "that being lunaticke he": [0, 65535], "being lunaticke he rush'd": [0, 65535], "lunaticke he rush'd into": [0, 65535], "he rush'd into my": [0, 65535], "rush'd into my house": [0, 65535], "into my house and": [0, 65535], "my house and tooke": [0, 65535], "house and tooke perforce": [0, 65535], "and tooke perforce my": [0, 65535], "tooke perforce my ring": [0, 65535], "perforce my ring away": [0, 65535], "my ring away this": [0, 65535], "ring away this course": [0, 65535], "away this course i": [0, 65535], "this course i fittest": [0, 65535], "course i fittest choose": [0, 65535], "i fittest choose for": [0, 65535], "fittest choose for fortie": [0, 65535], "choose for fortie duckets": [0, 65535], "for fortie duckets is": [0, 65535], "fortie duckets is too": [0, 65535], "duckets is too much": [0, 65535], "is too much to": [0, 65535], "too much to loose": [0, 65535], "much to loose enter": [0, 65535], "to loose enter antipholus": [0, 65535], "loose enter antipholus ephes": [0, 65535], "enter antipholus ephes with": [0, 65535], "antipholus ephes with a": [0, 65535], "ephes with a iailor": [0, 65535], "with a iailor an": [0, 65535], "a iailor an feare": [0, 65535], "iailor an feare me": [0, 65535], "an feare me not": [0, 65535], "feare me not man": [0, 65535], "me not man i": [0, 65535], "not man i will": [0, 65535], "man i will not": [0, 65535], "i will not breake": [0, 65535], "will not breake away": [0, 65535], "not breake away ile": [0, 65535], "breake away ile giue": [0, 65535], "away ile giue thee": [0, 65535], "ile giue thee ere": [0, 65535], "giue thee ere i": [0, 65535], "thee ere i leaue": [0, 65535], "ere i leaue thee": [0, 65535], "i leaue thee so": [0, 65535], "leaue thee so much": [0, 65535], "thee so much money": [0, 65535], "so much money to": [0, 65535], "much money to warrant": [0, 65535], "money to warrant thee": [0, 65535], "to warrant thee as": [0, 65535], "warrant thee as i": [0, 65535], "thee as i am": [0, 65535], "as i am rested": [0, 65535], "i am rested for": [0, 65535], "am rested for my": [0, 65535], "rested for my wife": [0, 65535], "for my wife is": [0, 65535], "my wife is in": [0, 65535], "wife is in a": [0, 65535], "is in a wayward": [0, 65535], "in a wayward moode": [0, 65535], "a wayward moode to": [0, 65535], "wayward moode to day": [0, 65535], "moode to day and": [0, 65535], "to day and will": [0, 65535], "day and will not": [0, 65535], "and will not lightly": [0, 65535], "will not lightly trust": [0, 65535], "not lightly trust the": [0, 65535], "lightly trust the messenger": [0, 65535], "trust the messenger that": [0, 65535], "the messenger that i": [0, 65535], "messenger that i should": [0, 65535], "that i should be": [0, 65535], "i should be attach'd": [0, 65535], "should be attach'd in": [0, 65535], "be attach'd in ephesus": [0, 65535], "attach'd in ephesus i": [0, 65535], "in ephesus i tell": [0, 65535], "ephesus i tell you": [0, 65535], "i tell you 'twill": [0, 65535], "tell you 'twill sound": [0, 65535], "you 'twill sound harshly": [0, 65535], "'twill sound harshly in": [0, 65535], "sound harshly in her": [0, 65535], "harshly in her eares": [0, 65535], "in her eares enter": [0, 65535], "her eares enter dromio": [0, 65535], "eares enter dromio eph": [0, 65535], "enter dromio eph with": [0, 65535], "dromio eph with a": [0, 65535], "eph with a ropes": [0, 65535], "with a ropes end": [0, 65535], "a ropes end heere": [0, 65535], "ropes end heere comes": [0, 65535], "end heere comes my": [0, 65535], "heere comes my man": [0, 65535], "comes my man i": [0, 65535], "my man i thinke": [0, 65535], "man i thinke he": [0, 65535], "i thinke he brings": [0, 65535], "thinke he brings the": [0, 65535], "he brings the monie": [0, 65535], "brings the monie how": [0, 65535], "the monie how now": [0, 65535], "monie how now sir": [0, 65535], "how now sir haue": [0, 65535], "now sir haue you": [0, 65535], "sir haue you that": [0, 65535], "haue you that i": [0, 65535], "you that i sent": [0, 65535], "that i sent you": [0, 65535], "i sent you for": [0, 65535], "sent you for e": [0, 65535], "you for e dro": [0, 65535], "for e dro here's": [0, 65535], "e dro here's that": [0, 65535], "dro here's that i": [0, 65535], "here's that i warrant": [0, 65535], "that i warrant you": [0, 65535], "i warrant you will": [0, 65535], "warrant you will pay": [0, 65535], "you will pay them": [0, 65535], "will pay them all": [0, 65535], "pay them all anti": [0, 65535], "them all anti but": [0, 65535], "all anti but where's": [0, 65535], "anti but where's the": [0, 65535], "but where's the money": [0, 65535], "where's the money e": [0, 65535], "the money e dro": [0, 65535], "money e dro why": [0, 65535], "e dro why sir": [0, 65535], "why sir i gaue": [0, 65535], "sir i gaue the": [0, 65535], "i gaue the monie": [0, 65535], "gaue the monie for": [0, 65535], "the monie for the": [0, 65535], "monie for the rope": [0, 65535], "for the rope ant": [0, 65535], "the rope ant fiue": [0, 65535], "rope ant fiue hundred": [0, 65535], "ant fiue hundred duckets": [0, 65535], "fiue hundred duckets villaine": [0, 65535], "hundred duckets villaine for": [0, 65535], "duckets villaine for a": [0, 65535], "villaine for a rope": [0, 65535], "for a rope e": [0, 65535], "a rope e dro": [0, 65535], "rope e dro ile": [0, 65535], "e dro ile serue": [0, 65535], "dro ile serue you": [0, 65535], "ile serue you sir": [0, 65535], "serue you sir fiue": [0, 65535], "you sir fiue hundred": [0, 65535], "sir fiue hundred at": [0, 65535], "fiue hundred at the": [0, 65535], "hundred at the rate": [0, 65535], "at the rate ant": [0, 65535], "the rate ant to": [0, 65535], "rate ant to what": [0, 65535], "ant to what end": [0, 65535], "to what end did": [0, 65535], "what end did i": [0, 65535], "end did i bid": [0, 65535], "did i bid thee": [0, 65535], "i bid thee hie": [0, 65535], "bid thee hie thee": [0, 65535], "thee hie thee home": [0, 65535], "hie thee home e": [0, 65535], "thee home e dro": [0, 65535], "home e dro to": [0, 65535], "e dro to a": [0, 65535], "dro to a ropes": [0, 65535], "to a ropes end": [0, 65535], "a ropes end sir": [0, 65535], "ropes end sir and": [0, 65535], "end sir and to": [0, 65535], "sir and to that": [0, 65535], "and to that end": [0, 65535], "to that end am": [0, 65535], "that end am i": [0, 65535], "end am i re": [0, 65535], "am i re turn'd": [0, 65535], "i re turn'd ant": [0, 65535], "re turn'd ant and": [0, 65535], "turn'd ant and to": [0, 65535], "ant and to that": [0, 65535], "to that end sir": [0, 65535], "that end sir i": [0, 65535], "end sir i will": [0, 65535], "sir i will welcome": [0, 65535], "i will welcome you": [0, 65535], "will welcome you offi": [0, 65535], "welcome you offi good": [0, 65535], "you offi good sir": [0, 65535], "offi good sir be": [0, 65535], "good sir be patient": [0, 65535], "sir be patient e": [0, 65535], "be patient e dro": [0, 65535], "patient e dro nay": [0, 65535], "e dro nay 'tis": [0, 65535], "dro nay 'tis for": [0, 65535], "nay 'tis for me": [0, 65535], "'tis for me to": [0, 65535], "me to be patient": [0, 65535], "to be patient i": [0, 65535], "be patient i am": [0, 65535], "patient i am in": [0, 65535], "i am in aduersitie": [0, 65535], "am in aduersitie offi": [0, 65535], "in aduersitie offi good": [0, 65535], "aduersitie offi good now": [0, 65535], "offi good now hold": [0, 65535], "good now hold thy": [0, 65535], "now hold thy tongue": [0, 65535], "hold thy tongue e": [0, 65535], "thy tongue e dro": [0, 65535], "tongue e dro nay": [0, 65535], "e dro nay rather": [0, 65535], "dro nay rather perswade": [0, 65535], "nay rather perswade him": [0, 65535], "rather perswade him to": [0, 65535], "perswade him to hold": [0, 65535], "him to hold his": [0, 65535], "to hold his hands": [0, 65535], "hold his hands anti": [0, 65535], "his hands anti thou": [0, 65535], "hands anti thou whoreson": [0, 65535], "anti thou whoreson senselesse": [0, 65535], "thou whoreson senselesse villaine": [0, 65535], "whoreson senselesse villaine e": [0, 65535], "senselesse villaine e dro": [0, 65535], "e dro i would": [0, 65535], "dro i would i": [0, 65535], "i would i were": [0, 65535], "would i were senselesse": [0, 65535], "i were senselesse sir": [0, 65535], "were senselesse sir that": [0, 65535], "senselesse sir that i": [0, 65535], "sir that i might": [0, 65535], "that i might not": [0, 65535], "i might not feele": [0, 65535], "might not feele your": [0, 65535], "not feele your blowes": [0, 65535], "feele your blowes anti": [0, 65535], "your blowes anti thou": [0, 65535], "blowes anti thou art": [0, 65535], "anti thou art sensible": [0, 65535], "thou art sensible in": [0, 65535], "art sensible in nothing": [0, 65535], "sensible in nothing but": [0, 65535], "in nothing but blowes": [0, 65535], "nothing but blowes and": [0, 65535], "but blowes and so": [0, 65535], "blowes and so is": [0, 65535], "and so is an": [0, 65535], "so is an asse": [0, 65535], "is an asse e": [0, 65535], "asse e dro i": [0, 65535], "e dro i am": [0, 65535], "am an asse indeede": [0, 65535], "an asse indeede you": [0, 65535], "asse indeede you may": [0, 65535], "indeede you may prooue": [0, 65535], "you may prooue it": [0, 65535], "may prooue it by": [0, 65535], "prooue it by my": [0, 65535], "it by my long": [0, 65535], "by my long eares": [0, 65535], "my long eares i": [0, 65535], "long eares i haue": [0, 65535], "eares i haue serued": [0, 65535], "i haue serued him": [0, 65535], "haue serued him from": [0, 65535], "serued him from the": [0, 65535], "him from the houre": [0, 65535], "from the houre of": [0, 65535], "the houre of my": [0, 65535], "houre of my natiuitie": [0, 65535], "of my natiuitie to": [0, 65535], "my natiuitie to this": [0, 65535], "natiuitie to this instant": [0, 65535], "to this instant and": [0, 65535], "this instant and haue": [0, 65535], "instant and haue nothing": [0, 65535], "and haue nothing at": [0, 65535], "haue nothing at his": [0, 65535], "nothing at his hands": [0, 65535], "at his hands for": [0, 65535], "his hands for my": [0, 65535], "hands for my seruice": [0, 65535], "for my seruice but": [0, 65535], "my seruice but blowes": [0, 65535], "seruice but blowes when": [0, 65535], "but blowes when i": [0, 65535], "blowes when i am": [0, 65535], "when i am cold": [0, 65535], "i am cold he": [0, 65535], "am cold he heates": [0, 65535], "cold he heates me": [0, 65535], "he heates me with": [0, 65535], "heates me with beating": [0, 65535], "me with beating when": [0, 65535], "with beating when i": [0, 65535], "beating when i am": [0, 65535], "when i am warme": [0, 65535], "i am warme he": [0, 65535], "am warme he cooles": [0, 65535], "warme he cooles me": [0, 65535], "he cooles me with": [0, 65535], "cooles me with beating": [0, 65535], "me with beating i": [0, 65535], "with beating i am": [0, 65535], "beating i am wak'd": [0, 65535], "i am wak'd with": [0, 65535], "am wak'd with it": [0, 65535], "wak'd with it when": [0, 65535], "with it when i": [0, 65535], "it when i sleepe": [0, 65535], "when i sleepe rais'd": [0, 65535], "i sleepe rais'd with": [0, 65535], "sleepe rais'd with it": [0, 65535], "rais'd with it when": [0, 65535], "it when i sit": [0, 65535], "when i sit driuen": [0, 65535], "i sit driuen out": [0, 65535], "sit driuen out of": [0, 65535], "driuen out of doores": [0, 65535], "out of doores with": [0, 65535], "of doores with it": [0, 65535], "doores with it when": [0, 65535], "it when i goe": [0, 65535], "when i goe from": [0, 65535], "i goe from home": [0, 65535], "goe from home welcom'd": [0, 65535], "from home welcom'd home": [0, 65535], "home welcom'd home with": [0, 65535], "welcom'd home with it": [0, 65535], "home with it when": [0, 65535], "it when i returne": [0, 65535], "when i returne nay": [0, 65535], "i returne nay i": [0, 65535], "returne nay i beare": [0, 65535], "nay i beare it": [0, 65535], "i beare it on": [0, 65535], "beare it on my": [0, 65535], "it on my shoulders": [0, 65535], "on my shoulders as": [0, 65535], "my shoulders as a": [0, 65535], "shoulders as a begger": [0, 65535], "as a begger woont": [0, 65535], "a begger woont her": [0, 65535], "begger woont her brat": [0, 65535], "woont her brat and": [0, 65535], "her brat and i": [0, 65535], "brat and i thinke": [0, 65535], "and i thinke when": [0, 65535], "i thinke when he": [0, 65535], "thinke when he hath": [0, 65535], "when he hath lam'd": [0, 65535], "he hath lam'd me": [0, 65535], "hath lam'd me i": [0, 65535], "lam'd me i shall": [0, 65535], "me i shall begge": [0, 65535], "i shall begge with": [0, 65535], "shall begge with it": [0, 65535], "begge with it from": [0, 65535], "with it from doore": [0, 65535], "it from doore to": [0, 65535], "from doore to doore": [0, 65535], "doore to doore enter": [0, 65535], "to doore enter adriana": [0, 65535], "doore enter adriana luciana": [0, 65535], "enter adriana luciana courtizan": [0, 65535], "adriana luciana courtizan and": [0, 65535], "luciana courtizan and a": [0, 65535], "courtizan and a schoolemaster": [0, 65535], "and a schoolemaster call'd": [0, 65535], "a schoolemaster call'd pinch": [0, 65535], "schoolemaster call'd pinch ant": [0, 65535], "call'd pinch ant come": [0, 65535], "pinch ant come goe": [0, 65535], "ant come goe along": [0, 65535], "come goe along my": [0, 65535], "goe along my wife": [0, 65535], "along my wife is": [0, 65535], "my wife is comming": [0, 65535], "wife is comming yonder": [0, 65535], "is comming yonder e": [0, 65535], "comming yonder e dro": [0, 65535], "yonder e dro mistris": [0, 65535], "e dro mistris respice": [0, 65535], "dro mistris respice finem": [0, 65535], "mistris respice finem respect": [0, 65535], "respice finem respect your": [0, 65535], "finem respect your end": [0, 65535], "respect your end or": [0, 65535], "your end or rather": [0, 65535], "end or rather the": [0, 65535], "or rather the prophesie": [0, 65535], "rather the prophesie like": [0, 65535], "the prophesie like the": [0, 65535], "prophesie like the parrat": [0, 65535], "like the parrat beware": [0, 65535], "the parrat beware the": [0, 65535], "parrat beware the ropes": [0, 65535], "beware the ropes end": [0, 65535], "the ropes end anti": [0, 65535], "ropes end anti wilt": [0, 65535], "end anti wilt thou": [0, 65535], "anti wilt thou still": [0, 65535], "wilt thou still talke": [0, 65535], "thou still talke beats": [0, 65535], "still talke beats dro": [0, 65535], "talke beats dro curt": [0, 65535], "beats dro curt how": [0, 65535], "dro curt how say": [0, 65535], "curt how say you": [0, 65535], "how say you now": [0, 65535], "say you now is": [0, 65535], "you now is not": [0, 65535], "now is not your": [0, 65535], "is not your husband": [0, 65535], "not your husband mad": [0, 65535], "your husband mad adri": [0, 65535], "husband mad adri his": [0, 65535], "mad adri his inciuility": [0, 65535], "adri his inciuility confirmes": [0, 65535], "his inciuility confirmes no": [0, 65535], "inciuility confirmes no lesse": [0, 65535], "confirmes no lesse good": [0, 65535], "no lesse good doctor": [0, 65535], "lesse good doctor pinch": [0, 65535], "good doctor pinch you": [0, 65535], "doctor pinch you are": [0, 65535], "pinch you are a": [0, 65535], "you are a coniurer": [0, 65535], "are a coniurer establish": [0, 65535], "a coniurer establish him": [0, 65535], "coniurer establish him in": [0, 65535], "establish him in his": [0, 65535], "him in his true": [0, 65535], "in his true sence": [0, 65535], "his true sence againe": [0, 65535], "true sence againe and": [0, 65535], "sence againe and i": [0, 65535], "againe and i will": [0, 65535], "and i will please": [0, 65535], "i will please you": [0, 65535], "will please you what": [0, 65535], "please you what you": [0, 65535], "you what you will": [0, 65535], "what you will demand": [0, 65535], "you will demand luc": [0, 65535], "will demand luc alas": [0, 65535], "demand luc alas how": [0, 65535], "luc alas how fiery": [0, 65535], "alas how fiery and": [0, 65535], "how fiery and how": [0, 65535], "fiery and how sharpe": [0, 65535], "and how sharpe he": [0, 65535], "how sharpe he lookes": [0, 65535], "sharpe he lookes cur": [0, 65535], "he lookes cur marke": [0, 65535], "lookes cur marke how": [0, 65535], "cur marke how he": [0, 65535], "marke how he trembles": [0, 65535], "how he trembles in": [0, 65535], "he trembles in his": [0, 65535], "trembles in his extasie": [0, 65535], "in his extasie pinch": [0, 65535], "his extasie pinch giue": [0, 65535], "extasie pinch giue me": [0, 65535], "pinch giue me your": [0, 65535], "giue me your hand": [0, 65535], "me your hand and": [0, 65535], "your hand and let": [0, 65535], "hand and let mee": [0, 65535], "and let mee feele": [0, 65535], "let mee feele your": [0, 65535], "mee feele your pulse": [0, 65535], "feele your pulse ant": [0, 65535], "your pulse ant there": [0, 65535], "pulse ant there is": [0, 65535], "ant there is my": [0, 65535], "there is my hand": [0, 65535], "is my hand and": [0, 65535], "my hand and let": [0, 65535], "hand and let it": [0, 65535], "and let it feele": [0, 65535], "let it feele your": [0, 65535], "it feele your eare": [0, 65535], "feele your eare pinch": [0, 65535], "your eare pinch i": [0, 65535], "eare pinch i charge": [0, 65535], "pinch i charge thee": [0, 65535], "i charge thee sathan": [0, 65535], "charge thee sathan hous'd": [0, 65535], "thee sathan hous'd within": [0, 65535], "sathan hous'd within this": [0, 65535], "hous'd within this man": [0, 65535], "within this man to": [0, 65535], "this man to yeeld": [0, 65535], "man to yeeld possession": [0, 65535], "to yeeld possession to": [0, 65535], "yeeld possession to my": [0, 65535], "possession to my holie": [0, 65535], "to my holie praiers": [0, 65535], "my holie praiers and": [0, 65535], "holie praiers and to": [0, 65535], "praiers and to thy": [0, 65535], "and to thy state": [0, 65535], "to thy state of": [0, 65535], "thy state of darknesse": [0, 65535], "state of darknesse hie": [0, 65535], "of darknesse hie thee": [0, 65535], "darknesse hie thee straight": [0, 65535], "hie thee straight i": [0, 65535], "thee straight i coniure": [0, 65535], "straight i coniure thee": [0, 65535], "i coniure thee by": [0, 65535], "coniure thee by all": [0, 65535], "thee by all the": [0, 65535], "by all the saints": [0, 65535], "all the saints in": [0, 65535], "the saints in heauen": [0, 65535], "saints in heauen anti": [0, 65535], "in heauen anti peace": [0, 65535], "heauen anti peace doting": [0, 65535], "anti peace doting wizard": [0, 65535], "peace doting wizard peace": [0, 65535], "doting wizard peace i": [0, 65535], "wizard peace i am": [0, 65535], "peace i am not": [0, 65535], "i am not mad": [0, 65535], "am not mad adr": [0, 65535], "not mad adr oh": [0, 65535], "mad adr oh that": [0, 65535], "adr oh that thou": [0, 65535], "oh that thou wer't": [0, 65535], "that thou wer't not": [0, 65535], "thou wer't not poore": [0, 65535], "wer't not poore distressed": [0, 65535], "not poore distressed soule": [0, 65535], "poore distressed soule anti": [0, 65535], "distressed soule anti you": [0, 65535], "soule anti you minion": [0, 65535], "anti you minion you": [0, 65535], "you minion you are": [0, 65535], "minion you are these": [0, 65535], "you are these your": [0, 65535], "are these your customers": [0, 65535], "these your customers did": [0, 65535], "your customers did this": [0, 65535], "customers did this companion": [0, 65535], "did this companion with": [0, 65535], "this companion with the": [0, 65535], "companion with the saffron": [0, 65535], "with the saffron face": [0, 65535], "the saffron face reuell": [0, 65535], "saffron face reuell and": [0, 65535], "face reuell and feast": [0, 65535], "reuell and feast it": [0, 65535], "and feast it at": [0, 65535], "feast it at my": [0, 65535], "it at my house": [0, 65535], "at my house to": [0, 65535], "my house to day": [0, 65535], "house to day whil'st": [0, 65535], "to day whil'st vpon": [0, 65535], "day whil'st vpon me": [0, 65535], "whil'st vpon me the": [0, 65535], "vpon me the guiltie": [0, 65535], "me the guiltie doores": [0, 65535], "the guiltie doores were": [0, 65535], "guiltie doores were shut": [0, 65535], "doores were shut and": [0, 65535], "were shut and i": [0, 65535], "shut and i denied": [0, 65535], "and i denied to": [0, 65535], "i denied to enter": [0, 65535], "denied to enter in": [0, 65535], "to enter in my": [0, 65535], "enter in my house": [0, 65535], "in my house adr": [0, 65535], "my house adr o": [0, 65535], "house adr o husband": [0, 65535], "adr o husband god": [0, 65535], "o husband god doth": [0, 65535], "husband god doth know": [0, 65535], "god doth know you": [0, 65535], "doth know you din'd": [0, 65535], "know you din'd at": [0, 65535], "you din'd at home": [0, 65535], "din'd at home where": [0, 65535], "at home where would": [0, 65535], "home where would you": [0, 65535], "where would you had": [0, 65535], "would you had remain'd": [0, 65535], "you had remain'd vntill": [0, 65535], "had remain'd vntill this": [0, 65535], "remain'd vntill this time": [0, 65535], "vntill this time free": [0, 65535], "this time free from": [0, 65535], "time free from these": [0, 65535], "free from these slanders": [0, 65535], "from these slanders and": [0, 65535], "these slanders and this": [0, 65535], "slanders and this open": [0, 65535], "and this open shame": [0, 65535], "this open shame anti": [0, 65535], "open shame anti din'd": [0, 65535], "shame anti din'd at": [0, 65535], "anti din'd at home": [0, 65535], "din'd at home thou": [0, 65535], "at home thou villaine": [0, 65535], "home thou villaine what": [0, 65535], "thou villaine what sayest": [0, 65535], "villaine what sayest thou": [0, 65535], "what sayest thou dro": [0, 65535], "sayest thou dro sir": [0, 65535], "thou dro sir sooth": [0, 65535], "dro sir sooth to": [0, 65535], "sir sooth to say": [0, 65535], "sooth to say you": [0, 65535], "to say you did": [0, 65535], "say you did not": [0, 65535], "you did not dine": [0, 65535], "did not dine at": [0, 65535], "not dine at home": [0, 65535], "dine at home ant": [0, 65535], "at home ant were": [0, 65535], "home ant were not": [0, 65535], "ant were not my": [0, 65535], "were not my doores": [0, 65535], "not my doores lockt": [0, 65535], "my doores lockt vp": [0, 65535], "doores lockt vp and": [0, 65535], "lockt vp and i": [0, 65535], "vp and i shut": [0, 65535], "and i shut out": [0, 65535], "i shut out dro": [0, 65535], "shut out dro perdie": [0, 65535], "out dro perdie your": [0, 65535], "dro perdie your doores": [0, 65535], "perdie your doores were": [0, 65535], "your doores were lockt": [0, 65535], "doores were lockt and": [0, 65535], "were lockt and you": [0, 65535], "lockt and you shut": [0, 65535], "and you shut out": [0, 65535], "you shut out anti": [0, 65535], "shut out anti and": [0, 65535], "out anti and did": [0, 65535], "anti and did not": [0, 65535], "and did not she": [0, 65535], "did not she her": [0, 65535], "not she her selfe": [0, 65535], "she her selfe reuile": [0, 65535], "her selfe reuile me": [0, 65535], "selfe reuile me there": [0, 65535], "reuile me there dro": [0, 65535], "me there dro sans": [0, 65535], "there dro sans fable": [0, 65535], "dro sans fable she": [0, 65535], "sans fable she her": [0, 65535], "fable she her selfe": [0, 65535], "she her selfe reuil'd": [0, 65535], "her selfe reuil'd you": [0, 65535], "selfe reuil'd you there": [0, 65535], "reuil'd you there anti": [0, 65535], "you there anti did": [0, 65535], "there anti did not": [0, 65535], "anti did not her": [0, 65535], "did not her kitchen": [0, 65535], "not her kitchen maide": [0, 65535], "her kitchen maide raile": [0, 65535], "kitchen maide raile taunt": [0, 65535], "maide raile taunt and": [0, 65535], "raile taunt and scorne": [0, 65535], "taunt and scorne me": [0, 65535], "and scorne me dro": [0, 65535], "scorne me dro certis": [0, 65535], "me dro certis she": [0, 65535], "dro certis she did": [0, 65535], "certis she did the": [0, 65535], "she did the kitchin": [0, 65535], "did the kitchin vestall": [0, 65535], "the kitchin vestall scorn'd": [0, 65535], "kitchin vestall scorn'd you": [0, 65535], "vestall scorn'd you ant": [0, 65535], "scorn'd you ant and": [0, 65535], "you ant and did": [0, 65535], "ant and did not": [0, 65535], "and did not i": [0, 65535], "did not i in": [0, 65535], "not i in rage": [0, 65535], "i in rage depart": [0, 65535], "in rage depart from": [0, 65535], "rage depart from thence": [0, 65535], "depart from thence dro": [0, 65535], "from thence dro in": [0, 65535], "thence dro in veritie": [0, 65535], "dro in veritie you": [0, 65535], "in veritie you did": [0, 65535], "veritie you did my": [0, 65535], "you did my bones": [0, 65535], "did my bones beares": [0, 65535], "my bones beares witnesse": [0, 65535], "bones beares witnesse that": [0, 65535], "beares witnesse that since": [0, 65535], "witnesse that since haue": [0, 65535], "that since haue felt": [0, 65535], "since haue felt the": [0, 65535], "haue felt the vigor": [0, 65535], "felt the vigor of": [0, 65535], "the vigor of his": [0, 65535], "vigor of his rage": [0, 65535], "of his rage adr": [0, 65535], "his rage adr is't": [0, 65535], "rage adr is't good": [0, 65535], "adr is't good to": [0, 65535], "is't good to sooth": [0, 65535], "good to sooth him": [0, 65535], "to sooth him in": [0, 65535], "sooth him in these": [0, 65535], "him in these contraries": [0, 65535], "in these contraries pinch": [0, 65535], "these contraries pinch it": [0, 65535], "contraries pinch it is": [0, 65535], "pinch it is no": [0, 65535], "it is no shame": [0, 65535], "is no shame the": [0, 65535], "no shame the fellow": [0, 65535], "shame the fellow finds": [0, 65535], "the fellow finds his": [0, 65535], "fellow finds his vaine": [0, 65535], "finds his vaine and": [0, 65535], "his vaine and yeelding": [0, 65535], "vaine and yeelding to": [0, 65535], "and yeelding to him": [0, 65535], "yeelding to him humors": [0, 65535], "to him humors well": [0, 65535], "him humors well his": [0, 65535], "humors well his frensie": [0, 65535], "well his frensie ant": [0, 65535], "his frensie ant thou": [0, 65535], "frensie ant thou hast": [0, 65535], "ant thou hast subborn'd": [0, 65535], "thou hast subborn'd the": [0, 65535], "hast subborn'd the goldsmith": [0, 65535], "subborn'd the goldsmith to": [0, 65535], "the goldsmith to arrest": [0, 65535], "goldsmith to arrest mee": [0, 65535], "to arrest mee adr": [0, 65535], "arrest mee adr alas": [0, 65535], "mee adr alas i": [0, 65535], "adr alas i sent": [0, 65535], "alas i sent you": [0, 65535], "sent you monie to": [0, 65535], "you monie to redeeme": [0, 65535], "monie to redeeme you": [0, 65535], "to redeeme you by": [0, 65535], "redeeme you by dromio": [0, 65535], "you by dromio heere": [0, 65535], "by dromio heere who": [0, 65535], "dromio heere who came": [0, 65535], "heere who came in": [0, 65535], "who came in hast": [0, 65535], "came in hast for": [0, 65535], "in hast for it": [0, 65535], "hast for it dro": [0, 65535], "for it dro monie": [0, 65535], "it dro monie by": [0, 65535], "dro monie by me": [0, 65535], "monie by me heart": [0, 65535], "by me heart and": [0, 65535], "me heart and good": [0, 65535], "heart and good will": [0, 65535], "and good will you": [0, 65535], "good will you might": [0, 65535], "will you might but": [0, 65535], "you might but surely": [0, 65535], "might but surely master": [0, 65535], "but surely master not": [0, 65535], "surely master not a": [0, 65535], "master not a ragge": [0, 65535], "not a ragge of": [0, 65535], "a ragge of monie": [0, 65535], "ragge of monie ant": [0, 65535], "of monie ant wentst": [0, 65535], "monie ant wentst not": [0, 65535], "ant wentst not thou": [0, 65535], "wentst not thou to": [0, 65535], "not thou to her": [0, 65535], "thou to her for": [0, 65535], "to her for a": [0, 65535], "her for a purse": [0, 65535], "for a purse of": [0, 65535], "purse of duckets adri": [0, 65535], "of duckets adri he": [0, 65535], "duckets adri he came": [0, 65535], "adri he came to": [0, 65535], "he came to me": [0, 65535], "came to me and": [0, 65535], "to me and i": [0, 65535], "me and i deliuer'd": [0, 65535], "and i deliuer'd it": [0, 65535], "i deliuer'd it luci": [0, 65535], "deliuer'd it luci and": [0, 65535], "it luci and i": [0, 65535], "luci and i am": [0, 65535], "and i am witnesse": [0, 65535], "i am witnesse with": [0, 65535], "am witnesse with her": [0, 65535], "witnesse with her that": [0, 65535], "with her that she": [0, 65535], "her that she did": [0, 65535], "that she did dro": [0, 65535], "she did dro god": [0, 65535], "did dro god and": [0, 65535], "dro god and the": [0, 65535], "god and the rope": [0, 65535], "and the rope maker": [0, 65535], "the rope maker beare": [0, 65535], "rope maker beare me": [0, 65535], "maker beare me witnesse": [0, 65535], "beare me witnesse that": [0, 65535], "me witnesse that i": [0, 65535], "witnesse that i was": [0, 65535], "that i was sent": [0, 65535], "i was sent for": [0, 65535], "was sent for nothing": [0, 65535], "sent for nothing but": [0, 65535], "for nothing but a": [0, 65535], "nothing but a rope": [0, 65535], "but a rope pinch": [0, 65535], "a rope pinch mistris": [0, 65535], "rope pinch mistris both": [0, 65535], "pinch mistris both man": [0, 65535], "mistris both man and": [0, 65535], "both man and master": [0, 65535], "man and master is": [0, 65535], "and master is possest": [0, 65535], "master is possest i": [0, 65535], "is possest i know": [0, 65535], "possest i know it": [0, 65535], "i know it by": [0, 65535], "know it by their": [0, 65535], "it by their pale": [0, 65535], "by their pale and": [0, 65535], "their pale and deadly": [0, 65535], "pale and deadly lookes": [0, 65535], "and deadly lookes they": [0, 65535], "deadly lookes they must": [0, 65535], "lookes they must be": [0, 65535], "they must be bound": [0, 65535], "must be bound and": [0, 65535], "be bound and laide": [0, 65535], "bound and laide in": [0, 65535], "and laide in some": [0, 65535], "laide in some darke": [0, 65535], "in some darke roome": [0, 65535], "some darke roome ant": [0, 65535], "darke roome ant say": [0, 65535], "roome ant say wherefore": [0, 65535], "ant say wherefore didst": [0, 65535], "say wherefore didst thou": [0, 65535], "wherefore didst thou locke": [0, 65535], "didst thou locke me": [0, 65535], "thou locke me forth": [0, 65535], "locke me forth to": [0, 65535], "me forth to day": [0, 65535], "forth to day and": [0, 65535], "to day and why": [0, 65535], "day and why dost": [0, 65535], "and why dost thou": [0, 65535], "why dost thou denie": [0, 65535], "dost thou denie the": [0, 65535], "thou denie the bagge": [0, 65535], "denie the bagge of": [0, 65535], "the bagge of gold": [0, 65535], "bagge of gold adr": [0, 65535], "of gold adr i": [0, 65535], "gold adr i did": [0, 65535], "adr i did not": [0, 65535], "i did not gentle": [0, 65535], "did not gentle husband": [0, 65535], "not gentle husband locke": [0, 65535], "gentle husband locke thee": [0, 65535], "husband locke thee forth": [0, 65535], "locke thee forth dro": [0, 65535], "thee forth dro and": [0, 65535], "forth dro and gentle": [0, 65535], "dro and gentle mr": [0, 65535], "and gentle mr i": [0, 65535], "gentle mr i receiu'd": [0, 65535], "mr i receiu'd no": [0, 65535], "i receiu'd no gold": [0, 65535], "receiu'd no gold but": [0, 65535], "no gold but i": [0, 65535], "gold but i confesse": [0, 65535], "but i confesse sir": [0, 65535], "i confesse sir that": [0, 65535], "confesse sir that we": [0, 65535], "sir that we were": [0, 65535], "that we were lock'd": [0, 65535], "we were lock'd out": [0, 65535], "were lock'd out adr": [0, 65535], "lock'd out adr dissembling": [0, 65535], "out adr dissembling villain": [0, 65535], "adr dissembling villain thou": [0, 65535], "dissembling villain thou speak'st": [0, 65535], "villain thou speak'st false": [0, 65535], "thou speak'st false in": [0, 65535], "speak'st false in both": [0, 65535], "false in both ant": [0, 65535], "in both ant dissembling": [0, 65535], "both ant dissembling harlot": [0, 65535], "ant dissembling harlot thou": [0, 65535], "dissembling harlot thou art": [0, 65535], "harlot thou art false": [0, 65535], "thou art false in": [0, 65535], "art false in all": [0, 65535], "false in all and": [0, 65535], "in all and art": [0, 65535], "all and art confederate": [0, 65535], "and art confederate with": [0, 65535], "art confederate with a": [0, 65535], "confederate with a damned": [0, 65535], "with a damned packe": [0, 65535], "a damned packe to": [0, 65535], "damned packe to make": [0, 65535], "packe to make a": [0, 65535], "to make a loathsome": [0, 65535], "make a loathsome abiect": [0, 65535], "a loathsome abiect scorne": [0, 65535], "loathsome abiect scorne of": [0, 65535], "abiect scorne of me": [0, 65535], "scorne of me but": [0, 65535], "of me but with": [0, 65535], "me but with these": [0, 65535], "but with these nailes": [0, 65535], "with these nailes ile": [0, 65535], "these nailes ile plucke": [0, 65535], "nailes ile plucke out": [0, 65535], "ile plucke out these": [0, 65535], "plucke out these false": [0, 65535], "out these false eyes": [0, 65535], "these false eyes that": [0, 65535], "false eyes that would": [0, 65535], "eyes that would behold": [0, 65535], "that would behold in": [0, 65535], "would behold in me": [0, 65535], "behold in me this": [0, 65535], "in me this shamefull": [0, 65535], "me this shamefull sport": [0, 65535], "this shamefull sport enter": [0, 65535], "shamefull sport enter three": [0, 65535], "sport enter three or": [0, 65535], "enter three or foure": [0, 65535], "three or foure and": [0, 65535], "or foure and offer": [0, 65535], "foure and offer to": [0, 65535], "and offer to binde": [0, 65535], "offer to binde him": [0, 65535], "to binde him hee": [0, 65535], "binde him hee striues": [0, 65535], "him hee striues adr": [0, 65535], "hee striues adr oh": [0, 65535], "striues adr oh binde": [0, 65535], "adr oh binde him": [0, 65535], "oh binde him binde": [0, 65535], "binde him binde him": [0, 65535], "him binde him let": [0, 65535], "binde him let him": [0, 65535], "him let him not": [0, 65535], "let him not come": [0, 65535], "him not come neere": [0, 65535], "not come neere me": [0, 65535], "come neere me pinch": [0, 65535], "neere me pinch more": [0, 65535], "me pinch more company": [0, 65535], "pinch more company the": [0, 65535], "more company the fiend": [0, 65535], "company the fiend is": [0, 65535], "the fiend is strong": [0, 65535], "fiend is strong within": [0, 65535], "is strong within him": [0, 65535], "strong within him luc": [0, 65535], "within him luc aye": [0, 65535], "him luc aye me": [0, 65535], "luc aye me poore": [0, 65535], "aye me poore man": [0, 65535], "me poore man how": [0, 65535], "poore man how pale": [0, 65535], "man how pale and": [0, 65535], "how pale and wan": [0, 65535], "pale and wan he": [0, 65535], "and wan he looks": [0, 65535], "wan he looks ant": [0, 65535], "he looks ant what": [0, 65535], "looks ant what will": [0, 65535], "ant what will you": [0, 65535], "what will you murther": [0, 65535], "will you murther me": [0, 65535], "you murther me thou": [0, 65535], "murther me thou iailor": [0, 65535], "me thou iailor thou": [0, 65535], "thou iailor thou i": [0, 65535], "iailor thou i am": [0, 65535], "thou i am thy": [0, 65535], "i am thy prisoner": [0, 65535], "am thy prisoner wilt": [0, 65535], "thy prisoner wilt thou": [0, 65535], "prisoner wilt thou suffer": [0, 65535], "wilt thou suffer them": [0, 65535], "thou suffer them to": [0, 65535], "suffer them to make": [0, 65535], "them to make a": [0, 65535], "to make a rescue": [0, 65535], "make a rescue offi": [0, 65535], "a rescue offi masters": [0, 65535], "rescue offi masters let": [0, 65535], "offi masters let him": [0, 65535], "masters let him go": [0, 65535], "let him go he": [0, 65535], "him go he is": [0, 65535], "go he is my": [0, 65535], "he is my prisoner": [0, 65535], "is my prisoner and": [0, 65535], "my prisoner and you": [0, 65535], "prisoner and you shall": [0, 65535], "and you shall not": [0, 65535], "you shall not haue": [0, 65535], "shall not haue him": [0, 65535], "not haue him pinch": [0, 65535], "haue him pinch go": [0, 65535], "him pinch go binde": [0, 65535], "pinch go binde this": [0, 65535], "go binde this man": [0, 65535], "binde this man for": [0, 65535], "this man for he": [0, 65535], "man for he is": [0, 65535], "for he is franticke": [0, 65535], "he is franticke too": [0, 65535], "is franticke too adr": [0, 65535], "franticke too adr what": [0, 65535], "too adr what wilt": [0, 65535], "adr what wilt thou": [0, 65535], "what wilt thou do": [0, 65535], "wilt thou do thou": [0, 65535], "thou do thou peeuish": [0, 65535], "do thou peeuish officer": [0, 65535], "thou peeuish officer hast": [0, 65535], "peeuish officer hast thou": [0, 65535], "officer hast thou delight": [0, 65535], "hast thou delight to": [0, 65535], "thou delight to see": [0, 65535], "delight to see a": [0, 65535], "to see a wretched": [0, 65535], "see a wretched man": [0, 65535], "a wretched man do": [0, 65535], "wretched man do outrage": [0, 65535], "man do outrage and": [0, 65535], "do outrage and displeasure": [0, 65535], "outrage and displeasure to": [0, 65535], "and displeasure to himselfe": [0, 65535], "displeasure to himselfe offi": [0, 65535], "to himselfe offi he": [0, 65535], "himselfe offi he is": [0, 65535], "offi he is my": [0, 65535], "is my prisoner if": [0, 65535], "my prisoner if i": [0, 65535], "prisoner if i let": [0, 65535], "if i let him": [0, 65535], "i let him go": [0, 65535], "let him go the": [0, 65535], "him go the debt": [0, 65535], "go the debt he": [0, 65535], "the debt he owes": [0, 65535], "debt he owes will": [0, 65535], "he owes will be": [0, 65535], "owes will be requir'd": [0, 65535], "will be requir'd of": [0, 65535], "be requir'd of me": [0, 65535], "requir'd of me adr": [0, 65535], "of me adr i": [0, 65535], "adr i will discharge": [0, 65535], "i will discharge thee": [0, 65535], "will discharge thee ere": [0, 65535], "discharge thee ere i": [0, 65535], "thee ere i go": [0, 65535], "ere i go from": [0, 65535], "i go from thee": [0, 65535], "go from thee beare": [0, 65535], "from thee beare me": [0, 65535], "thee beare me forthwith": [0, 65535], "beare me forthwith vnto": [0, 65535], "me forthwith vnto his": [0, 65535], "forthwith vnto his creditor": [0, 65535], "vnto his creditor and": [0, 65535], "his creditor and knowing": [0, 65535], "creditor and knowing how": [0, 65535], "and knowing how the": [0, 65535], "knowing how the debt": [0, 65535], "how the debt growes": [0, 65535], "the debt growes i": [0, 65535], "debt growes i will": [0, 65535], "growes i will pay": [0, 65535], "i will pay it": [0, 65535], "will pay it good": [0, 65535], "pay it good master": [0, 65535], "it good master doctor": [0, 65535], "good master doctor see": [0, 65535], "master doctor see him": [0, 65535], "doctor see him safe": [0, 65535], "see him safe conuey'd": [0, 65535], "him safe conuey'd home": [0, 65535], "safe conuey'd home to": [0, 65535], "conuey'd home to my": [0, 65535], "home to my house": [0, 65535], "to my house oh": [0, 65535], "my house oh most": [0, 65535], "house oh most vnhappy": [0, 65535], "oh most vnhappy day": [0, 65535], "most vnhappy day ant": [0, 65535], "vnhappy day ant oh": [0, 65535], "day ant oh most": [0, 65535], "ant oh most vnhappie": [0, 65535], "oh most vnhappie strumpet": [0, 65535], "most vnhappie strumpet dro": [0, 65535], "vnhappie strumpet dro master": [0, 65535], "strumpet dro master i": [0, 65535], "dro master i am": [0, 65535], "master i am heere": [0, 65535], "i am heere entred": [0, 65535], "am heere entred in": [0, 65535], "heere entred in bond": [0, 65535], "entred in bond for": [0, 65535], "in bond for you": [0, 65535], "bond for you ant": [0, 65535], "for you ant out": [0, 65535], "you ant out on": [0, 65535], "ant out on thee": [0, 65535], "out on thee villaine": [0, 65535], "on thee villaine wherefore": [0, 65535], "thee villaine wherefore dost": [0, 65535], "villaine wherefore dost thou": [0, 65535], "wherefore dost thou mad": [0, 65535], "dost thou mad mee": [0, 65535], "thou mad mee dro": [0, 65535], "mad mee dro will": [0, 65535], "mee dro will you": [0, 65535], "dro will you be": [0, 65535], "will you be bound": [0, 65535], "you be bound for": [0, 65535], "be bound for nothing": [0, 65535], "bound for nothing be": [0, 65535], "for nothing be mad": [0, 65535], "nothing be mad good": [0, 65535], "be mad good master": [0, 65535], "mad good master cry": [0, 65535], "good master cry the": [0, 65535], "master cry the diuell": [0, 65535], "cry the diuell luc": [0, 65535], "the diuell luc god": [0, 65535], "diuell luc god helpe": [0, 65535], "luc god helpe poore": [0, 65535], "god helpe poore soules": [0, 65535], "helpe poore soules how": [0, 65535], "poore soules how idlely": [0, 65535], "soules how idlely doe": [0, 65535], "how idlely doe they": [0, 65535], "idlely doe they talke": [0, 65535], "doe they talke adr": [0, 65535], "they talke adr go": [0, 65535], "talke adr go beare": [0, 65535], "adr go beare him": [0, 65535], "go beare him hence": [0, 65535], "beare him hence sister": [0, 65535], "him hence sister go": [0, 65535], "hence sister go you": [0, 65535], "sister go you with": [0, 65535], "go you with me": [0, 65535], "you with me say": [0, 65535], "with me say now": [0, 65535], "me say now whose": [0, 65535], "say now whose suite": [0, 65535], "now whose suite is": [0, 65535], "whose suite is he": [0, 65535], "suite is he arrested": [0, 65535], "is he arrested at": [0, 65535], "he arrested at exeunt": [0, 65535], "arrested at exeunt manet": [0, 65535], "at exeunt manet offic": [0, 65535], "exeunt manet offic adri": [0, 65535], "manet offic adri luci": [0, 65535], "offic adri luci courtizan": [0, 65535], "adri luci courtizan off": [0, 65535], "luci courtizan off one": [0, 65535], "courtizan off one angelo": [0, 65535], "off one angelo a": [0, 65535], "one angelo a goldsmith": [0, 65535], "angelo a goldsmith do": [0, 65535], "a goldsmith do you": [0, 65535], "goldsmith do you know": [0, 65535], "do you know him": [0, 65535], "you know him adr": [0, 65535], "know him adr i": [0, 65535], "him adr i know": [0, 65535], "adr i know the": [0, 65535], "i know the man": [0, 65535], "know the man what": [0, 65535], "the man what is": [0, 65535], "what is the summe": [0, 65535], "is the summe he": [0, 65535], "the summe he owes": [0, 65535], "summe he owes off": [0, 65535], "he owes off two": [0, 65535], "owes off two hundred": [0, 65535], "off two hundred duckets": [0, 65535], "two hundred duckets adr": [0, 65535], "hundred duckets adr say": [0, 65535], "duckets adr say how": [0, 65535], "adr say how growes": [0, 65535], "say how growes it": [0, 65535], "how growes it due": [0, 65535], "growes it due off": [0, 65535], "it due off due": [0, 65535], "due off due for": [0, 65535], "off due for a": [0, 65535], "due for a chaine": [0, 65535], "for a chaine your": [0, 65535], "a chaine your husband": [0, 65535], "chaine your husband had": [0, 65535], "your husband had of": [0, 65535], "husband had of him": [0, 65535], "had of him adr": [0, 65535], "of him adr he": [0, 65535], "him adr he did": [0, 65535], "adr he did bespeake": [0, 65535], "he did bespeake a": [0, 65535], "did bespeake a chain": [0, 65535], "bespeake a chain for": [0, 65535], "a chain for me": [0, 65535], "chain for me but": [0, 65535], "for me but had": [0, 65535], "me but had it": [0, 65535], "but had it not": [0, 65535], "had it not cur": [0, 65535], "it not cur when": [0, 65535], "not cur when as": [0, 65535], "cur when as your": [0, 65535], "when as your husband": [0, 65535], "as your husband all": [0, 65535], "your husband all in": [0, 65535], "husband all in rage": [0, 65535], "all in rage to": [0, 65535], "in rage to day": [0, 65535], "rage to day came": [0, 65535], "to day came to": [0, 65535], "day came to my": [0, 65535], "came to my house": [0, 65535], "house and tooke away": [0, 65535], "and tooke away my": [0, 65535], "tooke away my ring": [0, 65535], "away my ring the": [0, 65535], "my ring the ring": [0, 65535], "ring the ring i": [0, 65535], "the ring i saw": [0, 65535], "ring i saw vpon": [0, 65535], "i saw vpon his": [0, 65535], "saw vpon his finger": [0, 65535], "vpon his finger now": [0, 65535], "his finger now straight": [0, 65535], "finger now straight after": [0, 65535], "now straight after did": [0, 65535], "straight after did i": [0, 65535], "after did i meete": [0, 65535], "did i meete him": [0, 65535], "i meete him with": [0, 65535], "meete him with a": [0, 65535], "him with a chaine": [0, 65535], "with a chaine adr": [0, 65535], "a chaine adr it": [0, 65535], "chaine adr it may": [0, 65535], "adr it may be": [0, 65535], "it may be so": [0, 65535], "may be so but": [0, 65535], "be so but i": [0, 65535], "so but i did": [0, 65535], "but i did neuer": [0, 65535], "i did neuer see": [0, 65535], "did neuer see it": [0, 65535], "neuer see it come": [0, 65535], "see it come iailor": [0, 65535], "it come iailor bring": [0, 65535], "come iailor bring me": [0, 65535], "iailor bring me where": [0, 65535], "bring me where the": [0, 65535], "me where the goldsmith": [0, 65535], "where the goldsmith is": [0, 65535], "the goldsmith is i": [0, 65535], "goldsmith is i long": [0, 65535], "is i long to": [0, 65535], "i long to know": [0, 65535], "long to know the": [0, 65535], "to know the truth": [0, 65535], "know the truth heereof": [0, 65535], "the truth heereof at": [0, 65535], "truth heereof at large": [0, 65535], "heereof at large enter": [0, 65535], "at large enter antipholus": [0, 65535], "large enter antipholus siracusia": [0, 65535], "enter antipholus siracusia with": [0, 65535], "antipholus siracusia with his": [0, 65535], "siracusia with his rapier": [0, 65535], "with his rapier drawne": [0, 65535], "his rapier drawne and": [0, 65535], "rapier drawne and dromio": [0, 65535], "drawne and dromio sirac": [0, 65535], "and dromio sirac luc": [0, 65535], "dromio sirac luc god": [0, 65535], "sirac luc god for": [0, 65535], "luc god for thy": [0, 65535], "god for thy mercy": [0, 65535], "for thy mercy they": [0, 65535], "thy mercy they are": [0, 65535], "mercy they are loose": [0, 65535], "they are loose againe": [0, 65535], "are loose againe adr": [0, 65535], "loose againe adr and": [0, 65535], "againe adr and come": [0, 65535], "adr and come with": [0, 65535], "and come with naked": [0, 65535], "come with naked swords": [0, 65535], "with naked swords let's": [0, 65535], "naked swords let's call": [0, 65535], "swords let's call more": [0, 65535], "let's call more helpe": [0, 65535], "call more helpe to": [0, 65535], "more helpe to haue": [0, 65535], "helpe to haue them": [0, 65535], "to haue them bound": [0, 65535], "haue them bound againe": [0, 65535], "them bound againe runne": [0, 65535], "bound againe runne all": [0, 65535], "againe runne all out": [0, 65535], "runne all out off": [0, 65535], "all out off away": [0, 65535], "out off away they'l": [0, 65535], "off away they'l kill": [0, 65535], "away they'l kill vs": [0, 65535], "they'l kill vs exeunt": [0, 65535], "kill vs exeunt omnes": [0, 65535], "vs exeunt omnes as": [0, 65535], "exeunt omnes as fast": [0, 65535], "omnes as fast as": [0, 65535], "as fast as may": [0, 65535], "fast as may be": [0, 65535], "as may be frighted": [0, 65535], "may be frighted s": [0, 65535], "be frighted s ant": [0, 65535], "frighted s ant i": [0, 65535], "s ant i see": [0, 65535], "ant i see these": [0, 65535], "i see these witches": [0, 65535], "see these witches are": [0, 65535], "these witches are affraid": [0, 65535], "witches are affraid of": [0, 65535], "are affraid of swords": [0, 65535], "affraid of swords s": [0, 65535], "of swords s dro": [0, 65535], "swords s dro she": [0, 65535], "s dro she that": [0, 65535], "dro she that would": [0, 65535], "she that would be": [0, 65535], "that would be your": [0, 65535], "would be your wife": [0, 65535], "be your wife now": [0, 65535], "your wife now ran": [0, 65535], "wife now ran from": [0, 65535], "now ran from you": [0, 65535], "ran from you ant": [0, 65535], "from you ant come": [0, 65535], "you ant come to": [0, 65535], "ant come to the": [0, 65535], "come to the centaur": [0, 65535], "to the centaur fetch": [0, 65535], "the centaur fetch our": [0, 65535], "centaur fetch our stuffe": [0, 65535], "fetch our stuffe from": [0, 65535], "our stuffe from thence": [0, 65535], "stuffe from thence i": [0, 65535], "from thence i long": [0, 65535], "thence i long that": [0, 65535], "i long that we": [0, 65535], "long that we were": [0, 65535], "that we were safe": [0, 65535], "we were safe and": [0, 65535], "were safe and sound": [0, 65535], "safe and sound aboord": [0, 65535], "and sound aboord dro": [0, 65535], "sound aboord dro faith": [0, 65535], "aboord dro faith stay": [0, 65535], "dro faith stay heere": [0, 65535], "faith stay heere this": [0, 65535], "stay heere this night": [0, 65535], "heere this night they": [0, 65535], "this night they will": [0, 65535], "night they will surely": [0, 65535], "they will surely do": [0, 65535], "will surely do vs": [0, 65535], "surely do vs no": [0, 65535], "do vs no harme": [0, 65535], "vs no harme you": [0, 65535], "no harme you saw": [0, 65535], "harme you saw they": [0, 65535], "you saw they speake": [0, 65535], "saw they speake vs": [0, 65535], "they speake vs faire": [0, 65535], "speake vs faire giue": [0, 65535], "vs faire giue vs": [0, 65535], "faire giue vs gold": [0, 65535], "giue vs gold me": [0, 65535], "vs gold me thinkes": [0, 65535], "gold me thinkes they": [0, 65535], "me thinkes they are": [0, 65535], "thinkes they are such": [0, 65535], "they are such a": [0, 65535], "are such a gentle": [0, 65535], "such a gentle nation": [0, 65535], "a gentle nation that": [0, 65535], "gentle nation that but": [0, 65535], "nation that but for": [0, 65535], "that but for the": [0, 65535], "but for the mountaine": [0, 65535], "for the mountaine of": [0, 65535], "the mountaine of mad": [0, 65535], "mountaine of mad flesh": [0, 65535], "of mad flesh that": [0, 65535], "mad flesh that claimes": [0, 65535], "flesh that claimes mariage": [0, 65535], "that claimes mariage of": [0, 65535], "claimes mariage of me": [0, 65535], "mariage of me i": [0, 65535], "of me i could": [0, 65535], "me i could finde": [0, 65535], "i could finde in": [0, 65535], "could finde in my": [0, 65535], "finde in my heart": [0, 65535], "in my heart to": [0, 65535], "my heart to stay": [0, 65535], "heart to stay heere": [0, 65535], "to stay heere still": [0, 65535], "stay heere still and": [0, 65535], "heere still and turne": [0, 65535], "still and turne witch": [0, 65535], "and turne witch ant": [0, 65535], "turne witch ant i": [0, 65535], "witch ant i will": [0, 65535], "ant i will not": [0, 65535], "i will not stay": [0, 65535], "will not stay to": [0, 65535], "not stay to night": [0, 65535], "stay to night for": [0, 65535], "to night for all": [0, 65535], "night for all the": [0, 65535], "for all the towne": [0, 65535], "all the towne therefore": [0, 65535], "the towne therefore away": [0, 65535], "towne therefore away to": [0, 65535], "therefore away to get": [0, 65535], "away to get our": [0, 65535], "to get our stuffe": [0, 65535], "get our stuffe aboord": [0, 65535], "our stuffe aboord exeunt": [0, 65535], "actus quartus sc\u00e6na prima enter": [0, 65535], "quartus sc\u00e6na prima enter a": [0, 65535], "sc\u00e6na prima enter a merchant": [0, 65535], "prima enter a merchant goldsmith": [0, 65535], "enter a merchant goldsmith and": [0, 65535], "a merchant goldsmith and an": [0, 65535], "merchant goldsmith and an officer": [0, 65535], "goldsmith and an officer mar": [0, 65535], "and an officer mar you": [0, 65535], "an officer mar you know": [0, 65535], "officer mar you know since": [0, 65535], "mar you know since pentecost": [0, 65535], "you know since pentecost the": [0, 65535], "know since pentecost the sum": [0, 65535], "since pentecost the sum is": [0, 65535], "pentecost the sum is due": [0, 65535], "the sum is due and": [0, 65535], "sum is due and since": [0, 65535], "is due and since i": [0, 65535], "due and since i haue": [0, 65535], "and since i haue not": [0, 65535], "since i haue not much": [0, 65535], "i haue not much importun'd": [0, 65535], "haue not much importun'd you": [0, 65535], "not much importun'd you nor": [0, 65535], "much importun'd you nor now": [0, 65535], "importun'd you nor now i": [0, 65535], "you nor now i had": [0, 65535], "nor now i had not": [0, 65535], "now i had not but": [0, 65535], "i had not but that": [0, 65535], "had not but that i": [0, 65535], "not but that i am": [0, 65535], "but that i am bound": [0, 65535], "that i am bound to": [0, 65535], "i am bound to persia": [0, 65535], "am bound to persia and": [0, 65535], "bound to persia and want": [0, 65535], "to persia and want gilders": [0, 65535], "persia and want gilders for": [0, 65535], "and want gilders for my": [0, 65535], "want gilders for my voyage": [0, 65535], "gilders for my voyage therefore": [0, 65535], "for my voyage therefore make": [0, 65535], "my voyage therefore make present": [0, 65535], "voyage therefore make present satisfaction": [0, 65535], "therefore make present satisfaction or": [0, 65535], "make present satisfaction or ile": [0, 65535], "present satisfaction or ile attach": [0, 65535], "satisfaction or ile attach you": [0, 65535], "or ile attach you by": [0, 65535], "ile attach you by this": [0, 65535], "attach you by this officer": [0, 65535], "you by this officer gold": [0, 65535], "by this officer gold euen": [0, 65535], "this officer gold euen iust": [0, 65535], "officer gold euen iust the": [0, 65535], "gold euen iust the sum": [0, 65535], "euen iust the sum that": [0, 65535], "iust the sum that i": [0, 65535], "the sum that i do": [0, 65535], "sum that i do owe": [0, 65535], "that i do owe to": [0, 65535], "i do owe to you": [0, 65535], "do owe to you is": [0, 65535], "owe to you is growing": [0, 65535], "to you is growing to": [0, 65535], "you is growing to me": [0, 65535], "is growing to me by": [0, 65535], "growing to me by antipholus": [0, 65535], "to me by antipholus and": [0, 65535], "me by antipholus and in": [0, 65535], "by antipholus and in the": [0, 65535], "antipholus and in the instant": [0, 65535], "and in the instant that": [0, 65535], "in the instant that i": [0, 65535], "the instant that i met": [0, 65535], "instant that i met with": [0, 65535], "that i met with you": [0, 65535], "i met with you he": [0, 65535], "met with you he had": [0, 65535], "with you he had of": [0, 65535], "you he had of me": [0, 65535], "he had of me a": [0, 65535], "had of me a chaine": [0, 65535], "of me a chaine at": [0, 65535], "me a chaine at fiue": [0, 65535], "a chaine at fiue a": [0, 65535], "chaine at fiue a clocke": [0, 65535], "at fiue a clocke i": [0, 65535], "fiue a clocke i shall": [0, 65535], "a clocke i shall receiue": [0, 65535], "clocke i shall receiue the": [0, 65535], "i shall receiue the money": [0, 65535], "shall receiue the money for": [0, 65535], "receiue the money for the": [0, 65535], "the money for the same": [0, 65535], "money for the same pleaseth": [0, 65535], "for the same pleaseth you": [0, 65535], "the same pleaseth you walke": [0, 65535], "same pleaseth you walke with": [0, 65535], "pleaseth you walke with me": [0, 65535], "you walke with me downe": [0, 65535], "walke with me downe to": [0, 65535], "with me downe to his": [0, 65535], "me downe to his house": [0, 65535], "downe to his house i": [0, 65535], "to his house i will": [0, 65535], "his house i will discharge": [0, 65535], "house i will discharge my": [0, 65535], "i will discharge my bond": [0, 65535], "will discharge my bond and": [0, 65535], "discharge my bond and thanke": [0, 65535], "my bond and thanke you": [0, 65535], "bond and thanke you too": [0, 65535], "and thanke you too enter": [0, 65535], "thanke you too enter antipholus": [0, 65535], "you too enter antipholus ephes": [0, 65535], "too enter antipholus ephes dromio": [0, 65535], "enter antipholus ephes dromio from": [0, 65535], "antipholus ephes dromio from the": [0, 65535], "ephes dromio from the courtizans": [0, 65535], "dromio from the courtizans offi": [0, 65535], "from the courtizans offi that": [0, 65535], "the courtizans offi that labour": [0, 65535], "courtizans offi that labour may": [0, 65535], "offi that labour may you": [0, 65535], "that labour may you saue": [0, 65535], "labour may you saue see": [0, 65535], "may you saue see where": [0, 65535], "you saue see where he": [0, 65535], "saue see where he comes": [0, 65535], "see where he comes ant": [0, 65535], "where he comes ant while": [0, 65535], "he comes ant while i": [0, 65535], "comes ant while i go": [0, 65535], "ant while i go to": [0, 65535], "while i go to the": [0, 65535], "i go to the goldsmiths": [0, 65535], "go to the goldsmiths house": [0, 65535], "to the goldsmiths house go": [0, 65535], "the goldsmiths house go thou": [0, 65535], "goldsmiths house go thou and": [0, 65535], "house go thou and buy": [0, 65535], "go thou and buy a": [0, 65535], "thou and buy a ropes": [0, 65535], "and buy a ropes end": [0, 65535], "buy a ropes end that": [0, 65535], "a ropes end that will": [0, 65535], "ropes end that will i": [0, 65535], "end that will i bestow": [0, 65535], "that will i bestow among": [0, 65535], "will i bestow among my": [0, 65535], "i bestow among my wife": [0, 65535], "bestow among my wife and": [0, 65535], "among my wife and their": [0, 65535], "my wife and their confederates": [0, 65535], "wife and their confederates for": [0, 65535], "and their confederates for locking": [0, 65535], "their confederates for locking me": [0, 65535], "confederates for locking me out": [0, 65535], "for locking me out of": [0, 65535], "locking me out of my": [0, 65535], "me out of my doores": [0, 65535], "out of my doores by": [0, 65535], "of my doores by day": [0, 65535], "my doores by day but": [0, 65535], "doores by day but soft": [0, 65535], "by day but soft i": [0, 65535], "day but soft i see": [0, 65535], "but soft i see the": [0, 65535], "soft i see the goldsmith": [0, 65535], "i see the goldsmith get": [0, 65535], "see the goldsmith get thee": [0, 65535], "the goldsmith get thee gone": [0, 65535], "goldsmith get thee gone buy": [0, 65535], "get thee gone buy thou": [0, 65535], "thee gone buy thou a": [0, 65535], "gone buy thou a rope": [0, 65535], "buy thou a rope and": [0, 65535], "thou a rope and bring": [0, 65535], "a rope and bring it": [0, 65535], "rope and bring it home": [0, 65535], "and bring it home to": [0, 65535], "bring it home to me": [0, 65535], "it home to me dro": [0, 65535], "home to me dro i": [0, 65535], "to me dro i buy": [0, 65535], "me dro i buy a": [0, 65535], "dro i buy a thousand": [0, 65535], "i buy a thousand pound": [0, 65535], "buy a thousand pound a": [0, 65535], "a thousand pound a yeare": [0, 65535], "thousand pound a yeare i": [0, 65535], "pound a yeare i buy": [0, 65535], "a yeare i buy a": [0, 65535], "yeare i buy a rope": [0, 65535], "i buy a rope exit": [0, 65535], "buy a rope exit dromio": [0, 65535], "a rope exit dromio eph": [0, 65535], "rope exit dromio eph ant": [0, 65535], "exit dromio eph ant a": [0, 65535], "dromio eph ant a man": [0, 65535], "eph ant a man is": [0, 65535], "ant a man is well": [0, 65535], "a man is well holpe": [0, 65535], "man is well holpe vp": [0, 65535], "is well holpe vp that": [0, 65535], "well holpe vp that trusts": [0, 65535], "holpe vp that trusts to": [0, 65535], "vp that trusts to you": [0, 65535], "that trusts to you i": [0, 65535], "trusts to you i promised": [0, 65535], "to you i promised your": [0, 65535], "you i promised your presence": [0, 65535], "i promised your presence and": [0, 65535], "promised your presence and the": [0, 65535], "your presence and the chaine": [0, 65535], "presence and the chaine but": [0, 65535], "and the chaine but neither": [0, 65535], "the chaine but neither chaine": [0, 65535], "chaine but neither chaine nor": [0, 65535], "but neither chaine nor goldsmith": [0, 65535], "neither chaine nor goldsmith came": [0, 65535], "chaine nor goldsmith came to": [0, 65535], "nor goldsmith came to me": [0, 65535], "goldsmith came to me belike": [0, 65535], "came to me belike you": [0, 65535], "to me belike you thought": [0, 65535], "me belike you thought our": [0, 65535], "belike you thought our loue": [0, 65535], "you thought our loue would": [0, 65535], "thought our loue would last": [0, 65535], "our loue would last too": [0, 65535], "loue would last too long": [0, 65535], "would last too long if": [0, 65535], "last too long if it": [0, 65535], "too long if it were": [0, 65535], "long if it were chain'd": [0, 65535], "if it were chain'd together": [0, 65535], "it were chain'd together and": [0, 65535], "were chain'd together and therefore": [0, 65535], "chain'd together and therefore came": [0, 65535], "together and therefore came not": [0, 65535], "and therefore came not gold": [0, 65535], "therefore came not gold sauing": [0, 65535], "came not gold sauing your": [0, 65535], "not gold sauing your merrie": [0, 65535], "gold sauing your merrie humor": [0, 65535], "sauing your merrie humor here's": [0, 65535], "your merrie humor here's the": [0, 65535], "merrie humor here's the note": [0, 65535], "humor here's the note how": [0, 65535], "here's the note how much": [0, 65535], "the note how much your": [0, 65535], "note how much your chaine": [0, 65535], "how much your chaine weighs": [0, 65535], "much your chaine weighs to": [0, 65535], "your chaine weighs to the": [0, 65535], "chaine weighs to the vtmost": [0, 65535], "weighs to the vtmost charect": [0, 65535], "to the vtmost charect the": [0, 65535], "the vtmost charect the finenesse": [0, 65535], "vtmost charect the finenesse of": [0, 65535], "charect the finenesse of the": [0, 65535], "the finenesse of the gold": [0, 65535], "finenesse of the gold and": [0, 65535], "of the gold and chargefull": [0, 65535], "the gold and chargefull fashion": [0, 65535], "gold and chargefull fashion which": [0, 65535], "and chargefull fashion which doth": [0, 65535], "chargefull fashion which doth amount": [0, 65535], "fashion which doth amount to": [0, 65535], "which doth amount to three": [0, 65535], "doth amount to three odde": [0, 65535], "amount to three odde duckets": [0, 65535], "to three odde duckets more": [0, 65535], "three odde duckets more then": [0, 65535], "odde duckets more then i": [0, 65535], "duckets more then i stand": [0, 65535], "more then i stand debted": [0, 65535], "then i stand debted to": [0, 65535], "i stand debted to this": [0, 65535], "stand debted to this gentleman": [0, 65535], "debted to this gentleman i": [0, 65535], "to this gentleman i pray": [0, 65535], "this gentleman i pray you": [0, 65535], "gentleman i pray you see": [0, 65535], "i pray you see him": [0, 65535], "pray you see him presently": [0, 65535], "you see him presently discharg'd": [0, 65535], "see him presently discharg'd for": [0, 65535], "him presently discharg'd for he": [0, 65535], "presently discharg'd for he is": [0, 65535], "discharg'd for he is bound": [0, 65535], "for he is bound to": [0, 65535], "he is bound to sea": [0, 65535], "is bound to sea and": [0, 65535], "bound to sea and stayes": [0, 65535], "to sea and stayes but": [0, 65535], "sea and stayes but for": [0, 65535], "and stayes but for it": [0, 65535], "stayes but for it anti": [0, 65535], "but for it anti i": [0, 65535], "for it anti i am": [0, 65535], "it anti i am not": [0, 65535], "anti i am not furnish'd": [0, 65535], "i am not furnish'd with": [0, 65535], "am not furnish'd with the": [0, 65535], "not furnish'd with the present": [0, 65535], "furnish'd with the present monie": [0, 65535], "with the present monie besides": [0, 65535], "the present monie besides i": [0, 65535], "present monie besides i haue": [0, 65535], "monie besides i haue some": [0, 65535], "besides i haue some businesse": [0, 65535], "i haue some businesse in": [0, 65535], "haue some businesse in the": [0, 65535], "some businesse in the towne": [0, 65535], "businesse in the towne good": [0, 65535], "in the towne good signior": [0, 65535], "the towne good signior take": [0, 65535], "towne good signior take the": [0, 65535], "good signior take the stranger": [0, 65535], "signior take the stranger to": [0, 65535], "take the stranger to my": [0, 65535], "the stranger to my house": [0, 65535], "stranger to my house and": [0, 65535], "to my house and with": [0, 65535], "my house and with you": [0, 65535], "house and with you take": [0, 65535], "and with you take the": [0, 65535], "with you take the chaine": [0, 65535], "you take the chaine and": [0, 65535], "take the chaine and bid": [0, 65535], "the chaine and bid my": [0, 65535], "chaine and bid my wife": [0, 65535], "and bid my wife disburse": [0, 65535], "bid my wife disburse the": [0, 65535], "my wife disburse the summe": [0, 65535], "wife disburse the summe on": [0, 65535], "disburse the summe on the": [0, 65535], "the summe on the receit": [0, 65535], "summe on the receit thereof": [0, 65535], "on the receit thereof perchance": [0, 65535], "the receit thereof perchance i": [0, 65535], "receit thereof perchance i will": [0, 65535], "thereof perchance i will be": [0, 65535], "perchance i will be there": [0, 65535], "i will be there as": [0, 65535], "will be there as soone": [0, 65535], "be there as soone as": [0, 65535], "there as soone as you": [0, 65535], "as soone as you gold": [0, 65535], "soone as you gold then": [0, 65535], "as you gold then you": [0, 65535], "you gold then you will": [0, 65535], "gold then you will bring": [0, 65535], "then you will bring the": [0, 65535], "you will bring the chaine": [0, 65535], "will bring the chaine to": [0, 65535], "bring the chaine to her": [0, 65535], "the chaine to her your": [0, 65535], "chaine to her your selfe": [0, 65535], "to her your selfe anti": [0, 65535], "her your selfe anti no": [0, 65535], "your selfe anti no beare": [0, 65535], "selfe anti no beare it": [0, 65535], "anti no beare it with": [0, 65535], "no beare it with you": [0, 65535], "beare it with you least": [0, 65535], "it with you least i": [0, 65535], "with you least i come": [0, 65535], "you least i come not": [0, 65535], "least i come not time": [0, 65535], "i come not time enough": [0, 65535], "come not time enough gold": [0, 65535], "not time enough gold well": [0, 65535], "time enough gold well sir": [0, 65535], "enough gold well sir i": [0, 65535], "gold well sir i will": [0, 65535], "well sir i will haue": [0, 65535], "sir i will haue you": [0, 65535], "i will haue you the": [0, 65535], "will haue you the chaine": [0, 65535], "haue you the chaine about": [0, 65535], "you the chaine about you": [0, 65535], "the chaine about you ant": [0, 65535], "chaine about you ant and": [0, 65535], "about you ant and if": [0, 65535], "you ant and if i": [0, 65535], "ant and if i haue": [0, 65535], "and if i haue not": [0, 65535], "if i haue not sir": [0, 65535], "i haue not sir i": [0, 65535], "haue not sir i hope": [0, 65535], "not sir i hope you": [0, 65535], "sir i hope you haue": [0, 65535], "i hope you haue or": [0, 65535], "hope you haue or else": [0, 65535], "you haue or else you": [0, 65535], "haue or else you may": [0, 65535], "or else you may returne": [0, 65535], "else you may returne without": [0, 65535], "you may returne without your": [0, 65535], "may returne without your money": [0, 65535], "returne without your money gold": [0, 65535], "without your money gold nay": [0, 65535], "your money gold nay come": [0, 65535], "money gold nay come i": [0, 65535], "gold nay come i pray": [0, 65535], "nay come i pray you": [0, 65535], "come i pray you sir": [0, 65535], "i pray you sir giue": [0, 65535], "pray you sir giue me": [0, 65535], "you sir giue me the": [0, 65535], "sir giue me the chaine": [0, 65535], "giue me the chaine both": [0, 65535], "me the chaine both winde": [0, 65535], "the chaine both winde and": [0, 65535], "chaine both winde and tide": [0, 65535], "both winde and tide stayes": [0, 65535], "winde and tide stayes for": [0, 65535], "and tide stayes for this": [0, 65535], "tide stayes for this gentleman": [0, 65535], "stayes for this gentleman and": [0, 65535], "for this gentleman and i": [0, 65535], "this gentleman and i too": [0, 65535], "gentleman and i too blame": [0, 65535], "and i too blame haue": [0, 65535], "i too blame haue held": [0, 65535], "too blame haue held him": [0, 65535], "blame haue held him heere": [0, 65535], "haue held him heere too": [0, 65535], "held him heere too long": [0, 65535], "him heere too long anti": [0, 65535], "heere too long anti good": [0, 65535], "too long anti good lord": [0, 65535], "long anti good lord you": [0, 65535], "anti good lord you vse": [0, 65535], "good lord you vse this": [0, 65535], "lord you vse this dalliance": [0, 65535], "you vse this dalliance to": [0, 65535], "vse this dalliance to excuse": [0, 65535], "this dalliance to excuse your": [0, 65535], "dalliance to excuse your breach": [0, 65535], "to excuse your breach of": [0, 65535], "excuse your breach of promise": [0, 65535], "your breach of promise to": [0, 65535], "breach of promise to the": [0, 65535], "of promise to the porpentine": [0, 65535], "promise to the porpentine i": [0, 65535], "to the porpentine i should": [0, 65535], "the porpentine i should haue": [0, 65535], "porpentine i should haue chid": [0, 65535], "i should haue chid you": [0, 65535], "should haue chid you for": [0, 65535], "haue chid you for not": [0, 65535], "chid you for not bringing": [0, 65535], "you for not bringing it": [0, 65535], "for not bringing it but": [0, 65535], "not bringing it but like": [0, 65535], "bringing it but like a": [0, 65535], "it but like a shrew": [0, 65535], "but like a shrew you": [0, 65535], "like a shrew you first": [0, 65535], "a shrew you first begin": [0, 65535], "shrew you first begin to": [0, 65535], "you first begin to brawle": [0, 65535], "first begin to brawle mar": [0, 65535], "begin to brawle mar the": [0, 65535], "to brawle mar the houre": [0, 65535], "brawle mar the houre steales": [0, 65535], "mar the houre steales on": [0, 65535], "the houre steales on i": [0, 65535], "houre steales on i pray": [0, 65535], "steales on i pray you": [0, 65535], "on i pray you sir": [0, 65535], "i pray you sir dispatch": [0, 65535], "pray you sir dispatch gold": [0, 65535], "you sir dispatch gold you": [0, 65535], "sir dispatch gold you heare": [0, 65535], "dispatch gold you heare how": [0, 65535], "gold you heare how he": [0, 65535], "you heare how he importunes": [0, 65535], "heare how he importunes me": [0, 65535], "how he importunes me the": [0, 65535], "he importunes me the chaine": [0, 65535], "importunes me the chaine ant": [0, 65535], "me the chaine ant why": [0, 65535], "the chaine ant why giue": [0, 65535], "chaine ant why giue it": [0, 65535], "ant why giue it to": [0, 65535], "why giue it to my": [0, 65535], "giue it to my wife": [0, 65535], "it to my wife and": [0, 65535], "to my wife and fetch": [0, 65535], "my wife and fetch your": [0, 65535], "wife and fetch your mony": [0, 65535], "and fetch your mony gold": [0, 65535], "fetch your mony gold come": [0, 65535], "your mony gold come come": [0, 65535], "mony gold come come you": [0, 65535], "gold come come you know": [0, 65535], "come come you know i": [0, 65535], "come you know i gaue": [0, 65535], "you know i gaue it": [0, 65535], "know i gaue it you": [0, 65535], "i gaue it you euen": [0, 65535], "gaue it you euen now": [0, 65535], "it you euen now either": [0, 65535], "you euen now either send": [0, 65535], "euen now either send the": [0, 65535], "now either send the chaine": [0, 65535], "either send the chaine or": [0, 65535], "send the chaine or send": [0, 65535], "the chaine or send me": [0, 65535], "chaine or send me by": [0, 65535], "or send me by some": [0, 65535], "send me by some token": [0, 65535], "me by some token ant": [0, 65535], "by some token ant fie": [0, 65535], "some token ant fie now": [0, 65535], "token ant fie now you": [0, 65535], "ant fie now you run": [0, 65535], "fie now you run this": [0, 65535], "now you run this humor": [0, 65535], "you run this humor out": [0, 65535], "run this humor out of": [0, 65535], "this humor out of breath": [0, 65535], "humor out of breath come": [0, 65535], "out of breath come where's": [0, 65535], "of breath come where's the": [0, 65535], "breath come where's the chaine": [0, 65535], "come where's the chaine i": [0, 65535], "where's the chaine i pray": [0, 65535], "the chaine i pray you": [0, 65535], "chaine i pray you let": [0, 65535], "i pray you let me": [0, 65535], "pray you let me see": [0, 65535], "you let me see it": [0, 65535], "let me see it mar": [0, 65535], "me see it mar my": [0, 65535], "see it mar my businesse": [0, 65535], "it mar my businesse cannot": [0, 65535], "mar my businesse cannot brooke": [0, 65535], "my businesse cannot brooke this": [0, 65535], "businesse cannot brooke this dalliance": [0, 65535], "cannot brooke this dalliance good": [0, 65535], "brooke this dalliance good sir": [0, 65535], "this dalliance good sir say": [0, 65535], "dalliance good sir say whe'r": [0, 65535], "good sir say whe'r you'l": [0, 65535], "sir say whe'r you'l answer": [0, 65535], "say whe'r you'l answer me": [0, 65535], "whe'r you'l answer me or": [0, 65535], "you'l answer me or no": [0, 65535], "answer me or no if": [0, 65535], "me or no if not": [0, 65535], "or no if not ile": [0, 65535], "no if not ile leaue": [0, 65535], "if not ile leaue him": [0, 65535], "not ile leaue him to": [0, 65535], "ile leaue him to the": [0, 65535], "leaue him to the officer": [0, 65535], "him to the officer ant": [0, 65535], "to the officer ant i": [0, 65535], "the officer ant i answer": [0, 65535], "officer ant i answer you": [0, 65535], "ant i answer you what": [0, 65535], "i answer you what should": [0, 65535], "answer you what should i": [0, 65535], "you what should i answer": [0, 65535], "what should i answer you": [0, 65535], "should i answer you gold": [0, 65535], "i answer you gold the": [0, 65535], "answer you gold the monie": [0, 65535], "you gold the monie that": [0, 65535], "gold the monie that you": [0, 65535], "the monie that you owe": [0, 65535], "monie that you owe me": [0, 65535], "that you owe me for": [0, 65535], "you owe me for the": [0, 65535], "owe me for the chaine": [0, 65535], "me for the chaine ant": [0, 65535], "for the chaine ant i": [0, 65535], "the chaine ant i owe": [0, 65535], "chaine ant i owe you": [0, 65535], "ant i owe you none": [0, 65535], "i owe you none till": [0, 65535], "owe you none till i": [0, 65535], "you none till i receiue": [0, 65535], "none till i receiue the": [0, 65535], "till i receiue the chaine": [0, 65535], "i receiue the chaine gold": [0, 65535], "receiue the chaine gold you": [0, 65535], "the chaine gold you know": [0, 65535], "chaine gold you know i": [0, 65535], "gold you know i gaue": [0, 65535], "i gaue it you halfe": [0, 65535], "gaue it you halfe an": [0, 65535], "it you halfe an houre": [0, 65535], "you halfe an houre since": [0, 65535], "halfe an houre since ant": [0, 65535], "an houre since ant you": [0, 65535], "houre since ant you gaue": [0, 65535], "since ant you gaue me": [0, 65535], "ant you gaue me none": [0, 65535], "you gaue me none you": [0, 65535], "gaue me none you wrong": [0, 65535], "me none you wrong mee": [0, 65535], "none you wrong mee much": [0, 65535], "you wrong mee much to": [0, 65535], "wrong mee much to say": [0, 65535], "mee much to say so": [0, 65535], "much to say so gold": [0, 65535], "to say so gold you": [0, 65535], "say so gold you wrong": [0, 65535], "so gold you wrong me": [0, 65535], "gold you wrong me more": [0, 65535], "you wrong me more sir": [0, 65535], "wrong me more sir in": [0, 65535], "me more sir in denying": [0, 65535], "more sir in denying it": [0, 65535], "sir in denying it consider": [0, 65535], "in denying it consider how": [0, 65535], "denying it consider how it": [0, 65535], "it consider how it stands": [0, 65535], "consider how it stands vpon": [0, 65535], "how it stands vpon my": [0, 65535], "it stands vpon my credit": [0, 65535], "stands vpon my credit mar": [0, 65535], "vpon my credit mar well": [0, 65535], "my credit mar well officer": [0, 65535], "credit mar well officer arrest": [0, 65535], "mar well officer arrest him": [0, 65535], "well officer arrest him at": [0, 65535], "officer arrest him at my": [0, 65535], "arrest him at my suite": [0, 65535], "him at my suite offi": [0, 65535], "at my suite offi i": [0, 65535], "my suite offi i do": [0, 65535], "suite offi i do and": [0, 65535], "offi i do and charge": [0, 65535], "i do and charge you": [0, 65535], "do and charge you in": [0, 65535], "and charge you in the": [0, 65535], "charge you in the dukes": [0, 65535], "you in the dukes name": [0, 65535], "in the dukes name to": [0, 65535], "the dukes name to obey": [0, 65535], "dukes name to obey me": [0, 65535], "name to obey me gold": [0, 65535], "to obey me gold this": [0, 65535], "obey me gold this touches": [0, 65535], "me gold this touches me": [0, 65535], "gold this touches me in": [0, 65535], "this touches me in reputation": [0, 65535], "touches me in reputation either": [0, 65535], "me in reputation either consent": [0, 65535], "in reputation either consent to": [0, 65535], "reputation either consent to pay": [0, 65535], "either consent to pay this": [0, 65535], "consent to pay this sum": [0, 65535], "to pay this sum for": [0, 65535], "pay this sum for me": [0, 65535], "this sum for me or": [0, 65535], "sum for me or i": [0, 65535], "for me or i attach": [0, 65535], "me or i attach you": [0, 65535], "or i attach you by": [0, 65535], "i attach you by this": [0, 65535], "you by this officer ant": [0, 65535], "by this officer ant consent": [0, 65535], "this officer ant consent to": [0, 65535], "officer ant consent to pay": [0, 65535], "ant consent to pay thee": [0, 65535], "consent to pay thee that": [0, 65535], "to pay thee that i": [0, 65535], "pay thee that i neuer": [0, 65535], "thee that i neuer had": [0, 65535], "that i neuer had arrest": [0, 65535], "i neuer had arrest me": [0, 65535], "neuer had arrest me foolish": [0, 65535], "had arrest me foolish fellow": [0, 65535], "arrest me foolish fellow if": [0, 65535], "me foolish fellow if thou": [0, 65535], "foolish fellow if thou dar'st": [0, 65535], "fellow if thou dar'st gold": [0, 65535], "if thou dar'st gold heere": [0, 65535], "thou dar'st gold heere is": [0, 65535], "dar'st gold heere is thy": [0, 65535], "gold heere is thy fee": [0, 65535], "heere is thy fee arrest": [0, 65535], "is thy fee arrest him": [0, 65535], "thy fee arrest him officer": [0, 65535], "fee arrest him officer i": [0, 65535], "arrest him officer i would": [0, 65535], "him officer i would not": [0, 65535], "officer i would not spare": [0, 65535], "i would not spare my": [0, 65535], "would not spare my brother": [0, 65535], "not spare my brother in": [0, 65535], "spare my brother in this": [0, 65535], "my brother in this case": [0, 65535], "brother in this case if": [0, 65535], "in this case if he": [0, 65535], "this case if he should": [0, 65535], "case if he should scorne": [0, 65535], "if he should scorne me": [0, 65535], "he should scorne me so": [0, 65535], "should scorne me so apparantly": [0, 65535], "scorne me so apparantly offic": [0, 65535], "me so apparantly offic i": [0, 65535], "so apparantly offic i do": [0, 65535], "apparantly offic i do arrest": [0, 65535], "offic i do arrest you": [0, 65535], "i do arrest you sir": [0, 65535], "do arrest you sir you": [0, 65535], "arrest you sir you heare": [0, 65535], "you sir you heare the": [0, 65535], "sir you heare the suite": [0, 65535], "you heare the suite ant": [0, 65535], "heare the suite ant i": [0, 65535], "the suite ant i do": [0, 65535], "suite ant i do obey": [0, 65535], "ant i do obey thee": [0, 65535], "i do obey thee till": [0, 65535], "do obey thee till i": [0, 65535], "obey thee till i giue": [0, 65535], "thee till i giue thee": [0, 65535], "till i giue thee baile": [0, 65535], "i giue thee baile but": [0, 65535], "giue thee baile but sirrah": [0, 65535], "thee baile but sirrah you": [0, 65535], "baile but sirrah you shall": [0, 65535], "but sirrah you shall buy": [0, 65535], "sirrah you shall buy this": [0, 65535], "you shall buy this sport": [0, 65535], "shall buy this sport as": [0, 65535], "buy this sport as deere": [0, 65535], "this sport as deere as": [0, 65535], "sport as deere as all": [0, 65535], "as deere as all the": [0, 65535], "deere as all the mettall": [0, 65535], "as all the mettall in": [0, 65535], "all the mettall in your": [0, 65535], "the mettall in your shop": [0, 65535], "mettall in your shop will": [0, 65535], "in your shop will answer": [0, 65535], "your shop will answer gold": [0, 65535], "shop will answer gold sir": [0, 65535], "will answer gold sir sir": [0, 65535], "answer gold sir sir i": [0, 65535], "gold sir sir i shall": [0, 65535], "sir sir i shall haue": [0, 65535], "sir i shall haue law": [0, 65535], "i shall haue law in": [0, 65535], "shall haue law in ephesus": [0, 65535], "haue law in ephesus to": [0, 65535], "law in ephesus to your": [0, 65535], "in ephesus to your notorious": [0, 65535], "ephesus to your notorious shame": [0, 65535], "to your notorious shame i": [0, 65535], "your notorious shame i doubt": [0, 65535], "notorious shame i doubt it": [0, 65535], "shame i doubt it not": [0, 65535], "i doubt it not enter": [0, 65535], "doubt it not enter dromio": [0, 65535], "it not enter dromio sira": [0, 65535], "not enter dromio sira from": [0, 65535], "enter dromio sira from the": [0, 65535], "dromio sira from the bay": [0, 65535], "sira from the bay dro": [0, 65535], "from the bay dro master": [0, 65535], "the bay dro master there's": [0, 65535], "bay dro master there's a": [0, 65535], "dro master there's a barke": [0, 65535], "master there's a barke of": [0, 65535], "there's a barke of epidamium": [0, 65535], "a barke of epidamium that": [0, 65535], "barke of epidamium that staies": [0, 65535], "of epidamium that staies but": [0, 65535], "epidamium that staies but till": [0, 65535], "that staies but till her": [0, 65535], "staies but till her owner": [0, 65535], "but till her owner comes": [0, 65535], "till her owner comes aboord": [0, 65535], "her owner comes aboord and": [0, 65535], "owner comes aboord and then": [0, 65535], "comes aboord and then sir": [0, 65535], "aboord and then sir she": [0, 65535], "and then sir she beares": [0, 65535], "then sir she beares away": [0, 65535], "sir she beares away our": [0, 65535], "she beares away our fraughtage": [0, 65535], "beares away our fraughtage sir": [0, 65535], "away our fraughtage sir i": [0, 65535], "our fraughtage sir i haue": [0, 65535], "fraughtage sir i haue conuei'd": [0, 65535], "sir i haue conuei'd aboord": [0, 65535], "i haue conuei'd aboord and": [0, 65535], "haue conuei'd aboord and i": [0, 65535], "conuei'd aboord and i haue": [0, 65535], "aboord and i haue bought": [0, 65535], "and i haue bought the": [0, 65535], "i haue bought the oyle": [0, 65535], "haue bought the oyle the": [0, 65535], "bought the oyle the balsamum": [0, 65535], "the oyle the balsamum and": [0, 65535], "oyle the balsamum and aqua": [0, 65535], "the balsamum and aqua vit\u00e6": [0, 65535], "balsamum and aqua vit\u00e6 the": [0, 65535], "and aqua vit\u00e6 the ship": [0, 65535], "aqua vit\u00e6 the ship is": [0, 65535], "vit\u00e6 the ship is in": [0, 65535], "the ship is in her": [0, 65535], "ship is in her trim": [0, 65535], "is in her trim the": [0, 65535], "in her trim the merrie": [0, 65535], "her trim the merrie winde": [0, 65535], "trim the merrie winde blowes": [0, 65535], "the merrie winde blowes faire": [0, 65535], "merrie winde blowes faire from": [0, 65535], "winde blowes faire from land": [0, 65535], "blowes faire from land they": [0, 65535], "faire from land they stay": [0, 65535], "from land they stay for": [0, 65535], "land they stay for nought": [0, 65535], "they stay for nought at": [0, 65535], "stay for nought at all": [0, 65535], "for nought at all but": [0, 65535], "nought at all but for": [0, 65535], "at all but for their": [0, 65535], "all but for their owner": [0, 65535], "but for their owner master": [0, 65535], "for their owner master and": [0, 65535], "their owner master and your": [0, 65535], "owner master and your selfe": [0, 65535], "master and your selfe an": [0, 65535], "and your selfe an how": [0, 65535], "your selfe an how now": [0, 65535], "selfe an how now a": [0, 65535], "an how now a madman": [0, 65535], "how now a madman why": [0, 65535], "now a madman why thou": [0, 65535], "a madman why thou peeuish": [0, 65535], "madman why thou peeuish sheep": [0, 65535], "why thou peeuish sheep what": [0, 65535], "thou peeuish sheep what ship": [0, 65535], "peeuish sheep what ship of": [0, 65535], "sheep what ship of epidamium": [0, 65535], "what ship of epidamium staies": [0, 65535], "ship of epidamium staies for": [0, 65535], "of epidamium staies for me": [0, 65535], "epidamium staies for me s": [0, 65535], "staies for me s dro": [0, 65535], "for me s dro a": [0, 65535], "me s dro a ship": [0, 65535], "s dro a ship you": [0, 65535], "dro a ship you sent": [0, 65535], "a ship you sent me": [0, 65535], "ship you sent me too": [0, 65535], "you sent me too to": [0, 65535], "sent me too to hier": [0, 65535], "me too to hier waftage": [0, 65535], "too to hier waftage ant": [0, 65535], "to hier waftage ant thou": [0, 65535], "hier waftage ant thou drunken": [0, 65535], "waftage ant thou drunken slaue": [0, 65535], "ant thou drunken slaue i": [0, 65535], "thou drunken slaue i sent": [0, 65535], "drunken slaue i sent thee": [0, 65535], "slaue i sent thee for": [0, 65535], "i sent thee for a": [0, 65535], "sent thee for a rope": [0, 65535], "thee for a rope and": [0, 65535], "for a rope and told": [0, 65535], "a rope and told thee": [0, 65535], "rope and told thee to": [0, 65535], "and told thee to what": [0, 65535], "told thee to what purpose": [0, 65535], "thee to what purpose and": [0, 65535], "to what purpose and what": [0, 65535], "what purpose and what end": [0, 65535], "purpose and what end s": [0, 65535], "and what end s dro": [0, 65535], "what end s dro you": [0, 65535], "end s dro you sent": [0, 65535], "s dro you sent me": [0, 65535], "dro you sent me for": [0, 65535], "you sent me for a": [0, 65535], "sent me for a ropes": [0, 65535], "me for a ropes end": [0, 65535], "for a ropes end as": [0, 65535], "a ropes end as soone": [0, 65535], "ropes end as soone you": [0, 65535], "end as soone you sent": [0, 65535], "as soone you sent me": [0, 65535], "soone you sent me to": [0, 65535], "you sent me to the": [0, 65535], "sent me to the bay": [0, 65535], "me to the bay sir": [0, 65535], "to the bay sir for": [0, 65535], "the bay sir for a": [0, 65535], "bay sir for a barke": [0, 65535], "sir for a barke ant": [0, 65535], "for a barke ant i": [0, 65535], "a barke ant i will": [0, 65535], "barke ant i will debate": [0, 65535], "ant i will debate this": [0, 65535], "i will debate this matter": [0, 65535], "will debate this matter at": [0, 65535], "debate this matter at more": [0, 65535], "this matter at more leisure": [0, 65535], "matter at more leisure and": [0, 65535], "at more leisure and teach": [0, 65535], "more leisure and teach your": [0, 65535], "leisure and teach your eares": [0, 65535], "and teach your eares to": [0, 65535], "teach your eares to list": [0, 65535], "your eares to list me": [0, 65535], "eares to list me with": [0, 65535], "to list me with more": [0, 65535], "list me with more heede": [0, 65535], "me with more heede to": [0, 65535], "with more heede to adriana": [0, 65535], "more heede to adriana villaine": [0, 65535], "heede to adriana villaine hie": [0, 65535], "to adriana villaine hie thee": [0, 65535], "adriana villaine hie thee straight": [0, 65535], "villaine hie thee straight giue": [0, 65535], "hie thee straight giue her": [0, 65535], "thee straight giue her this": [0, 65535], "straight giue her this key": [0, 65535], "giue her this key and": [0, 65535], "her this key and tell": [0, 65535], "this key and tell her": [0, 65535], "key and tell her in": [0, 65535], "and tell her in the": [0, 65535], "tell her in the deske": [0, 65535], "her in the deske that's": [0, 65535], "in the deske that's couer'd": [0, 65535], "the deske that's couer'd o're": [0, 65535], "deske that's couer'd o're with": [0, 65535], "that's couer'd o're with turkish": [0, 65535], "couer'd o're with turkish tapistrie": [0, 65535], "o're with turkish tapistrie there": [0, 65535], "with turkish tapistrie there is": [0, 65535], "turkish tapistrie there is a": [0, 65535], "tapistrie there is a purse": [0, 65535], "there is a purse of": [0, 65535], "is a purse of duckets": [0, 65535], "a purse of duckets let": [0, 65535], "purse of duckets let her": [0, 65535], "of duckets let her send": [0, 65535], "duckets let her send it": [0, 65535], "let her send it tell": [0, 65535], "her send it tell her": [0, 65535], "send it tell her i": [0, 65535], "it tell her i am": [0, 65535], "tell her i am arrested": [0, 65535], "her i am arrested in": [0, 65535], "i am arrested in the": [0, 65535], "am arrested in the streete": [0, 65535], "arrested in the streete and": [0, 65535], "in the streete and that": [0, 65535], "the streete and that shall": [0, 65535], "streete and that shall baile": [0, 65535], "and that shall baile me": [0, 65535], "that shall baile me hie": [0, 65535], "shall baile me hie thee": [0, 65535], "baile me hie thee slaue": [0, 65535], "me hie thee slaue be": [0, 65535], "hie thee slaue be gone": [0, 65535], "thee slaue be gone on": [0, 65535], "slaue be gone on officer": [0, 65535], "be gone on officer to": [0, 65535], "gone on officer to prison": [0, 65535], "on officer to prison till": [0, 65535], "officer to prison till it": [0, 65535], "to prison till it come": [0, 65535], "prison till it come exeunt": [0, 65535], "till it come exeunt s": [0, 65535], "it come exeunt s dromio": [0, 65535], "come exeunt s dromio to": [0, 65535], "exeunt s dromio to adriana": [0, 65535], "s dromio to adriana that": [0, 65535], "dromio to adriana that is": [0, 65535], "to adriana that is where": [0, 65535], "adriana that is where we": [0, 65535], "that is where we din'd": [0, 65535], "is where we din'd where": [0, 65535], "where we din'd where dowsabell": [0, 65535], "we din'd where dowsabell did": [0, 65535], "din'd where dowsabell did claime": [0, 65535], "where dowsabell did claime me": [0, 65535], "dowsabell did claime me for": [0, 65535], "did claime me for her": [0, 65535], "claime me for her husband": [0, 65535], "me for her husband she": [0, 65535], "for her husband she is": [0, 65535], "her husband she is too": [0, 65535], "husband she is too bigge": [0, 65535], "she is too bigge i": [0, 65535], "is too bigge i hope": [0, 65535], "too bigge i hope for": [0, 65535], "bigge i hope for me": [0, 65535], "i hope for me to": [0, 65535], "hope for me to compasse": [0, 65535], "for me to compasse thither": [0, 65535], "me to compasse thither i": [0, 65535], "to compasse thither i must": [0, 65535], "compasse thither i must although": [0, 65535], "thither i must although against": [0, 65535], "i must although against my": [0, 65535], "must although against my will": [0, 65535], "although against my will for": [0, 65535], "against my will for seruants": [0, 65535], "my will for seruants must": [0, 65535], "will for seruants must their": [0, 65535], "for seruants must their masters": [0, 65535], "seruants must their masters mindes": [0, 65535], "must their masters mindes fulfill": [0, 65535], "their masters mindes fulfill exit": [0, 65535], "masters mindes fulfill exit enter": [0, 65535], "mindes fulfill exit enter adriana": [0, 65535], "fulfill exit enter adriana and": [0, 65535], "exit enter adriana and luciana": [0, 65535], "enter adriana and luciana adr": [0, 65535], "adriana and luciana adr ah": [0, 65535], "and luciana adr ah luciana": [0, 65535], "luciana adr ah luciana did": [0, 65535], "adr ah luciana did he": [0, 65535], "ah luciana did he tempt": [0, 65535], "luciana did he tempt thee": [0, 65535], "did he tempt thee so": [0, 65535], "he tempt thee so might'st": [0, 65535], "tempt thee so might'st thou": [0, 65535], "thee so might'st thou perceiue": [0, 65535], "so might'st thou perceiue austeerely": [0, 65535], "might'st thou perceiue austeerely in": [0, 65535], "thou perceiue austeerely in his": [0, 65535], "perceiue austeerely in his eie": [0, 65535], "austeerely in his eie that": [0, 65535], "in his eie that he": [0, 65535], "his eie that he did": [0, 65535], "eie that he did plead": [0, 65535], "that he did plead in": [0, 65535], "he did plead in earnest": [0, 65535], "did plead in earnest yea": [0, 65535], "plead in earnest yea or": [0, 65535], "in earnest yea or no": [0, 65535], "earnest yea or no look'd": [0, 65535], "yea or no look'd he": [0, 65535], "or no look'd he or": [0, 65535], "no look'd he or red": [0, 65535], "look'd he or red or": [0, 65535], "he or red or pale": [0, 65535], "or red or pale or": [0, 65535], "red or pale or sad": [0, 65535], "or pale or sad or": [0, 65535], "pale or sad or merrily": [0, 65535], "or sad or merrily what": [0, 65535], "sad or merrily what obseruation": [0, 65535], "or merrily what obseruation mad'st": [0, 65535], "merrily what obseruation mad'st thou": [0, 65535], "what obseruation mad'st thou in": [0, 65535], "obseruation mad'st thou in this": [0, 65535], "mad'st thou in this case": [0, 65535], "thou in this case oh": [0, 65535], "in this case oh his": [0, 65535], "this case oh his hearts": [0, 65535], "case oh his hearts meteors": [0, 65535], "oh his hearts meteors tilting": [0, 65535], "his hearts meteors tilting in": [0, 65535], "hearts meteors tilting in his": [0, 65535], "meteors tilting in his face": [0, 65535], "tilting in his face luc": [0, 65535], "in his face luc first": [0, 65535], "his face luc first he": [0, 65535], "face luc first he deni'de": [0, 65535], "luc first he deni'de you": [0, 65535], "first he deni'de you had": [0, 65535], "he deni'de you had in": [0, 65535], "deni'de you had in him": [0, 65535], "you had in him no": [0, 65535], "had in him no right": [0, 65535], "in him no right adr": [0, 65535], "him no right adr he": [0, 65535], "no right adr he meant": [0, 65535], "right adr he meant he": [0, 65535], "adr he meant he did": [0, 65535], "he meant he did me": [0, 65535], "meant he did me none": [0, 65535], "he did me none the": [0, 65535], "did me none the more": [0, 65535], "me none the more my": [0, 65535], "none the more my spight": [0, 65535], "the more my spight luc": [0, 65535], "more my spight luc then": [0, 65535], "my spight luc then swore": [0, 65535], "spight luc then swore he": [0, 65535], "luc then swore he that": [0, 65535], "then swore he that he": [0, 65535], "swore he that he was": [0, 65535], "he that he was a": [0, 65535], "that he was a stranger": [0, 65535], "he was a stranger heere": [0, 65535], "was a stranger heere adr": [0, 65535], "a stranger heere adr and": [0, 65535], "stranger heere adr and true": [0, 65535], "heere adr and true he": [0, 65535], "adr and true he swore": [0, 65535], "and true he swore though": [0, 65535], "true he swore though yet": [0, 65535], "he swore though yet forsworne": [0, 65535], "swore though yet forsworne hee": [0, 65535], "though yet forsworne hee were": [0, 65535], "yet forsworne hee were luc": [0, 65535], "forsworne hee were luc then": [0, 65535], "hee were luc then pleaded": [0, 65535], "were luc then pleaded i": [0, 65535], "luc then pleaded i for": [0, 65535], "then pleaded i for you": [0, 65535], "pleaded i for you adr": [0, 65535], "i for you adr and": [0, 65535], "for you adr and what": [0, 65535], "you adr and what said": [0, 65535], "adr and what said he": [0, 65535], "and what said he luc": [0, 65535], "what said he luc that": [0, 65535], "said he luc that loue": [0, 65535], "he luc that loue i": [0, 65535], "luc that loue i begg'd": [0, 65535], "that loue i begg'd for": [0, 65535], "loue i begg'd for you": [0, 65535], "i begg'd for you he": [0, 65535], "begg'd for you he begg'd": [0, 65535], "for you he begg'd of": [0, 65535], "you he begg'd of me": [0, 65535], "he begg'd of me adr": [0, 65535], "begg'd of me adr with": [0, 65535], "of me adr with what": [0, 65535], "me adr with what perswasion": [0, 65535], "adr with what perswasion did": [0, 65535], "with what perswasion did he": [0, 65535], "what perswasion did he tempt": [0, 65535], "perswasion did he tempt thy": [0, 65535], "did he tempt thy loue": [0, 65535], "he tempt thy loue luc": [0, 65535], "tempt thy loue luc with": [0, 65535], "thy loue luc with words": [0, 65535], "loue luc with words that": [0, 65535], "luc with words that in": [0, 65535], "with words that in an": [0, 65535], "words that in an honest": [0, 65535], "that in an honest suit": [0, 65535], "in an honest suit might": [0, 65535], "an honest suit might moue": [0, 65535], "honest suit might moue first": [0, 65535], "suit might moue first he": [0, 65535], "might moue first he did": [0, 65535], "moue first he did praise": [0, 65535], "first he did praise my": [0, 65535], "he did praise my beautie": [0, 65535], "did praise my beautie then": [0, 65535], "praise my beautie then my": [0, 65535], "my beautie then my speech": [0, 65535], "beautie then my speech adr": [0, 65535], "then my speech adr did'st": [0, 65535], "my speech adr did'st speake": [0, 65535], "speech adr did'st speake him": [0, 65535], "adr did'st speake him faire": [0, 65535], "did'st speake him faire luc": [0, 65535], "speake him faire luc haue": [0, 65535], "him faire luc haue patience": [0, 65535], "faire luc haue patience i": [0, 65535], "luc haue patience i beseech": [0, 65535], "haue patience i beseech adr": [0, 65535], "patience i beseech adr i": [0, 65535], "i beseech adr i cannot": [0, 65535], "beseech adr i cannot nor": [0, 65535], "adr i cannot nor i": [0, 65535], "i cannot nor i will": [0, 65535], "cannot nor i will not": [0, 65535], "nor i will not hold": [0, 65535], "i will not hold me": [0, 65535], "will not hold me still": [0, 65535], "not hold me still my": [0, 65535], "hold me still my tongue": [0, 65535], "me still my tongue though": [0, 65535], "still my tongue though not": [0, 65535], "my tongue though not my": [0, 65535], "tongue though not my heart": [0, 65535], "though not my heart shall": [0, 65535], "not my heart shall haue": [0, 65535], "my heart shall haue his": [0, 65535], "heart shall haue his will": [0, 65535], "shall haue his will he": [0, 65535], "haue his will he is": [0, 65535], "his will he is deformed": [0, 65535], "will he is deformed crooked": [0, 65535], "he is deformed crooked old": [0, 65535], "is deformed crooked old and": [0, 65535], "deformed crooked old and sere": [0, 65535], "crooked old and sere ill": [0, 65535], "old and sere ill fac'd": [0, 65535], "and sere ill fac'd worse": [0, 65535], "sere ill fac'd worse bodied": [0, 65535], "ill fac'd worse bodied shapelesse": [0, 65535], "fac'd worse bodied shapelesse euery": [0, 65535], "worse bodied shapelesse euery where": [0, 65535], "bodied shapelesse euery where vicious": [0, 65535], "shapelesse euery where vicious vngentle": [0, 65535], "euery where vicious vngentle foolish": [0, 65535], "where vicious vngentle foolish blunt": [0, 65535], "vicious vngentle foolish blunt vnkinde": [0, 65535], "vngentle foolish blunt vnkinde stigmaticall": [0, 65535], "foolish blunt vnkinde stigmaticall in": [0, 65535], "blunt vnkinde stigmaticall in making": [0, 65535], "vnkinde stigmaticall in making worse": [0, 65535], "stigmaticall in making worse in": [0, 65535], "in making worse in minde": [0, 65535], "making worse in minde luc": [0, 65535], "worse in minde luc who": [0, 65535], "in minde luc who would": [0, 65535], "minde luc who would be": [0, 65535], "luc who would be iealous": [0, 65535], "who would be iealous then": [0, 65535], "would be iealous then of": [0, 65535], "be iealous then of such": [0, 65535], "iealous then of such a": [0, 65535], "then of such a one": [0, 65535], "of such a one no": [0, 65535], "such a one no euill": [0, 65535], "a one no euill lost": [0, 65535], "one no euill lost is": [0, 65535], "no euill lost is wail'd": [0, 65535], "euill lost is wail'd when": [0, 65535], "lost is wail'd when it": [0, 65535], "is wail'd when it is": [0, 65535], "wail'd when it is gone": [0, 65535], "when it is gone adr": [0, 65535], "it is gone adr ah": [0, 65535], "is gone adr ah but": [0, 65535], "gone adr ah but i": [0, 65535], "adr ah but i thinke": [0, 65535], "ah but i thinke him": [0, 65535], "but i thinke him better": [0, 65535], "i thinke him better then": [0, 65535], "thinke him better then i": [0, 65535], "him better then i say": [0, 65535], "better then i say and": [0, 65535], "then i say and yet": [0, 65535], "i say and yet would": [0, 65535], "say and yet would herein": [0, 65535], "and yet would herein others": [0, 65535], "yet would herein others eies": [0, 65535], "would herein others eies were": [0, 65535], "herein others eies were worse": [0, 65535], "others eies were worse farre": [0, 65535], "eies were worse farre from": [0, 65535], "were worse farre from her": [0, 65535], "worse farre from her nest": [0, 65535], "farre from her nest the": [0, 65535], "from her nest the lapwing": [0, 65535], "her nest the lapwing cries": [0, 65535], "nest the lapwing cries away": [0, 65535], "the lapwing cries away my": [0, 65535], "lapwing cries away my heart": [0, 65535], "cries away my heart praies": [0, 65535], "away my heart praies for": [0, 65535], "my heart praies for him": [0, 65535], "heart praies for him though": [0, 65535], "praies for him though my": [0, 65535], "for him though my tongue": [0, 65535], "him though my tongue doe": [0, 65535], "though my tongue doe curse": [0, 65535], "my tongue doe curse enter": [0, 65535], "tongue doe curse enter s": [0, 65535], "doe curse enter s dromio": [0, 65535], "curse enter s dromio dro": [0, 65535], "enter s dromio dro here": [0, 65535], "s dromio dro here goe": [0, 65535], "dromio dro here goe the": [0, 65535], "dro here goe the deske": [0, 65535], "here goe the deske the": [0, 65535], "goe the deske the purse": [0, 65535], "the deske the purse sweet": [0, 65535], "deske the purse sweet now": [0, 65535], "the purse sweet now make": [0, 65535], "purse sweet now make haste": [0, 65535], "sweet now make haste luc": [0, 65535], "now make haste luc how": [0, 65535], "make haste luc how hast": [0, 65535], "haste luc how hast thou": [0, 65535], "luc how hast thou lost": [0, 65535], "how hast thou lost thy": [0, 65535], "hast thou lost thy breath": [0, 65535], "thou lost thy breath s": [0, 65535], "lost thy breath s dro": [0, 65535], "thy breath s dro by": [0, 65535], "breath s dro by running": [0, 65535], "s dro by running fast": [0, 65535], "dro by running fast adr": [0, 65535], "by running fast adr where": [0, 65535], "running fast adr where is": [0, 65535], "fast adr where is thy": [0, 65535], "adr where is thy master": [0, 65535], "where is thy master dromio": [0, 65535], "is thy master dromio is": [0, 65535], "thy master dromio is he": [0, 65535], "master dromio is he well": [0, 65535], "dromio is he well s": [0, 65535], "is he well s dro": [0, 65535], "he well s dro no": [0, 65535], "well s dro no he's": [0, 65535], "s dro no he's in": [0, 65535], "dro no he's in tartar": [0, 65535], "no he's in tartar limbo": [0, 65535], "he's in tartar limbo worse": [0, 65535], "in tartar limbo worse then": [0, 65535], "tartar limbo worse then hell": [0, 65535], "limbo worse then hell a": [0, 65535], "worse then hell a diuell": [0, 65535], "then hell a diuell in": [0, 65535], "hell a diuell in an": [0, 65535], "a diuell in an euerlasting": [0, 65535], "diuell in an euerlasting garment": [0, 65535], "in an euerlasting garment hath": [0, 65535], "an euerlasting garment hath him": [0, 65535], "euerlasting garment hath him on": [0, 65535], "garment hath him on whose": [0, 65535], "hath him on whose hard": [0, 65535], "him on whose hard heart": [0, 65535], "on whose hard heart is": [0, 65535], "whose hard heart is button'd": [0, 65535], "hard heart is button'd vp": [0, 65535], "heart is button'd vp with": [0, 65535], "is button'd vp with steele": [0, 65535], "button'd vp with steele a": [0, 65535], "vp with steele a feind": [0, 65535], "with steele a feind a": [0, 65535], "steele a feind a fairie": [0, 65535], "a feind a fairie pittilesse": [0, 65535], "feind a fairie pittilesse and": [0, 65535], "a fairie pittilesse and ruffe": [0, 65535], "fairie pittilesse and ruffe a": [0, 65535], "pittilesse and ruffe a wolfe": [0, 65535], "and ruffe a wolfe nay": [0, 65535], "ruffe a wolfe nay worse": [0, 65535], "a wolfe nay worse a": [0, 65535], "wolfe nay worse a fellow": [0, 65535], "nay worse a fellow all": [0, 65535], "worse a fellow all in": [0, 65535], "a fellow all in buffe": [0, 65535], "fellow all in buffe a": [0, 65535], "all in buffe a back": [0, 65535], "in buffe a back friend": [0, 65535], "buffe a back friend a": [0, 65535], "a back friend a shoulder": [0, 65535], "back friend a shoulder clapper": [0, 65535], "friend a shoulder clapper one": [0, 65535], "a shoulder clapper one that": [0, 65535], "shoulder clapper one that countermads": [0, 65535], "clapper one that countermads the": [0, 65535], "one that countermads the passages": [0, 65535], "that countermads the passages of": [0, 65535], "countermads the passages of allies": [0, 65535], "the passages of allies creekes": [0, 65535], "passages of allies creekes and": [0, 65535], "of allies creekes and narrow": [0, 65535], "allies creekes and narrow lands": [0, 65535], "creekes and narrow lands a": [0, 65535], "and narrow lands a hound": [0, 65535], "narrow lands a hound that": [0, 65535], "lands a hound that runs": [0, 65535], "a hound that runs counter": [0, 65535], "hound that runs counter and": [0, 65535], "that runs counter and yet": [0, 65535], "runs counter and yet draws": [0, 65535], "counter and yet draws drifoot": [0, 65535], "and yet draws drifoot well": [0, 65535], "yet draws drifoot well one": [0, 65535], "draws drifoot well one that": [0, 65535], "drifoot well one that before": [0, 65535], "well one that before the": [0, 65535], "one that before the iudgment": [0, 65535], "that before the iudgment carries": [0, 65535], "before the iudgment carries poore": [0, 65535], "the iudgment carries poore soules": [0, 65535], "iudgment carries poore soules to": [0, 65535], "carries poore soules to hel": [0, 65535], "poore soules to hel adr": [0, 65535], "soules to hel adr why": [0, 65535], "to hel adr why man": [0, 65535], "hel adr why man what": [0, 65535], "adr why man what is": [0, 65535], "why man what is the": [0, 65535], "man what is the matter": [0, 65535], "what is the matter s": [0, 65535], "is the matter s dro": [0, 65535], "the matter s dro i": [0, 65535], "matter s dro i doe": [0, 65535], "s dro i doe not": [0, 65535], "dro i doe not know": [0, 65535], "i doe not know the": [0, 65535], "doe not know the matter": [0, 65535], "not know the matter hee": [0, 65535], "know the matter hee is": [0, 65535], "the matter hee is rested": [0, 65535], "matter hee is rested on": [0, 65535], "hee is rested on the": [0, 65535], "is rested on the case": [0, 65535], "rested on the case adr": [0, 65535], "on the case adr what": [0, 65535], "the case adr what is": [0, 65535], "case adr what is he": [0, 65535], "adr what is he arrested": [0, 65535], "what is he arrested tell": [0, 65535], "is he arrested tell me": [0, 65535], "he arrested tell me at": [0, 65535], "arrested tell me at whose": [0, 65535], "tell me at whose suite": [0, 65535], "me at whose suite s": [0, 65535], "at whose suite s dro": [0, 65535], "whose suite s dro i": [0, 65535], "suite s dro i know": [0, 65535], "s dro i know not": [0, 65535], "dro i know not at": [0, 65535], "i know not at whose": [0, 65535], "know not at whose suite": [0, 65535], "not at whose suite he": [0, 65535], "at whose suite he is": [0, 65535], "whose suite he is arested": [0, 65535], "suite he is arested well": [0, 65535], "he is arested well but": [0, 65535], "is arested well but is": [0, 65535], "arested well but is in": [0, 65535], "well but is in a": [0, 65535], "but is in a suite": [0, 65535], "is in a suite of": [0, 65535], "in a suite of buffe": [0, 65535], "a suite of buffe which": [0, 65535], "suite of buffe which rested": [0, 65535], "of buffe which rested him": [0, 65535], "buffe which rested him that": [0, 65535], "which rested him that can": [0, 65535], "rested him that can i": [0, 65535], "him that can i tell": [0, 65535], "that can i tell will": [0, 65535], "can i tell will you": [0, 65535], "i tell will you send": [0, 65535], "tell will you send him": [0, 65535], "will you send him mistris": [0, 65535], "you send him mistris redemption": [0, 65535], "send him mistris redemption the": [0, 65535], "him mistris redemption the monie": [0, 65535], "mistris redemption the monie in": [0, 65535], "redemption the monie in his": [0, 65535], "the monie in his deske": [0, 65535], "monie in his deske adr": [0, 65535], "in his deske adr go": [0, 65535], "his deske adr go fetch": [0, 65535], "deske adr go fetch it": [0, 65535], "adr go fetch it sister": [0, 65535], "go fetch it sister this": [0, 65535], "fetch it sister this i": [0, 65535], "it sister this i wonder": [0, 65535], "sister this i wonder at": [0, 65535], "this i wonder at exit": [0, 65535], "i wonder at exit luciana": [0, 65535], "wonder at exit luciana thus": [0, 65535], "at exit luciana thus he": [0, 65535], "exit luciana thus he vnknowne": [0, 65535], "luciana thus he vnknowne to": [0, 65535], "thus he vnknowne to me": [0, 65535], "he vnknowne to me should": [0, 65535], "vnknowne to me should be": [0, 65535], "to me should be in": [0, 65535], "me should be in debt": [0, 65535], "should be in debt tell": [0, 65535], "be in debt tell me": [0, 65535], "in debt tell me was": [0, 65535], "debt tell me was he": [0, 65535], "tell me was he arested": [0, 65535], "me was he arested on": [0, 65535], "was he arested on a": [0, 65535], "he arested on a band": [0, 65535], "arested on a band s": [0, 65535], "on a band s dro": [0, 65535], "a band s dro not": [0, 65535], "band s dro not on": [0, 65535], "s dro not on a": [0, 65535], "dro not on a band": [0, 65535], "not on a band but": [0, 65535], "on a band but on": [0, 65535], "a band but on a": [0, 65535], "band but on a stronger": [0, 65535], "but on a stronger thing": [0, 65535], "on a stronger thing a": [0, 65535], "a stronger thing a chaine": [0, 65535], "stronger thing a chaine a": [0, 65535], "thing a chaine a chaine": [0, 65535], "a chaine a chaine doe": [0, 65535], "chaine a chaine doe you": [0, 65535], "a chaine doe you not": [0, 65535], "chaine doe you not here": [0, 65535], "doe you not here it": [0, 65535], "you not here it ring": [0, 65535], "not here it ring adria": [0, 65535], "here it ring adria what": [0, 65535], "it ring adria what the": [0, 65535], "ring adria what the chaine": [0, 65535], "adria what the chaine s": [0, 65535], "what the chaine s dro": [0, 65535], "the chaine s dro no": [0, 65535], "chaine s dro no no": [0, 65535], "s dro no no the": [0, 65535], "dro no no the bell": [0, 65535], "no no the bell 'tis": [0, 65535], "no the bell 'tis time": [0, 65535], "the bell 'tis time that": [0, 65535], "bell 'tis time that i": [0, 65535], "'tis time that i were": [0, 65535], "time that i were gone": [0, 65535], "that i were gone it": [0, 65535], "i were gone it was": [0, 65535], "were gone it was two": [0, 65535], "gone it was two ere": [0, 65535], "it was two ere i": [0, 65535], "was two ere i left": [0, 65535], "two ere i left him": [0, 65535], "ere i left him and": [0, 65535], "i left him and now": [0, 65535], "left him and now the": [0, 65535], "him and now the clocke": [0, 65535], "and now the clocke strikes": [0, 65535], "now the clocke strikes one": [0, 65535], "the clocke strikes one adr": [0, 65535], "clocke strikes one adr the": [0, 65535], "strikes one adr the houres": [0, 65535], "one adr the houres come": [0, 65535], "adr the houres come backe": [0, 65535], "the houres come backe that": [0, 65535], "houres come backe that did": [0, 65535], "come backe that did i": [0, 65535], "backe that did i neuer": [0, 65535], "that did i neuer here": [0, 65535], "did i neuer here s": [0, 65535], "i neuer here s dro": [0, 65535], "neuer here s dro oh": [0, 65535], "here s dro oh yes": [0, 65535], "s dro oh yes if": [0, 65535], "dro oh yes if any": [0, 65535], "oh yes if any houre": [0, 65535], "yes if any houre meete": [0, 65535], "if any houre meete a": [0, 65535], "any houre meete a serieant": [0, 65535], "houre meete a serieant a": [0, 65535], "meete a serieant a turnes": [0, 65535], "a serieant a turnes backe": [0, 65535], "serieant a turnes backe for": [0, 65535], "a turnes backe for verie": [0, 65535], "turnes backe for verie feare": [0, 65535], "backe for verie feare adri": [0, 65535], "for verie feare adri as": [0, 65535], "verie feare adri as if": [0, 65535], "feare adri as if time": [0, 65535], "adri as if time were": [0, 65535], "as if time were in": [0, 65535], "if time were in debt": [0, 65535], "time were in debt how": [0, 65535], "were in debt how fondly": [0, 65535], "in debt how fondly do'st": [0, 65535], "debt how fondly do'st thou": [0, 65535], "how fondly do'st thou reason": [0, 65535], "fondly do'st thou reason s": [0, 65535], "do'st thou reason s dro": [0, 65535], "thou reason s dro time": [0, 65535], "reason s dro time is": [0, 65535], "s dro time is a": [0, 65535], "dro time is a verie": [0, 65535], "time is a verie bankerout": [0, 65535], "is a verie bankerout and": [0, 65535], "a verie bankerout and owes": [0, 65535], "verie bankerout and owes more": [0, 65535], "bankerout and owes more then": [0, 65535], "and owes more then he's": [0, 65535], "owes more then he's worth": [0, 65535], "more then he's worth to": [0, 65535], "then he's worth to season": [0, 65535], "he's worth to season nay": [0, 65535], "worth to season nay he's": [0, 65535], "to season nay he's a": [0, 65535], "season nay he's a theefe": [0, 65535], "nay he's a theefe too": [0, 65535], "he's a theefe too haue": [0, 65535], "a theefe too haue you": [0, 65535], "theefe too haue you not": [0, 65535], "too haue you not heard": [0, 65535], "haue you not heard men": [0, 65535], "you not heard men say": [0, 65535], "not heard men say that": [0, 65535], "heard men say that time": [0, 65535], "men say that time comes": [0, 65535], "say that time comes stealing": [0, 65535], "that time comes stealing on": [0, 65535], "time comes stealing on by": [0, 65535], "comes stealing on by night": [0, 65535], "stealing on by night and": [0, 65535], "on by night and day": [0, 65535], "by night and day if": [0, 65535], "night and day if i": [0, 65535], "and day if i be": [0, 65535], "day if i be in": [0, 65535], "if i be in debt": [0, 65535], "i be in debt and": [0, 65535], "be in debt and theft": [0, 65535], "in debt and theft and": [0, 65535], "debt and theft and a": [0, 65535], "and theft and a serieant": [0, 65535], "theft and a serieant in": [0, 65535], "and a serieant in the": [0, 65535], "a serieant in the way": [0, 65535], "serieant in the way hath": [0, 65535], "in the way hath he": [0, 65535], "the way hath he not": [0, 65535], "way hath he not reason": [0, 65535], "hath he not reason to": [0, 65535], "he not reason to turne": [0, 65535], "not reason to turne backe": [0, 65535], "reason to turne backe an": [0, 65535], "to turne backe an houre": [0, 65535], "turne backe an houre in": [0, 65535], "backe an houre in a": [0, 65535], "an houre in a day": [0, 65535], "houre in a day enter": [0, 65535], "in a day enter luciana": [0, 65535], "a day enter luciana adr": [0, 65535], "day enter luciana adr go": [0, 65535], "enter luciana adr go dromio": [0, 65535], "luciana adr go dromio there's": [0, 65535], "adr go dromio there's the": [0, 65535], "go dromio there's the monie": [0, 65535], "dromio there's the monie beare": [0, 65535], "there's the monie beare it": [0, 65535], "the monie beare it straight": [0, 65535], "monie beare it straight and": [0, 65535], "beare it straight and bring": [0, 65535], "it straight and bring thy": [0, 65535], "straight and bring thy master": [0, 65535], "and bring thy master home": [0, 65535], "bring thy master home imediately": [0, 65535], "thy master home imediately come": [0, 65535], "master home imediately come sister": [0, 65535], "home imediately come sister i": [0, 65535], "imediately come sister i am": [0, 65535], "come sister i am prest": [0, 65535], "sister i am prest downe": [0, 65535], "i am prest downe with": [0, 65535], "am prest downe with conceit": [0, 65535], "prest downe with conceit conceit": [0, 65535], "downe with conceit conceit my": [0, 65535], "with conceit conceit my comfort": [0, 65535], "conceit conceit my comfort and": [0, 65535], "conceit my comfort and my": [0, 65535], "my comfort and my iniurie": [0, 65535], "comfort and my iniurie exit": [0, 65535], "and my iniurie exit enter": [0, 65535], "my iniurie exit enter antipholus": [0, 65535], "iniurie exit enter antipholus siracusia": [0, 65535], "exit enter antipholus siracusia there's": [0, 65535], "enter antipholus siracusia there's not": [0, 65535], "antipholus siracusia there's not a": [0, 65535], "siracusia there's not a man": [0, 65535], "there's not a man i": [0, 65535], "not a man i meete": [0, 65535], "a man i meete but": [0, 65535], "man i meete but doth": [0, 65535], "i meete but doth salute": [0, 65535], "meete but doth salute me": [0, 65535], "but doth salute me as": [0, 65535], "doth salute me as if": [0, 65535], "salute me as if i": [0, 65535], "me as if i were": [0, 65535], "as if i were their": [0, 65535], "if i were their well": [0, 65535], "i were their well acquainted": [0, 65535], "were their well acquainted friend": [0, 65535], "their well acquainted friend and": [0, 65535], "well acquainted friend and euerie": [0, 65535], "acquainted friend and euerie one": [0, 65535], "friend and euerie one doth": [0, 65535], "and euerie one doth call": [0, 65535], "euerie one doth call me": [0, 65535], "one doth call me by": [0, 65535], "doth call me by my": [0, 65535], "call me by my name": [0, 65535], "me by my name some": [0, 65535], "by my name some tender": [0, 65535], "my name some tender monie": [0, 65535], "name some tender monie to": [0, 65535], "some tender monie to me": [0, 65535], "tender monie to me some": [0, 65535], "monie to me some inuite": [0, 65535], "to me some inuite me": [0, 65535], "me some inuite me some": [0, 65535], "some inuite me some other": [0, 65535], "inuite me some other giue": [0, 65535], "me some other giue me": [0, 65535], "some other giue me thankes": [0, 65535], "other giue me thankes for": [0, 65535], "giue me thankes for kindnesses": [0, 65535], "me thankes for kindnesses some": [0, 65535], "thankes for kindnesses some offer": [0, 65535], "for kindnesses some offer me": [0, 65535], "kindnesses some offer me commodities": [0, 65535], "some offer me commodities to": [0, 65535], "offer me commodities to buy": [0, 65535], "me commodities to buy euen": [0, 65535], "commodities to buy euen now": [0, 65535], "to buy euen now a": [0, 65535], "buy euen now a tailor": [0, 65535], "euen now a tailor cal'd": [0, 65535], "now a tailor cal'd me": [0, 65535], "a tailor cal'd me in": [0, 65535], "tailor cal'd me in his": [0, 65535], "cal'd me in his shop": [0, 65535], "me in his shop and": [0, 65535], "in his shop and show'd": [0, 65535], "his shop and show'd me": [0, 65535], "shop and show'd me silkes": [0, 65535], "and show'd me silkes that": [0, 65535], "show'd me silkes that he": [0, 65535], "me silkes that he had": [0, 65535], "silkes that he had bought": [0, 65535], "that he had bought for": [0, 65535], "he had bought for me": [0, 65535], "had bought for me and": [0, 65535], "bought for me and therewithall": [0, 65535], "for me and therewithall tooke": [0, 65535], "me and therewithall tooke measure": [0, 65535], "and therewithall tooke measure of": [0, 65535], "therewithall tooke measure of my": [0, 65535], "tooke measure of my body": [0, 65535], "measure of my body sure": [0, 65535], "of my body sure these": [0, 65535], "my body sure these are": [0, 65535], "body sure these are but": [0, 65535], "sure these are but imaginarie": [0, 65535], "these are but imaginarie wiles": [0, 65535], "are but imaginarie wiles and": [0, 65535], "but imaginarie wiles and lapland": [0, 65535], "imaginarie wiles and lapland sorcerers": [0, 65535], "wiles and lapland sorcerers inhabite": [0, 65535], "and lapland sorcerers inhabite here": [0, 65535], "lapland sorcerers inhabite here enter": [0, 65535], "sorcerers inhabite here enter dromio": [0, 65535], "inhabite here enter dromio sir": [0, 65535], "here enter dromio sir s": [0, 65535], "enter dromio sir s dro": [0, 65535], "dromio sir s dro master": [0, 65535], "sir s dro master here's": [0, 65535], "s dro master here's the": [0, 65535], "dro master here's the gold": [0, 65535], "master here's the gold you": [0, 65535], "here's the gold you sent": [0, 65535], "the gold you sent me": [0, 65535], "gold you sent me for": [0, 65535], "you sent me for what": [0, 65535], "sent me for what haue": [0, 65535], "me for what haue you": [0, 65535], "for what haue you got": [0, 65535], "what haue you got the": [0, 65535], "haue you got the picture": [0, 65535], "you got the picture of": [0, 65535], "got the picture of old": [0, 65535], "the picture of old adam": [0, 65535], "picture of old adam new": [0, 65535], "of old adam new apparel'd": [0, 65535], "old adam new apparel'd ant": [0, 65535], "adam new apparel'd ant what": [0, 65535], "new apparel'd ant what gold": [0, 65535], "apparel'd ant what gold is": [0, 65535], "ant what gold is this": [0, 65535], "what gold is this what": [0, 65535], "gold is this what adam": [0, 65535], "is this what adam do'st": [0, 65535], "this what adam do'st thou": [0, 65535], "what adam do'st thou meane": [0, 65535], "adam do'st thou meane s": [0, 65535], "do'st thou meane s dro": [0, 65535], "thou meane s dro not": [0, 65535], "meane s dro not that": [0, 65535], "s dro not that adam": [0, 65535], "dro not that adam that": [0, 65535], "not that adam that kept": [0, 65535], "that adam that kept the": [0, 65535], "adam that kept the paradise": [0, 65535], "that kept the paradise but": [0, 65535], "kept the paradise but that": [0, 65535], "the paradise but that adam": [0, 65535], "paradise but that adam that": [0, 65535], "but that adam that keepes": [0, 65535], "that adam that keepes the": [0, 65535], "adam that keepes the prison": [0, 65535], "that keepes the prison hee": [0, 65535], "keepes the prison hee that": [0, 65535], "the prison hee that goes": [0, 65535], "prison hee that goes in": [0, 65535], "hee that goes in the": [0, 65535], "that goes in the calues": [0, 65535], "goes in the calues skin": [0, 65535], "in the calues skin that": [0, 65535], "the calues skin that was": [0, 65535], "calues skin that was kil'd": [0, 65535], "skin that was kil'd for": [0, 65535], "that was kil'd for the": [0, 65535], "was kil'd for the prodigall": [0, 65535], "kil'd for the prodigall hee": [0, 65535], "for the prodigall hee that": [0, 65535], "the prodigall hee that came": [0, 65535], "prodigall hee that came behinde": [0, 65535], "hee that came behinde you": [0, 65535], "that came behinde you sir": [0, 65535], "came behinde you sir like": [0, 65535], "behinde you sir like an": [0, 65535], "you sir like an euill": [0, 65535], "sir like an euill angel": [0, 65535], "like an euill angel and": [0, 65535], "an euill angel and bid": [0, 65535], "euill angel and bid you": [0, 65535], "angel and bid you forsake": [0, 65535], "and bid you forsake your": [0, 65535], "bid you forsake your libertie": [0, 65535], "you forsake your libertie ant": [0, 65535], "forsake your libertie ant i": [0, 65535], "your libertie ant i vnderstand": [0, 65535], "libertie ant i vnderstand thee": [0, 65535], "ant i vnderstand thee not": [0, 65535], "i vnderstand thee not s": [0, 65535], "vnderstand thee not s dro": [0, 65535], "thee not s dro no": [0, 65535], "not s dro no why": [0, 65535], "s dro no why 'tis": [0, 65535], "dro no why 'tis a": [0, 65535], "no why 'tis a plaine": [0, 65535], "why 'tis a plaine case": [0, 65535], "'tis a plaine case he": [0, 65535], "a plaine case he that": [0, 65535], "plaine case he that went": [0, 65535], "case he that went like": [0, 65535], "he that went like a": [0, 65535], "that went like a base": [0, 65535], "went like a base viole": [0, 65535], "like a base viole in": [0, 65535], "a base viole in a": [0, 65535], "base viole in a case": [0, 65535], "viole in a case of": [0, 65535], "in a case of leather": [0, 65535], "a case of leather the": [0, 65535], "case of leather the man": [0, 65535], "of leather the man sir": [0, 65535], "leather the man sir that": [0, 65535], "the man sir that when": [0, 65535], "man sir that when gentlemen": [0, 65535], "sir that when gentlemen are": [0, 65535], "that when gentlemen are tired": [0, 65535], "when gentlemen are tired giues": [0, 65535], "gentlemen are tired giues them": [0, 65535], "are tired giues them a": [0, 65535], "tired giues them a sob": [0, 65535], "giues them a sob and": [0, 65535], "them a sob and rests": [0, 65535], "a sob and rests them": [0, 65535], "sob and rests them he": [0, 65535], "and rests them he sir": [0, 65535], "rests them he sir that": [0, 65535], "them he sir that takes": [0, 65535], "he sir that takes pittie": [0, 65535], "sir that takes pittie on": [0, 65535], "that takes pittie on decaied": [0, 65535], "takes pittie on decaied men": [0, 65535], "pittie on decaied men and": [0, 65535], "on decaied men and giues": [0, 65535], "decaied men and giues them": [0, 65535], "men and giues them suites": [0, 65535], "and giues them suites of": [0, 65535], "giues them suites of durance": [0, 65535], "them suites of durance he": [0, 65535], "suites of durance he that": [0, 65535], "of durance he that sets": [0, 65535], "durance he that sets vp": [0, 65535], "he that sets vp his": [0, 65535], "that sets vp his rest": [0, 65535], "sets vp his rest to": [0, 65535], "vp his rest to doe": [0, 65535], "his rest to doe more": [0, 65535], "rest to doe more exploits": [0, 65535], "to doe more exploits with": [0, 65535], "doe more exploits with his": [0, 65535], "more exploits with his mace": [0, 65535], "exploits with his mace then": [0, 65535], "with his mace then a": [0, 65535], "his mace then a moris": [0, 65535], "mace then a moris pike": [0, 65535], "then a moris pike ant": [0, 65535], "a moris pike ant what": [0, 65535], "moris pike ant what thou": [0, 65535], "pike ant what thou mean'st": [0, 65535], "ant what thou mean'st an": [0, 65535], "what thou mean'st an officer": [0, 65535], "thou mean'st an officer s": [0, 65535], "mean'st an officer s dro": [0, 65535], "an officer s dro i": [0, 65535], "officer s dro i sir": [0, 65535], "s dro i sir the": [0, 65535], "dro i sir the serieant": [0, 65535], "i sir the serieant of": [0, 65535], "sir the serieant of the": [0, 65535], "the serieant of the band": [0, 65535], "serieant of the band he": [0, 65535], "of the band he that": [0, 65535], "the band he that brings": [0, 65535], "band he that brings any": [0, 65535], "he that brings any man": [0, 65535], "that brings any man to": [0, 65535], "brings any man to answer": [0, 65535], "any man to answer it": [0, 65535], "man to answer it that": [0, 65535], "to answer it that breakes": [0, 65535], "answer it that breakes his": [0, 65535], "it that breakes his band": [0, 65535], "that breakes his band one": [0, 65535], "breakes his band one that": [0, 65535], "his band one that thinkes": [0, 65535], "band one that thinkes a": [0, 65535], "one that thinkes a man": [0, 65535], "that thinkes a man alwaies": [0, 65535], "thinkes a man alwaies going": [0, 65535], "a man alwaies going to": [0, 65535], "man alwaies going to bed": [0, 65535], "alwaies going to bed and": [0, 65535], "going to bed and saies": [0, 65535], "to bed and saies god": [0, 65535], "bed and saies god giue": [0, 65535], "and saies god giue you": [0, 65535], "saies god giue you good": [0, 65535], "god giue you good rest": [0, 65535], "giue you good rest ant": [0, 65535], "you good rest ant well": [0, 65535], "good rest ant well sir": [0, 65535], "rest ant well sir there": [0, 65535], "ant well sir there rest": [0, 65535], "well sir there rest in": [0, 65535], "sir there rest in your": [0, 65535], "there rest in your foolerie": [0, 65535], "rest in your foolerie is": [0, 65535], "in your foolerie is there": [0, 65535], "your foolerie is there any": [0, 65535], "foolerie is there any ships": [0, 65535], "is there any ships puts": [0, 65535], "there any ships puts forth": [0, 65535], "any ships puts forth to": [0, 65535], "ships puts forth to night": [0, 65535], "puts forth to night may": [0, 65535], "forth to night may we": [0, 65535], "to night may we be": [0, 65535], "night may we be gone": [0, 65535], "may we be gone s": [0, 65535], "we be gone s dro": [0, 65535], "be gone s dro why": [0, 65535], "gone s dro why sir": [0, 65535], "s dro why sir i": [0, 65535], "dro why sir i brought": [0, 65535], "why sir i brought you": [0, 65535], "sir i brought you word": [0, 65535], "i brought you word an": [0, 65535], "brought you word an houre": [0, 65535], "you word an houre since": [0, 65535], "word an houre since that": [0, 65535], "an houre since that the": [0, 65535], "houre since that the barke": [0, 65535], "since that the barke expedition": [0, 65535], "that the barke expedition put": [0, 65535], "the barke expedition put forth": [0, 65535], "barke expedition put forth to": [0, 65535], "expedition put forth to night": [0, 65535], "put forth to night and": [0, 65535], "forth to night and then": [0, 65535], "to night and then were": [0, 65535], "night and then were you": [0, 65535], "and then were you hindred": [0, 65535], "then were you hindred by": [0, 65535], "were you hindred by the": [0, 65535], "you hindred by the serieant": [0, 65535], "hindred by the serieant to": [0, 65535], "by the serieant to tarry": [0, 65535], "the serieant to tarry for": [0, 65535], "serieant to tarry for the": [0, 65535], "to tarry for the hoy": [0, 65535], "tarry for the hoy delay": [0, 65535], "for the hoy delay here": [0, 65535], "the hoy delay here are": [0, 65535], "hoy delay here are the": [0, 65535], "delay here are the angels": [0, 65535], "here are the angels that": [0, 65535], "are the angels that you": [0, 65535], "the angels that you sent": [0, 65535], "angels that you sent for": [0, 65535], "that you sent for to": [0, 65535], "you sent for to deliuer": [0, 65535], "sent for to deliuer you": [0, 65535], "for to deliuer you ant": [0, 65535], "to deliuer you ant the": [0, 65535], "deliuer you ant the fellow": [0, 65535], "you ant the fellow is": [0, 65535], "ant the fellow is distract": [0, 65535], "the fellow is distract and": [0, 65535], "fellow is distract and so": [0, 65535], "is distract and so am": [0, 65535], "distract and so am i": [0, 65535], "and so am i and": [0, 65535], "so am i and here": [0, 65535], "am i and here we": [0, 65535], "i and here we wander": [0, 65535], "and here we wander in": [0, 65535], "here we wander in illusions": [0, 65535], "we wander in illusions some": [0, 65535], "wander in illusions some blessed": [0, 65535], "in illusions some blessed power": [0, 65535], "illusions some blessed power deliuer": [0, 65535], "some blessed power deliuer vs": [0, 65535], "blessed power deliuer vs from": [0, 65535], "power deliuer vs from hence": [0, 65535], "deliuer vs from hence enter": [0, 65535], "vs from hence enter a": [0, 65535], "from hence enter a curtizan": [0, 65535], "hence enter a curtizan cur": [0, 65535], "enter a curtizan cur well": [0, 65535], "a curtizan cur well met": [0, 65535], "curtizan cur well met well": [0, 65535], "cur well met well met": [0, 65535], "well met well met master": [0, 65535], "met well met master antipholus": [0, 65535], "well met master antipholus i": [0, 65535], "met master antipholus i see": [0, 65535], "master antipholus i see sir": [0, 65535], "antipholus i see sir you": [0, 65535], "i see sir you haue": [0, 65535], "see sir you haue found": [0, 65535], "sir you haue found the": [0, 65535], "you haue found the gold": [0, 65535], "haue found the gold smith": [0, 65535], "found the gold smith now": [0, 65535], "the gold smith now is": [0, 65535], "gold smith now is that": [0, 65535], "smith now is that the": [0, 65535], "now is that the chaine": [0, 65535], "is that the chaine you": [0, 65535], "that the chaine you promis'd": [0, 65535], "the chaine you promis'd me": [0, 65535], "chaine you promis'd me to": [0, 65535], "you promis'd me to day": [0, 65535], "promis'd me to day ant": [0, 65535], "me to day ant sathan": [0, 65535], "to day ant sathan auoide": [0, 65535], "day ant sathan auoide i": [0, 65535], "ant sathan auoide i charge": [0, 65535], "sathan auoide i charge thee": [0, 65535], "auoide i charge thee tempt": [0, 65535], "i charge thee tempt me": [0, 65535], "charge thee tempt me not": [0, 65535], "thee tempt me not s": [0, 65535], "tempt me not s dro": [0, 65535], "me not s dro master": [0, 65535], "not s dro master is": [0, 65535], "s dro master is this": [0, 65535], "dro master is this mistris": [0, 65535], "master is this mistris sathan": [0, 65535], "is this mistris sathan ant": [0, 65535], "this mistris sathan ant it": [0, 65535], "mistris sathan ant it is": [0, 65535], "sathan ant it is the": [0, 65535], "ant it is the diuell": [0, 65535], "it is the diuell s": [0, 65535], "is the diuell s dro": [0, 65535], "the diuell s dro nay": [0, 65535], "diuell s dro nay she": [0, 65535], "s dro nay she is": [0, 65535], "dro nay she is worse": [0, 65535], "nay she is worse she": [0, 65535], "she is worse she is": [0, 65535], "is worse she is the": [0, 65535], "worse she is the diuels": [0, 65535], "she is the diuels dam": [0, 65535], "is the diuels dam and": [0, 65535], "the diuels dam and here": [0, 65535], "diuels dam and here she": [0, 65535], "dam and here she comes": [0, 65535], "and here she comes in": [0, 65535], "here she comes in the": [0, 65535], "she comes in the habit": [0, 65535], "comes in the habit of": [0, 65535], "in the habit of a": [0, 65535], "the habit of a light": [0, 65535], "habit of a light wench": [0, 65535], "of a light wench and": [0, 65535], "a light wench and thereof": [0, 65535], "light wench and thereof comes": [0, 65535], "wench and thereof comes that": [0, 65535], "and thereof comes that the": [0, 65535], "thereof comes that the wenches": [0, 65535], "comes that the wenches say": [0, 65535], "that the wenches say god": [0, 65535], "the wenches say god dam": [0, 65535], "wenches say god dam me": [0, 65535], "say god dam me that's": [0, 65535], "god dam me that's as": [0, 65535], "dam me that's as much": [0, 65535], "me that's as much to": [0, 65535], "that's as much to say": [0, 65535], "as much to say god": [0, 65535], "much to say god make": [0, 65535], "to say god make me": [0, 65535], "say god make me a": [0, 65535], "god make me a light": [0, 65535], "make me a light wench": [0, 65535], "me a light wench it": [0, 65535], "a light wench it is": [0, 65535], "light wench it is written": [0, 65535], "wench it is written they": [0, 65535], "it is written they appeare": [0, 65535], "is written they appeare to": [0, 65535], "written they appeare to men": [0, 65535], "they appeare to men like": [0, 65535], "appeare to men like angels": [0, 65535], "to men like angels of": [0, 65535], "men like angels of light": [0, 65535], "like angels of light light": [0, 65535], "angels of light light is": [0, 65535], "of light light is an": [0, 65535], "light light is an effect": [0, 65535], "light is an effect of": [0, 65535], "is an effect of fire": [0, 65535], "an effect of fire and": [0, 65535], "effect of fire and fire": [0, 65535], "of fire and fire will": [0, 65535], "fire and fire will burne": [0, 65535], "and fire will burne ergo": [0, 65535], "fire will burne ergo light": [0, 65535], "will burne ergo light wenches": [0, 65535], "burne ergo light wenches will": [0, 65535], "ergo light wenches will burne": [0, 65535], "light wenches will burne come": [0, 65535], "wenches will burne come not": [0, 65535], "will burne come not neere": [0, 65535], "burne come not neere her": [0, 65535], "come not neere her cur": [0, 65535], "not neere her cur your": [0, 65535], "neere her cur your man": [0, 65535], "her cur your man and": [0, 65535], "cur your man and you": [0, 65535], "your man and you are": [0, 65535], "man and you are maruailous": [0, 65535], "and you are maruailous merrie": [0, 65535], "you are maruailous merrie sir": [0, 65535], "are maruailous merrie sir will": [0, 65535], "maruailous merrie sir will you": [0, 65535], "merrie sir will you goe": [0, 65535], "sir will you goe with": [0, 65535], "will you goe with me": [0, 65535], "you goe with me wee'll": [0, 65535], "goe with me wee'll mend": [0, 65535], "with me wee'll mend our": [0, 65535], "me wee'll mend our dinner": [0, 65535], "wee'll mend our dinner here": [0, 65535], "mend our dinner here s": [0, 65535], "our dinner here s dro": [0, 65535], "dinner here s dro master": [0, 65535], "here s dro master if": [0, 65535], "s dro master if do": [0, 65535], "dro master if do expect": [0, 65535], "master if do expect spoon": [0, 65535], "if do expect spoon meate": [0, 65535], "do expect spoon meate or": [0, 65535], "expect spoon meate or bespeake": [0, 65535], "spoon meate or bespeake a": [0, 65535], "meate or bespeake a long": [0, 65535], "or bespeake a long spoone": [0, 65535], "bespeake a long spoone ant": [0, 65535], "a long spoone ant why": [0, 65535], "long spoone ant why dromio": [0, 65535], "spoone ant why dromio s": [0, 65535], "ant why dromio s dro": [0, 65535], "why dromio s dro marrie": [0, 65535], "dromio s dro marrie he": [0, 65535], "s dro marrie he must": [0, 65535], "dro marrie he must haue": [0, 65535], "marrie he must haue a": [0, 65535], "he must haue a long": [0, 65535], "must haue a long spoone": [0, 65535], "haue a long spoone that": [0, 65535], "a long spoone that must": [0, 65535], "long spoone that must eate": [0, 65535], "spoone that must eate with": [0, 65535], "that must eate with the": [0, 65535], "must eate with the diuell": [0, 65535], "eate with the diuell ant": [0, 65535], "with the diuell ant auoid": [0, 65535], "the diuell ant auoid then": [0, 65535], "diuell ant auoid then fiend": [0, 65535], "ant auoid then fiend what": [0, 65535], "auoid then fiend what tel'st": [0, 65535], "then fiend what tel'st thou": [0, 65535], "fiend what tel'st thou me": [0, 65535], "what tel'st thou me of": [0, 65535], "tel'st thou me of supping": [0, 65535], "thou me of supping thou": [0, 65535], "me of supping thou art": [0, 65535], "of supping thou art as": [0, 65535], "supping thou art as you": [0, 65535], "thou art as you are": [0, 65535], "art as you are all": [0, 65535], "as you are all a": [0, 65535], "you are all a sorceresse": [0, 65535], "are all a sorceresse i": [0, 65535], "all a sorceresse i coniure": [0, 65535], "a sorceresse i coniure thee": [0, 65535], "sorceresse i coniure thee to": [0, 65535], "i coniure thee to leaue": [0, 65535], "coniure thee to leaue me": [0, 65535], "thee to leaue me and": [0, 65535], "to leaue me and be": [0, 65535], "leaue me and be gon": [0, 65535], "me and be gon cur": [0, 65535], "and be gon cur giue": [0, 65535], "be gon cur giue me": [0, 65535], "gon cur giue me the": [0, 65535], "cur giue me the ring": [0, 65535], "giue me the ring of": [0, 65535], "me the ring of mine": [0, 65535], "the ring of mine you": [0, 65535], "ring of mine you had": [0, 65535], "of mine you had at": [0, 65535], "mine you had at dinner": [0, 65535], "you had at dinner or": [0, 65535], "had at dinner or for": [0, 65535], "at dinner or for my": [0, 65535], "dinner or for my diamond": [0, 65535], "or for my diamond the": [0, 65535], "for my diamond the chaine": [0, 65535], "my diamond the chaine you": [0, 65535], "diamond the chaine you promis'd": [0, 65535], "the chaine you promis'd and": [0, 65535], "chaine you promis'd and ile": [0, 65535], "you promis'd and ile be": [0, 65535], "promis'd and ile be gone": [0, 65535], "and ile be gone sir": [0, 65535], "ile be gone sir and": [0, 65535], "be gone sir and not": [0, 65535], "gone sir and not trouble": [0, 65535], "sir and not trouble you": [0, 65535], "and not trouble you s": [0, 65535], "not trouble you s dro": [0, 65535], "trouble you s dro some": [0, 65535], "you s dro some diuels": [0, 65535], "s dro some diuels aske": [0, 65535], "dro some diuels aske but": [0, 65535], "some diuels aske but the": [0, 65535], "diuels aske but the parings": [0, 65535], "aske but the parings of": [0, 65535], "but the parings of ones": [0, 65535], "the parings of ones naile": [0, 65535], "parings of ones naile a": [0, 65535], "of ones naile a rush": [0, 65535], "ones naile a rush a": [0, 65535], "naile a rush a haire": [0, 65535], "a rush a haire a": [0, 65535], "rush a haire a drop": [0, 65535], "a haire a drop of": [0, 65535], "haire a drop of blood": [0, 65535], "a drop of blood a": [0, 65535], "drop of blood a pin": [0, 65535], "of blood a pin a": [0, 65535], "blood a pin a nut": [0, 65535], "a pin a nut a": [0, 65535], "pin a nut a cherrie": [0, 65535], "a nut a cherrie stone": [0, 65535], "nut a cherrie stone but": [0, 65535], "a cherrie stone but she": [0, 65535], "cherrie stone but she more": [0, 65535], "stone but she more couetous": [0, 65535], "but she more couetous wold": [0, 65535], "she more couetous wold haue": [0, 65535], "more couetous wold haue a": [0, 65535], "couetous wold haue a chaine": [0, 65535], "wold haue a chaine master": [0, 65535], "haue a chaine master be": [0, 65535], "a chaine master be wise": [0, 65535], "chaine master be wise and": [0, 65535], "master be wise and if": [0, 65535], "be wise and if you": [0, 65535], "wise and if you giue": [0, 65535], "and if you giue it": [0, 65535], "if you giue it her": [0, 65535], "you giue it her the": [0, 65535], "giue it her the diuell": [0, 65535], "it her the diuell will": [0, 65535], "her the diuell will shake": [0, 65535], "the diuell will shake her": [0, 65535], "diuell will shake her chaine": [0, 65535], "will shake her chaine and": [0, 65535], "shake her chaine and fright": [0, 65535], "her chaine and fright vs": [0, 65535], "chaine and fright vs with": [0, 65535], "and fright vs with it": [0, 65535], "fright vs with it cur": [0, 65535], "vs with it cur i": [0, 65535], "with it cur i pray": [0, 65535], "it cur i pray you": [0, 65535], "cur i pray you sir": [0, 65535], "i pray you sir my": [0, 65535], "pray you sir my ring": [0, 65535], "you sir my ring or": [0, 65535], "sir my ring or else": [0, 65535], "my ring or else the": [0, 65535], "ring or else the chaine": [0, 65535], "or else the chaine i": [0, 65535], "else the chaine i hope": [0, 65535], "the chaine i hope you": [0, 65535], "chaine i hope you do": [0, 65535], "i hope you do not": [0, 65535], "hope you do not meane": [0, 65535], "you do not meane to": [0, 65535], "do not meane to cheate": [0, 65535], "not meane to cheate me": [0, 65535], "meane to cheate me so": [0, 65535], "to cheate me so ant": [0, 65535], "cheate me so ant auant": [0, 65535], "me so ant auant thou": [0, 65535], "so ant auant thou witch": [0, 65535], "ant auant thou witch come": [0, 65535], "auant thou witch come dromio": [0, 65535], "thou witch come dromio let": [0, 65535], "witch come dromio let vs": [0, 65535], "come dromio let vs go": [0, 65535], "dromio let vs go s": [0, 65535], "let vs go s dro": [0, 65535], "vs go s dro flie": [0, 65535], "go s dro flie pride": [0, 65535], "s dro flie pride saies": [0, 65535], "dro flie pride saies the": [0, 65535], "flie pride saies the pea": [0, 65535], "pride saies the pea cocke": [0, 65535], "saies the pea cocke mistris": [0, 65535], "the pea cocke mistris that": [0, 65535], "pea cocke mistris that you": [0, 65535], "cocke mistris that you know": [0, 65535], "mistris that you know exit": [0, 65535], "that you know exit cur": [0, 65535], "you know exit cur now": [0, 65535], "know exit cur now out": [0, 65535], "exit cur now out of": [0, 65535], "cur now out of doubt": [0, 65535], "now out of doubt antipholus": [0, 65535], "out of doubt antipholus is": [0, 65535], "of doubt antipholus is mad": [0, 65535], "doubt antipholus is mad else": [0, 65535], "antipholus is mad else would": [0, 65535], "is mad else would he": [0, 65535], "mad else would he neuer": [0, 65535], "else would he neuer so": [0, 65535], "would he neuer so demeane": [0, 65535], "he neuer so demeane himselfe": [0, 65535], "neuer so demeane himselfe a": [0, 65535], "so demeane himselfe a ring": [0, 65535], "demeane himselfe a ring he": [0, 65535], "himselfe a ring he hath": [0, 65535], "a ring he hath of": [0, 65535], "ring he hath of mine": [0, 65535], "he hath of mine worth": [0, 65535], "hath of mine worth fortie": [0, 65535], "of mine worth fortie duckets": [0, 65535], "mine worth fortie duckets and": [0, 65535], "worth fortie duckets and for": [0, 65535], "fortie duckets and for the": [0, 65535], "duckets and for the same": [0, 65535], "and for the same he": [0, 65535], "for the same he promis'd": [0, 65535], "the same he promis'd me": [0, 65535], "same he promis'd me a": [0, 65535], "promis'd me a chaine both": [0, 65535], "me a chaine both one": [0, 65535], "a chaine both one and": [0, 65535], "chaine both one and other": [0, 65535], "both one and other he": [0, 65535], "one and other he denies": [0, 65535], "and other he denies me": [0, 65535], "other he denies me now": [0, 65535], "he denies me now the": [0, 65535], "denies me now the reason": [0, 65535], "me now the reason that": [0, 65535], "now the reason that i": [0, 65535], "the reason that i gather": [0, 65535], "reason that i gather he": [0, 65535], "that i gather he is": [0, 65535], "i gather he is mad": [0, 65535], "gather he is mad besides": [0, 65535], "he is mad besides this": [0, 65535], "is mad besides this present": [0, 65535], "mad besides this present instance": [0, 65535], "besides this present instance of": [0, 65535], "this present instance of his": [0, 65535], "present instance of his rage": [0, 65535], "instance of his rage is": [0, 65535], "of his rage is a": [0, 65535], "his rage is a mad": [0, 65535], "rage is a mad tale": [0, 65535], "is a mad tale he": [0, 65535], "a mad tale he told": [0, 65535], "mad tale he told to": [0, 65535], "tale he told to day": [0, 65535], "he told to day at": [0, 65535], "told to day at dinner": [0, 65535], "to day at dinner of": [0, 65535], "day at dinner of his": [0, 65535], "at dinner of his owne": [0, 65535], "dinner of his owne doores": [0, 65535], "of his owne doores being": [0, 65535], "his owne doores being shut": [0, 65535], "owne doores being shut against": [0, 65535], "doores being shut against his": [0, 65535], "being shut against his entrance": [0, 65535], "shut against his entrance belike": [0, 65535], "against his entrance belike his": [0, 65535], "his entrance belike his wife": [0, 65535], "entrance belike his wife acquainted": [0, 65535], "belike his wife acquainted with": [0, 65535], "his wife acquainted with his": [0, 65535], "wife acquainted with his fits": [0, 65535], "acquainted with his fits on": [0, 65535], "with his fits on purpose": [0, 65535], "his fits on purpose shut": [0, 65535], "fits on purpose shut the": [0, 65535], "on purpose shut the doores": [0, 65535], "purpose shut the doores against": [0, 65535], "shut the doores against his": [0, 65535], "the doores against his way": [0, 65535], "doores against his way my": [0, 65535], "against his way my way": [0, 65535], "his way my way is": [0, 65535], "way my way is now": [0, 65535], "my way is now to": [0, 65535], "way is now to hie": [0, 65535], "is now to hie home": [0, 65535], "now to hie home to": [0, 65535], "to hie home to his": [0, 65535], "hie home to his house": [0, 65535], "home to his house and": [0, 65535], "to his house and tell": [0, 65535], "his house and tell his": [0, 65535], "house and tell his wife": [0, 65535], "and tell his wife that": [0, 65535], "tell his wife that being": [0, 65535], "his wife that being lunaticke": [0, 65535], "wife that being lunaticke he": [0, 65535], "that being lunaticke he rush'd": [0, 65535], "being lunaticke he rush'd into": [0, 65535], "lunaticke he rush'd into my": [0, 65535], "he rush'd into my house": [0, 65535], "rush'd into my house and": [0, 65535], "into my house and tooke": [0, 65535], "my house and tooke perforce": [0, 65535], "house and tooke perforce my": [0, 65535], "and tooke perforce my ring": [0, 65535], "tooke perforce my ring away": [0, 65535], "perforce my ring away this": [0, 65535], "my ring away this course": [0, 65535], "ring away this course i": [0, 65535], "away this course i fittest": [0, 65535], "this course i fittest choose": [0, 65535], "course i fittest choose for": [0, 65535], "i fittest choose for fortie": [0, 65535], "fittest choose for fortie duckets": [0, 65535], "choose for fortie duckets is": [0, 65535], "for fortie duckets is too": [0, 65535], "fortie duckets is too much": [0, 65535], "duckets is too much to": [0, 65535], "is too much to loose": [0, 65535], "too much to loose enter": [0, 65535], "much to loose enter antipholus": [0, 65535], "to loose enter antipholus ephes": [0, 65535], "loose enter antipholus ephes with": [0, 65535], "enter antipholus ephes with a": [0, 65535], "antipholus ephes with a iailor": [0, 65535], "ephes with a iailor an": [0, 65535], "with a iailor an feare": [0, 65535], "a iailor an feare me": [0, 65535], "iailor an feare me not": [0, 65535], "an feare me not man": [0, 65535], "feare me not man i": [0, 65535], "me not man i will": [0, 65535], "not man i will not": [0, 65535], "man i will not breake": [0, 65535], "i will not breake away": [0, 65535], "will not breake away ile": [0, 65535], "not breake away ile giue": [0, 65535], "breake away ile giue thee": [0, 65535], "away ile giue thee ere": [0, 65535], "ile giue thee ere i": [0, 65535], "giue thee ere i leaue": [0, 65535], "thee ere i leaue thee": [0, 65535], "ere i leaue thee so": [0, 65535], "i leaue thee so much": [0, 65535], "leaue thee so much money": [0, 65535], "thee so much money to": [0, 65535], "so much money to warrant": [0, 65535], "much money to warrant thee": [0, 65535], "money to warrant thee as": [0, 65535], "to warrant thee as i": [0, 65535], "warrant thee as i am": [0, 65535], "thee as i am rested": [0, 65535], "as i am rested for": [0, 65535], "i am rested for my": [0, 65535], "am rested for my wife": [0, 65535], "rested for my wife is": [0, 65535], "for my wife is in": [0, 65535], "my wife is in a": [0, 65535], "wife is in a wayward": [0, 65535], "is in a wayward moode": [0, 65535], "in a wayward moode to": [0, 65535], "a wayward moode to day": [0, 65535], "wayward moode to day and": [0, 65535], "moode to day and will": [0, 65535], "to day and will not": [0, 65535], "day and will not lightly": [0, 65535], "and will not lightly trust": [0, 65535], "will not lightly trust the": [0, 65535], "not lightly trust the messenger": [0, 65535], "lightly trust the messenger that": [0, 65535], "trust the messenger that i": [0, 65535], "the messenger that i should": [0, 65535], "messenger that i should be": [0, 65535], "that i should be attach'd": [0, 65535], "i should be attach'd in": [0, 65535], "should be attach'd in ephesus": [0, 65535], "be attach'd in ephesus i": [0, 65535], "attach'd in ephesus i tell": [0, 65535], "in ephesus i tell you": [0, 65535], "ephesus i tell you 'twill": [0, 65535], "i tell you 'twill sound": [0, 65535], "tell you 'twill sound harshly": [0, 65535], "you 'twill sound harshly in": [0, 65535], "'twill sound harshly in her": [0, 65535], "sound harshly in her eares": [0, 65535], "harshly in her eares enter": [0, 65535], "in her eares enter dromio": [0, 65535], "her eares enter dromio eph": [0, 65535], "eares enter dromio eph with": [0, 65535], "enter dromio eph with a": [0, 65535], "dromio eph with a ropes": [0, 65535], "eph with a ropes end": [0, 65535], "with a ropes end heere": [0, 65535], "a ropes end heere comes": [0, 65535], "ropes end heere comes my": [0, 65535], "end heere comes my man": [0, 65535], "heere comes my man i": [0, 65535], "comes my man i thinke": [0, 65535], "my man i thinke he": [0, 65535], "man i thinke he brings": [0, 65535], "i thinke he brings the": [0, 65535], "thinke he brings the monie": [0, 65535], "he brings the monie how": [0, 65535], "brings the monie how now": [0, 65535], "the monie how now sir": [0, 65535], "monie how now sir haue": [0, 65535], "how now sir haue you": [0, 65535], "now sir haue you that": [0, 65535], "sir haue you that i": [0, 65535], "haue you that i sent": [0, 65535], "you that i sent you": [0, 65535], "that i sent you for": [0, 65535], "i sent you for e": [0, 65535], "sent you for e dro": [0, 65535], "you for e dro here's": [0, 65535], "for e dro here's that": [0, 65535], "e dro here's that i": [0, 65535], "dro here's that i warrant": [0, 65535], "here's that i warrant you": [0, 65535], "that i warrant you will": [0, 65535], "i warrant you will pay": [0, 65535], "warrant you will pay them": [0, 65535], "you will pay them all": [0, 65535], "will pay them all anti": [0, 65535], "pay them all anti but": [0, 65535], "them all anti but where's": [0, 65535], "all anti but where's the": [0, 65535], "anti but where's the money": [0, 65535], "but where's the money e": [0, 65535], "where's the money e dro": [0, 65535], "the money e dro why": [0, 65535], "money e dro why sir": [0, 65535], "e dro why sir i": [0, 65535], "dro why sir i gaue": [0, 65535], "why sir i gaue the": [0, 65535], "sir i gaue the monie": [0, 65535], "i gaue the monie for": [0, 65535], "gaue the monie for the": [0, 65535], "the monie for the rope": [0, 65535], "monie for the rope ant": [0, 65535], "for the rope ant fiue": [0, 65535], "the rope ant fiue hundred": [0, 65535], "rope ant fiue hundred duckets": [0, 65535], "ant fiue hundred duckets villaine": [0, 65535], "fiue hundred duckets villaine for": [0, 65535], "hundred duckets villaine for a": [0, 65535], "duckets villaine for a rope": [0, 65535], "villaine for a rope e": [0, 65535], "for a rope e dro": [0, 65535], "a rope e dro ile": [0, 65535], "rope e dro ile serue": [0, 65535], "e dro ile serue you": [0, 65535], "dro ile serue you sir": [0, 65535], "ile serue you sir fiue": [0, 65535], "serue you sir fiue hundred": [0, 65535], "you sir fiue hundred at": [0, 65535], "sir fiue hundred at the": [0, 65535], "fiue hundred at the rate": [0, 65535], "hundred at the rate ant": [0, 65535], "at the rate ant to": [0, 65535], "the rate ant to what": [0, 65535], "rate ant to what end": [0, 65535], "ant to what end did": [0, 65535], "to what end did i": [0, 65535], "what end did i bid": [0, 65535], "end did i bid thee": [0, 65535], "did i bid thee hie": [0, 65535], "i bid thee hie thee": [0, 65535], "bid thee hie thee home": [0, 65535], "thee hie thee home e": [0, 65535], "hie thee home e dro": [0, 65535], "thee home e dro to": [0, 65535], "home e dro to a": [0, 65535], "e dro to a ropes": [0, 65535], "dro to a ropes end": [0, 65535], "to a ropes end sir": [0, 65535], "a ropes end sir and": [0, 65535], "ropes end sir and to": [0, 65535], "end sir and to that": [0, 65535], "sir and to that end": [0, 65535], "and to that end am": [0, 65535], "to that end am i": [0, 65535], "that end am i re": [0, 65535], "end am i re turn'd": [0, 65535], "am i re turn'd ant": [0, 65535], "i re turn'd ant and": [0, 65535], "re turn'd ant and to": [0, 65535], "turn'd ant and to that": [0, 65535], "ant and to that end": [0, 65535], "and to that end sir": [0, 65535], "to that end sir i": [0, 65535], "that end sir i will": [0, 65535], "end sir i will welcome": [0, 65535], "sir i will welcome you": [0, 65535], "i will welcome you offi": [0, 65535], "will welcome you offi good": [0, 65535], "welcome you offi good sir": [0, 65535], "you offi good sir be": [0, 65535], "offi good sir be patient": [0, 65535], "good sir be patient e": [0, 65535], "sir be patient e dro": [0, 65535], "be patient e dro nay": [0, 65535], "patient e dro nay 'tis": [0, 65535], "e dro nay 'tis for": [0, 65535], "dro nay 'tis for me": [0, 65535], "nay 'tis for me to": [0, 65535], "'tis for me to be": [0, 65535], "for me to be patient": [0, 65535], "me to be patient i": [0, 65535], "to be patient i am": [0, 65535], "be patient i am in": [0, 65535], "patient i am in aduersitie": [0, 65535], "i am in aduersitie offi": [0, 65535], "am in aduersitie offi good": [0, 65535], "in aduersitie offi good now": [0, 65535], "aduersitie offi good now hold": [0, 65535], "offi good now hold thy": [0, 65535], "good now hold thy tongue": [0, 65535], "now hold thy tongue e": [0, 65535], "hold thy tongue e dro": [0, 65535], "thy tongue e dro nay": [0, 65535], "tongue e dro nay rather": [0, 65535], "e dro nay rather perswade": [0, 65535], "dro nay rather perswade him": [0, 65535], "nay rather perswade him to": [0, 65535], "rather perswade him to hold": [0, 65535], "perswade him to hold his": [0, 65535], "him to hold his hands": [0, 65535], "to hold his hands anti": [0, 65535], "hold his hands anti thou": [0, 65535], "his hands anti thou whoreson": [0, 65535], "hands anti thou whoreson senselesse": [0, 65535], "anti thou whoreson senselesse villaine": [0, 65535], "thou whoreson senselesse villaine e": [0, 65535], "whoreson senselesse villaine e dro": [0, 65535], "senselesse villaine e dro i": [0, 65535], "villaine e dro i would": [0, 65535], "e dro i would i": [0, 65535], "dro i would i were": [0, 65535], "i would i were senselesse": [0, 65535], "would i were senselesse sir": [0, 65535], "i were senselesse sir that": [0, 65535], "were senselesse sir that i": [0, 65535], "senselesse sir that i might": [0, 65535], "sir that i might not": [0, 65535], "that i might not feele": [0, 65535], "i might not feele your": [0, 65535], "might not feele your blowes": [0, 65535], "not feele your blowes anti": [0, 65535], "feele your blowes anti thou": [0, 65535], "your blowes anti thou art": [0, 65535], "blowes anti thou art sensible": [0, 65535], "anti thou art sensible in": [0, 65535], "thou art sensible in nothing": [0, 65535], "art sensible in nothing but": [0, 65535], "sensible in nothing but blowes": [0, 65535], "in nothing but blowes and": [0, 65535], "nothing but blowes and so": [0, 65535], "but blowes and so is": [0, 65535], "blowes and so is an": [0, 65535], "and so is an asse": [0, 65535], "so is an asse e": [0, 65535], "is an asse e dro": [0, 65535], "an asse e dro i": [0, 65535], "asse e dro i am": [0, 65535], "e dro i am an": [0, 65535], "i am an asse indeede": [0, 65535], "am an asse indeede you": [0, 65535], "an asse indeede you may": [0, 65535], "asse indeede you may prooue": [0, 65535], "indeede you may prooue it": [0, 65535], "you may prooue it by": [0, 65535], "may prooue it by my": [0, 65535], "prooue it by my long": [0, 65535], "it by my long eares": [0, 65535], "by my long eares i": [0, 65535], "my long eares i haue": [0, 65535], "long eares i haue serued": [0, 65535], "eares i haue serued him": [0, 65535], "i haue serued him from": [0, 65535], "haue serued him from the": [0, 65535], "serued him from the houre": [0, 65535], "him from the houre of": [0, 65535], "from the houre of my": [0, 65535], "the houre of my natiuitie": [0, 65535], "houre of my natiuitie to": [0, 65535], "of my natiuitie to this": [0, 65535], "my natiuitie to this instant": [0, 65535], "natiuitie to this instant and": [0, 65535], "to this instant and haue": [0, 65535], "this instant and haue nothing": [0, 65535], "instant and haue nothing at": [0, 65535], "and haue nothing at his": [0, 65535], "haue nothing at his hands": [0, 65535], "nothing at his hands for": [0, 65535], "at his hands for my": [0, 65535], "his hands for my seruice": [0, 65535], "hands for my seruice but": [0, 65535], "for my seruice but blowes": [0, 65535], "my seruice but blowes when": [0, 65535], "seruice but blowes when i": [0, 65535], "but blowes when i am": [0, 65535], "blowes when i am cold": [0, 65535], "when i am cold he": [0, 65535], "i am cold he heates": [0, 65535], "am cold he heates me": [0, 65535], "cold he heates me with": [0, 65535], "he heates me with beating": [0, 65535], "heates me with beating when": [0, 65535], "me with beating when i": [0, 65535], "with beating when i am": [0, 65535], "beating when i am warme": [0, 65535], "when i am warme he": [0, 65535], "i am warme he cooles": [0, 65535], "am warme he cooles me": [0, 65535], "warme he cooles me with": [0, 65535], "he cooles me with beating": [0, 65535], "cooles me with beating i": [0, 65535], "me with beating i am": [0, 65535], "with beating i am wak'd": [0, 65535], "beating i am wak'd with": [0, 65535], "i am wak'd with it": [0, 65535], "am wak'd with it when": [0, 65535], "wak'd with it when i": [0, 65535], "with it when i sleepe": [0, 65535], "it when i sleepe rais'd": [0, 65535], "when i sleepe rais'd with": [0, 65535], "i sleepe rais'd with it": [0, 65535], "sleepe rais'd with it when": [0, 65535], "rais'd with it when i": [0, 65535], "with it when i sit": [0, 65535], "it when i sit driuen": [0, 65535], "when i sit driuen out": [0, 65535], "i sit driuen out of": [0, 65535], "sit driuen out of doores": [0, 65535], "driuen out of doores with": [0, 65535], "out of doores with it": [0, 65535], "of doores with it when": [0, 65535], "doores with it when i": [0, 65535], "with it when i goe": [0, 65535], "it when i goe from": [0, 65535], "when i goe from home": [0, 65535], "i goe from home welcom'd": [0, 65535], "goe from home welcom'd home": [0, 65535], "from home welcom'd home with": [0, 65535], "home welcom'd home with it": [0, 65535], "welcom'd home with it when": [0, 65535], "home with it when i": [0, 65535], "with it when i returne": [0, 65535], "it when i returne nay": [0, 65535], "when i returne nay i": [0, 65535], "i returne nay i beare": [0, 65535], "returne nay i beare it": [0, 65535], "nay i beare it on": [0, 65535], "i beare it on my": [0, 65535], "beare it on my shoulders": [0, 65535], "it on my shoulders as": [0, 65535], "on my shoulders as a": [0, 65535], "my shoulders as a begger": [0, 65535], "shoulders as a begger woont": [0, 65535], "as a begger woont her": [0, 65535], "a begger woont her brat": [0, 65535], "begger woont her brat and": [0, 65535], "woont her brat and i": [0, 65535], "her brat and i thinke": [0, 65535], "brat and i thinke when": [0, 65535], "and i thinke when he": [0, 65535], "i thinke when he hath": [0, 65535], "thinke when he hath lam'd": [0, 65535], "when he hath lam'd me": [0, 65535], "he hath lam'd me i": [0, 65535], "hath lam'd me i shall": [0, 65535], "lam'd me i shall begge": [0, 65535], "me i shall begge with": [0, 65535], "i shall begge with it": [0, 65535], "shall begge with it from": [0, 65535], "begge with it from doore": [0, 65535], "with it from doore to": [0, 65535], "it from doore to doore": [0, 65535], "from doore to doore enter": [0, 65535], "doore to doore enter adriana": [0, 65535], "to doore enter adriana luciana": [0, 65535], "doore enter adriana luciana courtizan": [0, 65535], "enter adriana luciana courtizan and": [0, 65535], "adriana luciana courtizan and a": [0, 65535], "luciana courtizan and a schoolemaster": [0, 65535], "courtizan and a schoolemaster call'd": [0, 65535], "and a schoolemaster call'd pinch": [0, 65535], "a schoolemaster call'd pinch ant": [0, 65535], "schoolemaster call'd pinch ant come": [0, 65535], "call'd pinch ant come goe": [0, 65535], "pinch ant come goe along": [0, 65535], "ant come goe along my": [0, 65535], "come goe along my wife": [0, 65535], "goe along my wife is": [0, 65535], "along my wife is comming": [0, 65535], "my wife is comming yonder": [0, 65535], "wife is comming yonder e": [0, 65535], "is comming yonder e dro": [0, 65535], "comming yonder e dro mistris": [0, 65535], "yonder e dro mistris respice": [0, 65535], "e dro mistris respice finem": [0, 65535], "dro mistris respice finem respect": [0, 65535], "mistris respice finem respect your": [0, 65535], "respice finem respect your end": [0, 65535], "finem respect your end or": [0, 65535], "respect your end or rather": [0, 65535], "your end or rather the": [0, 65535], "end or rather the prophesie": [0, 65535], "or rather the prophesie like": [0, 65535], "rather the prophesie like the": [0, 65535], "the prophesie like the parrat": [0, 65535], "prophesie like the parrat beware": [0, 65535], "like the parrat beware the": [0, 65535], "the parrat beware the ropes": [0, 65535], "parrat beware the ropes end": [0, 65535], "beware the ropes end anti": [0, 65535], "the ropes end anti wilt": [0, 65535], "ropes end anti wilt thou": [0, 65535], "end anti wilt thou still": [0, 65535], "anti wilt thou still talke": [0, 65535], "wilt thou still talke beats": [0, 65535], "thou still talke beats dro": [0, 65535], "still talke beats dro curt": [0, 65535], "talke beats dro curt how": [0, 65535], "beats dro curt how say": [0, 65535], "dro curt how say you": [0, 65535], "curt how say you now": [0, 65535], "how say you now is": [0, 65535], "say you now is not": [0, 65535], "you now is not your": [0, 65535], "now is not your husband": [0, 65535], "is not your husband mad": [0, 65535], "not your husband mad adri": [0, 65535], "your husband mad adri his": [0, 65535], "husband mad adri his inciuility": [0, 65535], "mad adri his inciuility confirmes": [0, 65535], "adri his inciuility confirmes no": [0, 65535], "his inciuility confirmes no lesse": [0, 65535], "inciuility confirmes no lesse good": [0, 65535], "confirmes no lesse good doctor": [0, 65535], "no lesse good doctor pinch": [0, 65535], "lesse good doctor pinch you": [0, 65535], "good doctor pinch you are": [0, 65535], "doctor pinch you are a": [0, 65535], "pinch you are a coniurer": [0, 65535], "you are a coniurer establish": [0, 65535], "are a coniurer establish him": [0, 65535], "a coniurer establish him in": [0, 65535], "coniurer establish him in his": [0, 65535], "establish him in his true": [0, 65535], "him in his true sence": [0, 65535], "in his true sence againe": [0, 65535], "his true sence againe and": [0, 65535], "true sence againe and i": [0, 65535], "sence againe and i will": [0, 65535], "againe and i will please": [0, 65535], "and i will please you": [0, 65535], "i will please you what": [0, 65535], "will please you what you": [0, 65535], "please you what you will": [0, 65535], "you what you will demand": [0, 65535], "what you will demand luc": [0, 65535], "you will demand luc alas": [0, 65535], "will demand luc alas how": [0, 65535], "demand luc alas how fiery": [0, 65535], "luc alas how fiery and": [0, 65535], "alas how fiery and how": [0, 65535], "how fiery and how sharpe": [0, 65535], "fiery and how sharpe he": [0, 65535], "and how sharpe he lookes": [0, 65535], "how sharpe he lookes cur": [0, 65535], "sharpe he lookes cur marke": [0, 65535], "he lookes cur marke how": [0, 65535], "lookes cur marke how he": [0, 65535], "cur marke how he trembles": [0, 65535], "marke how he trembles in": [0, 65535], "how he trembles in his": [0, 65535], "he trembles in his extasie": [0, 65535], "trembles in his extasie pinch": [0, 65535], "in his extasie pinch giue": [0, 65535], "his extasie pinch giue me": [0, 65535], "extasie pinch giue me your": [0, 65535], "pinch giue me your hand": [0, 65535], "giue me your hand and": [0, 65535], "me your hand and let": [0, 65535], "your hand and let mee": [0, 65535], "hand and let mee feele": [0, 65535], "and let mee feele your": [0, 65535], "let mee feele your pulse": [0, 65535], "mee feele your pulse ant": [0, 65535], "feele your pulse ant there": [0, 65535], "your pulse ant there is": [0, 65535], "pulse ant there is my": [0, 65535], "ant there is my hand": [0, 65535], "there is my hand and": [0, 65535], "is my hand and let": [0, 65535], "my hand and let it": [0, 65535], "hand and let it feele": [0, 65535], "and let it feele your": [0, 65535], "let it feele your eare": [0, 65535], "it feele your eare pinch": [0, 65535], "feele your eare pinch i": [0, 65535], "your eare pinch i charge": [0, 65535], "eare pinch i charge thee": [0, 65535], "pinch i charge thee sathan": [0, 65535], "i charge thee sathan hous'd": [0, 65535], "charge thee sathan hous'd within": [0, 65535], "thee sathan hous'd within this": [0, 65535], "sathan hous'd within this man": [0, 65535], "hous'd within this man to": [0, 65535], "within this man to yeeld": [0, 65535], "this man to yeeld possession": [0, 65535], "man to yeeld possession to": [0, 65535], "to yeeld possession to my": [0, 65535], "yeeld possession to my holie": [0, 65535], "possession to my holie praiers": [0, 65535], "to my holie praiers and": [0, 65535], "my holie praiers and to": [0, 65535], "holie praiers and to thy": [0, 65535], "praiers and to thy state": [0, 65535], "and to thy state of": [0, 65535], "to thy state of darknesse": [0, 65535], "thy state of darknesse hie": [0, 65535], "state of darknesse hie thee": [0, 65535], "of darknesse hie thee straight": [0, 65535], "darknesse hie thee straight i": [0, 65535], "hie thee straight i coniure": [0, 65535], "thee straight i coniure thee": [0, 65535], "straight i coniure thee by": [0, 65535], "i coniure thee by all": [0, 65535], "coniure thee by all the": [0, 65535], "thee by all the saints": [0, 65535], "by all the saints in": [0, 65535], "all the saints in heauen": [0, 65535], "the saints in heauen anti": [0, 65535], "saints in heauen anti peace": [0, 65535], "in heauen anti peace doting": [0, 65535], "heauen anti peace doting wizard": [0, 65535], "anti peace doting wizard peace": [0, 65535], "peace doting wizard peace i": [0, 65535], "doting wizard peace i am": [0, 65535], "wizard peace i am not": [0, 65535], "peace i am not mad": [0, 65535], "i am not mad adr": [0, 65535], "am not mad adr oh": [0, 65535], "not mad adr oh that": [0, 65535], "mad adr oh that thou": [0, 65535], "adr oh that thou wer't": [0, 65535], "oh that thou wer't not": [0, 65535], "that thou wer't not poore": [0, 65535], "thou wer't not poore distressed": [0, 65535], "wer't not poore distressed soule": [0, 65535], "not poore distressed soule anti": [0, 65535], "poore distressed soule anti you": [0, 65535], "distressed soule anti you minion": [0, 65535], "soule anti you minion you": [0, 65535], "anti you minion you are": [0, 65535], "you minion you are these": [0, 65535], "minion you are these your": [0, 65535], "you are these your customers": [0, 65535], "are these your customers did": [0, 65535], "these your customers did this": [0, 65535], "your customers did this companion": [0, 65535], "customers did this companion with": [0, 65535], "did this companion with the": [0, 65535], "this companion with the saffron": [0, 65535], "companion with the saffron face": [0, 65535], "with the saffron face reuell": [0, 65535], "the saffron face reuell and": [0, 65535], "saffron face reuell and feast": [0, 65535], "face reuell and feast it": [0, 65535], "reuell and feast it at": [0, 65535], "and feast it at my": [0, 65535], "feast it at my house": [0, 65535], "it at my house to": [0, 65535], "at my house to day": [0, 65535], "my house to day whil'st": [0, 65535], "house to day whil'st vpon": [0, 65535], "to day whil'st vpon me": [0, 65535], "day whil'st vpon me the": [0, 65535], "whil'st vpon me the guiltie": [0, 65535], "vpon me the guiltie doores": [0, 65535], "me the guiltie doores were": [0, 65535], "the guiltie doores were shut": [0, 65535], "guiltie doores were shut and": [0, 65535], "doores were shut and i": [0, 65535], "were shut and i denied": [0, 65535], "shut and i denied to": [0, 65535], "and i denied to enter": [0, 65535], "i denied to enter in": [0, 65535], "denied to enter in my": [0, 65535], "to enter in my house": [0, 65535], "enter in my house adr": [0, 65535], "in my house adr o": [0, 65535], "my house adr o husband": [0, 65535], "house adr o husband god": [0, 65535], "adr o husband god doth": [0, 65535], "o husband god doth know": [0, 65535], "husband god doth know you": [0, 65535], "god doth know you din'd": [0, 65535], "doth know you din'd at": [0, 65535], "know you din'd at home": [0, 65535], "you din'd at home where": [0, 65535], "din'd at home where would": [0, 65535], "at home where would you": [0, 65535], "home where would you had": [0, 65535], "where would you had remain'd": [0, 65535], "would you had remain'd vntill": [0, 65535], "you had remain'd vntill this": [0, 65535], "had remain'd vntill this time": [0, 65535], "remain'd vntill this time free": [0, 65535], "vntill this time free from": [0, 65535], "this time free from these": [0, 65535], "time free from these slanders": [0, 65535], "free from these slanders and": [0, 65535], "from these slanders and this": [0, 65535], "these slanders and this open": [0, 65535], "slanders and this open shame": [0, 65535], "and this open shame anti": [0, 65535], "this open shame anti din'd": [0, 65535], "open shame anti din'd at": [0, 65535], "shame anti din'd at home": [0, 65535], "anti din'd at home thou": [0, 65535], "din'd at home thou villaine": [0, 65535], "at home thou villaine what": [0, 65535], "home thou villaine what sayest": [0, 65535], "thou villaine what sayest thou": [0, 65535], "villaine what sayest thou dro": [0, 65535], "what sayest thou dro sir": [0, 65535], "sayest thou dro sir sooth": [0, 65535], "thou dro sir sooth to": [0, 65535], "dro sir sooth to say": [0, 65535], "sir sooth to say you": [0, 65535], "sooth to say you did": [0, 65535], "to say you did not": [0, 65535], "say you did not dine": [0, 65535], "you did not dine at": [0, 65535], "did not dine at home": [0, 65535], "not dine at home ant": [0, 65535], "dine at home ant were": [0, 65535], "at home ant were not": [0, 65535], "home ant were not my": [0, 65535], "ant were not my doores": [0, 65535], "were not my doores lockt": [0, 65535], "not my doores lockt vp": [0, 65535], "my doores lockt vp and": [0, 65535], "doores lockt vp and i": [0, 65535], "lockt vp and i shut": [0, 65535], "vp and i shut out": [0, 65535], "and i shut out dro": [0, 65535], "i shut out dro perdie": [0, 65535], "shut out dro perdie your": [0, 65535], "out dro perdie your doores": [0, 65535], "dro perdie your doores were": [0, 65535], "perdie your doores were lockt": [0, 65535], "your doores were lockt and": [0, 65535], "doores were lockt and you": [0, 65535], "were lockt and you shut": [0, 65535], "lockt and you shut out": [0, 65535], "and you shut out anti": [0, 65535], "you shut out anti and": [0, 65535], "shut out anti and did": [0, 65535], "out anti and did not": [0, 65535], "anti and did not she": [0, 65535], "and did not she her": [0, 65535], "did not she her selfe": [0, 65535], "not she her selfe reuile": [0, 65535], "she her selfe reuile me": [0, 65535], "her selfe reuile me there": [0, 65535], "selfe reuile me there dro": [0, 65535], "reuile me there dro sans": [0, 65535], "me there dro sans fable": [0, 65535], "there dro sans fable she": [0, 65535], "dro sans fable she her": [0, 65535], "sans fable she her selfe": [0, 65535], "fable she her selfe reuil'd": [0, 65535], "she her selfe reuil'd you": [0, 65535], "her selfe reuil'd you there": [0, 65535], "selfe reuil'd you there anti": [0, 65535], "reuil'd you there anti did": [0, 65535], "you there anti did not": [0, 65535], "there anti did not her": [0, 65535], "anti did not her kitchen": [0, 65535], "did not her kitchen maide": [0, 65535], "not her kitchen maide raile": [0, 65535], "her kitchen maide raile taunt": [0, 65535], "kitchen maide raile taunt and": [0, 65535], "maide raile taunt and scorne": [0, 65535], "raile taunt and scorne me": [0, 65535], "taunt and scorne me dro": [0, 65535], "and scorne me dro certis": [0, 65535], "scorne me dro certis she": [0, 65535], "me dro certis she did": [0, 65535], "dro certis she did the": [0, 65535], "certis she did the kitchin": [0, 65535], "she did the kitchin vestall": [0, 65535], "did the kitchin vestall scorn'd": [0, 65535], "the kitchin vestall scorn'd you": [0, 65535], "kitchin vestall scorn'd you ant": [0, 65535], "vestall scorn'd you ant and": [0, 65535], "scorn'd you ant and did": [0, 65535], "you ant and did not": [0, 65535], "ant and did not i": [0, 65535], "and did not i in": [0, 65535], "did not i in rage": [0, 65535], "not i in rage depart": [0, 65535], "i in rage depart from": [0, 65535], "in rage depart from thence": [0, 65535], "rage depart from thence dro": [0, 65535], "depart from thence dro in": [0, 65535], "from thence dro in veritie": [0, 65535], "thence dro in veritie you": [0, 65535], "dro in veritie you did": [0, 65535], "in veritie you did my": [0, 65535], "veritie you did my bones": [0, 65535], "you did my bones beares": [0, 65535], "did my bones beares witnesse": [0, 65535], "my bones beares witnesse that": [0, 65535], "bones beares witnesse that since": [0, 65535], "beares witnesse that since haue": [0, 65535], "witnesse that since haue felt": [0, 65535], "that since haue felt the": [0, 65535], "since haue felt the vigor": [0, 65535], "haue felt the vigor of": [0, 65535], "felt the vigor of his": [0, 65535], "the vigor of his rage": [0, 65535], "vigor of his rage adr": [0, 65535], "of his rage adr is't": [0, 65535], "his rage adr is't good": [0, 65535], "rage adr is't good to": [0, 65535], "adr is't good to sooth": [0, 65535], "is't good to sooth him": [0, 65535], "good to sooth him in": [0, 65535], "to sooth him in these": [0, 65535], "sooth him in these contraries": [0, 65535], "him in these contraries pinch": [0, 65535], "in these contraries pinch it": [0, 65535], "these contraries pinch it is": [0, 65535], "contraries pinch it is no": [0, 65535], "pinch it is no shame": [0, 65535], "it is no shame the": [0, 65535], "is no shame the fellow": [0, 65535], "no shame the fellow finds": [0, 65535], "shame the fellow finds his": [0, 65535], "the fellow finds his vaine": [0, 65535], "fellow finds his vaine and": [0, 65535], "finds his vaine and yeelding": [0, 65535], "his vaine and yeelding to": [0, 65535], "vaine and yeelding to him": [0, 65535], "and yeelding to him humors": [0, 65535], "yeelding to him humors well": [0, 65535], "to him humors well his": [0, 65535], "him humors well his frensie": [0, 65535], "humors well his frensie ant": [0, 65535], "well his frensie ant thou": [0, 65535], "his frensie ant thou hast": [0, 65535], "frensie ant thou hast subborn'd": [0, 65535], "ant thou hast subborn'd the": [0, 65535], "thou hast subborn'd the goldsmith": [0, 65535], "hast subborn'd the goldsmith to": [0, 65535], "subborn'd the goldsmith to arrest": [0, 65535], "the goldsmith to arrest mee": [0, 65535], "goldsmith to arrest mee adr": [0, 65535], "to arrest mee adr alas": [0, 65535], "arrest mee adr alas i": [0, 65535], "mee adr alas i sent": [0, 65535], "adr alas i sent you": [0, 65535], "alas i sent you monie": [0, 65535], "i sent you monie to": [0, 65535], "sent you monie to redeeme": [0, 65535], "you monie to redeeme you": [0, 65535], "monie to redeeme you by": [0, 65535], "to redeeme you by dromio": [0, 65535], "redeeme you by dromio heere": [0, 65535], "you by dromio heere who": [0, 65535], "by dromio heere who came": [0, 65535], "dromio heere who came in": [0, 65535], "heere who came in hast": [0, 65535], "who came in hast for": [0, 65535], "came in hast for it": [0, 65535], "in hast for it dro": [0, 65535], "hast for it dro monie": [0, 65535], "for it dro monie by": [0, 65535], "it dro monie by me": [0, 65535], "dro monie by me heart": [0, 65535], "monie by me heart and": [0, 65535], "by me heart and good": [0, 65535], "me heart and good will": [0, 65535], "heart and good will you": [0, 65535], "and good will you might": [0, 65535], "good will you might but": [0, 65535], "will you might but surely": [0, 65535], "you might but surely master": [0, 65535], "might but surely master not": [0, 65535], "but surely master not a": [0, 65535], "surely master not a ragge": [0, 65535], "master not a ragge of": [0, 65535], "not a ragge of monie": [0, 65535], "a ragge of monie ant": [0, 65535], "ragge of monie ant wentst": [0, 65535], "of monie ant wentst not": [0, 65535], "monie ant wentst not thou": [0, 65535], "ant wentst not thou to": [0, 65535], "wentst not thou to her": [0, 65535], "not thou to her for": [0, 65535], "thou to her for a": [0, 65535], "to her for a purse": [0, 65535], "her for a purse of": [0, 65535], "for a purse of duckets": [0, 65535], "a purse of duckets adri": [0, 65535], "purse of duckets adri he": [0, 65535], "of duckets adri he came": [0, 65535], "duckets adri he came to": [0, 65535], "adri he came to me": [0, 65535], "he came to me and": [0, 65535], "came to me and i": [0, 65535], "to me and i deliuer'd": [0, 65535], "me and i deliuer'd it": [0, 65535], "and i deliuer'd it luci": [0, 65535], "i deliuer'd it luci and": [0, 65535], "deliuer'd it luci and i": [0, 65535], "it luci and i am": [0, 65535], "luci and i am witnesse": [0, 65535], "and i am witnesse with": [0, 65535], "i am witnesse with her": [0, 65535], "am witnesse with her that": [0, 65535], "witnesse with her that she": [0, 65535], "with her that she did": [0, 65535], "her that she did dro": [0, 65535], "that she did dro god": [0, 65535], "she did dro god and": [0, 65535], "did dro god and the": [0, 65535], "dro god and the rope": [0, 65535], "god and the rope maker": [0, 65535], "and the rope maker beare": [0, 65535], "the rope maker beare me": [0, 65535], "rope maker beare me witnesse": [0, 65535], "maker beare me witnesse that": [0, 65535], "beare me witnesse that i": [0, 65535], "me witnesse that i was": [0, 65535], "witnesse that i was sent": [0, 65535], "that i was sent for": [0, 65535], "i was sent for nothing": [0, 65535], "was sent for nothing but": [0, 65535], "sent for nothing but a": [0, 65535], "for nothing but a rope": [0, 65535], "nothing but a rope pinch": [0, 65535], "but a rope pinch mistris": [0, 65535], "a rope pinch mistris both": [0, 65535], "rope pinch mistris both man": [0, 65535], "pinch mistris both man and": [0, 65535], "mistris both man and master": [0, 65535], "both man and master is": [0, 65535], "man and master is possest": [0, 65535], "and master is possest i": [0, 65535], "master is possest i know": [0, 65535], "is possest i know it": [0, 65535], "possest i know it by": [0, 65535], "i know it by their": [0, 65535], "know it by their pale": [0, 65535], "it by their pale and": [0, 65535], "by their pale and deadly": [0, 65535], "their pale and deadly lookes": [0, 65535], "pale and deadly lookes they": [0, 65535], "and deadly lookes they must": [0, 65535], "deadly lookes they must be": [0, 65535], "lookes they must be bound": [0, 65535], "they must be bound and": [0, 65535], "must be bound and laide": [0, 65535], "be bound and laide in": [0, 65535], "bound and laide in some": [0, 65535], "and laide in some darke": [0, 65535], "laide in some darke roome": [0, 65535], "in some darke roome ant": [0, 65535], "some darke roome ant say": [0, 65535], "darke roome ant say wherefore": [0, 65535], "roome ant say wherefore didst": [0, 65535], "ant say wherefore didst thou": [0, 65535], "say wherefore didst thou locke": [0, 65535], "wherefore didst thou locke me": [0, 65535], "didst thou locke me forth": [0, 65535], "thou locke me forth to": [0, 65535], "locke me forth to day": [0, 65535], "me forth to day and": [0, 65535], "forth to day and why": [0, 65535], "to day and why dost": [0, 65535], "day and why dost thou": [0, 65535], "and why dost thou denie": [0, 65535], "why dost thou denie the": [0, 65535], "dost thou denie the bagge": [0, 65535], "thou denie the bagge of": [0, 65535], "denie the bagge of gold": [0, 65535], "the bagge of gold adr": [0, 65535], "bagge of gold adr i": [0, 65535], "of gold adr i did": [0, 65535], "gold adr i did not": [0, 65535], "adr i did not gentle": [0, 65535], "i did not gentle husband": [0, 65535], "did not gentle husband locke": [0, 65535], "not gentle husband locke thee": [0, 65535], "gentle husband locke thee forth": [0, 65535], "husband locke thee forth dro": [0, 65535], "locke thee forth dro and": [0, 65535], "thee forth dro and gentle": [0, 65535], "forth dro and gentle mr": [0, 65535], "dro and gentle mr i": [0, 65535], "and gentle mr i receiu'd": [0, 65535], "gentle mr i receiu'd no": [0, 65535], "mr i receiu'd no gold": [0, 65535], "i receiu'd no gold but": [0, 65535], "receiu'd no gold but i": [0, 65535], "no gold but i confesse": [0, 65535], "gold but i confesse sir": [0, 65535], "but i confesse sir that": [0, 65535], "i confesse sir that we": [0, 65535], "confesse sir that we were": [0, 65535], "sir that we were lock'd": [0, 65535], "that we were lock'd out": [0, 65535], "we were lock'd out adr": [0, 65535], "were lock'd out adr dissembling": [0, 65535], "lock'd out adr dissembling villain": [0, 65535], "out adr dissembling villain thou": [0, 65535], "adr dissembling villain thou speak'st": [0, 65535], "dissembling villain thou speak'st false": [0, 65535], "villain thou speak'st false in": [0, 65535], "thou speak'st false in both": [0, 65535], "speak'st false in both ant": [0, 65535], "false in both ant dissembling": [0, 65535], "in both ant dissembling harlot": [0, 65535], "both ant dissembling harlot thou": [0, 65535], "ant dissembling harlot thou art": [0, 65535], "dissembling harlot thou art false": [0, 65535], "harlot thou art false in": [0, 65535], "thou art false in all": [0, 65535], "art false in all and": [0, 65535], "false in all and art": [0, 65535], "in all and art confederate": [0, 65535], "all and art confederate with": [0, 65535], "and art confederate with a": [0, 65535], "art confederate with a damned": [0, 65535], "confederate with a damned packe": [0, 65535], "with a damned packe to": [0, 65535], "a damned packe to make": [0, 65535], "damned packe to make a": [0, 65535], "packe to make a loathsome": [0, 65535], "to make a loathsome abiect": [0, 65535], "make a loathsome abiect scorne": [0, 65535], "a loathsome abiect scorne of": [0, 65535], "loathsome abiect scorne of me": [0, 65535], "abiect scorne of me but": [0, 65535], "scorne of me but with": [0, 65535], "of me but with these": [0, 65535], "me but with these nailes": [0, 65535], "but with these nailes ile": [0, 65535], "with these nailes ile plucke": [0, 65535], "these nailes ile plucke out": [0, 65535], "nailes ile plucke out these": [0, 65535], "ile plucke out these false": [0, 65535], "plucke out these false eyes": [0, 65535], "out these false eyes that": [0, 65535], "these false eyes that would": [0, 65535], "false eyes that would behold": [0, 65535], "eyes that would behold in": [0, 65535], "that would behold in me": [0, 65535], "would behold in me this": [0, 65535], "behold in me this shamefull": [0, 65535], "in me this shamefull sport": [0, 65535], "me this shamefull sport enter": [0, 65535], "this shamefull sport enter three": [0, 65535], "shamefull sport enter three or": [0, 65535], "sport enter three or foure": [0, 65535], "enter three or foure and": [0, 65535], "three or foure and offer": [0, 65535], "or foure and offer to": [0, 65535], "foure and offer to binde": [0, 65535], "and offer to binde him": [0, 65535], "offer to binde him hee": [0, 65535], "to binde him hee striues": [0, 65535], "binde him hee striues adr": [0, 65535], "him hee striues adr oh": [0, 65535], "hee striues adr oh binde": [0, 65535], "striues adr oh binde him": [0, 65535], "adr oh binde him binde": [0, 65535], "oh binde him binde him": [0, 65535], "binde him binde him let": [0, 65535], "him binde him let him": [0, 65535], "binde him let him not": [0, 65535], "him let him not come": [0, 65535], "let him not come neere": [0, 65535], "him not come neere me": [0, 65535], "not come neere me pinch": [0, 65535], "come neere me pinch more": [0, 65535], "neere me pinch more company": [0, 65535], "me pinch more company the": [0, 65535], "pinch more company the fiend": [0, 65535], "more company the fiend is": [0, 65535], "company the fiend is strong": [0, 65535], "the fiend is strong within": [0, 65535], "fiend is strong within him": [0, 65535], "is strong within him luc": [0, 65535], "strong within him luc aye": [0, 65535], "within him luc aye me": [0, 65535], "him luc aye me poore": [0, 65535], "luc aye me poore man": [0, 65535], "aye me poore man how": [0, 65535], "me poore man how pale": [0, 65535], "poore man how pale and": [0, 65535], "man how pale and wan": [0, 65535], "how pale and wan he": [0, 65535], "pale and wan he looks": [0, 65535], "and wan he looks ant": [0, 65535], "wan he looks ant what": [0, 65535], "he looks ant what will": [0, 65535], "looks ant what will you": [0, 65535], "ant what will you murther": [0, 65535], "what will you murther me": [0, 65535], "will you murther me thou": [0, 65535], "you murther me thou iailor": [0, 65535], "murther me thou iailor thou": [0, 65535], "me thou iailor thou i": [0, 65535], "thou iailor thou i am": [0, 65535], "iailor thou i am thy": [0, 65535], "thou i am thy prisoner": [0, 65535], "i am thy prisoner wilt": [0, 65535], "am thy prisoner wilt thou": [0, 65535], "thy prisoner wilt thou suffer": [0, 65535], "prisoner wilt thou suffer them": [0, 65535], "wilt thou suffer them to": [0, 65535], "thou suffer them to make": [0, 65535], "suffer them to make a": [0, 65535], "them to make a rescue": [0, 65535], "to make a rescue offi": [0, 65535], "make a rescue offi masters": [0, 65535], "a rescue offi masters let": [0, 65535], "rescue offi masters let him": [0, 65535], "offi masters let him go": [0, 65535], "masters let him go he": [0, 65535], "let him go he is": [0, 65535], "him go he is my": [0, 65535], "go he is my prisoner": [0, 65535], "he is my prisoner and": [0, 65535], "is my prisoner and you": [0, 65535], "my prisoner and you shall": [0, 65535], "prisoner and you shall not": [0, 65535], "and you shall not haue": [0, 65535], "you shall not haue him": [0, 65535], "shall not haue him pinch": [0, 65535], "not haue him pinch go": [0, 65535], "haue him pinch go binde": [0, 65535], "him pinch go binde this": [0, 65535], "pinch go binde this man": [0, 65535], "go binde this man for": [0, 65535], "binde this man for he": [0, 65535], "this man for he is": [0, 65535], "man for he is franticke": [0, 65535], "for he is franticke too": [0, 65535], "he is franticke too adr": [0, 65535], "is franticke too adr what": [0, 65535], "franticke too adr what wilt": [0, 65535], "too adr what wilt thou": [0, 65535], "adr what wilt thou do": [0, 65535], "what wilt thou do thou": [0, 65535], "wilt thou do thou peeuish": [0, 65535], "thou do thou peeuish officer": [0, 65535], "do thou peeuish officer hast": [0, 65535], "thou peeuish officer hast thou": [0, 65535], "peeuish officer hast thou delight": [0, 65535], "officer hast thou delight to": [0, 65535], "hast thou delight to see": [0, 65535], "thou delight to see a": [0, 65535], "delight to see a wretched": [0, 65535], "to see a wretched man": [0, 65535], "see a wretched man do": [0, 65535], "a wretched man do outrage": [0, 65535], "wretched man do outrage and": [0, 65535], "man do outrage and displeasure": [0, 65535], "do outrage and displeasure to": [0, 65535], "outrage and displeasure to himselfe": [0, 65535], "and displeasure to himselfe offi": [0, 65535], "displeasure to himselfe offi he": [0, 65535], "to himselfe offi he is": [0, 65535], "himselfe offi he is my": [0, 65535], "offi he is my prisoner": [0, 65535], "he is my prisoner if": [0, 65535], "is my prisoner if i": [0, 65535], "my prisoner if i let": [0, 65535], "prisoner if i let him": [0, 65535], "if i let him go": [0, 65535], "i let him go the": [0, 65535], "let him go the debt": [0, 65535], "him go the debt he": [0, 65535], "go the debt he owes": [0, 65535], "the debt he owes will": [0, 65535], "debt he owes will be": [0, 65535], "he owes will be requir'd": [0, 65535], "owes will be requir'd of": [0, 65535], "will be requir'd of me": [0, 65535], "be requir'd of me adr": [0, 65535], "requir'd of me adr i": [0, 65535], "of me adr i will": [0, 65535], "me adr i will discharge": [0, 65535], "adr i will discharge thee": [0, 65535], "i will discharge thee ere": [0, 65535], "will discharge thee ere i": [0, 65535], "discharge thee ere i go": [0, 65535], "thee ere i go from": [0, 65535], "ere i go from thee": [0, 65535], "i go from thee beare": [0, 65535], "go from thee beare me": [0, 65535], "from thee beare me forthwith": [0, 65535], "thee beare me forthwith vnto": [0, 65535], "beare me forthwith vnto his": [0, 65535], "me forthwith vnto his creditor": [0, 65535], "forthwith vnto his creditor and": [0, 65535], "vnto his creditor and knowing": [0, 65535], "his creditor and knowing how": [0, 65535], "creditor and knowing how the": [0, 65535], "and knowing how the debt": [0, 65535], "knowing how the debt growes": [0, 65535], "how the debt growes i": [0, 65535], "the debt growes i will": [0, 65535], "debt growes i will pay": [0, 65535], "growes i will pay it": [0, 65535], "i will pay it good": [0, 65535], "will pay it good master": [0, 65535], "pay it good master doctor": [0, 65535], "it good master doctor see": [0, 65535], "good master doctor see him": [0, 65535], "master doctor see him safe": [0, 65535], "doctor see him safe conuey'd": [0, 65535], "see him safe conuey'd home": [0, 65535], "him safe conuey'd home to": [0, 65535], "safe conuey'd home to my": [0, 65535], "conuey'd home to my house": [0, 65535], "home to my house oh": [0, 65535], "to my house oh most": [0, 65535], "my house oh most vnhappy": [0, 65535], "house oh most vnhappy day": [0, 65535], "oh most vnhappy day ant": [0, 65535], "most vnhappy day ant oh": [0, 65535], "vnhappy day ant oh most": [0, 65535], "day ant oh most vnhappie": [0, 65535], "ant oh most vnhappie strumpet": [0, 65535], "oh most vnhappie strumpet dro": [0, 65535], "most vnhappie strumpet dro master": [0, 65535], "vnhappie strumpet dro master i": [0, 65535], "strumpet dro master i am": [0, 65535], "dro master i am heere": [0, 65535], "master i am heere entred": [0, 65535], "i am heere entred in": [0, 65535], "am heere entred in bond": [0, 65535], "heere entred in bond for": [0, 65535], "entred in bond for you": [0, 65535], "in bond for you ant": [0, 65535], "bond for you ant out": [0, 65535], "for you ant out on": [0, 65535], "you ant out on thee": [0, 65535], "ant out on thee villaine": [0, 65535], "out on thee villaine wherefore": [0, 65535], "on thee villaine wherefore dost": [0, 65535], "thee villaine wherefore dost thou": [0, 65535], "villaine wherefore dost thou mad": [0, 65535], "wherefore dost thou mad mee": [0, 65535], "dost thou mad mee dro": [0, 65535], "thou mad mee dro will": [0, 65535], "mad mee dro will you": [0, 65535], "mee dro will you be": [0, 65535], "dro will you be bound": [0, 65535], "will you be bound for": [0, 65535], "you be bound for nothing": [0, 65535], "be bound for nothing be": [0, 65535], "bound for nothing be mad": [0, 65535], "for nothing be mad good": [0, 65535], "nothing be mad good master": [0, 65535], "be mad good master cry": [0, 65535], "mad good master cry the": [0, 65535], "good master cry the diuell": [0, 65535], "master cry the diuell luc": [0, 65535], "cry the diuell luc god": [0, 65535], "the diuell luc god helpe": [0, 65535], "diuell luc god helpe poore": [0, 65535], "luc god helpe poore soules": [0, 65535], "god helpe poore soules how": [0, 65535], "helpe poore soules how idlely": [0, 65535], "poore soules how idlely doe": [0, 65535], "soules how idlely doe they": [0, 65535], "how idlely doe they talke": [0, 65535], "idlely doe they talke adr": [0, 65535], "doe they talke adr go": [0, 65535], "they talke adr go beare": [0, 65535], "talke adr go beare him": [0, 65535], "adr go beare him hence": [0, 65535], "go beare him hence sister": [0, 65535], "beare him hence sister go": [0, 65535], "him hence sister go you": [0, 65535], "hence sister go you with": [0, 65535], "sister go you with me": [0, 65535], "go you with me say": [0, 65535], "you with me say now": [0, 65535], "with me say now whose": [0, 65535], "me say now whose suite": [0, 65535], "say now whose suite is": [0, 65535], "now whose suite is he": [0, 65535], "whose suite is he arrested": [0, 65535], "suite is he arrested at": [0, 65535], "is he arrested at exeunt": [0, 65535], "he arrested at exeunt manet": [0, 65535], "arrested at exeunt manet offic": [0, 65535], "at exeunt manet offic adri": [0, 65535], "exeunt manet offic adri luci": [0, 65535], "manet offic adri luci courtizan": [0, 65535], "offic adri luci courtizan off": [0, 65535], "adri luci courtizan off one": [0, 65535], "luci courtizan off one angelo": [0, 65535], "courtizan off one angelo a": [0, 65535], "off one angelo a goldsmith": [0, 65535], "one angelo a goldsmith do": [0, 65535], "angelo a goldsmith do you": [0, 65535], "a goldsmith do you know": [0, 65535], "goldsmith do you know him": [0, 65535], "do you know him adr": [0, 65535], "you know him adr i": [0, 65535], "know him adr i know": [0, 65535], "him adr i know the": [0, 65535], "adr i know the man": [0, 65535], "i know the man what": [0, 65535], "know the man what is": [0, 65535], "the man what is the": [0, 65535], "man what is the summe": [0, 65535], "what is the summe he": [0, 65535], "is the summe he owes": [0, 65535], "the summe he owes off": [0, 65535], "summe he owes off two": [0, 65535], "he owes off two hundred": [0, 65535], "owes off two hundred duckets": [0, 65535], "off two hundred duckets adr": [0, 65535], "two hundred duckets adr say": [0, 65535], "hundred duckets adr say how": [0, 65535], "duckets adr say how growes": [0, 65535], "adr say how growes it": [0, 65535], "say how growes it due": [0, 65535], "how growes it due off": [0, 65535], "growes it due off due": [0, 65535], "it due off due for": [0, 65535], "due off due for a": [0, 65535], "off due for a chaine": [0, 65535], "due for a chaine your": [0, 65535], "for a chaine your husband": [0, 65535], "a chaine your husband had": [0, 65535], "chaine your husband had of": [0, 65535], "your husband had of him": [0, 65535], "husband had of him adr": [0, 65535], "had of him adr he": [0, 65535], "of him adr he did": [0, 65535], "him adr he did bespeake": [0, 65535], "adr he did bespeake a": [0, 65535], "he did bespeake a chain": [0, 65535], "did bespeake a chain for": [0, 65535], "bespeake a chain for me": [0, 65535], "a chain for me but": [0, 65535], "chain for me but had": [0, 65535], "for me but had it": [0, 65535], "me but had it not": [0, 65535], "but had it not cur": [0, 65535], "had it not cur when": [0, 65535], "it not cur when as": [0, 65535], "not cur when as your": [0, 65535], "cur when as your husband": [0, 65535], "when as your husband all": [0, 65535], "as your husband all in": [0, 65535], "your husband all in rage": [0, 65535], "husband all in rage to": [0, 65535], "all in rage to day": [0, 65535], "in rage to day came": [0, 65535], "rage to day came to": [0, 65535], "to day came to my": [0, 65535], "day came to my house": [0, 65535], "came to my house and": [0, 65535], "to my house and tooke": [0, 65535], "my house and tooke away": [0, 65535], "house and tooke away my": [0, 65535], "and tooke away my ring": [0, 65535], "tooke away my ring the": [0, 65535], "away my ring the ring": [0, 65535], "my ring the ring i": [0, 65535], "ring the ring i saw": [0, 65535], "the ring i saw vpon": [0, 65535], "ring i saw vpon his": [0, 65535], "i saw vpon his finger": [0, 65535], "saw vpon his finger now": [0, 65535], "vpon his finger now straight": [0, 65535], "his finger now straight after": [0, 65535], "finger now straight after did": [0, 65535], "now straight after did i": [0, 65535], "straight after did i meete": [0, 65535], "after did i meete him": [0, 65535], "did i meete him with": [0, 65535], "i meete him with a": [0, 65535], "meete him with a chaine": [0, 65535], "him with a chaine adr": [0, 65535], "with a chaine adr it": [0, 65535], "a chaine adr it may": [0, 65535], "chaine adr it may be": [0, 65535], "adr it may be so": [0, 65535], "it may be so but": [0, 65535], "may be so but i": [0, 65535], "be so but i did": [0, 65535], "so but i did neuer": [0, 65535], "but i did neuer see": [0, 65535], "i did neuer see it": [0, 65535], "did neuer see it come": [0, 65535], "neuer see it come iailor": [0, 65535], "see it come iailor bring": [0, 65535], "it come iailor bring me": [0, 65535], "come iailor bring me where": [0, 65535], "iailor bring me where the": [0, 65535], "bring me where the goldsmith": [0, 65535], "me where the goldsmith is": [0, 65535], "where the goldsmith is i": [0, 65535], "the goldsmith is i long": [0, 65535], "goldsmith is i long to": [0, 65535], "is i long to know": [0, 65535], "i long to know the": [0, 65535], "long to know the truth": [0, 65535], "to know the truth heereof": [0, 65535], "know the truth heereof at": [0, 65535], "the truth heereof at large": [0, 65535], "truth heereof at large enter": [0, 65535], "heereof at large enter antipholus": [0, 65535], "at large enter antipholus siracusia": [0, 65535], "large enter antipholus siracusia with": [0, 65535], "enter antipholus siracusia with his": [0, 65535], "antipholus siracusia with his rapier": [0, 65535], "siracusia with his rapier drawne": [0, 65535], "with his rapier drawne and": [0, 65535], "his rapier drawne and dromio": [0, 65535], "rapier drawne and dromio sirac": [0, 65535], "drawne and dromio sirac luc": [0, 65535], "and dromio sirac luc god": [0, 65535], "dromio sirac luc god for": [0, 65535], "sirac luc god for thy": [0, 65535], "luc god for thy mercy": [0, 65535], "god for thy mercy they": [0, 65535], "for thy mercy they are": [0, 65535], "thy mercy they are loose": [0, 65535], "mercy they are loose againe": [0, 65535], "they are loose againe adr": [0, 65535], "are loose againe adr and": [0, 65535], "loose againe adr and come": [0, 65535], "againe adr and come with": [0, 65535], "adr and come with naked": [0, 65535], "and come with naked swords": [0, 65535], "come with naked swords let's": [0, 65535], "with naked swords let's call": [0, 65535], "naked swords let's call more": [0, 65535], "swords let's call more helpe": [0, 65535], "let's call more helpe to": [0, 65535], "call more helpe to haue": [0, 65535], "more helpe to haue them": [0, 65535], "helpe to haue them bound": [0, 65535], "to haue them bound againe": [0, 65535], "haue them bound againe runne": [0, 65535], "them bound againe runne all": [0, 65535], "bound againe runne all out": [0, 65535], "againe runne all out off": [0, 65535], "runne all out off away": [0, 65535], "all out off away they'l": [0, 65535], "out off away they'l kill": [0, 65535], "off away they'l kill vs": [0, 65535], "away they'l kill vs exeunt": [0, 65535], "they'l kill vs exeunt omnes": [0, 65535], "kill vs exeunt omnes as": [0, 65535], "vs exeunt omnes as fast": [0, 65535], "exeunt omnes as fast as": [0, 65535], "omnes as fast as may": [0, 65535], "as fast as may be": [0, 65535], "fast as may be frighted": [0, 65535], "as may be frighted s": [0, 65535], "may be frighted s ant": [0, 65535], "be frighted s ant i": [0, 65535], "frighted s ant i see": [0, 65535], "s ant i see these": [0, 65535], "ant i see these witches": [0, 65535], "i see these witches are": [0, 65535], "see these witches are affraid": [0, 65535], "these witches are affraid of": [0, 65535], "witches are affraid of swords": [0, 65535], "are affraid of swords s": [0, 65535], "affraid of swords s dro": [0, 65535], "of swords s dro she": [0, 65535], "swords s dro she that": [0, 65535], "s dro she that would": [0, 65535], "dro she that would be": [0, 65535], "she that would be your": [0, 65535], "that would be your wife": [0, 65535], "would be your wife now": [0, 65535], "be your wife now ran": [0, 65535], "your wife now ran from": [0, 65535], "wife now ran from you": [0, 65535], "now ran from you ant": [0, 65535], "ran from you ant come": [0, 65535], "from you ant come to": [0, 65535], "you ant come to the": [0, 65535], "ant come to the centaur": [0, 65535], "come to the centaur fetch": [0, 65535], "to the centaur fetch our": [0, 65535], "the centaur fetch our stuffe": [0, 65535], "centaur fetch our stuffe from": [0, 65535], "fetch our stuffe from thence": [0, 65535], "our stuffe from thence i": [0, 65535], "stuffe from thence i long": [0, 65535], "from thence i long that": [0, 65535], "thence i long that we": [0, 65535], "i long that we were": [0, 65535], "long that we were safe": [0, 65535], "that we were safe and": [0, 65535], "we were safe and sound": [0, 65535], "were safe and sound aboord": [0, 65535], "safe and sound aboord dro": [0, 65535], "and sound aboord dro faith": [0, 65535], "sound aboord dro faith stay": [0, 65535], "aboord dro faith stay heere": [0, 65535], "dro faith stay heere this": [0, 65535], "faith stay heere this night": [0, 65535], "stay heere this night they": [0, 65535], "heere this night they will": [0, 65535], "this night they will surely": [0, 65535], "night they will surely do": [0, 65535], "they will surely do vs": [0, 65535], "will surely do vs no": [0, 65535], "surely do vs no harme": [0, 65535], "do vs no harme you": [0, 65535], "vs no harme you saw": [0, 65535], "no harme you saw they": [0, 65535], "harme you saw they speake": [0, 65535], "you saw they speake vs": [0, 65535], "saw they speake vs faire": [0, 65535], "they speake vs faire giue": [0, 65535], "speake vs faire giue vs": [0, 65535], "vs faire giue vs gold": [0, 65535], "faire giue vs gold me": [0, 65535], "giue vs gold me thinkes": [0, 65535], "vs gold me thinkes they": [0, 65535], "gold me thinkes they are": [0, 65535], "me thinkes they are such": [0, 65535], "thinkes they are such a": [0, 65535], "they are such a gentle": [0, 65535], "are such a gentle nation": [0, 65535], "such a gentle nation that": [0, 65535], "a gentle nation that but": [0, 65535], "gentle nation that but for": [0, 65535], "nation that but for the": [0, 65535], "that but for the mountaine": [0, 65535], "but for the mountaine of": [0, 65535], "for the mountaine of mad": [0, 65535], "the mountaine of mad flesh": [0, 65535], "mountaine of mad flesh that": [0, 65535], "of mad flesh that claimes": [0, 65535], "mad flesh that claimes mariage": [0, 65535], "flesh that claimes mariage of": [0, 65535], "that claimes mariage of me": [0, 65535], "claimes mariage of me i": [0, 65535], "mariage of me i could": [0, 65535], "of me i could finde": [0, 65535], "me i could finde in": [0, 65535], "i could finde in my": [0, 65535], "could finde in my heart": [0, 65535], "finde in my heart to": [0, 65535], "in my heart to stay": [0, 65535], "my heart to stay heere": [0, 65535], "heart to stay heere still": [0, 65535], "to stay heere still and": [0, 65535], "stay heere still and turne": [0, 65535], "heere still and turne witch": [0, 65535], "still and turne witch ant": [0, 65535], "and turne witch ant i": [0, 65535], "turne witch ant i will": [0, 65535], "witch ant i will not": [0, 65535], "ant i will not stay": [0, 65535], "i will not stay to": [0, 65535], "will not stay to night": [0, 65535], "not stay to night for": [0, 65535], "stay to night for all": [0, 65535], "to night for all the": [0, 65535], "night for all the towne": [0, 65535], "for all the towne therefore": [0, 65535], "all the towne therefore away": [0, 65535], "the towne therefore away to": [0, 65535], "towne therefore away to get": [0, 65535], "therefore away to get our": [0, 65535], "away to get our stuffe": [0, 65535], "to get our stuffe aboord": [0, 65535], "get our stuffe aboord exeunt": [0, 65535], "actus quartus sc\u00e6na prima enter a": [0, 65535], "quartus sc\u00e6na prima enter a merchant": [0, 65535], "sc\u00e6na prima enter a merchant goldsmith": [0, 65535], "prima enter a merchant goldsmith and": [0, 65535], "enter a merchant goldsmith and an": [0, 65535], "a merchant goldsmith and an officer": [0, 65535], "merchant goldsmith and an officer mar": [0, 65535], "goldsmith and an officer mar you": [0, 65535], "and an officer mar you know": [0, 65535], "an officer mar you know since": [0, 65535], "officer mar you know since pentecost": [0, 65535], "mar you know since pentecost the": [0, 65535], "you know since pentecost the sum": [0, 65535], "know since pentecost the sum is": [0, 65535], "since pentecost the sum is due": [0, 65535], "pentecost the sum is due and": [0, 65535], "the sum is due and since": [0, 65535], "sum is due and since i": [0, 65535], "is due and since i haue": [0, 65535], "due and since i haue not": [0, 65535], "and since i haue not much": [0, 65535], "since i haue not much importun'd": [0, 65535], "i haue not much importun'd you": [0, 65535], "haue not much importun'd you nor": [0, 65535], "not much importun'd you nor now": [0, 65535], "much importun'd you nor now i": [0, 65535], "importun'd you nor now i had": [0, 65535], "you nor now i had not": [0, 65535], "nor now i had not but": [0, 65535], "now i had not but that": [0, 65535], "i had not but that i": [0, 65535], "had not but that i am": [0, 65535], "not but that i am bound": [0, 65535], "but that i am bound to": [0, 65535], "that i am bound to persia": [0, 65535], "i am bound to persia and": [0, 65535], "am bound to persia and want": [0, 65535], "bound to persia and want gilders": [0, 65535], "to persia and want gilders for": [0, 65535], "persia and want gilders for my": [0, 65535], "and want gilders for my voyage": [0, 65535], "want gilders for my voyage therefore": [0, 65535], "gilders for my voyage therefore make": [0, 65535], "for my voyage therefore make present": [0, 65535], "my voyage therefore make present satisfaction": [0, 65535], "voyage therefore make present satisfaction or": [0, 65535], "therefore make present satisfaction or ile": [0, 65535], "make present satisfaction or ile attach": [0, 65535], "present satisfaction or ile attach you": [0, 65535], "satisfaction or ile attach you by": [0, 65535], "or ile attach you by this": [0, 65535], "ile attach you by this officer": [0, 65535], "attach you by this officer gold": [0, 65535], "you by this officer gold euen": [0, 65535], "by this officer gold euen iust": [0, 65535], "this officer gold euen iust the": [0, 65535], "officer gold euen iust the sum": [0, 65535], "gold euen iust the sum that": [0, 65535], "euen iust the sum that i": [0, 65535], "iust the sum that i do": [0, 65535], "the sum that i do owe": [0, 65535], "sum that i do owe to": [0, 65535], "that i do owe to you": [0, 65535], "i do owe to you is": [0, 65535], "do owe to you is growing": [0, 65535], "owe to you is growing to": [0, 65535], "to you is growing to me": [0, 65535], "you is growing to me by": [0, 65535], "is growing to me by antipholus": [0, 65535], "growing to me by antipholus and": [0, 65535], "to me by antipholus and in": [0, 65535], "me by antipholus and in the": [0, 65535], "by antipholus and in the instant": [0, 65535], "antipholus and in the instant that": [0, 65535], "and in the instant that i": [0, 65535], "in the instant that i met": [0, 65535], "the instant that i met with": [0, 65535], "instant that i met with you": [0, 65535], "that i met with you he": [0, 65535], "i met with you he had": [0, 65535], "met with you he had of": [0, 65535], "with you he had of me": [0, 65535], "you he had of me a": [0, 65535], "he had of me a chaine": [0, 65535], "had of me a chaine at": [0, 65535], "of me a chaine at fiue": [0, 65535], "me a chaine at fiue a": [0, 65535], "a chaine at fiue a clocke": [0, 65535], "chaine at fiue a clocke i": [0, 65535], "at fiue a clocke i shall": [0, 65535], "fiue a clocke i shall receiue": [0, 65535], "a clocke i shall receiue the": [0, 65535], "clocke i shall receiue the money": [0, 65535], "i shall receiue the money for": [0, 65535], "shall receiue the money for the": [0, 65535], "receiue the money for the same": [0, 65535], "the money for the same pleaseth": [0, 65535], "money for the same pleaseth you": [0, 65535], "for the same pleaseth you walke": [0, 65535], "the same pleaseth you walke with": [0, 65535], "same pleaseth you walke with me": [0, 65535], "pleaseth you walke with me downe": [0, 65535], "you walke with me downe to": [0, 65535], "walke with me downe to his": [0, 65535], "with me downe to his house": [0, 65535], "me downe to his house i": [0, 65535], "downe to his house i will": [0, 65535], "to his house i will discharge": [0, 65535], "his house i will discharge my": [0, 65535], "house i will discharge my bond": [0, 65535], "i will discharge my bond and": [0, 65535], "will discharge my bond and thanke": [0, 65535], "discharge my bond and thanke you": [0, 65535], "my bond and thanke you too": [0, 65535], "bond and thanke you too enter": [0, 65535], "and thanke you too enter antipholus": [0, 65535], "thanke you too enter antipholus ephes": [0, 65535], "you too enter antipholus ephes dromio": [0, 65535], "too enter antipholus ephes dromio from": [0, 65535], "enter antipholus ephes dromio from the": [0, 65535], "antipholus ephes dromio from the courtizans": [0, 65535], "ephes dromio from the courtizans offi": [0, 65535], "dromio from the courtizans offi that": [0, 65535], "from the courtizans offi that labour": [0, 65535], "the courtizans offi that labour may": [0, 65535], "courtizans offi that labour may you": [0, 65535], "offi that labour may you saue": [0, 65535], "that labour may you saue see": [0, 65535], "labour may you saue see where": [0, 65535], "may you saue see where he": [0, 65535], "you saue see where he comes": [0, 65535], "saue see where he comes ant": [0, 65535], "see where he comes ant while": [0, 65535], "where he comes ant while i": [0, 65535], "he comes ant while i go": [0, 65535], "comes ant while i go to": [0, 65535], "ant while i go to the": [0, 65535], "while i go to the goldsmiths": [0, 65535], "i go to the goldsmiths house": [0, 65535], "go to the goldsmiths house go": [0, 65535], "to the goldsmiths house go thou": [0, 65535], "the goldsmiths house go thou and": [0, 65535], "goldsmiths house go thou and buy": [0, 65535], "house go thou and buy a": [0, 65535], "go thou and buy a ropes": [0, 65535], "thou and buy a ropes end": [0, 65535], "and buy a ropes end that": [0, 65535], "buy a ropes end that will": [0, 65535], "a ropes end that will i": [0, 65535], "ropes end that will i bestow": [0, 65535], "end that will i bestow among": [0, 65535], "that will i bestow among my": [0, 65535], "will i bestow among my wife": [0, 65535], "i bestow among my wife and": [0, 65535], "bestow among my wife and their": [0, 65535], "among my wife and their confederates": [0, 65535], "my wife and their confederates for": [0, 65535], "wife and their confederates for locking": [0, 65535], "and their confederates for locking me": [0, 65535], "their confederates for locking me out": [0, 65535], "confederates for locking me out of": [0, 65535], "for locking me out of my": [0, 65535], "locking me out of my doores": [0, 65535], "me out of my doores by": [0, 65535], "out of my doores by day": [0, 65535], "of my doores by day but": [0, 65535], "my doores by day but soft": [0, 65535], "doores by day but soft i": [0, 65535], "by day but soft i see": [0, 65535], "day but soft i see the": [0, 65535], "but soft i see the goldsmith": [0, 65535], "soft i see the goldsmith get": [0, 65535], "i see the goldsmith get thee": [0, 65535], "see the goldsmith get thee gone": [0, 65535], "the goldsmith get thee gone buy": [0, 65535], "goldsmith get thee gone buy thou": [0, 65535], "get thee gone buy thou a": [0, 65535], "thee gone buy thou a rope": [0, 65535], "gone buy thou a rope and": [0, 65535], "buy thou a rope and bring": [0, 65535], "thou a rope and bring it": [0, 65535], "a rope and bring it home": [0, 65535], "rope and bring it home to": [0, 65535], "and bring it home to me": [0, 65535], "bring it home to me dro": [0, 65535], "it home to me dro i": [0, 65535], "home to me dro i buy": [0, 65535], "to me dro i buy a": [0, 65535], "me dro i buy a thousand": [0, 65535], "dro i buy a thousand pound": [0, 65535], "i buy a thousand pound a": [0, 65535], "buy a thousand pound a yeare": [0, 65535], "a thousand pound a yeare i": [0, 65535], "thousand pound a yeare i buy": [0, 65535], "pound a yeare i buy a": [0, 65535], "a yeare i buy a rope": [0, 65535], "yeare i buy a rope exit": [0, 65535], "i buy a rope exit dromio": [0, 65535], "buy a rope exit dromio eph": [0, 65535], "a rope exit dromio eph ant": [0, 65535], "rope exit dromio eph ant a": [0, 65535], "exit dromio eph ant a man": [0, 65535], "dromio eph ant a man is": [0, 65535], "eph ant a man is well": [0, 65535], "ant a man is well holpe": [0, 65535], "a man is well holpe vp": [0, 65535], "man is well holpe vp that": [0, 65535], "is well holpe vp that trusts": [0, 65535], "well holpe vp that trusts to": [0, 65535], "holpe vp that trusts to you": [0, 65535], "vp that trusts to you i": [0, 65535], "that trusts to you i promised": [0, 65535], "trusts to you i promised your": [0, 65535], "to you i promised your presence": [0, 65535], "you i promised your presence and": [0, 65535], "i promised your presence and the": [0, 65535], "promised your presence and the chaine": [0, 65535], "your presence and the chaine but": [0, 65535], "presence and the chaine but neither": [0, 65535], "and the chaine but neither chaine": [0, 65535], "the chaine but neither chaine nor": [0, 65535], "chaine but neither chaine nor goldsmith": [0, 65535], "but neither chaine nor goldsmith came": [0, 65535], "neither chaine nor goldsmith came to": [0, 65535], "chaine nor goldsmith came to me": [0, 65535], "nor goldsmith came to me belike": [0, 65535], "goldsmith came to me belike you": [0, 65535], "came to me belike you thought": [0, 65535], "to me belike you thought our": [0, 65535], "me belike you thought our loue": [0, 65535], "belike you thought our loue would": [0, 65535], "you thought our loue would last": [0, 65535], "thought our loue would last too": [0, 65535], "our loue would last too long": [0, 65535], "loue would last too long if": [0, 65535], "would last too long if it": [0, 65535], "last too long if it were": [0, 65535], "too long if it were chain'd": [0, 65535], "long if it were chain'd together": [0, 65535], "if it were chain'd together and": [0, 65535], "it were chain'd together and therefore": [0, 65535], "were chain'd together and therefore came": [0, 65535], "chain'd together and therefore came not": [0, 65535], "together and therefore came not gold": [0, 65535], "and therefore came not gold sauing": [0, 65535], "therefore came not gold sauing your": [0, 65535], "came not gold sauing your merrie": [0, 65535], "not gold sauing your merrie humor": [0, 65535], "gold sauing your merrie humor here's": [0, 65535], "sauing your merrie humor here's the": [0, 65535], "your merrie humor here's the note": [0, 65535], "merrie humor here's the note how": [0, 65535], "humor here's the note how much": [0, 65535], "here's the note how much your": [0, 65535], "the note how much your chaine": [0, 65535], "note how much your chaine weighs": [0, 65535], "how much your chaine weighs to": [0, 65535], "much your chaine weighs to the": [0, 65535], "your chaine weighs to the vtmost": [0, 65535], "chaine weighs to the vtmost charect": [0, 65535], "weighs to the vtmost charect the": [0, 65535], "to the vtmost charect the finenesse": [0, 65535], "the vtmost charect the finenesse of": [0, 65535], "vtmost charect the finenesse of the": [0, 65535], "charect the finenesse of the gold": [0, 65535], "the finenesse of the gold and": [0, 65535], "finenesse of the gold and chargefull": [0, 65535], "of the gold and chargefull fashion": [0, 65535], "the gold and chargefull fashion which": [0, 65535], "gold and chargefull fashion which doth": [0, 65535], "and chargefull fashion which doth amount": [0, 65535], "chargefull fashion which doth amount to": [0, 65535], "fashion which doth amount to three": [0, 65535], "which doth amount to three odde": [0, 65535], "doth amount to three odde duckets": [0, 65535], "amount to three odde duckets more": [0, 65535], "to three odde duckets more then": [0, 65535], "three odde duckets more then i": [0, 65535], "odde duckets more then i stand": [0, 65535], "duckets more then i stand debted": [0, 65535], "more then i stand debted to": [0, 65535], "then i stand debted to this": [0, 65535], "i stand debted to this gentleman": [0, 65535], "stand debted to this gentleman i": [0, 65535], "debted to this gentleman i pray": [0, 65535], "to this gentleman i pray you": [0, 65535], "this gentleman i pray you see": [0, 65535], "gentleman i pray you see him": [0, 65535], "i pray you see him presently": [0, 65535], "pray you see him presently discharg'd": [0, 65535], "you see him presently discharg'd for": [0, 65535], "see him presently discharg'd for he": [0, 65535], "him presently discharg'd for he is": [0, 65535], "presently discharg'd for he is bound": [0, 65535], "discharg'd for he is bound to": [0, 65535], "for he is bound to sea": [0, 65535], "he is bound to sea and": [0, 65535], "is bound to sea and stayes": [0, 65535], "bound to sea and stayes but": [0, 65535], "to sea and stayes but for": [0, 65535], "sea and stayes but for it": [0, 65535], "and stayes but for it anti": [0, 65535], "stayes but for it anti i": [0, 65535], "but for it anti i am": [0, 65535], "for it anti i am not": [0, 65535], "it anti i am not furnish'd": [0, 65535], "anti i am not furnish'd with": [0, 65535], "i am not furnish'd with the": [0, 65535], "am not furnish'd with the present": [0, 65535], "not furnish'd with the present monie": [0, 65535], "furnish'd with the present monie besides": [0, 65535], "with the present monie besides i": [0, 65535], "the present monie besides i haue": [0, 65535], "present monie besides i haue some": [0, 65535], "monie besides i haue some businesse": [0, 65535], "besides i haue some businesse in": [0, 65535], "i haue some businesse in the": [0, 65535], "haue some businesse in the towne": [0, 65535], "some businesse in the towne good": [0, 65535], "businesse in the towne good signior": [0, 65535], "in the towne good signior take": [0, 65535], "the towne good signior take the": [0, 65535], "towne good signior take the stranger": [0, 65535], "good signior take the stranger to": [0, 65535], "signior take the stranger to my": [0, 65535], "take the stranger to my house": [0, 65535], "the stranger to my house and": [0, 65535], "stranger to my house and with": [0, 65535], "to my house and with you": [0, 65535], "my house and with you take": [0, 65535], "house and with you take the": [0, 65535], "and with you take the chaine": [0, 65535], "with you take the chaine and": [0, 65535], "you take the chaine and bid": [0, 65535], "take the chaine and bid my": [0, 65535], "the chaine and bid my wife": [0, 65535], "chaine and bid my wife disburse": [0, 65535], "and bid my wife disburse the": [0, 65535], "bid my wife disburse the summe": [0, 65535], "my wife disburse the summe on": [0, 65535], "wife disburse the summe on the": [0, 65535], "disburse the summe on the receit": [0, 65535], "the summe on the receit thereof": [0, 65535], "summe on the receit thereof perchance": [0, 65535], "on the receit thereof perchance i": [0, 65535], "the receit thereof perchance i will": [0, 65535], "receit thereof perchance i will be": [0, 65535], "thereof perchance i will be there": [0, 65535], "perchance i will be there as": [0, 65535], "i will be there as soone": [0, 65535], "will be there as soone as": [0, 65535], "be there as soone as you": [0, 65535], "there as soone as you gold": [0, 65535], "as soone as you gold then": [0, 65535], "soone as you gold then you": [0, 65535], "as you gold then you will": [0, 65535], "you gold then you will bring": [0, 65535], "gold then you will bring the": [0, 65535], "then you will bring the chaine": [0, 65535], "you will bring the chaine to": [0, 65535], "will bring the chaine to her": [0, 65535], "bring the chaine to her your": [0, 65535], "the chaine to her your selfe": [0, 65535], "chaine to her your selfe anti": [0, 65535], "to her your selfe anti no": [0, 65535], "her your selfe anti no beare": [0, 65535], "your selfe anti no beare it": [0, 65535], "selfe anti no beare it with": [0, 65535], "anti no beare it with you": [0, 65535], "no beare it with you least": [0, 65535], "beare it with you least i": [0, 65535], "it with you least i come": [0, 65535], "with you least i come not": [0, 65535], "you least i come not time": [0, 65535], "least i come not time enough": [0, 65535], "i come not time enough gold": [0, 65535], "come not time enough gold well": [0, 65535], "not time enough gold well sir": [0, 65535], "time enough gold well sir i": [0, 65535], "enough gold well sir i will": [0, 65535], "gold well sir i will haue": [0, 65535], "well sir i will haue you": [0, 65535], "sir i will haue you the": [0, 65535], "i will haue you the chaine": [0, 65535], "will haue you the chaine about": [0, 65535], "haue you the chaine about you": [0, 65535], "you the chaine about you ant": [0, 65535], "the chaine about you ant and": [0, 65535], "chaine about you ant and if": [0, 65535], "about you ant and if i": [0, 65535], "you ant and if i haue": [0, 65535], "ant and if i haue not": [0, 65535], "and if i haue not sir": [0, 65535], "if i haue not sir i": [0, 65535], "i haue not sir i hope": [0, 65535], "haue not sir i hope you": [0, 65535], "not sir i hope you haue": [0, 65535], "sir i hope you haue or": [0, 65535], "i hope you haue or else": [0, 65535], "hope you haue or else you": [0, 65535], "you haue or else you may": [0, 65535], "haue or else you may returne": [0, 65535], "or else you may returne without": [0, 65535], "else you may returne without your": [0, 65535], "you may returne without your money": [0, 65535], "may returne without your money gold": [0, 65535], "returne without your money gold nay": [0, 65535], "without your money gold nay come": [0, 65535], "your money gold nay come i": [0, 65535], "money gold nay come i pray": [0, 65535], "gold nay come i pray you": [0, 65535], "nay come i pray you sir": [0, 65535], "come i pray you sir giue": [0, 65535], "i pray you sir giue me": [0, 65535], "pray you sir giue me the": [0, 65535], "you sir giue me the chaine": [0, 65535], "sir giue me the chaine both": [0, 65535], "giue me the chaine both winde": [0, 65535], "me the chaine both winde and": [0, 65535], "the chaine both winde and tide": [0, 65535], "chaine both winde and tide stayes": [0, 65535], "both winde and tide stayes for": [0, 65535], "winde and tide stayes for this": [0, 65535], "and tide stayes for this gentleman": [0, 65535], "tide stayes for this gentleman and": [0, 65535], "stayes for this gentleman and i": [0, 65535], "for this gentleman and i too": [0, 65535], "this gentleman and i too blame": [0, 65535], "gentleman and i too blame haue": [0, 65535], "and i too blame haue held": [0, 65535], "i too blame haue held him": [0, 65535], "too blame haue held him heere": [0, 65535], "blame haue held him heere too": [0, 65535], "haue held him heere too long": [0, 65535], "held him heere too long anti": [0, 65535], "him heere too long anti good": [0, 65535], "heere too long anti good lord": [0, 65535], "too long anti good lord you": [0, 65535], "long anti good lord you vse": [0, 65535], "anti good lord you vse this": [0, 65535], "good lord you vse this dalliance": [0, 65535], "lord you vse this dalliance to": [0, 65535], "you vse this dalliance to excuse": [0, 65535], "vse this dalliance to excuse your": [0, 65535], "this dalliance to excuse your breach": [0, 65535], "dalliance to excuse your breach of": [0, 65535], "to excuse your breach of promise": [0, 65535], "excuse your breach of promise to": [0, 65535], "your breach of promise to the": [0, 65535], "breach of promise to the porpentine": [0, 65535], "of promise to the porpentine i": [0, 65535], "promise to the porpentine i should": [0, 65535], "to the porpentine i should haue": [0, 65535], "the porpentine i should haue chid": [0, 65535], "porpentine i should haue chid you": [0, 65535], "i should haue chid you for": [0, 65535], "should haue chid you for not": [0, 65535], "haue chid you for not bringing": [0, 65535], "chid you for not bringing it": [0, 65535], "you for not bringing it but": [0, 65535], "for not bringing it but like": [0, 65535], "not bringing it but like a": [0, 65535], "bringing it but like a shrew": [0, 65535], "it but like a shrew you": [0, 65535], "but like a shrew you first": [0, 65535], "like a shrew you first begin": [0, 65535], "a shrew you first begin to": [0, 65535], "shrew you first begin to brawle": [0, 65535], "you first begin to brawle mar": [0, 65535], "first begin to brawle mar the": [0, 65535], "begin to brawle mar the houre": [0, 65535], "to brawle mar the houre steales": [0, 65535], "brawle mar the houre steales on": [0, 65535], "mar the houre steales on i": [0, 65535], "the houre steales on i pray": [0, 65535], "houre steales on i pray you": [0, 65535], "steales on i pray you sir": [0, 65535], "on i pray you sir dispatch": [0, 65535], "i pray you sir dispatch gold": [0, 65535], "pray you sir dispatch gold you": [0, 65535], "you sir dispatch gold you heare": [0, 65535], "sir dispatch gold you heare how": [0, 65535], "dispatch gold you heare how he": [0, 65535], "gold you heare how he importunes": [0, 65535], "you heare how he importunes me": [0, 65535], "heare how he importunes me the": [0, 65535], "how he importunes me the chaine": [0, 65535], "he importunes me the chaine ant": [0, 65535], "importunes me the chaine ant why": [0, 65535], "me the chaine ant why giue": [0, 65535], "the chaine ant why giue it": [0, 65535], "chaine ant why giue it to": [0, 65535], "ant why giue it to my": [0, 65535], "why giue it to my wife": [0, 65535], "giue it to my wife and": [0, 65535], "it to my wife and fetch": [0, 65535], "to my wife and fetch your": [0, 65535], "my wife and fetch your mony": [0, 65535], "wife and fetch your mony gold": [0, 65535], "and fetch your mony gold come": [0, 65535], "fetch your mony gold come come": [0, 65535], "your mony gold come come you": [0, 65535], "mony gold come come you know": [0, 65535], "gold come come you know i": [0, 65535], "come come you know i gaue": [0, 65535], "come you know i gaue it": [0, 65535], "you know i gaue it you": [0, 65535], "know i gaue it you euen": [0, 65535], "i gaue it you euen now": [0, 65535], "gaue it you euen now either": [0, 65535], "it you euen now either send": [0, 65535], "you euen now either send the": [0, 65535], "euen now either send the chaine": [0, 65535], "now either send the chaine or": [0, 65535], "either send the chaine or send": [0, 65535], "send the chaine or send me": [0, 65535], "the chaine or send me by": [0, 65535], "chaine or send me by some": [0, 65535], "or send me by some token": [0, 65535], "send me by some token ant": [0, 65535], "me by some token ant fie": [0, 65535], "by some token ant fie now": [0, 65535], "some token ant fie now you": [0, 65535], "token ant fie now you run": [0, 65535], "ant fie now you run this": [0, 65535], "fie now you run this humor": [0, 65535], "now you run this humor out": [0, 65535], "you run this humor out of": [0, 65535], "run this humor out of breath": [0, 65535], "this humor out of breath come": [0, 65535], "humor out of breath come where's": [0, 65535], "out of breath come where's the": [0, 65535], "of breath come where's the chaine": [0, 65535], "breath come where's the chaine i": [0, 65535], "come where's the chaine i pray": [0, 65535], "where's the chaine i pray you": [0, 65535], "the chaine i pray you let": [0, 65535], "chaine i pray you let me": [0, 65535], "i pray you let me see": [0, 65535], "pray you let me see it": [0, 65535], "you let me see it mar": [0, 65535], "let me see it mar my": [0, 65535], "me see it mar my businesse": [0, 65535], "see it mar my businesse cannot": [0, 65535], "it mar my businesse cannot brooke": [0, 65535], "mar my businesse cannot brooke this": [0, 65535], "my businesse cannot brooke this dalliance": [0, 65535], "businesse cannot brooke this dalliance good": [0, 65535], "cannot brooke this dalliance good sir": [0, 65535], "brooke this dalliance good sir say": [0, 65535], "this dalliance good sir say whe'r": [0, 65535], "dalliance good sir say whe'r you'l": [0, 65535], "good sir say whe'r you'l answer": [0, 65535], "sir say whe'r you'l answer me": [0, 65535], "say whe'r you'l answer me or": [0, 65535], "whe'r you'l answer me or no": [0, 65535], "you'l answer me or no if": [0, 65535], "answer me or no if not": [0, 65535], "me or no if not ile": [0, 65535], "or no if not ile leaue": [0, 65535], "no if not ile leaue him": [0, 65535], "if not ile leaue him to": [0, 65535], "not ile leaue him to the": [0, 65535], "ile leaue him to the officer": [0, 65535], "leaue him to the officer ant": [0, 65535], "him to the officer ant i": [0, 65535], "to the officer ant i answer": [0, 65535], "the officer ant i answer you": [0, 65535], "officer ant i answer you what": [0, 65535], "ant i answer you what should": [0, 65535], "i answer you what should i": [0, 65535], "answer you what should i answer": [0, 65535], "you what should i answer you": [0, 65535], "what should i answer you gold": [0, 65535], "should i answer you gold the": [0, 65535], "i answer you gold the monie": [0, 65535], "answer you gold the monie that": [0, 65535], "you gold the monie that you": [0, 65535], "gold the monie that you owe": [0, 65535], "the monie that you owe me": [0, 65535], "monie that you owe me for": [0, 65535], "that you owe me for the": [0, 65535], "you owe me for the chaine": [0, 65535], "owe me for the chaine ant": [0, 65535], "me for the chaine ant i": [0, 65535], "for the chaine ant i owe": [0, 65535], "the chaine ant i owe you": [0, 65535], "chaine ant i owe you none": [0, 65535], "ant i owe you none till": [0, 65535], "i owe you none till i": [0, 65535], "owe you none till i receiue": [0, 65535], "you none till i receiue the": [0, 65535], "none till i receiue the chaine": [0, 65535], "till i receiue the chaine gold": [0, 65535], "i receiue the chaine gold you": [0, 65535], "receiue the chaine gold you know": [0, 65535], "the chaine gold you know i": [0, 65535], "chaine gold you know i gaue": [0, 65535], "gold you know i gaue it": [0, 65535], "know i gaue it you halfe": [0, 65535], "i gaue it you halfe an": [0, 65535], "gaue it you halfe an houre": [0, 65535], "it you halfe an houre since": [0, 65535], "you halfe an houre since ant": [0, 65535], "halfe an houre since ant you": [0, 65535], "an houre since ant you gaue": [0, 65535], "houre since ant you gaue me": [0, 65535], "since ant you gaue me none": [0, 65535], "ant you gaue me none you": [0, 65535], "you gaue me none you wrong": [0, 65535], "gaue me none you wrong mee": [0, 65535], "me none you wrong mee much": [0, 65535], "none you wrong mee much to": [0, 65535], "you wrong mee much to say": [0, 65535], "wrong mee much to say so": [0, 65535], "mee much to say so gold": [0, 65535], "much to say so gold you": [0, 65535], "to say so gold you wrong": [0, 65535], "say so gold you wrong me": [0, 65535], "so gold you wrong me more": [0, 65535], "gold you wrong me more sir": [0, 65535], "you wrong me more sir in": [0, 65535], "wrong me more sir in denying": [0, 65535], "me more sir in denying it": [0, 65535], "more sir in denying it consider": [0, 65535], "sir in denying it consider how": [0, 65535], "in denying it consider how it": [0, 65535], "denying it consider how it stands": [0, 65535], "it consider how it stands vpon": [0, 65535], "consider how it stands vpon my": [0, 65535], "how it stands vpon my credit": [0, 65535], "it stands vpon my credit mar": [0, 65535], "stands vpon my credit mar well": [0, 65535], "vpon my credit mar well officer": [0, 65535], "my credit mar well officer arrest": [0, 65535], "credit mar well officer arrest him": [0, 65535], "mar well officer arrest him at": [0, 65535], "well officer arrest him at my": [0, 65535], "officer arrest him at my suite": [0, 65535], "arrest him at my suite offi": [0, 65535], "him at my suite offi i": [0, 65535], "at my suite offi i do": [0, 65535], "my suite offi i do and": [0, 65535], "suite offi i do and charge": [0, 65535], "offi i do and charge you": [0, 65535], "i do and charge you in": [0, 65535], "do and charge you in the": [0, 65535], "and charge you in the dukes": [0, 65535], "charge you in the dukes name": [0, 65535], "you in the dukes name to": [0, 65535], "in the dukes name to obey": [0, 65535], "the dukes name to obey me": [0, 65535], "dukes name to obey me gold": [0, 65535], "name to obey me gold this": [0, 65535], "to obey me gold this touches": [0, 65535], "obey me gold this touches me": [0, 65535], "me gold this touches me in": [0, 65535], "gold this touches me in reputation": [0, 65535], "this touches me in reputation either": [0, 65535], "touches me in reputation either consent": [0, 65535], "me in reputation either consent to": [0, 65535], "in reputation either consent to pay": [0, 65535], "reputation either consent to pay this": [0, 65535], "either consent to pay this sum": [0, 65535], "consent to pay this sum for": [0, 65535], "to pay this sum for me": [0, 65535], "pay this sum for me or": [0, 65535], "this sum for me or i": [0, 65535], "sum for me or i attach": [0, 65535], "for me or i attach you": [0, 65535], "me or i attach you by": [0, 65535], "or i attach you by this": [0, 65535], "i attach you by this officer": [0, 65535], "attach you by this officer ant": [0, 65535], "you by this officer ant consent": [0, 65535], "by this officer ant consent to": [0, 65535], "this officer ant consent to pay": [0, 65535], "officer ant consent to pay thee": [0, 65535], "ant consent to pay thee that": [0, 65535], "consent to pay thee that i": [0, 65535], "to pay thee that i neuer": [0, 65535], "pay thee that i neuer had": [0, 65535], "thee that i neuer had arrest": [0, 65535], "that i neuer had arrest me": [0, 65535], "i neuer had arrest me foolish": [0, 65535], "neuer had arrest me foolish fellow": [0, 65535], "had arrest me foolish fellow if": [0, 65535], "arrest me foolish fellow if thou": [0, 65535], "me foolish fellow if thou dar'st": [0, 65535], "foolish fellow if thou dar'st gold": [0, 65535], "fellow if thou dar'st gold heere": [0, 65535], "if thou dar'st gold heere is": [0, 65535], "thou dar'st gold heere is thy": [0, 65535], "dar'st gold heere is thy fee": [0, 65535], "gold heere is thy fee arrest": [0, 65535], "heere is thy fee arrest him": [0, 65535], "is thy fee arrest him officer": [0, 65535], "thy fee arrest him officer i": [0, 65535], "fee arrest him officer i would": [0, 65535], "arrest him officer i would not": [0, 65535], "him officer i would not spare": [0, 65535], "officer i would not spare my": [0, 65535], "i would not spare my brother": [0, 65535], "would not spare my brother in": [0, 65535], "not spare my brother in this": [0, 65535], "spare my brother in this case": [0, 65535], "my brother in this case if": [0, 65535], "brother in this case if he": [0, 65535], "in this case if he should": [0, 65535], "this case if he should scorne": [0, 65535], "case if he should scorne me": [0, 65535], "if he should scorne me so": [0, 65535], "he should scorne me so apparantly": [0, 65535], "should scorne me so apparantly offic": [0, 65535], "scorne me so apparantly offic i": [0, 65535], "me so apparantly offic i do": [0, 65535], "so apparantly offic i do arrest": [0, 65535], "apparantly offic i do arrest you": [0, 65535], "offic i do arrest you sir": [0, 65535], "i do arrest you sir you": [0, 65535], "do arrest you sir you heare": [0, 65535], "arrest you sir you heare the": [0, 65535], "you sir you heare the suite": [0, 65535], "sir you heare the suite ant": [0, 65535], "you heare the suite ant i": [0, 65535], "heare the suite ant i do": [0, 65535], "the suite ant i do obey": [0, 65535], "suite ant i do obey thee": [0, 65535], "ant i do obey thee till": [0, 65535], "i do obey thee till i": [0, 65535], "do obey thee till i giue": [0, 65535], "obey thee till i giue thee": [0, 65535], "thee till i giue thee baile": [0, 65535], "till i giue thee baile but": [0, 65535], "i giue thee baile but sirrah": [0, 65535], "giue thee baile but sirrah you": [0, 65535], "thee baile but sirrah you shall": [0, 65535], "baile but sirrah you shall buy": [0, 65535], "but sirrah you shall buy this": [0, 65535], "sirrah you shall buy this sport": [0, 65535], "you shall buy this sport as": [0, 65535], "shall buy this sport as deere": [0, 65535], "buy this sport as deere as": [0, 65535], "this sport as deere as all": [0, 65535], "sport as deere as all the": [0, 65535], "as deere as all the mettall": [0, 65535], "deere as all the mettall in": [0, 65535], "as all the mettall in your": [0, 65535], "all the mettall in your shop": [0, 65535], "the mettall in your shop will": [0, 65535], "mettall in your shop will answer": [0, 65535], "in your shop will answer gold": [0, 65535], "your shop will answer gold sir": [0, 65535], "shop will answer gold sir sir": [0, 65535], "will answer gold sir sir i": [0, 65535], "answer gold sir sir i shall": [0, 65535], "gold sir sir i shall haue": [0, 65535], "sir sir i shall haue law": [0, 65535], "sir i shall haue law in": [0, 65535], "i shall haue law in ephesus": [0, 65535], "shall haue law in ephesus to": [0, 65535], "haue law in ephesus to your": [0, 65535], "law in ephesus to your notorious": [0, 65535], "in ephesus to your notorious shame": [0, 65535], "ephesus to your notorious shame i": [0, 65535], "to your notorious shame i doubt": [0, 65535], "your notorious shame i doubt it": [0, 65535], "notorious shame i doubt it not": [0, 65535], "shame i doubt it not enter": [0, 65535], "i doubt it not enter dromio": [0, 65535], "doubt it not enter dromio sira": [0, 65535], "it not enter dromio sira from": [0, 65535], "not enter dromio sira from the": [0, 65535], "enter dromio sira from the bay": [0, 65535], "dromio sira from the bay dro": [0, 65535], "sira from the bay dro master": [0, 65535], "from the bay dro master there's": [0, 65535], "the bay dro master there's a": [0, 65535], "bay dro master there's a barke": [0, 65535], "dro master there's a barke of": [0, 65535], "master there's a barke of epidamium": [0, 65535], "there's a barke of epidamium that": [0, 65535], "a barke of epidamium that staies": [0, 65535], "barke of epidamium that staies but": [0, 65535], "of epidamium that staies but till": [0, 65535], "epidamium that staies but till her": [0, 65535], "that staies but till her owner": [0, 65535], "staies but till her owner comes": [0, 65535], "but till her owner comes aboord": [0, 65535], "till her owner comes aboord and": [0, 65535], "her owner comes aboord and then": [0, 65535], "owner comes aboord and then sir": [0, 65535], "comes aboord and then sir she": [0, 65535], "aboord and then sir she beares": [0, 65535], "and then sir she beares away": [0, 65535], "then sir she beares away our": [0, 65535], "sir she beares away our fraughtage": [0, 65535], "she beares away our fraughtage sir": [0, 65535], "beares away our fraughtage sir i": [0, 65535], "away our fraughtage sir i haue": [0, 65535], "our fraughtage sir i haue conuei'd": [0, 65535], "fraughtage sir i haue conuei'd aboord": [0, 65535], "sir i haue conuei'd aboord and": [0, 65535], "i haue conuei'd aboord and i": [0, 65535], "haue conuei'd aboord and i haue": [0, 65535], "conuei'd aboord and i haue bought": [0, 65535], "aboord and i haue bought the": [0, 65535], "and i haue bought the oyle": [0, 65535], "i haue bought the oyle the": [0, 65535], "haue bought the oyle the balsamum": [0, 65535], "bought the oyle the balsamum and": [0, 65535], "the oyle the balsamum and aqua": [0, 65535], "oyle the balsamum and aqua vit\u00e6": [0, 65535], "the balsamum and aqua vit\u00e6 the": [0, 65535], "balsamum and aqua vit\u00e6 the ship": [0, 65535], "and aqua vit\u00e6 the ship is": [0, 65535], "aqua vit\u00e6 the ship is in": [0, 65535], "vit\u00e6 the ship is in her": [0, 65535], "the ship is in her trim": [0, 65535], "ship is in her trim the": [0, 65535], "is in her trim the merrie": [0, 65535], "in her trim the merrie winde": [0, 65535], "her trim the merrie winde blowes": [0, 65535], "trim the merrie winde blowes faire": [0, 65535], "the merrie winde blowes faire from": [0, 65535], "merrie winde blowes faire from land": [0, 65535], "winde blowes faire from land they": [0, 65535], "blowes faire from land they stay": [0, 65535], "faire from land they stay for": [0, 65535], "from land they stay for nought": [0, 65535], "land they stay for nought at": [0, 65535], "they stay for nought at all": [0, 65535], "stay for nought at all but": [0, 65535], "for nought at all but for": [0, 65535], "nought at all but for their": [0, 65535], "at all but for their owner": [0, 65535], "all but for their owner master": [0, 65535], "but for their owner master and": [0, 65535], "for their owner master and your": [0, 65535], "their owner master and your selfe": [0, 65535], "owner master and your selfe an": [0, 65535], "master and your selfe an how": [0, 65535], "and your selfe an how now": [0, 65535], "your selfe an how now a": [0, 65535], "selfe an how now a madman": [0, 65535], "an how now a madman why": [0, 65535], "how now a madman why thou": [0, 65535], "now a madman why thou peeuish": [0, 65535], "a madman why thou peeuish sheep": [0, 65535], "madman why thou peeuish sheep what": [0, 65535], "why thou peeuish sheep what ship": [0, 65535], "thou peeuish sheep what ship of": [0, 65535], "peeuish sheep what ship of epidamium": [0, 65535], "sheep what ship of epidamium staies": [0, 65535], "what ship of epidamium staies for": [0, 65535], "ship of epidamium staies for me": [0, 65535], "of epidamium staies for me s": [0, 65535], "epidamium staies for me s dro": [0, 65535], "staies for me s dro a": [0, 65535], "for me s dro a ship": [0, 65535], "me s dro a ship you": [0, 65535], "s dro a ship you sent": [0, 65535], "dro a ship you sent me": [0, 65535], "a ship you sent me too": [0, 65535], "ship you sent me too to": [0, 65535], "you sent me too to hier": [0, 65535], "sent me too to hier waftage": [0, 65535], "me too to hier waftage ant": [0, 65535], "too to hier waftage ant thou": [0, 65535], "to hier waftage ant thou drunken": [0, 65535], "hier waftage ant thou drunken slaue": [0, 65535], "waftage ant thou drunken slaue i": [0, 65535], "ant thou drunken slaue i sent": [0, 65535], "thou drunken slaue i sent thee": [0, 65535], "drunken slaue i sent thee for": [0, 65535], "slaue i sent thee for a": [0, 65535], "i sent thee for a rope": [0, 65535], "sent thee for a rope and": [0, 65535], "thee for a rope and told": [0, 65535], "for a rope and told thee": [0, 65535], "a rope and told thee to": [0, 65535], "rope and told thee to what": [0, 65535], "and told thee to what purpose": [0, 65535], "told thee to what purpose and": [0, 65535], "thee to what purpose and what": [0, 65535], "to what purpose and what end": [0, 65535], "what purpose and what end s": [0, 65535], "purpose and what end s dro": [0, 65535], "and what end s dro you": [0, 65535], "what end s dro you sent": [0, 65535], "end s dro you sent me": [0, 65535], "s dro you sent me for": [0, 65535], "dro you sent me for a": [0, 65535], "you sent me for a ropes": [0, 65535], "sent me for a ropes end": [0, 65535], "me for a ropes end as": [0, 65535], "for a ropes end as soone": [0, 65535], "a ropes end as soone you": [0, 65535], "ropes end as soone you sent": [0, 65535], "end as soone you sent me": [0, 65535], "as soone you sent me to": [0, 65535], "soone you sent me to the": [0, 65535], "you sent me to the bay": [0, 65535], "sent me to the bay sir": [0, 65535], "me to the bay sir for": [0, 65535], "to the bay sir for a": [0, 65535], "the bay sir for a barke": [0, 65535], "bay sir for a barke ant": [0, 65535], "sir for a barke ant i": [0, 65535], "for a barke ant i will": [0, 65535], "a barke ant i will debate": [0, 65535], "barke ant i will debate this": [0, 65535], "ant i will debate this matter": [0, 65535], "i will debate this matter at": [0, 65535], "will debate this matter at more": [0, 65535], "debate this matter at more leisure": [0, 65535], "this matter at more leisure and": [0, 65535], "matter at more leisure and teach": [0, 65535], "at more leisure and teach your": [0, 65535], "more leisure and teach your eares": [0, 65535], "leisure and teach your eares to": [0, 65535], "and teach your eares to list": [0, 65535], "teach your eares to list me": [0, 65535], "your eares to list me with": [0, 65535], "eares to list me with more": [0, 65535], "to list me with more heede": [0, 65535], "list me with more heede to": [0, 65535], "me with more heede to adriana": [0, 65535], "with more heede to adriana villaine": [0, 65535], "more heede to adriana villaine hie": [0, 65535], "heede to adriana villaine hie thee": [0, 65535], "to adriana villaine hie thee straight": [0, 65535], "adriana villaine hie thee straight giue": [0, 65535], "villaine hie thee straight giue her": [0, 65535], "hie thee straight giue her this": [0, 65535], "thee straight giue her this key": [0, 65535], "straight giue her this key and": [0, 65535], "giue her this key and tell": [0, 65535], "her this key and tell her": [0, 65535], "this key and tell her in": [0, 65535], "key and tell her in the": [0, 65535], "and tell her in the deske": [0, 65535], "tell her in the deske that's": [0, 65535], "her in the deske that's couer'd": [0, 65535], "in the deske that's couer'd o're": [0, 65535], "the deske that's couer'd o're with": [0, 65535], "deske that's couer'd o're with turkish": [0, 65535], "that's couer'd o're with turkish tapistrie": [0, 65535], "couer'd o're with turkish tapistrie there": [0, 65535], "o're with turkish tapistrie there is": [0, 65535], "with turkish tapistrie there is a": [0, 65535], "turkish tapistrie there is a purse": [0, 65535], "tapistrie there is a purse of": [0, 65535], "there is a purse of duckets": [0, 65535], "is a purse of duckets let": [0, 65535], "a purse of duckets let her": [0, 65535], "purse of duckets let her send": [0, 65535], "of duckets let her send it": [0, 65535], "duckets let her send it tell": [0, 65535], "let her send it tell her": [0, 65535], "her send it tell her i": [0, 65535], "send it tell her i am": [0, 65535], "it tell her i am arrested": [0, 65535], "tell her i am arrested in": [0, 65535], "her i am arrested in the": [0, 65535], "i am arrested in the streete": [0, 65535], "am arrested in the streete and": [0, 65535], "arrested in the streete and that": [0, 65535], "in the streete and that shall": [0, 65535], "the streete and that shall baile": [0, 65535], "streete and that shall baile me": [0, 65535], "and that shall baile me hie": [0, 65535], "that shall baile me hie thee": [0, 65535], "shall baile me hie thee slaue": [0, 65535], "baile me hie thee slaue be": [0, 65535], "me hie thee slaue be gone": [0, 65535], "hie thee slaue be gone on": [0, 65535], "thee slaue be gone on officer": [0, 65535], "slaue be gone on officer to": [0, 65535], "be gone on officer to prison": [0, 65535], "gone on officer to prison till": [0, 65535], "on officer to prison till it": [0, 65535], "officer to prison till it come": [0, 65535], "to prison till it come exeunt": [0, 65535], "prison till it come exeunt s": [0, 65535], "till it come exeunt s dromio": [0, 65535], "it come exeunt s dromio to": [0, 65535], "come exeunt s dromio to adriana": [0, 65535], "exeunt s dromio to adriana that": [0, 65535], "s dromio to adriana that is": [0, 65535], "dromio to adriana that is where": [0, 65535], "to adriana that is where we": [0, 65535], "adriana that is where we din'd": [0, 65535], "that is where we din'd where": [0, 65535], "is where we din'd where dowsabell": [0, 65535], "where we din'd where dowsabell did": [0, 65535], "we din'd where dowsabell did claime": [0, 65535], "din'd where dowsabell did claime me": [0, 65535], "where dowsabell did claime me for": [0, 65535], "dowsabell did claime me for her": [0, 65535], "did claime me for her husband": [0, 65535], "claime me for her husband she": [0, 65535], "me for her husband she is": [0, 65535], "for her husband she is too": [0, 65535], "her husband she is too bigge": [0, 65535], "husband she is too bigge i": [0, 65535], "she is too bigge i hope": [0, 65535], "is too bigge i hope for": [0, 65535], "too bigge i hope for me": [0, 65535], "bigge i hope for me to": [0, 65535], "i hope for me to compasse": [0, 65535], "hope for me to compasse thither": [0, 65535], "for me to compasse thither i": [0, 65535], "me to compasse thither i must": [0, 65535], "to compasse thither i must although": [0, 65535], "compasse thither i must although against": [0, 65535], "thither i must although against my": [0, 65535], "i must although against my will": [0, 65535], "must although against my will for": [0, 65535], "although against my will for seruants": [0, 65535], "against my will for seruants must": [0, 65535], "my will for seruants must their": [0, 65535], "will for seruants must their masters": [0, 65535], "for seruants must their masters mindes": [0, 65535], "seruants must their masters mindes fulfill": [0, 65535], "must their masters mindes fulfill exit": [0, 65535], "their masters mindes fulfill exit enter": [0, 65535], "masters mindes fulfill exit enter adriana": [0, 65535], "mindes fulfill exit enter adriana and": [0, 65535], "fulfill exit enter adriana and luciana": [0, 65535], "exit enter adriana and luciana adr": [0, 65535], "enter adriana and luciana adr ah": [0, 65535], "adriana and luciana adr ah luciana": [0, 65535], "and luciana adr ah luciana did": [0, 65535], "luciana adr ah luciana did he": [0, 65535], "adr ah luciana did he tempt": [0, 65535], "ah luciana did he tempt thee": [0, 65535], "luciana did he tempt thee so": [0, 65535], "did he tempt thee so might'st": [0, 65535], "he tempt thee so might'st thou": [0, 65535], "tempt thee so might'st thou perceiue": [0, 65535], "thee so might'st thou perceiue austeerely": [0, 65535], "so might'st thou perceiue austeerely in": [0, 65535], "might'st thou perceiue austeerely in his": [0, 65535], "thou perceiue austeerely in his eie": [0, 65535], "perceiue austeerely in his eie that": [0, 65535], "austeerely in his eie that he": [0, 65535], "in his eie that he did": [0, 65535], "his eie that he did plead": [0, 65535], "eie that he did plead in": [0, 65535], "that he did plead in earnest": [0, 65535], "he did plead in earnest yea": [0, 65535], "did plead in earnest yea or": [0, 65535], "plead in earnest yea or no": [0, 65535], "in earnest yea or no look'd": [0, 65535], "earnest yea or no look'd he": [0, 65535], "yea or no look'd he or": [0, 65535], "or no look'd he or red": [0, 65535], "no look'd he or red or": [0, 65535], "look'd he or red or pale": [0, 65535], "he or red or pale or": [0, 65535], "or red or pale or sad": [0, 65535], "red or pale or sad or": [0, 65535], "or pale or sad or merrily": [0, 65535], "pale or sad or merrily what": [0, 65535], "or sad or merrily what obseruation": [0, 65535], "sad or merrily what obseruation mad'st": [0, 65535], "or merrily what obseruation mad'st thou": [0, 65535], "merrily what obseruation mad'st thou in": [0, 65535], "what obseruation mad'st thou in this": [0, 65535], "obseruation mad'st thou in this case": [0, 65535], "mad'st thou in this case oh": [0, 65535], "thou in this case oh his": [0, 65535], "in this case oh his hearts": [0, 65535], "this case oh his hearts meteors": [0, 65535], "case oh his hearts meteors tilting": [0, 65535], "oh his hearts meteors tilting in": [0, 65535], "his hearts meteors tilting in his": [0, 65535], "hearts meteors tilting in his face": [0, 65535], "meteors tilting in his face luc": [0, 65535], "tilting in his face luc first": [0, 65535], "in his face luc first he": [0, 65535], "his face luc first he deni'de": [0, 65535], "face luc first he deni'de you": [0, 65535], "luc first he deni'de you had": [0, 65535], "first he deni'de you had in": [0, 65535], "he deni'de you had in him": [0, 65535], "deni'de you had in him no": [0, 65535], "you had in him no right": [0, 65535], "had in him no right adr": [0, 65535], "in him no right adr he": [0, 65535], "him no right adr he meant": [0, 65535], "no right adr he meant he": [0, 65535], "right adr he meant he did": [0, 65535], "adr he meant he did me": [0, 65535], "he meant he did me none": [0, 65535], "meant he did me none the": [0, 65535], "he did me none the more": [0, 65535], "did me none the more my": [0, 65535], "me none the more my spight": [0, 65535], "none the more my spight luc": [0, 65535], "the more my spight luc then": [0, 65535], "more my spight luc then swore": [0, 65535], "my spight luc then swore he": [0, 65535], "spight luc then swore he that": [0, 65535], "luc then swore he that he": [0, 65535], "then swore he that he was": [0, 65535], "swore he that he was a": [0, 65535], "he that he was a stranger": [0, 65535], "that he was a stranger heere": [0, 65535], "he was a stranger heere adr": [0, 65535], "was a stranger heere adr and": [0, 65535], "a stranger heere adr and true": [0, 65535], "stranger heere adr and true he": [0, 65535], "heere adr and true he swore": [0, 65535], "adr and true he swore though": [0, 65535], "and true he swore though yet": [0, 65535], "true he swore though yet forsworne": [0, 65535], "he swore though yet forsworne hee": [0, 65535], "swore though yet forsworne hee were": [0, 65535], "though yet forsworne hee were luc": [0, 65535], "yet forsworne hee were luc then": [0, 65535], "forsworne hee were luc then pleaded": [0, 65535], "hee were luc then pleaded i": [0, 65535], "were luc then pleaded i for": [0, 65535], "luc then pleaded i for you": [0, 65535], "then pleaded i for you adr": [0, 65535], "pleaded i for you adr and": [0, 65535], "i for you adr and what": [0, 65535], "for you adr and what said": [0, 65535], "you adr and what said he": [0, 65535], "adr and what said he luc": [0, 65535], "and what said he luc that": [0, 65535], "what said he luc that loue": [0, 65535], "said he luc that loue i": [0, 65535], "he luc that loue i begg'd": [0, 65535], "luc that loue i begg'd for": [0, 65535], "that loue i begg'd for you": [0, 65535], "loue i begg'd for you he": [0, 65535], "i begg'd for you he begg'd": [0, 65535], "begg'd for you he begg'd of": [0, 65535], "for you he begg'd of me": [0, 65535], "you he begg'd of me adr": [0, 65535], "he begg'd of me adr with": [0, 65535], "begg'd of me adr with what": [0, 65535], "of me adr with what perswasion": [0, 65535], "me adr with what perswasion did": [0, 65535], "adr with what perswasion did he": [0, 65535], "with what perswasion did he tempt": [0, 65535], "what perswasion did he tempt thy": [0, 65535], "perswasion did he tempt thy loue": [0, 65535], "did he tempt thy loue luc": [0, 65535], "he tempt thy loue luc with": [0, 65535], "tempt thy loue luc with words": [0, 65535], "thy loue luc with words that": [0, 65535], "loue luc with words that in": [0, 65535], "luc with words that in an": [0, 65535], "with words that in an honest": [0, 65535], "words that in an honest suit": [0, 65535], "that in an honest suit might": [0, 65535], "in an honest suit might moue": [0, 65535], "an honest suit might moue first": [0, 65535], "honest suit might moue first he": [0, 65535], "suit might moue first he did": [0, 65535], "might moue first he did praise": [0, 65535], "moue first he did praise my": [0, 65535], "first he did praise my beautie": [0, 65535], "he did praise my beautie then": [0, 65535], "did praise my beautie then my": [0, 65535], "praise my beautie then my speech": [0, 65535], "my beautie then my speech adr": [0, 65535], "beautie then my speech adr did'st": [0, 65535], "then my speech adr did'st speake": [0, 65535], "my speech adr did'st speake him": [0, 65535], "speech adr did'st speake him faire": [0, 65535], "adr did'st speake him faire luc": [0, 65535], "did'st speake him faire luc haue": [0, 65535], "speake him faire luc haue patience": [0, 65535], "him faire luc haue patience i": [0, 65535], "faire luc haue patience i beseech": [0, 65535], "luc haue patience i beseech adr": [0, 65535], "haue patience i beseech adr i": [0, 65535], "patience i beseech adr i cannot": [0, 65535], "i beseech adr i cannot nor": [0, 65535], "beseech adr i cannot nor i": [0, 65535], "adr i cannot nor i will": [0, 65535], "i cannot nor i will not": [0, 65535], "cannot nor i will not hold": [0, 65535], "nor i will not hold me": [0, 65535], "i will not hold me still": [0, 65535], "will not hold me still my": [0, 65535], "not hold me still my tongue": [0, 65535], "hold me still my tongue though": [0, 65535], "me still my tongue though not": [0, 65535], "still my tongue though not my": [0, 65535], "my tongue though not my heart": [0, 65535], "tongue though not my heart shall": [0, 65535], "though not my heart shall haue": [0, 65535], "not my heart shall haue his": [0, 65535], "my heart shall haue his will": [0, 65535], "heart shall haue his will he": [0, 65535], "shall haue his will he is": [0, 65535], "haue his will he is deformed": [0, 65535], "his will he is deformed crooked": [0, 65535], "will he is deformed crooked old": [0, 65535], "he is deformed crooked old and": [0, 65535], "is deformed crooked old and sere": [0, 65535], "deformed crooked old and sere ill": [0, 65535], "crooked old and sere ill fac'd": [0, 65535], "old and sere ill fac'd worse": [0, 65535], "and sere ill fac'd worse bodied": [0, 65535], "sere ill fac'd worse bodied shapelesse": [0, 65535], "ill fac'd worse bodied shapelesse euery": [0, 65535], "fac'd worse bodied shapelesse euery where": [0, 65535], "worse bodied shapelesse euery where vicious": [0, 65535], "bodied shapelesse euery where vicious vngentle": [0, 65535], "shapelesse euery where vicious vngentle foolish": [0, 65535], "euery where vicious vngentle foolish blunt": [0, 65535], "where vicious vngentle foolish blunt vnkinde": [0, 65535], "vicious vngentle foolish blunt vnkinde stigmaticall": [0, 65535], "vngentle foolish blunt vnkinde stigmaticall in": [0, 65535], "foolish blunt vnkinde stigmaticall in making": [0, 65535], "blunt vnkinde stigmaticall in making worse": [0, 65535], "vnkinde stigmaticall in making worse in": [0, 65535], "stigmaticall in making worse in minde": [0, 65535], "in making worse in minde luc": [0, 65535], "making worse in minde luc who": [0, 65535], "worse in minde luc who would": [0, 65535], "in minde luc who would be": [0, 65535], "minde luc who would be iealous": [0, 65535], "luc who would be iealous then": [0, 65535], "who would be iealous then of": [0, 65535], "would be iealous then of such": [0, 65535], "be iealous then of such a": [0, 65535], "iealous then of such a one": [0, 65535], "then of such a one no": [0, 65535], "of such a one no euill": [0, 65535], "such a one no euill lost": [0, 65535], "a one no euill lost is": [0, 65535], "one no euill lost is wail'd": [0, 65535], "no euill lost is wail'd when": [0, 65535], "euill lost is wail'd when it": [0, 65535], "lost is wail'd when it is": [0, 65535], "is wail'd when it is gone": [0, 65535], "wail'd when it is gone adr": [0, 65535], "when it is gone adr ah": [0, 65535], "it is gone adr ah but": [0, 65535], "is gone adr ah but i": [0, 65535], "gone adr ah but i thinke": [0, 65535], "adr ah but i thinke him": [0, 65535], "ah but i thinke him better": [0, 65535], "but i thinke him better then": [0, 65535], "i thinke him better then i": [0, 65535], "thinke him better then i say": [0, 65535], "him better then i say and": [0, 65535], "better then i say and yet": [0, 65535], "then i say and yet would": [0, 65535], "i say and yet would herein": [0, 65535], "say and yet would herein others": [0, 65535], "and yet would herein others eies": [0, 65535], "yet would herein others eies were": [0, 65535], "would herein others eies were worse": [0, 65535], "herein others eies were worse farre": [0, 65535], "others eies were worse farre from": [0, 65535], "eies were worse farre from her": [0, 65535], "were worse farre from her nest": [0, 65535], "worse farre from her nest the": [0, 65535], "farre from her nest the lapwing": [0, 65535], "from her nest the lapwing cries": [0, 65535], "her nest the lapwing cries away": [0, 65535], "nest the lapwing cries away my": [0, 65535], "the lapwing cries away my heart": [0, 65535], "lapwing cries away my heart praies": [0, 65535], "cries away my heart praies for": [0, 65535], "away my heart praies for him": [0, 65535], "my heart praies for him though": [0, 65535], "heart praies for him though my": [0, 65535], "praies for him though my tongue": [0, 65535], "for him though my tongue doe": [0, 65535], "him though my tongue doe curse": [0, 65535], "though my tongue doe curse enter": [0, 65535], "my tongue doe curse enter s": [0, 65535], "tongue doe curse enter s dromio": [0, 65535], "doe curse enter s dromio dro": [0, 65535], "curse enter s dromio dro here": [0, 65535], "enter s dromio dro here goe": [0, 65535], "s dromio dro here goe the": [0, 65535], "dromio dro here goe the deske": [0, 65535], "dro here goe the deske the": [0, 65535], "here goe the deske the purse": [0, 65535], "goe the deske the purse sweet": [0, 65535], "the deske the purse sweet now": [0, 65535], "deske the purse sweet now make": [0, 65535], "the purse sweet now make haste": [0, 65535], "purse sweet now make haste luc": [0, 65535], "sweet now make haste luc how": [0, 65535], "now make haste luc how hast": [0, 65535], "make haste luc how hast thou": [0, 65535], "haste luc how hast thou lost": [0, 65535], "luc how hast thou lost thy": [0, 65535], "how hast thou lost thy breath": [0, 65535], "hast thou lost thy breath s": [0, 65535], "thou lost thy breath s dro": [0, 65535], "lost thy breath s dro by": [0, 65535], "thy breath s dro by running": [0, 65535], "breath s dro by running fast": [0, 65535], "s dro by running fast adr": [0, 65535], "dro by running fast adr where": [0, 65535], "by running fast adr where is": [0, 65535], "running fast adr where is thy": [0, 65535], "fast adr where is thy master": [0, 65535], "adr where is thy master dromio": [0, 65535], "where is thy master dromio is": [0, 65535], "is thy master dromio is he": [0, 65535], "thy master dromio is he well": [0, 65535], "master dromio is he well s": [0, 65535], "dromio is he well s dro": [0, 65535], "is he well s dro no": [0, 65535], "he well s dro no he's": [0, 65535], "well s dro no he's in": [0, 65535], "s dro no he's in tartar": [0, 65535], "dro no he's in tartar limbo": [0, 65535], "no he's in tartar limbo worse": [0, 65535], "he's in tartar limbo worse then": [0, 65535], "in tartar limbo worse then hell": [0, 65535], "tartar limbo worse then hell a": [0, 65535], "limbo worse then hell a diuell": [0, 65535], "worse then hell a diuell in": [0, 65535], "then hell a diuell in an": [0, 65535], "hell a diuell in an euerlasting": [0, 65535], "a diuell in an euerlasting garment": [0, 65535], "diuell in an euerlasting garment hath": [0, 65535], "in an euerlasting garment hath him": [0, 65535], "an euerlasting garment hath him on": [0, 65535], "euerlasting garment hath him on whose": [0, 65535], "garment hath him on whose hard": [0, 65535], "hath him on whose hard heart": [0, 65535], "him on whose hard heart is": [0, 65535], "on whose hard heart is button'd": [0, 65535], "whose hard heart is button'd vp": [0, 65535], "hard heart is button'd vp with": [0, 65535], "heart is button'd vp with steele": [0, 65535], "is button'd vp with steele a": [0, 65535], "button'd vp with steele a feind": [0, 65535], "vp with steele a feind a": [0, 65535], "with steele a feind a fairie": [0, 65535], "steele a feind a fairie pittilesse": [0, 65535], "a feind a fairie pittilesse and": [0, 65535], "feind a fairie pittilesse and ruffe": [0, 65535], "a fairie pittilesse and ruffe a": [0, 65535], "fairie pittilesse and ruffe a wolfe": [0, 65535], "pittilesse and ruffe a wolfe nay": [0, 65535], "and ruffe a wolfe nay worse": [0, 65535], "ruffe a wolfe nay worse a": [0, 65535], "a wolfe nay worse a fellow": [0, 65535], "wolfe nay worse a fellow all": [0, 65535], "nay worse a fellow all in": [0, 65535], "worse a fellow all in buffe": [0, 65535], "a fellow all in buffe a": [0, 65535], "fellow all in buffe a back": [0, 65535], "all in buffe a back friend": [0, 65535], "in buffe a back friend a": [0, 65535], "buffe a back friend a shoulder": [0, 65535], "a back friend a shoulder clapper": [0, 65535], "back friend a shoulder clapper one": [0, 65535], "friend a shoulder clapper one that": [0, 65535], "a shoulder clapper one that countermads": [0, 65535], "shoulder clapper one that countermads the": [0, 65535], "clapper one that countermads the passages": [0, 65535], "one that countermads the passages of": [0, 65535], "that countermads the passages of allies": [0, 65535], "countermads the passages of allies creekes": [0, 65535], "the passages of allies creekes and": [0, 65535], "passages of allies creekes and narrow": [0, 65535], "of allies creekes and narrow lands": [0, 65535], "allies creekes and narrow lands a": [0, 65535], "creekes and narrow lands a hound": [0, 65535], "and narrow lands a hound that": [0, 65535], "narrow lands a hound that runs": [0, 65535], "lands a hound that runs counter": [0, 65535], "a hound that runs counter and": [0, 65535], "hound that runs counter and yet": [0, 65535], "that runs counter and yet draws": [0, 65535], "runs counter and yet draws drifoot": [0, 65535], "counter and yet draws drifoot well": [0, 65535], "and yet draws drifoot well one": [0, 65535], "yet draws drifoot well one that": [0, 65535], "draws drifoot well one that before": [0, 65535], "drifoot well one that before the": [0, 65535], "well one that before the iudgment": [0, 65535], "one that before the iudgment carries": [0, 65535], "that before the iudgment carries poore": [0, 65535], "before the iudgment carries poore soules": [0, 65535], "the iudgment carries poore soules to": [0, 65535], "iudgment carries poore soules to hel": [0, 65535], "carries poore soules to hel adr": [0, 65535], "poore soules to hel adr why": [0, 65535], "soules to hel adr why man": [0, 65535], "to hel adr why man what": [0, 65535], "hel adr why man what is": [0, 65535], "adr why man what is the": [0, 65535], "why man what is the matter": [0, 65535], "man what is the matter s": [0, 65535], "what is the matter s dro": [0, 65535], "is the matter s dro i": [0, 65535], "the matter s dro i doe": [0, 65535], "matter s dro i doe not": [0, 65535], "s dro i doe not know": [0, 65535], "dro i doe not know the": [0, 65535], "i doe not know the matter": [0, 65535], "doe not know the matter hee": [0, 65535], "not know the matter hee is": [0, 65535], "know the matter hee is rested": [0, 65535], "the matter hee is rested on": [0, 65535], "matter hee is rested on the": [0, 65535], "hee is rested on the case": [0, 65535], "is rested on the case adr": [0, 65535], "rested on the case adr what": [0, 65535], "on the case adr what is": [0, 65535], "the case adr what is he": [0, 65535], "case adr what is he arrested": [0, 65535], "adr what is he arrested tell": [0, 65535], "what is he arrested tell me": [0, 65535], "is he arrested tell me at": [0, 65535], "he arrested tell me at whose": [0, 65535], "arrested tell me at whose suite": [0, 65535], "tell me at whose suite s": [0, 65535], "me at whose suite s dro": [0, 65535], "at whose suite s dro i": [0, 65535], "whose suite s dro i know": [0, 65535], "suite s dro i know not": [0, 65535], "s dro i know not at": [0, 65535], "dro i know not at whose": [0, 65535], "i know not at whose suite": [0, 65535], "know not at whose suite he": [0, 65535], "not at whose suite he is": [0, 65535], "at whose suite he is arested": [0, 65535], "whose suite he is arested well": [0, 65535], "suite he is arested well but": [0, 65535], "he is arested well but is": [0, 65535], "is arested well but is in": [0, 65535], "arested well but is in a": [0, 65535], "well but is in a suite": [0, 65535], "but is in a suite of": [0, 65535], "is in a suite of buffe": [0, 65535], "in a suite of buffe which": [0, 65535], "a suite of buffe which rested": [0, 65535], "suite of buffe which rested him": [0, 65535], "of buffe which rested him that": [0, 65535], "buffe which rested him that can": [0, 65535], "which rested him that can i": [0, 65535], "rested him that can i tell": [0, 65535], "him that can i tell will": [0, 65535], "that can i tell will you": [0, 65535], "can i tell will you send": [0, 65535], "i tell will you send him": [0, 65535], "tell will you send him mistris": [0, 65535], "will you send him mistris redemption": [0, 65535], "you send him mistris redemption the": [0, 65535], "send him mistris redemption the monie": [0, 65535], "him mistris redemption the monie in": [0, 65535], "mistris redemption the monie in his": [0, 65535], "redemption the monie in his deske": [0, 65535], "the monie in his deske adr": [0, 65535], "monie in his deske adr go": [0, 65535], "in his deske adr go fetch": [0, 65535], "his deske adr go fetch it": [0, 65535], "deske adr go fetch it sister": [0, 65535], "adr go fetch it sister this": [0, 65535], "go fetch it sister this i": [0, 65535], "fetch it sister this i wonder": [0, 65535], "it sister this i wonder at": [0, 65535], "sister this i wonder at exit": [0, 65535], "this i wonder at exit luciana": [0, 65535], "i wonder at exit luciana thus": [0, 65535], "wonder at exit luciana thus he": [0, 65535], "at exit luciana thus he vnknowne": [0, 65535], "exit luciana thus he vnknowne to": [0, 65535], "luciana thus he vnknowne to me": [0, 65535], "thus he vnknowne to me should": [0, 65535], "he vnknowne to me should be": [0, 65535], "vnknowne to me should be in": [0, 65535], "to me should be in debt": [0, 65535], "me should be in debt tell": [0, 65535], "should be in debt tell me": [0, 65535], "be in debt tell me was": [0, 65535], "in debt tell me was he": [0, 65535], "debt tell me was he arested": [0, 65535], "tell me was he arested on": [0, 65535], "me was he arested on a": [0, 65535], "was he arested on a band": [0, 65535], "he arested on a band s": [0, 65535], "arested on a band s dro": [0, 65535], "on a band s dro not": [0, 65535], "a band s dro not on": [0, 65535], "band s dro not on a": [0, 65535], "s dro not on a band": [0, 65535], "dro not on a band but": [0, 65535], "not on a band but on": [0, 65535], "on a band but on a": [0, 65535], "a band but on a stronger": [0, 65535], "band but on a stronger thing": [0, 65535], "but on a stronger thing a": [0, 65535], "on a stronger thing a chaine": [0, 65535], "a stronger thing a chaine a": [0, 65535], "stronger thing a chaine a chaine": [0, 65535], "thing a chaine a chaine doe": [0, 65535], "a chaine a chaine doe you": [0, 65535], "chaine a chaine doe you not": [0, 65535], "a chaine doe you not here": [0, 65535], "chaine doe you not here it": [0, 65535], "doe you not here it ring": [0, 65535], "you not here it ring adria": [0, 65535], "not here it ring adria what": [0, 65535], "here it ring adria what the": [0, 65535], "it ring adria what the chaine": [0, 65535], "ring adria what the chaine s": [0, 65535], "adria what the chaine s dro": [0, 65535], "what the chaine s dro no": [0, 65535], "the chaine s dro no no": [0, 65535], "chaine s dro no no the": [0, 65535], "s dro no no the bell": [0, 65535], "dro no no the bell 'tis": [0, 65535], "no no the bell 'tis time": [0, 65535], "no the bell 'tis time that": [0, 65535], "the bell 'tis time that i": [0, 65535], "bell 'tis time that i were": [0, 65535], "'tis time that i were gone": [0, 65535], "time that i were gone it": [0, 65535], "that i were gone it was": [0, 65535], "i were gone it was two": [0, 65535], "were gone it was two ere": [0, 65535], "gone it was two ere i": [0, 65535], "it was two ere i left": [0, 65535], "was two ere i left him": [0, 65535], "two ere i left him and": [0, 65535], "ere i left him and now": [0, 65535], "i left him and now the": [0, 65535], "left him and now the clocke": [0, 65535], "him and now the clocke strikes": [0, 65535], "and now the clocke strikes one": [0, 65535], "now the clocke strikes one adr": [0, 65535], "the clocke strikes one adr the": [0, 65535], "clocke strikes one adr the houres": [0, 65535], "strikes one adr the houres come": [0, 65535], "one adr the houres come backe": [0, 65535], "adr the houres come backe that": [0, 65535], "the houres come backe that did": [0, 65535], "houres come backe that did i": [0, 65535], "come backe that did i neuer": [0, 65535], "backe that did i neuer here": [0, 65535], "that did i neuer here s": [0, 65535], "did i neuer here s dro": [0, 65535], "i neuer here s dro oh": [0, 65535], "neuer here s dro oh yes": [0, 65535], "here s dro oh yes if": [0, 65535], "s dro oh yes if any": [0, 65535], "dro oh yes if any houre": [0, 65535], "oh yes if any houre meete": [0, 65535], "yes if any houre meete a": [0, 65535], "if any houre meete a serieant": [0, 65535], "any houre meete a serieant a": [0, 65535], "houre meete a serieant a turnes": [0, 65535], "meete a serieant a turnes backe": [0, 65535], "a serieant a turnes backe for": [0, 65535], "serieant a turnes backe for verie": [0, 65535], "a turnes backe for verie feare": [0, 65535], "turnes backe for verie feare adri": [0, 65535], "backe for verie feare adri as": [0, 65535], "for verie feare adri as if": [0, 65535], "verie feare adri as if time": [0, 65535], "feare adri as if time were": [0, 65535], "adri as if time were in": [0, 65535], "as if time were in debt": [0, 65535], "if time were in debt how": [0, 65535], "time were in debt how fondly": [0, 65535], "were in debt how fondly do'st": [0, 65535], "in debt how fondly do'st thou": [0, 65535], "debt how fondly do'st thou reason": [0, 65535], "how fondly do'st thou reason s": [0, 65535], "fondly do'st thou reason s dro": [0, 65535], "do'st thou reason s dro time": [0, 65535], "thou reason s dro time is": [0, 65535], "reason s dro time is a": [0, 65535], "s dro time is a verie": [0, 65535], "dro time is a verie bankerout": [0, 65535], "time is a verie bankerout and": [0, 65535], "is a verie bankerout and owes": [0, 65535], "a verie bankerout and owes more": [0, 65535], "verie bankerout and owes more then": [0, 65535], "bankerout and owes more then he's": [0, 65535], "and owes more then he's worth": [0, 65535], "owes more then he's worth to": [0, 65535], "more then he's worth to season": [0, 65535], "then he's worth to season nay": [0, 65535], "he's worth to season nay he's": [0, 65535], "worth to season nay he's a": [0, 65535], "to season nay he's a theefe": [0, 65535], "season nay he's a theefe too": [0, 65535], "nay he's a theefe too haue": [0, 65535], "he's a theefe too haue you": [0, 65535], "a theefe too haue you not": [0, 65535], "theefe too haue you not heard": [0, 65535], "too haue you not heard men": [0, 65535], "haue you not heard men say": [0, 65535], "you not heard men say that": [0, 65535], "not heard men say that time": [0, 65535], "heard men say that time comes": [0, 65535], "men say that time comes stealing": [0, 65535], "say that time comes stealing on": [0, 65535], "that time comes stealing on by": [0, 65535], "time comes stealing on by night": [0, 65535], "comes stealing on by night and": [0, 65535], "stealing on by night and day": [0, 65535], "on by night and day if": [0, 65535], "by night and day if i": [0, 65535], "night and day if i be": [0, 65535], "and day if i be in": [0, 65535], "day if i be in debt": [0, 65535], "if i be in debt and": [0, 65535], "i be in debt and theft": [0, 65535], "be in debt and theft and": [0, 65535], "in debt and theft and a": [0, 65535], "debt and theft and a serieant": [0, 65535], "and theft and a serieant in": [0, 65535], "theft and a serieant in the": [0, 65535], "and a serieant in the way": [0, 65535], "a serieant in the way hath": [0, 65535], "serieant in the way hath he": [0, 65535], "in the way hath he not": [0, 65535], "the way hath he not reason": [0, 65535], "way hath he not reason to": [0, 65535], "hath he not reason to turne": [0, 65535], "he not reason to turne backe": [0, 65535], "not reason to turne backe an": [0, 65535], "reason to turne backe an houre": [0, 65535], "to turne backe an houre in": [0, 65535], "turne backe an houre in a": [0, 65535], "backe an houre in a day": [0, 65535], "an houre in a day enter": [0, 65535], "houre in a day enter luciana": [0, 65535], "in a day enter luciana adr": [0, 65535], "a day enter luciana adr go": [0, 65535], "day enter luciana adr go dromio": [0, 65535], "enter luciana adr go dromio there's": [0, 65535], "luciana adr go dromio there's the": [0, 65535], "adr go dromio there's the monie": [0, 65535], "go dromio there's the monie beare": [0, 65535], "dromio there's the monie beare it": [0, 65535], "there's the monie beare it straight": [0, 65535], "the monie beare it straight and": [0, 65535], "monie beare it straight and bring": [0, 65535], "beare it straight and bring thy": [0, 65535], "it straight and bring thy master": [0, 65535], "straight and bring thy master home": [0, 65535], "and bring thy master home imediately": [0, 65535], "bring thy master home imediately come": [0, 65535], "thy master home imediately come sister": [0, 65535], "master home imediately come sister i": [0, 65535], "home imediately come sister i am": [0, 65535], "imediately come sister i am prest": [0, 65535], "come sister i am prest downe": [0, 65535], "sister i am prest downe with": [0, 65535], "i am prest downe with conceit": [0, 65535], "am prest downe with conceit conceit": [0, 65535], "prest downe with conceit conceit my": [0, 65535], "downe with conceit conceit my comfort": [0, 65535], "with conceit conceit my comfort and": [0, 65535], "conceit conceit my comfort and my": [0, 65535], "conceit my comfort and my iniurie": [0, 65535], "my comfort and my iniurie exit": [0, 65535], "comfort and my iniurie exit enter": [0, 65535], "and my iniurie exit enter antipholus": [0, 65535], "my iniurie exit enter antipholus siracusia": [0, 65535], "iniurie exit enter antipholus siracusia there's": [0, 65535], "exit enter antipholus siracusia there's not": [0, 65535], "enter antipholus siracusia there's not a": [0, 65535], "antipholus siracusia there's not a man": [0, 65535], "siracusia there's not a man i": [0, 65535], "there's not a man i meete": [0, 65535], "not a man i meete but": [0, 65535], "a man i meete but doth": [0, 65535], "man i meete but doth salute": [0, 65535], "i meete but doth salute me": [0, 65535], "meete but doth salute me as": [0, 65535], "but doth salute me as if": [0, 65535], "doth salute me as if i": [0, 65535], "salute me as if i were": [0, 65535], "me as if i were their": [0, 65535], "as if i were their well": [0, 65535], "if i were their well acquainted": [0, 65535], "i were their well acquainted friend": [0, 65535], "were their well acquainted friend and": [0, 65535], "their well acquainted friend and euerie": [0, 65535], "well acquainted friend and euerie one": [0, 65535], "acquainted friend and euerie one doth": [0, 65535], "friend and euerie one doth call": [0, 65535], "and euerie one doth call me": [0, 65535], "euerie one doth call me by": [0, 65535], "one doth call me by my": [0, 65535], "doth call me by my name": [0, 65535], "call me by my name some": [0, 65535], "me by my name some tender": [0, 65535], "by my name some tender monie": [0, 65535], "my name some tender monie to": [0, 65535], "name some tender monie to me": [0, 65535], "some tender monie to me some": [0, 65535], "tender monie to me some inuite": [0, 65535], "monie to me some inuite me": [0, 65535], "to me some inuite me some": [0, 65535], "me some inuite me some other": [0, 65535], "some inuite me some other giue": [0, 65535], "inuite me some other giue me": [0, 65535], "me some other giue me thankes": [0, 65535], "some other giue me thankes for": [0, 65535], "other giue me thankes for kindnesses": [0, 65535], "giue me thankes for kindnesses some": [0, 65535], "me thankes for kindnesses some offer": [0, 65535], "thankes for kindnesses some offer me": [0, 65535], "for kindnesses some offer me commodities": [0, 65535], "kindnesses some offer me commodities to": [0, 65535], "some offer me commodities to buy": [0, 65535], "offer me commodities to buy euen": [0, 65535], "me commodities to buy euen now": [0, 65535], "commodities to buy euen now a": [0, 65535], "to buy euen now a tailor": [0, 65535], "buy euen now a tailor cal'd": [0, 65535], "euen now a tailor cal'd me": [0, 65535], "now a tailor cal'd me in": [0, 65535], "a tailor cal'd me in his": [0, 65535], "tailor cal'd me in his shop": [0, 65535], "cal'd me in his shop and": [0, 65535], "me in his shop and show'd": [0, 65535], "in his shop and show'd me": [0, 65535], "his shop and show'd me silkes": [0, 65535], "shop and show'd me silkes that": [0, 65535], "and show'd me silkes that he": [0, 65535], "show'd me silkes that he had": [0, 65535], "me silkes that he had bought": [0, 65535], "silkes that he had bought for": [0, 65535], "that he had bought for me": [0, 65535], "he had bought for me and": [0, 65535], "had bought for me and therewithall": [0, 65535], "bought for me and therewithall tooke": [0, 65535], "for me and therewithall tooke measure": [0, 65535], "me and therewithall tooke measure of": [0, 65535], "and therewithall tooke measure of my": [0, 65535], "therewithall tooke measure of my body": [0, 65535], "tooke measure of my body sure": [0, 65535], "measure of my body sure these": [0, 65535], "of my body sure these are": [0, 65535], "my body sure these are but": [0, 65535], "body sure these are but imaginarie": [0, 65535], "sure these are but imaginarie wiles": [0, 65535], "these are but imaginarie wiles and": [0, 65535], "are but imaginarie wiles and lapland": [0, 65535], "but imaginarie wiles and lapland sorcerers": [0, 65535], "imaginarie wiles and lapland sorcerers inhabite": [0, 65535], "wiles and lapland sorcerers inhabite here": [0, 65535], "and lapland sorcerers inhabite here enter": [0, 65535], "lapland sorcerers inhabite here enter dromio": [0, 65535], "sorcerers inhabite here enter dromio sir": [0, 65535], "inhabite here enter dromio sir s": [0, 65535], "here enter dromio sir s dro": [0, 65535], "enter dromio sir s dro master": [0, 65535], "dromio sir s dro master here's": [0, 65535], "sir s dro master here's the": [0, 65535], "s dro master here's the gold": [0, 65535], "dro master here's the gold you": [0, 65535], "master here's the gold you sent": [0, 65535], "here's the gold you sent me": [0, 65535], "the gold you sent me for": [0, 65535], "gold you sent me for what": [0, 65535], "you sent me for what haue": [0, 65535], "sent me for what haue you": [0, 65535], "me for what haue you got": [0, 65535], "for what haue you got the": [0, 65535], "what haue you got the picture": [0, 65535], "haue you got the picture of": [0, 65535], "you got the picture of old": [0, 65535], "got the picture of old adam": [0, 65535], "the picture of old adam new": [0, 65535], "picture of old adam new apparel'd": [0, 65535], "of old adam new apparel'd ant": [0, 65535], "old adam new apparel'd ant what": [0, 65535], "adam new apparel'd ant what gold": [0, 65535], "new apparel'd ant what gold is": [0, 65535], "apparel'd ant what gold is this": [0, 65535], "ant what gold is this what": [0, 65535], "what gold is this what adam": [0, 65535], "gold is this what adam do'st": [0, 65535], "is this what adam do'st thou": [0, 65535], "this what adam do'st thou meane": [0, 65535], "what adam do'st thou meane s": [0, 65535], "adam do'st thou meane s dro": [0, 65535], "do'st thou meane s dro not": [0, 65535], "thou meane s dro not that": [0, 65535], "meane s dro not that adam": [0, 65535], "s dro not that adam that": [0, 65535], "dro not that adam that kept": [0, 65535], "not that adam that kept the": [0, 65535], "that adam that kept the paradise": [0, 65535], "adam that kept the paradise but": [0, 65535], "that kept the paradise but that": [0, 65535], "kept the paradise but that adam": [0, 65535], "the paradise but that adam that": [0, 65535], "paradise but that adam that keepes": [0, 65535], "but that adam that keepes the": [0, 65535], "that adam that keepes the prison": [0, 65535], "adam that keepes the prison hee": [0, 65535], "that keepes the prison hee that": [0, 65535], "keepes the prison hee that goes": [0, 65535], "the prison hee that goes in": [0, 65535], "prison hee that goes in the": [0, 65535], "hee that goes in the calues": [0, 65535], "that goes in the calues skin": [0, 65535], "goes in the calues skin that": [0, 65535], "in the calues skin that was": [0, 65535], "the calues skin that was kil'd": [0, 65535], "calues skin that was kil'd for": [0, 65535], "skin that was kil'd for the": [0, 65535], "that was kil'd for the prodigall": [0, 65535], "was kil'd for the prodigall hee": [0, 65535], "kil'd for the prodigall hee that": [0, 65535], "for the prodigall hee that came": [0, 65535], "the prodigall hee that came behinde": [0, 65535], "prodigall hee that came behinde you": [0, 65535], "hee that came behinde you sir": [0, 65535], "that came behinde you sir like": [0, 65535], "came behinde you sir like an": [0, 65535], "behinde you sir like an euill": [0, 65535], "you sir like an euill angel": [0, 65535], "sir like an euill angel and": [0, 65535], "like an euill angel and bid": [0, 65535], "an euill angel and bid you": [0, 65535], "euill angel and bid you forsake": [0, 65535], "angel and bid you forsake your": [0, 65535], "and bid you forsake your libertie": [0, 65535], "bid you forsake your libertie ant": [0, 65535], "you forsake your libertie ant i": [0, 65535], "forsake your libertie ant i vnderstand": [0, 65535], "your libertie ant i vnderstand thee": [0, 65535], "libertie ant i vnderstand thee not": [0, 65535], "ant i vnderstand thee not s": [0, 65535], "i vnderstand thee not s dro": [0, 65535], "vnderstand thee not s dro no": [0, 65535], "thee not s dro no why": [0, 65535], "not s dro no why 'tis": [0, 65535], "s dro no why 'tis a": [0, 65535], "dro no why 'tis a plaine": [0, 65535], "no why 'tis a plaine case": [0, 65535], "why 'tis a plaine case he": [0, 65535], "'tis a plaine case he that": [0, 65535], "a plaine case he that went": [0, 65535], "plaine case he that went like": [0, 65535], "case he that went like a": [0, 65535], "he that went like a base": [0, 65535], "that went like a base viole": [0, 65535], "went like a base viole in": [0, 65535], "like a base viole in a": [0, 65535], "a base viole in a case": [0, 65535], "base viole in a case of": [0, 65535], "viole in a case of leather": [0, 65535], "in a case of leather the": [0, 65535], "a case of leather the man": [0, 65535], "case of leather the man sir": [0, 65535], "of leather the man sir that": [0, 65535], "leather the man sir that when": [0, 65535], "the man sir that when gentlemen": [0, 65535], "man sir that when gentlemen are": [0, 65535], "sir that when gentlemen are tired": [0, 65535], "that when gentlemen are tired giues": [0, 65535], "when gentlemen are tired giues them": [0, 65535], "gentlemen are tired giues them a": [0, 65535], "are tired giues them a sob": [0, 65535], "tired giues them a sob and": [0, 65535], "giues them a sob and rests": [0, 65535], "them a sob and rests them": [0, 65535], "a sob and rests them he": [0, 65535], "sob and rests them he sir": [0, 65535], "and rests them he sir that": [0, 65535], "rests them he sir that takes": [0, 65535], "them he sir that takes pittie": [0, 65535], "he sir that takes pittie on": [0, 65535], "sir that takes pittie on decaied": [0, 65535], "that takes pittie on decaied men": [0, 65535], "takes pittie on decaied men and": [0, 65535], "pittie on decaied men and giues": [0, 65535], "on decaied men and giues them": [0, 65535], "decaied men and giues them suites": [0, 65535], "men and giues them suites of": [0, 65535], "and giues them suites of durance": [0, 65535], "giues them suites of durance he": [0, 65535], "them suites of durance he that": [0, 65535], "suites of durance he that sets": [0, 65535], "of durance he that sets vp": [0, 65535], "durance he that sets vp his": [0, 65535], "he that sets vp his rest": [0, 65535], "that sets vp his rest to": [0, 65535], "sets vp his rest to doe": [0, 65535], "vp his rest to doe more": [0, 65535], "his rest to doe more exploits": [0, 65535], "rest to doe more exploits with": [0, 65535], "to doe more exploits with his": [0, 65535], "doe more exploits with his mace": [0, 65535], "more exploits with his mace then": [0, 65535], "exploits with his mace then a": [0, 65535], "with his mace then a moris": [0, 65535], "his mace then a moris pike": [0, 65535], "mace then a moris pike ant": [0, 65535], "then a moris pike ant what": [0, 65535], "a moris pike ant what thou": [0, 65535], "moris pike ant what thou mean'st": [0, 65535], "pike ant what thou mean'st an": [0, 65535], "ant what thou mean'st an officer": [0, 65535], "what thou mean'st an officer s": [0, 65535], "thou mean'st an officer s dro": [0, 65535], "mean'st an officer s dro i": [0, 65535], "an officer s dro i sir": [0, 65535], "officer s dro i sir the": [0, 65535], "s dro i sir the serieant": [0, 65535], "dro i sir the serieant of": [0, 65535], "i sir the serieant of the": [0, 65535], "sir the serieant of the band": [0, 65535], "the serieant of the band he": [0, 65535], "serieant of the band he that": [0, 65535], "of the band he that brings": [0, 65535], "the band he that brings any": [0, 65535], "band he that brings any man": [0, 65535], "he that brings any man to": [0, 65535], "that brings any man to answer": [0, 65535], "brings any man to answer it": [0, 65535], "any man to answer it that": [0, 65535], "man to answer it that breakes": [0, 65535], "to answer it that breakes his": [0, 65535], "answer it that breakes his band": [0, 65535], "it that breakes his band one": [0, 65535], "that breakes his band one that": [0, 65535], "breakes his band one that thinkes": [0, 65535], "his band one that thinkes a": [0, 65535], "band one that thinkes a man": [0, 65535], "one that thinkes a man alwaies": [0, 65535], "that thinkes a man alwaies going": [0, 65535], "thinkes a man alwaies going to": [0, 65535], "a man alwaies going to bed": [0, 65535], "man alwaies going to bed and": [0, 65535], "alwaies going to bed and saies": [0, 65535], "going to bed and saies god": [0, 65535], "to bed and saies god giue": [0, 65535], "bed and saies god giue you": [0, 65535], "and saies god giue you good": [0, 65535], "saies god giue you good rest": [0, 65535], "god giue you good rest ant": [0, 65535], "giue you good rest ant well": [0, 65535], "you good rest ant well sir": [0, 65535], "good rest ant well sir there": [0, 65535], "rest ant well sir there rest": [0, 65535], "ant well sir there rest in": [0, 65535], "well sir there rest in your": [0, 65535], "sir there rest in your foolerie": [0, 65535], "there rest in your foolerie is": [0, 65535], "rest in your foolerie is there": [0, 65535], "in your foolerie is there any": [0, 65535], "your foolerie is there any ships": [0, 65535], "foolerie is there any ships puts": [0, 65535], "is there any ships puts forth": [0, 65535], "there any ships puts forth to": [0, 65535], "any ships puts forth to night": [0, 65535], "ships puts forth to night may": [0, 65535], "puts forth to night may we": [0, 65535], "forth to night may we be": [0, 65535], "to night may we be gone": [0, 65535], "night may we be gone s": [0, 65535], "may we be gone s dro": [0, 65535], "we be gone s dro why": [0, 65535], "be gone s dro why sir": [0, 65535], "gone s dro why sir i": [0, 65535], "s dro why sir i brought": [0, 65535], "dro why sir i brought you": [0, 65535], "why sir i brought you word": [0, 65535], "sir i brought you word an": [0, 65535], "i brought you word an houre": [0, 65535], "brought you word an houre since": [0, 65535], "you word an houre since that": [0, 65535], "word an houre since that the": [0, 65535], "an houre since that the barke": [0, 65535], "houre since that the barke expedition": [0, 65535], "since that the barke expedition put": [0, 65535], "that the barke expedition put forth": [0, 65535], "the barke expedition put forth to": [0, 65535], "barke expedition put forth to night": [0, 65535], "expedition put forth to night and": [0, 65535], "put forth to night and then": [0, 65535], "forth to night and then were": [0, 65535], "to night and then were you": [0, 65535], "night and then were you hindred": [0, 65535], "and then were you hindred by": [0, 65535], "then were you hindred by the": [0, 65535], "were you hindred by the serieant": [0, 65535], "you hindred by the serieant to": [0, 65535], "hindred by the serieant to tarry": [0, 65535], "by the serieant to tarry for": [0, 65535], "the serieant to tarry for the": [0, 65535], "serieant to tarry for the hoy": [0, 65535], "to tarry for the hoy delay": [0, 65535], "tarry for the hoy delay here": [0, 65535], "for the hoy delay here are": [0, 65535], "the hoy delay here are the": [0, 65535], "hoy delay here are the angels": [0, 65535], "delay here are the angels that": [0, 65535], "here are the angels that you": [0, 65535], "are the angels that you sent": [0, 65535], "the angels that you sent for": [0, 65535], "angels that you sent for to": [0, 65535], "that you sent for to deliuer": [0, 65535], "you sent for to deliuer you": [0, 65535], "sent for to deliuer you ant": [0, 65535], "for to deliuer you ant the": [0, 65535], "to deliuer you ant the fellow": [0, 65535], "deliuer you ant the fellow is": [0, 65535], "you ant the fellow is distract": [0, 65535], "ant the fellow is distract and": [0, 65535], "the fellow is distract and so": [0, 65535], "fellow is distract and so am": [0, 65535], "is distract and so am i": [0, 65535], "distract and so am i and": [0, 65535], "and so am i and here": [0, 65535], "so am i and here we": [0, 65535], "am i and here we wander": [0, 65535], "i and here we wander in": [0, 65535], "and here we wander in illusions": [0, 65535], "here we wander in illusions some": [0, 65535], "we wander in illusions some blessed": [0, 65535], "wander in illusions some blessed power": [0, 65535], "in illusions some blessed power deliuer": [0, 65535], "illusions some blessed power deliuer vs": [0, 65535], "some blessed power deliuer vs from": [0, 65535], "blessed power deliuer vs from hence": [0, 65535], "power deliuer vs from hence enter": [0, 65535], "deliuer vs from hence enter a": [0, 65535], "vs from hence enter a curtizan": [0, 65535], "from hence enter a curtizan cur": [0, 65535], "hence enter a curtizan cur well": [0, 65535], "enter a curtizan cur well met": [0, 65535], "a curtizan cur well met well": [0, 65535], "curtizan cur well met well met": [0, 65535], "cur well met well met master": [0, 65535], "well met well met master antipholus": [0, 65535], "met well met master antipholus i": [0, 65535], "well met master antipholus i see": [0, 65535], "met master antipholus i see sir": [0, 65535], "master antipholus i see sir you": [0, 65535], "antipholus i see sir you haue": [0, 65535], "i see sir you haue found": [0, 65535], "see sir you haue found the": [0, 65535], "sir you haue found the gold": [0, 65535], "you haue found the gold smith": [0, 65535], "haue found the gold smith now": [0, 65535], "found the gold smith now is": [0, 65535], "the gold smith now is that": [0, 65535], "gold smith now is that the": [0, 65535], "smith now is that the chaine": [0, 65535], "now is that the chaine you": [0, 65535], "is that the chaine you promis'd": [0, 65535], "that the chaine you promis'd me": [0, 65535], "the chaine you promis'd me to": [0, 65535], "chaine you promis'd me to day": [0, 65535], "you promis'd me to day ant": [0, 65535], "promis'd me to day ant sathan": [0, 65535], "me to day ant sathan auoide": [0, 65535], "to day ant sathan auoide i": [0, 65535], "day ant sathan auoide i charge": [0, 65535], "ant sathan auoide i charge thee": [0, 65535], "sathan auoide i charge thee tempt": [0, 65535], "auoide i charge thee tempt me": [0, 65535], "i charge thee tempt me not": [0, 65535], "charge thee tempt me not s": [0, 65535], "thee tempt me not s dro": [0, 65535], "tempt me not s dro master": [0, 65535], "me not s dro master is": [0, 65535], "not s dro master is this": [0, 65535], "s dro master is this mistris": [0, 65535], "dro master is this mistris sathan": [0, 65535], "master is this mistris sathan ant": [0, 65535], "is this mistris sathan ant it": [0, 65535], "this mistris sathan ant it is": [0, 65535], "mistris sathan ant it is the": [0, 65535], "sathan ant it is the diuell": [0, 65535], "ant it is the diuell s": [0, 65535], "it is the diuell s dro": [0, 65535], "is the diuell s dro nay": [0, 65535], "the diuell s dro nay she": [0, 65535], "diuell s dro nay she is": [0, 65535], "s dro nay she is worse": [0, 65535], "dro nay she is worse she": [0, 65535], "nay she is worse she is": [0, 65535], "she is worse she is the": [0, 65535], "is worse she is the diuels": [0, 65535], "worse she is the diuels dam": [0, 65535], "she is the diuels dam and": [0, 65535], "is the diuels dam and here": [0, 65535], "the diuels dam and here she": [0, 65535], "diuels dam and here she comes": [0, 65535], "dam and here she comes in": [0, 65535], "and here she comes in the": [0, 65535], "here she comes in the habit": [0, 65535], "she comes in the habit of": [0, 65535], "comes in the habit of a": [0, 65535], "in the habit of a light": [0, 65535], "the habit of a light wench": [0, 65535], "habit of a light wench and": [0, 65535], "of a light wench and thereof": [0, 65535], "a light wench and thereof comes": [0, 65535], "light wench and thereof comes that": [0, 65535], "wench and thereof comes that the": [0, 65535], "and thereof comes that the wenches": [0, 65535], "thereof comes that the wenches say": [0, 65535], "comes that the wenches say god": [0, 65535], "that the wenches say god dam": [0, 65535], "the wenches say god dam me": [0, 65535], "wenches say god dam me that's": [0, 65535], "say god dam me that's as": [0, 65535], "god dam me that's as much": [0, 65535], "dam me that's as much to": [0, 65535], "me that's as much to say": [0, 65535], "that's as much to say god": [0, 65535], "as much to say god make": [0, 65535], "much to say god make me": [0, 65535], "to say god make me a": [0, 65535], "say god make me a light": [0, 65535], "god make me a light wench": [0, 65535], "make me a light wench it": [0, 65535], "me a light wench it is": [0, 65535], "a light wench it is written": [0, 65535], "light wench it is written they": [0, 65535], "wench it is written they appeare": [0, 65535], "it is written they appeare to": [0, 65535], "is written they appeare to men": [0, 65535], "written they appeare to men like": [0, 65535], "they appeare to men like angels": [0, 65535], "appeare to men like angels of": [0, 65535], "to men like angels of light": [0, 65535], "men like angels of light light": [0, 65535], "like angels of light light is": [0, 65535], "angels of light light is an": [0, 65535], "of light light is an effect": [0, 65535], "light light is an effect of": [0, 65535], "light is an effect of fire": [0, 65535], "is an effect of fire and": [0, 65535], "an effect of fire and fire": [0, 65535], "effect of fire and fire will": [0, 65535], "of fire and fire will burne": [0, 65535], "fire and fire will burne ergo": [0, 65535], "and fire will burne ergo light": [0, 65535], "fire will burne ergo light wenches": [0, 65535], "will burne ergo light wenches will": [0, 65535], "burne ergo light wenches will burne": [0, 65535], "ergo light wenches will burne come": [0, 65535], "light wenches will burne come not": [0, 65535], "wenches will burne come not neere": [0, 65535], "will burne come not neere her": [0, 65535], "burne come not neere her cur": [0, 65535], "come not neere her cur your": [0, 65535], "not neere her cur your man": [0, 65535], "neere her cur your man and": [0, 65535], "her cur your man and you": [0, 65535], "cur your man and you are": [0, 65535], "your man and you are maruailous": [0, 65535], "man and you are maruailous merrie": [0, 65535], "and you are maruailous merrie sir": [0, 65535], "you are maruailous merrie sir will": [0, 65535], "are maruailous merrie sir will you": [0, 65535], "maruailous merrie sir will you goe": [0, 65535], "merrie sir will you goe with": [0, 65535], "sir will you goe with me": [0, 65535], "will you goe with me wee'll": [0, 65535], "you goe with me wee'll mend": [0, 65535], "goe with me wee'll mend our": [0, 65535], "with me wee'll mend our dinner": [0, 65535], "me wee'll mend our dinner here": [0, 65535], "wee'll mend our dinner here s": [0, 65535], "mend our dinner here s dro": [0, 65535], "our dinner here s dro master": [0, 65535], "dinner here s dro master if": [0, 65535], "here s dro master if do": [0, 65535], "s dro master if do expect": [0, 65535], "dro master if do expect spoon": [0, 65535], "master if do expect spoon meate": [0, 65535], "if do expect spoon meate or": [0, 65535], "do expect spoon meate or bespeake": [0, 65535], "expect spoon meate or bespeake a": [0, 65535], "spoon meate or bespeake a long": [0, 65535], "meate or bespeake a long spoone": [0, 65535], "or bespeake a long spoone ant": [0, 65535], "bespeake a long spoone ant why": [0, 65535], "a long spoone ant why dromio": [0, 65535], "long spoone ant why dromio s": [0, 65535], "spoone ant why dromio s dro": [0, 65535], "ant why dromio s dro marrie": [0, 65535], "why dromio s dro marrie he": [0, 65535], "dromio s dro marrie he must": [0, 65535], "s dro marrie he must haue": [0, 65535], "dro marrie he must haue a": [0, 65535], "marrie he must haue a long": [0, 65535], "he must haue a long spoone": [0, 65535], "must haue a long spoone that": [0, 65535], "haue a long spoone that must": [0, 65535], "a long spoone that must eate": [0, 65535], "long spoone that must eate with": [0, 65535], "spoone that must eate with the": [0, 65535], "that must eate with the diuell": [0, 65535], "must eate with the diuell ant": [0, 65535], "eate with the diuell ant auoid": [0, 65535], "with the diuell ant auoid then": [0, 65535], "the diuell ant auoid then fiend": [0, 65535], "diuell ant auoid then fiend what": [0, 65535], "ant auoid then fiend what tel'st": [0, 65535], "auoid then fiend what tel'st thou": [0, 65535], "then fiend what tel'st thou me": [0, 65535], "fiend what tel'st thou me of": [0, 65535], "what tel'st thou me of supping": [0, 65535], "tel'st thou me of supping thou": [0, 65535], "thou me of supping thou art": [0, 65535], "me of supping thou art as": [0, 65535], "of supping thou art as you": [0, 65535], "supping thou art as you are": [0, 65535], "thou art as you are all": [0, 65535], "art as you are all a": [0, 65535], "as you are all a sorceresse": [0, 65535], "you are all a sorceresse i": [0, 65535], "are all a sorceresse i coniure": [0, 65535], "all a sorceresse i coniure thee": [0, 65535], "a sorceresse i coniure thee to": [0, 65535], "sorceresse i coniure thee to leaue": [0, 65535], "i coniure thee to leaue me": [0, 65535], "coniure thee to leaue me and": [0, 65535], "thee to leaue me and be": [0, 65535], "to leaue me and be gon": [0, 65535], "leaue me and be gon cur": [0, 65535], "me and be gon cur giue": [0, 65535], "and be gon cur giue me": [0, 65535], "be gon cur giue me the": [0, 65535], "gon cur giue me the ring": [0, 65535], "cur giue me the ring of": [0, 65535], "giue me the ring of mine": [0, 65535], "me the ring of mine you": [0, 65535], "the ring of mine you had": [0, 65535], "ring of mine you had at": [0, 65535], "of mine you had at dinner": [0, 65535], "mine you had at dinner or": [0, 65535], "you had at dinner or for": [0, 65535], "had at dinner or for my": [0, 65535], "at dinner or for my diamond": [0, 65535], "dinner or for my diamond the": [0, 65535], "or for my diamond the chaine": [0, 65535], "for my diamond the chaine you": [0, 65535], "my diamond the chaine you promis'd": [0, 65535], "diamond the chaine you promis'd and": [0, 65535], "the chaine you promis'd and ile": [0, 65535], "chaine you promis'd and ile be": [0, 65535], "you promis'd and ile be gone": [0, 65535], "promis'd and ile be gone sir": [0, 65535], "and ile be gone sir and": [0, 65535], "ile be gone sir and not": [0, 65535], "be gone sir and not trouble": [0, 65535], "gone sir and not trouble you": [0, 65535], "sir and not trouble you s": [0, 65535], "and not trouble you s dro": [0, 65535], "not trouble you s dro some": [0, 65535], "trouble you s dro some diuels": [0, 65535], "you s dro some diuels aske": [0, 65535], "s dro some diuels aske but": [0, 65535], "dro some diuels aske but the": [0, 65535], "some diuels aske but the parings": [0, 65535], "diuels aske but the parings of": [0, 65535], "aske but the parings of ones": [0, 65535], "but the parings of ones naile": [0, 65535], "the parings of ones naile a": [0, 65535], "parings of ones naile a rush": [0, 65535], "of ones naile a rush a": [0, 65535], "ones naile a rush a haire": [0, 65535], "naile a rush a haire a": [0, 65535], "a rush a haire a drop": [0, 65535], "rush a haire a drop of": [0, 65535], "a haire a drop of blood": [0, 65535], "haire a drop of blood a": [0, 65535], "a drop of blood a pin": [0, 65535], "drop of blood a pin a": [0, 65535], "of blood a pin a nut": [0, 65535], "blood a pin a nut a": [0, 65535], "a pin a nut a cherrie": [0, 65535], "pin a nut a cherrie stone": [0, 65535], "a nut a cherrie stone but": [0, 65535], "nut a cherrie stone but she": [0, 65535], "a cherrie stone but she more": [0, 65535], "cherrie stone but she more couetous": [0, 65535], "stone but she more couetous wold": [0, 65535], "but she more couetous wold haue": [0, 65535], "she more couetous wold haue a": [0, 65535], "more couetous wold haue a chaine": [0, 65535], "couetous wold haue a chaine master": [0, 65535], "wold haue a chaine master be": [0, 65535], "haue a chaine master be wise": [0, 65535], "a chaine master be wise and": [0, 65535], "chaine master be wise and if": [0, 65535], "master be wise and if you": [0, 65535], "be wise and if you giue": [0, 65535], "wise and if you giue it": [0, 65535], "and if you giue it her": [0, 65535], "if you giue it her the": [0, 65535], "you giue it her the diuell": [0, 65535], "giue it her the diuell will": [0, 65535], "it her the diuell will shake": [0, 65535], "her the diuell will shake her": [0, 65535], "the diuell will shake her chaine": [0, 65535], "diuell will shake her chaine and": [0, 65535], "will shake her chaine and fright": [0, 65535], "shake her chaine and fright vs": [0, 65535], "her chaine and fright vs with": [0, 65535], "chaine and fright vs with it": [0, 65535], "and fright vs with it cur": [0, 65535], "fright vs with it cur i": [0, 65535], "vs with it cur i pray": [0, 65535], "with it cur i pray you": [0, 65535], "it cur i pray you sir": [0, 65535], "cur i pray you sir my": [0, 65535], "i pray you sir my ring": [0, 65535], "pray you sir my ring or": [0, 65535], "you sir my ring or else": [0, 65535], "sir my ring or else the": [0, 65535], "my ring or else the chaine": [0, 65535], "ring or else the chaine i": [0, 65535], "or else the chaine i hope": [0, 65535], "else the chaine i hope you": [0, 65535], "the chaine i hope you do": [0, 65535], "chaine i hope you do not": [0, 65535], "i hope you do not meane": [0, 65535], "hope you do not meane to": [0, 65535], "you do not meane to cheate": [0, 65535], "do not meane to cheate me": [0, 65535], "not meane to cheate me so": [0, 65535], "meane to cheate me so ant": [0, 65535], "to cheate me so ant auant": [0, 65535], "cheate me so ant auant thou": [0, 65535], "me so ant auant thou witch": [0, 65535], "so ant auant thou witch come": [0, 65535], "ant auant thou witch come dromio": [0, 65535], "auant thou witch come dromio let": [0, 65535], "thou witch come dromio let vs": [0, 65535], "witch come dromio let vs go": [0, 65535], "come dromio let vs go s": [0, 65535], "dromio let vs go s dro": [0, 65535], "let vs go s dro flie": [0, 65535], "vs go s dro flie pride": [0, 65535], "go s dro flie pride saies": [0, 65535], "s dro flie pride saies the": [0, 65535], "dro flie pride saies the pea": [0, 65535], "flie pride saies the pea cocke": [0, 65535], "pride saies the pea cocke mistris": [0, 65535], "saies the pea cocke mistris that": [0, 65535], "the pea cocke mistris that you": [0, 65535], "pea cocke mistris that you know": [0, 65535], "cocke mistris that you know exit": [0, 65535], "mistris that you know exit cur": [0, 65535], "that you know exit cur now": [0, 65535], "you know exit cur now out": [0, 65535], "know exit cur now out of": [0, 65535], "exit cur now out of doubt": [0, 65535], "cur now out of doubt antipholus": [0, 65535], "now out of doubt antipholus is": [0, 65535], "out of doubt antipholus is mad": [0, 65535], "of doubt antipholus is mad else": [0, 65535], "doubt antipholus is mad else would": [0, 65535], "antipholus is mad else would he": [0, 65535], "is mad else would he neuer": [0, 65535], "mad else would he neuer so": [0, 65535], "else would he neuer so demeane": [0, 65535], "would he neuer so demeane himselfe": [0, 65535], "he neuer so demeane himselfe a": [0, 65535], "neuer so demeane himselfe a ring": [0, 65535], "so demeane himselfe a ring he": [0, 65535], "demeane himselfe a ring he hath": [0, 65535], "himselfe a ring he hath of": [0, 65535], "a ring he hath of mine": [0, 65535], "ring he hath of mine worth": [0, 65535], "he hath of mine worth fortie": [0, 65535], "hath of mine worth fortie duckets": [0, 65535], "of mine worth fortie duckets and": [0, 65535], "mine worth fortie duckets and for": [0, 65535], "worth fortie duckets and for the": [0, 65535], "fortie duckets and for the same": [0, 65535], "duckets and for the same he": [0, 65535], "and for the same he promis'd": [0, 65535], "for the same he promis'd me": [0, 65535], "the same he promis'd me a": [0, 65535], "same he promis'd me a chaine": [0, 65535], "he promis'd me a chaine both": [0, 65535], "promis'd me a chaine both one": [0, 65535], "me a chaine both one and": [0, 65535], "a chaine both one and other": [0, 65535], "chaine both one and other he": [0, 65535], "both one and other he denies": [0, 65535], "one and other he denies me": [0, 65535], "and other he denies me now": [0, 65535], "other he denies me now the": [0, 65535], "he denies me now the reason": [0, 65535], "denies me now the reason that": [0, 65535], "me now the reason that i": [0, 65535], "now the reason that i gather": [0, 65535], "the reason that i gather he": [0, 65535], "reason that i gather he is": [0, 65535], "that i gather he is mad": [0, 65535], "i gather he is mad besides": [0, 65535], "gather he is mad besides this": [0, 65535], "he is mad besides this present": [0, 65535], "is mad besides this present instance": [0, 65535], "mad besides this present instance of": [0, 65535], "besides this present instance of his": [0, 65535], "this present instance of his rage": [0, 65535], "present instance of his rage is": [0, 65535], "instance of his rage is a": [0, 65535], "of his rage is a mad": [0, 65535], "his rage is a mad tale": [0, 65535], "rage is a mad tale he": [0, 65535], "is a mad tale he told": [0, 65535], "a mad tale he told to": [0, 65535], "mad tale he told to day": [0, 65535], "tale he told to day at": [0, 65535], "he told to day at dinner": [0, 65535], "told to day at dinner of": [0, 65535], "to day at dinner of his": [0, 65535], "day at dinner of his owne": [0, 65535], "at dinner of his owne doores": [0, 65535], "dinner of his owne doores being": [0, 65535], "of his owne doores being shut": [0, 65535], "his owne doores being shut against": [0, 65535], "owne doores being shut against his": [0, 65535], "doores being shut against his entrance": [0, 65535], "being shut against his entrance belike": [0, 65535], "shut against his entrance belike his": [0, 65535], "against his entrance belike his wife": [0, 65535], "his entrance belike his wife acquainted": [0, 65535], "entrance belike his wife acquainted with": [0, 65535], "belike his wife acquainted with his": [0, 65535], "his wife acquainted with his fits": [0, 65535], "wife acquainted with his fits on": [0, 65535], "acquainted with his fits on purpose": [0, 65535], "with his fits on purpose shut": [0, 65535], "his fits on purpose shut the": [0, 65535], "fits on purpose shut the doores": [0, 65535], "on purpose shut the doores against": [0, 65535], "purpose shut the doores against his": [0, 65535], "shut the doores against his way": [0, 65535], "the doores against his way my": [0, 65535], "doores against his way my way": [0, 65535], "against his way my way is": [0, 65535], "his way my way is now": [0, 65535], "way my way is now to": [0, 65535], "my way is now to hie": [0, 65535], "way is now to hie home": [0, 65535], "is now to hie home to": [0, 65535], "now to hie home to his": [0, 65535], "to hie home to his house": [0, 65535], "hie home to his house and": [0, 65535], "home to his house and tell": [0, 65535], "to his house and tell his": [0, 65535], "his house and tell his wife": [0, 65535], "house and tell his wife that": [0, 65535], "and tell his wife that being": [0, 65535], "tell his wife that being lunaticke": [0, 65535], "his wife that being lunaticke he": [0, 65535], "wife that being lunaticke he rush'd": [0, 65535], "that being lunaticke he rush'd into": [0, 65535], "being lunaticke he rush'd into my": [0, 65535], "lunaticke he rush'd into my house": [0, 65535], "he rush'd into my house and": [0, 65535], "rush'd into my house and tooke": [0, 65535], "into my house and tooke perforce": [0, 65535], "my house and tooke perforce my": [0, 65535], "house and tooke perforce my ring": [0, 65535], "and tooke perforce my ring away": [0, 65535], "tooke perforce my ring away this": [0, 65535], "perforce my ring away this course": [0, 65535], "my ring away this course i": [0, 65535], "ring away this course i fittest": [0, 65535], "away this course i fittest choose": [0, 65535], "this course i fittest choose for": [0, 65535], "course i fittest choose for fortie": [0, 65535], "i fittest choose for fortie duckets": [0, 65535], "fittest choose for fortie duckets is": [0, 65535], "choose for fortie duckets is too": [0, 65535], "for fortie duckets is too much": [0, 65535], "fortie duckets is too much to": [0, 65535], "duckets is too much to loose": [0, 65535], "is too much to loose enter": [0, 65535], "too much to loose enter antipholus": [0, 65535], "much to loose enter antipholus ephes": [0, 65535], "to loose enter antipholus ephes with": [0, 65535], "loose enter antipholus ephes with a": [0, 65535], "enter antipholus ephes with a iailor": [0, 65535], "antipholus ephes with a iailor an": [0, 65535], "ephes with a iailor an feare": [0, 65535], "with a iailor an feare me": [0, 65535], "a iailor an feare me not": [0, 65535], "iailor an feare me not man": [0, 65535], "an feare me not man i": [0, 65535], "feare me not man i will": [0, 65535], "me not man i will not": [0, 65535], "not man i will not breake": [0, 65535], "man i will not breake away": [0, 65535], "i will not breake away ile": [0, 65535], "will not breake away ile giue": [0, 65535], "not breake away ile giue thee": [0, 65535], "breake away ile giue thee ere": [0, 65535], "away ile giue thee ere i": [0, 65535], "ile giue thee ere i leaue": [0, 65535], "giue thee ere i leaue thee": [0, 65535], "thee ere i leaue thee so": [0, 65535], "ere i leaue thee so much": [0, 65535], "i leaue thee so much money": [0, 65535], "leaue thee so much money to": [0, 65535], "thee so much money to warrant": [0, 65535], "so much money to warrant thee": [0, 65535], "much money to warrant thee as": [0, 65535], "money to warrant thee as i": [0, 65535], "to warrant thee as i am": [0, 65535], "warrant thee as i am rested": [0, 65535], "thee as i am rested for": [0, 65535], "as i am rested for my": [0, 65535], "i am rested for my wife": [0, 65535], "am rested for my wife is": [0, 65535], "rested for my wife is in": [0, 65535], "for my wife is in a": [0, 65535], "my wife is in a wayward": [0, 65535], "wife is in a wayward moode": [0, 65535], "is in a wayward moode to": [0, 65535], "in a wayward moode to day": [0, 65535], "a wayward moode to day and": [0, 65535], "wayward moode to day and will": [0, 65535], "moode to day and will not": [0, 65535], "to day and will not lightly": [0, 65535], "day and will not lightly trust": [0, 65535], "and will not lightly trust the": [0, 65535], "will not lightly trust the messenger": [0, 65535], "not lightly trust the messenger that": [0, 65535], "lightly trust the messenger that i": [0, 65535], "trust the messenger that i should": [0, 65535], "the messenger that i should be": [0, 65535], "messenger that i should be attach'd": [0, 65535], "that i should be attach'd in": [0, 65535], "i should be attach'd in ephesus": [0, 65535], "should be attach'd in ephesus i": [0, 65535], "be attach'd in ephesus i tell": [0, 65535], "attach'd in ephesus i tell you": [0, 65535], "in ephesus i tell you 'twill": [0, 65535], "ephesus i tell you 'twill sound": [0, 65535], "i tell you 'twill sound harshly": [0, 65535], "tell you 'twill sound harshly in": [0, 65535], "you 'twill sound harshly in her": [0, 65535], "'twill sound harshly in her eares": [0, 65535], "sound harshly in her eares enter": [0, 65535], "harshly in her eares enter dromio": [0, 65535], "in her eares enter dromio eph": [0, 65535], "her eares enter dromio eph with": [0, 65535], "eares enter dromio eph with a": [0, 65535], "enter dromio eph with a ropes": [0, 65535], "dromio eph with a ropes end": [0, 65535], "eph with a ropes end heere": [0, 65535], "with a ropes end heere comes": [0, 65535], "a ropes end heere comes my": [0, 65535], "ropes end heere comes my man": [0, 65535], "end heere comes my man i": [0, 65535], "heere comes my man i thinke": [0, 65535], "comes my man i thinke he": [0, 65535], "my man i thinke he brings": [0, 65535], "man i thinke he brings the": [0, 65535], "i thinke he brings the monie": [0, 65535], "thinke he brings the monie how": [0, 65535], "he brings the monie how now": [0, 65535], "brings the monie how now sir": [0, 65535], "the monie how now sir haue": [0, 65535], "monie how now sir haue you": [0, 65535], "how now sir haue you that": [0, 65535], "now sir haue you that i": [0, 65535], "sir haue you that i sent": [0, 65535], "haue you that i sent you": [0, 65535], "you that i sent you for": [0, 65535], "that i sent you for e": [0, 65535], "i sent you for e dro": [0, 65535], "sent you for e dro here's": [0, 65535], "you for e dro here's that": [0, 65535], "for e dro here's that i": [0, 65535], "e dro here's that i warrant": [0, 65535], "dro here's that i warrant you": [0, 65535], "here's that i warrant you will": [0, 65535], "that i warrant you will pay": [0, 65535], "i warrant you will pay them": [0, 65535], "warrant you will pay them all": [0, 65535], "you will pay them all anti": [0, 65535], "will pay them all anti but": [0, 65535], "pay them all anti but where's": [0, 65535], "them all anti but where's the": [0, 65535], "all anti but where's the money": [0, 65535], "anti but where's the money e": [0, 65535], "but where's the money e dro": [0, 65535], "where's the money e dro why": [0, 65535], "the money e dro why sir": [0, 65535], "money e dro why sir i": [0, 65535], "e dro why sir i gaue": [0, 65535], "dro why sir i gaue the": [0, 65535], "why sir i gaue the monie": [0, 65535], "sir i gaue the monie for": [0, 65535], "i gaue the monie for the": [0, 65535], "gaue the monie for the rope": [0, 65535], "the monie for the rope ant": [0, 65535], "monie for the rope ant fiue": [0, 65535], "for the rope ant fiue hundred": [0, 65535], "the rope ant fiue hundred duckets": [0, 65535], "rope ant fiue hundred duckets villaine": [0, 65535], "ant fiue hundred duckets villaine for": [0, 65535], "fiue hundred duckets villaine for a": [0, 65535], "hundred duckets villaine for a rope": [0, 65535], "duckets villaine for a rope e": [0, 65535], "villaine for a rope e dro": [0, 65535], "for a rope e dro ile": [0, 65535], "a rope e dro ile serue": [0, 65535], "rope e dro ile serue you": [0, 65535], "e dro ile serue you sir": [0, 65535], "dro ile serue you sir fiue": [0, 65535], "ile serue you sir fiue hundred": [0, 65535], "serue you sir fiue hundred at": [0, 65535], "you sir fiue hundred at the": [0, 65535], "sir fiue hundred at the rate": [0, 65535], "fiue hundred at the rate ant": [0, 65535], "hundred at the rate ant to": [0, 65535], "at the rate ant to what": [0, 65535], "the rate ant to what end": [0, 65535], "rate ant to what end did": [0, 65535], "ant to what end did i": [0, 65535], "to what end did i bid": [0, 65535], "what end did i bid thee": [0, 65535], "end did i bid thee hie": [0, 65535], "did i bid thee hie thee": [0, 65535], "i bid thee hie thee home": [0, 65535], "bid thee hie thee home e": [0, 65535], "thee hie thee home e dro": [0, 65535], "hie thee home e dro to": [0, 65535], "thee home e dro to a": [0, 65535], "home e dro to a ropes": [0, 65535], "e dro to a ropes end": [0, 65535], "dro to a ropes end sir": [0, 65535], "to a ropes end sir and": [0, 65535], "a ropes end sir and to": [0, 65535], "ropes end sir and to that": [0, 65535], "end sir and to that end": [0, 65535], "sir and to that end am": [0, 65535], "and to that end am i": [0, 65535], "to that end am i re": [0, 65535], "that end am i re turn'd": [0, 65535], "end am i re turn'd ant": [0, 65535], "am i re turn'd ant and": [0, 65535], "i re turn'd ant and to": [0, 65535], "re turn'd ant and to that": [0, 65535], "turn'd ant and to that end": [0, 65535], "ant and to that end sir": [0, 65535], "and to that end sir i": [0, 65535], "to that end sir i will": [0, 65535], "that end sir i will welcome": [0, 65535], "end sir i will welcome you": [0, 65535], "sir i will welcome you offi": [0, 65535], "i will welcome you offi good": [0, 65535], "will welcome you offi good sir": [0, 65535], "welcome you offi good sir be": [0, 65535], "you offi good sir be patient": [0, 65535], "offi good sir be patient e": [0, 65535], "good sir be patient e dro": [0, 65535], "sir be patient e dro nay": [0, 65535], "be patient e dro nay 'tis": [0, 65535], "patient e dro nay 'tis for": [0, 65535], "e dro nay 'tis for me": [0, 65535], "dro nay 'tis for me to": [0, 65535], "nay 'tis for me to be": [0, 65535], "'tis for me to be patient": [0, 65535], "for me to be patient i": [0, 65535], "me to be patient i am": [0, 65535], "to be patient i am in": [0, 65535], "be patient i am in aduersitie": [0, 65535], "patient i am in aduersitie offi": [0, 65535], "i am in aduersitie offi good": [0, 65535], "am in aduersitie offi good now": [0, 65535], "in aduersitie offi good now hold": [0, 65535], "aduersitie offi good now hold thy": [0, 65535], "offi good now hold thy tongue": [0, 65535], "good now hold thy tongue e": [0, 65535], "now hold thy tongue e dro": [0, 65535], "hold thy tongue e dro nay": [0, 65535], "thy tongue e dro nay rather": [0, 65535], "tongue e dro nay rather perswade": [0, 65535], "e dro nay rather perswade him": [0, 65535], "dro nay rather perswade him to": [0, 65535], "nay rather perswade him to hold": [0, 65535], "rather perswade him to hold his": [0, 65535], "perswade him to hold his hands": [0, 65535], "him to hold his hands anti": [0, 65535], "to hold his hands anti thou": [0, 65535], "hold his hands anti thou whoreson": [0, 65535], "his hands anti thou whoreson senselesse": [0, 65535], "hands anti thou whoreson senselesse villaine": [0, 65535], "anti thou whoreson senselesse villaine e": [0, 65535], "thou whoreson senselesse villaine e dro": [0, 65535], "whoreson senselesse villaine e dro i": [0, 65535], "senselesse villaine e dro i would": [0, 65535], "villaine e dro i would i": [0, 65535], "e dro i would i were": [0, 65535], "dro i would i were senselesse": [0, 65535], "i would i were senselesse sir": [0, 65535], "would i were senselesse sir that": [0, 65535], "i were senselesse sir that i": [0, 65535], "were senselesse sir that i might": [0, 65535], "senselesse sir that i might not": [0, 65535], "sir that i might not feele": [0, 65535], "that i might not feele your": [0, 65535], "i might not feele your blowes": [0, 65535], "might not feele your blowes anti": [0, 65535], "not feele your blowes anti thou": [0, 65535], "feele your blowes anti thou art": [0, 65535], "your blowes anti thou art sensible": [0, 65535], "blowes anti thou art sensible in": [0, 65535], "anti thou art sensible in nothing": [0, 65535], "thou art sensible in nothing but": [0, 65535], "art sensible in nothing but blowes": [0, 65535], "sensible in nothing but blowes and": [0, 65535], "in nothing but blowes and so": [0, 65535], "nothing but blowes and so is": [0, 65535], "but blowes and so is an": [0, 65535], "blowes and so is an asse": [0, 65535], "and so is an asse e": [0, 65535], "so is an asse e dro": [0, 65535], "is an asse e dro i": [0, 65535], "an asse e dro i am": [0, 65535], "asse e dro i am an": [0, 65535], "e dro i am an asse": [0, 65535], "dro i am an asse indeede": [0, 65535], "i am an asse indeede you": [0, 65535], "am an asse indeede you may": [0, 65535], "an asse indeede you may prooue": [0, 65535], "asse indeede you may prooue it": [0, 65535], "indeede you may prooue it by": [0, 65535], "you may prooue it by my": [0, 65535], "may prooue it by my long": [0, 65535], "prooue it by my long eares": [0, 65535], "it by my long eares i": [0, 65535], "by my long eares i haue": [0, 65535], "my long eares i haue serued": [0, 65535], "long eares i haue serued him": [0, 65535], "eares i haue serued him from": [0, 65535], "i haue serued him from the": [0, 65535], "haue serued him from the houre": [0, 65535], "serued him from the houre of": [0, 65535], "him from the houre of my": [0, 65535], "from the houre of my natiuitie": [0, 65535], "the houre of my natiuitie to": [0, 65535], "houre of my natiuitie to this": [0, 65535], "of my natiuitie to this instant": [0, 65535], "my natiuitie to this instant and": [0, 65535], "natiuitie to this instant and haue": [0, 65535], "to this instant and haue nothing": [0, 65535], "this instant and haue nothing at": [0, 65535], "instant and haue nothing at his": [0, 65535], "and haue nothing at his hands": [0, 65535], "haue nothing at his hands for": [0, 65535], "nothing at his hands for my": [0, 65535], "at his hands for my seruice": [0, 65535], "his hands for my seruice but": [0, 65535], "hands for my seruice but blowes": [0, 65535], "for my seruice but blowes when": [0, 65535], "my seruice but blowes when i": [0, 65535], "seruice but blowes when i am": [0, 65535], "but blowes when i am cold": [0, 65535], "blowes when i am cold he": [0, 65535], "when i am cold he heates": [0, 65535], "i am cold he heates me": [0, 65535], "am cold he heates me with": [0, 65535], "cold he heates me with beating": [0, 65535], "he heates me with beating when": [0, 65535], "heates me with beating when i": [0, 65535], "me with beating when i am": [0, 65535], "with beating when i am warme": [0, 65535], "beating when i am warme he": [0, 65535], "when i am warme he cooles": [0, 65535], "i am warme he cooles me": [0, 65535], "am warme he cooles me with": [0, 65535], "warme he cooles me with beating": [0, 65535], "he cooles me with beating i": [0, 65535], "cooles me with beating i am": [0, 65535], "me with beating i am wak'd": [0, 65535], "with beating i am wak'd with": [0, 65535], "beating i am wak'd with it": [0, 65535], "i am wak'd with it when": [0, 65535], "am wak'd with it when i": [0, 65535], "wak'd with it when i sleepe": [0, 65535], "with it when i sleepe rais'd": [0, 65535], "it when i sleepe rais'd with": [0, 65535], "when i sleepe rais'd with it": [0, 65535], "i sleepe rais'd with it when": [0, 65535], "sleepe rais'd with it when i": [0, 65535], "rais'd with it when i sit": [0, 65535], "with it when i sit driuen": [0, 65535], "it when i sit driuen out": [0, 65535], "when i sit driuen out of": [0, 65535], "i sit driuen out of doores": [0, 65535], "sit driuen out of doores with": [0, 65535], "driuen out of doores with it": [0, 65535], "out of doores with it when": [0, 65535], "of doores with it when i": [0, 65535], "doores with it when i goe": [0, 65535], "with it when i goe from": [0, 65535], "it when i goe from home": [0, 65535], "when i goe from home welcom'd": [0, 65535], "i goe from home welcom'd home": [0, 65535], "goe from home welcom'd home with": [0, 65535], "from home welcom'd home with it": [0, 65535], "home welcom'd home with it when": [0, 65535], "welcom'd home with it when i": [0, 65535], "home with it when i returne": [0, 65535], "with it when i returne nay": [0, 65535], "it when i returne nay i": [0, 65535], "when i returne nay i beare": [0, 65535], "i returne nay i beare it": [0, 65535], "returne nay i beare it on": [0, 65535], "nay i beare it on my": [0, 65535], "i beare it on my shoulders": [0, 65535], "beare it on my shoulders as": [0, 65535], "it on my shoulders as a": [0, 65535], "on my shoulders as a begger": [0, 65535], "my shoulders as a begger woont": [0, 65535], "shoulders as a begger woont her": [0, 65535], "as a begger woont her brat": [0, 65535], "a begger woont her brat and": [0, 65535], "begger woont her brat and i": [0, 65535], "woont her brat and i thinke": [0, 65535], "her brat and i thinke when": [0, 65535], "brat and i thinke when he": [0, 65535], "and i thinke when he hath": [0, 65535], "i thinke when he hath lam'd": [0, 65535], "thinke when he hath lam'd me": [0, 65535], "when he hath lam'd me i": [0, 65535], "he hath lam'd me i shall": [0, 65535], "hath lam'd me i shall begge": [0, 65535], "lam'd me i shall begge with": [0, 65535], "me i shall begge with it": [0, 65535], "i shall begge with it from": [0, 65535], "shall begge with it from doore": [0, 65535], "begge with it from doore to": [0, 65535], "with it from doore to doore": [0, 65535], "it from doore to doore enter": [0, 65535], "from doore to doore enter adriana": [0, 65535], "doore to doore enter adriana luciana": [0, 65535], "to doore enter adriana luciana courtizan": [0, 65535], "doore enter adriana luciana courtizan and": [0, 65535], "enter adriana luciana courtizan and a": [0, 65535], "adriana luciana courtizan and a schoolemaster": [0, 65535], "luciana courtizan and a schoolemaster call'd": [0, 65535], "courtizan and a schoolemaster call'd pinch": [0, 65535], "and a schoolemaster call'd pinch ant": [0, 65535], "a schoolemaster call'd pinch ant come": [0, 65535], "schoolemaster call'd pinch ant come goe": [0, 65535], "call'd pinch ant come goe along": [0, 65535], "pinch ant come goe along my": [0, 65535], "ant come goe along my wife": [0, 65535], "come goe along my wife is": [0, 65535], "goe along my wife is comming": [0, 65535], "along my wife is comming yonder": [0, 65535], "my wife is comming yonder e": [0, 65535], "wife is comming yonder e dro": [0, 65535], "is comming yonder e dro mistris": [0, 65535], "comming yonder e dro mistris respice": [0, 65535], "yonder e dro mistris respice finem": [0, 65535], "e dro mistris respice finem respect": [0, 65535], "dro mistris respice finem respect your": [0, 65535], "mistris respice finem respect your end": [0, 65535], "respice finem respect your end or": [0, 65535], "finem respect your end or rather": [0, 65535], "respect your end or rather the": [0, 65535], "your end or rather the prophesie": [0, 65535], "end or rather the prophesie like": [0, 65535], "or rather the prophesie like the": [0, 65535], "rather the prophesie like the parrat": [0, 65535], "the prophesie like the parrat beware": [0, 65535], "prophesie like the parrat beware the": [0, 65535], "like the parrat beware the ropes": [0, 65535], "the parrat beware the ropes end": [0, 65535], "parrat beware the ropes end anti": [0, 65535], "beware the ropes end anti wilt": [0, 65535], "the ropes end anti wilt thou": [0, 65535], "ropes end anti wilt thou still": [0, 65535], "end anti wilt thou still talke": [0, 65535], "anti wilt thou still talke beats": [0, 65535], "wilt thou still talke beats dro": [0, 65535], "thou still talke beats dro curt": [0, 65535], "still talke beats dro curt how": [0, 65535], "talke beats dro curt how say": [0, 65535], "beats dro curt how say you": [0, 65535], "dro curt how say you now": [0, 65535], "curt how say you now is": [0, 65535], "how say you now is not": [0, 65535], "say you now is not your": [0, 65535], "you now is not your husband": [0, 65535], "now is not your husband mad": [0, 65535], "is not your husband mad adri": [0, 65535], "not your husband mad adri his": [0, 65535], "your husband mad adri his inciuility": [0, 65535], "husband mad adri his inciuility confirmes": [0, 65535], "mad adri his inciuility confirmes no": [0, 65535], "adri his inciuility confirmes no lesse": [0, 65535], "his inciuility confirmes no lesse good": [0, 65535], "inciuility confirmes no lesse good doctor": [0, 65535], "confirmes no lesse good doctor pinch": [0, 65535], "no lesse good doctor pinch you": [0, 65535], "lesse good doctor pinch you are": [0, 65535], "good doctor pinch you are a": [0, 65535], "doctor pinch you are a coniurer": [0, 65535], "pinch you are a coniurer establish": [0, 65535], "you are a coniurer establish him": [0, 65535], "are a coniurer establish him in": [0, 65535], "a coniurer establish him in his": [0, 65535], "coniurer establish him in his true": [0, 65535], "establish him in his true sence": [0, 65535], "him in his true sence againe": [0, 65535], "in his true sence againe and": [0, 65535], "his true sence againe and i": [0, 65535], "true sence againe and i will": [0, 65535], "sence againe and i will please": [0, 65535], "againe and i will please you": [0, 65535], "and i will please you what": [0, 65535], "i will please you what you": [0, 65535], "will please you what you will": [0, 65535], "please you what you will demand": [0, 65535], "you what you will demand luc": [0, 65535], "what you will demand luc alas": [0, 65535], "you will demand luc alas how": [0, 65535], "will demand luc alas how fiery": [0, 65535], "demand luc alas how fiery and": [0, 65535], "luc alas how fiery and how": [0, 65535], "alas how fiery and how sharpe": [0, 65535], "how fiery and how sharpe he": [0, 65535], "fiery and how sharpe he lookes": [0, 65535], "and how sharpe he lookes cur": [0, 65535], "how sharpe he lookes cur marke": [0, 65535], "sharpe he lookes cur marke how": [0, 65535], "he lookes cur marke how he": [0, 65535], "lookes cur marke how he trembles": [0, 65535], "cur marke how he trembles in": [0, 65535], "marke how he trembles in his": [0, 65535], "how he trembles in his extasie": [0, 65535], "he trembles in his extasie pinch": [0, 65535], "trembles in his extasie pinch giue": [0, 65535], "in his extasie pinch giue me": [0, 65535], "his extasie pinch giue me your": [0, 65535], "extasie pinch giue me your hand": [0, 65535], "pinch giue me your hand and": [0, 65535], "giue me your hand and let": [0, 65535], "me your hand and let mee": [0, 65535], "your hand and let mee feele": [0, 65535], "hand and let mee feele your": [0, 65535], "and let mee feele your pulse": [0, 65535], "let mee feele your pulse ant": [0, 65535], "mee feele your pulse ant there": [0, 65535], "feele your pulse ant there is": [0, 65535], "your pulse ant there is my": [0, 65535], "pulse ant there is my hand": [0, 65535], "ant there is my hand and": [0, 65535], "there is my hand and let": [0, 65535], "is my hand and let it": [0, 65535], "my hand and let it feele": [0, 65535], "hand and let it feele your": [0, 65535], "and let it feele your eare": [0, 65535], "let it feele your eare pinch": [0, 65535], "it feele your eare pinch i": [0, 65535], "feele your eare pinch i charge": [0, 65535], "your eare pinch i charge thee": [0, 65535], "eare pinch i charge thee sathan": [0, 65535], "pinch i charge thee sathan hous'd": [0, 65535], "i charge thee sathan hous'd within": [0, 65535], "charge thee sathan hous'd within this": [0, 65535], "thee sathan hous'd within this man": [0, 65535], "sathan hous'd within this man to": [0, 65535], "hous'd within this man to yeeld": [0, 65535], "within this man to yeeld possession": [0, 65535], "this man to yeeld possession to": [0, 65535], "man to yeeld possession to my": [0, 65535], "to yeeld possession to my holie": [0, 65535], "yeeld possession to my holie praiers": [0, 65535], "possession to my holie praiers and": [0, 65535], "to my holie praiers and to": [0, 65535], "my holie praiers and to thy": [0, 65535], "holie praiers and to thy state": [0, 65535], "praiers and to thy state of": [0, 65535], "and to thy state of darknesse": [0, 65535], "to thy state of darknesse hie": [0, 65535], "thy state of darknesse hie thee": [0, 65535], "state of darknesse hie thee straight": [0, 65535], "of darknesse hie thee straight i": [0, 65535], "darknesse hie thee straight i coniure": [0, 65535], "hie thee straight i coniure thee": [0, 65535], "thee straight i coniure thee by": [0, 65535], "straight i coniure thee by all": [0, 65535], "i coniure thee by all the": [0, 65535], "coniure thee by all the saints": [0, 65535], "thee by all the saints in": [0, 65535], "by all the saints in heauen": [0, 65535], "all the saints in heauen anti": [0, 65535], "the saints in heauen anti peace": [0, 65535], "saints in heauen anti peace doting": [0, 65535], "in heauen anti peace doting wizard": [0, 65535], "heauen anti peace doting wizard peace": [0, 65535], "anti peace doting wizard peace i": [0, 65535], "peace doting wizard peace i am": [0, 65535], "doting wizard peace i am not": [0, 65535], "wizard peace i am not mad": [0, 65535], "peace i am not mad adr": [0, 65535], "i am not mad adr oh": [0, 65535], "am not mad adr oh that": [0, 65535], "not mad adr oh that thou": [0, 65535], "mad adr oh that thou wer't": [0, 65535], "adr oh that thou wer't not": [0, 65535], "oh that thou wer't not poore": [0, 65535], "that thou wer't not poore distressed": [0, 65535], "thou wer't not poore distressed soule": [0, 65535], "wer't not poore distressed soule anti": [0, 65535], "not poore distressed soule anti you": [0, 65535], "poore distressed soule anti you minion": [0, 65535], "distressed soule anti you minion you": [0, 65535], "soule anti you minion you are": [0, 65535], "anti you minion you are these": [0, 65535], "you minion you are these your": [0, 65535], "minion you are these your customers": [0, 65535], "you are these your customers did": [0, 65535], "are these your customers did this": [0, 65535], "these your customers did this companion": [0, 65535], "your customers did this companion with": [0, 65535], "customers did this companion with the": [0, 65535], "did this companion with the saffron": [0, 65535], "this companion with the saffron face": [0, 65535], "companion with the saffron face reuell": [0, 65535], "with the saffron face reuell and": [0, 65535], "the saffron face reuell and feast": [0, 65535], "saffron face reuell and feast it": [0, 65535], "face reuell and feast it at": [0, 65535], "reuell and feast it at my": [0, 65535], "and feast it at my house": [0, 65535], "feast it at my house to": [0, 65535], "it at my house to day": [0, 65535], "at my house to day whil'st": [0, 65535], "my house to day whil'st vpon": [0, 65535], "house to day whil'st vpon me": [0, 65535], "to day whil'st vpon me the": [0, 65535], "day whil'st vpon me the guiltie": [0, 65535], "whil'st vpon me the guiltie doores": [0, 65535], "vpon me the guiltie doores were": [0, 65535], "me the guiltie doores were shut": [0, 65535], "the guiltie doores were shut and": [0, 65535], "guiltie doores were shut and i": [0, 65535], "doores were shut and i denied": [0, 65535], "were shut and i denied to": [0, 65535], "shut and i denied to enter": [0, 65535], "and i denied to enter in": [0, 65535], "i denied to enter in my": [0, 65535], "denied to enter in my house": [0, 65535], "to enter in my house adr": [0, 65535], "enter in my house adr o": [0, 65535], "in my house adr o husband": [0, 65535], "my house adr o husband god": [0, 65535], "house adr o husband god doth": [0, 65535], "adr o husband god doth know": [0, 65535], "o husband god doth know you": [0, 65535], "husband god doth know you din'd": [0, 65535], "god doth know you din'd at": [0, 65535], "doth know you din'd at home": [0, 65535], "know you din'd at home where": [0, 65535], "you din'd at home where would": [0, 65535], "din'd at home where would you": [0, 65535], "at home where would you had": [0, 65535], "home where would you had remain'd": [0, 65535], "where would you had remain'd vntill": [0, 65535], "would you had remain'd vntill this": [0, 65535], "you had remain'd vntill this time": [0, 65535], "had remain'd vntill this time free": [0, 65535], "remain'd vntill this time free from": [0, 65535], "vntill this time free from these": [0, 65535], "this time free from these slanders": [0, 65535], "time free from these slanders and": [0, 65535], "free from these slanders and this": [0, 65535], "from these slanders and this open": [0, 65535], "these slanders and this open shame": [0, 65535], "slanders and this open shame anti": [0, 65535], "and this open shame anti din'd": [0, 65535], "this open shame anti din'd at": [0, 65535], "open shame anti din'd at home": [0, 65535], "shame anti din'd at home thou": [0, 65535], "anti din'd at home thou villaine": [0, 65535], "din'd at home thou villaine what": [0, 65535], "at home thou villaine what sayest": [0, 65535], "home thou villaine what sayest thou": [0, 65535], "thou villaine what sayest thou dro": [0, 65535], "villaine what sayest thou dro sir": [0, 65535], "what sayest thou dro sir sooth": [0, 65535], "sayest thou dro sir sooth to": [0, 65535], "thou dro sir sooth to say": [0, 65535], "dro sir sooth to say you": [0, 65535], "sir sooth to say you did": [0, 65535], "sooth to say you did not": [0, 65535], "to say you did not dine": [0, 65535], "say you did not dine at": [0, 65535], "you did not dine at home": [0, 65535], "did not dine at home ant": [0, 65535], "not dine at home ant were": [0, 65535], "dine at home ant were not": [0, 65535], "at home ant were not my": [0, 65535], "home ant were not my doores": [0, 65535], "ant were not my doores lockt": [0, 65535], "were not my doores lockt vp": [0, 65535], "not my doores lockt vp and": [0, 65535], "my doores lockt vp and i": [0, 65535], "doores lockt vp and i shut": [0, 65535], "lockt vp and i shut out": [0, 65535], "vp and i shut out dro": [0, 65535], "and i shut out dro perdie": [0, 65535], "i shut out dro perdie your": [0, 65535], "shut out dro perdie your doores": [0, 65535], "out dro perdie your doores were": [0, 65535], "dro perdie your doores were lockt": [0, 65535], "perdie your doores were lockt and": [0, 65535], "your doores were lockt and you": [0, 65535], "doores were lockt and you shut": [0, 65535], "were lockt and you shut out": [0, 65535], "lockt and you shut out anti": [0, 65535], "and you shut out anti and": [0, 65535], "you shut out anti and did": [0, 65535], "shut out anti and did not": [0, 65535], "out anti and did not she": [0, 65535], "anti and did not she her": [0, 65535], "and did not she her selfe": [0, 65535], "did not she her selfe reuile": [0, 65535], "not she her selfe reuile me": [0, 65535], "she her selfe reuile me there": [0, 65535], "her selfe reuile me there dro": [0, 65535], "selfe reuile me there dro sans": [0, 65535], "reuile me there dro sans fable": [0, 65535], "me there dro sans fable she": [0, 65535], "there dro sans fable she her": [0, 65535], "dro sans fable she her selfe": [0, 65535], "sans fable she her selfe reuil'd": [0, 65535], "fable she her selfe reuil'd you": [0, 65535], "she her selfe reuil'd you there": [0, 65535], "her selfe reuil'd you there anti": [0, 65535], "selfe reuil'd you there anti did": [0, 65535], "reuil'd you there anti did not": [0, 65535], "you there anti did not her": [0, 65535], "there anti did not her kitchen": [0, 65535], "anti did not her kitchen maide": [0, 65535], "did not her kitchen maide raile": [0, 65535], "not her kitchen maide raile taunt": [0, 65535], "her kitchen maide raile taunt and": [0, 65535], "kitchen maide raile taunt and scorne": [0, 65535], "maide raile taunt and scorne me": [0, 65535], "raile taunt and scorne me dro": [0, 65535], "taunt and scorne me dro certis": [0, 65535], "and scorne me dro certis she": [0, 65535], "scorne me dro certis she did": [0, 65535], "me dro certis she did the": [0, 65535], "dro certis she did the kitchin": [0, 65535], "certis she did the kitchin vestall": [0, 65535], "she did the kitchin vestall scorn'd": [0, 65535], "did the kitchin vestall scorn'd you": [0, 65535], "the kitchin vestall scorn'd you ant": [0, 65535], "kitchin vestall scorn'd you ant and": [0, 65535], "vestall scorn'd you ant and did": [0, 65535], "scorn'd you ant and did not": [0, 65535], "you ant and did not i": [0, 65535], "ant and did not i in": [0, 65535], "and did not i in rage": [0, 65535], "did not i in rage depart": [0, 65535], "not i in rage depart from": [0, 65535], "i in rage depart from thence": [0, 65535], "in rage depart from thence dro": [0, 65535], "rage depart from thence dro in": [0, 65535], "depart from thence dro in veritie": [0, 65535], "from thence dro in veritie you": [0, 65535], "thence dro in veritie you did": [0, 65535], "dro in veritie you did my": [0, 65535], "in veritie you did my bones": [0, 65535], "veritie you did my bones beares": [0, 65535], "you did my bones beares witnesse": [0, 65535], "did my bones beares witnesse that": [0, 65535], "my bones beares witnesse that since": [0, 65535], "bones beares witnesse that since haue": [0, 65535], "beares witnesse that since haue felt": [0, 65535], "witnesse that since haue felt the": [0, 65535], "that since haue felt the vigor": [0, 65535], "since haue felt the vigor of": [0, 65535], "haue felt the vigor of his": [0, 65535], "felt the vigor of his rage": [0, 65535], "the vigor of his rage adr": [0, 65535], "vigor of his rage adr is't": [0, 65535], "of his rage adr is't good": [0, 65535], "his rage adr is't good to": [0, 65535], "rage adr is't good to sooth": [0, 65535], "adr is't good to sooth him": [0, 65535], "is't good to sooth him in": [0, 65535], "good to sooth him in these": [0, 65535], "to sooth him in these contraries": [0, 65535], "sooth him in these contraries pinch": [0, 65535], "him in these contraries pinch it": [0, 65535], "in these contraries pinch it is": [0, 65535], "these contraries pinch it is no": [0, 65535], "contraries pinch it is no shame": [0, 65535], "pinch it is no shame the": [0, 65535], "it is no shame the fellow": [0, 65535], "is no shame the fellow finds": [0, 65535], "no shame the fellow finds his": [0, 65535], "shame the fellow finds his vaine": [0, 65535], "the fellow finds his vaine and": [0, 65535], "fellow finds his vaine and yeelding": [0, 65535], "finds his vaine and yeelding to": [0, 65535], "his vaine and yeelding to him": [0, 65535], "vaine and yeelding to him humors": [0, 65535], "and yeelding to him humors well": [0, 65535], "yeelding to him humors well his": [0, 65535], "to him humors well his frensie": [0, 65535], "him humors well his frensie ant": [0, 65535], "humors well his frensie ant thou": [0, 65535], "well his frensie ant thou hast": [0, 65535], "his frensie ant thou hast subborn'd": [0, 65535], "frensie ant thou hast subborn'd the": [0, 65535], "ant thou hast subborn'd the goldsmith": [0, 65535], "thou hast subborn'd the goldsmith to": [0, 65535], "hast subborn'd the goldsmith to arrest": [0, 65535], "subborn'd the goldsmith to arrest mee": [0, 65535], "the goldsmith to arrest mee adr": [0, 65535], "goldsmith to arrest mee adr alas": [0, 65535], "to arrest mee adr alas i": [0, 65535], "arrest mee adr alas i sent": [0, 65535], "mee adr alas i sent you": [0, 65535], "adr alas i sent you monie": [0, 65535], "alas i sent you monie to": [0, 65535], "i sent you monie to redeeme": [0, 65535], "sent you monie to redeeme you": [0, 65535], "you monie to redeeme you by": [0, 65535], "monie to redeeme you by dromio": [0, 65535], "to redeeme you by dromio heere": [0, 65535], "redeeme you by dromio heere who": [0, 65535], "you by dromio heere who came": [0, 65535], "by dromio heere who came in": [0, 65535], "dromio heere who came in hast": [0, 65535], "heere who came in hast for": [0, 65535], "who came in hast for it": [0, 65535], "came in hast for it dro": [0, 65535], "in hast for it dro monie": [0, 65535], "hast for it dro monie by": [0, 65535], "for it dro monie by me": [0, 65535], "it dro monie by me heart": [0, 65535], "dro monie by me heart and": [0, 65535], "monie by me heart and good": [0, 65535], "by me heart and good will": [0, 65535], "me heart and good will you": [0, 65535], "heart and good will you might": [0, 65535], "and good will you might but": [0, 65535], "good will you might but surely": [0, 65535], "will you might but surely master": [0, 65535], "you might but surely master not": [0, 65535], "might but surely master not a": [0, 65535], "but surely master not a ragge": [0, 65535], "surely master not a ragge of": [0, 65535], "master not a ragge of monie": [0, 65535], "not a ragge of monie ant": [0, 65535], "a ragge of monie ant wentst": [0, 65535], "ragge of monie ant wentst not": [0, 65535], "of monie ant wentst not thou": [0, 65535], "monie ant wentst not thou to": [0, 65535], "ant wentst not thou to her": [0, 65535], "wentst not thou to her for": [0, 65535], "not thou to her for a": [0, 65535], "thou to her for a purse": [0, 65535], "to her for a purse of": [0, 65535], "her for a purse of duckets": [0, 65535], "for a purse of duckets adri": [0, 65535], "a purse of duckets adri he": [0, 65535], "purse of duckets adri he came": [0, 65535], "of duckets adri he came to": [0, 65535], "duckets adri he came to me": [0, 65535], "adri he came to me and": [0, 65535], "he came to me and i": [0, 65535], "came to me and i deliuer'd": [0, 65535], "to me and i deliuer'd it": [0, 65535], "me and i deliuer'd it luci": [0, 65535], "and i deliuer'd it luci and": [0, 65535], "i deliuer'd it luci and i": [0, 65535], "deliuer'd it luci and i am": [0, 65535], "it luci and i am witnesse": [0, 65535], "luci and i am witnesse with": [0, 65535], "and i am witnesse with her": [0, 65535], "i am witnesse with her that": [0, 65535], "am witnesse with her that she": [0, 65535], "witnesse with her that she did": [0, 65535], "with her that she did dro": [0, 65535], "her that she did dro god": [0, 65535], "that she did dro god and": [0, 65535], "she did dro god and the": [0, 65535], "did dro god and the rope": [0, 65535], "dro god and the rope maker": [0, 65535], "god and the rope maker beare": [0, 65535], "and the rope maker beare me": [0, 65535], "the rope maker beare me witnesse": [0, 65535], "rope maker beare me witnesse that": [0, 65535], "maker beare me witnesse that i": [0, 65535], "beare me witnesse that i was": [0, 65535], "me witnesse that i was sent": [0, 65535], "witnesse that i was sent for": [0, 65535], "that i was sent for nothing": [0, 65535], "i was sent for nothing but": [0, 65535], "was sent for nothing but a": [0, 65535], "sent for nothing but a rope": [0, 65535], "for nothing but a rope pinch": [0, 65535], "nothing but a rope pinch mistris": [0, 65535], "but a rope pinch mistris both": [0, 65535], "a rope pinch mistris both man": [0, 65535], "rope pinch mistris both man and": [0, 65535], "pinch mistris both man and master": [0, 65535], "mistris both man and master is": [0, 65535], "both man and master is possest": [0, 65535], "man and master is possest i": [0, 65535], "and master is possest i know": [0, 65535], "master is possest i know it": [0, 65535], "is possest i know it by": [0, 65535], "possest i know it by their": [0, 65535], "i know it by their pale": [0, 65535], "know it by their pale and": [0, 65535], "it by their pale and deadly": [0, 65535], "by their pale and deadly lookes": [0, 65535], "their pale and deadly lookes they": [0, 65535], "pale and deadly lookes they must": [0, 65535], "and deadly lookes they must be": [0, 65535], "deadly lookes they must be bound": [0, 65535], "lookes they must be bound and": [0, 65535], "they must be bound and laide": [0, 65535], "must be bound and laide in": [0, 65535], "be bound and laide in some": [0, 65535], "bound and laide in some darke": [0, 65535], "and laide in some darke roome": [0, 65535], "laide in some darke roome ant": [0, 65535], "in some darke roome ant say": [0, 65535], "some darke roome ant say wherefore": [0, 65535], "darke roome ant say wherefore didst": [0, 65535], "roome ant say wherefore didst thou": [0, 65535], "ant say wherefore didst thou locke": [0, 65535], "say wherefore didst thou locke me": [0, 65535], "wherefore didst thou locke me forth": [0, 65535], "didst thou locke me forth to": [0, 65535], "thou locke me forth to day": [0, 65535], "locke me forth to day and": [0, 65535], "me forth to day and why": [0, 65535], "forth to day and why dost": [0, 65535], "to day and why dost thou": [0, 65535], "day and why dost thou denie": [0, 65535], "and why dost thou denie the": [0, 65535], "why dost thou denie the bagge": [0, 65535], "dost thou denie the bagge of": [0, 65535], "thou denie the bagge of gold": [0, 65535], "denie the bagge of gold adr": [0, 65535], "the bagge of gold adr i": [0, 65535], "bagge of gold adr i did": [0, 65535], "of gold adr i did not": [0, 65535], "gold adr i did not gentle": [0, 65535], "adr i did not gentle husband": [0, 65535], "i did not gentle husband locke": [0, 65535], "did not gentle husband locke thee": [0, 65535], "not gentle husband locke thee forth": [0, 65535], "gentle husband locke thee forth dro": [0, 65535], "husband locke thee forth dro and": [0, 65535], "locke thee forth dro and gentle": [0, 65535], "thee forth dro and gentle mr": [0, 65535], "forth dro and gentle mr i": [0, 65535], "dro and gentle mr i receiu'd": [0, 65535], "and gentle mr i receiu'd no": [0, 65535], "gentle mr i receiu'd no gold": [0, 65535], "mr i receiu'd no gold but": [0, 65535], "i receiu'd no gold but i": [0, 65535], "receiu'd no gold but i confesse": [0, 65535], "no gold but i confesse sir": [0, 65535], "gold but i confesse sir that": [0, 65535], "but i confesse sir that we": [0, 65535], "i confesse sir that we were": [0, 65535], "confesse sir that we were lock'd": [0, 65535], "sir that we were lock'd out": [0, 65535], "that we were lock'd out adr": [0, 65535], "we were lock'd out adr dissembling": [0, 65535], "were lock'd out adr dissembling villain": [0, 65535], "lock'd out adr dissembling villain thou": [0, 65535], "out adr dissembling villain thou speak'st": [0, 65535], "adr dissembling villain thou speak'st false": [0, 65535], "dissembling villain thou speak'st false in": [0, 65535], "villain thou speak'st false in both": [0, 65535], "thou speak'st false in both ant": [0, 65535], "speak'st false in both ant dissembling": [0, 65535], "false in both ant dissembling harlot": [0, 65535], "in both ant dissembling harlot thou": [0, 65535], "both ant dissembling harlot thou art": [0, 65535], "ant dissembling harlot thou art false": [0, 65535], "dissembling harlot thou art false in": [0, 65535], "harlot thou art false in all": [0, 65535], "thou art false in all and": [0, 65535], "art false in all and art": [0, 65535], "false in all and art confederate": [0, 65535], "in all and art confederate with": [0, 65535], "all and art confederate with a": [0, 65535], "and art confederate with a damned": [0, 65535], "art confederate with a damned packe": [0, 65535], "confederate with a damned packe to": [0, 65535], "with a damned packe to make": [0, 65535], "a damned packe to make a": [0, 65535], "damned packe to make a loathsome": [0, 65535], "packe to make a loathsome abiect": [0, 65535], "to make a loathsome abiect scorne": [0, 65535], "make a loathsome abiect scorne of": [0, 65535], "a loathsome abiect scorne of me": [0, 65535], "loathsome abiect scorne of me but": [0, 65535], "abiect scorne of me but with": [0, 65535], "scorne of me but with these": [0, 65535], "of me but with these nailes": [0, 65535], "me but with these nailes ile": [0, 65535], "but with these nailes ile plucke": [0, 65535], "with these nailes ile plucke out": [0, 65535], "these nailes ile plucke out these": [0, 65535], "nailes ile plucke out these false": [0, 65535], "ile plucke out these false eyes": [0, 65535], "plucke out these false eyes that": [0, 65535], "out these false eyes that would": [0, 65535], "these false eyes that would behold": [0, 65535], "false eyes that would behold in": [0, 65535], "eyes that would behold in me": [0, 65535], "that would behold in me this": [0, 65535], "would behold in me this shamefull": [0, 65535], "behold in me this shamefull sport": [0, 65535], "in me this shamefull sport enter": [0, 65535], "me this shamefull sport enter three": [0, 65535], "this shamefull sport enter three or": [0, 65535], "shamefull sport enter three or foure": [0, 65535], "sport enter three or foure and": [0, 65535], "enter three or foure and offer": [0, 65535], "three or foure and offer to": [0, 65535], "or foure and offer to binde": [0, 65535], "foure and offer to binde him": [0, 65535], "and offer to binde him hee": [0, 65535], "offer to binde him hee striues": [0, 65535], "to binde him hee striues adr": [0, 65535], "binde him hee striues adr oh": [0, 65535], "him hee striues adr oh binde": [0, 65535], "hee striues adr oh binde him": [0, 65535], "striues adr oh binde him binde": [0, 65535], "adr oh binde him binde him": [0, 65535], "oh binde him binde him let": [0, 65535], "binde him binde him let him": [0, 65535], "him binde him let him not": [0, 65535], "binde him let him not come": [0, 65535], "him let him not come neere": [0, 65535], "let him not come neere me": [0, 65535], "him not come neere me pinch": [0, 65535], "not come neere me pinch more": [0, 65535], "come neere me pinch more company": [0, 65535], "neere me pinch more company the": [0, 65535], "me pinch more company the fiend": [0, 65535], "pinch more company the fiend is": [0, 65535], "more company the fiend is strong": [0, 65535], "company the fiend is strong within": [0, 65535], "the fiend is strong within him": [0, 65535], "fiend is strong within him luc": [0, 65535], "is strong within him luc aye": [0, 65535], "strong within him luc aye me": [0, 65535], "within him luc aye me poore": [0, 65535], "him luc aye me poore man": [0, 65535], "luc aye me poore man how": [0, 65535], "aye me poore man how pale": [0, 65535], "me poore man how pale and": [0, 65535], "poore man how pale and wan": [0, 65535], "man how pale and wan he": [0, 65535], "how pale and wan he looks": [0, 65535], "pale and wan he looks ant": [0, 65535], "and wan he looks ant what": [0, 65535], "wan he looks ant what will": [0, 65535], "he looks ant what will you": [0, 65535], "looks ant what will you murther": [0, 65535], "ant what will you murther me": [0, 65535], "what will you murther me thou": [0, 65535], "will you murther me thou iailor": [0, 65535], "you murther me thou iailor thou": [0, 65535], "murther me thou iailor thou i": [0, 65535], "me thou iailor thou i am": [0, 65535], "thou iailor thou i am thy": [0, 65535], "iailor thou i am thy prisoner": [0, 65535], "thou i am thy prisoner wilt": [0, 65535], "i am thy prisoner wilt thou": [0, 65535], "am thy prisoner wilt thou suffer": [0, 65535], "thy prisoner wilt thou suffer them": [0, 65535], "prisoner wilt thou suffer them to": [0, 65535], "wilt thou suffer them to make": [0, 65535], "thou suffer them to make a": [0, 65535], "suffer them to make a rescue": [0, 65535], "them to make a rescue offi": [0, 65535], "to make a rescue offi masters": [0, 65535], "make a rescue offi masters let": [0, 65535], "a rescue offi masters let him": [0, 65535], "rescue offi masters let him go": [0, 65535], "offi masters let him go he": [0, 65535], "masters let him go he is": [0, 65535], "let him go he is my": [0, 65535], "him go he is my prisoner": [0, 65535], "go he is my prisoner and": [0, 65535], "he is my prisoner and you": [0, 65535], "is my prisoner and you shall": [0, 65535], "my prisoner and you shall not": [0, 65535], "prisoner and you shall not haue": [0, 65535], "and you shall not haue him": [0, 65535], "you shall not haue him pinch": [0, 65535], "shall not haue him pinch go": [0, 65535], "not haue him pinch go binde": [0, 65535], "haue him pinch go binde this": [0, 65535], "him pinch go binde this man": [0, 65535], "pinch go binde this man for": [0, 65535], "go binde this man for he": [0, 65535], "binde this man for he is": [0, 65535], "this man for he is franticke": [0, 65535], "man for he is franticke too": [0, 65535], "for he is franticke too adr": [0, 65535], "he is franticke too adr what": [0, 65535], "is franticke too adr what wilt": [0, 65535], "franticke too adr what wilt thou": [0, 65535], "too adr what wilt thou do": [0, 65535], "adr what wilt thou do thou": [0, 65535], "what wilt thou do thou peeuish": [0, 65535], "wilt thou do thou peeuish officer": [0, 65535], "thou do thou peeuish officer hast": [0, 65535], "do thou peeuish officer hast thou": [0, 65535], "thou peeuish officer hast thou delight": [0, 65535], "peeuish officer hast thou delight to": [0, 65535], "officer hast thou delight to see": [0, 65535], "hast thou delight to see a": [0, 65535], "thou delight to see a wretched": [0, 65535], "delight to see a wretched man": [0, 65535], "to see a wretched man do": [0, 65535], "see a wretched man do outrage": [0, 65535], "a wretched man do outrage and": [0, 65535], "wretched man do outrage and displeasure": [0, 65535], "man do outrage and displeasure to": [0, 65535], "do outrage and displeasure to himselfe": [0, 65535], "outrage and displeasure to himselfe offi": [0, 65535], "and displeasure to himselfe offi he": [0, 65535], "displeasure to himselfe offi he is": [0, 65535], "to himselfe offi he is my": [0, 65535], "himselfe offi he is my prisoner": [0, 65535], "offi he is my prisoner if": [0, 65535], "he is my prisoner if i": [0, 65535], "is my prisoner if i let": [0, 65535], "my prisoner if i let him": [0, 65535], "prisoner if i let him go": [0, 65535], "if i let him go the": [0, 65535], "i let him go the debt": [0, 65535], "let him go the debt he": [0, 65535], "him go the debt he owes": [0, 65535], "go the debt he owes will": [0, 65535], "the debt he owes will be": [0, 65535], "debt he owes will be requir'd": [0, 65535], "he owes will be requir'd of": [0, 65535], "owes will be requir'd of me": [0, 65535], "will be requir'd of me adr": [0, 65535], "be requir'd of me adr i": [0, 65535], "requir'd of me adr i will": [0, 65535], "of me adr i will discharge": [0, 65535], "me adr i will discharge thee": [0, 65535], "adr i will discharge thee ere": [0, 65535], "i will discharge thee ere i": [0, 65535], "will discharge thee ere i go": [0, 65535], "discharge thee ere i go from": [0, 65535], "thee ere i go from thee": [0, 65535], "ere i go from thee beare": [0, 65535], "i go from thee beare me": [0, 65535], "go from thee beare me forthwith": [0, 65535], "from thee beare me forthwith vnto": [0, 65535], "thee beare me forthwith vnto his": [0, 65535], "beare me forthwith vnto his creditor": [0, 65535], "me forthwith vnto his creditor and": [0, 65535], "forthwith vnto his creditor and knowing": [0, 65535], "vnto his creditor and knowing how": [0, 65535], "his creditor and knowing how the": [0, 65535], "creditor and knowing how the debt": [0, 65535], "and knowing how the debt growes": [0, 65535], "knowing how the debt growes i": [0, 65535], "how the debt growes i will": [0, 65535], "the debt growes i will pay": [0, 65535], "debt growes i will pay it": [0, 65535], "growes i will pay it good": [0, 65535], "i will pay it good master": [0, 65535], "will pay it good master doctor": [0, 65535], "pay it good master doctor see": [0, 65535], "it good master doctor see him": [0, 65535], "good master doctor see him safe": [0, 65535], "master doctor see him safe conuey'd": [0, 65535], "doctor see him safe conuey'd home": [0, 65535], "see him safe conuey'd home to": [0, 65535], "him safe conuey'd home to my": [0, 65535], "safe conuey'd home to my house": [0, 65535], "conuey'd home to my house oh": [0, 65535], "home to my house oh most": [0, 65535], "to my house oh most vnhappy": [0, 65535], "my house oh most vnhappy day": [0, 65535], "house oh most vnhappy day ant": [0, 65535], "oh most vnhappy day ant oh": [0, 65535], "most vnhappy day ant oh most": [0, 65535], "vnhappy day ant oh most vnhappie": [0, 65535], "day ant oh most vnhappie strumpet": [0, 65535], "ant oh most vnhappie strumpet dro": [0, 65535], "oh most vnhappie strumpet dro master": [0, 65535], "most vnhappie strumpet dro master i": [0, 65535], "vnhappie strumpet dro master i am": [0, 65535], "strumpet dro master i am heere": [0, 65535], "dro master i am heere entred": [0, 65535], "master i am heere entred in": [0, 65535], "i am heere entred in bond": [0, 65535], "am heere entred in bond for": [0, 65535], "heere entred in bond for you": [0, 65535], "entred in bond for you ant": [0, 65535], "in bond for you ant out": [0, 65535], "bond for you ant out on": [0, 65535], "for you ant out on thee": [0, 65535], "you ant out on thee villaine": [0, 65535], "ant out on thee villaine wherefore": [0, 65535], "out on thee villaine wherefore dost": [0, 65535], "on thee villaine wherefore dost thou": [0, 65535], "thee villaine wherefore dost thou mad": [0, 65535], "villaine wherefore dost thou mad mee": [0, 65535], "wherefore dost thou mad mee dro": [0, 65535], "dost thou mad mee dro will": [0, 65535], "thou mad mee dro will you": [0, 65535], "mad mee dro will you be": [0, 65535], "mee dro will you be bound": [0, 65535], "dro will you be bound for": [0, 65535], "will you be bound for nothing": [0, 65535], "you be bound for nothing be": [0, 65535], "be bound for nothing be mad": [0, 65535], "bound for nothing be mad good": [0, 65535], "for nothing be mad good master": [0, 65535], "nothing be mad good master cry": [0, 65535], "be mad good master cry the": [0, 65535], "mad good master cry the diuell": [0, 65535], "good master cry the diuell luc": [0, 65535], "master cry the diuell luc god": [0, 65535], "cry the diuell luc god helpe": [0, 65535], "the diuell luc god helpe poore": [0, 65535], "diuell luc god helpe poore soules": [0, 65535], "luc god helpe poore soules how": [0, 65535], "god helpe poore soules how idlely": [0, 65535], "helpe poore soules how idlely doe": [0, 65535], "poore soules how idlely doe they": [0, 65535], "soules how idlely doe they talke": [0, 65535], "how idlely doe they talke adr": [0, 65535], "idlely doe they talke adr go": [0, 65535], "doe they talke adr go beare": [0, 65535], "they talke adr go beare him": [0, 65535], "talke adr go beare him hence": [0, 65535], "adr go beare him hence sister": [0, 65535], "go beare him hence sister go": [0, 65535], "beare him hence sister go you": [0, 65535], "him hence sister go you with": [0, 65535], "hence sister go you with me": [0, 65535], "sister go you with me say": [0, 65535], "go you with me say now": [0, 65535], "you with me say now whose": [0, 65535], "with me say now whose suite": [0, 65535], "me say now whose suite is": [0, 65535], "say now whose suite is he": [0, 65535], "now whose suite is he arrested": [0, 65535], "whose suite is he arrested at": [0, 65535], "suite is he arrested at exeunt": [0, 65535], "is he arrested at exeunt manet": [0, 65535], "he arrested at exeunt manet offic": [0, 65535], "arrested at exeunt manet offic adri": [0, 65535], "at exeunt manet offic adri luci": [0, 65535], "exeunt manet offic adri luci courtizan": [0, 65535], "manet offic adri luci courtizan off": [0, 65535], "offic adri luci courtizan off one": [0, 65535], "adri luci courtizan off one angelo": [0, 65535], "luci courtizan off one angelo a": [0, 65535], "courtizan off one angelo a goldsmith": [0, 65535], "off one angelo a goldsmith do": [0, 65535], "one angelo a goldsmith do you": [0, 65535], "angelo a goldsmith do you know": [0, 65535], "a goldsmith do you know him": [0, 65535], "goldsmith do you know him adr": [0, 65535], "do you know him adr i": [0, 65535], "you know him adr i know": [0, 65535], "know him adr i know the": [0, 65535], "him adr i know the man": [0, 65535], "adr i know the man what": [0, 65535], "i know the man what is": [0, 65535], "know the man what is the": [0, 65535], "the man what is the summe": [0, 65535], "man what is the summe he": [0, 65535], "what is the summe he owes": [0, 65535], "is the summe he owes off": [0, 65535], "the summe he owes off two": [0, 65535], "summe he owes off two hundred": [0, 65535], "he owes off two hundred duckets": [0, 65535], "owes off two hundred duckets adr": [0, 65535], "off two hundred duckets adr say": [0, 65535], "two hundred duckets adr say how": [0, 65535], "hundred duckets adr say how growes": [0, 65535], "duckets adr say how growes it": [0, 65535], "adr say how growes it due": [0, 65535], "say how growes it due off": [0, 65535], "how growes it due off due": [0, 65535], "growes it due off due for": [0, 65535], "it due off due for a": [0, 65535], "due off due for a chaine": [0, 65535], "off due for a chaine your": [0, 65535], "due for a chaine your husband": [0, 65535], "for a chaine your husband had": [0, 65535], "a chaine your husband had of": [0, 65535], "chaine your husband had of him": [0, 65535], "your husband had of him adr": [0, 65535], "husband had of him adr he": [0, 65535], "had of him adr he did": [0, 65535], "of him adr he did bespeake": [0, 65535], "him adr he did bespeake a": [0, 65535], "adr he did bespeake a chain": [0, 65535], "he did bespeake a chain for": [0, 65535], "did bespeake a chain for me": [0, 65535], "bespeake a chain for me but": [0, 65535], "a chain for me but had": [0, 65535], "chain for me but had it": [0, 65535], "for me but had it not": [0, 65535], "me but had it not cur": [0, 65535], "but had it not cur when": [0, 65535], "had it not cur when as": [0, 65535], "it not cur when as your": [0, 65535], "not cur when as your husband": [0, 65535], "cur when as your husband all": [0, 65535], "when as your husband all in": [0, 65535], "as your husband all in rage": [0, 65535], "your husband all in rage to": [0, 65535], "husband all in rage to day": [0, 65535], "all in rage to day came": [0, 65535], "in rage to day came to": [0, 65535], "rage to day came to my": [0, 65535], "to day came to my house": [0, 65535], "day came to my house and": [0, 65535], "came to my house and tooke": [0, 65535], "to my house and tooke away": [0, 65535], "my house and tooke away my": [0, 65535], "house and tooke away my ring": [0, 65535], "and tooke away my ring the": [0, 65535], "tooke away my ring the ring": [0, 65535], "away my ring the ring i": [0, 65535], "my ring the ring i saw": [0, 65535], "ring the ring i saw vpon": [0, 65535], "the ring i saw vpon his": [0, 65535], "ring i saw vpon his finger": [0, 65535], "i saw vpon his finger now": [0, 65535], "saw vpon his finger now straight": [0, 65535], "vpon his finger now straight after": [0, 65535], "his finger now straight after did": [0, 65535], "finger now straight after did i": [0, 65535], "now straight after did i meete": [0, 65535], "straight after did i meete him": [0, 65535], "after did i meete him with": [0, 65535], "did i meete him with a": [0, 65535], "i meete him with a chaine": [0, 65535], "meete him with a chaine adr": [0, 65535], "him with a chaine adr it": [0, 65535], "with a chaine adr it may": [0, 65535], "a chaine adr it may be": [0, 65535], "chaine adr it may be so": [0, 65535], "adr it may be so but": [0, 65535], "it may be so but i": [0, 65535], "may be so but i did": [0, 65535], "be so but i did neuer": [0, 65535], "so but i did neuer see": [0, 65535], "but i did neuer see it": [0, 65535], "i did neuer see it come": [0, 65535], "did neuer see it come iailor": [0, 65535], "neuer see it come iailor bring": [0, 65535], "see it come iailor bring me": [0, 65535], "it come iailor bring me where": [0, 65535], "come iailor bring me where the": [0, 65535], "iailor bring me where the goldsmith": [0, 65535], "bring me where the goldsmith is": [0, 65535], "me where the goldsmith is i": [0, 65535], "where the goldsmith is i long": [0, 65535], "the goldsmith is i long to": [0, 65535], "goldsmith is i long to know": [0, 65535], "is i long to know the": [0, 65535], "i long to know the truth": [0, 65535], "long to know the truth heereof": [0, 65535], "to know the truth heereof at": [0, 65535], "know the truth heereof at large": [0, 65535], "the truth heereof at large enter": [0, 65535], "truth heereof at large enter antipholus": [0, 65535], "heereof at large enter antipholus siracusia": [0, 65535], "at large enter antipholus siracusia with": [0, 65535], "large enter antipholus siracusia with his": [0, 65535], "enter antipholus siracusia with his rapier": [0, 65535], "antipholus siracusia with his rapier drawne": [0, 65535], "siracusia with his rapier drawne and": [0, 65535], "with his rapier drawne and dromio": [0, 65535], "his rapier drawne and dromio sirac": [0, 65535], "rapier drawne and dromio sirac luc": [0, 65535], "drawne and dromio sirac luc god": [0, 65535], "and dromio sirac luc god for": [0, 65535], "dromio sirac luc god for thy": [0, 65535], "sirac luc god for thy mercy": [0, 65535], "luc god for thy mercy they": [0, 65535], "god for thy mercy they are": [0, 65535], "for thy mercy they are loose": [0, 65535], "thy mercy they are loose againe": [0, 65535], "mercy they are loose againe adr": [0, 65535], "they are loose againe adr and": [0, 65535], "are loose againe adr and come": [0, 65535], "loose againe adr and come with": [0, 65535], "againe adr and come with naked": [0, 65535], "adr and come with naked swords": [0, 65535], "and come with naked swords let's": [0, 65535], "come with naked swords let's call": [0, 65535], "with naked swords let's call more": [0, 65535], "naked swords let's call more helpe": [0, 65535], "swords let's call more helpe to": [0, 65535], "let's call more helpe to haue": [0, 65535], "call more helpe to haue them": [0, 65535], "more helpe to haue them bound": [0, 65535], "helpe to haue them bound againe": [0, 65535], "to haue them bound againe runne": [0, 65535], "haue them bound againe runne all": [0, 65535], "them bound againe runne all out": [0, 65535], "bound againe runne all out off": [0, 65535], "againe runne all out off away": [0, 65535], "runne all out off away they'l": [0, 65535], "all out off away they'l kill": [0, 65535], "out off away they'l kill vs": [0, 65535], "off away they'l kill vs exeunt": [0, 65535], "away they'l kill vs exeunt omnes": [0, 65535], "they'l kill vs exeunt omnes as": [0, 65535], "kill vs exeunt omnes as fast": [0, 65535], "vs exeunt omnes as fast as": [0, 65535], "exeunt omnes as fast as may": [0, 65535], "omnes as fast as may be": [0, 65535], "as fast as may be frighted": [0, 65535], "fast as may be frighted s": [0, 65535], "as may be frighted s ant": [0, 65535], "may be frighted s ant i": [0, 65535], "be frighted s ant i see": [0, 65535], "frighted s ant i see these": [0, 65535], "s ant i see these witches": [0, 65535], "ant i see these witches are": [0, 65535], "i see these witches are affraid": [0, 65535], "see these witches are affraid of": [0, 65535], "these witches are affraid of swords": [0, 65535], "witches are affraid of swords s": [0, 65535], "are affraid of swords s dro": [0, 65535], "affraid of swords s dro she": [0, 65535], "of swords s dro she that": [0, 65535], "swords s dro she that would": [0, 65535], "s dro she that would be": [0, 65535], "dro she that would be your": [0, 65535], "she that would be your wife": [0, 65535], "that would be your wife now": [0, 65535], "would be your wife now ran": [0, 65535], "be your wife now ran from": [0, 65535], "your wife now ran from you": [0, 65535], "wife now ran from you ant": [0, 65535], "now ran from you ant come": [0, 65535], "ran from you ant come to": [0, 65535], "from you ant come to the": [0, 65535], "you ant come to the centaur": [0, 65535], "ant come to the centaur fetch": [0, 65535], "come to the centaur fetch our": [0, 65535], "to the centaur fetch our stuffe": [0, 65535], "the centaur fetch our stuffe from": [0, 65535], "centaur fetch our stuffe from thence": [0, 65535], "fetch our stuffe from thence i": [0, 65535], "our stuffe from thence i long": [0, 65535], "stuffe from thence i long that": [0, 65535], "from thence i long that we": [0, 65535], "thence i long that we were": [0, 65535], "i long that we were safe": [0, 65535], "long that we were safe and": [0, 65535], "that we were safe and sound": [0, 65535], "we were safe and sound aboord": [0, 65535], "were safe and sound aboord dro": [0, 65535], "safe and sound aboord dro faith": [0, 65535], "and sound aboord dro faith stay": [0, 65535], "sound aboord dro faith stay heere": [0, 65535], "aboord dro faith stay heere this": [0, 65535], "dro faith stay heere this night": [0, 65535], "faith stay heere this night they": [0, 65535], "stay heere this night they will": [0, 65535], "heere this night they will surely": [0, 65535], "this night they will surely do": [0, 65535], "night they will surely do vs": [0, 65535], "they will surely do vs no": [0, 65535], "will surely do vs no harme": [0, 65535], "surely do vs no harme you": [0, 65535], "do vs no harme you saw": [0, 65535], "vs no harme you saw they": [0, 65535], "no harme you saw they speake": [0, 65535], "harme you saw they speake vs": [0, 65535], "you saw they speake vs faire": [0, 65535], "saw they speake vs faire giue": [0, 65535], "they speake vs faire giue vs": [0, 65535], "speake vs faire giue vs gold": [0, 65535], "vs faire giue vs gold me": [0, 65535], "faire giue vs gold me thinkes": [0, 65535], "giue vs gold me thinkes they": [0, 65535], "vs gold me thinkes they are": [0, 65535], "gold me thinkes they are such": [0, 65535], "me thinkes they are such a": [0, 65535], "thinkes they are such a gentle": [0, 65535], "they are such a gentle nation": [0, 65535], "are such a gentle nation that": [0, 65535], "such a gentle nation that but": [0, 65535], "a gentle nation that but for": [0, 65535], "gentle nation that but for the": [0, 65535], "nation that but for the mountaine": [0, 65535], "that but for the mountaine of": [0, 65535], "but for the mountaine of mad": [0, 65535], "for the mountaine of mad flesh": [0, 65535], "the mountaine of mad flesh that": [0, 65535], "mountaine of mad flesh that claimes": [0, 65535], "of mad flesh that claimes mariage": [0, 65535], "mad flesh that claimes mariage of": [0, 65535], "flesh that claimes mariage of me": [0, 65535], "that claimes mariage of me i": [0, 65535], "claimes mariage of me i could": [0, 65535], "mariage of me i could finde": [0, 65535], "of me i could finde in": [0, 65535], "me i could finde in my": [0, 65535], "i could finde in my heart": [0, 65535], "could finde in my heart to": [0, 65535], "finde in my heart to stay": [0, 65535], "in my heart to stay heere": [0, 65535], "my heart to stay heere still": [0, 65535], "heart to stay heere still and": [0, 65535], "to stay heere still and turne": [0, 65535], "stay heere still and turne witch": [0, 65535], "heere still and turne witch ant": [0, 65535], "still and turne witch ant i": [0, 65535], "and turne witch ant i will": [0, 65535], "turne witch ant i will not": [0, 65535], "witch ant i will not stay": [0, 65535], "ant i will not stay to": [0, 65535], "i will not stay to night": [0, 65535], "will not stay to night for": [0, 65535], "not stay to night for all": [0, 65535], "stay to night for all the": [0, 65535], "to night for all the towne": [0, 65535], "night for all the towne therefore": [0, 65535], "for all the towne therefore away": [0, 65535], "all the towne therefore away to": [0, 65535], "the towne therefore away to get": [0, 65535], "towne therefore away to get our": [0, 65535], "therefore away to get our stuffe": [0, 65535], "away to get our stuffe aboord": [0, 65535], "to get our stuffe aboord exeunt": [0, 65535], "actus quartus sc\u00e6na prima enter a merchant": [0, 65535], "quartus sc\u00e6na prima enter a merchant goldsmith": [0, 65535], "sc\u00e6na prima enter a merchant goldsmith and": [0, 65535], "prima enter a merchant goldsmith and an": [0, 65535], "enter a merchant goldsmith and an officer": [0, 65535], "a merchant goldsmith and an officer mar": [0, 65535], "merchant goldsmith and an officer mar you": [0, 65535], "goldsmith and an officer mar you know": [0, 65535], "and an officer mar you know since": [0, 65535], "an officer mar you know since pentecost": [0, 65535], "officer mar you know since pentecost the": [0, 65535], "mar you know since pentecost the sum": [0, 65535], "you know since pentecost the sum is": [0, 65535], "know since pentecost the sum is due": [0, 65535], "since pentecost the sum is due and": [0, 65535], "pentecost the sum is due and since": [0, 65535], "the sum is due and since i": [0, 65535], "sum is due and since i haue": [0, 65535], "is due and since i haue not": [0, 65535], "due and since i haue not much": [0, 65535], "and since i haue not much importun'd": [0, 65535], "since i haue not much importun'd you": [0, 65535], "i haue not much importun'd you nor": [0, 65535], "haue not much importun'd you nor now": [0, 65535], "not much importun'd you nor now i": [0, 65535], "much importun'd you nor now i had": [0, 65535], "importun'd you nor now i had not": [0, 65535], "you nor now i had not but": [0, 65535], "nor now i had not but that": [0, 65535], "now i had not but that i": [0, 65535], "i had not but that i am": [0, 65535], "had not but that i am bound": [0, 65535], "not but that i am bound to": [0, 65535], "but that i am bound to persia": [0, 65535], "that i am bound to persia and": [0, 65535], "i am bound to persia and want": [0, 65535], "am bound to persia and want gilders": [0, 65535], "bound to persia and want gilders for": [0, 65535], "to persia and want gilders for my": [0, 65535], "persia and want gilders for my voyage": [0, 65535], "and want gilders for my voyage therefore": [0, 65535], "want gilders for my voyage therefore make": [0, 65535], "gilders for my voyage therefore make present": [0, 65535], "for my voyage therefore make present satisfaction": [0, 65535], "my voyage therefore make present satisfaction or": [0, 65535], "voyage therefore make present satisfaction or ile": [0, 65535], "therefore make present satisfaction or ile attach": [0, 65535], "make present satisfaction or ile attach you": [0, 65535], "present satisfaction or ile attach you by": [0, 65535], "satisfaction or ile attach you by this": [0, 65535], "or ile attach you by this officer": [0, 65535], "ile attach you by this officer gold": [0, 65535], "attach you by this officer gold euen": [0, 65535], "you by this officer gold euen iust": [0, 65535], "by this officer gold euen iust the": [0, 65535], "this officer gold euen iust the sum": [0, 65535], "officer gold euen iust the sum that": [0, 65535], "gold euen iust the sum that i": [0, 65535], "euen iust the sum that i do": [0, 65535], "iust the sum that i do owe": [0, 65535], "the sum that i do owe to": [0, 65535], "sum that i do owe to you": [0, 65535], "that i do owe to you is": [0, 65535], "i do owe to you is growing": [0, 65535], "do owe to you is growing to": [0, 65535], "owe to you is growing to me": [0, 65535], "to you is growing to me by": [0, 65535], "you is growing to me by antipholus": [0, 65535], "is growing to me by antipholus and": [0, 65535], "growing to me by antipholus and in": [0, 65535], "to me by antipholus and in the": [0, 65535], "me by antipholus and in the instant": [0, 65535], "by antipholus and in the instant that": [0, 65535], "antipholus and in the instant that i": [0, 65535], "and in the instant that i met": [0, 65535], "in the instant that i met with": [0, 65535], "the instant that i met with you": [0, 65535], "instant that i met with you he": [0, 65535], "that i met with you he had": [0, 65535], "i met with you he had of": [0, 65535], "met with you he had of me": [0, 65535], "with you he had of me a": [0, 65535], "you he had of me a chaine": [0, 65535], "he had of me a chaine at": [0, 65535], "had of me a chaine at fiue": [0, 65535], "of me a chaine at fiue a": [0, 65535], "me a chaine at fiue a clocke": [0, 65535], "a chaine at fiue a clocke i": [0, 65535], "chaine at fiue a clocke i shall": [0, 65535], "at fiue a clocke i shall receiue": [0, 65535], "fiue a clocke i shall receiue the": [0, 65535], "a clocke i shall receiue the money": [0, 65535], "clocke i shall receiue the money for": [0, 65535], "i shall receiue the money for the": [0, 65535], "shall receiue the money for the same": [0, 65535], "receiue the money for the same pleaseth": [0, 65535], "the money for the same pleaseth you": [0, 65535], "money for the same pleaseth you walke": [0, 65535], "for the same pleaseth you walke with": [0, 65535], "the same pleaseth you walke with me": [0, 65535], "same pleaseth you walke with me downe": [0, 65535], "pleaseth you walke with me downe to": [0, 65535], "you walke with me downe to his": [0, 65535], "walke with me downe to his house": [0, 65535], "with me downe to his house i": [0, 65535], "me downe to his house i will": [0, 65535], "downe to his house i will discharge": [0, 65535], "to his house i will discharge my": [0, 65535], "his house i will discharge my bond": [0, 65535], "house i will discharge my bond and": [0, 65535], "i will discharge my bond and thanke": [0, 65535], "will discharge my bond and thanke you": [0, 65535], "discharge my bond and thanke you too": [0, 65535], "my bond and thanke you too enter": [0, 65535], "bond and thanke you too enter antipholus": [0, 65535], "and thanke you too enter antipholus ephes": [0, 65535], "thanke you too enter antipholus ephes dromio": [0, 65535], "you too enter antipholus ephes dromio from": [0, 65535], "too enter antipholus ephes dromio from the": [0, 65535], "enter antipholus ephes dromio from the courtizans": [0, 65535], "antipholus ephes dromio from the courtizans offi": [0, 65535], "ephes dromio from the courtizans offi that": [0, 65535], "dromio from the courtizans offi that labour": [0, 65535], "from the courtizans offi that labour may": [0, 65535], "the courtizans offi that labour may you": [0, 65535], "courtizans offi that labour may you saue": [0, 65535], "offi that labour may you saue see": [0, 65535], "that labour may you saue see where": [0, 65535], "labour may you saue see where he": [0, 65535], "may you saue see where he comes": [0, 65535], "you saue see where he comes ant": [0, 65535], "saue see where he comes ant while": [0, 65535], "see where he comes ant while i": [0, 65535], "where he comes ant while i go": [0, 65535], "he comes ant while i go to": [0, 65535], "comes ant while i go to the": [0, 65535], "ant while i go to the goldsmiths": [0, 65535], "while i go to the goldsmiths house": [0, 65535], "i go to the goldsmiths house go": [0, 65535], "go to the goldsmiths house go thou": [0, 65535], "to the goldsmiths house go thou and": [0, 65535], "the goldsmiths house go thou and buy": [0, 65535], "goldsmiths house go thou and buy a": [0, 65535], "house go thou and buy a ropes": [0, 65535], "go thou and buy a ropes end": [0, 65535], "thou and buy a ropes end that": [0, 65535], "and buy a ropes end that will": [0, 65535], "buy a ropes end that will i": [0, 65535], "a ropes end that will i bestow": [0, 65535], "ropes end that will i bestow among": [0, 65535], "end that will i bestow among my": [0, 65535], "that will i bestow among my wife": [0, 65535], "will i bestow among my wife and": [0, 65535], "i bestow among my wife and their": [0, 65535], "bestow among my wife and their confederates": [0, 65535], "among my wife and their confederates for": [0, 65535], "my wife and their confederates for locking": [0, 65535], "wife and their confederates for locking me": [0, 65535], "and their confederates for locking me out": [0, 65535], "their confederates for locking me out of": [0, 65535], "confederates for locking me out of my": [0, 65535], "for locking me out of my doores": [0, 65535], "locking me out of my doores by": [0, 65535], "me out of my doores by day": [0, 65535], "out of my doores by day but": [0, 65535], "of my doores by day but soft": [0, 65535], "my doores by day but soft i": [0, 65535], "doores by day but soft i see": [0, 65535], "by day but soft i see the": [0, 65535], "day but soft i see the goldsmith": [0, 65535], "but soft i see the goldsmith get": [0, 65535], "soft i see the goldsmith get thee": [0, 65535], "i see the goldsmith get thee gone": [0, 65535], "see the goldsmith get thee gone buy": [0, 65535], "the goldsmith get thee gone buy thou": [0, 65535], "goldsmith get thee gone buy thou a": [0, 65535], "get thee gone buy thou a rope": [0, 65535], "thee gone buy thou a rope and": [0, 65535], "gone buy thou a rope and bring": [0, 65535], "buy thou a rope and bring it": [0, 65535], "thou a rope and bring it home": [0, 65535], "a rope and bring it home to": [0, 65535], "rope and bring it home to me": [0, 65535], "and bring it home to me dro": [0, 65535], "bring it home to me dro i": [0, 65535], "it home to me dro i buy": [0, 65535], "home to me dro i buy a": [0, 65535], "to me dro i buy a thousand": [0, 65535], "me dro i buy a thousand pound": [0, 65535], "dro i buy a thousand pound a": [0, 65535], "i buy a thousand pound a yeare": [0, 65535], "buy a thousand pound a yeare i": [0, 65535], "a thousand pound a yeare i buy": [0, 65535], "thousand pound a yeare i buy a": [0, 65535], "pound a yeare i buy a rope": [0, 65535], "a yeare i buy a rope exit": [0, 65535], "yeare i buy a rope exit dromio": [0, 65535], "i buy a rope exit dromio eph": [0, 65535], "buy a rope exit dromio eph ant": [0, 65535], "a rope exit dromio eph ant a": [0, 65535], "rope exit dromio eph ant a man": [0, 65535], "exit dromio eph ant a man is": [0, 65535], "dromio eph ant a man is well": [0, 65535], "eph ant a man is well holpe": [0, 65535], "ant a man is well holpe vp": [0, 65535], "a man is well holpe vp that": [0, 65535], "man is well holpe vp that trusts": [0, 65535], "is well holpe vp that trusts to": [0, 65535], "well holpe vp that trusts to you": [0, 65535], "holpe vp that trusts to you i": [0, 65535], "vp that trusts to you i promised": [0, 65535], "that trusts to you i promised your": [0, 65535], "trusts to you i promised your presence": [0, 65535], "to you i promised your presence and": [0, 65535], "you i promised your presence and the": [0, 65535], "i promised your presence and the chaine": [0, 65535], "promised your presence and the chaine but": [0, 65535], "your presence and the chaine but neither": [0, 65535], "presence and the chaine but neither chaine": [0, 65535], "and the chaine but neither chaine nor": [0, 65535], "the chaine but neither chaine nor goldsmith": [0, 65535], "chaine but neither chaine nor goldsmith came": [0, 65535], "but neither chaine nor goldsmith came to": [0, 65535], "neither chaine nor goldsmith came to me": [0, 65535], "chaine nor goldsmith came to me belike": [0, 65535], "nor goldsmith came to me belike you": [0, 65535], "goldsmith came to me belike you thought": [0, 65535], "came to me belike you thought our": [0, 65535], "to me belike you thought our loue": [0, 65535], "me belike you thought our loue would": [0, 65535], "belike you thought our loue would last": [0, 65535], "you thought our loue would last too": [0, 65535], "thought our loue would last too long": [0, 65535], "our loue would last too long if": [0, 65535], "loue would last too long if it": [0, 65535], "would last too long if it were": [0, 65535], "last too long if it were chain'd": [0, 65535], "too long if it were chain'd together": [0, 65535], "long if it were chain'd together and": [0, 65535], "if it were chain'd together and therefore": [0, 65535], "it were chain'd together and therefore came": [0, 65535], "were chain'd together and therefore came not": [0, 65535], "chain'd together and therefore came not gold": [0, 65535], "together and therefore came not gold sauing": [0, 65535], "and therefore came not gold sauing your": [0, 65535], "therefore came not gold sauing your merrie": [0, 65535], "came not gold sauing your merrie humor": [0, 65535], "not gold sauing your merrie humor here's": [0, 65535], "gold sauing your merrie humor here's the": [0, 65535], "sauing your merrie humor here's the note": [0, 65535], "your merrie humor here's the note how": [0, 65535], "merrie humor here's the note how much": [0, 65535], "humor here's the note how much your": [0, 65535], "here's the note how much your chaine": [0, 65535], "the note how much your chaine weighs": [0, 65535], "note how much your chaine weighs to": [0, 65535], "how much your chaine weighs to the": [0, 65535], "much your chaine weighs to the vtmost": [0, 65535], "your chaine weighs to the vtmost charect": [0, 65535], "chaine weighs to the vtmost charect the": [0, 65535], "weighs to the vtmost charect the finenesse": [0, 65535], "to the vtmost charect the finenesse of": [0, 65535], "the vtmost charect the finenesse of the": [0, 65535], "vtmost charect the finenesse of the gold": [0, 65535], "charect the finenesse of the gold and": [0, 65535], "the finenesse of the gold and chargefull": [0, 65535], "finenesse of the gold and chargefull fashion": [0, 65535], "of the gold and chargefull fashion which": [0, 65535], "the gold and chargefull fashion which doth": [0, 65535], "gold and chargefull fashion which doth amount": [0, 65535], "and chargefull fashion which doth amount to": [0, 65535], "chargefull fashion which doth amount to three": [0, 65535], "fashion which doth amount to three odde": [0, 65535], "which doth amount to three odde duckets": [0, 65535], "doth amount to three odde duckets more": [0, 65535], "amount to three odde duckets more then": [0, 65535], "to three odde duckets more then i": [0, 65535], "three odde duckets more then i stand": [0, 65535], "odde duckets more then i stand debted": [0, 65535], "duckets more then i stand debted to": [0, 65535], "more then i stand debted to this": [0, 65535], "then i stand debted to this gentleman": [0, 65535], "i stand debted to this gentleman i": [0, 65535], "stand debted to this gentleman i pray": [0, 65535], "debted to this gentleman i pray you": [0, 65535], "to this gentleman i pray you see": [0, 65535], "this gentleman i pray you see him": [0, 65535], "gentleman i pray you see him presently": [0, 65535], "i pray you see him presently discharg'd": [0, 65535], "pray you see him presently discharg'd for": [0, 65535], "you see him presently discharg'd for he": [0, 65535], "see him presently discharg'd for he is": [0, 65535], "him presently discharg'd for he is bound": [0, 65535], "presently discharg'd for he is bound to": [0, 65535], "discharg'd for he is bound to sea": [0, 65535], "for he is bound to sea and": [0, 65535], "he is bound to sea and stayes": [0, 65535], "is bound to sea and stayes but": [0, 65535], "bound to sea and stayes but for": [0, 65535], "to sea and stayes but for it": [0, 65535], "sea and stayes but for it anti": [0, 65535], "and stayes but for it anti i": [0, 65535], "stayes but for it anti i am": [0, 65535], "but for it anti i am not": [0, 65535], "for it anti i am not furnish'd": [0, 65535], "it anti i am not furnish'd with": [0, 65535], "anti i am not furnish'd with the": [0, 65535], "i am not furnish'd with the present": [0, 65535], "am not furnish'd with the present monie": [0, 65535], "not furnish'd with the present monie besides": [0, 65535], "furnish'd with the present monie besides i": [0, 65535], "with the present monie besides i haue": [0, 65535], "the present monie besides i haue some": [0, 65535], "present monie besides i haue some businesse": [0, 65535], "monie besides i haue some businesse in": [0, 65535], "besides i haue some businesse in the": [0, 65535], "i haue some businesse in the towne": [0, 65535], "haue some businesse in the towne good": [0, 65535], "some businesse in the towne good signior": [0, 65535], "businesse in the towne good signior take": [0, 65535], "in the towne good signior take the": [0, 65535], "the towne good signior take the stranger": [0, 65535], "towne good signior take the stranger to": [0, 65535], "good signior take the stranger to my": [0, 65535], "signior take the stranger to my house": [0, 65535], "take the stranger to my house and": [0, 65535], "the stranger to my house and with": [0, 65535], "stranger to my house and with you": [0, 65535], "to my house and with you take": [0, 65535], "my house and with you take the": [0, 65535], "house and with you take the chaine": [0, 65535], "and with you take the chaine and": [0, 65535], "with you take the chaine and bid": [0, 65535], "you take the chaine and bid my": [0, 65535], "take the chaine and bid my wife": [0, 65535], "the chaine and bid my wife disburse": [0, 65535], "chaine and bid my wife disburse the": [0, 65535], "and bid my wife disburse the summe": [0, 65535], "bid my wife disburse the summe on": [0, 65535], "my wife disburse the summe on the": [0, 65535], "wife disburse the summe on the receit": [0, 65535], "disburse the summe on the receit thereof": [0, 65535], "the summe on the receit thereof perchance": [0, 65535], "summe on the receit thereof perchance i": [0, 65535], "on the receit thereof perchance i will": [0, 65535], "the receit thereof perchance i will be": [0, 65535], "receit thereof perchance i will be there": [0, 65535], "thereof perchance i will be there as": [0, 65535], "perchance i will be there as soone": [0, 65535], "i will be there as soone as": [0, 65535], "will be there as soone as you": [0, 65535], "be there as soone as you gold": [0, 65535], "there as soone as you gold then": [0, 65535], "as soone as you gold then you": [0, 65535], "soone as you gold then you will": [0, 65535], "as you gold then you will bring": [0, 65535], "you gold then you will bring the": [0, 65535], "gold then you will bring the chaine": [0, 65535], "then you will bring the chaine to": [0, 65535], "you will bring the chaine to her": [0, 65535], "will bring the chaine to her your": [0, 65535], "bring the chaine to her your selfe": [0, 65535], "the chaine to her your selfe anti": [0, 65535], "chaine to her your selfe anti no": [0, 65535], "to her your selfe anti no beare": [0, 65535], "her your selfe anti no beare it": [0, 65535], "your selfe anti no beare it with": [0, 65535], "selfe anti no beare it with you": [0, 65535], "anti no beare it with you least": [0, 65535], "no beare it with you least i": [0, 65535], "beare it with you least i come": [0, 65535], "it with you least i come not": [0, 65535], "with you least i come not time": [0, 65535], "you least i come not time enough": [0, 65535], "least i come not time enough gold": [0, 65535], "i come not time enough gold well": [0, 65535], "come not time enough gold well sir": [0, 65535], "not time enough gold well sir i": [0, 65535], "time enough gold well sir i will": [0, 65535], "enough gold well sir i will haue": [0, 65535], "gold well sir i will haue you": [0, 65535], "well sir i will haue you the": [0, 65535], "sir i will haue you the chaine": [0, 65535], "i will haue you the chaine about": [0, 65535], "will haue you the chaine about you": [0, 65535], "haue you the chaine about you ant": [0, 65535], "you the chaine about you ant and": [0, 65535], "the chaine about you ant and if": [0, 65535], "chaine about you ant and if i": [0, 65535], "about you ant and if i haue": [0, 65535], "you ant and if i haue not": [0, 65535], "ant and if i haue not sir": [0, 65535], "and if i haue not sir i": [0, 65535], "if i haue not sir i hope": [0, 65535], "i haue not sir i hope you": [0, 65535], "haue not sir i hope you haue": [0, 65535], "not sir i hope you haue or": [0, 65535], "sir i hope you haue or else": [0, 65535], "i hope you haue or else you": [0, 65535], "hope you haue or else you may": [0, 65535], "you haue or else you may returne": [0, 65535], "haue or else you may returne without": [0, 65535], "or else you may returne without your": [0, 65535], "else you may returne without your money": [0, 65535], "you may returne without your money gold": [0, 65535], "may returne without your money gold nay": [0, 65535], "returne without your money gold nay come": [0, 65535], "without your money gold nay come i": [0, 65535], "your money gold nay come i pray": [0, 65535], "money gold nay come i pray you": [0, 65535], "gold nay come i pray you sir": [0, 65535], "nay come i pray you sir giue": [0, 65535], "come i pray you sir giue me": [0, 65535], "i pray you sir giue me the": [0, 65535], "pray you sir giue me the chaine": [0, 65535], "you sir giue me the chaine both": [0, 65535], "sir giue me the chaine both winde": [0, 65535], "giue me the chaine both winde and": [0, 65535], "me the chaine both winde and tide": [0, 65535], "the chaine both winde and tide stayes": [0, 65535], "chaine both winde and tide stayes for": [0, 65535], "both winde and tide stayes for this": [0, 65535], "winde and tide stayes for this gentleman": [0, 65535], "and tide stayes for this gentleman and": [0, 65535], "tide stayes for this gentleman and i": [0, 65535], "stayes for this gentleman and i too": [0, 65535], "for this gentleman and i too blame": [0, 65535], "this gentleman and i too blame haue": [0, 65535], "gentleman and i too blame haue held": [0, 65535], "and i too blame haue held him": [0, 65535], "i too blame haue held him heere": [0, 65535], "too blame haue held him heere too": [0, 65535], "blame haue held him heere too long": [0, 65535], "haue held him heere too long anti": [0, 65535], "held him heere too long anti good": [0, 65535], "him heere too long anti good lord": [0, 65535], "heere too long anti good lord you": [0, 65535], "too long anti good lord you vse": [0, 65535], "long anti good lord you vse this": [0, 65535], "anti good lord you vse this dalliance": [0, 65535], "good lord you vse this dalliance to": [0, 65535], "lord you vse this dalliance to excuse": [0, 65535], "you vse this dalliance to excuse your": [0, 65535], "vse this dalliance to excuse your breach": [0, 65535], "this dalliance to excuse your breach of": [0, 65535], "dalliance to excuse your breach of promise": [0, 65535], "to excuse your breach of promise to": [0, 65535], "excuse your breach of promise to the": [0, 65535], "your breach of promise to the porpentine": [0, 65535], "breach of promise to the porpentine i": [0, 65535], "of promise to the porpentine i should": [0, 65535], "promise to the porpentine i should haue": [0, 65535], "to the porpentine i should haue chid": [0, 65535], "the porpentine i should haue chid you": [0, 65535], "porpentine i should haue chid you for": [0, 65535], "i should haue chid you for not": [0, 65535], "should haue chid you for not bringing": [0, 65535], "haue chid you for not bringing it": [0, 65535], "chid you for not bringing it but": [0, 65535], "you for not bringing it but like": [0, 65535], "for not bringing it but like a": [0, 65535], "not bringing it but like a shrew": [0, 65535], "bringing it but like a shrew you": [0, 65535], "it but like a shrew you first": [0, 65535], "but like a shrew you first begin": [0, 65535], "like a shrew you first begin to": [0, 65535], "a shrew you first begin to brawle": [0, 65535], "shrew you first begin to brawle mar": [0, 65535], "you first begin to brawle mar the": [0, 65535], "first begin to brawle mar the houre": [0, 65535], "begin to brawle mar the houre steales": [0, 65535], "to brawle mar the houre steales on": [0, 65535], "brawle mar the houre steales on i": [0, 65535], "mar the houre steales on i pray": [0, 65535], "the houre steales on i pray you": [0, 65535], "houre steales on i pray you sir": [0, 65535], "steales on i pray you sir dispatch": [0, 65535], "on i pray you sir dispatch gold": [0, 65535], "i pray you sir dispatch gold you": [0, 65535], "pray you sir dispatch gold you heare": [0, 65535], "you sir dispatch gold you heare how": [0, 65535], "sir dispatch gold you heare how he": [0, 65535], "dispatch gold you heare how he importunes": [0, 65535], "gold you heare how he importunes me": [0, 65535], "you heare how he importunes me the": [0, 65535], "heare how he importunes me the chaine": [0, 65535], "how he importunes me the chaine ant": [0, 65535], "he importunes me the chaine ant why": [0, 65535], "importunes me the chaine ant why giue": [0, 65535], "me the chaine ant why giue it": [0, 65535], "the chaine ant why giue it to": [0, 65535], "chaine ant why giue it to my": [0, 65535], "ant why giue it to my wife": [0, 65535], "why giue it to my wife and": [0, 65535], "giue it to my wife and fetch": [0, 65535], "it to my wife and fetch your": [0, 65535], "to my wife and fetch your mony": [0, 65535], "my wife and fetch your mony gold": [0, 65535], "wife and fetch your mony gold come": [0, 65535], "and fetch your mony gold come come": [0, 65535], "fetch your mony gold come come you": [0, 65535], "your mony gold come come you know": [0, 65535], "mony gold come come you know i": [0, 65535], "gold come come you know i gaue": [0, 65535], "come come you know i gaue it": [0, 65535], "come you know i gaue it you": [0, 65535], "you know i gaue it you euen": [0, 65535], "know i gaue it you euen now": [0, 65535], "i gaue it you euen now either": [0, 65535], "gaue it you euen now either send": [0, 65535], "it you euen now either send the": [0, 65535], "you euen now either send the chaine": [0, 65535], "euen now either send the chaine or": [0, 65535], "now either send the chaine or send": [0, 65535], "either send the chaine or send me": [0, 65535], "send the chaine or send me by": [0, 65535], "the chaine or send me by some": [0, 65535], "chaine or send me by some token": [0, 65535], "or send me by some token ant": [0, 65535], "send me by some token ant fie": [0, 65535], "me by some token ant fie now": [0, 65535], "by some token ant fie now you": [0, 65535], "some token ant fie now you run": [0, 65535], "token ant fie now you run this": [0, 65535], "ant fie now you run this humor": [0, 65535], "fie now you run this humor out": [0, 65535], "now you run this humor out of": [0, 65535], "you run this humor out of breath": [0, 65535], "run this humor out of breath come": [0, 65535], "this humor out of breath come where's": [0, 65535], "humor out of breath come where's the": [0, 65535], "out of breath come where's the chaine": [0, 65535], "of breath come where's the chaine i": [0, 65535], "breath come where's the chaine i pray": [0, 65535], "come where's the chaine i pray you": [0, 65535], "where's the chaine i pray you let": [0, 65535], "the chaine i pray you let me": [0, 65535], "chaine i pray you let me see": [0, 65535], "i pray you let me see it": [0, 65535], "pray you let me see it mar": [0, 65535], "you let me see it mar my": [0, 65535], "let me see it mar my businesse": [0, 65535], "me see it mar my businesse cannot": [0, 65535], "see it mar my businesse cannot brooke": [0, 65535], "it mar my businesse cannot brooke this": [0, 65535], "mar my businesse cannot brooke this dalliance": [0, 65535], "my businesse cannot brooke this dalliance good": [0, 65535], "businesse cannot brooke this dalliance good sir": [0, 65535], "cannot brooke this dalliance good sir say": [0, 65535], "brooke this dalliance good sir say whe'r": [0, 65535], "this dalliance good sir say whe'r you'l": [0, 65535], "dalliance good sir say whe'r you'l answer": [0, 65535], "good sir say whe'r you'l answer me": [0, 65535], "sir say whe'r you'l answer me or": [0, 65535], "say whe'r you'l answer me or no": [0, 65535], "whe'r you'l answer me or no if": [0, 65535], "you'l answer me or no if not": [0, 65535], "answer me or no if not ile": [0, 65535], "me or no if not ile leaue": [0, 65535], "or no if not ile leaue him": [0, 65535], "no if not ile leaue him to": [0, 65535], "if not ile leaue him to the": [0, 65535], "not ile leaue him to the officer": [0, 65535], "ile leaue him to the officer ant": [0, 65535], "leaue him to the officer ant i": [0, 65535], "him to the officer ant i answer": [0, 65535], "to the officer ant i answer you": [0, 65535], "the officer ant i answer you what": [0, 65535], "officer ant i answer you what should": [0, 65535], "ant i answer you what should i": [0, 65535], "i answer you what should i answer": [0, 65535], "answer you what should i answer you": [0, 65535], "you what should i answer you gold": [0, 65535], "what should i answer you gold the": [0, 65535], "should i answer you gold the monie": [0, 65535], "i answer you gold the monie that": [0, 65535], "answer you gold the monie that you": [0, 65535], "you gold the monie that you owe": [0, 65535], "gold the monie that you owe me": [0, 65535], "the monie that you owe me for": [0, 65535], "monie that you owe me for the": [0, 65535], "that you owe me for the chaine": [0, 65535], "you owe me for the chaine ant": [0, 65535], "owe me for the chaine ant i": [0, 65535], "me for the chaine ant i owe": [0, 65535], "for the chaine ant i owe you": [0, 65535], "the chaine ant i owe you none": [0, 65535], "chaine ant i owe you none till": [0, 65535], "ant i owe you none till i": [0, 65535], "i owe you none till i receiue": [0, 65535], "owe you none till i receiue the": [0, 65535], "you none till i receiue the chaine": [0, 65535], "none till i receiue the chaine gold": [0, 65535], "till i receiue the chaine gold you": [0, 65535], "i receiue the chaine gold you know": [0, 65535], "receiue the chaine gold you know i": [0, 65535], "the chaine gold you know i gaue": [0, 65535], "chaine gold you know i gaue it": [0, 65535], "gold you know i gaue it you": [0, 65535], "you know i gaue it you halfe": [0, 65535], "know i gaue it you halfe an": [0, 65535], "i gaue it you halfe an houre": [0, 65535], "gaue it you halfe an houre since": [0, 65535], "it you halfe an houre since ant": [0, 65535], "you halfe an houre since ant you": [0, 65535], "halfe an houre since ant you gaue": [0, 65535], "an houre since ant you gaue me": [0, 65535], "houre since ant you gaue me none": [0, 65535], "since ant you gaue me none you": [0, 65535], "ant you gaue me none you wrong": [0, 65535], "you gaue me none you wrong mee": [0, 65535], "gaue me none you wrong mee much": [0, 65535], "me none you wrong mee much to": [0, 65535], "none you wrong mee much to say": [0, 65535], "you wrong mee much to say so": [0, 65535], "wrong mee much to say so gold": [0, 65535], "mee much to say so gold you": [0, 65535], "much to say so gold you wrong": [0, 65535], "to say so gold you wrong me": [0, 65535], "say so gold you wrong me more": [0, 65535], "so gold you wrong me more sir": [0, 65535], "gold you wrong me more sir in": [0, 65535], "you wrong me more sir in denying": [0, 65535], "wrong me more sir in denying it": [0, 65535], "me more sir in denying it consider": [0, 65535], "more sir in denying it consider how": [0, 65535], "sir in denying it consider how it": [0, 65535], "in denying it consider how it stands": [0, 65535], "denying it consider how it stands vpon": [0, 65535], "it consider how it stands vpon my": [0, 65535], "consider how it stands vpon my credit": [0, 65535], "how it stands vpon my credit mar": [0, 65535], "it stands vpon my credit mar well": [0, 65535], "stands vpon my credit mar well officer": [0, 65535], "vpon my credit mar well officer arrest": [0, 65535], "my credit mar well officer arrest him": [0, 65535], "credit mar well officer arrest him at": [0, 65535], "mar well officer arrest him at my": [0, 65535], "well officer arrest him at my suite": [0, 65535], "officer arrest him at my suite offi": [0, 65535], "arrest him at my suite offi i": [0, 65535], "him at my suite offi i do": [0, 65535], "at my suite offi i do and": [0, 65535], "my suite offi i do and charge": [0, 65535], "suite offi i do and charge you": [0, 65535], "offi i do and charge you in": [0, 65535], "i do and charge you in the": [0, 65535], "do and charge you in the dukes": [0, 65535], "and charge you in the dukes name": [0, 65535], "charge you in the dukes name to": [0, 65535], "you in the dukes name to obey": [0, 65535], "in the dukes name to obey me": [0, 65535], "the dukes name to obey me gold": [0, 65535], "dukes name to obey me gold this": [0, 65535], "name to obey me gold this touches": [0, 65535], "to obey me gold this touches me": [0, 65535], "obey me gold this touches me in": [0, 65535], "me gold this touches me in reputation": [0, 65535], "gold this touches me in reputation either": [0, 65535], "this touches me in reputation either consent": [0, 65535], "touches me in reputation either consent to": [0, 65535], "me in reputation either consent to pay": [0, 65535], "in reputation either consent to pay this": [0, 65535], "reputation either consent to pay this sum": [0, 65535], "either consent to pay this sum for": [0, 65535], "consent to pay this sum for me": [0, 65535], "to pay this sum for me or": [0, 65535], "pay this sum for me or i": [0, 65535], "this sum for me or i attach": [0, 65535], "sum for me or i attach you": [0, 65535], "for me or i attach you by": [0, 65535], "me or i attach you by this": [0, 65535], "or i attach you by this officer": [0, 65535], "i attach you by this officer ant": [0, 65535], "attach you by this officer ant consent": [0, 65535], "you by this officer ant consent to": [0, 65535], "by this officer ant consent to pay": [0, 65535], "this officer ant consent to pay thee": [0, 65535], "officer ant consent to pay thee that": [0, 65535], "ant consent to pay thee that i": [0, 65535], "consent to pay thee that i neuer": [0, 65535], "to pay thee that i neuer had": [0, 65535], "pay thee that i neuer had arrest": [0, 65535], "thee that i neuer had arrest me": [0, 65535], "that i neuer had arrest me foolish": [0, 65535], "i neuer had arrest me foolish fellow": [0, 65535], "neuer had arrest me foolish fellow if": [0, 65535], "had arrest me foolish fellow if thou": [0, 65535], "arrest me foolish fellow if thou dar'st": [0, 65535], "me foolish fellow if thou dar'st gold": [0, 65535], "foolish fellow if thou dar'st gold heere": [0, 65535], "fellow if thou dar'st gold heere is": [0, 65535], "if thou dar'st gold heere is thy": [0, 65535], "thou dar'st gold heere is thy fee": [0, 65535], "dar'st gold heere is thy fee arrest": [0, 65535], "gold heere is thy fee arrest him": [0, 65535], "heere is thy fee arrest him officer": [0, 65535], "is thy fee arrest him officer i": [0, 65535], "thy fee arrest him officer i would": [0, 65535], "fee arrest him officer i would not": [0, 65535], "arrest him officer i would not spare": [0, 65535], "him officer i would not spare my": [0, 65535], "officer i would not spare my brother": [0, 65535], "i would not spare my brother in": [0, 65535], "would not spare my brother in this": [0, 65535], "not spare my brother in this case": [0, 65535], "spare my brother in this case if": [0, 65535], "my brother in this case if he": [0, 65535], "brother in this case if he should": [0, 65535], "in this case if he should scorne": [0, 65535], "this case if he should scorne me": [0, 65535], "case if he should scorne me so": [0, 65535], "if he should scorne me so apparantly": [0, 65535], "he should scorne me so apparantly offic": [0, 65535], "should scorne me so apparantly offic i": [0, 65535], "scorne me so apparantly offic i do": [0, 65535], "me so apparantly offic i do arrest": [0, 65535], "so apparantly offic i do arrest you": [0, 65535], "apparantly offic i do arrest you sir": [0, 65535], "offic i do arrest you sir you": [0, 65535], "i do arrest you sir you heare": [0, 65535], "do arrest you sir you heare the": [0, 65535], "arrest you sir you heare the suite": [0, 65535], "you sir you heare the suite ant": [0, 65535], "sir you heare the suite ant i": [0, 65535], "you heare the suite ant i do": [0, 65535], "heare the suite ant i do obey": [0, 65535], "the suite ant i do obey thee": [0, 65535], "suite ant i do obey thee till": [0, 65535], "ant i do obey thee till i": [0, 65535], "i do obey thee till i giue": [0, 65535], "do obey thee till i giue thee": [0, 65535], "obey thee till i giue thee baile": [0, 65535], "thee till i giue thee baile but": [0, 65535], "till i giue thee baile but sirrah": [0, 65535], "i giue thee baile but sirrah you": [0, 65535], "giue thee baile but sirrah you shall": [0, 65535], "thee baile but sirrah you shall buy": [0, 65535], "baile but sirrah you shall buy this": [0, 65535], "but sirrah you shall buy this sport": [0, 65535], "sirrah you shall buy this sport as": [0, 65535], "you shall buy this sport as deere": [0, 65535], "shall buy this sport as deere as": [0, 65535], "buy this sport as deere as all": [0, 65535], "this sport as deere as all the": [0, 65535], "sport as deere as all the mettall": [0, 65535], "as deere as all the mettall in": [0, 65535], "deere as all the mettall in your": [0, 65535], "as all the mettall in your shop": [0, 65535], "all the mettall in your shop will": [0, 65535], "the mettall in your shop will answer": [0, 65535], "mettall in your shop will answer gold": [0, 65535], "in your shop will answer gold sir": [0, 65535], "your shop will answer gold sir sir": [0, 65535], "shop will answer gold sir sir i": [0, 65535], "will answer gold sir sir i shall": [0, 65535], "answer gold sir sir i shall haue": [0, 65535], "gold sir sir i shall haue law": [0, 65535], "sir sir i shall haue law in": [0, 65535], "sir i shall haue law in ephesus": [0, 65535], "i shall haue law in ephesus to": [0, 65535], "shall haue law in ephesus to your": [0, 65535], "haue law in ephesus to your notorious": [0, 65535], "law in ephesus to your notorious shame": [0, 65535], "in ephesus to your notorious shame i": [0, 65535], "ephesus to your notorious shame i doubt": [0, 65535], "to your notorious shame i doubt it": [0, 65535], "your notorious shame i doubt it not": [0, 65535], "notorious shame i doubt it not enter": [0, 65535], "shame i doubt it not enter dromio": [0, 65535], "i doubt it not enter dromio sira": [0, 65535], "doubt it not enter dromio sira from": [0, 65535], "it not enter dromio sira from the": [0, 65535], "not enter dromio sira from the bay": [0, 65535], "enter dromio sira from the bay dro": [0, 65535], "dromio sira from the bay dro master": [0, 65535], "sira from the bay dro master there's": [0, 65535], "from the bay dro master there's a": [0, 65535], "the bay dro master there's a barke": [0, 65535], "bay dro master there's a barke of": [0, 65535], "dro master there's a barke of epidamium": [0, 65535], "master there's a barke of epidamium that": [0, 65535], "there's a barke of epidamium that staies": [0, 65535], "a barke of epidamium that staies but": [0, 65535], "barke of epidamium that staies but till": [0, 65535], "of epidamium that staies but till her": [0, 65535], "epidamium that staies but till her owner": [0, 65535], "that staies but till her owner comes": [0, 65535], "staies but till her owner comes aboord": [0, 65535], "but till her owner comes aboord and": [0, 65535], "till her owner comes aboord and then": [0, 65535], "her owner comes aboord and then sir": [0, 65535], "owner comes aboord and then sir she": [0, 65535], "comes aboord and then sir she beares": [0, 65535], "aboord and then sir she beares away": [0, 65535], "and then sir she beares away our": [0, 65535], "then sir she beares away our fraughtage": [0, 65535], "sir she beares away our fraughtage sir": [0, 65535], "she beares away our fraughtage sir i": [0, 65535], "beares away our fraughtage sir i haue": [0, 65535], "away our fraughtage sir i haue conuei'd": [0, 65535], "our fraughtage sir i haue conuei'd aboord": [0, 65535], "fraughtage sir i haue conuei'd aboord and": [0, 65535], "sir i haue conuei'd aboord and i": [0, 65535], "i haue conuei'd aboord and i haue": [0, 65535], "haue conuei'd aboord and i haue bought": [0, 65535], "conuei'd aboord and i haue bought the": [0, 65535], "aboord and i haue bought the oyle": [0, 65535], "and i haue bought the oyle the": [0, 65535], "i haue bought the oyle the balsamum": [0, 65535], "haue bought the oyle the balsamum and": [0, 65535], "bought the oyle the balsamum and aqua": [0, 65535], "the oyle the balsamum and aqua vit\u00e6": [0, 65535], "oyle the balsamum and aqua vit\u00e6 the": [0, 65535], "the balsamum and aqua vit\u00e6 the ship": [0, 65535], "balsamum and aqua vit\u00e6 the ship is": [0, 65535], "and aqua vit\u00e6 the ship is in": [0, 65535], "aqua vit\u00e6 the ship is in her": [0, 65535], "vit\u00e6 the ship is in her trim": [0, 65535], "the ship is in her trim the": [0, 65535], "ship is in her trim the merrie": [0, 65535], "is in her trim the merrie winde": [0, 65535], "in her trim the merrie winde blowes": [0, 65535], "her trim the merrie winde blowes faire": [0, 65535], "trim the merrie winde blowes faire from": [0, 65535], "the merrie winde blowes faire from land": [0, 65535], "merrie winde blowes faire from land they": [0, 65535], "winde blowes faire from land they stay": [0, 65535], "blowes faire from land they stay for": [0, 65535], "faire from land they stay for nought": [0, 65535], "from land they stay for nought at": [0, 65535], "land they stay for nought at all": [0, 65535], "they stay for nought at all but": [0, 65535], "stay for nought at all but for": [0, 65535], "for nought at all but for their": [0, 65535], "nought at all but for their owner": [0, 65535], "at all but for their owner master": [0, 65535], "all but for their owner master and": [0, 65535], "but for their owner master and your": [0, 65535], "for their owner master and your selfe": [0, 65535], "their owner master and your selfe an": [0, 65535], "owner master and your selfe an how": [0, 65535], "master and your selfe an how now": [0, 65535], "and your selfe an how now a": [0, 65535], "your selfe an how now a madman": [0, 65535], "selfe an how now a madman why": [0, 65535], "an how now a madman why thou": [0, 65535], "how now a madman why thou peeuish": [0, 65535], "now a madman why thou peeuish sheep": [0, 65535], "a madman why thou peeuish sheep what": [0, 65535], "madman why thou peeuish sheep what ship": [0, 65535], "why thou peeuish sheep what ship of": [0, 65535], "thou peeuish sheep what ship of epidamium": [0, 65535], "peeuish sheep what ship of epidamium staies": [0, 65535], "sheep what ship of epidamium staies for": [0, 65535], "what ship of epidamium staies for me": [0, 65535], "ship of epidamium staies for me s": [0, 65535], "of epidamium staies for me s dro": [0, 65535], "epidamium staies for me s dro a": [0, 65535], "staies for me s dro a ship": [0, 65535], "for me s dro a ship you": [0, 65535], "me s dro a ship you sent": [0, 65535], "s dro a ship you sent me": [0, 65535], "dro a ship you sent me too": [0, 65535], "a ship you sent me too to": [0, 65535], "ship you sent me too to hier": [0, 65535], "you sent me too to hier waftage": [0, 65535], "sent me too to hier waftage ant": [0, 65535], "me too to hier waftage ant thou": [0, 65535], "too to hier waftage ant thou drunken": [0, 65535], "to hier waftage ant thou drunken slaue": [0, 65535], "hier waftage ant thou drunken slaue i": [0, 65535], "waftage ant thou drunken slaue i sent": [0, 65535], "ant thou drunken slaue i sent thee": [0, 65535], "thou drunken slaue i sent thee for": [0, 65535], "drunken slaue i sent thee for a": [0, 65535], "slaue i sent thee for a rope": [0, 65535], "i sent thee for a rope and": [0, 65535], "sent thee for a rope and told": [0, 65535], "thee for a rope and told thee": [0, 65535], "for a rope and told thee to": [0, 65535], "a rope and told thee to what": [0, 65535], "rope and told thee to what purpose": [0, 65535], "and told thee to what purpose and": [0, 65535], "told thee to what purpose and what": [0, 65535], "thee to what purpose and what end": [0, 65535], "to what purpose and what end s": [0, 65535], "what purpose and what end s dro": [0, 65535], "purpose and what end s dro you": [0, 65535], "and what end s dro you sent": [0, 65535], "what end s dro you sent me": [0, 65535], "end s dro you sent me for": [0, 65535], "s dro you sent me for a": [0, 65535], "dro you sent me for a ropes": [0, 65535], "you sent me for a ropes end": [0, 65535], "sent me for a ropes end as": [0, 65535], "me for a ropes end as soone": [0, 65535], "for a ropes end as soone you": [0, 65535], "a ropes end as soone you sent": [0, 65535], "ropes end as soone you sent me": [0, 65535], "end as soone you sent me to": [0, 65535], "as soone you sent me to the": [0, 65535], "soone you sent me to the bay": [0, 65535], "you sent me to the bay sir": [0, 65535], "sent me to the bay sir for": [0, 65535], "me to the bay sir for a": [0, 65535], "to the bay sir for a barke": [0, 65535], "the bay sir for a barke ant": [0, 65535], "bay sir for a barke ant i": [0, 65535], "sir for a barke ant i will": [0, 65535], "for a barke ant i will debate": [0, 65535], "a barke ant i will debate this": [0, 65535], "barke ant i will debate this matter": [0, 65535], "ant i will debate this matter at": [0, 65535], "i will debate this matter at more": [0, 65535], "will debate this matter at more leisure": [0, 65535], "debate this matter at more leisure and": [0, 65535], "this matter at more leisure and teach": [0, 65535], "matter at more leisure and teach your": [0, 65535], "at more leisure and teach your eares": [0, 65535], "more leisure and teach your eares to": [0, 65535], "leisure and teach your eares to list": [0, 65535], "and teach your eares to list me": [0, 65535], "teach your eares to list me with": [0, 65535], "your eares to list me with more": [0, 65535], "eares to list me with more heede": [0, 65535], "to list me with more heede to": [0, 65535], "list me with more heede to adriana": [0, 65535], "me with more heede to adriana villaine": [0, 65535], "with more heede to adriana villaine hie": [0, 65535], "more heede to adriana villaine hie thee": [0, 65535], "heede to adriana villaine hie thee straight": [0, 65535], "to adriana villaine hie thee straight giue": [0, 65535], "adriana villaine hie thee straight giue her": [0, 65535], "villaine hie thee straight giue her this": [0, 65535], "hie thee straight giue her this key": [0, 65535], "thee straight giue her this key and": [0, 65535], "straight giue her this key and tell": [0, 65535], "giue her this key and tell her": [0, 65535], "her this key and tell her in": [0, 65535], "this key and tell her in the": [0, 65535], "key and tell her in the deske": [0, 65535], "and tell her in the deske that's": [0, 65535], "tell her in the deske that's couer'd": [0, 65535], "her in the deske that's couer'd o're": [0, 65535], "in the deske that's couer'd o're with": [0, 65535], "the deske that's couer'd o're with turkish": [0, 65535], "deske that's couer'd o're with turkish tapistrie": [0, 65535], "that's couer'd o're with turkish tapistrie there": [0, 65535], "couer'd o're with turkish tapistrie there is": [0, 65535], "o're with turkish tapistrie there is a": [0, 65535], "with turkish tapistrie there is a purse": [0, 65535], "turkish tapistrie there is a purse of": [0, 65535], "tapistrie there is a purse of duckets": [0, 65535], "there is a purse of duckets let": [0, 65535], "is a purse of duckets let her": [0, 65535], "a purse of duckets let her send": [0, 65535], "purse of duckets let her send it": [0, 65535], "of duckets let her send it tell": [0, 65535], "duckets let her send it tell her": [0, 65535], "let her send it tell her i": [0, 65535], "her send it tell her i am": [0, 65535], "send it tell her i am arrested": [0, 65535], "it tell her i am arrested in": [0, 65535], "tell her i am arrested in the": [0, 65535], "her i am arrested in the streete": [0, 65535], "i am arrested in the streete and": [0, 65535], "am arrested in the streete and that": [0, 65535], "arrested in the streete and that shall": [0, 65535], "in the streete and that shall baile": [0, 65535], "the streete and that shall baile me": [0, 65535], "streete and that shall baile me hie": [0, 65535], "and that shall baile me hie thee": [0, 65535], "that shall baile me hie thee slaue": [0, 65535], "shall baile me hie thee slaue be": [0, 65535], "baile me hie thee slaue be gone": [0, 65535], "me hie thee slaue be gone on": [0, 65535], "hie thee slaue be gone on officer": [0, 65535], "thee slaue be gone on officer to": [0, 65535], "slaue be gone on officer to prison": [0, 65535], "be gone on officer to prison till": [0, 65535], "gone on officer to prison till it": [0, 65535], "on officer to prison till it come": [0, 65535], "officer to prison till it come exeunt": [0, 65535], "to prison till it come exeunt s": [0, 65535], "prison till it come exeunt s dromio": [0, 65535], "till it come exeunt s dromio to": [0, 65535], "it come exeunt s dromio to adriana": [0, 65535], "come exeunt s dromio to adriana that": [0, 65535], "exeunt s dromio to adriana that is": [0, 65535], "s dromio to adriana that is where": [0, 65535], "dromio to adriana that is where we": [0, 65535], "to adriana that is where we din'd": [0, 65535], "adriana that is where we din'd where": [0, 65535], "that is where we din'd where dowsabell": [0, 65535], "is where we din'd where dowsabell did": [0, 65535], "where we din'd where dowsabell did claime": [0, 65535], "we din'd where dowsabell did claime me": [0, 65535], "din'd where dowsabell did claime me for": [0, 65535], "where dowsabell did claime me for her": [0, 65535], "dowsabell did claime me for her husband": [0, 65535], "did claime me for her husband she": [0, 65535], "claime me for her husband she is": [0, 65535], "me for her husband she is too": [0, 65535], "for her husband she is too bigge": [0, 65535], "her husband she is too bigge i": [0, 65535], "husband she is too bigge i hope": [0, 65535], "she is too bigge i hope for": [0, 65535], "is too bigge i hope for me": [0, 65535], "too bigge i hope for me to": [0, 65535], "bigge i hope for me to compasse": [0, 65535], "i hope for me to compasse thither": [0, 65535], "hope for me to compasse thither i": [0, 65535], "for me to compasse thither i must": [0, 65535], "me to compasse thither i must although": [0, 65535], "to compasse thither i must although against": [0, 65535], "compasse thither i must although against my": [0, 65535], "thither i must although against my will": [0, 65535], "i must although against my will for": [0, 65535], "must although against my will for seruants": [0, 65535], "although against my will for seruants must": [0, 65535], "against my will for seruants must their": [0, 65535], "my will for seruants must their masters": [0, 65535], "will for seruants must their masters mindes": [0, 65535], "for seruants must their masters mindes fulfill": [0, 65535], "seruants must their masters mindes fulfill exit": [0, 65535], "must their masters mindes fulfill exit enter": [0, 65535], "their masters mindes fulfill exit enter adriana": [0, 65535], "masters mindes fulfill exit enter adriana and": [0, 65535], "mindes fulfill exit enter adriana and luciana": [0, 65535], "fulfill exit enter adriana and luciana adr": [0, 65535], "exit enter adriana and luciana adr ah": [0, 65535], "enter adriana and luciana adr ah luciana": [0, 65535], "adriana and luciana adr ah luciana did": [0, 65535], "and luciana adr ah luciana did he": [0, 65535], "luciana adr ah luciana did he tempt": [0, 65535], "adr ah luciana did he tempt thee": [0, 65535], "ah luciana did he tempt thee so": [0, 65535], "luciana did he tempt thee so might'st": [0, 65535], "did he tempt thee so might'st thou": [0, 65535], "he tempt thee so might'st thou perceiue": [0, 65535], "tempt thee so might'st thou perceiue austeerely": [0, 65535], "thee so might'st thou perceiue austeerely in": [0, 65535], "so might'st thou perceiue austeerely in his": [0, 65535], "might'st thou perceiue austeerely in his eie": [0, 65535], "thou perceiue austeerely in his eie that": [0, 65535], "perceiue austeerely in his eie that he": [0, 65535], "austeerely in his eie that he did": [0, 65535], "in his eie that he did plead": [0, 65535], "his eie that he did plead in": [0, 65535], "eie that he did plead in earnest": [0, 65535], "that he did plead in earnest yea": [0, 65535], "he did plead in earnest yea or": [0, 65535], "did plead in earnest yea or no": [0, 65535], "plead in earnest yea or no look'd": [0, 65535], "in earnest yea or no look'd he": [0, 65535], "earnest yea or no look'd he or": [0, 65535], "yea or no look'd he or red": [0, 65535], "or no look'd he or red or": [0, 65535], "no look'd he or red or pale": [0, 65535], "look'd he or red or pale or": [0, 65535], "he or red or pale or sad": [0, 65535], "or red or pale or sad or": [0, 65535], "red or pale or sad or merrily": [0, 65535], "or pale or sad or merrily what": [0, 65535], "pale or sad or merrily what obseruation": [0, 65535], "or sad or merrily what obseruation mad'st": [0, 65535], "sad or merrily what obseruation mad'st thou": [0, 65535], "or merrily what obseruation mad'st thou in": [0, 65535], "merrily what obseruation mad'st thou in this": [0, 65535], "what obseruation mad'st thou in this case": [0, 65535], "obseruation mad'st thou in this case oh": [0, 65535], "mad'st thou in this case oh his": [0, 65535], "thou in this case oh his hearts": [0, 65535], "in this case oh his hearts meteors": [0, 65535], "this case oh his hearts meteors tilting": [0, 65535], "case oh his hearts meteors tilting in": [0, 65535], "oh his hearts meteors tilting in his": [0, 65535], "his hearts meteors tilting in his face": [0, 65535], "hearts meteors tilting in his face luc": [0, 65535], "meteors tilting in his face luc first": [0, 65535], "tilting in his face luc first he": [0, 65535], "in his face luc first he deni'de": [0, 65535], "his face luc first he deni'de you": [0, 65535], "face luc first he deni'de you had": [0, 65535], "luc first he deni'de you had in": [0, 65535], "first he deni'de you had in him": [0, 65535], "he deni'de you had in him no": [0, 65535], "deni'de you had in him no right": [0, 65535], "you had in him no right adr": [0, 65535], "had in him no right adr he": [0, 65535], "in him no right adr he meant": [0, 65535], "him no right adr he meant he": [0, 65535], "no right adr he meant he did": [0, 65535], "right adr he meant he did me": [0, 65535], "adr he meant he did me none": [0, 65535], "he meant he did me none the": [0, 65535], "meant he did me none the more": [0, 65535], "he did me none the more my": [0, 65535], "did me none the more my spight": [0, 65535], "me none the more my spight luc": [0, 65535], "none the more my spight luc then": [0, 65535], "the more my spight luc then swore": [0, 65535], "more my spight luc then swore he": [0, 65535], "my spight luc then swore he that": [0, 65535], "spight luc then swore he that he": [0, 65535], "luc then swore he that he was": [0, 65535], "then swore he that he was a": [0, 65535], "swore he that he was a stranger": [0, 65535], "he that he was a stranger heere": [0, 65535], "that he was a stranger heere adr": [0, 65535], "he was a stranger heere adr and": [0, 65535], "was a stranger heere adr and true": [0, 65535], "a stranger heere adr and true he": [0, 65535], "stranger heere adr and true he swore": [0, 65535], "heere adr and true he swore though": [0, 65535], "adr and true he swore though yet": [0, 65535], "and true he swore though yet forsworne": [0, 65535], "true he swore though yet forsworne hee": [0, 65535], "he swore though yet forsworne hee were": [0, 65535], "swore though yet forsworne hee were luc": [0, 65535], "though yet forsworne hee were luc then": [0, 65535], "yet forsworne hee were luc then pleaded": [0, 65535], "forsworne hee were luc then pleaded i": [0, 65535], "hee were luc then pleaded i for": [0, 65535], "were luc then pleaded i for you": [0, 65535], "luc then pleaded i for you adr": [0, 65535], "then pleaded i for you adr and": [0, 65535], "pleaded i for you adr and what": [0, 65535], "i for you adr and what said": [0, 65535], "for you adr and what said he": [0, 65535], "you adr and what said he luc": [0, 65535], "adr and what said he luc that": [0, 65535], "and what said he luc that loue": [0, 65535], "what said he luc that loue i": [0, 65535], "said he luc that loue i begg'd": [0, 65535], "he luc that loue i begg'd for": [0, 65535], "luc that loue i begg'd for you": [0, 65535], "that loue i begg'd for you he": [0, 65535], "loue i begg'd for you he begg'd": [0, 65535], "i begg'd for you he begg'd of": [0, 65535], "begg'd for you he begg'd of me": [0, 65535], "for you he begg'd of me adr": [0, 65535], "you he begg'd of me adr with": [0, 65535], "he begg'd of me adr with what": [0, 65535], "begg'd of me adr with what perswasion": [0, 65535], "of me adr with what perswasion did": [0, 65535], "me adr with what perswasion did he": [0, 65535], "adr with what perswasion did he tempt": [0, 65535], "with what perswasion did he tempt thy": [0, 65535], "what perswasion did he tempt thy loue": [0, 65535], "perswasion did he tempt thy loue luc": [0, 65535], "did he tempt thy loue luc with": [0, 65535], "he tempt thy loue luc with words": [0, 65535], "tempt thy loue luc with words that": [0, 65535], "thy loue luc with words that in": [0, 65535], "loue luc with words that in an": [0, 65535], "luc with words that in an honest": [0, 65535], "with words that in an honest suit": [0, 65535], "words that in an honest suit might": [0, 65535], "that in an honest suit might moue": [0, 65535], "in an honest suit might moue first": [0, 65535], "an honest suit might moue first he": [0, 65535], "honest suit might moue first he did": [0, 65535], "suit might moue first he did praise": [0, 65535], "might moue first he did praise my": [0, 65535], "moue first he did praise my beautie": [0, 65535], "first he did praise my beautie then": [0, 65535], "he did praise my beautie then my": [0, 65535], "did praise my beautie then my speech": [0, 65535], "praise my beautie then my speech adr": [0, 65535], "my beautie then my speech adr did'st": [0, 65535], "beautie then my speech adr did'st speake": [0, 65535], "then my speech adr did'st speake him": [0, 65535], "my speech adr did'st speake him faire": [0, 65535], "speech adr did'st speake him faire luc": [0, 65535], "adr did'st speake him faire luc haue": [0, 65535], "did'st speake him faire luc haue patience": [0, 65535], "speake him faire luc haue patience i": [0, 65535], "him faire luc haue patience i beseech": [0, 65535], "faire luc haue patience i beseech adr": [0, 65535], "luc haue patience i beseech adr i": [0, 65535], "haue patience i beseech adr i cannot": [0, 65535], "patience i beseech adr i cannot nor": [0, 65535], "i beseech adr i cannot nor i": [0, 65535], "beseech adr i cannot nor i will": [0, 65535], "adr i cannot nor i will not": [0, 65535], "i cannot nor i will not hold": [0, 65535], "cannot nor i will not hold me": [0, 65535], "nor i will not hold me still": [0, 65535], "i will not hold me still my": [0, 65535], "will not hold me still my tongue": [0, 65535], "not hold me still my tongue though": [0, 65535], "hold me still my tongue though not": [0, 65535], "me still my tongue though not my": [0, 65535], "still my tongue though not my heart": [0, 65535], "my tongue though not my heart shall": [0, 65535], "tongue though not my heart shall haue": [0, 65535], "though not my heart shall haue his": [0, 65535], "not my heart shall haue his will": [0, 65535], "my heart shall haue his will he": [0, 65535], "heart shall haue his will he is": [0, 65535], "shall haue his will he is deformed": [0, 65535], "haue his will he is deformed crooked": [0, 65535], "his will he is deformed crooked old": [0, 65535], "will he is deformed crooked old and": [0, 65535], "he is deformed crooked old and sere": [0, 65535], "is deformed crooked old and sere ill": [0, 65535], "deformed crooked old and sere ill fac'd": [0, 65535], "crooked old and sere ill fac'd worse": [0, 65535], "old and sere ill fac'd worse bodied": [0, 65535], "and sere ill fac'd worse bodied shapelesse": [0, 65535], "sere ill fac'd worse bodied shapelesse euery": [0, 65535], "ill fac'd worse bodied shapelesse euery where": [0, 65535], "fac'd worse bodied shapelesse euery where vicious": [0, 65535], "worse bodied shapelesse euery where vicious vngentle": [0, 65535], "bodied shapelesse euery where vicious vngentle foolish": [0, 65535], "shapelesse euery where vicious vngentle foolish blunt": [0, 65535], "euery where vicious vngentle foolish blunt vnkinde": [0, 65535], "where vicious vngentle foolish blunt vnkinde stigmaticall": [0, 65535], "vicious vngentle foolish blunt vnkinde stigmaticall in": [0, 65535], "vngentle foolish blunt vnkinde stigmaticall in making": [0, 65535], "foolish blunt vnkinde stigmaticall in making worse": [0, 65535], "blunt vnkinde stigmaticall in making worse in": [0, 65535], "vnkinde stigmaticall in making worse in minde": [0, 65535], "stigmaticall in making worse in minde luc": [0, 65535], "in making worse in minde luc who": [0, 65535], "making worse in minde luc who would": [0, 65535], "worse in minde luc who would be": [0, 65535], "in minde luc who would be iealous": [0, 65535], "minde luc who would be iealous then": [0, 65535], "luc who would be iealous then of": [0, 65535], "who would be iealous then of such": [0, 65535], "would be iealous then of such a": [0, 65535], "be iealous then of such a one": [0, 65535], "iealous then of such a one no": [0, 65535], "then of such a one no euill": [0, 65535], "of such a one no euill lost": [0, 65535], "such a one no euill lost is": [0, 65535], "a one no euill lost is wail'd": [0, 65535], "one no euill lost is wail'd when": [0, 65535], "no euill lost is wail'd when it": [0, 65535], "euill lost is wail'd when it is": [0, 65535], "lost is wail'd when it is gone": [0, 65535], "is wail'd when it is gone adr": [0, 65535], "wail'd when it is gone adr ah": [0, 65535], "when it is gone adr ah but": [0, 65535], "it is gone adr ah but i": [0, 65535], "is gone adr ah but i thinke": [0, 65535], "gone adr ah but i thinke him": [0, 65535], "adr ah but i thinke him better": [0, 65535], "ah but i thinke him better then": [0, 65535], "but i thinke him better then i": [0, 65535], "i thinke him better then i say": [0, 65535], "thinke him better then i say and": [0, 65535], "him better then i say and yet": [0, 65535], "better then i say and yet would": [0, 65535], "then i say and yet would herein": [0, 65535], "i say and yet would herein others": [0, 65535], "say and yet would herein others eies": [0, 65535], "and yet would herein others eies were": [0, 65535], "yet would herein others eies were worse": [0, 65535], "would herein others eies were worse farre": [0, 65535], "herein others eies were worse farre from": [0, 65535], "others eies were worse farre from her": [0, 65535], "eies were worse farre from her nest": [0, 65535], "were worse farre from her nest the": [0, 65535], "worse farre from her nest the lapwing": [0, 65535], "farre from her nest the lapwing cries": [0, 65535], "from her nest the lapwing cries away": [0, 65535], "her nest the lapwing cries away my": [0, 65535], "nest the lapwing cries away my heart": [0, 65535], "the lapwing cries away my heart praies": [0, 65535], "lapwing cries away my heart praies for": [0, 65535], "cries away my heart praies for him": [0, 65535], "away my heart praies for him though": [0, 65535], "my heart praies for him though my": [0, 65535], "heart praies for him though my tongue": [0, 65535], "praies for him though my tongue doe": [0, 65535], "for him though my tongue doe curse": [0, 65535], "him though my tongue doe curse enter": [0, 65535], "though my tongue doe curse enter s": [0, 65535], "my tongue doe curse enter s dromio": [0, 65535], "tongue doe curse enter s dromio dro": [0, 65535], "doe curse enter s dromio dro here": [0, 65535], "curse enter s dromio dro here goe": [0, 65535], "enter s dromio dro here goe the": [0, 65535], "s dromio dro here goe the deske": [0, 65535], "dromio dro here goe the deske the": [0, 65535], "dro here goe the deske the purse": [0, 65535], "here goe the deske the purse sweet": [0, 65535], "goe the deske the purse sweet now": [0, 65535], "the deske the purse sweet now make": [0, 65535], "deske the purse sweet now make haste": [0, 65535], "the purse sweet now make haste luc": [0, 65535], "purse sweet now make haste luc how": [0, 65535], "sweet now make haste luc how hast": [0, 65535], "now make haste luc how hast thou": [0, 65535], "make haste luc how hast thou lost": [0, 65535], "haste luc how hast thou lost thy": [0, 65535], "luc how hast thou lost thy breath": [0, 65535], "how hast thou lost thy breath s": [0, 65535], "hast thou lost thy breath s dro": [0, 65535], "thou lost thy breath s dro by": [0, 65535], "lost thy breath s dro by running": [0, 65535], "thy breath s dro by running fast": [0, 65535], "breath s dro by running fast adr": [0, 65535], "s dro by running fast adr where": [0, 65535], "dro by running fast adr where is": [0, 65535], "by running fast adr where is thy": [0, 65535], "running fast adr where is thy master": [0, 65535], "fast adr where is thy master dromio": [0, 65535], "adr where is thy master dromio is": [0, 65535], "where is thy master dromio is he": [0, 65535], "is thy master dromio is he well": [0, 65535], "thy master dromio is he well s": [0, 65535], "master dromio is he well s dro": [0, 65535], "dromio is he well s dro no": [0, 65535], "is he well s dro no he's": [0, 65535], "he well s dro no he's in": [0, 65535], "well s dro no he's in tartar": [0, 65535], "s dro no he's in tartar limbo": [0, 65535], "dro no he's in tartar limbo worse": [0, 65535], "no he's in tartar limbo worse then": [0, 65535], "he's in tartar limbo worse then hell": [0, 65535], "in tartar limbo worse then hell a": [0, 65535], "tartar limbo worse then hell a diuell": [0, 65535], "limbo worse then hell a diuell in": [0, 65535], "worse then hell a diuell in an": [0, 65535], "then hell a diuell in an euerlasting": [0, 65535], "hell a diuell in an euerlasting garment": [0, 65535], "a diuell in an euerlasting garment hath": [0, 65535], "diuell in an euerlasting garment hath him": [0, 65535], "in an euerlasting garment hath him on": [0, 65535], "an euerlasting garment hath him on whose": [0, 65535], "euerlasting garment hath him on whose hard": [0, 65535], "garment hath him on whose hard heart": [0, 65535], "hath him on whose hard heart is": [0, 65535], "him on whose hard heart is button'd": [0, 65535], "on whose hard heart is button'd vp": [0, 65535], "whose hard heart is button'd vp with": [0, 65535], "hard heart is button'd vp with steele": [0, 65535], "heart is button'd vp with steele a": [0, 65535], "is button'd vp with steele a feind": [0, 65535], "button'd vp with steele a feind a": [0, 65535], "vp with steele a feind a fairie": [0, 65535], "with steele a feind a fairie pittilesse": [0, 65535], "steele a feind a fairie pittilesse and": [0, 65535], "a feind a fairie pittilesse and ruffe": [0, 65535], "feind a fairie pittilesse and ruffe a": [0, 65535], "a fairie pittilesse and ruffe a wolfe": [0, 65535], "fairie pittilesse and ruffe a wolfe nay": [0, 65535], "pittilesse and ruffe a wolfe nay worse": [0, 65535], "and ruffe a wolfe nay worse a": [0, 65535], "ruffe a wolfe nay worse a fellow": [0, 65535], "a wolfe nay worse a fellow all": [0, 65535], "wolfe nay worse a fellow all in": [0, 65535], "nay worse a fellow all in buffe": [0, 65535], "worse a fellow all in buffe a": [0, 65535], "a fellow all in buffe a back": [0, 65535], "fellow all in buffe a back friend": [0, 65535], "all in buffe a back friend a": [0, 65535], "in buffe a back friend a shoulder": [0, 65535], "buffe a back friend a shoulder clapper": [0, 65535], "a back friend a shoulder clapper one": [0, 65535], "back friend a shoulder clapper one that": [0, 65535], "friend a shoulder clapper one that countermads": [0, 65535], "a shoulder clapper one that countermads the": [0, 65535], "shoulder clapper one that countermads the passages": [0, 65535], "clapper one that countermads the passages of": [0, 65535], "one that countermads the passages of allies": [0, 65535], "that countermads the passages of allies creekes": [0, 65535], "countermads the passages of allies creekes and": [0, 65535], "the passages of allies creekes and narrow": [0, 65535], "passages of allies creekes and narrow lands": [0, 65535], "of allies creekes and narrow lands a": [0, 65535], "allies creekes and narrow lands a hound": [0, 65535], "creekes and narrow lands a hound that": [0, 65535], "and narrow lands a hound that runs": [0, 65535], "narrow lands a hound that runs counter": [0, 65535], "lands a hound that runs counter and": [0, 65535], "a hound that runs counter and yet": [0, 65535], "hound that runs counter and yet draws": [0, 65535], "that runs counter and yet draws drifoot": [0, 65535], "runs counter and yet draws drifoot well": [0, 65535], "counter and yet draws drifoot well one": [0, 65535], "and yet draws drifoot well one that": [0, 65535], "yet draws drifoot well one that before": [0, 65535], "draws drifoot well one that before the": [0, 65535], "drifoot well one that before the iudgment": [0, 65535], "well one that before the iudgment carries": [0, 65535], "one that before the iudgment carries poore": [0, 65535], "that before the iudgment carries poore soules": [0, 65535], "before the iudgment carries poore soules to": [0, 65535], "the iudgment carries poore soules to hel": [0, 65535], "iudgment carries poore soules to hel adr": [0, 65535], "carries poore soules to hel adr why": [0, 65535], "poore soules to hel adr why man": [0, 65535], "soules to hel adr why man what": [0, 65535], "to hel adr why man what is": [0, 65535], "hel adr why man what is the": [0, 65535], "adr why man what is the matter": [0, 65535], "why man what is the matter s": [0, 65535], "man what is the matter s dro": [0, 65535], "what is the matter s dro i": [0, 65535], "is the matter s dro i doe": [0, 65535], "the matter s dro i doe not": [0, 65535], "matter s dro i doe not know": [0, 65535], "s dro i doe not know the": [0, 65535], "dro i doe not know the matter": [0, 65535], "i doe not know the matter hee": [0, 65535], "doe not know the matter hee is": [0, 65535], "not know the matter hee is rested": [0, 65535], "know the matter hee is rested on": [0, 65535], "the matter hee is rested on the": [0, 65535], "matter hee is rested on the case": [0, 65535], "hee is rested on the case adr": [0, 65535], "is rested on the case adr what": [0, 65535], "rested on the case adr what is": [0, 65535], "on the case adr what is he": [0, 65535], "the case adr what is he arrested": [0, 65535], "case adr what is he arrested tell": [0, 65535], "adr what is he arrested tell me": [0, 65535], "what is he arrested tell me at": [0, 65535], "is he arrested tell me at whose": [0, 65535], "he arrested tell me at whose suite": [0, 65535], "arrested tell me at whose suite s": [0, 65535], "tell me at whose suite s dro": [0, 65535], "me at whose suite s dro i": [0, 65535], "at whose suite s dro i know": [0, 65535], "whose suite s dro i know not": [0, 65535], "suite s dro i know not at": [0, 65535], "s dro i know not at whose": [0, 65535], "dro i know not at whose suite": [0, 65535], "i know not at whose suite he": [0, 65535], "know not at whose suite he is": [0, 65535], "not at whose suite he is arested": [0, 65535], "at whose suite he is arested well": [0, 65535], "whose suite he is arested well but": [0, 65535], "suite he is arested well but is": [0, 65535], "he is arested well but is in": [0, 65535], "is arested well but is in a": [0, 65535], "arested well but is in a suite": [0, 65535], "well but is in a suite of": [0, 65535], "but is in a suite of buffe": [0, 65535], "is in a suite of buffe which": [0, 65535], "in a suite of buffe which rested": [0, 65535], "a suite of buffe which rested him": [0, 65535], "suite of buffe which rested him that": [0, 65535], "of buffe which rested him that can": [0, 65535], "buffe which rested him that can i": [0, 65535], "which rested him that can i tell": [0, 65535], "rested him that can i tell will": [0, 65535], "him that can i tell will you": [0, 65535], "that can i tell will you send": [0, 65535], "can i tell will you send him": [0, 65535], "i tell will you send him mistris": [0, 65535], "tell will you send him mistris redemption": [0, 65535], "will you send him mistris redemption the": [0, 65535], "you send him mistris redemption the monie": [0, 65535], "send him mistris redemption the monie in": [0, 65535], "him mistris redemption the monie in his": [0, 65535], "mistris redemption the monie in his deske": [0, 65535], "redemption the monie in his deske adr": [0, 65535], "the monie in his deske adr go": [0, 65535], "monie in his deske adr go fetch": [0, 65535], "in his deske adr go fetch it": [0, 65535], "his deske adr go fetch it sister": [0, 65535], "deske adr go fetch it sister this": [0, 65535], "adr go fetch it sister this i": [0, 65535], "go fetch it sister this i wonder": [0, 65535], "fetch it sister this i wonder at": [0, 65535], "it sister this i wonder at exit": [0, 65535], "sister this i wonder at exit luciana": [0, 65535], "this i wonder at exit luciana thus": [0, 65535], "i wonder at exit luciana thus he": [0, 65535], "wonder at exit luciana thus he vnknowne": [0, 65535], "at exit luciana thus he vnknowne to": [0, 65535], "exit luciana thus he vnknowne to me": [0, 65535], "luciana thus he vnknowne to me should": [0, 65535], "thus he vnknowne to me should be": [0, 65535], "he vnknowne to me should be in": [0, 65535], "vnknowne to me should be in debt": [0, 65535], "to me should be in debt tell": [0, 65535], "me should be in debt tell me": [0, 65535], "should be in debt tell me was": [0, 65535], "be in debt tell me was he": [0, 65535], "in debt tell me was he arested": [0, 65535], "debt tell me was he arested on": [0, 65535], "tell me was he arested on a": [0, 65535], "me was he arested on a band": [0, 65535], "was he arested on a band s": [0, 65535], "he arested on a band s dro": [0, 65535], "arested on a band s dro not": [0, 65535], "on a band s dro not on": [0, 65535], "a band s dro not on a": [0, 65535], "band s dro not on a band": [0, 65535], "s dro not on a band but": [0, 65535], "dro not on a band but on": [0, 65535], "not on a band but on a": [0, 65535], "on a band but on a stronger": [0, 65535], "a band but on a stronger thing": [0, 65535], "band but on a stronger thing a": [0, 65535], "but on a stronger thing a chaine": [0, 65535], "on a stronger thing a chaine a": [0, 65535], "a stronger thing a chaine a chaine": [0, 65535], "stronger thing a chaine a chaine doe": [0, 65535], "thing a chaine a chaine doe you": [0, 65535], "a chaine a chaine doe you not": [0, 65535], "chaine a chaine doe you not here": [0, 65535], "a chaine doe you not here it": [0, 65535], "chaine doe you not here it ring": [0, 65535], "doe you not here it ring adria": [0, 65535], "you not here it ring adria what": [0, 65535], "not here it ring adria what the": [0, 65535], "here it ring adria what the chaine": [0, 65535], "it ring adria what the chaine s": [0, 65535], "ring adria what the chaine s dro": [0, 65535], "adria what the chaine s dro no": [0, 65535], "what the chaine s dro no no": [0, 65535], "the chaine s dro no no the": [0, 65535], "chaine s dro no no the bell": [0, 65535], "s dro no no the bell 'tis": [0, 65535], "dro no no the bell 'tis time": [0, 65535], "no no the bell 'tis time that": [0, 65535], "no the bell 'tis time that i": [0, 65535], "the bell 'tis time that i were": [0, 65535], "bell 'tis time that i were gone": [0, 65535], "'tis time that i were gone it": [0, 65535], "time that i were gone it was": [0, 65535], "that i were gone it was two": [0, 65535], "i were gone it was two ere": [0, 65535], "were gone it was two ere i": [0, 65535], "gone it was two ere i left": [0, 65535], "it was two ere i left him": [0, 65535], "was two ere i left him and": [0, 65535], "two ere i left him and now": [0, 65535], "ere i left him and now the": [0, 65535], "i left him and now the clocke": [0, 65535], "left him and now the clocke strikes": [0, 65535], "him and now the clocke strikes one": [0, 65535], "and now the clocke strikes one adr": [0, 65535], "now the clocke strikes one adr the": [0, 65535], "the clocke strikes one adr the houres": [0, 65535], "clocke strikes one adr the houres come": [0, 65535], "strikes one adr the houres come backe": [0, 65535], "one adr the houres come backe that": [0, 65535], "adr the houres come backe that did": [0, 65535], "the houres come backe that did i": [0, 65535], "houres come backe that did i neuer": [0, 65535], "come backe that did i neuer here": [0, 65535], "backe that did i neuer here s": [0, 65535], "that did i neuer here s dro": [0, 65535], "did i neuer here s dro oh": [0, 65535], "i neuer here s dro oh yes": [0, 65535], "neuer here s dro oh yes if": [0, 65535], "here s dro oh yes if any": [0, 65535], "s dro oh yes if any houre": [0, 65535], "dro oh yes if any houre meete": [0, 65535], "oh yes if any houre meete a": [0, 65535], "yes if any houre meete a serieant": [0, 65535], "if any houre meete a serieant a": [0, 65535], "any houre meete a serieant a turnes": [0, 65535], "houre meete a serieant a turnes backe": [0, 65535], "meete a serieant a turnes backe for": [0, 65535], "a serieant a turnes backe for verie": [0, 65535], "serieant a turnes backe for verie feare": [0, 65535], "a turnes backe for verie feare adri": [0, 65535], "turnes backe for verie feare adri as": [0, 65535], "backe for verie feare adri as if": [0, 65535], "for verie feare adri as if time": [0, 65535], "verie feare adri as if time were": [0, 65535], "feare adri as if time were in": [0, 65535], "adri as if time were in debt": [0, 65535], "as if time were in debt how": [0, 65535], "if time were in debt how fondly": [0, 65535], "time were in debt how fondly do'st": [0, 65535], "were in debt how fondly do'st thou": [0, 65535], "in debt how fondly do'st thou reason": [0, 65535], "debt how fondly do'st thou reason s": [0, 65535], "how fondly do'st thou reason s dro": [0, 65535], "fondly do'st thou reason s dro time": [0, 65535], "do'st thou reason s dro time is": [0, 65535], "thou reason s dro time is a": [0, 65535], "reason s dro time is a verie": [0, 65535], "s dro time is a verie bankerout": [0, 65535], "dro time is a verie bankerout and": [0, 65535], "time is a verie bankerout and owes": [0, 65535], "is a verie bankerout and owes more": [0, 65535], "a verie bankerout and owes more then": [0, 65535], "verie bankerout and owes more then he's": [0, 65535], "bankerout and owes more then he's worth": [0, 65535], "and owes more then he's worth to": [0, 65535], "owes more then he's worth to season": [0, 65535], "more then he's worth to season nay": [0, 65535], "then he's worth to season nay he's": [0, 65535], "he's worth to season nay he's a": [0, 65535], "worth to season nay he's a theefe": [0, 65535], "to season nay he's a theefe too": [0, 65535], "season nay he's a theefe too haue": [0, 65535], "nay he's a theefe too haue you": [0, 65535], "he's a theefe too haue you not": [0, 65535], "a theefe too haue you not heard": [0, 65535], "theefe too haue you not heard men": [0, 65535], "too haue you not heard men say": [0, 65535], "haue you not heard men say that": [0, 65535], "you not heard men say that time": [0, 65535], "not heard men say that time comes": [0, 65535], "heard men say that time comes stealing": [0, 65535], "men say that time comes stealing on": [0, 65535], "say that time comes stealing on by": [0, 65535], "that time comes stealing on by night": [0, 65535], "time comes stealing on by night and": [0, 65535], "comes stealing on by night and day": [0, 65535], "stealing on by night and day if": [0, 65535], "on by night and day if i": [0, 65535], "by night and day if i be": [0, 65535], "night and day if i be in": [0, 65535], "and day if i be in debt": [0, 65535], "day if i be in debt and": [0, 65535], "if i be in debt and theft": [0, 65535], "i be in debt and theft and": [0, 65535], "be in debt and theft and a": [0, 65535], "in debt and theft and a serieant": [0, 65535], "debt and theft and a serieant in": [0, 65535], "and theft and a serieant in the": [0, 65535], "theft and a serieant in the way": [0, 65535], "and a serieant in the way hath": [0, 65535], "a serieant in the way hath he": [0, 65535], "serieant in the way hath he not": [0, 65535], "in the way hath he not reason": [0, 65535], "the way hath he not reason to": [0, 65535], "way hath he not reason to turne": [0, 65535], "hath he not reason to turne backe": [0, 65535], "he not reason to turne backe an": [0, 65535], "not reason to turne backe an houre": [0, 65535], "reason to turne backe an houre in": [0, 65535], "to turne backe an houre in a": [0, 65535], "turne backe an houre in a day": [0, 65535], "backe an houre in a day enter": [0, 65535], "an houre in a day enter luciana": [0, 65535], "houre in a day enter luciana adr": [0, 65535], "in a day enter luciana adr go": [0, 65535], "a day enter luciana adr go dromio": [0, 65535], "day enter luciana adr go dromio there's": [0, 65535], "enter luciana adr go dromio there's the": [0, 65535], "luciana adr go dromio there's the monie": [0, 65535], "adr go dromio there's the monie beare": [0, 65535], "go dromio there's the monie beare it": [0, 65535], "dromio there's the monie beare it straight": [0, 65535], "there's the monie beare it straight and": [0, 65535], "the monie beare it straight and bring": [0, 65535], "monie beare it straight and bring thy": [0, 65535], "beare it straight and bring thy master": [0, 65535], "it straight and bring thy master home": [0, 65535], "straight and bring thy master home imediately": [0, 65535], "and bring thy master home imediately come": [0, 65535], "bring thy master home imediately come sister": [0, 65535], "thy master home imediately come sister i": [0, 65535], "master home imediately come sister i am": [0, 65535], "home imediately come sister i am prest": [0, 65535], "imediately come sister i am prest downe": [0, 65535], "come sister i am prest downe with": [0, 65535], "sister i am prest downe with conceit": [0, 65535], "i am prest downe with conceit conceit": [0, 65535], "am prest downe with conceit conceit my": [0, 65535], "prest downe with conceit conceit my comfort": [0, 65535], "downe with conceit conceit my comfort and": [0, 65535], "with conceit conceit my comfort and my": [0, 65535], "conceit conceit my comfort and my iniurie": [0, 65535], "conceit my comfort and my iniurie exit": [0, 65535], "my comfort and my iniurie exit enter": [0, 65535], "comfort and my iniurie exit enter antipholus": [0, 65535], "and my iniurie exit enter antipholus siracusia": [0, 65535], "my iniurie exit enter antipholus siracusia there's": [0, 65535], "iniurie exit enter antipholus siracusia there's not": [0, 65535], "exit enter antipholus siracusia there's not a": [0, 65535], "enter antipholus siracusia there's not a man": [0, 65535], "antipholus siracusia there's not a man i": [0, 65535], "siracusia there's not a man i meete": [0, 65535], "there's not a man i meete but": [0, 65535], "not a man i meete but doth": [0, 65535], "a man i meete but doth salute": [0, 65535], "man i meete but doth salute me": [0, 65535], "i meete but doth salute me as": [0, 65535], "meete but doth salute me as if": [0, 65535], "but doth salute me as if i": [0, 65535], "doth salute me as if i were": [0, 65535], "salute me as if i were their": [0, 65535], "me as if i were their well": [0, 65535], "as if i were their well acquainted": [0, 65535], "if i were their well acquainted friend": [0, 65535], "i were their well acquainted friend and": [0, 65535], "were their well acquainted friend and euerie": [0, 65535], "their well acquainted friend and euerie one": [0, 65535], "well acquainted friend and euerie one doth": [0, 65535], "acquainted friend and euerie one doth call": [0, 65535], "friend and euerie one doth call me": [0, 65535], "and euerie one doth call me by": [0, 65535], "euerie one doth call me by my": [0, 65535], "one doth call me by my name": [0, 65535], "doth call me by my name some": [0, 65535], "call me by my name some tender": [0, 65535], "me by my name some tender monie": [0, 65535], "by my name some tender monie to": [0, 65535], "my name some tender monie to me": [0, 65535], "name some tender monie to me some": [0, 65535], "some tender monie to me some inuite": [0, 65535], "tender monie to me some inuite me": [0, 65535], "monie to me some inuite me some": [0, 65535], "to me some inuite me some other": [0, 65535], "me some inuite me some other giue": [0, 65535], "some inuite me some other giue me": [0, 65535], "inuite me some other giue me thankes": [0, 65535], "me some other giue me thankes for": [0, 65535], "some other giue me thankes for kindnesses": [0, 65535], "other giue me thankes for kindnesses some": [0, 65535], "giue me thankes for kindnesses some offer": [0, 65535], "me thankes for kindnesses some offer me": [0, 65535], "thankes for kindnesses some offer me commodities": [0, 65535], "for kindnesses some offer me commodities to": [0, 65535], "kindnesses some offer me commodities to buy": [0, 65535], "some offer me commodities to buy euen": [0, 65535], "offer me commodities to buy euen now": [0, 65535], "me commodities to buy euen now a": [0, 65535], "commodities to buy euen now a tailor": [0, 65535], "to buy euen now a tailor cal'd": [0, 65535], "buy euen now a tailor cal'd me": [0, 65535], "euen now a tailor cal'd me in": [0, 65535], "now a tailor cal'd me in his": [0, 65535], "a tailor cal'd me in his shop": [0, 65535], "tailor cal'd me in his shop and": [0, 65535], "cal'd me in his shop and show'd": [0, 65535], "me in his shop and show'd me": [0, 65535], "in his shop and show'd me silkes": [0, 65535], "his shop and show'd me silkes that": [0, 65535], "shop and show'd me silkes that he": [0, 65535], "and show'd me silkes that he had": [0, 65535], "show'd me silkes that he had bought": [0, 65535], "me silkes that he had bought for": [0, 65535], "silkes that he had bought for me": [0, 65535], "that he had bought for me and": [0, 65535], "he had bought for me and therewithall": [0, 65535], "had bought for me and therewithall tooke": [0, 65535], "bought for me and therewithall tooke measure": [0, 65535], "for me and therewithall tooke measure of": [0, 65535], "me and therewithall tooke measure of my": [0, 65535], "and therewithall tooke measure of my body": [0, 65535], "therewithall tooke measure of my body sure": [0, 65535], "tooke measure of my body sure these": [0, 65535], "measure of my body sure these are": [0, 65535], "of my body sure these are but": [0, 65535], "my body sure these are but imaginarie": [0, 65535], "body sure these are but imaginarie wiles": [0, 65535], "sure these are but imaginarie wiles and": [0, 65535], "these are but imaginarie wiles and lapland": [0, 65535], "are but imaginarie wiles and lapland sorcerers": [0, 65535], "but imaginarie wiles and lapland sorcerers inhabite": [0, 65535], "imaginarie wiles and lapland sorcerers inhabite here": [0, 65535], "wiles and lapland sorcerers inhabite here enter": [0, 65535], "and lapland sorcerers inhabite here enter dromio": [0, 65535], "lapland sorcerers inhabite here enter dromio sir": [0, 65535], "sorcerers inhabite here enter dromio sir s": [0, 65535], "inhabite here enter dromio sir s dro": [0, 65535], "here enter dromio sir s dro master": [0, 65535], "enter dromio sir s dro master here's": [0, 65535], "dromio sir s dro master here's the": [0, 65535], "sir s dro master here's the gold": [0, 65535], "s dro master here's the gold you": [0, 65535], "dro master here's the gold you sent": [0, 65535], "master here's the gold you sent me": [0, 65535], "here's the gold you sent me for": [0, 65535], "the gold you sent me for what": [0, 65535], "gold you sent me for what haue": [0, 65535], "you sent me for what haue you": [0, 65535], "sent me for what haue you got": [0, 65535], "me for what haue you got the": [0, 65535], "for what haue you got the picture": [0, 65535], "what haue you got the picture of": [0, 65535], "haue you got the picture of old": [0, 65535], "you got the picture of old adam": [0, 65535], "got the picture of old adam new": [0, 65535], "the picture of old adam new apparel'd": [0, 65535], "picture of old adam new apparel'd ant": [0, 65535], "of old adam new apparel'd ant what": [0, 65535], "old adam new apparel'd ant what gold": [0, 65535], "adam new apparel'd ant what gold is": [0, 65535], "new apparel'd ant what gold is this": [0, 65535], "apparel'd ant what gold is this what": [0, 65535], "ant what gold is this what adam": [0, 65535], "what gold is this what adam do'st": [0, 65535], "gold is this what adam do'st thou": [0, 65535], "is this what adam do'st thou meane": [0, 65535], "this what adam do'st thou meane s": [0, 65535], "what adam do'st thou meane s dro": [0, 65535], "adam do'st thou meane s dro not": [0, 65535], "do'st thou meane s dro not that": [0, 65535], "thou meane s dro not that adam": [0, 65535], "meane s dro not that adam that": [0, 65535], "s dro not that adam that kept": [0, 65535], "dro not that adam that kept the": [0, 65535], "not that adam that kept the paradise": [0, 65535], "that adam that kept the paradise but": [0, 65535], "adam that kept the paradise but that": [0, 65535], "that kept the paradise but that adam": [0, 65535], "kept the paradise but that adam that": [0, 65535], "the paradise but that adam that keepes": [0, 65535], "paradise but that adam that keepes the": [0, 65535], "but that adam that keepes the prison": [0, 65535], "that adam that keepes the prison hee": [0, 65535], "adam that keepes the prison hee that": [0, 65535], "that keepes the prison hee that goes": [0, 65535], "keepes the prison hee that goes in": [0, 65535], "the prison hee that goes in the": [0, 65535], "prison hee that goes in the calues": [0, 65535], "hee that goes in the calues skin": [0, 65535], "that goes in the calues skin that": [0, 65535], "goes in the calues skin that was": [0, 65535], "in the calues skin that was kil'd": [0, 65535], "the calues skin that was kil'd for": [0, 65535], "calues skin that was kil'd for the": [0, 65535], "skin that was kil'd for the prodigall": [0, 65535], "that was kil'd for the prodigall hee": [0, 65535], "was kil'd for the prodigall hee that": [0, 65535], "kil'd for the prodigall hee that came": [0, 65535], "for the prodigall hee that came behinde": [0, 65535], "the prodigall hee that came behinde you": [0, 65535], "prodigall hee that came behinde you sir": [0, 65535], "hee that came behinde you sir like": [0, 65535], "that came behinde you sir like an": [0, 65535], "came behinde you sir like an euill": [0, 65535], "behinde you sir like an euill angel": [0, 65535], "you sir like an euill angel and": [0, 65535], "sir like an euill angel and bid": [0, 65535], "like an euill angel and bid you": [0, 65535], "an euill angel and bid you forsake": [0, 65535], "euill angel and bid you forsake your": [0, 65535], "angel and bid you forsake your libertie": [0, 65535], "and bid you forsake your libertie ant": [0, 65535], "bid you forsake your libertie ant i": [0, 65535], "you forsake your libertie ant i vnderstand": [0, 65535], "forsake your libertie ant i vnderstand thee": [0, 65535], "your libertie ant i vnderstand thee not": [0, 65535], "libertie ant i vnderstand thee not s": [0, 65535], "ant i vnderstand thee not s dro": [0, 65535], "i vnderstand thee not s dro no": [0, 65535], "vnderstand thee not s dro no why": [0, 65535], "thee not s dro no why 'tis": [0, 65535], "not s dro no why 'tis a": [0, 65535], "s dro no why 'tis a plaine": [0, 65535], "dro no why 'tis a plaine case": [0, 65535], "no why 'tis a plaine case he": [0, 65535], "why 'tis a plaine case he that": [0, 65535], "'tis a plaine case he that went": [0, 65535], "a plaine case he that went like": [0, 65535], "plaine case he that went like a": [0, 65535], "case he that went like a base": [0, 65535], "he that went like a base viole": [0, 65535], "that went like a base viole in": [0, 65535], "went like a base viole in a": [0, 65535], "like a base viole in a case": [0, 65535], "a base viole in a case of": [0, 65535], "base viole in a case of leather": [0, 65535], "viole in a case of leather the": [0, 65535], "in a case of leather the man": [0, 65535], "a case of leather the man sir": [0, 65535], "case of leather the man sir that": [0, 65535], "of leather the man sir that when": [0, 65535], "leather the man sir that when gentlemen": [0, 65535], "the man sir that when gentlemen are": [0, 65535], "man sir that when gentlemen are tired": [0, 65535], "sir that when gentlemen are tired giues": [0, 65535], "that when gentlemen are tired giues them": [0, 65535], "when gentlemen are tired giues them a": [0, 65535], "gentlemen are tired giues them a sob": [0, 65535], "are tired giues them a sob and": [0, 65535], "tired giues them a sob and rests": [0, 65535], "giues them a sob and rests them": [0, 65535], "them a sob and rests them he": [0, 65535], "a sob and rests them he sir": [0, 65535], "sob and rests them he sir that": [0, 65535], "and rests them he sir that takes": [0, 65535], "rests them he sir that takes pittie": [0, 65535], "them he sir that takes pittie on": [0, 65535], "he sir that takes pittie on decaied": [0, 65535], "sir that takes pittie on decaied men": [0, 65535], "that takes pittie on decaied men and": [0, 65535], "takes pittie on decaied men and giues": [0, 65535], "pittie on decaied men and giues them": [0, 65535], "on decaied men and giues them suites": [0, 65535], "decaied men and giues them suites of": [0, 65535], "men and giues them suites of durance": [0, 65535], "and giues them suites of durance he": [0, 65535], "giues them suites of durance he that": [0, 65535], "them suites of durance he that sets": [0, 65535], "suites of durance he that sets vp": [0, 65535], "of durance he that sets vp his": [0, 65535], "durance he that sets vp his rest": [0, 65535], "he that sets vp his rest to": [0, 65535], "that sets vp his rest to doe": [0, 65535], "sets vp his rest to doe more": [0, 65535], "vp his rest to doe more exploits": [0, 65535], "his rest to doe more exploits with": [0, 65535], "rest to doe more exploits with his": [0, 65535], "to doe more exploits with his mace": [0, 65535], "doe more exploits with his mace then": [0, 65535], "more exploits with his mace then a": [0, 65535], "exploits with his mace then a moris": [0, 65535], "with his mace then a moris pike": [0, 65535], "his mace then a moris pike ant": [0, 65535], "mace then a moris pike ant what": [0, 65535], "then a moris pike ant what thou": [0, 65535], "a moris pike ant what thou mean'st": [0, 65535], "moris pike ant what thou mean'st an": [0, 65535], "pike ant what thou mean'st an officer": [0, 65535], "ant what thou mean'st an officer s": [0, 65535], "what thou mean'st an officer s dro": [0, 65535], "thou mean'st an officer s dro i": [0, 65535], "mean'st an officer s dro i sir": [0, 65535], "an officer s dro i sir the": [0, 65535], "officer s dro i sir the serieant": [0, 65535], "s dro i sir the serieant of": [0, 65535], "dro i sir the serieant of the": [0, 65535], "i sir the serieant of the band": [0, 65535], "sir the serieant of the band he": [0, 65535], "the serieant of the band he that": [0, 65535], "serieant of the band he that brings": [0, 65535], "of the band he that brings any": [0, 65535], "the band he that brings any man": [0, 65535], "band he that brings any man to": [0, 65535], "he that brings any man to answer": [0, 65535], "that brings any man to answer it": [0, 65535], "brings any man to answer it that": [0, 65535], "any man to answer it that breakes": [0, 65535], "man to answer it that breakes his": [0, 65535], "to answer it that breakes his band": [0, 65535], "answer it that breakes his band one": [0, 65535], "it that breakes his band one that": [0, 65535], "that breakes his band one that thinkes": [0, 65535], "breakes his band one that thinkes a": [0, 65535], "his band one that thinkes a man": [0, 65535], "band one that thinkes a man alwaies": [0, 65535], "one that thinkes a man alwaies going": [0, 65535], "that thinkes a man alwaies going to": [0, 65535], "thinkes a man alwaies going to bed": [0, 65535], "a man alwaies going to bed and": [0, 65535], "man alwaies going to bed and saies": [0, 65535], "alwaies going to bed and saies god": [0, 65535], "going to bed and saies god giue": [0, 65535], "to bed and saies god giue you": [0, 65535], "bed and saies god giue you good": [0, 65535], "and saies god giue you good rest": [0, 65535], "saies god giue you good rest ant": [0, 65535], "god giue you good rest ant well": [0, 65535], "giue you good rest ant well sir": [0, 65535], "you good rest ant well sir there": [0, 65535], "good rest ant well sir there rest": [0, 65535], "rest ant well sir there rest in": [0, 65535], "ant well sir there rest in your": [0, 65535], "well sir there rest in your foolerie": [0, 65535], "sir there rest in your foolerie is": [0, 65535], "there rest in your foolerie is there": [0, 65535], "rest in your foolerie is there any": [0, 65535], "in your foolerie is there any ships": [0, 65535], "your foolerie is there any ships puts": [0, 65535], "foolerie is there any ships puts forth": [0, 65535], "is there any ships puts forth to": [0, 65535], "there any ships puts forth to night": [0, 65535], "any ships puts forth to night may": [0, 65535], "ships puts forth to night may we": [0, 65535], "puts forth to night may we be": [0, 65535], "forth to night may we be gone": [0, 65535], "to night may we be gone s": [0, 65535], "night may we be gone s dro": [0, 65535], "may we be gone s dro why": [0, 65535], "we be gone s dro why sir": [0, 65535], "be gone s dro why sir i": [0, 65535], "gone s dro why sir i brought": [0, 65535], "s dro why sir i brought you": [0, 65535], "dro why sir i brought you word": [0, 65535], "why sir i brought you word an": [0, 65535], "sir i brought you word an houre": [0, 65535], "i brought you word an houre since": [0, 65535], "brought you word an houre since that": [0, 65535], "you word an houre since that the": [0, 65535], "word an houre since that the barke": [0, 65535], "an houre since that the barke expedition": [0, 65535], "houre since that the barke expedition put": [0, 65535], "since that the barke expedition put forth": [0, 65535], "that the barke expedition put forth to": [0, 65535], "the barke expedition put forth to night": [0, 65535], "barke expedition put forth to night and": [0, 65535], "expedition put forth to night and then": [0, 65535], "put forth to night and then were": [0, 65535], "forth to night and then were you": [0, 65535], "to night and then were you hindred": [0, 65535], "night and then were you hindred by": [0, 65535], "and then were you hindred by the": [0, 65535], "then were you hindred by the serieant": [0, 65535], "were you hindred by the serieant to": [0, 65535], "you hindred by the serieant to tarry": [0, 65535], "hindred by the serieant to tarry for": [0, 65535], "by the serieant to tarry for the": [0, 65535], "the serieant to tarry for the hoy": [0, 65535], "serieant to tarry for the hoy delay": [0, 65535], "to tarry for the hoy delay here": [0, 65535], "tarry for the hoy delay here are": [0, 65535], "for the hoy delay here are the": [0, 65535], "the hoy delay here are the angels": [0, 65535], "hoy delay here are the angels that": [0, 65535], "delay here are the angels that you": [0, 65535], "here are the angels that you sent": [0, 65535], "are the angels that you sent for": [0, 65535], "the angels that you sent for to": [0, 65535], "angels that you sent for to deliuer": [0, 65535], "that you sent for to deliuer you": [0, 65535], "you sent for to deliuer you ant": [0, 65535], "sent for to deliuer you ant the": [0, 65535], "for to deliuer you ant the fellow": [0, 65535], "to deliuer you ant the fellow is": [0, 65535], "deliuer you ant the fellow is distract": [0, 65535], "you ant the fellow is distract and": [0, 65535], "ant the fellow is distract and so": [0, 65535], "the fellow is distract and so am": [0, 65535], "fellow is distract and so am i": [0, 65535], "is distract and so am i and": [0, 65535], "distract and so am i and here": [0, 65535], "and so am i and here we": [0, 65535], "so am i and here we wander": [0, 65535], "am i and here we wander in": [0, 65535], "i and here we wander in illusions": [0, 65535], "and here we wander in illusions some": [0, 65535], "here we wander in illusions some blessed": [0, 65535], "we wander in illusions some blessed power": [0, 65535], "wander in illusions some blessed power deliuer": [0, 65535], "in illusions some blessed power deliuer vs": [0, 65535], "illusions some blessed power deliuer vs from": [0, 65535], "some blessed power deliuer vs from hence": [0, 65535], "blessed power deliuer vs from hence enter": [0, 65535], "power deliuer vs from hence enter a": [0, 65535], "deliuer vs from hence enter a curtizan": [0, 65535], "vs from hence enter a curtizan cur": [0, 65535], "from hence enter a curtizan cur well": [0, 65535], "hence enter a curtizan cur well met": [0, 65535], "enter a curtizan cur well met well": [0, 65535], "a curtizan cur well met well met": [0, 65535], "curtizan cur well met well met master": [0, 65535], "cur well met well met master antipholus": [0, 65535], "well met well met master antipholus i": [0, 65535], "met well met master antipholus i see": [0, 65535], "well met master antipholus i see sir": [0, 65535], "met master antipholus i see sir you": [0, 65535], "master antipholus i see sir you haue": [0, 65535], "antipholus i see sir you haue found": [0, 65535], "i see sir you haue found the": [0, 65535], "see sir you haue found the gold": [0, 65535], "sir you haue found the gold smith": [0, 65535], "you haue found the gold smith now": [0, 65535], "haue found the gold smith now is": [0, 65535], "found the gold smith now is that": [0, 65535], "the gold smith now is that the": [0, 65535], "gold smith now is that the chaine": [0, 65535], "smith now is that the chaine you": [0, 65535], "now is that the chaine you promis'd": [0, 65535], "is that the chaine you promis'd me": [0, 65535], "that the chaine you promis'd me to": [0, 65535], "the chaine you promis'd me to day": [0, 65535], "chaine you promis'd me to day ant": [0, 65535], "you promis'd me to day ant sathan": [0, 65535], "promis'd me to day ant sathan auoide": [0, 65535], "me to day ant sathan auoide i": [0, 65535], "to day ant sathan auoide i charge": [0, 65535], "day ant sathan auoide i charge thee": [0, 65535], "ant sathan auoide i charge thee tempt": [0, 65535], "sathan auoide i charge thee tempt me": [0, 65535], "auoide i charge thee tempt me not": [0, 65535], "i charge thee tempt me not s": [0, 65535], "charge thee tempt me not s dro": [0, 65535], "thee tempt me not s dro master": [0, 65535], "tempt me not s dro master is": [0, 65535], "me not s dro master is this": [0, 65535], "not s dro master is this mistris": [0, 65535], "s dro master is this mistris sathan": [0, 65535], "dro master is this mistris sathan ant": [0, 65535], "master is this mistris sathan ant it": [0, 65535], "is this mistris sathan ant it is": [0, 65535], "this mistris sathan ant it is the": [0, 65535], "mistris sathan ant it is the diuell": [0, 65535], "sathan ant it is the diuell s": [0, 65535], "ant it is the diuell s dro": [0, 65535], "it is the diuell s dro nay": [0, 65535], "is the diuell s dro nay she": [0, 65535], "the diuell s dro nay she is": [0, 65535], "diuell s dro nay she is worse": [0, 65535], "s dro nay she is worse she": [0, 65535], "dro nay she is worse she is": [0, 65535], "nay she is worse she is the": [0, 65535], "she is worse she is the diuels": [0, 65535], "is worse she is the diuels dam": [0, 65535], "worse she is the diuels dam and": [0, 65535], "she is the diuels dam and here": [0, 65535], "is the diuels dam and here she": [0, 65535], "the diuels dam and here she comes": [0, 65535], "diuels dam and here she comes in": [0, 65535], "dam and here she comes in the": [0, 65535], "and here she comes in the habit": [0, 65535], "here she comes in the habit of": [0, 65535], "she comes in the habit of a": [0, 65535], "comes in the habit of a light": [0, 65535], "in the habit of a light wench": [0, 65535], "the habit of a light wench and": [0, 65535], "habit of a light wench and thereof": [0, 65535], "of a light wench and thereof comes": [0, 65535], "a light wench and thereof comes that": [0, 65535], "light wench and thereof comes that the": [0, 65535], "wench and thereof comes that the wenches": [0, 65535], "and thereof comes that the wenches say": [0, 65535], "thereof comes that the wenches say god": [0, 65535], "comes that the wenches say god dam": [0, 65535], "that the wenches say god dam me": [0, 65535], "the wenches say god dam me that's": [0, 65535], "wenches say god dam me that's as": [0, 65535], "say god dam me that's as much": [0, 65535], "god dam me that's as much to": [0, 65535], "dam me that's as much to say": [0, 65535], "me that's as much to say god": [0, 65535], "that's as much to say god make": [0, 65535], "as much to say god make me": [0, 65535], "much to say god make me a": [0, 65535], "to say god make me a light": [0, 65535], "say god make me a light wench": [0, 65535], "god make me a light wench it": [0, 65535], "make me a light wench it is": [0, 65535], "me a light wench it is written": [0, 65535], "a light wench it is written they": [0, 65535], "light wench it is written they appeare": [0, 65535], "wench it is written they appeare to": [0, 65535], "it is written they appeare to men": [0, 65535], "is written they appeare to men like": [0, 65535], "written they appeare to men like angels": [0, 65535], "they appeare to men like angels of": [0, 65535], "appeare to men like angels of light": [0, 65535], "to men like angels of light light": [0, 65535], "men like angels of light light is": [0, 65535], "like angels of light light is an": [0, 65535], "angels of light light is an effect": [0, 65535], "of light light is an effect of": [0, 65535], "light light is an effect of fire": [0, 65535], "light is an effect of fire and": [0, 65535], "is an effect of fire and fire": [0, 65535], "an effect of fire and fire will": [0, 65535], "effect of fire and fire will burne": [0, 65535], "of fire and fire will burne ergo": [0, 65535], "fire and fire will burne ergo light": [0, 65535], "and fire will burne ergo light wenches": [0, 65535], "fire will burne ergo light wenches will": [0, 65535], "will burne ergo light wenches will burne": [0, 65535], "burne ergo light wenches will burne come": [0, 65535], "ergo light wenches will burne come not": [0, 65535], "light wenches will burne come not neere": [0, 65535], "wenches will burne come not neere her": [0, 65535], "will burne come not neere her cur": [0, 65535], "burne come not neere her cur your": [0, 65535], "come not neere her cur your man": [0, 65535], "not neere her cur your man and": [0, 65535], "neere her cur your man and you": [0, 65535], "her cur your man and you are": [0, 65535], "cur your man and you are maruailous": [0, 65535], "your man and you are maruailous merrie": [0, 65535], "man and you are maruailous merrie sir": [0, 65535], "and you are maruailous merrie sir will": [0, 65535], "you are maruailous merrie sir will you": [0, 65535], "are maruailous merrie sir will you goe": [0, 65535], "maruailous merrie sir will you goe with": [0, 65535], "merrie sir will you goe with me": [0, 65535], "sir will you goe with me wee'll": [0, 65535], "will you goe with me wee'll mend": [0, 65535], "you goe with me wee'll mend our": [0, 65535], "goe with me wee'll mend our dinner": [0, 65535], "with me wee'll mend our dinner here": [0, 65535], "me wee'll mend our dinner here s": [0, 65535], "wee'll mend our dinner here s dro": [0, 65535], "mend our dinner here s dro master": [0, 65535], "our dinner here s dro master if": [0, 65535], "dinner here s dro master if do": [0, 65535], "here s dro master if do expect": [0, 65535], "s dro master if do expect spoon": [0, 65535], "dro master if do expect spoon meate": [0, 65535], "master if do expect spoon meate or": [0, 65535], "if do expect spoon meate or bespeake": [0, 65535], "do expect spoon meate or bespeake a": [0, 65535], "expect spoon meate or bespeake a long": [0, 65535], "spoon meate or bespeake a long spoone": [0, 65535], "meate or bespeake a long spoone ant": [0, 65535], "or bespeake a long spoone ant why": [0, 65535], "bespeake a long spoone ant why dromio": [0, 65535], "a long spoone ant why dromio s": [0, 65535], "long spoone ant why dromio s dro": [0, 65535], "spoone ant why dromio s dro marrie": [0, 65535], "ant why dromio s dro marrie he": [0, 65535], "why dromio s dro marrie he must": [0, 65535], "dromio s dro marrie he must haue": [0, 65535], "s dro marrie he must haue a": [0, 65535], "dro marrie he must haue a long": [0, 65535], "marrie he must haue a long spoone": [0, 65535], "he must haue a long spoone that": [0, 65535], "must haue a long spoone that must": [0, 65535], "haue a long spoone that must eate": [0, 65535], "a long spoone that must eate with": [0, 65535], "long spoone that must eate with the": [0, 65535], "spoone that must eate with the diuell": [0, 65535], "that must eate with the diuell ant": [0, 65535], "must eate with the diuell ant auoid": [0, 65535], "eate with the diuell ant auoid then": [0, 65535], "with the diuell ant auoid then fiend": [0, 65535], "the diuell ant auoid then fiend what": [0, 65535], "diuell ant auoid then fiend what tel'st": [0, 65535], "ant auoid then fiend what tel'st thou": [0, 65535], "auoid then fiend what tel'st thou me": [0, 65535], "then fiend what tel'st thou me of": [0, 65535], "fiend what tel'st thou me of supping": [0, 65535], "what tel'st thou me of supping thou": [0, 65535], "tel'st thou me of supping thou art": [0, 65535], "thou me of supping thou art as": [0, 65535], "me of supping thou art as you": [0, 65535], "of supping thou art as you are": [0, 65535], "supping thou art as you are all": [0, 65535], "thou art as you are all a": [0, 65535], "art as you are all a sorceresse": [0, 65535], "as you are all a sorceresse i": [0, 65535], "you are all a sorceresse i coniure": [0, 65535], "are all a sorceresse i coniure thee": [0, 65535], "all a sorceresse i coniure thee to": [0, 65535], "a sorceresse i coniure thee to leaue": [0, 65535], "sorceresse i coniure thee to leaue me": [0, 65535], "i coniure thee to leaue me and": [0, 65535], "coniure thee to leaue me and be": [0, 65535], "thee to leaue me and be gon": [0, 65535], "to leaue me and be gon cur": [0, 65535], "leaue me and be gon cur giue": [0, 65535], "me and be gon cur giue me": [0, 65535], "and be gon cur giue me the": [0, 65535], "be gon cur giue me the ring": [0, 65535], "gon cur giue me the ring of": [0, 65535], "cur giue me the ring of mine": [0, 65535], "giue me the ring of mine you": [0, 65535], "me the ring of mine you had": [0, 65535], "the ring of mine you had at": [0, 65535], "ring of mine you had at dinner": [0, 65535], "of mine you had at dinner or": [0, 65535], "mine you had at dinner or for": [0, 65535], "you had at dinner or for my": [0, 65535], "had at dinner or for my diamond": [0, 65535], "at dinner or for my diamond the": [0, 65535], "dinner or for my diamond the chaine": [0, 65535], "or for my diamond the chaine you": [0, 65535], "for my diamond the chaine you promis'd": [0, 65535], "my diamond the chaine you promis'd and": [0, 65535], "diamond the chaine you promis'd and ile": [0, 65535], "the chaine you promis'd and ile be": [0, 65535], "chaine you promis'd and ile be gone": [0, 65535], "you promis'd and ile be gone sir": [0, 65535], "promis'd and ile be gone sir and": [0, 65535], "and ile be gone sir and not": [0, 65535], "ile be gone sir and not trouble": [0, 65535], "be gone sir and not trouble you": [0, 65535], "gone sir and not trouble you s": [0, 65535], "sir and not trouble you s dro": [0, 65535], "and not trouble you s dro some": [0, 65535], "not trouble you s dro some diuels": [0, 65535], "trouble you s dro some diuels aske": [0, 65535], "you s dro some diuels aske but": [0, 65535], "s dro some diuels aske but the": [0, 65535], "dro some diuels aske but the parings": [0, 65535], "some diuels aske but the parings of": [0, 65535], "diuels aske but the parings of ones": [0, 65535], "aske but the parings of ones naile": [0, 65535], "but the parings of ones naile a": [0, 65535], "the parings of ones naile a rush": [0, 65535], "parings of ones naile a rush a": [0, 65535], "of ones naile a rush a haire": [0, 65535], "ones naile a rush a haire a": [0, 65535], "naile a rush a haire a drop": [0, 65535], "a rush a haire a drop of": [0, 65535], "rush a haire a drop of blood": [0, 65535], "a haire a drop of blood a": [0, 65535], "haire a drop of blood a pin": [0, 65535], "a drop of blood a pin a": [0, 65535], "drop of blood a pin a nut": [0, 65535], "of blood a pin a nut a": [0, 65535], "blood a pin a nut a cherrie": [0, 65535], "a pin a nut a cherrie stone": [0, 65535], "pin a nut a cherrie stone but": [0, 65535], "a nut a cherrie stone but she": [0, 65535], "nut a cherrie stone but she more": [0, 65535], "a cherrie stone but she more couetous": [0, 65535], "cherrie stone but she more couetous wold": [0, 65535], "stone but she more couetous wold haue": [0, 65535], "but she more couetous wold haue a": [0, 65535], "she more couetous wold haue a chaine": [0, 65535], "more couetous wold haue a chaine master": [0, 65535], "couetous wold haue a chaine master be": [0, 65535], "wold haue a chaine master be wise": [0, 65535], "haue a chaine master be wise and": [0, 65535], "a chaine master be wise and if": [0, 65535], "chaine master be wise and if you": [0, 65535], "master be wise and if you giue": [0, 65535], "be wise and if you giue it": [0, 65535], "wise and if you giue it her": [0, 65535], "and if you giue it her the": [0, 65535], "if you giue it her the diuell": [0, 65535], "you giue it her the diuell will": [0, 65535], "giue it her the diuell will shake": [0, 65535], "it her the diuell will shake her": [0, 65535], "her the diuell will shake her chaine": [0, 65535], "the diuell will shake her chaine and": [0, 65535], "diuell will shake her chaine and fright": [0, 65535], "will shake her chaine and fright vs": [0, 65535], "shake her chaine and fright vs with": [0, 65535], "her chaine and fright vs with it": [0, 65535], "chaine and fright vs with it cur": [0, 65535], "and fright vs with it cur i": [0, 65535], "fright vs with it cur i pray": [0, 65535], "vs with it cur i pray you": [0, 65535], "with it cur i pray you sir": [0, 65535], "it cur i pray you sir my": [0, 65535], "cur i pray you sir my ring": [0, 65535], "i pray you sir my ring or": [0, 65535], "pray you sir my ring or else": [0, 65535], "you sir my ring or else the": [0, 65535], "sir my ring or else the chaine": [0, 65535], "my ring or else the chaine i": [0, 65535], "ring or else the chaine i hope": [0, 65535], "or else the chaine i hope you": [0, 65535], "else the chaine i hope you do": [0, 65535], "the chaine i hope you do not": [0, 65535], "chaine i hope you do not meane": [0, 65535], "i hope you do not meane to": [0, 65535], "hope you do not meane to cheate": [0, 65535], "you do not meane to cheate me": [0, 65535], "do not meane to cheate me so": [0, 65535], "not meane to cheate me so ant": [0, 65535], "meane to cheate me so ant auant": [0, 65535], "to cheate me so ant auant thou": [0, 65535], "cheate me so ant auant thou witch": [0, 65535], "me so ant auant thou witch come": [0, 65535], "so ant auant thou witch come dromio": [0, 65535], "ant auant thou witch come dromio let": [0, 65535], "auant thou witch come dromio let vs": [0, 65535], "thou witch come dromio let vs go": [0, 65535], "witch come dromio let vs go s": [0, 65535], "come dromio let vs go s dro": [0, 65535], "dromio let vs go s dro flie": [0, 65535], "let vs go s dro flie pride": [0, 65535], "vs go s dro flie pride saies": [0, 65535], "go s dro flie pride saies the": [0, 65535], "s dro flie pride saies the pea": [0, 65535], "dro flie pride saies the pea cocke": [0, 65535], "flie pride saies the pea cocke mistris": [0, 65535], "pride saies the pea cocke mistris that": [0, 65535], "saies the pea cocke mistris that you": [0, 65535], "the pea cocke mistris that you know": [0, 65535], "pea cocke mistris that you know exit": [0, 65535], "cocke mistris that you know exit cur": [0, 65535], "mistris that you know exit cur now": [0, 65535], "that you know exit cur now out": [0, 65535], "you know exit cur now out of": [0, 65535], "know exit cur now out of doubt": [0, 65535], "exit cur now out of doubt antipholus": [0, 65535], "cur now out of doubt antipholus is": [0, 65535], "now out of doubt antipholus is mad": [0, 65535], "out of doubt antipholus is mad else": [0, 65535], "of doubt antipholus is mad else would": [0, 65535], "doubt antipholus is mad else would he": [0, 65535], "antipholus is mad else would he neuer": [0, 65535], "is mad else would he neuer so": [0, 65535], "mad else would he neuer so demeane": [0, 65535], "else would he neuer so demeane himselfe": [0, 65535], "would he neuer so demeane himselfe a": [0, 65535], "he neuer so demeane himselfe a ring": [0, 65535], "neuer so demeane himselfe a ring he": [0, 65535], "so demeane himselfe a ring he hath": [0, 65535], "demeane himselfe a ring he hath of": [0, 65535], "himselfe a ring he hath of mine": [0, 65535], "a ring he hath of mine worth": [0, 65535], "ring he hath of mine worth fortie": [0, 65535], "he hath of mine worth fortie duckets": [0, 65535], "hath of mine worth fortie duckets and": [0, 65535], "of mine worth fortie duckets and for": [0, 65535], "mine worth fortie duckets and for the": [0, 65535], "worth fortie duckets and for the same": [0, 65535], "fortie duckets and for the same he": [0, 65535], "duckets and for the same he promis'd": [0, 65535], "and for the same he promis'd me": [0, 65535], "for the same he promis'd me a": [0, 65535], "the same he promis'd me a chaine": [0, 65535], "same he promis'd me a chaine both": [0, 65535], "he promis'd me a chaine both one": [0, 65535], "promis'd me a chaine both one and": [0, 65535], "me a chaine both one and other": [0, 65535], "a chaine both one and other he": [0, 65535], "chaine both one and other he denies": [0, 65535], "both one and other he denies me": [0, 65535], "one and other he denies me now": [0, 65535], "and other he denies me now the": [0, 65535], "other he denies me now the reason": [0, 65535], "he denies me now the reason that": [0, 65535], "denies me now the reason that i": [0, 65535], "me now the reason that i gather": [0, 65535], "now the reason that i gather he": [0, 65535], "the reason that i gather he is": [0, 65535], "reason that i gather he is mad": [0, 65535], "that i gather he is mad besides": [0, 65535], "i gather he is mad besides this": [0, 65535], "gather he is mad besides this present": [0, 65535], "he is mad besides this present instance": [0, 65535], "is mad besides this present instance of": [0, 65535], "mad besides this present instance of his": [0, 65535], "besides this present instance of his rage": [0, 65535], "this present instance of his rage is": [0, 65535], "present instance of his rage is a": [0, 65535], "instance of his rage is a mad": [0, 65535], "of his rage is a mad tale": [0, 65535], "his rage is a mad tale he": [0, 65535], "rage is a mad tale he told": [0, 65535], "is a mad tale he told to": [0, 65535], "a mad tale he told to day": [0, 65535], "mad tale he told to day at": [0, 65535], "tale he told to day at dinner": [0, 65535], "he told to day at dinner of": [0, 65535], "told to day at dinner of his": [0, 65535], "to day at dinner of his owne": [0, 65535], "day at dinner of his owne doores": [0, 65535], "at dinner of his owne doores being": [0, 65535], "dinner of his owne doores being shut": [0, 65535], "of his owne doores being shut against": [0, 65535], "his owne doores being shut against his": [0, 65535], "owne doores being shut against his entrance": [0, 65535], "doores being shut against his entrance belike": [0, 65535], "being shut against his entrance belike his": [0, 65535], "shut against his entrance belike his wife": [0, 65535], "against his entrance belike his wife acquainted": [0, 65535], "his entrance belike his wife acquainted with": [0, 65535], "entrance belike his wife acquainted with his": [0, 65535], "belike his wife acquainted with his fits": [0, 65535], "his wife acquainted with his fits on": [0, 65535], "wife acquainted with his fits on purpose": [0, 65535], "acquainted with his fits on purpose shut": [0, 65535], "with his fits on purpose shut the": [0, 65535], "his fits on purpose shut the doores": [0, 65535], "fits on purpose shut the doores against": [0, 65535], "on purpose shut the doores against his": [0, 65535], "purpose shut the doores against his way": [0, 65535], "shut the doores against his way my": [0, 65535], "the doores against his way my way": [0, 65535], "doores against his way my way is": [0, 65535], "against his way my way is now": [0, 65535], "his way my way is now to": [0, 65535], "way my way is now to hie": [0, 65535], "my way is now to hie home": [0, 65535], "way is now to hie home to": [0, 65535], "is now to hie home to his": [0, 65535], "now to hie home to his house": [0, 65535], "to hie home to his house and": [0, 65535], "hie home to his house and tell": [0, 65535], "home to his house and tell his": [0, 65535], "to his house and tell his wife": [0, 65535], "his house and tell his wife that": [0, 65535], "house and tell his wife that being": [0, 65535], "and tell his wife that being lunaticke": [0, 65535], "tell his wife that being lunaticke he": [0, 65535], "his wife that being lunaticke he rush'd": [0, 65535], "wife that being lunaticke he rush'd into": [0, 65535], "that being lunaticke he rush'd into my": [0, 65535], "being lunaticke he rush'd into my house": [0, 65535], "lunaticke he rush'd into my house and": [0, 65535], "he rush'd into my house and tooke": [0, 65535], "rush'd into my house and tooke perforce": [0, 65535], "into my house and tooke perforce my": [0, 65535], "my house and tooke perforce my ring": [0, 65535], "house and tooke perforce my ring away": [0, 65535], "and tooke perforce my ring away this": [0, 65535], "tooke perforce my ring away this course": [0, 65535], "perforce my ring away this course i": [0, 65535], "my ring away this course i fittest": [0, 65535], "ring away this course i fittest choose": [0, 65535], "away this course i fittest choose for": [0, 65535], "this course i fittest choose for fortie": [0, 65535], "course i fittest choose for fortie duckets": [0, 65535], "i fittest choose for fortie duckets is": [0, 65535], "fittest choose for fortie duckets is too": [0, 65535], "choose for fortie duckets is too much": [0, 65535], "for fortie duckets is too much to": [0, 65535], "fortie duckets is too much to loose": [0, 65535], "duckets is too much to loose enter": [0, 65535], "is too much to loose enter antipholus": [0, 65535], "too much to loose enter antipholus ephes": [0, 65535], "much to loose enter antipholus ephes with": [0, 65535], "to loose enter antipholus ephes with a": [0, 65535], "loose enter antipholus ephes with a iailor": [0, 65535], "enter antipholus ephes with a iailor an": [0, 65535], "antipholus ephes with a iailor an feare": [0, 65535], "ephes with a iailor an feare me": [0, 65535], "with a iailor an feare me not": [0, 65535], "a iailor an feare me not man": [0, 65535], "iailor an feare me not man i": [0, 65535], "an feare me not man i will": [0, 65535], "feare me not man i will not": [0, 65535], "me not man i will not breake": [0, 65535], "not man i will not breake away": [0, 65535], "man i will not breake away ile": [0, 65535], "i will not breake away ile giue": [0, 65535], "will not breake away ile giue thee": [0, 65535], "not breake away ile giue thee ere": [0, 65535], "breake away ile giue thee ere i": [0, 65535], "away ile giue thee ere i leaue": [0, 65535], "ile giue thee ere i leaue thee": [0, 65535], "giue thee ere i leaue thee so": [0, 65535], "thee ere i leaue thee so much": [0, 65535], "ere i leaue thee so much money": [0, 65535], "i leaue thee so much money to": [0, 65535], "leaue thee so much money to warrant": [0, 65535], "thee so much money to warrant thee": [0, 65535], "so much money to warrant thee as": [0, 65535], "much money to warrant thee as i": [0, 65535], "money to warrant thee as i am": [0, 65535], "to warrant thee as i am rested": [0, 65535], "warrant thee as i am rested for": [0, 65535], "thee as i am rested for my": [0, 65535], "as i am rested for my wife": [0, 65535], "i am rested for my wife is": [0, 65535], "am rested for my wife is in": [0, 65535], "rested for my wife is in a": [0, 65535], "for my wife is in a wayward": [0, 65535], "my wife is in a wayward moode": [0, 65535], "wife is in a wayward moode to": [0, 65535], "is in a wayward moode to day": [0, 65535], "in a wayward moode to day and": [0, 65535], "a wayward moode to day and will": [0, 65535], "wayward moode to day and will not": [0, 65535], "moode to day and will not lightly": [0, 65535], "to day and will not lightly trust": [0, 65535], "day and will not lightly trust the": [0, 65535], "and will not lightly trust the messenger": [0, 65535], "will not lightly trust the messenger that": [0, 65535], "not lightly trust the messenger that i": [0, 65535], "lightly trust the messenger that i should": [0, 65535], "trust the messenger that i should be": [0, 65535], "the messenger that i should be attach'd": [0, 65535], "messenger that i should be attach'd in": [0, 65535], "that i should be attach'd in ephesus": [0, 65535], "i should be attach'd in ephesus i": [0, 65535], "should be attach'd in ephesus i tell": [0, 65535], "be attach'd in ephesus i tell you": [0, 65535], "attach'd in ephesus i tell you 'twill": [0, 65535], "in ephesus i tell you 'twill sound": [0, 65535], "ephesus i tell you 'twill sound harshly": [0, 65535], "i tell you 'twill sound harshly in": [0, 65535], "tell you 'twill sound harshly in her": [0, 65535], "you 'twill sound harshly in her eares": [0, 65535], "'twill sound harshly in her eares enter": [0, 65535], "sound harshly in her eares enter dromio": [0, 65535], "harshly in her eares enter dromio eph": [0, 65535], "in her eares enter dromio eph with": [0, 65535], "her eares enter dromio eph with a": [0, 65535], "eares enter dromio eph with a ropes": [0, 65535], "enter dromio eph with a ropes end": [0, 65535], "dromio eph with a ropes end heere": [0, 65535], "eph with a ropes end heere comes": [0, 65535], "with a ropes end heere comes my": [0, 65535], "a ropes end heere comes my man": [0, 65535], "ropes end heere comes my man i": [0, 65535], "end heere comes my man i thinke": [0, 65535], "heere comes my man i thinke he": [0, 65535], "comes my man i thinke he brings": [0, 65535], "my man i thinke he brings the": [0, 65535], "man i thinke he brings the monie": [0, 65535], "i thinke he brings the monie how": [0, 65535], "thinke he brings the monie how now": [0, 65535], "he brings the monie how now sir": [0, 65535], "brings the monie how now sir haue": [0, 65535], "the monie how now sir haue you": [0, 65535], "monie how now sir haue you that": [0, 65535], "how now sir haue you that i": [0, 65535], "now sir haue you that i sent": [0, 65535], "sir haue you that i sent you": [0, 65535], "haue you that i sent you for": [0, 65535], "you that i sent you for e": [0, 65535], "that i sent you for e dro": [0, 65535], "i sent you for e dro here's": [0, 65535], "sent you for e dro here's that": [0, 65535], "you for e dro here's that i": [0, 65535], "for e dro here's that i warrant": [0, 65535], "e dro here's that i warrant you": [0, 65535], "dro here's that i warrant you will": [0, 65535], "here's that i warrant you will pay": [0, 65535], "that i warrant you will pay them": [0, 65535], "i warrant you will pay them all": [0, 65535], "warrant you will pay them all anti": [0, 65535], "you will pay them all anti but": [0, 65535], "will pay them all anti but where's": [0, 65535], "pay them all anti but where's the": [0, 65535], "them all anti but where's the money": [0, 65535], "all anti but where's the money e": [0, 65535], "anti but where's the money e dro": [0, 65535], "but where's the money e dro why": [0, 65535], "where's the money e dro why sir": [0, 65535], "the money e dro why sir i": [0, 65535], "money e dro why sir i gaue": [0, 65535], "e dro why sir i gaue the": [0, 65535], "dro why sir i gaue the monie": [0, 65535], "why sir i gaue the monie for": [0, 65535], "sir i gaue the monie for the": [0, 65535], "i gaue the monie for the rope": [0, 65535], "gaue the monie for the rope ant": [0, 65535], "the monie for the rope ant fiue": [0, 65535], "monie for the rope ant fiue hundred": [0, 65535], "for the rope ant fiue hundred duckets": [0, 65535], "the rope ant fiue hundred duckets villaine": [0, 65535], "rope ant fiue hundred duckets villaine for": [0, 65535], "ant fiue hundred duckets villaine for a": [0, 65535], "fiue hundred duckets villaine for a rope": [0, 65535], "hundred duckets villaine for a rope e": [0, 65535], "duckets villaine for a rope e dro": [0, 65535], "villaine for a rope e dro ile": [0, 65535], "for a rope e dro ile serue": [0, 65535], "a rope e dro ile serue you": [0, 65535], "rope e dro ile serue you sir": [0, 65535], "e dro ile serue you sir fiue": [0, 65535], "dro ile serue you sir fiue hundred": [0, 65535], "ile serue you sir fiue hundred at": [0, 65535], "serue you sir fiue hundred at the": [0, 65535], "you sir fiue hundred at the rate": [0, 65535], "sir fiue hundred at the rate ant": [0, 65535], "fiue hundred at the rate ant to": [0, 65535], "hundred at the rate ant to what": [0, 65535], "at the rate ant to what end": [0, 65535], "the rate ant to what end did": [0, 65535], "rate ant to what end did i": [0, 65535], "ant to what end did i bid": [0, 65535], "to what end did i bid thee": [0, 65535], "what end did i bid thee hie": [0, 65535], "end did i bid thee hie thee": [0, 65535], "did i bid thee hie thee home": [0, 65535], "i bid thee hie thee home e": [0, 65535], "bid thee hie thee home e dro": [0, 65535], "thee hie thee home e dro to": [0, 65535], "hie thee home e dro to a": [0, 65535], "thee home e dro to a ropes": [0, 65535], "home e dro to a ropes end": [0, 65535], "e dro to a ropes end sir": [0, 65535], "dro to a ropes end sir and": [0, 65535], "to a ropes end sir and to": [0, 65535], "a ropes end sir and to that": [0, 65535], "ropes end sir and to that end": [0, 65535], "end sir and to that end am": [0, 65535], "sir and to that end am i": [0, 65535], "and to that end am i re": [0, 65535], "to that end am i re turn'd": [0, 65535], "that end am i re turn'd ant": [0, 65535], "end am i re turn'd ant and": [0, 65535], "am i re turn'd ant and to": [0, 65535], "i re turn'd ant and to that": [0, 65535], "re turn'd ant and to that end": [0, 65535], "turn'd ant and to that end sir": [0, 65535], "ant and to that end sir i": [0, 65535], "and to that end sir i will": [0, 65535], "to that end sir i will welcome": [0, 65535], "that end sir i will welcome you": [0, 65535], "end sir i will welcome you offi": [0, 65535], "sir i will welcome you offi good": [0, 65535], "i will welcome you offi good sir": [0, 65535], "will welcome you offi good sir be": [0, 65535], "welcome you offi good sir be patient": [0, 65535], "you offi good sir be patient e": [0, 65535], "offi good sir be patient e dro": [0, 65535], "good sir be patient e dro nay": [0, 65535], "sir be patient e dro nay 'tis": [0, 65535], "be patient e dro nay 'tis for": [0, 65535], "patient e dro nay 'tis for me": [0, 65535], "e dro nay 'tis for me to": [0, 65535], "dro nay 'tis for me to be": [0, 65535], "nay 'tis for me to be patient": [0, 65535], "'tis for me to be patient i": [0, 65535], "for me to be patient i am": [0, 65535], "me to be patient i am in": [0, 65535], "to be patient i am in aduersitie": [0, 65535], "be patient i am in aduersitie offi": [0, 65535], "patient i am in aduersitie offi good": [0, 65535], "i am in aduersitie offi good now": [0, 65535], "am in aduersitie offi good now hold": [0, 65535], "in aduersitie offi good now hold thy": [0, 65535], "aduersitie offi good now hold thy tongue": [0, 65535], "offi good now hold thy tongue e": [0, 65535], "good now hold thy tongue e dro": [0, 65535], "now hold thy tongue e dro nay": [0, 65535], "hold thy tongue e dro nay rather": [0, 65535], "thy tongue e dro nay rather perswade": [0, 65535], "tongue e dro nay rather perswade him": [0, 65535], "e dro nay rather perswade him to": [0, 65535], "dro nay rather perswade him to hold": [0, 65535], "nay rather perswade him to hold his": [0, 65535], "rather perswade him to hold his hands": [0, 65535], "perswade him to hold his hands anti": [0, 65535], "him to hold his hands anti thou": [0, 65535], "to hold his hands anti thou whoreson": [0, 65535], "hold his hands anti thou whoreson senselesse": [0, 65535], "his hands anti thou whoreson senselesse villaine": [0, 65535], "hands anti thou whoreson senselesse villaine e": [0, 65535], "anti thou whoreson senselesse villaine e dro": [0, 65535], "thou whoreson senselesse villaine e dro i": [0, 65535], "whoreson senselesse villaine e dro i would": [0, 65535], "senselesse villaine e dro i would i": [0, 65535], "villaine e dro i would i were": [0, 65535], "e dro i would i were senselesse": [0, 65535], "dro i would i were senselesse sir": [0, 65535], "i would i were senselesse sir that": [0, 65535], "would i were senselesse sir that i": [0, 65535], "i were senselesse sir that i might": [0, 65535], "were senselesse sir that i might not": [0, 65535], "senselesse sir that i might not feele": [0, 65535], "sir that i might not feele your": [0, 65535], "that i might not feele your blowes": [0, 65535], "i might not feele your blowes anti": [0, 65535], "might not feele your blowes anti thou": [0, 65535], "not feele your blowes anti thou art": [0, 65535], "feele your blowes anti thou art sensible": [0, 65535], "your blowes anti thou art sensible in": [0, 65535], "blowes anti thou art sensible in nothing": [0, 65535], "anti thou art sensible in nothing but": [0, 65535], "thou art sensible in nothing but blowes": [0, 65535], "art sensible in nothing but blowes and": [0, 65535], "sensible in nothing but blowes and so": [0, 65535], "in nothing but blowes and so is": [0, 65535], "nothing but blowes and so is an": [0, 65535], "but blowes and so is an asse": [0, 65535], "blowes and so is an asse e": [0, 65535], "and so is an asse e dro": [0, 65535], "so is an asse e dro i": [0, 65535], "is an asse e dro i am": [0, 65535], "an asse e dro i am an": [0, 65535], "asse e dro i am an asse": [0, 65535], "e dro i am an asse indeede": [0, 65535], "dro i am an asse indeede you": [0, 65535], "i am an asse indeede you may": [0, 65535], "am an asse indeede you may prooue": [0, 65535], "an asse indeede you may prooue it": [0, 65535], "asse indeede you may prooue it by": [0, 65535], "indeede you may prooue it by my": [0, 65535], "you may prooue it by my long": [0, 65535], "may prooue it by my long eares": [0, 65535], "prooue it by my long eares i": [0, 65535], "it by my long eares i haue": [0, 65535], "by my long eares i haue serued": [0, 65535], "my long eares i haue serued him": [0, 65535], "long eares i haue serued him from": [0, 65535], "eares i haue serued him from the": [0, 65535], "i haue serued him from the houre": [0, 65535], "haue serued him from the houre of": [0, 65535], "serued him from the houre of my": [0, 65535], "him from the houre of my natiuitie": [0, 65535], "from the houre of my natiuitie to": [0, 65535], "the houre of my natiuitie to this": [0, 65535], "houre of my natiuitie to this instant": [0, 65535], "of my natiuitie to this instant and": [0, 65535], "my natiuitie to this instant and haue": [0, 65535], "natiuitie to this instant and haue nothing": [0, 65535], "to this instant and haue nothing at": [0, 65535], "this instant and haue nothing at his": [0, 65535], "instant and haue nothing at his hands": [0, 65535], "and haue nothing at his hands for": [0, 65535], "haue nothing at his hands for my": [0, 65535], "nothing at his hands for my seruice": [0, 65535], "at his hands for my seruice but": [0, 65535], "his hands for my seruice but blowes": [0, 65535], "hands for my seruice but blowes when": [0, 65535], "for my seruice but blowes when i": [0, 65535], "my seruice but blowes when i am": [0, 65535], "seruice but blowes when i am cold": [0, 65535], "but blowes when i am cold he": [0, 65535], "blowes when i am cold he heates": [0, 65535], "when i am cold he heates me": [0, 65535], "i am cold he heates me with": [0, 65535], "am cold he heates me with beating": [0, 65535], "cold he heates me with beating when": [0, 65535], "he heates me with beating when i": [0, 65535], "heates me with beating when i am": [0, 65535], "me with beating when i am warme": [0, 65535], "with beating when i am warme he": [0, 65535], "beating when i am warme he cooles": [0, 65535], "when i am warme he cooles me": [0, 65535], "i am warme he cooles me with": [0, 65535], "am warme he cooles me with beating": [0, 65535], "warme he cooles me with beating i": [0, 65535], "he cooles me with beating i am": [0, 65535], "cooles me with beating i am wak'd": [0, 65535], "me with beating i am wak'd with": [0, 65535], "with beating i am wak'd with it": [0, 65535], "beating i am wak'd with it when": [0, 65535], "i am wak'd with it when i": [0, 65535], "am wak'd with it when i sleepe": [0, 65535], "wak'd with it when i sleepe rais'd": [0, 65535], "with it when i sleepe rais'd with": [0, 65535], "it when i sleepe rais'd with it": [0, 65535], "when i sleepe rais'd with it when": [0, 65535], "i sleepe rais'd with it when i": [0, 65535], "sleepe rais'd with it when i sit": [0, 65535], "rais'd with it when i sit driuen": [0, 65535], "with it when i sit driuen out": [0, 65535], "it when i sit driuen out of": [0, 65535], "when i sit driuen out of doores": [0, 65535], "i sit driuen out of doores with": [0, 65535], "sit driuen out of doores with it": [0, 65535], "driuen out of doores with it when": [0, 65535], "out of doores with it when i": [0, 65535], "of doores with it when i goe": [0, 65535], "doores with it when i goe from": [0, 65535], "with it when i goe from home": [0, 65535], "it when i goe from home welcom'd": [0, 65535], "when i goe from home welcom'd home": [0, 65535], "i goe from home welcom'd home with": [0, 65535], "goe from home welcom'd home with it": [0, 65535], "from home welcom'd home with it when": [0, 65535], "home welcom'd home with it when i": [0, 65535], "welcom'd home with it when i returne": [0, 65535], "home with it when i returne nay": [0, 65535], "with it when i returne nay i": [0, 65535], "it when i returne nay i beare": [0, 65535], "when i returne nay i beare it": [0, 65535], "i returne nay i beare it on": [0, 65535], "returne nay i beare it on my": [0, 65535], "nay i beare it on my shoulders": [0, 65535], "i beare it on my shoulders as": [0, 65535], "beare it on my shoulders as a": [0, 65535], "it on my shoulders as a begger": [0, 65535], "on my shoulders as a begger woont": [0, 65535], "my shoulders as a begger woont her": [0, 65535], "shoulders as a begger woont her brat": [0, 65535], "as a begger woont her brat and": [0, 65535], "a begger woont her brat and i": [0, 65535], "begger woont her brat and i thinke": [0, 65535], "woont her brat and i thinke when": [0, 65535], "her brat and i thinke when he": [0, 65535], "brat and i thinke when he hath": [0, 65535], "and i thinke when he hath lam'd": [0, 65535], "i thinke when he hath lam'd me": [0, 65535], "thinke when he hath lam'd me i": [0, 65535], "when he hath lam'd me i shall": [0, 65535], "he hath lam'd me i shall begge": [0, 65535], "hath lam'd me i shall begge with": [0, 65535], "lam'd me i shall begge with it": [0, 65535], "me i shall begge with it from": [0, 65535], "i shall begge with it from doore": [0, 65535], "shall begge with it from doore to": [0, 65535], "begge with it from doore to doore": [0, 65535], "with it from doore to doore enter": [0, 65535], "it from doore to doore enter adriana": [0, 65535], "from doore to doore enter adriana luciana": [0, 65535], "doore to doore enter adriana luciana courtizan": [0, 65535], "to doore enter adriana luciana courtizan and": [0, 65535], "doore enter adriana luciana courtizan and a": [0, 65535], "enter adriana luciana courtizan and a schoolemaster": [0, 65535], "adriana luciana courtizan and a schoolemaster call'd": [0, 65535], "luciana courtizan and a schoolemaster call'd pinch": [0, 65535], "courtizan and a schoolemaster call'd pinch ant": [0, 65535], "and a schoolemaster call'd pinch ant come": [0, 65535], "a schoolemaster call'd pinch ant come goe": [0, 65535], "schoolemaster call'd pinch ant come goe along": [0, 65535], "call'd pinch ant come goe along my": [0, 65535], "pinch ant come goe along my wife": [0, 65535], "ant come goe along my wife is": [0, 65535], "come goe along my wife is comming": [0, 65535], "goe along my wife is comming yonder": [0, 65535], "along my wife is comming yonder e": [0, 65535], "my wife is comming yonder e dro": [0, 65535], "wife is comming yonder e dro mistris": [0, 65535], "is comming yonder e dro mistris respice": [0, 65535], "comming yonder e dro mistris respice finem": [0, 65535], "yonder e dro mistris respice finem respect": [0, 65535], "e dro mistris respice finem respect your": [0, 65535], "dro mistris respice finem respect your end": [0, 65535], "mistris respice finem respect your end or": [0, 65535], "respice finem respect your end or rather": [0, 65535], "finem respect your end or rather the": [0, 65535], "respect your end or rather the prophesie": [0, 65535], "your end or rather the prophesie like": [0, 65535], "end or rather the prophesie like the": [0, 65535], "or rather the prophesie like the parrat": [0, 65535], "rather the prophesie like the parrat beware": [0, 65535], "the prophesie like the parrat beware the": [0, 65535], "prophesie like the parrat beware the ropes": [0, 65535], "like the parrat beware the ropes end": [0, 65535], "the parrat beware the ropes end anti": [0, 65535], "parrat beware the ropes end anti wilt": [0, 65535], "beware the ropes end anti wilt thou": [0, 65535], "the ropes end anti wilt thou still": [0, 65535], "ropes end anti wilt thou still talke": [0, 65535], "end anti wilt thou still talke beats": [0, 65535], "anti wilt thou still talke beats dro": [0, 65535], "wilt thou still talke beats dro curt": [0, 65535], "thou still talke beats dro curt how": [0, 65535], "still talke beats dro curt how say": [0, 65535], "talke beats dro curt how say you": [0, 65535], "beats dro curt how say you now": [0, 65535], "dro curt how say you now is": [0, 65535], "curt how say you now is not": [0, 65535], "how say you now is not your": [0, 65535], "say you now is not your husband": [0, 65535], "you now is not your husband mad": [0, 65535], "now is not your husband mad adri": [0, 65535], "is not your husband mad adri his": [0, 65535], "not your husband mad adri his inciuility": [0, 65535], "your husband mad adri his inciuility confirmes": [0, 65535], "husband mad adri his inciuility confirmes no": [0, 65535], "mad adri his inciuility confirmes no lesse": [0, 65535], "adri his inciuility confirmes no lesse good": [0, 65535], "his inciuility confirmes no lesse good doctor": [0, 65535], "inciuility confirmes no lesse good doctor pinch": [0, 65535], "confirmes no lesse good doctor pinch you": [0, 65535], "no lesse good doctor pinch you are": [0, 65535], "lesse good doctor pinch you are a": [0, 65535], "good doctor pinch you are a coniurer": [0, 65535], "doctor pinch you are a coniurer establish": [0, 65535], "pinch you are a coniurer establish him": [0, 65535], "you are a coniurer establish him in": [0, 65535], "are a coniurer establish him in his": [0, 65535], "a coniurer establish him in his true": [0, 65535], "coniurer establish him in his true sence": [0, 65535], "establish him in his true sence againe": [0, 65535], "him in his true sence againe and": [0, 65535], "in his true sence againe and i": [0, 65535], "his true sence againe and i will": [0, 65535], "true sence againe and i will please": [0, 65535], "sence againe and i will please you": [0, 65535], "againe and i will please you what": [0, 65535], "and i will please you what you": [0, 65535], "i will please you what you will": [0, 65535], "will please you what you will demand": [0, 65535], "please you what you will demand luc": [0, 65535], "you what you will demand luc alas": [0, 65535], "what you will demand luc alas how": [0, 65535], "you will demand luc alas how fiery": [0, 65535], "will demand luc alas how fiery and": [0, 65535], "demand luc alas how fiery and how": [0, 65535], "luc alas how fiery and how sharpe": [0, 65535], "alas how fiery and how sharpe he": [0, 65535], "how fiery and how sharpe he lookes": [0, 65535], "fiery and how sharpe he lookes cur": [0, 65535], "and how sharpe he lookes cur marke": [0, 65535], "how sharpe he lookes cur marke how": [0, 65535], "sharpe he lookes cur marke how he": [0, 65535], "he lookes cur marke how he trembles": [0, 65535], "lookes cur marke how he trembles in": [0, 65535], "cur marke how he trembles in his": [0, 65535], "marke how he trembles in his extasie": [0, 65535], "how he trembles in his extasie pinch": [0, 65535], "he trembles in his extasie pinch giue": [0, 65535], "trembles in his extasie pinch giue me": [0, 65535], "in his extasie pinch giue me your": [0, 65535], "his extasie pinch giue me your hand": [0, 65535], "extasie pinch giue me your hand and": [0, 65535], "pinch giue me your hand and let": [0, 65535], "giue me your hand and let mee": [0, 65535], "me your hand and let mee feele": [0, 65535], "your hand and let mee feele your": [0, 65535], "hand and let mee feele your pulse": [0, 65535], "and let mee feele your pulse ant": [0, 65535], "let mee feele your pulse ant there": [0, 65535], "mee feele your pulse ant there is": [0, 65535], "feele your pulse ant there is my": [0, 65535], "your pulse ant there is my hand": [0, 65535], "pulse ant there is my hand and": [0, 65535], "ant there is my hand and let": [0, 65535], "there is my hand and let it": [0, 65535], "is my hand and let it feele": [0, 65535], "my hand and let it feele your": [0, 65535], "hand and let it feele your eare": [0, 65535], "and let it feele your eare pinch": [0, 65535], "let it feele your eare pinch i": [0, 65535], "it feele your eare pinch i charge": [0, 65535], "feele your eare pinch i charge thee": [0, 65535], "your eare pinch i charge thee sathan": [0, 65535], "eare pinch i charge thee sathan hous'd": [0, 65535], "pinch i charge thee sathan hous'd within": [0, 65535], "i charge thee sathan hous'd within this": [0, 65535], "charge thee sathan hous'd within this man": [0, 65535], "thee sathan hous'd within this man to": [0, 65535], "sathan hous'd within this man to yeeld": [0, 65535], "hous'd within this man to yeeld possession": [0, 65535], "within this man to yeeld possession to": [0, 65535], "this man to yeeld possession to my": [0, 65535], "man to yeeld possession to my holie": [0, 65535], "to yeeld possession to my holie praiers": [0, 65535], "yeeld possession to my holie praiers and": [0, 65535], "possession to my holie praiers and to": [0, 65535], "to my holie praiers and to thy": [0, 65535], "my holie praiers and to thy state": [0, 65535], "holie praiers and to thy state of": [0, 65535], "praiers and to thy state of darknesse": [0, 65535], "and to thy state of darknesse hie": [0, 65535], "to thy state of darknesse hie thee": [0, 65535], "thy state of darknesse hie thee straight": [0, 65535], "state of darknesse hie thee straight i": [0, 65535], "of darknesse hie thee straight i coniure": [0, 65535], "darknesse hie thee straight i coniure thee": [0, 65535], "hie thee straight i coniure thee by": [0, 65535], "thee straight i coniure thee by all": [0, 65535], "straight i coniure thee by all the": [0, 65535], "i coniure thee by all the saints": [0, 65535], "coniure thee by all the saints in": [0, 65535], "thee by all the saints in heauen": [0, 65535], "by all the saints in heauen anti": [0, 65535], "all the saints in heauen anti peace": [0, 65535], "the saints in heauen anti peace doting": [0, 65535], "saints in heauen anti peace doting wizard": [0, 65535], "in heauen anti peace doting wizard peace": [0, 65535], "heauen anti peace doting wizard peace i": [0, 65535], "anti peace doting wizard peace i am": [0, 65535], "peace doting wizard peace i am not": [0, 65535], "doting wizard peace i am not mad": [0, 65535], "wizard peace i am not mad adr": [0, 65535], "peace i am not mad adr oh": [0, 65535], "i am not mad adr oh that": [0, 65535], "am not mad adr oh that thou": [0, 65535], "not mad adr oh that thou wer't": [0, 65535], "mad adr oh that thou wer't not": [0, 65535], "adr oh that thou wer't not poore": [0, 65535], "oh that thou wer't not poore distressed": [0, 65535], "that thou wer't not poore distressed soule": [0, 65535], "thou wer't not poore distressed soule anti": [0, 65535], "wer't not poore distressed soule anti you": [0, 65535], "not poore distressed soule anti you minion": [0, 65535], "poore distressed soule anti you minion you": [0, 65535], "distressed soule anti you minion you are": [0, 65535], "soule anti you minion you are these": [0, 65535], "anti you minion you are these your": [0, 65535], "you minion you are these your customers": [0, 65535], "minion you are these your customers did": [0, 65535], "you are these your customers did this": [0, 65535], "are these your customers did this companion": [0, 65535], "these your customers did this companion with": [0, 65535], "your customers did this companion with the": [0, 65535], "customers did this companion with the saffron": [0, 65535], "did this companion with the saffron face": [0, 65535], "this companion with the saffron face reuell": [0, 65535], "companion with the saffron face reuell and": [0, 65535], "with the saffron face reuell and feast": [0, 65535], "the saffron face reuell and feast it": [0, 65535], "saffron face reuell and feast it at": [0, 65535], "face reuell and feast it at my": [0, 65535], "reuell and feast it at my house": [0, 65535], "and feast it at my house to": [0, 65535], "feast it at my house to day": [0, 65535], "it at my house to day whil'st": [0, 65535], "at my house to day whil'st vpon": [0, 65535], "my house to day whil'st vpon me": [0, 65535], "house to day whil'st vpon me the": [0, 65535], "to day whil'st vpon me the guiltie": [0, 65535], "day whil'st vpon me the guiltie doores": [0, 65535], "whil'st vpon me the guiltie doores were": [0, 65535], "vpon me the guiltie doores were shut": [0, 65535], "me the guiltie doores were shut and": [0, 65535], "the guiltie doores were shut and i": [0, 65535], "guiltie doores were shut and i denied": [0, 65535], "doores were shut and i denied to": [0, 65535], "were shut and i denied to enter": [0, 65535], "shut and i denied to enter in": [0, 65535], "and i denied to enter in my": [0, 65535], "i denied to enter in my house": [0, 65535], "denied to enter in my house adr": [0, 65535], "to enter in my house adr o": [0, 65535], "enter in my house adr o husband": [0, 65535], "in my house adr o husband god": [0, 65535], "my house adr o husband god doth": [0, 65535], "house adr o husband god doth know": [0, 65535], "adr o husband god doth know you": [0, 65535], "o husband god doth know you din'd": [0, 65535], "husband god doth know you din'd at": [0, 65535], "god doth know you din'd at home": [0, 65535], "doth know you din'd at home where": [0, 65535], "know you din'd at home where would": [0, 65535], "you din'd at home where would you": [0, 65535], "din'd at home where would you had": [0, 65535], "at home where would you had remain'd": [0, 65535], "home where would you had remain'd vntill": [0, 65535], "where would you had remain'd vntill this": [0, 65535], "would you had remain'd vntill this time": [0, 65535], "you had remain'd vntill this time free": [0, 65535], "had remain'd vntill this time free from": [0, 65535], "remain'd vntill this time free from these": [0, 65535], "vntill this time free from these slanders": [0, 65535], "this time free from these slanders and": [0, 65535], "time free from these slanders and this": [0, 65535], "free from these slanders and this open": [0, 65535], "from these slanders and this open shame": [0, 65535], "these slanders and this open shame anti": [0, 65535], "slanders and this open shame anti din'd": [0, 65535], "and this open shame anti din'd at": [0, 65535], "this open shame anti din'd at home": [0, 65535], "open shame anti din'd at home thou": [0, 65535], "shame anti din'd at home thou villaine": [0, 65535], "anti din'd at home thou villaine what": [0, 65535], "din'd at home thou villaine what sayest": [0, 65535], "at home thou villaine what sayest thou": [0, 65535], "home thou villaine what sayest thou dro": [0, 65535], "thou villaine what sayest thou dro sir": [0, 65535], "villaine what sayest thou dro sir sooth": [0, 65535], "what sayest thou dro sir sooth to": [0, 65535], "sayest thou dro sir sooth to say": [0, 65535], "thou dro sir sooth to say you": [0, 65535], "dro sir sooth to say you did": [0, 65535], "sir sooth to say you did not": [0, 65535], "sooth to say you did not dine": [0, 65535], "to say you did not dine at": [0, 65535], "say you did not dine at home": [0, 65535], "you did not dine at home ant": [0, 65535], "did not dine at home ant were": [0, 65535], "not dine at home ant were not": [0, 65535], "dine at home ant were not my": [0, 65535], "at home ant were not my doores": [0, 65535], "home ant were not my doores lockt": [0, 65535], "ant were not my doores lockt vp": [0, 65535], "were not my doores lockt vp and": [0, 65535], "not my doores lockt vp and i": [0, 65535], "my doores lockt vp and i shut": [0, 65535], "doores lockt vp and i shut out": [0, 65535], "lockt vp and i shut out dro": [0, 65535], "vp and i shut out dro perdie": [0, 65535], "and i shut out dro perdie your": [0, 65535], "i shut out dro perdie your doores": [0, 65535], "shut out dro perdie your doores were": [0, 65535], "out dro perdie your doores were lockt": [0, 65535], "dro perdie your doores were lockt and": [0, 65535], "perdie your doores were lockt and you": [0, 65535], "your doores were lockt and you shut": [0, 65535], "doores were lockt and you shut out": [0, 65535], "were lockt and you shut out anti": [0, 65535], "lockt and you shut out anti and": [0, 65535], "and you shut out anti and did": [0, 65535], "you shut out anti and did not": [0, 65535], "shut out anti and did not she": [0, 65535], "out anti and did not she her": [0, 65535], "anti and did not she her selfe": [0, 65535], "and did not she her selfe reuile": [0, 65535], "did not she her selfe reuile me": [0, 65535], "not she her selfe reuile me there": [0, 65535], "she her selfe reuile me there dro": [0, 65535], "her selfe reuile me there dro sans": [0, 65535], "selfe reuile me there dro sans fable": [0, 65535], "reuile me there dro sans fable she": [0, 65535], "me there dro sans fable she her": [0, 65535], "there dro sans fable she her selfe": [0, 65535], "dro sans fable she her selfe reuil'd": [0, 65535], "sans fable she her selfe reuil'd you": [0, 65535], "fable she her selfe reuil'd you there": [0, 65535], "she her selfe reuil'd you there anti": [0, 65535], "her selfe reuil'd you there anti did": [0, 65535], "selfe reuil'd you there anti did not": [0, 65535], "reuil'd you there anti did not her": [0, 65535], "you there anti did not her kitchen": [0, 65535], "there anti did not her kitchen maide": [0, 65535], "anti did not her kitchen maide raile": [0, 65535], "did not her kitchen maide raile taunt": [0, 65535], "not her kitchen maide raile taunt and": [0, 65535], "her kitchen maide raile taunt and scorne": [0, 65535], "kitchen maide raile taunt and scorne me": [0, 65535], "maide raile taunt and scorne me dro": [0, 65535], "raile taunt and scorne me dro certis": [0, 65535], "taunt and scorne me dro certis she": [0, 65535], "and scorne me dro certis she did": [0, 65535], "scorne me dro certis she did the": [0, 65535], "me dro certis she did the kitchin": [0, 65535], "dro certis she did the kitchin vestall": [0, 65535], "certis she did the kitchin vestall scorn'd": [0, 65535], "she did the kitchin vestall scorn'd you": [0, 65535], "did the kitchin vestall scorn'd you ant": [0, 65535], "the kitchin vestall scorn'd you ant and": [0, 65535], "kitchin vestall scorn'd you ant and did": [0, 65535], "vestall scorn'd you ant and did not": [0, 65535], "scorn'd you ant and did not i": [0, 65535], "you ant and did not i in": [0, 65535], "ant and did not i in rage": [0, 65535], "and did not i in rage depart": [0, 65535], "did not i in rage depart from": [0, 65535], "not i in rage depart from thence": [0, 65535], "i in rage depart from thence dro": [0, 65535], "in rage depart from thence dro in": [0, 65535], "rage depart from thence dro in veritie": [0, 65535], "depart from thence dro in veritie you": [0, 65535], "from thence dro in veritie you did": [0, 65535], "thence dro in veritie you did my": [0, 65535], "dro in veritie you did my bones": [0, 65535], "in veritie you did my bones beares": [0, 65535], "veritie you did my bones beares witnesse": [0, 65535], "you did my bones beares witnesse that": [0, 65535], "did my bones beares witnesse that since": [0, 65535], "my bones beares witnesse that since haue": [0, 65535], "bones beares witnesse that since haue felt": [0, 65535], "beares witnesse that since haue felt the": [0, 65535], "witnesse that since haue felt the vigor": [0, 65535], "that since haue felt the vigor of": [0, 65535], "since haue felt the vigor of his": [0, 65535], "haue felt the vigor of his rage": [0, 65535], "felt the vigor of his rage adr": [0, 65535], "the vigor of his rage adr is't": [0, 65535], "vigor of his rage adr is't good": [0, 65535], "of his rage adr is't good to": [0, 65535], "his rage adr is't good to sooth": [0, 65535], "rage adr is't good to sooth him": [0, 65535], "adr is't good to sooth him in": [0, 65535], "is't good to sooth him in these": [0, 65535], "good to sooth him in these contraries": [0, 65535], "to sooth him in these contraries pinch": [0, 65535], "sooth him in these contraries pinch it": [0, 65535], "him in these contraries pinch it is": [0, 65535], "in these contraries pinch it is no": [0, 65535], "these contraries pinch it is no shame": [0, 65535], "contraries pinch it is no shame the": [0, 65535], "pinch it is no shame the fellow": [0, 65535], "it is no shame the fellow finds": [0, 65535], "is no shame the fellow finds his": [0, 65535], "no shame the fellow finds his vaine": [0, 65535], "shame the fellow finds his vaine and": [0, 65535], "the fellow finds his vaine and yeelding": [0, 65535], "fellow finds his vaine and yeelding to": [0, 65535], "finds his vaine and yeelding to him": [0, 65535], "his vaine and yeelding to him humors": [0, 65535], "vaine and yeelding to him humors well": [0, 65535], "and yeelding to him humors well his": [0, 65535], "yeelding to him humors well his frensie": [0, 65535], "to him humors well his frensie ant": [0, 65535], "him humors well his frensie ant thou": [0, 65535], "humors well his frensie ant thou hast": [0, 65535], "well his frensie ant thou hast subborn'd": [0, 65535], "his frensie ant thou hast subborn'd the": [0, 65535], "frensie ant thou hast subborn'd the goldsmith": [0, 65535], "ant thou hast subborn'd the goldsmith to": [0, 65535], "thou hast subborn'd the goldsmith to arrest": [0, 65535], "hast subborn'd the goldsmith to arrest mee": [0, 65535], "subborn'd the goldsmith to arrest mee adr": [0, 65535], "the goldsmith to arrest mee adr alas": [0, 65535], "goldsmith to arrest mee adr alas i": [0, 65535], "to arrest mee adr alas i sent": [0, 65535], "arrest mee adr alas i sent you": [0, 65535], "mee adr alas i sent you monie": [0, 65535], "adr alas i sent you monie to": [0, 65535], "alas i sent you monie to redeeme": [0, 65535], "i sent you monie to redeeme you": [0, 65535], "sent you monie to redeeme you by": [0, 65535], "you monie to redeeme you by dromio": [0, 65535], "monie to redeeme you by dromio heere": [0, 65535], "to redeeme you by dromio heere who": [0, 65535], "redeeme you by dromio heere who came": [0, 65535], "you by dromio heere who came in": [0, 65535], "by dromio heere who came in hast": [0, 65535], "dromio heere who came in hast for": [0, 65535], "heere who came in hast for it": [0, 65535], "who came in hast for it dro": [0, 65535], "came in hast for it dro monie": [0, 65535], "in hast for it dro monie by": [0, 65535], "hast for it dro monie by me": [0, 65535], "for it dro monie by me heart": [0, 65535], "it dro monie by me heart and": [0, 65535], "dro monie by me heart and good": [0, 65535], "monie by me heart and good will": [0, 65535], "by me heart and good will you": [0, 65535], "me heart and good will you might": [0, 65535], "heart and good will you might but": [0, 65535], "and good will you might but surely": [0, 65535], "good will you might but surely master": [0, 65535], "will you might but surely master not": [0, 65535], "you might but surely master not a": [0, 65535], "might but surely master not a ragge": [0, 65535], "but surely master not a ragge of": [0, 65535], "surely master not a ragge of monie": [0, 65535], "master not a ragge of monie ant": [0, 65535], "not a ragge of monie ant wentst": [0, 65535], "a ragge of monie ant wentst not": [0, 65535], "ragge of monie ant wentst not thou": [0, 65535], "of monie ant wentst not thou to": [0, 65535], "monie ant wentst not thou to her": [0, 65535], "ant wentst not thou to her for": [0, 65535], "wentst not thou to her for a": [0, 65535], "not thou to her for a purse": [0, 65535], "thou to her for a purse of": [0, 65535], "to her for a purse of duckets": [0, 65535], "her for a purse of duckets adri": [0, 65535], "for a purse of duckets adri he": [0, 65535], "a purse of duckets adri he came": [0, 65535], "purse of duckets adri he came to": [0, 65535], "of duckets adri he came to me": [0, 65535], "duckets adri he came to me and": [0, 65535], "adri he came to me and i": [0, 65535], "he came to me and i deliuer'd": [0, 65535], "came to me and i deliuer'd it": [0, 65535], "to me and i deliuer'd it luci": [0, 65535], "me and i deliuer'd it luci and": [0, 65535], "and i deliuer'd it luci and i": [0, 65535], "i deliuer'd it luci and i am": [0, 65535], "deliuer'd it luci and i am witnesse": [0, 65535], "it luci and i am witnesse with": [0, 65535], "luci and i am witnesse with her": [0, 65535], "and i am witnesse with her that": [0, 65535], "i am witnesse with her that she": [0, 65535], "am witnesse with her that she did": [0, 65535], "witnesse with her that she did dro": [0, 65535], "with her that she did dro god": [0, 65535], "her that she did dro god and": [0, 65535], "that she did dro god and the": [0, 65535], "she did dro god and the rope": [0, 65535], "did dro god and the rope maker": [0, 65535], "dro god and the rope maker beare": [0, 65535], "god and the rope maker beare me": [0, 65535], "and the rope maker beare me witnesse": [0, 65535], "the rope maker beare me witnesse that": [0, 65535], "rope maker beare me witnesse that i": [0, 65535], "maker beare me witnesse that i was": [0, 65535], "beare me witnesse that i was sent": [0, 65535], "me witnesse that i was sent for": [0, 65535], "witnesse that i was sent for nothing": [0, 65535], "that i was sent for nothing but": [0, 65535], "i was sent for nothing but a": [0, 65535], "was sent for nothing but a rope": [0, 65535], "sent for nothing but a rope pinch": [0, 65535], "for nothing but a rope pinch mistris": [0, 65535], "nothing but a rope pinch mistris both": [0, 65535], "but a rope pinch mistris both man": [0, 65535], "a rope pinch mistris both man and": [0, 65535], "rope pinch mistris both man and master": [0, 65535], "pinch mistris both man and master is": [0, 65535], "mistris both man and master is possest": [0, 65535], "both man and master is possest i": [0, 65535], "man and master is possest i know": [0, 65535], "and master is possest i know it": [0, 65535], "master is possest i know it by": [0, 65535], "is possest i know it by their": [0, 65535], "possest i know it by their pale": [0, 65535], "i know it by their pale and": [0, 65535], "know it by their pale and deadly": [0, 65535], "it by their pale and deadly lookes": [0, 65535], "by their pale and deadly lookes they": [0, 65535], "their pale and deadly lookes they must": [0, 65535], "pale and deadly lookes they must be": [0, 65535], "and deadly lookes they must be bound": [0, 65535], "deadly lookes they must be bound and": [0, 65535], "lookes they must be bound and laide": [0, 65535], "they must be bound and laide in": [0, 65535], "must be bound and laide in some": [0, 65535], "be bound and laide in some darke": [0, 65535], "bound and laide in some darke roome": [0, 65535], "and laide in some darke roome ant": [0, 65535], "laide in some darke roome ant say": [0, 65535], "in some darke roome ant say wherefore": [0, 65535], "some darke roome ant say wherefore didst": [0, 65535], "darke roome ant say wherefore didst thou": [0, 65535], "roome ant say wherefore didst thou locke": [0, 65535], "ant say wherefore didst thou locke me": [0, 65535], "say wherefore didst thou locke me forth": [0, 65535], "wherefore didst thou locke me forth to": [0, 65535], "didst thou locke me forth to day": [0, 65535], "thou locke me forth to day and": [0, 65535], "locke me forth to day and why": [0, 65535], "me forth to day and why dost": [0, 65535], "forth to day and why dost thou": [0, 65535], "to day and why dost thou denie": [0, 65535], "day and why dost thou denie the": [0, 65535], "and why dost thou denie the bagge": [0, 65535], "why dost thou denie the bagge of": [0, 65535], "dost thou denie the bagge of gold": [0, 65535], "thou denie the bagge of gold adr": [0, 65535], "denie the bagge of gold adr i": [0, 65535], "the bagge of gold adr i did": [0, 65535], "bagge of gold adr i did not": [0, 65535], "of gold adr i did not gentle": [0, 65535], "gold adr i did not gentle husband": [0, 65535], "adr i did not gentle husband locke": [0, 65535], "i did not gentle husband locke thee": [0, 65535], "did not gentle husband locke thee forth": [0, 65535], "not gentle husband locke thee forth dro": [0, 65535], "gentle husband locke thee forth dro and": [0, 65535], "husband locke thee forth dro and gentle": [0, 65535], "locke thee forth dro and gentle mr": [0, 65535], "thee forth dro and gentle mr i": [0, 65535], "forth dro and gentle mr i receiu'd": [0, 65535], "dro and gentle mr i receiu'd no": [0, 65535], "and gentle mr i receiu'd no gold": [0, 65535], "gentle mr i receiu'd no gold but": [0, 65535], "mr i receiu'd no gold but i": [0, 65535], "i receiu'd no gold but i confesse": [0, 65535], "receiu'd no gold but i confesse sir": [0, 65535], "no gold but i confesse sir that": [0, 65535], "gold but i confesse sir that we": [0, 65535], "but i confesse sir that we were": [0, 65535], "i confesse sir that we were lock'd": [0, 65535], "confesse sir that we were lock'd out": [0, 65535], "sir that we were lock'd out adr": [0, 65535], "that we were lock'd out adr dissembling": [0, 65535], "we were lock'd out adr dissembling villain": [0, 65535], "were lock'd out adr dissembling villain thou": [0, 65535], "lock'd out adr dissembling villain thou speak'st": [0, 65535], "out adr dissembling villain thou speak'st false": [0, 65535], "adr dissembling villain thou speak'st false in": [0, 65535], "dissembling villain thou speak'st false in both": [0, 65535], "villain thou speak'st false in both ant": [0, 65535], "thou speak'st false in both ant dissembling": [0, 65535], "speak'st false in both ant dissembling harlot": [0, 65535], "false in both ant dissembling harlot thou": [0, 65535], "in both ant dissembling harlot thou art": [0, 65535], "both ant dissembling harlot thou art false": [0, 65535], "ant dissembling harlot thou art false in": [0, 65535], "dissembling harlot thou art false in all": [0, 65535], "harlot thou art false in all and": [0, 65535], "thou art false in all and art": [0, 65535], "art false in all and art confederate": [0, 65535], "false in all and art confederate with": [0, 65535], "in all and art confederate with a": [0, 65535], "all and art confederate with a damned": [0, 65535], "and art confederate with a damned packe": [0, 65535], "art confederate with a damned packe to": [0, 65535], "confederate with a damned packe to make": [0, 65535], "with a damned packe to make a": [0, 65535], "a damned packe to make a loathsome": [0, 65535], "damned packe to make a loathsome abiect": [0, 65535], "packe to make a loathsome abiect scorne": [0, 65535], "to make a loathsome abiect scorne of": [0, 65535], "make a loathsome abiect scorne of me": [0, 65535], "a loathsome abiect scorne of me but": [0, 65535], "loathsome abiect scorne of me but with": [0, 65535], "abiect scorne of me but with these": [0, 65535], "scorne of me but with these nailes": [0, 65535], "of me but with these nailes ile": [0, 65535], "me but with these nailes ile plucke": [0, 65535], "but with these nailes ile plucke out": [0, 65535], "with these nailes ile plucke out these": [0, 65535], "these nailes ile plucke out these false": [0, 65535], "nailes ile plucke out these false eyes": [0, 65535], "ile plucke out these false eyes that": [0, 65535], "plucke out these false eyes that would": [0, 65535], "out these false eyes that would behold": [0, 65535], "these false eyes that would behold in": [0, 65535], "false eyes that would behold in me": [0, 65535], "eyes that would behold in me this": [0, 65535], "that would behold in me this shamefull": [0, 65535], "would behold in me this shamefull sport": [0, 65535], "behold in me this shamefull sport enter": [0, 65535], "in me this shamefull sport enter three": [0, 65535], "me this shamefull sport enter three or": [0, 65535], "this shamefull sport enter three or foure": [0, 65535], "shamefull sport enter three or foure and": [0, 65535], "sport enter three or foure and offer": [0, 65535], "enter three or foure and offer to": [0, 65535], "three or foure and offer to binde": [0, 65535], "or foure and offer to binde him": [0, 65535], "foure and offer to binde him hee": [0, 65535], "and offer to binde him hee striues": [0, 65535], "offer to binde him hee striues adr": [0, 65535], "to binde him hee striues adr oh": [0, 65535], "binde him hee striues adr oh binde": [0, 65535], "him hee striues adr oh binde him": [0, 65535], "hee striues adr oh binde him binde": [0, 65535], "striues adr oh binde him binde him": [0, 65535], "adr oh binde him binde him let": [0, 65535], "oh binde him binde him let him": [0, 65535], "binde him binde him let him not": [0, 65535], "him binde him let him not come": [0, 65535], "binde him let him not come neere": [0, 65535], "him let him not come neere me": [0, 65535], "let him not come neere me pinch": [0, 65535], "him not come neere me pinch more": [0, 65535], "not come neere me pinch more company": [0, 65535], "come neere me pinch more company the": [0, 65535], "neere me pinch more company the fiend": [0, 65535], "me pinch more company the fiend is": [0, 65535], "pinch more company the fiend is strong": [0, 65535], "more company the fiend is strong within": [0, 65535], "company the fiend is strong within him": [0, 65535], "the fiend is strong within him luc": [0, 65535], "fiend is strong within him luc aye": [0, 65535], "is strong within him luc aye me": [0, 65535], "strong within him luc aye me poore": [0, 65535], "within him luc aye me poore man": [0, 65535], "him luc aye me poore man how": [0, 65535], "luc aye me poore man how pale": [0, 65535], "aye me poore man how pale and": [0, 65535], "me poore man how pale and wan": [0, 65535], "poore man how pale and wan he": [0, 65535], "man how pale and wan he looks": [0, 65535], "how pale and wan he looks ant": [0, 65535], "pale and wan he looks ant what": [0, 65535], "and wan he looks ant what will": [0, 65535], "wan he looks ant what will you": [0, 65535], "he looks ant what will you murther": [0, 65535], "looks ant what will you murther me": [0, 65535], "ant what will you murther me thou": [0, 65535], "what will you murther me thou iailor": [0, 65535], "will you murther me thou iailor thou": [0, 65535], "you murther me thou iailor thou i": [0, 65535], "murther me thou iailor thou i am": [0, 65535], "me thou iailor thou i am thy": [0, 65535], "thou iailor thou i am thy prisoner": [0, 65535], "iailor thou i am thy prisoner wilt": [0, 65535], "thou i am thy prisoner wilt thou": [0, 65535], "i am thy prisoner wilt thou suffer": [0, 65535], "am thy prisoner wilt thou suffer them": [0, 65535], "thy prisoner wilt thou suffer them to": [0, 65535], "prisoner wilt thou suffer them to make": [0, 65535], "wilt thou suffer them to make a": [0, 65535], "thou suffer them to make a rescue": [0, 65535], "suffer them to make a rescue offi": [0, 65535], "them to make a rescue offi masters": [0, 65535], "to make a rescue offi masters let": [0, 65535], "make a rescue offi masters let him": [0, 65535], "a rescue offi masters let him go": [0, 65535], "rescue offi masters let him go he": [0, 65535], "offi masters let him go he is": [0, 65535], "masters let him go he is my": [0, 65535], "let him go he is my prisoner": [0, 65535], "him go he is my prisoner and": [0, 65535], "go he is my prisoner and you": [0, 65535], "he is my prisoner and you shall": [0, 65535], "is my prisoner and you shall not": [0, 65535], "my prisoner and you shall not haue": [0, 65535], "prisoner and you shall not haue him": [0, 65535], "and you shall not haue him pinch": [0, 65535], "you shall not haue him pinch go": [0, 65535], "shall not haue him pinch go binde": [0, 65535], "not haue him pinch go binde this": [0, 65535], "haue him pinch go binde this man": [0, 65535], "him pinch go binde this man for": [0, 65535], "pinch go binde this man for he": [0, 65535], "go binde this man for he is": [0, 65535], "binde this man for he is franticke": [0, 65535], "this man for he is franticke too": [0, 65535], "man for he is franticke too adr": [0, 65535], "for he is franticke too adr what": [0, 65535], "he is franticke too adr what wilt": [0, 65535], "is franticke too adr what wilt thou": [0, 65535], "franticke too adr what wilt thou do": [0, 65535], "too adr what wilt thou do thou": [0, 65535], "adr what wilt thou do thou peeuish": [0, 65535], "what wilt thou do thou peeuish officer": [0, 65535], "wilt thou do thou peeuish officer hast": [0, 65535], "thou do thou peeuish officer hast thou": [0, 65535], "do thou peeuish officer hast thou delight": [0, 65535], "thou peeuish officer hast thou delight to": [0, 65535], "peeuish officer hast thou delight to see": [0, 65535], "officer hast thou delight to see a": [0, 65535], "hast thou delight to see a wretched": [0, 65535], "thou delight to see a wretched man": [0, 65535], "delight to see a wretched man do": [0, 65535], "to see a wretched man do outrage": [0, 65535], "see a wretched man do outrage and": [0, 65535], "a wretched man do outrage and displeasure": [0, 65535], "wretched man do outrage and displeasure to": [0, 65535], "man do outrage and displeasure to himselfe": [0, 65535], "do outrage and displeasure to himselfe offi": [0, 65535], "outrage and displeasure to himselfe offi he": [0, 65535], "and displeasure to himselfe offi he is": [0, 65535], "displeasure to himselfe offi he is my": [0, 65535], "to himselfe offi he is my prisoner": [0, 65535], "himselfe offi he is my prisoner if": [0, 65535], "offi he is my prisoner if i": [0, 65535], "he is my prisoner if i let": [0, 65535], "is my prisoner if i let him": [0, 65535], "my prisoner if i let him go": [0, 65535], "prisoner if i let him go the": [0, 65535], "if i let him go the debt": [0, 65535], "i let him go the debt he": [0, 65535], "let him go the debt he owes": [0, 65535], "him go the debt he owes will": [0, 65535], "go the debt he owes will be": [0, 65535], "the debt he owes will be requir'd": [0, 65535], "debt he owes will be requir'd of": [0, 65535], "he owes will be requir'd of me": [0, 65535], "owes will be requir'd of me adr": [0, 65535], "will be requir'd of me adr i": [0, 65535], "be requir'd of me adr i will": [0, 65535], "requir'd of me adr i will discharge": [0, 65535], "of me adr i will discharge thee": [0, 65535], "me adr i will discharge thee ere": [0, 65535], "adr i will discharge thee ere i": [0, 65535], "i will discharge thee ere i go": [0, 65535], "will discharge thee ere i go from": [0, 65535], "discharge thee ere i go from thee": [0, 65535], "thee ere i go from thee beare": [0, 65535], "ere i go from thee beare me": [0, 65535], "i go from thee beare me forthwith": [0, 65535], "go from thee beare me forthwith vnto": [0, 65535], "from thee beare me forthwith vnto his": [0, 65535], "thee beare me forthwith vnto his creditor": [0, 65535], "beare me forthwith vnto his creditor and": [0, 65535], "me forthwith vnto his creditor and knowing": [0, 65535], "forthwith vnto his creditor and knowing how": [0, 65535], "vnto his creditor and knowing how the": [0, 65535], "his creditor and knowing how the debt": [0, 65535], "creditor and knowing how the debt growes": [0, 65535], "and knowing how the debt growes i": [0, 65535], "knowing how the debt growes i will": [0, 65535], "how the debt growes i will pay": [0, 65535], "the debt growes i will pay it": [0, 65535], "debt growes i will pay it good": [0, 65535], "growes i will pay it good master": [0, 65535], "i will pay it good master doctor": [0, 65535], "will pay it good master doctor see": [0, 65535], "pay it good master doctor see him": [0, 65535], "it good master doctor see him safe": [0, 65535], "good master doctor see him safe conuey'd": [0, 65535], "master doctor see him safe conuey'd home": [0, 65535], "doctor see him safe conuey'd home to": [0, 65535], "see him safe conuey'd home to my": [0, 65535], "him safe conuey'd home to my house": [0, 65535], "safe conuey'd home to my house oh": [0, 65535], "conuey'd home to my house oh most": [0, 65535], "home to my house oh most vnhappy": [0, 65535], "to my house oh most vnhappy day": [0, 65535], "my house oh most vnhappy day ant": [0, 65535], "house oh most vnhappy day ant oh": [0, 65535], "oh most vnhappy day ant oh most": [0, 65535], "most vnhappy day ant oh most vnhappie": [0, 65535], "vnhappy day ant oh most vnhappie strumpet": [0, 65535], "day ant oh most vnhappie strumpet dro": [0, 65535], "ant oh most vnhappie strumpet dro master": [0, 65535], "oh most vnhappie strumpet dro master i": [0, 65535], "most vnhappie strumpet dro master i am": [0, 65535], "vnhappie strumpet dro master i am heere": [0, 65535], "strumpet dro master i am heere entred": [0, 65535], "dro master i am heere entred in": [0, 65535], "master i am heere entred in bond": [0, 65535], "i am heere entred in bond for": [0, 65535], "am heere entred in bond for you": [0, 65535], "heere entred in bond for you ant": [0, 65535], "entred in bond for you ant out": [0, 65535], "in bond for you ant out on": [0, 65535], "bond for you ant out on thee": [0, 65535], "for you ant out on thee villaine": [0, 65535], "you ant out on thee villaine wherefore": [0, 65535], "ant out on thee villaine wherefore dost": [0, 65535], "out on thee villaine wherefore dost thou": [0, 65535], "on thee villaine wherefore dost thou mad": [0, 65535], "thee villaine wherefore dost thou mad mee": [0, 65535], "villaine wherefore dost thou mad mee dro": [0, 65535], "wherefore dost thou mad mee dro will": [0, 65535], "dost thou mad mee dro will you": [0, 65535], "thou mad mee dro will you be": [0, 65535], "mad mee dro will you be bound": [0, 65535], "mee dro will you be bound for": [0, 65535], "dro will you be bound for nothing": [0, 65535], "will you be bound for nothing be": [0, 65535], "you be bound for nothing be mad": [0, 65535], "be bound for nothing be mad good": [0, 65535], "bound for nothing be mad good master": [0, 65535], "for nothing be mad good master cry": [0, 65535], "nothing be mad good master cry the": [0, 65535], "be mad good master cry the diuell": [0, 65535], "mad good master cry the diuell luc": [0, 65535], "good master cry the diuell luc god": [0, 65535], "master cry the diuell luc god helpe": [0, 65535], "cry the diuell luc god helpe poore": [0, 65535], "the diuell luc god helpe poore soules": [0, 65535], "diuell luc god helpe poore soules how": [0, 65535], "luc god helpe poore soules how idlely": [0, 65535], "god helpe poore soules how idlely doe": [0, 65535], "helpe poore soules how idlely doe they": [0, 65535], "poore soules how idlely doe they talke": [0, 65535], "soules how idlely doe they talke adr": [0, 65535], "how idlely doe they talke adr go": [0, 65535], "idlely doe they talke adr go beare": [0, 65535], "doe they talke adr go beare him": [0, 65535], "they talke adr go beare him hence": [0, 65535], "talke adr go beare him hence sister": [0, 65535], "adr go beare him hence sister go": [0, 65535], "go beare him hence sister go you": [0, 65535], "beare him hence sister go you with": [0, 65535], "him hence sister go you with me": [0, 65535], "hence sister go you with me say": [0, 65535], "sister go you with me say now": [0, 65535], "go you with me say now whose": [0, 65535], "you with me say now whose suite": [0, 65535], "with me say now whose suite is": [0, 65535], "me say now whose suite is he": [0, 65535], "say now whose suite is he arrested": [0, 65535], "now whose suite is he arrested at": [0, 65535], "whose suite is he arrested at exeunt": [0, 65535], "suite is he arrested at exeunt manet": [0, 65535], "is he arrested at exeunt manet offic": [0, 65535], "he arrested at exeunt manet offic adri": [0, 65535], "arrested at exeunt manet offic adri luci": [0, 65535], "at exeunt manet offic adri luci courtizan": [0, 65535], "exeunt manet offic adri luci courtizan off": [0, 65535], "manet offic adri luci courtizan off one": [0, 65535], "offic adri luci courtizan off one angelo": [0, 65535], "adri luci courtizan off one angelo a": [0, 65535], "luci courtizan off one angelo a goldsmith": [0, 65535], "courtizan off one angelo a goldsmith do": [0, 65535], "off one angelo a goldsmith do you": [0, 65535], "one angelo a goldsmith do you know": [0, 65535], "angelo a goldsmith do you know him": [0, 65535], "a goldsmith do you know him adr": [0, 65535], "goldsmith do you know him adr i": [0, 65535], "do you know him adr i know": [0, 65535], "you know him adr i know the": [0, 65535], "know him adr i know the man": [0, 65535], "him adr i know the man what": [0, 65535], "adr i know the man what is": [0, 65535], "i know the man what is the": [0, 65535], "know the man what is the summe": [0, 65535], "the man what is the summe he": [0, 65535], "man what is the summe he owes": [0, 65535], "what is the summe he owes off": [0, 65535], "is the summe he owes off two": [0, 65535], "the summe he owes off two hundred": [0, 65535], "summe he owes off two hundred duckets": [0, 65535], "he owes off two hundred duckets adr": [0, 65535], "owes off two hundred duckets adr say": [0, 65535], "off two hundred duckets adr say how": [0, 65535], "two hundred duckets adr say how growes": [0, 65535], "hundred duckets adr say how growes it": [0, 65535], "duckets adr say how growes it due": [0, 65535], "adr say how growes it due off": [0, 65535], "say how growes it due off due": [0, 65535], "how growes it due off due for": [0, 65535], "growes it due off due for a": [0, 65535], "it due off due for a chaine": [0, 65535], "due off due for a chaine your": [0, 65535], "off due for a chaine your husband": [0, 65535], "due for a chaine your husband had": [0, 65535], "for a chaine your husband had of": [0, 65535], "a chaine your husband had of him": [0, 65535], "chaine your husband had of him adr": [0, 65535], "your husband had of him adr he": [0, 65535], "husband had of him adr he did": [0, 65535], "had of him adr he did bespeake": [0, 65535], "of him adr he did bespeake a": [0, 65535], "him adr he did bespeake a chain": [0, 65535], "adr he did bespeake a chain for": [0, 65535], "he did bespeake a chain for me": [0, 65535], "did bespeake a chain for me but": [0, 65535], "bespeake a chain for me but had": [0, 65535], "a chain for me but had it": [0, 65535], "chain for me but had it not": [0, 65535], "for me but had it not cur": [0, 65535], "me but had it not cur when": [0, 65535], "but had it not cur when as": [0, 65535], "had it not cur when as your": [0, 65535], "it not cur when as your husband": [0, 65535], "not cur when as your husband all": [0, 65535], "cur when as your husband all in": [0, 65535], "when as your husband all in rage": [0, 65535], "as your husband all in rage to": [0, 65535], "your husband all in rage to day": [0, 65535], "husband all in rage to day came": [0, 65535], "all in rage to day came to": [0, 65535], "in rage to day came to my": [0, 65535], "rage to day came to my house": [0, 65535], "to day came to my house and": [0, 65535], "day came to my house and tooke": [0, 65535], "came to my house and tooke away": [0, 65535], "to my house and tooke away my": [0, 65535], "my house and tooke away my ring": [0, 65535], "house and tooke away my ring the": [0, 65535], "and tooke away my ring the ring": [0, 65535], "tooke away my ring the ring i": [0, 65535], "away my ring the ring i saw": [0, 65535], "my ring the ring i saw vpon": [0, 65535], "ring the ring i saw vpon his": [0, 65535], "the ring i saw vpon his finger": [0, 65535], "ring i saw vpon his finger now": [0, 65535], "i saw vpon his finger now straight": [0, 65535], "saw vpon his finger now straight after": [0, 65535], "vpon his finger now straight after did": [0, 65535], "his finger now straight after did i": [0, 65535], "finger now straight after did i meete": [0, 65535], "now straight after did i meete him": [0, 65535], "straight after did i meete him with": [0, 65535], "after did i meete him with a": [0, 65535], "did i meete him with a chaine": [0, 65535], "i meete him with a chaine adr": [0, 65535], "meete him with a chaine adr it": [0, 65535], "him with a chaine adr it may": [0, 65535], "with a chaine adr it may be": [0, 65535], "a chaine adr it may be so": [0, 65535], "chaine adr it may be so but": [0, 65535], "adr it may be so but i": [0, 65535], "it may be so but i did": [0, 65535], "may be so but i did neuer": [0, 65535], "be so but i did neuer see": [0, 65535], "so but i did neuer see it": [0, 65535], "but i did neuer see it come": [0, 65535], "i did neuer see it come iailor": [0, 65535], "did neuer see it come iailor bring": [0, 65535], "neuer see it come iailor bring me": [0, 65535], "see it come iailor bring me where": [0, 65535], "it come iailor bring me where the": [0, 65535], "come iailor bring me where the goldsmith": [0, 65535], "iailor bring me where the goldsmith is": [0, 65535], "bring me where the goldsmith is i": [0, 65535], "me where the goldsmith is i long": [0, 65535], "where the goldsmith is i long to": [0, 65535], "the goldsmith is i long to know": [0, 65535], "goldsmith is i long to know the": [0, 65535], "is i long to know the truth": [0, 65535], "i long to know the truth heereof": [0, 65535], "long to know the truth heereof at": [0, 65535], "to know the truth heereof at large": [0, 65535], "know the truth heereof at large enter": [0, 65535], "the truth heereof at large enter antipholus": [0, 65535], "truth heereof at large enter antipholus siracusia": [0, 65535], "heereof at large enter antipholus siracusia with": [0, 65535], "at large enter antipholus siracusia with his": [0, 65535], "large enter antipholus siracusia with his rapier": [0, 65535], "enter antipholus siracusia with his rapier drawne": [0, 65535], "antipholus siracusia with his rapier drawne and": [0, 65535], "siracusia with his rapier drawne and dromio": [0, 65535], "with his rapier drawne and dromio sirac": [0, 65535], "his rapier drawne and dromio sirac luc": [0, 65535], "rapier drawne and dromio sirac luc god": [0, 65535], "drawne and dromio sirac luc god for": [0, 65535], "and dromio sirac luc god for thy": [0, 65535], "dromio sirac luc god for thy mercy": [0, 65535], "sirac luc god for thy mercy they": [0, 65535], "luc god for thy mercy they are": [0, 65535], "god for thy mercy they are loose": [0, 65535], "for thy mercy they are loose againe": [0, 65535], "thy mercy they are loose againe adr": [0, 65535], "mercy they are loose againe adr and": [0, 65535], "they are loose againe adr and come": [0, 65535], "are loose againe adr and come with": [0, 65535], "loose againe adr and come with naked": [0, 65535], "againe adr and come with naked swords": [0, 65535], "adr and come with naked swords let's": [0, 65535], "and come with naked swords let's call": [0, 65535], "come with naked swords let's call more": [0, 65535], "with naked swords let's call more helpe": [0, 65535], "naked swords let's call more helpe to": [0, 65535], "swords let's call more helpe to haue": [0, 65535], "let's call more helpe to haue them": [0, 65535], "call more helpe to haue them bound": [0, 65535], "more helpe to haue them bound againe": [0, 65535], "helpe to haue them bound againe runne": [0, 65535], "to haue them bound againe runne all": [0, 65535], "haue them bound againe runne all out": [0, 65535], "them bound againe runne all out off": [0, 65535], "bound againe runne all out off away": [0, 65535], "againe runne all out off away they'l": [0, 65535], "runne all out off away they'l kill": [0, 65535], "all out off away they'l kill vs": [0, 65535], "out off away they'l kill vs exeunt": [0, 65535], "off away they'l kill vs exeunt omnes": [0, 65535], "away they'l kill vs exeunt omnes as": [0, 65535], "they'l kill vs exeunt omnes as fast": [0, 65535], "kill vs exeunt omnes as fast as": [0, 65535], "vs exeunt omnes as fast as may": [0, 65535], "exeunt omnes as fast as may be": [0, 65535], "omnes as fast as may be frighted": [0, 65535], "as fast as may be frighted s": [0, 65535], "fast as may be frighted s ant": [0, 65535], "as may be frighted s ant i": [0, 65535], "may be frighted s ant i see": [0, 65535], "be frighted s ant i see these": [0, 65535], "frighted s ant i see these witches": [0, 65535], "s ant i see these witches are": [0, 65535], "ant i see these witches are affraid": [0, 65535], "i see these witches are affraid of": [0, 65535], "see these witches are affraid of swords": [0, 65535], "these witches are affraid of swords s": [0, 65535], "witches are affraid of swords s dro": [0, 65535], "are affraid of swords s dro she": [0, 65535], "affraid of swords s dro she that": [0, 65535], "of swords s dro she that would": [0, 65535], "swords s dro she that would be": [0, 65535], "s dro she that would be your": [0, 65535], "dro she that would be your wife": [0, 65535], "she that would be your wife now": [0, 65535], "that would be your wife now ran": [0, 65535], "would be your wife now ran from": [0, 65535], "be your wife now ran from you": [0, 65535], "your wife now ran from you ant": [0, 65535], "wife now ran from you ant come": [0, 65535], "now ran from you ant come to": [0, 65535], "ran from you ant come to the": [0, 65535], "from you ant come to the centaur": [0, 65535], "you ant come to the centaur fetch": [0, 65535], "ant come to the centaur fetch our": [0, 65535], "come to the centaur fetch our stuffe": [0, 65535], "to the centaur fetch our stuffe from": [0, 65535], "the centaur fetch our stuffe from thence": [0, 65535], "centaur fetch our stuffe from thence i": [0, 65535], "fetch our stuffe from thence i long": [0, 65535], "our stuffe from thence i long that": [0, 65535], "stuffe from thence i long that we": [0, 65535], "from thence i long that we were": [0, 65535], "thence i long that we were safe": [0, 65535], "i long that we were safe and": [0, 65535], "long that we were safe and sound": [0, 65535], "that we were safe and sound aboord": [0, 65535], "we were safe and sound aboord dro": [0, 65535], "were safe and sound aboord dro faith": [0, 65535], "safe and sound aboord dro faith stay": [0, 65535], "and sound aboord dro faith stay heere": [0, 65535], "sound aboord dro faith stay heere this": [0, 65535], "aboord dro faith stay heere this night": [0, 65535], "dro faith stay heere this night they": [0, 65535], "faith stay heere this night they will": [0, 65535], "stay heere this night they will surely": [0, 65535], "heere this night they will surely do": [0, 65535], "this night they will surely do vs": [0, 65535], "night they will surely do vs no": [0, 65535], "they will surely do vs no harme": [0, 65535], "will surely do vs no harme you": [0, 65535], "surely do vs no harme you saw": [0, 65535], "do vs no harme you saw they": [0, 65535], "vs no harme you saw they speake": [0, 65535], "no harme you saw they speake vs": [0, 65535], "harme you saw they speake vs faire": [0, 65535], "you saw they speake vs faire giue": [0, 65535], "saw they speake vs faire giue vs": [0, 65535], "they speake vs faire giue vs gold": [0, 65535], "speake vs faire giue vs gold me": [0, 65535], "vs faire giue vs gold me thinkes": [0, 65535], "faire giue vs gold me thinkes they": [0, 65535], "giue vs gold me thinkes they are": [0, 65535], "vs gold me thinkes they are such": [0, 65535], "gold me thinkes they are such a": [0, 65535], "me thinkes they are such a gentle": [0, 65535], "thinkes they are such a gentle nation": [0, 65535], "they are such a gentle nation that": [0, 65535], "are such a gentle nation that but": [0, 65535], "such a gentle nation that but for": [0, 65535], "a gentle nation that but for the": [0, 65535], "gentle nation that but for the mountaine": [0, 65535], "nation that but for the mountaine of": [0, 65535], "that but for the mountaine of mad": [0, 65535], "but for the mountaine of mad flesh": [0, 65535], "for the mountaine of mad flesh that": [0, 65535], "the mountaine of mad flesh that claimes": [0, 65535], "mountaine of mad flesh that claimes mariage": [0, 65535], "of mad flesh that claimes mariage of": [0, 65535], "mad flesh that claimes mariage of me": [0, 65535], "flesh that claimes mariage of me i": [0, 65535], "that claimes mariage of me i could": [0, 65535], "claimes mariage of me i could finde": [0, 65535], "mariage of me i could finde in": [0, 65535], "of me i could finde in my": [0, 65535], "me i could finde in my heart": [0, 65535], "i could finde in my heart to": [0, 65535], "could finde in my heart to stay": [0, 65535], "finde in my heart to stay heere": [0, 65535], "in my heart to stay heere still": [0, 65535], "my heart to stay heere still and": [0, 65535], "heart to stay heere still and turne": [0, 65535], "to stay heere still and turne witch": [0, 65535], "stay heere still and turne witch ant": [0, 65535], "heere still and turne witch ant i": [0, 65535], "still and turne witch ant i will": [0, 65535], "and turne witch ant i will not": [0, 65535], "turne witch ant i will not stay": [0, 65535], "witch ant i will not stay to": [0, 65535], "ant i will not stay to night": [0, 65535], "i will not stay to night for": [0, 65535], "will not stay to night for all": [0, 65535], "not stay to night for all the": [0, 65535], "stay to night for all the towne": [0, 65535], "to night for all the towne therefore": [0, 65535], "night for all the towne therefore away": [0, 65535], "for all the towne therefore away to": [0, 65535], "all the towne therefore away to get": [0, 65535], "the towne therefore away to get our": [0, 65535], "towne therefore away to get our stuffe": [0, 65535], "therefore away to get our stuffe aboord": [0, 65535], "away to get our stuffe aboord exeunt": [0, 65535], "actus quartus sc\u00e6na prima enter a merchant goldsmith": [0, 65535], "quartus sc\u00e6na prima enter a merchant goldsmith and": [0, 65535], "sc\u00e6na prima enter a merchant goldsmith and an": [0, 65535], "prima enter a merchant goldsmith and an officer": [0, 65535], "enter a merchant goldsmith and an officer mar": [0, 65535], "a merchant goldsmith and an officer mar you": [0, 65535], "merchant goldsmith and an officer mar you know": [0, 65535], "goldsmith and an officer mar you know since": [0, 65535], "and an officer mar you know since pentecost": [0, 65535], "an officer mar you know since pentecost the": [0, 65535], "officer mar you know since pentecost the sum": [0, 65535], "mar you know since pentecost the sum is": [0, 65535], "you know since pentecost the sum is due": [0, 65535], "know since pentecost the sum is due and": [0, 65535], "since pentecost the sum is due and since": [0, 65535], "pentecost the sum is due and since i": [0, 65535], "the sum is due and since i haue": [0, 65535], "sum is due and since i haue not": [0, 65535], "is due and since i haue not much": [0, 65535], "due and since i haue not much importun'd": [0, 65535], "and since i haue not much importun'd you": [0, 65535], "since i haue not much importun'd you nor": [0, 65535], "i haue not much importun'd you nor now": [0, 65535], "haue not much importun'd you nor now i": [0, 65535], "not much importun'd you nor now i had": [0, 65535], "much importun'd you nor now i had not": [0, 65535], "importun'd you nor now i had not but": [0, 65535], "you nor now i had not but that": [0, 65535], "nor now i had not but that i": [0, 65535], "now i had not but that i am": [0, 65535], "i had not but that i am bound": [0, 65535], "had not but that i am bound to": [0, 65535], "not but that i am bound to persia": [0, 65535], "but that i am bound to persia and": [0, 65535], "that i am bound to persia and want": [0, 65535], "i am bound to persia and want gilders": [0, 65535], "am bound to persia and want gilders for": [0, 65535], "bound to persia and want gilders for my": [0, 65535], "to persia and want gilders for my voyage": [0, 65535], "persia and want gilders for my voyage therefore": [0, 65535], "and want gilders for my voyage therefore make": [0, 65535], "want gilders for my voyage therefore make present": [0, 65535], "gilders for my voyage therefore make present satisfaction": [0, 65535], "for my voyage therefore make present satisfaction or": [0, 65535], "my voyage therefore make present satisfaction or ile": [0, 65535], "voyage therefore make present satisfaction or ile attach": [0, 65535], "therefore make present satisfaction or ile attach you": [0, 65535], "make present satisfaction or ile attach you by": [0, 65535], "present satisfaction or ile attach you by this": [0, 65535], "satisfaction or ile attach you by this officer": [0, 65535], "or ile attach you by this officer gold": [0, 65535], "ile attach you by this officer gold euen": [0, 65535], "attach you by this officer gold euen iust": [0, 65535], "you by this officer gold euen iust the": [0, 65535], "by this officer gold euen iust the sum": [0, 65535], "this officer gold euen iust the sum that": [0, 65535], "officer gold euen iust the sum that i": [0, 65535], "gold euen iust the sum that i do": [0, 65535], "euen iust the sum that i do owe": [0, 65535], "iust the sum that i do owe to": [0, 65535], "the sum that i do owe to you": [0, 65535], "sum that i do owe to you is": [0, 65535], "that i do owe to you is growing": [0, 65535], "i do owe to you is growing to": [0, 65535], "do owe to you is growing to me": [0, 65535], "owe to you is growing to me by": [0, 65535], "to you is growing to me by antipholus": [0, 65535], "you is growing to me by antipholus and": [0, 65535], "is growing to me by antipholus and in": [0, 65535], "growing to me by antipholus and in the": [0, 65535], "to me by antipholus and in the instant": [0, 65535], "me by antipholus and in the instant that": [0, 65535], "by antipholus and in the instant that i": [0, 65535], "antipholus and in the instant that i met": [0, 65535], "and in the instant that i met with": [0, 65535], "in the instant that i met with you": [0, 65535], "the instant that i met with you he": [0, 65535], "instant that i met with you he had": [0, 65535], "that i met with you he had of": [0, 65535], "i met with you he had of me": [0, 65535], "met with you he had of me a": [0, 65535], "with you he had of me a chaine": [0, 65535], "you he had of me a chaine at": [0, 65535], "he had of me a chaine at fiue": [0, 65535], "had of me a chaine at fiue a": [0, 65535], "of me a chaine at fiue a clocke": [0, 65535], "me a chaine at fiue a clocke i": [0, 65535], "a chaine at fiue a clocke i shall": [0, 65535], "chaine at fiue a clocke i shall receiue": [0, 65535], "at fiue a clocke i shall receiue the": [0, 65535], "fiue a clocke i shall receiue the money": [0, 65535], "a clocke i shall receiue the money for": [0, 65535], "clocke i shall receiue the money for the": [0, 65535], "i shall receiue the money for the same": [0, 65535], "shall receiue the money for the same pleaseth": [0, 65535], "receiue the money for the same pleaseth you": [0, 65535], "the money for the same pleaseth you walke": [0, 65535], "money for the same pleaseth you walke with": [0, 65535], "for the same pleaseth you walke with me": [0, 65535], "the same pleaseth you walke with me downe": [0, 65535], "same pleaseth you walke with me downe to": [0, 65535], "pleaseth you walke with me downe to his": [0, 65535], "you walke with me downe to his house": [0, 65535], "walke with me downe to his house i": [0, 65535], "with me downe to his house i will": [0, 65535], "me downe to his house i will discharge": [0, 65535], "downe to his house i will discharge my": [0, 65535], "to his house i will discharge my bond": [0, 65535], "his house i will discharge my bond and": [0, 65535], "house i will discharge my bond and thanke": [0, 65535], "i will discharge my bond and thanke you": [0, 65535], "will discharge my bond and thanke you too": [0, 65535], "discharge my bond and thanke you too enter": [0, 65535], "my bond and thanke you too enter antipholus": [0, 65535], "bond and thanke you too enter antipholus ephes": [0, 65535], "and thanke you too enter antipholus ephes dromio": [0, 65535], "thanke you too enter antipholus ephes dromio from": [0, 65535], "you too enter antipholus ephes dromio from the": [0, 65535], "too enter antipholus ephes dromio from the courtizans": [0, 65535], "enter antipholus ephes dromio from the courtizans offi": [0, 65535], "antipholus ephes dromio from the courtizans offi that": [0, 65535], "ephes dromio from the courtizans offi that labour": [0, 65535], "dromio from the courtizans offi that labour may": [0, 65535], "from the courtizans offi that labour may you": [0, 65535], "the courtizans offi that labour may you saue": [0, 65535], "courtizans offi that labour may you saue see": [0, 65535], "offi that labour may you saue see where": [0, 65535], "that labour may you saue see where he": [0, 65535], "labour may you saue see where he comes": [0, 65535], "may you saue see where he comes ant": [0, 65535], "you saue see where he comes ant while": [0, 65535], "saue see where he comes ant while i": [0, 65535], "see where he comes ant while i go": [0, 65535], "where he comes ant while i go to": [0, 65535], "he comes ant while i go to the": [0, 65535], "comes ant while i go to the goldsmiths": [0, 65535], "ant while i go to the goldsmiths house": [0, 65535], "while i go to the goldsmiths house go": [0, 65535], "i go to the goldsmiths house go thou": [0, 65535], "go to the goldsmiths house go thou and": [0, 65535], "to the goldsmiths house go thou and buy": [0, 65535], "the goldsmiths house go thou and buy a": [0, 65535], "goldsmiths house go thou and buy a ropes": [0, 65535], "house go thou and buy a ropes end": [0, 65535], "go thou and buy a ropes end that": [0, 65535], "thou and buy a ropes end that will": [0, 65535], "and buy a ropes end that will i": [0, 65535], "buy a ropes end that will i bestow": [0, 65535], "a ropes end that will i bestow among": [0, 65535], "ropes end that will i bestow among my": [0, 65535], "end that will i bestow among my wife": [0, 65535], "that will i bestow among my wife and": [0, 65535], "will i bestow among my wife and their": [0, 65535], "i bestow among my wife and their confederates": [0, 65535], "bestow among my wife and their confederates for": [0, 65535], "among my wife and their confederates for locking": [0, 65535], "my wife and their confederates for locking me": [0, 65535], "wife and their confederates for locking me out": [0, 65535], "and their confederates for locking me out of": [0, 65535], "their confederates for locking me out of my": [0, 65535], "confederates for locking me out of my doores": [0, 65535], "for locking me out of my doores by": [0, 65535], "locking me out of my doores by day": [0, 65535], "me out of my doores by day but": [0, 65535], "out of my doores by day but soft": [0, 65535], "of my doores by day but soft i": [0, 65535], "my doores by day but soft i see": [0, 65535], "doores by day but soft i see the": [0, 65535], "by day but soft i see the goldsmith": [0, 65535], "day but soft i see the goldsmith get": [0, 65535], "but soft i see the goldsmith get thee": [0, 65535], "soft i see the goldsmith get thee gone": [0, 65535], "i see the goldsmith get thee gone buy": [0, 65535], "see the goldsmith get thee gone buy thou": [0, 65535], "the goldsmith get thee gone buy thou a": [0, 65535], "goldsmith get thee gone buy thou a rope": [0, 65535], "get thee gone buy thou a rope and": [0, 65535], "thee gone buy thou a rope and bring": [0, 65535], "gone buy thou a rope and bring it": [0, 65535], "buy thou a rope and bring it home": [0, 65535], "thou a rope and bring it home to": [0, 65535], "a rope and bring it home to me": [0, 65535], "rope and bring it home to me dro": [0, 65535], "and bring it home to me dro i": [0, 65535], "bring it home to me dro i buy": [0, 65535], "it home to me dro i buy a": [0, 65535], "home to me dro i buy a thousand": [0, 65535], "to me dro i buy a thousand pound": [0, 65535], "me dro i buy a thousand pound a": [0, 65535], "dro i buy a thousand pound a yeare": [0, 65535], "i buy a thousand pound a yeare i": [0, 65535], "buy a thousand pound a yeare i buy": [0, 65535], "a thousand pound a yeare i buy a": [0, 65535], "thousand pound a yeare i buy a rope": [0, 65535], "pound a yeare i buy a rope exit": [0, 65535], "a yeare i buy a rope exit dromio": [0, 65535], "yeare i buy a rope exit dromio eph": [0, 65535], "i buy a rope exit dromio eph ant": [0, 65535], "buy a rope exit dromio eph ant a": [0, 65535], "a rope exit dromio eph ant a man": [0, 65535], "rope exit dromio eph ant a man is": [0, 65535], "exit dromio eph ant a man is well": [0, 65535], "dromio eph ant a man is well holpe": [0, 65535], "eph ant a man is well holpe vp": [0, 65535], "ant a man is well holpe vp that": [0, 65535], "a man is well holpe vp that trusts": [0, 65535], "man is well holpe vp that trusts to": [0, 65535], "is well holpe vp that trusts to you": [0, 65535], "well holpe vp that trusts to you i": [0, 65535], "holpe vp that trusts to you i promised": [0, 65535], "vp that trusts to you i promised your": [0, 65535], "that trusts to you i promised your presence": [0, 65535], "trusts to you i promised your presence and": [0, 65535], "to you i promised your presence and the": [0, 65535], "you i promised your presence and the chaine": [0, 65535], "i promised your presence and the chaine but": [0, 65535], "promised your presence and the chaine but neither": [0, 65535], "your presence and the chaine but neither chaine": [0, 65535], "presence and the chaine but neither chaine nor": [0, 65535], "and the chaine but neither chaine nor goldsmith": [0, 65535], "the chaine but neither chaine nor goldsmith came": [0, 65535], "chaine but neither chaine nor goldsmith came to": [0, 65535], "but neither chaine nor goldsmith came to me": [0, 65535], "neither chaine nor goldsmith came to me belike": [0, 65535], "chaine nor goldsmith came to me belike you": [0, 65535], "nor goldsmith came to me belike you thought": [0, 65535], "goldsmith came to me belike you thought our": [0, 65535], "came to me belike you thought our loue": [0, 65535], "to me belike you thought our loue would": [0, 65535], "me belike you thought our loue would last": [0, 65535], "belike you thought our loue would last too": [0, 65535], "you thought our loue would last too long": [0, 65535], "thought our loue would last too long if": [0, 65535], "our loue would last too long if it": [0, 65535], "loue would last too long if it were": [0, 65535], "would last too long if it were chain'd": [0, 65535], "last too long if it were chain'd together": [0, 65535], "too long if it were chain'd together and": [0, 65535], "long if it were chain'd together and therefore": [0, 65535], "if it were chain'd together and therefore came": [0, 65535], "it were chain'd together and therefore came not": [0, 65535], "were chain'd together and therefore came not gold": [0, 65535], "chain'd together and therefore came not gold sauing": [0, 65535], "together and therefore came not gold sauing your": [0, 65535], "and therefore came not gold sauing your merrie": [0, 65535], "therefore came not gold sauing your merrie humor": [0, 65535], "came not gold sauing your merrie humor here's": [0, 65535], "not gold sauing your merrie humor here's the": [0, 65535], "gold sauing your merrie humor here's the note": [0, 65535], "sauing your merrie humor here's the note how": [0, 65535], "your merrie humor here's the note how much": [0, 65535], "merrie humor here's the note how much your": [0, 65535], "humor here's the note how much your chaine": [0, 65535], "here's the note how much your chaine weighs": [0, 65535], "the note how much your chaine weighs to": [0, 65535], "note how much your chaine weighs to the": [0, 65535], "how much your chaine weighs to the vtmost": [0, 65535], "much your chaine weighs to the vtmost charect": [0, 65535], "your chaine weighs to the vtmost charect the": [0, 65535], "chaine weighs to the vtmost charect the finenesse": [0, 65535], "weighs to the vtmost charect the finenesse of": [0, 65535], "to the vtmost charect the finenesse of the": [0, 65535], "the vtmost charect the finenesse of the gold": [0, 65535], "vtmost charect the finenesse of the gold and": [0, 65535], "charect the finenesse of the gold and chargefull": [0, 65535], "the finenesse of the gold and chargefull fashion": [0, 65535], "finenesse of the gold and chargefull fashion which": [0, 65535], "of the gold and chargefull fashion which doth": [0, 65535], "the gold and chargefull fashion which doth amount": [0, 65535], "gold and chargefull fashion which doth amount to": [0, 65535], "and chargefull fashion which doth amount to three": [0, 65535], "chargefull fashion which doth amount to three odde": [0, 65535], "fashion which doth amount to three odde duckets": [0, 65535], "which doth amount to three odde duckets more": [0, 65535], "doth amount to three odde duckets more then": [0, 65535], "amount to three odde duckets more then i": [0, 65535], "to three odde duckets more then i stand": [0, 65535], "three odde duckets more then i stand debted": [0, 65535], "odde duckets more then i stand debted to": [0, 65535], "duckets more then i stand debted to this": [0, 65535], "more then i stand debted to this gentleman": [0, 65535], "then i stand debted to this gentleman i": [0, 65535], "i stand debted to this gentleman i pray": [0, 65535], "stand debted to this gentleman i pray you": [0, 65535], "debted to this gentleman i pray you see": [0, 65535], "to this gentleman i pray you see him": [0, 65535], "this gentleman i pray you see him presently": [0, 65535], "gentleman i pray you see him presently discharg'd": [0, 65535], "i pray you see him presently discharg'd for": [0, 65535], "pray you see him presently discharg'd for he": [0, 65535], "you see him presently discharg'd for he is": [0, 65535], "see him presently discharg'd for he is bound": [0, 65535], "him presently discharg'd for he is bound to": [0, 65535], "presently discharg'd for he is bound to sea": [0, 65535], "discharg'd for he is bound to sea and": [0, 65535], "for he is bound to sea and stayes": [0, 65535], "he is bound to sea and stayes but": [0, 65535], "is bound to sea and stayes but for": [0, 65535], "bound to sea and stayes but for it": [0, 65535], "to sea and stayes but for it anti": [0, 65535], "sea and stayes but for it anti i": [0, 65535], "and stayes but for it anti i am": [0, 65535], "stayes but for it anti i am not": [0, 65535], "but for it anti i am not furnish'd": [0, 65535], "for it anti i am not furnish'd with": [0, 65535], "it anti i am not furnish'd with the": [0, 65535], "anti i am not furnish'd with the present": [0, 65535], "i am not furnish'd with the present monie": [0, 65535], "am not furnish'd with the present monie besides": [0, 65535], "not furnish'd with the present monie besides i": [0, 65535], "furnish'd with the present monie besides i haue": [0, 65535], "with the present monie besides i haue some": [0, 65535], "the present monie besides i haue some businesse": [0, 65535], "present monie besides i haue some businesse in": [0, 65535], "monie besides i haue some businesse in the": [0, 65535], "besides i haue some businesse in the towne": [0, 65535], "i haue some businesse in the towne good": [0, 65535], "haue some businesse in the towne good signior": [0, 65535], "some businesse in the towne good signior take": [0, 65535], "businesse in the towne good signior take the": [0, 65535], "in the towne good signior take the stranger": [0, 65535], "the towne good signior take the stranger to": [0, 65535], "towne good signior take the stranger to my": [0, 65535], "good signior take the stranger to my house": [0, 65535], "signior take the stranger to my house and": [0, 65535], "take the stranger to my house and with": [0, 65535], "the stranger to my house and with you": [0, 65535], "stranger to my house and with you take": [0, 65535], "to my house and with you take the": [0, 65535], "my house and with you take the chaine": [0, 65535], "house and with you take the chaine and": [0, 65535], "and with you take the chaine and bid": [0, 65535], "with you take the chaine and bid my": [0, 65535], "you take the chaine and bid my wife": [0, 65535], "take the chaine and bid my wife disburse": [0, 65535], "the chaine and bid my wife disburse the": [0, 65535], "chaine and bid my wife disburse the summe": [0, 65535], "and bid my wife disburse the summe on": [0, 65535], "bid my wife disburse the summe on the": [0, 65535], "my wife disburse the summe on the receit": [0, 65535], "wife disburse the summe on the receit thereof": [0, 65535], "disburse the summe on the receit thereof perchance": [0, 65535], "the summe on the receit thereof perchance i": [0, 65535], "summe on the receit thereof perchance i will": [0, 65535], "on the receit thereof perchance i will be": [0, 65535], "the receit thereof perchance i will be there": [0, 65535], "receit thereof perchance i will be there as": [0, 65535], "thereof perchance i will be there as soone": [0, 65535], "perchance i will be there as soone as": [0, 65535], "i will be there as soone as you": [0, 65535], "will be there as soone as you gold": [0, 65535], "be there as soone as you gold then": [0, 65535], "there as soone as you gold then you": [0, 65535], "as soone as you gold then you will": [0, 65535], "soone as you gold then you will bring": [0, 65535], "as you gold then you will bring the": [0, 65535], "you gold then you will bring the chaine": [0, 65535], "gold then you will bring the chaine to": [0, 65535], "then you will bring the chaine to her": [0, 65535], "you will bring the chaine to her your": [0, 65535], "will bring the chaine to her your selfe": [0, 65535], "bring the chaine to her your selfe anti": [0, 65535], "the chaine to her your selfe anti no": [0, 65535], "chaine to her your selfe anti no beare": [0, 65535], "to her your selfe anti no beare it": [0, 65535], "her your selfe anti no beare it with": [0, 65535], "your selfe anti no beare it with you": [0, 65535], "selfe anti no beare it with you least": [0, 65535], "anti no beare it with you least i": [0, 65535], "no beare it with you least i come": [0, 65535], "beare it with you least i come not": [0, 65535], "it with you least i come not time": [0, 65535], "with you least i come not time enough": [0, 65535], "you least i come not time enough gold": [0, 65535], "least i come not time enough gold well": [0, 65535], "i come not time enough gold well sir": [0, 65535], "come not time enough gold well sir i": [0, 65535], "not time enough gold well sir i will": [0, 65535], "time enough gold well sir i will haue": [0, 65535], "enough gold well sir i will haue you": [0, 65535], "gold well sir i will haue you the": [0, 65535], "well sir i will haue you the chaine": [0, 65535], "sir i will haue you the chaine about": [0, 65535], "i will haue you the chaine about you": [0, 65535], "will haue you the chaine about you ant": [0, 65535], "haue you the chaine about you ant and": [0, 65535], "you the chaine about you ant and if": [0, 65535], "the chaine about you ant and if i": [0, 65535], "chaine about you ant and if i haue": [0, 65535], "about you ant and if i haue not": [0, 65535], "you ant and if i haue not sir": [0, 65535], "ant and if i haue not sir i": [0, 65535], "and if i haue not sir i hope": [0, 65535], "if i haue not sir i hope you": [0, 65535], "i haue not sir i hope you haue": [0, 65535], "haue not sir i hope you haue or": [0, 65535], "not sir i hope you haue or else": [0, 65535], "sir i hope you haue or else you": [0, 65535], "i hope you haue or else you may": [0, 65535], "hope you haue or else you may returne": [0, 65535], "you haue or else you may returne without": [0, 65535], "haue or else you may returne without your": [0, 65535], "or else you may returne without your money": [0, 65535], "else you may returne without your money gold": [0, 65535], "you may returne without your money gold nay": [0, 65535], "may returne without your money gold nay come": [0, 65535], "returne without your money gold nay come i": [0, 65535], "without your money gold nay come i pray": [0, 65535], "your money gold nay come i pray you": [0, 65535], "money gold nay come i pray you sir": [0, 65535], "gold nay come i pray you sir giue": [0, 65535], "nay come i pray you sir giue me": [0, 65535], "come i pray you sir giue me the": [0, 65535], "i pray you sir giue me the chaine": [0, 65535], "pray you sir giue me the chaine both": [0, 65535], "you sir giue me the chaine both winde": [0, 65535], "sir giue me the chaine both winde and": [0, 65535], "giue me the chaine both winde and tide": [0, 65535], "me the chaine both winde and tide stayes": [0, 65535], "the chaine both winde and tide stayes for": [0, 65535], "chaine both winde and tide stayes for this": [0, 65535], "both winde and tide stayes for this gentleman": [0, 65535], "winde and tide stayes for this gentleman and": [0, 65535], "and tide stayes for this gentleman and i": [0, 65535], "tide stayes for this gentleman and i too": [0, 65535], "stayes for this gentleman and i too blame": [0, 65535], "for this gentleman and i too blame haue": [0, 65535], "this gentleman and i too blame haue held": [0, 65535], "gentleman and i too blame haue held him": [0, 65535], "and i too blame haue held him heere": [0, 65535], "i too blame haue held him heere too": [0, 65535], "too blame haue held him heere too long": [0, 65535], "blame haue held him heere too long anti": [0, 65535], "haue held him heere too long anti good": [0, 65535], "held him heere too long anti good lord": [0, 65535], "him heere too long anti good lord you": [0, 65535], "heere too long anti good lord you vse": [0, 65535], "too long anti good lord you vse this": [0, 65535], "long anti good lord you vse this dalliance": [0, 65535], "anti good lord you vse this dalliance to": [0, 65535], "good lord you vse this dalliance to excuse": [0, 65535], "lord you vse this dalliance to excuse your": [0, 65535], "you vse this dalliance to excuse your breach": [0, 65535], "vse this dalliance to excuse your breach of": [0, 65535], "this dalliance to excuse your breach of promise": [0, 65535], "dalliance to excuse your breach of promise to": [0, 65535], "to excuse your breach of promise to the": [0, 65535], "excuse your breach of promise to the porpentine": [0, 65535], "your breach of promise to the porpentine i": [0, 65535], "breach of promise to the porpentine i should": [0, 65535], "of promise to the porpentine i should haue": [0, 65535], "promise to the porpentine i should haue chid": [0, 65535], "to the porpentine i should haue chid you": [0, 65535], "the porpentine i should haue chid you for": [0, 65535], "porpentine i should haue chid you for not": [0, 65535], "i should haue chid you for not bringing": [0, 65535], "should haue chid you for not bringing it": [0, 65535], "haue chid you for not bringing it but": [0, 65535], "chid you for not bringing it but like": [0, 65535], "you for not bringing it but like a": [0, 65535], "for not bringing it but like a shrew": [0, 65535], "not bringing it but like a shrew you": [0, 65535], "bringing it but like a shrew you first": [0, 65535], "it but like a shrew you first begin": [0, 65535], "but like a shrew you first begin to": [0, 65535], "like a shrew you first begin to brawle": [0, 65535], "a shrew you first begin to brawle mar": [0, 65535], "shrew you first begin to brawle mar the": [0, 65535], "you first begin to brawle mar the houre": [0, 65535], "first begin to brawle mar the houre steales": [0, 65535], "begin to brawle mar the houre steales on": [0, 65535], "to brawle mar the houre steales on i": [0, 65535], "brawle mar the houre steales on i pray": [0, 65535], "mar the houre steales on i pray you": [0, 65535], "the houre steales on i pray you sir": [0, 65535], "houre steales on i pray you sir dispatch": [0, 65535], "steales on i pray you sir dispatch gold": [0, 65535], "on i pray you sir dispatch gold you": [0, 65535], "i pray you sir dispatch gold you heare": [0, 65535], "pray you sir dispatch gold you heare how": [0, 65535], "you sir dispatch gold you heare how he": [0, 65535], "sir dispatch gold you heare how he importunes": [0, 65535], "dispatch gold you heare how he importunes me": [0, 65535], "gold you heare how he importunes me the": [0, 65535], "you heare how he importunes me the chaine": [0, 65535], "heare how he importunes me the chaine ant": [0, 65535], "how he importunes me the chaine ant why": [0, 65535], "he importunes me the chaine ant why giue": [0, 65535], "importunes me the chaine ant why giue it": [0, 65535], "me the chaine ant why giue it to": [0, 65535], "the chaine ant why giue it to my": [0, 65535], "chaine ant why giue it to my wife": [0, 65535], "ant why giue it to my wife and": [0, 65535], "why giue it to my wife and fetch": [0, 65535], "giue it to my wife and fetch your": [0, 65535], "it to my wife and fetch your mony": [0, 65535], "to my wife and fetch your mony gold": [0, 65535], "my wife and fetch your mony gold come": [0, 65535], "wife and fetch your mony gold come come": [0, 65535], "and fetch your mony gold come come you": [0, 65535], "fetch your mony gold come come you know": [0, 65535], "your mony gold come come you know i": [0, 65535], "mony gold come come you know i gaue": [0, 65535], "gold come come you know i gaue it": [0, 65535], "come come you know i gaue it you": [0, 65535], "come you know i gaue it you euen": [0, 65535], "you know i gaue it you euen now": [0, 65535], "know i gaue it you euen now either": [0, 65535], "i gaue it you euen now either send": [0, 65535], "gaue it you euen now either send the": [0, 65535], "it you euen now either send the chaine": [0, 65535], "you euen now either send the chaine or": [0, 65535], "euen now either send the chaine or send": [0, 65535], "now either send the chaine or send me": [0, 65535], "either send the chaine or send me by": [0, 65535], "send the chaine or send me by some": [0, 65535], "the chaine or send me by some token": [0, 65535], "chaine or send me by some token ant": [0, 65535], "or send me by some token ant fie": [0, 65535], "send me by some token ant fie now": [0, 65535], "me by some token ant fie now you": [0, 65535], "by some token ant fie now you run": [0, 65535], "some token ant fie now you run this": [0, 65535], "token ant fie now you run this humor": [0, 65535], "ant fie now you run this humor out": [0, 65535], "fie now you run this humor out of": [0, 65535], "now you run this humor out of breath": [0, 65535], "you run this humor out of breath come": [0, 65535], "run this humor out of breath come where's": [0, 65535], "this humor out of breath come where's the": [0, 65535], "humor out of breath come where's the chaine": [0, 65535], "out of breath come where's the chaine i": [0, 65535], "of breath come where's the chaine i pray": [0, 65535], "breath come where's the chaine i pray you": [0, 65535], "come where's the chaine i pray you let": [0, 65535], "where's the chaine i pray you let me": [0, 65535], "the chaine i pray you let me see": [0, 65535], "chaine i pray you let me see it": [0, 65535], "i pray you let me see it mar": [0, 65535], "pray you let me see it mar my": [0, 65535], "you let me see it mar my businesse": [0, 65535], "let me see it mar my businesse cannot": [0, 65535], "me see it mar my businesse cannot brooke": [0, 65535], "see it mar my businesse cannot brooke this": [0, 65535], "it mar my businesse cannot brooke this dalliance": [0, 65535], "mar my businesse cannot brooke this dalliance good": [0, 65535], "my businesse cannot brooke this dalliance good sir": [0, 65535], "businesse cannot brooke this dalliance good sir say": [0, 65535], "cannot brooke this dalliance good sir say whe'r": [0, 65535], "brooke this dalliance good sir say whe'r you'l": [0, 65535], "this dalliance good sir say whe'r you'l answer": [0, 65535], "dalliance good sir say whe'r you'l answer me": [0, 65535], "good sir say whe'r you'l answer me or": [0, 65535], "sir say whe'r you'l answer me or no": [0, 65535], "say whe'r you'l answer me or no if": [0, 65535], "whe'r you'l answer me or no if not": [0, 65535], "you'l answer me or no if not ile": [0, 65535], "answer me or no if not ile leaue": [0, 65535], "me or no if not ile leaue him": [0, 65535], "or no if not ile leaue him to": [0, 65535], "no if not ile leaue him to the": [0, 65535], "if not ile leaue him to the officer": [0, 65535], "not ile leaue him to the officer ant": [0, 65535], "ile leaue him to the officer ant i": [0, 65535], "leaue him to the officer ant i answer": [0, 65535], "him to the officer ant i answer you": [0, 65535], "to the officer ant i answer you what": [0, 65535], "the officer ant i answer you what should": [0, 65535], "officer ant i answer you what should i": [0, 65535], "ant i answer you what should i answer": [0, 65535], "i answer you what should i answer you": [0, 65535], "answer you what should i answer you gold": [0, 65535], "you what should i answer you gold the": [0, 65535], "what should i answer you gold the monie": [0, 65535], "should i answer you gold the monie that": [0, 65535], "i answer you gold the monie that you": [0, 65535], "answer you gold the monie that you owe": [0, 65535], "you gold the monie that you owe me": [0, 65535], "gold the monie that you owe me for": [0, 65535], "the monie that you owe me for the": [0, 65535], "monie that you owe me for the chaine": [0, 65535], "that you owe me for the chaine ant": [0, 65535], "you owe me for the chaine ant i": [0, 65535], "owe me for the chaine ant i owe": [0, 65535], "me for the chaine ant i owe you": [0, 65535], "for the chaine ant i owe you none": [0, 65535], "the chaine ant i owe you none till": [0, 65535], "chaine ant i owe you none till i": [0, 65535], "ant i owe you none till i receiue": [0, 65535], "i owe you none till i receiue the": [0, 65535], "owe you none till i receiue the chaine": [0, 65535], "you none till i receiue the chaine gold": [0, 65535], "none till i receiue the chaine gold you": [0, 65535], "till i receiue the chaine gold you know": [0, 65535], "i receiue the chaine gold you know i": [0, 65535], "receiue the chaine gold you know i gaue": [0, 65535], "the chaine gold you know i gaue it": [0, 65535], "chaine gold you know i gaue it you": [0, 65535], "gold you know i gaue it you halfe": [0, 65535], "you know i gaue it you halfe an": [0, 65535], "know i gaue it you halfe an houre": [0, 65535], "i gaue it you halfe an houre since": [0, 65535], "gaue it you halfe an houre since ant": [0, 65535], "it you halfe an houre since ant you": [0, 65535], "you halfe an houre since ant you gaue": [0, 65535], "halfe an houre since ant you gaue me": [0, 65535], "an houre since ant you gaue me none": [0, 65535], "houre since ant you gaue me none you": [0, 65535], "since ant you gaue me none you wrong": [0, 65535], "ant you gaue me none you wrong mee": [0, 65535], "you gaue me none you wrong mee much": [0, 65535], "gaue me none you wrong mee much to": [0, 65535], "me none you wrong mee much to say": [0, 65535], "none you wrong mee much to say so": [0, 65535], "you wrong mee much to say so gold": [0, 65535], "wrong mee much to say so gold you": [0, 65535], "mee much to say so gold you wrong": [0, 65535], "much to say so gold you wrong me": [0, 65535], "to say so gold you wrong me more": [0, 65535], "say so gold you wrong me more sir": [0, 65535], "so gold you wrong me more sir in": [0, 65535], "gold you wrong me more sir in denying": [0, 65535], "you wrong me more sir in denying it": [0, 65535], "wrong me more sir in denying it consider": [0, 65535], "me more sir in denying it consider how": [0, 65535], "more sir in denying it consider how it": [0, 65535], "sir in denying it consider how it stands": [0, 65535], "in denying it consider how it stands vpon": [0, 65535], "denying it consider how it stands vpon my": [0, 65535], "it consider how it stands vpon my credit": [0, 65535], "consider how it stands vpon my credit mar": [0, 65535], "how it stands vpon my credit mar well": [0, 65535], "it stands vpon my credit mar well officer": [0, 65535], "stands vpon my credit mar well officer arrest": [0, 65535], "vpon my credit mar well officer arrest him": [0, 65535], "my credit mar well officer arrest him at": [0, 65535], "credit mar well officer arrest him at my": [0, 65535], "mar well officer arrest him at my suite": [0, 65535], "well officer arrest him at my suite offi": [0, 65535], "officer arrest him at my suite offi i": [0, 65535], "arrest him at my suite offi i do": [0, 65535], "him at my suite offi i do and": [0, 65535], "at my suite offi i do and charge": [0, 65535], "my suite offi i do and charge you": [0, 65535], "suite offi i do and charge you in": [0, 65535], "offi i do and charge you in the": [0, 65535], "i do and charge you in the dukes": [0, 65535], "do and charge you in the dukes name": [0, 65535], "and charge you in the dukes name to": [0, 65535], "charge you in the dukes name to obey": [0, 65535], "you in the dukes name to obey me": [0, 65535], "in the dukes name to obey me gold": [0, 65535], "the dukes name to obey me gold this": [0, 65535], "dukes name to obey me gold this touches": [0, 65535], "name to obey me gold this touches me": [0, 65535], "to obey me gold this touches me in": [0, 65535], "obey me gold this touches me in reputation": [0, 65535], "me gold this touches me in reputation either": [0, 65535], "gold this touches me in reputation either consent": [0, 65535], "this touches me in reputation either consent to": [0, 65535], "touches me in reputation either consent to pay": [0, 65535], "me in reputation either consent to pay this": [0, 65535], "in reputation either consent to pay this sum": [0, 65535], "reputation either consent to pay this sum for": [0, 65535], "either consent to pay this sum for me": [0, 65535], "consent to pay this sum for me or": [0, 65535], "to pay this sum for me or i": [0, 65535], "pay this sum for me or i attach": [0, 65535], "this sum for me or i attach you": [0, 65535], "sum for me or i attach you by": [0, 65535], "for me or i attach you by this": [0, 65535], "me or i attach you by this officer": [0, 65535], "or i attach you by this officer ant": [0, 65535], "i attach you by this officer ant consent": [0, 65535], "attach you by this officer ant consent to": [0, 65535], "you by this officer ant consent to pay": [0, 65535], "by this officer ant consent to pay thee": [0, 65535], "this officer ant consent to pay thee that": [0, 65535], "officer ant consent to pay thee that i": [0, 65535], "ant consent to pay thee that i neuer": [0, 65535], "consent to pay thee that i neuer had": [0, 65535], "to pay thee that i neuer had arrest": [0, 65535], "pay thee that i neuer had arrest me": [0, 65535], "thee that i neuer had arrest me foolish": [0, 65535], "that i neuer had arrest me foolish fellow": [0, 65535], "i neuer had arrest me foolish fellow if": [0, 65535], "neuer had arrest me foolish fellow if thou": [0, 65535], "had arrest me foolish fellow if thou dar'st": [0, 65535], "arrest me foolish fellow if thou dar'st gold": [0, 65535], "me foolish fellow if thou dar'st gold heere": [0, 65535], "foolish fellow if thou dar'st gold heere is": [0, 65535], "fellow if thou dar'st gold heere is thy": [0, 65535], "if thou dar'st gold heere is thy fee": [0, 65535], "thou dar'st gold heere is thy fee arrest": [0, 65535], "dar'st gold heere is thy fee arrest him": [0, 65535], "gold heere is thy fee arrest him officer": [0, 65535], "heere is thy fee arrest him officer i": [0, 65535], "is thy fee arrest him officer i would": [0, 65535], "thy fee arrest him officer i would not": [0, 65535], "fee arrest him officer i would not spare": [0, 65535], "arrest him officer i would not spare my": [0, 65535], "him officer i would not spare my brother": [0, 65535], "officer i would not spare my brother in": [0, 65535], "i would not spare my brother in this": [0, 65535], "would not spare my brother in this case": [0, 65535], "not spare my brother in this case if": [0, 65535], "spare my brother in this case if he": [0, 65535], "my brother in this case if he should": [0, 65535], "brother in this case if he should scorne": [0, 65535], "in this case if he should scorne me": [0, 65535], "this case if he should scorne me so": [0, 65535], "case if he should scorne me so apparantly": [0, 65535], "if he should scorne me so apparantly offic": [0, 65535], "he should scorne me so apparantly offic i": [0, 65535], "should scorne me so apparantly offic i do": [0, 65535], "scorne me so apparantly offic i do arrest": [0, 65535], "me so apparantly offic i do arrest you": [0, 65535], "so apparantly offic i do arrest you sir": [0, 65535], "apparantly offic i do arrest you sir you": [0, 65535], "offic i do arrest you sir you heare": [0, 65535], "i do arrest you sir you heare the": [0, 65535], "do arrest you sir you heare the suite": [0, 65535], "arrest you sir you heare the suite ant": [0, 65535], "you sir you heare the suite ant i": [0, 65535], "sir you heare the suite ant i do": [0, 65535], "you heare the suite ant i do obey": [0, 65535], "heare the suite ant i do obey thee": [0, 65535], "the suite ant i do obey thee till": [0, 65535], "suite ant i do obey thee till i": [0, 65535], "ant i do obey thee till i giue": [0, 65535], "i do obey thee till i giue thee": [0, 65535], "do obey thee till i giue thee baile": [0, 65535], "obey thee till i giue thee baile but": [0, 65535], "thee till i giue thee baile but sirrah": [0, 65535], "till i giue thee baile but sirrah you": [0, 65535], "i giue thee baile but sirrah you shall": [0, 65535], "giue thee baile but sirrah you shall buy": [0, 65535], "thee baile but sirrah you shall buy this": [0, 65535], "baile but sirrah you shall buy this sport": [0, 65535], "but sirrah you shall buy this sport as": [0, 65535], "sirrah you shall buy this sport as deere": [0, 65535], "you shall buy this sport as deere as": [0, 65535], "shall buy this sport as deere as all": [0, 65535], "buy this sport as deere as all the": [0, 65535], "this sport as deere as all the mettall": [0, 65535], "sport as deere as all the mettall in": [0, 65535], "as deere as all the mettall in your": [0, 65535], "deere as all the mettall in your shop": [0, 65535], "as all the mettall in your shop will": [0, 65535], "all the mettall in your shop will answer": [0, 65535], "the mettall in your shop will answer gold": [0, 65535], "mettall in your shop will answer gold sir": [0, 65535], "in your shop will answer gold sir sir": [0, 65535], "your shop will answer gold sir sir i": [0, 65535], "shop will answer gold sir sir i shall": [0, 65535], "will answer gold sir sir i shall haue": [0, 65535], "answer gold sir sir i shall haue law": [0, 65535], "gold sir sir i shall haue law in": [0, 65535], "sir sir i shall haue law in ephesus": [0, 65535], "sir i shall haue law in ephesus to": [0, 65535], "i shall haue law in ephesus to your": [0, 65535], "shall haue law in ephesus to your notorious": [0, 65535], "haue law in ephesus to your notorious shame": [0, 65535], "law in ephesus to your notorious shame i": [0, 65535], "in ephesus to your notorious shame i doubt": [0, 65535], "ephesus to your notorious shame i doubt it": [0, 65535], "to your notorious shame i doubt it not": [0, 65535], "your notorious shame i doubt it not enter": [0, 65535], "notorious shame i doubt it not enter dromio": [0, 65535], "shame i doubt it not enter dromio sira": [0, 65535], "i doubt it not enter dromio sira from": [0, 65535], "doubt it not enter dromio sira from the": [0, 65535], "it not enter dromio sira from the bay": [0, 65535], "not enter dromio sira from the bay dro": [0, 65535], "enter dromio sira from the bay dro master": [0, 65535], "dromio sira from the bay dro master there's": [0, 65535], "sira from the bay dro master there's a": [0, 65535], "from the bay dro master there's a barke": [0, 65535], "the bay dro master there's a barke of": [0, 65535], "bay dro master there's a barke of epidamium": [0, 65535], "dro master there's a barke of epidamium that": [0, 65535], "master there's a barke of epidamium that staies": [0, 65535], "there's a barke of epidamium that staies but": [0, 65535], "a barke of epidamium that staies but till": [0, 65535], "barke of epidamium that staies but till her": [0, 65535], "of epidamium that staies but till her owner": [0, 65535], "epidamium that staies but till her owner comes": [0, 65535], "that staies but till her owner comes aboord": [0, 65535], "staies but till her owner comes aboord and": [0, 65535], "but till her owner comes aboord and then": [0, 65535], "till her owner comes aboord and then sir": [0, 65535], "her owner comes aboord and then sir she": [0, 65535], "owner comes aboord and then sir she beares": [0, 65535], "comes aboord and then sir she beares away": [0, 65535], "aboord and then sir she beares away our": [0, 65535], "and then sir she beares away our fraughtage": [0, 65535], "then sir she beares away our fraughtage sir": [0, 65535], "sir she beares away our fraughtage sir i": [0, 65535], "she beares away our fraughtage sir i haue": [0, 65535], "beares away our fraughtage sir i haue conuei'd": [0, 65535], "away our fraughtage sir i haue conuei'd aboord": [0, 65535], "our fraughtage sir i haue conuei'd aboord and": [0, 65535], "fraughtage sir i haue conuei'd aboord and i": [0, 65535], "sir i haue conuei'd aboord and i haue": [0, 65535], "i haue conuei'd aboord and i haue bought": [0, 65535], "haue conuei'd aboord and i haue bought the": [0, 65535], "conuei'd aboord and i haue bought the oyle": [0, 65535], "aboord and i haue bought the oyle the": [0, 65535], "and i haue bought the oyle the balsamum": [0, 65535], "i haue bought the oyle the balsamum and": [0, 65535], "haue bought the oyle the balsamum and aqua": [0, 65535], "bought the oyle the balsamum and aqua vit\u00e6": [0, 65535], "the oyle the balsamum and aqua vit\u00e6 the": [0, 65535], "oyle the balsamum and aqua vit\u00e6 the ship": [0, 65535], "the balsamum and aqua vit\u00e6 the ship is": [0, 65535], "balsamum and aqua vit\u00e6 the ship is in": [0, 65535], "and aqua vit\u00e6 the ship is in her": [0, 65535], "aqua vit\u00e6 the ship is in her trim": [0, 65535], "vit\u00e6 the ship is in her trim the": [0, 65535], "the ship is in her trim the merrie": [0, 65535], "ship is in her trim the merrie winde": [0, 65535], "is in her trim the merrie winde blowes": [0, 65535], "in her trim the merrie winde blowes faire": [0, 65535], "her trim the merrie winde blowes faire from": [0, 65535], "trim the merrie winde blowes faire from land": [0, 65535], "the merrie winde blowes faire from land they": [0, 65535], "merrie winde blowes faire from land they stay": [0, 65535], "winde blowes faire from land they stay for": [0, 65535], "blowes faire from land they stay for nought": [0, 65535], "faire from land they stay for nought at": [0, 65535], "from land they stay for nought at all": [0, 65535], "land they stay for nought at all but": [0, 65535], "they stay for nought at all but for": [0, 65535], "stay for nought at all but for their": [0, 65535], "for nought at all but for their owner": [0, 65535], "nought at all but for their owner master": [0, 65535], "at all but for their owner master and": [0, 65535], "all but for their owner master and your": [0, 65535], "but for their owner master and your selfe": [0, 65535], "for their owner master and your selfe an": [0, 65535], "their owner master and your selfe an how": [0, 65535], "owner master and your selfe an how now": [0, 65535], "master and your selfe an how now a": [0, 65535], "and your selfe an how now a madman": [0, 65535], "your selfe an how now a madman why": [0, 65535], "selfe an how now a madman why thou": [0, 65535], "an how now a madman why thou peeuish": [0, 65535], "how now a madman why thou peeuish sheep": [0, 65535], "now a madman why thou peeuish sheep what": [0, 65535], "a madman why thou peeuish sheep what ship": [0, 65535], "madman why thou peeuish sheep what ship of": [0, 65535], "why thou peeuish sheep what ship of epidamium": [0, 65535], "thou peeuish sheep what ship of epidamium staies": [0, 65535], "peeuish sheep what ship of epidamium staies for": [0, 65535], "sheep what ship of epidamium staies for me": [0, 65535], "what ship of epidamium staies for me s": [0, 65535], "ship of epidamium staies for me s dro": [0, 65535], "of epidamium staies for me s dro a": [0, 65535], "epidamium staies for me s dro a ship": [0, 65535], "staies for me s dro a ship you": [0, 65535], "for me s dro a ship you sent": [0, 65535], "me s dro a ship you sent me": [0, 65535], "s dro a ship you sent me too": [0, 65535], "dro a ship you sent me too to": [0, 65535], "a ship you sent me too to hier": [0, 65535], "ship you sent me too to hier waftage": [0, 65535], "you sent me too to hier waftage ant": [0, 65535], "sent me too to hier waftage ant thou": [0, 65535], "me too to hier waftage ant thou drunken": [0, 65535], "too to hier waftage ant thou drunken slaue": [0, 65535], "to hier waftage ant thou drunken slaue i": [0, 65535], "hier waftage ant thou drunken slaue i sent": [0, 65535], "waftage ant thou drunken slaue i sent thee": [0, 65535], "ant thou drunken slaue i sent thee for": [0, 65535], "thou drunken slaue i sent thee for a": [0, 65535], "drunken slaue i sent thee for a rope": [0, 65535], "slaue i sent thee for a rope and": [0, 65535], "i sent thee for a rope and told": [0, 65535], "sent thee for a rope and told thee": [0, 65535], "thee for a rope and told thee to": [0, 65535], "for a rope and told thee to what": [0, 65535], "a rope and told thee to what purpose": [0, 65535], "rope and told thee to what purpose and": [0, 65535], "and told thee to what purpose and what": [0, 65535], "told thee to what purpose and what end": [0, 65535], "thee to what purpose and what end s": [0, 65535], "to what purpose and what end s dro": [0, 65535], "what purpose and what end s dro you": [0, 65535], "purpose and what end s dro you sent": [0, 65535], "and what end s dro you sent me": [0, 65535], "what end s dro you sent me for": [0, 65535], "end s dro you sent me for a": [0, 65535], "s dro you sent me for a ropes": [0, 65535], "dro you sent me for a ropes end": [0, 65535], "you sent me for a ropes end as": [0, 65535], "sent me for a ropes end as soone": [0, 65535], "me for a ropes end as soone you": [0, 65535], "for a ropes end as soone you sent": [0, 65535], "a ropes end as soone you sent me": [0, 65535], "ropes end as soone you sent me to": [0, 65535], "end as soone you sent me to the": [0, 65535], "as soone you sent me to the bay": [0, 65535], "soone you sent me to the bay sir": [0, 65535], "you sent me to the bay sir for": [0, 65535], "sent me to the bay sir for a": [0, 65535], "me to the bay sir for a barke": [0, 65535], "to the bay sir for a barke ant": [0, 65535], "the bay sir for a barke ant i": [0, 65535], "bay sir for a barke ant i will": [0, 65535], "sir for a barke ant i will debate": [0, 65535], "for a barke ant i will debate this": [0, 65535], "a barke ant i will debate this matter": [0, 65535], "barke ant i will debate this matter at": [0, 65535], "ant i will debate this matter at more": [0, 65535], "i will debate this matter at more leisure": [0, 65535], "will debate this matter at more leisure and": [0, 65535], "debate this matter at more leisure and teach": [0, 65535], "this matter at more leisure and teach your": [0, 65535], "matter at more leisure and teach your eares": [0, 65535], "at more leisure and teach your eares to": [0, 65535], "more leisure and teach your eares to list": [0, 65535], "leisure and teach your eares to list me": [0, 65535], "and teach your eares to list me with": [0, 65535], "teach your eares to list me with more": [0, 65535], "your eares to list me with more heede": [0, 65535], "eares to list me with more heede to": [0, 65535], "to list me with more heede to adriana": [0, 65535], "list me with more heede to adriana villaine": [0, 65535], "me with more heede to adriana villaine hie": [0, 65535], "with more heede to adriana villaine hie thee": [0, 65535], "more heede to adriana villaine hie thee straight": [0, 65535], "heede to adriana villaine hie thee straight giue": [0, 65535], "to adriana villaine hie thee straight giue her": [0, 65535], "adriana villaine hie thee straight giue her this": [0, 65535], "villaine hie thee straight giue her this key": [0, 65535], "hie thee straight giue her this key and": [0, 65535], "thee straight giue her this key and tell": [0, 65535], "straight giue her this key and tell her": [0, 65535], "giue her this key and tell her in": [0, 65535], "her this key and tell her in the": [0, 65535], "this key and tell her in the deske": [0, 65535], "key and tell her in the deske that's": [0, 65535], "and tell her in the deske that's couer'd": [0, 65535], "tell her in the deske that's couer'd o're": [0, 65535], "her in the deske that's couer'd o're with": [0, 65535], "in the deske that's couer'd o're with turkish": [0, 65535], "the deske that's couer'd o're with turkish tapistrie": [0, 65535], "deske that's couer'd o're with turkish tapistrie there": [0, 65535], "that's couer'd o're with turkish tapistrie there is": [0, 65535], "couer'd o're with turkish tapistrie there is a": [0, 65535], "o're with turkish tapistrie there is a purse": [0, 65535], "with turkish tapistrie there is a purse of": [0, 65535], "turkish tapistrie there is a purse of duckets": [0, 65535], "tapistrie there is a purse of duckets let": [0, 65535], "there is a purse of duckets let her": [0, 65535], "is a purse of duckets let her send": [0, 65535], "a purse of duckets let her send it": [0, 65535], "purse of duckets let her send it tell": [0, 65535], "of duckets let her send it tell her": [0, 65535], "duckets let her send it tell her i": [0, 65535], "let her send it tell her i am": [0, 65535], "her send it tell her i am arrested": [0, 65535], "send it tell her i am arrested in": [0, 65535], "it tell her i am arrested in the": [0, 65535], "tell her i am arrested in the streete": [0, 65535], "her i am arrested in the streete and": [0, 65535], "i am arrested in the streete and that": [0, 65535], "am arrested in the streete and that shall": [0, 65535], "arrested in the streete and that shall baile": [0, 65535], "in the streete and that shall baile me": [0, 65535], "the streete and that shall baile me hie": [0, 65535], "streete and that shall baile me hie thee": [0, 65535], "and that shall baile me hie thee slaue": [0, 65535], "that shall baile me hie thee slaue be": [0, 65535], "shall baile me hie thee slaue be gone": [0, 65535], "baile me hie thee slaue be gone on": [0, 65535], "me hie thee slaue be gone on officer": [0, 65535], "hie thee slaue be gone on officer to": [0, 65535], "thee slaue be gone on officer to prison": [0, 65535], "slaue be gone on officer to prison till": [0, 65535], "be gone on officer to prison till it": [0, 65535], "gone on officer to prison till it come": [0, 65535], "on officer to prison till it come exeunt": [0, 65535], "officer to prison till it come exeunt s": [0, 65535], "to prison till it come exeunt s dromio": [0, 65535], "prison till it come exeunt s dromio to": [0, 65535], "till it come exeunt s dromio to adriana": [0, 65535], "it come exeunt s dromio to adriana that": [0, 65535], "come exeunt s dromio to adriana that is": [0, 65535], "exeunt s dromio to adriana that is where": [0, 65535], "s dromio to adriana that is where we": [0, 65535], "dromio to adriana that is where we din'd": [0, 65535], "to adriana that is where we din'd where": [0, 65535], "adriana that is where we din'd where dowsabell": [0, 65535], "that is where we din'd where dowsabell did": [0, 65535], "is where we din'd where dowsabell did claime": [0, 65535], "where we din'd where dowsabell did claime me": [0, 65535], "we din'd where dowsabell did claime me for": [0, 65535], "din'd where dowsabell did claime me for her": [0, 65535], "where dowsabell did claime me for her husband": [0, 65535], "dowsabell did claime me for her husband she": [0, 65535], "did claime me for her husband she is": [0, 65535], "claime me for her husband she is too": [0, 65535], "me for her husband she is too bigge": [0, 65535], "for her husband she is too bigge i": [0, 65535], "her husband she is too bigge i hope": [0, 65535], "husband she is too bigge i hope for": [0, 65535], "she is too bigge i hope for me": [0, 65535], "is too bigge i hope for me to": [0, 65535], "too bigge i hope for me to compasse": [0, 65535], "bigge i hope for me to compasse thither": [0, 65535], "i hope for me to compasse thither i": [0, 65535], "hope for me to compasse thither i must": [0, 65535], "for me to compasse thither i must although": [0, 65535], "me to compasse thither i must although against": [0, 65535], "to compasse thither i must although against my": [0, 65535], "compasse thither i must although against my will": [0, 65535], "thither i must although against my will for": [0, 65535], "i must although against my will for seruants": [0, 65535], "must although against my will for seruants must": [0, 65535], "although against my will for seruants must their": [0, 65535], "against my will for seruants must their masters": [0, 65535], "my will for seruants must their masters mindes": [0, 65535], "will for seruants must their masters mindes fulfill": [0, 65535], "for seruants must their masters mindes fulfill exit": [0, 65535], "seruants must their masters mindes fulfill exit enter": [0, 65535], "must their masters mindes fulfill exit enter adriana": [0, 65535], "their masters mindes fulfill exit enter adriana and": [0, 65535], "masters mindes fulfill exit enter adriana and luciana": [0, 65535], "mindes fulfill exit enter adriana and luciana adr": [0, 65535], "fulfill exit enter adriana and luciana adr ah": [0, 65535], "exit enter adriana and luciana adr ah luciana": [0, 65535], "enter adriana and luciana adr ah luciana did": [0, 65535], "adriana and luciana adr ah luciana did he": [0, 65535], "and luciana adr ah luciana did he tempt": [0, 65535], "luciana adr ah luciana did he tempt thee": [0, 65535], "adr ah luciana did he tempt thee so": [0, 65535], "ah luciana did he tempt thee so might'st": [0, 65535], "luciana did he tempt thee so might'st thou": [0, 65535], "did he tempt thee so might'st thou perceiue": [0, 65535], "he tempt thee so might'st thou perceiue austeerely": [0, 65535], "tempt thee so might'st thou perceiue austeerely in": [0, 65535], "thee so might'st thou perceiue austeerely in his": [0, 65535], "so might'st thou perceiue austeerely in his eie": [0, 65535], "might'st thou perceiue austeerely in his eie that": [0, 65535], "thou perceiue austeerely in his eie that he": [0, 65535], "perceiue austeerely in his eie that he did": [0, 65535], "austeerely in his eie that he did plead": [0, 65535], "in his eie that he did plead in": [0, 65535], "his eie that he did plead in earnest": [0, 65535], "eie that he did plead in earnest yea": [0, 65535], "that he did plead in earnest yea or": [0, 65535], "he did plead in earnest yea or no": [0, 65535], "did plead in earnest yea or no look'd": [0, 65535], "plead in earnest yea or no look'd he": [0, 65535], "in earnest yea or no look'd he or": [0, 65535], "earnest yea or no look'd he or red": [0, 65535], "yea or no look'd he or red or": [0, 65535], "or no look'd he or red or pale": [0, 65535], "no look'd he or red or pale or": [0, 65535], "look'd he or red or pale or sad": [0, 65535], "he or red or pale or sad or": [0, 65535], "or red or pale or sad or merrily": [0, 65535], "red or pale or sad or merrily what": [0, 65535], "or pale or sad or merrily what obseruation": [0, 65535], "pale or sad or merrily what obseruation mad'st": [0, 65535], "or sad or merrily what obseruation mad'st thou": [0, 65535], "sad or merrily what obseruation mad'st thou in": [0, 65535], "or merrily what obseruation mad'st thou in this": [0, 65535], "merrily what obseruation mad'st thou in this case": [0, 65535], "what obseruation mad'st thou in this case oh": [0, 65535], "obseruation mad'st thou in this case oh his": [0, 65535], "mad'st thou in this case oh his hearts": [0, 65535], "thou in this case oh his hearts meteors": [0, 65535], "in this case oh his hearts meteors tilting": [0, 65535], "this case oh his hearts meteors tilting in": [0, 65535], "case oh his hearts meteors tilting in his": [0, 65535], "oh his hearts meteors tilting in his face": [0, 65535], "his hearts meteors tilting in his face luc": [0, 65535], "hearts meteors tilting in his face luc first": [0, 65535], "meteors tilting in his face luc first he": [0, 65535], "tilting in his face luc first he deni'de": [0, 65535], "in his face luc first he deni'de you": [0, 65535], "his face luc first he deni'de you had": [0, 65535], "face luc first he deni'de you had in": [0, 65535], "luc first he deni'de you had in him": [0, 65535], "first he deni'de you had in him no": [0, 65535], "he deni'de you had in him no right": [0, 65535], "deni'de you had in him no right adr": [0, 65535], "you had in him no right adr he": [0, 65535], "had in him no right adr he meant": [0, 65535], "in him no right adr he meant he": [0, 65535], "him no right adr he meant he did": [0, 65535], "no right adr he meant he did me": [0, 65535], "right adr he meant he did me none": [0, 65535], "adr he meant he did me none the": [0, 65535], "he meant he did me none the more": [0, 65535], "meant he did me none the more my": [0, 65535], "he did me none the more my spight": [0, 65535], "did me none the more my spight luc": [0, 65535], "me none the more my spight luc then": [0, 65535], "none the more my spight luc then swore": [0, 65535], "the more my spight luc then swore he": [0, 65535], "more my spight luc then swore he that": [0, 65535], "my spight luc then swore he that he": [0, 65535], "spight luc then swore he that he was": [0, 65535], "luc then swore he that he was a": [0, 65535], "then swore he that he was a stranger": [0, 65535], "swore he that he was a stranger heere": [0, 65535], "he that he was a stranger heere adr": [0, 65535], "that he was a stranger heere adr and": [0, 65535], "he was a stranger heere adr and true": [0, 65535], "was a stranger heere adr and true he": [0, 65535], "a stranger heere adr and true he swore": [0, 65535], "stranger heere adr and true he swore though": [0, 65535], "heere adr and true he swore though yet": [0, 65535], "adr and true he swore though yet forsworne": [0, 65535], "and true he swore though yet forsworne hee": [0, 65535], "true he swore though yet forsworne hee were": [0, 65535], "he swore though yet forsworne hee were luc": [0, 65535], "swore though yet forsworne hee were luc then": [0, 65535], "though yet forsworne hee were luc then pleaded": [0, 65535], "yet forsworne hee were luc then pleaded i": [0, 65535], "forsworne hee were luc then pleaded i for": [0, 65535], "hee were luc then pleaded i for you": [0, 65535], "were luc then pleaded i for you adr": [0, 65535], "luc then pleaded i for you adr and": [0, 65535], "then pleaded i for you adr and what": [0, 65535], "pleaded i for you adr and what said": [0, 65535], "i for you adr and what said he": [0, 65535], "for you adr and what said he luc": [0, 65535], "you adr and what said he luc that": [0, 65535], "adr and what said he luc that loue": [0, 65535], "and what said he luc that loue i": [0, 65535], "what said he luc that loue i begg'd": [0, 65535], "said he luc that loue i begg'd for": [0, 65535], "he luc that loue i begg'd for you": [0, 65535], "luc that loue i begg'd for you he": [0, 65535], "that loue i begg'd for you he begg'd": [0, 65535], "loue i begg'd for you he begg'd of": [0, 65535], "i begg'd for you he begg'd of me": [0, 65535], "begg'd for you he begg'd of me adr": [0, 65535], "for you he begg'd of me adr with": [0, 65535], "you he begg'd of me adr with what": [0, 65535], "he begg'd of me adr with what perswasion": [0, 65535], "begg'd of me adr with what perswasion did": [0, 65535], "of me adr with what perswasion did he": [0, 65535], "me adr with what perswasion did he tempt": [0, 65535], "adr with what perswasion did he tempt thy": [0, 65535], "with what perswasion did he tempt thy loue": [0, 65535], "what perswasion did he tempt thy loue luc": [0, 65535], "perswasion did he tempt thy loue luc with": [0, 65535], "did he tempt thy loue luc with words": [0, 65535], "he tempt thy loue luc with words that": [0, 65535], "tempt thy loue luc with words that in": [0, 65535], "thy loue luc with words that in an": [0, 65535], "loue luc with words that in an honest": [0, 65535], "luc with words that in an honest suit": [0, 65535], "with words that in an honest suit might": [0, 65535], "words that in an honest suit might moue": [0, 65535], "that in an honest suit might moue first": [0, 65535], "in an honest suit might moue first he": [0, 65535], "an honest suit might moue first he did": [0, 65535], "honest suit might moue first he did praise": [0, 65535], "suit might moue first he did praise my": [0, 65535], "might moue first he did praise my beautie": [0, 65535], "moue first he did praise my beautie then": [0, 65535], "first he did praise my beautie then my": [0, 65535], "he did praise my beautie then my speech": [0, 65535], "did praise my beautie then my speech adr": [0, 65535], "praise my beautie then my speech adr did'st": [0, 65535], "my beautie then my speech adr did'st speake": [0, 65535], "beautie then my speech adr did'st speake him": [0, 65535], "then my speech adr did'st speake him faire": [0, 65535], "my speech adr did'st speake him faire luc": [0, 65535], "speech adr did'st speake him faire luc haue": [0, 65535], "adr did'st speake him faire luc haue patience": [0, 65535], "did'st speake him faire luc haue patience i": [0, 65535], "speake him faire luc haue patience i beseech": [0, 65535], "him faire luc haue patience i beseech adr": [0, 65535], "faire luc haue patience i beseech adr i": [0, 65535], "luc haue patience i beseech adr i cannot": [0, 65535], "haue patience i beseech adr i cannot nor": [0, 65535], "patience i beseech adr i cannot nor i": [0, 65535], "i beseech adr i cannot nor i will": [0, 65535], "beseech adr i cannot nor i will not": [0, 65535], "adr i cannot nor i will not hold": [0, 65535], "i cannot nor i will not hold me": [0, 65535], "cannot nor i will not hold me still": [0, 65535], "nor i will not hold me still my": [0, 65535], "i will not hold me still my tongue": [0, 65535], "will not hold me still my tongue though": [0, 65535], "not hold me still my tongue though not": [0, 65535], "hold me still my tongue though not my": [0, 65535], "me still my tongue though not my heart": [0, 65535], "still my tongue though not my heart shall": [0, 65535], "my tongue though not my heart shall haue": [0, 65535], "tongue though not my heart shall haue his": [0, 65535], "though not my heart shall haue his will": [0, 65535], "not my heart shall haue his will he": [0, 65535], "my heart shall haue his will he is": [0, 65535], "heart shall haue his will he is deformed": [0, 65535], "shall haue his will he is deformed crooked": [0, 65535], "haue his will he is deformed crooked old": [0, 65535], "his will he is deformed crooked old and": [0, 65535], "will he is deformed crooked old and sere": [0, 65535], "he is deformed crooked old and sere ill": [0, 65535], "is deformed crooked old and sere ill fac'd": [0, 65535], "deformed crooked old and sere ill fac'd worse": [0, 65535], "crooked old and sere ill fac'd worse bodied": [0, 65535], "old and sere ill fac'd worse bodied shapelesse": [0, 65535], "and sere ill fac'd worse bodied shapelesse euery": [0, 65535], "sere ill fac'd worse bodied shapelesse euery where": [0, 65535], "ill fac'd worse bodied shapelesse euery where vicious": [0, 65535], "fac'd worse bodied shapelesse euery where vicious vngentle": [0, 65535], "worse bodied shapelesse euery where vicious vngentle foolish": [0, 65535], "bodied shapelesse euery where vicious vngentle foolish blunt": [0, 65535], "shapelesse euery where vicious vngentle foolish blunt vnkinde": [0, 65535], "euery where vicious vngentle foolish blunt vnkinde stigmaticall": [0, 65535], "where vicious vngentle foolish blunt vnkinde stigmaticall in": [0, 65535], "vicious vngentle foolish blunt vnkinde stigmaticall in making": [0, 65535], "vngentle foolish blunt vnkinde stigmaticall in making worse": [0, 65535], "foolish blunt vnkinde stigmaticall in making worse in": [0, 65535], "blunt vnkinde stigmaticall in making worse in minde": [0, 65535], "vnkinde stigmaticall in making worse in minde luc": [0, 65535], "stigmaticall in making worse in minde luc who": [0, 65535], "in making worse in minde luc who would": [0, 65535], "making worse in minde luc who would be": [0, 65535], "worse in minde luc who would be iealous": [0, 65535], "in minde luc who would be iealous then": [0, 65535], "minde luc who would be iealous then of": [0, 65535], "luc who would be iealous then of such": [0, 65535], "who would be iealous then of such a": [0, 65535], "would be iealous then of such a one": [0, 65535], "be iealous then of such a one no": [0, 65535], "iealous then of such a one no euill": [0, 65535], "then of such a one no euill lost": [0, 65535], "of such a one no euill lost is": [0, 65535], "such a one no euill lost is wail'd": [0, 65535], "a one no euill lost is wail'd when": [0, 65535], "one no euill lost is wail'd when it": [0, 65535], "no euill lost is wail'd when it is": [0, 65535], "euill lost is wail'd when it is gone": [0, 65535], "lost is wail'd when it is gone adr": [0, 65535], "is wail'd when it is gone adr ah": [0, 65535], "wail'd when it is gone adr ah but": [0, 65535], "when it is gone adr ah but i": [0, 65535], "it is gone adr ah but i thinke": [0, 65535], "is gone adr ah but i thinke him": [0, 65535], "gone adr ah but i thinke him better": [0, 65535], "adr ah but i thinke him better then": [0, 65535], "ah but i thinke him better then i": [0, 65535], "but i thinke him better then i say": [0, 65535], "i thinke him better then i say and": [0, 65535], "thinke him better then i say and yet": [0, 65535], "him better then i say and yet would": [0, 65535], "better then i say and yet would herein": [0, 65535], "then i say and yet would herein others": [0, 65535], "i say and yet would herein others eies": [0, 65535], "say and yet would herein others eies were": [0, 65535], "and yet would herein others eies were worse": [0, 65535], "yet would herein others eies were worse farre": [0, 65535], "would herein others eies were worse farre from": [0, 65535], "herein others eies were worse farre from her": [0, 65535], "others eies were worse farre from her nest": [0, 65535], "eies were worse farre from her nest the": [0, 65535], "were worse farre from her nest the lapwing": [0, 65535], "worse farre from her nest the lapwing cries": [0, 65535], "farre from her nest the lapwing cries away": [0, 65535], "from her nest the lapwing cries away my": [0, 65535], "her nest the lapwing cries away my heart": [0, 65535], "nest the lapwing cries away my heart praies": [0, 65535], "the lapwing cries away my heart praies for": [0, 65535], "lapwing cries away my heart praies for him": [0, 65535], "cries away my heart praies for him though": [0, 65535], "away my heart praies for him though my": [0, 65535], "my heart praies for him though my tongue": [0, 65535], "heart praies for him though my tongue doe": [0, 65535], "praies for him though my tongue doe curse": [0, 65535], "for him though my tongue doe curse enter": [0, 65535], "him though my tongue doe curse enter s": [0, 65535], "though my tongue doe curse enter s dromio": [0, 65535], "my tongue doe curse enter s dromio dro": [0, 65535], "tongue doe curse enter s dromio dro here": [0, 65535], "doe curse enter s dromio dro here goe": [0, 65535], "curse enter s dromio dro here goe the": [0, 65535], "enter s dromio dro here goe the deske": [0, 65535], "s dromio dro here goe the deske the": [0, 65535], "dromio dro here goe the deske the purse": [0, 65535], "dro here goe the deske the purse sweet": [0, 65535], "here goe the deske the purse sweet now": [0, 65535], "goe the deske the purse sweet now make": [0, 65535], "the deske the purse sweet now make haste": [0, 65535], "deske the purse sweet now make haste luc": [0, 65535], "the purse sweet now make haste luc how": [0, 65535], "purse sweet now make haste luc how hast": [0, 65535], "sweet now make haste luc how hast thou": [0, 65535], "now make haste luc how hast thou lost": [0, 65535], "make haste luc how hast thou lost thy": [0, 65535], "haste luc how hast thou lost thy breath": [0, 65535], "luc how hast thou lost thy breath s": [0, 65535], "how hast thou lost thy breath s dro": [0, 65535], "hast thou lost thy breath s dro by": [0, 65535], "thou lost thy breath s dro by running": [0, 65535], "lost thy breath s dro by running fast": [0, 65535], "thy breath s dro by running fast adr": [0, 65535], "breath s dro by running fast adr where": [0, 65535], "s dro by running fast adr where is": [0, 65535], "dro by running fast adr where is thy": [0, 65535], "by running fast adr where is thy master": [0, 65535], "running fast adr where is thy master dromio": [0, 65535], "fast adr where is thy master dromio is": [0, 65535], "adr where is thy master dromio is he": [0, 65535], "where is thy master dromio is he well": [0, 65535], "is thy master dromio is he well s": [0, 65535], "thy master dromio is he well s dro": [0, 65535], "master dromio is he well s dro no": [0, 65535], "dromio is he well s dro no he's": [0, 65535], "is he well s dro no he's in": [0, 65535], "he well s dro no he's in tartar": [0, 65535], "well s dro no he's in tartar limbo": [0, 65535], "s dro no he's in tartar limbo worse": [0, 65535], "dro no he's in tartar limbo worse then": [0, 65535], "no he's in tartar limbo worse then hell": [0, 65535], "he's in tartar limbo worse then hell a": [0, 65535], "in tartar limbo worse then hell a diuell": [0, 65535], "tartar limbo worse then hell a diuell in": [0, 65535], "limbo worse then hell a diuell in an": [0, 65535], "worse then hell a diuell in an euerlasting": [0, 65535], "then hell a diuell in an euerlasting garment": [0, 65535], "hell a diuell in an euerlasting garment hath": [0, 65535], "a diuell in an euerlasting garment hath him": [0, 65535], "diuell in an euerlasting garment hath him on": [0, 65535], "in an euerlasting garment hath him on whose": [0, 65535], "an euerlasting garment hath him on whose hard": [0, 65535], "euerlasting garment hath him on whose hard heart": [0, 65535], "garment hath him on whose hard heart is": [0, 65535], "hath him on whose hard heart is button'd": [0, 65535], "him on whose hard heart is button'd vp": [0, 65535], "on whose hard heart is button'd vp with": [0, 65535], "whose hard heart is button'd vp with steele": [0, 65535], "hard heart is button'd vp with steele a": [0, 65535], "heart is button'd vp with steele a feind": [0, 65535], "is button'd vp with steele a feind a": [0, 65535], "button'd vp with steele a feind a fairie": [0, 65535], "vp with steele a feind a fairie pittilesse": [0, 65535], "with steele a feind a fairie pittilesse and": [0, 65535], "steele a feind a fairie pittilesse and ruffe": [0, 65535], "a feind a fairie pittilesse and ruffe a": [0, 65535], "feind a fairie pittilesse and ruffe a wolfe": [0, 65535], "a fairie pittilesse and ruffe a wolfe nay": [0, 65535], "fairie pittilesse and ruffe a wolfe nay worse": [0, 65535], "pittilesse and ruffe a wolfe nay worse a": [0, 65535], "and ruffe a wolfe nay worse a fellow": [0, 65535], "ruffe a wolfe nay worse a fellow all": [0, 65535], "a wolfe nay worse a fellow all in": [0, 65535], "wolfe nay worse a fellow all in buffe": [0, 65535], "nay worse a fellow all in buffe a": [0, 65535], "worse a fellow all in buffe a back": [0, 65535], "a fellow all in buffe a back friend": [0, 65535], "fellow all in buffe a back friend a": [0, 65535], "all in buffe a back friend a shoulder": [0, 65535], "in buffe a back friend a shoulder clapper": [0, 65535], "buffe a back friend a shoulder clapper one": [0, 65535], "a back friend a shoulder clapper one that": [0, 65535], "back friend a shoulder clapper one that countermads": [0, 65535], "friend a shoulder clapper one that countermads the": [0, 65535], "a shoulder clapper one that countermads the passages": [0, 65535], "shoulder clapper one that countermads the passages of": [0, 65535], "clapper one that countermads the passages of allies": [0, 65535], "one that countermads the passages of allies creekes": [0, 65535], "that countermads the passages of allies creekes and": [0, 65535], "countermads the passages of allies creekes and narrow": [0, 65535], "the passages of allies creekes and narrow lands": [0, 65535], "passages of allies creekes and narrow lands a": [0, 65535], "of allies creekes and narrow lands a hound": [0, 65535], "allies creekes and narrow lands a hound that": [0, 65535], "creekes and narrow lands a hound that runs": [0, 65535], "and narrow lands a hound that runs counter": [0, 65535], "narrow lands a hound that runs counter and": [0, 65535], "lands a hound that runs counter and yet": [0, 65535], "a hound that runs counter and yet draws": [0, 65535], "hound that runs counter and yet draws drifoot": [0, 65535], "that runs counter and yet draws drifoot well": [0, 65535], "runs counter and yet draws drifoot well one": [0, 65535], "counter and yet draws drifoot well one that": [0, 65535], "and yet draws drifoot well one that before": [0, 65535], "yet draws drifoot well one that before the": [0, 65535], "draws drifoot well one that before the iudgment": [0, 65535], "drifoot well one that before the iudgment carries": [0, 65535], "well one that before the iudgment carries poore": [0, 65535], "one that before the iudgment carries poore soules": [0, 65535], "that before the iudgment carries poore soules to": [0, 65535], "before the iudgment carries poore soules to hel": [0, 65535], "the iudgment carries poore soules to hel adr": [0, 65535], "iudgment carries poore soules to hel adr why": [0, 65535], "carries poore soules to hel adr why man": [0, 65535], "poore soules to hel adr why man what": [0, 65535], "soules to hel adr why man what is": [0, 65535], "to hel adr why man what is the": [0, 65535], "hel adr why man what is the matter": [0, 65535], "adr why man what is the matter s": [0, 65535], "why man what is the matter s dro": [0, 65535], "man what is the matter s dro i": [0, 65535], "what is the matter s dro i doe": [0, 65535], "is the matter s dro i doe not": [0, 65535], "the matter s dro i doe not know": [0, 65535], "matter s dro i doe not know the": [0, 65535], "s dro i doe not know the matter": [0, 65535], "dro i doe not know the matter hee": [0, 65535], "i doe not know the matter hee is": [0, 65535], "doe not know the matter hee is rested": [0, 65535], "not know the matter hee is rested on": [0, 65535], "know the matter hee is rested on the": [0, 65535], "the matter hee is rested on the case": [0, 65535], "matter hee is rested on the case adr": [0, 65535], "hee is rested on the case adr what": [0, 65535], "is rested on the case adr what is": [0, 65535], "rested on the case adr what is he": [0, 65535], "on the case adr what is he arrested": [0, 65535], "the case adr what is he arrested tell": [0, 65535], "case adr what is he arrested tell me": [0, 65535], "adr what is he arrested tell me at": [0, 65535], "what is he arrested tell me at whose": [0, 65535], "is he arrested tell me at whose suite": [0, 65535], "he arrested tell me at whose suite s": [0, 65535], "arrested tell me at whose suite s dro": [0, 65535], "tell me at whose suite s dro i": [0, 65535], "me at whose suite s dro i know": [0, 65535], "at whose suite s dro i know not": [0, 65535], "whose suite s dro i know not at": [0, 65535], "suite s dro i know not at whose": [0, 65535], "s dro i know not at whose suite": [0, 65535], "dro i know not at whose suite he": [0, 65535], "i know not at whose suite he is": [0, 65535], "know not at whose suite he is arested": [0, 65535], "not at whose suite he is arested well": [0, 65535], "at whose suite he is arested well but": [0, 65535], "whose suite he is arested well but is": [0, 65535], "suite he is arested well but is in": [0, 65535], "he is arested well but is in a": [0, 65535], "is arested well but is in a suite": [0, 65535], "arested well but is in a suite of": [0, 65535], "well but is in a suite of buffe": [0, 65535], "but is in a suite of buffe which": [0, 65535], "is in a suite of buffe which rested": [0, 65535], "in a suite of buffe which rested him": [0, 65535], "a suite of buffe which rested him that": [0, 65535], "suite of buffe which rested him that can": [0, 65535], "of buffe which rested him that can i": [0, 65535], "buffe which rested him that can i tell": [0, 65535], "which rested him that can i tell will": [0, 65535], "rested him that can i tell will you": [0, 65535], "him that can i tell will you send": [0, 65535], "that can i tell will you send him": [0, 65535], "can i tell will you send him mistris": [0, 65535], "i tell will you send him mistris redemption": [0, 65535], "tell will you send him mistris redemption the": [0, 65535], "will you send him mistris redemption the monie": [0, 65535], "you send him mistris redemption the monie in": [0, 65535], "send him mistris redemption the monie in his": [0, 65535], "him mistris redemption the monie in his deske": [0, 65535], "mistris redemption the monie in his deske adr": [0, 65535], "redemption the monie in his deske adr go": [0, 65535], "the monie in his deske adr go fetch": [0, 65535], "monie in his deske adr go fetch it": [0, 65535], "in his deske adr go fetch it sister": [0, 65535], "his deske adr go fetch it sister this": [0, 65535], "deske adr go fetch it sister this i": [0, 65535], "adr go fetch it sister this i wonder": [0, 65535], "go fetch it sister this i wonder at": [0, 65535], "fetch it sister this i wonder at exit": [0, 65535], "it sister this i wonder at exit luciana": [0, 65535], "sister this i wonder at exit luciana thus": [0, 65535], "this i wonder at exit luciana thus he": [0, 65535], "i wonder at exit luciana thus he vnknowne": [0, 65535], "wonder at exit luciana thus he vnknowne to": [0, 65535], "at exit luciana thus he vnknowne to me": [0, 65535], "exit luciana thus he vnknowne to me should": [0, 65535], "luciana thus he vnknowne to me should be": [0, 65535], "thus he vnknowne to me should be in": [0, 65535], "he vnknowne to me should be in debt": [0, 65535], "vnknowne to me should be in debt tell": [0, 65535], "to me should be in debt tell me": [0, 65535], "me should be in debt tell me was": [0, 65535], "should be in debt tell me was he": [0, 65535], "be in debt tell me was he arested": [0, 65535], "in debt tell me was he arested on": [0, 65535], "debt tell me was he arested on a": [0, 65535], "tell me was he arested on a band": [0, 65535], "me was he arested on a band s": [0, 65535], "was he arested on a band s dro": [0, 65535], "he arested on a band s dro not": [0, 65535], "arested on a band s dro not on": [0, 65535], "on a band s dro not on a": [0, 65535], "a band s dro not on a band": [0, 65535], "band s dro not on a band but": [0, 65535], "s dro not on a band but on": [0, 65535], "dro not on a band but on a": [0, 65535], "not on a band but on a stronger": [0, 65535], "on a band but on a stronger thing": [0, 65535], "a band but on a stronger thing a": [0, 65535], "band but on a stronger thing a chaine": [0, 65535], "but on a stronger thing a chaine a": [0, 65535], "on a stronger thing a chaine a chaine": [0, 65535], "a stronger thing a chaine a chaine doe": [0, 65535], "stronger thing a chaine a chaine doe you": [0, 65535], "thing a chaine a chaine doe you not": [0, 65535], "a chaine a chaine doe you not here": [0, 65535], "chaine a chaine doe you not here it": [0, 65535], "a chaine doe you not here it ring": [0, 65535], "chaine doe you not here it ring adria": [0, 65535], "doe you not here it ring adria what": [0, 65535], "you not here it ring adria what the": [0, 65535], "not here it ring adria what the chaine": [0, 65535], "here it ring adria what the chaine s": [0, 65535], "it ring adria what the chaine s dro": [0, 65535], "ring adria what the chaine s dro no": [0, 65535], "adria what the chaine s dro no no": [0, 65535], "what the chaine s dro no no the": [0, 65535], "the chaine s dro no no the bell": [0, 65535], "chaine s dro no no the bell 'tis": [0, 65535], "s dro no no the bell 'tis time": [0, 65535], "dro no no the bell 'tis time that": [0, 65535], "no no the bell 'tis time that i": [0, 65535], "no the bell 'tis time that i were": [0, 65535], "the bell 'tis time that i were gone": [0, 65535], "bell 'tis time that i were gone it": [0, 65535], "'tis time that i were gone it was": [0, 65535], "time that i were gone it was two": [0, 65535], "that i were gone it was two ere": [0, 65535], "i were gone it was two ere i": [0, 65535], "were gone it was two ere i left": [0, 65535], "gone it was two ere i left him": [0, 65535], "it was two ere i left him and": [0, 65535], "was two ere i left him and now": [0, 65535], "two ere i left him and now the": [0, 65535], "ere i left him and now the clocke": [0, 65535], "i left him and now the clocke strikes": [0, 65535], "left him and now the clocke strikes one": [0, 65535], "him and now the clocke strikes one adr": [0, 65535], "and now the clocke strikes one adr the": [0, 65535], "now the clocke strikes one adr the houres": [0, 65535], "the clocke strikes one adr the houres come": [0, 65535], "clocke strikes one adr the houres come backe": [0, 65535], "strikes one adr the houres come backe that": [0, 65535], "one adr the houres come backe that did": [0, 65535], "adr the houres come backe that did i": [0, 65535], "the houres come backe that did i neuer": [0, 65535], "houres come backe that did i neuer here": [0, 65535], "come backe that did i neuer here s": [0, 65535], "backe that did i neuer here s dro": [0, 65535], "that did i neuer here s dro oh": [0, 65535], "did i neuer here s dro oh yes": [0, 65535], "i neuer here s dro oh yes if": [0, 65535], "neuer here s dro oh yes if any": [0, 65535], "here s dro oh yes if any houre": [0, 65535], "s dro oh yes if any houre meete": [0, 65535], "dro oh yes if any houre meete a": [0, 65535], "oh yes if any houre meete a serieant": [0, 65535], "yes if any houre meete a serieant a": [0, 65535], "if any houre meete a serieant a turnes": [0, 65535], "any houre meete a serieant a turnes backe": [0, 65535], "houre meete a serieant a turnes backe for": [0, 65535], "meete a serieant a turnes backe for verie": [0, 65535], "a serieant a turnes backe for verie feare": [0, 65535], "serieant a turnes backe for verie feare adri": [0, 65535], "a turnes backe for verie feare adri as": [0, 65535], "turnes backe for verie feare adri as if": [0, 65535], "backe for verie feare adri as if time": [0, 65535], "for verie feare adri as if time were": [0, 65535], "verie feare adri as if time were in": [0, 65535], "feare adri as if time were in debt": [0, 65535], "adri as if time were in debt how": [0, 65535], "as if time were in debt how fondly": [0, 65535], "if time were in debt how fondly do'st": [0, 65535], "time were in debt how fondly do'st thou": [0, 65535], "were in debt how fondly do'st thou reason": [0, 65535], "in debt how fondly do'st thou reason s": [0, 65535], "debt how fondly do'st thou reason s dro": [0, 65535], "how fondly do'st thou reason s dro time": [0, 65535], "fondly do'st thou reason s dro time is": [0, 65535], "do'st thou reason s dro time is a": [0, 65535], "thou reason s dro time is a verie": [0, 65535], "reason s dro time is a verie bankerout": [0, 65535], "s dro time is a verie bankerout and": [0, 65535], "dro time is a verie bankerout and owes": [0, 65535], "time is a verie bankerout and owes more": [0, 65535], "is a verie bankerout and owes more then": [0, 65535], "a verie bankerout and owes more then he's": [0, 65535], "verie bankerout and owes more then he's worth": [0, 65535], "bankerout and owes more then he's worth to": [0, 65535], "and owes more then he's worth to season": [0, 65535], "owes more then he's worth to season nay": [0, 65535], "more then he's worth to season nay he's": [0, 65535], "then he's worth to season nay he's a": [0, 65535], "he's worth to season nay he's a theefe": [0, 65535], "worth to season nay he's a theefe too": [0, 65535], "to season nay he's a theefe too haue": [0, 65535], "season nay he's a theefe too haue you": [0, 65535], "nay he's a theefe too haue you not": [0, 65535], "he's a theefe too haue you not heard": [0, 65535], "a theefe too haue you not heard men": [0, 65535], "theefe too haue you not heard men say": [0, 65535], "too haue you not heard men say that": [0, 65535], "haue you not heard men say that time": [0, 65535], "you not heard men say that time comes": [0, 65535], "not heard men say that time comes stealing": [0, 65535], "heard men say that time comes stealing on": [0, 65535], "men say that time comes stealing on by": [0, 65535], "say that time comes stealing on by night": [0, 65535], "that time comes stealing on by night and": [0, 65535], "time comes stealing on by night and day": [0, 65535], "comes stealing on by night and day if": [0, 65535], "stealing on by night and day if i": [0, 65535], "on by night and day if i be": [0, 65535], "by night and day if i be in": [0, 65535], "night and day if i be in debt": [0, 65535], "and day if i be in debt and": [0, 65535], "day if i be in debt and theft": [0, 65535], "if i be in debt and theft and": [0, 65535], "i be in debt and theft and a": [0, 65535], "be in debt and theft and a serieant": [0, 65535], "in debt and theft and a serieant in": [0, 65535], "debt and theft and a serieant in the": [0, 65535], "and theft and a serieant in the way": [0, 65535], "theft and a serieant in the way hath": [0, 65535], "and a serieant in the way hath he": [0, 65535], "a serieant in the way hath he not": [0, 65535], "serieant in the way hath he not reason": [0, 65535], "in the way hath he not reason to": [0, 65535], "the way hath he not reason to turne": [0, 65535], "way hath he not reason to turne backe": [0, 65535], "hath he not reason to turne backe an": [0, 65535], "he not reason to turne backe an houre": [0, 65535], "not reason to turne backe an houre in": [0, 65535], "reason to turne backe an houre in a": [0, 65535], "to turne backe an houre in a day": [0, 65535], "turne backe an houre in a day enter": [0, 65535], "backe an houre in a day enter luciana": [0, 65535], "an houre in a day enter luciana adr": [0, 65535], "houre in a day enter luciana adr go": [0, 65535], "in a day enter luciana adr go dromio": [0, 65535], "a day enter luciana adr go dromio there's": [0, 65535], "day enter luciana adr go dromio there's the": [0, 65535], "enter luciana adr go dromio there's the monie": [0, 65535], "luciana adr go dromio there's the monie beare": [0, 65535], "adr go dromio there's the monie beare it": [0, 65535], "go dromio there's the monie beare it straight": [0, 65535], "dromio there's the monie beare it straight and": [0, 65535], "there's the monie beare it straight and bring": [0, 65535], "the monie beare it straight and bring thy": [0, 65535], "monie beare it straight and bring thy master": [0, 65535], "beare it straight and bring thy master home": [0, 65535], "it straight and bring thy master home imediately": [0, 65535], "straight and bring thy master home imediately come": [0, 65535], "and bring thy master home imediately come sister": [0, 65535], "bring thy master home imediately come sister i": [0, 65535], "thy master home imediately come sister i am": [0, 65535], "master home imediately come sister i am prest": [0, 65535], "home imediately come sister i am prest downe": [0, 65535], "imediately come sister i am prest downe with": [0, 65535], "come sister i am prest downe with conceit": [0, 65535], "sister i am prest downe with conceit conceit": [0, 65535], "i am prest downe with conceit conceit my": [0, 65535], "am prest downe with conceit conceit my comfort": [0, 65535], "prest downe with conceit conceit my comfort and": [0, 65535], "downe with conceit conceit my comfort and my": [0, 65535], "with conceit conceit my comfort and my iniurie": [0, 65535], "conceit conceit my comfort and my iniurie exit": [0, 65535], "conceit my comfort and my iniurie exit enter": [0, 65535], "my comfort and my iniurie exit enter antipholus": [0, 65535], "comfort and my iniurie exit enter antipholus siracusia": [0, 65535], "and my iniurie exit enter antipholus siracusia there's": [0, 65535], "my iniurie exit enter antipholus siracusia there's not": [0, 65535], "iniurie exit enter antipholus siracusia there's not a": [0, 65535], "exit enter antipholus siracusia there's not a man": [0, 65535], "enter antipholus siracusia there's not a man i": [0, 65535], "antipholus siracusia there's not a man i meete": [0, 65535], "siracusia there's not a man i meete but": [0, 65535], "there's not a man i meete but doth": [0, 65535], "not a man i meete but doth salute": [0, 65535], "a man i meete but doth salute me": [0, 65535], "man i meete but doth salute me as": [0, 65535], "i meete but doth salute me as if": [0, 65535], "meete but doth salute me as if i": [0, 65535], "but doth salute me as if i were": [0, 65535], "doth salute me as if i were their": [0, 65535], "salute me as if i were their well": [0, 65535], "me as if i were their well acquainted": [0, 65535], "as if i were their well acquainted friend": [0, 65535], "if i were their well acquainted friend and": [0, 65535], "i were their well acquainted friend and euerie": [0, 65535], "were their well acquainted friend and euerie one": [0, 65535], "their well acquainted friend and euerie one doth": [0, 65535], "well acquainted friend and euerie one doth call": [0, 65535], "acquainted friend and euerie one doth call me": [0, 65535], "friend and euerie one doth call me by": [0, 65535], "and euerie one doth call me by my": [0, 65535], "euerie one doth call me by my name": [0, 65535], "one doth call me by my name some": [0, 65535], "doth call me by my name some tender": [0, 65535], "call me by my name some tender monie": [0, 65535], "me by my name some tender monie to": [0, 65535], "by my name some tender monie to me": [0, 65535], "my name some tender monie to me some": [0, 65535], "name some tender monie to me some inuite": [0, 65535], "some tender monie to me some inuite me": [0, 65535], "tender monie to me some inuite me some": [0, 65535], "monie to me some inuite me some other": [0, 65535], "to me some inuite me some other giue": [0, 65535], "me some inuite me some other giue me": [0, 65535], "some inuite me some other giue me thankes": [0, 65535], "inuite me some other giue me thankes for": [0, 65535], "me some other giue me thankes for kindnesses": [0, 65535], "some other giue me thankes for kindnesses some": [0, 65535], "other giue me thankes for kindnesses some offer": [0, 65535], "giue me thankes for kindnesses some offer me": [0, 65535], "me thankes for kindnesses some offer me commodities": [0, 65535], "thankes for kindnesses some offer me commodities to": [0, 65535], "for kindnesses some offer me commodities to buy": [0, 65535], "kindnesses some offer me commodities to buy euen": [0, 65535], "some offer me commodities to buy euen now": [0, 65535], "offer me commodities to buy euen now a": [0, 65535], "me commodities to buy euen now a tailor": [0, 65535], "commodities to buy euen now a tailor cal'd": [0, 65535], "to buy euen now a tailor cal'd me": [0, 65535], "buy euen now a tailor cal'd me in": [0, 65535], "euen now a tailor cal'd me in his": [0, 65535], "now a tailor cal'd me in his shop": [0, 65535], "a tailor cal'd me in his shop and": [0, 65535], "tailor cal'd me in his shop and show'd": [0, 65535], "cal'd me in his shop and show'd me": [0, 65535], "me in his shop and show'd me silkes": [0, 65535], "in his shop and show'd me silkes that": [0, 65535], "his shop and show'd me silkes that he": [0, 65535], "shop and show'd me silkes that he had": [0, 65535], "and show'd me silkes that he had bought": [0, 65535], "show'd me silkes that he had bought for": [0, 65535], "me silkes that he had bought for me": [0, 65535], "silkes that he had bought for me and": [0, 65535], "that he had bought for me and therewithall": [0, 65535], "he had bought for me and therewithall tooke": [0, 65535], "had bought for me and therewithall tooke measure": [0, 65535], "bought for me and therewithall tooke measure of": [0, 65535], "for me and therewithall tooke measure of my": [0, 65535], "me and therewithall tooke measure of my body": [0, 65535], "and therewithall tooke measure of my body sure": [0, 65535], "therewithall tooke measure of my body sure these": [0, 65535], "tooke measure of my body sure these are": [0, 65535], "measure of my body sure these are but": [0, 65535], "of my body sure these are but imaginarie": [0, 65535], "my body sure these are but imaginarie wiles": [0, 65535], "body sure these are but imaginarie wiles and": [0, 65535], "sure these are but imaginarie wiles and lapland": [0, 65535], "these are but imaginarie wiles and lapland sorcerers": [0, 65535], "are but imaginarie wiles and lapland sorcerers inhabite": [0, 65535], "but imaginarie wiles and lapland sorcerers inhabite here": [0, 65535], "imaginarie wiles and lapland sorcerers inhabite here enter": [0, 65535], "wiles and lapland sorcerers inhabite here enter dromio": [0, 65535], "and lapland sorcerers inhabite here enter dromio sir": [0, 65535], "lapland sorcerers inhabite here enter dromio sir s": [0, 65535], "sorcerers inhabite here enter dromio sir s dro": [0, 65535], "inhabite here enter dromio sir s dro master": [0, 65535], "here enter dromio sir s dro master here's": [0, 65535], "enter dromio sir s dro master here's the": [0, 65535], "dromio sir s dro master here's the gold": [0, 65535], "sir s dro master here's the gold you": [0, 65535], "s dro master here's the gold you sent": [0, 65535], "dro master here's the gold you sent me": [0, 65535], "master here's the gold you sent me for": [0, 65535], "here's the gold you sent me for what": [0, 65535], "the gold you sent me for what haue": [0, 65535], "gold you sent me for what haue you": [0, 65535], "you sent me for what haue you got": [0, 65535], "sent me for what haue you got the": [0, 65535], "me for what haue you got the picture": [0, 65535], "for what haue you got the picture of": [0, 65535], "what haue you got the picture of old": [0, 65535], "haue you got the picture of old adam": [0, 65535], "you got the picture of old adam new": [0, 65535], "got the picture of old adam new apparel'd": [0, 65535], "the picture of old adam new apparel'd ant": [0, 65535], "picture of old adam new apparel'd ant what": [0, 65535], "of old adam new apparel'd ant what gold": [0, 65535], "old adam new apparel'd ant what gold is": [0, 65535], "adam new apparel'd ant what gold is this": [0, 65535], "new apparel'd ant what gold is this what": [0, 65535], "apparel'd ant what gold is this what adam": [0, 65535], "ant what gold is this what adam do'st": [0, 65535], "what gold is this what adam do'st thou": [0, 65535], "gold is this what adam do'st thou meane": [0, 65535], "is this what adam do'st thou meane s": [0, 65535], "this what adam do'st thou meane s dro": [0, 65535], "what adam do'st thou meane s dro not": [0, 65535], "adam do'st thou meane s dro not that": [0, 65535], "do'st thou meane s dro not that adam": [0, 65535], "thou meane s dro not that adam that": [0, 65535], "meane s dro not that adam that kept": [0, 65535], "s dro not that adam that kept the": [0, 65535], "dro not that adam that kept the paradise": [0, 65535], "not that adam that kept the paradise but": [0, 65535], "that adam that kept the paradise but that": [0, 65535], "adam that kept the paradise but that adam": [0, 65535], "that kept the paradise but that adam that": [0, 65535], "kept the paradise but that adam that keepes": [0, 65535], "the paradise but that adam that keepes the": [0, 65535], "paradise but that adam that keepes the prison": [0, 65535], "but that adam that keepes the prison hee": [0, 65535], "that adam that keepes the prison hee that": [0, 65535], "adam that keepes the prison hee that goes": [0, 65535], "that keepes the prison hee that goes in": [0, 65535], "keepes the prison hee that goes in the": [0, 65535], "the prison hee that goes in the calues": [0, 65535], "prison hee that goes in the calues skin": [0, 65535], "hee that goes in the calues skin that": [0, 65535], "that goes in the calues skin that was": [0, 65535], "goes in the calues skin that was kil'd": [0, 65535], "in the calues skin that was kil'd for": [0, 65535], "the calues skin that was kil'd for the": [0, 65535], "calues skin that was kil'd for the prodigall": [0, 65535], "skin that was kil'd for the prodigall hee": [0, 65535], "that was kil'd for the prodigall hee that": [0, 65535], "was kil'd for the prodigall hee that came": [0, 65535], "kil'd for the prodigall hee that came behinde": [0, 65535], "for the prodigall hee that came behinde you": [0, 65535], "the prodigall hee that came behinde you sir": [0, 65535], "prodigall hee that came behinde you sir like": [0, 65535], "hee that came behinde you sir like an": [0, 65535], "that came behinde you sir like an euill": [0, 65535], "came behinde you sir like an euill angel": [0, 65535], "behinde you sir like an euill angel and": [0, 65535], "you sir like an euill angel and bid": [0, 65535], "sir like an euill angel and bid you": [0, 65535], "like an euill angel and bid you forsake": [0, 65535], "an euill angel and bid you forsake your": [0, 65535], "euill angel and bid you forsake your libertie": [0, 65535], "angel and bid you forsake your libertie ant": [0, 65535], "and bid you forsake your libertie ant i": [0, 65535], "bid you forsake your libertie ant i vnderstand": [0, 65535], "you forsake your libertie ant i vnderstand thee": [0, 65535], "forsake your libertie ant i vnderstand thee not": [0, 65535], "your libertie ant i vnderstand thee not s": [0, 65535], "libertie ant i vnderstand thee not s dro": [0, 65535], "ant i vnderstand thee not s dro no": [0, 65535], "i vnderstand thee not s dro no why": [0, 65535], "vnderstand thee not s dro no why 'tis": [0, 65535], "thee not s dro no why 'tis a": [0, 65535], "not s dro no why 'tis a plaine": [0, 65535], "s dro no why 'tis a plaine case": [0, 65535], "dro no why 'tis a plaine case he": [0, 65535], "no why 'tis a plaine case he that": [0, 65535], "why 'tis a plaine case he that went": [0, 65535], "'tis a plaine case he that went like": [0, 65535], "a plaine case he that went like a": [0, 65535], "plaine case he that went like a base": [0, 65535], "case he that went like a base viole": [0, 65535], "he that went like a base viole in": [0, 65535], "that went like a base viole in a": [0, 65535], "went like a base viole in a case": [0, 65535], "like a base viole in a case of": [0, 65535], "a base viole in a case of leather": [0, 65535], "base viole in a case of leather the": [0, 65535], "viole in a case of leather the man": [0, 65535], "in a case of leather the man sir": [0, 65535], "a case of leather the man sir that": [0, 65535], "case of leather the man sir that when": [0, 65535], "of leather the man sir that when gentlemen": [0, 65535], "leather the man sir that when gentlemen are": [0, 65535], "the man sir that when gentlemen are tired": [0, 65535], "man sir that when gentlemen are tired giues": [0, 65535], "sir that when gentlemen are tired giues them": [0, 65535], "that when gentlemen are tired giues them a": [0, 65535], "when gentlemen are tired giues them a sob": [0, 65535], "gentlemen are tired giues them a sob and": [0, 65535], "are tired giues them a sob and rests": [0, 65535], "tired giues them a sob and rests them": [0, 65535], "giues them a sob and rests them he": [0, 65535], "them a sob and rests them he sir": [0, 65535], "a sob and rests them he sir that": [0, 65535], "sob and rests them he sir that takes": [0, 65535], "and rests them he sir that takes pittie": [0, 65535], "rests them he sir that takes pittie on": [0, 65535], "them he sir that takes pittie on decaied": [0, 65535], "he sir that takes pittie on decaied men": [0, 65535], "sir that takes pittie on decaied men and": [0, 65535], "that takes pittie on decaied men and giues": [0, 65535], "takes pittie on decaied men and giues them": [0, 65535], "pittie on decaied men and giues them suites": [0, 65535], "on decaied men and giues them suites of": [0, 65535], "decaied men and giues them suites of durance": [0, 65535], "men and giues them suites of durance he": [0, 65535], "and giues them suites of durance he that": [0, 65535], "giues them suites of durance he that sets": [0, 65535], "them suites of durance he that sets vp": [0, 65535], "suites of durance he that sets vp his": [0, 65535], "of durance he that sets vp his rest": [0, 65535], "durance he that sets vp his rest to": [0, 65535], "he that sets vp his rest to doe": [0, 65535], "that sets vp his rest to doe more": [0, 65535], "sets vp his rest to doe more exploits": [0, 65535], "vp his rest to doe more exploits with": [0, 65535], "his rest to doe more exploits with his": [0, 65535], "rest to doe more exploits with his mace": [0, 65535], "to doe more exploits with his mace then": [0, 65535], "doe more exploits with his mace then a": [0, 65535], "more exploits with his mace then a moris": [0, 65535], "exploits with his mace then a moris pike": [0, 65535], "with his mace then a moris pike ant": [0, 65535], "his mace then a moris pike ant what": [0, 65535], "mace then a moris pike ant what thou": [0, 65535], "then a moris pike ant what thou mean'st": [0, 65535], "a moris pike ant what thou mean'st an": [0, 65535], "moris pike ant what thou mean'st an officer": [0, 65535], "pike ant what thou mean'st an officer s": [0, 65535], "ant what thou mean'st an officer s dro": [0, 65535], "what thou mean'st an officer s dro i": [0, 65535], "thou mean'st an officer s dro i sir": [0, 65535], "mean'st an officer s dro i sir the": [0, 65535], "an officer s dro i sir the serieant": [0, 65535], "officer s dro i sir the serieant of": [0, 65535], "s dro i sir the serieant of the": [0, 65535], "dro i sir the serieant of the band": [0, 65535], "i sir the serieant of the band he": [0, 65535], "sir the serieant of the band he that": [0, 65535], "the serieant of the band he that brings": [0, 65535], "serieant of the band he that brings any": [0, 65535], "of the band he that brings any man": [0, 65535], "the band he that brings any man to": [0, 65535], "band he that brings any man to answer": [0, 65535], "he that brings any man to answer it": [0, 65535], "that brings any man to answer it that": [0, 65535], "brings any man to answer it that breakes": [0, 65535], "any man to answer it that breakes his": [0, 65535], "man to answer it that breakes his band": [0, 65535], "to answer it that breakes his band one": [0, 65535], "answer it that breakes his band one that": [0, 65535], "it that breakes his band one that thinkes": [0, 65535], "that breakes his band one that thinkes a": [0, 65535], "breakes his band one that thinkes a man": [0, 65535], "his band one that thinkes a man alwaies": [0, 65535], "band one that thinkes a man alwaies going": [0, 65535], "one that thinkes a man alwaies going to": [0, 65535], "that thinkes a man alwaies going to bed": [0, 65535], "thinkes a man alwaies going to bed and": [0, 65535], "a man alwaies going to bed and saies": [0, 65535], "man alwaies going to bed and saies god": [0, 65535], "alwaies going to bed and saies god giue": [0, 65535], "going to bed and saies god giue you": [0, 65535], "to bed and saies god giue you good": [0, 65535], "bed and saies god giue you good rest": [0, 65535], "and saies god giue you good rest ant": [0, 65535], "saies god giue you good rest ant well": [0, 65535], "god giue you good rest ant well sir": [0, 65535], "giue you good rest ant well sir there": [0, 65535], "you good rest ant well sir there rest": [0, 65535], "good rest ant well sir there rest in": [0, 65535], "rest ant well sir there rest in your": [0, 65535], "ant well sir there rest in your foolerie": [0, 65535], "well sir there rest in your foolerie is": [0, 65535], "sir there rest in your foolerie is there": [0, 65535], "there rest in your foolerie is there any": [0, 65535], "rest in your foolerie is there any ships": [0, 65535], "in your foolerie is there any ships puts": [0, 65535], "your foolerie is there any ships puts forth": [0, 65535], "foolerie is there any ships puts forth to": [0, 65535], "is there any ships puts forth to night": [0, 65535], "there any ships puts forth to night may": [0, 65535], "any ships puts forth to night may we": [0, 65535], "ships puts forth to night may we be": [0, 65535], "puts forth to night may we be gone": [0, 65535], "forth to night may we be gone s": [0, 65535], "to night may we be gone s dro": [0, 65535], "night may we be gone s dro why": [0, 65535], "may we be gone s dro why sir": [0, 65535], "we be gone s dro why sir i": [0, 65535], "be gone s dro why sir i brought": [0, 65535], "gone s dro why sir i brought you": [0, 65535], "s dro why sir i brought you word": [0, 65535], "dro why sir i brought you word an": [0, 65535], "why sir i brought you word an houre": [0, 65535], "sir i brought you word an houre since": [0, 65535], "i brought you word an houre since that": [0, 65535], "brought you word an houre since that the": [0, 65535], "you word an houre since that the barke": [0, 65535], "word an houre since that the barke expedition": [0, 65535], "an houre since that the barke expedition put": [0, 65535], "houre since that the barke expedition put forth": [0, 65535], "since that the barke expedition put forth to": [0, 65535], "that the barke expedition put forth to night": [0, 65535], "the barke expedition put forth to night and": [0, 65535], "barke expedition put forth to night and then": [0, 65535], "expedition put forth to night and then were": [0, 65535], "put forth to night and then were you": [0, 65535], "forth to night and then were you hindred": [0, 65535], "to night and then were you hindred by": [0, 65535], "night and then were you hindred by the": [0, 65535], "and then were you hindred by the serieant": [0, 65535], "then were you hindred by the serieant to": [0, 65535], "were you hindred by the serieant to tarry": [0, 65535], "you hindred by the serieant to tarry for": [0, 65535], "hindred by the serieant to tarry for the": [0, 65535], "by the serieant to tarry for the hoy": [0, 65535], "the serieant to tarry for the hoy delay": [0, 65535], "serieant to tarry for the hoy delay here": [0, 65535], "to tarry for the hoy delay here are": [0, 65535], "tarry for the hoy delay here are the": [0, 65535], "for the hoy delay here are the angels": [0, 65535], "the hoy delay here are the angels that": [0, 65535], "hoy delay here are the angels that you": [0, 65535], "delay here are the angels that you sent": [0, 65535], "here are the angels that you sent for": [0, 65535], "are the angels that you sent for to": [0, 65535], "the angels that you sent for to deliuer": [0, 65535], "angels that you sent for to deliuer you": [0, 65535], "that you sent for to deliuer you ant": [0, 65535], "you sent for to deliuer you ant the": [0, 65535], "sent for to deliuer you ant the fellow": [0, 65535], "for to deliuer you ant the fellow is": [0, 65535], "to deliuer you ant the fellow is distract": [0, 65535], "deliuer you ant the fellow is distract and": [0, 65535], "you ant the fellow is distract and so": [0, 65535], "ant the fellow is distract and so am": [0, 65535], "the fellow is distract and so am i": [0, 65535], "fellow is distract and so am i and": [0, 65535], "is distract and so am i and here": [0, 65535], "distract and so am i and here we": [0, 65535], "and so am i and here we wander": [0, 65535], "so am i and here we wander in": [0, 65535], "am i and here we wander in illusions": [0, 65535], "i and here we wander in illusions some": [0, 65535], "and here we wander in illusions some blessed": [0, 65535], "here we wander in illusions some blessed power": [0, 65535], "we wander in illusions some blessed power deliuer": [0, 65535], "wander in illusions some blessed power deliuer vs": [0, 65535], "in illusions some blessed power deliuer vs from": [0, 65535], "illusions some blessed power deliuer vs from hence": [0, 65535], "some blessed power deliuer vs from hence enter": [0, 65535], "blessed power deliuer vs from hence enter a": [0, 65535], "power deliuer vs from hence enter a curtizan": [0, 65535], "deliuer vs from hence enter a curtizan cur": [0, 65535], "vs from hence enter a curtizan cur well": [0, 65535], "from hence enter a curtizan cur well met": [0, 65535], "hence enter a curtizan cur well met well": [0, 65535], "enter a curtizan cur well met well met": [0, 65535], "a curtizan cur well met well met master": [0, 65535], "curtizan cur well met well met master antipholus": [0, 65535], "cur well met well met master antipholus i": [0, 65535], "well met well met master antipholus i see": [0, 65535], "met well met master antipholus i see sir": [0, 65535], "well met master antipholus i see sir you": [0, 65535], "met master antipholus i see sir you haue": [0, 65535], "master antipholus i see sir you haue found": [0, 65535], "antipholus i see sir you haue found the": [0, 65535], "i see sir you haue found the gold": [0, 65535], "see sir you haue found the gold smith": [0, 65535], "sir you haue found the gold smith now": [0, 65535], "you haue found the gold smith now is": [0, 65535], "haue found the gold smith now is that": [0, 65535], "found the gold smith now is that the": [0, 65535], "the gold smith now is that the chaine": [0, 65535], "gold smith now is that the chaine you": [0, 65535], "smith now is that the chaine you promis'd": [0, 65535], "now is that the chaine you promis'd me": [0, 65535], "is that the chaine you promis'd me to": [0, 65535], "that the chaine you promis'd me to day": [0, 65535], "the chaine you promis'd me to day ant": [0, 65535], "chaine you promis'd me to day ant sathan": [0, 65535], "you promis'd me to day ant sathan auoide": [0, 65535], "promis'd me to day ant sathan auoide i": [0, 65535], "me to day ant sathan auoide i charge": [0, 65535], "to day ant sathan auoide i charge thee": [0, 65535], "day ant sathan auoide i charge thee tempt": [0, 65535], "ant sathan auoide i charge thee tempt me": [0, 65535], "sathan auoide i charge thee tempt me not": [0, 65535], "auoide i charge thee tempt me not s": [0, 65535], "i charge thee tempt me not s dro": [0, 65535], "charge thee tempt me not s dro master": [0, 65535], "thee tempt me not s dro master is": [0, 65535], "tempt me not s dro master is this": [0, 65535], "me not s dro master is this mistris": [0, 65535], "not s dro master is this mistris sathan": [0, 65535], "s dro master is this mistris sathan ant": [0, 65535], "dro master is this mistris sathan ant it": [0, 65535], "master is this mistris sathan ant it is": [0, 65535], "is this mistris sathan ant it is the": [0, 65535], "this mistris sathan ant it is the diuell": [0, 65535], "mistris sathan ant it is the diuell s": [0, 65535], "sathan ant it is the diuell s dro": [0, 65535], "ant it is the diuell s dro nay": [0, 65535], "it is the diuell s dro nay she": [0, 65535], "is the diuell s dro nay she is": [0, 65535], "the diuell s dro nay she is worse": [0, 65535], "diuell s dro nay she is worse she": [0, 65535], "s dro nay she is worse she is": [0, 65535], "dro nay she is worse she is the": [0, 65535], "nay she is worse she is the diuels": [0, 65535], "she is worse she is the diuels dam": [0, 65535], "is worse she is the diuels dam and": [0, 65535], "worse she is the diuels dam and here": [0, 65535], "she is the diuels dam and here she": [0, 65535], "is the diuels dam and here she comes": [0, 65535], "the diuels dam and here she comes in": [0, 65535], "diuels dam and here she comes in the": [0, 65535], "dam and here she comes in the habit": [0, 65535], "and here she comes in the habit of": [0, 65535], "here she comes in the habit of a": [0, 65535], "she comes in the habit of a light": [0, 65535], "comes in the habit of a light wench": [0, 65535], "in the habit of a light wench and": [0, 65535], "the habit of a light wench and thereof": [0, 65535], "habit of a light wench and thereof comes": [0, 65535], "of a light wench and thereof comes that": [0, 65535], "a light wench and thereof comes that the": [0, 65535], "light wench and thereof comes that the wenches": [0, 65535], "wench and thereof comes that the wenches say": [0, 65535], "and thereof comes that the wenches say god": [0, 65535], "thereof comes that the wenches say god dam": [0, 65535], "comes that the wenches say god dam me": [0, 65535], "that the wenches say god dam me that's": [0, 65535], "the wenches say god dam me that's as": [0, 65535], "wenches say god dam me that's as much": [0, 65535], "say god dam me that's as much to": [0, 65535], "god dam me that's as much to say": [0, 65535], "dam me that's as much to say god": [0, 65535], "me that's as much to say god make": [0, 65535], "that's as much to say god make me": [0, 65535], "as much to say god make me a": [0, 65535], "much to say god make me a light": [0, 65535], "to say god make me a light wench": [0, 65535], "say god make me a light wench it": [0, 65535], "god make me a light wench it is": [0, 65535], "make me a light wench it is written": [0, 65535], "me a light wench it is written they": [0, 65535], "a light wench it is written they appeare": [0, 65535], "light wench it is written they appeare to": [0, 65535], "wench it is written they appeare to men": [0, 65535], "it is written they appeare to men like": [0, 65535], "is written they appeare to men like angels": [0, 65535], "written they appeare to men like angels of": [0, 65535], "they appeare to men like angels of light": [0, 65535], "appeare to men like angels of light light": [0, 65535], "to men like angels of light light is": [0, 65535], "men like angels of light light is an": [0, 65535], "like angels of light light is an effect": [0, 65535], "angels of light light is an effect of": [0, 65535], "of light light is an effect of fire": [0, 65535], "light light is an effect of fire and": [0, 65535], "light is an effect of fire and fire": [0, 65535], "is an effect of fire and fire will": [0, 65535], "an effect of fire and fire will burne": [0, 65535], "effect of fire and fire will burne ergo": [0, 65535], "of fire and fire will burne ergo light": [0, 65535], "fire and fire will burne ergo light wenches": [0, 65535], "and fire will burne ergo light wenches will": [0, 65535], "fire will burne ergo light wenches will burne": [0, 65535], "will burne ergo light wenches will burne come": [0, 65535], "burne ergo light wenches will burne come not": [0, 65535], "ergo light wenches will burne come not neere": [0, 65535], "light wenches will burne come not neere her": [0, 65535], "wenches will burne come not neere her cur": [0, 65535], "will burne come not neere her cur your": [0, 65535], "burne come not neere her cur your man": [0, 65535], "come not neere her cur your man and": [0, 65535], "not neere her cur your man and you": [0, 65535], "neere her cur your man and you are": [0, 65535], "her cur your man and you are maruailous": [0, 65535], "cur your man and you are maruailous merrie": [0, 65535], "your man and you are maruailous merrie sir": [0, 65535], "man and you are maruailous merrie sir will": [0, 65535], "and you are maruailous merrie sir will you": [0, 65535], "you are maruailous merrie sir will you goe": [0, 65535], "are maruailous merrie sir will you goe with": [0, 65535], "maruailous merrie sir will you goe with me": [0, 65535], "merrie sir will you goe with me wee'll": [0, 65535], "sir will you goe with me wee'll mend": [0, 65535], "will you goe with me wee'll mend our": [0, 65535], "you goe with me wee'll mend our dinner": [0, 65535], "goe with me wee'll mend our dinner here": [0, 65535], "with me wee'll mend our dinner here s": [0, 65535], "me wee'll mend our dinner here s dro": [0, 65535], "wee'll mend our dinner here s dro master": [0, 65535], "mend our dinner here s dro master if": [0, 65535], "our dinner here s dro master if do": [0, 65535], "dinner here s dro master if do expect": [0, 65535], "here s dro master if do expect spoon": [0, 65535], "s dro master if do expect spoon meate": [0, 65535], "dro master if do expect spoon meate or": [0, 65535], "master if do expect spoon meate or bespeake": [0, 65535], "if do expect spoon meate or bespeake a": [0, 65535], "do expect spoon meate or bespeake a long": [0, 65535], "expect spoon meate or bespeake a long spoone": [0, 65535], "spoon meate or bespeake a long spoone ant": [0, 65535], "meate or bespeake a long spoone ant why": [0, 65535], "or bespeake a long spoone ant why dromio": [0, 65535], "bespeake a long spoone ant why dromio s": [0, 65535], "a long spoone ant why dromio s dro": [0, 65535], "long spoone ant why dromio s dro marrie": [0, 65535], "spoone ant why dromio s dro marrie he": [0, 65535], "ant why dromio s dro marrie he must": [0, 65535], "why dromio s dro marrie he must haue": [0, 65535], "dromio s dro marrie he must haue a": [0, 65535], "s dro marrie he must haue a long": [0, 65535], "dro marrie he must haue a long spoone": [0, 65535], "marrie he must haue a long spoone that": [0, 65535], "he must haue a long spoone that must": [0, 65535], "must haue a long spoone that must eate": [0, 65535], "haue a long spoone that must eate with": [0, 65535], "a long spoone that must eate with the": [0, 65535], "long spoone that must eate with the diuell": [0, 65535], "spoone that must eate with the diuell ant": [0, 65535], "that must eate with the diuell ant auoid": [0, 65535], "must eate with the diuell ant auoid then": [0, 65535], "eate with the diuell ant auoid then fiend": [0, 65535], "with the diuell ant auoid then fiend what": [0, 65535], "the diuell ant auoid then fiend what tel'st": [0, 65535], "diuell ant auoid then fiend what tel'st thou": [0, 65535], "ant auoid then fiend what tel'st thou me": [0, 65535], "auoid then fiend what tel'st thou me of": [0, 65535], "then fiend what tel'st thou me of supping": [0, 65535], "fiend what tel'st thou me of supping thou": [0, 65535], "what tel'st thou me of supping thou art": [0, 65535], "tel'st thou me of supping thou art as": [0, 65535], "thou me of supping thou art as you": [0, 65535], "me of supping thou art as you are": [0, 65535], "of supping thou art as you are all": [0, 65535], "supping thou art as you are all a": [0, 65535], "thou art as you are all a sorceresse": [0, 65535], "art as you are all a sorceresse i": [0, 65535], "as you are all a sorceresse i coniure": [0, 65535], "you are all a sorceresse i coniure thee": [0, 65535], "are all a sorceresse i coniure thee to": [0, 65535], "all a sorceresse i coniure thee to leaue": [0, 65535], "a sorceresse i coniure thee to leaue me": [0, 65535], "sorceresse i coniure thee to leaue me and": [0, 65535], "i coniure thee to leaue me and be": [0, 65535], "coniure thee to leaue me and be gon": [0, 65535], "thee to leaue me and be gon cur": [0, 65535], "to leaue me and be gon cur giue": [0, 65535], "leaue me and be gon cur giue me": [0, 65535], "me and be gon cur giue me the": [0, 65535], "and be gon cur giue me the ring": [0, 65535], "be gon cur giue me the ring of": [0, 65535], "gon cur giue me the ring of mine": [0, 65535], "cur giue me the ring of mine you": [0, 65535], "giue me the ring of mine you had": [0, 65535], "me the ring of mine you had at": [0, 65535], "the ring of mine you had at dinner": [0, 65535], "ring of mine you had at dinner or": [0, 65535], "of mine you had at dinner or for": [0, 65535], "mine you had at dinner or for my": [0, 65535], "you had at dinner or for my diamond": [0, 65535], "had at dinner or for my diamond the": [0, 65535], "at dinner or for my diamond the chaine": [0, 65535], "dinner or for my diamond the chaine you": [0, 65535], "or for my diamond the chaine you promis'd": [0, 65535], "for my diamond the chaine you promis'd and": [0, 65535], "my diamond the chaine you promis'd and ile": [0, 65535], "diamond the chaine you promis'd and ile be": [0, 65535], "the chaine you promis'd and ile be gone": [0, 65535], "chaine you promis'd and ile be gone sir": [0, 65535], "you promis'd and ile be gone sir and": [0, 65535], "promis'd and ile be gone sir and not": [0, 65535], "and ile be gone sir and not trouble": [0, 65535], "ile be gone sir and not trouble you": [0, 65535], "be gone sir and not trouble you s": [0, 65535], "gone sir and not trouble you s dro": [0, 65535], "sir and not trouble you s dro some": [0, 65535], "and not trouble you s dro some diuels": [0, 65535], "not trouble you s dro some diuels aske": [0, 65535], "trouble you s dro some diuels aske but": [0, 65535], "you s dro some diuels aske but the": [0, 65535], "s dro some diuels aske but the parings": [0, 65535], "dro some diuels aske but the parings of": [0, 65535], "some diuels aske but the parings of ones": [0, 65535], "diuels aske but the parings of ones naile": [0, 65535], "aske but the parings of ones naile a": [0, 65535], "but the parings of ones naile a rush": [0, 65535], "the parings of ones naile a rush a": [0, 65535], "parings of ones naile a rush a haire": [0, 65535], "of ones naile a rush a haire a": [0, 65535], "ones naile a rush a haire a drop": [0, 65535], "naile a rush a haire a drop of": [0, 65535], "a rush a haire a drop of blood": [0, 65535], "rush a haire a drop of blood a": [0, 65535], "a haire a drop of blood a pin": [0, 65535], "haire a drop of blood a pin a": [0, 65535], "a drop of blood a pin a nut": [0, 65535], "drop of blood a pin a nut a": [0, 65535], "of blood a pin a nut a cherrie": [0, 65535], "blood a pin a nut a cherrie stone": [0, 65535], "a pin a nut a cherrie stone but": [0, 65535], "pin a nut a cherrie stone but she": [0, 65535], "a nut a cherrie stone but she more": [0, 65535], "nut a cherrie stone but she more couetous": [0, 65535], "a cherrie stone but she more couetous wold": [0, 65535], "cherrie stone but she more couetous wold haue": [0, 65535], "stone but she more couetous wold haue a": [0, 65535], "but she more couetous wold haue a chaine": [0, 65535], "she more couetous wold haue a chaine master": [0, 65535], "more couetous wold haue a chaine master be": [0, 65535], "couetous wold haue a chaine master be wise": [0, 65535], "wold haue a chaine master be wise and": [0, 65535], "haue a chaine master be wise and if": [0, 65535], "a chaine master be wise and if you": [0, 65535], "chaine master be wise and if you giue": [0, 65535], "master be wise and if you giue it": [0, 65535], "be wise and if you giue it her": [0, 65535], "wise and if you giue it her the": [0, 65535], "and if you giue it her the diuell": [0, 65535], "if you giue it her the diuell will": [0, 65535], "you giue it her the diuell will shake": [0, 65535], "giue it her the diuell will shake her": [0, 65535], "it her the diuell will shake her chaine": [0, 65535], "her the diuell will shake her chaine and": [0, 65535], "the diuell will shake her chaine and fright": [0, 65535], "diuell will shake her chaine and fright vs": [0, 65535], "will shake her chaine and fright vs with": [0, 65535], "shake her chaine and fright vs with it": [0, 65535], "her chaine and fright vs with it cur": [0, 65535], "chaine and fright vs with it cur i": [0, 65535], "and fright vs with it cur i pray": [0, 65535], "fright vs with it cur i pray you": [0, 65535], "vs with it cur i pray you sir": [0, 65535], "with it cur i pray you sir my": [0, 65535], "it cur i pray you sir my ring": [0, 65535], "cur i pray you sir my ring or": [0, 65535], "i pray you sir my ring or else": [0, 65535], "pray you sir my ring or else the": [0, 65535], "you sir my ring or else the chaine": [0, 65535], "sir my ring or else the chaine i": [0, 65535], "my ring or else the chaine i hope": [0, 65535], "ring or else the chaine i hope you": [0, 65535], "or else the chaine i hope you do": [0, 65535], "else the chaine i hope you do not": [0, 65535], "the chaine i hope you do not meane": [0, 65535], "chaine i hope you do not meane to": [0, 65535], "i hope you do not meane to cheate": [0, 65535], "hope you do not meane to cheate me": [0, 65535], "you do not meane to cheate me so": [0, 65535], "do not meane to cheate me so ant": [0, 65535], "not meane to cheate me so ant auant": [0, 65535], "meane to cheate me so ant auant thou": [0, 65535], "to cheate me so ant auant thou witch": [0, 65535], "cheate me so ant auant thou witch come": [0, 65535], "me so ant auant thou witch come dromio": [0, 65535], "so ant auant thou witch come dromio let": [0, 65535], "ant auant thou witch come dromio let vs": [0, 65535], "auant thou witch come dromio let vs go": [0, 65535], "thou witch come dromio let vs go s": [0, 65535], "witch come dromio let vs go s dro": [0, 65535], "come dromio let vs go s dro flie": [0, 65535], "dromio let vs go s dro flie pride": [0, 65535], "let vs go s dro flie pride saies": [0, 65535], "vs go s dro flie pride saies the": [0, 65535], "go s dro flie pride saies the pea": [0, 65535], "s dro flie pride saies the pea cocke": [0, 65535], "dro flie pride saies the pea cocke mistris": [0, 65535], "flie pride saies the pea cocke mistris that": [0, 65535], "pride saies the pea cocke mistris that you": [0, 65535], "saies the pea cocke mistris that you know": [0, 65535], "the pea cocke mistris that you know exit": [0, 65535], "pea cocke mistris that you know exit cur": [0, 65535], "cocke mistris that you know exit cur now": [0, 65535], "mistris that you know exit cur now out": [0, 65535], "that you know exit cur now out of": [0, 65535], "you know exit cur now out of doubt": [0, 65535], "know exit cur now out of doubt antipholus": [0, 65535], "exit cur now out of doubt antipholus is": [0, 65535], "cur now out of doubt antipholus is mad": [0, 65535], "now out of doubt antipholus is mad else": [0, 65535], "out of doubt antipholus is mad else would": [0, 65535], "of doubt antipholus is mad else would he": [0, 65535], "doubt antipholus is mad else would he neuer": [0, 65535], "antipholus is mad else would he neuer so": [0, 65535], "is mad else would he neuer so demeane": [0, 65535], "mad else would he neuer so demeane himselfe": [0, 65535], "else would he neuer so demeane himselfe a": [0, 65535], "would he neuer so demeane himselfe a ring": [0, 65535], "he neuer so demeane himselfe a ring he": [0, 65535], "neuer so demeane himselfe a ring he hath": [0, 65535], "so demeane himselfe a ring he hath of": [0, 65535], "demeane himselfe a ring he hath of mine": [0, 65535], "himselfe a ring he hath of mine worth": [0, 65535], "a ring he hath of mine worth fortie": [0, 65535], "ring he hath of mine worth fortie duckets": [0, 65535], "he hath of mine worth fortie duckets and": [0, 65535], "hath of mine worth fortie duckets and for": [0, 65535], "of mine worth fortie duckets and for the": [0, 65535], "mine worth fortie duckets and for the same": [0, 65535], "worth fortie duckets and for the same he": [0, 65535], "fortie duckets and for the same he promis'd": [0, 65535], "duckets and for the same he promis'd me": [0, 65535], "and for the same he promis'd me a": [0, 65535], "for the same he promis'd me a chaine": [0, 65535], "the same he promis'd me a chaine both": [0, 65535], "same he promis'd me a chaine both one": [0, 65535], "he promis'd me a chaine both one and": [0, 65535], "promis'd me a chaine both one and other": [0, 65535], "me a chaine both one and other he": [0, 65535], "a chaine both one and other he denies": [0, 65535], "chaine both one and other he denies me": [0, 65535], "both one and other he denies me now": [0, 65535], "one and other he denies me now the": [0, 65535], "and other he denies me now the reason": [0, 65535], "other he denies me now the reason that": [0, 65535], "he denies me now the reason that i": [0, 65535], "denies me now the reason that i gather": [0, 65535], "me now the reason that i gather he": [0, 65535], "now the reason that i gather he is": [0, 65535], "the reason that i gather he is mad": [0, 65535], "reason that i gather he is mad besides": [0, 65535], "that i gather he is mad besides this": [0, 65535], "i gather he is mad besides this present": [0, 65535], "gather he is mad besides this present instance": [0, 65535], "he is mad besides this present instance of": [0, 65535], "is mad besides this present instance of his": [0, 65535], "mad besides this present instance of his rage": [0, 65535], "besides this present instance of his rage is": [0, 65535], "this present instance of his rage is a": [0, 65535], "present instance of his rage is a mad": [0, 65535], "instance of his rage is a mad tale": [0, 65535], "of his rage is a mad tale he": [0, 65535], "his rage is a mad tale he told": [0, 65535], "rage is a mad tale he told to": [0, 65535], "is a mad tale he told to day": [0, 65535], "a mad tale he told to day at": [0, 65535], "mad tale he told to day at dinner": [0, 65535], "tale he told to day at dinner of": [0, 65535], "he told to day at dinner of his": [0, 65535], "told to day at dinner of his owne": [0, 65535], "to day at dinner of his owne doores": [0, 65535], "day at dinner of his owne doores being": [0, 65535], "at dinner of his owne doores being shut": [0, 65535], "dinner of his owne doores being shut against": [0, 65535], "of his owne doores being shut against his": [0, 65535], "his owne doores being shut against his entrance": [0, 65535], "owne doores being shut against his entrance belike": [0, 65535], "doores being shut against his entrance belike his": [0, 65535], "being shut against his entrance belike his wife": [0, 65535], "shut against his entrance belike his wife acquainted": [0, 65535], "against his entrance belike his wife acquainted with": [0, 65535], "his entrance belike his wife acquainted with his": [0, 65535], "entrance belike his wife acquainted with his fits": [0, 65535], "belike his wife acquainted with his fits on": [0, 65535], "his wife acquainted with his fits on purpose": [0, 65535], "wife acquainted with his fits on purpose shut": [0, 65535], "acquainted with his fits on purpose shut the": [0, 65535], "with his fits on purpose shut the doores": [0, 65535], "his fits on purpose shut the doores against": [0, 65535], "fits on purpose shut the doores against his": [0, 65535], "on purpose shut the doores against his way": [0, 65535], "purpose shut the doores against his way my": [0, 65535], "shut the doores against his way my way": [0, 65535], "the doores against his way my way is": [0, 65535], "doores against his way my way is now": [0, 65535], "against his way my way is now to": [0, 65535], "his way my way is now to hie": [0, 65535], "way my way is now to hie home": [0, 65535], "my way is now to hie home to": [0, 65535], "way is now to hie home to his": [0, 65535], "is now to hie home to his house": [0, 65535], "now to hie home to his house and": [0, 65535], "to hie home to his house and tell": [0, 65535], "hie home to his house and tell his": [0, 65535], "home to his house and tell his wife": [0, 65535], "to his house and tell his wife that": [0, 65535], "his house and tell his wife that being": [0, 65535], "house and tell his wife that being lunaticke": [0, 65535], "and tell his wife that being lunaticke he": [0, 65535], "tell his wife that being lunaticke he rush'd": [0, 65535], "his wife that being lunaticke he rush'd into": [0, 65535], "wife that being lunaticke he rush'd into my": [0, 65535], "that being lunaticke he rush'd into my house": [0, 65535], "being lunaticke he rush'd into my house and": [0, 65535], "lunaticke he rush'd into my house and tooke": [0, 65535], "he rush'd into my house and tooke perforce": [0, 65535], "rush'd into my house and tooke perforce my": [0, 65535], "into my house and tooke perforce my ring": [0, 65535], "my house and tooke perforce my ring away": [0, 65535], "house and tooke perforce my ring away this": [0, 65535], "and tooke perforce my ring away this course": [0, 65535], "tooke perforce my ring away this course i": [0, 65535], "perforce my ring away this course i fittest": [0, 65535], "my ring away this course i fittest choose": [0, 65535], "ring away this course i fittest choose for": [0, 65535], "away this course i fittest choose for fortie": [0, 65535], "this course i fittest choose for fortie duckets": [0, 65535], "course i fittest choose for fortie duckets is": [0, 65535], "i fittest choose for fortie duckets is too": [0, 65535], "fittest choose for fortie duckets is too much": [0, 65535], "choose for fortie duckets is too much to": [0, 65535], "for fortie duckets is too much to loose": [0, 65535], "fortie duckets is too much to loose enter": [0, 65535], "duckets is too much to loose enter antipholus": [0, 65535], "is too much to loose enter antipholus ephes": [0, 65535], "too much to loose enter antipholus ephes with": [0, 65535], "much to loose enter antipholus ephes with a": [0, 65535], "to loose enter antipholus ephes with a iailor": [0, 65535], "loose enter antipholus ephes with a iailor an": [0, 65535], "enter antipholus ephes with a iailor an feare": [0, 65535], "antipholus ephes with a iailor an feare me": [0, 65535], "ephes with a iailor an feare me not": [0, 65535], "with a iailor an feare me not man": [0, 65535], "a iailor an feare me not man i": [0, 65535], "iailor an feare me not man i will": [0, 65535], "an feare me not man i will not": [0, 65535], "feare me not man i will not breake": [0, 65535], "me not man i will not breake away": [0, 65535], "not man i will not breake away ile": [0, 65535], "man i will not breake away ile giue": [0, 65535], "i will not breake away ile giue thee": [0, 65535], "will not breake away ile giue thee ere": [0, 65535], "not breake away ile giue thee ere i": [0, 65535], "breake away ile giue thee ere i leaue": [0, 65535], "away ile giue thee ere i leaue thee": [0, 65535], "ile giue thee ere i leaue thee so": [0, 65535], "giue thee ere i leaue thee so much": [0, 65535], "thee ere i leaue thee so much money": [0, 65535], "ere i leaue thee so much money to": [0, 65535], "i leaue thee so much money to warrant": [0, 65535], "leaue thee so much money to warrant thee": [0, 65535], "thee so much money to warrant thee as": [0, 65535], "so much money to warrant thee as i": [0, 65535], "much money to warrant thee as i am": [0, 65535], "money to warrant thee as i am rested": [0, 65535], "to warrant thee as i am rested for": [0, 65535], "warrant thee as i am rested for my": [0, 65535], "thee as i am rested for my wife": [0, 65535], "as i am rested for my wife is": [0, 65535], "i am rested for my wife is in": [0, 65535], "am rested for my wife is in a": [0, 65535], "rested for my wife is in a wayward": [0, 65535], "for my wife is in a wayward moode": [0, 65535], "my wife is in a wayward moode to": [0, 65535], "wife is in a wayward moode to day": [0, 65535], "is in a wayward moode to day and": [0, 65535], "in a wayward moode to day and will": [0, 65535], "a wayward moode to day and will not": [0, 65535], "wayward moode to day and will not lightly": [0, 65535], "moode to day and will not lightly trust": [0, 65535], "to day and will not lightly trust the": [0, 65535], "day and will not lightly trust the messenger": [0, 65535], "and will not lightly trust the messenger that": [0, 65535], "will not lightly trust the messenger that i": [0, 65535], "not lightly trust the messenger that i should": [0, 65535], "lightly trust the messenger that i should be": [0, 65535], "trust the messenger that i should be attach'd": [0, 65535], "the messenger that i should be attach'd in": [0, 65535], "messenger that i should be attach'd in ephesus": [0, 65535], "that i should be attach'd in ephesus i": [0, 65535], "i should be attach'd in ephesus i tell": [0, 65535], "should be attach'd in ephesus i tell you": [0, 65535], "be attach'd in ephesus i tell you 'twill": [0, 65535], "attach'd in ephesus i tell you 'twill sound": [0, 65535], "in ephesus i tell you 'twill sound harshly": [0, 65535], "ephesus i tell you 'twill sound harshly in": [0, 65535], "i tell you 'twill sound harshly in her": [0, 65535], "tell you 'twill sound harshly in her eares": [0, 65535], "you 'twill sound harshly in her eares enter": [0, 65535], "'twill sound harshly in her eares enter dromio": [0, 65535], "sound harshly in her eares enter dromio eph": [0, 65535], "harshly in her eares enter dromio eph with": [0, 65535], "in her eares enter dromio eph with a": [0, 65535], "her eares enter dromio eph with a ropes": [0, 65535], "eares enter dromio eph with a ropes end": [0, 65535], "enter dromio eph with a ropes end heere": [0, 65535], "dromio eph with a ropes end heere comes": [0, 65535], "eph with a ropes end heere comes my": [0, 65535], "with a ropes end heere comes my man": [0, 65535], "a ropes end heere comes my man i": [0, 65535], "ropes end heere comes my man i thinke": [0, 65535], "end heere comes my man i thinke he": [0, 65535], "heere comes my man i thinke he brings": [0, 65535], "comes my man i thinke he brings the": [0, 65535], "my man i thinke he brings the monie": [0, 65535], "man i thinke he brings the monie how": [0, 65535], "i thinke he brings the monie how now": [0, 65535], "thinke he brings the monie how now sir": [0, 65535], "he brings the monie how now sir haue": [0, 65535], "brings the monie how now sir haue you": [0, 65535], "the monie how now sir haue you that": [0, 65535], "monie how now sir haue you that i": [0, 65535], "how now sir haue you that i sent": [0, 65535], "now sir haue you that i sent you": [0, 65535], "sir haue you that i sent you for": [0, 65535], "haue you that i sent you for e": [0, 65535], "you that i sent you for e dro": [0, 65535], "that i sent you for e dro here's": [0, 65535], "i sent you for e dro here's that": [0, 65535], "sent you for e dro here's that i": [0, 65535], "you for e dro here's that i warrant": [0, 65535], "for e dro here's that i warrant you": [0, 65535], "e dro here's that i warrant you will": [0, 65535], "dro here's that i warrant you will pay": [0, 65535], "here's that i warrant you will pay them": [0, 65535], "that i warrant you will pay them all": [0, 65535], "i warrant you will pay them all anti": [0, 65535], "warrant you will pay them all anti but": [0, 65535], "you will pay them all anti but where's": [0, 65535], "will pay them all anti but where's the": [0, 65535], "pay them all anti but where's the money": [0, 65535], "them all anti but where's the money e": [0, 65535], "all anti but where's the money e dro": [0, 65535], "anti but where's the money e dro why": [0, 65535], "but where's the money e dro why sir": [0, 65535], "where's the money e dro why sir i": [0, 65535], "the money e dro why sir i gaue": [0, 65535], "money e dro why sir i gaue the": [0, 65535], "e dro why sir i gaue the monie": [0, 65535], "dro why sir i gaue the monie for": [0, 65535], "why sir i gaue the monie for the": [0, 65535], "sir i gaue the monie for the rope": [0, 65535], "i gaue the monie for the rope ant": [0, 65535], "gaue the monie for the rope ant fiue": [0, 65535], "the monie for the rope ant fiue hundred": [0, 65535], "monie for the rope ant fiue hundred duckets": [0, 65535], "for the rope ant fiue hundred duckets villaine": [0, 65535], "the rope ant fiue hundred duckets villaine for": [0, 65535], "rope ant fiue hundred duckets villaine for a": [0, 65535], "ant fiue hundred duckets villaine for a rope": [0, 65535], "fiue hundred duckets villaine for a rope e": [0, 65535], "hundred duckets villaine for a rope e dro": [0, 65535], "duckets villaine for a rope e dro ile": [0, 65535], "villaine for a rope e dro ile serue": [0, 65535], "for a rope e dro ile serue you": [0, 65535], "a rope e dro ile serue you sir": [0, 65535], "rope e dro ile serue you sir fiue": [0, 65535], "e dro ile serue you sir fiue hundred": [0, 65535], "dro ile serue you sir fiue hundred at": [0, 65535], "ile serue you sir fiue hundred at the": [0, 65535], "serue you sir fiue hundred at the rate": [0, 65535], "you sir fiue hundred at the rate ant": [0, 65535], "sir fiue hundred at the rate ant to": [0, 65535], "fiue hundred at the rate ant to what": [0, 65535], "hundred at the rate ant to what end": [0, 65535], "at the rate ant to what end did": [0, 65535], "the rate ant to what end did i": [0, 65535], "rate ant to what end did i bid": [0, 65535], "ant to what end did i bid thee": [0, 65535], "to what end did i bid thee hie": [0, 65535], "what end did i bid thee hie thee": [0, 65535], "end did i bid thee hie thee home": [0, 65535], "did i bid thee hie thee home e": [0, 65535], "i bid thee hie thee home e dro": [0, 65535], "bid thee hie thee home e dro to": [0, 65535], "thee hie thee home e dro to a": [0, 65535], "hie thee home e dro to a ropes": [0, 65535], "thee home e dro to a ropes end": [0, 65535], "home e dro to a ropes end sir": [0, 65535], "e dro to a ropes end sir and": [0, 65535], "dro to a ropes end sir and to": [0, 65535], "to a ropes end sir and to that": [0, 65535], "a ropes end sir and to that end": [0, 65535], "ropes end sir and to that end am": [0, 65535], "end sir and to that end am i": [0, 65535], "sir and to that end am i re": [0, 65535], "and to that end am i re turn'd": [0, 65535], "to that end am i re turn'd ant": [0, 65535], "that end am i re turn'd ant and": [0, 65535], "end am i re turn'd ant and to": [0, 65535], "am i re turn'd ant and to that": [0, 65535], "i re turn'd ant and to that end": [0, 65535], "re turn'd ant and to that end sir": [0, 65535], "turn'd ant and to that end sir i": [0, 65535], "ant and to that end sir i will": [0, 65535], "and to that end sir i will welcome": [0, 65535], "to that end sir i will welcome you": [0, 65535], "that end sir i will welcome you offi": [0, 65535], "end sir i will welcome you offi good": [0, 65535], "sir i will welcome you offi good sir": [0, 65535], "i will welcome you offi good sir be": [0, 65535], "will welcome you offi good sir be patient": [0, 65535], "welcome you offi good sir be patient e": [0, 65535], "you offi good sir be patient e dro": [0, 65535], "offi good sir be patient e dro nay": [0, 65535], "good sir be patient e dro nay 'tis": [0, 65535], "sir be patient e dro nay 'tis for": [0, 65535], "be patient e dro nay 'tis for me": [0, 65535], "patient e dro nay 'tis for me to": [0, 65535], "e dro nay 'tis for me to be": [0, 65535], "dro nay 'tis for me to be patient": [0, 65535], "nay 'tis for me to be patient i": [0, 65535], "'tis for me to be patient i am": [0, 65535], "for me to be patient i am in": [0, 65535], "me to be patient i am in aduersitie": [0, 65535], "to be patient i am in aduersitie offi": [0, 65535], "be patient i am in aduersitie offi good": [0, 65535], "patient i am in aduersitie offi good now": [0, 65535], "i am in aduersitie offi good now hold": [0, 65535], "am in aduersitie offi good now hold thy": [0, 65535], "in aduersitie offi good now hold thy tongue": [0, 65535], "aduersitie offi good now hold thy tongue e": [0, 65535], "offi good now hold thy tongue e dro": [0, 65535], "good now hold thy tongue e dro nay": [0, 65535], "now hold thy tongue e dro nay rather": [0, 65535], "hold thy tongue e dro nay rather perswade": [0, 65535], "thy tongue e dro nay rather perswade him": [0, 65535], "tongue e dro nay rather perswade him to": [0, 65535], "e dro nay rather perswade him to hold": [0, 65535], "dro nay rather perswade him to hold his": [0, 65535], "nay rather perswade him to hold his hands": [0, 65535], "rather perswade him to hold his hands anti": [0, 65535], "perswade him to hold his hands anti thou": [0, 65535], "him to hold his hands anti thou whoreson": [0, 65535], "to hold his hands anti thou whoreson senselesse": [0, 65535], "hold his hands anti thou whoreson senselesse villaine": [0, 65535], "his hands anti thou whoreson senselesse villaine e": [0, 65535], "hands anti thou whoreson senselesse villaine e dro": [0, 65535], "anti thou whoreson senselesse villaine e dro i": [0, 65535], "thou whoreson senselesse villaine e dro i would": [0, 65535], "whoreson senselesse villaine e dro i would i": [0, 65535], "senselesse villaine e dro i would i were": [0, 65535], "villaine e dro i would i were senselesse": [0, 65535], "e dro i would i were senselesse sir": [0, 65535], "dro i would i were senselesse sir that": [0, 65535], "i would i were senselesse sir that i": [0, 65535], "would i were senselesse sir that i might": [0, 65535], "i were senselesse sir that i might not": [0, 65535], "were senselesse sir that i might not feele": [0, 65535], "senselesse sir that i might not feele your": [0, 65535], "sir that i might not feele your blowes": [0, 65535], "that i might not feele your blowes anti": [0, 65535], "i might not feele your blowes anti thou": [0, 65535], "might not feele your blowes anti thou art": [0, 65535], "not feele your blowes anti thou art sensible": [0, 65535], "feele your blowes anti thou art sensible in": [0, 65535], "your blowes anti thou art sensible in nothing": [0, 65535], "blowes anti thou art sensible in nothing but": [0, 65535], "anti thou art sensible in nothing but blowes": [0, 65535], "thou art sensible in nothing but blowes and": [0, 65535], "art sensible in nothing but blowes and so": [0, 65535], "sensible in nothing but blowes and so is": [0, 65535], "in nothing but blowes and so is an": [0, 65535], "nothing but blowes and so is an asse": [0, 65535], "but blowes and so is an asse e": [0, 65535], "blowes and so is an asse e dro": [0, 65535], "and so is an asse e dro i": [0, 65535], "so is an asse e dro i am": [0, 65535], "is an asse e dro i am an": [0, 65535], "an asse e dro i am an asse": [0, 65535], "asse e dro i am an asse indeede": [0, 65535], "e dro i am an asse indeede you": [0, 65535], "dro i am an asse indeede you may": [0, 65535], "i am an asse indeede you may prooue": [0, 65535], "am an asse indeede you may prooue it": [0, 65535], "an asse indeede you may prooue it by": [0, 65535], "asse indeede you may prooue it by my": [0, 65535], "indeede you may prooue it by my long": [0, 65535], "you may prooue it by my long eares": [0, 65535], "may prooue it by my long eares i": [0, 65535], "prooue it by my long eares i haue": [0, 65535], "it by my long eares i haue serued": [0, 65535], "by my long eares i haue serued him": [0, 65535], "my long eares i haue serued him from": [0, 65535], "long eares i haue serued him from the": [0, 65535], "eares i haue serued him from the houre": [0, 65535], "i haue serued him from the houre of": [0, 65535], "haue serued him from the houre of my": [0, 65535], "serued him from the houre of my natiuitie": [0, 65535], "him from the houre of my natiuitie to": [0, 65535], "from the houre of my natiuitie to this": [0, 65535], "the houre of my natiuitie to this instant": [0, 65535], "houre of my natiuitie to this instant and": [0, 65535], "of my natiuitie to this instant and haue": [0, 65535], "my natiuitie to this instant and haue nothing": [0, 65535], "natiuitie to this instant and haue nothing at": [0, 65535], "to this instant and haue nothing at his": [0, 65535], "this instant and haue nothing at his hands": [0, 65535], "instant and haue nothing at his hands for": [0, 65535], "and haue nothing at his hands for my": [0, 65535], "haue nothing at his hands for my seruice": [0, 65535], "nothing at his hands for my seruice but": [0, 65535], "at his hands for my seruice but blowes": [0, 65535], "his hands for my seruice but blowes when": [0, 65535], "hands for my seruice but blowes when i": [0, 65535], "for my seruice but blowes when i am": [0, 65535], "my seruice but blowes when i am cold": [0, 65535], "seruice but blowes when i am cold he": [0, 65535], "but blowes when i am cold he heates": [0, 65535], "blowes when i am cold he heates me": [0, 65535], "when i am cold he heates me with": [0, 65535], "i am cold he heates me with beating": [0, 65535], "am cold he heates me with beating when": [0, 65535], "cold he heates me with beating when i": [0, 65535], "he heates me with beating when i am": [0, 65535], "heates me with beating when i am warme": [0, 65535], "me with beating when i am warme he": [0, 65535], "with beating when i am warme he cooles": [0, 65535], "beating when i am warme he cooles me": [0, 65535], "when i am warme he cooles me with": [0, 65535], "i am warme he cooles me with beating": [0, 65535], "am warme he cooles me with beating i": [0, 65535], "warme he cooles me with beating i am": [0, 65535], "he cooles me with beating i am wak'd": [0, 65535], "cooles me with beating i am wak'd with": [0, 65535], "me with beating i am wak'd with it": [0, 65535], "with beating i am wak'd with it when": [0, 65535], "beating i am wak'd with it when i": [0, 65535], "i am wak'd with it when i sleepe": [0, 65535], "am wak'd with it when i sleepe rais'd": [0, 65535], "wak'd with it when i sleepe rais'd with": [0, 65535], "with it when i sleepe rais'd with it": [0, 65535], "it when i sleepe rais'd with it when": [0, 65535], "when i sleepe rais'd with it when i": [0, 65535], "i sleepe rais'd with it when i sit": [0, 65535], "sleepe rais'd with it when i sit driuen": [0, 65535], "rais'd with it when i sit driuen out": [0, 65535], "with it when i sit driuen out of": [0, 65535], "it when i sit driuen out of doores": [0, 65535], "when i sit driuen out of doores with": [0, 65535], "i sit driuen out of doores with it": [0, 65535], "sit driuen out of doores with it when": [0, 65535], "driuen out of doores with it when i": [0, 65535], "out of doores with it when i goe": [0, 65535], "of doores with it when i goe from": [0, 65535], "doores with it when i goe from home": [0, 65535], "with it when i goe from home welcom'd": [0, 65535], "it when i goe from home welcom'd home": [0, 65535], "when i goe from home welcom'd home with": [0, 65535], "i goe from home welcom'd home with it": [0, 65535], "goe from home welcom'd home with it when": [0, 65535], "from home welcom'd home with it when i": [0, 65535], "home welcom'd home with it when i returne": [0, 65535], "welcom'd home with it when i returne nay": [0, 65535], "home with it when i returne nay i": [0, 65535], "with it when i returne nay i beare": [0, 65535], "it when i returne nay i beare it": [0, 65535], "when i returne nay i beare it on": [0, 65535], "i returne nay i beare it on my": [0, 65535], "returne nay i beare it on my shoulders": [0, 65535], "nay i beare it on my shoulders as": [0, 65535], "i beare it on my shoulders as a": [0, 65535], "beare it on my shoulders as a begger": [0, 65535], "it on my shoulders as a begger woont": [0, 65535], "on my shoulders as a begger woont her": [0, 65535], "my shoulders as a begger woont her brat": [0, 65535], "shoulders as a begger woont her brat and": [0, 65535], "as a begger woont her brat and i": [0, 65535], "a begger woont her brat and i thinke": [0, 65535], "begger woont her brat and i thinke when": [0, 65535], "woont her brat and i thinke when he": [0, 65535], "her brat and i thinke when he hath": [0, 65535], "brat and i thinke when he hath lam'd": [0, 65535], "and i thinke when he hath lam'd me": [0, 65535], "i thinke when he hath lam'd me i": [0, 65535], "thinke when he hath lam'd me i shall": [0, 65535], "when he hath lam'd me i shall begge": [0, 65535], "he hath lam'd me i shall begge with": [0, 65535], "hath lam'd me i shall begge with it": [0, 65535], "lam'd me i shall begge with it from": [0, 65535], "me i shall begge with it from doore": [0, 65535], "i shall begge with it from doore to": [0, 65535], "shall begge with it from doore to doore": [0, 65535], "begge with it from doore to doore enter": [0, 65535], "with it from doore to doore enter adriana": [0, 65535], "it from doore to doore enter adriana luciana": [0, 65535], "from doore to doore enter adriana luciana courtizan": [0, 65535], "doore to doore enter adriana luciana courtizan and": [0, 65535], "to doore enter adriana luciana courtizan and a": [0, 65535], "doore enter adriana luciana courtizan and a schoolemaster": [0, 65535], "enter adriana luciana courtizan and a schoolemaster call'd": [0, 65535], "adriana luciana courtizan and a schoolemaster call'd pinch": [0, 65535], "luciana courtizan and a schoolemaster call'd pinch ant": [0, 65535], "courtizan and a schoolemaster call'd pinch ant come": [0, 65535], "and a schoolemaster call'd pinch ant come goe": [0, 65535], "a schoolemaster call'd pinch ant come goe along": [0, 65535], "schoolemaster call'd pinch ant come goe along my": [0, 65535], "call'd pinch ant come goe along my wife": [0, 65535], "pinch ant come goe along my wife is": [0, 65535], "ant come goe along my wife is comming": [0, 65535], "come goe along my wife is comming yonder": [0, 65535], "goe along my wife is comming yonder e": [0, 65535], "along my wife is comming yonder e dro": [0, 65535], "my wife is comming yonder e dro mistris": [0, 65535], "wife is comming yonder e dro mistris respice": [0, 65535], "is comming yonder e dro mistris respice finem": [0, 65535], "comming yonder e dro mistris respice finem respect": [0, 65535], "yonder e dro mistris respice finem respect your": [0, 65535], "e dro mistris respice finem respect your end": [0, 65535], "dro mistris respice finem respect your end or": [0, 65535], "mistris respice finem respect your end or rather": [0, 65535], "respice finem respect your end or rather the": [0, 65535], "finem respect your end or rather the prophesie": [0, 65535], "respect your end or rather the prophesie like": [0, 65535], "your end or rather the prophesie like the": [0, 65535], "end or rather the prophesie like the parrat": [0, 65535], "or rather the prophesie like the parrat beware": [0, 65535], "rather the prophesie like the parrat beware the": [0, 65535], "the prophesie like the parrat beware the ropes": [0, 65535], "prophesie like the parrat beware the ropes end": [0, 65535], "like the parrat beware the ropes end anti": [0, 65535], "the parrat beware the ropes end anti wilt": [0, 65535], "parrat beware the ropes end anti wilt thou": [0, 65535], "beware the ropes end anti wilt thou still": [0, 65535], "the ropes end anti wilt thou still talke": [0, 65535], "ropes end anti wilt thou still talke beats": [0, 65535], "end anti wilt thou still talke beats dro": [0, 65535], "anti wilt thou still talke beats dro curt": [0, 65535], "wilt thou still talke beats dro curt how": [0, 65535], "thou still talke beats dro curt how say": [0, 65535], "still talke beats dro curt how say you": [0, 65535], "talke beats dro curt how say you now": [0, 65535], "beats dro curt how say you now is": [0, 65535], "dro curt how say you now is not": [0, 65535], "curt how say you now is not your": [0, 65535], "how say you now is not your husband": [0, 65535], "say you now is not your husband mad": [0, 65535], "you now is not your husband mad adri": [0, 65535], "now is not your husband mad adri his": [0, 65535], "is not your husband mad adri his inciuility": [0, 65535], "not your husband mad adri his inciuility confirmes": [0, 65535], "your husband mad adri his inciuility confirmes no": [0, 65535], "husband mad adri his inciuility confirmes no lesse": [0, 65535], "mad adri his inciuility confirmes no lesse good": [0, 65535], "adri his inciuility confirmes no lesse good doctor": [0, 65535], "his inciuility confirmes no lesse good doctor pinch": [0, 65535], "inciuility confirmes no lesse good doctor pinch you": [0, 65535], "confirmes no lesse good doctor pinch you are": [0, 65535], "no lesse good doctor pinch you are a": [0, 65535], "lesse good doctor pinch you are a coniurer": [0, 65535], "good doctor pinch you are a coniurer establish": [0, 65535], "doctor pinch you are a coniurer establish him": [0, 65535], "pinch you are a coniurer establish him in": [0, 65535], "you are a coniurer establish him in his": [0, 65535], "are a coniurer establish him in his true": [0, 65535], "a coniurer establish him in his true sence": [0, 65535], "coniurer establish him in his true sence againe": [0, 65535], "establish him in his true sence againe and": [0, 65535], "him in his true sence againe and i": [0, 65535], "in his true sence againe and i will": [0, 65535], "his true sence againe and i will please": [0, 65535], "true sence againe and i will please you": [0, 65535], "sence againe and i will please you what": [0, 65535], "againe and i will please you what you": [0, 65535], "and i will please you what you will": [0, 65535], "i will please you what you will demand": [0, 65535], "will please you what you will demand luc": [0, 65535], "please you what you will demand luc alas": [0, 65535], "you what you will demand luc alas how": [0, 65535], "what you will demand luc alas how fiery": [0, 65535], "you will demand luc alas how fiery and": [0, 65535], "will demand luc alas how fiery and how": [0, 65535], "demand luc alas how fiery and how sharpe": [0, 65535], "luc alas how fiery and how sharpe he": [0, 65535], "alas how fiery and how sharpe he lookes": [0, 65535], "how fiery and how sharpe he lookes cur": [0, 65535], "fiery and how sharpe he lookes cur marke": [0, 65535], "and how sharpe he lookes cur marke how": [0, 65535], "how sharpe he lookes cur marke how he": [0, 65535], "sharpe he lookes cur marke how he trembles": [0, 65535], "he lookes cur marke how he trembles in": [0, 65535], "lookes cur marke how he trembles in his": [0, 65535], "cur marke how he trembles in his extasie": [0, 65535], "marke how he trembles in his extasie pinch": [0, 65535], "how he trembles in his extasie pinch giue": [0, 65535], "he trembles in his extasie pinch giue me": [0, 65535], "trembles in his extasie pinch giue me your": [0, 65535], "in his extasie pinch giue me your hand": [0, 65535], "his extasie pinch giue me your hand and": [0, 65535], "extasie pinch giue me your hand and let": [0, 65535], "pinch giue me your hand and let mee": [0, 65535], "giue me your hand and let mee feele": [0, 65535], "me your hand and let mee feele your": [0, 65535], "your hand and let mee feele your pulse": [0, 65535], "hand and let mee feele your pulse ant": [0, 65535], "and let mee feele your pulse ant there": [0, 65535], "let mee feele your pulse ant there is": [0, 65535], "mee feele your pulse ant there is my": [0, 65535], "feele your pulse ant there is my hand": [0, 65535], "your pulse ant there is my hand and": [0, 65535], "pulse ant there is my hand and let": [0, 65535], "ant there is my hand and let it": [0, 65535], "there is my hand and let it feele": [0, 65535], "is my hand and let it feele your": [0, 65535], "my hand and let it feele your eare": [0, 65535], "hand and let it feele your eare pinch": [0, 65535], "and let it feele your eare pinch i": [0, 65535], "let it feele your eare pinch i charge": [0, 65535], "it feele your eare pinch i charge thee": [0, 65535], "feele your eare pinch i charge thee sathan": [0, 65535], "your eare pinch i charge thee sathan hous'd": [0, 65535], "eare pinch i charge thee sathan hous'd within": [0, 65535], "pinch i charge thee sathan hous'd within this": [0, 65535], "i charge thee sathan hous'd within this man": [0, 65535], "charge thee sathan hous'd within this man to": [0, 65535], "thee sathan hous'd within this man to yeeld": [0, 65535], "sathan hous'd within this man to yeeld possession": [0, 65535], "hous'd within this man to yeeld possession to": [0, 65535], "within this man to yeeld possession to my": [0, 65535], "this man to yeeld possession to my holie": [0, 65535], "man to yeeld possession to my holie praiers": [0, 65535], "to yeeld possession to my holie praiers and": [0, 65535], "yeeld possession to my holie praiers and to": [0, 65535], "possession to my holie praiers and to thy": [0, 65535], "to my holie praiers and to thy state": [0, 65535], "my holie praiers and to thy state of": [0, 65535], "holie praiers and to thy state of darknesse": [0, 65535], "praiers and to thy state of darknesse hie": [0, 65535], "and to thy state of darknesse hie thee": [0, 65535], "to thy state of darknesse hie thee straight": [0, 65535], "thy state of darknesse hie thee straight i": [0, 65535], "state of darknesse hie thee straight i coniure": [0, 65535], "of darknesse hie thee straight i coniure thee": [0, 65535], "darknesse hie thee straight i coniure thee by": [0, 65535], "hie thee straight i coniure thee by all": [0, 65535], "thee straight i coniure thee by all the": [0, 65535], "straight i coniure thee by all the saints": [0, 65535], "i coniure thee by all the saints in": [0, 65535], "coniure thee by all the saints in heauen": [0, 65535], "thee by all the saints in heauen anti": [0, 65535], "by all the saints in heauen anti peace": [0, 65535], "all the saints in heauen anti peace doting": [0, 65535], "the saints in heauen anti peace doting wizard": [0, 65535], "saints in heauen anti peace doting wizard peace": [0, 65535], "in heauen anti peace doting wizard peace i": [0, 65535], "heauen anti peace doting wizard peace i am": [0, 65535], "anti peace doting wizard peace i am not": [0, 65535], "peace doting wizard peace i am not mad": [0, 65535], "doting wizard peace i am not mad adr": [0, 65535], "wizard peace i am not mad adr oh": [0, 65535], "peace i am not mad adr oh that": [0, 65535], "i am not mad adr oh that thou": [0, 65535], "am not mad adr oh that thou wer't": [0, 65535], "not mad adr oh that thou wer't not": [0, 65535], "mad adr oh that thou wer't not poore": [0, 65535], "adr oh that thou wer't not poore distressed": [0, 65535], "oh that thou wer't not poore distressed soule": [0, 65535], "that thou wer't not poore distressed soule anti": [0, 65535], "thou wer't not poore distressed soule anti you": [0, 65535], "wer't not poore distressed soule anti you minion": [0, 65535], "not poore distressed soule anti you minion you": [0, 65535], "poore distressed soule anti you minion you are": [0, 65535], "distressed soule anti you minion you are these": [0, 65535], "soule anti you minion you are these your": [0, 65535], "anti you minion you are these your customers": [0, 65535], "you minion you are these your customers did": [0, 65535], "minion you are these your customers did this": [0, 65535], "you are these your customers did this companion": [0, 65535], "are these your customers did this companion with": [0, 65535], "these your customers did this companion with the": [0, 65535], "your customers did this companion with the saffron": [0, 65535], "customers did this companion with the saffron face": [0, 65535], "did this companion with the saffron face reuell": [0, 65535], "this companion with the saffron face reuell and": [0, 65535], "companion with the saffron face reuell and feast": [0, 65535], "with the saffron face reuell and feast it": [0, 65535], "the saffron face reuell and feast it at": [0, 65535], "saffron face reuell and feast it at my": [0, 65535], "face reuell and feast it at my house": [0, 65535], "reuell and feast it at my house to": [0, 65535], "and feast it at my house to day": [0, 65535], "feast it at my house to day whil'st": [0, 65535], "it at my house to day whil'st vpon": [0, 65535], "at my house to day whil'st vpon me": [0, 65535], "my house to day whil'st vpon me the": [0, 65535], "house to day whil'st vpon me the guiltie": [0, 65535], "to day whil'st vpon me the guiltie doores": [0, 65535], "day whil'st vpon me the guiltie doores were": [0, 65535], "whil'st vpon me the guiltie doores were shut": [0, 65535], "vpon me the guiltie doores were shut and": [0, 65535], "me the guiltie doores were shut and i": [0, 65535], "the guiltie doores were shut and i denied": [0, 65535], "guiltie doores were shut and i denied to": [0, 65535], "doores were shut and i denied to enter": [0, 65535], "were shut and i denied to enter in": [0, 65535], "shut and i denied to enter in my": [0, 65535], "and i denied to enter in my house": [0, 65535], "i denied to enter in my house adr": [0, 65535], "denied to enter in my house adr o": [0, 65535], "to enter in my house adr o husband": [0, 65535], "enter in my house adr o husband god": [0, 65535], "in my house adr o husband god doth": [0, 65535], "my house adr o husband god doth know": [0, 65535], "house adr o husband god doth know you": [0, 65535], "adr o husband god doth know you din'd": [0, 65535], "o husband god doth know you din'd at": [0, 65535], "husband god doth know you din'd at home": [0, 65535], "god doth know you din'd at home where": [0, 65535], "doth know you din'd at home where would": [0, 65535], "know you din'd at home where would you": [0, 65535], "you din'd at home where would you had": [0, 65535], "din'd at home where would you had remain'd": [0, 65535], "at home where would you had remain'd vntill": [0, 65535], "home where would you had remain'd vntill this": [0, 65535], "where would you had remain'd vntill this time": [0, 65535], "would you had remain'd vntill this time free": [0, 65535], "you had remain'd vntill this time free from": [0, 65535], "had remain'd vntill this time free from these": [0, 65535], "remain'd vntill this time free from these slanders": [0, 65535], "vntill this time free from these slanders and": [0, 65535], "this time free from these slanders and this": [0, 65535], "time free from these slanders and this open": [0, 65535], "free from these slanders and this open shame": [0, 65535], "from these slanders and this open shame anti": [0, 65535], "these slanders and this open shame anti din'd": [0, 65535], "slanders and this open shame anti din'd at": [0, 65535], "and this open shame anti din'd at home": [0, 65535], "this open shame anti din'd at home thou": [0, 65535], "open shame anti din'd at home thou villaine": [0, 65535], "shame anti din'd at home thou villaine what": [0, 65535], "anti din'd at home thou villaine what sayest": [0, 65535], "din'd at home thou villaine what sayest thou": [0, 65535], "at home thou villaine what sayest thou dro": [0, 65535], "home thou villaine what sayest thou dro sir": [0, 65535], "thou villaine what sayest thou dro sir sooth": [0, 65535], "villaine what sayest thou dro sir sooth to": [0, 65535], "what sayest thou dro sir sooth to say": [0, 65535], "sayest thou dro sir sooth to say you": [0, 65535], "thou dro sir sooth to say you did": [0, 65535], "dro sir sooth to say you did not": [0, 65535], "sir sooth to say you did not dine": [0, 65535], "sooth to say you did not dine at": [0, 65535], "to say you did not dine at home": [0, 65535], "say you did not dine at home ant": [0, 65535], "you did not dine at home ant were": [0, 65535], "did not dine at home ant were not": [0, 65535], "not dine at home ant were not my": [0, 65535], "dine at home ant were not my doores": [0, 65535], "at home ant were not my doores lockt": [0, 65535], "home ant were not my doores lockt vp": [0, 65535], "ant were not my doores lockt vp and": [0, 65535], "were not my doores lockt vp and i": [0, 65535], "not my doores lockt vp and i shut": [0, 65535], "my doores lockt vp and i shut out": [0, 65535], "doores lockt vp and i shut out dro": [0, 65535], "lockt vp and i shut out dro perdie": [0, 65535], "vp and i shut out dro perdie your": [0, 65535], "and i shut out dro perdie your doores": [0, 65535], "i shut out dro perdie your doores were": [0, 65535], "shut out dro perdie your doores were lockt": [0, 65535], "out dro perdie your doores were lockt and": [0, 65535], "dro perdie your doores were lockt and you": [0, 65535], "perdie your doores were lockt and you shut": [0, 65535], "your doores were lockt and you shut out": [0, 65535], "doores were lockt and you shut out anti": [0, 65535], "were lockt and you shut out anti and": [0, 65535], "lockt and you shut out anti and did": [0, 65535], "and you shut out anti and did not": [0, 65535], "you shut out anti and did not she": [0, 65535], "shut out anti and did not she her": [0, 65535], "out anti and did not she her selfe": [0, 65535], "anti and did not she her selfe reuile": [0, 65535], "and did not she her selfe reuile me": [0, 65535], "did not she her selfe reuile me there": [0, 65535], "not she her selfe reuile me there dro": [0, 65535], "she her selfe reuile me there dro sans": [0, 65535], "her selfe reuile me there dro sans fable": [0, 65535], "selfe reuile me there dro sans fable she": [0, 65535], "reuile me there dro sans fable she her": [0, 65535], "me there dro sans fable she her selfe": [0, 65535], "there dro sans fable she her selfe reuil'd": [0, 65535], "dro sans fable she her selfe reuil'd you": [0, 65535], "sans fable she her selfe reuil'd you there": [0, 65535], "fable she her selfe reuil'd you there anti": [0, 65535], "she her selfe reuil'd you there anti did": [0, 65535], "her selfe reuil'd you there anti did not": [0, 65535], "selfe reuil'd you there anti did not her": [0, 65535], "reuil'd you there anti did not her kitchen": [0, 65535], "you there anti did not her kitchen maide": [0, 65535], "there anti did not her kitchen maide raile": [0, 65535], "anti did not her kitchen maide raile taunt": [0, 65535], "did not her kitchen maide raile taunt and": [0, 65535], "not her kitchen maide raile taunt and scorne": [0, 65535], "her kitchen maide raile taunt and scorne me": [0, 65535], "kitchen maide raile taunt and scorne me dro": [0, 65535], "maide raile taunt and scorne me dro certis": [0, 65535], "raile taunt and scorne me dro certis she": [0, 65535], "taunt and scorne me dro certis she did": [0, 65535], "and scorne me dro certis she did the": [0, 65535], "scorne me dro certis she did the kitchin": [0, 65535], "me dro certis she did the kitchin vestall": [0, 65535], "dro certis she did the kitchin vestall scorn'd": [0, 65535], "certis she did the kitchin vestall scorn'd you": [0, 65535], "she did the kitchin vestall scorn'd you ant": [0, 65535], "did the kitchin vestall scorn'd you ant and": [0, 65535], "the kitchin vestall scorn'd you ant and did": [0, 65535], "kitchin vestall scorn'd you ant and did not": [0, 65535], "vestall scorn'd you ant and did not i": [0, 65535], "scorn'd you ant and did not i in": [0, 65535], "you ant and did not i in rage": [0, 65535], "ant and did not i in rage depart": [0, 65535], "and did not i in rage depart from": [0, 65535], "did not i in rage depart from thence": [0, 65535], "not i in rage depart from thence dro": [0, 65535], "i in rage depart from thence dro in": [0, 65535], "in rage depart from thence dro in veritie": [0, 65535], "rage depart from thence dro in veritie you": [0, 65535], "depart from thence dro in veritie you did": [0, 65535], "from thence dro in veritie you did my": [0, 65535], "thence dro in veritie you did my bones": [0, 65535], "dro in veritie you did my bones beares": [0, 65535], "in veritie you did my bones beares witnesse": [0, 65535], "veritie you did my bones beares witnesse that": [0, 65535], "you did my bones beares witnesse that since": [0, 65535], "did my bones beares witnesse that since haue": [0, 65535], "my bones beares witnesse that since haue felt": [0, 65535], "bones beares witnesse that since haue felt the": [0, 65535], "beares witnesse that since haue felt the vigor": [0, 65535], "witnesse that since haue felt the vigor of": [0, 65535], "that since haue felt the vigor of his": [0, 65535], "since haue felt the vigor of his rage": [0, 65535], "haue felt the vigor of his rage adr": [0, 65535], "felt the vigor of his rage adr is't": [0, 65535], "the vigor of his rage adr is't good": [0, 65535], "vigor of his rage adr is't good to": [0, 65535], "of his rage adr is't good to sooth": [0, 65535], "his rage adr is't good to sooth him": [0, 65535], "rage adr is't good to sooth him in": [0, 65535], "adr is't good to sooth him in these": [0, 65535], "is't good to sooth him in these contraries": [0, 65535], "good to sooth him in these contraries pinch": [0, 65535], "to sooth him in these contraries pinch it": [0, 65535], "sooth him in these contraries pinch it is": [0, 65535], "him in these contraries pinch it is no": [0, 65535], "in these contraries pinch it is no shame": [0, 65535], "these contraries pinch it is no shame the": [0, 65535], "contraries pinch it is no shame the fellow": [0, 65535], "pinch it is no shame the fellow finds": [0, 65535], "it is no shame the fellow finds his": [0, 65535], "is no shame the fellow finds his vaine": [0, 65535], "no shame the fellow finds his vaine and": [0, 65535], "shame the fellow finds his vaine and yeelding": [0, 65535], "the fellow finds his vaine and yeelding to": [0, 65535], "fellow finds his vaine and yeelding to him": [0, 65535], "finds his vaine and yeelding to him humors": [0, 65535], "his vaine and yeelding to him humors well": [0, 65535], "vaine and yeelding to him humors well his": [0, 65535], "and yeelding to him humors well his frensie": [0, 65535], "yeelding to him humors well his frensie ant": [0, 65535], "to him humors well his frensie ant thou": [0, 65535], "him humors well his frensie ant thou hast": [0, 65535], "humors well his frensie ant thou hast subborn'd": [0, 65535], "well his frensie ant thou hast subborn'd the": [0, 65535], "his frensie ant thou hast subborn'd the goldsmith": [0, 65535], "frensie ant thou hast subborn'd the goldsmith to": [0, 65535], "ant thou hast subborn'd the goldsmith to arrest": [0, 65535], "thou hast subborn'd the goldsmith to arrest mee": [0, 65535], "hast subborn'd the goldsmith to arrest mee adr": [0, 65535], "subborn'd the goldsmith to arrest mee adr alas": [0, 65535], "the goldsmith to arrest mee adr alas i": [0, 65535], "goldsmith to arrest mee adr alas i sent": [0, 65535], "to arrest mee adr alas i sent you": [0, 65535], "arrest mee adr alas i sent you monie": [0, 65535], "mee adr alas i sent you monie to": [0, 65535], "adr alas i sent you monie to redeeme": [0, 65535], "alas i sent you monie to redeeme you": [0, 65535], "i sent you monie to redeeme you by": [0, 65535], "sent you monie to redeeme you by dromio": [0, 65535], "you monie to redeeme you by dromio heere": [0, 65535], "monie to redeeme you by dromio heere who": [0, 65535], "to redeeme you by dromio heere who came": [0, 65535], "redeeme you by dromio heere who came in": [0, 65535], "you by dromio heere who came in hast": [0, 65535], "by dromio heere who came in hast for": [0, 65535], "dromio heere who came in hast for it": [0, 65535], "heere who came in hast for it dro": [0, 65535], "who came in hast for it dro monie": [0, 65535], "came in hast for it dro monie by": [0, 65535], "in hast for it dro monie by me": [0, 65535], "hast for it dro monie by me heart": [0, 65535], "for it dro monie by me heart and": [0, 65535], "it dro monie by me heart and good": [0, 65535], "dro monie by me heart and good will": [0, 65535], "monie by me heart and good will you": [0, 65535], "by me heart and good will you might": [0, 65535], "me heart and good will you might but": [0, 65535], "heart and good will you might but surely": [0, 65535], "and good will you might but surely master": [0, 65535], "good will you might but surely master not": [0, 65535], "will you might but surely master not a": [0, 65535], "you might but surely master not a ragge": [0, 65535], "might but surely master not a ragge of": [0, 65535], "but surely master not a ragge of monie": [0, 65535], "surely master not a ragge of monie ant": [0, 65535], "master not a ragge of monie ant wentst": [0, 65535], "not a ragge of monie ant wentst not": [0, 65535], "a ragge of monie ant wentst not thou": [0, 65535], "ragge of monie ant wentst not thou to": [0, 65535], "of monie ant wentst not thou to her": [0, 65535], "monie ant wentst not thou to her for": [0, 65535], "ant wentst not thou to her for a": [0, 65535], "wentst not thou to her for a purse": [0, 65535], "not thou to her for a purse of": [0, 65535], "thou to her for a purse of duckets": [0, 65535], "to her for a purse of duckets adri": [0, 65535], "her for a purse of duckets adri he": [0, 65535], "for a purse of duckets adri he came": [0, 65535], "a purse of duckets adri he came to": [0, 65535], "purse of duckets adri he came to me": [0, 65535], "of duckets adri he came to me and": [0, 65535], "duckets adri he came to me and i": [0, 65535], "adri he came to me and i deliuer'd": [0, 65535], "he came to me and i deliuer'd it": [0, 65535], "came to me and i deliuer'd it luci": [0, 65535], "to me and i deliuer'd it luci and": [0, 65535], "me and i deliuer'd it luci and i": [0, 65535], "and i deliuer'd it luci and i am": [0, 65535], "i deliuer'd it luci and i am witnesse": [0, 65535], "deliuer'd it luci and i am witnesse with": [0, 65535], "it luci and i am witnesse with her": [0, 65535], "luci and i am witnesse with her that": [0, 65535], "and i am witnesse with her that she": [0, 65535], "i am witnesse with her that she did": [0, 65535], "am witnesse with her that she did dro": [0, 65535], "witnesse with her that she did dro god": [0, 65535], "with her that she did dro god and": [0, 65535], "her that she did dro god and the": [0, 65535], "that she did dro god and the rope": [0, 65535], "she did dro god and the rope maker": [0, 65535], "did dro god and the rope maker beare": [0, 65535], "dro god and the rope maker beare me": [0, 65535], "god and the rope maker beare me witnesse": [0, 65535], "and the rope maker beare me witnesse that": [0, 65535], "the rope maker beare me witnesse that i": [0, 65535], "rope maker beare me witnesse that i was": [0, 65535], "maker beare me witnesse that i was sent": [0, 65535], "beare me witnesse that i was sent for": [0, 65535], "me witnesse that i was sent for nothing": [0, 65535], "witnesse that i was sent for nothing but": [0, 65535], "that i was sent for nothing but a": [0, 65535], "i was sent for nothing but a rope": [0, 65535], "was sent for nothing but a rope pinch": [0, 65535], "sent for nothing but a rope pinch mistris": [0, 65535], "for nothing but a rope pinch mistris both": [0, 65535], "nothing but a rope pinch mistris both man": [0, 65535], "but a rope pinch mistris both man and": [0, 65535], "a rope pinch mistris both man and master": [0, 65535], "rope pinch mistris both man and master is": [0, 65535], "pinch mistris both man and master is possest": [0, 65535], "mistris both man and master is possest i": [0, 65535], "both man and master is possest i know": [0, 65535], "man and master is possest i know it": [0, 65535], "and master is possest i know it by": [0, 65535], "master is possest i know it by their": [0, 65535], "is possest i know it by their pale": [0, 65535], "possest i know it by their pale and": [0, 65535], "i know it by their pale and deadly": [0, 65535], "know it by their pale and deadly lookes": [0, 65535], "it by their pale and deadly lookes they": [0, 65535], "by their pale and deadly lookes they must": [0, 65535], "their pale and deadly lookes they must be": [0, 65535], "pale and deadly lookes they must be bound": [0, 65535], "and deadly lookes they must be bound and": [0, 65535], "deadly lookes they must be bound and laide": [0, 65535], "lookes they must be bound and laide in": [0, 65535], "they must be bound and laide in some": [0, 65535], "must be bound and laide in some darke": [0, 65535], "be bound and laide in some darke roome": [0, 65535], "bound and laide in some darke roome ant": [0, 65535], "and laide in some darke roome ant say": [0, 65535], "laide in some darke roome ant say wherefore": [0, 65535], "in some darke roome ant say wherefore didst": [0, 65535], "some darke roome ant say wherefore didst thou": [0, 65535], "darke roome ant say wherefore didst thou locke": [0, 65535], "roome ant say wherefore didst thou locke me": [0, 65535], "ant say wherefore didst thou locke me forth": [0, 65535], "say wherefore didst thou locke me forth to": [0, 65535], "wherefore didst thou locke me forth to day": [0, 65535], "didst thou locke me forth to day and": [0, 65535], "thou locke me forth to day and why": [0, 65535], "locke me forth to day and why dost": [0, 65535], "me forth to day and why dost thou": [0, 65535], "forth to day and why dost thou denie": [0, 65535], "to day and why dost thou denie the": [0, 65535], "day and why dost thou denie the bagge": [0, 65535], "and why dost thou denie the bagge of": [0, 65535], "why dost thou denie the bagge of gold": [0, 65535], "dost thou denie the bagge of gold adr": [0, 65535], "thou denie the bagge of gold adr i": [0, 65535], "denie the bagge of gold adr i did": [0, 65535], "the bagge of gold adr i did not": [0, 65535], "bagge of gold adr i did not gentle": [0, 65535], "of gold adr i did not gentle husband": [0, 65535], "gold adr i did not gentle husband locke": [0, 65535], "adr i did not gentle husband locke thee": [0, 65535], "i did not gentle husband locke thee forth": [0, 65535], "did not gentle husband locke thee forth dro": [0, 65535], "not gentle husband locke thee forth dro and": [0, 65535], "gentle husband locke thee forth dro and gentle": [0, 65535], "husband locke thee forth dro and gentle mr": [0, 65535], "locke thee forth dro and gentle mr i": [0, 65535], "thee forth dro and gentle mr i receiu'd": [0, 65535], "forth dro and gentle mr i receiu'd no": [0, 65535], "dro and gentle mr i receiu'd no gold": [0, 65535], "and gentle mr i receiu'd no gold but": [0, 65535], "gentle mr i receiu'd no gold but i": [0, 65535], "mr i receiu'd no gold but i confesse": [0, 65535], "i receiu'd no gold but i confesse sir": [0, 65535], "receiu'd no gold but i confesse sir that": [0, 65535], "no gold but i confesse sir that we": [0, 65535], "gold but i confesse sir that we were": [0, 65535], "but i confesse sir that we were lock'd": [0, 65535], "i confesse sir that we were lock'd out": [0, 65535], "confesse sir that we were lock'd out adr": [0, 65535], "sir that we were lock'd out adr dissembling": [0, 65535], "that we were lock'd out adr dissembling villain": [0, 65535], "we were lock'd out adr dissembling villain thou": [0, 65535], "were lock'd out adr dissembling villain thou speak'st": [0, 65535], "lock'd out adr dissembling villain thou speak'st false": [0, 65535], "out adr dissembling villain thou speak'st false in": [0, 65535], "adr dissembling villain thou speak'st false in both": [0, 65535], "dissembling villain thou speak'st false in both ant": [0, 65535], "villain thou speak'st false in both ant dissembling": [0, 65535], "thou speak'st false in both ant dissembling harlot": [0, 65535], "speak'st false in both ant dissembling harlot thou": [0, 65535], "false in both ant dissembling harlot thou art": [0, 65535], "in both ant dissembling harlot thou art false": [0, 65535], "both ant dissembling harlot thou art false in": [0, 65535], "ant dissembling harlot thou art false in all": [0, 65535], "dissembling harlot thou art false in all and": [0, 65535], "harlot thou art false in all and art": [0, 65535], "thou art false in all and art confederate": [0, 65535], "art false in all and art confederate with": [0, 65535], "false in all and art confederate with a": [0, 65535], "in all and art confederate with a damned": [0, 65535], "all and art confederate with a damned packe": [0, 65535], "and art confederate with a damned packe to": [0, 65535], "art confederate with a damned packe to make": [0, 65535], "confederate with a damned packe to make a": [0, 65535], "with a damned packe to make a loathsome": [0, 65535], "a damned packe to make a loathsome abiect": [0, 65535], "damned packe to make a loathsome abiect scorne": [0, 65535], "packe to make a loathsome abiect scorne of": [0, 65535], "to make a loathsome abiect scorne of me": [0, 65535], "make a loathsome abiect scorne of me but": [0, 65535], "a loathsome abiect scorne of me but with": [0, 65535], "loathsome abiect scorne of me but with these": [0, 65535], "abiect scorne of me but with these nailes": [0, 65535], "scorne of me but with these nailes ile": [0, 65535], "of me but with these nailes ile plucke": [0, 65535], "me but with these nailes ile plucke out": [0, 65535], "but with these nailes ile plucke out these": [0, 65535], "with these nailes ile plucke out these false": [0, 65535], "these nailes ile plucke out these false eyes": [0, 65535], "nailes ile plucke out these false eyes that": [0, 65535], "ile plucke out these false eyes that would": [0, 65535], "plucke out these false eyes that would behold": [0, 65535], "out these false eyes that would behold in": [0, 65535], "these false eyes that would behold in me": [0, 65535], "false eyes that would behold in me this": [0, 65535], "eyes that would behold in me this shamefull": [0, 65535], "that would behold in me this shamefull sport": [0, 65535], "would behold in me this shamefull sport enter": [0, 65535], "behold in me this shamefull sport enter three": [0, 65535], "in me this shamefull sport enter three or": [0, 65535], "me this shamefull sport enter three or foure": [0, 65535], "this shamefull sport enter three or foure and": [0, 65535], "shamefull sport enter three or foure and offer": [0, 65535], "sport enter three or foure and offer to": [0, 65535], "enter three or foure and offer to binde": [0, 65535], "three or foure and offer to binde him": [0, 65535], "or foure and offer to binde him hee": [0, 65535], "foure and offer to binde him hee striues": [0, 65535], "and offer to binde him hee striues adr": [0, 65535], "offer to binde him hee striues adr oh": [0, 65535], "to binde him hee striues adr oh binde": [0, 65535], "binde him hee striues adr oh binde him": [0, 65535], "him hee striues adr oh binde him binde": [0, 65535], "hee striues adr oh binde him binde him": [0, 65535], "striues adr oh binde him binde him let": [0, 65535], "adr oh binde him binde him let him": [0, 65535], "oh binde him binde him let him not": [0, 65535], "binde him binde him let him not come": [0, 65535], "him binde him let him not come neere": [0, 65535], "binde him let him not come neere me": [0, 65535], "him let him not come neere me pinch": [0, 65535], "let him not come neere me pinch more": [0, 65535], "him not come neere me pinch more company": [0, 65535], "not come neere me pinch more company the": [0, 65535], "come neere me pinch more company the fiend": [0, 65535], "neere me pinch more company the fiend is": [0, 65535], "me pinch more company the fiend is strong": [0, 65535], "pinch more company the fiend is strong within": [0, 65535], "more company the fiend is strong within him": [0, 65535], "company the fiend is strong within him luc": [0, 65535], "the fiend is strong within him luc aye": [0, 65535], "fiend is strong within him luc aye me": [0, 65535], "is strong within him luc aye me poore": [0, 65535], "strong within him luc aye me poore man": [0, 65535], "within him luc aye me poore man how": [0, 65535], "him luc aye me poore man how pale": [0, 65535], "luc aye me poore man how pale and": [0, 65535], "aye me poore man how pale and wan": [0, 65535], "me poore man how pale and wan he": [0, 65535], "poore man how pale and wan he looks": [0, 65535], "man how pale and wan he looks ant": [0, 65535], "how pale and wan he looks ant what": [0, 65535], "pale and wan he looks ant what will": [0, 65535], "and wan he looks ant what will you": [0, 65535], "wan he looks ant what will you murther": [0, 65535], "he looks ant what will you murther me": [0, 65535], "looks ant what will you murther me thou": [0, 65535], "ant what will you murther me thou iailor": [0, 65535], "what will you murther me thou iailor thou": [0, 65535], "will you murther me thou iailor thou i": [0, 65535], "you murther me thou iailor thou i am": [0, 65535], "murther me thou iailor thou i am thy": [0, 65535], "me thou iailor thou i am thy prisoner": [0, 65535], "thou iailor thou i am thy prisoner wilt": [0, 65535], "iailor thou i am thy prisoner wilt thou": [0, 65535], "thou i am thy prisoner wilt thou suffer": [0, 65535], "i am thy prisoner wilt thou suffer them": [0, 65535], "am thy prisoner wilt thou suffer them to": [0, 65535], "thy prisoner wilt thou suffer them to make": [0, 65535], "prisoner wilt thou suffer them to make a": [0, 65535], "wilt thou suffer them to make a rescue": [0, 65535], "thou suffer them to make a rescue offi": [0, 65535], "suffer them to make a rescue offi masters": [0, 65535], "them to make a rescue offi masters let": [0, 65535], "to make a rescue offi masters let him": [0, 65535], "make a rescue offi masters let him go": [0, 65535], "a rescue offi masters let him go he": [0, 65535], "rescue offi masters let him go he is": [0, 65535], "offi masters let him go he is my": [0, 65535], "masters let him go he is my prisoner": [0, 65535], "let him go he is my prisoner and": [0, 65535], "him go he is my prisoner and you": [0, 65535], "go he is my prisoner and you shall": [0, 65535], "he is my prisoner and you shall not": [0, 65535], "is my prisoner and you shall not haue": [0, 65535], "my prisoner and you shall not haue him": [0, 65535], "prisoner and you shall not haue him pinch": [0, 65535], "and you shall not haue him pinch go": [0, 65535], "you shall not haue him pinch go binde": [0, 65535], "shall not haue him pinch go binde this": [0, 65535], "not haue him pinch go binde this man": [0, 65535], "haue him pinch go binde this man for": [0, 65535], "him pinch go binde this man for he": [0, 65535], "pinch go binde this man for he is": [0, 65535], "go binde this man for he is franticke": [0, 65535], "binde this man for he is franticke too": [0, 65535], "this man for he is franticke too adr": [0, 65535], "man for he is franticke too adr what": [0, 65535], "for he is franticke too adr what wilt": [0, 65535], "he is franticke too adr what wilt thou": [0, 65535], "is franticke too adr what wilt thou do": [0, 65535], "franticke too adr what wilt thou do thou": [0, 65535], "too adr what wilt thou do thou peeuish": [0, 65535], "adr what wilt thou do thou peeuish officer": [0, 65535], "what wilt thou do thou peeuish officer hast": [0, 65535], "wilt thou do thou peeuish officer hast thou": [0, 65535], "thou do thou peeuish officer hast thou delight": [0, 65535], "do thou peeuish officer hast thou delight to": [0, 65535], "thou peeuish officer hast thou delight to see": [0, 65535], "peeuish officer hast thou delight to see a": [0, 65535], "officer hast thou delight to see a wretched": [0, 65535], "hast thou delight to see a wretched man": [0, 65535], "thou delight to see a wretched man do": [0, 65535], "delight to see a wretched man do outrage": [0, 65535], "to see a wretched man do outrage and": [0, 65535], "see a wretched man do outrage and displeasure": [0, 65535], "a wretched man do outrage and displeasure to": [0, 65535], "wretched man do outrage and displeasure to himselfe": [0, 65535], "man do outrage and displeasure to himselfe offi": [0, 65535], "do outrage and displeasure to himselfe offi he": [0, 65535], "outrage and displeasure to himselfe offi he is": [0, 65535], "and displeasure to himselfe offi he is my": [0, 65535], "displeasure to himselfe offi he is my prisoner": [0, 65535], "to himselfe offi he is my prisoner if": [0, 65535], "himselfe offi he is my prisoner if i": [0, 65535], "offi he is my prisoner if i let": [0, 65535], "he is my prisoner if i let him": [0, 65535], "is my prisoner if i let him go": [0, 65535], "my prisoner if i let him go the": [0, 65535], "prisoner if i let him go the debt": [0, 65535], "if i let him go the debt he": [0, 65535], "i let him go the debt he owes": [0, 65535], "let him go the debt he owes will": [0, 65535], "him go the debt he owes will be": [0, 65535], "go the debt he owes will be requir'd": [0, 65535], "the debt he owes will be requir'd of": [0, 65535], "debt he owes will be requir'd of me": [0, 65535], "he owes will be requir'd of me adr": [0, 65535], "owes will be requir'd of me adr i": [0, 65535], "will be requir'd of me adr i will": [0, 65535], "be requir'd of me adr i will discharge": [0, 65535], "requir'd of me adr i will discharge thee": [0, 65535], "of me adr i will discharge thee ere": [0, 65535], "me adr i will discharge thee ere i": [0, 65535], "adr i will discharge thee ere i go": [0, 65535], "i will discharge thee ere i go from": [0, 65535], "will discharge thee ere i go from thee": [0, 65535], "discharge thee ere i go from thee beare": [0, 65535], "thee ere i go from thee beare me": [0, 65535], "ere i go from thee beare me forthwith": [0, 65535], "i go from thee beare me forthwith vnto": [0, 65535], "go from thee beare me forthwith vnto his": [0, 65535], "from thee beare me forthwith vnto his creditor": [0, 65535], "thee beare me forthwith vnto his creditor and": [0, 65535], "beare me forthwith vnto his creditor and knowing": [0, 65535], "me forthwith vnto his creditor and knowing how": [0, 65535], "forthwith vnto his creditor and knowing how the": [0, 65535], "vnto his creditor and knowing how the debt": [0, 65535], "his creditor and knowing how the debt growes": [0, 65535], "creditor and knowing how the debt growes i": [0, 65535], "and knowing how the debt growes i will": [0, 65535], "knowing how the debt growes i will pay": [0, 65535], "how the debt growes i will pay it": [0, 65535], "the debt growes i will pay it good": [0, 65535], "debt growes i will pay it good master": [0, 65535], "growes i will pay it good master doctor": [0, 65535], "i will pay it good master doctor see": [0, 65535], "will pay it good master doctor see him": [0, 65535], "pay it good master doctor see him safe": [0, 65535], "it good master doctor see him safe conuey'd": [0, 65535], "good master doctor see him safe conuey'd home": [0, 65535], "master doctor see him safe conuey'd home to": [0, 65535], "doctor see him safe conuey'd home to my": [0, 65535], "see him safe conuey'd home to my house": [0, 65535], "him safe conuey'd home to my house oh": [0, 65535], "safe conuey'd home to my house oh most": [0, 65535], "conuey'd home to my house oh most vnhappy": [0, 65535], "home to my house oh most vnhappy day": [0, 65535], "to my house oh most vnhappy day ant": [0, 65535], "my house oh most vnhappy day ant oh": [0, 65535], "house oh most vnhappy day ant oh most": [0, 65535], "oh most vnhappy day ant oh most vnhappie": [0, 65535], "most vnhappy day ant oh most vnhappie strumpet": [0, 65535], "vnhappy day ant oh most vnhappie strumpet dro": [0, 65535], "day ant oh most vnhappie strumpet dro master": [0, 65535], "ant oh most vnhappie strumpet dro master i": [0, 65535], "oh most vnhappie strumpet dro master i am": [0, 65535], "most vnhappie strumpet dro master i am heere": [0, 65535], "vnhappie strumpet dro master i am heere entred": [0, 65535], "strumpet dro master i am heere entred in": [0, 65535], "dro master i am heere entred in bond": [0, 65535], "master i am heere entred in bond for": [0, 65535], "i am heere entred in bond for you": [0, 65535], "am heere entred in bond for you ant": [0, 65535], "heere entred in bond for you ant out": [0, 65535], "entred in bond for you ant out on": [0, 65535], "in bond for you ant out on thee": [0, 65535], "bond for you ant out on thee villaine": [0, 65535], "for you ant out on thee villaine wherefore": [0, 65535], "you ant out on thee villaine wherefore dost": [0, 65535], "ant out on thee villaine wherefore dost thou": [0, 65535], "out on thee villaine wherefore dost thou mad": [0, 65535], "on thee villaine wherefore dost thou mad mee": [0, 65535], "thee villaine wherefore dost thou mad mee dro": [0, 65535], "villaine wherefore dost thou mad mee dro will": [0, 65535], "wherefore dost thou mad mee dro will you": [0, 65535], "dost thou mad mee dro will you be": [0, 65535], "thou mad mee dro will you be bound": [0, 65535], "mad mee dro will you be bound for": [0, 65535], "mee dro will you be bound for nothing": [0, 65535], "dro will you be bound for nothing be": [0, 65535], "will you be bound for nothing be mad": [0, 65535], "you be bound for nothing be mad good": [0, 65535], "be bound for nothing be mad good master": [0, 65535], "bound for nothing be mad good master cry": [0, 65535], "for nothing be mad good master cry the": [0, 65535], "nothing be mad good master cry the diuell": [0, 65535], "be mad good master cry the diuell luc": [0, 65535], "mad good master cry the diuell luc god": [0, 65535], "good master cry the diuell luc god helpe": [0, 65535], "master cry the diuell luc god helpe poore": [0, 65535], "cry the diuell luc god helpe poore soules": [0, 65535], "the diuell luc god helpe poore soules how": [0, 65535], "diuell luc god helpe poore soules how idlely": [0, 65535], "luc god helpe poore soules how idlely doe": [0, 65535], "god helpe poore soules how idlely doe they": [0, 65535], "helpe poore soules how idlely doe they talke": [0, 65535], "poore soules how idlely doe they talke adr": [0, 65535], "soules how idlely doe they talke adr go": [0, 65535], "how idlely doe they talke adr go beare": [0, 65535], "idlely doe they talke adr go beare him": [0, 65535], "doe they talke adr go beare him hence": [0, 65535], "they talke adr go beare him hence sister": [0, 65535], "talke adr go beare him hence sister go": [0, 65535], "adr go beare him hence sister go you": [0, 65535], "go beare him hence sister go you with": [0, 65535], "beare him hence sister go you with me": [0, 65535], "him hence sister go you with me say": [0, 65535], "hence sister go you with me say now": [0, 65535], "sister go you with me say now whose": [0, 65535], "go you with me say now whose suite": [0, 65535], "you with me say now whose suite is": [0, 65535], "with me say now whose suite is he": [0, 65535], "me say now whose suite is he arrested": [0, 65535], "say now whose suite is he arrested at": [0, 65535], "now whose suite is he arrested at exeunt": [0, 65535], "whose suite is he arrested at exeunt manet": [0, 65535], "suite is he arrested at exeunt manet offic": [0, 65535], "is he arrested at exeunt manet offic adri": [0, 65535], "he arrested at exeunt manet offic adri luci": [0, 65535], "arrested at exeunt manet offic adri luci courtizan": [0, 65535], "at exeunt manet offic adri luci courtizan off": [0, 65535], "exeunt manet offic adri luci courtizan off one": [0, 65535], "manet offic adri luci courtizan off one angelo": [0, 65535], "offic adri luci courtizan off one angelo a": [0, 65535], "adri luci courtizan off one angelo a goldsmith": [0, 65535], "luci courtizan off one angelo a goldsmith do": [0, 65535], "courtizan off one angelo a goldsmith do you": [0, 65535], "off one angelo a goldsmith do you know": [0, 65535], "one angelo a goldsmith do you know him": [0, 65535], "angelo a goldsmith do you know him adr": [0, 65535], "a goldsmith do you know him adr i": [0, 65535], "goldsmith do you know him adr i know": [0, 65535], "do you know him adr i know the": [0, 65535], "you know him adr i know the man": [0, 65535], "know him adr i know the man what": [0, 65535], "him adr i know the man what is": [0, 65535], "adr i know the man what is the": [0, 65535], "i know the man what is the summe": [0, 65535], "know the man what is the summe he": [0, 65535], "the man what is the summe he owes": [0, 65535], "man what is the summe he owes off": [0, 65535], "what is the summe he owes off two": [0, 65535], "is the summe he owes off two hundred": [0, 65535], "the summe he owes off two hundred duckets": [0, 65535], "summe he owes off two hundred duckets adr": [0, 65535], "he owes off two hundred duckets adr say": [0, 65535], "owes off two hundred duckets adr say how": [0, 65535], "off two hundred duckets adr say how growes": [0, 65535], "two hundred duckets adr say how growes it": [0, 65535], "hundred duckets adr say how growes it due": [0, 65535], "duckets adr say how growes it due off": [0, 65535], "adr say how growes it due off due": [0, 65535], "say how growes it due off due for": [0, 65535], "how growes it due off due for a": [0, 65535], "growes it due off due for a chaine": [0, 65535], "it due off due for a chaine your": [0, 65535], "due off due for a chaine your husband": [0, 65535], "off due for a chaine your husband had": [0, 65535], "due for a chaine your husband had of": [0, 65535], "for a chaine your husband had of him": [0, 65535], "a chaine your husband had of him adr": [0, 65535], "chaine your husband had of him adr he": [0, 65535], "your husband had of him adr he did": [0, 65535], "husband had of him adr he did bespeake": [0, 65535], "had of him adr he did bespeake a": [0, 65535], "of him adr he did bespeake a chain": [0, 65535], "him adr he did bespeake a chain for": [0, 65535], "adr he did bespeake a chain for me": [0, 65535], "he did bespeake a chain for me but": [0, 65535], "did bespeake a chain for me but had": [0, 65535], "bespeake a chain for me but had it": [0, 65535], "a chain for me but had it not": [0, 65535], "chain for me but had it not cur": [0, 65535], "for me but had it not cur when": [0, 65535], "me but had it not cur when as": [0, 65535], "but had it not cur when as your": [0, 65535], "had it not cur when as your husband": [0, 65535], "it not cur when as your husband all": [0, 65535], "not cur when as your husband all in": [0, 65535], "cur when as your husband all in rage": [0, 65535], "when as your husband all in rage to": [0, 65535], "as your husband all in rage to day": [0, 65535], "your husband all in rage to day came": [0, 65535], "husband all in rage to day came to": [0, 65535], "all in rage to day came to my": [0, 65535], "in rage to day came to my house": [0, 65535], "rage to day came to my house and": [0, 65535], "to day came to my house and tooke": [0, 65535], "day came to my house and tooke away": [0, 65535], "came to my house and tooke away my": [0, 65535], "to my house and tooke away my ring": [0, 65535], "my house and tooke away my ring the": [0, 65535], "house and tooke away my ring the ring": [0, 65535], "and tooke away my ring the ring i": [0, 65535], "tooke away my ring the ring i saw": [0, 65535], "away my ring the ring i saw vpon": [0, 65535], "my ring the ring i saw vpon his": [0, 65535], "ring the ring i saw vpon his finger": [0, 65535], "the ring i saw vpon his finger now": [0, 65535], "ring i saw vpon his finger now straight": [0, 65535], "i saw vpon his finger now straight after": [0, 65535], "saw vpon his finger now straight after did": [0, 65535], "vpon his finger now straight after did i": [0, 65535], "his finger now straight after did i meete": [0, 65535], "finger now straight after did i meete him": [0, 65535], "now straight after did i meete him with": [0, 65535], "straight after did i meete him with a": [0, 65535], "after did i meete him with a chaine": [0, 65535], "did i meete him with a chaine adr": [0, 65535], "i meete him with a chaine adr it": [0, 65535], "meete him with a chaine adr it may": [0, 65535], "him with a chaine adr it may be": [0, 65535], "with a chaine adr it may be so": [0, 65535], "a chaine adr it may be so but": [0, 65535], "chaine adr it may be so but i": [0, 65535], "adr it may be so but i did": [0, 65535], "it may be so but i did neuer": [0, 65535], "may be so but i did neuer see": [0, 65535], "be so but i did neuer see it": [0, 65535], "so but i did neuer see it come": [0, 65535], "but i did neuer see it come iailor": [0, 65535], "i did neuer see it come iailor bring": [0, 65535], "did neuer see it come iailor bring me": [0, 65535], "neuer see it come iailor bring me where": [0, 65535], "see it come iailor bring me where the": [0, 65535], "it come iailor bring me where the goldsmith": [0, 65535], "come iailor bring me where the goldsmith is": [0, 65535], "iailor bring me where the goldsmith is i": [0, 65535], "bring me where the goldsmith is i long": [0, 65535], "me where the goldsmith is i long to": [0, 65535], "where the goldsmith is i long to know": [0, 65535], "the goldsmith is i long to know the": [0, 65535], "goldsmith is i long to know the truth": [0, 65535], "is i long to know the truth heereof": [0, 65535], "i long to know the truth heereof at": [0, 65535], "long to know the truth heereof at large": [0, 65535], "to know the truth heereof at large enter": [0, 65535], "know the truth heereof at large enter antipholus": [0, 65535], "the truth heereof at large enter antipholus siracusia": [0, 65535], "truth heereof at large enter antipholus siracusia with": [0, 65535], "heereof at large enter antipholus siracusia with his": [0, 65535], "at large enter antipholus siracusia with his rapier": [0, 65535], "large enter antipholus siracusia with his rapier drawne": [0, 65535], "enter antipholus siracusia with his rapier drawne and": [0, 65535], "antipholus siracusia with his rapier drawne and dromio": [0, 65535], "siracusia with his rapier drawne and dromio sirac": [0, 65535], "with his rapier drawne and dromio sirac luc": [0, 65535], "his rapier drawne and dromio sirac luc god": [0, 65535], "rapier drawne and dromio sirac luc god for": [0, 65535], "drawne and dromio sirac luc god for thy": [0, 65535], "and dromio sirac luc god for thy mercy": [0, 65535], "dromio sirac luc god for thy mercy they": [0, 65535], "sirac luc god for thy mercy they are": [0, 65535], "luc god for thy mercy they are loose": [0, 65535], "god for thy mercy they are loose againe": [0, 65535], "for thy mercy they are loose againe adr": [0, 65535], "thy mercy they are loose againe adr and": [0, 65535], "mercy they are loose againe adr and come": [0, 65535], "they are loose againe adr and come with": [0, 65535], "are loose againe adr and come with naked": [0, 65535], "loose againe adr and come with naked swords": [0, 65535], "againe adr and come with naked swords let's": [0, 65535], "adr and come with naked swords let's call": [0, 65535], "and come with naked swords let's call more": [0, 65535], "come with naked swords let's call more helpe": [0, 65535], "with naked swords let's call more helpe to": [0, 65535], "naked swords let's call more helpe to haue": [0, 65535], "swords let's call more helpe to haue them": [0, 65535], "let's call more helpe to haue them bound": [0, 65535], "call more helpe to haue them bound againe": [0, 65535], "more helpe to haue them bound againe runne": [0, 65535], "helpe to haue them bound againe runne all": [0, 65535], "to haue them bound againe runne all out": [0, 65535], "haue them bound againe runne all out off": [0, 65535], "them bound againe runne all out off away": [0, 65535], "bound againe runne all out off away they'l": [0, 65535], "againe runne all out off away they'l kill": [0, 65535], "runne all out off away they'l kill vs": [0, 65535], "all out off away they'l kill vs exeunt": [0, 65535], "out off away they'l kill vs exeunt omnes": [0, 65535], "off away they'l kill vs exeunt omnes as": [0, 65535], "away they'l kill vs exeunt omnes as fast": [0, 65535], "they'l kill vs exeunt omnes as fast as": [0, 65535], "kill vs exeunt omnes as fast as may": [0, 65535], "vs exeunt omnes as fast as may be": [0, 65535], "exeunt omnes as fast as may be frighted": [0, 65535], "omnes as fast as may be frighted s": [0, 65535], "as fast as may be frighted s ant": [0, 65535], "fast as may be frighted s ant i": [0, 65535], "as may be frighted s ant i see": [0, 65535], "may be frighted s ant i see these": [0, 65535], "be frighted s ant i see these witches": [0, 65535], "frighted s ant i see these witches are": [0, 65535], "s ant i see these witches are affraid": [0, 65535], "ant i see these witches are affraid of": [0, 65535], "i see these witches are affraid of swords": [0, 65535], "see these witches are affraid of swords s": [0, 65535], "these witches are affraid of swords s dro": [0, 65535], "witches are affraid of swords s dro she": [0, 65535], "are affraid of swords s dro she that": [0, 65535], "affraid of swords s dro she that would": [0, 65535], "of swords s dro she that would be": [0, 65535], "swords s dro she that would be your": [0, 65535], "s dro she that would be your wife": [0, 65535], "dro she that would be your wife now": [0, 65535], "she that would be your wife now ran": [0, 65535], "that would be your wife now ran from": [0, 65535], "would be your wife now ran from you": [0, 65535], "be your wife now ran from you ant": [0, 65535], "your wife now ran from you ant come": [0, 65535], "wife now ran from you ant come to": [0, 65535], "now ran from you ant come to the": [0, 65535], "ran from you ant come to the centaur": [0, 65535], "from you ant come to the centaur fetch": [0, 65535], "you ant come to the centaur fetch our": [0, 65535], "ant come to the centaur fetch our stuffe": [0, 65535], "come to the centaur fetch our stuffe from": [0, 65535], "to the centaur fetch our stuffe from thence": [0, 65535], "the centaur fetch our stuffe from thence i": [0, 65535], "centaur fetch our stuffe from thence i long": [0, 65535], "fetch our stuffe from thence i long that": [0, 65535], "our stuffe from thence i long that we": [0, 65535], "stuffe from thence i long that we were": [0, 65535], "from thence i long that we were safe": [0, 65535], "thence i long that we were safe and": [0, 65535], "i long that we were safe and sound": [0, 65535], "long that we were safe and sound aboord": [0, 65535], "that we were safe and sound aboord dro": [0, 65535], "we were safe and sound aboord dro faith": [0, 65535], "were safe and sound aboord dro faith stay": [0, 65535], "safe and sound aboord dro faith stay heere": [0, 65535], "and sound aboord dro faith stay heere this": [0, 65535], "sound aboord dro faith stay heere this night": [0, 65535], "aboord dro faith stay heere this night they": [0, 65535], "dro faith stay heere this night they will": [0, 65535], "faith stay heere this night they will surely": [0, 65535], "stay heere this night they will surely do": [0, 65535], "heere this night they will surely do vs": [0, 65535], "this night they will surely do vs no": [0, 65535], "night they will surely do vs no harme": [0, 65535], "they will surely do vs no harme you": [0, 65535], "will surely do vs no harme you saw": [0, 65535], "surely do vs no harme you saw they": [0, 65535], "do vs no harme you saw they speake": [0, 65535], "vs no harme you saw they speake vs": [0, 65535], "no harme you saw they speake vs faire": [0, 65535], "harme you saw they speake vs faire giue": [0, 65535], "you saw they speake vs faire giue vs": [0, 65535], "saw they speake vs faire giue vs gold": [0, 65535], "they speake vs faire giue vs gold me": [0, 65535], "speake vs faire giue vs gold me thinkes": [0, 65535], "vs faire giue vs gold me thinkes they": [0, 65535], "faire giue vs gold me thinkes they are": [0, 65535], "giue vs gold me thinkes they are such": [0, 65535], "vs gold me thinkes they are such a": [0, 65535], "gold me thinkes they are such a gentle": [0, 65535], "me thinkes they are such a gentle nation": [0, 65535], "thinkes they are such a gentle nation that": [0, 65535], "they are such a gentle nation that but": [0, 65535], "are such a gentle nation that but for": [0, 65535], "such a gentle nation that but for the": [0, 65535], "a gentle nation that but for the mountaine": [0, 65535], "gentle nation that but for the mountaine of": [0, 65535], "nation that but for the mountaine of mad": [0, 65535], "that but for the mountaine of mad flesh": [0, 65535], "but for the mountaine of mad flesh that": [0, 65535], "for the mountaine of mad flesh that claimes": [0, 65535], "the mountaine of mad flesh that claimes mariage": [0, 65535], "mountaine of mad flesh that claimes mariage of": [0, 65535], "of mad flesh that claimes mariage of me": [0, 65535], "mad flesh that claimes mariage of me i": [0, 65535], "flesh that claimes mariage of me i could": [0, 65535], "that claimes mariage of me i could finde": [0, 65535], "claimes mariage of me i could finde in": [0, 65535], "mariage of me i could finde in my": [0, 65535], "of me i could finde in my heart": [0, 65535], "me i could finde in my heart to": [0, 65535], "i could finde in my heart to stay": [0, 65535], "could finde in my heart to stay heere": [0, 65535], "finde in my heart to stay heere still": [0, 65535], "in my heart to stay heere still and": [0, 65535], "my heart to stay heere still and turne": [0, 65535], "heart to stay heere still and turne witch": [0, 65535], "to stay heere still and turne witch ant": [0, 65535], "stay heere still and turne witch ant i": [0, 65535], "heere still and turne witch ant i will": [0, 65535], "still and turne witch ant i will not": [0, 65535], "and turne witch ant i will not stay": [0, 65535], "turne witch ant i will not stay to": [0, 65535], "witch ant i will not stay to night": [0, 65535], "ant i will not stay to night for": [0, 65535], "i will not stay to night for all": [0, 65535], "will not stay to night for all the": [0, 65535], "not stay to night for all the towne": [0, 65535], "stay to night for all the towne therefore": [0, 65535], "to night for all the towne therefore away": [0, 65535], "night for all the towne therefore away to": [0, 65535], "for all the towne therefore away to get": [0, 65535], "all the towne therefore away to get our": [0, 65535], "the towne therefore away to get our stuffe": [0, 65535], "towne therefore away to get our stuffe aboord": [0, 65535], "therefore away to get our stuffe aboord exeunt": [0, 65535], "actus quartus sc\u00e6na prima enter a merchant goldsmith and": [0, 65535], "quartus sc\u00e6na prima enter a merchant goldsmith and an": [0, 65535], "sc\u00e6na prima enter a merchant goldsmith and an officer": [0, 65535], "prima enter a merchant goldsmith and an officer mar": [0, 65535], "enter a merchant goldsmith and an officer mar you": [0, 65535], "a merchant goldsmith and an officer mar you know": [0, 65535], "merchant goldsmith and an officer mar you know since": [0, 65535], "goldsmith and an officer mar you know since pentecost": [0, 65535], "and an officer mar you know since pentecost the": [0, 65535], "an officer mar you know since pentecost the sum": [0, 65535], "officer mar you know since pentecost the sum is": [0, 65535], "mar you know since pentecost the sum is due": [0, 65535], "you know since pentecost the sum is due and": [0, 65535], "know since pentecost the sum is due and since": [0, 65535], "since pentecost the sum is due and since i": [0, 65535], "pentecost the sum is due and since i haue": [0, 65535], "the sum is due and since i haue not": [0, 65535], "sum is due and since i haue not much": [0, 65535], "is due and since i haue not much importun'd": [0, 65535], "due and since i haue not much importun'd you": [0, 65535], "and since i haue not much importun'd you nor": [0, 65535], "since i haue not much importun'd you nor now": [0, 65535], "i haue not much importun'd you nor now i": [0, 65535], "haue not much importun'd you nor now i had": [0, 65535], "not much importun'd you nor now i had not": [0, 65535], "much importun'd you nor now i had not but": [0, 65535], "importun'd you nor now i had not but that": [0, 65535], "you nor now i had not but that i": [0, 65535], "nor now i had not but that i am": [0, 65535], "now i had not but that i am bound": [0, 65535], "i had not but that i am bound to": [0, 65535], "had not but that i am bound to persia": [0, 65535], "not but that i am bound to persia and": [0, 65535], "but that i am bound to persia and want": [0, 65535], "that i am bound to persia and want gilders": [0, 65535], "i am bound to persia and want gilders for": [0, 65535], "am bound to persia and want gilders for my": [0, 65535], "bound to persia and want gilders for my voyage": [0, 65535], "to persia and want gilders for my voyage therefore": [0, 65535], "persia and want gilders for my voyage therefore make": [0, 65535], "and want gilders for my voyage therefore make present": [0, 65535], "want gilders for my voyage therefore make present satisfaction": [0, 65535], "gilders for my voyage therefore make present satisfaction or": [0, 65535], "for my voyage therefore make present satisfaction or ile": [0, 65535], "my voyage therefore make present satisfaction or ile attach": [0, 65535], "voyage therefore make present satisfaction or ile attach you": [0, 65535], "therefore make present satisfaction or ile attach you by": [0, 65535], "make present satisfaction or ile attach you by this": [0, 65535], "present satisfaction or ile attach you by this officer": [0, 65535], "satisfaction or ile attach you by this officer gold": [0, 65535], "or ile attach you by this officer gold euen": [0, 65535], "ile attach you by this officer gold euen iust": [0, 65535], "attach you by this officer gold euen iust the": [0, 65535], "you by this officer gold euen iust the sum": [0, 65535], "by this officer gold euen iust the sum that": [0, 65535], "this officer gold euen iust the sum that i": [0, 65535], "officer gold euen iust the sum that i do": [0, 65535], "gold euen iust the sum that i do owe": [0, 65535], "euen iust the sum that i do owe to": [0, 65535], "iust the sum that i do owe to you": [0, 65535], "the sum that i do owe to you is": [0, 65535], "sum that i do owe to you is growing": [0, 65535], "that i do owe to you is growing to": [0, 65535], "i do owe to you is growing to me": [0, 65535], "do owe to you is growing to me by": [0, 65535], "owe to you is growing to me by antipholus": [0, 65535], "to you is growing to me by antipholus and": [0, 65535], "you is growing to me by antipholus and in": [0, 65535], "is growing to me by antipholus and in the": [0, 65535], "growing to me by antipholus and in the instant": [0, 65535], "to me by antipholus and in the instant that": [0, 65535], "me by antipholus and in the instant that i": [0, 65535], "by antipholus and in the instant that i met": [0, 65535], "antipholus and in the instant that i met with": [0, 65535], "and in the instant that i met with you": [0, 65535], "in the instant that i met with you he": [0, 65535], "the instant that i met with you he had": [0, 65535], "instant that i met with you he had of": [0, 65535], "that i met with you he had of me": [0, 65535], "i met with you he had of me a": [0, 65535], "met with you he had of me a chaine": [0, 65535], "with you he had of me a chaine at": [0, 65535], "you he had of me a chaine at fiue": [0, 65535], "he had of me a chaine at fiue a": [0, 65535], "had of me a chaine at fiue a clocke": [0, 65535], "of me a chaine at fiue a clocke i": [0, 65535], "me a chaine at fiue a clocke i shall": [0, 65535], "a chaine at fiue a clocke i shall receiue": [0, 65535], "chaine at fiue a clocke i shall receiue the": [0, 65535], "at fiue a clocke i shall receiue the money": [0, 65535], "fiue a clocke i shall receiue the money for": [0, 65535], "a clocke i shall receiue the money for the": [0, 65535], "clocke i shall receiue the money for the same": [0, 65535], "i shall receiue the money for the same pleaseth": [0, 65535], "shall receiue the money for the same pleaseth you": [0, 65535], "receiue the money for the same pleaseth you walke": [0, 65535], "the money for the same pleaseth you walke with": [0, 65535], "money for the same pleaseth you walke with me": [0, 65535], "for the same pleaseth you walke with me downe": [0, 65535], "the same pleaseth you walke with me downe to": [0, 65535], "same pleaseth you walke with me downe to his": [0, 65535], "pleaseth you walke with me downe to his house": [0, 65535], "you walke with me downe to his house i": [0, 65535], "walke with me downe to his house i will": [0, 65535], "with me downe to his house i will discharge": [0, 65535], "me downe to his house i will discharge my": [0, 65535], "downe to his house i will discharge my bond": [0, 65535], "to his house i will discharge my bond and": [0, 65535], "his house i will discharge my bond and thanke": [0, 65535], "house i will discharge my bond and thanke you": [0, 65535], "i will discharge my bond and thanke you too": [0, 65535], "will discharge my bond and thanke you too enter": [0, 65535], "discharge my bond and thanke you too enter antipholus": [0, 65535], "my bond and thanke you too enter antipholus ephes": [0, 65535], "bond and thanke you too enter antipholus ephes dromio": [0, 65535], "and thanke you too enter antipholus ephes dromio from": [0, 65535], "thanke you too enter antipholus ephes dromio from the": [0, 65535], "you too enter antipholus ephes dromio from the courtizans": [0, 65535], "too enter antipholus ephes dromio from the courtizans offi": [0, 65535], "enter antipholus ephes dromio from the courtizans offi that": [0, 65535], "antipholus ephes dromio from the courtizans offi that labour": [0, 65535], "ephes dromio from the courtizans offi that labour may": [0, 65535], "dromio from the courtizans offi that labour may you": [0, 65535], "from the courtizans offi that labour may you saue": [0, 65535], "the courtizans offi that labour may you saue see": [0, 65535], "courtizans offi that labour may you saue see where": [0, 65535], "offi that labour may you saue see where he": [0, 65535], "that labour may you saue see where he comes": [0, 65535], "labour may you saue see where he comes ant": [0, 65535], "may you saue see where he comes ant while": [0, 65535], "you saue see where he comes ant while i": [0, 65535], "saue see where he comes ant while i go": [0, 65535], "see where he comes ant while i go to": [0, 65535], "where he comes ant while i go to the": [0, 65535], "he comes ant while i go to the goldsmiths": [0, 65535], "comes ant while i go to the goldsmiths house": [0, 65535], "ant while i go to the goldsmiths house go": [0, 65535], "while i go to the goldsmiths house go thou": [0, 65535], "i go to the goldsmiths house go thou and": [0, 65535], "go to the goldsmiths house go thou and buy": [0, 65535], "to the goldsmiths house go thou and buy a": [0, 65535], "the goldsmiths house go thou and buy a ropes": [0, 65535], "goldsmiths house go thou and buy a ropes end": [0, 65535], "house go thou and buy a ropes end that": [0, 65535], "go thou and buy a ropes end that will": [0, 65535], "thou and buy a ropes end that will i": [0, 65535], "and buy a ropes end that will i bestow": [0, 65535], "buy a ropes end that will i bestow among": [0, 65535], "a ropes end that will i bestow among my": [0, 65535], "ropes end that will i bestow among my wife": [0, 65535], "end that will i bestow among my wife and": [0, 65535], "that will i bestow among my wife and their": [0, 65535], "will i bestow among my wife and their confederates": [0, 65535], "i bestow among my wife and their confederates for": [0, 65535], "bestow among my wife and their confederates for locking": [0, 65535], "among my wife and their confederates for locking me": [0, 65535], "my wife and their confederates for locking me out": [0, 65535], "wife and their confederates for locking me out of": [0, 65535], "and their confederates for locking me out of my": [0, 65535], "their confederates for locking me out of my doores": [0, 65535], "confederates for locking me out of my doores by": [0, 65535], "for locking me out of my doores by day": [0, 65535], "locking me out of my doores by day but": [0, 65535], "me out of my doores by day but soft": [0, 65535], "out of my doores by day but soft i": [0, 65535], "of my doores by day but soft i see": [0, 65535], "my doores by day but soft i see the": [0, 65535], "doores by day but soft i see the goldsmith": [0, 65535], "by day but soft i see the goldsmith get": [0, 65535], "day but soft i see the goldsmith get thee": [0, 65535], "but soft i see the goldsmith get thee gone": [0, 65535], "soft i see the goldsmith get thee gone buy": [0, 65535], "i see the goldsmith get thee gone buy thou": [0, 65535], "see the goldsmith get thee gone buy thou a": [0, 65535], "the goldsmith get thee gone buy thou a rope": [0, 65535], "goldsmith get thee gone buy thou a rope and": [0, 65535], "get thee gone buy thou a rope and bring": [0, 65535], "thee gone buy thou a rope and bring it": [0, 65535], "gone buy thou a rope and bring it home": [0, 65535], "buy thou a rope and bring it home to": [0, 65535], "thou a rope and bring it home to me": [0, 65535], "a rope and bring it home to me dro": [0, 65535], "rope and bring it home to me dro i": [0, 65535], "and bring it home to me dro i buy": [0, 65535], "bring it home to me dro i buy a": [0, 65535], "it home to me dro i buy a thousand": [0, 65535], "home to me dro i buy a thousand pound": [0, 65535], "to me dro i buy a thousand pound a": [0, 65535], "me dro i buy a thousand pound a yeare": [0, 65535], "dro i buy a thousand pound a yeare i": [0, 65535], "i buy a thousand pound a yeare i buy": [0, 65535], "buy a thousand pound a yeare i buy a": [0, 65535], "a thousand pound a yeare i buy a rope": [0, 65535], "thousand pound a yeare i buy a rope exit": [0, 65535], "pound a yeare i buy a rope exit dromio": [0, 65535], "a yeare i buy a rope exit dromio eph": [0, 65535], "yeare i buy a rope exit dromio eph ant": [0, 65535], "i buy a rope exit dromio eph ant a": [0, 65535], "buy a rope exit dromio eph ant a man": [0, 65535], "a rope exit dromio eph ant a man is": [0, 65535], "rope exit dromio eph ant a man is well": [0, 65535], "exit dromio eph ant a man is well holpe": [0, 65535], "dromio eph ant a man is well holpe vp": [0, 65535], "eph ant a man is well holpe vp that": [0, 65535], "ant a man is well holpe vp that trusts": [0, 65535], "a man is well holpe vp that trusts to": [0, 65535], "man is well holpe vp that trusts to you": [0, 65535], "is well holpe vp that trusts to you i": [0, 65535], "well holpe vp that trusts to you i promised": [0, 65535], "holpe vp that trusts to you i promised your": [0, 65535], "vp that trusts to you i promised your presence": [0, 65535], "that trusts to you i promised your presence and": [0, 65535], "trusts to you i promised your presence and the": [0, 65535], "to you i promised your presence and the chaine": [0, 65535], "you i promised your presence and the chaine but": [0, 65535], "i promised your presence and the chaine but neither": [0, 65535], "promised your presence and the chaine but neither chaine": [0, 65535], "your presence and the chaine but neither chaine nor": [0, 65535], "presence and the chaine but neither chaine nor goldsmith": [0, 65535], "and the chaine but neither chaine nor goldsmith came": [0, 65535], "the chaine but neither chaine nor goldsmith came to": [0, 65535], "chaine but neither chaine nor goldsmith came to me": [0, 65535], "but neither chaine nor goldsmith came to me belike": [0, 65535], "neither chaine nor goldsmith came to me belike you": [0, 65535], "chaine nor goldsmith came to me belike you thought": [0, 65535], "nor goldsmith came to me belike you thought our": [0, 65535], "goldsmith came to me belike you thought our loue": [0, 65535], "came to me belike you thought our loue would": [0, 65535], "to me belike you thought our loue would last": [0, 65535], "me belike you thought our loue would last too": [0, 65535], "belike you thought our loue would last too long": [0, 65535], "you thought our loue would last too long if": [0, 65535], "thought our loue would last too long if it": [0, 65535], "our loue would last too long if it were": [0, 65535], "loue would last too long if it were chain'd": [0, 65535], "would last too long if it were chain'd together": [0, 65535], "last too long if it were chain'd together and": [0, 65535], "too long if it were chain'd together and therefore": [0, 65535], "long if it were chain'd together and therefore came": [0, 65535], "if it were chain'd together and therefore came not": [0, 65535], "it were chain'd together and therefore came not gold": [0, 65535], "were chain'd together and therefore came not gold sauing": [0, 65535], "chain'd together and therefore came not gold sauing your": [0, 65535], "together and therefore came not gold sauing your merrie": [0, 65535], "and therefore came not gold sauing your merrie humor": [0, 65535], "therefore came not gold sauing your merrie humor here's": [0, 65535], "came not gold sauing your merrie humor here's the": [0, 65535], "not gold sauing your merrie humor here's the note": [0, 65535], "gold sauing your merrie humor here's the note how": [0, 65535], "sauing your merrie humor here's the note how much": [0, 65535], "your merrie humor here's the note how much your": [0, 65535], "merrie humor here's the note how much your chaine": [0, 65535], "humor here's the note how much your chaine weighs": [0, 65535], "here's the note how much your chaine weighs to": [0, 65535], "the note how much your chaine weighs to the": [0, 65535], "note how much your chaine weighs to the vtmost": [0, 65535], "how much your chaine weighs to the vtmost charect": [0, 65535], "much your chaine weighs to the vtmost charect the": [0, 65535], "your chaine weighs to the vtmost charect the finenesse": [0, 65535], "chaine weighs to the vtmost charect the finenesse of": [0, 65535], "weighs to the vtmost charect the finenesse of the": [0, 65535], "to the vtmost charect the finenesse of the gold": [0, 65535], "the vtmost charect the finenesse of the gold and": [0, 65535], "vtmost charect the finenesse of the gold and chargefull": [0, 65535], "charect the finenesse of the gold and chargefull fashion": [0, 65535], "the finenesse of the gold and chargefull fashion which": [0, 65535], "finenesse of the gold and chargefull fashion which doth": [0, 65535], "of the gold and chargefull fashion which doth amount": [0, 65535], "the gold and chargefull fashion which doth amount to": [0, 65535], "gold and chargefull fashion which doth amount to three": [0, 65535], "and chargefull fashion which doth amount to three odde": [0, 65535], "chargefull fashion which doth amount to three odde duckets": [0, 65535], "fashion which doth amount to three odde duckets more": [0, 65535], "which doth amount to three odde duckets more then": [0, 65535], "doth amount to three odde duckets more then i": [0, 65535], "amount to three odde duckets more then i stand": [0, 65535], "to three odde duckets more then i stand debted": [0, 65535], "three odde duckets more then i stand debted to": [0, 65535], "odde duckets more then i stand debted to this": [0, 65535], "duckets more then i stand debted to this gentleman": [0, 65535], "more then i stand debted to this gentleman i": [0, 65535], "then i stand debted to this gentleman i pray": [0, 65535], "i stand debted to this gentleman i pray you": [0, 65535], "stand debted to this gentleman i pray you see": [0, 65535], "debted to this gentleman i pray you see him": [0, 65535], "to this gentleman i pray you see him presently": [0, 65535], "this gentleman i pray you see him presently discharg'd": [0, 65535], "gentleman i pray you see him presently discharg'd for": [0, 65535], "i pray you see him presently discharg'd for he": [0, 65535], "pray you see him presently discharg'd for he is": [0, 65535], "you see him presently discharg'd for he is bound": [0, 65535], "see him presently discharg'd for he is bound to": [0, 65535], "him presently discharg'd for he is bound to sea": [0, 65535], "presently discharg'd for he is bound to sea and": [0, 65535], "discharg'd for he is bound to sea and stayes": [0, 65535], "for he is bound to sea and stayes but": [0, 65535], "he is bound to sea and stayes but for": [0, 65535], "is bound to sea and stayes but for it": [0, 65535], "bound to sea and stayes but for it anti": [0, 65535], "to sea and stayes but for it anti i": [0, 65535], "sea and stayes but for it anti i am": [0, 65535], "and stayes but for it anti i am not": [0, 65535], "stayes but for it anti i am not furnish'd": [0, 65535], "but for it anti i am not furnish'd with": [0, 65535], "for it anti i am not furnish'd with the": [0, 65535], "it anti i am not furnish'd with the present": [0, 65535], "anti i am not furnish'd with the present monie": [0, 65535], "i am not furnish'd with the present monie besides": [0, 65535], "am not furnish'd with the present monie besides i": [0, 65535], "not furnish'd with the present monie besides i haue": [0, 65535], "furnish'd with the present monie besides i haue some": [0, 65535], "with the present monie besides i haue some businesse": [0, 65535], "the present monie besides i haue some businesse in": [0, 65535], "present monie besides i haue some businesse in the": [0, 65535], "monie besides i haue some businesse in the towne": [0, 65535], "besides i haue some businesse in the towne good": [0, 65535], "i haue some businesse in the towne good signior": [0, 65535], "haue some businesse in the towne good signior take": [0, 65535], "some businesse in the towne good signior take the": [0, 65535], "businesse in the towne good signior take the stranger": [0, 65535], "in the towne good signior take the stranger to": [0, 65535], "the towne good signior take the stranger to my": [0, 65535], "towne good signior take the stranger to my house": [0, 65535], "good signior take the stranger to my house and": [0, 65535], "signior take the stranger to my house and with": [0, 65535], "take the stranger to my house and with you": [0, 65535], "the stranger to my house and with you take": [0, 65535], "stranger to my house and with you take the": [0, 65535], "to my house and with you take the chaine": [0, 65535], "my house and with you take the chaine and": [0, 65535], "house and with you take the chaine and bid": [0, 65535], "and with you take the chaine and bid my": [0, 65535], "with you take the chaine and bid my wife": [0, 65535], "you take the chaine and bid my wife disburse": [0, 65535], "take the chaine and bid my wife disburse the": [0, 65535], "the chaine and bid my wife disburse the summe": [0, 65535], "chaine and bid my wife disburse the summe on": [0, 65535], "and bid my wife disburse the summe on the": [0, 65535], "bid my wife disburse the summe on the receit": [0, 65535], "my wife disburse the summe on the receit thereof": [0, 65535], "wife disburse the summe on the receit thereof perchance": [0, 65535], "disburse the summe on the receit thereof perchance i": [0, 65535], "the summe on the receit thereof perchance i will": [0, 65535], "summe on the receit thereof perchance i will be": [0, 65535], "on the receit thereof perchance i will be there": [0, 65535], "the receit thereof perchance i will be there as": [0, 65535], "receit thereof perchance i will be there as soone": [0, 65535], "thereof perchance i will be there as soone as": [0, 65535], "perchance i will be there as soone as you": [0, 65535], "i will be there as soone as you gold": [0, 65535], "will be there as soone as you gold then": [0, 65535], "be there as soone as you gold then you": [0, 65535], "there as soone as you gold then you will": [0, 65535], "as soone as you gold then you will bring": [0, 65535], "soone as you gold then you will bring the": [0, 65535], "as you gold then you will bring the chaine": [0, 65535], "you gold then you will bring the chaine to": [0, 65535], "gold then you will bring the chaine to her": [0, 65535], "then you will bring the chaine to her your": [0, 65535], "you will bring the chaine to her your selfe": [0, 65535], "will bring the chaine to her your selfe anti": [0, 65535], "bring the chaine to her your selfe anti no": [0, 65535], "the chaine to her your selfe anti no beare": [0, 65535], "chaine to her your selfe anti no beare it": [0, 65535], "to her your selfe anti no beare it with": [0, 65535], "her your selfe anti no beare it with you": [0, 65535], "your selfe anti no beare it with you least": [0, 65535], "selfe anti no beare it with you least i": [0, 65535], "anti no beare it with you least i come": [0, 65535], "no beare it with you least i come not": [0, 65535], "beare it with you least i come not time": [0, 65535], "it with you least i come not time enough": [0, 65535], "with you least i come not time enough gold": [0, 65535], "you least i come not time enough gold well": [0, 65535], "least i come not time enough gold well sir": [0, 65535], "i come not time enough gold well sir i": [0, 65535], "come not time enough gold well sir i will": [0, 65535], "not time enough gold well sir i will haue": [0, 65535], "time enough gold well sir i will haue you": [0, 65535], "enough gold well sir i will haue you the": [0, 65535], "gold well sir i will haue you the chaine": [0, 65535], "well sir i will haue you the chaine about": [0, 65535], "sir i will haue you the chaine about you": [0, 65535], "i will haue you the chaine about you ant": [0, 65535], "will haue you the chaine about you ant and": [0, 65535], "haue you the chaine about you ant and if": [0, 65535], "you the chaine about you ant and if i": [0, 65535], "the chaine about you ant and if i haue": [0, 65535], "chaine about you ant and if i haue not": [0, 65535], "about you ant and if i haue not sir": [0, 65535], "you ant and if i haue not sir i": [0, 65535], "ant and if i haue not sir i hope": [0, 65535], "and if i haue not sir i hope you": [0, 65535], "if i haue not sir i hope you haue": [0, 65535], "i haue not sir i hope you haue or": [0, 65535], "haue not sir i hope you haue or else": [0, 65535], "not sir i hope you haue or else you": [0, 65535], "sir i hope you haue or else you may": [0, 65535], "i hope you haue or else you may returne": [0, 65535], "hope you haue or else you may returne without": [0, 65535], "you haue or else you may returne without your": [0, 65535], "haue or else you may returne without your money": [0, 65535], "or else you may returne without your money gold": [0, 65535], "else you may returne without your money gold nay": [0, 65535], "you may returne without your money gold nay come": [0, 65535], "may returne without your money gold nay come i": [0, 65535], "returne without your money gold nay come i pray": [0, 65535], "without your money gold nay come i pray you": [0, 65535], "your money gold nay come i pray you sir": [0, 65535], "money gold nay come i pray you sir giue": [0, 65535], "gold nay come i pray you sir giue me": [0, 65535], "nay come i pray you sir giue me the": [0, 65535], "come i pray you sir giue me the chaine": [0, 65535], "i pray you sir giue me the chaine both": [0, 65535], "pray you sir giue me the chaine both winde": [0, 65535], "you sir giue me the chaine both winde and": [0, 65535], "sir giue me the chaine both winde and tide": [0, 65535], "giue me the chaine both winde and tide stayes": [0, 65535], "me the chaine both winde and tide stayes for": [0, 65535], "the chaine both winde and tide stayes for this": [0, 65535], "chaine both winde and tide stayes for this gentleman": [0, 65535], "both winde and tide stayes for this gentleman and": [0, 65535], "winde and tide stayes for this gentleman and i": [0, 65535], "and tide stayes for this gentleman and i too": [0, 65535], "tide stayes for this gentleman and i too blame": [0, 65535], "stayes for this gentleman and i too blame haue": [0, 65535], "for this gentleman and i too blame haue held": [0, 65535], "this gentleman and i too blame haue held him": [0, 65535], "gentleman and i too blame haue held him heere": [0, 65535], "and i too blame haue held him heere too": [0, 65535], "i too blame haue held him heere too long": [0, 65535], "too blame haue held him heere too long anti": [0, 65535], "blame haue held him heere too long anti good": [0, 65535], "haue held him heere too long anti good lord": [0, 65535], "held him heere too long anti good lord you": [0, 65535], "him heere too long anti good lord you vse": [0, 65535], "heere too long anti good lord you vse this": [0, 65535], "too long anti good lord you vse this dalliance": [0, 65535], "long anti good lord you vse this dalliance to": [0, 65535], "anti good lord you vse this dalliance to excuse": [0, 65535], "good lord you vse this dalliance to excuse your": [0, 65535], "lord you vse this dalliance to excuse your breach": [0, 65535], "you vse this dalliance to excuse your breach of": [0, 65535], "vse this dalliance to excuse your breach of promise": [0, 65535], "this dalliance to excuse your breach of promise to": [0, 65535], "dalliance to excuse your breach of promise to the": [0, 65535], "to excuse your breach of promise to the porpentine": [0, 65535], "excuse your breach of promise to the porpentine i": [0, 65535], "your breach of promise to the porpentine i should": [0, 65535], "breach of promise to the porpentine i should haue": [0, 65535], "of promise to the porpentine i should haue chid": [0, 65535], "promise to the porpentine i should haue chid you": [0, 65535], "to the porpentine i should haue chid you for": [0, 65535], "the porpentine i should haue chid you for not": [0, 65535], "porpentine i should haue chid you for not bringing": [0, 65535], "i should haue chid you for not bringing it": [0, 65535], "should haue chid you for not bringing it but": [0, 65535], "haue chid you for not bringing it but like": [0, 65535], "chid you for not bringing it but like a": [0, 65535], "you for not bringing it but like a shrew": [0, 65535], "for not bringing it but like a shrew you": [0, 65535], "not bringing it but like a shrew you first": [0, 65535], "bringing it but like a shrew you first begin": [0, 65535], "it but like a shrew you first begin to": [0, 65535], "but like a shrew you first begin to brawle": [0, 65535], "like a shrew you first begin to brawle mar": [0, 65535], "a shrew you first begin to brawle mar the": [0, 65535], "shrew you first begin to brawle mar the houre": [0, 65535], "you first begin to brawle mar the houre steales": [0, 65535], "first begin to brawle mar the houre steales on": [0, 65535], "begin to brawle mar the houre steales on i": [0, 65535], "to brawle mar the houre steales on i pray": [0, 65535], "brawle mar the houre steales on i pray you": [0, 65535], "mar the houre steales on i pray you sir": [0, 65535], "the houre steales on i pray you sir dispatch": [0, 65535], "houre steales on i pray you sir dispatch gold": [0, 65535], "steales on i pray you sir dispatch gold you": [0, 65535], "on i pray you sir dispatch gold you heare": [0, 65535], "i pray you sir dispatch gold you heare how": [0, 65535], "pray you sir dispatch gold you heare how he": [0, 65535], "you sir dispatch gold you heare how he importunes": [0, 65535], "sir dispatch gold you heare how he importunes me": [0, 65535], "dispatch gold you heare how he importunes me the": [0, 65535], "gold you heare how he importunes me the chaine": [0, 65535], "you heare how he importunes me the chaine ant": [0, 65535], "heare how he importunes me the chaine ant why": [0, 65535], "how he importunes me the chaine ant why giue": [0, 65535], "he importunes me the chaine ant why giue it": [0, 65535], "importunes me the chaine ant why giue it to": [0, 65535], "me the chaine ant why giue it to my": [0, 65535], "the chaine ant why giue it to my wife": [0, 65535], "chaine ant why giue it to my wife and": [0, 65535], "ant why giue it to my wife and fetch": [0, 65535], "why giue it to my wife and fetch your": [0, 65535], "giue it to my wife and fetch your mony": [0, 65535], "it to my wife and fetch your mony gold": [0, 65535], "to my wife and fetch your mony gold come": [0, 65535], "my wife and fetch your mony gold come come": [0, 65535], "wife and fetch your mony gold come come you": [0, 65535], "and fetch your mony gold come come you know": [0, 65535], "fetch your mony gold come come you know i": [0, 65535], "your mony gold come come you know i gaue": [0, 65535], "mony gold come come you know i gaue it": [0, 65535], "gold come come you know i gaue it you": [0, 65535], "come come you know i gaue it you euen": [0, 65535], "come you know i gaue it you euen now": [0, 65535], "you know i gaue it you euen now either": [0, 65535], "know i gaue it you euen now either send": [0, 65535], "i gaue it you euen now either send the": [0, 65535], "gaue it you euen now either send the chaine": [0, 65535], "it you euen now either send the chaine or": [0, 65535], "you euen now either send the chaine or send": [0, 65535], "euen now either send the chaine or send me": [0, 65535], "now either send the chaine or send me by": [0, 65535], "either send the chaine or send me by some": [0, 65535], "send the chaine or send me by some token": [0, 65535], "the chaine or send me by some token ant": [0, 65535], "chaine or send me by some token ant fie": [0, 65535], "or send me by some token ant fie now": [0, 65535], "send me by some token ant fie now you": [0, 65535], "me by some token ant fie now you run": [0, 65535], "by some token ant fie now you run this": [0, 65535], "some token ant fie now you run this humor": [0, 65535], "token ant fie now you run this humor out": [0, 65535], "ant fie now you run this humor out of": [0, 65535], "fie now you run this humor out of breath": [0, 65535], "now you run this humor out of breath come": [0, 65535], "you run this humor out of breath come where's": [0, 65535], "run this humor out of breath come where's the": [0, 65535], "this humor out of breath come where's the chaine": [0, 65535], "humor out of breath come where's the chaine i": [0, 65535], "out of breath come where's the chaine i pray": [0, 65535], "of breath come where's the chaine i pray you": [0, 65535], "breath come where's the chaine i pray you let": [0, 65535], "come where's the chaine i pray you let me": [0, 65535], "where's the chaine i pray you let me see": [0, 65535], "the chaine i pray you let me see it": [0, 65535], "chaine i pray you let me see it mar": [0, 65535], "i pray you let me see it mar my": [0, 65535], "pray you let me see it mar my businesse": [0, 65535], "you let me see it mar my businesse cannot": [0, 65535], "let me see it mar my businesse cannot brooke": [0, 65535], "me see it mar my businesse cannot brooke this": [0, 65535], "see it mar my businesse cannot brooke this dalliance": [0, 65535], "it mar my businesse cannot brooke this dalliance good": [0, 65535], "mar my businesse cannot brooke this dalliance good sir": [0, 65535], "my businesse cannot brooke this dalliance good sir say": [0, 65535], "businesse cannot brooke this dalliance good sir say whe'r": [0, 65535], "cannot brooke this dalliance good sir say whe'r you'l": [0, 65535], "brooke this dalliance good sir say whe'r you'l answer": [0, 65535], "this dalliance good sir say whe'r you'l answer me": [0, 65535], "dalliance good sir say whe'r you'l answer me or": [0, 65535], "good sir say whe'r you'l answer me or no": [0, 65535], "sir say whe'r you'l answer me or no if": [0, 65535], "say whe'r you'l answer me or no if not": [0, 65535], "whe'r you'l answer me or no if not ile": [0, 65535], "you'l answer me or no if not ile leaue": [0, 65535], "answer me or no if not ile leaue him": [0, 65535], "me or no if not ile leaue him to": [0, 65535], "or no if not ile leaue him to the": [0, 65535], "no if not ile leaue him to the officer": [0, 65535], "if not ile leaue him to the officer ant": [0, 65535], "not ile leaue him to the officer ant i": [0, 65535], "ile leaue him to the officer ant i answer": [0, 65535], "leaue him to the officer ant i answer you": [0, 65535], "him to the officer ant i answer you what": [0, 65535], "to the officer ant i answer you what should": [0, 65535], "the officer ant i answer you what should i": [0, 65535], "officer ant i answer you what should i answer": [0, 65535], "ant i answer you what should i answer you": [0, 65535], "i answer you what should i answer you gold": [0, 65535], "answer you what should i answer you gold the": [0, 65535], "you what should i answer you gold the monie": [0, 65535], "what should i answer you gold the monie that": [0, 65535], "should i answer you gold the monie that you": [0, 65535], "i answer you gold the monie that you owe": [0, 65535], "answer you gold the monie that you owe me": [0, 65535], "you gold the monie that you owe me for": [0, 65535], "gold the monie that you owe me for the": [0, 65535], "the monie that you owe me for the chaine": [0, 65535], "monie that you owe me for the chaine ant": [0, 65535], "that you owe me for the chaine ant i": [0, 65535], "you owe me for the chaine ant i owe": [0, 65535], "owe me for the chaine ant i owe you": [0, 65535], "me for the chaine ant i owe you none": [0, 65535], "for the chaine ant i owe you none till": [0, 65535], "the chaine ant i owe you none till i": [0, 65535], "chaine ant i owe you none till i receiue": [0, 65535], "ant i owe you none till i receiue the": [0, 65535], "i owe you none till i receiue the chaine": [0, 65535], "owe you none till i receiue the chaine gold": [0, 65535], "you none till i receiue the chaine gold you": [0, 65535], "none till i receiue the chaine gold you know": [0, 65535], "till i receiue the chaine gold you know i": [0, 65535], "i receiue the chaine gold you know i gaue": [0, 65535], "receiue the chaine gold you know i gaue it": [0, 65535], "the chaine gold you know i gaue it you": [0, 65535], "chaine gold you know i gaue it you halfe": [0, 65535], "gold you know i gaue it you halfe an": [0, 65535], "you know i gaue it you halfe an houre": [0, 65535], "know i gaue it you halfe an houre since": [0, 65535], "i gaue it you halfe an houre since ant": [0, 65535], "gaue it you halfe an houre since ant you": [0, 65535], "it you halfe an houre since ant you gaue": [0, 65535], "you halfe an houre since ant you gaue me": [0, 65535], "halfe an houre since ant you gaue me none": [0, 65535], "an houre since ant you gaue me none you": [0, 65535], "houre since ant you gaue me none you wrong": [0, 65535], "since ant you gaue me none you wrong mee": [0, 65535], "ant you gaue me none you wrong mee much": [0, 65535], "you gaue me none you wrong mee much to": [0, 65535], "gaue me none you wrong mee much to say": [0, 65535], "me none you wrong mee much to say so": [0, 65535], "none you wrong mee much to say so gold": [0, 65535], "you wrong mee much to say so gold you": [0, 65535], "wrong mee much to say so gold you wrong": [0, 65535], "mee much to say so gold you wrong me": [0, 65535], "much to say so gold you wrong me more": [0, 65535], "to say so gold you wrong me more sir": [0, 65535], "say so gold you wrong me more sir in": [0, 65535], "so gold you wrong me more sir in denying": [0, 65535], "gold you wrong me more sir in denying it": [0, 65535], "you wrong me more sir in denying it consider": [0, 65535], "wrong me more sir in denying it consider how": [0, 65535], "me more sir in denying it consider how it": [0, 65535], "more sir in denying it consider how it stands": [0, 65535], "sir in denying it consider how it stands vpon": [0, 65535], "in denying it consider how it stands vpon my": [0, 65535], "denying it consider how it stands vpon my credit": [0, 65535], "it consider how it stands vpon my credit mar": [0, 65535], "consider how it stands vpon my credit mar well": [0, 65535], "how it stands vpon my credit mar well officer": [0, 65535], "it stands vpon my credit mar well officer arrest": [0, 65535], "stands vpon my credit mar well officer arrest him": [0, 65535], "vpon my credit mar well officer arrest him at": [0, 65535], "my credit mar well officer arrest him at my": [0, 65535], "credit mar well officer arrest him at my suite": [0, 65535], "mar well officer arrest him at my suite offi": [0, 65535], "well officer arrest him at my suite offi i": [0, 65535], "officer arrest him at my suite offi i do": [0, 65535], "arrest him at my suite offi i do and": [0, 65535], "him at my suite offi i do and charge": [0, 65535], "at my suite offi i do and charge you": [0, 65535], "my suite offi i do and charge you in": [0, 65535], "suite offi i do and charge you in the": [0, 65535], "offi i do and charge you in the dukes": [0, 65535], "i do and charge you in the dukes name": [0, 65535], "do and charge you in the dukes name to": [0, 65535], "and charge you in the dukes name to obey": [0, 65535], "charge you in the dukes name to obey me": [0, 65535], "you in the dukes name to obey me gold": [0, 65535], "in the dukes name to obey me gold this": [0, 65535], "the dukes name to obey me gold this touches": [0, 65535], "dukes name to obey me gold this touches me": [0, 65535], "name to obey me gold this touches me in": [0, 65535], "to obey me gold this touches me in reputation": [0, 65535], "obey me gold this touches me in reputation either": [0, 65535], "me gold this touches me in reputation either consent": [0, 65535], "gold this touches me in reputation either consent to": [0, 65535], "this touches me in reputation either consent to pay": [0, 65535], "touches me in reputation either consent to pay this": [0, 65535], "me in reputation either consent to pay this sum": [0, 65535], "in reputation either consent to pay this sum for": [0, 65535], "reputation either consent to pay this sum for me": [0, 65535], "either consent to pay this sum for me or": [0, 65535], "consent to pay this sum for me or i": [0, 65535], "to pay this sum for me or i attach": [0, 65535], "pay this sum for me or i attach you": [0, 65535], "this sum for me or i attach you by": [0, 65535], "sum for me or i attach you by this": [0, 65535], "for me or i attach you by this officer": [0, 65535], "me or i attach you by this officer ant": [0, 65535], "or i attach you by this officer ant consent": [0, 65535], "i attach you by this officer ant consent to": [0, 65535], "attach you by this officer ant consent to pay": [0, 65535], "you by this officer ant consent to pay thee": [0, 65535], "by this officer ant consent to pay thee that": [0, 65535], "this officer ant consent to pay thee that i": [0, 65535], "officer ant consent to pay thee that i neuer": [0, 65535], "ant consent to pay thee that i neuer had": [0, 65535], "consent to pay thee that i neuer had arrest": [0, 65535], "to pay thee that i neuer had arrest me": [0, 65535], "pay thee that i neuer had arrest me foolish": [0, 65535], "thee that i neuer had arrest me foolish fellow": [0, 65535], "that i neuer had arrest me foolish fellow if": [0, 65535], "i neuer had arrest me foolish fellow if thou": [0, 65535], "neuer had arrest me foolish fellow if thou dar'st": [0, 65535], "had arrest me foolish fellow if thou dar'st gold": [0, 65535], "arrest me foolish fellow if thou dar'st gold heere": [0, 65535], "me foolish fellow if thou dar'st gold heere is": [0, 65535], "foolish fellow if thou dar'st gold heere is thy": [0, 65535], "fellow if thou dar'st gold heere is thy fee": [0, 65535], "if thou dar'st gold heere is thy fee arrest": [0, 65535], "thou dar'st gold heere is thy fee arrest him": [0, 65535], "dar'st gold heere is thy fee arrest him officer": [0, 65535], "gold heere is thy fee arrest him officer i": [0, 65535], "heere is thy fee arrest him officer i would": [0, 65535], "is thy fee arrest him officer i would not": [0, 65535], "thy fee arrest him officer i would not spare": [0, 65535], "fee arrest him officer i would not spare my": [0, 65535], "arrest him officer i would not spare my brother": [0, 65535], "him officer i would not spare my brother in": [0, 65535], "officer i would not spare my brother in this": [0, 65535], "i would not spare my brother in this case": [0, 65535], "would not spare my brother in this case if": [0, 65535], "not spare my brother in this case if he": [0, 65535], "spare my brother in this case if he should": [0, 65535], "my brother in this case if he should scorne": [0, 65535], "brother in this case if he should scorne me": [0, 65535], "in this case if he should scorne me so": [0, 65535], "this case if he should scorne me so apparantly": [0, 65535], "case if he should scorne me so apparantly offic": [0, 65535], "if he should scorne me so apparantly offic i": [0, 65535], "he should scorne me so apparantly offic i do": [0, 65535], "should scorne me so apparantly offic i do arrest": [0, 65535], "scorne me so apparantly offic i do arrest you": [0, 65535], "me so apparantly offic i do arrest you sir": [0, 65535], "so apparantly offic i do arrest you sir you": [0, 65535], "apparantly offic i do arrest you sir you heare": [0, 65535], "offic i do arrest you sir you heare the": [0, 65535], "i do arrest you sir you heare the suite": [0, 65535], "do arrest you sir you heare the suite ant": [0, 65535], "arrest you sir you heare the suite ant i": [0, 65535], "you sir you heare the suite ant i do": [0, 65535], "sir you heare the suite ant i do obey": [0, 65535], "you heare the suite ant i do obey thee": [0, 65535], "heare the suite ant i do obey thee till": [0, 65535], "the suite ant i do obey thee till i": [0, 65535], "suite ant i do obey thee till i giue": [0, 65535], "ant i do obey thee till i giue thee": [0, 65535], "i do obey thee till i giue thee baile": [0, 65535], "do obey thee till i giue thee baile but": [0, 65535], "obey thee till i giue thee baile but sirrah": [0, 65535], "thee till i giue thee baile but sirrah you": [0, 65535], "till i giue thee baile but sirrah you shall": [0, 65535], "i giue thee baile but sirrah you shall buy": [0, 65535], "giue thee baile but sirrah you shall buy this": [0, 65535], "thee baile but sirrah you shall buy this sport": [0, 65535], "baile but sirrah you shall buy this sport as": [0, 65535], "but sirrah you shall buy this sport as deere": [0, 65535], "sirrah you shall buy this sport as deere as": [0, 65535], "you shall buy this sport as deere as all": [0, 65535], "shall buy this sport as deere as all the": [0, 65535], "buy this sport as deere as all the mettall": [0, 65535], "this sport as deere as all the mettall in": [0, 65535], "sport as deere as all the mettall in your": [0, 65535], "as deere as all the mettall in your shop": [0, 65535], "deere as all the mettall in your shop will": [0, 65535], "as all the mettall in your shop will answer": [0, 65535], "all the mettall in your shop will answer gold": [0, 65535], "the mettall in your shop will answer gold sir": [0, 65535], "mettall in your shop will answer gold sir sir": [0, 65535], "in your shop will answer gold sir sir i": [0, 65535], "your shop will answer gold sir sir i shall": [0, 65535], "shop will answer gold sir sir i shall haue": [0, 65535], "will answer gold sir sir i shall haue law": [0, 65535], "answer gold sir sir i shall haue law in": [0, 65535], "gold sir sir i shall haue law in ephesus": [0, 65535], "sir sir i shall haue law in ephesus to": [0, 65535], "sir i shall haue law in ephesus to your": [0, 65535], "i shall haue law in ephesus to your notorious": [0, 65535], "shall haue law in ephesus to your notorious shame": [0, 65535], "haue law in ephesus to your notorious shame i": [0, 65535], "law in ephesus to your notorious shame i doubt": [0, 65535], "in ephesus to your notorious shame i doubt it": [0, 65535], "ephesus to your notorious shame i doubt it not": [0, 65535], "to your notorious shame i doubt it not enter": [0, 65535], "your notorious shame i doubt it not enter dromio": [0, 65535], "notorious shame i doubt it not enter dromio sira": [0, 65535], "shame i doubt it not enter dromio sira from": [0, 65535], "i doubt it not enter dromio sira from the": [0, 65535], "doubt it not enter dromio sira from the bay": [0, 65535], "it not enter dromio sira from the bay dro": [0, 65535], "not enter dromio sira from the bay dro master": [0, 65535], "enter dromio sira from the bay dro master there's": [0, 65535], "dromio sira from the bay dro master there's a": [0, 65535], "sira from the bay dro master there's a barke": [0, 65535], "from the bay dro master there's a barke of": [0, 65535], "the bay dro master there's a barke of epidamium": [0, 65535], "bay dro master there's a barke of epidamium that": [0, 65535], "dro master there's a barke of epidamium that staies": [0, 65535], "master there's a barke of epidamium that staies but": [0, 65535], "there's a barke of epidamium that staies but till": [0, 65535], "a barke of epidamium that staies but till her": [0, 65535], "barke of epidamium that staies but till her owner": [0, 65535], "of epidamium that staies but till her owner comes": [0, 65535], "epidamium that staies but till her owner comes aboord": [0, 65535], "that staies but till her owner comes aboord and": [0, 65535], "staies but till her owner comes aboord and then": [0, 65535], "but till her owner comes aboord and then sir": [0, 65535], "till her owner comes aboord and then sir she": [0, 65535], "her owner comes aboord and then sir she beares": [0, 65535], "owner comes aboord and then sir she beares away": [0, 65535], "comes aboord and then sir she beares away our": [0, 65535], "aboord and then sir she beares away our fraughtage": [0, 65535], "and then sir she beares away our fraughtage sir": [0, 65535], "then sir she beares away our fraughtage sir i": [0, 65535], "sir she beares away our fraughtage sir i haue": [0, 65535], "she beares away our fraughtage sir i haue conuei'd": [0, 65535], "beares away our fraughtage sir i haue conuei'd aboord": [0, 65535], "away our fraughtage sir i haue conuei'd aboord and": [0, 65535], "our fraughtage sir i haue conuei'd aboord and i": [0, 65535], "fraughtage sir i haue conuei'd aboord and i haue": [0, 65535], "sir i haue conuei'd aboord and i haue bought": [0, 65535], "i haue conuei'd aboord and i haue bought the": [0, 65535], "haue conuei'd aboord and i haue bought the oyle": [0, 65535], "conuei'd aboord and i haue bought the oyle the": [0, 65535], "aboord and i haue bought the oyle the balsamum": [0, 65535], "and i haue bought the oyle the balsamum and": [0, 65535], "i haue bought the oyle the balsamum and aqua": [0, 65535], "haue bought the oyle the balsamum and aqua vit\u00e6": [0, 65535], "bought the oyle the balsamum and aqua vit\u00e6 the": [0, 65535], "the oyle the balsamum and aqua vit\u00e6 the ship": [0, 65535], "oyle the balsamum and aqua vit\u00e6 the ship is": [0, 65535], "the balsamum and aqua vit\u00e6 the ship is in": [0, 65535], "balsamum and aqua vit\u00e6 the ship is in her": [0, 65535], "and aqua vit\u00e6 the ship is in her trim": [0, 65535], "aqua vit\u00e6 the ship is in her trim the": [0, 65535], "vit\u00e6 the ship is in her trim the merrie": [0, 65535], "the ship is in her trim the merrie winde": [0, 65535], "ship is in her trim the merrie winde blowes": [0, 65535], "is in her trim the merrie winde blowes faire": [0, 65535], "in her trim the merrie winde blowes faire from": [0, 65535], "her trim the merrie winde blowes faire from land": [0, 65535], "trim the merrie winde blowes faire from land they": [0, 65535], "the merrie winde blowes faire from land they stay": [0, 65535], "merrie winde blowes faire from land they stay for": [0, 65535], "winde blowes faire from land they stay for nought": [0, 65535], "blowes faire from land they stay for nought at": [0, 65535], "faire from land they stay for nought at all": [0, 65535], "from land they stay for nought at all but": [0, 65535], "land they stay for nought at all but for": [0, 65535], "they stay for nought at all but for their": [0, 65535], "stay for nought at all but for their owner": [0, 65535], "for nought at all but for their owner master": [0, 65535], "nought at all but for their owner master and": [0, 65535], "at all but for their owner master and your": [0, 65535], "all but for their owner master and your selfe": [0, 65535], "but for their owner master and your selfe an": [0, 65535], "for their owner master and your selfe an how": [0, 65535], "their owner master and your selfe an how now": [0, 65535], "owner master and your selfe an how now a": [0, 65535], "master and your selfe an how now a madman": [0, 65535], "and your selfe an how now a madman why": [0, 65535], "your selfe an how now a madman why thou": [0, 65535], "selfe an how now a madman why thou peeuish": [0, 65535], "an how now a madman why thou peeuish sheep": [0, 65535], "how now a madman why thou peeuish sheep what": [0, 65535], "now a madman why thou peeuish sheep what ship": [0, 65535], "a madman why thou peeuish sheep what ship of": [0, 65535], "madman why thou peeuish sheep what ship of epidamium": [0, 65535], "why thou peeuish sheep what ship of epidamium staies": [0, 65535], "thou peeuish sheep what ship of epidamium staies for": [0, 65535], "peeuish sheep what ship of epidamium staies for me": [0, 65535], "sheep what ship of epidamium staies for me s": [0, 65535], "what ship of epidamium staies for me s dro": [0, 65535], "ship of epidamium staies for me s dro a": [0, 65535], "of epidamium staies for me s dro a ship": [0, 65535], "epidamium staies for me s dro a ship you": [0, 65535], "staies for me s dro a ship you sent": [0, 65535], "for me s dro a ship you sent me": [0, 65535], "me s dro a ship you sent me too": [0, 65535], "s dro a ship you sent me too to": [0, 65535], "dro a ship you sent me too to hier": [0, 65535], "a ship you sent me too to hier waftage": [0, 65535], "ship you sent me too to hier waftage ant": [0, 65535], "you sent me too to hier waftage ant thou": [0, 65535], "sent me too to hier waftage ant thou drunken": [0, 65535], "me too to hier waftage ant thou drunken slaue": [0, 65535], "too to hier waftage ant thou drunken slaue i": [0, 65535], "to hier waftage ant thou drunken slaue i sent": [0, 65535], "hier waftage ant thou drunken slaue i sent thee": [0, 65535], "waftage ant thou drunken slaue i sent thee for": [0, 65535], "ant thou drunken slaue i sent thee for a": [0, 65535], "thou drunken slaue i sent thee for a rope": [0, 65535], "drunken slaue i sent thee for a rope and": [0, 65535], "slaue i sent thee for a rope and told": [0, 65535], "i sent thee for a rope and told thee": [0, 65535], "sent thee for a rope and told thee to": [0, 65535], "thee for a rope and told thee to what": [0, 65535], "for a rope and told thee to what purpose": [0, 65535], "a rope and told thee to what purpose and": [0, 65535], "rope and told thee to what purpose and what": [0, 65535], "and told thee to what purpose and what end": [0, 65535], "told thee to what purpose and what end s": [0, 65535], "thee to what purpose and what end s dro": [0, 65535], "to what purpose and what end s dro you": [0, 65535], "what purpose and what end s dro you sent": [0, 65535], "purpose and what end s dro you sent me": [0, 65535], "and what end s dro you sent me for": [0, 65535], "what end s dro you sent me for a": [0, 65535], "end s dro you sent me for a ropes": [0, 65535], "s dro you sent me for a ropes end": [0, 65535], "dro you sent me for a ropes end as": [0, 65535], "you sent me for a ropes end as soone": [0, 65535], "sent me for a ropes end as soone you": [0, 65535], "me for a ropes end as soone you sent": [0, 65535], "for a ropes end as soone you sent me": [0, 65535], "a ropes end as soone you sent me to": [0, 65535], "ropes end as soone you sent me to the": [0, 65535], "end as soone you sent me to the bay": [0, 65535], "as soone you sent me to the bay sir": [0, 65535], "soone you sent me to the bay sir for": [0, 65535], "you sent me to the bay sir for a": [0, 65535], "sent me to the bay sir for a barke": [0, 65535], "me to the bay sir for a barke ant": [0, 65535], "to the bay sir for a barke ant i": [0, 65535], "the bay sir for a barke ant i will": [0, 65535], "bay sir for a barke ant i will debate": [0, 65535], "sir for a barke ant i will debate this": [0, 65535], "for a barke ant i will debate this matter": [0, 65535], "a barke ant i will debate this matter at": [0, 65535], "barke ant i will debate this matter at more": [0, 65535], "ant i will debate this matter at more leisure": [0, 65535], "i will debate this matter at more leisure and": [0, 65535], "will debate this matter at more leisure and teach": [0, 65535], "debate this matter at more leisure and teach your": [0, 65535], "this matter at more leisure and teach your eares": [0, 65535], "matter at more leisure and teach your eares to": [0, 65535], "at more leisure and teach your eares to list": [0, 65535], "more leisure and teach your eares to list me": [0, 65535], "leisure and teach your eares to list me with": [0, 65535], "and teach your eares to list me with more": [0, 65535], "teach your eares to list me with more heede": [0, 65535], "your eares to list me with more heede to": [0, 65535], "eares to list me with more heede to adriana": [0, 65535], "to list me with more heede to adriana villaine": [0, 65535], "list me with more heede to adriana villaine hie": [0, 65535], "me with more heede to adriana villaine hie thee": [0, 65535], "with more heede to adriana villaine hie thee straight": [0, 65535], "more heede to adriana villaine hie thee straight giue": [0, 65535], "heede to adriana villaine hie thee straight giue her": [0, 65535], "to adriana villaine hie thee straight giue her this": [0, 65535], "adriana villaine hie thee straight giue her this key": [0, 65535], "villaine hie thee straight giue her this key and": [0, 65535], "hie thee straight giue her this key and tell": [0, 65535], "thee straight giue her this key and tell her": [0, 65535], "straight giue her this key and tell her in": [0, 65535], "giue her this key and tell her in the": [0, 65535], "her this key and tell her in the deske": [0, 65535], "this key and tell her in the deske that's": [0, 65535], "key and tell her in the deske that's couer'd": [0, 65535], "and tell her in the deske that's couer'd o're": [0, 65535], "tell her in the deske that's couer'd o're with": [0, 65535], "her in the deske that's couer'd o're with turkish": [0, 65535], "in the deske that's couer'd o're with turkish tapistrie": [0, 65535], "the deske that's couer'd o're with turkish tapistrie there": [0, 65535], "deske that's couer'd o're with turkish tapistrie there is": [0, 65535], "that's couer'd o're with turkish tapistrie there is a": [0, 65535], "couer'd o're with turkish tapistrie there is a purse": [0, 65535], "o're with turkish tapistrie there is a purse of": [0, 65535], "with turkish tapistrie there is a purse of duckets": [0, 65535], "turkish tapistrie there is a purse of duckets let": [0, 65535], "tapistrie there is a purse of duckets let her": [0, 65535], "there is a purse of duckets let her send": [0, 65535], "is a purse of duckets let her send it": [0, 65535], "a purse of duckets let her send it tell": [0, 65535], "purse of duckets let her send it tell her": [0, 65535], "of duckets let her send it tell her i": [0, 65535], "duckets let her send it tell her i am": [0, 65535], "let her send it tell her i am arrested": [0, 65535], "her send it tell her i am arrested in": [0, 65535], "send it tell her i am arrested in the": [0, 65535], "it tell her i am arrested in the streete": [0, 65535], "tell her i am arrested in the streete and": [0, 65535], "her i am arrested in the streete and that": [0, 65535], "i am arrested in the streete and that shall": [0, 65535], "am arrested in the streete and that shall baile": [0, 65535], "arrested in the streete and that shall baile me": [0, 65535], "in the streete and that shall baile me hie": [0, 65535], "the streete and that shall baile me hie thee": [0, 65535], "streete and that shall baile me hie thee slaue": [0, 65535], "and that shall baile me hie thee slaue be": [0, 65535], "that shall baile me hie thee slaue be gone": [0, 65535], "shall baile me hie thee slaue be gone on": [0, 65535], "baile me hie thee slaue be gone on officer": [0, 65535], "me hie thee slaue be gone on officer to": [0, 65535], "hie thee slaue be gone on officer to prison": [0, 65535], "thee slaue be gone on officer to prison till": [0, 65535], "slaue be gone on officer to prison till it": [0, 65535], "be gone on officer to prison till it come": [0, 65535], "gone on officer to prison till it come exeunt": [0, 65535], "on officer to prison till it come exeunt s": [0, 65535], "officer to prison till it come exeunt s dromio": [0, 65535], "to prison till it come exeunt s dromio to": [0, 65535], "prison till it come exeunt s dromio to adriana": [0, 65535], "till it come exeunt s dromio to adriana that": [0, 65535], "it come exeunt s dromio to adriana that is": [0, 65535], "come exeunt s dromio to adriana that is where": [0, 65535], "exeunt s dromio to adriana that is where we": [0, 65535], "s dromio to adriana that is where we din'd": [0, 65535], "dromio to adriana that is where we din'd where": [0, 65535], "to adriana that is where we din'd where dowsabell": [0, 65535], "adriana that is where we din'd where dowsabell did": [0, 65535], "that is where we din'd where dowsabell did claime": [0, 65535], "is where we din'd where dowsabell did claime me": [0, 65535], "where we din'd where dowsabell did claime me for": [0, 65535], "we din'd where dowsabell did claime me for her": [0, 65535], "din'd where dowsabell did claime me for her husband": [0, 65535], "where dowsabell did claime me for her husband she": [0, 65535], "dowsabell did claime me for her husband she is": [0, 65535], "did claime me for her husband she is too": [0, 65535], "claime me for her husband she is too bigge": [0, 65535], "me for her husband she is too bigge i": [0, 65535], "for her husband she is too bigge i hope": [0, 65535], "her husband she is too bigge i hope for": [0, 65535], "husband she is too bigge i hope for me": [0, 65535], "she is too bigge i hope for me to": [0, 65535], "is too bigge i hope for me to compasse": [0, 65535], "too bigge i hope for me to compasse thither": [0, 65535], "bigge i hope for me to compasse thither i": [0, 65535], "i hope for me to compasse thither i must": [0, 65535], "hope for me to compasse thither i must although": [0, 65535], "for me to compasse thither i must although against": [0, 65535], "me to compasse thither i must although against my": [0, 65535], "to compasse thither i must although against my will": [0, 65535], "compasse thither i must although against my will for": [0, 65535], "thither i must although against my will for seruants": [0, 65535], "i must although against my will for seruants must": [0, 65535], "must although against my will for seruants must their": [0, 65535], "although against my will for seruants must their masters": [0, 65535], "against my will for seruants must their masters mindes": [0, 65535], "my will for seruants must their masters mindes fulfill": [0, 65535], "will for seruants must their masters mindes fulfill exit": [0, 65535], "for seruants must their masters mindes fulfill exit enter": [0, 65535], "seruants must their masters mindes fulfill exit enter adriana": [0, 65535], "must their masters mindes fulfill exit enter adriana and": [0, 65535], "their masters mindes fulfill exit enter adriana and luciana": [0, 65535], "masters mindes fulfill exit enter adriana and luciana adr": [0, 65535], "mindes fulfill exit enter adriana and luciana adr ah": [0, 65535], "fulfill exit enter adriana and luciana adr ah luciana": [0, 65535], "exit enter adriana and luciana adr ah luciana did": [0, 65535], "enter adriana and luciana adr ah luciana did he": [0, 65535], "adriana and luciana adr ah luciana did he tempt": [0, 65535], "and luciana adr ah luciana did he tempt thee": [0, 65535], "luciana adr ah luciana did he tempt thee so": [0, 65535], "adr ah luciana did he tempt thee so might'st": [0, 65535], "ah luciana did he tempt thee so might'st thou": [0, 65535], "luciana did he tempt thee so might'st thou perceiue": [0, 65535], "did he tempt thee so might'st thou perceiue austeerely": [0, 65535], "he tempt thee so might'st thou perceiue austeerely in": [0, 65535], "tempt thee so might'st thou perceiue austeerely in his": [0, 65535], "thee so might'st thou perceiue austeerely in his eie": [0, 65535], "so might'st thou perceiue austeerely in his eie that": [0, 65535], "might'st thou perceiue austeerely in his eie that he": [0, 65535], "thou perceiue austeerely in his eie that he did": [0, 65535], "perceiue austeerely in his eie that he did plead": [0, 65535], "austeerely in his eie that he did plead in": [0, 65535], "in his eie that he did plead in earnest": [0, 65535], "his eie that he did plead in earnest yea": [0, 65535], "eie that he did plead in earnest yea or": [0, 65535], "that he did plead in earnest yea or no": [0, 65535], "he did plead in earnest yea or no look'd": [0, 65535], "did plead in earnest yea or no look'd he": [0, 65535], "plead in earnest yea or no look'd he or": [0, 65535], "in earnest yea or no look'd he or red": [0, 65535], "earnest yea or no look'd he or red or": [0, 65535], "yea or no look'd he or red or pale": [0, 65535], "or no look'd he or red or pale or": [0, 65535], "no look'd he or red or pale or sad": [0, 65535], "look'd he or red or pale or sad or": [0, 65535], "he or red or pale or sad or merrily": [0, 65535], "or red or pale or sad or merrily what": [0, 65535], "red or pale or sad or merrily what obseruation": [0, 65535], "or pale or sad or merrily what obseruation mad'st": [0, 65535], "pale or sad or merrily what obseruation mad'st thou": [0, 65535], "or sad or merrily what obseruation mad'st thou in": [0, 65535], "sad or merrily what obseruation mad'st thou in this": [0, 65535], "or merrily what obseruation mad'st thou in this case": [0, 65535], "merrily what obseruation mad'st thou in this case oh": [0, 65535], "what obseruation mad'st thou in this case oh his": [0, 65535], "obseruation mad'st thou in this case oh his hearts": [0, 65535], "mad'st thou in this case oh his hearts meteors": [0, 65535], "thou in this case oh his hearts meteors tilting": [0, 65535], "in this case oh his hearts meteors tilting in": [0, 65535], "this case oh his hearts meteors tilting in his": [0, 65535], "case oh his hearts meteors tilting in his face": [0, 65535], "oh his hearts meteors tilting in his face luc": [0, 65535], "his hearts meteors tilting in his face luc first": [0, 65535], "hearts meteors tilting in his face luc first he": [0, 65535], "meteors tilting in his face luc first he deni'de": [0, 65535], "tilting in his face luc first he deni'de you": [0, 65535], "in his face luc first he deni'de you had": [0, 65535], "his face luc first he deni'de you had in": [0, 65535], "face luc first he deni'de you had in him": [0, 65535], "luc first he deni'de you had in him no": [0, 65535], "first he deni'de you had in him no right": [0, 65535], "he deni'de you had in him no right adr": [0, 65535], "deni'de you had in him no right adr he": [0, 65535], "you had in him no right adr he meant": [0, 65535], "had in him no right adr he meant he": [0, 65535], "in him no right adr he meant he did": [0, 65535], "him no right adr he meant he did me": [0, 65535], "no right adr he meant he did me none": [0, 65535], "right adr he meant he did me none the": [0, 65535], "adr he meant he did me none the more": [0, 65535], "he meant he did me none the more my": [0, 65535], "meant he did me none the more my spight": [0, 65535], "he did me none the more my spight luc": [0, 65535], "did me none the more my spight luc then": [0, 65535], "me none the more my spight luc then swore": [0, 65535], "none the more my spight luc then swore he": [0, 65535], "the more my spight luc then swore he that": [0, 65535], "more my spight luc then swore he that he": [0, 65535], "my spight luc then swore he that he was": [0, 65535], "spight luc then swore he that he was a": [0, 65535], "luc then swore he that he was a stranger": [0, 65535], "then swore he that he was a stranger heere": [0, 65535], "swore he that he was a stranger heere adr": [0, 65535], "he that he was a stranger heere adr and": [0, 65535], "that he was a stranger heere adr and true": [0, 65535], "he was a stranger heere adr and true he": [0, 65535], "was a stranger heere adr and true he swore": [0, 65535], "a stranger heere adr and true he swore though": [0, 65535], "stranger heere adr and true he swore though yet": [0, 65535], "heere adr and true he swore though yet forsworne": [0, 65535], "adr and true he swore though yet forsworne hee": [0, 65535], "and true he swore though yet forsworne hee were": [0, 65535], "true he swore though yet forsworne hee were luc": [0, 65535], "he swore though yet forsworne hee were luc then": [0, 65535], "swore though yet forsworne hee were luc then pleaded": [0, 65535], "though yet forsworne hee were luc then pleaded i": [0, 65535], "yet forsworne hee were luc then pleaded i for": [0, 65535], "forsworne hee were luc then pleaded i for you": [0, 65535], "hee were luc then pleaded i for you adr": [0, 65535], "were luc then pleaded i for you adr and": [0, 65535], "luc then pleaded i for you adr and what": [0, 65535], "then pleaded i for you adr and what said": [0, 65535], "pleaded i for you adr and what said he": [0, 65535], "i for you adr and what said he luc": [0, 65535], "for you adr and what said he luc that": [0, 65535], "you adr and what said he luc that loue": [0, 65535], "adr and what said he luc that loue i": [0, 65535], "and what said he luc that loue i begg'd": [0, 65535], "what said he luc that loue i begg'd for": [0, 65535], "said he luc that loue i begg'd for you": [0, 65535], "he luc that loue i begg'd for you he": [0, 65535], "luc that loue i begg'd for you he begg'd": [0, 65535], "that loue i begg'd for you he begg'd of": [0, 65535], "loue i begg'd for you he begg'd of me": [0, 65535], "i begg'd for you he begg'd of me adr": [0, 65535], "begg'd for you he begg'd of me adr with": [0, 65535], "for you he begg'd of me adr with what": [0, 65535], "you he begg'd of me adr with what perswasion": [0, 65535], "he begg'd of me adr with what perswasion did": [0, 65535], "begg'd of me adr with what perswasion did he": [0, 65535], "of me adr with what perswasion did he tempt": [0, 65535], "me adr with what perswasion did he tempt thy": [0, 65535], "adr with what perswasion did he tempt thy loue": [0, 65535], "with what perswasion did he tempt thy loue luc": [0, 65535], "what perswasion did he tempt thy loue luc with": [0, 65535], "perswasion did he tempt thy loue luc with words": [0, 65535], "did he tempt thy loue luc with words that": [0, 65535], "he tempt thy loue luc with words that in": [0, 65535], "tempt thy loue luc with words that in an": [0, 65535], "thy loue luc with words that in an honest": [0, 65535], "loue luc with words that in an honest suit": [0, 65535], "luc with words that in an honest suit might": [0, 65535], "with words that in an honest suit might moue": [0, 65535], "words that in an honest suit might moue first": [0, 65535], "that in an honest suit might moue first he": [0, 65535], "in an honest suit might moue first he did": [0, 65535], "an honest suit might moue first he did praise": [0, 65535], "honest suit might moue first he did praise my": [0, 65535], "suit might moue first he did praise my beautie": [0, 65535], "might moue first he did praise my beautie then": [0, 65535], "moue first he did praise my beautie then my": [0, 65535], "first he did praise my beautie then my speech": [0, 65535], "he did praise my beautie then my speech adr": [0, 65535], "did praise my beautie then my speech adr did'st": [0, 65535], "praise my beautie then my speech adr did'st speake": [0, 65535], "my beautie then my speech adr did'st speake him": [0, 65535], "beautie then my speech adr did'st speake him faire": [0, 65535], "then my speech adr did'st speake him faire luc": [0, 65535], "my speech adr did'st speake him faire luc haue": [0, 65535], "speech adr did'st speake him faire luc haue patience": [0, 65535], "adr did'st speake him faire luc haue patience i": [0, 65535], "did'st speake him faire luc haue patience i beseech": [0, 65535], "speake him faire luc haue patience i beseech adr": [0, 65535], "him faire luc haue patience i beseech adr i": [0, 65535], "faire luc haue patience i beseech adr i cannot": [0, 65535], "luc haue patience i beseech adr i cannot nor": [0, 65535], "haue patience i beseech adr i cannot nor i": [0, 65535], "patience i beseech adr i cannot nor i will": [0, 65535], "i beseech adr i cannot nor i will not": [0, 65535], "beseech adr i cannot nor i will not hold": [0, 65535], "adr i cannot nor i will not hold me": [0, 65535], "i cannot nor i will not hold me still": [0, 65535], "cannot nor i will not hold me still my": [0, 65535], "nor i will not hold me still my tongue": [0, 65535], "i will not hold me still my tongue though": [0, 65535], "will not hold me still my tongue though not": [0, 65535], "not hold me still my tongue though not my": [0, 65535], "hold me still my tongue though not my heart": [0, 65535], "me still my tongue though not my heart shall": [0, 65535], "still my tongue though not my heart shall haue": [0, 65535], "my tongue though not my heart shall haue his": [0, 65535], "tongue though not my heart shall haue his will": [0, 65535], "though not my heart shall haue his will he": [0, 65535], "not my heart shall haue his will he is": [0, 65535], "my heart shall haue his will he is deformed": [0, 65535], "heart shall haue his will he is deformed crooked": [0, 65535], "shall haue his will he is deformed crooked old": [0, 65535], "haue his will he is deformed crooked old and": [0, 65535], "his will he is deformed crooked old and sere": [0, 65535], "will he is deformed crooked old and sere ill": [0, 65535], "he is deformed crooked old and sere ill fac'd": [0, 65535], "is deformed crooked old and sere ill fac'd worse": [0, 65535], "deformed crooked old and sere ill fac'd worse bodied": [0, 65535], "crooked old and sere ill fac'd worse bodied shapelesse": [0, 65535], "old and sere ill fac'd worse bodied shapelesse euery": [0, 65535], "and sere ill fac'd worse bodied shapelesse euery where": [0, 65535], "sere ill fac'd worse bodied shapelesse euery where vicious": [0, 65535], "ill fac'd worse bodied shapelesse euery where vicious vngentle": [0, 65535], "fac'd worse bodied shapelesse euery where vicious vngentle foolish": [0, 65535], "worse bodied shapelesse euery where vicious vngentle foolish blunt": [0, 65535], "bodied shapelesse euery where vicious vngentle foolish blunt vnkinde": [0, 65535], "shapelesse euery where vicious vngentle foolish blunt vnkinde stigmaticall": [0, 65535], "euery where vicious vngentle foolish blunt vnkinde stigmaticall in": [0, 65535], "where vicious vngentle foolish blunt vnkinde stigmaticall in making": [0, 65535], "vicious vngentle foolish blunt vnkinde stigmaticall in making worse": [0, 65535], "vngentle foolish blunt vnkinde stigmaticall in making worse in": [0, 65535], "foolish blunt vnkinde stigmaticall in making worse in minde": [0, 65535], "blunt vnkinde stigmaticall in making worse in minde luc": [0, 65535], "vnkinde stigmaticall in making worse in minde luc who": [0, 65535], "stigmaticall in making worse in minde luc who would": [0, 65535], "in making worse in minde luc who would be": [0, 65535], "making worse in minde luc who would be iealous": [0, 65535], "worse in minde luc who would be iealous then": [0, 65535], "in minde luc who would be iealous then of": [0, 65535], "minde luc who would be iealous then of such": [0, 65535], "luc who would be iealous then of such a": [0, 65535], "who would be iealous then of such a one": [0, 65535], "would be iealous then of such a one no": [0, 65535], "be iealous then of such a one no euill": [0, 65535], "iealous then of such a one no euill lost": [0, 65535], "then of such a one no euill lost is": [0, 65535], "of such a one no euill lost is wail'd": [0, 65535], "such a one no euill lost is wail'd when": [0, 65535], "a one no euill lost is wail'd when it": [0, 65535], "one no euill lost is wail'd when it is": [0, 65535], "no euill lost is wail'd when it is gone": [0, 65535], "euill lost is wail'd when it is gone adr": [0, 65535], "lost is wail'd when it is gone adr ah": [0, 65535], "is wail'd when it is gone adr ah but": [0, 65535], "wail'd when it is gone adr ah but i": [0, 65535], "when it is gone adr ah but i thinke": [0, 65535], "it is gone adr ah but i thinke him": [0, 65535], "is gone adr ah but i thinke him better": [0, 65535], "gone adr ah but i thinke him better then": [0, 65535], "adr ah but i thinke him better then i": [0, 65535], "ah but i thinke him better then i say": [0, 65535], "but i thinke him better then i say and": [0, 65535], "i thinke him better then i say and yet": [0, 65535], "thinke him better then i say and yet would": [0, 65535], "him better then i say and yet would herein": [0, 65535], "better then i say and yet would herein others": [0, 65535], "then i say and yet would herein others eies": [0, 65535], "i say and yet would herein others eies were": [0, 65535], "say and yet would herein others eies were worse": [0, 65535], "and yet would herein others eies were worse farre": [0, 65535], "yet would herein others eies were worse farre from": [0, 65535], "would herein others eies were worse farre from her": [0, 65535], "herein others eies were worse farre from her nest": [0, 65535], "others eies were worse farre from her nest the": [0, 65535], "eies were worse farre from her nest the lapwing": [0, 65535], "were worse farre from her nest the lapwing cries": [0, 65535], "worse farre from her nest the lapwing cries away": [0, 65535], "farre from her nest the lapwing cries away my": [0, 65535], "from her nest the lapwing cries away my heart": [0, 65535], "her nest the lapwing cries away my heart praies": [0, 65535], "nest the lapwing cries away my heart praies for": [0, 65535], "the lapwing cries away my heart praies for him": [0, 65535], "lapwing cries away my heart praies for him though": [0, 65535], "cries away my heart praies for him though my": [0, 65535], "away my heart praies for him though my tongue": [0, 65535], "my heart praies for him though my tongue doe": [0, 65535], "heart praies for him though my tongue doe curse": [0, 65535], "praies for him though my tongue doe curse enter": [0, 65535], "for him though my tongue doe curse enter s": [0, 65535], "him though my tongue doe curse enter s dromio": [0, 65535], "though my tongue doe curse enter s dromio dro": [0, 65535], "my tongue doe curse enter s dromio dro here": [0, 65535], "tongue doe curse enter s dromio dro here goe": [0, 65535], "doe curse enter s dromio dro here goe the": [0, 65535], "curse enter s dromio dro here goe the deske": [0, 65535], "enter s dromio dro here goe the deske the": [0, 65535], "s dromio dro here goe the deske the purse": [0, 65535], "dromio dro here goe the deske the purse sweet": [0, 65535], "dro here goe the deske the purse sweet now": [0, 65535], "here goe the deske the purse sweet now make": [0, 65535], "goe the deske the purse sweet now make haste": [0, 65535], "the deske the purse sweet now make haste luc": [0, 65535], "deske the purse sweet now make haste luc how": [0, 65535], "the purse sweet now make haste luc how hast": [0, 65535], "purse sweet now make haste luc how hast thou": [0, 65535], "sweet now make haste luc how hast thou lost": [0, 65535], "now make haste luc how hast thou lost thy": [0, 65535], "make haste luc how hast thou lost thy breath": [0, 65535], "haste luc how hast thou lost thy breath s": [0, 65535], "luc how hast thou lost thy breath s dro": [0, 65535], "how hast thou lost thy breath s dro by": [0, 65535], "hast thou lost thy breath s dro by running": [0, 65535], "thou lost thy breath s dro by running fast": [0, 65535], "lost thy breath s dro by running fast adr": [0, 65535], "thy breath s dro by running fast adr where": [0, 65535], "breath s dro by running fast adr where is": [0, 65535], "s dro by running fast adr where is thy": [0, 65535], "dro by running fast adr where is thy master": [0, 65535], "by running fast adr where is thy master dromio": [0, 65535], "running fast adr where is thy master dromio is": [0, 65535], "fast adr where is thy master dromio is he": [0, 65535], "adr where is thy master dromio is he well": [0, 65535], "where is thy master dromio is he well s": [0, 65535], "is thy master dromio is he well s dro": [0, 65535], "thy master dromio is he well s dro no": [0, 65535], "master dromio is he well s dro no he's": [0, 65535], "dromio is he well s dro no he's in": [0, 65535], "is he well s dro no he's in tartar": [0, 65535], "he well s dro no he's in tartar limbo": [0, 65535], "well s dro no he's in tartar limbo worse": [0, 65535], "s dro no he's in tartar limbo worse then": [0, 65535], "dro no he's in tartar limbo worse then hell": [0, 65535], "no he's in tartar limbo worse then hell a": [0, 65535], "he's in tartar limbo worse then hell a diuell": [0, 65535], "in tartar limbo worse then hell a diuell in": [0, 65535], "tartar limbo worse then hell a diuell in an": [0, 65535], "limbo worse then hell a diuell in an euerlasting": [0, 65535], "worse then hell a diuell in an euerlasting garment": [0, 65535], "then hell a diuell in an euerlasting garment hath": [0, 65535], "hell a diuell in an euerlasting garment hath him": [0, 65535], "a diuell in an euerlasting garment hath him on": [0, 65535], "diuell in an euerlasting garment hath him on whose": [0, 65535], "in an euerlasting garment hath him on whose hard": [0, 65535], "an euerlasting garment hath him on whose hard heart": [0, 65535], "euerlasting garment hath him on whose hard heart is": [0, 65535], "garment hath him on whose hard heart is button'd": [0, 65535], "hath him on whose hard heart is button'd vp": [0, 65535], "him on whose hard heart is button'd vp with": [0, 65535], "on whose hard heart is button'd vp with steele": [0, 65535], "whose hard heart is button'd vp with steele a": [0, 65535], "hard heart is button'd vp with steele a feind": [0, 65535], "heart is button'd vp with steele a feind a": [0, 65535], "is button'd vp with steele a feind a fairie": [0, 65535], "button'd vp with steele a feind a fairie pittilesse": [0, 65535], "vp with steele a feind a fairie pittilesse and": [0, 65535], "with steele a feind a fairie pittilesse and ruffe": [0, 65535], "steele a feind a fairie pittilesse and ruffe a": [0, 65535], "a feind a fairie pittilesse and ruffe a wolfe": [0, 65535], "feind a fairie pittilesse and ruffe a wolfe nay": [0, 65535], "a fairie pittilesse and ruffe a wolfe nay worse": [0, 65535], "fairie pittilesse and ruffe a wolfe nay worse a": [0, 65535], "pittilesse and ruffe a wolfe nay worse a fellow": [0, 65535], "and ruffe a wolfe nay worse a fellow all": [0, 65535], "ruffe a wolfe nay worse a fellow all in": [0, 65535], "a wolfe nay worse a fellow all in buffe": [0, 65535], "wolfe nay worse a fellow all in buffe a": [0, 65535], "nay worse a fellow all in buffe a back": [0, 65535], "worse a fellow all in buffe a back friend": [0, 65535], "a fellow all in buffe a back friend a": [0, 65535], "fellow all in buffe a back friend a shoulder": [0, 65535], "all in buffe a back friend a shoulder clapper": [0, 65535], "in buffe a back friend a shoulder clapper one": [0, 65535], "buffe a back friend a shoulder clapper one that": [0, 65535], "a back friend a shoulder clapper one that countermads": [0, 65535], "back friend a shoulder clapper one that countermads the": [0, 65535], "friend a shoulder clapper one that countermads the passages": [0, 65535], "a shoulder clapper one that countermads the passages of": [0, 65535], "shoulder clapper one that countermads the passages of allies": [0, 65535], "clapper one that countermads the passages of allies creekes": [0, 65535], "one that countermads the passages of allies creekes and": [0, 65535], "that countermads the passages of allies creekes and narrow": [0, 65535], "countermads the passages of allies creekes and narrow lands": [0, 65535], "the passages of allies creekes and narrow lands a": [0, 65535], "passages of allies creekes and narrow lands a hound": [0, 65535], "of allies creekes and narrow lands a hound that": [0, 65535], "allies creekes and narrow lands a hound that runs": [0, 65535], "creekes and narrow lands a hound that runs counter": [0, 65535], "and narrow lands a hound that runs counter and": [0, 65535], "narrow lands a hound that runs counter and yet": [0, 65535], "lands a hound that runs counter and yet draws": [0, 65535], "a hound that runs counter and yet draws drifoot": [0, 65535], "hound that runs counter and yet draws drifoot well": [0, 65535], "that runs counter and yet draws drifoot well one": [0, 65535], "runs counter and yet draws drifoot well one that": [0, 65535], "counter and yet draws drifoot well one that before": [0, 65535], "and yet draws drifoot well one that before the": [0, 65535], "yet draws drifoot well one that before the iudgment": [0, 65535], "draws drifoot well one that before the iudgment carries": [0, 65535], "drifoot well one that before the iudgment carries poore": [0, 65535], "well one that before the iudgment carries poore soules": [0, 65535], "one that before the iudgment carries poore soules to": [0, 65535], "that before the iudgment carries poore soules to hel": [0, 65535], "before the iudgment carries poore soules to hel adr": [0, 65535], "the iudgment carries poore soules to hel adr why": [0, 65535], "iudgment carries poore soules to hel adr why man": [0, 65535], "carries poore soules to hel adr why man what": [0, 65535], "poore soules to hel adr why man what is": [0, 65535], "soules to hel adr why man what is the": [0, 65535], "to hel adr why man what is the matter": [0, 65535], "hel adr why man what is the matter s": [0, 65535], "adr why man what is the matter s dro": [0, 65535], "why man what is the matter s dro i": [0, 65535], "man what is the matter s dro i doe": [0, 65535], "what is the matter s dro i doe not": [0, 65535], "is the matter s dro i doe not know": [0, 65535], "the matter s dro i doe not know the": [0, 65535], "matter s dro i doe not know the matter": [0, 65535], "s dro i doe not know the matter hee": [0, 65535], "dro i doe not know the matter hee is": [0, 65535], "i doe not know the matter hee is rested": [0, 65535], "doe not know the matter hee is rested on": [0, 65535], "not know the matter hee is rested on the": [0, 65535], "know the matter hee is rested on the case": [0, 65535], "the matter hee is rested on the case adr": [0, 65535], "matter hee is rested on the case adr what": [0, 65535], "hee is rested on the case adr what is": [0, 65535], "is rested on the case adr what is he": [0, 65535], "rested on the case adr what is he arrested": [0, 65535], "on the case adr what is he arrested tell": [0, 65535], "the case adr what is he arrested tell me": [0, 65535], "case adr what is he arrested tell me at": [0, 65535], "adr what is he arrested tell me at whose": [0, 65535], "what is he arrested tell me at whose suite": [0, 65535], "is he arrested tell me at whose suite s": [0, 65535], "he arrested tell me at whose suite s dro": [0, 65535], "arrested tell me at whose suite s dro i": [0, 65535], "tell me at whose suite s dro i know": [0, 65535], "me at whose suite s dro i know not": [0, 65535], "at whose suite s dro i know not at": [0, 65535], "whose suite s dro i know not at whose": [0, 65535], "suite s dro i know not at whose suite": [0, 65535], "s dro i know not at whose suite he": [0, 65535], "dro i know not at whose suite he is": [0, 65535], "i know not at whose suite he is arested": [0, 65535], "know not at whose suite he is arested well": [0, 65535], "not at whose suite he is arested well but": [0, 65535], "at whose suite he is arested well but is": [0, 65535], "whose suite he is arested well but is in": [0, 65535], "suite he is arested well but is in a": [0, 65535], "he is arested well but is in a suite": [0, 65535], "is arested well but is in a suite of": [0, 65535], "arested well but is in a suite of buffe": [0, 65535], "well but is in a suite of buffe which": [0, 65535], "but is in a suite of buffe which rested": [0, 65535], "is in a suite of buffe which rested him": [0, 65535], "in a suite of buffe which rested him that": [0, 65535], "a suite of buffe which rested him that can": [0, 65535], "suite of buffe which rested him that can i": [0, 65535], "of buffe which rested him that can i tell": [0, 65535], "buffe which rested him that can i tell will": [0, 65535], "which rested him that can i tell will you": [0, 65535], "rested him that can i tell will you send": [0, 65535], "him that can i tell will you send him": [0, 65535], "that can i tell will you send him mistris": [0, 65535], "can i tell will you send him mistris redemption": [0, 65535], "i tell will you send him mistris redemption the": [0, 65535], "tell will you send him mistris redemption the monie": [0, 65535], "will you send him mistris redemption the monie in": [0, 65535], "you send him mistris redemption the monie in his": [0, 65535], "send him mistris redemption the monie in his deske": [0, 65535], "him mistris redemption the monie in his deske adr": [0, 65535], "mistris redemption the monie in his deske adr go": [0, 65535], "redemption the monie in his deske adr go fetch": [0, 65535], "the monie in his deske adr go fetch it": [0, 65535], "monie in his deske adr go fetch it sister": [0, 65535], "in his deske adr go fetch it sister this": [0, 65535], "his deske adr go fetch it sister this i": [0, 65535], "deske adr go fetch it sister this i wonder": [0, 65535], "adr go fetch it sister this i wonder at": [0, 65535], "go fetch it sister this i wonder at exit": [0, 65535], "fetch it sister this i wonder at exit luciana": [0, 65535], "it sister this i wonder at exit luciana thus": [0, 65535], "sister this i wonder at exit luciana thus he": [0, 65535], "this i wonder at exit luciana thus he vnknowne": [0, 65535], "i wonder at exit luciana thus he vnknowne to": [0, 65535], "wonder at exit luciana thus he vnknowne to me": [0, 65535], "at exit luciana thus he vnknowne to me should": [0, 65535], "exit luciana thus he vnknowne to me should be": [0, 65535], "luciana thus he vnknowne to me should be in": [0, 65535], "thus he vnknowne to me should be in debt": [0, 65535], "he vnknowne to me should be in debt tell": [0, 65535], "vnknowne to me should be in debt tell me": [0, 65535], "to me should be in debt tell me was": [0, 65535], "me should be in debt tell me was he": [0, 65535], "should be in debt tell me was he arested": [0, 65535], "be in debt tell me was he arested on": [0, 65535], "in debt tell me was he arested on a": [0, 65535], "debt tell me was he arested on a band": [0, 65535], "tell me was he arested on a band s": [0, 65535], "me was he arested on a band s dro": [0, 65535], "was he arested on a band s dro not": [0, 65535], "he arested on a band s dro not on": [0, 65535], "arested on a band s dro not on a": [0, 65535], "on a band s dro not on a band": [0, 65535], "a band s dro not on a band but": [0, 65535], "band s dro not on a band but on": [0, 65535], "s dro not on a band but on a": [0, 65535], "dro not on a band but on a stronger": [0, 65535], "not on a band but on a stronger thing": [0, 65535], "on a band but on a stronger thing a": [0, 65535], "a band but on a stronger thing a chaine": [0, 65535], "band but on a stronger thing a chaine a": [0, 65535], "but on a stronger thing a chaine a chaine": [0, 65535], "on a stronger thing a chaine a chaine doe": [0, 65535], "a stronger thing a chaine a chaine doe you": [0, 65535], "stronger thing a chaine a chaine doe you not": [0, 65535], "thing a chaine a chaine doe you not here": [0, 65535], "a chaine a chaine doe you not here it": [0, 65535], "chaine a chaine doe you not here it ring": [0, 65535], "a chaine doe you not here it ring adria": [0, 65535], "chaine doe you not here it ring adria what": [0, 65535], "doe you not here it ring adria what the": [0, 65535], "you not here it ring adria what the chaine": [0, 65535], "not here it ring adria what the chaine s": [0, 65535], "here it ring adria what the chaine s dro": [0, 65535], "it ring adria what the chaine s dro no": [0, 65535], "ring adria what the chaine s dro no no": [0, 65535], "adria what the chaine s dro no no the": [0, 65535], "what the chaine s dro no no the bell": [0, 65535], "the chaine s dro no no the bell 'tis": [0, 65535], "chaine s dro no no the bell 'tis time": [0, 65535], "s dro no no the bell 'tis time that": [0, 65535], "dro no no the bell 'tis time that i": [0, 65535], "no no the bell 'tis time that i were": [0, 65535], "no the bell 'tis time that i were gone": [0, 65535], "the bell 'tis time that i were gone it": [0, 65535], "bell 'tis time that i were gone it was": [0, 65535], "'tis time that i were gone it was two": [0, 65535], "time that i were gone it was two ere": [0, 65535], "that i were gone it was two ere i": [0, 65535], "i were gone it was two ere i left": [0, 65535], "were gone it was two ere i left him": [0, 65535], "gone it was two ere i left him and": [0, 65535], "it was two ere i left him and now": [0, 65535], "was two ere i left him and now the": [0, 65535], "two ere i left him and now the clocke": [0, 65535], "ere i left him and now the clocke strikes": [0, 65535], "i left him and now the clocke strikes one": [0, 65535], "left him and now the clocke strikes one adr": [0, 65535], "him and now the clocke strikes one adr the": [0, 65535], "and now the clocke strikes one adr the houres": [0, 65535], "now the clocke strikes one adr the houres come": [0, 65535], "the clocke strikes one adr the houres come backe": [0, 65535], "clocke strikes one adr the houres come backe that": [0, 65535], "strikes one adr the houres come backe that did": [0, 65535], "one adr the houres come backe that did i": [0, 65535], "adr the houres come backe that did i neuer": [0, 65535], "the houres come backe that did i neuer here": [0, 65535], "houres come backe that did i neuer here s": [0, 65535], "come backe that did i neuer here s dro": [0, 65535], "backe that did i neuer here s dro oh": [0, 65535], "that did i neuer here s dro oh yes": [0, 65535], "did i neuer here s dro oh yes if": [0, 65535], "i neuer here s dro oh yes if any": [0, 65535], "neuer here s dro oh yes if any houre": [0, 65535], "here s dro oh yes if any houre meete": [0, 65535], "s dro oh yes if any houre meete a": [0, 65535], "dro oh yes if any houre meete a serieant": [0, 65535], "oh yes if any houre meete a serieant a": [0, 65535], "yes if any houre meete a serieant a turnes": [0, 65535], "if any houre meete a serieant a turnes backe": [0, 65535], "any houre meete a serieant a turnes backe for": [0, 65535], "houre meete a serieant a turnes backe for verie": [0, 65535], "meete a serieant a turnes backe for verie feare": [0, 65535], "a serieant a turnes backe for verie feare adri": [0, 65535], "serieant a turnes backe for verie feare adri as": [0, 65535], "a turnes backe for verie feare adri as if": [0, 65535], "turnes backe for verie feare adri as if time": [0, 65535], "backe for verie feare adri as if time were": [0, 65535], "for verie feare adri as if time were in": [0, 65535], "verie feare adri as if time were in debt": [0, 65535], "feare adri as if time were in debt how": [0, 65535], "adri as if time were in debt how fondly": [0, 65535], "as if time were in debt how fondly do'st": [0, 65535], "if time were in debt how fondly do'st thou": [0, 65535], "time were in debt how fondly do'st thou reason": [0, 65535], "were in debt how fondly do'st thou reason s": [0, 65535], "in debt how fondly do'st thou reason s dro": [0, 65535], "debt how fondly do'st thou reason s dro time": [0, 65535], "how fondly do'st thou reason s dro time is": [0, 65535], "fondly do'st thou reason s dro time is a": [0, 65535], "do'st thou reason s dro time is a verie": [0, 65535], "thou reason s dro time is a verie bankerout": [0, 65535], "reason s dro time is a verie bankerout and": [0, 65535], "s dro time is a verie bankerout and owes": [0, 65535], "dro time is a verie bankerout and owes more": [0, 65535], "time is a verie bankerout and owes more then": [0, 65535], "is a verie bankerout and owes more then he's": [0, 65535], "a verie bankerout and owes more then he's worth": [0, 65535], "verie bankerout and owes more then he's worth to": [0, 65535], "bankerout and owes more then he's worth to season": [0, 65535], "and owes more then he's worth to season nay": [0, 65535], "owes more then he's worth to season nay he's": [0, 65535], "more then he's worth to season nay he's a": [0, 65535], "then he's worth to season nay he's a theefe": [0, 65535], "he's worth to season nay he's a theefe too": [0, 65535], "worth to season nay he's a theefe too haue": [0, 65535], "to season nay he's a theefe too haue you": [0, 65535], "season nay he's a theefe too haue you not": [0, 65535], "nay he's a theefe too haue you not heard": [0, 65535], "he's a theefe too haue you not heard men": [0, 65535], "a theefe too haue you not heard men say": [0, 65535], "theefe too haue you not heard men say that": [0, 65535], "too haue you not heard men say that time": [0, 65535], "haue you not heard men say that time comes": [0, 65535], "you not heard men say that time comes stealing": [0, 65535], "not heard men say that time comes stealing on": [0, 65535], "heard men say that time comes stealing on by": [0, 65535], "men say that time comes stealing on by night": [0, 65535], "say that time comes stealing on by night and": [0, 65535], "that time comes stealing on by night and day": [0, 65535], "time comes stealing on by night and day if": [0, 65535], "comes stealing on by night and day if i": [0, 65535], "stealing on by night and day if i be": [0, 65535], "on by night and day if i be in": [0, 65535], "by night and day if i be in debt": [0, 65535], "night and day if i be in debt and": [0, 65535], "and day if i be in debt and theft": [0, 65535], "day if i be in debt and theft and": [0, 65535], "if i be in debt and theft and a": [0, 65535], "i be in debt and theft and a serieant": [0, 65535], "be in debt and theft and a serieant in": [0, 65535], "in debt and theft and a serieant in the": [0, 65535], "debt and theft and a serieant in the way": [0, 65535], "and theft and a serieant in the way hath": [0, 65535], "theft and a serieant in the way hath he": [0, 65535], "and a serieant in the way hath he not": [0, 65535], "a serieant in the way hath he not reason": [0, 65535], "serieant in the way hath he not reason to": [0, 65535], "in the way hath he not reason to turne": [0, 65535], "the way hath he not reason to turne backe": [0, 65535], "way hath he not reason to turne backe an": [0, 65535], "hath he not reason to turne backe an houre": [0, 65535], "he not reason to turne backe an houre in": [0, 65535], "not reason to turne backe an houre in a": [0, 65535], "reason to turne backe an houre in a day": [0, 65535], "to turne backe an houre in a day enter": [0, 65535], "turne backe an houre in a day enter luciana": [0, 65535], "backe an houre in a day enter luciana adr": [0, 65535], "an houre in a day enter luciana adr go": [0, 65535], "houre in a day enter luciana adr go dromio": [0, 65535], "in a day enter luciana adr go dromio there's": [0, 65535], "a day enter luciana adr go dromio there's the": [0, 65535], "day enter luciana adr go dromio there's the monie": [0, 65535], "enter luciana adr go dromio there's the monie beare": [0, 65535], "luciana adr go dromio there's the monie beare it": [0, 65535], "adr go dromio there's the monie beare it straight": [0, 65535], "go dromio there's the monie beare it straight and": [0, 65535], "dromio there's the monie beare it straight and bring": [0, 65535], "there's the monie beare it straight and bring thy": [0, 65535], "the monie beare it straight and bring thy master": [0, 65535], "monie beare it straight and bring thy master home": [0, 65535], "beare it straight and bring thy master home imediately": [0, 65535], "it straight and bring thy master home imediately come": [0, 65535], "straight and bring thy master home imediately come sister": [0, 65535], "and bring thy master home imediately come sister i": [0, 65535], "bring thy master home imediately come sister i am": [0, 65535], "thy master home imediately come sister i am prest": [0, 65535], "master home imediately come sister i am prest downe": [0, 65535], "home imediately come sister i am prest downe with": [0, 65535], "imediately come sister i am prest downe with conceit": [0, 65535], "come sister i am prest downe with conceit conceit": [0, 65535], "sister i am prest downe with conceit conceit my": [0, 65535], "i am prest downe with conceit conceit my comfort": [0, 65535], "am prest downe with conceit conceit my comfort and": [0, 65535], "prest downe with conceit conceit my comfort and my": [0, 65535], "downe with conceit conceit my comfort and my iniurie": [0, 65535], "with conceit conceit my comfort and my iniurie exit": [0, 65535], "conceit conceit my comfort and my iniurie exit enter": [0, 65535], "conceit my comfort and my iniurie exit enter antipholus": [0, 65535], "my comfort and my iniurie exit enter antipholus siracusia": [0, 65535], "comfort and my iniurie exit enter antipholus siracusia there's": [0, 65535], "and my iniurie exit enter antipholus siracusia there's not": [0, 65535], "my iniurie exit enter antipholus siracusia there's not a": [0, 65535], "iniurie exit enter antipholus siracusia there's not a man": [0, 65535], "exit enter antipholus siracusia there's not a man i": [0, 65535], "enter antipholus siracusia there's not a man i meete": [0, 65535], "antipholus siracusia there's not a man i meete but": [0, 65535], "siracusia there's not a man i meete but doth": [0, 65535], "there's not a man i meete but doth salute": [0, 65535], "not a man i meete but doth salute me": [0, 65535], "a man i meete but doth salute me as": [0, 65535], "man i meete but doth salute me as if": [0, 65535], "i meete but doth salute me as if i": [0, 65535], "meete but doth salute me as if i were": [0, 65535], "but doth salute me as if i were their": [0, 65535], "doth salute me as if i were their well": [0, 65535], "salute me as if i were their well acquainted": [0, 65535], "me as if i were their well acquainted friend": [0, 65535], "as if i were their well acquainted friend and": [0, 65535], "if i were their well acquainted friend and euerie": [0, 65535], "i were their well acquainted friend and euerie one": [0, 65535], "were their well acquainted friend and euerie one doth": [0, 65535], "their well acquainted friend and euerie one doth call": [0, 65535], "well acquainted friend and euerie one doth call me": [0, 65535], "acquainted friend and euerie one doth call me by": [0, 65535], "friend and euerie one doth call me by my": [0, 65535], "and euerie one doth call me by my name": [0, 65535], "euerie one doth call me by my name some": [0, 65535], "one doth call me by my name some tender": [0, 65535], "doth call me by my name some tender monie": [0, 65535], "call me by my name some tender monie to": [0, 65535], "me by my name some tender monie to me": [0, 65535], "by my name some tender monie to me some": [0, 65535], "my name some tender monie to me some inuite": [0, 65535], "name some tender monie to me some inuite me": [0, 65535], "some tender monie to me some inuite me some": [0, 65535], "tender monie to me some inuite me some other": [0, 65535], "monie to me some inuite me some other giue": [0, 65535], "to me some inuite me some other giue me": [0, 65535], "me some inuite me some other giue me thankes": [0, 65535], "some inuite me some other giue me thankes for": [0, 65535], "inuite me some other giue me thankes for kindnesses": [0, 65535], "me some other giue me thankes for kindnesses some": [0, 65535], "some other giue me thankes for kindnesses some offer": [0, 65535], "other giue me thankes for kindnesses some offer me": [0, 65535], "giue me thankes for kindnesses some offer me commodities": [0, 65535], "me thankes for kindnesses some offer me commodities to": [0, 65535], "thankes for kindnesses some offer me commodities to buy": [0, 65535], "for kindnesses some offer me commodities to buy euen": [0, 65535], "kindnesses some offer me commodities to buy euen now": [0, 65535], "some offer me commodities to buy euen now a": [0, 65535], "offer me commodities to buy euen now a tailor": [0, 65535], "me commodities to buy euen now a tailor cal'd": [0, 65535], "commodities to buy euen now a tailor cal'd me": [0, 65535], "to buy euen now a tailor cal'd me in": [0, 65535], "buy euen now a tailor cal'd me in his": [0, 65535], "euen now a tailor cal'd me in his shop": [0, 65535], "now a tailor cal'd me in his shop and": [0, 65535], "a tailor cal'd me in his shop and show'd": [0, 65535], "tailor cal'd me in his shop and show'd me": [0, 65535], "cal'd me in his shop and show'd me silkes": [0, 65535], "me in his shop and show'd me silkes that": [0, 65535], "in his shop and show'd me silkes that he": [0, 65535], "his shop and show'd me silkes that he had": [0, 65535], "shop and show'd me silkes that he had bought": [0, 65535], "and show'd me silkes that he had bought for": [0, 65535], "show'd me silkes that he had bought for me": [0, 65535], "me silkes that he had bought for me and": [0, 65535], "silkes that he had bought for me and therewithall": [0, 65535], "that he had bought for me and therewithall tooke": [0, 65535], "he had bought for me and therewithall tooke measure": [0, 65535], "had bought for me and therewithall tooke measure of": [0, 65535], "bought for me and therewithall tooke measure of my": [0, 65535], "for me and therewithall tooke measure of my body": [0, 65535], "me and therewithall tooke measure of my body sure": [0, 65535], "and therewithall tooke measure of my body sure these": [0, 65535], "therewithall tooke measure of my body sure these are": [0, 65535], "tooke measure of my body sure these are but": [0, 65535], "measure of my body sure these are but imaginarie": [0, 65535], "of my body sure these are but imaginarie wiles": [0, 65535], "my body sure these are but imaginarie wiles and": [0, 65535], "body sure these are but imaginarie wiles and lapland": [0, 65535], "sure these are but imaginarie wiles and lapland sorcerers": [0, 65535], "these are but imaginarie wiles and lapland sorcerers inhabite": [0, 65535], "are but imaginarie wiles and lapland sorcerers inhabite here": [0, 65535], "but imaginarie wiles and lapland sorcerers inhabite here enter": [0, 65535], "imaginarie wiles and lapland sorcerers inhabite here enter dromio": [0, 65535], "wiles and lapland sorcerers inhabite here enter dromio sir": [0, 65535], "and lapland sorcerers inhabite here enter dromio sir s": [0, 65535], "lapland sorcerers inhabite here enter dromio sir s dro": [0, 65535], "sorcerers inhabite here enter dromio sir s dro master": [0, 65535], "inhabite here enter dromio sir s dro master here's": [0, 65535], "here enter dromio sir s dro master here's the": [0, 65535], "enter dromio sir s dro master here's the gold": [0, 65535], "dromio sir s dro master here's the gold you": [0, 65535], "sir s dro master here's the gold you sent": [0, 65535], "s dro master here's the gold you sent me": [0, 65535], "dro master here's the gold you sent me for": [0, 65535], "master here's the gold you sent me for what": [0, 65535], "here's the gold you sent me for what haue": [0, 65535], "the gold you sent me for what haue you": [0, 65535], "gold you sent me for what haue you got": [0, 65535], "you sent me for what haue you got the": [0, 65535], "sent me for what haue you got the picture": [0, 65535], "me for what haue you got the picture of": [0, 65535], "for what haue you got the picture of old": [0, 65535], "what haue you got the picture of old adam": [0, 65535], "haue you got the picture of old adam new": [0, 65535], "you got the picture of old adam new apparel'd": [0, 65535], "got the picture of old adam new apparel'd ant": [0, 65535], "the picture of old adam new apparel'd ant what": [0, 65535], "picture of old adam new apparel'd ant what gold": [0, 65535], "of old adam new apparel'd ant what gold is": [0, 65535], "old adam new apparel'd ant what gold is this": [0, 65535], "adam new apparel'd ant what gold is this what": [0, 65535], "new apparel'd ant what gold is this what adam": [0, 65535], "apparel'd ant what gold is this what adam do'st": [0, 65535], "ant what gold is this what adam do'st thou": [0, 65535], "what gold is this what adam do'st thou meane": [0, 65535], "gold is this what adam do'st thou meane s": [0, 65535], "is this what adam do'st thou meane s dro": [0, 65535], "this what adam do'st thou meane s dro not": [0, 65535], "what adam do'st thou meane s dro not that": [0, 65535], "adam do'st thou meane s dro not that adam": [0, 65535], "do'st thou meane s dro not that adam that": [0, 65535], "thou meane s dro not that adam that kept": [0, 65535], "meane s dro not that adam that kept the": [0, 65535], "s dro not that adam that kept the paradise": [0, 65535], "dro not that adam that kept the paradise but": [0, 65535], "not that adam that kept the paradise but that": [0, 65535], "that adam that kept the paradise but that adam": [0, 65535], "adam that kept the paradise but that adam that": [0, 65535], "that kept the paradise but that adam that keepes": [0, 65535], "kept the paradise but that adam that keepes the": [0, 65535], "the paradise but that adam that keepes the prison": [0, 65535], "paradise but that adam that keepes the prison hee": [0, 65535], "but that adam that keepes the prison hee that": [0, 65535], "that adam that keepes the prison hee that goes": [0, 65535], "adam that keepes the prison hee that goes in": [0, 65535], "that keepes the prison hee that goes in the": [0, 65535], "keepes the prison hee that goes in the calues": [0, 65535], "the prison hee that goes in the calues skin": [0, 65535], "prison hee that goes in the calues skin that": [0, 65535], "hee that goes in the calues skin that was": [0, 65535], "that goes in the calues skin that was kil'd": [0, 65535], "goes in the calues skin that was kil'd for": [0, 65535], "in the calues skin that was kil'd for the": [0, 65535], "the calues skin that was kil'd for the prodigall": [0, 65535], "calues skin that was kil'd for the prodigall hee": [0, 65535], "skin that was kil'd for the prodigall hee that": [0, 65535], "that was kil'd for the prodigall hee that came": [0, 65535], "was kil'd for the prodigall hee that came behinde": [0, 65535], "kil'd for the prodigall hee that came behinde you": [0, 65535], "for the prodigall hee that came behinde you sir": [0, 65535], "the prodigall hee that came behinde you sir like": [0, 65535], "prodigall hee that came behinde you sir like an": [0, 65535], "hee that came behinde you sir like an euill": [0, 65535], "that came behinde you sir like an euill angel": [0, 65535], "came behinde you sir like an euill angel and": [0, 65535], "behinde you sir like an euill angel and bid": [0, 65535], "you sir like an euill angel and bid you": [0, 65535], "sir like an euill angel and bid you forsake": [0, 65535], "like an euill angel and bid you forsake your": [0, 65535], "an euill angel and bid you forsake your libertie": [0, 65535], "euill angel and bid you forsake your libertie ant": [0, 65535], "angel and bid you forsake your libertie ant i": [0, 65535], "and bid you forsake your libertie ant i vnderstand": [0, 65535], "bid you forsake your libertie ant i vnderstand thee": [0, 65535], "you forsake your libertie ant i vnderstand thee not": [0, 65535], "forsake your libertie ant i vnderstand thee not s": [0, 65535], "your libertie ant i vnderstand thee not s dro": [0, 65535], "libertie ant i vnderstand thee not s dro no": [0, 65535], "ant i vnderstand thee not s dro no why": [0, 65535], "i vnderstand thee not s dro no why 'tis": [0, 65535], "vnderstand thee not s dro no why 'tis a": [0, 65535], "thee not s dro no why 'tis a plaine": [0, 65535], "not s dro no why 'tis a plaine case": [0, 65535], "s dro no why 'tis a plaine case he": [0, 65535], "dro no why 'tis a plaine case he that": [0, 65535], "no why 'tis a plaine case he that went": [0, 65535], "why 'tis a plaine case he that went like": [0, 65535], "'tis a plaine case he that went like a": [0, 65535], "a plaine case he that went like a base": [0, 65535], "plaine case he that went like a base viole": [0, 65535], "case he that went like a base viole in": [0, 65535], "he that went like a base viole in a": [0, 65535], "that went like a base viole in a case": [0, 65535], "went like a base viole in a case of": [0, 65535], "like a base viole in a case of leather": [0, 65535], "a base viole in a case of leather the": [0, 65535], "base viole in a case of leather the man": [0, 65535], "viole in a case of leather the man sir": [0, 65535], "in a case of leather the man sir that": [0, 65535], "a case of leather the man sir that when": [0, 65535], "case of leather the man sir that when gentlemen": [0, 65535], "of leather the man sir that when gentlemen are": [0, 65535], "leather the man sir that when gentlemen are tired": [0, 65535], "the man sir that when gentlemen are tired giues": [0, 65535], "man sir that when gentlemen are tired giues them": [0, 65535], "sir that when gentlemen are tired giues them a": [0, 65535], "that when gentlemen are tired giues them a sob": [0, 65535], "when gentlemen are tired giues them a sob and": [0, 65535], "gentlemen are tired giues them a sob and rests": [0, 65535], "are tired giues them a sob and rests them": [0, 65535], "tired giues them a sob and rests them he": [0, 65535], "giues them a sob and rests them he sir": [0, 65535], "them a sob and rests them he sir that": [0, 65535], "a sob and rests them he sir that takes": [0, 65535], "sob and rests them he sir that takes pittie": [0, 65535], "and rests them he sir that takes pittie on": [0, 65535], "rests them he sir that takes pittie on decaied": [0, 65535], "them he sir that takes pittie on decaied men": [0, 65535], "he sir that takes pittie on decaied men and": [0, 65535], "sir that takes pittie on decaied men and giues": [0, 65535], "that takes pittie on decaied men and giues them": [0, 65535], "takes pittie on decaied men and giues them suites": [0, 65535], "pittie on decaied men and giues them suites of": [0, 65535], "on decaied men and giues them suites of durance": [0, 65535], "decaied men and giues them suites of durance he": [0, 65535], "men and giues them suites of durance he that": [0, 65535], "and giues them suites of durance he that sets": [0, 65535], "giues them suites of durance he that sets vp": [0, 65535], "them suites of durance he that sets vp his": [0, 65535], "suites of durance he that sets vp his rest": [0, 65535], "of durance he that sets vp his rest to": [0, 65535], "durance he that sets vp his rest to doe": [0, 65535], "he that sets vp his rest to doe more": [0, 65535], "that sets vp his rest to doe more exploits": [0, 65535], "sets vp his rest to doe more exploits with": [0, 65535], "vp his rest to doe more exploits with his": [0, 65535], "his rest to doe more exploits with his mace": [0, 65535], "rest to doe more exploits with his mace then": [0, 65535], "to doe more exploits with his mace then a": [0, 65535], "doe more exploits with his mace then a moris": [0, 65535], "more exploits with his mace then a moris pike": [0, 65535], "exploits with his mace then a moris pike ant": [0, 65535], "with his mace then a moris pike ant what": [0, 65535], "his mace then a moris pike ant what thou": [0, 65535], "mace then a moris pike ant what thou mean'st": [0, 65535], "then a moris pike ant what thou mean'st an": [0, 65535], "a moris pike ant what thou mean'st an officer": [0, 65535], "moris pike ant what thou mean'st an officer s": [0, 65535], "pike ant what thou mean'st an officer s dro": [0, 65535], "ant what thou mean'st an officer s dro i": [0, 65535], "what thou mean'st an officer s dro i sir": [0, 65535], "thou mean'st an officer s dro i sir the": [0, 65535], "mean'st an officer s dro i sir the serieant": [0, 65535], "an officer s dro i sir the serieant of": [0, 65535], "officer s dro i sir the serieant of the": [0, 65535], "s dro i sir the serieant of the band": [0, 65535], "dro i sir the serieant of the band he": [0, 65535], "i sir the serieant of the band he that": [0, 65535], "sir the serieant of the band he that brings": [0, 65535], "the serieant of the band he that brings any": [0, 65535], "serieant of the band he that brings any man": [0, 65535], "of the band he that brings any man to": [0, 65535], "the band he that brings any man to answer": [0, 65535], "band he that brings any man to answer it": [0, 65535], "he that brings any man to answer it that": [0, 65535], "that brings any man to answer it that breakes": [0, 65535], "brings any man to answer it that breakes his": [0, 65535], "any man to answer it that breakes his band": [0, 65535], "man to answer it that breakes his band one": [0, 65535], "to answer it that breakes his band one that": [0, 65535], "answer it that breakes his band one that thinkes": [0, 65535], "it that breakes his band one that thinkes a": [0, 65535], "that breakes his band one that thinkes a man": [0, 65535], "breakes his band one that thinkes a man alwaies": [0, 65535], "his band one that thinkes a man alwaies going": [0, 65535], "band one that thinkes a man alwaies going to": [0, 65535], "one that thinkes a man alwaies going to bed": [0, 65535], "that thinkes a man alwaies going to bed and": [0, 65535], "thinkes a man alwaies going to bed and saies": [0, 65535], "a man alwaies going to bed and saies god": [0, 65535], "man alwaies going to bed and saies god giue": [0, 65535], "alwaies going to bed and saies god giue you": [0, 65535], "going to bed and saies god giue you good": [0, 65535], "to bed and saies god giue you good rest": [0, 65535], "bed and saies god giue you good rest ant": [0, 65535], "and saies god giue you good rest ant well": [0, 65535], "saies god giue you good rest ant well sir": [0, 65535], "god giue you good rest ant well sir there": [0, 65535], "giue you good rest ant well sir there rest": [0, 65535], "you good rest ant well sir there rest in": [0, 65535], "good rest ant well sir there rest in your": [0, 65535], "rest ant well sir there rest in your foolerie": [0, 65535], "ant well sir there rest in your foolerie is": [0, 65535], "well sir there rest in your foolerie is there": [0, 65535], "sir there rest in your foolerie is there any": [0, 65535], "there rest in your foolerie is there any ships": [0, 65535], "rest in your foolerie is there any ships puts": [0, 65535], "in your foolerie is there any ships puts forth": [0, 65535], "your foolerie is there any ships puts forth to": [0, 65535], "foolerie is there any ships puts forth to night": [0, 65535], "is there any ships puts forth to night may": [0, 65535], "there any ships puts forth to night may we": [0, 65535], "any ships puts forth to night may we be": [0, 65535], "ships puts forth to night may we be gone": [0, 65535], "puts forth to night may we be gone s": [0, 65535], "forth to night may we be gone s dro": [0, 65535], "to night may we be gone s dro why": [0, 65535], "night may we be gone s dro why sir": [0, 65535], "may we be gone s dro why sir i": [0, 65535], "we be gone s dro why sir i brought": [0, 65535], "be gone s dro why sir i brought you": [0, 65535], "gone s dro why sir i brought you word": [0, 65535], "s dro why sir i brought you word an": [0, 65535], "dro why sir i brought you word an houre": [0, 65535], "why sir i brought you word an houre since": [0, 65535], "sir i brought you word an houre since that": [0, 65535], "i brought you word an houre since that the": [0, 65535], "brought you word an houre since that the barke": [0, 65535], "you word an houre since that the barke expedition": [0, 65535], "word an houre since that the barke expedition put": [0, 65535], "an houre since that the barke expedition put forth": [0, 65535], "houre since that the barke expedition put forth to": [0, 65535], "since that the barke expedition put forth to night": [0, 65535], "that the barke expedition put forth to night and": [0, 65535], "the barke expedition put forth to night and then": [0, 65535], "barke expedition put forth to night and then were": [0, 65535], "expedition put forth to night and then were you": [0, 65535], "put forth to night and then were you hindred": [0, 65535], "forth to night and then were you hindred by": [0, 65535], "to night and then were you hindred by the": [0, 65535], "night and then were you hindred by the serieant": [0, 65535], "and then were you hindred by the serieant to": [0, 65535], "then were you hindred by the serieant to tarry": [0, 65535], "were you hindred by the serieant to tarry for": [0, 65535], "you hindred by the serieant to tarry for the": [0, 65535], "hindred by the serieant to tarry for the hoy": [0, 65535], "by the serieant to tarry for the hoy delay": [0, 65535], "the serieant to tarry for the hoy delay here": [0, 65535], "serieant to tarry for the hoy delay here are": [0, 65535], "to tarry for the hoy delay here are the": [0, 65535], "tarry for the hoy delay here are the angels": [0, 65535], "for the hoy delay here are the angels that": [0, 65535], "the hoy delay here are the angels that you": [0, 65535], "hoy delay here are the angels that you sent": [0, 65535], "delay here are the angels that you sent for": [0, 65535], "here are the angels that you sent for to": [0, 65535], "are the angels that you sent for to deliuer": [0, 65535], "the angels that you sent for to deliuer you": [0, 65535], "angels that you sent for to deliuer you ant": [0, 65535], "that you sent for to deliuer you ant the": [0, 65535], "you sent for to deliuer you ant the fellow": [0, 65535], "sent for to deliuer you ant the fellow is": [0, 65535], "for to deliuer you ant the fellow is distract": [0, 65535], "to deliuer you ant the fellow is distract and": [0, 65535], "deliuer you ant the fellow is distract and so": [0, 65535], "you ant the fellow is distract and so am": [0, 65535], "ant the fellow is distract and so am i": [0, 65535], "the fellow is distract and so am i and": [0, 65535], "fellow is distract and so am i and here": [0, 65535], "is distract and so am i and here we": [0, 65535], "distract and so am i and here we wander": [0, 65535], "and so am i and here we wander in": [0, 65535], "so am i and here we wander in illusions": [0, 65535], "am i and here we wander in illusions some": [0, 65535], "i and here we wander in illusions some blessed": [0, 65535], "and here we wander in illusions some blessed power": [0, 65535], "here we wander in illusions some blessed power deliuer": [0, 65535], "we wander in illusions some blessed power deliuer vs": [0, 65535], "wander in illusions some blessed power deliuer vs from": [0, 65535], "in illusions some blessed power deliuer vs from hence": [0, 65535], "illusions some blessed power deliuer vs from hence enter": [0, 65535], "some blessed power deliuer vs from hence enter a": [0, 65535], "blessed power deliuer vs from hence enter a curtizan": [0, 65535], "power deliuer vs from hence enter a curtizan cur": [0, 65535], "deliuer vs from hence enter a curtizan cur well": [0, 65535], "vs from hence enter a curtizan cur well met": [0, 65535], "from hence enter a curtizan cur well met well": [0, 65535], "hence enter a curtizan cur well met well met": [0, 65535], "enter a curtizan cur well met well met master": [0, 65535], "a curtizan cur well met well met master antipholus": [0, 65535], "curtizan cur well met well met master antipholus i": [0, 65535], "cur well met well met master antipholus i see": [0, 65535], "well met well met master antipholus i see sir": [0, 65535], "met well met master antipholus i see sir you": [0, 65535], "well met master antipholus i see sir you haue": [0, 65535], "met master antipholus i see sir you haue found": [0, 65535], "master antipholus i see sir you haue found the": [0, 65535], "antipholus i see sir you haue found the gold": [0, 65535], "i see sir you haue found the gold smith": [0, 65535], "see sir you haue found the gold smith now": [0, 65535], "sir you haue found the gold smith now is": [0, 65535], "you haue found the gold smith now is that": [0, 65535], "haue found the gold smith now is that the": [0, 65535], "found the gold smith now is that the chaine": [0, 65535], "the gold smith now is that the chaine you": [0, 65535], "gold smith now is that the chaine you promis'd": [0, 65535], "smith now is that the chaine you promis'd me": [0, 65535], "now is that the chaine you promis'd me to": [0, 65535], "is that the chaine you promis'd me to day": [0, 65535], "that the chaine you promis'd me to day ant": [0, 65535], "the chaine you promis'd me to day ant sathan": [0, 65535], "chaine you promis'd me to day ant sathan auoide": [0, 65535], "you promis'd me to day ant sathan auoide i": [0, 65535], "promis'd me to day ant sathan auoide i charge": [0, 65535], "me to day ant sathan auoide i charge thee": [0, 65535], "to day ant sathan auoide i charge thee tempt": [0, 65535], "day ant sathan auoide i charge thee tempt me": [0, 65535], "ant sathan auoide i charge thee tempt me not": [0, 65535], "sathan auoide i charge thee tempt me not s": [0, 65535], "auoide i charge thee tempt me not s dro": [0, 65535], "i charge thee tempt me not s dro master": [0, 65535], "charge thee tempt me not s dro master is": [0, 65535], "thee tempt me not s dro master is this": [0, 65535], "tempt me not s dro master is this mistris": [0, 65535], "me not s dro master is this mistris sathan": [0, 65535], "not s dro master is this mistris sathan ant": [0, 65535], "s dro master is this mistris sathan ant it": [0, 65535], "dro master is this mistris sathan ant it is": [0, 65535], "master is this mistris sathan ant it is the": [0, 65535], "is this mistris sathan ant it is the diuell": [0, 65535], "this mistris sathan ant it is the diuell s": [0, 65535], "mistris sathan ant it is the diuell s dro": [0, 65535], "sathan ant it is the diuell s dro nay": [0, 65535], "ant it is the diuell s dro nay she": [0, 65535], "it is the diuell s dro nay she is": [0, 65535], "is the diuell s dro nay she is worse": [0, 65535], "the diuell s dro nay she is worse she": [0, 65535], "diuell s dro nay she is worse she is": [0, 65535], "s dro nay she is worse she is the": [0, 65535], "dro nay she is worse she is the diuels": [0, 65535], "nay she is worse she is the diuels dam": [0, 65535], "she is worse she is the diuels dam and": [0, 65535], "is worse she is the diuels dam and here": [0, 65535], "worse she is the diuels dam and here she": [0, 65535], "she is the diuels dam and here she comes": [0, 65535], "is the diuels dam and here she comes in": [0, 65535], "the diuels dam and here she comes in the": [0, 65535], "diuels dam and here she comes in the habit": [0, 65535], "dam and here she comes in the habit of": [0, 65535], "and here she comes in the habit of a": [0, 65535], "here she comes in the habit of a light": [0, 65535], "she comes in the habit of a light wench": [0, 65535], "comes in the habit of a light wench and": [0, 65535], "in the habit of a light wench and thereof": [0, 65535], "the habit of a light wench and thereof comes": [0, 65535], "habit of a light wench and thereof comes that": [0, 65535], "of a light wench and thereof comes that the": [0, 65535], "a light wench and thereof comes that the wenches": [0, 65535], "light wench and thereof comes that the wenches say": [0, 65535], "wench and thereof comes that the wenches say god": [0, 65535], "and thereof comes that the wenches say god dam": [0, 65535], "thereof comes that the wenches say god dam me": [0, 65535], "comes that the wenches say god dam me that's": [0, 65535], "that the wenches say god dam me that's as": [0, 65535], "the wenches say god dam me that's as much": [0, 65535], "wenches say god dam me that's as much to": [0, 65535], "say god dam me that's as much to say": [0, 65535], "god dam me that's as much to say god": [0, 65535], "dam me that's as much to say god make": [0, 65535], "me that's as much to say god make me": [0, 65535], "that's as much to say god make me a": [0, 65535], "as much to say god make me a light": [0, 65535], "much to say god make me a light wench": [0, 65535], "to say god make me a light wench it": [0, 65535], "say god make me a light wench it is": [0, 65535], "god make me a light wench it is written": [0, 65535], "make me a light wench it is written they": [0, 65535], "me a light wench it is written they appeare": [0, 65535], "a light wench it is written they appeare to": [0, 65535], "light wench it is written they appeare to men": [0, 65535], "wench it is written they appeare to men like": [0, 65535], "it is written they appeare to men like angels": [0, 65535], "is written they appeare to men like angels of": [0, 65535], "written they appeare to men like angels of light": [0, 65535], "they appeare to men like angels of light light": [0, 65535], "appeare to men like angels of light light is": [0, 65535], "to men like angels of light light is an": [0, 65535], "men like angels of light light is an effect": [0, 65535], "like angels of light light is an effect of": [0, 65535], "angels of light light is an effect of fire": [0, 65535], "of light light is an effect of fire and": [0, 65535], "light light is an effect of fire and fire": [0, 65535], "light is an effect of fire and fire will": [0, 65535], "is an effect of fire and fire will burne": [0, 65535], "an effect of fire and fire will burne ergo": [0, 65535], "effect of fire and fire will burne ergo light": [0, 65535], "of fire and fire will burne ergo light wenches": [0, 65535], "fire and fire will burne ergo light wenches will": [0, 65535], "and fire will burne ergo light wenches will burne": [0, 65535], "fire will burne ergo light wenches will burne come": [0, 65535], "will burne ergo light wenches will burne come not": [0, 65535], "burne ergo light wenches will burne come not neere": [0, 65535], "ergo light wenches will burne come not neere her": [0, 65535], "light wenches will burne come not neere her cur": [0, 65535], "wenches will burne come not neere her cur your": [0, 65535], "will burne come not neere her cur your man": [0, 65535], "burne come not neere her cur your man and": [0, 65535], "come not neere her cur your man and you": [0, 65535], "not neere her cur your man and you are": [0, 65535], "neere her cur your man and you are maruailous": [0, 65535], "her cur your man and you are maruailous merrie": [0, 65535], "cur your man and you are maruailous merrie sir": [0, 65535], "your man and you are maruailous merrie sir will": [0, 65535], "man and you are maruailous merrie sir will you": [0, 65535], "and you are maruailous merrie sir will you goe": [0, 65535], "you are maruailous merrie sir will you goe with": [0, 65535], "are maruailous merrie sir will you goe with me": [0, 65535], "maruailous merrie sir will you goe with me wee'll": [0, 65535], "merrie sir will you goe with me wee'll mend": [0, 65535], "sir will you goe with me wee'll mend our": [0, 65535], "will you goe with me wee'll mend our dinner": [0, 65535], "you goe with me wee'll mend our dinner here": [0, 65535], "goe with me wee'll mend our dinner here s": [0, 65535], "with me wee'll mend our dinner here s dro": [0, 65535], "me wee'll mend our dinner here s dro master": [0, 65535], "wee'll mend our dinner here s dro master if": [0, 65535], "mend our dinner here s dro master if do": [0, 65535], "our dinner here s dro master if do expect": [0, 65535], "dinner here s dro master if do expect spoon": [0, 65535], "here s dro master if do expect spoon meate": [0, 65535], "s dro master if do expect spoon meate or": [0, 65535], "dro master if do expect spoon meate or bespeake": [0, 65535], "master if do expect spoon meate or bespeake a": [0, 65535], "if do expect spoon meate or bespeake a long": [0, 65535], "do expect spoon meate or bespeake a long spoone": [0, 65535], "expect spoon meate or bespeake a long spoone ant": [0, 65535], "spoon meate or bespeake a long spoone ant why": [0, 65535], "meate or bespeake a long spoone ant why dromio": [0, 65535], "or bespeake a long spoone ant why dromio s": [0, 65535], "bespeake a long spoone ant why dromio s dro": [0, 65535], "a long spoone ant why dromio s dro marrie": [0, 65535], "long spoone ant why dromio s dro marrie he": [0, 65535], "spoone ant why dromio s dro marrie he must": [0, 65535], "ant why dromio s dro marrie he must haue": [0, 65535], "why dromio s dro marrie he must haue a": [0, 65535], "dromio s dro marrie he must haue a long": [0, 65535], "s dro marrie he must haue a long spoone": [0, 65535], "dro marrie he must haue a long spoone that": [0, 65535], "marrie he must haue a long spoone that must": [0, 65535], "he must haue a long spoone that must eate": [0, 65535], "must haue a long spoone that must eate with": [0, 65535], "haue a long spoone that must eate with the": [0, 65535], "a long spoone that must eate with the diuell": [0, 65535], "long spoone that must eate with the diuell ant": [0, 65535], "spoone that must eate with the diuell ant auoid": [0, 65535], "that must eate with the diuell ant auoid then": [0, 65535], "must eate with the diuell ant auoid then fiend": [0, 65535], "eate with the diuell ant auoid then fiend what": [0, 65535], "with the diuell ant auoid then fiend what tel'st": [0, 65535], "the diuell ant auoid then fiend what tel'st thou": [0, 65535], "diuell ant auoid then fiend what tel'st thou me": [0, 65535], "ant auoid then fiend what tel'st thou me of": [0, 65535], "auoid then fiend what tel'st thou me of supping": [0, 65535], "then fiend what tel'st thou me of supping thou": [0, 65535], "fiend what tel'st thou me of supping thou art": [0, 65535], "what tel'st thou me of supping thou art as": [0, 65535], "tel'st thou me of supping thou art as you": [0, 65535], "thou me of supping thou art as you are": [0, 65535], "me of supping thou art as you are all": [0, 65535], "of supping thou art as you are all a": [0, 65535], "supping thou art as you are all a sorceresse": [0, 65535], "thou art as you are all a sorceresse i": [0, 65535], "art as you are all a sorceresse i coniure": [0, 65535], "as you are all a sorceresse i coniure thee": [0, 65535], "you are all a sorceresse i coniure thee to": [0, 65535], "are all a sorceresse i coniure thee to leaue": [0, 65535], "all a sorceresse i coniure thee to leaue me": [0, 65535], "a sorceresse i coniure thee to leaue me and": [0, 65535], "sorceresse i coniure thee to leaue me and be": [0, 65535], "i coniure thee to leaue me and be gon": [0, 65535], "coniure thee to leaue me and be gon cur": [0, 65535], "thee to leaue me and be gon cur giue": [0, 65535], "to leaue me and be gon cur giue me": [0, 65535], "leaue me and be gon cur giue me the": [0, 65535], "me and be gon cur giue me the ring": [0, 65535], "and be gon cur giue me the ring of": [0, 65535], "be gon cur giue me the ring of mine": [0, 65535], "gon cur giue me the ring of mine you": [0, 65535], "cur giue me the ring of mine you had": [0, 65535], "giue me the ring of mine you had at": [0, 65535], "me the ring of mine you had at dinner": [0, 65535], "the ring of mine you had at dinner or": [0, 65535], "ring of mine you had at dinner or for": [0, 65535], "of mine you had at dinner or for my": [0, 65535], "mine you had at dinner or for my diamond": [0, 65535], "you had at dinner or for my diamond the": [0, 65535], "had at dinner or for my diamond the chaine": [0, 65535], "at dinner or for my diamond the chaine you": [0, 65535], "dinner or for my diamond the chaine you promis'd": [0, 65535], "or for my diamond the chaine you promis'd and": [0, 65535], "for my diamond the chaine you promis'd and ile": [0, 65535], "my diamond the chaine you promis'd and ile be": [0, 65535], "diamond the chaine you promis'd and ile be gone": [0, 65535], "the chaine you promis'd and ile be gone sir": [0, 65535], "chaine you promis'd and ile be gone sir and": [0, 65535], "you promis'd and ile be gone sir and not": [0, 65535], "promis'd and ile be gone sir and not trouble": [0, 65535], "and ile be gone sir and not trouble you": [0, 65535], "ile be gone sir and not trouble you s": [0, 65535], "be gone sir and not trouble you s dro": [0, 65535], "gone sir and not trouble you s dro some": [0, 65535], "sir and not trouble you s dro some diuels": [0, 65535], "and not trouble you s dro some diuels aske": [0, 65535], "not trouble you s dro some diuels aske but": [0, 65535], "trouble you s dro some diuels aske but the": [0, 65535], "you s dro some diuels aske but the parings": [0, 65535], "s dro some diuels aske but the parings of": [0, 65535], "dro some diuels aske but the parings of ones": [0, 65535], "some diuels aske but the parings of ones naile": [0, 65535], "diuels aske but the parings of ones naile a": [0, 65535], "aske but the parings of ones naile a rush": [0, 65535], "but the parings of ones naile a rush a": [0, 65535], "the parings of ones naile a rush a haire": [0, 65535], "parings of ones naile a rush a haire a": [0, 65535], "of ones naile a rush a haire a drop": [0, 65535], "ones naile a rush a haire a drop of": [0, 65535], "naile a rush a haire a drop of blood": [0, 65535], "a rush a haire a drop of blood a": [0, 65535], "rush a haire a drop of blood a pin": [0, 65535], "a haire a drop of blood a pin a": [0, 65535], "haire a drop of blood a pin a nut": [0, 65535], "a drop of blood a pin a nut a": [0, 65535], "drop of blood a pin a nut a cherrie": [0, 65535], "of blood a pin a nut a cherrie stone": [0, 65535], "blood a pin a nut a cherrie stone but": [0, 65535], "a pin a nut a cherrie stone but she": [0, 65535], "pin a nut a cherrie stone but she more": [0, 65535], "a nut a cherrie stone but she more couetous": [0, 65535], "nut a cherrie stone but she more couetous wold": [0, 65535], "a cherrie stone but she more couetous wold haue": [0, 65535], "cherrie stone but she more couetous wold haue a": [0, 65535], "stone but she more couetous wold haue a chaine": [0, 65535], "but she more couetous wold haue a chaine master": [0, 65535], "she more couetous wold haue a chaine master be": [0, 65535], "more couetous wold haue a chaine master be wise": [0, 65535], "couetous wold haue a chaine master be wise and": [0, 65535], "wold haue a chaine master be wise and if": [0, 65535], "haue a chaine master be wise and if you": [0, 65535], "a chaine master be wise and if you giue": [0, 65535], "chaine master be wise and if you giue it": [0, 65535], "master be wise and if you giue it her": [0, 65535], "be wise and if you giue it her the": [0, 65535], "wise and if you giue it her the diuell": [0, 65535], "and if you giue it her the diuell will": [0, 65535], "if you giue it her the diuell will shake": [0, 65535], "you giue it her the diuell will shake her": [0, 65535], "giue it her the diuell will shake her chaine": [0, 65535], "it her the diuell will shake her chaine and": [0, 65535], "her the diuell will shake her chaine and fright": [0, 65535], "the diuell will shake her chaine and fright vs": [0, 65535], "diuell will shake her chaine and fright vs with": [0, 65535], "will shake her chaine and fright vs with it": [0, 65535], "shake her chaine and fright vs with it cur": [0, 65535], "her chaine and fright vs with it cur i": [0, 65535], "chaine and fright vs with it cur i pray": [0, 65535], "and fright vs with it cur i pray you": [0, 65535], "fright vs with it cur i pray you sir": [0, 65535], "vs with it cur i pray you sir my": [0, 65535], "with it cur i pray you sir my ring": [0, 65535], "it cur i pray you sir my ring or": [0, 65535], "cur i pray you sir my ring or else": [0, 65535], "i pray you sir my ring or else the": [0, 65535], "pray you sir my ring or else the chaine": [0, 65535], "you sir my ring or else the chaine i": [0, 65535], "sir my ring or else the chaine i hope": [0, 65535], "my ring or else the chaine i hope you": [0, 65535], "ring or else the chaine i hope you do": [0, 65535], "or else the chaine i hope you do not": [0, 65535], "else the chaine i hope you do not meane": [0, 65535], "the chaine i hope you do not meane to": [0, 65535], "chaine i hope you do not meane to cheate": [0, 65535], "i hope you do not meane to cheate me": [0, 65535], "hope you do not meane to cheate me so": [0, 65535], "you do not meane to cheate me so ant": [0, 65535], "do not meane to cheate me so ant auant": [0, 65535], "not meane to cheate me so ant auant thou": [0, 65535], "meane to cheate me so ant auant thou witch": [0, 65535], "to cheate me so ant auant thou witch come": [0, 65535], "cheate me so ant auant thou witch come dromio": [0, 65535], "me so ant auant thou witch come dromio let": [0, 65535], "so ant auant thou witch come dromio let vs": [0, 65535], "ant auant thou witch come dromio let vs go": [0, 65535], "auant thou witch come dromio let vs go s": [0, 65535], "thou witch come dromio let vs go s dro": [0, 65535], "witch come dromio let vs go s dro flie": [0, 65535], "come dromio let vs go s dro flie pride": [0, 65535], "dromio let vs go s dro flie pride saies": [0, 65535], "let vs go s dro flie pride saies the": [0, 65535], "vs go s dro flie pride saies the pea": [0, 65535], "go s dro flie pride saies the pea cocke": [0, 65535], "s dro flie pride saies the pea cocke mistris": [0, 65535], "dro flie pride saies the pea cocke mistris that": [0, 65535], "flie pride saies the pea cocke mistris that you": [0, 65535], "pride saies the pea cocke mistris that you know": [0, 65535], "saies the pea cocke mistris that you know exit": [0, 65535], "the pea cocke mistris that you know exit cur": [0, 65535], "pea cocke mistris that you know exit cur now": [0, 65535], "cocke mistris that you know exit cur now out": [0, 65535], "mistris that you know exit cur now out of": [0, 65535], "that you know exit cur now out of doubt": [0, 65535], "you know exit cur now out of doubt antipholus": [0, 65535], "know exit cur now out of doubt antipholus is": [0, 65535], "exit cur now out of doubt antipholus is mad": [0, 65535], "cur now out of doubt antipholus is mad else": [0, 65535], "now out of doubt antipholus is mad else would": [0, 65535], "out of doubt antipholus is mad else would he": [0, 65535], "of doubt antipholus is mad else would he neuer": [0, 65535], "doubt antipholus is mad else would he neuer so": [0, 65535], "antipholus is mad else would he neuer so demeane": [0, 65535], "is mad else would he neuer so demeane himselfe": [0, 65535], "mad else would he neuer so demeane himselfe a": [0, 65535], "else would he neuer so demeane himselfe a ring": [0, 65535], "would he neuer so demeane himselfe a ring he": [0, 65535], "he neuer so demeane himselfe a ring he hath": [0, 65535], "neuer so demeane himselfe a ring he hath of": [0, 65535], "so demeane himselfe a ring he hath of mine": [0, 65535], "demeane himselfe a ring he hath of mine worth": [0, 65535], "himselfe a ring he hath of mine worth fortie": [0, 65535], "a ring he hath of mine worth fortie duckets": [0, 65535], "ring he hath of mine worth fortie duckets and": [0, 65535], "he hath of mine worth fortie duckets and for": [0, 65535], "hath of mine worth fortie duckets and for the": [0, 65535], "of mine worth fortie duckets and for the same": [0, 65535], "mine worth fortie duckets and for the same he": [0, 65535], "worth fortie duckets and for the same he promis'd": [0, 65535], "fortie duckets and for the same he promis'd me": [0, 65535], "duckets and for the same he promis'd me a": [0, 65535], "and for the same he promis'd me a chaine": [0, 65535], "for the same he promis'd me a chaine both": [0, 65535], "the same he promis'd me a chaine both one": [0, 65535], "same he promis'd me a chaine both one and": [0, 65535], "he promis'd me a chaine both one and other": [0, 65535], "promis'd me a chaine both one and other he": [0, 65535], "me a chaine both one and other he denies": [0, 65535], "a chaine both one and other he denies me": [0, 65535], "chaine both one and other he denies me now": [0, 65535], "both one and other he denies me now the": [0, 65535], "one and other he denies me now the reason": [0, 65535], "and other he denies me now the reason that": [0, 65535], "other he denies me now the reason that i": [0, 65535], "he denies me now the reason that i gather": [0, 65535], "denies me now the reason that i gather he": [0, 65535], "me now the reason that i gather he is": [0, 65535], "now the reason that i gather he is mad": [0, 65535], "the reason that i gather he is mad besides": [0, 65535], "reason that i gather he is mad besides this": [0, 65535], "that i gather he is mad besides this present": [0, 65535], "i gather he is mad besides this present instance": [0, 65535], "gather he is mad besides this present instance of": [0, 65535], "he is mad besides this present instance of his": [0, 65535], "is mad besides this present instance of his rage": [0, 65535], "mad besides this present instance of his rage is": [0, 65535], "besides this present instance of his rage is a": [0, 65535], "this present instance of his rage is a mad": [0, 65535], "present instance of his rage is a mad tale": [0, 65535], "instance of his rage is a mad tale he": [0, 65535], "of his rage is a mad tale he told": [0, 65535], "his rage is a mad tale he told to": [0, 65535], "rage is a mad tale he told to day": [0, 65535], "is a mad tale he told to day at": [0, 65535], "a mad tale he told to day at dinner": [0, 65535], "mad tale he told to day at dinner of": [0, 65535], "tale he told to day at dinner of his": [0, 65535], "he told to day at dinner of his owne": [0, 65535], "told to day at dinner of his owne doores": [0, 65535], "to day at dinner of his owne doores being": [0, 65535], "day at dinner of his owne doores being shut": [0, 65535], "at dinner of his owne doores being shut against": [0, 65535], "dinner of his owne doores being shut against his": [0, 65535], "of his owne doores being shut against his entrance": [0, 65535], "his owne doores being shut against his entrance belike": [0, 65535], "owne doores being shut against his entrance belike his": [0, 65535], "doores being shut against his entrance belike his wife": [0, 65535], "being shut against his entrance belike his wife acquainted": [0, 65535], "shut against his entrance belike his wife acquainted with": [0, 65535], "against his entrance belike his wife acquainted with his": [0, 65535], "his entrance belike his wife acquainted with his fits": [0, 65535], "entrance belike his wife acquainted with his fits on": [0, 65535], "belike his wife acquainted with his fits on purpose": [0, 65535], "his wife acquainted with his fits on purpose shut": [0, 65535], "wife acquainted with his fits on purpose shut the": [0, 65535], "acquainted with his fits on purpose shut the doores": [0, 65535], "with his fits on purpose shut the doores against": [0, 65535], "his fits on purpose shut the doores against his": [0, 65535], "fits on purpose shut the doores against his way": [0, 65535], "on purpose shut the doores against his way my": [0, 65535], "purpose shut the doores against his way my way": [0, 65535], "shut the doores against his way my way is": [0, 65535], "the doores against his way my way is now": [0, 65535], "doores against his way my way is now to": [0, 65535], "against his way my way is now to hie": [0, 65535], "his way my way is now to hie home": [0, 65535], "way my way is now to hie home to": [0, 65535], "my way is now to hie home to his": [0, 65535], "way is now to hie home to his house": [0, 65535], "is now to hie home to his house and": [0, 65535], "now to hie home to his house and tell": [0, 65535], "to hie home to his house and tell his": [0, 65535], "hie home to his house and tell his wife": [0, 65535], "home to his house and tell his wife that": [0, 65535], "to his house and tell his wife that being": [0, 65535], "his house and tell his wife that being lunaticke": [0, 65535], "house and tell his wife that being lunaticke he": [0, 65535], "and tell his wife that being lunaticke he rush'd": [0, 65535], "tell his wife that being lunaticke he rush'd into": [0, 65535], "his wife that being lunaticke he rush'd into my": [0, 65535], "wife that being lunaticke he rush'd into my house": [0, 65535], "that being lunaticke he rush'd into my house and": [0, 65535], "being lunaticke he rush'd into my house and tooke": [0, 65535], "lunaticke he rush'd into my house and tooke perforce": [0, 65535], "he rush'd into my house and tooke perforce my": [0, 65535], "rush'd into my house and tooke perforce my ring": [0, 65535], "into my house and tooke perforce my ring away": [0, 65535], "my house and tooke perforce my ring away this": [0, 65535], "house and tooke perforce my ring away this course": [0, 65535], "and tooke perforce my ring away this course i": [0, 65535], "tooke perforce my ring away this course i fittest": [0, 65535], "perforce my ring away this course i fittest choose": [0, 65535], "my ring away this course i fittest choose for": [0, 65535], "ring away this course i fittest choose for fortie": [0, 65535], "away this course i fittest choose for fortie duckets": [0, 65535], "this course i fittest choose for fortie duckets is": [0, 65535], "course i fittest choose for fortie duckets is too": [0, 65535], "i fittest choose for fortie duckets is too much": [0, 65535], "fittest choose for fortie duckets is too much to": [0, 65535], "choose for fortie duckets is too much to loose": [0, 65535], "for fortie duckets is too much to loose enter": [0, 65535], "fortie duckets is too much to loose enter antipholus": [0, 65535], "duckets is too much to loose enter antipholus ephes": [0, 65535], "is too much to loose enter antipholus ephes with": [0, 65535], "too much to loose enter antipholus ephes with a": [0, 65535], "much to loose enter antipholus ephes with a iailor": [0, 65535], "to loose enter antipholus ephes with a iailor an": [0, 65535], "loose enter antipholus ephes with a iailor an feare": [0, 65535], "enter antipholus ephes with a iailor an feare me": [0, 65535], "antipholus ephes with a iailor an feare me not": [0, 65535], "ephes with a iailor an feare me not man": [0, 65535], "with a iailor an feare me not man i": [0, 65535], "a iailor an feare me not man i will": [0, 65535], "iailor an feare me not man i will not": [0, 65535], "an feare me not man i will not breake": [0, 65535], "feare me not man i will not breake away": [0, 65535], "me not man i will not breake away ile": [0, 65535], "not man i will not breake away ile giue": [0, 65535], "man i will not breake away ile giue thee": [0, 65535], "i will not breake away ile giue thee ere": [0, 65535], "will not breake away ile giue thee ere i": [0, 65535], "not breake away ile giue thee ere i leaue": [0, 65535], "breake away ile giue thee ere i leaue thee": [0, 65535], "away ile giue thee ere i leaue thee so": [0, 65535], "ile giue thee ere i leaue thee so much": [0, 65535], "giue thee ere i leaue thee so much money": [0, 65535], "thee ere i leaue thee so much money to": [0, 65535], "ere i leaue thee so much money to warrant": [0, 65535], "i leaue thee so much money to warrant thee": [0, 65535], "leaue thee so much money to warrant thee as": [0, 65535], "thee so much money to warrant thee as i": [0, 65535], "so much money to warrant thee as i am": [0, 65535], "much money to warrant thee as i am rested": [0, 65535], "money to warrant thee as i am rested for": [0, 65535], "to warrant thee as i am rested for my": [0, 65535], "warrant thee as i am rested for my wife": [0, 65535], "thee as i am rested for my wife is": [0, 65535], "as i am rested for my wife is in": [0, 65535], "i am rested for my wife is in a": [0, 65535], "am rested for my wife is in a wayward": [0, 65535], "rested for my wife is in a wayward moode": [0, 65535], "for my wife is in a wayward moode to": [0, 65535], "my wife is in a wayward moode to day": [0, 65535], "wife is in a wayward moode to day and": [0, 65535], "is in a wayward moode to day and will": [0, 65535], "in a wayward moode to day and will not": [0, 65535], "a wayward moode to day and will not lightly": [0, 65535], "wayward moode to day and will not lightly trust": [0, 65535], "moode to day and will not lightly trust the": [0, 65535], "to day and will not lightly trust the messenger": [0, 65535], "day and will not lightly trust the messenger that": [0, 65535], "and will not lightly trust the messenger that i": [0, 65535], "will not lightly trust the messenger that i should": [0, 65535], "not lightly trust the messenger that i should be": [0, 65535], "lightly trust the messenger that i should be attach'd": [0, 65535], "trust the messenger that i should be attach'd in": [0, 65535], "the messenger that i should be attach'd in ephesus": [0, 65535], "messenger that i should be attach'd in ephesus i": [0, 65535], "that i should be attach'd in ephesus i tell": [0, 65535], "i should be attach'd in ephesus i tell you": [0, 65535], "should be attach'd in ephesus i tell you 'twill": [0, 65535], "be attach'd in ephesus i tell you 'twill sound": [0, 65535], "attach'd in ephesus i tell you 'twill sound harshly": [0, 65535], "in ephesus i tell you 'twill sound harshly in": [0, 65535], "ephesus i tell you 'twill sound harshly in her": [0, 65535], "i tell you 'twill sound harshly in her eares": [0, 65535], "tell you 'twill sound harshly in her eares enter": [0, 65535], "you 'twill sound harshly in her eares enter dromio": [0, 65535], "'twill sound harshly in her eares enter dromio eph": [0, 65535], "sound harshly in her eares enter dromio eph with": [0, 65535], "harshly in her eares enter dromio eph with a": [0, 65535], "in her eares enter dromio eph with a ropes": [0, 65535], "her eares enter dromio eph with a ropes end": [0, 65535], "eares enter dromio eph with a ropes end heere": [0, 65535], "enter dromio eph with a ropes end heere comes": [0, 65535], "dromio eph with a ropes end heere comes my": [0, 65535], "eph with a ropes end heere comes my man": [0, 65535], "with a ropes end heere comes my man i": [0, 65535], "a ropes end heere comes my man i thinke": [0, 65535], "ropes end heere comes my man i thinke he": [0, 65535], "end heere comes my man i thinke he brings": [0, 65535], "heere comes my man i thinke he brings the": [0, 65535], "comes my man i thinke he brings the monie": [0, 65535], "my man i thinke he brings the monie how": [0, 65535], "man i thinke he brings the monie how now": [0, 65535], "i thinke he brings the monie how now sir": [0, 65535], "thinke he brings the monie how now sir haue": [0, 65535], "he brings the monie how now sir haue you": [0, 65535], "brings the monie how now sir haue you that": [0, 65535], "the monie how now sir haue you that i": [0, 65535], "monie how now sir haue you that i sent": [0, 65535], "how now sir haue you that i sent you": [0, 65535], "now sir haue you that i sent you for": [0, 65535], "sir haue you that i sent you for e": [0, 65535], "haue you that i sent you for e dro": [0, 65535], "you that i sent you for e dro here's": [0, 65535], "that i sent you for e dro here's that": [0, 65535], "i sent you for e dro here's that i": [0, 65535], "sent you for e dro here's that i warrant": [0, 65535], "you for e dro here's that i warrant you": [0, 65535], "for e dro here's that i warrant you will": [0, 65535], "e dro here's that i warrant you will pay": [0, 65535], "dro here's that i warrant you will pay them": [0, 65535], "here's that i warrant you will pay them all": [0, 65535], "that i warrant you will pay them all anti": [0, 65535], "i warrant you will pay them all anti but": [0, 65535], "warrant you will pay them all anti but where's": [0, 65535], "you will pay them all anti but where's the": [0, 65535], "will pay them all anti but where's the money": [0, 65535], "pay them all anti but where's the money e": [0, 65535], "them all anti but where's the money e dro": [0, 65535], "all anti but where's the money e dro why": [0, 65535], "anti but where's the money e dro why sir": [0, 65535], "but where's the money e dro why sir i": [0, 65535], "where's the money e dro why sir i gaue": [0, 65535], "the money e dro why sir i gaue the": [0, 65535], "money e dro why sir i gaue the monie": [0, 65535], "e dro why sir i gaue the monie for": [0, 65535], "dro why sir i gaue the monie for the": [0, 65535], "why sir i gaue the monie for the rope": [0, 65535], "sir i gaue the monie for the rope ant": [0, 65535], "i gaue the monie for the rope ant fiue": [0, 65535], "gaue the monie for the rope ant fiue hundred": [0, 65535], "the monie for the rope ant fiue hundred duckets": [0, 65535], "monie for the rope ant fiue hundred duckets villaine": [0, 65535], "for the rope ant fiue hundred duckets villaine for": [0, 65535], "the rope ant fiue hundred duckets villaine for a": [0, 65535], "rope ant fiue hundred duckets villaine for a rope": [0, 65535], "ant fiue hundred duckets villaine for a rope e": [0, 65535], "fiue hundred duckets villaine for a rope e dro": [0, 65535], "hundred duckets villaine for a rope e dro ile": [0, 65535], "duckets villaine for a rope e dro ile serue": [0, 65535], "villaine for a rope e dro ile serue you": [0, 65535], "for a rope e dro ile serue you sir": [0, 65535], "a rope e dro ile serue you sir fiue": [0, 65535], "rope e dro ile serue you sir fiue hundred": [0, 65535], "e dro ile serue you sir fiue hundred at": [0, 65535], "dro ile serue you sir fiue hundred at the": [0, 65535], "ile serue you sir fiue hundred at the rate": [0, 65535], "serue you sir fiue hundred at the rate ant": [0, 65535], "you sir fiue hundred at the rate ant to": [0, 65535], "sir fiue hundred at the rate ant to what": [0, 65535], "fiue hundred at the rate ant to what end": [0, 65535], "hundred at the rate ant to what end did": [0, 65535], "at the rate ant to what end did i": [0, 65535], "the rate ant to what end did i bid": [0, 65535], "rate ant to what end did i bid thee": [0, 65535], "ant to what end did i bid thee hie": [0, 65535], "to what end did i bid thee hie thee": [0, 65535], "what end did i bid thee hie thee home": [0, 65535], "end did i bid thee hie thee home e": [0, 65535], "did i bid thee hie thee home e dro": [0, 65535], "i bid thee hie thee home e dro to": [0, 65535], "bid thee hie thee home e dro to a": [0, 65535], "thee hie thee home e dro to a ropes": [0, 65535], "hie thee home e dro to a ropes end": [0, 65535], "thee home e dro to a ropes end sir": [0, 65535], "home e dro to a ropes end sir and": [0, 65535], "e dro to a ropes end sir and to": [0, 65535], "dro to a ropes end sir and to that": [0, 65535], "to a ropes end sir and to that end": [0, 65535], "a ropes end sir and to that end am": [0, 65535], "ropes end sir and to that end am i": [0, 65535], "end sir and to that end am i re": [0, 65535], "sir and to that end am i re turn'd": [0, 65535], "and to that end am i re turn'd ant": [0, 65535], "to that end am i re turn'd ant and": [0, 65535], "that end am i re turn'd ant and to": [0, 65535], "end am i re turn'd ant and to that": [0, 65535], "am i re turn'd ant and to that end": [0, 65535], "i re turn'd ant and to that end sir": [0, 65535], "re turn'd ant and to that end sir i": [0, 65535], "turn'd ant and to that end sir i will": [0, 65535], "ant and to that end sir i will welcome": [0, 65535], "and to that end sir i will welcome you": [0, 65535], "to that end sir i will welcome you offi": [0, 65535], "that end sir i will welcome you offi good": [0, 65535], "end sir i will welcome you offi good sir": [0, 65535], "sir i will welcome you offi good sir be": [0, 65535], "i will welcome you offi good sir be patient": [0, 65535], "will welcome you offi good sir be patient e": [0, 65535], "welcome you offi good sir be patient e dro": [0, 65535], "you offi good sir be patient e dro nay": [0, 65535], "offi good sir be patient e dro nay 'tis": [0, 65535], "good sir be patient e dro nay 'tis for": [0, 65535], "sir be patient e dro nay 'tis for me": [0, 65535], "be patient e dro nay 'tis for me to": [0, 65535], "patient e dro nay 'tis for me to be": [0, 65535], "e dro nay 'tis for me to be patient": [0, 65535], "dro nay 'tis for me to be patient i": [0, 65535], "nay 'tis for me to be patient i am": [0, 65535], "'tis for me to be patient i am in": [0, 65535], "for me to be patient i am in aduersitie": [0, 65535], "me to be patient i am in aduersitie offi": [0, 65535], "to be patient i am in aduersitie offi good": [0, 65535], "be patient i am in aduersitie offi good now": [0, 65535], "patient i am in aduersitie offi good now hold": [0, 65535], "i am in aduersitie offi good now hold thy": [0, 65535], "am in aduersitie offi good now hold thy tongue": [0, 65535], "in aduersitie offi good now hold thy tongue e": [0, 65535], "aduersitie offi good now hold thy tongue e dro": [0, 65535], "offi good now hold thy tongue e dro nay": [0, 65535], "good now hold thy tongue e dro nay rather": [0, 65535], "now hold thy tongue e dro nay rather perswade": [0, 65535], "hold thy tongue e dro nay rather perswade him": [0, 65535], "thy tongue e dro nay rather perswade him to": [0, 65535], "tongue e dro nay rather perswade him to hold": [0, 65535], "e dro nay rather perswade him to hold his": [0, 65535], "dro nay rather perswade him to hold his hands": [0, 65535], "nay rather perswade him to hold his hands anti": [0, 65535], "rather perswade him to hold his hands anti thou": [0, 65535], "perswade him to hold his hands anti thou whoreson": [0, 65535], "him to hold his hands anti thou whoreson senselesse": [0, 65535], "to hold his hands anti thou whoreson senselesse villaine": [0, 65535], "hold his hands anti thou whoreson senselesse villaine e": [0, 65535], "his hands anti thou whoreson senselesse villaine e dro": [0, 65535], "hands anti thou whoreson senselesse villaine e dro i": [0, 65535], "anti thou whoreson senselesse villaine e dro i would": [0, 65535], "thou whoreson senselesse villaine e dro i would i": [0, 65535], "whoreson senselesse villaine e dro i would i were": [0, 65535], "senselesse villaine e dro i would i were senselesse": [0, 65535], "villaine e dro i would i were senselesse sir": [0, 65535], "e dro i would i were senselesse sir that": [0, 65535], "dro i would i were senselesse sir that i": [0, 65535], "i would i were senselesse sir that i might": [0, 65535], "would i were senselesse sir that i might not": [0, 65535], "i were senselesse sir that i might not feele": [0, 65535], "were senselesse sir that i might not feele your": [0, 65535], "senselesse sir that i might not feele your blowes": [0, 65535], "sir that i might not feele your blowes anti": [0, 65535], "that i might not feele your blowes anti thou": [0, 65535], "i might not feele your blowes anti thou art": [0, 65535], "might not feele your blowes anti thou art sensible": [0, 65535], "not feele your blowes anti thou art sensible in": [0, 65535], "feele your blowes anti thou art sensible in nothing": [0, 65535], "your blowes anti thou art sensible in nothing but": [0, 65535], "blowes anti thou art sensible in nothing but blowes": [0, 65535], "anti thou art sensible in nothing but blowes and": [0, 65535], "thou art sensible in nothing but blowes and so": [0, 65535], "art sensible in nothing but blowes and so is": [0, 65535], "sensible in nothing but blowes and so is an": [0, 65535], "in nothing but blowes and so is an asse": [0, 65535], "nothing but blowes and so is an asse e": [0, 65535], "but blowes and so is an asse e dro": [0, 65535], "blowes and so is an asse e dro i": [0, 65535], "and so is an asse e dro i am": [0, 65535], "so is an asse e dro i am an": [0, 65535], "is an asse e dro i am an asse": [0, 65535], "an asse e dro i am an asse indeede": [0, 65535], "asse e dro i am an asse indeede you": [0, 65535], "e dro i am an asse indeede you may": [0, 65535], "dro i am an asse indeede you may prooue": [0, 65535], "i am an asse indeede you may prooue it": [0, 65535], "am an asse indeede you may prooue it by": [0, 65535], "an asse indeede you may prooue it by my": [0, 65535], "asse indeede you may prooue it by my long": [0, 65535], "indeede you may prooue it by my long eares": [0, 65535], "you may prooue it by my long eares i": [0, 65535], "may prooue it by my long eares i haue": [0, 65535], "prooue it by my long eares i haue serued": [0, 65535], "it by my long eares i haue serued him": [0, 65535], "by my long eares i haue serued him from": [0, 65535], "my long eares i haue serued him from the": [0, 65535], "long eares i haue serued him from the houre": [0, 65535], "eares i haue serued him from the houre of": [0, 65535], "i haue serued him from the houre of my": [0, 65535], "haue serued him from the houre of my natiuitie": [0, 65535], "serued him from the houre of my natiuitie to": [0, 65535], "him from the houre of my natiuitie to this": [0, 65535], "from the houre of my natiuitie to this instant": [0, 65535], "the houre of my natiuitie to this instant and": [0, 65535], "houre of my natiuitie to this instant and haue": [0, 65535], "of my natiuitie to this instant and haue nothing": [0, 65535], "my natiuitie to this instant and haue nothing at": [0, 65535], "natiuitie to this instant and haue nothing at his": [0, 65535], "to this instant and haue nothing at his hands": [0, 65535], "this instant and haue nothing at his hands for": [0, 65535], "instant and haue nothing at his hands for my": [0, 65535], "and haue nothing at his hands for my seruice": [0, 65535], "haue nothing at his hands for my seruice but": [0, 65535], "nothing at his hands for my seruice but blowes": [0, 65535], "at his hands for my seruice but blowes when": [0, 65535], "his hands for my seruice but blowes when i": [0, 65535], "hands for my seruice but blowes when i am": [0, 65535], "for my seruice but blowes when i am cold": [0, 65535], "my seruice but blowes when i am cold he": [0, 65535], "seruice but blowes when i am cold he heates": [0, 65535], "but blowes when i am cold he heates me": [0, 65535], "blowes when i am cold he heates me with": [0, 65535], "when i am cold he heates me with beating": [0, 65535], "i am cold he heates me with beating when": [0, 65535], "am cold he heates me with beating when i": [0, 65535], "cold he heates me with beating when i am": [0, 65535], "he heates me with beating when i am warme": [0, 65535], "heates me with beating when i am warme he": [0, 65535], "me with beating when i am warme he cooles": [0, 65535], "with beating when i am warme he cooles me": [0, 65535], "beating when i am warme he cooles me with": [0, 65535], "when i am warme he cooles me with beating": [0, 65535], "i am warme he cooles me with beating i": [0, 65535], "am warme he cooles me with beating i am": [0, 65535], "warme he cooles me with beating i am wak'd": [0, 65535], "he cooles me with beating i am wak'd with": [0, 65535], "cooles me with beating i am wak'd with it": [0, 65535], "me with beating i am wak'd with it when": [0, 65535], "with beating i am wak'd with it when i": [0, 65535], "beating i am wak'd with it when i sleepe": [0, 65535], "i am wak'd with it when i sleepe rais'd": [0, 65535], "am wak'd with it when i sleepe rais'd with": [0, 65535], "wak'd with it when i sleepe rais'd with it": [0, 65535], "with it when i sleepe rais'd with it when": [0, 65535], "it when i sleepe rais'd with it when i": [0, 65535], "when i sleepe rais'd with it when i sit": [0, 65535], "i sleepe rais'd with it when i sit driuen": [0, 65535], "sleepe rais'd with it when i sit driuen out": [0, 65535], "rais'd with it when i sit driuen out of": [0, 65535], "with it when i sit driuen out of doores": [0, 65535], "it when i sit driuen out of doores with": [0, 65535], "when i sit driuen out of doores with it": [0, 65535], "i sit driuen out of doores with it when": [0, 65535], "sit driuen out of doores with it when i": [0, 65535], "driuen out of doores with it when i goe": [0, 65535], "out of doores with it when i goe from": [0, 65535], "of doores with it when i goe from home": [0, 65535], "doores with it when i goe from home welcom'd": [0, 65535], "with it when i goe from home welcom'd home": [0, 65535], "it when i goe from home welcom'd home with": [0, 65535], "when i goe from home welcom'd home with it": [0, 65535], "i goe from home welcom'd home with it when": [0, 65535], "goe from home welcom'd home with it when i": [0, 65535], "from home welcom'd home with it when i returne": [0, 65535], "home welcom'd home with it when i returne nay": [0, 65535], "welcom'd home with it when i returne nay i": [0, 65535], "home with it when i returne nay i beare": [0, 65535], "with it when i returne nay i beare it": [0, 65535], "it when i returne nay i beare it on": [0, 65535], "when i returne nay i beare it on my": [0, 65535], "i returne nay i beare it on my shoulders": [0, 65535], "returne nay i beare it on my shoulders as": [0, 65535], "nay i beare it on my shoulders as a": [0, 65535], "i beare it on my shoulders as a begger": [0, 65535], "beare it on my shoulders as a begger woont": [0, 65535], "it on my shoulders as a begger woont her": [0, 65535], "on my shoulders as a begger woont her brat": [0, 65535], "my shoulders as a begger woont her brat and": [0, 65535], "shoulders as a begger woont her brat and i": [0, 65535], "as a begger woont her brat and i thinke": [0, 65535], "a begger woont her brat and i thinke when": [0, 65535], "begger woont her brat and i thinke when he": [0, 65535], "woont her brat and i thinke when he hath": [0, 65535], "her brat and i thinke when he hath lam'd": [0, 65535], "brat and i thinke when he hath lam'd me": [0, 65535], "and i thinke when he hath lam'd me i": [0, 65535], "i thinke when he hath lam'd me i shall": [0, 65535], "thinke when he hath lam'd me i shall begge": [0, 65535], "when he hath lam'd me i shall begge with": [0, 65535], "he hath lam'd me i shall begge with it": [0, 65535], "hath lam'd me i shall begge with it from": [0, 65535], "lam'd me i shall begge with it from doore": [0, 65535], "me i shall begge with it from doore to": [0, 65535], "i shall begge with it from doore to doore": [0, 65535], "shall begge with it from doore to doore enter": [0, 65535], "begge with it from doore to doore enter adriana": [0, 65535], "with it from doore to doore enter adriana luciana": [0, 65535], "it from doore to doore enter adriana luciana courtizan": [0, 65535], "from doore to doore enter adriana luciana courtizan and": [0, 65535], "doore to doore enter adriana luciana courtizan and a": [0, 65535], "to doore enter adriana luciana courtizan and a schoolemaster": [0, 65535], "doore enter adriana luciana courtizan and a schoolemaster call'd": [0, 65535], "enter adriana luciana courtizan and a schoolemaster call'd pinch": [0, 65535], "adriana luciana courtizan and a schoolemaster call'd pinch ant": [0, 65535], "luciana courtizan and a schoolemaster call'd pinch ant come": [0, 65535], "courtizan and a schoolemaster call'd pinch ant come goe": [0, 65535], "and a schoolemaster call'd pinch ant come goe along": [0, 65535], "a schoolemaster call'd pinch ant come goe along my": [0, 65535], "schoolemaster call'd pinch ant come goe along my wife": [0, 65535], "call'd pinch ant come goe along my wife is": [0, 65535], "pinch ant come goe along my wife is comming": [0, 65535], "ant come goe along my wife is comming yonder": [0, 65535], "come goe along my wife is comming yonder e": [0, 65535], "goe along my wife is comming yonder e dro": [0, 65535], "along my wife is comming yonder e dro mistris": [0, 65535], "my wife is comming yonder e dro mistris respice": [0, 65535], "wife is comming yonder e dro mistris respice finem": [0, 65535], "is comming yonder e dro mistris respice finem respect": [0, 65535], "comming yonder e dro mistris respice finem respect your": [0, 65535], "yonder e dro mistris respice finem respect your end": [0, 65535], "e dro mistris respice finem respect your end or": [0, 65535], "dro mistris respice finem respect your end or rather": [0, 65535], "mistris respice finem respect your end or rather the": [0, 65535], "respice finem respect your end or rather the prophesie": [0, 65535], "finem respect your end or rather the prophesie like": [0, 65535], "respect your end or rather the prophesie like the": [0, 65535], "your end or rather the prophesie like the parrat": [0, 65535], "end or rather the prophesie like the parrat beware": [0, 65535], "or rather the prophesie like the parrat beware the": [0, 65535], "rather the prophesie like the parrat beware the ropes": [0, 65535], "the prophesie like the parrat beware the ropes end": [0, 65535], "prophesie like the parrat beware the ropes end anti": [0, 65535], "like the parrat beware the ropes end anti wilt": [0, 65535], "the parrat beware the ropes end anti wilt thou": [0, 65535], "parrat beware the ropes end anti wilt thou still": [0, 65535], "beware the ropes end anti wilt thou still talke": [0, 65535], "the ropes end anti wilt thou still talke beats": [0, 65535], "ropes end anti wilt thou still talke beats dro": [0, 65535], "end anti wilt thou still talke beats dro curt": [0, 65535], "anti wilt thou still talke beats dro curt how": [0, 65535], "wilt thou still talke beats dro curt how say": [0, 65535], "thou still talke beats dro curt how say you": [0, 65535], "still talke beats dro curt how say you now": [0, 65535], "talke beats dro curt how say you now is": [0, 65535], "beats dro curt how say you now is not": [0, 65535], "dro curt how say you now is not your": [0, 65535], "curt how say you now is not your husband": [0, 65535], "how say you now is not your husband mad": [0, 65535], "say you now is not your husband mad adri": [0, 65535], "you now is not your husband mad adri his": [0, 65535], "now is not your husband mad adri his inciuility": [0, 65535], "is not your husband mad adri his inciuility confirmes": [0, 65535], "not your husband mad adri his inciuility confirmes no": [0, 65535], "your husband mad adri his inciuility confirmes no lesse": [0, 65535], "husband mad adri his inciuility confirmes no lesse good": [0, 65535], "mad adri his inciuility confirmes no lesse good doctor": [0, 65535], "adri his inciuility confirmes no lesse good doctor pinch": [0, 65535], "his inciuility confirmes no lesse good doctor pinch you": [0, 65535], "inciuility confirmes no lesse good doctor pinch you are": [0, 65535], "confirmes no lesse good doctor pinch you are a": [0, 65535], "no lesse good doctor pinch you are a coniurer": [0, 65535], "lesse good doctor pinch you are a coniurer establish": [0, 65535], "good doctor pinch you are a coniurer establish him": [0, 65535], "doctor pinch you are a coniurer establish him in": [0, 65535], "pinch you are a coniurer establish him in his": [0, 65535], "you are a coniurer establish him in his true": [0, 65535], "are a coniurer establish him in his true sence": [0, 65535], "a coniurer establish him in his true sence againe": [0, 65535], "coniurer establish him in his true sence againe and": [0, 65535], "establish him in his true sence againe and i": [0, 65535], "him in his true sence againe and i will": [0, 65535], "in his true sence againe and i will please": [0, 65535], "his true sence againe and i will please you": [0, 65535], "true sence againe and i will please you what": [0, 65535], "sence againe and i will please you what you": [0, 65535], "againe and i will please you what you will": [0, 65535], "and i will please you what you will demand": [0, 65535], "i will please you what you will demand luc": [0, 65535], "will please you what you will demand luc alas": [0, 65535], "please you what you will demand luc alas how": [0, 65535], "you what you will demand luc alas how fiery": [0, 65535], "what you will demand luc alas how fiery and": [0, 65535], "you will demand luc alas how fiery and how": [0, 65535], "will demand luc alas how fiery and how sharpe": [0, 65535], "demand luc alas how fiery and how sharpe he": [0, 65535], "luc alas how fiery and how sharpe he lookes": [0, 65535], "alas how fiery and how sharpe he lookes cur": [0, 65535], "how fiery and how sharpe he lookes cur marke": [0, 65535], "fiery and how sharpe he lookes cur marke how": [0, 65535], "and how sharpe he lookes cur marke how he": [0, 65535], "how sharpe he lookes cur marke how he trembles": [0, 65535], "sharpe he lookes cur marke how he trembles in": [0, 65535], "he lookes cur marke how he trembles in his": [0, 65535], "lookes cur marke how he trembles in his extasie": [0, 65535], "cur marke how he trembles in his extasie pinch": [0, 65535], "marke how he trembles in his extasie pinch giue": [0, 65535], "how he trembles in his extasie pinch giue me": [0, 65535], "he trembles in his extasie pinch giue me your": [0, 65535], "trembles in his extasie pinch giue me your hand": [0, 65535], "in his extasie pinch giue me your hand and": [0, 65535], "his extasie pinch giue me your hand and let": [0, 65535], "extasie pinch giue me your hand and let mee": [0, 65535], "pinch giue me your hand and let mee feele": [0, 65535], "giue me your hand and let mee feele your": [0, 65535], "me your hand and let mee feele your pulse": [0, 65535], "your hand and let mee feele your pulse ant": [0, 65535], "hand and let mee feele your pulse ant there": [0, 65535], "and let mee feele your pulse ant there is": [0, 65535], "let mee feele your pulse ant there is my": [0, 65535], "mee feele your pulse ant there is my hand": [0, 65535], "feele your pulse ant there is my hand and": [0, 65535], "your pulse ant there is my hand and let": [0, 65535], "pulse ant there is my hand and let it": [0, 65535], "ant there is my hand and let it feele": [0, 65535], "there is my hand and let it feele your": [0, 65535], "is my hand and let it feele your eare": [0, 65535], "my hand and let it feele your eare pinch": [0, 65535], "hand and let it feele your eare pinch i": [0, 65535], "and let it feele your eare pinch i charge": [0, 65535], "let it feele your eare pinch i charge thee": [0, 65535], "it feele your eare pinch i charge thee sathan": [0, 65535], "feele your eare pinch i charge thee sathan hous'd": [0, 65535], "your eare pinch i charge thee sathan hous'd within": [0, 65535], "eare pinch i charge thee sathan hous'd within this": [0, 65535], "pinch i charge thee sathan hous'd within this man": [0, 65535], "i charge thee sathan hous'd within this man to": [0, 65535], "charge thee sathan hous'd within this man to yeeld": [0, 65535], "thee sathan hous'd within this man to yeeld possession": [0, 65535], "sathan hous'd within this man to yeeld possession to": [0, 65535], "hous'd within this man to yeeld possession to my": [0, 65535], "within this man to yeeld possession to my holie": [0, 65535], "this man to yeeld possession to my holie praiers": [0, 65535], "man to yeeld possession to my holie praiers and": [0, 65535], "to yeeld possession to my holie praiers and to": [0, 65535], "yeeld possession to my holie praiers and to thy": [0, 65535], "possession to my holie praiers and to thy state": [0, 65535], "to my holie praiers and to thy state of": [0, 65535], "my holie praiers and to thy state of darknesse": [0, 65535], "holie praiers and to thy state of darknesse hie": [0, 65535], "praiers and to thy state of darknesse hie thee": [0, 65535], "and to thy state of darknesse hie thee straight": [0, 65535], "to thy state of darknesse hie thee straight i": [0, 65535], "thy state of darknesse hie thee straight i coniure": [0, 65535], "state of darknesse hie thee straight i coniure thee": [0, 65535], "of darknesse hie thee straight i coniure thee by": [0, 65535], "darknesse hie thee straight i coniure thee by all": [0, 65535], "hie thee straight i coniure thee by all the": [0, 65535], "thee straight i coniure thee by all the saints": [0, 65535], "straight i coniure thee by all the saints in": [0, 65535], "i coniure thee by all the saints in heauen": [0, 65535], "coniure thee by all the saints in heauen anti": [0, 65535], "thee by all the saints in heauen anti peace": [0, 65535], "by all the saints in heauen anti peace doting": [0, 65535], "all the saints in heauen anti peace doting wizard": [0, 65535], "the saints in heauen anti peace doting wizard peace": [0, 65535], "saints in heauen anti peace doting wizard peace i": [0, 65535], "in heauen anti peace doting wizard peace i am": [0, 65535], "heauen anti peace doting wizard peace i am not": [0, 65535], "anti peace doting wizard peace i am not mad": [0, 65535], "peace doting wizard peace i am not mad adr": [0, 65535], "doting wizard peace i am not mad adr oh": [0, 65535], "wizard peace i am not mad adr oh that": [0, 65535], "peace i am not mad adr oh that thou": [0, 65535], "i am not mad adr oh that thou wer't": [0, 65535], "am not mad adr oh that thou wer't not": [0, 65535], "not mad adr oh that thou wer't not poore": [0, 65535], "mad adr oh that thou wer't not poore distressed": [0, 65535], "adr oh that thou wer't not poore distressed soule": [0, 65535], "oh that thou wer't not poore distressed soule anti": [0, 65535], "that thou wer't not poore distressed soule anti you": [0, 65535], "thou wer't not poore distressed soule anti you minion": [0, 65535], "wer't not poore distressed soule anti you minion you": [0, 65535], "not poore distressed soule anti you minion you are": [0, 65535], "poore distressed soule anti you minion you are these": [0, 65535], "distressed soule anti you minion you are these your": [0, 65535], "soule anti you minion you are these your customers": [0, 65535], "anti you minion you are these your customers did": [0, 65535], "you minion you are these your customers did this": [0, 65535], "minion you are these your customers did this companion": [0, 65535], "you are these your customers did this companion with": [0, 65535], "are these your customers did this companion with the": [0, 65535], "these your customers did this companion with the saffron": [0, 65535], "your customers did this companion with the saffron face": [0, 65535], "customers did this companion with the saffron face reuell": [0, 65535], "did this companion with the saffron face reuell and": [0, 65535], "this companion with the saffron face reuell and feast": [0, 65535], "companion with the saffron face reuell and feast it": [0, 65535], "with the saffron face reuell and feast it at": [0, 65535], "the saffron face reuell and feast it at my": [0, 65535], "saffron face reuell and feast it at my house": [0, 65535], "face reuell and feast it at my house to": [0, 65535], "reuell and feast it at my house to day": [0, 65535], "and feast it at my house to day whil'st": [0, 65535], "feast it at my house to day whil'st vpon": [0, 65535], "it at my house to day whil'st vpon me": [0, 65535], "at my house to day whil'st vpon me the": [0, 65535], "my house to day whil'st vpon me the guiltie": [0, 65535], "house to day whil'st vpon me the guiltie doores": [0, 65535], "to day whil'st vpon me the guiltie doores were": [0, 65535], "day whil'st vpon me the guiltie doores were shut": [0, 65535], "whil'st vpon me the guiltie doores were shut and": [0, 65535], "vpon me the guiltie doores were shut and i": [0, 65535], "me the guiltie doores were shut and i denied": [0, 65535], "the guiltie doores were shut and i denied to": [0, 65535], "guiltie doores were shut and i denied to enter": [0, 65535], "doores were shut and i denied to enter in": [0, 65535], "were shut and i denied to enter in my": [0, 65535], "shut and i denied to enter in my house": [0, 65535], "and i denied to enter in my house adr": [0, 65535], "i denied to enter in my house adr o": [0, 65535], "denied to enter in my house adr o husband": [0, 65535], "to enter in my house adr o husband god": [0, 65535], "enter in my house adr o husband god doth": [0, 65535], "in my house adr o husband god doth know": [0, 65535], "my house adr o husband god doth know you": [0, 65535], "house adr o husband god doth know you din'd": [0, 65535], "adr o husband god doth know you din'd at": [0, 65535], "o husband god doth know you din'd at home": [0, 65535], "husband god doth know you din'd at home where": [0, 65535], "god doth know you din'd at home where would": [0, 65535], "doth know you din'd at home where would you": [0, 65535], "know you din'd at home where would you had": [0, 65535], "you din'd at home where would you had remain'd": [0, 65535], "din'd at home where would you had remain'd vntill": [0, 65535], "at home where would you had remain'd vntill this": [0, 65535], "home where would you had remain'd vntill this time": [0, 65535], "where would you had remain'd vntill this time free": [0, 65535], "would you had remain'd vntill this time free from": [0, 65535], "you had remain'd vntill this time free from these": [0, 65535], "had remain'd vntill this time free from these slanders": [0, 65535], "remain'd vntill this time free from these slanders and": [0, 65535], "vntill this time free from these slanders and this": [0, 65535], "this time free from these slanders and this open": [0, 65535], "time free from these slanders and this open shame": [0, 65535], "free from these slanders and this open shame anti": [0, 65535], "from these slanders and this open shame anti din'd": [0, 65535], "these slanders and this open shame anti din'd at": [0, 65535], "slanders and this open shame anti din'd at home": [0, 65535], "and this open shame anti din'd at home thou": [0, 65535], "this open shame anti din'd at home thou villaine": [0, 65535], "open shame anti din'd at home thou villaine what": [0, 65535], "shame anti din'd at home thou villaine what sayest": [0, 65535], "anti din'd at home thou villaine what sayest thou": [0, 65535], "din'd at home thou villaine what sayest thou dro": [0, 65535], "at home thou villaine what sayest thou dro sir": [0, 65535], "home thou villaine what sayest thou dro sir sooth": [0, 65535], "thou villaine what sayest thou dro sir sooth to": [0, 65535], "villaine what sayest thou dro sir sooth to say": [0, 65535], "what sayest thou dro sir sooth to say you": [0, 65535], "sayest thou dro sir sooth to say you did": [0, 65535], "thou dro sir sooth to say you did not": [0, 65535], "dro sir sooth to say you did not dine": [0, 65535], "sir sooth to say you did not dine at": [0, 65535], "sooth to say you did not dine at home": [0, 65535], "to say you did not dine at home ant": [0, 65535], "say you did not dine at home ant were": [0, 65535], "you did not dine at home ant were not": [0, 65535], "did not dine at home ant were not my": [0, 65535], "not dine at home ant were not my doores": [0, 65535], "dine at home ant were not my doores lockt": [0, 65535], "at home ant were not my doores lockt vp": [0, 65535], "home ant were not my doores lockt vp and": [0, 65535], "ant were not my doores lockt vp and i": [0, 65535], "were not my doores lockt vp and i shut": [0, 65535], "not my doores lockt vp and i shut out": [0, 65535], "my doores lockt vp and i shut out dro": [0, 65535], "doores lockt vp and i shut out dro perdie": [0, 65535], "lockt vp and i shut out dro perdie your": [0, 65535], "vp and i shut out dro perdie your doores": [0, 65535], "and i shut out dro perdie your doores were": [0, 65535], "i shut out dro perdie your doores were lockt": [0, 65535], "shut out dro perdie your doores were lockt and": [0, 65535], "out dro perdie your doores were lockt and you": [0, 65535], "dro perdie your doores were lockt and you shut": [0, 65535], "perdie your doores were lockt and you shut out": [0, 65535], "your doores were lockt and you shut out anti": [0, 65535], "doores were lockt and you shut out anti and": [0, 65535], "were lockt and you shut out anti and did": [0, 65535], "lockt and you shut out anti and did not": [0, 65535], "and you shut out anti and did not she": [0, 65535], "you shut out anti and did not she her": [0, 65535], "shut out anti and did not she her selfe": [0, 65535], "out anti and did not she her selfe reuile": [0, 65535], "anti and did not she her selfe reuile me": [0, 65535], "and did not she her selfe reuile me there": [0, 65535], "did not she her selfe reuile me there dro": [0, 65535], "not she her selfe reuile me there dro sans": [0, 65535], "she her selfe reuile me there dro sans fable": [0, 65535], "her selfe reuile me there dro sans fable she": [0, 65535], "selfe reuile me there dro sans fable she her": [0, 65535], "reuile me there dro sans fable she her selfe": [0, 65535], "me there dro sans fable she her selfe reuil'd": [0, 65535], "there dro sans fable she her selfe reuil'd you": [0, 65535], "dro sans fable she her selfe reuil'd you there": [0, 65535], "sans fable she her selfe reuil'd you there anti": [0, 65535], "fable she her selfe reuil'd you there anti did": [0, 65535], "she her selfe reuil'd you there anti did not": [0, 65535], "her selfe reuil'd you there anti did not her": [0, 65535], "selfe reuil'd you there anti did not her kitchen": [0, 65535], "reuil'd you there anti did not her kitchen maide": [0, 65535], "you there anti did not her kitchen maide raile": [0, 65535], "there anti did not her kitchen maide raile taunt": [0, 65535], "anti did not her kitchen maide raile taunt and": [0, 65535], "did not her kitchen maide raile taunt and scorne": [0, 65535], "not her kitchen maide raile taunt and scorne me": [0, 65535], "her kitchen maide raile taunt and scorne me dro": [0, 65535], "kitchen maide raile taunt and scorne me dro certis": [0, 65535], "maide raile taunt and scorne me dro certis she": [0, 65535], "raile taunt and scorne me dro certis she did": [0, 65535], "taunt and scorne me dro certis she did the": [0, 65535], "and scorne me dro certis she did the kitchin": [0, 65535], "scorne me dro certis she did the kitchin vestall": [0, 65535], "me dro certis she did the kitchin vestall scorn'd": [0, 65535], "dro certis she did the kitchin vestall scorn'd you": [0, 65535], "certis she did the kitchin vestall scorn'd you ant": [0, 65535], "she did the kitchin vestall scorn'd you ant and": [0, 65535], "did the kitchin vestall scorn'd you ant and did": [0, 65535], "the kitchin vestall scorn'd you ant and did not": [0, 65535], "kitchin vestall scorn'd you ant and did not i": [0, 65535], "vestall scorn'd you ant and did not i in": [0, 65535], "scorn'd you ant and did not i in rage": [0, 65535], "you ant and did not i in rage depart": [0, 65535], "ant and did not i in rage depart from": [0, 65535], "and did not i in rage depart from thence": [0, 65535], "did not i in rage depart from thence dro": [0, 65535], "not i in rage depart from thence dro in": [0, 65535], "i in rage depart from thence dro in veritie": [0, 65535], "in rage depart from thence dro in veritie you": [0, 65535], "rage depart from thence dro in veritie you did": [0, 65535], "depart from thence dro in veritie you did my": [0, 65535], "from thence dro in veritie you did my bones": [0, 65535], "thence dro in veritie you did my bones beares": [0, 65535], "dro in veritie you did my bones beares witnesse": [0, 65535], "in veritie you did my bones beares witnesse that": [0, 65535], "veritie you did my bones beares witnesse that since": [0, 65535], "you did my bones beares witnesse that since haue": [0, 65535], "did my bones beares witnesse that since haue felt": [0, 65535], "my bones beares witnesse that since haue felt the": [0, 65535], "bones beares witnesse that since haue felt the vigor": [0, 65535], "beares witnesse that since haue felt the vigor of": [0, 65535], "witnesse that since haue felt the vigor of his": [0, 65535], "that since haue felt the vigor of his rage": [0, 65535], "since haue felt the vigor of his rage adr": [0, 65535], "haue felt the vigor of his rage adr is't": [0, 65535], "felt the vigor of his rage adr is't good": [0, 65535], "the vigor of his rage adr is't good to": [0, 65535], "vigor of his rage adr is't good to sooth": [0, 65535], "of his rage adr is't good to sooth him": [0, 65535], "his rage adr is't good to sooth him in": [0, 65535], "rage adr is't good to sooth him in these": [0, 65535], "adr is't good to sooth him in these contraries": [0, 65535], "is't good to sooth him in these contraries pinch": [0, 65535], "good to sooth him in these contraries pinch it": [0, 65535], "to sooth him in these contraries pinch it is": [0, 65535], "sooth him in these contraries pinch it is no": [0, 65535], "him in these contraries pinch it is no shame": [0, 65535], "in these contraries pinch it is no shame the": [0, 65535], "these contraries pinch it is no shame the fellow": [0, 65535], "contraries pinch it is no shame the fellow finds": [0, 65535], "pinch it is no shame the fellow finds his": [0, 65535], "it is no shame the fellow finds his vaine": [0, 65535], "is no shame the fellow finds his vaine and": [0, 65535], "no shame the fellow finds his vaine and yeelding": [0, 65535], "shame the fellow finds his vaine and yeelding to": [0, 65535], "the fellow finds his vaine and yeelding to him": [0, 65535], "fellow finds his vaine and yeelding to him humors": [0, 65535], "finds his vaine and yeelding to him humors well": [0, 65535], "his vaine and yeelding to him humors well his": [0, 65535], "vaine and yeelding to him humors well his frensie": [0, 65535], "and yeelding to him humors well his frensie ant": [0, 65535], "yeelding to him humors well his frensie ant thou": [0, 65535], "to him humors well his frensie ant thou hast": [0, 65535], "him humors well his frensie ant thou hast subborn'd": [0, 65535], "humors well his frensie ant thou hast subborn'd the": [0, 65535], "well his frensie ant thou hast subborn'd the goldsmith": [0, 65535], "his frensie ant thou hast subborn'd the goldsmith to": [0, 65535], "frensie ant thou hast subborn'd the goldsmith to arrest": [0, 65535], "ant thou hast subborn'd the goldsmith to arrest mee": [0, 65535], "thou hast subborn'd the goldsmith to arrest mee adr": [0, 65535], "hast subborn'd the goldsmith to arrest mee adr alas": [0, 65535], "subborn'd the goldsmith to arrest mee adr alas i": [0, 65535], "the goldsmith to arrest mee adr alas i sent": [0, 65535], "goldsmith to arrest mee adr alas i sent you": [0, 65535], "to arrest mee adr alas i sent you monie": [0, 65535], "arrest mee adr alas i sent you monie to": [0, 65535], "mee adr alas i sent you monie to redeeme": [0, 65535], "adr alas i sent you monie to redeeme you": [0, 65535], "alas i sent you monie to redeeme you by": [0, 65535], "i sent you monie to redeeme you by dromio": [0, 65535], "sent you monie to redeeme you by dromio heere": [0, 65535], "you monie to redeeme you by dromio heere who": [0, 65535], "monie to redeeme you by dromio heere who came": [0, 65535], "to redeeme you by dromio heere who came in": [0, 65535], "redeeme you by dromio heere who came in hast": [0, 65535], "you by dromio heere who came in hast for": [0, 65535], "by dromio heere who came in hast for it": [0, 65535], "dromio heere who came in hast for it dro": [0, 65535], "heere who came in hast for it dro monie": [0, 65535], "who came in hast for it dro monie by": [0, 65535], "came in hast for it dro monie by me": [0, 65535], "in hast for it dro monie by me heart": [0, 65535], "hast for it dro monie by me heart and": [0, 65535], "for it dro monie by me heart and good": [0, 65535], "it dro monie by me heart and good will": [0, 65535], "dro monie by me heart and good will you": [0, 65535], "monie by me heart and good will you might": [0, 65535], "by me heart and good will you might but": [0, 65535], "me heart and good will you might but surely": [0, 65535], "heart and good will you might but surely master": [0, 65535], "and good will you might but surely master not": [0, 65535], "good will you might but surely master not a": [0, 65535], "will you might but surely master not a ragge": [0, 65535], "you might but surely master not a ragge of": [0, 65535], "might but surely master not a ragge of monie": [0, 65535], "but surely master not a ragge of monie ant": [0, 65535], "surely master not a ragge of monie ant wentst": [0, 65535], "master not a ragge of monie ant wentst not": [0, 65535], "not a ragge of monie ant wentst not thou": [0, 65535], "a ragge of monie ant wentst not thou to": [0, 65535], "ragge of monie ant wentst not thou to her": [0, 65535], "of monie ant wentst not thou to her for": [0, 65535], "monie ant wentst not thou to her for a": [0, 65535], "ant wentst not thou to her for a purse": [0, 65535], "wentst not thou to her for a purse of": [0, 65535], "not thou to her for a purse of duckets": [0, 65535], "thou to her for a purse of duckets adri": [0, 65535], "to her for a purse of duckets adri he": [0, 65535], "her for a purse of duckets adri he came": [0, 65535], "for a purse of duckets adri he came to": [0, 65535], "a purse of duckets adri he came to me": [0, 65535], "purse of duckets adri he came to me and": [0, 65535], "of duckets adri he came to me and i": [0, 65535], "duckets adri he came to me and i deliuer'd": [0, 65535], "adri he came to me and i deliuer'd it": [0, 65535], "he came to me and i deliuer'd it luci": [0, 65535], "came to me and i deliuer'd it luci and": [0, 65535], "to me and i deliuer'd it luci and i": [0, 65535], "me and i deliuer'd it luci and i am": [0, 65535], "and i deliuer'd it luci and i am witnesse": [0, 65535], "i deliuer'd it luci and i am witnesse with": [0, 65535], "deliuer'd it luci and i am witnesse with her": [0, 65535], "it luci and i am witnesse with her that": [0, 65535], "luci and i am witnesse with her that she": [0, 65535], "and i am witnesse with her that she did": [0, 65535], "i am witnesse with her that she did dro": [0, 65535], "am witnesse with her that she did dro god": [0, 65535], "witnesse with her that she did dro god and": [0, 65535], "with her that she did dro god and the": [0, 65535], "her that she did dro god and the rope": [0, 65535], "that she did dro god and the rope maker": [0, 65535], "she did dro god and the rope maker beare": [0, 65535], "did dro god and the rope maker beare me": [0, 65535], "dro god and the rope maker beare me witnesse": [0, 65535], "god and the rope maker beare me witnesse that": [0, 65535], "and the rope maker beare me witnesse that i": [0, 65535], "the rope maker beare me witnesse that i was": [0, 65535], "rope maker beare me witnesse that i was sent": [0, 65535], "maker beare me witnesse that i was sent for": [0, 65535], "beare me witnesse that i was sent for nothing": [0, 65535], "me witnesse that i was sent for nothing but": [0, 65535], "witnesse that i was sent for nothing but a": [0, 65535], "that i was sent for nothing but a rope": [0, 65535], "i was sent for nothing but a rope pinch": [0, 65535], "was sent for nothing but a rope pinch mistris": [0, 65535], "sent for nothing but a rope pinch mistris both": [0, 65535], "for nothing but a rope pinch mistris both man": [0, 65535], "nothing but a rope pinch mistris both man and": [0, 65535], "but a rope pinch mistris both man and master": [0, 65535], "a rope pinch mistris both man and master is": [0, 65535], "rope pinch mistris both man and master is possest": [0, 65535], "pinch mistris both man and master is possest i": [0, 65535], "mistris both man and master is possest i know": [0, 65535], "both man and master is possest i know it": [0, 65535], "man and master is possest i know it by": [0, 65535], "and master is possest i know it by their": [0, 65535], "master is possest i know it by their pale": [0, 65535], "is possest i know it by their pale and": [0, 65535], "possest i know it by their pale and deadly": [0, 65535], "i know it by their pale and deadly lookes": [0, 65535], "know it by their pale and deadly lookes they": [0, 65535], "it by their pale and deadly lookes they must": [0, 65535], "by their pale and deadly lookes they must be": [0, 65535], "their pale and deadly lookes they must be bound": [0, 65535], "pale and deadly lookes they must be bound and": [0, 65535], "and deadly lookes they must be bound and laide": [0, 65535], "deadly lookes they must be bound and laide in": [0, 65535], "lookes they must be bound and laide in some": [0, 65535], "they must be bound and laide in some darke": [0, 65535], "must be bound and laide in some darke roome": [0, 65535], "be bound and laide in some darke roome ant": [0, 65535], "bound and laide in some darke roome ant say": [0, 65535], "and laide in some darke roome ant say wherefore": [0, 65535], "laide in some darke roome ant say wherefore didst": [0, 65535], "in some darke roome ant say wherefore didst thou": [0, 65535], "some darke roome ant say wherefore didst thou locke": [0, 65535], "darke roome ant say wherefore didst thou locke me": [0, 65535], "roome ant say wherefore didst thou locke me forth": [0, 65535], "ant say wherefore didst thou locke me forth to": [0, 65535], "say wherefore didst thou locke me forth to day": [0, 65535], "wherefore didst thou locke me forth to day and": [0, 65535], "didst thou locke me forth to day and why": [0, 65535], "thou locke me forth to day and why dost": [0, 65535], "locke me forth to day and why dost thou": [0, 65535], "me forth to day and why dost thou denie": [0, 65535], "forth to day and why dost thou denie the": [0, 65535], "to day and why dost thou denie the bagge": [0, 65535], "day and why dost thou denie the bagge of": [0, 65535], "and why dost thou denie the bagge of gold": [0, 65535], "why dost thou denie the bagge of gold adr": [0, 65535], "dost thou denie the bagge of gold adr i": [0, 65535], "thou denie the bagge of gold adr i did": [0, 65535], "denie the bagge of gold adr i did not": [0, 65535], "the bagge of gold adr i did not gentle": [0, 65535], "bagge of gold adr i did not gentle husband": [0, 65535], "of gold adr i did not gentle husband locke": [0, 65535], "gold adr i did not gentle husband locke thee": [0, 65535], "adr i did not gentle husband locke thee forth": [0, 65535], "i did not gentle husband locke thee forth dro": [0, 65535], "did not gentle husband locke thee forth dro and": [0, 65535], "not gentle husband locke thee forth dro and gentle": [0, 65535], "gentle husband locke thee forth dro and gentle mr": [0, 65535], "husband locke thee forth dro and gentle mr i": [0, 65535], "locke thee forth dro and gentle mr i receiu'd": [0, 65535], "thee forth dro and gentle mr i receiu'd no": [0, 65535], "forth dro and gentle mr i receiu'd no gold": [0, 65535], "dro and gentle mr i receiu'd no gold but": [0, 65535], "and gentle mr i receiu'd no gold but i": [0, 65535], "gentle mr i receiu'd no gold but i confesse": [0, 65535], "mr i receiu'd no gold but i confesse sir": [0, 65535], "i receiu'd no gold but i confesse sir that": [0, 65535], "receiu'd no gold but i confesse sir that we": [0, 65535], "no gold but i confesse sir that we were": [0, 65535], "gold but i confesse sir that we were lock'd": [0, 65535], "but i confesse sir that we were lock'd out": [0, 65535], "i confesse sir that we were lock'd out adr": [0, 65535], "confesse sir that we were lock'd out adr dissembling": [0, 65535], "sir that we were lock'd out adr dissembling villain": [0, 65535], "that we were lock'd out adr dissembling villain thou": [0, 65535], "we were lock'd out adr dissembling villain thou speak'st": [0, 65535], "were lock'd out adr dissembling villain thou speak'st false": [0, 65535], "lock'd out adr dissembling villain thou speak'st false in": [0, 65535], "out adr dissembling villain thou speak'st false in both": [0, 65535], "adr dissembling villain thou speak'st false in both ant": [0, 65535], "dissembling villain thou speak'st false in both ant dissembling": [0, 65535], "villain thou speak'st false in both ant dissembling harlot": [0, 65535], "thou speak'st false in both ant dissembling harlot thou": [0, 65535], "speak'st false in both ant dissembling harlot thou art": [0, 65535], "false in both ant dissembling harlot thou art false": [0, 65535], "in both ant dissembling harlot thou art false in": [0, 65535], "both ant dissembling harlot thou art false in all": [0, 65535], "ant dissembling harlot thou art false in all and": [0, 65535], "dissembling harlot thou art false in all and art": [0, 65535], "harlot thou art false in all and art confederate": [0, 65535], "thou art false in all and art confederate with": [0, 65535], "art false in all and art confederate with a": [0, 65535], "false in all and art confederate with a damned": [0, 65535], "in all and art confederate with a damned packe": [0, 65535], "all and art confederate with a damned packe to": [0, 65535], "and art confederate with a damned packe to make": [0, 65535], "art confederate with a damned packe to make a": [0, 65535], "confederate with a damned packe to make a loathsome": [0, 65535], "with a damned packe to make a loathsome abiect": [0, 65535], "a damned packe to make a loathsome abiect scorne": [0, 65535], "damned packe to make a loathsome abiect scorne of": [0, 65535], "packe to make a loathsome abiect scorne of me": [0, 65535], "to make a loathsome abiect scorne of me but": [0, 65535], "make a loathsome abiect scorne of me but with": [0, 65535], "a loathsome abiect scorne of me but with these": [0, 65535], "loathsome abiect scorne of me but with these nailes": [0, 65535], "abiect scorne of me but with these nailes ile": [0, 65535], "scorne of me but with these nailes ile plucke": [0, 65535], "of me but with these nailes ile plucke out": [0, 65535], "me but with these nailes ile plucke out these": [0, 65535], "but with these nailes ile plucke out these false": [0, 65535], "with these nailes ile plucke out these false eyes": [0, 65535], "these nailes ile plucke out these false eyes that": [0, 65535], "nailes ile plucke out these false eyes that would": [0, 65535], "ile plucke out these false eyes that would behold": [0, 65535], "plucke out these false eyes that would behold in": [0, 65535], "out these false eyes that would behold in me": [0, 65535], "these false eyes that would behold in me this": [0, 65535], "false eyes that would behold in me this shamefull": [0, 65535], "eyes that would behold in me this shamefull sport": [0, 65535], "that would behold in me this shamefull sport enter": [0, 65535], "would behold in me this shamefull sport enter three": [0, 65535], "behold in me this shamefull sport enter three or": [0, 65535], "in me this shamefull sport enter three or foure": [0, 65535], "me this shamefull sport enter three or foure and": [0, 65535], "this shamefull sport enter three or foure and offer": [0, 65535], "shamefull sport enter three or foure and offer to": [0, 65535], "sport enter three or foure and offer to binde": [0, 65535], "enter three or foure and offer to binde him": [0, 65535], "three or foure and offer to binde him hee": [0, 65535], "or foure and offer to binde him hee striues": [0, 65535], "foure and offer to binde him hee striues adr": [0, 65535], "and offer to binde him hee striues adr oh": [0, 65535], "offer to binde him hee striues adr oh binde": [0, 65535], "to binde him hee striues adr oh binde him": [0, 65535], "binde him hee striues adr oh binde him binde": [0, 65535], "him hee striues adr oh binde him binde him": [0, 65535], "hee striues adr oh binde him binde him let": [0, 65535], "striues adr oh binde him binde him let him": [0, 65535], "adr oh binde him binde him let him not": [0, 65535], "oh binde him binde him let him not come": [0, 65535], "binde him binde him let him not come neere": [0, 65535], "him binde him let him not come neere me": [0, 65535], "binde him let him not come neere me pinch": [0, 65535], "him let him not come neere me pinch more": [0, 65535], "let him not come neere me pinch more company": [0, 65535], "him not come neere me pinch more company the": [0, 65535], "not come neere me pinch more company the fiend": [0, 65535], "come neere me pinch more company the fiend is": [0, 65535], "neere me pinch more company the fiend is strong": [0, 65535], "me pinch more company the fiend is strong within": [0, 65535], "pinch more company the fiend is strong within him": [0, 65535], "more company the fiend is strong within him luc": [0, 65535], "company the fiend is strong within him luc aye": [0, 65535], "the fiend is strong within him luc aye me": [0, 65535], "fiend is strong within him luc aye me poore": [0, 65535], "is strong within him luc aye me poore man": [0, 65535], "strong within him luc aye me poore man how": [0, 65535], "within him luc aye me poore man how pale": [0, 65535], "him luc aye me poore man how pale and": [0, 65535], "luc aye me poore man how pale and wan": [0, 65535], "aye me poore man how pale and wan he": [0, 65535], "me poore man how pale and wan he looks": [0, 65535], "poore man how pale and wan he looks ant": [0, 65535], "man how pale and wan he looks ant what": [0, 65535], "how pale and wan he looks ant what will": [0, 65535], "pale and wan he looks ant what will you": [0, 65535], "and wan he looks ant what will you murther": [0, 65535], "wan he looks ant what will you murther me": [0, 65535], "he looks ant what will you murther me thou": [0, 65535], "looks ant what will you murther me thou iailor": [0, 65535], "ant what will you murther me thou iailor thou": [0, 65535], "what will you murther me thou iailor thou i": [0, 65535], "will you murther me thou iailor thou i am": [0, 65535], "you murther me thou iailor thou i am thy": [0, 65535], "murther me thou iailor thou i am thy prisoner": [0, 65535], "me thou iailor thou i am thy prisoner wilt": [0, 65535], "thou iailor thou i am thy prisoner wilt thou": [0, 65535], "iailor thou i am thy prisoner wilt thou suffer": [0, 65535], "thou i am thy prisoner wilt thou suffer them": [0, 65535], "i am thy prisoner wilt thou suffer them to": [0, 65535], "am thy prisoner wilt thou suffer them to make": [0, 65535], "thy prisoner wilt thou suffer them to make a": [0, 65535], "prisoner wilt thou suffer them to make a rescue": [0, 65535], "wilt thou suffer them to make a rescue offi": [0, 65535], "thou suffer them to make a rescue offi masters": [0, 65535], "suffer them to make a rescue offi masters let": [0, 65535], "them to make a rescue offi masters let him": [0, 65535], "to make a rescue offi masters let him go": [0, 65535], "make a rescue offi masters let him go he": [0, 65535], "a rescue offi masters let him go he is": [0, 65535], "rescue offi masters let him go he is my": [0, 65535], "offi masters let him go he is my prisoner": [0, 65535], "masters let him go he is my prisoner and": [0, 65535], "let him go he is my prisoner and you": [0, 65535], "him go he is my prisoner and you shall": [0, 65535], "go he is my prisoner and you shall not": [0, 65535], "he is my prisoner and you shall not haue": [0, 65535], "is my prisoner and you shall not haue him": [0, 65535], "my prisoner and you shall not haue him pinch": [0, 65535], "prisoner and you shall not haue him pinch go": [0, 65535], "and you shall not haue him pinch go binde": [0, 65535], "you shall not haue him pinch go binde this": [0, 65535], "shall not haue him pinch go binde this man": [0, 65535], "not haue him pinch go binde this man for": [0, 65535], "haue him pinch go binde this man for he": [0, 65535], "him pinch go binde this man for he is": [0, 65535], "pinch go binde this man for he is franticke": [0, 65535], "go binde this man for he is franticke too": [0, 65535], "binde this man for he is franticke too adr": [0, 65535], "this man for he is franticke too adr what": [0, 65535], "man for he is franticke too adr what wilt": [0, 65535], "for he is franticke too adr what wilt thou": [0, 65535], "he is franticke too adr what wilt thou do": [0, 65535], "is franticke too adr what wilt thou do thou": [0, 65535], "franticke too adr what wilt thou do thou peeuish": [0, 65535], "too adr what wilt thou do thou peeuish officer": [0, 65535], "adr what wilt thou do thou peeuish officer hast": [0, 65535], "what wilt thou do thou peeuish officer hast thou": [0, 65535], "wilt thou do thou peeuish officer hast thou delight": [0, 65535], "thou do thou peeuish officer hast thou delight to": [0, 65535], "do thou peeuish officer hast thou delight to see": [0, 65535], "thou peeuish officer hast thou delight to see a": [0, 65535], "peeuish officer hast thou delight to see a wretched": [0, 65535], "officer hast thou delight to see a wretched man": [0, 65535], "hast thou delight to see a wretched man do": [0, 65535], "thou delight to see a wretched man do outrage": [0, 65535], "delight to see a wretched man do outrage and": [0, 65535], "to see a wretched man do outrage and displeasure": [0, 65535], "see a wretched man do outrage and displeasure to": [0, 65535], "a wretched man do outrage and displeasure to himselfe": [0, 65535], "wretched man do outrage and displeasure to himselfe offi": [0, 65535], "man do outrage and displeasure to himselfe offi he": [0, 65535], "do outrage and displeasure to himselfe offi he is": [0, 65535], "outrage and displeasure to himselfe offi he is my": [0, 65535], "and displeasure to himselfe offi he is my prisoner": [0, 65535], "displeasure to himselfe offi he is my prisoner if": [0, 65535], "to himselfe offi he is my prisoner if i": [0, 65535], "himselfe offi he is my prisoner if i let": [0, 65535], "offi he is my prisoner if i let him": [0, 65535], "he is my prisoner if i let him go": [0, 65535], "is my prisoner if i let him go the": [0, 65535], "my prisoner if i let him go the debt": [0, 65535], "prisoner if i let him go the debt he": [0, 65535], "if i let him go the debt he owes": [0, 65535], "i let him go the debt he owes will": [0, 65535], "let him go the debt he owes will be": [0, 65535], "him go the debt he owes will be requir'd": [0, 65535], "go the debt he owes will be requir'd of": [0, 65535], "the debt he owes will be requir'd of me": [0, 65535], "debt he owes will be requir'd of me adr": [0, 65535], "he owes will be requir'd of me adr i": [0, 65535], "owes will be requir'd of me adr i will": [0, 65535], "will be requir'd of me adr i will discharge": [0, 65535], "be requir'd of me adr i will discharge thee": [0, 65535], "requir'd of me adr i will discharge thee ere": [0, 65535], "of me adr i will discharge thee ere i": [0, 65535], "me adr i will discharge thee ere i go": [0, 65535], "adr i will discharge thee ere i go from": [0, 65535], "i will discharge thee ere i go from thee": [0, 65535], "will discharge thee ere i go from thee beare": [0, 65535], "discharge thee ere i go from thee beare me": [0, 65535], "thee ere i go from thee beare me forthwith": [0, 65535], "ere i go from thee beare me forthwith vnto": [0, 65535], "i go from thee beare me forthwith vnto his": [0, 65535], "go from thee beare me forthwith vnto his creditor": [0, 65535], "from thee beare me forthwith vnto his creditor and": [0, 65535], "thee beare me forthwith vnto his creditor and knowing": [0, 65535], "beare me forthwith vnto his creditor and knowing how": [0, 65535], "me forthwith vnto his creditor and knowing how the": [0, 65535], "forthwith vnto his creditor and knowing how the debt": [0, 65535], "vnto his creditor and knowing how the debt growes": [0, 65535], "his creditor and knowing how the debt growes i": [0, 65535], "creditor and knowing how the debt growes i will": [0, 65535], "and knowing how the debt growes i will pay": [0, 65535], "knowing how the debt growes i will pay it": [0, 65535], "how the debt growes i will pay it good": [0, 65535], "the debt growes i will pay it good master": [0, 65535], "debt growes i will pay it good master doctor": [0, 65535], "growes i will pay it good master doctor see": [0, 65535], "i will pay it good master doctor see him": [0, 65535], "will pay it good master doctor see him safe": [0, 65535], "pay it good master doctor see him safe conuey'd": [0, 65535], "it good master doctor see him safe conuey'd home": [0, 65535], "good master doctor see him safe conuey'd home to": [0, 65535], "master doctor see him safe conuey'd home to my": [0, 65535], "doctor see him safe conuey'd home to my house": [0, 65535], "see him safe conuey'd home to my house oh": [0, 65535], "him safe conuey'd home to my house oh most": [0, 65535], "safe conuey'd home to my house oh most vnhappy": [0, 65535], "conuey'd home to my house oh most vnhappy day": [0, 65535], "home to my house oh most vnhappy day ant": [0, 65535], "to my house oh most vnhappy day ant oh": [0, 65535], "my house oh most vnhappy day ant oh most": [0, 65535], "house oh most vnhappy day ant oh most vnhappie": [0, 65535], "oh most vnhappy day ant oh most vnhappie strumpet": [0, 65535], "most vnhappy day ant oh most vnhappie strumpet dro": [0, 65535], "vnhappy day ant oh most vnhappie strumpet dro master": [0, 65535], "day ant oh most vnhappie strumpet dro master i": [0, 65535], "ant oh most vnhappie strumpet dro master i am": [0, 65535], "oh most vnhappie strumpet dro master i am heere": [0, 65535], "most vnhappie strumpet dro master i am heere entred": [0, 65535], "vnhappie strumpet dro master i am heere entred in": [0, 65535], "strumpet dro master i am heere entred in bond": [0, 65535], "dro master i am heere entred in bond for": [0, 65535], "master i am heere entred in bond for you": [0, 65535], "i am heere entred in bond for you ant": [0, 65535], "am heere entred in bond for you ant out": [0, 65535], "heere entred in bond for you ant out on": [0, 65535], "entred in bond for you ant out on thee": [0, 65535], "in bond for you ant out on thee villaine": [0, 65535], "bond for you ant out on thee villaine wherefore": [0, 65535], "for you ant out on thee villaine wherefore dost": [0, 65535], "you ant out on thee villaine wherefore dost thou": [0, 65535], "ant out on thee villaine wherefore dost thou mad": [0, 65535], "out on thee villaine wherefore dost thou mad mee": [0, 65535], "on thee villaine wherefore dost thou mad mee dro": [0, 65535], "thee villaine wherefore dost thou mad mee dro will": [0, 65535], "villaine wherefore dost thou mad mee dro will you": [0, 65535], "wherefore dost thou mad mee dro will you be": [0, 65535], "dost thou mad mee dro will you be bound": [0, 65535], "thou mad mee dro will you be bound for": [0, 65535], "mad mee dro will you be bound for nothing": [0, 65535], "mee dro will you be bound for nothing be": [0, 65535], "dro will you be bound for nothing be mad": [0, 65535], "will you be bound for nothing be mad good": [0, 65535], "you be bound for nothing be mad good master": [0, 65535], "be bound for nothing be mad good master cry": [0, 65535], "bound for nothing be mad good master cry the": [0, 65535], "for nothing be mad good master cry the diuell": [0, 65535], "nothing be mad good master cry the diuell luc": [0, 65535], "be mad good master cry the diuell luc god": [0, 65535], "mad good master cry the diuell luc god helpe": [0, 65535], "good master cry the diuell luc god helpe poore": [0, 65535], "master cry the diuell luc god helpe poore soules": [0, 65535], "cry the diuell luc god helpe poore soules how": [0, 65535], "the diuell luc god helpe poore soules how idlely": [0, 65535], "diuell luc god helpe poore soules how idlely doe": [0, 65535], "luc god helpe poore soules how idlely doe they": [0, 65535], "god helpe poore soules how idlely doe they talke": [0, 65535], "helpe poore soules how idlely doe they talke adr": [0, 65535], "poore soules how idlely doe they talke adr go": [0, 65535], "soules how idlely doe they talke adr go beare": [0, 65535], "how idlely doe they talke adr go beare him": [0, 65535], "idlely doe they talke adr go beare him hence": [0, 65535], "doe they talke adr go beare him hence sister": [0, 65535], "they talke adr go beare him hence sister go": [0, 65535], "talke adr go beare him hence sister go you": [0, 65535], "adr go beare him hence sister go you with": [0, 65535], "go beare him hence sister go you with me": [0, 65535], "beare him hence sister go you with me say": [0, 65535], "him hence sister go you with me say now": [0, 65535], "hence sister go you with me say now whose": [0, 65535], "sister go you with me say now whose suite": [0, 65535], "go you with me say now whose suite is": [0, 65535], "you with me say now whose suite is he": [0, 65535], "with me say now whose suite is he arrested": [0, 65535], "me say now whose suite is he arrested at": [0, 65535], "say now whose suite is he arrested at exeunt": [0, 65535], "now whose suite is he arrested at exeunt manet": [0, 65535], "whose suite is he arrested at exeunt manet offic": [0, 65535], "suite is he arrested at exeunt manet offic adri": [0, 65535], "is he arrested at exeunt manet offic adri luci": [0, 65535], "he arrested at exeunt manet offic adri luci courtizan": [0, 65535], "arrested at exeunt manet offic adri luci courtizan off": [0, 65535], "at exeunt manet offic adri luci courtizan off one": [0, 65535], "exeunt manet offic adri luci courtizan off one angelo": [0, 65535], "manet offic adri luci courtizan off one angelo a": [0, 65535], "offic adri luci courtizan off one angelo a goldsmith": [0, 65535], "adri luci courtizan off one angelo a goldsmith do": [0, 65535], "luci courtizan off one angelo a goldsmith do you": [0, 65535], "courtizan off one angelo a goldsmith do you know": [0, 65535], "off one angelo a goldsmith do you know him": [0, 65535], "one angelo a goldsmith do you know him adr": [0, 65535], "angelo a goldsmith do you know him adr i": [0, 65535], "a goldsmith do you know him adr i know": [0, 65535], "goldsmith do you know him adr i know the": [0, 65535], "do you know him adr i know the man": [0, 65535], "you know him adr i know the man what": [0, 65535], "know him adr i know the man what is": [0, 65535], "him adr i know the man what is the": [0, 65535], "adr i know the man what is the summe": [0, 65535], "i know the man what is the summe he": [0, 65535], "know the man what is the summe he owes": [0, 65535], "the man what is the summe he owes off": [0, 65535], "man what is the summe he owes off two": [0, 65535], "what is the summe he owes off two hundred": [0, 65535], "is the summe he owes off two hundred duckets": [0, 65535], "the summe he owes off two hundred duckets adr": [0, 65535], "summe he owes off two hundred duckets adr say": [0, 65535], "he owes off two hundred duckets adr say how": [0, 65535], "owes off two hundred duckets adr say how growes": [0, 65535], "off two hundred duckets adr say how growes it": [0, 65535], "two hundred duckets adr say how growes it due": [0, 65535], "hundred duckets adr say how growes it due off": [0, 65535], "duckets adr say how growes it due off due": [0, 65535], "adr say how growes it due off due for": [0, 65535], "say how growes it due off due for a": [0, 65535], "how growes it due off due for a chaine": [0, 65535], "growes it due off due for a chaine your": [0, 65535], "it due off due for a chaine your husband": [0, 65535], "due off due for a chaine your husband had": [0, 65535], "off due for a chaine your husband had of": [0, 65535], "due for a chaine your husband had of him": [0, 65535], "for a chaine your husband had of him adr": [0, 65535], "a chaine your husband had of him adr he": [0, 65535], "chaine your husband had of him adr he did": [0, 65535], "your husband had of him adr he did bespeake": [0, 65535], "husband had of him adr he did bespeake a": [0, 65535], "had of him adr he did bespeake a chain": [0, 65535], "of him adr he did bespeake a chain for": [0, 65535], "him adr he did bespeake a chain for me": [0, 65535], "adr he did bespeake a chain for me but": [0, 65535], "he did bespeake a chain for me but had": [0, 65535], "did bespeake a chain for me but had it": [0, 65535], "bespeake a chain for me but had it not": [0, 65535], "a chain for me but had it not cur": [0, 65535], "chain for me but had it not cur when": [0, 65535], "for me but had it not cur when as": [0, 65535], "me but had it not cur when as your": [0, 65535], "but had it not cur when as your husband": [0, 65535], "had it not cur when as your husband all": [0, 65535], "it not cur when as your husband all in": [0, 65535], "not cur when as your husband all in rage": [0, 65535], "cur when as your husband all in rage to": [0, 65535], "when as your husband all in rage to day": [0, 65535], "as your husband all in rage to day came": [0, 65535], "your husband all in rage to day came to": [0, 65535], "husband all in rage to day came to my": [0, 65535], "all in rage to day came to my house": [0, 65535], "in rage to day came to my house and": [0, 65535], "rage to day came to my house and tooke": [0, 65535], "to day came to my house and tooke away": [0, 65535], "day came to my house and tooke away my": [0, 65535], "came to my house and tooke away my ring": [0, 65535], "to my house and tooke away my ring the": [0, 65535], "my house and tooke away my ring the ring": [0, 65535], "house and tooke away my ring the ring i": [0, 65535], "and tooke away my ring the ring i saw": [0, 65535], "tooke away my ring the ring i saw vpon": [0, 65535], "away my ring the ring i saw vpon his": [0, 65535], "my ring the ring i saw vpon his finger": [0, 65535], "ring the ring i saw vpon his finger now": [0, 65535], "the ring i saw vpon his finger now straight": [0, 65535], "ring i saw vpon his finger now straight after": [0, 65535], "i saw vpon his finger now straight after did": [0, 65535], "saw vpon his finger now straight after did i": [0, 65535], "vpon his finger now straight after did i meete": [0, 65535], "his finger now straight after did i meete him": [0, 65535], "finger now straight after did i meete him with": [0, 65535], "now straight after did i meete him with a": [0, 65535], "straight after did i meete him with a chaine": [0, 65535], "after did i meete him with a chaine adr": [0, 65535], "did i meete him with a chaine adr it": [0, 65535], "i meete him with a chaine adr it may": [0, 65535], "meete him with a chaine adr it may be": [0, 65535], "him with a chaine adr it may be so": [0, 65535], "with a chaine adr it may be so but": [0, 65535], "a chaine adr it may be so but i": [0, 65535], "chaine adr it may be so but i did": [0, 65535], "adr it may be so but i did neuer": [0, 65535], "it may be so but i did neuer see": [0, 65535], "may be so but i did neuer see it": [0, 65535], "be so but i did neuer see it come": [0, 65535], "so but i did neuer see it come iailor": [0, 65535], "but i did neuer see it come iailor bring": [0, 65535], "i did neuer see it come iailor bring me": [0, 65535], "did neuer see it come iailor bring me where": [0, 65535], "neuer see it come iailor bring me where the": [0, 65535], "see it come iailor bring me where the goldsmith": [0, 65535], "it come iailor bring me where the goldsmith is": [0, 65535], "come iailor bring me where the goldsmith is i": [0, 65535], "iailor bring me where the goldsmith is i long": [0, 65535], "bring me where the goldsmith is i long to": [0, 65535], "me where the goldsmith is i long to know": [0, 65535], "where the goldsmith is i long to know the": [0, 65535], "the goldsmith is i long to know the truth": [0, 65535], "goldsmith is i long to know the truth heereof": [0, 65535], "is i long to know the truth heereof at": [0, 65535], "i long to know the truth heereof at large": [0, 65535], "long to know the truth heereof at large enter": [0, 65535], "to know the truth heereof at large enter antipholus": [0, 65535], "know the truth heereof at large enter antipholus siracusia": [0, 65535], "the truth heereof at large enter antipholus siracusia with": [0, 65535], "truth heereof at large enter antipholus siracusia with his": [0, 65535], "heereof at large enter antipholus siracusia with his rapier": [0, 65535], "at large enter antipholus siracusia with his rapier drawne": [0, 65535], "large enter antipholus siracusia with his rapier drawne and": [0, 65535], "enter antipholus siracusia with his rapier drawne and dromio": [0, 65535], "antipholus siracusia with his rapier drawne and dromio sirac": [0, 65535], "siracusia with his rapier drawne and dromio sirac luc": [0, 65535], "with his rapier drawne and dromio sirac luc god": [0, 65535], "his rapier drawne and dromio sirac luc god for": [0, 65535], "rapier drawne and dromio sirac luc god for thy": [0, 65535], "drawne and dromio sirac luc god for thy mercy": [0, 65535], "and dromio sirac luc god for thy mercy they": [0, 65535], "dromio sirac luc god for thy mercy they are": [0, 65535], "sirac luc god for thy mercy they are loose": [0, 65535], "luc god for thy mercy they are loose againe": [0, 65535], "god for thy mercy they are loose againe adr": [0, 65535], "for thy mercy they are loose againe adr and": [0, 65535], "thy mercy they are loose againe adr and come": [0, 65535], "mercy they are loose againe adr and come with": [0, 65535], "they are loose againe adr and come with naked": [0, 65535], "are loose againe adr and come with naked swords": [0, 65535], "loose againe adr and come with naked swords let's": [0, 65535], "againe adr and come with naked swords let's call": [0, 65535], "adr and come with naked swords let's call more": [0, 65535], "and come with naked swords let's call more helpe": [0, 65535], "come with naked swords let's call more helpe to": [0, 65535], "with naked swords let's call more helpe to haue": [0, 65535], "naked swords let's call more helpe to haue them": [0, 65535], "swords let's call more helpe to haue them bound": [0, 65535], "let's call more helpe to haue them bound againe": [0, 65535], "call more helpe to haue them bound againe runne": [0, 65535], "more helpe to haue them bound againe runne all": [0, 65535], "helpe to haue them bound againe runne all out": [0, 65535], "to haue them bound againe runne all out off": [0, 65535], "haue them bound againe runne all out off away": [0, 65535], "them bound againe runne all out off away they'l": [0, 65535], "bound againe runne all out off away they'l kill": [0, 65535], "againe runne all out off away they'l kill vs": [0, 65535], "runne all out off away they'l kill vs exeunt": [0, 65535], "all out off away they'l kill vs exeunt omnes": [0, 65535], "out off away they'l kill vs exeunt omnes as": [0, 65535], "off away they'l kill vs exeunt omnes as fast": [0, 65535], "away they'l kill vs exeunt omnes as fast as": [0, 65535], "they'l kill vs exeunt omnes as fast as may": [0, 65535], "kill vs exeunt omnes as fast as may be": [0, 65535], "vs exeunt omnes as fast as may be frighted": [0, 65535], "exeunt omnes as fast as may be frighted s": [0, 65535], "omnes as fast as may be frighted s ant": [0, 65535], "as fast as may be frighted s ant i": [0, 65535], "fast as may be frighted s ant i see": [0, 65535], "as may be frighted s ant i see these": [0, 65535], "may be frighted s ant i see these witches": [0, 65535], "be frighted s ant i see these witches are": [0, 65535], "frighted s ant i see these witches are affraid": [0, 65535], "s ant i see these witches are affraid of": [0, 65535], "ant i see these witches are affraid of swords": [0, 65535], "i see these witches are affraid of swords s": [0, 65535], "see these witches are affraid of swords s dro": [0, 65535], "these witches are affraid of swords s dro she": [0, 65535], "witches are affraid of swords s dro she that": [0, 65535], "are affraid of swords s dro she that would": [0, 65535], "affraid of swords s dro she that would be": [0, 65535], "of swords s dro she that would be your": [0, 65535], "swords s dro she that would be your wife": [0, 65535], "s dro she that would be your wife now": [0, 65535], "dro she that would be your wife now ran": [0, 65535], "she that would be your wife now ran from": [0, 65535], "that would be your wife now ran from you": [0, 65535], "would be your wife now ran from you ant": [0, 65535], "be your wife now ran from you ant come": [0, 65535], "your wife now ran from you ant come to": [0, 65535], "wife now ran from you ant come to the": [0, 65535], "now ran from you ant come to the centaur": [0, 65535], "ran from you ant come to the centaur fetch": [0, 65535], "from you ant come to the centaur fetch our": [0, 65535], "you ant come to the centaur fetch our stuffe": [0, 65535], "ant come to the centaur fetch our stuffe from": [0, 65535], "come to the centaur fetch our stuffe from thence": [0, 65535], "to the centaur fetch our stuffe from thence i": [0, 65535], "the centaur fetch our stuffe from thence i long": [0, 65535], "centaur fetch our stuffe from thence i long that": [0, 65535], "fetch our stuffe from thence i long that we": [0, 65535], "our stuffe from thence i long that we were": [0, 65535], "stuffe from thence i long that we were safe": [0, 65535], "from thence i long that we were safe and": [0, 65535], "thence i long that we were safe and sound": [0, 65535], "i long that we were safe and sound aboord": [0, 65535], "long that we were safe and sound aboord dro": [0, 65535], "that we were safe and sound aboord dro faith": [0, 65535], "we were safe and sound aboord dro faith stay": [0, 65535], "were safe and sound aboord dro faith stay heere": [0, 65535], "safe and sound aboord dro faith stay heere this": [0, 65535], "and sound aboord dro faith stay heere this night": [0, 65535], "sound aboord dro faith stay heere this night they": [0, 65535], "aboord dro faith stay heere this night they will": [0, 65535], "dro faith stay heere this night they will surely": [0, 65535], "faith stay heere this night they will surely do": [0, 65535], "stay heere this night they will surely do vs": [0, 65535], "heere this night they will surely do vs no": [0, 65535], "this night they will surely do vs no harme": [0, 65535], "night they will surely do vs no harme you": [0, 65535], "they will surely do vs no harme you saw": [0, 65535], "will surely do vs no harme you saw they": [0, 65535], "surely do vs no harme you saw they speake": [0, 65535], "do vs no harme you saw they speake vs": [0, 65535], "vs no harme you saw they speake vs faire": [0, 65535], "no harme you saw they speake vs faire giue": [0, 65535], "harme you saw they speake vs faire giue vs": [0, 65535], "you saw they speake vs faire giue vs gold": [0, 65535], "saw they speake vs faire giue vs gold me": [0, 65535], "they speake vs faire giue vs gold me thinkes": [0, 65535], "speake vs faire giue vs gold me thinkes they": [0, 65535], "vs faire giue vs gold me thinkes they are": [0, 65535], "faire giue vs gold me thinkes they are such": [0, 65535], "giue vs gold me thinkes they are such a": [0, 65535], "vs gold me thinkes they are such a gentle": [0, 65535], "gold me thinkes they are such a gentle nation": [0, 65535], "me thinkes they are such a gentle nation that": [0, 65535], "thinkes they are such a gentle nation that but": [0, 65535], "they are such a gentle nation that but for": [0, 65535], "are such a gentle nation that but for the": [0, 65535], "such a gentle nation that but for the mountaine": [0, 65535], "a gentle nation that but for the mountaine of": [0, 65535], "gentle nation that but for the mountaine of mad": [0, 65535], "nation that but for the mountaine of mad flesh": [0, 65535], "that but for the mountaine of mad flesh that": [0, 65535], "but for the mountaine of mad flesh that claimes": [0, 65535], "for the mountaine of mad flesh that claimes mariage": [0, 65535], "the mountaine of mad flesh that claimes mariage of": [0, 65535], "mountaine of mad flesh that claimes mariage of me": [0, 65535], "of mad flesh that claimes mariage of me i": [0, 65535], "mad flesh that claimes mariage of me i could": [0, 65535], "flesh that claimes mariage of me i could finde": [0, 65535], "that claimes mariage of me i could finde in": [0, 65535], "claimes mariage of me i could finde in my": [0, 65535], "mariage of me i could finde in my heart": [0, 65535], "of me i could finde in my heart to": [0, 65535], "me i could finde in my heart to stay": [0, 65535], "i could finde in my heart to stay heere": [0, 65535], "could finde in my heart to stay heere still": [0, 65535], "finde in my heart to stay heere still and": [0, 65535], "in my heart to stay heere still and turne": [0, 65535], "my heart to stay heere still and turne witch": [0, 65535], "heart to stay heere still and turne witch ant": [0, 65535], "to stay heere still and turne witch ant i": [0, 65535], "stay heere still and turne witch ant i will": [0, 65535], "heere still and turne witch ant i will not": [0, 65535], "still and turne witch ant i will not stay": [0, 65535], "and turne witch ant i will not stay to": [0, 65535], "turne witch ant i will not stay to night": [0, 65535], "witch ant i will not stay to night for": [0, 65535], "ant i will not stay to night for all": [0, 65535], "i will not stay to night for all the": [0, 65535], "will not stay to night for all the towne": [0, 65535], "not stay to night for all the towne therefore": [0, 65535], "stay to night for all the towne therefore away": [0, 65535], "to night for all the towne therefore away to": [0, 65535], "night for all the towne therefore away to get": [0, 65535], "for all the towne therefore away to get our": [0, 65535], "all the towne therefore away to get our stuffe": [0, 65535], "the towne therefore away to get our stuffe aboord": [0, 65535], "towne therefore away to get our stuffe aboord exeunt": [0, 65535], "actus quartus sc\u00e6na prima enter a merchant goldsmith and an": [0, 65535], "quartus sc\u00e6na prima enter a merchant goldsmith and an officer": [0, 65535], "sc\u00e6na prima enter a merchant goldsmith and an officer mar": [0, 65535], "prima enter a merchant goldsmith and an officer mar you": [0, 65535], "enter a merchant goldsmith and an officer mar you know": [0, 65535], "a merchant goldsmith and an officer mar you know since": [0, 65535], "merchant goldsmith and an officer mar you know since pentecost": [0, 65535], "goldsmith and an officer mar you know since pentecost the": [0, 65535], "and an officer mar you know since pentecost the sum": [0, 65535], "an officer mar you know since pentecost the sum is": [0, 65535], "officer mar you know since pentecost the sum is due": [0, 65535], "mar you know since pentecost the sum is due and": [0, 65535], "you know since pentecost the sum is due and since": [0, 65535], "know since pentecost the sum is due and since i": [0, 65535], "since pentecost the sum is due and since i haue": [0, 65535], "pentecost the sum is due and since i haue not": [0, 65535], "the sum is due and since i haue not much": [0, 65535], "sum is due and since i haue not much importun'd": [0, 65535], "is due and since i haue not much importun'd you": [0, 65535], "due and since i haue not much importun'd you nor": [0, 65535], "and since i haue not much importun'd you nor now": [0, 65535], "since i haue not much importun'd you nor now i": [0, 65535], "i haue not much importun'd you nor now i had": [0, 65535], "haue not much importun'd you nor now i had not": [0, 65535], "not much importun'd you nor now i had not but": [0, 65535], "much importun'd you nor now i had not but that": [0, 65535], "importun'd you nor now i had not but that i": [0, 65535], "you nor now i had not but that i am": [0, 65535], "nor now i had not but that i am bound": [0, 65535], "now i had not but that i am bound to": [0, 65535], "i had not but that i am bound to persia": [0, 65535], "had not but that i am bound to persia and": [0, 65535], "not but that i am bound to persia and want": [0, 65535], "but that i am bound to persia and want gilders": [0, 65535], "that i am bound to persia and want gilders for": [0, 65535], "i am bound to persia and want gilders for my": [0, 65535], "am bound to persia and want gilders for my voyage": [0, 65535], "bound to persia and want gilders for my voyage therefore": [0, 65535], "to persia and want gilders for my voyage therefore make": [0, 65535], "persia and want gilders for my voyage therefore make present": [0, 65535], "and want gilders for my voyage therefore make present satisfaction": [0, 65535], "want gilders for my voyage therefore make present satisfaction or": [0, 65535], "gilders for my voyage therefore make present satisfaction or ile": [0, 65535], "for my voyage therefore make present satisfaction or ile attach": [0, 65535], "my voyage therefore make present satisfaction or ile attach you": [0, 65535], "voyage therefore make present satisfaction or ile attach you by": [0, 65535], "therefore make present satisfaction or ile attach you by this": [0, 65535], "make present satisfaction or ile attach you by this officer": [0, 65535], "present satisfaction or ile attach you by this officer gold": [0, 65535], "satisfaction or ile attach you by this officer gold euen": [0, 65535], "or ile attach you by this officer gold euen iust": [0, 65535], "ile attach you by this officer gold euen iust the": [0, 65535], "attach you by this officer gold euen iust the sum": [0, 65535], "you by this officer gold euen iust the sum that": [0, 65535], "by this officer gold euen iust the sum that i": [0, 65535], "this officer gold euen iust the sum that i do": [0, 65535], "officer gold euen iust the sum that i do owe": [0, 65535], "gold euen iust the sum that i do owe to": [0, 65535], "euen iust the sum that i do owe to you": [0, 65535], "iust the sum that i do owe to you is": [0, 65535], "the sum that i do owe to you is growing": [0, 65535], "sum that i do owe to you is growing to": [0, 65535], "that i do owe to you is growing to me": [0, 65535], "i do owe to you is growing to me by": [0, 65535], "do owe to you is growing to me by antipholus": [0, 65535], "owe to you is growing to me by antipholus and": [0, 65535], "to you is growing to me by antipholus and in": [0, 65535], "you is growing to me by antipholus and in the": [0, 65535], "is growing to me by antipholus and in the instant": [0, 65535], "growing to me by antipholus and in the instant that": [0, 65535], "to me by antipholus and in the instant that i": [0, 65535], "me by antipholus and in the instant that i met": [0, 65535], "by antipholus and in the instant that i met with": [0, 65535], "antipholus and in the instant that i met with you": [0, 65535], "and in the instant that i met with you he": [0, 65535], "in the instant that i met with you he had": [0, 65535], "the instant that i met with you he had of": [0, 65535], "instant that i met with you he had of me": [0, 65535], "that i met with you he had of me a": [0, 65535], "i met with you he had of me a chaine": [0, 65535], "met with you he had of me a chaine at": [0, 65535], "with you he had of me a chaine at fiue": [0, 65535], "you he had of me a chaine at fiue a": [0, 65535], "he had of me a chaine at fiue a clocke": [0, 65535], "had of me a chaine at fiue a clocke i": [0, 65535], "of me a chaine at fiue a clocke i shall": [0, 65535], "me a chaine at fiue a clocke i shall receiue": [0, 65535], "a chaine at fiue a clocke i shall receiue the": [0, 65535], "chaine at fiue a clocke i shall receiue the money": [0, 65535], "at fiue a clocke i shall receiue the money for": [0, 65535], "fiue a clocke i shall receiue the money for the": [0, 65535], "a clocke i shall receiue the money for the same": [0, 65535], "clocke i shall receiue the money for the same pleaseth": [0, 65535], "i shall receiue the money for the same pleaseth you": [0, 65535], "shall receiue the money for the same pleaseth you walke": [0, 65535], "receiue the money for the same pleaseth you walke with": [0, 65535], "the money for the same pleaseth you walke with me": [0, 65535], "money for the same pleaseth you walke with me downe": [0, 65535], "for the same pleaseth you walke with me downe to": [0, 65535], "the same pleaseth you walke with me downe to his": [0, 65535], "same pleaseth you walke with me downe to his house": [0, 65535], "pleaseth you walke with me downe to his house i": [0, 65535], "you walke with me downe to his house i will": [0, 65535], "walke with me downe to his house i will discharge": [0, 65535], "with me downe to his house i will discharge my": [0, 65535], "me downe to his house i will discharge my bond": [0, 65535], "downe to his house i will discharge my bond and": [0, 65535], "to his house i will discharge my bond and thanke": [0, 65535], "his house i will discharge my bond and thanke you": [0, 65535], "house i will discharge my bond and thanke you too": [0, 65535], "i will discharge my bond and thanke you too enter": [0, 65535], "will discharge my bond and thanke you too enter antipholus": [0, 65535], "discharge my bond and thanke you too enter antipholus ephes": [0, 65535], "my bond and thanke you too enter antipholus ephes dromio": [0, 65535], "bond and thanke you too enter antipholus ephes dromio from": [0, 65535], "and thanke you too enter antipholus ephes dromio from the": [0, 65535], "thanke you too enter antipholus ephes dromio from the courtizans": [0, 65535], "you too enter antipholus ephes dromio from the courtizans offi": [0, 65535], "too enter antipholus ephes dromio from the courtizans offi that": [0, 65535], "enter antipholus ephes dromio from the courtizans offi that labour": [0, 65535], "antipholus ephes dromio from the courtizans offi that labour may": [0, 65535], "ephes dromio from the courtizans offi that labour may you": [0, 65535], "dromio from the courtizans offi that labour may you saue": [0, 65535], "from the courtizans offi that labour may you saue see": [0, 65535], "the courtizans offi that labour may you saue see where": [0, 65535], "courtizans offi that labour may you saue see where he": [0, 65535], "offi that labour may you saue see where he comes": [0, 65535], "that labour may you saue see where he comes ant": [0, 65535], "labour may you saue see where he comes ant while": [0, 65535], "may you saue see where he comes ant while i": [0, 65535], "you saue see where he comes ant while i go": [0, 65535], "saue see where he comes ant while i go to": [0, 65535], "see where he comes ant while i go to the": [0, 65535], "where he comes ant while i go to the goldsmiths": [0, 65535], "he comes ant while i go to the goldsmiths house": [0, 65535], "comes ant while i go to the goldsmiths house go": [0, 65535], "ant while i go to the goldsmiths house go thou": [0, 65535], "while i go to the goldsmiths house go thou and": [0, 65535], "i go to the goldsmiths house go thou and buy": [0, 65535], "go to the goldsmiths house go thou and buy a": [0, 65535], "to the goldsmiths house go thou and buy a ropes": [0, 65535], "the goldsmiths house go thou and buy a ropes end": [0, 65535], "goldsmiths house go thou and buy a ropes end that": [0, 65535], "house go thou and buy a ropes end that will": [0, 65535], "go thou and buy a ropes end that will i": [0, 65535], "thou and buy a ropes end that will i bestow": [0, 65535], "and buy a ropes end that will i bestow among": [0, 65535], "buy a ropes end that will i bestow among my": [0, 65535], "a ropes end that will i bestow among my wife": [0, 65535], "ropes end that will i bestow among my wife and": [0, 65535], "end that will i bestow among my wife and their": [0, 65535], "that will i bestow among my wife and their confederates": [0, 65535], "will i bestow among my wife and their confederates for": [0, 65535], "i bestow among my wife and their confederates for locking": [0, 65535], "bestow among my wife and their confederates for locking me": [0, 65535], "among my wife and their confederates for locking me out": [0, 65535], "my wife and their confederates for locking me out of": [0, 65535], "wife and their confederates for locking me out of my": [0, 65535], "and their confederates for locking me out of my doores": [0, 65535], "their confederates for locking me out of my doores by": [0, 65535], "confederates for locking me out of my doores by day": [0, 65535], "for locking me out of my doores by day but": [0, 65535], "locking me out of my doores by day but soft": [0, 65535], "me out of my doores by day but soft i": [0, 65535], "out of my doores by day but soft i see": [0, 65535], "of my doores by day but soft i see the": [0, 65535], "my doores by day but soft i see the goldsmith": [0, 65535], "doores by day but soft i see the goldsmith get": [0, 65535], "by day but soft i see the goldsmith get thee": [0, 65535], "day but soft i see the goldsmith get thee gone": [0, 65535], "but soft i see the goldsmith get thee gone buy": [0, 65535], "soft i see the goldsmith get thee gone buy thou": [0, 65535], "i see the goldsmith get thee gone buy thou a": [0, 65535], "see the goldsmith get thee gone buy thou a rope": [0, 65535], "the goldsmith get thee gone buy thou a rope and": [0, 65535], "goldsmith get thee gone buy thou a rope and bring": [0, 65535], "get thee gone buy thou a rope and bring it": [0, 65535], "thee gone buy thou a rope and bring it home": [0, 65535], "gone buy thou a rope and bring it home to": [0, 65535], "buy thou a rope and bring it home to me": [0, 65535], "thou a rope and bring it home to me dro": [0, 65535], "a rope and bring it home to me dro i": [0, 65535], "rope and bring it home to me dro i buy": [0, 65535], "and bring it home to me dro i buy a": [0, 65535], "bring it home to me dro i buy a thousand": [0, 65535], "it home to me dro i buy a thousand pound": [0, 65535], "home to me dro i buy a thousand pound a": [0, 65535], "to me dro i buy a thousand pound a yeare": [0, 65535], "me dro i buy a thousand pound a yeare i": [0, 65535], "dro i buy a thousand pound a yeare i buy": [0, 65535], "i buy a thousand pound a yeare i buy a": [0, 65535], "buy a thousand pound a yeare i buy a rope": [0, 65535], "a thousand pound a yeare i buy a rope exit": [0, 65535], "thousand pound a yeare i buy a rope exit dromio": [0, 65535], "pound a yeare i buy a rope exit dromio eph": [0, 65535], "a yeare i buy a rope exit dromio eph ant": [0, 65535], "yeare i buy a rope exit dromio eph ant a": [0, 65535], "i buy a rope exit dromio eph ant a man": [0, 65535], "buy a rope exit dromio eph ant a man is": [0, 65535], "a rope exit dromio eph ant a man is well": [0, 65535], "rope exit dromio eph ant a man is well holpe": [0, 65535], "exit dromio eph ant a man is well holpe vp": [0, 65535], "dromio eph ant a man is well holpe vp that": [0, 65535], "eph ant a man is well holpe vp that trusts": [0, 65535], "ant a man is well holpe vp that trusts to": [0, 65535], "a man is well holpe vp that trusts to you": [0, 65535], "man is well holpe vp that trusts to you i": [0, 65535], "is well holpe vp that trusts to you i promised": [0, 65535], "well holpe vp that trusts to you i promised your": [0, 65535], "holpe vp that trusts to you i promised your presence": [0, 65535], "vp that trusts to you i promised your presence and": [0, 65535], "that trusts to you i promised your presence and the": [0, 65535], "trusts to you i promised your presence and the chaine": [0, 65535], "to you i promised your presence and the chaine but": [0, 65535], "you i promised your presence and the chaine but neither": [0, 65535], "i promised your presence and the chaine but neither chaine": [0, 65535], "promised your presence and the chaine but neither chaine nor": [0, 65535], "your presence and the chaine but neither chaine nor goldsmith": [0, 65535], "presence and the chaine but neither chaine nor goldsmith came": [0, 65535], "and the chaine but neither chaine nor goldsmith came to": [0, 65535], "the chaine but neither chaine nor goldsmith came to me": [0, 65535], "chaine but neither chaine nor goldsmith came to me belike": [0, 65535], "but neither chaine nor goldsmith came to me belike you": [0, 65535], "neither chaine nor goldsmith came to me belike you thought": [0, 65535], "chaine nor goldsmith came to me belike you thought our": [0, 65535], "nor goldsmith came to me belike you thought our loue": [0, 65535], "goldsmith came to me belike you thought our loue would": [0, 65535], "came to me belike you thought our loue would last": [0, 65535], "to me belike you thought our loue would last too": [0, 65535], "me belike you thought our loue would last too long": [0, 65535], "belike you thought our loue would last too long if": [0, 65535], "you thought our loue would last too long if it": [0, 65535], "thought our loue would last too long if it were": [0, 65535], "our loue would last too long if it were chain'd": [0, 65535], "loue would last too long if it were chain'd together": [0, 65535], "would last too long if it were chain'd together and": [0, 65535], "last too long if it were chain'd together and therefore": [0, 65535], "too long if it were chain'd together and therefore came": [0, 65535], "long if it were chain'd together and therefore came not": [0, 65535], "if it were chain'd together and therefore came not gold": [0, 65535], "it were chain'd together and therefore came not gold sauing": [0, 65535], "were chain'd together and therefore came not gold sauing your": [0, 65535], "chain'd together and therefore came not gold sauing your merrie": [0, 65535], "together and therefore came not gold sauing your merrie humor": [0, 65535], "and therefore came not gold sauing your merrie humor here's": [0, 65535], "therefore came not gold sauing your merrie humor here's the": [0, 65535], "came not gold sauing your merrie humor here's the note": [0, 65535], "not gold sauing your merrie humor here's the note how": [0, 65535], "gold sauing your merrie humor here's the note how much": [0, 65535], "sauing your merrie humor here's the note how much your": [0, 65535], "your merrie humor here's the note how much your chaine": [0, 65535], "merrie humor here's the note how much your chaine weighs": [0, 65535], "humor here's the note how much your chaine weighs to": [0, 65535], "here's the note how much your chaine weighs to the": [0, 65535], "the note how much your chaine weighs to the vtmost": [0, 65535], "note how much your chaine weighs to the vtmost charect": [0, 65535], "how much your chaine weighs to the vtmost charect the": [0, 65535], "much your chaine weighs to the vtmost charect the finenesse": [0, 65535], "your chaine weighs to the vtmost charect the finenesse of": [0, 65535], "chaine weighs to the vtmost charect the finenesse of the": [0, 65535], "weighs to the vtmost charect the finenesse of the gold": [0, 65535], "to the vtmost charect the finenesse of the gold and": [0, 65535], "the vtmost charect the finenesse of the gold and chargefull": [0, 65535], "vtmost charect the finenesse of the gold and chargefull fashion": [0, 65535], "charect the finenesse of the gold and chargefull fashion which": [0, 65535], "the finenesse of the gold and chargefull fashion which doth": [0, 65535], "finenesse of the gold and chargefull fashion which doth amount": [0, 65535], "of the gold and chargefull fashion which doth amount to": [0, 65535], "the gold and chargefull fashion which doth amount to three": [0, 65535], "gold and chargefull fashion which doth amount to three odde": [0, 65535], "and chargefull fashion which doth amount to three odde duckets": [0, 65535], "chargefull fashion which doth amount to three odde duckets more": [0, 65535], "fashion which doth amount to three odde duckets more then": [0, 65535], "which doth amount to three odde duckets more then i": [0, 65535], "doth amount to three odde duckets more then i stand": [0, 65535], "amount to three odde duckets more then i stand debted": [0, 65535], "to three odde duckets more then i stand debted to": [0, 65535], "three odde duckets more then i stand debted to this": [0, 65535], "odde duckets more then i stand debted to this gentleman": [0, 65535], "duckets more then i stand debted to this gentleman i": [0, 65535], "more then i stand debted to this gentleman i pray": [0, 65535], "then i stand debted to this gentleman i pray you": [0, 65535], "i stand debted to this gentleman i pray you see": [0, 65535], "stand debted to this gentleman i pray you see him": [0, 65535], "debted to this gentleman i pray you see him presently": [0, 65535], "to this gentleman i pray you see him presently discharg'd": [0, 65535], "this gentleman i pray you see him presently discharg'd for": [0, 65535], "gentleman i pray you see him presently discharg'd for he": [0, 65535], "i pray you see him presently discharg'd for he is": [0, 65535], "pray you see him presently discharg'd for he is bound": [0, 65535], "you see him presently discharg'd for he is bound to": [0, 65535], "see him presently discharg'd for he is bound to sea": [0, 65535], "him presently discharg'd for he is bound to sea and": [0, 65535], "presently discharg'd for he is bound to sea and stayes": [0, 65535], "discharg'd for he is bound to sea and stayes but": [0, 65535], "for he is bound to sea and stayes but for": [0, 65535], "he is bound to sea and stayes but for it": [0, 65535], "is bound to sea and stayes but for it anti": [0, 65535], "bound to sea and stayes but for it anti i": [0, 65535], "to sea and stayes but for it anti i am": [0, 65535], "sea and stayes but for it anti i am not": [0, 65535], "and stayes but for it anti i am not furnish'd": [0, 65535], "stayes but for it anti i am not furnish'd with": [0, 65535], "but for it anti i am not furnish'd with the": [0, 65535], "for it anti i am not furnish'd with the present": [0, 65535], "it anti i am not furnish'd with the present monie": [0, 65535], "anti i am not furnish'd with the present monie besides": [0, 65535], "i am not furnish'd with the present monie besides i": [0, 65535], "am not furnish'd with the present monie besides i haue": [0, 65535], "not furnish'd with the present monie besides i haue some": [0, 65535], "furnish'd with the present monie besides i haue some businesse": [0, 65535], "with the present monie besides i haue some businesse in": [0, 65535], "the present monie besides i haue some businesse in the": [0, 65535], "present monie besides i haue some businesse in the towne": [0, 65535], "monie besides i haue some businesse in the towne good": [0, 65535], "besides i haue some businesse in the towne good signior": [0, 65535], "i haue some businesse in the towne good signior take": [0, 65535], "haue some businesse in the towne good signior take the": [0, 65535], "some businesse in the towne good signior take the stranger": [0, 65535], "businesse in the towne good signior take the stranger to": [0, 65535], "in the towne good signior take the stranger to my": [0, 65535], "the towne good signior take the stranger to my house": [0, 65535], "towne good signior take the stranger to my house and": [0, 65535], "good signior take the stranger to my house and with": [0, 65535], "signior take the stranger to my house and with you": [0, 65535], "take the stranger to my house and with you take": [0, 65535], "the stranger to my house and with you take the": [0, 65535], "stranger to my house and with you take the chaine": [0, 65535], "to my house and with you take the chaine and": [0, 65535], "my house and with you take the chaine and bid": [0, 65535], "house and with you take the chaine and bid my": [0, 65535], "and with you take the chaine and bid my wife": [0, 65535], "with you take the chaine and bid my wife disburse": [0, 65535], "you take the chaine and bid my wife disburse the": [0, 65535], "take the chaine and bid my wife disburse the summe": [0, 65535], "the chaine and bid my wife disburse the summe on": [0, 65535], "chaine and bid my wife disburse the summe on the": [0, 65535], "and bid my wife disburse the summe on the receit": [0, 65535], "bid my wife disburse the summe on the receit thereof": [0, 65535], "my wife disburse the summe on the receit thereof perchance": [0, 65535], "wife disburse the summe on the receit thereof perchance i": [0, 65535], "disburse the summe on the receit thereof perchance i will": [0, 65535], "the summe on the receit thereof perchance i will be": [0, 65535], "summe on the receit thereof perchance i will be there": [0, 65535], "on the receit thereof perchance i will be there as": [0, 65535], "the receit thereof perchance i will be there as soone": [0, 65535], "receit thereof perchance i will be there as soone as": [0, 65535], "thereof perchance i will be there as soone as you": [0, 65535], "perchance i will be there as soone as you gold": [0, 65535], "i will be there as soone as you gold then": [0, 65535], "will be there as soone as you gold then you": [0, 65535], "be there as soone as you gold then you will": [0, 65535], "there as soone as you gold then you will bring": [0, 65535], "as soone as you gold then you will bring the": [0, 65535], "soone as you gold then you will bring the chaine": [0, 65535], "as you gold then you will bring the chaine to": [0, 65535], "you gold then you will bring the chaine to her": [0, 65535], "gold then you will bring the chaine to her your": [0, 65535], "then you will bring the chaine to her your selfe": [0, 65535], "you will bring the chaine to her your selfe anti": [0, 65535], "will bring the chaine to her your selfe anti no": [0, 65535], "bring the chaine to her your selfe anti no beare": [0, 65535], "the chaine to her your selfe anti no beare it": [0, 65535], "chaine to her your selfe anti no beare it with": [0, 65535], "to her your selfe anti no beare it with you": [0, 65535], "her your selfe anti no beare it with you least": [0, 65535], "your selfe anti no beare it with you least i": [0, 65535], "selfe anti no beare it with you least i come": [0, 65535], "anti no beare it with you least i come not": [0, 65535], "no beare it with you least i come not time": [0, 65535], "beare it with you least i come not time enough": [0, 65535], "it with you least i come not time enough gold": [0, 65535], "with you least i come not time enough gold well": [0, 65535], "you least i come not time enough gold well sir": [0, 65535], "least i come not time enough gold well sir i": [0, 65535], "i come not time enough gold well sir i will": [0, 65535], "come not time enough gold well sir i will haue": [0, 65535], "not time enough gold well sir i will haue you": [0, 65535], "time enough gold well sir i will haue you the": [0, 65535], "enough gold well sir i will haue you the chaine": [0, 65535], "gold well sir i will haue you the chaine about": [0, 65535], "well sir i will haue you the chaine about you": [0, 65535], "sir i will haue you the chaine about you ant": [0, 65535], "i will haue you the chaine about you ant and": [0, 65535], "will haue you the chaine about you ant and if": [0, 65535], "haue you the chaine about you ant and if i": [0, 65535], "you the chaine about you ant and if i haue": [0, 65535], "the chaine about you ant and if i haue not": [0, 65535], "chaine about you ant and if i haue not sir": [0, 65535], "about you ant and if i haue not sir i": [0, 65535], "you ant and if i haue not sir i hope": [0, 65535], "ant and if i haue not sir i hope you": [0, 65535], "and if i haue not sir i hope you haue": [0, 65535], "if i haue not sir i hope you haue or": [0, 65535], "i haue not sir i hope you haue or else": [0, 65535], "haue not sir i hope you haue or else you": [0, 65535], "not sir i hope you haue or else you may": [0, 65535], "sir i hope you haue or else you may returne": [0, 65535], "i hope you haue or else you may returne without": [0, 65535], "hope you haue or else you may returne without your": [0, 65535], "you haue or else you may returne without your money": [0, 65535], "haue or else you may returne without your money gold": [0, 65535], "or else you may returne without your money gold nay": [0, 65535], "else you may returne without your money gold nay come": [0, 65535], "you may returne without your money gold nay come i": [0, 65535], "may returne without your money gold nay come i pray": [0, 65535], "returne without your money gold nay come i pray you": [0, 65535], "without your money gold nay come i pray you sir": [0, 65535], "your money gold nay come i pray you sir giue": [0, 65535], "money gold nay come i pray you sir giue me": [0, 65535], "gold nay come i pray you sir giue me the": [0, 65535], "nay come i pray you sir giue me the chaine": [0, 65535], "come i pray you sir giue me the chaine both": [0, 65535], "i pray you sir giue me the chaine both winde": [0, 65535], "pray you sir giue me the chaine both winde and": [0, 65535], "you sir giue me the chaine both winde and tide": [0, 65535], "sir giue me the chaine both winde and tide stayes": [0, 65535], "giue me the chaine both winde and tide stayes for": [0, 65535], "me the chaine both winde and tide stayes for this": [0, 65535], "the chaine both winde and tide stayes for this gentleman": [0, 65535], "chaine both winde and tide stayes for this gentleman and": [0, 65535], "both winde and tide stayes for this gentleman and i": [0, 65535], "winde and tide stayes for this gentleman and i too": [0, 65535], "and tide stayes for this gentleman and i too blame": [0, 65535], "tide stayes for this gentleman and i too blame haue": [0, 65535], "stayes for this gentleman and i too blame haue held": [0, 65535], "for this gentleman and i too blame haue held him": [0, 65535], "this gentleman and i too blame haue held him heere": [0, 65535], "gentleman and i too blame haue held him heere too": [0, 65535], "and i too blame haue held him heere too long": [0, 65535], "i too blame haue held him heere too long anti": [0, 65535], "too blame haue held him heere too long anti good": [0, 65535], "blame haue held him heere too long anti good lord": [0, 65535], "haue held him heere too long anti good lord you": [0, 65535], "held him heere too long anti good lord you vse": [0, 65535], "him heere too long anti good lord you vse this": [0, 65535], "heere too long anti good lord you vse this dalliance": [0, 65535], "too long anti good lord you vse this dalliance to": [0, 65535], "long anti good lord you vse this dalliance to excuse": [0, 65535], "anti good lord you vse this dalliance to excuse your": [0, 65535], "good lord you vse this dalliance to excuse your breach": [0, 65535], "lord you vse this dalliance to excuse your breach of": [0, 65535], "you vse this dalliance to excuse your breach of promise": [0, 65535], "vse this dalliance to excuse your breach of promise to": [0, 65535], "this dalliance to excuse your breach of promise to the": [0, 65535], "dalliance to excuse your breach of promise to the porpentine": [0, 65535], "to excuse your breach of promise to the porpentine i": [0, 65535], "excuse your breach of promise to the porpentine i should": [0, 65535], "your breach of promise to the porpentine i should haue": [0, 65535], "breach of promise to the porpentine i should haue chid": [0, 65535], "of promise to the porpentine i should haue chid you": [0, 65535], "promise to the porpentine i should haue chid you for": [0, 65535], "to the porpentine i should haue chid you for not": [0, 65535], "the porpentine i should haue chid you for not bringing": [0, 65535], "porpentine i should haue chid you for not bringing it": [0, 65535], "i should haue chid you for not bringing it but": [0, 65535], "should haue chid you for not bringing it but like": [0, 65535], "haue chid you for not bringing it but like a": [0, 65535], "chid you for not bringing it but like a shrew": [0, 65535], "you for not bringing it but like a shrew you": [0, 65535], "for not bringing it but like a shrew you first": [0, 65535], "not bringing it but like a shrew you first begin": [0, 65535], "bringing it but like a shrew you first begin to": [0, 65535], "it but like a shrew you first begin to brawle": [0, 65535], "but like a shrew you first begin to brawle mar": [0, 65535], "like a shrew you first begin to brawle mar the": [0, 65535], "a shrew you first begin to brawle mar the houre": [0, 65535], "shrew you first begin to brawle mar the houre steales": [0, 65535], "you first begin to brawle mar the houre steales on": [0, 65535], "first begin to brawle mar the houre steales on i": [0, 65535], "begin to brawle mar the houre steales on i pray": [0, 65535], "to brawle mar the houre steales on i pray you": [0, 65535], "brawle mar the houre steales on i pray you sir": [0, 65535], "mar the houre steales on i pray you sir dispatch": [0, 65535], "the houre steales on i pray you sir dispatch gold": [0, 65535], "houre steales on i pray you sir dispatch gold you": [0, 65535], "steales on i pray you sir dispatch gold you heare": [0, 65535], "on i pray you sir dispatch gold you heare how": [0, 65535], "i pray you sir dispatch gold you heare how he": [0, 65535], "pray you sir dispatch gold you heare how he importunes": [0, 65535], "you sir dispatch gold you heare how he importunes me": [0, 65535], "sir dispatch gold you heare how he importunes me the": [0, 65535], "dispatch gold you heare how he importunes me the chaine": [0, 65535], "gold you heare how he importunes me the chaine ant": [0, 65535], "you heare how he importunes me the chaine ant why": [0, 65535], "heare how he importunes me the chaine ant why giue": [0, 65535], "how he importunes me the chaine ant why giue it": [0, 65535], "he importunes me the chaine ant why giue it to": [0, 65535], "importunes me the chaine ant why giue it to my": [0, 65535], "me the chaine ant why giue it to my wife": [0, 65535], "the chaine ant why giue it to my wife and": [0, 65535], "chaine ant why giue it to my wife and fetch": [0, 65535], "ant why giue it to my wife and fetch your": [0, 65535], "why giue it to my wife and fetch your mony": [0, 65535], "giue it to my wife and fetch your mony gold": [0, 65535], "it to my wife and fetch your mony gold come": [0, 65535], "to my wife and fetch your mony gold come come": [0, 65535], "my wife and fetch your mony gold come come you": [0, 65535], "wife and fetch your mony gold come come you know": [0, 65535], "and fetch your mony gold come come you know i": [0, 65535], "fetch your mony gold come come you know i gaue": [0, 65535], "your mony gold come come you know i gaue it": [0, 65535], "mony gold come come you know i gaue it you": [0, 65535], "gold come come you know i gaue it you euen": [0, 65535], "come come you know i gaue it you euen now": [0, 65535], "come you know i gaue it you euen now either": [0, 65535], "you know i gaue it you euen now either send": [0, 65535], "know i gaue it you euen now either send the": [0, 65535], "i gaue it you euen now either send the chaine": [0, 65535], "gaue it you euen now either send the chaine or": [0, 65535], "it you euen now either send the chaine or send": [0, 65535], "you euen now either send the chaine or send me": [0, 65535], "euen now either send the chaine or send me by": [0, 65535], "now either send the chaine or send me by some": [0, 65535], "either send the chaine or send me by some token": [0, 65535], "send the chaine or send me by some token ant": [0, 65535], "the chaine or send me by some token ant fie": [0, 65535], "chaine or send me by some token ant fie now": [0, 65535], "or send me by some token ant fie now you": [0, 65535], "send me by some token ant fie now you run": [0, 65535], "me by some token ant fie now you run this": [0, 65535], "by some token ant fie now you run this humor": [0, 65535], "some token ant fie now you run this humor out": [0, 65535], "token ant fie now you run this humor out of": [0, 65535], "ant fie now you run this humor out of breath": [0, 65535], "fie now you run this humor out of breath come": [0, 65535], "now you run this humor out of breath come where's": [0, 65535], "you run this humor out of breath come where's the": [0, 65535], "run this humor out of breath come where's the chaine": [0, 65535], "this humor out of breath come where's the chaine i": [0, 65535], "humor out of breath come where's the chaine i pray": [0, 65535], "out of breath come where's the chaine i pray you": [0, 65535], "of breath come where's the chaine i pray you let": [0, 65535], "breath come where's the chaine i pray you let me": [0, 65535], "come where's the chaine i pray you let me see": [0, 65535], "where's the chaine i pray you let me see it": [0, 65535], "the chaine i pray you let me see it mar": [0, 65535], "chaine i pray you let me see it mar my": [0, 65535], "i pray you let me see it mar my businesse": [0, 65535], "pray you let me see it mar my businesse cannot": [0, 65535], "you let me see it mar my businesse cannot brooke": [0, 65535], "let me see it mar my businesse cannot brooke this": [0, 65535], "me see it mar my businesse cannot brooke this dalliance": [0, 65535], "see it mar my businesse cannot brooke this dalliance good": [0, 65535], "it mar my businesse cannot brooke this dalliance good sir": [0, 65535], "mar my businesse cannot brooke this dalliance good sir say": [0, 65535], "my businesse cannot brooke this dalliance good sir say whe'r": [0, 65535], "businesse cannot brooke this dalliance good sir say whe'r you'l": [0, 65535], "cannot brooke this dalliance good sir say whe'r you'l answer": [0, 65535], "brooke this dalliance good sir say whe'r you'l answer me": [0, 65535], "this dalliance good sir say whe'r you'l answer me or": [0, 65535], "dalliance good sir say whe'r you'l answer me or no": [0, 65535], "good sir say whe'r you'l answer me or no if": [0, 65535], "sir say whe'r you'l answer me or no if not": [0, 65535], "say whe'r you'l answer me or no if not ile": [0, 65535], "whe'r you'l answer me or no if not ile leaue": [0, 65535], "you'l answer me or no if not ile leaue him": [0, 65535], "answer me or no if not ile leaue him to": [0, 65535], "me or no if not ile leaue him to the": [0, 65535], "or no if not ile leaue him to the officer": [0, 65535], "no if not ile leaue him to the officer ant": [0, 65535], "if not ile leaue him to the officer ant i": [0, 65535], "not ile leaue him to the officer ant i answer": [0, 65535], "ile leaue him to the officer ant i answer you": [0, 65535], "leaue him to the officer ant i answer you what": [0, 65535], "him to the officer ant i answer you what should": [0, 65535], "to the officer ant i answer you what should i": [0, 65535], "the officer ant i answer you what should i answer": [0, 65535], "officer ant i answer you what should i answer you": [0, 65535], "ant i answer you what should i answer you gold": [0, 65535], "i answer you what should i answer you gold the": [0, 65535], "answer you what should i answer you gold the monie": [0, 65535], "you what should i answer you gold the monie that": [0, 65535], "what should i answer you gold the monie that you": [0, 65535], "should i answer you gold the monie that you owe": [0, 65535], "i answer you gold the monie that you owe me": [0, 65535], "answer you gold the monie that you owe me for": [0, 65535], "you gold the monie that you owe me for the": [0, 65535], "gold the monie that you owe me for the chaine": [0, 65535], "the monie that you owe me for the chaine ant": [0, 65535], "monie that you owe me for the chaine ant i": [0, 65535], "that you owe me for the chaine ant i owe": [0, 65535], "you owe me for the chaine ant i owe you": [0, 65535], "owe me for the chaine ant i owe you none": [0, 65535], "me for the chaine ant i owe you none till": [0, 65535], "for the chaine ant i owe you none till i": [0, 65535], "the chaine ant i owe you none till i receiue": [0, 65535], "chaine ant i owe you none till i receiue the": [0, 65535], "ant i owe you none till i receiue the chaine": [0, 65535], "i owe you none till i receiue the chaine gold": [0, 65535], "owe you none till i receiue the chaine gold you": [0, 65535], "you none till i receiue the chaine gold you know": [0, 65535], "none till i receiue the chaine gold you know i": [0, 65535], "till i receiue the chaine gold you know i gaue": [0, 65535], "i receiue the chaine gold you know i gaue it": [0, 65535], "receiue the chaine gold you know i gaue it you": [0, 65535], "the chaine gold you know i gaue it you halfe": [0, 65535], "chaine gold you know i gaue it you halfe an": [0, 65535], "gold you know i gaue it you halfe an houre": [0, 65535], "you know i gaue it you halfe an houre since": [0, 65535], "know i gaue it you halfe an houre since ant": [0, 65535], "i gaue it you halfe an houre since ant you": [0, 65535], "gaue it you halfe an houre since ant you gaue": [0, 65535], "it you halfe an houre since ant you gaue me": [0, 65535], "you halfe an houre since ant you gaue me none": [0, 65535], "halfe an houre since ant you gaue me none you": [0, 65535], "an houre since ant you gaue me none you wrong": [0, 65535], "houre since ant you gaue me none you wrong mee": [0, 65535], "since ant you gaue me none you wrong mee much": [0, 65535], "ant you gaue me none you wrong mee much to": [0, 65535], "you gaue me none you wrong mee much to say": [0, 65535], "gaue me none you wrong mee much to say so": [0, 65535], "me none you wrong mee much to say so gold": [0, 65535], "none you wrong mee much to say so gold you": [0, 65535], "you wrong mee much to say so gold you wrong": [0, 65535], "wrong mee much to say so gold you wrong me": [0, 65535], "mee much to say so gold you wrong me more": [0, 65535], "much to say so gold you wrong me more sir": [0, 65535], "to say so gold you wrong me more sir in": [0, 65535], "say so gold you wrong me more sir in denying": [0, 65535], "so gold you wrong me more sir in denying it": [0, 65535], "gold you wrong me more sir in denying it consider": [0, 65535], "you wrong me more sir in denying it consider how": [0, 65535], "wrong me more sir in denying it consider how it": [0, 65535], "me more sir in denying it consider how it stands": [0, 65535], "more sir in denying it consider how it stands vpon": [0, 65535], "sir in denying it consider how it stands vpon my": [0, 65535], "in denying it consider how it stands vpon my credit": [0, 65535], "denying it consider how it stands vpon my credit mar": [0, 65535], "it consider how it stands vpon my credit mar well": [0, 65535], "consider how it stands vpon my credit mar well officer": [0, 65535], "how it stands vpon my credit mar well officer arrest": [0, 65535], "it stands vpon my credit mar well officer arrest him": [0, 65535], "stands vpon my credit mar well officer arrest him at": [0, 65535], "vpon my credit mar well officer arrest him at my": [0, 65535], "my credit mar well officer arrest him at my suite": [0, 65535], "credit mar well officer arrest him at my suite offi": [0, 65535], "mar well officer arrest him at my suite offi i": [0, 65535], "well officer arrest him at my suite offi i do": [0, 65535], "officer arrest him at my suite offi i do and": [0, 65535], "arrest him at my suite offi i do and charge": [0, 65535], "him at my suite offi i do and charge you": [0, 65535], "at my suite offi i do and charge you in": [0, 65535], "my suite offi i do and charge you in the": [0, 65535], "suite offi i do and charge you in the dukes": [0, 65535], "offi i do and charge you in the dukes name": [0, 65535], "i do and charge you in the dukes name to": [0, 65535], "do and charge you in the dukes name to obey": [0, 65535], "and charge you in the dukes name to obey me": [0, 65535], "charge you in the dukes name to obey me gold": [0, 65535], "you in the dukes name to obey me gold this": [0, 65535], "in the dukes name to obey me gold this touches": [0, 65535], "the dukes name to obey me gold this touches me": [0, 65535], "dukes name to obey me gold this touches me in": [0, 65535], "name to obey me gold this touches me in reputation": [0, 65535], "to obey me gold this touches me in reputation either": [0, 65535], "obey me gold this touches me in reputation either consent": [0, 65535], "me gold this touches me in reputation either consent to": [0, 65535], "gold this touches me in reputation either consent to pay": [0, 65535], "this touches me in reputation either consent to pay this": [0, 65535], "touches me in reputation either consent to pay this sum": [0, 65535], "me in reputation either consent to pay this sum for": [0, 65535], "in reputation either consent to pay this sum for me": [0, 65535], "reputation either consent to pay this sum for me or": [0, 65535], "either consent to pay this sum for me or i": [0, 65535], "consent to pay this sum for me or i attach": [0, 65535], "to pay this sum for me or i attach you": [0, 65535], "pay this sum for me or i attach you by": [0, 65535], "this sum for me or i attach you by this": [0, 65535], "sum for me or i attach you by this officer": [0, 65535], "for me or i attach you by this officer ant": [0, 65535], "me or i attach you by this officer ant consent": [0, 65535], "or i attach you by this officer ant consent to": [0, 65535], "i attach you by this officer ant consent to pay": [0, 65535], "attach you by this officer ant consent to pay thee": [0, 65535], "you by this officer ant consent to pay thee that": [0, 65535], "by this officer ant consent to pay thee that i": [0, 65535], "this officer ant consent to pay thee that i neuer": [0, 65535], "officer ant consent to pay thee that i neuer had": [0, 65535], "ant consent to pay thee that i neuer had arrest": [0, 65535], "consent to pay thee that i neuer had arrest me": [0, 65535], "to pay thee that i neuer had arrest me foolish": [0, 65535], "pay thee that i neuer had arrest me foolish fellow": [0, 65535], "thee that i neuer had arrest me foolish fellow if": [0, 65535], "that i neuer had arrest me foolish fellow if thou": [0, 65535], "i neuer had arrest me foolish fellow if thou dar'st": [0, 65535], "neuer had arrest me foolish fellow if thou dar'st gold": [0, 65535], "had arrest me foolish fellow if thou dar'st gold heere": [0, 65535], "arrest me foolish fellow if thou dar'st gold heere is": [0, 65535], "me foolish fellow if thou dar'st gold heere is thy": [0, 65535], "foolish fellow if thou dar'st gold heere is thy fee": [0, 65535], "fellow if thou dar'st gold heere is thy fee arrest": [0, 65535], "if thou dar'st gold heere is thy fee arrest him": [0, 65535], "thou dar'st gold heere is thy fee arrest him officer": [0, 65535], "dar'st gold heere is thy fee arrest him officer i": [0, 65535], "gold heere is thy fee arrest him officer i would": [0, 65535], "heere is thy fee arrest him officer i would not": [0, 65535], "is thy fee arrest him officer i would not spare": [0, 65535], "thy fee arrest him officer i would not spare my": [0, 65535], "fee arrest him officer i would not spare my brother": [0, 65535], "arrest him officer i would not spare my brother in": [0, 65535], "him officer i would not spare my brother in this": [0, 65535], "officer i would not spare my brother in this case": [0, 65535], "i would not spare my brother in this case if": [0, 65535], "would not spare my brother in this case if he": [0, 65535], "not spare my brother in this case if he should": [0, 65535], "spare my brother in this case if he should scorne": [0, 65535], "my brother in this case if he should scorne me": [0, 65535], "brother in this case if he should scorne me so": [0, 65535], "in this case if he should scorne me so apparantly": [0, 65535], "this case if he should scorne me so apparantly offic": [0, 65535], "case if he should scorne me so apparantly offic i": [0, 65535], "if he should scorne me so apparantly offic i do": [0, 65535], "he should scorne me so apparantly offic i do arrest": [0, 65535], "should scorne me so apparantly offic i do arrest you": [0, 65535], "scorne me so apparantly offic i do arrest you sir": [0, 65535], "me so apparantly offic i do arrest you sir you": [0, 65535], "so apparantly offic i do arrest you sir you heare": [0, 65535], "apparantly offic i do arrest you sir you heare the": [0, 65535], "offic i do arrest you sir you heare the suite": [0, 65535], "i do arrest you sir you heare the suite ant": [0, 65535], "do arrest you sir you heare the suite ant i": [0, 65535], "arrest you sir you heare the suite ant i do": [0, 65535], "you sir you heare the suite ant i do obey": [0, 65535], "sir you heare the suite ant i do obey thee": [0, 65535], "you heare the suite ant i do obey thee till": [0, 65535], "heare the suite ant i do obey thee till i": [0, 65535], "the suite ant i do obey thee till i giue": [0, 65535], "suite ant i do obey thee till i giue thee": [0, 65535], "ant i do obey thee till i giue thee baile": [0, 65535], "i do obey thee till i giue thee baile but": [0, 65535], "do obey thee till i giue thee baile but sirrah": [0, 65535], "obey thee till i giue thee baile but sirrah you": [0, 65535], "thee till i giue thee baile but sirrah you shall": [0, 65535], "till i giue thee baile but sirrah you shall buy": [0, 65535], "i giue thee baile but sirrah you shall buy this": [0, 65535], "giue thee baile but sirrah you shall buy this sport": [0, 65535], "thee baile but sirrah you shall buy this sport as": [0, 65535], "baile but sirrah you shall buy this sport as deere": [0, 65535], "but sirrah you shall buy this sport as deere as": [0, 65535], "sirrah you shall buy this sport as deere as all": [0, 65535], "you shall buy this sport as deere as all the": [0, 65535], "shall buy this sport as deere as all the mettall": [0, 65535], "buy this sport as deere as all the mettall in": [0, 65535], "this sport as deere as all the mettall in your": [0, 65535], "sport as deere as all the mettall in your shop": [0, 65535], "as deere as all the mettall in your shop will": [0, 65535], "deere as all the mettall in your shop will answer": [0, 65535], "as all the mettall in your shop will answer gold": [0, 65535], "all the mettall in your shop will answer gold sir": [0, 65535], "the mettall in your shop will answer gold sir sir": [0, 65535], "mettall in your shop will answer gold sir sir i": [0, 65535], "in your shop will answer gold sir sir i shall": [0, 65535], "your shop will answer gold sir sir i shall haue": [0, 65535], "shop will answer gold sir sir i shall haue law": [0, 65535], "will answer gold sir sir i shall haue law in": [0, 65535], "answer gold sir sir i shall haue law in ephesus": [0, 65535], "gold sir sir i shall haue law in ephesus to": [0, 65535], "sir sir i shall haue law in ephesus to your": [0, 65535], "sir i shall haue law in ephesus to your notorious": [0, 65535], "i shall haue law in ephesus to your notorious shame": [0, 65535], "shall haue law in ephesus to your notorious shame i": [0, 65535], "haue law in ephesus to your notorious shame i doubt": [0, 65535], "law in ephesus to your notorious shame i doubt it": [0, 65535], "in ephesus to your notorious shame i doubt it not": [0, 65535], "ephesus to your notorious shame i doubt it not enter": [0, 65535], "to your notorious shame i doubt it not enter dromio": [0, 65535], "your notorious shame i doubt it not enter dromio sira": [0, 65535], "notorious shame i doubt it not enter dromio sira from": [0, 65535], "shame i doubt it not enter dromio sira from the": [0, 65535], "i doubt it not enter dromio sira from the bay": [0, 65535], "doubt it not enter dromio sira from the bay dro": [0, 65535], "it not enter dromio sira from the bay dro master": [0, 65535], "not enter dromio sira from the bay dro master there's": [0, 65535], "enter dromio sira from the bay dro master there's a": [0, 65535], "dromio sira from the bay dro master there's a barke": [0, 65535], "sira from the bay dro master there's a barke of": [0, 65535], "from the bay dro master there's a barke of epidamium": [0, 65535], "the bay dro master there's a barke of epidamium that": [0, 65535], "bay dro master there's a barke of epidamium that staies": [0, 65535], "dro master there's a barke of epidamium that staies but": [0, 65535], "master there's a barke of epidamium that staies but till": [0, 65535], "there's a barke of epidamium that staies but till her": [0, 65535], "a barke of epidamium that staies but till her owner": [0, 65535], "barke of epidamium that staies but till her owner comes": [0, 65535], "of epidamium that staies but till her owner comes aboord": [0, 65535], "epidamium that staies but till her owner comes aboord and": [0, 65535], "that staies but till her owner comes aboord and then": [0, 65535], "staies but till her owner comes aboord and then sir": [0, 65535], "but till her owner comes aboord and then sir she": [0, 65535], "till her owner comes aboord and then sir she beares": [0, 65535], "her owner comes aboord and then sir she beares away": [0, 65535], "owner comes aboord and then sir she beares away our": [0, 65535], "comes aboord and then sir she beares away our fraughtage": [0, 65535], "aboord and then sir she beares away our fraughtage sir": [0, 65535], "and then sir she beares away our fraughtage sir i": [0, 65535], "then sir she beares away our fraughtage sir i haue": [0, 65535], "sir she beares away our fraughtage sir i haue conuei'd": [0, 65535], "she beares away our fraughtage sir i haue conuei'd aboord": [0, 65535], "beares away our fraughtage sir i haue conuei'd aboord and": [0, 65535], "away our fraughtage sir i haue conuei'd aboord and i": [0, 65535], "our fraughtage sir i haue conuei'd aboord and i haue": [0, 65535], "fraughtage sir i haue conuei'd aboord and i haue bought": [0, 65535], "sir i haue conuei'd aboord and i haue bought the": [0, 65535], "i haue conuei'd aboord and i haue bought the oyle": [0, 65535], "haue conuei'd aboord and i haue bought the oyle the": [0, 65535], "conuei'd aboord and i haue bought the oyle the balsamum": [0, 65535], "aboord and i haue bought the oyle the balsamum and": [0, 65535], "and i haue bought the oyle the balsamum and aqua": [0, 65535], "i haue bought the oyle the balsamum and aqua vit\u00e6": [0, 65535], "haue bought the oyle the balsamum and aqua vit\u00e6 the": [0, 65535], "bought the oyle the balsamum and aqua vit\u00e6 the ship": [0, 65535], "the oyle the balsamum and aqua vit\u00e6 the ship is": [0, 65535], "oyle the balsamum and aqua vit\u00e6 the ship is in": [0, 65535], "the balsamum and aqua vit\u00e6 the ship is in her": [0, 65535], "balsamum and aqua vit\u00e6 the ship is in her trim": [0, 65535], "and aqua vit\u00e6 the ship is in her trim the": [0, 65535], "aqua vit\u00e6 the ship is in her trim the merrie": [0, 65535], "vit\u00e6 the ship is in her trim the merrie winde": [0, 65535], "the ship is in her trim the merrie winde blowes": [0, 65535], "ship is in her trim the merrie winde blowes faire": [0, 65535], "is in her trim the merrie winde blowes faire from": [0, 65535], "in her trim the merrie winde blowes faire from land": [0, 65535], "her trim the merrie winde blowes faire from land they": [0, 65535], "trim the merrie winde blowes faire from land they stay": [0, 65535], "the merrie winde blowes faire from land they stay for": [0, 65535], "merrie winde blowes faire from land they stay for nought": [0, 65535], "winde blowes faire from land they stay for nought at": [0, 65535], "blowes faire from land they stay for nought at all": [0, 65535], "faire from land they stay for nought at all but": [0, 65535], "from land they stay for nought at all but for": [0, 65535], "land they stay for nought at all but for their": [0, 65535], "they stay for nought at all but for their owner": [0, 65535], "stay for nought at all but for their owner master": [0, 65535], "for nought at all but for their owner master and": [0, 65535], "nought at all but for their owner master and your": [0, 65535], "at all but for their owner master and your selfe": [0, 65535], "all but for their owner master and your selfe an": [0, 65535], "but for their owner master and your selfe an how": [0, 65535], "for their owner master and your selfe an how now": [0, 65535], "their owner master and your selfe an how now a": [0, 65535], "owner master and your selfe an how now a madman": [0, 65535], "master and your selfe an how now a madman why": [0, 65535], "and your selfe an how now a madman why thou": [0, 65535], "your selfe an how now a madman why thou peeuish": [0, 65535], "selfe an how now a madman why thou peeuish sheep": [0, 65535], "an how now a madman why thou peeuish sheep what": [0, 65535], "how now a madman why thou peeuish sheep what ship": [0, 65535], "now a madman why thou peeuish sheep what ship of": [0, 65535], "a madman why thou peeuish sheep what ship of epidamium": [0, 65535], "madman why thou peeuish sheep what ship of epidamium staies": [0, 65535], "why thou peeuish sheep what ship of epidamium staies for": [0, 65535], "thou peeuish sheep what ship of epidamium staies for me": [0, 65535], "peeuish sheep what ship of epidamium staies for me s": [0, 65535], "sheep what ship of epidamium staies for me s dro": [0, 65535], "what ship of epidamium staies for me s dro a": [0, 65535], "ship of epidamium staies for me s dro a ship": [0, 65535], "of epidamium staies for me s dro a ship you": [0, 65535], "epidamium staies for me s dro a ship you sent": [0, 65535], "staies for me s dro a ship you sent me": [0, 65535], "for me s dro a ship you sent me too": [0, 65535], "me s dro a ship you sent me too to": [0, 65535], "s dro a ship you sent me too to hier": [0, 65535], "dro a ship you sent me too to hier waftage": [0, 65535], "a ship you sent me too to hier waftage ant": [0, 65535], "ship you sent me too to hier waftage ant thou": [0, 65535], "you sent me too to hier waftage ant thou drunken": [0, 65535], "sent me too to hier waftage ant thou drunken slaue": [0, 65535], "me too to hier waftage ant thou drunken slaue i": [0, 65535], "too to hier waftage ant thou drunken slaue i sent": [0, 65535], "to hier waftage ant thou drunken slaue i sent thee": [0, 65535], "hier waftage ant thou drunken slaue i sent thee for": [0, 65535], "waftage ant thou drunken slaue i sent thee for a": [0, 65535], "ant thou drunken slaue i sent thee for a rope": [0, 65535], "thou drunken slaue i sent thee for a rope and": [0, 65535], "drunken slaue i sent thee for a rope and told": [0, 65535], "slaue i sent thee for a rope and told thee": [0, 65535], "i sent thee for a rope and told thee to": [0, 65535], "sent thee for a rope and told thee to what": [0, 65535], "thee for a rope and told thee to what purpose": [0, 65535], "for a rope and told thee to what purpose and": [0, 65535], "a rope and told thee to what purpose and what": [0, 65535], "rope and told thee to what purpose and what end": [0, 65535], "and told thee to what purpose and what end s": [0, 65535], "told thee to what purpose and what end s dro": [0, 65535], "thee to what purpose and what end s dro you": [0, 65535], "to what purpose and what end s dro you sent": [0, 65535], "what purpose and what end s dro you sent me": [0, 65535], "purpose and what end s dro you sent me for": [0, 65535], "and what end s dro you sent me for a": [0, 65535], "what end s dro you sent me for a ropes": [0, 65535], "end s dro you sent me for a ropes end": [0, 65535], "s dro you sent me for a ropes end as": [0, 65535], "dro you sent me for a ropes end as soone": [0, 65535], "you sent me for a ropes end as soone you": [0, 65535], "sent me for a ropes end as soone you sent": [0, 65535], "me for a ropes end as soone you sent me": [0, 65535], "for a ropes end as soone you sent me to": [0, 65535], "a ropes end as soone you sent me to the": [0, 65535], "ropes end as soone you sent me to the bay": [0, 65535], "end as soone you sent me to the bay sir": [0, 65535], "as soone you sent me to the bay sir for": [0, 65535], "soone you sent me to the bay sir for a": [0, 65535], "you sent me to the bay sir for a barke": [0, 65535], "sent me to the bay sir for a barke ant": [0, 65535], "me to the bay sir for a barke ant i": [0, 65535], "to the bay sir for a barke ant i will": [0, 65535], "the bay sir for a barke ant i will debate": [0, 65535], "bay sir for a barke ant i will debate this": [0, 65535], "sir for a barke ant i will debate this matter": [0, 65535], "for a barke ant i will debate this matter at": [0, 65535], "a barke ant i will debate this matter at more": [0, 65535], "barke ant i will debate this matter at more leisure": [0, 65535], "ant i will debate this matter at more leisure and": [0, 65535], "i will debate this matter at more leisure and teach": [0, 65535], "will debate this matter at more leisure and teach your": [0, 65535], "debate this matter at more leisure and teach your eares": [0, 65535], "this matter at more leisure and teach your eares to": [0, 65535], "matter at more leisure and teach your eares to list": [0, 65535], "at more leisure and teach your eares to list me": [0, 65535], "more leisure and teach your eares to list me with": [0, 65535], "leisure and teach your eares to list me with more": [0, 65535], "and teach your eares to list me with more heede": [0, 65535], "teach your eares to list me with more heede to": [0, 65535], "your eares to list me with more heede to adriana": [0, 65535], "eares to list me with more heede to adriana villaine": [0, 65535], "to list me with more heede to adriana villaine hie": [0, 65535], "list me with more heede to adriana villaine hie thee": [0, 65535], "me with more heede to adriana villaine hie thee straight": [0, 65535], "with more heede to adriana villaine hie thee straight giue": [0, 65535], "more heede to adriana villaine hie thee straight giue her": [0, 65535], "heede to adriana villaine hie thee straight giue her this": [0, 65535], "to adriana villaine hie thee straight giue her this key": [0, 65535], "adriana villaine hie thee straight giue her this key and": [0, 65535], "villaine hie thee straight giue her this key and tell": [0, 65535], "hie thee straight giue her this key and tell her": [0, 65535], "thee straight giue her this key and tell her in": [0, 65535], "straight giue her this key and tell her in the": [0, 65535], "giue her this key and tell her in the deske": [0, 65535], "her this key and tell her in the deske that's": [0, 65535], "this key and tell her in the deske that's couer'd": [0, 65535], "key and tell her in the deske that's couer'd o're": [0, 65535], "and tell her in the deske that's couer'd o're with": [0, 65535], "tell her in the deske that's couer'd o're with turkish": [0, 65535], "her in the deske that's couer'd o're with turkish tapistrie": [0, 65535], "in the deske that's couer'd o're with turkish tapistrie there": [0, 65535], "the deske that's couer'd o're with turkish tapistrie there is": [0, 65535], "deske that's couer'd o're with turkish tapistrie there is a": [0, 65535], "that's couer'd o're with turkish tapistrie there is a purse": [0, 65535], "couer'd o're with turkish tapistrie there is a purse of": [0, 65535], "o're with turkish tapistrie there is a purse of duckets": [0, 65535], "with turkish tapistrie there is a purse of duckets let": [0, 65535], "turkish tapistrie there is a purse of duckets let her": [0, 65535], "tapistrie there is a purse of duckets let her send": [0, 65535], "there is a purse of duckets let her send it": [0, 65535], "is a purse of duckets let her send it tell": [0, 65535], "a purse of duckets let her send it tell her": [0, 65535], "purse of duckets let her send it tell her i": [0, 65535], "of duckets let her send it tell her i am": [0, 65535], "duckets let her send it tell her i am arrested": [0, 65535], "let her send it tell her i am arrested in": [0, 65535], "her send it tell her i am arrested in the": [0, 65535], "send it tell her i am arrested in the streete": [0, 65535], "it tell her i am arrested in the streete and": [0, 65535], "tell her i am arrested in the streete and that": [0, 65535], "her i am arrested in the streete and that shall": [0, 65535], "i am arrested in the streete and that shall baile": [0, 65535], "am arrested in the streete and that shall baile me": [0, 65535], "arrested in the streete and that shall baile me hie": [0, 65535], "in the streete and that shall baile me hie thee": [0, 65535], "the streete and that shall baile me hie thee slaue": [0, 65535], "streete and that shall baile me hie thee slaue be": [0, 65535], "and that shall baile me hie thee slaue be gone": [0, 65535], "that shall baile me hie thee slaue be gone on": [0, 65535], "shall baile me hie thee slaue be gone on officer": [0, 65535], "baile me hie thee slaue be gone on officer to": [0, 65535], "me hie thee slaue be gone on officer to prison": [0, 65535], "hie thee slaue be gone on officer to prison till": [0, 65535], "thee slaue be gone on officer to prison till it": [0, 65535], "slaue be gone on officer to prison till it come": [0, 65535], "be gone on officer to prison till it come exeunt": [0, 65535], "gone on officer to prison till it come exeunt s": [0, 65535], "on officer to prison till it come exeunt s dromio": [0, 65535], "officer to prison till it come exeunt s dromio to": [0, 65535], "to prison till it come exeunt s dromio to adriana": [0, 65535], "prison till it come exeunt s dromio to adriana that": [0, 65535], "till it come exeunt s dromio to adriana that is": [0, 65535], "it come exeunt s dromio to adriana that is where": [0, 65535], "come exeunt s dromio to adriana that is where we": [0, 65535], "exeunt s dromio to adriana that is where we din'd": [0, 65535], "s dromio to adriana that is where we din'd where": [0, 65535], "dromio to adriana that is where we din'd where dowsabell": [0, 65535], "to adriana that is where we din'd where dowsabell did": [0, 65535], "adriana that is where we din'd where dowsabell did claime": [0, 65535], "that is where we din'd where dowsabell did claime me": [0, 65535], "is where we din'd where dowsabell did claime me for": [0, 65535], "where we din'd where dowsabell did claime me for her": [0, 65535], "we din'd where dowsabell did claime me for her husband": [0, 65535], "din'd where dowsabell did claime me for her husband she": [0, 65535], "where dowsabell did claime me for her husband she is": [0, 65535], "dowsabell did claime me for her husband she is too": [0, 65535], "did claime me for her husband she is too bigge": [0, 65535], "claime me for her husband she is too bigge i": [0, 65535], "me for her husband she is too bigge i hope": [0, 65535], "for her husband she is too bigge i hope for": [0, 65535], "her husband she is too bigge i hope for me": [0, 65535], "husband she is too bigge i hope for me to": [0, 65535], "she is too bigge i hope for me to compasse": [0, 65535], "is too bigge i hope for me to compasse thither": [0, 65535], "too bigge i hope for me to compasse thither i": [0, 65535], "bigge i hope for me to compasse thither i must": [0, 65535], "i hope for me to compasse thither i must although": [0, 65535], "hope for me to compasse thither i must although against": [0, 65535], "for me to compasse thither i must although against my": [0, 65535], "me to compasse thither i must although against my will": [0, 65535], "to compasse thither i must although against my will for": [0, 65535], "compasse thither i must although against my will for seruants": [0, 65535], "thither i must although against my will for seruants must": [0, 65535], "i must although against my will for seruants must their": [0, 65535], "must although against my will for seruants must their masters": [0, 65535], "although against my will for seruants must their masters mindes": [0, 65535], "against my will for seruants must their masters mindes fulfill": [0, 65535], "my will for seruants must their masters mindes fulfill exit": [0, 65535], "will for seruants must their masters mindes fulfill exit enter": [0, 65535], "for seruants must their masters mindes fulfill exit enter adriana": [0, 65535], "seruants must their masters mindes fulfill exit enter adriana and": [0, 65535], "must their masters mindes fulfill exit enter adriana and luciana": [0, 65535], "their masters mindes fulfill exit enter adriana and luciana adr": [0, 65535], "masters mindes fulfill exit enter adriana and luciana adr ah": [0, 65535], "mindes fulfill exit enter adriana and luciana adr ah luciana": [0, 65535], "fulfill exit enter adriana and luciana adr ah luciana did": [0, 65535], "exit enter adriana and luciana adr ah luciana did he": [0, 65535], "enter adriana and luciana adr ah luciana did he tempt": [0, 65535], "adriana and luciana adr ah luciana did he tempt thee": [0, 65535], "and luciana adr ah luciana did he tempt thee so": [0, 65535], "luciana adr ah luciana did he tempt thee so might'st": [0, 65535], "adr ah luciana did he tempt thee so might'st thou": [0, 65535], "ah luciana did he tempt thee so might'st thou perceiue": [0, 65535], "luciana did he tempt thee so might'st thou perceiue austeerely": [0, 65535], "did he tempt thee so might'st thou perceiue austeerely in": [0, 65535], "he tempt thee so might'st thou perceiue austeerely in his": [0, 65535], "tempt thee so might'st thou perceiue austeerely in his eie": [0, 65535], "thee so might'st thou perceiue austeerely in his eie that": [0, 65535], "so might'st thou perceiue austeerely in his eie that he": [0, 65535], "might'st thou perceiue austeerely in his eie that he did": [0, 65535], "thou perceiue austeerely in his eie that he did plead": [0, 65535], "perceiue austeerely in his eie that he did plead in": [0, 65535], "austeerely in his eie that he did plead in earnest": [0, 65535], "in his eie that he did plead in earnest yea": [0, 65535], "his eie that he did plead in earnest yea or": [0, 65535], "eie that he did plead in earnest yea or no": [0, 65535], "that he did plead in earnest yea or no look'd": [0, 65535], "he did plead in earnest yea or no look'd he": [0, 65535], "did plead in earnest yea or no look'd he or": [0, 65535], "plead in earnest yea or no look'd he or red": [0, 65535], "in earnest yea or no look'd he or red or": [0, 65535], "earnest yea or no look'd he or red or pale": [0, 65535], "yea or no look'd he or red or pale or": [0, 65535], "or no look'd he or red or pale or sad": [0, 65535], "no look'd he or red or pale or sad or": [0, 65535], "look'd he or red or pale or sad or merrily": [0, 65535], "he or red or pale or sad or merrily what": [0, 65535], "or red or pale or sad or merrily what obseruation": [0, 65535], "red or pale or sad or merrily what obseruation mad'st": [0, 65535], "or pale or sad or merrily what obseruation mad'st thou": [0, 65535], "pale or sad or merrily what obseruation mad'st thou in": [0, 65535], "or sad or merrily what obseruation mad'st thou in this": [0, 65535], "sad or merrily what obseruation mad'st thou in this case": [0, 65535], "or merrily what obseruation mad'st thou in this case oh": [0, 65535], "merrily what obseruation mad'st thou in this case oh his": [0, 65535], "what obseruation mad'st thou in this case oh his hearts": [0, 65535], "obseruation mad'st thou in this case oh his hearts meteors": [0, 65535], "mad'st thou in this case oh his hearts meteors tilting": [0, 65535], "thou in this case oh his hearts meteors tilting in": [0, 65535], "in this case oh his hearts meteors tilting in his": [0, 65535], "this case oh his hearts meteors tilting in his face": [0, 65535], "case oh his hearts meteors tilting in his face luc": [0, 65535], "oh his hearts meteors tilting in his face luc first": [0, 65535], "his hearts meteors tilting in his face luc first he": [0, 65535], "hearts meteors tilting in his face luc first he deni'de": [0, 65535], "meteors tilting in his face luc first he deni'de you": [0, 65535], "tilting in his face luc first he deni'de you had": [0, 65535], "in his face luc first he deni'de you had in": [0, 65535], "his face luc first he deni'de you had in him": [0, 65535], "face luc first he deni'de you had in him no": [0, 65535], "luc first he deni'de you had in him no right": [0, 65535], "first he deni'de you had in him no right adr": [0, 65535], "he deni'de you had in him no right adr he": [0, 65535], "deni'de you had in him no right adr he meant": [0, 65535], "you had in him no right adr he meant he": [0, 65535], "had in him no right adr he meant he did": [0, 65535], "in him no right adr he meant he did me": [0, 65535], "him no right adr he meant he did me none": [0, 65535], "no right adr he meant he did me none the": [0, 65535], "right adr he meant he did me none the more": [0, 65535], "adr he meant he did me none the more my": [0, 65535], "he meant he did me none the more my spight": [0, 65535], "meant he did me none the more my spight luc": [0, 65535], "he did me none the more my spight luc then": [0, 65535], "did me none the more my spight luc then swore": [0, 65535], "me none the more my spight luc then swore he": [0, 65535], "none the more my spight luc then swore he that": [0, 65535], "the more my spight luc then swore he that he": [0, 65535], "more my spight luc then swore he that he was": [0, 65535], "my spight luc then swore he that he was a": [0, 65535], "spight luc then swore he that he was a stranger": [0, 65535], "luc then swore he that he was a stranger heere": [0, 65535], "then swore he that he was a stranger heere adr": [0, 65535], "swore he that he was a stranger heere adr and": [0, 65535], "he that he was a stranger heere adr and true": [0, 65535], "that he was a stranger heere adr and true he": [0, 65535], "he was a stranger heere adr and true he swore": [0, 65535], "was a stranger heere adr and true he swore though": [0, 65535], "a stranger heere adr and true he swore though yet": [0, 65535], "stranger heere adr and true he swore though yet forsworne": [0, 65535], "heere adr and true he swore though yet forsworne hee": [0, 65535], "adr and true he swore though yet forsworne hee were": [0, 65535], "and true he swore though yet forsworne hee were luc": [0, 65535], "true he swore though yet forsworne hee were luc then": [0, 65535], "he swore though yet forsworne hee were luc then pleaded": [0, 65535], "swore though yet forsworne hee were luc then pleaded i": [0, 65535], "though yet forsworne hee were luc then pleaded i for": [0, 65535], "yet forsworne hee were luc then pleaded i for you": [0, 65535], "forsworne hee were luc then pleaded i for you adr": [0, 65535], "hee were luc then pleaded i for you adr and": [0, 65535], "were luc then pleaded i for you adr and what": [0, 65535], "luc then pleaded i for you adr and what said": [0, 65535], "then pleaded i for you adr and what said he": [0, 65535], "pleaded i for you adr and what said he luc": [0, 65535], "i for you adr and what said he luc that": [0, 65535], "for you adr and what said he luc that loue": [0, 65535], "you adr and what said he luc that loue i": [0, 65535], "adr and what said he luc that loue i begg'd": [0, 65535], "and what said he luc that loue i begg'd for": [0, 65535], "what said he luc that loue i begg'd for you": [0, 65535], "said he luc that loue i begg'd for you he": [0, 65535], "he luc that loue i begg'd for you he begg'd": [0, 65535], "luc that loue i begg'd for you he begg'd of": [0, 65535], "that loue i begg'd for you he begg'd of me": [0, 65535], "loue i begg'd for you he begg'd of me adr": [0, 65535], "i begg'd for you he begg'd of me adr with": [0, 65535], "begg'd for you he begg'd of me adr with what": [0, 65535], "for you he begg'd of me adr with what perswasion": [0, 65535], "you he begg'd of me adr with what perswasion did": [0, 65535], "he begg'd of me adr with what perswasion did he": [0, 65535], "begg'd of me adr with what perswasion did he tempt": [0, 65535], "of me adr with what perswasion did he tempt thy": [0, 65535], "me adr with what perswasion did he tempt thy loue": [0, 65535], "adr with what perswasion did he tempt thy loue luc": [0, 65535], "with what perswasion did he tempt thy loue luc with": [0, 65535], "what perswasion did he tempt thy loue luc with words": [0, 65535], "perswasion did he tempt thy loue luc with words that": [0, 65535], "did he tempt thy loue luc with words that in": [0, 65535], "he tempt thy loue luc with words that in an": [0, 65535], "tempt thy loue luc with words that in an honest": [0, 65535], "thy loue luc with words that in an honest suit": [0, 65535], "loue luc with words that in an honest suit might": [0, 65535], "luc with words that in an honest suit might moue": [0, 65535], "with words that in an honest suit might moue first": [0, 65535], "words that in an honest suit might moue first he": [0, 65535], "that in an honest suit might moue first he did": [0, 65535], "in an honest suit might moue first he did praise": [0, 65535], "an honest suit might moue first he did praise my": [0, 65535], "honest suit might moue first he did praise my beautie": [0, 65535], "suit might moue first he did praise my beautie then": [0, 65535], "might moue first he did praise my beautie then my": [0, 65535], "moue first he did praise my beautie then my speech": [0, 65535], "first he did praise my beautie then my speech adr": [0, 65535], "he did praise my beautie then my speech adr did'st": [0, 65535], "did praise my beautie then my speech adr did'st speake": [0, 65535], "praise my beautie then my speech adr did'st speake him": [0, 65535], "my beautie then my speech adr did'st speake him faire": [0, 65535], "beautie then my speech adr did'st speake him faire luc": [0, 65535], "then my speech adr did'st speake him faire luc haue": [0, 65535], "my speech adr did'st speake him faire luc haue patience": [0, 65535], "speech adr did'st speake him faire luc haue patience i": [0, 65535], "adr did'st speake him faire luc haue patience i beseech": [0, 65535], "did'st speake him faire luc haue patience i beseech adr": [0, 65535], "speake him faire luc haue patience i beseech adr i": [0, 65535], "him faire luc haue patience i beseech adr i cannot": [0, 65535], "faire luc haue patience i beseech adr i cannot nor": [0, 65535], "luc haue patience i beseech adr i cannot nor i": [0, 65535], "haue patience i beseech adr i cannot nor i will": [0, 65535], "patience i beseech adr i cannot nor i will not": [0, 65535], "i beseech adr i cannot nor i will not hold": [0, 65535], "beseech adr i cannot nor i will not hold me": [0, 65535], "adr i cannot nor i will not hold me still": [0, 65535], "i cannot nor i will not hold me still my": [0, 65535], "cannot nor i will not hold me still my tongue": [0, 65535], "nor i will not hold me still my tongue though": [0, 65535], "i will not hold me still my tongue though not": [0, 65535], "will not hold me still my tongue though not my": [0, 65535], "not hold me still my tongue though not my heart": [0, 65535], "hold me still my tongue though not my heart shall": [0, 65535], "me still my tongue though not my heart shall haue": [0, 65535], "still my tongue though not my heart shall haue his": [0, 65535], "my tongue though not my heart shall haue his will": [0, 65535], "tongue though not my heart shall haue his will he": [0, 65535], "though not my heart shall haue his will he is": [0, 65535], "not my heart shall haue his will he is deformed": [0, 65535], "my heart shall haue his will he is deformed crooked": [0, 65535], "heart shall haue his will he is deformed crooked old": [0, 65535], "shall haue his will he is deformed crooked old and": [0, 65535], "haue his will he is deformed crooked old and sere": [0, 65535], "his will he is deformed crooked old and sere ill": [0, 65535], "will he is deformed crooked old and sere ill fac'd": [0, 65535], "he is deformed crooked old and sere ill fac'd worse": [0, 65535], "is deformed crooked old and sere ill fac'd worse bodied": [0, 65535], "deformed crooked old and sere ill fac'd worse bodied shapelesse": [0, 65535], "crooked old and sere ill fac'd worse bodied shapelesse euery": [0, 65535], "old and sere ill fac'd worse bodied shapelesse euery where": [0, 65535], "and sere ill fac'd worse bodied shapelesse euery where vicious": [0, 65535], "sere ill fac'd worse bodied shapelesse euery where vicious vngentle": [0, 65535], "ill fac'd worse bodied shapelesse euery where vicious vngentle foolish": [0, 65535], "fac'd worse bodied shapelesse euery where vicious vngentle foolish blunt": [0, 65535], "worse bodied shapelesse euery where vicious vngentle foolish blunt vnkinde": [0, 65535], "bodied shapelesse euery where vicious vngentle foolish blunt vnkinde stigmaticall": [0, 65535], "shapelesse euery where vicious vngentle foolish blunt vnkinde stigmaticall in": [0, 65535], "euery where vicious vngentle foolish blunt vnkinde stigmaticall in making": [0, 65535], "where vicious vngentle foolish blunt vnkinde stigmaticall in making worse": [0, 65535], "vicious vngentle foolish blunt vnkinde stigmaticall in making worse in": [0, 65535], "vngentle foolish blunt vnkinde stigmaticall in making worse in minde": [0, 65535], "foolish blunt vnkinde stigmaticall in making worse in minde luc": [0, 65535], "blunt vnkinde stigmaticall in making worse in minde luc who": [0, 65535], "vnkinde stigmaticall in making worse in minde luc who would": [0, 65535], "stigmaticall in making worse in minde luc who would be": [0, 65535], "in making worse in minde luc who would be iealous": [0, 65535], "making worse in minde luc who would be iealous then": [0, 65535], "worse in minde luc who would be iealous then of": [0, 65535], "in minde luc who would be iealous then of such": [0, 65535], "minde luc who would be iealous then of such a": [0, 65535], "luc who would be iealous then of such a one": [0, 65535], "who would be iealous then of such a one no": [0, 65535], "would be iealous then of such a one no euill": [0, 65535], "be iealous then of such a one no euill lost": [0, 65535], "iealous then of such a one no euill lost is": [0, 65535], "then of such a one no euill lost is wail'd": [0, 65535], "of such a one no euill lost is wail'd when": [0, 65535], "such a one no euill lost is wail'd when it": [0, 65535], "a one no euill lost is wail'd when it is": [0, 65535], "one no euill lost is wail'd when it is gone": [0, 65535], "no euill lost is wail'd when it is gone adr": [0, 65535], "euill lost is wail'd when it is gone adr ah": [0, 65535], "lost is wail'd when it is gone adr ah but": [0, 65535], "is wail'd when it is gone adr ah but i": [0, 65535], "wail'd when it is gone adr ah but i thinke": [0, 65535], "when it is gone adr ah but i thinke him": [0, 65535], "it is gone adr ah but i thinke him better": [0, 65535], "is gone adr ah but i thinke him better then": [0, 65535], "gone adr ah but i thinke him better then i": [0, 65535], "adr ah but i thinke him better then i say": [0, 65535], "ah but i thinke him better then i say and": [0, 65535], "but i thinke him better then i say and yet": [0, 65535], "i thinke him better then i say and yet would": [0, 65535], "thinke him better then i say and yet would herein": [0, 65535], "him better then i say and yet would herein others": [0, 65535], "better then i say and yet would herein others eies": [0, 65535], "then i say and yet would herein others eies were": [0, 65535], "i say and yet would herein others eies were worse": [0, 65535], "say and yet would herein others eies were worse farre": [0, 65535], "and yet would herein others eies were worse farre from": [0, 65535], "yet would herein others eies were worse farre from her": [0, 65535], "would herein others eies were worse farre from her nest": [0, 65535], "herein others eies were worse farre from her nest the": [0, 65535], "others eies were worse farre from her nest the lapwing": [0, 65535], "eies were worse farre from her nest the lapwing cries": [0, 65535], "were worse farre from her nest the lapwing cries away": [0, 65535], "worse farre from her nest the lapwing cries away my": [0, 65535], "farre from her nest the lapwing cries away my heart": [0, 65535], "from her nest the lapwing cries away my heart praies": [0, 65535], "her nest the lapwing cries away my heart praies for": [0, 65535], "nest the lapwing cries away my heart praies for him": [0, 65535], "the lapwing cries away my heart praies for him though": [0, 65535], "lapwing cries away my heart praies for him though my": [0, 65535], "cries away my heart praies for him though my tongue": [0, 65535], "away my heart praies for him though my tongue doe": [0, 65535], "my heart praies for him though my tongue doe curse": [0, 65535], "heart praies for him though my tongue doe curse enter": [0, 65535], "praies for him though my tongue doe curse enter s": [0, 65535], "for him though my tongue doe curse enter s dromio": [0, 65535], "him though my tongue doe curse enter s dromio dro": [0, 65535], "though my tongue doe curse enter s dromio dro here": [0, 65535], "my tongue doe curse enter s dromio dro here goe": [0, 65535], "tongue doe curse enter s dromio dro here goe the": [0, 65535], "doe curse enter s dromio dro here goe the deske": [0, 65535], "curse enter s dromio dro here goe the deske the": [0, 65535], "enter s dromio dro here goe the deske the purse": [0, 65535], "s dromio dro here goe the deske the purse sweet": [0, 65535], "dromio dro here goe the deske the purse sweet now": [0, 65535], "dro here goe the deske the purse sweet now make": [0, 65535], "here goe the deske the purse sweet now make haste": [0, 65535], "goe the deske the purse sweet now make haste luc": [0, 65535], "the deske the purse sweet now make haste luc how": [0, 65535], "deske the purse sweet now make haste luc how hast": [0, 65535], "the purse sweet now make haste luc how hast thou": [0, 65535], "purse sweet now make haste luc how hast thou lost": [0, 65535], "sweet now make haste luc how hast thou lost thy": [0, 65535], "now make haste luc how hast thou lost thy breath": [0, 65535], "make haste luc how hast thou lost thy breath s": [0, 65535], "haste luc how hast thou lost thy breath s dro": [0, 65535], "luc how hast thou lost thy breath s dro by": [0, 65535], "how hast thou lost thy breath s dro by running": [0, 65535], "hast thou lost thy breath s dro by running fast": [0, 65535], "thou lost thy breath s dro by running fast adr": [0, 65535], "lost thy breath s dro by running fast adr where": [0, 65535], "thy breath s dro by running fast adr where is": [0, 65535], "breath s dro by running fast adr where is thy": [0, 65535], "s dro by running fast adr where is thy master": [0, 65535], "dro by running fast adr where is thy master dromio": [0, 65535], "by running fast adr where is thy master dromio is": [0, 65535], "running fast adr where is thy master dromio is he": [0, 65535], "fast adr where is thy master dromio is he well": [0, 65535], "adr where is thy master dromio is he well s": [0, 65535], "where is thy master dromio is he well s dro": [0, 65535], "is thy master dromio is he well s dro no": [0, 65535], "thy master dromio is he well s dro no he's": [0, 65535], "master dromio is he well s dro no he's in": [0, 65535], "dromio is he well s dro no he's in tartar": [0, 65535], "is he well s dro no he's in tartar limbo": [0, 65535], "he well s dro no he's in tartar limbo worse": [0, 65535], "well s dro no he's in tartar limbo worse then": [0, 65535], "s dro no he's in tartar limbo worse then hell": [0, 65535], "dro no he's in tartar limbo worse then hell a": [0, 65535], "no he's in tartar limbo worse then hell a diuell": [0, 65535], "he's in tartar limbo worse then hell a diuell in": [0, 65535], "in tartar limbo worse then hell a diuell in an": [0, 65535], "tartar limbo worse then hell a diuell in an euerlasting": [0, 65535], "limbo worse then hell a diuell in an euerlasting garment": [0, 65535], "worse then hell a diuell in an euerlasting garment hath": [0, 65535], "then hell a diuell in an euerlasting garment hath him": [0, 65535], "hell a diuell in an euerlasting garment hath him on": [0, 65535], "a diuell in an euerlasting garment hath him on whose": [0, 65535], "diuell in an euerlasting garment hath him on whose hard": [0, 65535], "in an euerlasting garment hath him on whose hard heart": [0, 65535], "an euerlasting garment hath him on whose hard heart is": [0, 65535], "euerlasting garment hath him on whose hard heart is button'd": [0, 65535], "garment hath him on whose hard heart is button'd vp": [0, 65535], "hath him on whose hard heart is button'd vp with": [0, 65535], "him on whose hard heart is button'd vp with steele": [0, 65535], "on whose hard heart is button'd vp with steele a": [0, 65535], "whose hard heart is button'd vp with steele a feind": [0, 65535], "hard heart is button'd vp with steele a feind a": [0, 65535], "heart is button'd vp with steele a feind a fairie": [0, 65535], "is button'd vp with steele a feind a fairie pittilesse": [0, 65535], "button'd vp with steele a feind a fairie pittilesse and": [0, 65535], "vp with steele a feind a fairie pittilesse and ruffe": [0, 65535], "with steele a feind a fairie pittilesse and ruffe a": [0, 65535], "steele a feind a fairie pittilesse and ruffe a wolfe": [0, 65535], "a feind a fairie pittilesse and ruffe a wolfe nay": [0, 65535], "feind a fairie pittilesse and ruffe a wolfe nay worse": [0, 65535], "a fairie pittilesse and ruffe a wolfe nay worse a": [0, 65535], "fairie pittilesse and ruffe a wolfe nay worse a fellow": [0, 65535], "pittilesse and ruffe a wolfe nay worse a fellow all": [0, 65535], "and ruffe a wolfe nay worse a fellow all in": [0, 65535], "ruffe a wolfe nay worse a fellow all in buffe": [0, 65535], "a wolfe nay worse a fellow all in buffe a": [0, 65535], "wolfe nay worse a fellow all in buffe a back": [0, 65535], "nay worse a fellow all in buffe a back friend": [0, 65535], "worse a fellow all in buffe a back friend a": [0, 65535], "a fellow all in buffe a back friend a shoulder": [0, 65535], "fellow all in buffe a back friend a shoulder clapper": [0, 65535], "all in buffe a back friend a shoulder clapper one": [0, 65535], "in buffe a back friend a shoulder clapper one that": [0, 65535], "buffe a back friend a shoulder clapper one that countermads": [0, 65535], "a back friend a shoulder clapper one that countermads the": [0, 65535], "back friend a shoulder clapper one that countermads the passages": [0, 65535], "friend a shoulder clapper one that countermads the passages of": [0, 65535], "a shoulder clapper one that countermads the passages of allies": [0, 65535], "shoulder clapper one that countermads the passages of allies creekes": [0, 65535], "clapper one that countermads the passages of allies creekes and": [0, 65535], "one that countermads the passages of allies creekes and narrow": [0, 65535], "that countermads the passages of allies creekes and narrow lands": [0, 65535], "countermads the passages of allies creekes and narrow lands a": [0, 65535], "the passages of allies creekes and narrow lands a hound": [0, 65535], "passages of allies creekes and narrow lands a hound that": [0, 65535], "of allies creekes and narrow lands a hound that runs": [0, 65535], "allies creekes and narrow lands a hound that runs counter": [0, 65535], "creekes and narrow lands a hound that runs counter and": [0, 65535], "and narrow lands a hound that runs counter and yet": [0, 65535], "narrow lands a hound that runs counter and yet draws": [0, 65535], "lands a hound that runs counter and yet draws drifoot": [0, 65535], "a hound that runs counter and yet draws drifoot well": [0, 65535], "hound that runs counter and yet draws drifoot well one": [0, 65535], "that runs counter and yet draws drifoot well one that": [0, 65535], "runs counter and yet draws drifoot well one that before": [0, 65535], "counter and yet draws drifoot well one that before the": [0, 65535], "and yet draws drifoot well one that before the iudgment": [0, 65535], "yet draws drifoot well one that before the iudgment carries": [0, 65535], "draws drifoot well one that before the iudgment carries poore": [0, 65535], "drifoot well one that before the iudgment carries poore soules": [0, 65535], "well one that before the iudgment carries poore soules to": [0, 65535], "one that before the iudgment carries poore soules to hel": [0, 65535], "that before the iudgment carries poore soules to hel adr": [0, 65535], "before the iudgment carries poore soules to hel adr why": [0, 65535], "the iudgment carries poore soules to hel adr why man": [0, 65535], "iudgment carries poore soules to hel adr why man what": [0, 65535], "carries poore soules to hel adr why man what is": [0, 65535], "poore soules to hel adr why man what is the": [0, 65535], "soules to hel adr why man what is the matter": [0, 65535], "to hel adr why man what is the matter s": [0, 65535], "hel adr why man what is the matter s dro": [0, 65535], "adr why man what is the matter s dro i": [0, 65535], "why man what is the matter s dro i doe": [0, 65535], "man what is the matter s dro i doe not": [0, 65535], "what is the matter s dro i doe not know": [0, 65535], "is the matter s dro i doe not know the": [0, 65535], "the matter s dro i doe not know the matter": [0, 65535], "matter s dro i doe not know the matter hee": [0, 65535], "s dro i doe not know the matter hee is": [0, 65535], "dro i doe not know the matter hee is rested": [0, 65535], "i doe not know the matter hee is rested on": [0, 65535], "doe not know the matter hee is rested on the": [0, 65535], "not know the matter hee is rested on the case": [0, 65535], "know the matter hee is rested on the case adr": [0, 65535], "the matter hee is rested on the case adr what": [0, 65535], "matter hee is rested on the case adr what is": [0, 65535], "hee is rested on the case adr what is he": [0, 65535], "is rested on the case adr what is he arrested": [0, 65535], "rested on the case adr what is he arrested tell": [0, 65535], "on the case adr what is he arrested tell me": [0, 65535], "the case adr what is he arrested tell me at": [0, 65535], "case adr what is he arrested tell me at whose": [0, 65535], "adr what is he arrested tell me at whose suite": [0, 65535], "what is he arrested tell me at whose suite s": [0, 65535], "is he arrested tell me at whose suite s dro": [0, 65535], "he arrested tell me at whose suite s dro i": [0, 65535], "arrested tell me at whose suite s dro i know": [0, 65535], "tell me at whose suite s dro i know not": [0, 65535], "me at whose suite s dro i know not at": [0, 65535], "at whose suite s dro i know not at whose": [0, 65535], "whose suite s dro i know not at whose suite": [0, 65535], "suite s dro i know not at whose suite he": [0, 65535], "s dro i know not at whose suite he is": [0, 65535], "dro i know not at whose suite he is arested": [0, 65535], "i know not at whose suite he is arested well": [0, 65535], "know not at whose suite he is arested well but": [0, 65535], "not at whose suite he is arested well but is": [0, 65535], "at whose suite he is arested well but is in": [0, 65535], "whose suite he is arested well but is in a": [0, 65535], "suite he is arested well but is in a suite": [0, 65535], "he is arested well but is in a suite of": [0, 65535], "is arested well but is in a suite of buffe": [0, 65535], "arested well but is in a suite of buffe which": [0, 65535], "well but is in a suite of buffe which rested": [0, 65535], "but is in a suite of buffe which rested him": [0, 65535], "is in a suite of buffe which rested him that": [0, 65535], "in a suite of buffe which rested him that can": [0, 65535], "a suite of buffe which rested him that can i": [0, 65535], "suite of buffe which rested him that can i tell": [0, 65535], "of buffe which rested him that can i tell will": [0, 65535], "buffe which rested him that can i tell will you": [0, 65535], "which rested him that can i tell will you send": [0, 65535], "rested him that can i tell will you send him": [0, 65535], "him that can i tell will you send him mistris": [0, 65535], "that can i tell will you send him mistris redemption": [0, 65535], "can i tell will you send him mistris redemption the": [0, 65535], "i tell will you send him mistris redemption the monie": [0, 65535], "tell will you send him mistris redemption the monie in": [0, 65535], "will you send him mistris redemption the monie in his": [0, 65535], "you send him mistris redemption the monie in his deske": [0, 65535], "send him mistris redemption the monie in his deske adr": [0, 65535], "him mistris redemption the monie in his deske adr go": [0, 65535], "mistris redemption the monie in his deske adr go fetch": [0, 65535], "redemption the monie in his deske adr go fetch it": [0, 65535], "the monie in his deske adr go fetch it sister": [0, 65535], "monie in his deske adr go fetch it sister this": [0, 65535], "in his deske adr go fetch it sister this i": [0, 65535], "his deske adr go fetch it sister this i wonder": [0, 65535], "deske adr go fetch it sister this i wonder at": [0, 65535], "adr go fetch it sister this i wonder at exit": [0, 65535], "go fetch it sister this i wonder at exit luciana": [0, 65535], "fetch it sister this i wonder at exit luciana thus": [0, 65535], "it sister this i wonder at exit luciana thus he": [0, 65535], "sister this i wonder at exit luciana thus he vnknowne": [0, 65535], "this i wonder at exit luciana thus he vnknowne to": [0, 65535], "i wonder at exit luciana thus he vnknowne to me": [0, 65535], "wonder at exit luciana thus he vnknowne to me should": [0, 65535], "at exit luciana thus he vnknowne to me should be": [0, 65535], "exit luciana thus he vnknowne to me should be in": [0, 65535], "luciana thus he vnknowne to me should be in debt": [0, 65535], "thus he vnknowne to me should be in debt tell": [0, 65535], "he vnknowne to me should be in debt tell me": [0, 65535], "vnknowne to me should be in debt tell me was": [0, 65535], "to me should be in debt tell me was he": [0, 65535], "me should be in debt tell me was he arested": [0, 65535], "should be in debt tell me was he arested on": [0, 65535], "be in debt tell me was he arested on a": [0, 65535], "in debt tell me was he arested on a band": [0, 65535], "debt tell me was he arested on a band s": [0, 65535], "tell me was he arested on a band s dro": [0, 65535], "me was he arested on a band s dro not": [0, 65535], "was he arested on a band s dro not on": [0, 65535], "he arested on a band s dro not on a": [0, 65535], "arested on a band s dro not on a band": [0, 65535], "on a band s dro not on a band but": [0, 65535], "a band s dro not on a band but on": [0, 65535], "band s dro not on a band but on a": [0, 65535], "s dro not on a band but on a stronger": [0, 65535], "dro not on a band but on a stronger thing": [0, 65535], "not on a band but on a stronger thing a": [0, 65535], "on a band but on a stronger thing a chaine": [0, 65535], "a band but on a stronger thing a chaine a": [0, 65535], "band but on a stronger thing a chaine a chaine": [0, 65535], "but on a stronger thing a chaine a chaine doe": [0, 65535], "on a stronger thing a chaine a chaine doe you": [0, 65535], "a stronger thing a chaine a chaine doe you not": [0, 65535], "stronger thing a chaine a chaine doe you not here": [0, 65535], "thing a chaine a chaine doe you not here it": [0, 65535], "a chaine a chaine doe you not here it ring": [0, 65535], "chaine a chaine doe you not here it ring adria": [0, 65535], "a chaine doe you not here it ring adria what": [0, 65535], "chaine doe you not here it ring adria what the": [0, 65535], "doe you not here it ring adria what the chaine": [0, 65535], "you not here it ring adria what the chaine s": [0, 65535], "not here it ring adria what the chaine s dro": [0, 65535], "here it ring adria what the chaine s dro no": [0, 65535], "it ring adria what the chaine s dro no no": [0, 65535], "ring adria what the chaine s dro no no the": [0, 65535], "adria what the chaine s dro no no the bell": [0, 65535], "what the chaine s dro no no the bell 'tis": [0, 65535], "the chaine s dro no no the bell 'tis time": [0, 65535], "chaine s dro no no the bell 'tis time that": [0, 65535], "s dro no no the bell 'tis time that i": [0, 65535], "dro no no the bell 'tis time that i were": [0, 65535], "no no the bell 'tis time that i were gone": [0, 65535], "no the bell 'tis time that i were gone it": [0, 65535], "the bell 'tis time that i were gone it was": [0, 65535], "bell 'tis time that i were gone it was two": [0, 65535], "'tis time that i were gone it was two ere": [0, 65535], "time that i were gone it was two ere i": [0, 65535], "that i were gone it was two ere i left": [0, 65535], "i were gone it was two ere i left him": [0, 65535], "were gone it was two ere i left him and": [0, 65535], "gone it was two ere i left him and now": [0, 65535], "it was two ere i left him and now the": [0, 65535], "was two ere i left him and now the clocke": [0, 65535], "two ere i left him and now the clocke strikes": [0, 65535], "ere i left him and now the clocke strikes one": [0, 65535], "i left him and now the clocke strikes one adr": [0, 65535], "left him and now the clocke strikes one adr the": [0, 65535], "him and now the clocke strikes one adr the houres": [0, 65535], "and now the clocke strikes one adr the houres come": [0, 65535], "now the clocke strikes one adr the houres come backe": [0, 65535], "the clocke strikes one adr the houres come backe that": [0, 65535], "clocke strikes one adr the houres come backe that did": [0, 65535], "strikes one adr the houres come backe that did i": [0, 65535], "one adr the houres come backe that did i neuer": [0, 65535], "adr the houres come backe that did i neuer here": [0, 65535], "the houres come backe that did i neuer here s": [0, 65535], "houres come backe that did i neuer here s dro": [0, 65535], "come backe that did i neuer here s dro oh": [0, 65535], "backe that did i neuer here s dro oh yes": [0, 65535], "that did i neuer here s dro oh yes if": [0, 65535], "did i neuer here s dro oh yes if any": [0, 65535], "i neuer here s dro oh yes if any houre": [0, 65535], "neuer here s dro oh yes if any houre meete": [0, 65535], "here s dro oh yes if any houre meete a": [0, 65535], "s dro oh yes if any houre meete a serieant": [0, 65535], "dro oh yes if any houre meete a serieant a": [0, 65535], "oh yes if any houre meete a serieant a turnes": [0, 65535], "yes if any houre meete a serieant a turnes backe": [0, 65535], "if any houre meete a serieant a turnes backe for": [0, 65535], "any houre meete a serieant a turnes backe for verie": [0, 65535], "houre meete a serieant a turnes backe for verie feare": [0, 65535], "meete a serieant a turnes backe for verie feare adri": [0, 65535], "a serieant a turnes backe for verie feare adri as": [0, 65535], "serieant a turnes backe for verie feare adri as if": [0, 65535], "a turnes backe for verie feare adri as if time": [0, 65535], "turnes backe for verie feare adri as if time were": [0, 65535], "backe for verie feare adri as if time were in": [0, 65535], "for verie feare adri as if time were in debt": [0, 65535], "verie feare adri as if time were in debt how": [0, 65535], "feare adri as if time were in debt how fondly": [0, 65535], "adri as if time were in debt how fondly do'st": [0, 65535], "as if time were in debt how fondly do'st thou": [0, 65535], "if time were in debt how fondly do'st thou reason": [0, 65535], "time were in debt how fondly do'st thou reason s": [0, 65535], "were in debt how fondly do'st thou reason s dro": [0, 65535], "in debt how fondly do'st thou reason s dro time": [0, 65535], "debt how fondly do'st thou reason s dro time is": [0, 65535], "how fondly do'st thou reason s dro time is a": [0, 65535], "fondly do'st thou reason s dro time is a verie": [0, 65535], "do'st thou reason s dro time is a verie bankerout": [0, 65535], "thou reason s dro time is a verie bankerout and": [0, 65535], "reason s dro time is a verie bankerout and owes": [0, 65535], "s dro time is a verie bankerout and owes more": [0, 65535], "dro time is a verie bankerout and owes more then": [0, 65535], "time is a verie bankerout and owes more then he's": [0, 65535], "is a verie bankerout and owes more then he's worth": [0, 65535], "a verie bankerout and owes more then he's worth to": [0, 65535], "verie bankerout and owes more then he's worth to season": [0, 65535], "bankerout and owes more then he's worth to season nay": [0, 65535], "and owes more then he's worth to season nay he's": [0, 65535], "owes more then he's worth to season nay he's a": [0, 65535], "more then he's worth to season nay he's a theefe": [0, 65535], "then he's worth to season nay he's a theefe too": [0, 65535], "he's worth to season nay he's a theefe too haue": [0, 65535], "worth to season nay he's a theefe too haue you": [0, 65535], "to season nay he's a theefe too haue you not": [0, 65535], "season nay he's a theefe too haue you not heard": [0, 65535], "nay he's a theefe too haue you not heard men": [0, 65535], "he's a theefe too haue you not heard men say": [0, 65535], "a theefe too haue you not heard men say that": [0, 65535], "theefe too haue you not heard men say that time": [0, 65535], "too haue you not heard men say that time comes": [0, 65535], "haue you not heard men say that time comes stealing": [0, 65535], "you not heard men say that time comes stealing on": [0, 65535], "not heard men say that time comes stealing on by": [0, 65535], "heard men say that time comes stealing on by night": [0, 65535], "men say that time comes stealing on by night and": [0, 65535], "say that time comes stealing on by night and day": [0, 65535], "that time comes stealing on by night and day if": [0, 65535], "time comes stealing on by night and day if i": [0, 65535], "comes stealing on by night and day if i be": [0, 65535], "stealing on by night and day if i be in": [0, 65535], "on by night and day if i be in debt": [0, 65535], "by night and day if i be in debt and": [0, 65535], "night and day if i be in debt and theft": [0, 65535], "and day if i be in debt and theft and": [0, 65535], "day if i be in debt and theft and a": [0, 65535], "if i be in debt and theft and a serieant": [0, 65535], "i be in debt and theft and a serieant in": [0, 65535], "be in debt and theft and a serieant in the": [0, 65535], "in debt and theft and a serieant in the way": [0, 65535], "debt and theft and a serieant in the way hath": [0, 65535], "and theft and a serieant in the way hath he": [0, 65535], "theft and a serieant in the way hath he not": [0, 65535], "and a serieant in the way hath he not reason": [0, 65535], "a serieant in the way hath he not reason to": [0, 65535], "serieant in the way hath he not reason to turne": [0, 65535], "in the way hath he not reason to turne backe": [0, 65535], "the way hath he not reason to turne backe an": [0, 65535], "way hath he not reason to turne backe an houre": [0, 65535], "hath he not reason to turne backe an houre in": [0, 65535], "he not reason to turne backe an houre in a": [0, 65535], "not reason to turne backe an houre in a day": [0, 65535], "reason to turne backe an houre in a day enter": [0, 65535], "to turne backe an houre in a day enter luciana": [0, 65535], "turne backe an houre in a day enter luciana adr": [0, 65535], "backe an houre in a day enter luciana adr go": [0, 65535], "an houre in a day enter luciana adr go dromio": [0, 65535], "houre in a day enter luciana adr go dromio there's": [0, 65535], "in a day enter luciana adr go dromio there's the": [0, 65535], "a day enter luciana adr go dromio there's the monie": [0, 65535], "day enter luciana adr go dromio there's the monie beare": [0, 65535], "enter luciana adr go dromio there's the monie beare it": [0, 65535], "luciana adr go dromio there's the monie beare it straight": [0, 65535], "adr go dromio there's the monie beare it straight and": [0, 65535], "go dromio there's the monie beare it straight and bring": [0, 65535], "dromio there's the monie beare it straight and bring thy": [0, 65535], "there's the monie beare it straight and bring thy master": [0, 65535], "the monie beare it straight and bring thy master home": [0, 65535], "monie beare it straight and bring thy master home imediately": [0, 65535], "beare it straight and bring thy master home imediately come": [0, 65535], "it straight and bring thy master home imediately come sister": [0, 65535], "straight and bring thy master home imediately come sister i": [0, 65535], "and bring thy master home imediately come sister i am": [0, 65535], "bring thy master home imediately come sister i am prest": [0, 65535], "thy master home imediately come sister i am prest downe": [0, 65535], "master home imediately come sister i am prest downe with": [0, 65535], "home imediately come sister i am prest downe with conceit": [0, 65535], "imediately come sister i am prest downe with conceit conceit": [0, 65535], "come sister i am prest downe with conceit conceit my": [0, 65535], "sister i am prest downe with conceit conceit my comfort": [0, 65535], "i am prest downe with conceit conceit my comfort and": [0, 65535], "am prest downe with conceit conceit my comfort and my": [0, 65535], "prest downe with conceit conceit my comfort and my iniurie": [0, 65535], "downe with conceit conceit my comfort and my iniurie exit": [0, 65535], "with conceit conceit my comfort and my iniurie exit enter": [0, 65535], "conceit conceit my comfort and my iniurie exit enter antipholus": [0, 65535], "conceit my comfort and my iniurie exit enter antipholus siracusia": [0, 65535], "my comfort and my iniurie exit enter antipholus siracusia there's": [0, 65535], "comfort and my iniurie exit enter antipholus siracusia there's not": [0, 65535], "and my iniurie exit enter antipholus siracusia there's not a": [0, 65535], "my iniurie exit enter antipholus siracusia there's not a man": [0, 65535], "iniurie exit enter antipholus siracusia there's not a man i": [0, 65535], "exit enter antipholus siracusia there's not a man i meete": [0, 65535], "enter antipholus siracusia there's not a man i meete but": [0, 65535], "antipholus siracusia there's not a man i meete but doth": [0, 65535], "siracusia there's not a man i meete but doth salute": [0, 65535], "there's not a man i meete but doth salute me": [0, 65535], "not a man i meete but doth salute me as": [0, 65535], "a man i meete but doth salute me as if": [0, 65535], "man i meete but doth salute me as if i": [0, 65535], "i meete but doth salute me as if i were": [0, 65535], "meete but doth salute me as if i were their": [0, 65535], "but doth salute me as if i were their well": [0, 65535], "doth salute me as if i were their well acquainted": [0, 65535], "salute me as if i were their well acquainted friend": [0, 65535], "me as if i were their well acquainted friend and": [0, 65535], "as if i were their well acquainted friend and euerie": [0, 65535], "if i were their well acquainted friend and euerie one": [0, 65535], "i were their well acquainted friend and euerie one doth": [0, 65535], "were their well acquainted friend and euerie one doth call": [0, 65535], "their well acquainted friend and euerie one doth call me": [0, 65535], "well acquainted friend and euerie one doth call me by": [0, 65535], "acquainted friend and euerie one doth call me by my": [0, 65535], "friend and euerie one doth call me by my name": [0, 65535], "and euerie one doth call me by my name some": [0, 65535], "euerie one doth call me by my name some tender": [0, 65535], "one doth call me by my name some tender monie": [0, 65535], "doth call me by my name some tender monie to": [0, 65535], "call me by my name some tender monie to me": [0, 65535], "me by my name some tender monie to me some": [0, 65535], "by my name some tender monie to me some inuite": [0, 65535], "my name some tender monie to me some inuite me": [0, 65535], "name some tender monie to me some inuite me some": [0, 65535], "some tender monie to me some inuite me some other": [0, 65535], "tender monie to me some inuite me some other giue": [0, 65535], "monie to me some inuite me some other giue me": [0, 65535], "to me some inuite me some other giue me thankes": [0, 65535], "me some inuite me some other giue me thankes for": [0, 65535], "some inuite me some other giue me thankes for kindnesses": [0, 65535], "inuite me some other giue me thankes for kindnesses some": [0, 65535], "me some other giue me thankes for kindnesses some offer": [0, 65535], "some other giue me thankes for kindnesses some offer me": [0, 65535], "other giue me thankes for kindnesses some offer me commodities": [0, 65535], "giue me thankes for kindnesses some offer me commodities to": [0, 65535], "me thankes for kindnesses some offer me commodities to buy": [0, 65535], "thankes for kindnesses some offer me commodities to buy euen": [0, 65535], "for kindnesses some offer me commodities to buy euen now": [0, 65535], "kindnesses some offer me commodities to buy euen now a": [0, 65535], "some offer me commodities to buy euen now a tailor": [0, 65535], "offer me commodities to buy euen now a tailor cal'd": [0, 65535], "me commodities to buy euen now a tailor cal'd me": [0, 65535], "commodities to buy euen now a tailor cal'd me in": [0, 65535], "to buy euen now a tailor cal'd me in his": [0, 65535], "buy euen now a tailor cal'd me in his shop": [0, 65535], "euen now a tailor cal'd me in his shop and": [0, 65535], "now a tailor cal'd me in his shop and show'd": [0, 65535], "a tailor cal'd me in his shop and show'd me": [0, 65535], "tailor cal'd me in his shop and show'd me silkes": [0, 65535], "cal'd me in his shop and show'd me silkes that": [0, 65535], "me in his shop and show'd me silkes that he": [0, 65535], "in his shop and show'd me silkes that he had": [0, 65535], "his shop and show'd me silkes that he had bought": [0, 65535], "shop and show'd me silkes that he had bought for": [0, 65535], "and show'd me silkes that he had bought for me": [0, 65535], "show'd me silkes that he had bought for me and": [0, 65535], "me silkes that he had bought for me and therewithall": [0, 65535], "silkes that he had bought for me and therewithall tooke": [0, 65535], "that he had bought for me and therewithall tooke measure": [0, 65535], "he had bought for me and therewithall tooke measure of": [0, 65535], "had bought for me and therewithall tooke measure of my": [0, 65535], "bought for me and therewithall tooke measure of my body": [0, 65535], "for me and therewithall tooke measure of my body sure": [0, 65535], "me and therewithall tooke measure of my body sure these": [0, 65535], "and therewithall tooke measure of my body sure these are": [0, 65535], "therewithall tooke measure of my body sure these are but": [0, 65535], "tooke measure of my body sure these are but imaginarie": [0, 65535], "measure of my body sure these are but imaginarie wiles": [0, 65535], "of my body sure these are but imaginarie wiles and": [0, 65535], "my body sure these are but imaginarie wiles and lapland": [0, 65535], "body sure these are but imaginarie wiles and lapland sorcerers": [0, 65535], "sure these are but imaginarie wiles and lapland sorcerers inhabite": [0, 65535], "these are but imaginarie wiles and lapland sorcerers inhabite here": [0, 65535], "are but imaginarie wiles and lapland sorcerers inhabite here enter": [0, 65535], "but imaginarie wiles and lapland sorcerers inhabite here enter dromio": [0, 65535], "imaginarie wiles and lapland sorcerers inhabite here enter dromio sir": [0, 65535], "wiles and lapland sorcerers inhabite here enter dromio sir s": [0, 65535], "and lapland sorcerers inhabite here enter dromio sir s dro": [0, 65535], "lapland sorcerers inhabite here enter dromio sir s dro master": [0, 65535], "sorcerers inhabite here enter dromio sir s dro master here's": [0, 65535], "inhabite here enter dromio sir s dro master here's the": [0, 65535], "here enter dromio sir s dro master here's the gold": [0, 65535], "enter dromio sir s dro master here's the gold you": [0, 65535], "dromio sir s dro master here's the gold you sent": [0, 65535], "sir s dro master here's the gold you sent me": [0, 65535], "s dro master here's the gold you sent me for": [0, 65535], "dro master here's the gold you sent me for what": [0, 65535], "master here's the gold you sent me for what haue": [0, 65535], "here's the gold you sent me for what haue you": [0, 65535], "the gold you sent me for what haue you got": [0, 65535], "gold you sent me for what haue you got the": [0, 65535], "you sent me for what haue you got the picture": [0, 65535], "sent me for what haue you got the picture of": [0, 65535], "me for what haue you got the picture of old": [0, 65535], "for what haue you got the picture of old adam": [0, 65535], "what haue you got the picture of old adam new": [0, 65535], "haue you got the picture of old adam new apparel'd": [0, 65535], "you got the picture of old adam new apparel'd ant": [0, 65535], "got the picture of old adam new apparel'd ant what": [0, 65535], "the picture of old adam new apparel'd ant what gold": [0, 65535], "picture of old adam new apparel'd ant what gold is": [0, 65535], "of old adam new apparel'd ant what gold is this": [0, 65535], "old adam new apparel'd ant what gold is this what": [0, 65535], "adam new apparel'd ant what gold is this what adam": [0, 65535], "new apparel'd ant what gold is this what adam do'st": [0, 65535], "apparel'd ant what gold is this what adam do'st thou": [0, 65535], "ant what gold is this what adam do'st thou meane": [0, 65535], "what gold is this what adam do'st thou meane s": [0, 65535], "gold is this what adam do'st thou meane s dro": [0, 65535], "is this what adam do'st thou meane s dro not": [0, 65535], "this what adam do'st thou meane s dro not that": [0, 65535], "what adam do'st thou meane s dro not that adam": [0, 65535], "adam do'st thou meane s dro not that adam that": [0, 65535], "do'st thou meane s dro not that adam that kept": [0, 65535], "thou meane s dro not that adam that kept the": [0, 65535], "meane s dro not that adam that kept the paradise": [0, 65535], "s dro not that adam that kept the paradise but": [0, 65535], "dro not that adam that kept the paradise but that": [0, 65535], "not that adam that kept the paradise but that adam": [0, 65535], "that adam that kept the paradise but that adam that": [0, 65535], "adam that kept the paradise but that adam that keepes": [0, 65535], "that kept the paradise but that adam that keepes the": [0, 65535], "kept the paradise but that adam that keepes the prison": [0, 65535], "the paradise but that adam that keepes the prison hee": [0, 65535], "paradise but that adam that keepes the prison hee that": [0, 65535], "but that adam that keepes the prison hee that goes": [0, 65535], "that adam that keepes the prison hee that goes in": [0, 65535], "adam that keepes the prison hee that goes in the": [0, 65535], "that keepes the prison hee that goes in the calues": [0, 65535], "keepes the prison hee that goes in the calues skin": [0, 65535], "the prison hee that goes in the calues skin that": [0, 65535], "prison hee that goes in the calues skin that was": [0, 65535], "hee that goes in the calues skin that was kil'd": [0, 65535], "that goes in the calues skin that was kil'd for": [0, 65535], "goes in the calues skin that was kil'd for the": [0, 65535], "in the calues skin that was kil'd for the prodigall": [0, 65535], "the calues skin that was kil'd for the prodigall hee": [0, 65535], "calues skin that was kil'd for the prodigall hee that": [0, 65535], "skin that was kil'd for the prodigall hee that came": [0, 65535], "that was kil'd for the prodigall hee that came behinde": [0, 65535], "was kil'd for the prodigall hee that came behinde you": [0, 65535], "kil'd for the prodigall hee that came behinde you sir": [0, 65535], "for the prodigall hee that came behinde you sir like": [0, 65535], "the prodigall hee that came behinde you sir like an": [0, 65535], "prodigall hee that came behinde you sir like an euill": [0, 65535], "hee that came behinde you sir like an euill angel": [0, 65535], "that came behinde you sir like an euill angel and": [0, 65535], "came behinde you sir like an euill angel and bid": [0, 65535], "behinde you sir like an euill angel and bid you": [0, 65535], "you sir like an euill angel and bid you forsake": [0, 65535], "sir like an euill angel and bid you forsake your": [0, 65535], "like an euill angel and bid you forsake your libertie": [0, 65535], "an euill angel and bid you forsake your libertie ant": [0, 65535], "euill angel and bid you forsake your libertie ant i": [0, 65535], "angel and bid you forsake your libertie ant i vnderstand": [0, 65535], "and bid you forsake your libertie ant i vnderstand thee": [0, 65535], "bid you forsake your libertie ant i vnderstand thee not": [0, 65535], "you forsake your libertie ant i vnderstand thee not s": [0, 65535], "forsake your libertie ant i vnderstand thee not s dro": [0, 65535], "your libertie ant i vnderstand thee not s dro no": [0, 65535], "libertie ant i vnderstand thee not s dro no why": [0, 65535], "ant i vnderstand thee not s dro no why 'tis": [0, 65535], "i vnderstand thee not s dro no why 'tis a": [0, 65535], "vnderstand thee not s dro no why 'tis a plaine": [0, 65535], "thee not s dro no why 'tis a plaine case": [0, 65535], "not s dro no why 'tis a plaine case he": [0, 65535], "s dro no why 'tis a plaine case he that": [0, 65535], "dro no why 'tis a plaine case he that went": [0, 65535], "no why 'tis a plaine case he that went like": [0, 65535], "why 'tis a plaine case he that went like a": [0, 65535], "'tis a plaine case he that went like a base": [0, 65535], "a plaine case he that went like a base viole": [0, 65535], "plaine case he that went like a base viole in": [0, 65535], "case he that went like a base viole in a": [0, 65535], "he that went like a base viole in a case": [0, 65535], "that went like a base viole in a case of": [0, 65535], "went like a base viole in a case of leather": [0, 65535], "like a base viole in a case of leather the": [0, 65535], "a base viole in a case of leather the man": [0, 65535], "base viole in a case of leather the man sir": [0, 65535], "viole in a case of leather the man sir that": [0, 65535], "in a case of leather the man sir that when": [0, 65535], "a case of leather the man sir that when gentlemen": [0, 65535], "case of leather the man sir that when gentlemen are": [0, 65535], "of leather the man sir that when gentlemen are tired": [0, 65535], "leather the man sir that when gentlemen are tired giues": [0, 65535], "the man sir that when gentlemen are tired giues them": [0, 65535], "man sir that when gentlemen are tired giues them a": [0, 65535], "sir that when gentlemen are tired giues them a sob": [0, 65535], "that when gentlemen are tired giues them a sob and": [0, 65535], "when gentlemen are tired giues them a sob and rests": [0, 65535], "gentlemen are tired giues them a sob and rests them": [0, 65535], "are tired giues them a sob and rests them he": [0, 65535], "tired giues them a sob and rests them he sir": [0, 65535], "giues them a sob and rests them he sir that": [0, 65535], "them a sob and rests them he sir that takes": [0, 65535], "a sob and rests them he sir that takes pittie": [0, 65535], "sob and rests them he sir that takes pittie on": [0, 65535], "and rests them he sir that takes pittie on decaied": [0, 65535], "rests them he sir that takes pittie on decaied men": [0, 65535], "them he sir that takes pittie on decaied men and": [0, 65535], "he sir that takes pittie on decaied men and giues": [0, 65535], "sir that takes pittie on decaied men and giues them": [0, 65535], "that takes pittie on decaied men and giues them suites": [0, 65535], "takes pittie on decaied men and giues them suites of": [0, 65535], "pittie on decaied men and giues them suites of durance": [0, 65535], "on decaied men and giues them suites of durance he": [0, 65535], "decaied men and giues them suites of durance he that": [0, 65535], "men and giues them suites of durance he that sets": [0, 65535], "and giues them suites of durance he that sets vp": [0, 65535], "giues them suites of durance he that sets vp his": [0, 65535], "them suites of durance he that sets vp his rest": [0, 65535], "suites of durance he that sets vp his rest to": [0, 65535], "of durance he that sets vp his rest to doe": [0, 65535], "durance he that sets vp his rest to doe more": [0, 65535], "he that sets vp his rest to doe more exploits": [0, 65535], "that sets vp his rest to doe more exploits with": [0, 65535], "sets vp his rest to doe more exploits with his": [0, 65535], "vp his rest to doe more exploits with his mace": [0, 65535], "his rest to doe more exploits with his mace then": [0, 65535], "rest to doe more exploits with his mace then a": [0, 65535], "to doe more exploits with his mace then a moris": [0, 65535], "doe more exploits with his mace then a moris pike": [0, 65535], "more exploits with his mace then a moris pike ant": [0, 65535], "exploits with his mace then a moris pike ant what": [0, 65535], "with his mace then a moris pike ant what thou": [0, 65535], "his mace then a moris pike ant what thou mean'st": [0, 65535], "mace then a moris pike ant what thou mean'st an": [0, 65535], "then a moris pike ant what thou mean'st an officer": [0, 65535], "a moris pike ant what thou mean'st an officer s": [0, 65535], "moris pike ant what thou mean'st an officer s dro": [0, 65535], "pike ant what thou mean'st an officer s dro i": [0, 65535], "ant what thou mean'st an officer s dro i sir": [0, 65535], "what thou mean'st an officer s dro i sir the": [0, 65535], "thou mean'st an officer s dro i sir the serieant": [0, 65535], "mean'st an officer s dro i sir the serieant of": [0, 65535], "an officer s dro i sir the serieant of the": [0, 65535], "officer s dro i sir the serieant of the band": [0, 65535], "s dro i sir the serieant of the band he": [0, 65535], "dro i sir the serieant of the band he that": [0, 65535], "i sir the serieant of the band he that brings": [0, 65535], "sir the serieant of the band he that brings any": [0, 65535], "the serieant of the band he that brings any man": [0, 65535], "serieant of the band he that brings any man to": [0, 65535], "of the band he that brings any man to answer": [0, 65535], "the band he that brings any man to answer it": [0, 65535], "band he that brings any man to answer it that": [0, 65535], "he that brings any man to answer it that breakes": [0, 65535], "that brings any man to answer it that breakes his": [0, 65535], "brings any man to answer it that breakes his band": [0, 65535], "any man to answer it that breakes his band one": [0, 65535], "man to answer it that breakes his band one that": [0, 65535], "to answer it that breakes his band one that thinkes": [0, 65535], "answer it that breakes his band one that thinkes a": [0, 65535], "it that breakes his band one that thinkes a man": [0, 65535], "that breakes his band one that thinkes a man alwaies": [0, 65535], "breakes his band one that thinkes a man alwaies going": [0, 65535], "his band one that thinkes a man alwaies going to": [0, 65535], "band one that thinkes a man alwaies going to bed": [0, 65535], "one that thinkes a man alwaies going to bed and": [0, 65535], "that thinkes a man alwaies going to bed and saies": [0, 65535], "thinkes a man alwaies going to bed and saies god": [0, 65535], "a man alwaies going to bed and saies god giue": [0, 65535], "man alwaies going to bed and saies god giue you": [0, 65535], "alwaies going to bed and saies god giue you good": [0, 65535], "going to bed and saies god giue you good rest": [0, 65535], "to bed and saies god giue you good rest ant": [0, 65535], "bed and saies god giue you good rest ant well": [0, 65535], "and saies god giue you good rest ant well sir": [0, 65535], "saies god giue you good rest ant well sir there": [0, 65535], "god giue you good rest ant well sir there rest": [0, 65535], "giue you good rest ant well sir there rest in": [0, 65535], "you good rest ant well sir there rest in your": [0, 65535], "good rest ant well sir there rest in your foolerie": [0, 65535], "rest ant well sir there rest in your foolerie is": [0, 65535], "ant well sir there rest in your foolerie is there": [0, 65535], "well sir there rest in your foolerie is there any": [0, 65535], "sir there rest in your foolerie is there any ships": [0, 65535], "there rest in your foolerie is there any ships puts": [0, 65535], "rest in your foolerie is there any ships puts forth": [0, 65535], "in your foolerie is there any ships puts forth to": [0, 65535], "your foolerie is there any ships puts forth to night": [0, 65535], "foolerie is there any ships puts forth to night may": [0, 65535], "is there any ships puts forth to night may we": [0, 65535], "there any ships puts forth to night may we be": [0, 65535], "any ships puts forth to night may we be gone": [0, 65535], "ships puts forth to night may we be gone s": [0, 65535], "puts forth to night may we be gone s dro": [0, 65535], "forth to night may we be gone s dro why": [0, 65535], "to night may we be gone s dro why sir": [0, 65535], "night may we be gone s dro why sir i": [0, 65535], "may we be gone s dro why sir i brought": [0, 65535], "we be gone s dro why sir i brought you": [0, 65535], "be gone s dro why sir i brought you word": [0, 65535], "gone s dro why sir i brought you word an": [0, 65535], "s dro why sir i brought you word an houre": [0, 65535], "dro why sir i brought you word an houre since": [0, 65535], "why sir i brought you word an houre since that": [0, 65535], "sir i brought you word an houre since that the": [0, 65535], "i brought you word an houre since that the barke": [0, 65535], "brought you word an houre since that the barke expedition": [0, 65535], "you word an houre since that the barke expedition put": [0, 65535], "word an houre since that the barke expedition put forth": [0, 65535], "an houre since that the barke expedition put forth to": [0, 65535], "houre since that the barke expedition put forth to night": [0, 65535], "since that the barke expedition put forth to night and": [0, 65535], "that the barke expedition put forth to night and then": [0, 65535], "the barke expedition put forth to night and then were": [0, 65535], "barke expedition put forth to night and then were you": [0, 65535], "expedition put forth to night and then were you hindred": [0, 65535], "put forth to night and then were you hindred by": [0, 65535], "forth to night and then were you hindred by the": [0, 65535], "to night and then were you hindred by the serieant": [0, 65535], "night and then were you hindred by the serieant to": [0, 65535], "and then were you hindred by the serieant to tarry": [0, 65535], "then were you hindred by the serieant to tarry for": [0, 65535], "were you hindred by the serieant to tarry for the": [0, 65535], "you hindred by the serieant to tarry for the hoy": [0, 65535], "hindred by the serieant to tarry for the hoy delay": [0, 65535], "by the serieant to tarry for the hoy delay here": [0, 65535], "the serieant to tarry for the hoy delay here are": [0, 65535], "serieant to tarry for the hoy delay here are the": [0, 65535], "to tarry for the hoy delay here are the angels": [0, 65535], "tarry for the hoy delay here are the angels that": [0, 65535], "for the hoy delay here are the angels that you": [0, 65535], "the hoy delay here are the angels that you sent": [0, 65535], "hoy delay here are the angels that you sent for": [0, 65535], "delay here are the angels that you sent for to": [0, 65535], "here are the angels that you sent for to deliuer": [0, 65535], "are the angels that you sent for to deliuer you": [0, 65535], "the angels that you sent for to deliuer you ant": [0, 65535], "angels that you sent for to deliuer you ant the": [0, 65535], "that you sent for to deliuer you ant the fellow": [0, 65535], "you sent for to deliuer you ant the fellow is": [0, 65535], "sent for to deliuer you ant the fellow is distract": [0, 65535], "for to deliuer you ant the fellow is distract and": [0, 65535], "to deliuer you ant the fellow is distract and so": [0, 65535], "deliuer you ant the fellow is distract and so am": [0, 65535], "you ant the fellow is distract and so am i": [0, 65535], "ant the fellow is distract and so am i and": [0, 65535], "the fellow is distract and so am i and here": [0, 65535], "fellow is distract and so am i and here we": [0, 65535], "is distract and so am i and here we wander": [0, 65535], "distract and so am i and here we wander in": [0, 65535], "and so am i and here we wander in illusions": [0, 65535], "so am i and here we wander in illusions some": [0, 65535], "am i and here we wander in illusions some blessed": [0, 65535], "i and here we wander in illusions some blessed power": [0, 65535], "and here we wander in illusions some blessed power deliuer": [0, 65535], "here we wander in illusions some blessed power deliuer vs": [0, 65535], "we wander in illusions some blessed power deliuer vs from": [0, 65535], "wander in illusions some blessed power deliuer vs from hence": [0, 65535], "in illusions some blessed power deliuer vs from hence enter": [0, 65535], "illusions some blessed power deliuer vs from hence enter a": [0, 65535], "some blessed power deliuer vs from hence enter a curtizan": [0, 65535], "blessed power deliuer vs from hence enter a curtizan cur": [0, 65535], "power deliuer vs from hence enter a curtizan cur well": [0, 65535], "deliuer vs from hence enter a curtizan cur well met": [0, 65535], "vs from hence enter a curtizan cur well met well": [0, 65535], "from hence enter a curtizan cur well met well met": [0, 65535], "hence enter a curtizan cur well met well met master": [0, 65535], "enter a curtizan cur well met well met master antipholus": [0, 65535], "a curtizan cur well met well met master antipholus i": [0, 65535], "curtizan cur well met well met master antipholus i see": [0, 65535], "cur well met well met master antipholus i see sir": [0, 65535], "well met well met master antipholus i see sir you": [0, 65535], "met well met master antipholus i see sir you haue": [0, 65535], "well met master antipholus i see sir you haue found": [0, 65535], "met master antipholus i see sir you haue found the": [0, 65535], "master antipholus i see sir you haue found the gold": [0, 65535], "antipholus i see sir you haue found the gold smith": [0, 65535], "i see sir you haue found the gold smith now": [0, 65535], "see sir you haue found the gold smith now is": [0, 65535], "sir you haue found the gold smith now is that": [0, 65535], "you haue found the gold smith now is that the": [0, 65535], "haue found the gold smith now is that the chaine": [0, 65535], "found the gold smith now is that the chaine you": [0, 65535], "the gold smith now is that the chaine you promis'd": [0, 65535], "gold smith now is that the chaine you promis'd me": [0, 65535], "smith now is that the chaine you promis'd me to": [0, 65535], "now is that the chaine you promis'd me to day": [0, 65535], "is that the chaine you promis'd me to day ant": [0, 65535], "that the chaine you promis'd me to day ant sathan": [0, 65535], "the chaine you promis'd me to day ant sathan auoide": [0, 65535], "chaine you promis'd me to day ant sathan auoide i": [0, 65535], "you promis'd me to day ant sathan auoide i charge": [0, 65535], "promis'd me to day ant sathan auoide i charge thee": [0, 65535], "me to day ant sathan auoide i charge thee tempt": [0, 65535], "to day ant sathan auoide i charge thee tempt me": [0, 65535], "day ant sathan auoide i charge thee tempt me not": [0, 65535], "ant sathan auoide i charge thee tempt me not s": [0, 65535], "sathan auoide i charge thee tempt me not s dro": [0, 65535], "auoide i charge thee tempt me not s dro master": [0, 65535], "i charge thee tempt me not s dro master is": [0, 65535], "charge thee tempt me not s dro master is this": [0, 65535], "thee tempt me not s dro master is this mistris": [0, 65535], "tempt me not s dro master is this mistris sathan": [0, 65535], "me not s dro master is this mistris sathan ant": [0, 65535], "not s dro master is this mistris sathan ant it": [0, 65535], "s dro master is this mistris sathan ant it is": [0, 65535], "dro master is this mistris sathan ant it is the": [0, 65535], "master is this mistris sathan ant it is the diuell": [0, 65535], "is this mistris sathan ant it is the diuell s": [0, 65535], "this mistris sathan ant it is the diuell s dro": [0, 65535], "mistris sathan ant it is the diuell s dro nay": [0, 65535], "sathan ant it is the diuell s dro nay she": [0, 65535], "ant it is the diuell s dro nay she is": [0, 65535], "it is the diuell s dro nay she is worse": [0, 65535], "is the diuell s dro nay she is worse she": [0, 65535], "the diuell s dro nay she is worse she is": [0, 65535], "diuell s dro nay she is worse she is the": [0, 65535], "s dro nay she is worse she is the diuels": [0, 65535], "dro nay she is worse she is the diuels dam": [0, 65535], "nay she is worse she is the diuels dam and": [0, 65535], "she is worse she is the diuels dam and here": [0, 65535], "is worse she is the diuels dam and here she": [0, 65535], "worse she is the diuels dam and here she comes": [0, 65535], "she is the diuels dam and here she comes in": [0, 65535], "is the diuels dam and here she comes in the": [0, 65535], "the diuels dam and here she comes in the habit": [0, 65535], "diuels dam and here she comes in the habit of": [0, 65535], "dam and here she comes in the habit of a": [0, 65535], "and here she comes in the habit of a light": [0, 65535], "here she comes in the habit of a light wench": [0, 65535], "she comes in the habit of a light wench and": [0, 65535], "comes in the habit of a light wench and thereof": [0, 65535], "in the habit of a light wench and thereof comes": [0, 65535], "the habit of a light wench and thereof comes that": [0, 65535], "habit of a light wench and thereof comes that the": [0, 65535], "of a light wench and thereof comes that the wenches": [0, 65535], "a light wench and thereof comes that the wenches say": [0, 65535], "light wench and thereof comes that the wenches say god": [0, 65535], "wench and thereof comes that the wenches say god dam": [0, 65535], "and thereof comes that the wenches say god dam me": [0, 65535], "thereof comes that the wenches say god dam me that's": [0, 65535], "comes that the wenches say god dam me that's as": [0, 65535], "that the wenches say god dam me that's as much": [0, 65535], "the wenches say god dam me that's as much to": [0, 65535], "wenches say god dam me that's as much to say": [0, 65535], "say god dam me that's as much to say god": [0, 65535], "god dam me that's as much to say god make": [0, 65535], "dam me that's as much to say god make me": [0, 65535], "me that's as much to say god make me a": [0, 65535], "that's as much to say god make me a light": [0, 65535], "as much to say god make me a light wench": [0, 65535], "much to say god make me a light wench it": [0, 65535], "to say god make me a light wench it is": [0, 65535], "say god make me a light wench it is written": [0, 65535], "god make me a light wench it is written they": [0, 65535], "make me a light wench it is written they appeare": [0, 65535], "me a light wench it is written they appeare to": [0, 65535], "a light wench it is written they appeare to men": [0, 65535], "light wench it is written they appeare to men like": [0, 65535], "wench it is written they appeare to men like angels": [0, 65535], "it is written they appeare to men like angels of": [0, 65535], "is written they appeare to men like angels of light": [0, 65535], "written they appeare to men like angels of light light": [0, 65535], "they appeare to men like angels of light light is": [0, 65535], "appeare to men like angels of light light is an": [0, 65535], "to men like angels of light light is an effect": [0, 65535], "men like angels of light light is an effect of": [0, 65535], "like angels of light light is an effect of fire": [0, 65535], "angels of light light is an effect of fire and": [0, 65535], "of light light is an effect of fire and fire": [0, 65535], "light light is an effect of fire and fire will": [0, 65535], "light is an effect of fire and fire will burne": [0, 65535], "is an effect of fire and fire will burne ergo": [0, 65535], "an effect of fire and fire will burne ergo light": [0, 65535], "effect of fire and fire will burne ergo light wenches": [0, 65535], "of fire and fire will burne ergo light wenches will": [0, 65535], "fire and fire will burne ergo light wenches will burne": [0, 65535], "and fire will burne ergo light wenches will burne come": [0, 65535], "fire will burne ergo light wenches will burne come not": [0, 65535], "will burne ergo light wenches will burne come not neere": [0, 65535], "burne ergo light wenches will burne come not neere her": [0, 65535], "ergo light wenches will burne come not neere her cur": [0, 65535], "light wenches will burne come not neere her cur your": [0, 65535], "wenches will burne come not neere her cur your man": [0, 65535], "will burne come not neere her cur your man and": [0, 65535], "burne come not neere her cur your man and you": [0, 65535], "come not neere her cur your man and you are": [0, 65535], "not neere her cur your man and you are maruailous": [0, 65535], "neere her cur your man and you are maruailous merrie": [0, 65535], "her cur your man and you are maruailous merrie sir": [0, 65535], "cur your man and you are maruailous merrie sir will": [0, 65535], "your man and you are maruailous merrie sir will you": [0, 65535], "man and you are maruailous merrie sir will you goe": [0, 65535], "and you are maruailous merrie sir will you goe with": [0, 65535], "you are maruailous merrie sir will you goe with me": [0, 65535], "are maruailous merrie sir will you goe with me wee'll": [0, 65535], "maruailous merrie sir will you goe with me wee'll mend": [0, 65535], "merrie sir will you goe with me wee'll mend our": [0, 65535], "sir will you goe with me wee'll mend our dinner": [0, 65535], "will you goe with me wee'll mend our dinner here": [0, 65535], "you goe with me wee'll mend our dinner here s": [0, 65535], "goe with me wee'll mend our dinner here s dro": [0, 65535], "with me wee'll mend our dinner here s dro master": [0, 65535], "me wee'll mend our dinner here s dro master if": [0, 65535], "wee'll mend our dinner here s dro master if do": [0, 65535], "mend our dinner here s dro master if do expect": [0, 65535], "our dinner here s dro master if do expect spoon": [0, 65535], "dinner here s dro master if do expect spoon meate": [0, 65535], "here s dro master if do expect spoon meate or": [0, 65535], "s dro master if do expect spoon meate or bespeake": [0, 65535], "dro master if do expect spoon meate or bespeake a": [0, 65535], "master if do expect spoon meate or bespeake a long": [0, 65535], "if do expect spoon meate or bespeake a long spoone": [0, 65535], "do expect spoon meate or bespeake a long spoone ant": [0, 65535], "expect spoon meate or bespeake a long spoone ant why": [0, 65535], "spoon meate or bespeake a long spoone ant why dromio": [0, 65535], "meate or bespeake a long spoone ant why dromio s": [0, 65535], "or bespeake a long spoone ant why dromio s dro": [0, 65535], "bespeake a long spoone ant why dromio s dro marrie": [0, 65535], "a long spoone ant why dromio s dro marrie he": [0, 65535], "long spoone ant why dromio s dro marrie he must": [0, 65535], "spoone ant why dromio s dro marrie he must haue": [0, 65535], "ant why dromio s dro marrie he must haue a": [0, 65535], "why dromio s dro marrie he must haue a long": [0, 65535], "dromio s dro marrie he must haue a long spoone": [0, 65535], "s dro marrie he must haue a long spoone that": [0, 65535], "dro marrie he must haue a long spoone that must": [0, 65535], "marrie he must haue a long spoone that must eate": [0, 65535], "he must haue a long spoone that must eate with": [0, 65535], "must haue a long spoone that must eate with the": [0, 65535], "haue a long spoone that must eate with the diuell": [0, 65535], "a long spoone that must eate with the diuell ant": [0, 65535], "long spoone that must eate with the diuell ant auoid": [0, 65535], "spoone that must eate with the diuell ant auoid then": [0, 65535], "that must eate with the diuell ant auoid then fiend": [0, 65535], "must eate with the diuell ant auoid then fiend what": [0, 65535], "eate with the diuell ant auoid then fiend what tel'st": [0, 65535], "with the diuell ant auoid then fiend what tel'st thou": [0, 65535], "the diuell ant auoid then fiend what tel'st thou me": [0, 65535], "diuell ant auoid then fiend what tel'st thou me of": [0, 65535], "ant auoid then fiend what tel'st thou me of supping": [0, 65535], "auoid then fiend what tel'st thou me of supping thou": [0, 65535], "then fiend what tel'st thou me of supping thou art": [0, 65535], "fiend what tel'st thou me of supping thou art as": [0, 65535], "what tel'st thou me of supping thou art as you": [0, 65535], "tel'st thou me of supping thou art as you are": [0, 65535], "thou me of supping thou art as you are all": [0, 65535], "me of supping thou art as you are all a": [0, 65535], "of supping thou art as you are all a sorceresse": [0, 65535], "supping thou art as you are all a sorceresse i": [0, 65535], "thou art as you are all a sorceresse i coniure": [0, 65535], "art as you are all a sorceresse i coniure thee": [0, 65535], "as you are all a sorceresse i coniure thee to": [0, 65535], "you are all a sorceresse i coniure thee to leaue": [0, 65535], "are all a sorceresse i coniure thee to leaue me": [0, 65535], "all a sorceresse i coniure thee to leaue me and": [0, 65535], "a sorceresse i coniure thee to leaue me and be": [0, 65535], "sorceresse i coniure thee to leaue me and be gon": [0, 65535], "i coniure thee to leaue me and be gon cur": [0, 65535], "coniure thee to leaue me and be gon cur giue": [0, 65535], "thee to leaue me and be gon cur giue me": [0, 65535], "to leaue me and be gon cur giue me the": [0, 65535], "leaue me and be gon cur giue me the ring": [0, 65535], "me and be gon cur giue me the ring of": [0, 65535], "and be gon cur giue me the ring of mine": [0, 65535], "be gon cur giue me the ring of mine you": [0, 65535], "gon cur giue me the ring of mine you had": [0, 65535], "cur giue me the ring of mine you had at": [0, 65535], "giue me the ring of mine you had at dinner": [0, 65535], "me the ring of mine you had at dinner or": [0, 65535], "the ring of mine you had at dinner or for": [0, 65535], "ring of mine you had at dinner or for my": [0, 65535], "of mine you had at dinner or for my diamond": [0, 65535], "mine you had at dinner or for my diamond the": [0, 65535], "you had at dinner or for my diamond the chaine": [0, 65535], "had at dinner or for my diamond the chaine you": [0, 65535], "at dinner or for my diamond the chaine you promis'd": [0, 65535], "dinner or for my diamond the chaine you promis'd and": [0, 65535], "or for my diamond the chaine you promis'd and ile": [0, 65535], "for my diamond the chaine you promis'd and ile be": [0, 65535], "my diamond the chaine you promis'd and ile be gone": [0, 65535], "diamond the chaine you promis'd and ile be gone sir": [0, 65535], "the chaine you promis'd and ile be gone sir and": [0, 65535], "chaine you promis'd and ile be gone sir and not": [0, 65535], "you promis'd and ile be gone sir and not trouble": [0, 65535], "promis'd and ile be gone sir and not trouble you": [0, 65535], "and ile be gone sir and not trouble you s": [0, 65535], "ile be gone sir and not trouble you s dro": [0, 65535], "be gone sir and not trouble you s dro some": [0, 65535], "gone sir and not trouble you s dro some diuels": [0, 65535], "sir and not trouble you s dro some diuels aske": [0, 65535], "and not trouble you s dro some diuels aske but": [0, 65535], "not trouble you s dro some diuels aske but the": [0, 65535], "trouble you s dro some diuels aske but the parings": [0, 65535], "you s dro some diuels aske but the parings of": [0, 65535], "s dro some diuels aske but the parings of ones": [0, 65535], "dro some diuels aske but the parings of ones naile": [0, 65535], "some diuels aske but the parings of ones naile a": [0, 65535], "diuels aske but the parings of ones naile a rush": [0, 65535], "aske but the parings of ones naile a rush a": [0, 65535], "but the parings of ones naile a rush a haire": [0, 65535], "the parings of ones naile a rush a haire a": [0, 65535], "parings of ones naile a rush a haire a drop": [0, 65535], "of ones naile a rush a haire a drop of": [0, 65535], "ones naile a rush a haire a drop of blood": [0, 65535], "naile a rush a haire a drop of blood a": [0, 65535], "a rush a haire a drop of blood a pin": [0, 65535], "rush a haire a drop of blood a pin a": [0, 65535], "a haire a drop of blood a pin a nut": [0, 65535], "haire a drop of blood a pin a nut a": [0, 65535], "a drop of blood a pin a nut a cherrie": [0, 65535], "drop of blood a pin a nut a cherrie stone": [0, 65535], "of blood a pin a nut a cherrie stone but": [0, 65535], "blood a pin a nut a cherrie stone but she": [0, 65535], "a pin a nut a cherrie stone but she more": [0, 65535], "pin a nut a cherrie stone but she more couetous": [0, 65535], "a nut a cherrie stone but she more couetous wold": [0, 65535], "nut a cherrie stone but she more couetous wold haue": [0, 65535], "a cherrie stone but she more couetous wold haue a": [0, 65535], "cherrie stone but she more couetous wold haue a chaine": [0, 65535], "stone but she more couetous wold haue a chaine master": [0, 65535], "but she more couetous wold haue a chaine master be": [0, 65535], "she more couetous wold haue a chaine master be wise": [0, 65535], "more couetous wold haue a chaine master be wise and": [0, 65535], "couetous wold haue a chaine master be wise and if": [0, 65535], "wold haue a chaine master be wise and if you": [0, 65535], "haue a chaine master be wise and if you giue": [0, 65535], "a chaine master be wise and if you giue it": [0, 65535], "chaine master be wise and if you giue it her": [0, 65535], "master be wise and if you giue it her the": [0, 65535], "be wise and if you giue it her the diuell": [0, 65535], "wise and if you giue it her the diuell will": [0, 65535], "and if you giue it her the diuell will shake": [0, 65535], "if you giue it her the diuell will shake her": [0, 65535], "you giue it her the diuell will shake her chaine": [0, 65535], "giue it her the diuell will shake her chaine and": [0, 65535], "it her the diuell will shake her chaine and fright": [0, 65535], "her the diuell will shake her chaine and fright vs": [0, 65535], "the diuell will shake her chaine and fright vs with": [0, 65535], "diuell will shake her chaine and fright vs with it": [0, 65535], "will shake her chaine and fright vs with it cur": [0, 65535], "shake her chaine and fright vs with it cur i": [0, 65535], "her chaine and fright vs with it cur i pray": [0, 65535], "chaine and fright vs with it cur i pray you": [0, 65535], "and fright vs with it cur i pray you sir": [0, 65535], "fright vs with it cur i pray you sir my": [0, 65535], "vs with it cur i pray you sir my ring": [0, 65535], "with it cur i pray you sir my ring or": [0, 65535], "it cur i pray you sir my ring or else": [0, 65535], "cur i pray you sir my ring or else the": [0, 65535], "i pray you sir my ring or else the chaine": [0, 65535], "pray you sir my ring or else the chaine i": [0, 65535], "you sir my ring or else the chaine i hope": [0, 65535], "sir my ring or else the chaine i hope you": [0, 65535], "my ring or else the chaine i hope you do": [0, 65535], "ring or else the chaine i hope you do not": [0, 65535], "or else the chaine i hope you do not meane": [0, 65535], "else the chaine i hope you do not meane to": [0, 65535], "the chaine i hope you do not meane to cheate": [0, 65535], "chaine i hope you do not meane to cheate me": [0, 65535], "i hope you do not meane to cheate me so": [0, 65535], "hope you do not meane to cheate me so ant": [0, 65535], "you do not meane to cheate me so ant auant": [0, 65535], "do not meane to cheate me so ant auant thou": [0, 65535], "not meane to cheate me so ant auant thou witch": [0, 65535], "meane to cheate me so ant auant thou witch come": [0, 65535], "to cheate me so ant auant thou witch come dromio": [0, 65535], "cheate me so ant auant thou witch come dromio let": [0, 65535], "me so ant auant thou witch come dromio let vs": [0, 65535], "so ant auant thou witch come dromio let vs go": [0, 65535], "ant auant thou witch come dromio let vs go s": [0, 65535], "auant thou witch come dromio let vs go s dro": [0, 65535], "thou witch come dromio let vs go s dro flie": [0, 65535], "witch come dromio let vs go s dro flie pride": [0, 65535], "come dromio let vs go s dro flie pride saies": [0, 65535], "dromio let vs go s dro flie pride saies the": [0, 65535], "let vs go s dro flie pride saies the pea": [0, 65535], "vs go s dro flie pride saies the pea cocke": [0, 65535], "go s dro flie pride saies the pea cocke mistris": [0, 65535], "s dro flie pride saies the pea cocke mistris that": [0, 65535], "dro flie pride saies the pea cocke mistris that you": [0, 65535], "flie pride saies the pea cocke mistris that you know": [0, 65535], "pride saies the pea cocke mistris that you know exit": [0, 65535], "saies the pea cocke mistris that you know exit cur": [0, 65535], "the pea cocke mistris that you know exit cur now": [0, 65535], "pea cocke mistris that you know exit cur now out": [0, 65535], "cocke mistris that you know exit cur now out of": [0, 65535], "mistris that you know exit cur now out of doubt": [0, 65535], "that you know exit cur now out of doubt antipholus": [0, 65535], "you know exit cur now out of doubt antipholus is": [0, 65535], "know exit cur now out of doubt antipholus is mad": [0, 65535], "exit cur now out of doubt antipholus is mad else": [0, 65535], "cur now out of doubt antipholus is mad else would": [0, 65535], "now out of doubt antipholus is mad else would he": [0, 65535], "out of doubt antipholus is mad else would he neuer": [0, 65535], "of doubt antipholus is mad else would he neuer so": [0, 65535], "doubt antipholus is mad else would he neuer so demeane": [0, 65535], "antipholus is mad else would he neuer so demeane himselfe": [0, 65535], "is mad else would he neuer so demeane himselfe a": [0, 65535], "mad else would he neuer so demeane himselfe a ring": [0, 65535], "else would he neuer so demeane himselfe a ring he": [0, 65535], "would he neuer so demeane himselfe a ring he hath": [0, 65535], "he neuer so demeane himselfe a ring he hath of": [0, 65535], "neuer so demeane himselfe a ring he hath of mine": [0, 65535], "so demeane himselfe a ring he hath of mine worth": [0, 65535], "demeane himselfe a ring he hath of mine worth fortie": [0, 65535], "himselfe a ring he hath of mine worth fortie duckets": [0, 65535], "a ring he hath of mine worth fortie duckets and": [0, 65535], "ring he hath of mine worth fortie duckets and for": [0, 65535], "he hath of mine worth fortie duckets and for the": [0, 65535], "hath of mine worth fortie duckets and for the same": [0, 65535], "of mine worth fortie duckets and for the same he": [0, 65535], "mine worth fortie duckets and for the same he promis'd": [0, 65535], "worth fortie duckets and for the same he promis'd me": [0, 65535], "fortie duckets and for the same he promis'd me a": [0, 65535], "duckets and for the same he promis'd me a chaine": [0, 65535], "and for the same he promis'd me a chaine both": [0, 65535], "for the same he promis'd me a chaine both one": [0, 65535], "the same he promis'd me a chaine both one and": [0, 65535], "same he promis'd me a chaine both one and other": [0, 65535], "he promis'd me a chaine both one and other he": [0, 65535], "promis'd me a chaine both one and other he denies": [0, 65535], "me a chaine both one and other he denies me": [0, 65535], "a chaine both one and other he denies me now": [0, 65535], "chaine both one and other he denies me now the": [0, 65535], "both one and other he denies me now the reason": [0, 65535], "one and other he denies me now the reason that": [0, 65535], "and other he denies me now the reason that i": [0, 65535], "other he denies me now the reason that i gather": [0, 65535], "he denies me now the reason that i gather he": [0, 65535], "denies me now the reason that i gather he is": [0, 65535], "me now the reason that i gather he is mad": [0, 65535], "now the reason that i gather he is mad besides": [0, 65535], "the reason that i gather he is mad besides this": [0, 65535], "reason that i gather he is mad besides this present": [0, 65535], "that i gather he is mad besides this present instance": [0, 65535], "i gather he is mad besides this present instance of": [0, 65535], "gather he is mad besides this present instance of his": [0, 65535], "he is mad besides this present instance of his rage": [0, 65535], "is mad besides this present instance of his rage is": [0, 65535], "mad besides this present instance of his rage is a": [0, 65535], "besides this present instance of his rage is a mad": [0, 65535], "this present instance of his rage is a mad tale": [0, 65535], "present instance of his rage is a mad tale he": [0, 65535], "instance of his rage is a mad tale he told": [0, 65535], "of his rage is a mad tale he told to": [0, 65535], "his rage is a mad tale he told to day": [0, 65535], "rage is a mad tale he told to day at": [0, 65535], "is a mad tale he told to day at dinner": [0, 65535], "a mad tale he told to day at dinner of": [0, 65535], "mad tale he told to day at dinner of his": [0, 65535], "tale he told to day at dinner of his owne": [0, 65535], "he told to day at dinner of his owne doores": [0, 65535], "told to day at dinner of his owne doores being": [0, 65535], "to day at dinner of his owne doores being shut": [0, 65535], "day at dinner of his owne doores being shut against": [0, 65535], "at dinner of his owne doores being shut against his": [0, 65535], "dinner of his owne doores being shut against his entrance": [0, 65535], "of his owne doores being shut against his entrance belike": [0, 65535], "his owne doores being shut against his entrance belike his": [0, 65535], "owne doores being shut against his entrance belike his wife": [0, 65535], "doores being shut against his entrance belike his wife acquainted": [0, 65535], "being shut against his entrance belike his wife acquainted with": [0, 65535], "shut against his entrance belike his wife acquainted with his": [0, 65535], "against his entrance belike his wife acquainted with his fits": [0, 65535], "his entrance belike his wife acquainted with his fits on": [0, 65535], "entrance belike his wife acquainted with his fits on purpose": [0, 65535], "belike his wife acquainted with his fits on purpose shut": [0, 65535], "his wife acquainted with his fits on purpose shut the": [0, 65535], "wife acquainted with his fits on purpose shut the doores": [0, 65535], "acquainted with his fits on purpose shut the doores against": [0, 65535], "with his fits on purpose shut the doores against his": [0, 65535], "his fits on purpose shut the doores against his way": [0, 65535], "fits on purpose shut the doores against his way my": [0, 65535], "on purpose shut the doores against his way my way": [0, 65535], "purpose shut the doores against his way my way is": [0, 65535], "shut the doores against his way my way is now": [0, 65535], "the doores against his way my way is now to": [0, 65535], "doores against his way my way is now to hie": [0, 65535], "against his way my way is now to hie home": [0, 65535], "his way my way is now to hie home to": [0, 65535], "way my way is now to hie home to his": [0, 65535], "my way is now to hie home to his house": [0, 65535], "way is now to hie home to his house and": [0, 65535], "is now to hie home to his house and tell": [0, 65535], "now to hie home to his house and tell his": [0, 65535], "to hie home to his house and tell his wife": [0, 65535], "hie home to his house and tell his wife that": [0, 65535], "home to his house and tell his wife that being": [0, 65535], "to his house and tell his wife that being lunaticke": [0, 65535], "his house and tell his wife that being lunaticke he": [0, 65535], "house and tell his wife that being lunaticke he rush'd": [0, 65535], "and tell his wife that being lunaticke he rush'd into": [0, 65535], "tell his wife that being lunaticke he rush'd into my": [0, 65535], "his wife that being lunaticke he rush'd into my house": [0, 65535], "wife that being lunaticke he rush'd into my house and": [0, 65535], "that being lunaticke he rush'd into my house and tooke": [0, 65535], "being lunaticke he rush'd into my house and tooke perforce": [0, 65535], "lunaticke he rush'd into my house and tooke perforce my": [0, 65535], "he rush'd into my house and tooke perforce my ring": [0, 65535], "rush'd into my house and tooke perforce my ring away": [0, 65535], "into my house and tooke perforce my ring away this": [0, 65535], "my house and tooke perforce my ring away this course": [0, 65535], "house and tooke perforce my ring away this course i": [0, 65535], "and tooke perforce my ring away this course i fittest": [0, 65535], "tooke perforce my ring away this course i fittest choose": [0, 65535], "perforce my ring away this course i fittest choose for": [0, 65535], "my ring away this course i fittest choose for fortie": [0, 65535], "ring away this course i fittest choose for fortie duckets": [0, 65535], "away this course i fittest choose for fortie duckets is": [0, 65535], "this course i fittest choose for fortie duckets is too": [0, 65535], "course i fittest choose for fortie duckets is too much": [0, 65535], "i fittest choose for fortie duckets is too much to": [0, 65535], "fittest choose for fortie duckets is too much to loose": [0, 65535], "choose for fortie duckets is too much to loose enter": [0, 65535], "for fortie duckets is too much to loose enter antipholus": [0, 65535], "fortie duckets is too much to loose enter antipholus ephes": [0, 65535], "duckets is too much to loose enter antipholus ephes with": [0, 65535], "is too much to loose enter antipholus ephes with a": [0, 65535], "too much to loose enter antipholus ephes with a iailor": [0, 65535], "much to loose enter antipholus ephes with a iailor an": [0, 65535], "to loose enter antipholus ephes with a iailor an feare": [0, 65535], "loose enter antipholus ephes with a iailor an feare me": [0, 65535], "enter antipholus ephes with a iailor an feare me not": [0, 65535], "antipholus ephes with a iailor an feare me not man": [0, 65535], "ephes with a iailor an feare me not man i": [0, 65535], "with a iailor an feare me not man i will": [0, 65535], "a iailor an feare me not man i will not": [0, 65535], "iailor an feare me not man i will not breake": [0, 65535], "an feare me not man i will not breake away": [0, 65535], "feare me not man i will not breake away ile": [0, 65535], "me not man i will not breake away ile giue": [0, 65535], "not man i will not breake away ile giue thee": [0, 65535], "man i will not breake away ile giue thee ere": [0, 65535], "i will not breake away ile giue thee ere i": [0, 65535], "will not breake away ile giue thee ere i leaue": [0, 65535], "not breake away ile giue thee ere i leaue thee": [0, 65535], "breake away ile giue thee ere i leaue thee so": [0, 65535], "away ile giue thee ere i leaue thee so much": [0, 65535], "ile giue thee ere i leaue thee so much money": [0, 65535], "giue thee ere i leaue thee so much money to": [0, 65535], "thee ere i leaue thee so much money to warrant": [0, 65535], "ere i leaue thee so much money to warrant thee": [0, 65535], "i leaue thee so much money to warrant thee as": [0, 65535], "leaue thee so much money to warrant thee as i": [0, 65535], "thee so much money to warrant thee as i am": [0, 65535], "so much money to warrant thee as i am rested": [0, 65535], "much money to warrant thee as i am rested for": [0, 65535], "money to warrant thee as i am rested for my": [0, 65535], "to warrant thee as i am rested for my wife": [0, 65535], "warrant thee as i am rested for my wife is": [0, 65535], "thee as i am rested for my wife is in": [0, 65535], "as i am rested for my wife is in a": [0, 65535], "i am rested for my wife is in a wayward": [0, 65535], "am rested for my wife is in a wayward moode": [0, 65535], "rested for my wife is in a wayward moode to": [0, 65535], "for my wife is in a wayward moode to day": [0, 65535], "my wife is in a wayward moode to day and": [0, 65535], "wife is in a wayward moode to day and will": [0, 65535], "is in a wayward moode to day and will not": [0, 65535], "in a wayward moode to day and will not lightly": [0, 65535], "a wayward moode to day and will not lightly trust": [0, 65535], "wayward moode to day and will not lightly trust the": [0, 65535], "moode to day and will not lightly trust the messenger": [0, 65535], "to day and will not lightly trust the messenger that": [0, 65535], "day and will not lightly trust the messenger that i": [0, 65535], "and will not lightly trust the messenger that i should": [0, 65535], "will not lightly trust the messenger that i should be": [0, 65535], "not lightly trust the messenger that i should be attach'd": [0, 65535], "lightly trust the messenger that i should be attach'd in": [0, 65535], "trust the messenger that i should be attach'd in ephesus": [0, 65535], "the messenger that i should be attach'd in ephesus i": [0, 65535], "messenger that i should be attach'd in ephesus i tell": [0, 65535], "that i should be attach'd in ephesus i tell you": [0, 65535], "i should be attach'd in ephesus i tell you 'twill": [0, 65535], "should be attach'd in ephesus i tell you 'twill sound": [0, 65535], "be attach'd in ephesus i tell you 'twill sound harshly": [0, 65535], "attach'd in ephesus i tell you 'twill sound harshly in": [0, 65535], "in ephesus i tell you 'twill sound harshly in her": [0, 65535], "ephesus i tell you 'twill sound harshly in her eares": [0, 65535], "i tell you 'twill sound harshly in her eares enter": [0, 65535], "tell you 'twill sound harshly in her eares enter dromio": [0, 65535], "you 'twill sound harshly in her eares enter dromio eph": [0, 65535], "'twill sound harshly in her eares enter dromio eph with": [0, 65535], "sound harshly in her eares enter dromio eph with a": [0, 65535], "harshly in her eares enter dromio eph with a ropes": [0, 65535], "in her eares enter dromio eph with a ropes end": [0, 65535], "her eares enter dromio eph with a ropes end heere": [0, 65535], "eares enter dromio eph with a ropes end heere comes": [0, 65535], "enter dromio eph with a ropes end heere comes my": [0, 65535], "dromio eph with a ropes end heere comes my man": [0, 65535], "eph with a ropes end heere comes my man i": [0, 65535], "with a ropes end heere comes my man i thinke": [0, 65535], "a ropes end heere comes my man i thinke he": [0, 65535], "ropes end heere comes my man i thinke he brings": [0, 65535], "end heere comes my man i thinke he brings the": [0, 65535], "heere comes my man i thinke he brings the monie": [0, 65535], "comes my man i thinke he brings the monie how": [0, 65535], "my man i thinke he brings the monie how now": [0, 65535], "man i thinke he brings the monie how now sir": [0, 65535], "i thinke he brings the monie how now sir haue": [0, 65535], "thinke he brings the monie how now sir haue you": [0, 65535], "he brings the monie how now sir haue you that": [0, 65535], "brings the monie how now sir haue you that i": [0, 65535], "the monie how now sir haue you that i sent": [0, 65535], "monie how now sir haue you that i sent you": [0, 65535], "how now sir haue you that i sent you for": [0, 65535], "now sir haue you that i sent you for e": [0, 65535], "sir haue you that i sent you for e dro": [0, 65535], "haue you that i sent you for e dro here's": [0, 65535], "you that i sent you for e dro here's that": [0, 65535], "that i sent you for e dro here's that i": [0, 65535], "i sent you for e dro here's that i warrant": [0, 65535], "sent you for e dro here's that i warrant you": [0, 65535], "you for e dro here's that i warrant you will": [0, 65535], "for e dro here's that i warrant you will pay": [0, 65535], "e dro here's that i warrant you will pay them": [0, 65535], "dro here's that i warrant you will pay them all": [0, 65535], "here's that i warrant you will pay them all anti": [0, 65535], "that i warrant you will pay them all anti but": [0, 65535], "i warrant you will pay them all anti but where's": [0, 65535], "warrant you will pay them all anti but where's the": [0, 65535], "you will pay them all anti but where's the money": [0, 65535], "will pay them all anti but where's the money e": [0, 65535], "pay them all anti but where's the money e dro": [0, 65535], "them all anti but where's the money e dro why": [0, 65535], "all anti but where's the money e dro why sir": [0, 65535], "anti but where's the money e dro why sir i": [0, 65535], "but where's the money e dro why sir i gaue": [0, 65535], "where's the money e dro why sir i gaue the": [0, 65535], "the money e dro why sir i gaue the monie": [0, 65535], "money e dro why sir i gaue the monie for": [0, 65535], "e dro why sir i gaue the monie for the": [0, 65535], "dro why sir i gaue the monie for the rope": [0, 65535], "why sir i gaue the monie for the rope ant": [0, 65535], "sir i gaue the monie for the rope ant fiue": [0, 65535], "i gaue the monie for the rope ant fiue hundred": [0, 65535], "gaue the monie for the rope ant fiue hundred duckets": [0, 65535], "the monie for the rope ant fiue hundred duckets villaine": [0, 65535], "monie for the rope ant fiue hundred duckets villaine for": [0, 65535], "for the rope ant fiue hundred duckets villaine for a": [0, 65535], "the rope ant fiue hundred duckets villaine for a rope": [0, 65535], "rope ant fiue hundred duckets villaine for a rope e": [0, 65535], "ant fiue hundred duckets villaine for a rope e dro": [0, 65535], "fiue hundred duckets villaine for a rope e dro ile": [0, 65535], "hundred duckets villaine for a rope e dro ile serue": [0, 65535], "duckets villaine for a rope e dro ile serue you": [0, 65535], "villaine for a rope e dro ile serue you sir": [0, 65535], "for a rope e dro ile serue you sir fiue": [0, 65535], "a rope e dro ile serue you sir fiue hundred": [0, 65535], "rope e dro ile serue you sir fiue hundred at": [0, 65535], "e dro ile serue you sir fiue hundred at the": [0, 65535], "dro ile serue you sir fiue hundred at the rate": [0, 65535], "ile serue you sir fiue hundred at the rate ant": [0, 65535], "serue you sir fiue hundred at the rate ant to": [0, 65535], "you sir fiue hundred at the rate ant to what": [0, 65535], "sir fiue hundred at the rate ant to what end": [0, 65535], "fiue hundred at the rate ant to what end did": [0, 65535], "hundred at the rate ant to what end did i": [0, 65535], "at the rate ant to what end did i bid": [0, 65535], "the rate ant to what end did i bid thee": [0, 65535], "rate ant to what end did i bid thee hie": [0, 65535], "ant to what end did i bid thee hie thee": [0, 65535], "to what end did i bid thee hie thee home": [0, 65535], "what end did i bid thee hie thee home e": [0, 65535], "end did i bid thee hie thee home e dro": [0, 65535], "did i bid thee hie thee home e dro to": [0, 65535], "i bid thee hie thee home e dro to a": [0, 65535], "bid thee hie thee home e dro to a ropes": [0, 65535], "thee hie thee home e dro to a ropes end": [0, 65535], "hie thee home e dro to a ropes end sir": [0, 65535], "thee home e dro to a ropes end sir and": [0, 65535], "home e dro to a ropes end sir and to": [0, 65535], "e dro to a ropes end sir and to that": [0, 65535], "dro to a ropes end sir and to that end": [0, 65535], "to a ropes end sir and to that end am": [0, 65535], "a ropes end sir and to that end am i": [0, 65535], "ropes end sir and to that end am i re": [0, 65535], "end sir and to that end am i re turn'd": [0, 65535], "sir and to that end am i re turn'd ant": [0, 65535], "and to that end am i re turn'd ant and": [0, 65535], "to that end am i re turn'd ant and to": [0, 65535], "that end am i re turn'd ant and to that": [0, 65535], "end am i re turn'd ant and to that end": [0, 65535], "am i re turn'd ant and to that end sir": [0, 65535], "i re turn'd ant and to that end sir i": [0, 65535], "re turn'd ant and to that end sir i will": [0, 65535], "turn'd ant and to that end sir i will welcome": [0, 65535], "ant and to that end sir i will welcome you": [0, 65535], "and to that end sir i will welcome you offi": [0, 65535], "to that end sir i will welcome you offi good": [0, 65535], "that end sir i will welcome you offi good sir": [0, 65535], "end sir i will welcome you offi good sir be": [0, 65535], "sir i will welcome you offi good sir be patient": [0, 65535], "i will welcome you offi good sir be patient e": [0, 65535], "will welcome you offi good sir be patient e dro": [0, 65535], "welcome you offi good sir be patient e dro nay": [0, 65535], "you offi good sir be patient e dro nay 'tis": [0, 65535], "offi good sir be patient e dro nay 'tis for": [0, 65535], "good sir be patient e dro nay 'tis for me": [0, 65535], "sir be patient e dro nay 'tis for me to": [0, 65535], "be patient e dro nay 'tis for me to be": [0, 65535], "patient e dro nay 'tis for me to be patient": [0, 65535], "e dro nay 'tis for me to be patient i": [0, 65535], "dro nay 'tis for me to be patient i am": [0, 65535], "nay 'tis for me to be patient i am in": [0, 65535], "'tis for me to be patient i am in aduersitie": [0, 65535], "for me to be patient i am in aduersitie offi": [0, 65535], "me to be patient i am in aduersitie offi good": [0, 65535], "to be patient i am in aduersitie offi good now": [0, 65535], "be patient i am in aduersitie offi good now hold": [0, 65535], "patient i am in aduersitie offi good now hold thy": [0, 65535], "i am in aduersitie offi good now hold thy tongue": [0, 65535], "am in aduersitie offi good now hold thy tongue e": [0, 65535], "in aduersitie offi good now hold thy tongue e dro": [0, 65535], "aduersitie offi good now hold thy tongue e dro nay": [0, 65535], "offi good now hold thy tongue e dro nay rather": [0, 65535], "good now hold thy tongue e dro nay rather perswade": [0, 65535], "now hold thy tongue e dro nay rather perswade him": [0, 65535], "hold thy tongue e dro nay rather perswade him to": [0, 65535], "thy tongue e dro nay rather perswade him to hold": [0, 65535], "tongue e dro nay rather perswade him to hold his": [0, 65535], "e dro nay rather perswade him to hold his hands": [0, 65535], "dro nay rather perswade him to hold his hands anti": [0, 65535], "nay rather perswade him to hold his hands anti thou": [0, 65535], "rather perswade him to hold his hands anti thou whoreson": [0, 65535], "perswade him to hold his hands anti thou whoreson senselesse": [0, 65535], "him to hold his hands anti thou whoreson senselesse villaine": [0, 65535], "to hold his hands anti thou whoreson senselesse villaine e": [0, 65535], "hold his hands anti thou whoreson senselesse villaine e dro": [0, 65535], "his hands anti thou whoreson senselesse villaine e dro i": [0, 65535], "hands anti thou whoreson senselesse villaine e dro i would": [0, 65535], "anti thou whoreson senselesse villaine e dro i would i": [0, 65535], "thou whoreson senselesse villaine e dro i would i were": [0, 65535], "whoreson senselesse villaine e dro i would i were senselesse": [0, 65535], "senselesse villaine e dro i would i were senselesse sir": [0, 65535], "villaine e dro i would i were senselesse sir that": [0, 65535], "e dro i would i were senselesse sir that i": [0, 65535], "dro i would i were senselesse sir that i might": [0, 65535], "i would i were senselesse sir that i might not": [0, 65535], "would i were senselesse sir that i might not feele": [0, 65535], "i were senselesse sir that i might not feele your": [0, 65535], "were senselesse sir that i might not feele your blowes": [0, 65535], "senselesse sir that i might not feele your blowes anti": [0, 65535], "sir that i might not feele your blowes anti thou": [0, 65535], "that i might not feele your blowes anti thou art": [0, 65535], "i might not feele your blowes anti thou art sensible": [0, 65535], "might not feele your blowes anti thou art sensible in": [0, 65535], "not feele your blowes anti thou art sensible in nothing": [0, 65535], "feele your blowes anti thou art sensible in nothing but": [0, 65535], "your blowes anti thou art sensible in nothing but blowes": [0, 65535], "blowes anti thou art sensible in nothing but blowes and": [0, 65535], "anti thou art sensible in nothing but blowes and so": [0, 65535], "thou art sensible in nothing but blowes and so is": [0, 65535], "art sensible in nothing but blowes and so is an": [0, 65535], "sensible in nothing but blowes and so is an asse": [0, 65535], "in nothing but blowes and so is an asse e": [0, 65535], "nothing but blowes and so is an asse e dro": [0, 65535], "but blowes and so is an asse e dro i": [0, 65535], "blowes and so is an asse e dro i am": [0, 65535], "and so is an asse e dro i am an": [0, 65535], "so is an asse e dro i am an asse": [0, 65535], "is an asse e dro i am an asse indeede": [0, 65535], "an asse e dro i am an asse indeede you": [0, 65535], "asse e dro i am an asse indeede you may": [0, 65535], "e dro i am an asse indeede you may prooue": [0, 65535], "dro i am an asse indeede you may prooue it": [0, 65535], "i am an asse indeede you may prooue it by": [0, 65535], "am an asse indeede you may prooue it by my": [0, 65535], "an asse indeede you may prooue it by my long": [0, 65535], "asse indeede you may prooue it by my long eares": [0, 65535], "indeede you may prooue it by my long eares i": [0, 65535], "you may prooue it by my long eares i haue": [0, 65535], "may prooue it by my long eares i haue serued": [0, 65535], "prooue it by my long eares i haue serued him": [0, 65535], "it by my long eares i haue serued him from": [0, 65535], "by my long eares i haue serued him from the": [0, 65535], "my long eares i haue serued him from the houre": [0, 65535], "long eares i haue serued him from the houre of": [0, 65535], "eares i haue serued him from the houre of my": [0, 65535], "i haue serued him from the houre of my natiuitie": [0, 65535], "haue serued him from the houre of my natiuitie to": [0, 65535], "serued him from the houre of my natiuitie to this": [0, 65535], "him from the houre of my natiuitie to this instant": [0, 65535], "from the houre of my natiuitie to this instant and": [0, 65535], "the houre of my natiuitie to this instant and haue": [0, 65535], "houre of my natiuitie to this instant and haue nothing": [0, 65535], "of my natiuitie to this instant and haue nothing at": [0, 65535], "my natiuitie to this instant and haue nothing at his": [0, 65535], "natiuitie to this instant and haue nothing at his hands": [0, 65535], "to this instant and haue nothing at his hands for": [0, 65535], "this instant and haue nothing at his hands for my": [0, 65535], "instant and haue nothing at his hands for my seruice": [0, 65535], "and haue nothing at his hands for my seruice but": [0, 65535], "haue nothing at his hands for my seruice but blowes": [0, 65535], "nothing at his hands for my seruice but blowes when": [0, 65535], "at his hands for my seruice but blowes when i": [0, 65535], "his hands for my seruice but blowes when i am": [0, 65535], "hands for my seruice but blowes when i am cold": [0, 65535], "for my seruice but blowes when i am cold he": [0, 65535], "my seruice but blowes when i am cold he heates": [0, 65535], "seruice but blowes when i am cold he heates me": [0, 65535], "but blowes when i am cold he heates me with": [0, 65535], "blowes when i am cold he heates me with beating": [0, 65535], "when i am cold he heates me with beating when": [0, 65535], "i am cold he heates me with beating when i": [0, 65535], "am cold he heates me with beating when i am": [0, 65535], "cold he heates me with beating when i am warme": [0, 65535], "he heates me with beating when i am warme he": [0, 65535], "heates me with beating when i am warme he cooles": [0, 65535], "me with beating when i am warme he cooles me": [0, 65535], "with beating when i am warme he cooles me with": [0, 65535], "beating when i am warme he cooles me with beating": [0, 65535], "when i am warme he cooles me with beating i": [0, 65535], "i am warme he cooles me with beating i am": [0, 65535], "am warme he cooles me with beating i am wak'd": [0, 65535], "warme he cooles me with beating i am wak'd with": [0, 65535], "he cooles me with beating i am wak'd with it": [0, 65535], "cooles me with beating i am wak'd with it when": [0, 65535], "me with beating i am wak'd with it when i": [0, 65535], "with beating i am wak'd with it when i sleepe": [0, 65535], "beating i am wak'd with it when i sleepe rais'd": [0, 65535], "i am wak'd with it when i sleepe rais'd with": [0, 65535], "am wak'd with it when i sleepe rais'd with it": [0, 65535], "wak'd with it when i sleepe rais'd with it when": [0, 65535], "with it when i sleepe rais'd with it when i": [0, 65535], "it when i sleepe rais'd with it when i sit": [0, 65535], "when i sleepe rais'd with it when i sit driuen": [0, 65535], "i sleepe rais'd with it when i sit driuen out": [0, 65535], "sleepe rais'd with it when i sit driuen out of": [0, 65535], "rais'd with it when i sit driuen out of doores": [0, 65535], "with it when i sit driuen out of doores with": [0, 65535], "it when i sit driuen out of doores with it": [0, 65535], "when i sit driuen out of doores with it when": [0, 65535], "i sit driuen out of doores with it when i": [0, 65535], "sit driuen out of doores with it when i goe": [0, 65535], "driuen out of doores with it when i goe from": [0, 65535], "out of doores with it when i goe from home": [0, 65535], "of doores with it when i goe from home welcom'd": [0, 65535], "doores with it when i goe from home welcom'd home": [0, 65535], "with it when i goe from home welcom'd home with": [0, 65535], "it when i goe from home welcom'd home with it": [0, 65535], "when i goe from home welcom'd home with it when": [0, 65535], "i goe from home welcom'd home with it when i": [0, 65535], "goe from home welcom'd home with it when i returne": [0, 65535], "from home welcom'd home with it when i returne nay": [0, 65535], "home welcom'd home with it when i returne nay i": [0, 65535], "welcom'd home with it when i returne nay i beare": [0, 65535], "home with it when i returne nay i beare it": [0, 65535], "with it when i returne nay i beare it on": [0, 65535], "it when i returne nay i beare it on my": [0, 65535], "when i returne nay i beare it on my shoulders": [0, 65535], "i returne nay i beare it on my shoulders as": [0, 65535], "returne nay i beare it on my shoulders as a": [0, 65535], "nay i beare it on my shoulders as a begger": [0, 65535], "i beare it on my shoulders as a begger woont": [0, 65535], "beare it on my shoulders as a begger woont her": [0, 65535], "it on my shoulders as a begger woont her brat": [0, 65535], "on my shoulders as a begger woont her brat and": [0, 65535], "my shoulders as a begger woont her brat and i": [0, 65535], "shoulders as a begger woont her brat and i thinke": [0, 65535], "as a begger woont her brat and i thinke when": [0, 65535], "a begger woont her brat and i thinke when he": [0, 65535], "begger woont her brat and i thinke when he hath": [0, 65535], "woont her brat and i thinke when he hath lam'd": [0, 65535], "her brat and i thinke when he hath lam'd me": [0, 65535], "brat and i thinke when he hath lam'd me i": [0, 65535], "and i thinke when he hath lam'd me i shall": [0, 65535], "i thinke when he hath lam'd me i shall begge": [0, 65535], "thinke when he hath lam'd me i shall begge with": [0, 65535], "when he hath lam'd me i shall begge with it": [0, 65535], "he hath lam'd me i shall begge with it from": [0, 65535], "hath lam'd me i shall begge with it from doore": [0, 65535], "lam'd me i shall begge with it from doore to": [0, 65535], "me i shall begge with it from doore to doore": [0, 65535], "i shall begge with it from doore to doore enter": [0, 65535], "shall begge with it from doore to doore enter adriana": [0, 65535], "begge with it from doore to doore enter adriana luciana": [0, 65535], "with it from doore to doore enter adriana luciana courtizan": [0, 65535], "it from doore to doore enter adriana luciana courtizan and": [0, 65535], "from doore to doore enter adriana luciana courtizan and a": [0, 65535], "doore to doore enter adriana luciana courtizan and a schoolemaster": [0, 65535], "to doore enter adriana luciana courtizan and a schoolemaster call'd": [0, 65535], "doore enter adriana luciana courtizan and a schoolemaster call'd pinch": [0, 65535], "enter adriana luciana courtizan and a schoolemaster call'd pinch ant": [0, 65535], "adriana luciana courtizan and a schoolemaster call'd pinch ant come": [0, 65535], "luciana courtizan and a schoolemaster call'd pinch ant come goe": [0, 65535], "courtizan and a schoolemaster call'd pinch ant come goe along": [0, 65535], "and a schoolemaster call'd pinch ant come goe along my": [0, 65535], "a schoolemaster call'd pinch ant come goe along my wife": [0, 65535], "schoolemaster call'd pinch ant come goe along my wife is": [0, 65535], "call'd pinch ant come goe along my wife is comming": [0, 65535], "pinch ant come goe along my wife is comming yonder": [0, 65535], "ant come goe along my wife is comming yonder e": [0, 65535], "come goe along my wife is comming yonder e dro": [0, 65535], "goe along my wife is comming yonder e dro mistris": [0, 65535], "along my wife is comming yonder e dro mistris respice": [0, 65535], "my wife is comming yonder e dro mistris respice finem": [0, 65535], "wife is comming yonder e dro mistris respice finem respect": [0, 65535], "is comming yonder e dro mistris respice finem respect your": [0, 65535], "comming yonder e dro mistris respice finem respect your end": [0, 65535], "yonder e dro mistris respice finem respect your end or": [0, 65535], "e dro mistris respice finem respect your end or rather": [0, 65535], "dro mistris respice finem respect your end or rather the": [0, 65535], "mistris respice finem respect your end or rather the prophesie": [0, 65535], "respice finem respect your end or rather the prophesie like": [0, 65535], "finem respect your end or rather the prophesie like the": [0, 65535], "respect your end or rather the prophesie like the parrat": [0, 65535], "your end or rather the prophesie like the parrat beware": [0, 65535], "end or rather the prophesie like the parrat beware the": [0, 65535], "or rather the prophesie like the parrat beware the ropes": [0, 65535], "rather the prophesie like the parrat beware the ropes end": [0, 65535], "the prophesie like the parrat beware the ropes end anti": [0, 65535], "prophesie like the parrat beware the ropes end anti wilt": [0, 65535], "like the parrat beware the ropes end anti wilt thou": [0, 65535], "the parrat beware the ropes end anti wilt thou still": [0, 65535], "parrat beware the ropes end anti wilt thou still talke": [0, 65535], "beware the ropes end anti wilt thou still talke beats": [0, 65535], "the ropes end anti wilt thou still talke beats dro": [0, 65535], "ropes end anti wilt thou still talke beats dro curt": [0, 65535], "end anti wilt thou still talke beats dro curt how": [0, 65535], "anti wilt thou still talke beats dro curt how say": [0, 65535], "wilt thou still talke beats dro curt how say you": [0, 65535], "thou still talke beats dro curt how say you now": [0, 65535], "still talke beats dro curt how say you now is": [0, 65535], "talke beats dro curt how say you now is not": [0, 65535], "beats dro curt how say you now is not your": [0, 65535], "dro curt how say you now is not your husband": [0, 65535], "curt how say you now is not your husband mad": [0, 65535], "how say you now is not your husband mad adri": [0, 65535], "say you now is not your husband mad adri his": [0, 65535], "you now is not your husband mad adri his inciuility": [0, 65535], "now is not your husband mad adri his inciuility confirmes": [0, 65535], "is not your husband mad adri his inciuility confirmes no": [0, 65535], "not your husband mad adri his inciuility confirmes no lesse": [0, 65535], "your husband mad adri his inciuility confirmes no lesse good": [0, 65535], "husband mad adri his inciuility confirmes no lesse good doctor": [0, 65535], "mad adri his inciuility confirmes no lesse good doctor pinch": [0, 65535], "adri his inciuility confirmes no lesse good doctor pinch you": [0, 65535], "his inciuility confirmes no lesse good doctor pinch you are": [0, 65535], "inciuility confirmes no lesse good doctor pinch you are a": [0, 65535], "confirmes no lesse good doctor pinch you are a coniurer": [0, 65535], "no lesse good doctor pinch you are a coniurer establish": [0, 65535], "lesse good doctor pinch you are a coniurer establish him": [0, 65535], "good doctor pinch you are a coniurer establish him in": [0, 65535], "doctor pinch you are a coniurer establish him in his": [0, 65535], "pinch you are a coniurer establish him in his true": [0, 65535], "you are a coniurer establish him in his true sence": [0, 65535], "are a coniurer establish him in his true sence againe": [0, 65535], "a coniurer establish him in his true sence againe and": [0, 65535], "coniurer establish him in his true sence againe and i": [0, 65535], "establish him in his true sence againe and i will": [0, 65535], "him in his true sence againe and i will please": [0, 65535], "in his true sence againe and i will please you": [0, 65535], "his true sence againe and i will please you what": [0, 65535], "true sence againe and i will please you what you": [0, 65535], "sence againe and i will please you what you will": [0, 65535], "againe and i will please you what you will demand": [0, 65535], "and i will please you what you will demand luc": [0, 65535], "i will please you what you will demand luc alas": [0, 65535], "will please you what you will demand luc alas how": [0, 65535], "please you what you will demand luc alas how fiery": [0, 65535], "you what you will demand luc alas how fiery and": [0, 65535], "what you will demand luc alas how fiery and how": [0, 65535], "you will demand luc alas how fiery and how sharpe": [0, 65535], "will demand luc alas how fiery and how sharpe he": [0, 65535], "demand luc alas how fiery and how sharpe he lookes": [0, 65535], "luc alas how fiery and how sharpe he lookes cur": [0, 65535], "alas how fiery and how sharpe he lookes cur marke": [0, 65535], "how fiery and how sharpe he lookes cur marke how": [0, 65535], "fiery and how sharpe he lookes cur marke how he": [0, 65535], "and how sharpe he lookes cur marke how he trembles": [0, 65535], "how sharpe he lookes cur marke how he trembles in": [0, 65535], "sharpe he lookes cur marke how he trembles in his": [0, 65535], "he lookes cur marke how he trembles in his extasie": [0, 65535], "lookes cur marke how he trembles in his extasie pinch": [0, 65535], "cur marke how he trembles in his extasie pinch giue": [0, 65535], "marke how he trembles in his extasie pinch giue me": [0, 65535], "how he trembles in his extasie pinch giue me your": [0, 65535], "he trembles in his extasie pinch giue me your hand": [0, 65535], "trembles in his extasie pinch giue me your hand and": [0, 65535], "in his extasie pinch giue me your hand and let": [0, 65535], "his extasie pinch giue me your hand and let mee": [0, 65535], "extasie pinch giue me your hand and let mee feele": [0, 65535], "pinch giue me your hand and let mee feele your": [0, 65535], "giue me your hand and let mee feele your pulse": [0, 65535], "me your hand and let mee feele your pulse ant": [0, 65535], "your hand and let mee feele your pulse ant there": [0, 65535], "hand and let mee feele your pulse ant there is": [0, 65535], "and let mee feele your pulse ant there is my": [0, 65535], "let mee feele your pulse ant there is my hand": [0, 65535], "mee feele your pulse ant there is my hand and": [0, 65535], "feele your pulse ant there is my hand and let": [0, 65535], "your pulse ant there is my hand and let it": [0, 65535], "pulse ant there is my hand and let it feele": [0, 65535], "ant there is my hand and let it feele your": [0, 65535], "there is my hand and let it feele your eare": [0, 65535], "is my hand and let it feele your eare pinch": [0, 65535], "my hand and let it feele your eare pinch i": [0, 65535], "hand and let it feele your eare pinch i charge": [0, 65535], "and let it feele your eare pinch i charge thee": [0, 65535], "let it feele your eare pinch i charge thee sathan": [0, 65535], "it feele your eare pinch i charge thee sathan hous'd": [0, 65535], "feele your eare pinch i charge thee sathan hous'd within": [0, 65535], "your eare pinch i charge thee sathan hous'd within this": [0, 65535], "eare pinch i charge thee sathan hous'd within this man": [0, 65535], "pinch i charge thee sathan hous'd within this man to": [0, 65535], "i charge thee sathan hous'd within this man to yeeld": [0, 65535], "charge thee sathan hous'd within this man to yeeld possession": [0, 65535], "thee sathan hous'd within this man to yeeld possession to": [0, 65535], "sathan hous'd within this man to yeeld possession to my": [0, 65535], "hous'd within this man to yeeld possession to my holie": [0, 65535], "within this man to yeeld possession to my holie praiers": [0, 65535], "this man to yeeld possession to my holie praiers and": [0, 65535], "man to yeeld possession to my holie praiers and to": [0, 65535], "to yeeld possession to my holie praiers and to thy": [0, 65535], "yeeld possession to my holie praiers and to thy state": [0, 65535], "possession to my holie praiers and to thy state of": [0, 65535], "to my holie praiers and to thy state of darknesse": [0, 65535], "my holie praiers and to thy state of darknesse hie": [0, 65535], "holie praiers and to thy state of darknesse hie thee": [0, 65535], "praiers and to thy state of darknesse hie thee straight": [0, 65535], "and to thy state of darknesse hie thee straight i": [0, 65535], "to thy state of darknesse hie thee straight i coniure": [0, 65535], "thy state of darknesse hie thee straight i coniure thee": [0, 65535], "state of darknesse hie thee straight i coniure thee by": [0, 65535], "of darknesse hie thee straight i coniure thee by all": [0, 65535], "darknesse hie thee straight i coniure thee by all the": [0, 65535], "hie thee straight i coniure thee by all the saints": [0, 65535], "thee straight i coniure thee by all the saints in": [0, 65535], "straight i coniure thee by all the saints in heauen": [0, 65535], "i coniure thee by all the saints in heauen anti": [0, 65535], "coniure thee by all the saints in heauen anti peace": [0, 65535], "thee by all the saints in heauen anti peace doting": [0, 65535], "by all the saints in heauen anti peace doting wizard": [0, 65535], "all the saints in heauen anti peace doting wizard peace": [0, 65535], "the saints in heauen anti peace doting wizard peace i": [0, 65535], "saints in heauen anti peace doting wizard peace i am": [0, 65535], "in heauen anti peace doting wizard peace i am not": [0, 65535], "heauen anti peace doting wizard peace i am not mad": [0, 65535], "anti peace doting wizard peace i am not mad adr": [0, 65535], "peace doting wizard peace i am not mad adr oh": [0, 65535], "doting wizard peace i am not mad adr oh that": [0, 65535], "wizard peace i am not mad adr oh that thou": [0, 65535], "peace i am not mad adr oh that thou wer't": [0, 65535], "i am not mad adr oh that thou wer't not": [0, 65535], "am not mad adr oh that thou wer't not poore": [0, 65535], "not mad adr oh that thou wer't not poore distressed": [0, 65535], "mad adr oh that thou wer't not poore distressed soule": [0, 65535], "adr oh that thou wer't not poore distressed soule anti": [0, 65535], "oh that thou wer't not poore distressed soule anti you": [0, 65535], "that thou wer't not poore distressed soule anti you minion": [0, 65535], "thou wer't not poore distressed soule anti you minion you": [0, 65535], "wer't not poore distressed soule anti you minion you are": [0, 65535], "not poore distressed soule anti you minion you are these": [0, 65535], "poore distressed soule anti you minion you are these your": [0, 65535], "distressed soule anti you minion you are these your customers": [0, 65535], "soule anti you minion you are these your customers did": [0, 65535], "anti you minion you are these your customers did this": [0, 65535], "you minion you are these your customers did this companion": [0, 65535], "minion you are these your customers did this companion with": [0, 65535], "you are these your customers did this companion with the": [0, 65535], "are these your customers did this companion with the saffron": [0, 65535], "these your customers did this companion with the saffron face": [0, 65535], "your customers did this companion with the saffron face reuell": [0, 65535], "customers did this companion with the saffron face reuell and": [0, 65535], "did this companion with the saffron face reuell and feast": [0, 65535], "this companion with the saffron face reuell and feast it": [0, 65535], "companion with the saffron face reuell and feast it at": [0, 65535], "with the saffron face reuell and feast it at my": [0, 65535], "the saffron face reuell and feast it at my house": [0, 65535], "saffron face reuell and feast it at my house to": [0, 65535], "face reuell and feast it at my house to day": [0, 65535], "reuell and feast it at my house to day whil'st": [0, 65535], "and feast it at my house to day whil'st vpon": [0, 65535], "feast it at my house to day whil'st vpon me": [0, 65535], "it at my house to day whil'st vpon me the": [0, 65535], "at my house to day whil'st vpon me the guiltie": [0, 65535], "my house to day whil'st vpon me the guiltie doores": [0, 65535], "house to day whil'st vpon me the guiltie doores were": [0, 65535], "to day whil'st vpon me the guiltie doores were shut": [0, 65535], "day whil'st vpon me the guiltie doores were shut and": [0, 65535], "whil'st vpon me the guiltie doores were shut and i": [0, 65535], "vpon me the guiltie doores were shut and i denied": [0, 65535], "me the guiltie doores were shut and i denied to": [0, 65535], "the guiltie doores were shut and i denied to enter": [0, 65535], "guiltie doores were shut and i denied to enter in": [0, 65535], "doores were shut and i denied to enter in my": [0, 65535], "were shut and i denied to enter in my house": [0, 65535], "shut and i denied to enter in my house adr": [0, 65535], "and i denied to enter in my house adr o": [0, 65535], "i denied to enter in my house adr o husband": [0, 65535], "denied to enter in my house adr o husband god": [0, 65535], "to enter in my house adr o husband god doth": [0, 65535], "enter in my house adr o husband god doth know": [0, 65535], "in my house adr o husband god doth know you": [0, 65535], "my house adr o husband god doth know you din'd": [0, 65535], "house adr o husband god doth know you din'd at": [0, 65535], "adr o husband god doth know you din'd at home": [0, 65535], "o husband god doth know you din'd at home where": [0, 65535], "husband god doth know you din'd at home where would": [0, 65535], "god doth know you din'd at home where would you": [0, 65535], "doth know you din'd at home where would you had": [0, 65535], "know you din'd at home where would you had remain'd": [0, 65535], "you din'd at home where would you had remain'd vntill": [0, 65535], "din'd at home where would you had remain'd vntill this": [0, 65535], "at home where would you had remain'd vntill this time": [0, 65535], "home where would you had remain'd vntill this time free": [0, 65535], "where would you had remain'd vntill this time free from": [0, 65535], "would you had remain'd vntill this time free from these": [0, 65535], "you had remain'd vntill this time free from these slanders": [0, 65535], "had remain'd vntill this time free from these slanders and": [0, 65535], "remain'd vntill this time free from these slanders and this": [0, 65535], "vntill this time free from these slanders and this open": [0, 65535], "this time free from these slanders and this open shame": [0, 65535], "time free from these slanders and this open shame anti": [0, 65535], "free from these slanders and this open shame anti din'd": [0, 65535], "from these slanders and this open shame anti din'd at": [0, 65535], "these slanders and this open shame anti din'd at home": [0, 65535], "slanders and this open shame anti din'd at home thou": [0, 65535], "and this open shame anti din'd at home thou villaine": [0, 65535], "this open shame anti din'd at home thou villaine what": [0, 65535], "open shame anti din'd at home thou villaine what sayest": [0, 65535], "shame anti din'd at home thou villaine what sayest thou": [0, 65535], "anti din'd at home thou villaine what sayest thou dro": [0, 65535], "din'd at home thou villaine what sayest thou dro sir": [0, 65535], "at home thou villaine what sayest thou dro sir sooth": [0, 65535], "home thou villaine what sayest thou dro sir sooth to": [0, 65535], "thou villaine what sayest thou dro sir sooth to say": [0, 65535], "villaine what sayest thou dro sir sooth to say you": [0, 65535], "what sayest thou dro sir sooth to say you did": [0, 65535], "sayest thou dro sir sooth to say you did not": [0, 65535], "thou dro sir sooth to say you did not dine": [0, 65535], "dro sir sooth to say you did not dine at": [0, 65535], "sir sooth to say you did not dine at home": [0, 65535], "sooth to say you did not dine at home ant": [0, 65535], "to say you did not dine at home ant were": [0, 65535], "say you did not dine at home ant were not": [0, 65535], "you did not dine at home ant were not my": [0, 65535], "did not dine at home ant were not my doores": [0, 65535], "not dine at home ant were not my doores lockt": [0, 65535], "dine at home ant were not my doores lockt vp": [0, 65535], "at home ant were not my doores lockt vp and": [0, 65535], "home ant were not my doores lockt vp and i": [0, 65535], "ant were not my doores lockt vp and i shut": [0, 65535], "were not my doores lockt vp and i shut out": [0, 65535], "not my doores lockt vp and i shut out dro": [0, 65535], "my doores lockt vp and i shut out dro perdie": [0, 65535], "doores lockt vp and i shut out dro perdie your": [0, 65535], "lockt vp and i shut out dro perdie your doores": [0, 65535], "vp and i shut out dro perdie your doores were": [0, 65535], "and i shut out dro perdie your doores were lockt": [0, 65535], "i shut out dro perdie your doores were lockt and": [0, 65535], "shut out dro perdie your doores were lockt and you": [0, 65535], "out dro perdie your doores were lockt and you shut": [0, 65535], "dro perdie your doores were lockt and you shut out": [0, 65535], "perdie your doores were lockt and you shut out anti": [0, 65535], "your doores were lockt and you shut out anti and": [0, 65535], "doores were lockt and you shut out anti and did": [0, 65535], "were lockt and you shut out anti and did not": [0, 65535], "lockt and you shut out anti and did not she": [0, 65535], "and you shut out anti and did not she her": [0, 65535], "you shut out anti and did not she her selfe": [0, 65535], "shut out anti and did not she her selfe reuile": [0, 65535], "out anti and did not she her selfe reuile me": [0, 65535], "anti and did not she her selfe reuile me there": [0, 65535], "and did not she her selfe reuile me there dro": [0, 65535], "did not she her selfe reuile me there dro sans": [0, 65535], "not she her selfe reuile me there dro sans fable": [0, 65535], "she her selfe reuile me there dro sans fable she": [0, 65535], "her selfe reuile me there dro sans fable she her": [0, 65535], "selfe reuile me there dro sans fable she her selfe": [0, 65535], "reuile me there dro sans fable she her selfe reuil'd": [0, 65535], "me there dro sans fable she her selfe reuil'd you": [0, 65535], "there dro sans fable she her selfe reuil'd you there": [0, 65535], "dro sans fable she her selfe reuil'd you there anti": [0, 65535], "sans fable she her selfe reuil'd you there anti did": [0, 65535], "fable she her selfe reuil'd you there anti did not": [0, 65535], "she her selfe reuil'd you there anti did not her": [0, 65535], "her selfe reuil'd you there anti did not her kitchen": [0, 65535], "selfe reuil'd you there anti did not her kitchen maide": [0, 65535], "reuil'd you there anti did not her kitchen maide raile": [0, 65535], "you there anti did not her kitchen maide raile taunt": [0, 65535], "there anti did not her kitchen maide raile taunt and": [0, 65535], "anti did not her kitchen maide raile taunt and scorne": [0, 65535], "did not her kitchen maide raile taunt and scorne me": [0, 65535], "not her kitchen maide raile taunt and scorne me dro": [0, 65535], "her kitchen maide raile taunt and scorne me dro certis": [0, 65535], "kitchen maide raile taunt and scorne me dro certis she": [0, 65535], "maide raile taunt and scorne me dro certis she did": [0, 65535], "raile taunt and scorne me dro certis she did the": [0, 65535], "taunt and scorne me dro certis she did the kitchin": [0, 65535], "and scorne me dro certis she did the kitchin vestall": [0, 65535], "scorne me dro certis she did the kitchin vestall scorn'd": [0, 65535], "me dro certis she did the kitchin vestall scorn'd you": [0, 65535], "dro certis she did the kitchin vestall scorn'd you ant": [0, 65535], "certis she did the kitchin vestall scorn'd you ant and": [0, 65535], "she did the kitchin vestall scorn'd you ant and did": [0, 65535], "did the kitchin vestall scorn'd you ant and did not": [0, 65535], "the kitchin vestall scorn'd you ant and did not i": [0, 65535], "kitchin vestall scorn'd you ant and did not i in": [0, 65535], "vestall scorn'd you ant and did not i in rage": [0, 65535], "scorn'd you ant and did not i in rage depart": [0, 65535], "you ant and did not i in rage depart from": [0, 65535], "ant and did not i in rage depart from thence": [0, 65535], "and did not i in rage depart from thence dro": [0, 65535], "did not i in rage depart from thence dro in": [0, 65535], "not i in rage depart from thence dro in veritie": [0, 65535], "i in rage depart from thence dro in veritie you": [0, 65535], "in rage depart from thence dro in veritie you did": [0, 65535], "rage depart from thence dro in veritie you did my": [0, 65535], "depart from thence dro in veritie you did my bones": [0, 65535], "from thence dro in veritie you did my bones beares": [0, 65535], "thence dro in veritie you did my bones beares witnesse": [0, 65535], "dro in veritie you did my bones beares witnesse that": [0, 65535], "in veritie you did my bones beares witnesse that since": [0, 65535], "veritie you did my bones beares witnesse that since haue": [0, 65535], "you did my bones beares witnesse that since haue felt": [0, 65535], "did my bones beares witnesse that since haue felt the": [0, 65535], "my bones beares witnesse that since haue felt the vigor": [0, 65535], "bones beares witnesse that since haue felt the vigor of": [0, 65535], "beares witnesse that since haue felt the vigor of his": [0, 65535], "witnesse that since haue felt the vigor of his rage": [0, 65535], "that since haue felt the vigor of his rage adr": [0, 65535], "since haue felt the vigor of his rage adr is't": [0, 65535], "haue felt the vigor of his rage adr is't good": [0, 65535], "felt the vigor of his rage adr is't good to": [0, 65535], "the vigor of his rage adr is't good to sooth": [0, 65535], "vigor of his rage adr is't good to sooth him": [0, 65535], "of his rage adr is't good to sooth him in": [0, 65535], "his rage adr is't good to sooth him in these": [0, 65535], "rage adr is't good to sooth him in these contraries": [0, 65535], "adr is't good to sooth him in these contraries pinch": [0, 65535], "is't good to sooth him in these contraries pinch it": [0, 65535], "good to sooth him in these contraries pinch it is": [0, 65535], "to sooth him in these contraries pinch it is no": [0, 65535], "sooth him in these contraries pinch it is no shame": [0, 65535], "him in these contraries pinch it is no shame the": [0, 65535], "in these contraries pinch it is no shame the fellow": [0, 65535], "these contraries pinch it is no shame the fellow finds": [0, 65535], "contraries pinch it is no shame the fellow finds his": [0, 65535], "pinch it is no shame the fellow finds his vaine": [0, 65535], "it is no shame the fellow finds his vaine and": [0, 65535], "is no shame the fellow finds his vaine and yeelding": [0, 65535], "no shame the fellow finds his vaine and yeelding to": [0, 65535], "shame the fellow finds his vaine and yeelding to him": [0, 65535], "the fellow finds his vaine and yeelding to him humors": [0, 65535], "fellow finds his vaine and yeelding to him humors well": [0, 65535], "finds his vaine and yeelding to him humors well his": [0, 65535], "his vaine and yeelding to him humors well his frensie": [0, 65535], "vaine and yeelding to him humors well his frensie ant": [0, 65535], "and yeelding to him humors well his frensie ant thou": [0, 65535], "yeelding to him humors well his frensie ant thou hast": [0, 65535], "to him humors well his frensie ant thou hast subborn'd": [0, 65535], "him humors well his frensie ant thou hast subborn'd the": [0, 65535], "humors well his frensie ant thou hast subborn'd the goldsmith": [0, 65535], "well his frensie ant thou hast subborn'd the goldsmith to": [0, 65535], "his frensie ant thou hast subborn'd the goldsmith to arrest": [0, 65535], "frensie ant thou hast subborn'd the goldsmith to arrest mee": [0, 65535], "ant thou hast subborn'd the goldsmith to arrest mee adr": [0, 65535], "thou hast subborn'd the goldsmith to arrest mee adr alas": [0, 65535], "hast subborn'd the goldsmith to arrest mee adr alas i": [0, 65535], "subborn'd the goldsmith to arrest mee adr alas i sent": [0, 65535], "the goldsmith to arrest mee adr alas i sent you": [0, 65535], "goldsmith to arrest mee adr alas i sent you monie": [0, 65535], "to arrest mee adr alas i sent you monie to": [0, 65535], "arrest mee adr alas i sent you monie to redeeme": [0, 65535], "mee adr alas i sent you monie to redeeme you": [0, 65535], "adr alas i sent you monie to redeeme you by": [0, 65535], "alas i sent you monie to redeeme you by dromio": [0, 65535], "i sent you monie to redeeme you by dromio heere": [0, 65535], "sent you monie to redeeme you by dromio heere who": [0, 65535], "you monie to redeeme you by dromio heere who came": [0, 65535], "monie to redeeme you by dromio heere who came in": [0, 65535], "to redeeme you by dromio heere who came in hast": [0, 65535], "redeeme you by dromio heere who came in hast for": [0, 65535], "you by dromio heere who came in hast for it": [0, 65535], "by dromio heere who came in hast for it dro": [0, 65535], "dromio heere who came in hast for it dro monie": [0, 65535], "heere who came in hast for it dro monie by": [0, 65535], "who came in hast for it dro monie by me": [0, 65535], "came in hast for it dro monie by me heart": [0, 65535], "in hast for it dro monie by me heart and": [0, 65535], "hast for it dro monie by me heart and good": [0, 65535], "for it dro monie by me heart and good will": [0, 65535], "it dro monie by me heart and good will you": [0, 65535], "dro monie by me heart and good will you might": [0, 65535], "monie by me heart and good will you might but": [0, 65535], "by me heart and good will you might but surely": [0, 65535], "me heart and good will you might but surely master": [0, 65535], "heart and good will you might but surely master not": [0, 65535], "and good will you might but surely master not a": [0, 65535], "good will you might but surely master not a ragge": [0, 65535], "will you might but surely master not a ragge of": [0, 65535], "you might but surely master not a ragge of monie": [0, 65535], "might but surely master not a ragge of monie ant": [0, 65535], "but surely master not a ragge of monie ant wentst": [0, 65535], "surely master not a ragge of monie ant wentst not": [0, 65535], "master not a ragge of monie ant wentst not thou": [0, 65535], "not a ragge of monie ant wentst not thou to": [0, 65535], "a ragge of monie ant wentst not thou to her": [0, 65535], "ragge of monie ant wentst not thou to her for": [0, 65535], "of monie ant wentst not thou to her for a": [0, 65535], "monie ant wentst not thou to her for a purse": [0, 65535], "ant wentst not thou to her for a purse of": [0, 65535], "wentst not thou to her for a purse of duckets": [0, 65535], "not thou to her for a purse of duckets adri": [0, 65535], "thou to her for a purse of duckets adri he": [0, 65535], "to her for a purse of duckets adri he came": [0, 65535], "her for a purse of duckets adri he came to": [0, 65535], "for a purse of duckets adri he came to me": [0, 65535], "a purse of duckets adri he came to me and": [0, 65535], "purse of duckets adri he came to me and i": [0, 65535], "of duckets adri he came to me and i deliuer'd": [0, 65535], "duckets adri he came to me and i deliuer'd it": [0, 65535], "adri he came to me and i deliuer'd it luci": [0, 65535], "he came to me and i deliuer'd it luci and": [0, 65535], "came to me and i deliuer'd it luci and i": [0, 65535], "to me and i deliuer'd it luci and i am": [0, 65535], "me and i deliuer'd it luci and i am witnesse": [0, 65535], "and i deliuer'd it luci and i am witnesse with": [0, 65535], "i deliuer'd it luci and i am witnesse with her": [0, 65535], "deliuer'd it luci and i am witnesse with her that": [0, 65535], "it luci and i am witnesse with her that she": [0, 65535], "luci and i am witnesse with her that she did": [0, 65535], "and i am witnesse with her that she did dro": [0, 65535], "i am witnesse with her that she did dro god": [0, 65535], "am witnesse with her that she did dro god and": [0, 65535], "witnesse with her that she did dro god and the": [0, 65535], "with her that she did dro god and the rope": [0, 65535], "her that she did dro god and the rope maker": [0, 65535], "that she did dro god and the rope maker beare": [0, 65535], "she did dro god and the rope maker beare me": [0, 65535], "did dro god and the rope maker beare me witnesse": [0, 65535], "dro god and the rope maker beare me witnesse that": [0, 65535], "god and the rope maker beare me witnesse that i": [0, 65535], "and the rope maker beare me witnesse that i was": [0, 65535], "the rope maker beare me witnesse that i was sent": [0, 65535], "rope maker beare me witnesse that i was sent for": [0, 65535], "maker beare me witnesse that i was sent for nothing": [0, 65535], "beare me witnesse that i was sent for nothing but": [0, 65535], "me witnesse that i was sent for nothing but a": [0, 65535], "witnesse that i was sent for nothing but a rope": [0, 65535], "that i was sent for nothing but a rope pinch": [0, 65535], "i was sent for nothing but a rope pinch mistris": [0, 65535], "was sent for nothing but a rope pinch mistris both": [0, 65535], "sent for nothing but a rope pinch mistris both man": [0, 65535], "for nothing but a rope pinch mistris both man and": [0, 65535], "nothing but a rope pinch mistris both man and master": [0, 65535], "but a rope pinch mistris both man and master is": [0, 65535], "a rope pinch mistris both man and master is possest": [0, 65535], "rope pinch mistris both man and master is possest i": [0, 65535], "pinch mistris both man and master is possest i know": [0, 65535], "mistris both man and master is possest i know it": [0, 65535], "both man and master is possest i know it by": [0, 65535], "man and master is possest i know it by their": [0, 65535], "and master is possest i know it by their pale": [0, 65535], "master is possest i know it by their pale and": [0, 65535], "is possest i know it by their pale and deadly": [0, 65535], "possest i know it by their pale and deadly lookes": [0, 65535], "i know it by their pale and deadly lookes they": [0, 65535], "know it by their pale and deadly lookes they must": [0, 65535], "it by their pale and deadly lookes they must be": [0, 65535], "by their pale and deadly lookes they must be bound": [0, 65535], "their pale and deadly lookes they must be bound and": [0, 65535], "pale and deadly lookes they must be bound and laide": [0, 65535], "and deadly lookes they must be bound and laide in": [0, 65535], "deadly lookes they must be bound and laide in some": [0, 65535], "lookes they must be bound and laide in some darke": [0, 65535], "they must be bound and laide in some darke roome": [0, 65535], "must be bound and laide in some darke roome ant": [0, 65535], "be bound and laide in some darke roome ant say": [0, 65535], "bound and laide in some darke roome ant say wherefore": [0, 65535], "and laide in some darke roome ant say wherefore didst": [0, 65535], "laide in some darke roome ant say wherefore didst thou": [0, 65535], "in some darke roome ant say wherefore didst thou locke": [0, 65535], "some darke roome ant say wherefore didst thou locke me": [0, 65535], "darke roome ant say wherefore didst thou locke me forth": [0, 65535], "roome ant say wherefore didst thou locke me forth to": [0, 65535], "ant say wherefore didst thou locke me forth to day": [0, 65535], "say wherefore didst thou locke me forth to day and": [0, 65535], "wherefore didst thou locke me forth to day and why": [0, 65535], "didst thou locke me forth to day and why dost": [0, 65535], "thou locke me forth to day and why dost thou": [0, 65535], "locke me forth to day and why dost thou denie": [0, 65535], "me forth to day and why dost thou denie the": [0, 65535], "forth to day and why dost thou denie the bagge": [0, 65535], "to day and why dost thou denie the bagge of": [0, 65535], "day and why dost thou denie the bagge of gold": [0, 65535], "and why dost thou denie the bagge of gold adr": [0, 65535], "why dost thou denie the bagge of gold adr i": [0, 65535], "dost thou denie the bagge of gold adr i did": [0, 65535], "thou denie the bagge of gold adr i did not": [0, 65535], "denie the bagge of gold adr i did not gentle": [0, 65535], "the bagge of gold adr i did not gentle husband": [0, 65535], "bagge of gold adr i did not gentle husband locke": [0, 65535], "of gold adr i did not gentle husband locke thee": [0, 65535], "gold adr i did not gentle husband locke thee forth": [0, 65535], "adr i did not gentle husband locke thee forth dro": [0, 65535], "i did not gentle husband locke thee forth dro and": [0, 65535], "did not gentle husband locke thee forth dro and gentle": [0, 65535], "not gentle husband locke thee forth dro and gentle mr": [0, 65535], "gentle husband locke thee forth dro and gentle mr i": [0, 65535], "husband locke thee forth dro and gentle mr i receiu'd": [0, 65535], "locke thee forth dro and gentle mr i receiu'd no": [0, 65535], "thee forth dro and gentle mr i receiu'd no gold": [0, 65535], "forth dro and gentle mr i receiu'd no gold but": [0, 65535], "dro and gentle mr i receiu'd no gold but i": [0, 65535], "and gentle mr i receiu'd no gold but i confesse": [0, 65535], "gentle mr i receiu'd no gold but i confesse sir": [0, 65535], "mr i receiu'd no gold but i confesse sir that": [0, 65535], "i receiu'd no gold but i confesse sir that we": [0, 65535], "receiu'd no gold but i confesse sir that we were": [0, 65535], "no gold but i confesse sir that we were lock'd": [0, 65535], "gold but i confesse sir that we were lock'd out": [0, 65535], "but i confesse sir that we were lock'd out adr": [0, 65535], "i confesse sir that we were lock'd out adr dissembling": [0, 65535], "confesse sir that we were lock'd out adr dissembling villain": [0, 65535], "sir that we were lock'd out adr dissembling villain thou": [0, 65535], "that we were lock'd out adr dissembling villain thou speak'st": [0, 65535], "we were lock'd out adr dissembling villain thou speak'st false": [0, 65535], "were lock'd out adr dissembling villain thou speak'st false in": [0, 65535], "lock'd out adr dissembling villain thou speak'st false in both": [0, 65535], "out adr dissembling villain thou speak'st false in both ant": [0, 65535], "adr dissembling villain thou speak'st false in both ant dissembling": [0, 65535], "dissembling villain thou speak'st false in both ant dissembling harlot": [0, 65535], "villain thou speak'st false in both ant dissembling harlot thou": [0, 65535], "thou speak'st false in both ant dissembling harlot thou art": [0, 65535], "speak'st false in both ant dissembling harlot thou art false": [0, 65535], "false in both ant dissembling harlot thou art false in": [0, 65535], "in both ant dissembling harlot thou art false in all": [0, 65535], "both ant dissembling harlot thou art false in all and": [0, 65535], "ant dissembling harlot thou art false in all and art": [0, 65535], "dissembling harlot thou art false in all and art confederate": [0, 65535], "harlot thou art false in all and art confederate with": [0, 65535], "thou art false in all and art confederate with a": [0, 65535], "art false in all and art confederate with a damned": [0, 65535], "false in all and art confederate with a damned packe": [0, 65535], "in all and art confederate with a damned packe to": [0, 65535], "all and art confederate with a damned packe to make": [0, 65535], "and art confederate with a damned packe to make a": [0, 65535], "art confederate with a damned packe to make a loathsome": [0, 65535], "confederate with a damned packe to make a loathsome abiect": [0, 65535], "with a damned packe to make a loathsome abiect scorne": [0, 65535], "a damned packe to make a loathsome abiect scorne of": [0, 65535], "damned packe to make a loathsome abiect scorne of me": [0, 65535], "packe to make a loathsome abiect scorne of me but": [0, 65535], "to make a loathsome abiect scorne of me but with": [0, 65535], "make a loathsome abiect scorne of me but with these": [0, 65535], "a loathsome abiect scorne of me but with these nailes": [0, 65535], "loathsome abiect scorne of me but with these nailes ile": [0, 65535], "abiect scorne of me but with these nailes ile plucke": [0, 65535], "scorne of me but with these nailes ile plucke out": [0, 65535], "of me but with these nailes ile plucke out these": [0, 65535], "me but with these nailes ile plucke out these false": [0, 65535], "but with these nailes ile plucke out these false eyes": [0, 65535], "with these nailes ile plucke out these false eyes that": [0, 65535], "these nailes ile plucke out these false eyes that would": [0, 65535], "nailes ile plucke out these false eyes that would behold": [0, 65535], "ile plucke out these false eyes that would behold in": [0, 65535], "plucke out these false eyes that would behold in me": [0, 65535], "out these false eyes that would behold in me this": [0, 65535], "these false eyes that would behold in me this shamefull": [0, 65535], "false eyes that would behold in me this shamefull sport": [0, 65535], "eyes that would behold in me this shamefull sport enter": [0, 65535], "that would behold in me this shamefull sport enter three": [0, 65535], "would behold in me this shamefull sport enter three or": [0, 65535], "behold in me this shamefull sport enter three or foure": [0, 65535], "in me this shamefull sport enter three or foure and": [0, 65535], "me this shamefull sport enter three or foure and offer": [0, 65535], "this shamefull sport enter three or foure and offer to": [0, 65535], "shamefull sport enter three or foure and offer to binde": [0, 65535], "sport enter three or foure and offer to binde him": [0, 65535], "enter three or foure and offer to binde him hee": [0, 65535], "three or foure and offer to binde him hee striues": [0, 65535], "or foure and offer to binde him hee striues adr": [0, 65535], "foure and offer to binde him hee striues adr oh": [0, 65535], "and offer to binde him hee striues adr oh binde": [0, 65535], "offer to binde him hee striues adr oh binde him": [0, 65535], "to binde him hee striues adr oh binde him binde": [0, 65535], "binde him hee striues adr oh binde him binde him": [0, 65535], "him hee striues adr oh binde him binde him let": [0, 65535], "hee striues adr oh binde him binde him let him": [0, 65535], "striues adr oh binde him binde him let him not": [0, 65535], "adr oh binde him binde him let him not come": [0, 65535], "oh binde him binde him let him not come neere": [0, 65535], "binde him binde him let him not come neere me": [0, 65535], "him binde him let him not come neere me pinch": [0, 65535], "binde him let him not come neere me pinch more": [0, 65535], "him let him not come neere me pinch more company": [0, 65535], "let him not come neere me pinch more company the": [0, 65535], "him not come neere me pinch more company the fiend": [0, 65535], "not come neere me pinch more company the fiend is": [0, 65535], "come neere me pinch more company the fiend is strong": [0, 65535], "neere me pinch more company the fiend is strong within": [0, 65535], "me pinch more company the fiend is strong within him": [0, 65535], "pinch more company the fiend is strong within him luc": [0, 65535], "more company the fiend is strong within him luc aye": [0, 65535], "company the fiend is strong within him luc aye me": [0, 65535], "the fiend is strong within him luc aye me poore": [0, 65535], "fiend is strong within him luc aye me poore man": [0, 65535], "is strong within him luc aye me poore man how": [0, 65535], "strong within him luc aye me poore man how pale": [0, 65535], "within him luc aye me poore man how pale and": [0, 65535], "him luc aye me poore man how pale and wan": [0, 65535], "luc aye me poore man how pale and wan he": [0, 65535], "aye me poore man how pale and wan he looks": [0, 65535], "me poore man how pale and wan he looks ant": [0, 65535], "poore man how pale and wan he looks ant what": [0, 65535], "man how pale and wan he looks ant what will": [0, 65535], "how pale and wan he looks ant what will you": [0, 65535], "pale and wan he looks ant what will you murther": [0, 65535], "and wan he looks ant what will you murther me": [0, 65535], "wan he looks ant what will you murther me thou": [0, 65535], "he looks ant what will you murther me thou iailor": [0, 65535], "looks ant what will you murther me thou iailor thou": [0, 65535], "ant what will you murther me thou iailor thou i": [0, 65535], "what will you murther me thou iailor thou i am": [0, 65535], "will you murther me thou iailor thou i am thy": [0, 65535], "you murther me thou iailor thou i am thy prisoner": [0, 65535], "murther me thou iailor thou i am thy prisoner wilt": [0, 65535], "me thou iailor thou i am thy prisoner wilt thou": [0, 65535], "thou iailor thou i am thy prisoner wilt thou suffer": [0, 65535], "iailor thou i am thy prisoner wilt thou suffer them": [0, 65535], "thou i am thy prisoner wilt thou suffer them to": [0, 65535], "i am thy prisoner wilt thou suffer them to make": [0, 65535], "am thy prisoner wilt thou suffer them to make a": [0, 65535], "thy prisoner wilt thou suffer them to make a rescue": [0, 65535], "prisoner wilt thou suffer them to make a rescue offi": [0, 65535], "wilt thou suffer them to make a rescue offi masters": [0, 65535], "thou suffer them to make a rescue offi masters let": [0, 65535], "suffer them to make a rescue offi masters let him": [0, 65535], "them to make a rescue offi masters let him go": [0, 65535], "to make a rescue offi masters let him go he": [0, 65535], "make a rescue offi masters let him go he is": [0, 65535], "a rescue offi masters let him go he is my": [0, 65535], "rescue offi masters let him go he is my prisoner": [0, 65535], "offi masters let him go he is my prisoner and": [0, 65535], "masters let him go he is my prisoner and you": [0, 65535], "let him go he is my prisoner and you shall": [0, 65535], "him go he is my prisoner and you shall not": [0, 65535], "go he is my prisoner and you shall not haue": [0, 65535], "he is my prisoner and you shall not haue him": [0, 65535], "is my prisoner and you shall not haue him pinch": [0, 65535], "my prisoner and you shall not haue him pinch go": [0, 65535], "prisoner and you shall not haue him pinch go binde": [0, 65535], "and you shall not haue him pinch go binde this": [0, 65535], "you shall not haue him pinch go binde this man": [0, 65535], "shall not haue him pinch go binde this man for": [0, 65535], "not haue him pinch go binde this man for he": [0, 65535], "haue him pinch go binde this man for he is": [0, 65535], "him pinch go binde this man for he is franticke": [0, 65535], "pinch go binde this man for he is franticke too": [0, 65535], "go binde this man for he is franticke too adr": [0, 65535], "binde this man for he is franticke too adr what": [0, 65535], "this man for he is franticke too adr what wilt": [0, 65535], "man for he is franticke too adr what wilt thou": [0, 65535], "for he is franticke too adr what wilt thou do": [0, 65535], "he is franticke too adr what wilt thou do thou": [0, 65535], "is franticke too adr what wilt thou do thou peeuish": [0, 65535], "franticke too adr what wilt thou do thou peeuish officer": [0, 65535], "too adr what wilt thou do thou peeuish officer hast": [0, 65535], "adr what wilt thou do thou peeuish officer hast thou": [0, 65535], "what wilt thou do thou peeuish officer hast thou delight": [0, 65535], "wilt thou do thou peeuish officer hast thou delight to": [0, 65535], "thou do thou peeuish officer hast thou delight to see": [0, 65535], "do thou peeuish officer hast thou delight to see a": [0, 65535], "thou peeuish officer hast thou delight to see a wretched": [0, 65535], "peeuish officer hast thou delight to see a wretched man": [0, 65535], "officer hast thou delight to see a wretched man do": [0, 65535], "hast thou delight to see a wretched man do outrage": [0, 65535], "thou delight to see a wretched man do outrage and": [0, 65535], "delight to see a wretched man do outrage and displeasure": [0, 65535], "to see a wretched man do outrage and displeasure to": [0, 65535], "see a wretched man do outrage and displeasure to himselfe": [0, 65535], "a wretched man do outrage and displeasure to himselfe offi": [0, 65535], "wretched man do outrage and displeasure to himselfe offi he": [0, 65535], "man do outrage and displeasure to himselfe offi he is": [0, 65535], "do outrage and displeasure to himselfe offi he is my": [0, 65535], "outrage and displeasure to himselfe offi he is my prisoner": [0, 65535], "and displeasure to himselfe offi he is my prisoner if": [0, 65535], "displeasure to himselfe offi he is my prisoner if i": [0, 65535], "to himselfe offi he is my prisoner if i let": [0, 65535], "himselfe offi he is my prisoner if i let him": [0, 65535], "offi he is my prisoner if i let him go": [0, 65535], "he is my prisoner if i let him go the": [0, 65535], "is my prisoner if i let him go the debt": [0, 65535], "my prisoner if i let him go the debt he": [0, 65535], "prisoner if i let him go the debt he owes": [0, 65535], "if i let him go the debt he owes will": [0, 65535], "i let him go the debt he owes will be": [0, 65535], "let him go the debt he owes will be requir'd": [0, 65535], "him go the debt he owes will be requir'd of": [0, 65535], "go the debt he owes will be requir'd of me": [0, 65535], "the debt he owes will be requir'd of me adr": [0, 65535], "debt he owes will be requir'd of me adr i": [0, 65535], "he owes will be requir'd of me adr i will": [0, 65535], "owes will be requir'd of me adr i will discharge": [0, 65535], "will be requir'd of me adr i will discharge thee": [0, 65535], "be requir'd of me adr i will discharge thee ere": [0, 65535], "requir'd of me adr i will discharge thee ere i": [0, 65535], "of me adr i will discharge thee ere i go": [0, 65535], "me adr i will discharge thee ere i go from": [0, 65535], "adr i will discharge thee ere i go from thee": [0, 65535], "i will discharge thee ere i go from thee beare": [0, 65535], "will discharge thee ere i go from thee beare me": [0, 65535], "discharge thee ere i go from thee beare me forthwith": [0, 65535], "thee ere i go from thee beare me forthwith vnto": [0, 65535], "ere i go from thee beare me forthwith vnto his": [0, 65535], "i go from thee beare me forthwith vnto his creditor": [0, 65535], "go from thee beare me forthwith vnto his creditor and": [0, 65535], "from thee beare me forthwith vnto his creditor and knowing": [0, 65535], "thee beare me forthwith vnto his creditor and knowing how": [0, 65535], "beare me forthwith vnto his creditor and knowing how the": [0, 65535], "me forthwith vnto his creditor and knowing how the debt": [0, 65535], "forthwith vnto his creditor and knowing how the debt growes": [0, 65535], "vnto his creditor and knowing how the debt growes i": [0, 65535], "his creditor and knowing how the debt growes i will": [0, 65535], "creditor and knowing how the debt growes i will pay": [0, 65535], "and knowing how the debt growes i will pay it": [0, 65535], "knowing how the debt growes i will pay it good": [0, 65535], "how the debt growes i will pay it good master": [0, 65535], "the debt growes i will pay it good master doctor": [0, 65535], "debt growes i will pay it good master doctor see": [0, 65535], "growes i will pay it good master doctor see him": [0, 65535], "i will pay it good master doctor see him safe": [0, 65535], "will pay it good master doctor see him safe conuey'd": [0, 65535], "pay it good master doctor see him safe conuey'd home": [0, 65535], "it good master doctor see him safe conuey'd home to": [0, 65535], "good master doctor see him safe conuey'd home to my": [0, 65535], "master doctor see him safe conuey'd home to my house": [0, 65535], "doctor see him safe conuey'd home to my house oh": [0, 65535], "see him safe conuey'd home to my house oh most": [0, 65535], "him safe conuey'd home to my house oh most vnhappy": [0, 65535], "safe conuey'd home to my house oh most vnhappy day": [0, 65535], "conuey'd home to my house oh most vnhappy day ant": [0, 65535], "home to my house oh most vnhappy day ant oh": [0, 65535], "to my house oh most vnhappy day ant oh most": [0, 65535], "my house oh most vnhappy day ant oh most vnhappie": [0, 65535], "house oh most vnhappy day ant oh most vnhappie strumpet": [0, 65535], "oh most vnhappy day ant oh most vnhappie strumpet dro": [0, 65535], "most vnhappy day ant oh most vnhappie strumpet dro master": [0, 65535], "vnhappy day ant oh most vnhappie strumpet dro master i": [0, 65535], "day ant oh most vnhappie strumpet dro master i am": [0, 65535], "ant oh most vnhappie strumpet dro master i am heere": [0, 65535], "oh most vnhappie strumpet dro master i am heere entred": [0, 65535], "most vnhappie strumpet dro master i am heere entred in": [0, 65535], "vnhappie strumpet dro master i am heere entred in bond": [0, 65535], "strumpet dro master i am heere entred in bond for": [0, 65535], "dro master i am heere entred in bond for you": [0, 65535], "master i am heere entred in bond for you ant": [0, 65535], "i am heere entred in bond for you ant out": [0, 65535], "am heere entred in bond for you ant out on": [0, 65535], "heere entred in bond for you ant out on thee": [0, 65535], "entred in bond for you ant out on thee villaine": [0, 65535], "in bond for you ant out on thee villaine wherefore": [0, 65535], "bond for you ant out on thee villaine wherefore dost": [0, 65535], "for you ant out on thee villaine wherefore dost thou": [0, 65535], "you ant out on thee villaine wherefore dost thou mad": [0, 65535], "ant out on thee villaine wherefore dost thou mad mee": [0, 65535], "out on thee villaine wherefore dost thou mad mee dro": [0, 65535], "on thee villaine wherefore dost thou mad mee dro will": [0, 65535], "thee villaine wherefore dost thou mad mee dro will you": [0, 65535], "villaine wherefore dost thou mad mee dro will you be": [0, 65535], "wherefore dost thou mad mee dro will you be bound": [0, 65535], "dost thou mad mee dro will you be bound for": [0, 65535], "thou mad mee dro will you be bound for nothing": [0, 65535], "mad mee dro will you be bound for nothing be": [0, 65535], "mee dro will you be bound for nothing be mad": [0, 65535], "dro will you be bound for nothing be mad good": [0, 65535], "will you be bound for nothing be mad good master": [0, 65535], "you be bound for nothing be mad good master cry": [0, 65535], "be bound for nothing be mad good master cry the": [0, 65535], "bound for nothing be mad good master cry the diuell": [0, 65535], "for nothing be mad good master cry the diuell luc": [0, 65535], "nothing be mad good master cry the diuell luc god": [0, 65535], "be mad good master cry the diuell luc god helpe": [0, 65535], "mad good master cry the diuell luc god helpe poore": [0, 65535], "good master cry the diuell luc god helpe poore soules": [0, 65535], "master cry the diuell luc god helpe poore soules how": [0, 65535], "cry the diuell luc god helpe poore soules how idlely": [0, 65535], "the diuell luc god helpe poore soules how idlely doe": [0, 65535], "diuell luc god helpe poore soules how idlely doe they": [0, 65535], "luc god helpe poore soules how idlely doe they talke": [0, 65535], "god helpe poore soules how idlely doe they talke adr": [0, 65535], "helpe poore soules how idlely doe they talke adr go": [0, 65535], "poore soules how idlely doe they talke adr go beare": [0, 65535], "soules how idlely doe they talke adr go beare him": [0, 65535], "how idlely doe they talke adr go beare him hence": [0, 65535], "idlely doe they talke adr go beare him hence sister": [0, 65535], "doe they talke adr go beare him hence sister go": [0, 65535], "they talke adr go beare him hence sister go you": [0, 65535], "talke adr go beare him hence sister go you with": [0, 65535], "adr go beare him hence sister go you with me": [0, 65535], "go beare him hence sister go you with me say": [0, 65535], "beare him hence sister go you with me say now": [0, 65535], "him hence sister go you with me say now whose": [0, 65535], "hence sister go you with me say now whose suite": [0, 65535], "sister go you with me say now whose suite is": [0, 65535], "go you with me say now whose suite is he": [0, 65535], "you with me say now whose suite is he arrested": [0, 65535], "with me say now whose suite is he arrested at": [0, 65535], "me say now whose suite is he arrested at exeunt": [0, 65535], "say now whose suite is he arrested at exeunt manet": [0, 65535], "now whose suite is he arrested at exeunt manet offic": [0, 65535], "whose suite is he arrested at exeunt manet offic adri": [0, 65535], "suite is he arrested at exeunt manet offic adri luci": [0, 65535], "is he arrested at exeunt manet offic adri luci courtizan": [0, 65535], "he arrested at exeunt manet offic adri luci courtizan off": [0, 65535], "arrested at exeunt manet offic adri luci courtizan off one": [0, 65535], "at exeunt manet offic adri luci courtizan off one angelo": [0, 65535], "exeunt manet offic adri luci courtizan off one angelo a": [0, 65535], "manet offic adri luci courtizan off one angelo a goldsmith": [0, 65535], "offic adri luci courtizan off one angelo a goldsmith do": [0, 65535], "adri luci courtizan off one angelo a goldsmith do you": [0, 65535], "luci courtizan off one angelo a goldsmith do you know": [0, 65535], "courtizan off one angelo a goldsmith do you know him": [0, 65535], "off one angelo a goldsmith do you know him adr": [0, 65535], "one angelo a goldsmith do you know him adr i": [0, 65535], "angelo a goldsmith do you know him adr i know": [0, 65535], "a goldsmith do you know him adr i know the": [0, 65535], "goldsmith do you know him adr i know the man": [0, 65535], "do you know him adr i know the man what": [0, 65535], "you know him adr i know the man what is": [0, 65535], "know him adr i know the man what is the": [0, 65535], "him adr i know the man what is the summe": [0, 65535], "adr i know the man what is the summe he": [0, 65535], "i know the man what is the summe he owes": [0, 65535], "know the man what is the summe he owes off": [0, 65535], "the man what is the summe he owes off two": [0, 65535], "man what is the summe he owes off two hundred": [0, 65535], "what is the summe he owes off two hundred duckets": [0, 65535], "is the summe he owes off two hundred duckets adr": [0, 65535], "the summe he owes off two hundred duckets adr say": [0, 65535], "summe he owes off two hundred duckets adr say how": [0, 65535], "he owes off two hundred duckets adr say how growes": [0, 65535], "owes off two hundred duckets adr say how growes it": [0, 65535], "off two hundred duckets adr say how growes it due": [0, 65535], "two hundred duckets adr say how growes it due off": [0, 65535], "hundred duckets adr say how growes it due off due": [0, 65535], "duckets adr say how growes it due off due for": [0, 65535], "adr say how growes it due off due for a": [0, 65535], "say how growes it due off due for a chaine": [0, 65535], "how growes it due off due for a chaine your": [0, 65535], "growes it due off due for a chaine your husband": [0, 65535], "it due off due for a chaine your husband had": [0, 65535], "due off due for a chaine your husband had of": [0, 65535], "off due for a chaine your husband had of him": [0, 65535], "due for a chaine your husband had of him adr": [0, 65535], "for a chaine your husband had of him adr he": [0, 65535], "a chaine your husband had of him adr he did": [0, 65535], "chaine your husband had of him adr he did bespeake": [0, 65535], "your husband had of him adr he did bespeake a": [0, 65535], "husband had of him adr he did bespeake a chain": [0, 65535], "had of him adr he did bespeake a chain for": [0, 65535], "of him adr he did bespeake a chain for me": [0, 65535], "him adr he did bespeake a chain for me but": [0, 65535], "adr he did bespeake a chain for me but had": [0, 65535], "he did bespeake a chain for me but had it": [0, 65535], "did bespeake a chain for me but had it not": [0, 65535], "bespeake a chain for me but had it not cur": [0, 65535], "a chain for me but had it not cur when": [0, 65535], "chain for me but had it not cur when as": [0, 65535], "for me but had it not cur when as your": [0, 65535], "me but had it not cur when as your husband": [0, 65535], "but had it not cur when as your husband all": [0, 65535], "had it not cur when as your husband all in": [0, 65535], "it not cur when as your husband all in rage": [0, 65535], "not cur when as your husband all in rage to": [0, 65535], "cur when as your husband all in rage to day": [0, 65535], "when as your husband all in rage to day came": [0, 65535], "as your husband all in rage to day came to": [0, 65535], "your husband all in rage to day came to my": [0, 65535], "husband all in rage to day came to my house": [0, 65535], "all in rage to day came to my house and": [0, 65535], "in rage to day came to my house and tooke": [0, 65535], "rage to day came to my house and tooke away": [0, 65535], "to day came to my house and tooke away my": [0, 65535], "day came to my house and tooke away my ring": [0, 65535], "came to my house and tooke away my ring the": [0, 65535], "to my house and tooke away my ring the ring": [0, 65535], "my house and tooke away my ring the ring i": [0, 65535], "house and tooke away my ring the ring i saw": [0, 65535], "and tooke away my ring the ring i saw vpon": [0, 65535], "tooke away my ring the ring i saw vpon his": [0, 65535], "away my ring the ring i saw vpon his finger": [0, 65535], "my ring the ring i saw vpon his finger now": [0, 65535], "ring the ring i saw vpon his finger now straight": [0, 65535], "the ring i saw vpon his finger now straight after": [0, 65535], "ring i saw vpon his finger now straight after did": [0, 65535], "i saw vpon his finger now straight after did i": [0, 65535], "saw vpon his finger now straight after did i meete": [0, 65535], "vpon his finger now straight after did i meete him": [0, 65535], "his finger now straight after did i meete him with": [0, 65535], "finger now straight after did i meete him with a": [0, 65535], "now straight after did i meete him with a chaine": [0, 65535], "straight after did i meete him with a chaine adr": [0, 65535], "after did i meete him with a chaine adr it": [0, 65535], "did i meete him with a chaine adr it may": [0, 65535], "i meete him with a chaine adr it may be": [0, 65535], "meete him with a chaine adr it may be so": [0, 65535], "him with a chaine adr it may be so but": [0, 65535], "with a chaine adr it may be so but i": [0, 65535], "a chaine adr it may be so but i did": [0, 65535], "chaine adr it may be so but i did neuer": [0, 65535], "adr it may be so but i did neuer see": [0, 65535], "it may be so but i did neuer see it": [0, 65535], "may be so but i did neuer see it come": [0, 65535], "be so but i did neuer see it come iailor": [0, 65535], "so but i did neuer see it come iailor bring": [0, 65535], "but i did neuer see it come iailor bring me": [0, 65535], "i did neuer see it come iailor bring me where": [0, 65535], "did neuer see it come iailor bring me where the": [0, 65535], "neuer see it come iailor bring me where the goldsmith": [0, 65535], "see it come iailor bring me where the goldsmith is": [0, 65535], "it come iailor bring me where the goldsmith is i": [0, 65535], "come iailor bring me where the goldsmith is i long": [0, 65535], "iailor bring me where the goldsmith is i long to": [0, 65535], "bring me where the goldsmith is i long to know": [0, 65535], "me where the goldsmith is i long to know the": [0, 65535], "where the goldsmith is i long to know the truth": [0, 65535], "the goldsmith is i long to know the truth heereof": [0, 65535], "goldsmith is i long to know the truth heereof at": [0, 65535], "is i long to know the truth heereof at large": [0, 65535], "i long to know the truth heereof at large enter": [0, 65535], "long to know the truth heereof at large enter antipholus": [0, 65535], "to know the truth heereof at large enter antipholus siracusia": [0, 65535], "know the truth heereof at large enter antipholus siracusia with": [0, 65535], "the truth heereof at large enter antipholus siracusia with his": [0, 65535], "truth heereof at large enter antipholus siracusia with his rapier": [0, 65535], "heereof at large enter antipholus siracusia with his rapier drawne": [0, 65535], "at large enter antipholus siracusia with his rapier drawne and": [0, 65535], "large enter antipholus siracusia with his rapier drawne and dromio": [0, 65535], "enter antipholus siracusia with his rapier drawne and dromio sirac": [0, 65535], "antipholus siracusia with his rapier drawne and dromio sirac luc": [0, 65535], "siracusia with his rapier drawne and dromio sirac luc god": [0, 65535], "with his rapier drawne and dromio sirac luc god for": [0, 65535], "his rapier drawne and dromio sirac luc god for thy": [0, 65535], "rapier drawne and dromio sirac luc god for thy mercy": [0, 65535], "drawne and dromio sirac luc god for thy mercy they": [0, 65535], "and dromio sirac luc god for thy mercy they are": [0, 65535], "dromio sirac luc god for thy mercy they are loose": [0, 65535], "sirac luc god for thy mercy they are loose againe": [0, 65535], "luc god for thy mercy they are loose againe adr": [0, 65535], "god for thy mercy they are loose againe adr and": [0, 65535], "for thy mercy they are loose againe adr and come": [0, 65535], "thy mercy they are loose againe adr and come with": [0, 65535], "mercy they are loose againe adr and come with naked": [0, 65535], "they are loose againe adr and come with naked swords": [0, 65535], "are loose againe adr and come with naked swords let's": [0, 65535], "loose againe adr and come with naked swords let's call": [0, 65535], "againe adr and come with naked swords let's call more": [0, 65535], "adr and come with naked swords let's call more helpe": [0, 65535], "and come with naked swords let's call more helpe to": [0, 65535], "come with naked swords let's call more helpe to haue": [0, 65535], "with naked swords let's call more helpe to haue them": [0, 65535], "naked swords let's call more helpe to haue them bound": [0, 65535], "swords let's call more helpe to haue them bound againe": [0, 65535], "let's call more helpe to haue them bound againe runne": [0, 65535], "call more helpe to haue them bound againe runne all": [0, 65535], "more helpe to haue them bound againe runne all out": [0, 65535], "helpe to haue them bound againe runne all out off": [0, 65535], "to haue them bound againe runne all out off away": [0, 65535], "haue them bound againe runne all out off away they'l": [0, 65535], "them bound againe runne all out off away they'l kill": [0, 65535], "bound againe runne all out off away they'l kill vs": [0, 65535], "againe runne all out off away they'l kill vs exeunt": [0, 65535], "runne all out off away they'l kill vs exeunt omnes": [0, 65535], "all out off away they'l kill vs exeunt omnes as": [0, 65535], "out off away they'l kill vs exeunt omnes as fast": [0, 65535], "off away they'l kill vs exeunt omnes as fast as": [0, 65535], "away they'l kill vs exeunt omnes as fast as may": [0, 65535], "they'l kill vs exeunt omnes as fast as may be": [0, 65535], "kill vs exeunt omnes as fast as may be frighted": [0, 65535], "vs exeunt omnes as fast as may be frighted s": [0, 65535], "exeunt omnes as fast as may be frighted s ant": [0, 65535], "omnes as fast as may be frighted s ant i": [0, 65535], "as fast as may be frighted s ant i see": [0, 65535], "fast as may be frighted s ant i see these": [0, 65535], "as may be frighted s ant i see these witches": [0, 65535], "may be frighted s ant i see these witches are": [0, 65535], "be frighted s ant i see these witches are affraid": [0, 65535], "frighted s ant i see these witches are affraid of": [0, 65535], "s ant i see these witches are affraid of swords": [0, 65535], "ant i see these witches are affraid of swords s": [0, 65535], "i see these witches are affraid of swords s dro": [0, 65535], "see these witches are affraid of swords s dro she": [0, 65535], "these witches are affraid of swords s dro she that": [0, 65535], "witches are affraid of swords s dro she that would": [0, 65535], "are affraid of swords s dro she that would be": [0, 65535], "affraid of swords s dro she that would be your": [0, 65535], "of swords s dro she that would be your wife": [0, 65535], "swords s dro she that would be your wife now": [0, 65535], "s dro she that would be your wife now ran": [0, 65535], "dro she that would be your wife now ran from": [0, 65535], "she that would be your wife now ran from you": [0, 65535], "that would be your wife now ran from you ant": [0, 65535], "would be your wife now ran from you ant come": [0, 65535], "be your wife now ran from you ant come to": [0, 65535], "your wife now ran from you ant come to the": [0, 65535], "wife now ran from you ant come to the centaur": [0, 65535], "now ran from you ant come to the centaur fetch": [0, 65535], "ran from you ant come to the centaur fetch our": [0, 65535], "from you ant come to the centaur fetch our stuffe": [0, 65535], "you ant come to the centaur fetch our stuffe from": [0, 65535], "ant come to the centaur fetch our stuffe from thence": [0, 65535], "come to the centaur fetch our stuffe from thence i": [0, 65535], "to the centaur fetch our stuffe from thence i long": [0, 65535], "the centaur fetch our stuffe from thence i long that": [0, 65535], "centaur fetch our stuffe from thence i long that we": [0, 65535], "fetch our stuffe from thence i long that we were": [0, 65535], "our stuffe from thence i long that we were safe": [0, 65535], "stuffe from thence i long that we were safe and": [0, 65535], "from thence i long that we were safe and sound": [0, 65535], "thence i long that we were safe and sound aboord": [0, 65535], "i long that we were safe and sound aboord dro": [0, 65535], "long that we were safe and sound aboord dro faith": [0, 65535], "that we were safe and sound aboord dro faith stay": [0, 65535], "we were safe and sound aboord dro faith stay heere": [0, 65535], "were safe and sound aboord dro faith stay heere this": [0, 65535], "safe and sound aboord dro faith stay heere this night": [0, 65535], "and sound aboord dro faith stay heere this night they": [0, 65535], "sound aboord dro faith stay heere this night they will": [0, 65535], "aboord dro faith stay heere this night they will surely": [0, 65535], "dro faith stay heere this night they will surely do": [0, 65535], "faith stay heere this night they will surely do vs": [0, 65535], "stay heere this night they will surely do vs no": [0, 65535], "heere this night they will surely do vs no harme": [0, 65535], "this night they will surely do vs no harme you": [0, 65535], "night they will surely do vs no harme you saw": [0, 65535], "they will surely do vs no harme you saw they": [0, 65535], "will surely do vs no harme you saw they speake": [0, 65535], "surely do vs no harme you saw they speake vs": [0, 65535], "do vs no harme you saw they speake vs faire": [0, 65535], "vs no harme you saw they speake vs faire giue": [0, 65535], "no harme you saw they speake vs faire giue vs": [0, 65535], "harme you saw they speake vs faire giue vs gold": [0, 65535], "you saw they speake vs faire giue vs gold me": [0, 65535], "saw they speake vs faire giue vs gold me thinkes": [0, 65535], "they speake vs faire giue vs gold me thinkes they": [0, 65535], "speake vs faire giue vs gold me thinkes they are": [0, 65535], "vs faire giue vs gold me thinkes they are such": [0, 65535], "faire giue vs gold me thinkes they are such a": [0, 65535], "giue vs gold me thinkes they are such a gentle": [0, 65535], "vs gold me thinkes they are such a gentle nation": [0, 65535], "gold me thinkes they are such a gentle nation that": [0, 65535], "me thinkes they are such a gentle nation that but": [0, 65535], "thinkes they are such a gentle nation that but for": [0, 65535], "they are such a gentle nation that but for the": [0, 65535], "are such a gentle nation that but for the mountaine": [0, 65535], "such a gentle nation that but for the mountaine of": [0, 65535], "a gentle nation that but for the mountaine of mad": [0, 65535], "gentle nation that but for the mountaine of mad flesh": [0, 65535], "nation that but for the mountaine of mad flesh that": [0, 65535], "that but for the mountaine of mad flesh that claimes": [0, 65535], "but for the mountaine of mad flesh that claimes mariage": [0, 65535], "for the mountaine of mad flesh that claimes mariage of": [0, 65535], "the mountaine of mad flesh that claimes mariage of me": [0, 65535], "mountaine of mad flesh that claimes mariage of me i": [0, 65535], "of mad flesh that claimes mariage of me i could": [0, 65535], "mad flesh that claimes mariage of me i could finde": [0, 65535], "flesh that claimes mariage of me i could finde in": [0, 65535], "that claimes mariage of me i could finde in my": [0, 65535], "claimes mariage of me i could finde in my heart": [0, 65535], "mariage of me i could finde in my heart to": [0, 65535], "of me i could finde in my heart to stay": [0, 65535], "me i could finde in my heart to stay heere": [0, 65535], "i could finde in my heart to stay heere still": [0, 65535], "could finde in my heart to stay heere still and": [0, 65535], "finde in my heart to stay heere still and turne": [0, 65535], "in my heart to stay heere still and turne witch": [0, 65535], "my heart to stay heere still and turne witch ant": [0, 65535], "heart to stay heere still and turne witch ant i": [0, 65535], "to stay heere still and turne witch ant i will": [0, 65535], "stay heere still and turne witch ant i will not": [0, 65535], "heere still and turne witch ant i will not stay": [0, 65535], "still and turne witch ant i will not stay to": [0, 65535], "and turne witch ant i will not stay to night": [0, 65535], "turne witch ant i will not stay to night for": [0, 65535], "witch ant i will not stay to night for all": [0, 65535], "ant i will not stay to night for all the": [0, 65535], "i will not stay to night for all the towne": [0, 65535], "will not stay to night for all the towne therefore": [0, 65535], "not stay to night for all the towne therefore away": [0, 65535], "stay to night for all the towne therefore away to": [0, 65535], "to night for all the towne therefore away to get": [0, 65535], "night for all the towne therefore away to get our": [0, 65535], "for all the towne therefore away to get our stuffe": [0, 65535], "all the towne therefore away to get our stuffe aboord": [0, 65535], "the towne therefore away to get our stuffe aboord exeunt": [0, 65535], "__names__": ["twain", "shakespeare"], "__ngrams__": 10, "__version__": 3}